diff --git a/build/antlr4.js b/build/antlr4.js index 59af5a1c..63290542 100644 --- a/build/antlr4.js +++ b/build/antlr4.js @@ -6,11 +6,12 @@ const grammars = path.resolve(__dirname, '../src/grammar'); const output = path.resolve(__dirname, '../src/lib'); const entry = [ - 'generic', - 'hive', - 'plsql', - 'spark', - 'impala', + // 'generic', + // 'hive', + // 'plsql', + // 'spark', + // 'impala', + 'flinksql', ]; entry.forEach((language) => { diff --git a/src/grammar/flinksql/FlinkSqlLexer.g4 b/src/grammar/flinksql/FlinkSqlLexer.g4 new file mode 100644 index 00000000..10992d86 --- /dev/null +++ b/src/grammar/flinksql/FlinkSqlLexer.g4 @@ -0,0 +1,308 @@ +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: '"' ~'"'+ '"'; +DOT_ID: '.' ID_LITERAL; +ID: ID_LITERAL; + + +// 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'; + + +// single character Keywords + +EQUAL: '='; +COMMA: ','; + + +fragment ID_LITERAL: [A-Z_0-9a-z]*?[A-Z_a-z]+?[A-Z_0-9a-z]*; diff --git a/src/grammar/flinksql/FlinkSqlParser.g4 b/src/grammar/flinksql/FlinkSqlParser.g4 new file mode 100644 index 00000000..d71bd819 --- /dev/null +++ b/src/grammar/flinksql/FlinkSqlParser.g4 @@ -0,0 +1,119 @@ +parser grammar FlinkSqlParser; + +options { tokenVocab=FlinkSqlLexer; } + +program: statement EOF; + +statement + : sqlStatement EOF + ; + +sqlStatement + : ddlStatement | dmlStatement + ; + +ddlStatement + : createTable | createDatabase | createView | createFunction + | alterTable | alterDatabase | alterFunction + | dropTable | dropDatabase | dropView | dropFunction + ; + +dmlStatement + : selectStatement | insertStatement + ; + +createTable + : CREATE TABLE tableName + ( + columnOptionDefinition (',' columnOptionDefinition)* + ) + partitionDefinition? + WITH ( + withOptionDefinition (',' withOptionDefinition)* + ) + ; + + +tableName + : ID (DOT_ID)*? + ; + +columnOptionDefinition + : columnName columnType + ; + +columnName + : ID + ; + +columnType + : CHAR | VARCHAR | STRING | BINARY | VARBINARY | BYTES + | DECIMAL | TINYINT | SMALLINT | INT | BIGINT | FLOAT | DOUBLE + | DATE | TIME | TIMESTAMP + | ARRAY | MAP | MULTISET | ROW + | BOOLEAN | RAW | NULL + ; + +partitionDefinition + : PARTITIONED BY partitionColumnDefinition + ; + +partitionColumnDefinition + : partitionColumnName (COMMA partitionColumnName)* + ; + +partitionColumnName + : ID + ; + +withOptionDefinition + : REVERSE_QUOTE_ID EQUAL REVERSE_QUOTE_ID + ; + +createDatabase + : + ; + +createView + : + ; + +createFunction + : + ; + +alterTable + : + ; + +alterDatabase + : + ; + +alterFunction + : + ; + +dropTable + : + ; + +dropDatabase + : + ; + +dropView + : + ; + +dropFunction + : + ; + +selectStatement + : + ; + +insertStatement + : + ; \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlLexer.interp b/src/lib/flinksql/FlinkSqlLexer.interp new file mode 100644 index 00000000..89392024 --- /dev/null +++ b/src/lib/flinksql/FlinkSqlLexer.interp @@ -0,0 +1,873 @@ +token literal names: +null +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 +'STRING' +'ARRAY' +'MAP' +'CHAR' +'VARCHAR' +'BINARY' +'VARBINARY' +'BYTES' +'DECIMAL' +'TINYINT' +'SMALLINT' +'INT' +'BIGINT' +'FLOAT' +'DOUBLE' +'DATE' +'TIME' +'TIMESTAMP' +'MULTISET' +'BOOLEAN' +'RAW' +'ROW' +'NULL' +'=' +',' + +token symbolic names: +null +SPACE +SPEC_MYSQL_COMMENT +COMMENT_INPUT +LINE_COMMENT +SELECT +FROM +ADD +AS +ALL +ANY +DISTINCT +WHERE +GROUP +BY +GROUPING +SETS +CUBE +ROLLUP +ORDER +HAVING +LIMIT +AT +OR +AND +IN +NOT +NO +EXISTS +BETWEEN +LIKE +RLIKE +IS +TRUE +FALSE +NULLS +ASC +DESC +FOR +INTERVAL +CASE +WHEN +THEN +ELSE +END +JOIN +CROSS +OUTER +INNER +LEFT +SEMI +RIGHT +FULL +NATURAL +ON +PIVOT +LATERAL +WINDOW +OVER +PARTITION +RANGE +ROWS +UNBOUNDED +PRECEDING +FOLLOWING +CURRENT +FIRST +AFTER +LAST +WITH +VALUES +CREATE +TABLE +DIRECTORY +VIEW +REPLACE +INSERT +DELETE +INTO +DESCRIBE +EXPLAIN +FORMAT +LOGICAL +CODEGEN +COST +CAST +SHOW +TABLES +COLUMNS +COLUMN +USE +PARTITIONS +FUNCTIONS +DROP +UNION +EXCEPT +SETMINUS +INTERSECT +TO +TABLESAMPLE +STRATIFY +ALTER +RENAME +STRUCT +COMMENT +SET +RESET +DATA +START +TRANSACTION +COMMIT +ROLLBACK +MACRO +IGNORE +BOTH +LEADING +TRAILING +IF +POSITION +EXTRACT +EQ +NSEQ +NEQ +NEQJ +LT +LTE +GT +GTE +PLUS +MINUS +ASTERISK +SLASH +PERCENT +DIV +TILDE +AMPERSAND +PIPE +CONCAT_PIPE +HAT +PERCENTLIT +BUCKET +OUT +OF +SORT +CLUSTER +DISTRIBUTE +OVERWRITE +TRANSFORM +REDUCE +USING +SERDE +SERDEPROPERTIES +RECORDREADER +RECORDWRITER +DELIMITED +FIELDS +TERMINATED +COLLECTION +ITEMS +KEYS +ESCAPED +LINES +SEPARATED +FUNCTION +EXTENDED +REFRESH +CLEAR +CACHE +UNCACHE +LAZY +FORMATTED +GLOBAL +TEMPORARY +OPTIONS +UNSET +TBLPROPERTIES +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 +DOT_ID +ID +STRING +ARRAY +MAP +CHAR +VARCHAR +BINARY +VARBINARY +BYTES +DECIMAL +TINYINT +SMALLINT +INT +BIGINT +FLOAT +DOUBLE +DATE +TIME +TIMESTAMP +MULTISET +BOOLEAN +RAW +ROW +NULL +EQUAL +COMMA + +rule names: +SPACE +SPEC_MYSQL_COMMENT +COMMENT_INPUT +LINE_COMMENT +SELECT +FROM +ADD +AS +ALL +ANY +DISTINCT +WHERE +GROUP +BY +GROUPING +SETS +CUBE +ROLLUP +ORDER +HAVING +LIMIT +AT +OR +AND +IN +NOT +NO +EXISTS +BETWEEN +LIKE +RLIKE +IS +TRUE +FALSE +NULLS +ASC +DESC +FOR +INTERVAL +CASE +WHEN +THEN +ELSE +END +JOIN +CROSS +OUTER +INNER +LEFT +SEMI +RIGHT +FULL +NATURAL +ON +PIVOT +LATERAL +WINDOW +OVER +PARTITION +RANGE +ROWS +UNBOUNDED +PRECEDING +FOLLOWING +CURRENT +FIRST +AFTER +LAST +WITH +VALUES +CREATE +TABLE +DIRECTORY +VIEW +REPLACE +INSERT +DELETE +INTO +DESCRIBE +EXPLAIN +FORMAT +LOGICAL +CODEGEN +COST +CAST +SHOW +TABLES +COLUMNS +COLUMN +USE +PARTITIONS +FUNCTIONS +DROP +UNION +EXCEPT +SETMINUS +INTERSECT +TO +TABLESAMPLE +STRATIFY +ALTER +RENAME +STRUCT +COMMENT +SET +RESET +DATA +START +TRANSACTION +COMMIT +ROLLBACK +MACRO +IGNORE +BOTH +LEADING +TRAILING +IF +POSITION +EXTRACT +EQ +NSEQ +NEQ +NEQJ +LT +LTE +GT +GTE +PLUS +MINUS +ASTERISK +SLASH +PERCENT +DIV +TILDE +AMPERSAND +PIPE +CONCAT_PIPE +HAT +PERCENTLIT +BUCKET +OUT +OF +SORT +CLUSTER +DISTRIBUTE +OVERWRITE +TRANSFORM +REDUCE +USING +SERDE +SERDEPROPERTIES +RECORDREADER +RECORDWRITER +DELIMITED +FIELDS +TERMINATED +COLLECTION +ITEMS +KEYS +ESCAPED +LINES +SEPARATED +FUNCTION +EXTENDED +REFRESH +CLEAR +CACHE +UNCACHE +LAZY +FORMATTED +GLOBAL +TEMPORARY +OPTIONS +UNSET +TBLPROPERTIES +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 +DOT_ID +ID +STRING +ARRAY +MAP +CHAR +VARCHAR +BINARY +VARBINARY +BYTES +DECIMAL +TINYINT +SMALLINT +INT +BIGINT +FLOAT +DOUBLE +DATE +TIME +TIMESTAMP +MULTISET +BOOLEAN +RAW +ROW +NULL +EQUAL +COMMA +ID_LITERAL + +channel names: +DEFAULT_TOKEN_CHANNEL +HIDDEN +null +null +MYSQLCOMMENT + +mode names: +DEFAULT_MODE + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 286, 2721, 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, 3, 2, 6, 2, 575, 10, 2, 13, 2, 14, 2, 576, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 3, 586, 10, 3, 13, 3, 14, 3, 587, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 599, 10, 4, 12, 4, 14, 4, 602, 11, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 613, 10, 5, 3, 5, 7, 5, 616, 10, 5, 12, 5, 14, 5, 619, 11, 5, 3, 5, 5, 5, 622, 10, 5, 3, 5, 3, 5, 5, 5, 626, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 632, 10, 5, 3, 5, 3, 5, 5, 5, 636, 10, 5, 5, 5, 638, 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, 2538, 10, 258, 13, 258, 14, 258, 2539, 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, 263, 3, 263, 3, 263, 3, 263, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 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, 267, 3, 267, 3, 267, 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, 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, 271, 3, 272, 3, 272, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 274, 3, 274, 3, 274, 3, 274, 3, 274, 3, 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, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 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, 281, 3, 281, 3, 281, 3, 281, 3, 282, 3, 282, 3, 282, 3, 282, 3, 283, 3, 283, 3, 283, 3, 283, 3, 283, 3, 284, 3, 284, 3, 285, 3, 285, 3, 286, 7, 286, 2706, 10, 286, 12, 286, 14, 286, 2709, 11, 286, 3, 286, 6, 286, 2712, 10, 286, 13, 286, 14, 286, 2713, 3, 286, 7, 286, 2717, 10, 286, 12, 286, 14, 286, 2720, 11, 286, 6, 587, 600, 2707, 2713, 2, 287, 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, 2, 3, 2, 7, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 3, 2, 36, 36, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 5, 2, 67, 92, 97, 97, 99, 124, 2, 2733, 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, 3, 574, 3, 2, 2, 2, 5, 580, 3, 2, 2, 2, 7, 594, 3, 2, 2, 2, 9, 637, 3, 2, 2, 2, 11, 641, 3, 2, 2, 2, 13, 648, 3, 2, 2, 2, 15, 653, 3, 2, 2, 2, 17, 657, 3, 2, 2, 2, 19, 660, 3, 2, 2, 2, 21, 664, 3, 2, 2, 2, 23, 668, 3, 2, 2, 2, 25, 677, 3, 2, 2, 2, 27, 683, 3, 2, 2, 2, 29, 689, 3, 2, 2, 2, 31, 692, 3, 2, 2, 2, 33, 701, 3, 2, 2, 2, 35, 706, 3, 2, 2, 2, 37, 711, 3, 2, 2, 2, 39, 718, 3, 2, 2, 2, 41, 724, 3, 2, 2, 2, 43, 731, 3, 2, 2, 2, 45, 737, 3, 2, 2, 2, 47, 740, 3, 2, 2, 2, 49, 743, 3, 2, 2, 2, 51, 747, 3, 2, 2, 2, 53, 750, 3, 2, 2, 2, 55, 754, 3, 2, 2, 2, 57, 757, 3, 2, 2, 2, 59, 764, 3, 2, 2, 2, 61, 772, 3, 2, 2, 2, 63, 777, 3, 2, 2, 2, 65, 783, 3, 2, 2, 2, 67, 786, 3, 2, 2, 2, 69, 791, 3, 2, 2, 2, 71, 797, 3, 2, 2, 2, 73, 803, 3, 2, 2, 2, 75, 807, 3, 2, 2, 2, 77, 812, 3, 2, 2, 2, 79, 816, 3, 2, 2, 2, 81, 825, 3, 2, 2, 2, 83, 830, 3, 2, 2, 2, 85, 835, 3, 2, 2, 2, 87, 840, 3, 2, 2, 2, 89, 845, 3, 2, 2, 2, 91, 849, 3, 2, 2, 2, 93, 854, 3, 2, 2, 2, 95, 860, 3, 2, 2, 2, 97, 866, 3, 2, 2, 2, 99, 872, 3, 2, 2, 2, 101, 877, 3, 2, 2, 2, 103, 882, 3, 2, 2, 2, 105, 888, 3, 2, 2, 2, 107, 893, 3, 2, 2, 2, 109, 901, 3, 2, 2, 2, 111, 904, 3, 2, 2, 2, 113, 910, 3, 2, 2, 2, 115, 918, 3, 2, 2, 2, 117, 925, 3, 2, 2, 2, 119, 930, 3, 2, 2, 2, 121, 940, 3, 2, 2, 2, 123, 946, 3, 2, 2, 2, 125, 951, 3, 2, 2, 2, 127, 961, 3, 2, 2, 2, 129, 971, 3, 2, 2, 2, 131, 981, 3, 2, 2, 2, 133, 989, 3, 2, 2, 2, 135, 995, 3, 2, 2, 2, 137, 1001, 3, 2, 2, 2, 139, 1006, 3, 2, 2, 2, 141, 1011, 3, 2, 2, 2, 143, 1018, 3, 2, 2, 2, 145, 1025, 3, 2, 2, 2, 147, 1031, 3, 2, 2, 2, 149, 1041, 3, 2, 2, 2, 151, 1046, 3, 2, 2, 2, 153, 1054, 3, 2, 2, 2, 155, 1061, 3, 2, 2, 2, 157, 1068, 3, 2, 2, 2, 159, 1073, 3, 2, 2, 2, 161, 1082, 3, 2, 2, 2, 163, 1090, 3, 2, 2, 2, 165, 1097, 3, 2, 2, 2, 167, 1105, 3, 2, 2, 2, 169, 1113, 3, 2, 2, 2, 171, 1118, 3, 2, 2, 2, 173, 1123, 3, 2, 2, 2, 175, 1128, 3, 2, 2, 2, 177, 1135, 3, 2, 2, 2, 179, 1143, 3, 2, 2, 2, 181, 1150, 3, 2, 2, 2, 183, 1154, 3, 2, 2, 2, 185, 1165, 3, 2, 2, 2, 187, 1175, 3, 2, 2, 2, 189, 1180, 3, 2, 2, 2, 191, 1186, 3, 2, 2, 2, 193, 1193, 3, 2, 2, 2, 195, 1202, 3, 2, 2, 2, 197, 1212, 3, 2, 2, 2, 199, 1215, 3, 2, 2, 2, 201, 1227, 3, 2, 2, 2, 203, 1236, 3, 2, 2, 2, 205, 1242, 3, 2, 2, 2, 207, 1249, 3, 2, 2, 2, 209, 1256, 3, 2, 2, 2, 211, 1264, 3, 2, 2, 2, 213, 1268, 3, 2, 2, 2, 215, 1274, 3, 2, 2, 2, 217, 1279, 3, 2, 2, 2, 219, 1285, 3, 2, 2, 2, 221, 1297, 3, 2, 2, 2, 223, 1304, 3, 2, 2, 2, 225, 1313, 3, 2, 2, 2, 227, 1319, 3, 2, 2, 2, 229, 1326, 3, 2, 2, 2, 231, 1331, 3, 2, 2, 2, 233, 1339, 3, 2, 2, 2, 235, 1348, 3, 2, 2, 2, 237, 1351, 3, 2, 2, 2, 239, 1360, 3, 2, 2, 2, 241, 1368, 3, 2, 2, 2, 243, 1371, 3, 2, 2, 2, 245, 1376, 3, 2, 2, 2, 247, 1380, 3, 2, 2, 2, 249, 1385, 3, 2, 2, 2, 251, 1388, 3, 2, 2, 2, 253, 1392, 3, 2, 2, 2, 255, 1395, 3, 2, 2, 2, 257, 1399, 3, 2, 2, 2, 259, 1404, 3, 2, 2, 2, 261, 1410, 3, 2, 2, 2, 263, 1419, 3, 2, 2, 2, 265, 1425, 3, 2, 2, 2, 267, 1433, 3, 2, 2, 2, 269, 1437, 3, 2, 2, 2, 271, 1443, 3, 2, 2, 2, 273, 1453, 3, 2, 2, 2, 275, 1458, 3, 2, 2, 2, 277, 1470, 3, 2, 2, 2, 279, 1474, 3, 2, 2, 2, 281, 1485, 3, 2, 2, 2, 283, 1492, 3, 2, 2, 2, 285, 1496, 3, 2, 2, 2, 287, 1499, 3, 2, 2, 2, 289, 1504, 3, 2, 2, 2, 291, 1512, 3, 2, 2, 2, 293, 1523, 3, 2, 2, 2, 295, 1533, 3, 2, 2, 2, 297, 1543, 3, 2, 2, 2, 299, 1550, 3, 2, 2, 2, 301, 1556, 3, 2, 2, 2, 303, 1562, 3, 2, 2, 2, 305, 1578, 3, 2, 2, 2, 307, 1591, 3, 2, 2, 2, 309, 1604, 3, 2, 2, 2, 311, 1614, 3, 2, 2, 2, 313, 1621, 3, 2, 2, 2, 315, 1632, 3, 2, 2, 2, 317, 1643, 3, 2, 2, 2, 319, 1649, 3, 2, 2, 2, 321, 1654, 3, 2, 2, 2, 323, 1662, 3, 2, 2, 2, 325, 1668, 3, 2, 2, 2, 327, 1678, 3, 2, 2, 2, 329, 1687, 3, 2, 2, 2, 331, 1696, 3, 2, 2, 2, 333, 1704, 3, 2, 2, 2, 335, 1710, 3, 2, 2, 2, 337, 1716, 3, 2, 2, 2, 339, 1724, 3, 2, 2, 2, 341, 1729, 3, 2, 2, 2, 343, 1739, 3, 2, 2, 2, 345, 1746, 3, 2, 2, 2, 347, 1756, 3, 2, 2, 2, 349, 1764, 3, 2, 2, 2, 351, 1770, 3, 2, 2, 2, 353, 1784, 3, 2, 2, 2, 355, 1797, 3, 2, 2, 2, 357, 1805, 3, 2, 2, 2, 359, 1812, 3, 2, 2, 2, 361, 1819, 3, 2, 2, 2, 363, 1831, 3, 2, 2, 2, 365, 1840, 3, 2, 2, 2, 367, 1849, 3, 2, 2, 2, 369, 1857, 3, 2, 2, 2, 371, 1867, 3, 2, 2, 2, 373, 1878, 3, 2, 2, 2, 375, 1884, 3, 2, 2, 2, 377, 1892, 3, 2, 2, 2, 379, 1904, 3, 2, 2, 2, 381, 1911, 3, 2, 2, 2, 383, 1919, 3, 2, 2, 2, 385, 1928, 3, 2, 2, 2, 387, 1938, 3, 2, 2, 2, 389, 1945, 3, 2, 2, 2, 391, 1951, 3, 2, 2, 2, 393, 1963, 3, 2, 2, 2, 395, 1976, 3, 2, 2, 2, 397, 1985, 3, 2, 2, 2, 399, 1995, 3, 2, 2, 2, 401, 1999, 3, 2, 2, 2, 403, 2008, 3, 2, 2, 2, 405, 2016, 3, 2, 2, 2, 407, 2024, 3, 2, 2, 2, 409, 2029, 3, 2, 2, 2, 411, 2040, 3, 2, 2, 2, 413, 2052, 3, 2, 2, 2, 415, 2061, 3, 2, 2, 2, 417, 2069, 3, 2, 2, 2, 419, 2076, 3, 2, 2, 2, 421, 2082, 3, 2, 2, 2, 423, 2087, 3, 2, 2, 2, 425, 2094, 3, 2, 2, 2, 427, 2099, 3, 2, 2, 2, 429, 2106, 3, 2, 2, 2, 431, 2114, 3, 2, 2, 2, 433, 2121, 3, 2, 2, 2, 435, 2128, 3, 2, 2, 2, 437, 2133, 3, 2, 2, 2, 439, 2138, 3, 2, 2, 2, 441, 2144, 3, 2, 2, 2, 443, 2156, 3, 2, 2, 2, 445, 2167, 3, 2, 2, 2, 447, 2180, 3, 2, 2, 2, 449, 2186, 3, 2, 2, 2, 451, 2194, 3, 2, 2, 2, 453, 2200, 3, 2, 2, 2, 455, 2207, 3, 2, 2, 2, 457, 2212, 3, 2, 2, 2, 459, 2218, 3, 2, 2, 2, 461, 2225, 3, 2, 2, 2, 463, 2235, 3, 2, 2, 2, 465, 2242, 3, 2, 2, 2, 467, 2258, 3, 2, 2, 2, 469, 2267, 3, 2, 2, 2, 471, 2271, 3, 2, 2, 2, 473, 2275, 3, 2, 2, 2, 475, 2281, 3, 2, 2, 2, 477, 2287, 3, 2, 2, 2, 479, 2292, 3, 2, 2, 2, 481, 2297, 3, 2, 2, 2, 483, 2305, 3, 2, 2, 2, 485, 2312, 3, 2, 2, 2, 487, 2319, 3, 2, 2, 2, 489, 2334, 3, 2, 2, 2, 491, 2351, 3, 2, 2, 2, 493, 2367, 3, 2, 2, 2, 495, 2381, 3, 2, 2, 2, 497, 2395, 3, 2, 2, 2, 499, 2410, 3, 2, 2, 2, 501, 2429, 3, 2, 2, 2, 503, 2440, 3, 2, 2, 2, 505, 2462, 3, 2, 2, 2, 507, 2477, 3, 2, 2, 2, 509, 2501, 3, 2, 2, 2, 511, 2519, 3, 2, 2, 2, 513, 2522, 3, 2, 2, 2, 515, 2535, 3, 2, 2, 2, 517, 2543, 3, 2, 2, 2, 519, 2546, 3, 2, 2, 2, 521, 2548, 3, 2, 2, 2, 523, 2555, 3, 2, 2, 2, 525, 2561, 3, 2, 2, 2, 527, 2565, 3, 2, 2, 2, 529, 2570, 3, 2, 2, 2, 531, 2578, 3, 2, 2, 2, 533, 2585, 3, 2, 2, 2, 535, 2595, 3, 2, 2, 2, 537, 2601, 3, 2, 2, 2, 539, 2609, 3, 2, 2, 2, 541, 2617, 3, 2, 2, 2, 543, 2626, 3, 2, 2, 2, 545, 2630, 3, 2, 2, 2, 547, 2637, 3, 2, 2, 2, 549, 2643, 3, 2, 2, 2, 551, 2650, 3, 2, 2, 2, 553, 2655, 3, 2, 2, 2, 555, 2660, 3, 2, 2, 2, 557, 2670, 3, 2, 2, 2, 559, 2679, 3, 2, 2, 2, 561, 2687, 3, 2, 2, 2, 563, 2691, 3, 2, 2, 2, 565, 2695, 3, 2, 2, 2, 567, 2700, 3, 2, 2, 2, 569, 2702, 3, 2, 2, 2, 571, 2707, 3, 2, 2, 2, 573, 575, 9, 2, 2, 2, 574, 573, 3, 2, 2, 2, 575, 576, 3, 2, 2, 2, 576, 574, 3, 2, 2, 2, 576, 577, 3, 2, 2, 2, 577, 578, 3, 2, 2, 2, 578, 579, 8, 2, 2, 2, 579, 4, 3, 2, 2, 2, 580, 581, 7, 49, 2, 2, 581, 582, 7, 44, 2, 2, 582, 583, 7, 35, 2, 2, 583, 585, 3, 2, 2, 2, 584, 586, 11, 2, 2, 2, 585, 584, 3, 2, 2, 2, 586, 587, 3, 2, 2, 2, 587, 588, 3, 2, 2, 2, 587, 585, 3, 2, 2, 2, 588, 589, 3, 2, 2, 2, 589, 590, 7, 44, 2, 2, 590, 591, 7, 49, 2, 2, 591, 592, 3, 2, 2, 2, 592, 593, 8, 3, 3, 2, 593, 6, 3, 2, 2, 2, 594, 595, 7, 49, 2, 2, 595, 596, 7, 44, 2, 2, 596, 600, 3, 2, 2, 2, 597, 599, 11, 2, 2, 2, 598, 597, 3, 2, 2, 2, 599, 602, 3, 2, 2, 2, 600, 601, 3, 2, 2, 2, 600, 598, 3, 2, 2, 2, 601, 603, 3, 2, 2, 2, 602, 600, 3, 2, 2, 2, 603, 604, 7, 44, 2, 2, 604, 605, 7, 49, 2, 2, 605, 606, 3, 2, 2, 2, 606, 607, 8, 4, 2, 2, 607, 8, 3, 2, 2, 2, 608, 609, 7, 47, 2, 2, 609, 610, 7, 47, 2, 2, 610, 613, 7, 34, 2, 2, 611, 613, 7, 37, 2, 2, 612, 608, 3, 2, 2, 2, 612, 611, 3, 2, 2, 2, 613, 617, 3, 2, 2, 2, 614, 616, 10, 3, 2, 2, 615, 614, 3, 2, 2, 2, 616, 619, 3, 2, 2, 2, 617, 615, 3, 2, 2, 2, 617, 618, 3, 2, 2, 2, 618, 625, 3, 2, 2, 2, 619, 617, 3, 2, 2, 2, 620, 622, 7, 15, 2, 2, 621, 620, 3, 2, 2, 2, 621, 622, 3, 2, 2, 2, 622, 623, 3, 2, 2, 2, 623, 626, 7, 12, 2, 2, 624, 626, 7, 2, 2, 3, 625, 621, 3, 2, 2, 2, 625, 624, 3, 2, 2, 2, 626, 638, 3, 2, 2, 2, 627, 628, 7, 47, 2, 2, 628, 629, 7, 47, 2, 2, 629, 635, 3, 2, 2, 2, 630, 632, 7, 15, 2, 2, 631, 630, 3, 2, 2, 2, 631, 632, 3, 2, 2, 2, 632, 633, 3, 2, 2, 2, 633, 636, 7, 12, 2, 2, 634, 636, 7, 2, 2, 3, 635, 631, 3, 2, 2, 2, 635, 634, 3, 2, 2, 2, 636, 638, 3, 2, 2, 2, 637, 612, 3, 2, 2, 2, 637, 627, 3, 2, 2, 2, 638, 639, 3, 2, 2, 2, 639, 640, 8, 5, 2, 2, 640, 10, 3, 2, 2, 2, 641, 642, 7, 85, 2, 2, 642, 643, 7, 71, 2, 2, 643, 644, 7, 78, 2, 2, 644, 645, 7, 71, 2, 2, 645, 646, 7, 69, 2, 2, 646, 647, 7, 86, 2, 2, 647, 12, 3, 2, 2, 2, 648, 649, 7, 72, 2, 2, 649, 650, 7, 84, 2, 2, 650, 651, 7, 81, 2, 2, 651, 652, 7, 79, 2, 2, 652, 14, 3, 2, 2, 2, 653, 654, 7, 67, 2, 2, 654, 655, 7, 70, 2, 2, 655, 656, 7, 70, 2, 2, 656, 16, 3, 2, 2, 2, 657, 658, 7, 67, 2, 2, 658, 659, 7, 85, 2, 2, 659, 18, 3, 2, 2, 2, 660, 661, 7, 67, 2, 2, 661, 662, 7, 78, 2, 2, 662, 663, 7, 78, 2, 2, 663, 20, 3, 2, 2, 2, 664, 665, 7, 67, 2, 2, 665, 666, 7, 80, 2, 2, 666, 667, 7, 91, 2, 2, 667, 22, 3, 2, 2, 2, 668, 669, 7, 70, 2, 2, 669, 670, 7, 75, 2, 2, 670, 671, 7, 85, 2, 2, 671, 672, 7, 86, 2, 2, 672, 673, 7, 75, 2, 2, 673, 674, 7, 80, 2, 2, 674, 675, 7, 69, 2, 2, 675, 676, 7, 86, 2, 2, 676, 24, 3, 2, 2, 2, 677, 678, 7, 89, 2, 2, 678, 679, 7, 74, 2, 2, 679, 680, 7, 71, 2, 2, 680, 681, 7, 84, 2, 2, 681, 682, 7, 71, 2, 2, 682, 26, 3, 2, 2, 2, 683, 684, 7, 73, 2, 2, 684, 685, 7, 84, 2, 2, 685, 686, 7, 81, 2, 2, 686, 687, 7, 87, 2, 2, 687, 688, 7, 82, 2, 2, 688, 28, 3, 2, 2, 2, 689, 690, 7, 68, 2, 2, 690, 691, 7, 91, 2, 2, 691, 30, 3, 2, 2, 2, 692, 693, 7, 73, 2, 2, 693, 694, 7, 84, 2, 2, 694, 695, 7, 81, 2, 2, 695, 696, 7, 87, 2, 2, 696, 697, 7, 82, 2, 2, 697, 698, 7, 75, 2, 2, 698, 699, 7, 80, 2, 2, 699, 700, 7, 73, 2, 2, 700, 32, 3, 2, 2, 2, 701, 702, 7, 85, 2, 2, 702, 703, 7, 71, 2, 2, 703, 704, 7, 86, 2, 2, 704, 705, 7, 85, 2, 2, 705, 34, 3, 2, 2, 2, 706, 707, 7, 69, 2, 2, 707, 708, 7, 87, 2, 2, 708, 709, 7, 68, 2, 2, 709, 710, 7, 71, 2, 2, 710, 36, 3, 2, 2, 2, 711, 712, 7, 84, 2, 2, 712, 713, 7, 81, 2, 2, 713, 714, 7, 78, 2, 2, 714, 715, 7, 78, 2, 2, 715, 716, 7, 87, 2, 2, 716, 717, 7, 82, 2, 2, 717, 38, 3, 2, 2, 2, 718, 719, 7, 81, 2, 2, 719, 720, 7, 84, 2, 2, 720, 721, 7, 70, 2, 2, 721, 722, 7, 71, 2, 2, 722, 723, 7, 84, 2, 2, 723, 40, 3, 2, 2, 2, 724, 725, 7, 74, 2, 2, 725, 726, 7, 67, 2, 2, 726, 727, 7, 88, 2, 2, 727, 728, 7, 75, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 73, 2, 2, 730, 42, 3, 2, 2, 2, 731, 732, 7, 78, 2, 2, 732, 733, 7, 75, 2, 2, 733, 734, 7, 79, 2, 2, 734, 735, 7, 75, 2, 2, 735, 736, 7, 86, 2, 2, 736, 44, 3, 2, 2, 2, 737, 738, 7, 67, 2, 2, 738, 739, 7, 86, 2, 2, 739, 46, 3, 2, 2, 2, 740, 741, 7, 81, 2, 2, 741, 742, 7, 84, 2, 2, 742, 48, 3, 2, 2, 2, 743, 744, 7, 67, 2, 2, 744, 745, 7, 80, 2, 2, 745, 746, 7, 70, 2, 2, 746, 50, 3, 2, 2, 2, 747, 748, 7, 75, 2, 2, 748, 749, 7, 80, 2, 2, 749, 52, 3, 2, 2, 2, 750, 751, 7, 80, 2, 2, 751, 752, 7, 81, 2, 2, 752, 753, 7, 86, 2, 2, 753, 54, 3, 2, 2, 2, 754, 755, 7, 80, 2, 2, 755, 756, 7, 81, 2, 2, 756, 56, 3, 2, 2, 2, 757, 758, 7, 71, 2, 2, 758, 759, 7, 90, 2, 2, 759, 760, 7, 75, 2, 2, 760, 761, 7, 85, 2, 2, 761, 762, 7, 86, 2, 2, 762, 763, 7, 85, 2, 2, 763, 58, 3, 2, 2, 2, 764, 765, 7, 68, 2, 2, 765, 766, 7, 71, 2, 2, 766, 767, 7, 86, 2, 2, 767, 768, 7, 89, 2, 2, 768, 769, 7, 71, 2, 2, 769, 770, 7, 71, 2, 2, 770, 771, 7, 80, 2, 2, 771, 60, 3, 2, 2, 2, 772, 773, 7, 78, 2, 2, 773, 774, 7, 75, 2, 2, 774, 775, 7, 77, 2, 2, 775, 776, 7, 71, 2, 2, 776, 62, 3, 2, 2, 2, 777, 778, 7, 84, 2, 2, 778, 779, 7, 78, 2, 2, 779, 780, 7, 75, 2, 2, 780, 781, 7, 77, 2, 2, 781, 782, 7, 71, 2, 2, 782, 64, 3, 2, 2, 2, 783, 784, 7, 75, 2, 2, 784, 785, 7, 85, 2, 2, 785, 66, 3, 2, 2, 2, 786, 787, 7, 86, 2, 2, 787, 788, 7, 84, 2, 2, 788, 789, 7, 87, 2, 2, 789, 790, 7, 71, 2, 2, 790, 68, 3, 2, 2, 2, 791, 792, 7, 72, 2, 2, 792, 793, 7, 67, 2, 2, 793, 794, 7, 78, 2, 2, 794, 795, 7, 85, 2, 2, 795, 796, 7, 71, 2, 2, 796, 70, 3, 2, 2, 2, 797, 798, 7, 80, 2, 2, 798, 799, 7, 87, 2, 2, 799, 800, 7, 78, 2, 2, 800, 801, 7, 78, 2, 2, 801, 802, 7, 85, 2, 2, 802, 72, 3, 2, 2, 2, 803, 804, 7, 67, 2, 2, 804, 805, 7, 85, 2, 2, 805, 806, 7, 69, 2, 2, 806, 74, 3, 2, 2, 2, 807, 808, 7, 70, 2, 2, 808, 809, 7, 71, 2, 2, 809, 810, 7, 85, 2, 2, 810, 811, 7, 69, 2, 2, 811, 76, 3, 2, 2, 2, 812, 813, 7, 72, 2, 2, 813, 814, 7, 81, 2, 2, 814, 815, 7, 84, 2, 2, 815, 78, 3, 2, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 80, 2, 2, 818, 819, 7, 86, 2, 2, 819, 820, 7, 71, 2, 2, 820, 821, 7, 84, 2, 2, 821, 822, 7, 88, 2, 2, 822, 823, 7, 67, 2, 2, 823, 824, 7, 78, 2, 2, 824, 80, 3, 2, 2, 2, 825, 826, 7, 69, 2, 2, 826, 827, 7, 67, 2, 2, 827, 828, 7, 85, 2, 2, 828, 829, 7, 71, 2, 2, 829, 82, 3, 2, 2, 2, 830, 831, 7, 89, 2, 2, 831, 832, 7, 74, 2, 2, 832, 833, 7, 71, 2, 2, 833, 834, 7, 80, 2, 2, 834, 84, 3, 2, 2, 2, 835, 836, 7, 86, 2, 2, 836, 837, 7, 74, 2, 2, 837, 838, 7, 71, 2, 2, 838, 839, 7, 80, 2, 2, 839, 86, 3, 2, 2, 2, 840, 841, 7, 71, 2, 2, 841, 842, 7, 78, 2, 2, 842, 843, 7, 85, 2, 2, 843, 844, 7, 71, 2, 2, 844, 88, 3, 2, 2, 2, 845, 846, 7, 71, 2, 2, 846, 847, 7, 80, 2, 2, 847, 848, 7, 70, 2, 2, 848, 90, 3, 2, 2, 2, 849, 850, 7, 76, 2, 2, 850, 851, 7, 81, 2, 2, 851, 852, 7, 75, 2, 2, 852, 853, 7, 80, 2, 2, 853, 92, 3, 2, 2, 2, 854, 855, 7, 69, 2, 2, 855, 856, 7, 84, 2, 2, 856, 857, 7, 81, 2, 2, 857, 858, 7, 85, 2, 2, 858, 859, 7, 85, 2, 2, 859, 94, 3, 2, 2, 2, 860, 861, 7, 81, 2, 2, 861, 862, 7, 87, 2, 2, 862, 863, 7, 86, 2, 2, 863, 864, 7, 71, 2, 2, 864, 865, 7, 84, 2, 2, 865, 96, 3, 2, 2, 2, 866, 867, 7, 75, 2, 2, 867, 868, 7, 80, 2, 2, 868, 869, 7, 80, 2, 2, 869, 870, 7, 71, 2, 2, 870, 871, 7, 84, 2, 2, 871, 98, 3, 2, 2, 2, 872, 873, 7, 78, 2, 2, 873, 874, 7, 71, 2, 2, 874, 875, 7, 72, 2, 2, 875, 876, 7, 86, 2, 2, 876, 100, 3, 2, 2, 2, 877, 878, 7, 85, 2, 2, 878, 879, 7, 71, 2, 2, 879, 880, 7, 79, 2, 2, 880, 881, 7, 75, 2, 2, 881, 102, 3, 2, 2, 2, 882, 883, 7, 84, 2, 2, 883, 884, 7, 75, 2, 2, 884, 885, 7, 73, 2, 2, 885, 886, 7, 74, 2, 2, 886, 887, 7, 86, 2, 2, 887, 104, 3, 2, 2, 2, 888, 889, 7, 72, 2, 2, 889, 890, 7, 87, 2, 2, 890, 891, 7, 78, 2, 2, 891, 892, 7, 78, 2, 2, 892, 106, 3, 2, 2, 2, 893, 894, 7, 80, 2, 2, 894, 895, 7, 67, 2, 2, 895, 896, 7, 86, 2, 2, 896, 897, 7, 87, 2, 2, 897, 898, 7, 84, 2, 2, 898, 899, 7, 67, 2, 2, 899, 900, 7, 78, 2, 2, 900, 108, 3, 2, 2, 2, 901, 902, 7, 81, 2, 2, 902, 903, 7, 80, 2, 2, 903, 110, 3, 2, 2, 2, 904, 905, 7, 82, 2, 2, 905, 906, 7, 75, 2, 2, 906, 907, 7, 88, 2, 2, 907, 908, 7, 81, 2, 2, 908, 909, 7, 86, 2, 2, 909, 112, 3, 2, 2, 2, 910, 911, 7, 78, 2, 2, 911, 912, 7, 67, 2, 2, 912, 913, 7, 86, 2, 2, 913, 914, 7, 71, 2, 2, 914, 915, 7, 84, 2, 2, 915, 916, 7, 67, 2, 2, 916, 917, 7, 78, 2, 2, 917, 114, 3, 2, 2, 2, 918, 919, 7, 89, 2, 2, 919, 920, 7, 75, 2, 2, 920, 921, 7, 80, 2, 2, 921, 922, 7, 70, 2, 2, 922, 923, 7, 81, 2, 2, 923, 924, 7, 89, 2, 2, 924, 116, 3, 2, 2, 2, 925, 926, 7, 81, 2, 2, 926, 927, 7, 88, 2, 2, 927, 928, 7, 71, 2, 2, 928, 929, 7, 84, 2, 2, 929, 118, 3, 2, 2, 2, 930, 931, 7, 82, 2, 2, 931, 932, 7, 67, 2, 2, 932, 933, 7, 84, 2, 2, 933, 934, 7, 86, 2, 2, 934, 935, 7, 75, 2, 2, 935, 936, 7, 86, 2, 2, 936, 937, 7, 75, 2, 2, 937, 938, 7, 81, 2, 2, 938, 939, 7, 80, 2, 2, 939, 120, 3, 2, 2, 2, 940, 941, 7, 84, 2, 2, 941, 942, 7, 67, 2, 2, 942, 943, 7, 80, 2, 2, 943, 944, 7, 73, 2, 2, 944, 945, 7, 71, 2, 2, 945, 122, 3, 2, 2, 2, 946, 947, 7, 84, 2, 2, 947, 948, 7, 81, 2, 2, 948, 949, 7, 89, 2, 2, 949, 950, 7, 85, 2, 2, 950, 124, 3, 2, 2, 2, 951, 952, 7, 87, 2, 2, 952, 953, 7, 80, 2, 2, 953, 954, 7, 68, 2, 2, 954, 955, 7, 81, 2, 2, 955, 956, 7, 87, 2, 2, 956, 957, 7, 80, 2, 2, 957, 958, 7, 70, 2, 2, 958, 959, 7, 71, 2, 2, 959, 960, 7, 70, 2, 2, 960, 126, 3, 2, 2, 2, 961, 962, 7, 82, 2, 2, 962, 963, 7, 84, 2, 2, 963, 964, 7, 71, 2, 2, 964, 965, 7, 69, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 70, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 80, 2, 2, 969, 970, 7, 73, 2, 2, 970, 128, 3, 2, 2, 2, 971, 972, 7, 72, 2, 2, 972, 973, 7, 81, 2, 2, 973, 974, 7, 78, 2, 2, 974, 975, 7, 78, 2, 2, 975, 976, 7, 81, 2, 2, 976, 977, 7, 89, 2, 2, 977, 978, 7, 75, 2, 2, 978, 979, 7, 80, 2, 2, 979, 980, 7, 73, 2, 2, 980, 130, 3, 2, 2, 2, 981, 982, 7, 69, 2, 2, 982, 983, 7, 87, 2, 2, 983, 984, 7, 84, 2, 2, 984, 985, 7, 84, 2, 2, 985, 986, 7, 71, 2, 2, 986, 987, 7, 80, 2, 2, 987, 988, 7, 86, 2, 2, 988, 132, 3, 2, 2, 2, 989, 990, 7, 72, 2, 2, 990, 991, 7, 75, 2, 2, 991, 992, 7, 84, 2, 2, 992, 993, 7, 85, 2, 2, 993, 994, 7, 86, 2, 2, 994, 134, 3, 2, 2, 2, 995, 996, 7, 67, 2, 2, 996, 997, 7, 72, 2, 2, 997, 998, 7, 86, 2, 2, 998, 999, 7, 71, 2, 2, 999, 1000, 7, 84, 2, 2, 1000, 136, 3, 2, 2, 2, 1001, 1002, 7, 78, 2, 2, 1002, 1003, 7, 67, 2, 2, 1003, 1004, 7, 85, 2, 2, 1004, 1005, 7, 86, 2, 2, 1005, 138, 3, 2, 2, 2, 1006, 1007, 7, 89, 2, 2, 1007, 1008, 7, 75, 2, 2, 1008, 1009, 7, 86, 2, 2, 1009, 1010, 7, 74, 2, 2, 1010, 140, 3, 2, 2, 2, 1011, 1012, 7, 88, 2, 2, 1012, 1013, 7, 67, 2, 2, 1013, 1014, 7, 78, 2, 2, 1014, 1015, 7, 87, 2, 2, 1015, 1016, 7, 71, 2, 2, 1016, 1017, 7, 85, 2, 2, 1017, 142, 3, 2, 2, 2, 1018, 1019, 7, 69, 2, 2, 1019, 1020, 7, 84, 2, 2, 1020, 1021, 7, 71, 2, 2, 1021, 1022, 7, 67, 2, 2, 1022, 1023, 7, 86, 2, 2, 1023, 1024, 7, 71, 2, 2, 1024, 144, 3, 2, 2, 2, 1025, 1026, 7, 86, 2, 2, 1026, 1027, 7, 67, 2, 2, 1027, 1028, 7, 68, 2, 2, 1028, 1029, 7, 78, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 146, 3, 2, 2, 2, 1031, 1032, 7, 70, 2, 2, 1032, 1033, 7, 75, 2, 2, 1033, 1034, 7, 84, 2, 2, 1034, 1035, 7, 71, 2, 2, 1035, 1036, 7, 69, 2, 2, 1036, 1037, 7, 86, 2, 2, 1037, 1038, 7, 81, 2, 2, 1038, 1039, 7, 84, 2, 2, 1039, 1040, 7, 91, 2, 2, 1040, 148, 3, 2, 2, 2, 1041, 1042, 7, 88, 2, 2, 1042, 1043, 7, 75, 2, 2, 1043, 1044, 7, 71, 2, 2, 1044, 1045, 7, 89, 2, 2, 1045, 150, 3, 2, 2, 2, 1046, 1047, 7, 84, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 82, 2, 2, 1049, 1050, 7, 78, 2, 2, 1050, 1051, 7, 67, 2, 2, 1051, 1052, 7, 69, 2, 2, 1052, 1053, 7, 71, 2, 2, 1053, 152, 3, 2, 2, 2, 1054, 1055, 7, 75, 2, 2, 1055, 1056, 7, 80, 2, 2, 1056, 1057, 7, 85, 2, 2, 1057, 1058, 7, 71, 2, 2, 1058, 1059, 7, 84, 2, 2, 1059, 1060, 7, 86, 2, 2, 1060, 154, 3, 2, 2, 2, 1061, 1062, 7, 70, 2, 2, 1062, 1063, 7, 71, 2, 2, 1063, 1064, 7, 78, 2, 2, 1064, 1065, 7, 71, 2, 2, 1065, 1066, 7, 86, 2, 2, 1066, 1067, 7, 71, 2, 2, 1067, 156, 3, 2, 2, 2, 1068, 1069, 7, 75, 2, 2, 1069, 1070, 7, 80, 2, 2, 1070, 1071, 7, 86, 2, 2, 1071, 1072, 7, 81, 2, 2, 1072, 158, 3, 2, 2, 2, 1073, 1074, 7, 70, 2, 2, 1074, 1075, 7, 71, 2, 2, 1075, 1076, 7, 85, 2, 2, 1076, 1077, 7, 69, 2, 2, 1077, 1078, 7, 84, 2, 2, 1078, 1079, 7, 75, 2, 2, 1079, 1080, 7, 68, 2, 2, 1080, 1081, 7, 71, 2, 2, 1081, 160, 3, 2, 2, 2, 1082, 1083, 7, 71, 2, 2, 1083, 1084, 7, 90, 2, 2, 1084, 1085, 7, 82, 2, 2, 1085, 1086, 7, 78, 2, 2, 1086, 1087, 7, 67, 2, 2, 1087, 1088, 7, 75, 2, 2, 1088, 1089, 7, 80, 2, 2, 1089, 162, 3, 2, 2, 2, 1090, 1091, 7, 72, 2, 2, 1091, 1092, 7, 81, 2, 2, 1092, 1093, 7, 84, 2, 2, 1093, 1094, 7, 79, 2, 2, 1094, 1095, 7, 67, 2, 2, 1095, 1096, 7, 86, 2, 2, 1096, 164, 3, 2, 2, 2, 1097, 1098, 7, 78, 2, 2, 1098, 1099, 7, 81, 2, 2, 1099, 1100, 7, 73, 2, 2, 1100, 1101, 7, 75, 2, 2, 1101, 1102, 7, 69, 2, 2, 1102, 1103, 7, 67, 2, 2, 1103, 1104, 7, 78, 2, 2, 1104, 166, 3, 2, 2, 2, 1105, 1106, 7, 69, 2, 2, 1106, 1107, 7, 81, 2, 2, 1107, 1108, 7, 70, 2, 2, 1108, 1109, 7, 71, 2, 2, 1109, 1110, 7, 73, 2, 2, 1110, 1111, 7, 71, 2, 2, 1111, 1112, 7, 80, 2, 2, 1112, 168, 3, 2, 2, 2, 1113, 1114, 7, 69, 2, 2, 1114, 1115, 7, 81, 2, 2, 1115, 1116, 7, 85, 2, 2, 1116, 1117, 7, 86, 2, 2, 1117, 170, 3, 2, 2, 2, 1118, 1119, 7, 69, 2, 2, 1119, 1120, 7, 67, 2, 2, 1120, 1121, 7, 85, 2, 2, 1121, 1122, 7, 86, 2, 2, 1122, 172, 3, 2, 2, 2, 1123, 1124, 7, 85, 2, 2, 1124, 1125, 7, 74, 2, 2, 1125, 1126, 7, 81, 2, 2, 1126, 1127, 7, 89, 2, 2, 1127, 174, 3, 2, 2, 2, 1128, 1129, 7, 86, 2, 2, 1129, 1130, 7, 67, 2, 2, 1130, 1131, 7, 68, 2, 2, 1131, 1132, 7, 78, 2, 2, 1132, 1133, 7, 71, 2, 2, 1133, 1134, 7, 85, 2, 2, 1134, 176, 3, 2, 2, 2, 1135, 1136, 7, 69, 2, 2, 1136, 1137, 7, 81, 2, 2, 1137, 1138, 7, 78, 2, 2, 1138, 1139, 7, 87, 2, 2, 1139, 1140, 7, 79, 2, 2, 1140, 1141, 7, 80, 2, 2, 1141, 1142, 7, 85, 2, 2, 1142, 178, 3, 2, 2, 2, 1143, 1144, 7, 69, 2, 2, 1144, 1145, 7, 81, 2, 2, 1145, 1146, 7, 78, 2, 2, 1146, 1147, 7, 87, 2, 2, 1147, 1148, 7, 79, 2, 2, 1148, 1149, 7, 80, 2, 2, 1149, 180, 3, 2, 2, 2, 1150, 1151, 7, 87, 2, 2, 1151, 1152, 7, 85, 2, 2, 1152, 1153, 7, 71, 2, 2, 1153, 182, 3, 2, 2, 2, 1154, 1155, 7, 82, 2, 2, 1155, 1156, 7, 67, 2, 2, 1156, 1157, 7, 84, 2, 2, 1157, 1158, 7, 86, 2, 2, 1158, 1159, 7, 75, 2, 2, 1159, 1160, 7, 86, 2, 2, 1160, 1161, 7, 75, 2, 2, 1161, 1162, 7, 81, 2, 2, 1162, 1163, 7, 80, 2, 2, 1163, 1164, 7, 85, 2, 2, 1164, 184, 3, 2, 2, 2, 1165, 1166, 7, 72, 2, 2, 1166, 1167, 7, 87, 2, 2, 1167, 1168, 7, 80, 2, 2, 1168, 1169, 7, 69, 2, 2, 1169, 1170, 7, 86, 2, 2, 1170, 1171, 7, 75, 2, 2, 1171, 1172, 7, 81, 2, 2, 1172, 1173, 7, 80, 2, 2, 1173, 1174, 7, 85, 2, 2, 1174, 186, 3, 2, 2, 2, 1175, 1176, 7, 70, 2, 2, 1176, 1177, 7, 84, 2, 2, 1177, 1178, 7, 81, 2, 2, 1178, 1179, 7, 82, 2, 2, 1179, 188, 3, 2, 2, 2, 1180, 1181, 7, 87, 2, 2, 1181, 1182, 7, 80, 2, 2, 1182, 1183, 7, 75, 2, 2, 1183, 1184, 7, 81, 2, 2, 1184, 1185, 7, 80, 2, 2, 1185, 190, 3, 2, 2, 2, 1186, 1187, 7, 71, 2, 2, 1187, 1188, 7, 90, 2, 2, 1188, 1189, 7, 69, 2, 2, 1189, 1190, 7, 71, 2, 2, 1190, 1191, 7, 82, 2, 2, 1191, 1192, 7, 86, 2, 2, 1192, 192, 3, 2, 2, 2, 1193, 1194, 7, 85, 2, 2, 1194, 1195, 7, 71, 2, 2, 1195, 1196, 7, 86, 2, 2, 1196, 1197, 7, 79, 2, 2, 1197, 1198, 7, 75, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 1200, 7, 87, 2, 2, 1200, 1201, 7, 85, 2, 2, 1201, 194, 3, 2, 2, 2, 1202, 1203, 7, 75, 2, 2, 1203, 1204, 7, 80, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 71, 2, 2, 1206, 1207, 7, 84, 2, 2, 1207, 1208, 7, 85, 2, 2, 1208, 1209, 7, 71, 2, 2, 1209, 1210, 7, 69, 2, 2, 1210, 1211, 7, 86, 2, 2, 1211, 196, 3, 2, 2, 2, 1212, 1213, 7, 86, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 198, 3, 2, 2, 2, 1215, 1216, 7, 86, 2, 2, 1216, 1217, 7, 67, 2, 2, 1217, 1218, 7, 68, 2, 2, 1218, 1219, 7, 78, 2, 2, 1219, 1220, 7, 71, 2, 2, 1220, 1221, 7, 85, 2, 2, 1221, 1222, 7, 67, 2, 2, 1222, 1223, 7, 79, 2, 2, 1223, 1224, 7, 82, 2, 2, 1224, 1225, 7, 78, 2, 2, 1225, 1226, 7, 71, 2, 2, 1226, 200, 3, 2, 2, 2, 1227, 1228, 7, 85, 2, 2, 1228, 1229, 7, 86, 2, 2, 1229, 1230, 7, 84, 2, 2, 1230, 1231, 7, 67, 2, 2, 1231, 1232, 7, 86, 2, 2, 1232, 1233, 7, 75, 2, 2, 1233, 1234, 7, 72, 2, 2, 1234, 1235, 7, 91, 2, 2, 1235, 202, 3, 2, 2, 2, 1236, 1237, 7, 67, 2, 2, 1237, 1238, 7, 78, 2, 2, 1238, 1239, 7, 86, 2, 2, 1239, 1240, 7, 71, 2, 2, 1240, 1241, 7, 84, 2, 2, 1241, 204, 3, 2, 2, 2, 1242, 1243, 7, 84, 2, 2, 1243, 1244, 7, 71, 2, 2, 1244, 1245, 7, 80, 2, 2, 1245, 1246, 7, 67, 2, 2, 1246, 1247, 7, 79, 2, 2, 1247, 1248, 7, 71, 2, 2, 1248, 206, 3, 2, 2, 2, 1249, 1250, 7, 85, 2, 2, 1250, 1251, 7, 86, 2, 2, 1251, 1252, 7, 84, 2, 2, 1252, 1253, 7, 87, 2, 2, 1253, 1254, 7, 69, 2, 2, 1254, 1255, 7, 86, 2, 2, 1255, 208, 3, 2, 2, 2, 1256, 1257, 7, 69, 2, 2, 1257, 1258, 7, 81, 2, 2, 1258, 1259, 7, 79, 2, 2, 1259, 1260, 7, 79, 2, 2, 1260, 1261, 7, 71, 2, 2, 1261, 1262, 7, 80, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 210, 3, 2, 2, 2, 1264, 1265, 7, 85, 2, 2, 1265, 1266, 7, 71, 2, 2, 1266, 1267, 7, 86, 2, 2, 1267, 212, 3, 2, 2, 2, 1268, 1269, 7, 84, 2, 2, 1269, 1270, 7, 71, 2, 2, 1270, 1271, 7, 85, 2, 2, 1271, 1272, 7, 71, 2, 2, 1272, 1273, 7, 86, 2, 2, 1273, 214, 3, 2, 2, 2, 1274, 1275, 7, 70, 2, 2, 1275, 1276, 7, 67, 2, 2, 1276, 1277, 7, 86, 2, 2, 1277, 1278, 7, 67, 2, 2, 1278, 216, 3, 2, 2, 2, 1279, 1280, 7, 85, 2, 2, 1280, 1281, 7, 86, 2, 2, 1281, 1282, 7, 67, 2, 2, 1282, 1283, 7, 84, 2, 2, 1283, 1284, 7, 86, 2, 2, 1284, 218, 3, 2, 2, 2, 1285, 1286, 7, 86, 2, 2, 1286, 1287, 7, 84, 2, 2, 1287, 1288, 7, 67, 2, 2, 1288, 1289, 7, 80, 2, 2, 1289, 1290, 7, 85, 2, 2, 1290, 1291, 7, 67, 2, 2, 1291, 1292, 7, 69, 2, 2, 1292, 1293, 7, 86, 2, 2, 1293, 1294, 7, 75, 2, 2, 1294, 1295, 7, 81, 2, 2, 1295, 1296, 7, 80, 2, 2, 1296, 220, 3, 2, 2, 2, 1297, 1298, 7, 69, 2, 2, 1298, 1299, 7, 81, 2, 2, 1299, 1300, 7, 79, 2, 2, 1300, 1301, 7, 79, 2, 2, 1301, 1302, 7, 75, 2, 2, 1302, 1303, 7, 86, 2, 2, 1303, 222, 3, 2, 2, 2, 1304, 1305, 7, 84, 2, 2, 1305, 1306, 7, 81, 2, 2, 1306, 1307, 7, 78, 2, 2, 1307, 1308, 7, 78, 2, 2, 1308, 1309, 7, 68, 2, 2, 1309, 1310, 7, 67, 2, 2, 1310, 1311, 7, 69, 2, 2, 1311, 1312, 7, 77, 2, 2, 1312, 224, 3, 2, 2, 2, 1313, 1314, 7, 79, 2, 2, 1314, 1315, 7, 67, 2, 2, 1315, 1316, 7, 69, 2, 2, 1316, 1317, 7, 84, 2, 2, 1317, 1318, 7, 81, 2, 2, 1318, 226, 3, 2, 2, 2, 1319, 1320, 7, 75, 2, 2, 1320, 1321, 7, 73, 2, 2, 1321, 1322, 7, 80, 2, 2, 1322, 1323, 7, 81, 2, 2, 1323, 1324, 7, 84, 2, 2, 1324, 1325, 7, 71, 2, 2, 1325, 228, 3, 2, 2, 2, 1326, 1327, 7, 68, 2, 2, 1327, 1328, 7, 81, 2, 2, 1328, 1329, 7, 86, 2, 2, 1329, 1330, 7, 74, 2, 2, 1330, 230, 3, 2, 2, 2, 1331, 1332, 7, 78, 2, 2, 1332, 1333, 7, 71, 2, 2, 1333, 1334, 7, 67, 2, 2, 1334, 1335, 7, 70, 2, 2, 1335, 1336, 7, 75, 2, 2, 1336, 1337, 7, 80, 2, 2, 1337, 1338, 7, 73, 2, 2, 1338, 232, 3, 2, 2, 2, 1339, 1340, 7, 86, 2, 2, 1340, 1341, 7, 84, 2, 2, 1341, 1342, 7, 67, 2, 2, 1342, 1343, 7, 75, 2, 2, 1343, 1344, 7, 78, 2, 2, 1344, 1345, 7, 75, 2, 2, 1345, 1346, 7, 80, 2, 2, 1346, 1347, 7, 73, 2, 2, 1347, 234, 3, 2, 2, 2, 1348, 1349, 7, 75, 2, 2, 1349, 1350, 7, 72, 2, 2, 1350, 236, 3, 2, 2, 2, 1351, 1352, 7, 82, 2, 2, 1352, 1353, 7, 81, 2, 2, 1353, 1354, 7, 85, 2, 2, 1354, 1355, 7, 75, 2, 2, 1355, 1356, 7, 86, 2, 2, 1356, 1357, 7, 75, 2, 2, 1357, 1358, 7, 81, 2, 2, 1358, 1359, 7, 80, 2, 2, 1359, 238, 3, 2, 2, 2, 1360, 1361, 7, 71, 2, 2, 1361, 1362, 7, 90, 2, 2, 1362, 1363, 7, 86, 2, 2, 1363, 1364, 7, 84, 2, 2, 1364, 1365, 7, 67, 2, 2, 1365, 1366, 7, 69, 2, 2, 1366, 1367, 7, 86, 2, 2, 1367, 240, 3, 2, 2, 2, 1368, 1369, 7, 71, 2, 2, 1369, 1370, 7, 83, 2, 2, 1370, 242, 3, 2, 2, 2, 1371, 1372, 7, 80, 2, 2, 1372, 1373, 7, 85, 2, 2, 1373, 1374, 7, 71, 2, 2, 1374, 1375, 7, 83, 2, 2, 1375, 244, 3, 2, 2, 2, 1376, 1377, 7, 80, 2, 2, 1377, 1378, 7, 71, 2, 2, 1378, 1379, 7, 83, 2, 2, 1379, 246, 3, 2, 2, 2, 1380, 1381, 7, 80, 2, 2, 1381, 1382, 7, 71, 2, 2, 1382, 1383, 7, 83, 2, 2, 1383, 1384, 7, 76, 2, 2, 1384, 248, 3, 2, 2, 2, 1385, 1386, 7, 78, 2, 2, 1386, 1387, 7, 86, 2, 2, 1387, 250, 3, 2, 2, 2, 1388, 1389, 7, 78, 2, 2, 1389, 1390, 7, 86, 2, 2, 1390, 1391, 7, 71, 2, 2, 1391, 252, 3, 2, 2, 2, 1392, 1393, 7, 73, 2, 2, 1393, 1394, 7, 86, 2, 2, 1394, 254, 3, 2, 2, 2, 1395, 1396, 7, 73, 2, 2, 1396, 1397, 7, 86, 2, 2, 1397, 1398, 7, 71, 2, 2, 1398, 256, 3, 2, 2, 2, 1399, 1400, 7, 82, 2, 2, 1400, 1401, 7, 78, 2, 2, 1401, 1402, 7, 87, 2, 2, 1402, 1403, 7, 85, 2, 2, 1403, 258, 3, 2, 2, 2, 1404, 1405, 7, 79, 2, 2, 1405, 1406, 7, 75, 2, 2, 1406, 1407, 7, 80, 2, 2, 1407, 1408, 7, 87, 2, 2, 1408, 1409, 7, 85, 2, 2, 1409, 260, 3, 2, 2, 2, 1410, 1411, 7, 67, 2, 2, 1411, 1412, 7, 85, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 71, 2, 2, 1414, 1415, 7, 84, 2, 2, 1415, 1416, 7, 75, 2, 2, 1416, 1417, 7, 85, 2, 2, 1417, 1418, 7, 77, 2, 2, 1418, 262, 3, 2, 2, 2, 1419, 1420, 7, 85, 2, 2, 1420, 1421, 7, 78, 2, 2, 1421, 1422, 7, 67, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 74, 2, 2, 1424, 264, 3, 2, 2, 2, 1425, 1426, 7, 82, 2, 2, 1426, 1427, 7, 71, 2, 2, 1427, 1428, 7, 84, 2, 2, 1428, 1429, 7, 69, 2, 2, 1429, 1430, 7, 71, 2, 2, 1430, 1431, 7, 80, 2, 2, 1431, 1432, 7, 86, 2, 2, 1432, 266, 3, 2, 2, 2, 1433, 1434, 7, 70, 2, 2, 1434, 1435, 7, 75, 2, 2, 1435, 1436, 7, 88, 2, 2, 1436, 268, 3, 2, 2, 2, 1437, 1438, 7, 86, 2, 2, 1438, 1439, 7, 75, 2, 2, 1439, 1440, 7, 78, 2, 2, 1440, 1441, 7, 70, 2, 2, 1441, 1442, 7, 71, 2, 2, 1442, 270, 3, 2, 2, 2, 1443, 1444, 7, 67, 2, 2, 1444, 1445, 7, 79, 2, 2, 1445, 1446, 7, 82, 2, 2, 1446, 1447, 7, 71, 2, 2, 1447, 1448, 7, 84, 2, 2, 1448, 1449, 7, 85, 2, 2, 1449, 1450, 7, 67, 2, 2, 1450, 1451, 7, 80, 2, 2, 1451, 1452, 7, 70, 2, 2, 1452, 272, 3, 2, 2, 2, 1453, 1454, 7, 82, 2, 2, 1454, 1455, 7, 75, 2, 2, 1455, 1456, 7, 82, 2, 2, 1456, 1457, 7, 71, 2, 2, 1457, 274, 3, 2, 2, 2, 1458, 1459, 7, 69, 2, 2, 1459, 1460, 7, 81, 2, 2, 1460, 1461, 7, 80, 2, 2, 1461, 1462, 7, 69, 2, 2, 1462, 1463, 7, 67, 2, 2, 1463, 1464, 7, 86, 2, 2, 1464, 1465, 7, 97, 2, 2, 1465, 1466, 7, 82, 2, 2, 1466, 1467, 7, 75, 2, 2, 1467, 1468, 7, 82, 2, 2, 1468, 1469, 7, 71, 2, 2, 1469, 276, 3, 2, 2, 2, 1470, 1471, 7, 74, 2, 2, 1471, 1472, 7, 67, 2, 2, 1472, 1473, 7, 86, 2, 2, 1473, 278, 3, 2, 2, 2, 1474, 1475, 7, 82, 2, 2, 1475, 1476, 7, 71, 2, 2, 1476, 1477, 7, 84, 2, 2, 1477, 1478, 7, 69, 2, 2, 1478, 1479, 7, 71, 2, 2, 1479, 1480, 7, 80, 2, 2, 1480, 1481, 7, 86, 2, 2, 1481, 1482, 7, 78, 2, 2, 1482, 1483, 7, 75, 2, 2, 1483, 1484, 7, 86, 2, 2, 1484, 280, 3, 2, 2, 2, 1485, 1486, 7, 68, 2, 2, 1486, 1487, 7, 87, 2, 2, 1487, 1488, 7, 69, 2, 2, 1488, 1489, 7, 77, 2, 2, 1489, 1490, 7, 71, 2, 2, 1490, 1491, 7, 86, 2, 2, 1491, 282, 3, 2, 2, 2, 1492, 1493, 7, 81, 2, 2, 1493, 1494, 7, 87, 2, 2, 1494, 1495, 7, 86, 2, 2, 1495, 284, 3, 2, 2, 2, 1496, 1497, 7, 81, 2, 2, 1497, 1498, 7, 72, 2, 2, 1498, 286, 3, 2, 2, 2, 1499, 1500, 7, 85, 2, 2, 1500, 1501, 7, 81, 2, 2, 1501, 1502, 7, 84, 2, 2, 1502, 1503, 7, 86, 2, 2, 1503, 288, 3, 2, 2, 2, 1504, 1505, 7, 69, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 87, 2, 2, 1507, 1508, 7, 85, 2, 2, 1508, 1509, 7, 86, 2, 2, 1509, 1510, 7, 71, 2, 2, 1510, 1511, 7, 84, 2, 2, 1511, 290, 3, 2, 2, 2, 1512, 1513, 7, 70, 2, 2, 1513, 1514, 7, 75, 2, 2, 1514, 1515, 7, 85, 2, 2, 1515, 1516, 7, 86, 2, 2, 1516, 1517, 7, 84, 2, 2, 1517, 1518, 7, 75, 2, 2, 1518, 1519, 7, 68, 2, 2, 1519, 1520, 7, 87, 2, 2, 1520, 1521, 7, 86, 2, 2, 1521, 1522, 7, 71, 2, 2, 1522, 292, 3, 2, 2, 2, 1523, 1524, 7, 81, 2, 2, 1524, 1525, 7, 88, 2, 2, 1525, 1526, 7, 71, 2, 2, 1526, 1527, 7, 84, 2, 2, 1527, 1528, 7, 89, 2, 2, 1528, 1529, 7, 84, 2, 2, 1529, 1530, 7, 75, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 1532, 7, 71, 2, 2, 1532, 294, 3, 2, 2, 2, 1533, 1534, 7, 86, 2, 2, 1534, 1535, 7, 84, 2, 2, 1535, 1536, 7, 67, 2, 2, 1536, 1537, 7, 80, 2, 2, 1537, 1538, 7, 85, 2, 2, 1538, 1539, 7, 72, 2, 2, 1539, 1540, 7, 81, 2, 2, 1540, 1541, 7, 84, 2, 2, 1541, 1542, 7, 79, 2, 2, 1542, 296, 3, 2, 2, 2, 1543, 1544, 7, 84, 2, 2, 1544, 1545, 7, 71, 2, 2, 1545, 1546, 7, 70, 2, 2, 1546, 1547, 7, 87, 2, 2, 1547, 1548, 7, 69, 2, 2, 1548, 1549, 7, 71, 2, 2, 1549, 298, 3, 2, 2, 2, 1550, 1551, 7, 87, 2, 2, 1551, 1552, 7, 85, 2, 2, 1552, 1553, 7, 75, 2, 2, 1553, 1554, 7, 80, 2, 2, 1554, 1555, 7, 73, 2, 2, 1555, 300, 3, 2, 2, 2, 1556, 1557, 7, 85, 2, 2, 1557, 1558, 7, 71, 2, 2, 1558, 1559, 7, 84, 2, 2, 1559, 1560, 7, 70, 2, 2, 1560, 1561, 7, 71, 2, 2, 1561, 302, 3, 2, 2, 2, 1562, 1563, 7, 85, 2, 2, 1563, 1564, 7, 71, 2, 2, 1564, 1565, 7, 84, 2, 2, 1565, 1566, 7, 70, 2, 2, 1566, 1567, 7, 71, 2, 2, 1567, 1568, 7, 82, 2, 2, 1568, 1569, 7, 84, 2, 2, 1569, 1570, 7, 81, 2, 2, 1570, 1571, 7, 82, 2, 2, 1571, 1572, 7, 71, 2, 2, 1572, 1573, 7, 84, 2, 2, 1573, 1574, 7, 86, 2, 2, 1574, 1575, 7, 75, 2, 2, 1575, 1576, 7, 71, 2, 2, 1576, 1577, 7, 85, 2, 2, 1577, 304, 3, 2, 2, 2, 1578, 1579, 7, 84, 2, 2, 1579, 1580, 7, 71, 2, 2, 1580, 1581, 7, 69, 2, 2, 1581, 1582, 7, 81, 2, 2, 1582, 1583, 7, 84, 2, 2, 1583, 1584, 7, 70, 2, 2, 1584, 1585, 7, 84, 2, 2, 1585, 1586, 7, 71, 2, 2, 1586, 1587, 7, 67, 2, 2, 1587, 1588, 7, 70, 2, 2, 1588, 1589, 7, 71, 2, 2, 1589, 1590, 7, 84, 2, 2, 1590, 306, 3, 2, 2, 2, 1591, 1592, 7, 84, 2, 2, 1592, 1593, 7, 71, 2, 2, 1593, 1594, 7, 69, 2, 2, 1594, 1595, 7, 81, 2, 2, 1595, 1596, 7, 84, 2, 2, 1596, 1597, 7, 70, 2, 2, 1597, 1598, 7, 89, 2, 2, 1598, 1599, 7, 84, 2, 2, 1599, 1600, 7, 75, 2, 2, 1600, 1601, 7, 86, 2, 2, 1601, 1602, 7, 71, 2, 2, 1602, 1603, 7, 84, 2, 2, 1603, 308, 3, 2, 2, 2, 1604, 1605, 7, 70, 2, 2, 1605, 1606, 7, 71, 2, 2, 1606, 1607, 7, 78, 2, 2, 1607, 1608, 7, 75, 2, 2, 1608, 1609, 7, 79, 2, 2, 1609, 1610, 7, 75, 2, 2, 1610, 1611, 7, 86, 2, 2, 1611, 1612, 7, 71, 2, 2, 1612, 1613, 7, 70, 2, 2, 1613, 310, 3, 2, 2, 2, 1614, 1615, 7, 72, 2, 2, 1615, 1616, 7, 75, 2, 2, 1616, 1617, 7, 71, 2, 2, 1617, 1618, 7, 78, 2, 2, 1618, 1619, 7, 70, 2, 2, 1619, 1620, 7, 85, 2, 2, 1620, 312, 3, 2, 2, 2, 1621, 1622, 7, 86, 2, 2, 1622, 1623, 7, 71, 2, 2, 1623, 1624, 7, 84, 2, 2, 1624, 1625, 7, 79, 2, 2, 1625, 1626, 7, 75, 2, 2, 1626, 1627, 7, 80, 2, 2, 1627, 1628, 7, 67, 2, 2, 1628, 1629, 7, 86, 2, 2, 1629, 1630, 7, 71, 2, 2, 1630, 1631, 7, 70, 2, 2, 1631, 314, 3, 2, 2, 2, 1632, 1633, 7, 69, 2, 2, 1633, 1634, 7, 81, 2, 2, 1634, 1635, 7, 78, 2, 2, 1635, 1636, 7, 78, 2, 2, 1636, 1637, 7, 71, 2, 2, 1637, 1638, 7, 69, 2, 2, 1638, 1639, 7, 86, 2, 2, 1639, 1640, 7, 75, 2, 2, 1640, 1641, 7, 81, 2, 2, 1641, 1642, 7, 80, 2, 2, 1642, 316, 3, 2, 2, 2, 1643, 1644, 7, 75, 2, 2, 1644, 1645, 7, 86, 2, 2, 1645, 1646, 7, 71, 2, 2, 1646, 1647, 7, 79, 2, 2, 1647, 1648, 7, 85, 2, 2, 1648, 318, 3, 2, 2, 2, 1649, 1650, 7, 77, 2, 2, 1650, 1651, 7, 71, 2, 2, 1651, 1652, 7, 91, 2, 2, 1652, 1653, 7, 85, 2, 2, 1653, 320, 3, 2, 2, 2, 1654, 1655, 7, 71, 2, 2, 1655, 1656, 7, 85, 2, 2, 1656, 1657, 7, 69, 2, 2, 1657, 1658, 7, 67, 2, 2, 1658, 1659, 7, 82, 2, 2, 1659, 1660, 7, 71, 2, 2, 1660, 1661, 7, 70, 2, 2, 1661, 322, 3, 2, 2, 2, 1662, 1663, 7, 78, 2, 2, 1663, 1664, 7, 75, 2, 2, 1664, 1665, 7, 80, 2, 2, 1665, 1666, 7, 71, 2, 2, 1666, 1667, 7, 85, 2, 2, 1667, 324, 3, 2, 2, 2, 1668, 1669, 7, 85, 2, 2, 1669, 1670, 7, 71, 2, 2, 1670, 1671, 7, 82, 2, 2, 1671, 1672, 7, 67, 2, 2, 1672, 1673, 7, 84, 2, 2, 1673, 1674, 7, 67, 2, 2, 1674, 1675, 7, 86, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 70, 2, 2, 1677, 326, 3, 2, 2, 2, 1678, 1679, 7, 72, 2, 2, 1679, 1680, 7, 87, 2, 2, 1680, 1681, 7, 80, 2, 2, 1681, 1682, 7, 69, 2, 2, 1682, 1683, 7, 86, 2, 2, 1683, 1684, 7, 75, 2, 2, 1684, 1685, 7, 81, 2, 2, 1685, 1686, 7, 80, 2, 2, 1686, 328, 3, 2, 2, 2, 1687, 1688, 7, 71, 2, 2, 1688, 1689, 7, 90, 2, 2, 1689, 1690, 7, 86, 2, 2, 1690, 1691, 7, 71, 2, 2, 1691, 1692, 7, 80, 2, 2, 1692, 1693, 7, 70, 2, 2, 1693, 1694, 7, 71, 2, 2, 1694, 1695, 7, 70, 2, 2, 1695, 330, 3, 2, 2, 2, 1696, 1697, 7, 84, 2, 2, 1697, 1698, 7, 71, 2, 2, 1698, 1699, 7, 72, 2, 2, 1699, 1700, 7, 84, 2, 2, 1700, 1701, 7, 71, 2, 2, 1701, 1702, 7, 85, 2, 2, 1702, 1703, 7, 74, 2, 2, 1703, 332, 3, 2, 2, 2, 1704, 1705, 7, 69, 2, 2, 1705, 1706, 7, 78, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 1708, 7, 67, 2, 2, 1708, 1709, 7, 84, 2, 2, 1709, 334, 3, 2, 2, 2, 1710, 1711, 7, 69, 2, 2, 1711, 1712, 7, 67, 2, 2, 1712, 1713, 7, 69, 2, 2, 1713, 1714, 7, 74, 2, 2, 1714, 1715, 7, 71, 2, 2, 1715, 336, 3, 2, 2, 2, 1716, 1717, 7, 87, 2, 2, 1717, 1718, 7, 80, 2, 2, 1718, 1719, 7, 69, 2, 2, 1719, 1720, 7, 67, 2, 2, 1720, 1721, 7, 69, 2, 2, 1721, 1722, 7, 74, 2, 2, 1722, 1723, 7, 71, 2, 2, 1723, 338, 3, 2, 2, 2, 1724, 1725, 7, 78, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 92, 2, 2, 1727, 1728, 7, 91, 2, 2, 1728, 340, 3, 2, 2, 2, 1729, 1730, 7, 72, 2, 2, 1730, 1731, 7, 81, 2, 2, 1731, 1732, 7, 84, 2, 2, 1732, 1733, 7, 79, 2, 2, 1733, 1734, 7, 67, 2, 2, 1734, 1735, 7, 86, 2, 2, 1735, 1736, 7, 86, 2, 2, 1736, 1737, 7, 71, 2, 2, 1737, 1738, 7, 70, 2, 2, 1738, 342, 3, 2, 2, 2, 1739, 1740, 7, 73, 2, 2, 1740, 1741, 7, 78, 2, 2, 1741, 1742, 7, 81, 2, 2, 1742, 1743, 7, 68, 2, 2, 1743, 1744, 7, 67, 2, 2, 1744, 1745, 7, 78, 2, 2, 1745, 344, 3, 2, 2, 2, 1746, 1747, 7, 86, 2, 2, 1747, 1748, 7, 71, 2, 2, 1748, 1749, 7, 79, 2, 2, 1749, 1750, 7, 82, 2, 2, 1750, 1751, 7, 81, 2, 2, 1751, 1752, 7, 84, 2, 2, 1752, 1753, 7, 67, 2, 2, 1753, 1754, 7, 84, 2, 2, 1754, 1755, 7, 91, 2, 2, 1755, 346, 3, 2, 2, 2, 1756, 1757, 7, 81, 2, 2, 1757, 1758, 7, 82, 2, 2, 1758, 1759, 7, 86, 2, 2, 1759, 1760, 7, 75, 2, 2, 1760, 1761, 7, 81, 2, 2, 1761, 1762, 7, 80, 2, 2, 1762, 1763, 7, 85, 2, 2, 1763, 348, 3, 2, 2, 2, 1764, 1765, 7, 87, 2, 2, 1765, 1766, 7, 80, 2, 2, 1766, 1767, 7, 85, 2, 2, 1767, 1768, 7, 71, 2, 2, 1768, 1769, 7, 86, 2, 2, 1769, 350, 3, 2, 2, 2, 1770, 1771, 7, 86, 2, 2, 1771, 1772, 7, 68, 2, 2, 1772, 1773, 7, 78, 2, 2, 1773, 1774, 7, 82, 2, 2, 1774, 1775, 7, 84, 2, 2, 1775, 1776, 7, 81, 2, 2, 1776, 1777, 7, 82, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 84, 2, 2, 1779, 1780, 7, 86, 2, 2, 1780, 1781, 7, 75, 2, 2, 1781, 1782, 7, 71, 2, 2, 1782, 1783, 7, 85, 2, 2, 1783, 352, 3, 2, 2, 2, 1784, 1785, 7, 70, 2, 2, 1785, 1786, 7, 68, 2, 2, 1786, 1787, 7, 82, 2, 2, 1787, 1788, 7, 84, 2, 2, 1788, 1789, 7, 81, 2, 2, 1789, 1790, 7, 82, 2, 2, 1790, 1791, 7, 71, 2, 2, 1791, 1792, 7, 84, 2, 2, 1792, 1793, 7, 86, 2, 2, 1793, 1794, 7, 75, 2, 2, 1794, 1795, 7, 71, 2, 2, 1795, 1796, 7, 85, 2, 2, 1796, 354, 3, 2, 2, 2, 1797, 1798, 7, 68, 2, 2, 1798, 1799, 7, 87, 2, 2, 1799, 1800, 7, 69, 2, 2, 1800, 1801, 7, 77, 2, 2, 1801, 1802, 7, 71, 2, 2, 1802, 1803, 7, 86, 2, 2, 1803, 1804, 7, 85, 2, 2, 1804, 356, 3, 2, 2, 2, 1805, 1806, 7, 85, 2, 2, 1806, 1807, 7, 77, 2, 2, 1807, 1808, 7, 71, 2, 2, 1808, 1809, 7, 89, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 70, 2, 2, 1811, 358, 3, 2, 2, 2, 1812, 1813, 7, 85, 2, 2, 1813, 1814, 7, 86, 2, 2, 1814, 1815, 7, 81, 2, 2, 1815, 1816, 7, 84, 2, 2, 1816, 1817, 7, 71, 2, 2, 1817, 1818, 7, 70, 2, 2, 1818, 360, 3, 2, 2, 2, 1819, 1820, 7, 70, 2, 2, 1820, 1821, 7, 75, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 1823, 7, 71, 2, 2, 1823, 1824, 7, 69, 2, 2, 1824, 1825, 7, 86, 2, 2, 1825, 1826, 7, 81, 2, 2, 1826, 1827, 7, 84, 2, 2, 1827, 1828, 7, 75, 2, 2, 1828, 1829, 7, 71, 2, 2, 1829, 1830, 7, 85, 2, 2, 1830, 362, 3, 2, 2, 2, 1831, 1832, 7, 78, 2, 2, 1832, 1833, 7, 81, 2, 2, 1833, 1834, 7, 69, 2, 2, 1834, 1835, 7, 67, 2, 2, 1835, 1836, 7, 86, 2, 2, 1836, 1837, 7, 75, 2, 2, 1837, 1838, 7, 81, 2, 2, 1838, 1839, 7, 80, 2, 2, 1839, 364, 3, 2, 2, 2, 1840, 1841, 7, 71, 2, 2, 1841, 1842, 7, 90, 2, 2, 1842, 1843, 7, 69, 2, 2, 1843, 1844, 7, 74, 2, 2, 1844, 1845, 7, 67, 2, 2, 1845, 1846, 7, 80, 2, 2, 1846, 1847, 7, 73, 2, 2, 1847, 1848, 7, 71, 2, 2, 1848, 366, 3, 2, 2, 2, 1849, 1850, 7, 67, 2, 2, 1850, 1851, 7, 84, 2, 2, 1851, 1852, 7, 69, 2, 2, 1852, 1853, 7, 74, 2, 2, 1853, 1854, 7, 75, 2, 2, 1854, 1855, 7, 88, 2, 2, 1855, 1856, 7, 71, 2, 2, 1856, 368, 3, 2, 2, 2, 1857, 1858, 7, 87, 2, 2, 1858, 1859, 7, 80, 2, 2, 1859, 1860, 7, 67, 2, 2, 1860, 1861, 7, 84, 2, 2, 1861, 1862, 7, 69, 2, 2, 1862, 1863, 7, 74, 2, 2, 1863, 1864, 7, 75, 2, 2, 1864, 1865, 7, 88, 2, 2, 1865, 1866, 7, 71, 2, 2, 1866, 370, 3, 2, 2, 2, 1867, 1868, 7, 72, 2, 2, 1868, 1869, 7, 75, 2, 2, 1869, 1870, 7, 78, 2, 2, 1870, 1871, 7, 71, 2, 2, 1871, 1872, 7, 72, 2, 2, 1872, 1873, 7, 81, 2, 2, 1873, 1874, 7, 84, 2, 2, 1874, 1875, 7, 79, 2, 2, 1875, 1876, 7, 67, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 372, 3, 2, 2, 2, 1878, 1879, 7, 86, 2, 2, 1879, 1880, 7, 81, 2, 2, 1880, 1881, 7, 87, 2, 2, 1881, 1882, 7, 69, 2, 2, 1882, 1883, 7, 74, 2, 2, 1883, 374, 3, 2, 2, 2, 1884, 1885, 7, 69, 2, 2, 1885, 1886, 7, 81, 2, 2, 1886, 1887, 7, 79, 2, 2, 1887, 1888, 7, 82, 2, 2, 1888, 1889, 7, 67, 2, 2, 1889, 1890, 7, 69, 2, 2, 1890, 1891, 7, 86, 2, 2, 1891, 376, 3, 2, 2, 2, 1892, 1893, 7, 69, 2, 2, 1893, 1894, 7, 81, 2, 2, 1894, 1895, 7, 80, 2, 2, 1895, 1896, 7, 69, 2, 2, 1896, 1897, 7, 67, 2, 2, 1897, 1898, 7, 86, 2, 2, 1898, 1899, 7, 71, 2, 2, 1899, 1900, 7, 80, 2, 2, 1900, 1901, 7, 67, 2, 2, 1901, 1902, 7, 86, 2, 2, 1902, 1903, 7, 71, 2, 2, 1903, 378, 3, 2, 2, 2, 1904, 1905, 7, 69, 2, 2, 1905, 1906, 7, 74, 2, 2, 1906, 1907, 7, 67, 2, 2, 1907, 1908, 7, 80, 2, 2, 1908, 1909, 7, 73, 2, 2, 1909, 1910, 7, 71, 2, 2, 1910, 380, 3, 2, 2, 2, 1911, 1912, 7, 69, 2, 2, 1912, 1913, 7, 67, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 69, 2, 2, 1915, 1916, 7, 67, 2, 2, 1916, 1917, 7, 70, 2, 2, 1917, 1918, 7, 71, 2, 2, 1918, 382, 3, 2, 2, 2, 1919, 1920, 7, 84, 2, 2, 1920, 1921, 7, 71, 2, 2, 1921, 1922, 7, 85, 2, 2, 1922, 1923, 7, 86, 2, 2, 1923, 1924, 7, 84, 2, 2, 1924, 1925, 7, 75, 2, 2, 1925, 1926, 7, 69, 2, 2, 1926, 1927, 7, 86, 2, 2, 1927, 384, 3, 2, 2, 2, 1928, 1929, 7, 69, 2, 2, 1929, 1930, 7, 78, 2, 2, 1930, 1931, 7, 87, 2, 2, 1931, 1932, 7, 85, 2, 2, 1932, 1933, 7, 86, 2, 2, 1933, 1934, 7, 71, 2, 2, 1934, 1935, 7, 84, 2, 2, 1935, 1936, 7, 71, 2, 2, 1936, 1937, 7, 70, 2, 2, 1937, 386, 3, 2, 2, 2, 1938, 1939, 7, 85, 2, 2, 1939, 1940, 7, 81, 2, 2, 1940, 1941, 7, 84, 2, 2, 1941, 1942, 7, 86, 2, 2, 1942, 1943, 7, 71, 2, 2, 1943, 1944, 7, 70, 2, 2, 1944, 388, 3, 2, 2, 2, 1945, 1946, 7, 82, 2, 2, 1946, 1947, 7, 87, 2, 2, 1947, 1948, 7, 84, 2, 2, 1948, 1949, 7, 73, 2, 2, 1949, 1950, 7, 71, 2, 2, 1950, 390, 3, 2, 2, 2, 1951, 1952, 7, 75, 2, 2, 1952, 1953, 7, 80, 2, 2, 1953, 1954, 7, 82, 2, 2, 1954, 1955, 7, 87, 2, 2, 1955, 1956, 7, 86, 2, 2, 1956, 1957, 7, 72, 2, 2, 1957, 1958, 7, 81, 2, 2, 1958, 1959, 7, 84, 2, 2, 1959, 1960, 7, 79, 2, 2, 1960, 1961, 7, 67, 2, 2, 1961, 1962, 7, 86, 2, 2, 1962, 392, 3, 2, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 87, 2, 2, 1965, 1966, 7, 86, 2, 2, 1966, 1967, 7, 82, 2, 2, 1967, 1968, 7, 87, 2, 2, 1968, 1969, 7, 86, 2, 2, 1969, 1970, 7, 72, 2, 2, 1970, 1971, 7, 81, 2, 2, 1971, 1972, 7, 84, 2, 2, 1972, 1973, 7, 79, 2, 2, 1973, 1974, 7, 67, 2, 2, 1974, 1975, 7, 86, 2, 2, 1975, 394, 3, 2, 2, 2, 1976, 1977, 7, 70, 2, 2, 1977, 1978, 7, 67, 2, 2, 1978, 1979, 7, 86, 2, 2, 1979, 1980, 7, 67, 2, 2, 1980, 1981, 7, 68, 2, 2, 1981, 1982, 7, 67, 2, 2, 1982, 1983, 7, 85, 2, 2, 1983, 1984, 7, 71, 2, 2, 1984, 396, 3, 2, 2, 2, 1985, 1986, 7, 70, 2, 2, 1986, 1987, 7, 67, 2, 2, 1987, 1988, 7, 86, 2, 2, 1988, 1989, 7, 67, 2, 2, 1989, 1990, 7, 68, 2, 2, 1990, 1991, 7, 67, 2, 2, 1991, 1992, 7, 85, 2, 2, 1992, 1993, 7, 71, 2, 2, 1993, 1994, 7, 85, 2, 2, 1994, 398, 3, 2, 2, 2, 1995, 1996, 7, 70, 2, 2, 1996, 1997, 7, 72, 2, 2, 1997, 1998, 7, 85, 2, 2, 1998, 400, 3, 2, 2, 2, 1999, 2000, 7, 86, 2, 2, 2000, 2001, 7, 84, 2, 2, 2001, 2002, 7, 87, 2, 2, 2002, 2003, 7, 80, 2, 2, 2003, 2004, 7, 69, 2, 2, 2004, 2005, 7, 67, 2, 2, 2005, 2006, 7, 86, 2, 2, 2006, 2007, 7, 71, 2, 2, 2007, 402, 3, 2, 2, 2, 2008, 2009, 7, 67, 2, 2, 2009, 2010, 7, 80, 2, 2, 2010, 2011, 7, 67, 2, 2, 2011, 2012, 7, 78, 2, 2, 2012, 2013, 7, 91, 2, 2, 2013, 2014, 7, 92, 2, 2, 2014, 2015, 7, 71, 2, 2, 2015, 404, 3, 2, 2, 2, 2016, 2017, 7, 69, 2, 2, 2017, 2018, 7, 81, 2, 2, 2018, 2019, 7, 79, 2, 2, 2019, 2020, 7, 82, 2, 2, 2020, 2021, 7, 87, 2, 2, 2021, 2022, 7, 86, 2, 2, 2022, 2023, 7, 71, 2, 2, 2023, 406, 3, 2, 2, 2, 2024, 2025, 7, 78, 2, 2, 2025, 2026, 7, 75, 2, 2, 2026, 2027, 7, 85, 2, 2, 2027, 2028, 7, 86, 2, 2, 2028, 408, 3, 2, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 86, 2, 2, 2031, 2032, 7, 67, 2, 2, 2032, 2033, 7, 86, 2, 2, 2033, 2034, 7, 75, 2, 2, 2034, 2035, 7, 85, 2, 2, 2035, 2036, 7, 86, 2, 2, 2036, 2037, 7, 75, 2, 2, 2037, 2038, 7, 69, 2, 2, 2038, 2039, 7, 85, 2, 2, 2039, 410, 3, 2, 2, 2, 2040, 2041, 7, 82, 2, 2, 2041, 2042, 7, 67, 2, 2, 2042, 2043, 7, 84, 2, 2, 2043, 2044, 7, 86, 2, 2, 2044, 2045, 7, 75, 2, 2, 2045, 2046, 7, 86, 2, 2, 2046, 2047, 7, 75, 2, 2, 2047, 2048, 7, 81, 2, 2, 2048, 2049, 7, 80, 2, 2, 2049, 2050, 7, 71, 2, 2, 2050, 2051, 7, 70, 2, 2, 2051, 412, 3, 2, 2, 2, 2052, 2053, 7, 71, 2, 2, 2053, 2054, 7, 90, 2, 2, 2054, 2055, 7, 86, 2, 2, 2055, 2056, 7, 71, 2, 2, 2056, 2057, 7, 84, 2, 2, 2057, 2058, 7, 80, 2, 2, 2058, 2059, 7, 67, 2, 2, 2059, 2060, 7, 78, 2, 2, 2060, 414, 3, 2, 2, 2, 2061, 2062, 7, 70, 2, 2, 2062, 2063, 7, 71, 2, 2, 2063, 2064, 7, 72, 2, 2, 2064, 2065, 7, 75, 2, 2, 2065, 2066, 7, 80, 2, 2, 2066, 2067, 7, 71, 2, 2, 2067, 2068, 7, 70, 2, 2, 2068, 416, 3, 2, 2, 2, 2069, 2070, 7, 84, 2, 2, 2070, 2071, 7, 71, 2, 2, 2071, 2072, 7, 88, 2, 2, 2072, 2073, 7, 81, 2, 2, 2073, 2074, 7, 77, 2, 2, 2074, 2075, 7, 71, 2, 2, 2075, 418, 3, 2, 2, 2, 2076, 2077, 7, 73, 2, 2, 2077, 2078, 7, 84, 2, 2, 2078, 2079, 7, 67, 2, 2, 2079, 2080, 7, 80, 2, 2, 2080, 2081, 7, 86, 2, 2, 2081, 420, 3, 2, 2, 2, 2082, 2083, 7, 78, 2, 2, 2083, 2084, 7, 81, 2, 2, 2084, 2085, 7, 69, 2, 2, 2085, 2086, 7, 77, 2, 2, 2086, 422, 3, 2, 2, 2, 2087, 2088, 7, 87, 2, 2, 2088, 2089, 7, 80, 2, 2, 2089, 2090, 7, 78, 2, 2, 2090, 2091, 7, 81, 2, 2, 2091, 2092, 7, 69, 2, 2, 2092, 2093, 7, 77, 2, 2, 2093, 424, 3, 2, 2, 2, 2094, 2095, 7, 79, 2, 2, 2095, 2096, 7, 85, 2, 2, 2096, 2097, 7, 69, 2, 2, 2097, 2098, 7, 77, 2, 2, 2098, 426, 3, 2, 2, 2, 2099, 2100, 7, 84, 2, 2, 2100, 2101, 7, 71, 2, 2, 2101, 2102, 7, 82, 2, 2, 2102, 2103, 7, 67, 2, 2, 2103, 2104, 7, 75, 2, 2, 2104, 2105, 7, 84, 2, 2, 2105, 428, 3, 2, 2, 2, 2106, 2107, 7, 84, 2, 2, 2107, 2108, 7, 71, 2, 2, 2108, 2109, 7, 69, 2, 2, 2109, 2110, 7, 81, 2, 2, 2110, 2111, 7, 88, 2, 2, 2111, 2112, 7, 71, 2, 2, 2112, 2113, 7, 84, 2, 2, 2113, 430, 3, 2, 2, 2, 2114, 2115, 7, 71, 2, 2, 2115, 2116, 7, 90, 2, 2, 2116, 2117, 7, 82, 2, 2, 2117, 2118, 7, 81, 2, 2, 2118, 2119, 7, 84, 2, 2, 2119, 2120, 7, 86, 2, 2, 2120, 432, 3, 2, 2, 2, 2121, 2122, 7, 75, 2, 2, 2122, 2123, 7, 79, 2, 2, 2123, 2124, 7, 82, 2, 2, 2124, 2125, 7, 81, 2, 2, 2125, 2126, 7, 84, 2, 2, 2126, 2127, 7, 86, 2, 2, 2127, 434, 3, 2, 2, 2, 2128, 2129, 7, 78, 2, 2, 2129, 2130, 7, 81, 2, 2, 2130, 2131, 7, 67, 2, 2, 2131, 2132, 7, 70, 2, 2, 2132, 436, 3, 2, 2, 2, 2133, 2134, 7, 84, 2, 2, 2134, 2135, 7, 81, 2, 2, 2135, 2136, 7, 78, 2, 2, 2136, 2137, 7, 71, 2, 2, 2137, 438, 3, 2, 2, 2, 2138, 2139, 7, 84, 2, 2, 2139, 2140, 7, 81, 2, 2, 2140, 2141, 7, 78, 2, 2, 2141, 2142, 7, 71, 2, 2, 2142, 2143, 7, 85, 2, 2, 2143, 440, 3, 2, 2, 2, 2144, 2145, 7, 69, 2, 2, 2145, 2146, 7, 81, 2, 2, 2146, 2147, 7, 79, 2, 2, 2147, 2148, 7, 82, 2, 2, 2148, 2149, 7, 67, 2, 2, 2149, 2150, 7, 69, 2, 2, 2150, 2151, 7, 86, 2, 2, 2151, 2152, 7, 75, 2, 2, 2152, 2153, 7, 81, 2, 2, 2153, 2154, 7, 80, 2, 2, 2154, 2155, 7, 85, 2, 2, 2155, 442, 3, 2, 2, 2, 2156, 2157, 7, 82, 2, 2, 2157, 2158, 7, 84, 2, 2, 2158, 2159, 7, 75, 2, 2, 2159, 2160, 7, 80, 2, 2, 2160, 2161, 7, 69, 2, 2, 2161, 2162, 7, 75, 2, 2, 2162, 2163, 7, 82, 2, 2, 2163, 2164, 7, 67, 2, 2, 2164, 2165, 7, 78, 2, 2, 2165, 2166, 7, 85, 2, 2, 2166, 444, 3, 2, 2, 2, 2167, 2168, 7, 86, 2, 2, 2168, 2169, 7, 84, 2, 2, 2169, 2170, 7, 67, 2, 2, 2170, 2171, 7, 80, 2, 2, 2171, 2172, 7, 85, 2, 2, 2172, 2173, 7, 67, 2, 2, 2173, 2174, 7, 69, 2, 2, 2174, 2175, 7, 86, 2, 2, 2175, 2176, 7, 75, 2, 2, 2176, 2177, 7, 81, 2, 2, 2177, 2178, 7, 80, 2, 2, 2178, 2179, 7, 85, 2, 2, 2179, 446, 3, 2, 2, 2, 2180, 2181, 7, 75, 2, 2, 2181, 2182, 7, 80, 2, 2, 2182, 2183, 7, 70, 2, 2, 2183, 2184, 7, 71, 2, 2, 2184, 2185, 7, 90, 2, 2, 2185, 448, 3, 2, 2, 2, 2186, 2187, 7, 75, 2, 2, 2187, 2188, 7, 80, 2, 2, 2188, 2189, 7, 70, 2, 2, 2189, 2190, 7, 71, 2, 2, 2190, 2191, 7, 90, 2, 2, 2191, 2192, 7, 71, 2, 2, 2192, 2193, 7, 85, 2, 2, 2193, 450, 3, 2, 2, 2, 2194, 2195, 7, 78, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 69, 2, 2, 2197, 2198, 7, 77, 2, 2, 2198, 2199, 7, 85, 2, 2, 2199, 452, 3, 2, 2, 2, 2200, 2201, 7, 81, 2, 2, 2201, 2202, 7, 82, 2, 2, 2202, 2203, 7, 86, 2, 2, 2203, 2204, 7, 75, 2, 2, 2204, 2205, 7, 81, 2, 2, 2205, 2206, 7, 80, 2, 2, 2206, 454, 3, 2, 2, 2, 2207, 2208, 7, 67, 2, 2, 2208, 2209, 7, 80, 2, 2, 2209, 2210, 7, 86, 2, 2, 2210, 2211, 7, 75, 2, 2, 2211, 456, 3, 2, 2, 2, 2212, 2213, 7, 78, 2, 2, 2213, 2214, 7, 81, 2, 2, 2214, 2215, 7, 69, 2, 2, 2215, 2216, 7, 67, 2, 2, 2216, 2217, 7, 78, 2, 2, 2217, 458, 3, 2, 2, 2, 2218, 2219, 7, 75, 2, 2, 2219, 2220, 7, 80, 2, 2, 2220, 2221, 7, 82, 2, 2, 2221, 2222, 7, 67, 2, 2, 2222, 2223, 7, 86, 2, 2, 2223, 2224, 7, 74, 2, 2, 2224, 460, 3, 2, 2, 2, 2225, 2226, 7, 89, 2, 2, 2226, 2227, 7, 67, 2, 2, 2227, 2228, 7, 86, 2, 2, 2228, 2229, 7, 71, 2, 2, 2229, 2230, 7, 84, 2, 2, 2230, 2231, 7, 79, 2, 2, 2231, 2232, 7, 67, 2, 2, 2232, 2233, 7, 84, 2, 2, 2233, 2234, 7, 77, 2, 2, 2234, 462, 3, 2, 2, 2, 2235, 2236, 7, 87, 2, 2, 2236, 2237, 7, 80, 2, 2, 2237, 2238, 7, 80, 2, 2, 2238, 2239, 7, 71, 2, 2, 2239, 2240, 7, 85, 2, 2, 2240, 2241, 7, 86, 2, 2, 2241, 464, 3, 2, 2, 2, 2242, 2243, 7, 79, 2, 2, 2243, 2244, 7, 67, 2, 2, 2244, 2245, 7, 86, 2, 2, 2245, 2246, 7, 69, 2, 2, 2246, 2247, 7, 74, 2, 2, 2247, 2248, 7, 97, 2, 2, 2248, 2249, 7, 84, 2, 2, 2249, 2250, 7, 71, 2, 2, 2250, 2251, 7, 69, 2, 2, 2251, 2252, 7, 81, 2, 2, 2252, 2253, 7, 73, 2, 2, 2253, 2254, 7, 80, 2, 2, 2254, 2255, 7, 75, 2, 2, 2255, 2256, 7, 92, 2, 2, 2256, 2257, 7, 71, 2, 2, 2257, 466, 3, 2, 2, 2, 2258, 2259, 7, 79, 2, 2, 2259, 2260, 7, 71, 2, 2, 2260, 2261, 7, 67, 2, 2, 2261, 2262, 7, 85, 2, 2, 2262, 2263, 7, 87, 2, 2, 2263, 2264, 7, 84, 2, 2, 2264, 2265, 7, 71, 2, 2, 2265, 2266, 7, 85, 2, 2, 2266, 468, 3, 2, 2, 2, 2267, 2268, 7, 81, 2, 2, 2268, 2269, 7, 80, 2, 2, 2269, 2270, 7, 71, 2, 2, 2270, 470, 3, 2, 2, 2, 2271, 2272, 7, 82, 2, 2, 2272, 2273, 7, 71, 2, 2, 2273, 2274, 7, 84, 2, 2, 2274, 472, 3, 2, 2, 2, 2275, 2276, 7, 79, 2, 2, 2276, 2277, 7, 67, 2, 2, 2277, 2278, 7, 86, 2, 2, 2278, 2279, 7, 69, 2, 2, 2279, 2280, 7, 74, 2, 2, 2280, 474, 3, 2, 2, 2, 2281, 2282, 7, 85, 2, 2, 2282, 2283, 7, 77, 2, 2, 2283, 2284, 7, 75, 2, 2, 2284, 2285, 7, 82, 2, 2, 2285, 2286, 7, 51, 2, 2, 2286, 476, 3, 2, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 71, 2, 2, 2289, 2290, 7, 90, 2, 2, 2290, 2291, 7, 86, 2, 2, 2291, 478, 3, 2, 2, 2, 2292, 2293, 7, 82, 2, 2, 2293, 2294, 7, 67, 2, 2, 2294, 2295, 7, 85, 2, 2, 2295, 2296, 7, 86, 2, 2, 2296, 480, 3, 2, 2, 2, 2297, 2298, 7, 82, 2, 2, 2298, 2299, 7, 67, 2, 2, 2299, 2300, 7, 86, 2, 2, 2300, 2301, 7, 86, 2, 2, 2301, 2302, 7, 71, 2, 2, 2302, 2303, 7, 84, 2, 2, 2303, 2304, 7, 80, 2, 2, 2304, 482, 3, 2, 2, 2, 2305, 2306, 7, 89, 2, 2, 2306, 2307, 7, 75, 2, 2, 2307, 2308, 7, 86, 2, 2, 2308, 2309, 7, 74, 2, 2, 2309, 2310, 7, 75, 2, 2, 2310, 2311, 7, 80, 2, 2, 2311, 484, 3, 2, 2, 2, 2312, 2313, 7, 70, 2, 2, 2313, 2314, 7, 71, 2, 2, 2314, 2315, 7, 72, 2, 2, 2315, 2316, 7, 75, 2, 2, 2316, 2317, 7, 80, 2, 2, 2317, 2318, 7, 71, 2, 2, 2318, 486, 3, 2, 2, 2, 2319, 2320, 7, 68, 2, 2, 2320, 2321, 7, 75, 2, 2, 2321, 2322, 7, 73, 2, 2, 2322, 2323, 7, 75, 2, 2, 2323, 2324, 7, 80, 2, 2, 2324, 2325, 7, 86, 2, 2, 2325, 2326, 7, 97, 2, 2, 2326, 2327, 7, 78, 2, 2, 2327, 2328, 7, 75, 2, 2, 2328, 2329, 7, 86, 2, 2, 2329, 2330, 7, 71, 2, 2, 2330, 2331, 7, 84, 2, 2, 2331, 2332, 7, 67, 2, 2, 2332, 2333, 7, 78, 2, 2, 2333, 488, 3, 2, 2, 2, 2334, 2335, 7, 85, 2, 2, 2335, 2336, 7, 79, 2, 2, 2336, 2337, 7, 67, 2, 2, 2337, 2338, 7, 78, 2, 2, 2338, 2339, 7, 78, 2, 2, 2339, 2340, 7, 75, 2, 2, 2340, 2341, 7, 80, 2, 2, 2341, 2342, 7, 86, 2, 2, 2342, 2343, 7, 97, 2, 2, 2343, 2344, 7, 78, 2, 2, 2344, 2345, 7, 75, 2, 2, 2345, 2346, 7, 86, 2, 2, 2346, 2347, 7, 71, 2, 2, 2347, 2348, 7, 84, 2, 2, 2348, 2349, 7, 67, 2, 2, 2349, 2350, 7, 78, 2, 2, 2350, 490, 3, 2, 2, 2, 2351, 2352, 7, 86, 2, 2, 2352, 2353, 7, 75, 2, 2, 2353, 2354, 7, 80, 2, 2, 2354, 2355, 7, 91, 2, 2, 2355, 2356, 7, 75, 2, 2, 2356, 2357, 7, 80, 2, 2, 2357, 2358, 7, 86, 2, 2, 2358, 2359, 7, 97, 2, 2, 2359, 2360, 7, 78, 2, 2, 2360, 2361, 7, 75, 2, 2, 2361, 2362, 7, 86, 2, 2, 2362, 2363, 7, 71, 2, 2, 2363, 2364, 7, 84, 2, 2, 2364, 2365, 7, 67, 2, 2, 2365, 2366, 7, 78, 2, 2, 2366, 492, 3, 2, 2, 2, 2367, 2368, 7, 75, 2, 2, 2368, 2369, 7, 80, 2, 2, 2369, 2370, 7, 86, 2, 2, 2370, 2371, 7, 71, 2, 2, 2371, 2372, 7, 73, 2, 2, 2372, 2373, 7, 71, 2, 2, 2373, 2374, 7, 84, 2, 2, 2374, 2375, 7, 97, 2, 2, 2375, 2376, 7, 88, 2, 2, 2376, 2377, 7, 67, 2, 2, 2377, 2378, 7, 78, 2, 2, 2378, 2379, 7, 87, 2, 2, 2379, 2380, 7, 71, 2, 2, 2380, 494, 3, 2, 2, 2, 2381, 2382, 7, 70, 2, 2, 2382, 2383, 7, 71, 2, 2, 2383, 2384, 7, 69, 2, 2, 2384, 2385, 7, 75, 2, 2, 2385, 2386, 7, 79, 2, 2, 2386, 2387, 7, 67, 2, 2, 2387, 2388, 7, 78, 2, 2, 2388, 2389, 7, 97, 2, 2, 2389, 2390, 7, 88, 2, 2, 2390, 2391, 7, 67, 2, 2, 2391, 2392, 7, 78, 2, 2, 2392, 2393, 7, 87, 2, 2, 2393, 2394, 7, 71, 2, 2, 2394, 496, 3, 2, 2, 2, 2395, 2396, 7, 70, 2, 2, 2396, 2397, 7, 81, 2, 2, 2397, 2398, 7, 87, 2, 2, 2398, 2399, 7, 68, 2, 2, 2399, 2400, 7, 78, 2, 2, 2400, 2401, 7, 71, 2, 2, 2401, 2402, 7, 97, 2, 2, 2402, 2403, 7, 78, 2, 2, 2403, 2404, 7, 75, 2, 2, 2404, 2405, 7, 86, 2, 2, 2405, 2406, 7, 71, 2, 2, 2406, 2407, 7, 84, 2, 2, 2407, 2408, 7, 67, 2, 2, 2408, 2409, 7, 78, 2, 2, 2409, 498, 3, 2, 2, 2, 2410, 2411, 7, 68, 2, 2, 2411, 2412, 7, 75, 2, 2, 2412, 2413, 7, 73, 2, 2, 2413, 2414, 7, 70, 2, 2, 2414, 2415, 7, 71, 2, 2, 2415, 2416, 7, 69, 2, 2, 2416, 2417, 7, 75, 2, 2, 2417, 2418, 7, 79, 2, 2, 2418, 2419, 7, 67, 2, 2, 2419, 2420, 7, 78, 2, 2, 2420, 2421, 7, 97, 2, 2, 2421, 2422, 7, 78, 2, 2, 2422, 2423, 7, 75, 2, 2, 2423, 2424, 7, 86, 2, 2, 2424, 2425, 7, 71, 2, 2, 2425, 2426, 7, 84, 2, 2, 2426, 2427, 7, 67, 2, 2, 2427, 2428, 7, 78, 2, 2, 2428, 500, 3, 2, 2, 2, 2429, 2430, 7, 75, 2, 2, 2430, 2431, 7, 70, 2, 2, 2431, 2432, 7, 71, 2, 2, 2432, 2433, 7, 80, 2, 2, 2433, 2434, 7, 86, 2, 2, 2434, 2435, 7, 75, 2, 2, 2435, 2436, 7, 72, 2, 2, 2436, 2437, 7, 75, 2, 2, 2437, 2438, 7, 71, 2, 2, 2438, 2439, 7, 84, 2, 2, 2439, 502, 3, 2, 2, 2, 2440, 2441, 7, 68, 2, 2, 2441, 2442, 7, 67, 2, 2, 2442, 2443, 7, 69, 2, 2, 2443, 2444, 7, 77, 2, 2, 2444, 2445, 7, 83, 2, 2, 2445, 2446, 7, 87, 2, 2, 2446, 2447, 7, 81, 2, 2, 2447, 2448, 7, 86, 2, 2, 2448, 2449, 7, 71, 2, 2, 2449, 2450, 7, 70, 2, 2, 2450, 2451, 7, 97, 2, 2, 2451, 2452, 7, 75, 2, 2, 2452, 2453, 7, 70, 2, 2, 2453, 2454, 7, 71, 2, 2, 2454, 2455, 7, 80, 2, 2, 2455, 2456, 7, 86, 2, 2, 2456, 2457, 7, 75, 2, 2, 2457, 2458, 7, 72, 2, 2, 2458, 2459, 7, 75, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 84, 2, 2, 2461, 504, 3, 2, 2, 2, 2462, 2463, 7, 85, 2, 2, 2463, 2464, 7, 75, 2, 2, 2464, 2465, 7, 79, 2, 2, 2465, 2466, 7, 82, 2, 2, 2466, 2467, 7, 78, 2, 2, 2467, 2468, 7, 71, 2, 2, 2468, 2469, 7, 97, 2, 2, 2469, 2470, 7, 69, 2, 2, 2470, 2471, 7, 81, 2, 2, 2471, 2472, 7, 79, 2, 2, 2472, 2473, 7, 79, 2, 2, 2473, 2474, 7, 71, 2, 2, 2474, 2475, 7, 80, 2, 2, 2475, 2476, 7, 86, 2, 2, 2476, 506, 3, 2, 2, 2, 2477, 2478, 7, 68, 2, 2, 2478, 2479, 7, 84, 2, 2, 2479, 2480, 7, 67, 2, 2, 2480, 2481, 7, 69, 2, 2, 2481, 2482, 7, 77, 2, 2, 2482, 2483, 7, 71, 2, 2, 2483, 2484, 7, 86, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 70, 2, 2, 2486, 2487, 7, 97, 2, 2, 2487, 2488, 7, 71, 2, 2, 2488, 2489, 7, 79, 2, 2, 2489, 2490, 7, 82, 2, 2, 2490, 2491, 7, 86, 2, 2, 2491, 2492, 7, 91, 2, 2, 2492, 2493, 7, 97, 2, 2, 2493, 2494, 7, 69, 2, 2, 2494, 2495, 7, 81, 2, 2, 2495, 2496, 7, 79, 2, 2, 2496, 2497, 7, 79, 2, 2, 2497, 2498, 7, 71, 2, 2, 2498, 2499, 7, 80, 2, 2, 2499, 2500, 7, 86, 2, 2, 2500, 508, 3, 2, 2, 2, 2501, 2502, 7, 68, 2, 2, 2502, 2503, 7, 84, 2, 2, 2503, 2504, 7, 67, 2, 2, 2504, 2505, 7, 69, 2, 2, 2505, 2506, 7, 77, 2, 2, 2506, 2507, 7, 71, 2, 2, 2507, 2508, 7, 86, 2, 2, 2508, 2509, 7, 71, 2, 2, 2509, 2510, 7, 70, 2, 2, 2510, 2511, 7, 97, 2, 2, 2511, 2512, 7, 69, 2, 2, 2512, 2513, 7, 81, 2, 2, 2513, 2514, 7, 79, 2, 2, 2514, 2515, 7, 79, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 80, 2, 2, 2517, 2518, 7, 86, 2, 2, 2518, 510, 3, 2, 2, 2, 2519, 2520, 7, 89, 2, 2, 2520, 2521, 7, 85, 2, 2, 2521, 512, 3, 2, 2, 2, 2522, 2523, 7, 87, 2, 2, 2523, 2524, 7, 80, 2, 2, 2524, 2525, 7, 84, 2, 2, 2525, 2526, 7, 71, 2, 2, 2526, 2527, 7, 69, 2, 2, 2527, 2528, 7, 81, 2, 2, 2528, 2529, 7, 73, 2, 2, 2529, 2530, 7, 80, 2, 2, 2530, 2531, 7, 75, 2, 2, 2531, 2532, 7, 92, 2, 2, 2532, 2533, 7, 71, 2, 2, 2533, 2534, 7, 70, 2, 2, 2534, 514, 3, 2, 2, 2, 2535, 2537, 7, 36, 2, 2, 2536, 2538, 10, 4, 2, 2, 2537, 2536, 3, 2, 2, 2, 2538, 2539, 3, 2, 2, 2, 2539, 2537, 3, 2, 2, 2, 2539, 2540, 3, 2, 2, 2, 2540, 2541, 3, 2, 2, 2, 2541, 2542, 7, 36, 2, 2, 2542, 516, 3, 2, 2, 2, 2543, 2544, 7, 48, 2, 2, 2544, 2545, 5, 571, 286, 2, 2545, 518, 3, 2, 2, 2, 2546, 2547, 5, 571, 286, 2, 2547, 520, 3, 2, 2, 2, 2548, 2549, 7, 85, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 84, 2, 2, 2551, 2552, 7, 75, 2, 2, 2552, 2553, 7, 80, 2, 2, 2553, 2554, 7, 73, 2, 2, 2554, 522, 3, 2, 2, 2, 2555, 2556, 7, 67, 2, 2, 2556, 2557, 7, 84, 2, 2, 2557, 2558, 7, 84, 2, 2, 2558, 2559, 7, 67, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 524, 3, 2, 2, 2, 2561, 2562, 7, 79, 2, 2, 2562, 2563, 7, 67, 2, 2, 2563, 2564, 7, 82, 2, 2, 2564, 526, 3, 2, 2, 2, 2565, 2566, 7, 69, 2, 2, 2566, 2567, 7, 74, 2, 2, 2567, 2568, 7, 67, 2, 2, 2568, 2569, 7, 84, 2, 2, 2569, 528, 3, 2, 2, 2, 2570, 2571, 7, 88, 2, 2, 2571, 2572, 7, 67, 2, 2, 2572, 2573, 7, 84, 2, 2, 2573, 2574, 7, 69, 2, 2, 2574, 2575, 7, 74, 2, 2, 2575, 2576, 7, 67, 2, 2, 2576, 2577, 7, 84, 2, 2, 2577, 530, 3, 2, 2, 2, 2578, 2579, 7, 68, 2, 2, 2579, 2580, 7, 75, 2, 2, 2580, 2581, 7, 80, 2, 2, 2581, 2582, 7, 67, 2, 2, 2582, 2583, 7, 84, 2, 2, 2583, 2584, 7, 91, 2, 2, 2584, 532, 3, 2, 2, 2, 2585, 2586, 7, 88, 2, 2, 2586, 2587, 7, 67, 2, 2, 2587, 2588, 7, 84, 2, 2, 2588, 2589, 7, 68, 2, 2, 2589, 2590, 7, 75, 2, 2, 2590, 2591, 7, 80, 2, 2, 2591, 2592, 7, 67, 2, 2, 2592, 2593, 7, 84, 2, 2, 2593, 2594, 7, 91, 2, 2, 2594, 534, 3, 2, 2, 2, 2595, 2596, 7, 68, 2, 2, 2596, 2597, 7, 91, 2, 2, 2597, 2598, 7, 86, 2, 2, 2598, 2599, 7, 71, 2, 2, 2599, 2600, 7, 85, 2, 2, 2600, 536, 3, 2, 2, 2, 2601, 2602, 7, 70, 2, 2, 2602, 2603, 7, 71, 2, 2, 2603, 2604, 7, 69, 2, 2, 2604, 2605, 7, 75, 2, 2, 2605, 2606, 7, 79, 2, 2, 2606, 2607, 7, 67, 2, 2, 2607, 2608, 7, 78, 2, 2, 2608, 538, 3, 2, 2, 2, 2609, 2610, 7, 86, 2, 2, 2610, 2611, 7, 75, 2, 2, 2611, 2612, 7, 80, 2, 2, 2612, 2613, 7, 91, 2, 2, 2613, 2614, 7, 75, 2, 2, 2614, 2615, 7, 80, 2, 2, 2615, 2616, 7, 86, 2, 2, 2616, 540, 3, 2, 2, 2, 2617, 2618, 7, 85, 2, 2, 2618, 2619, 7, 79, 2, 2, 2619, 2620, 7, 67, 2, 2, 2620, 2621, 7, 78, 2, 2, 2621, 2622, 7, 78, 2, 2, 2622, 2623, 7, 75, 2, 2, 2623, 2624, 7, 80, 2, 2, 2624, 2625, 7, 86, 2, 2, 2625, 542, 3, 2, 2, 2, 2626, 2627, 7, 75, 2, 2, 2627, 2628, 7, 80, 2, 2, 2628, 2629, 7, 86, 2, 2, 2629, 544, 3, 2, 2, 2, 2630, 2631, 7, 68, 2, 2, 2631, 2632, 7, 75, 2, 2, 2632, 2633, 7, 73, 2, 2, 2633, 2634, 7, 75, 2, 2, 2634, 2635, 7, 80, 2, 2, 2635, 2636, 7, 86, 2, 2, 2636, 546, 3, 2, 2, 2, 2637, 2638, 7, 72, 2, 2, 2638, 2639, 7, 78, 2, 2, 2639, 2640, 7, 81, 2, 2, 2640, 2641, 7, 67, 2, 2, 2641, 2642, 7, 86, 2, 2, 2642, 548, 3, 2, 2, 2, 2643, 2644, 7, 70, 2, 2, 2644, 2645, 7, 81, 2, 2, 2645, 2646, 7, 87, 2, 2, 2646, 2647, 7, 68, 2, 2, 2647, 2648, 7, 78, 2, 2, 2648, 2649, 7, 71, 2, 2, 2649, 550, 3, 2, 2, 2, 2650, 2651, 7, 70, 2, 2, 2651, 2652, 7, 67, 2, 2, 2652, 2653, 7, 86, 2, 2, 2653, 2654, 7, 71, 2, 2, 2654, 552, 3, 2, 2, 2, 2655, 2656, 7, 86, 2, 2, 2656, 2657, 7, 75, 2, 2, 2657, 2658, 7, 79, 2, 2, 2658, 2659, 7, 71, 2, 2, 2659, 554, 3, 2, 2, 2, 2660, 2661, 7, 86, 2, 2, 2661, 2662, 7, 75, 2, 2, 2662, 2663, 7, 79, 2, 2, 2663, 2664, 7, 71, 2, 2, 2664, 2665, 7, 85, 2, 2, 2665, 2666, 7, 86, 2, 2, 2666, 2667, 7, 67, 2, 2, 2667, 2668, 7, 79, 2, 2, 2668, 2669, 7, 82, 2, 2, 2669, 556, 3, 2, 2, 2, 2670, 2671, 7, 79, 2, 2, 2671, 2672, 7, 87, 2, 2, 2672, 2673, 7, 78, 2, 2, 2673, 2674, 7, 86, 2, 2, 2674, 2675, 7, 75, 2, 2, 2675, 2676, 7, 85, 2, 2, 2676, 2677, 7, 71, 2, 2, 2677, 2678, 7, 86, 2, 2, 2678, 558, 3, 2, 2, 2, 2679, 2680, 7, 68, 2, 2, 2680, 2681, 7, 81, 2, 2, 2681, 2682, 7, 81, 2, 2, 2682, 2683, 7, 78, 2, 2, 2683, 2684, 7, 71, 2, 2, 2684, 2685, 7, 67, 2, 2, 2685, 2686, 7, 80, 2, 2, 2686, 560, 3, 2, 2, 2, 2687, 2688, 7, 84, 2, 2, 2688, 2689, 7, 67, 2, 2, 2689, 2690, 7, 89, 2, 2, 2690, 562, 3, 2, 2, 2, 2691, 2692, 7, 84, 2, 2, 2692, 2693, 7, 81, 2, 2, 2693, 2694, 7, 89, 2, 2, 2694, 564, 3, 2, 2, 2, 2695, 2696, 7, 80, 2, 2, 2696, 2697, 7, 87, 2, 2, 2697, 2698, 7, 78, 2, 2, 2698, 2699, 7, 78, 2, 2, 2699, 566, 3, 2, 2, 2, 2700, 2701, 7, 63, 2, 2, 2701, 568, 3, 2, 2, 2, 2702, 2703, 7, 46, 2, 2, 2703, 570, 3, 2, 2, 2, 2704, 2706, 9, 5, 2, 2, 2705, 2704, 3, 2, 2, 2, 2706, 2709, 3, 2, 2, 2, 2707, 2708, 3, 2, 2, 2, 2707, 2705, 3, 2, 2, 2, 2708, 2711, 3, 2, 2, 2, 2709, 2707, 3, 2, 2, 2, 2710, 2712, 9, 6, 2, 2, 2711, 2710, 3, 2, 2, 2, 2712, 2713, 3, 2, 2, 2, 2713, 2714, 3, 2, 2, 2, 2713, 2711, 3, 2, 2, 2, 2714, 2718, 3, 2, 2, 2, 2715, 2717, 9, 5, 2, 2, 2716, 2715, 3, 2, 2, 2, 2717, 2720, 3, 2, 2, 2, 2718, 2716, 3, 2, 2, 2, 2718, 2719, 3, 2, 2, 2, 2719, 572, 3, 2, 2, 2, 2720, 2718, 3, 2, 2, 2, 17, 2, 576, 587, 600, 612, 617, 621, 625, 631, 635, 637, 2539, 2707, 2713, 2718, 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 new file mode 100644 index 00000000..5582738e --- /dev/null +++ b/src/lib/flinksql/FlinkSqlLexer.js @@ -0,0 +1,2302 @@ +// Generated from /Users/erindeng/Desktop/dt-sql-parser/src/grammar/flinksql/FlinkSqlLexer.g4 by ANTLR 4.8 +// jshint ignore: start +var antlr4 = require('antlr4/index'); + + + +var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", + "\u0002\u011e\u0aa1\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", + "\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\u0003\u0002\u0006", + "\u0002\u023f\n\u0002\r\u0002\u000e\u0002\u0240\u0003\u0002\u0003\u0002", + "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0006\u0003", + "\u024a\n\u0003\r\u0003\u000e\u0003\u024b\u0003\u0003\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004\u0003", + "\u0004\u0007\u0004\u0257\n\u0004\f\u0004\u000e\u0004\u025a\u000b\u0004", + "\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0005", + "\u0003\u0005\u0003\u0005\u0003\u0005\u0005\u0005\u0265\n\u0005\u0003", + "\u0005\u0007\u0005\u0268\n\u0005\f\u0005\u000e\u0005\u026b\u000b\u0005", + "\u0003\u0005\u0005\u0005\u026e\n\u0005\u0003\u0005\u0003\u0005\u0005", + "\u0005\u0272\n\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005", + "\u0005\u0005\u0278\n\u0005\u0003\u0005\u0003\u0005\u0005\u0005\u027c", + "\n\u0005\u0005\u0005\u027e\n\u0005\u0003\u0005\u0003\u0005\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\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\u09ea\n\u0102\r\u0102\u000e\u0102\u09eb\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\u0107\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0108\u0003", + "\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0109\u0003\u0109\u0003", + "\u0109\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u0109\u0003", + "\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\u010b\u0003\u010b\u0003\u010b\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\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\u010f\u0003", + "\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0111\u0003\u0111\u0003", + "\u0111\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0111\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\u0113\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\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\u0118\u0003", + "\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003", + "\u0118\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\u011b\u0003\u011c\u0003\u011c\u0003\u011d\u0003\u011d\u0003", + "\u011e\u0007\u011e\u0a92\n\u011e\f\u011e\u000e\u011e\u0a95\u000b\u011e", + "\u0003\u011e\u0006\u011e\u0a98\n\u011e\r\u011e\u000e\u011e\u0a99\u0003", + "\u011e\u0007\u011e\u0a9d\n\u011e\f\u011e\u000e\u011e\u0aa0\u000b\u011e", + "\u0006\u024b\u0258\u0a93\u0a99\u0002\u011f\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\u0002\u0003\u0002\u0007\u0005\u0002\u000b\f\u000f\u000f\"\"\u0004", + "\u0002\f\f\u000f\u000f\u0003\u0002$$\u0006\u00022;C\\aac|\u0005\u0002", + "C\\aac|\u0002\u0aad\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\u0002", + "7\u0003\u0002\u0002\u0002\u00029\u0003\u0002\u0002\u0002\u0002;\u0003", + "\u0002\u0002\u0002\u0002=\u0003\u0002\u0002\u0002\u0002?\u0003\u0002", + "\u0002\u0002\u0002A\u0003\u0002\u0002\u0002\u0002C\u0003\u0002\u0002", + "\u0002\u0002E\u0003\u0002\u0002\u0002\u0002G\u0003\u0002\u0002\u0002", + "\u0002I\u0003\u0002\u0002\u0002\u0002K\u0003\u0002\u0002\u0002\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_\u0003\u0002\u0002\u0002\u0002a\u0003\u0002\u0002\u0002\u0002", + "c\u0003\u0002\u0002\u0002\u0002e\u0003\u0002\u0002\u0002\u0002g\u0003", + "\u0002\u0002\u0002\u0002i\u0003\u0002\u0002\u0002\u0002k\u0003\u0002", + "\u0002\u0002\u0002m\u0003\u0002\u0002\u0002\u0002o\u0003\u0002\u0002", + "\u0002\u0002q\u0003\u0002\u0002\u0002\u0002s\u0003\u0002\u0002\u0002", + "\u0002u\u0003\u0002\u0002\u0002\u0002w\u0003\u0002\u0002\u0002\u0002", + "y\u0003\u0002\u0002\u0002\u0002{\u0003\u0002\u0002\u0002\u0002}\u0003", + "\u0002\u0002\u0002\u0002\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\u0003\u023e\u0003\u0002\u0002\u0002\u0005\u0244\u0003", + "\u0002\u0002\u0002\u0007\u0252\u0003\u0002\u0002\u0002\t\u027d\u0003", + "\u0002\u0002\u0002\u000b\u0281\u0003\u0002\u0002\u0002\r\u0288\u0003", + "\u0002\u0002\u0002\u000f\u028d\u0003\u0002\u0002\u0002\u0011\u0291\u0003", + "\u0002\u0002\u0002\u0013\u0294\u0003\u0002\u0002\u0002\u0015\u0298\u0003", + "\u0002\u0002\u0002\u0017\u029c\u0003\u0002\u0002\u0002\u0019\u02a5\u0003", + "\u0002\u0002\u0002\u001b\u02ab\u0003\u0002\u0002\u0002\u001d\u02b1\u0003", + "\u0002\u0002\u0002\u001f\u02b4\u0003\u0002\u0002\u0002!\u02bd\u0003", + "\u0002\u0002\u0002#\u02c2\u0003\u0002\u0002\u0002%\u02c7\u0003\u0002", + "\u0002\u0002\'\u02ce\u0003\u0002\u0002\u0002)\u02d4\u0003\u0002\u0002", + "\u0002+\u02db\u0003\u0002\u0002\u0002-\u02e1\u0003\u0002\u0002\u0002", + "/\u02e4\u0003\u0002\u0002\u00021\u02e7\u0003\u0002\u0002\u00023\u02eb", + "\u0003\u0002\u0002\u00025\u02ee\u0003\u0002\u0002\u00027\u02f2\u0003", + "\u0002\u0002\u00029\u02f5\u0003\u0002\u0002\u0002;\u02fc\u0003\u0002", + "\u0002\u0002=\u0304\u0003\u0002\u0002\u0002?\u0309\u0003\u0002\u0002", + "\u0002A\u030f\u0003\u0002\u0002\u0002C\u0312\u0003\u0002\u0002\u0002", + "E\u0317\u0003\u0002\u0002\u0002G\u031d\u0003\u0002\u0002\u0002I\u0323", + "\u0003\u0002\u0002\u0002K\u0327\u0003\u0002\u0002\u0002M\u032c\u0003", + "\u0002\u0002\u0002O\u0330\u0003\u0002\u0002\u0002Q\u0339\u0003\u0002", + "\u0002\u0002S\u033e\u0003\u0002\u0002\u0002U\u0343\u0003\u0002\u0002", + "\u0002W\u0348\u0003\u0002\u0002\u0002Y\u034d\u0003\u0002\u0002\u0002", + "[\u0351\u0003\u0002\u0002\u0002]\u0356\u0003\u0002\u0002\u0002_\u035c", + "\u0003\u0002\u0002\u0002a\u0362\u0003\u0002\u0002\u0002c\u0368\u0003", + "\u0002\u0002\u0002e\u036d\u0003\u0002\u0002\u0002g\u0372\u0003\u0002", + "\u0002\u0002i\u0378\u0003\u0002\u0002\u0002k\u037d\u0003\u0002\u0002", + "\u0002m\u0385\u0003\u0002\u0002\u0002o\u0388\u0003\u0002\u0002\u0002", + "q\u038e\u0003\u0002\u0002\u0002s\u0396\u0003\u0002\u0002\u0002u\u039d", + "\u0003\u0002\u0002\u0002w\u03a2\u0003\u0002\u0002\u0002y\u03ac\u0003", + "\u0002\u0002\u0002{\u03b2\u0003\u0002\u0002\u0002}\u03b7\u0003\u0002", + "\u0002\u0002\u007f\u03c1\u0003\u0002\u0002\u0002\u0081\u03cb\u0003\u0002", + "\u0002\u0002\u0083\u03d5\u0003\u0002\u0002\u0002\u0085\u03dd\u0003\u0002", + "\u0002\u0002\u0087\u03e3\u0003\u0002\u0002\u0002\u0089\u03e9\u0003\u0002", + "\u0002\u0002\u008b\u03ee\u0003\u0002\u0002\u0002\u008d\u03f3\u0003\u0002", + "\u0002\u0002\u008f\u03fa\u0003\u0002\u0002\u0002\u0091\u0401\u0003\u0002", + "\u0002\u0002\u0093\u0407\u0003\u0002\u0002\u0002\u0095\u0411\u0003\u0002", + "\u0002\u0002\u0097\u0416\u0003\u0002\u0002\u0002\u0099\u041e\u0003\u0002", + "\u0002\u0002\u009b\u0425\u0003\u0002\u0002\u0002\u009d\u042c\u0003\u0002", + "\u0002\u0002\u009f\u0431\u0003\u0002\u0002\u0002\u00a1\u043a\u0003\u0002", + "\u0002\u0002\u00a3\u0442\u0003\u0002\u0002\u0002\u00a5\u0449\u0003\u0002", + "\u0002\u0002\u00a7\u0451\u0003\u0002\u0002\u0002\u00a9\u0459\u0003\u0002", + "\u0002\u0002\u00ab\u045e\u0003\u0002\u0002\u0002\u00ad\u0463\u0003\u0002", + "\u0002\u0002\u00af\u0468\u0003\u0002\u0002\u0002\u00b1\u046f\u0003\u0002", + "\u0002\u0002\u00b3\u0477\u0003\u0002\u0002\u0002\u00b5\u047e\u0003\u0002", + "\u0002\u0002\u00b7\u0482\u0003\u0002\u0002\u0002\u00b9\u048d\u0003\u0002", + "\u0002\u0002\u00bb\u0497\u0003\u0002\u0002\u0002\u00bd\u049c\u0003\u0002", + "\u0002\u0002\u00bf\u04a2\u0003\u0002\u0002\u0002\u00c1\u04a9\u0003\u0002", + "\u0002\u0002\u00c3\u04b2\u0003\u0002\u0002\u0002\u00c5\u04bc\u0003\u0002", + "\u0002\u0002\u00c7\u04bf\u0003\u0002\u0002\u0002\u00c9\u04cb\u0003\u0002", + "\u0002\u0002\u00cb\u04d4\u0003\u0002\u0002\u0002\u00cd\u04da\u0003\u0002", + "\u0002\u0002\u00cf\u04e1\u0003\u0002\u0002\u0002\u00d1\u04e8\u0003\u0002", + "\u0002\u0002\u00d3\u04f0\u0003\u0002\u0002\u0002\u00d5\u04f4\u0003\u0002", + "\u0002\u0002\u00d7\u04fa\u0003\u0002\u0002\u0002\u00d9\u04ff\u0003\u0002", + "\u0002\u0002\u00db\u0505\u0003\u0002\u0002\u0002\u00dd\u0511\u0003\u0002", + "\u0002\u0002\u00df\u0518\u0003\u0002\u0002\u0002\u00e1\u0521\u0003\u0002", + "\u0002\u0002\u00e3\u0527\u0003\u0002\u0002\u0002\u00e5\u052e\u0003\u0002", + "\u0002\u0002\u00e7\u0533\u0003\u0002\u0002\u0002\u00e9\u053b\u0003\u0002", + "\u0002\u0002\u00eb\u0544\u0003\u0002\u0002\u0002\u00ed\u0547\u0003\u0002", + "\u0002\u0002\u00ef\u0550\u0003\u0002\u0002\u0002\u00f1\u0558\u0003\u0002", + "\u0002\u0002\u00f3\u055b\u0003\u0002\u0002\u0002\u00f5\u0560\u0003\u0002", + "\u0002\u0002\u00f7\u0564\u0003\u0002\u0002\u0002\u00f9\u0569\u0003\u0002", + "\u0002\u0002\u00fb\u056c\u0003\u0002\u0002\u0002\u00fd\u0570\u0003\u0002", + "\u0002\u0002\u00ff\u0573\u0003\u0002\u0002\u0002\u0101\u0577\u0003\u0002", + "\u0002\u0002\u0103\u057c\u0003\u0002\u0002\u0002\u0105\u0582\u0003\u0002", + "\u0002\u0002\u0107\u058b\u0003\u0002\u0002\u0002\u0109\u0591\u0003\u0002", + "\u0002\u0002\u010b\u0599\u0003\u0002\u0002\u0002\u010d\u059d\u0003\u0002", + "\u0002\u0002\u010f\u05a3\u0003\u0002\u0002\u0002\u0111\u05ad\u0003\u0002", + "\u0002\u0002\u0113\u05b2\u0003\u0002\u0002\u0002\u0115\u05be\u0003\u0002", + "\u0002\u0002\u0117\u05c2\u0003\u0002\u0002\u0002\u0119\u05cd\u0003\u0002", + "\u0002\u0002\u011b\u05d4\u0003\u0002\u0002\u0002\u011d\u05d8\u0003\u0002", + "\u0002\u0002\u011f\u05db\u0003\u0002\u0002\u0002\u0121\u05e0\u0003\u0002", + "\u0002\u0002\u0123\u05e8\u0003\u0002\u0002\u0002\u0125\u05f3\u0003\u0002", + "\u0002\u0002\u0127\u05fd\u0003\u0002\u0002\u0002\u0129\u0607\u0003\u0002", + "\u0002\u0002\u012b\u060e\u0003\u0002\u0002\u0002\u012d\u0614\u0003\u0002", + "\u0002\u0002\u012f\u061a\u0003\u0002\u0002\u0002\u0131\u062a\u0003\u0002", + "\u0002\u0002\u0133\u0637\u0003\u0002\u0002\u0002\u0135\u0644\u0003\u0002", + "\u0002\u0002\u0137\u064e\u0003\u0002\u0002\u0002\u0139\u0655\u0003\u0002", + "\u0002\u0002\u013b\u0660\u0003\u0002\u0002\u0002\u013d\u066b\u0003\u0002", + "\u0002\u0002\u013f\u0671\u0003\u0002\u0002\u0002\u0141\u0676\u0003\u0002", + "\u0002\u0002\u0143\u067e\u0003\u0002\u0002\u0002\u0145\u0684\u0003\u0002", + "\u0002\u0002\u0147\u068e\u0003\u0002\u0002\u0002\u0149\u0697\u0003\u0002", + "\u0002\u0002\u014b\u06a0\u0003\u0002\u0002\u0002\u014d\u06a8\u0003\u0002", + "\u0002\u0002\u014f\u06ae\u0003\u0002\u0002\u0002\u0151\u06b4\u0003\u0002", + "\u0002\u0002\u0153\u06bc\u0003\u0002\u0002\u0002\u0155\u06c1\u0003\u0002", + "\u0002\u0002\u0157\u06cb\u0003\u0002\u0002\u0002\u0159\u06d2\u0003\u0002", + "\u0002\u0002\u015b\u06dc\u0003\u0002\u0002\u0002\u015d\u06e4\u0003\u0002", + "\u0002\u0002\u015f\u06ea\u0003\u0002\u0002\u0002\u0161\u06f8\u0003\u0002", + "\u0002\u0002\u0163\u0705\u0003\u0002\u0002\u0002\u0165\u070d\u0003\u0002", + "\u0002\u0002\u0167\u0714\u0003\u0002\u0002\u0002\u0169\u071b\u0003\u0002", + "\u0002\u0002\u016b\u0727\u0003\u0002\u0002\u0002\u016d\u0730\u0003\u0002", + "\u0002\u0002\u016f\u0739\u0003\u0002\u0002\u0002\u0171\u0741\u0003\u0002", + "\u0002\u0002\u0173\u074b\u0003\u0002\u0002\u0002\u0175\u0756\u0003\u0002", + "\u0002\u0002\u0177\u075c\u0003\u0002\u0002\u0002\u0179\u0764\u0003\u0002", + "\u0002\u0002\u017b\u0770\u0003\u0002\u0002\u0002\u017d\u0777\u0003\u0002", + "\u0002\u0002\u017f\u077f\u0003\u0002\u0002\u0002\u0181\u0788\u0003\u0002", + "\u0002\u0002\u0183\u0792\u0003\u0002\u0002\u0002\u0185\u0799\u0003\u0002", + "\u0002\u0002\u0187\u079f\u0003\u0002\u0002\u0002\u0189\u07ab\u0003\u0002", + "\u0002\u0002\u018b\u07b8\u0003\u0002\u0002\u0002\u018d\u07c1\u0003\u0002", + "\u0002\u0002\u018f\u07cb\u0003\u0002\u0002\u0002\u0191\u07cf\u0003\u0002", + "\u0002\u0002\u0193\u07d8\u0003\u0002\u0002\u0002\u0195\u07e0\u0003\u0002", + "\u0002\u0002\u0197\u07e8\u0003\u0002\u0002\u0002\u0199\u07ed\u0003\u0002", + "\u0002\u0002\u019b\u07f8\u0003\u0002\u0002\u0002\u019d\u0804\u0003\u0002", + "\u0002\u0002\u019f\u080d\u0003\u0002\u0002\u0002\u01a1\u0815\u0003\u0002", + "\u0002\u0002\u01a3\u081c\u0003\u0002\u0002\u0002\u01a5\u0822\u0003\u0002", + "\u0002\u0002\u01a7\u0827\u0003\u0002\u0002\u0002\u01a9\u082e\u0003\u0002", + "\u0002\u0002\u01ab\u0833\u0003\u0002\u0002\u0002\u01ad\u083a\u0003\u0002", + "\u0002\u0002\u01af\u0842\u0003\u0002\u0002\u0002\u01b1\u0849\u0003\u0002", + "\u0002\u0002\u01b3\u0850\u0003\u0002\u0002\u0002\u01b5\u0855\u0003\u0002", + "\u0002\u0002\u01b7\u085a\u0003\u0002\u0002\u0002\u01b9\u0860\u0003\u0002", + "\u0002\u0002\u01bb\u086c\u0003\u0002\u0002\u0002\u01bd\u0877\u0003\u0002", + "\u0002\u0002\u01bf\u0884\u0003\u0002\u0002\u0002\u01c1\u088a\u0003\u0002", + "\u0002\u0002\u01c3\u0892\u0003\u0002\u0002\u0002\u01c5\u0898\u0003\u0002", + "\u0002\u0002\u01c7\u089f\u0003\u0002\u0002\u0002\u01c9\u08a4\u0003\u0002", + "\u0002\u0002\u01cb\u08aa\u0003\u0002\u0002\u0002\u01cd\u08b1\u0003\u0002", + "\u0002\u0002\u01cf\u08bb\u0003\u0002\u0002\u0002\u01d1\u08c2\u0003\u0002", + "\u0002\u0002\u01d3\u08d2\u0003\u0002\u0002\u0002\u01d5\u08db\u0003\u0002", + "\u0002\u0002\u01d7\u08df\u0003\u0002\u0002\u0002\u01d9\u08e3\u0003\u0002", + "\u0002\u0002\u01db\u08e9\u0003\u0002\u0002\u0002\u01dd\u08ef\u0003\u0002", + "\u0002\u0002\u01df\u08f4\u0003\u0002\u0002\u0002\u01e1\u08f9\u0003\u0002", + "\u0002\u0002\u01e3\u0901\u0003\u0002\u0002\u0002\u01e5\u0908\u0003\u0002", + "\u0002\u0002\u01e7\u090f\u0003\u0002\u0002\u0002\u01e9\u091e\u0003\u0002", + "\u0002\u0002\u01eb\u092f\u0003\u0002\u0002\u0002\u01ed\u093f\u0003\u0002", + "\u0002\u0002\u01ef\u094d\u0003\u0002\u0002\u0002\u01f1\u095b\u0003\u0002", + "\u0002\u0002\u01f3\u096a\u0003\u0002\u0002\u0002\u01f5\u097d\u0003\u0002", + "\u0002\u0002\u01f7\u0988\u0003\u0002\u0002\u0002\u01f9\u099e\u0003\u0002", + "\u0002\u0002\u01fb\u09ad\u0003\u0002\u0002\u0002\u01fd\u09c5\u0003\u0002", + "\u0002\u0002\u01ff\u09d7\u0003\u0002\u0002\u0002\u0201\u09da\u0003\u0002", + "\u0002\u0002\u0203\u09e7\u0003\u0002\u0002\u0002\u0205\u09ef\u0003\u0002", + "\u0002\u0002\u0207\u09f2\u0003\u0002\u0002\u0002\u0209\u09f4\u0003\u0002", + "\u0002\u0002\u020b\u09fb\u0003\u0002\u0002\u0002\u020d\u0a01\u0003\u0002", + "\u0002\u0002\u020f\u0a05\u0003\u0002\u0002\u0002\u0211\u0a0a\u0003\u0002", + "\u0002\u0002\u0213\u0a12\u0003\u0002\u0002\u0002\u0215\u0a19\u0003\u0002", + "\u0002\u0002\u0217\u0a23\u0003\u0002\u0002\u0002\u0219\u0a29\u0003\u0002", + "\u0002\u0002\u021b\u0a31\u0003\u0002\u0002\u0002\u021d\u0a39\u0003\u0002", + "\u0002\u0002\u021f\u0a42\u0003\u0002\u0002\u0002\u0221\u0a46\u0003\u0002", + "\u0002\u0002\u0223\u0a4d\u0003\u0002\u0002\u0002\u0225\u0a53\u0003\u0002", + "\u0002\u0002\u0227\u0a5a\u0003\u0002\u0002\u0002\u0229\u0a5f\u0003\u0002", + "\u0002\u0002\u022b\u0a64\u0003\u0002\u0002\u0002\u022d\u0a6e\u0003\u0002", + "\u0002\u0002\u022f\u0a77\u0003\u0002\u0002\u0002\u0231\u0a7f\u0003\u0002", + "\u0002\u0002\u0233\u0a83\u0003\u0002\u0002\u0002\u0235\u0a87\u0003\u0002", + "\u0002\u0002\u0237\u0a8c\u0003\u0002\u0002\u0002\u0239\u0a8e\u0003\u0002", + "\u0002\u0002\u023b\u0a93\u0003\u0002\u0002\u0002\u023d\u023f\t\u0002", + "\u0002\u0002\u023e\u023d\u0003\u0002\u0002\u0002\u023f\u0240\u0003\u0002", + "\u0002\u0002\u0240\u023e\u0003\u0002\u0002\u0002\u0240\u0241\u0003\u0002", + "\u0002\u0002\u0241\u0242\u0003\u0002\u0002\u0002\u0242\u0243\b\u0002", + "\u0002\u0002\u0243\u0004\u0003\u0002\u0002\u0002\u0244\u0245\u00071", + "\u0002\u0002\u0245\u0246\u0007,\u0002\u0002\u0246\u0247\u0007#\u0002", + "\u0002\u0247\u0249\u0003\u0002\u0002\u0002\u0248\u024a\u000b\u0002\u0002", + "\u0002\u0249\u0248\u0003\u0002\u0002\u0002\u024a\u024b\u0003\u0002\u0002", + "\u0002\u024b\u024c\u0003\u0002\u0002\u0002\u024b\u0249\u0003\u0002\u0002", + "\u0002\u024c\u024d\u0003\u0002\u0002\u0002\u024d\u024e\u0007,\u0002", + "\u0002\u024e\u024f\u00071\u0002\u0002\u024f\u0250\u0003\u0002\u0002", + "\u0002\u0250\u0251\b\u0003\u0003\u0002\u0251\u0006\u0003\u0002\u0002", + "\u0002\u0252\u0253\u00071\u0002\u0002\u0253\u0254\u0007,\u0002\u0002", + "\u0254\u0258\u0003\u0002\u0002\u0002\u0255\u0257\u000b\u0002\u0002\u0002", + "\u0256\u0255\u0003\u0002\u0002\u0002\u0257\u025a\u0003\u0002\u0002\u0002", + "\u0258\u0259\u0003\u0002\u0002\u0002\u0258\u0256\u0003\u0002\u0002\u0002", + "\u0259\u025b\u0003\u0002\u0002\u0002\u025a\u0258\u0003\u0002\u0002\u0002", + "\u025b\u025c\u0007,\u0002\u0002\u025c\u025d\u00071\u0002\u0002\u025d", + "\u025e\u0003\u0002\u0002\u0002\u025e\u025f\b\u0004\u0002\u0002\u025f", + "\b\u0003\u0002\u0002\u0002\u0260\u0261\u0007/\u0002\u0002\u0261\u0262", + "\u0007/\u0002\u0002\u0262\u0265\u0007\"\u0002\u0002\u0263\u0265\u0007", + "%\u0002\u0002\u0264\u0260\u0003\u0002\u0002\u0002\u0264\u0263\u0003", + "\u0002\u0002\u0002\u0265\u0269\u0003\u0002\u0002\u0002\u0266\u0268\n", + "\u0003\u0002\u0002\u0267\u0266\u0003\u0002\u0002\u0002\u0268\u026b\u0003", + "\u0002\u0002\u0002\u0269\u0267\u0003\u0002\u0002\u0002\u0269\u026a\u0003", + "\u0002\u0002\u0002\u026a\u0271\u0003\u0002\u0002\u0002\u026b\u0269\u0003", + "\u0002\u0002\u0002\u026c\u026e\u0007\u000f\u0002\u0002\u026d\u026c\u0003", + "\u0002\u0002\u0002\u026d\u026e\u0003\u0002\u0002\u0002\u026e\u026f\u0003", + "\u0002\u0002\u0002\u026f\u0272\u0007\f\u0002\u0002\u0270\u0272\u0007", + "\u0002\u0002\u0003\u0271\u026d\u0003\u0002\u0002\u0002\u0271\u0270\u0003", + "\u0002\u0002\u0002\u0272\u027e\u0003\u0002\u0002\u0002\u0273\u0274\u0007", + "/\u0002\u0002\u0274\u0275\u0007/\u0002\u0002\u0275\u027b\u0003\u0002", + "\u0002\u0002\u0276\u0278\u0007\u000f\u0002\u0002\u0277\u0276\u0003\u0002", + "\u0002\u0002\u0277\u0278\u0003\u0002\u0002\u0002\u0278\u0279\u0003\u0002", + "\u0002\u0002\u0279\u027c\u0007\f\u0002\u0002\u027a\u027c\u0007\u0002", + "\u0002\u0003\u027b\u0277\u0003\u0002\u0002\u0002\u027b\u027a\u0003\u0002", + "\u0002\u0002\u027c\u027e\u0003\u0002\u0002\u0002\u027d\u0264\u0003\u0002", + "\u0002\u0002\u027d\u0273\u0003\u0002\u0002\u0002\u027e\u027f\u0003\u0002", + "\u0002\u0002\u027f\u0280\b\u0005\u0002\u0002\u0280\n\u0003\u0002\u0002", + "\u0002\u0281\u0282\u0007U\u0002\u0002\u0282\u0283\u0007G\u0002\u0002", + "\u0283\u0284\u0007N\u0002\u0002\u0284\u0285\u0007G\u0002\u0002\u0285", + "\u0286\u0007E\u0002\u0002\u0286\u0287\u0007V\u0002\u0002\u0287\f\u0003", + "\u0002\u0002\u0002\u0288\u0289\u0007H\u0002\u0002\u0289\u028a\u0007", + "T\u0002\u0002\u028a\u028b\u0007Q\u0002\u0002\u028b\u028c\u0007O\u0002", + "\u0002\u028c\u000e\u0003\u0002\u0002\u0002\u028d\u028e\u0007C\u0002", + "\u0002\u028e\u028f\u0007F\u0002\u0002\u028f\u0290\u0007F\u0002\u0002", + "\u0290\u0010\u0003\u0002\u0002\u0002\u0291\u0292\u0007C\u0002\u0002", + "\u0292\u0293\u0007U\u0002\u0002\u0293\u0012\u0003\u0002\u0002\u0002", + "\u0294\u0295\u0007C\u0002\u0002\u0295\u0296\u0007N\u0002\u0002\u0296", + "\u0297\u0007N\u0002\u0002\u0297\u0014\u0003\u0002\u0002\u0002\u0298", + "\u0299\u0007C\u0002\u0002\u0299\u029a\u0007P\u0002\u0002\u029a\u029b", + "\u0007[\u0002\u0002\u029b\u0016\u0003\u0002\u0002\u0002\u029c\u029d", + "\u0007F\u0002\u0002\u029d\u029e\u0007K\u0002\u0002\u029e\u029f\u0007", + "U\u0002\u0002\u029f\u02a0\u0007V\u0002\u0002\u02a0\u02a1\u0007K\u0002", + "\u0002\u02a1\u02a2\u0007P\u0002\u0002\u02a2\u02a3\u0007E\u0002\u0002", + "\u02a3\u02a4\u0007V\u0002\u0002\u02a4\u0018\u0003\u0002\u0002\u0002", + "\u02a5\u02a6\u0007Y\u0002\u0002\u02a6\u02a7\u0007J\u0002\u0002\u02a7", + "\u02a8\u0007G\u0002\u0002\u02a8\u02a9\u0007T\u0002\u0002\u02a9\u02aa", + "\u0007G\u0002\u0002\u02aa\u001a\u0003\u0002\u0002\u0002\u02ab\u02ac", + "\u0007I\u0002\u0002\u02ac\u02ad\u0007T\u0002\u0002\u02ad\u02ae\u0007", + "Q\u0002\u0002\u02ae\u02af\u0007W\u0002\u0002\u02af\u02b0\u0007R\u0002", + "\u0002\u02b0\u001c\u0003\u0002\u0002\u0002\u02b1\u02b2\u0007D\u0002", + "\u0002\u02b2\u02b3\u0007[\u0002\u0002\u02b3\u001e\u0003\u0002\u0002", + "\u0002\u02b4\u02b5\u0007I\u0002\u0002\u02b5\u02b6\u0007T\u0002\u0002", + "\u02b6\u02b7\u0007Q\u0002\u0002\u02b7\u02b8\u0007W\u0002\u0002\u02b8", + "\u02b9\u0007R\u0002\u0002\u02b9\u02ba\u0007K\u0002\u0002\u02ba\u02bb", + "\u0007P\u0002\u0002\u02bb\u02bc\u0007I\u0002\u0002\u02bc \u0003\u0002", + "\u0002\u0002\u02bd\u02be\u0007U\u0002\u0002\u02be\u02bf\u0007G\u0002", + "\u0002\u02bf\u02c0\u0007V\u0002\u0002\u02c0\u02c1\u0007U\u0002\u0002", + "\u02c1\"\u0003\u0002\u0002\u0002\u02c2\u02c3\u0007E\u0002\u0002\u02c3", + "\u02c4\u0007W\u0002\u0002\u02c4\u02c5\u0007D\u0002\u0002\u02c5\u02c6", + "\u0007G\u0002\u0002\u02c6$\u0003\u0002\u0002\u0002\u02c7\u02c8\u0007", + "T\u0002\u0002\u02c8\u02c9\u0007Q\u0002\u0002\u02c9\u02ca\u0007N\u0002", + "\u0002\u02ca\u02cb\u0007N\u0002\u0002\u02cb\u02cc\u0007W\u0002\u0002", + "\u02cc\u02cd\u0007R\u0002\u0002\u02cd&\u0003\u0002\u0002\u0002\u02ce", + "\u02cf\u0007Q\u0002\u0002\u02cf\u02d0\u0007T\u0002\u0002\u02d0\u02d1", + "\u0007F\u0002\u0002\u02d1\u02d2\u0007G\u0002\u0002\u02d2\u02d3\u0007", + "T\u0002\u0002\u02d3(\u0003\u0002\u0002\u0002\u02d4\u02d5\u0007J\u0002", + "\u0002\u02d5\u02d6\u0007C\u0002\u0002\u02d6\u02d7\u0007X\u0002\u0002", + "\u02d7\u02d8\u0007K\u0002\u0002\u02d8\u02d9\u0007P\u0002\u0002\u02d9", + "\u02da\u0007I\u0002\u0002\u02da*\u0003\u0002\u0002\u0002\u02db\u02dc", + "\u0007N\u0002\u0002\u02dc\u02dd\u0007K\u0002\u0002\u02dd\u02de\u0007", + "O\u0002\u0002\u02de\u02df\u0007K\u0002\u0002\u02df\u02e0\u0007V\u0002", + "\u0002\u02e0,\u0003\u0002\u0002\u0002\u02e1\u02e2\u0007C\u0002\u0002", + "\u02e2\u02e3\u0007V\u0002\u0002\u02e3.\u0003\u0002\u0002\u0002\u02e4", + "\u02e5\u0007Q\u0002\u0002\u02e5\u02e6\u0007T\u0002\u0002\u02e60\u0003", + "\u0002\u0002\u0002\u02e7\u02e8\u0007C\u0002\u0002\u02e8\u02e9\u0007", + "P\u0002\u0002\u02e9\u02ea\u0007F\u0002\u0002\u02ea2\u0003\u0002\u0002", + "\u0002\u02eb\u02ec\u0007K\u0002\u0002\u02ec\u02ed\u0007P\u0002\u0002", + "\u02ed4\u0003\u0002\u0002\u0002\u02ee\u02ef\u0007P\u0002\u0002\u02ef", + "\u02f0\u0007Q\u0002\u0002\u02f0\u02f1\u0007V\u0002\u0002\u02f16\u0003", + "\u0002\u0002\u0002\u02f2\u02f3\u0007P\u0002\u0002\u02f3\u02f4\u0007", + "Q\u0002\u0002\u02f48\u0003\u0002\u0002\u0002\u02f5\u02f6\u0007G\u0002", + "\u0002\u02f6\u02f7\u0007Z\u0002\u0002\u02f7\u02f8\u0007K\u0002\u0002", + "\u02f8\u02f9\u0007U\u0002\u0002\u02f9\u02fa\u0007V\u0002\u0002\u02fa", + "\u02fb\u0007U\u0002\u0002\u02fb:\u0003\u0002\u0002\u0002\u02fc\u02fd", + "\u0007D\u0002\u0002\u02fd\u02fe\u0007G\u0002\u0002\u02fe\u02ff\u0007", + "V\u0002\u0002\u02ff\u0300\u0007Y\u0002\u0002\u0300\u0301\u0007G\u0002", + "\u0002\u0301\u0302\u0007G\u0002\u0002\u0302\u0303\u0007P\u0002\u0002", + "\u0303<\u0003\u0002\u0002\u0002\u0304\u0305\u0007N\u0002\u0002\u0305", + "\u0306\u0007K\u0002\u0002\u0306\u0307\u0007M\u0002\u0002\u0307\u0308", + "\u0007G\u0002\u0002\u0308>\u0003\u0002\u0002\u0002\u0309\u030a\u0007", + "T\u0002\u0002\u030a\u030b\u0007N\u0002\u0002\u030b\u030c\u0007K\u0002", + "\u0002\u030c\u030d\u0007M\u0002\u0002\u030d\u030e\u0007G\u0002\u0002", + "\u030e@\u0003\u0002\u0002\u0002\u030f\u0310\u0007K\u0002\u0002\u0310", + "\u0311\u0007U\u0002\u0002\u0311B\u0003\u0002\u0002\u0002\u0312\u0313", + "\u0007V\u0002\u0002\u0313\u0314\u0007T\u0002\u0002\u0314\u0315\u0007", + "W\u0002\u0002\u0315\u0316\u0007G\u0002\u0002\u0316D\u0003\u0002\u0002", + "\u0002\u0317\u0318\u0007H\u0002\u0002\u0318\u0319\u0007C\u0002\u0002", + "\u0319\u031a\u0007N\u0002\u0002\u031a\u031b\u0007U\u0002\u0002\u031b", + "\u031c\u0007G\u0002\u0002\u031cF\u0003\u0002\u0002\u0002\u031d\u031e", + "\u0007P\u0002\u0002\u031e\u031f\u0007W\u0002\u0002\u031f\u0320\u0007", + "N\u0002\u0002\u0320\u0321\u0007N\u0002\u0002\u0321\u0322\u0007U\u0002", + "\u0002\u0322H\u0003\u0002\u0002\u0002\u0323\u0324\u0007C\u0002\u0002", + "\u0324\u0325\u0007U\u0002\u0002\u0325\u0326\u0007E\u0002\u0002\u0326", + "J\u0003\u0002\u0002\u0002\u0327\u0328\u0007F\u0002\u0002\u0328\u0329", + "\u0007G\u0002\u0002\u0329\u032a\u0007U\u0002\u0002\u032a\u032b\u0007", + "E\u0002\u0002\u032bL\u0003\u0002\u0002\u0002\u032c\u032d\u0007H\u0002", + "\u0002\u032d\u032e\u0007Q\u0002\u0002\u032e\u032f\u0007T\u0002\u0002", + "\u032fN\u0003\u0002\u0002\u0002\u0330\u0331\u0007K\u0002\u0002\u0331", + "\u0332\u0007P\u0002\u0002\u0332\u0333\u0007V\u0002\u0002\u0333\u0334", + "\u0007G\u0002\u0002\u0334\u0335\u0007T\u0002\u0002\u0335\u0336\u0007", + "X\u0002\u0002\u0336\u0337\u0007C\u0002\u0002\u0337\u0338\u0007N\u0002", + "\u0002\u0338P\u0003\u0002\u0002\u0002\u0339\u033a\u0007E\u0002\u0002", + "\u033a\u033b\u0007C\u0002\u0002\u033b\u033c\u0007U\u0002\u0002\u033c", + "\u033d\u0007G\u0002\u0002\u033dR\u0003\u0002\u0002\u0002\u033e\u033f", + "\u0007Y\u0002\u0002\u033f\u0340\u0007J\u0002\u0002\u0340\u0341\u0007", + "G\u0002\u0002\u0341\u0342\u0007P\u0002\u0002\u0342T\u0003\u0002\u0002", + "\u0002\u0343\u0344\u0007V\u0002\u0002\u0344\u0345\u0007J\u0002\u0002", + "\u0345\u0346\u0007G\u0002\u0002\u0346\u0347\u0007P\u0002\u0002\u0347", + "V\u0003\u0002\u0002\u0002\u0348\u0349\u0007G\u0002\u0002\u0349\u034a", + "\u0007N\u0002\u0002\u034a\u034b\u0007U\u0002\u0002\u034b\u034c\u0007", + "G\u0002\u0002\u034cX\u0003\u0002\u0002\u0002\u034d\u034e\u0007G\u0002", + "\u0002\u034e\u034f\u0007P\u0002\u0002\u034f\u0350\u0007F\u0002\u0002", + "\u0350Z\u0003\u0002\u0002\u0002\u0351\u0352\u0007L\u0002\u0002\u0352", + "\u0353\u0007Q\u0002\u0002\u0353\u0354\u0007K\u0002\u0002\u0354\u0355", + "\u0007P\u0002\u0002\u0355\\\u0003\u0002\u0002\u0002\u0356\u0357\u0007", + "E\u0002\u0002\u0357\u0358\u0007T\u0002\u0002\u0358\u0359\u0007Q\u0002", + "\u0002\u0359\u035a\u0007U\u0002\u0002\u035a\u035b\u0007U\u0002\u0002", + "\u035b^\u0003\u0002\u0002\u0002\u035c\u035d\u0007Q\u0002\u0002\u035d", + "\u035e\u0007W\u0002\u0002\u035e\u035f\u0007V\u0002\u0002\u035f\u0360", + "\u0007G\u0002\u0002\u0360\u0361\u0007T\u0002\u0002\u0361`\u0003\u0002", + "\u0002\u0002\u0362\u0363\u0007K\u0002\u0002\u0363\u0364\u0007P\u0002", + "\u0002\u0364\u0365\u0007P\u0002\u0002\u0365\u0366\u0007G\u0002\u0002", + "\u0366\u0367\u0007T\u0002\u0002\u0367b\u0003\u0002\u0002\u0002\u0368", + "\u0369\u0007N\u0002\u0002\u0369\u036a\u0007G\u0002\u0002\u036a\u036b", + "\u0007H\u0002\u0002\u036b\u036c\u0007V\u0002\u0002\u036cd\u0003\u0002", + "\u0002\u0002\u036d\u036e\u0007U\u0002\u0002\u036e\u036f\u0007G\u0002", + "\u0002\u036f\u0370\u0007O\u0002\u0002\u0370\u0371\u0007K\u0002\u0002", + "\u0371f\u0003\u0002\u0002\u0002\u0372\u0373\u0007T\u0002\u0002\u0373", + "\u0374\u0007K\u0002\u0002\u0374\u0375\u0007I\u0002\u0002\u0375\u0376", + "\u0007J\u0002\u0002\u0376\u0377\u0007V\u0002\u0002\u0377h\u0003\u0002", + "\u0002\u0002\u0378\u0379\u0007H\u0002\u0002\u0379\u037a\u0007W\u0002", + "\u0002\u037a\u037b\u0007N\u0002\u0002\u037b\u037c\u0007N\u0002\u0002", + "\u037cj\u0003\u0002\u0002\u0002\u037d\u037e\u0007P\u0002\u0002\u037e", + "\u037f\u0007C\u0002\u0002\u037f\u0380\u0007V\u0002\u0002\u0380\u0381", + "\u0007W\u0002\u0002\u0381\u0382\u0007T\u0002\u0002\u0382\u0383\u0007", + "C\u0002\u0002\u0383\u0384\u0007N\u0002\u0002\u0384l\u0003\u0002\u0002", + "\u0002\u0385\u0386\u0007Q\u0002\u0002\u0386\u0387\u0007P\u0002\u0002", + "\u0387n\u0003\u0002\u0002\u0002\u0388\u0389\u0007R\u0002\u0002\u0389", + "\u038a\u0007K\u0002\u0002\u038a\u038b\u0007X\u0002\u0002\u038b\u038c", + "\u0007Q\u0002\u0002\u038c\u038d\u0007V\u0002\u0002\u038dp\u0003\u0002", + "\u0002\u0002\u038e\u038f\u0007N\u0002\u0002\u038f\u0390\u0007C\u0002", + "\u0002\u0390\u0391\u0007V\u0002\u0002\u0391\u0392\u0007G\u0002\u0002", + "\u0392\u0393\u0007T\u0002\u0002\u0393\u0394\u0007C\u0002\u0002\u0394", + "\u0395\u0007N\u0002\u0002\u0395r\u0003\u0002\u0002\u0002\u0396\u0397", + "\u0007Y\u0002\u0002\u0397\u0398\u0007K\u0002\u0002\u0398\u0399\u0007", + "P\u0002\u0002\u0399\u039a\u0007F\u0002\u0002\u039a\u039b\u0007Q\u0002", + "\u0002\u039b\u039c\u0007Y\u0002\u0002\u039ct\u0003\u0002\u0002\u0002", + "\u039d\u039e\u0007Q\u0002\u0002\u039e\u039f\u0007X\u0002\u0002\u039f", + "\u03a0\u0007G\u0002\u0002\u03a0\u03a1\u0007T\u0002\u0002\u03a1v\u0003", + "\u0002\u0002\u0002\u03a2\u03a3\u0007R\u0002\u0002\u03a3\u03a4\u0007", + "C\u0002\u0002\u03a4\u03a5\u0007T\u0002\u0002\u03a5\u03a6\u0007V\u0002", + "\u0002\u03a6\u03a7\u0007K\u0002\u0002\u03a7\u03a8\u0007V\u0002\u0002", + "\u03a8\u03a9\u0007K\u0002\u0002\u03a9\u03aa\u0007Q\u0002\u0002\u03aa", + "\u03ab\u0007P\u0002\u0002\u03abx\u0003\u0002\u0002\u0002\u03ac\u03ad", + "\u0007T\u0002\u0002\u03ad\u03ae\u0007C\u0002\u0002\u03ae\u03af\u0007", + "P\u0002\u0002\u03af\u03b0\u0007I\u0002\u0002\u03b0\u03b1\u0007G\u0002", + "\u0002\u03b1z\u0003\u0002\u0002\u0002\u03b2\u03b3\u0007T\u0002\u0002", + "\u03b3\u03b4\u0007Q\u0002\u0002\u03b4\u03b5\u0007Y\u0002\u0002\u03b5", + "\u03b6\u0007U\u0002\u0002\u03b6|\u0003\u0002\u0002\u0002\u03b7\u03b8", + "\u0007W\u0002\u0002\u03b8\u03b9\u0007P\u0002\u0002\u03b9\u03ba\u0007", + "D\u0002\u0002\u03ba\u03bb\u0007Q\u0002\u0002\u03bb\u03bc\u0007W\u0002", + "\u0002\u03bc\u03bd\u0007P\u0002\u0002\u03bd\u03be\u0007F\u0002\u0002", + "\u03be\u03bf\u0007G\u0002\u0002\u03bf\u03c0\u0007F\u0002\u0002\u03c0", + "~\u0003\u0002\u0002\u0002\u03c1\u03c2\u0007R\u0002\u0002\u03c2\u03c3", + "\u0007T\u0002\u0002\u03c3\u03c4\u0007G\u0002\u0002\u03c4\u03c5\u0007", + "E\u0002\u0002\u03c5\u03c6\u0007G\u0002\u0002\u03c6\u03c7\u0007F\u0002", + "\u0002\u03c7\u03c8\u0007K\u0002\u0002\u03c8\u03c9\u0007P\u0002\u0002", + "\u03c9\u03ca\u0007I\u0002\u0002\u03ca\u0080\u0003\u0002\u0002\u0002", + "\u03cb\u03cc\u0007H\u0002\u0002\u03cc\u03cd\u0007Q\u0002\u0002\u03cd", + "\u03ce\u0007N\u0002\u0002\u03ce\u03cf\u0007N\u0002\u0002\u03cf\u03d0", + "\u0007Q\u0002\u0002\u03d0\u03d1\u0007Y\u0002\u0002\u03d1\u03d2\u0007", + "K\u0002\u0002\u03d2\u03d3\u0007P\u0002\u0002\u03d3\u03d4\u0007I\u0002", + "\u0002\u03d4\u0082\u0003\u0002\u0002\u0002\u03d5\u03d6\u0007E\u0002", + "\u0002\u03d6\u03d7\u0007W\u0002\u0002\u03d7\u03d8\u0007T\u0002\u0002", + "\u03d8\u03d9\u0007T\u0002\u0002\u03d9\u03da\u0007G\u0002\u0002\u03da", + "\u03db\u0007P\u0002\u0002\u03db\u03dc\u0007V\u0002\u0002\u03dc\u0084", + "\u0003\u0002\u0002\u0002\u03dd\u03de\u0007H\u0002\u0002\u03de\u03df", + "\u0007K\u0002\u0002\u03df\u03e0\u0007T\u0002\u0002\u03e0\u03e1\u0007", + "U\u0002\u0002\u03e1\u03e2\u0007V\u0002\u0002\u03e2\u0086\u0003\u0002", + "\u0002\u0002\u03e3\u03e4\u0007C\u0002\u0002\u03e4\u03e5\u0007H\u0002", + "\u0002\u03e5\u03e6\u0007V\u0002\u0002\u03e6\u03e7\u0007G\u0002\u0002", + "\u03e7\u03e8\u0007T\u0002\u0002\u03e8\u0088\u0003\u0002\u0002\u0002", + "\u03e9\u03ea\u0007N\u0002\u0002\u03ea\u03eb\u0007C\u0002\u0002\u03eb", + "\u03ec\u0007U\u0002\u0002\u03ec\u03ed\u0007V\u0002\u0002\u03ed\u008a", + "\u0003\u0002\u0002\u0002\u03ee\u03ef\u0007Y\u0002\u0002\u03ef\u03f0", + "\u0007K\u0002\u0002\u03f0\u03f1\u0007V\u0002\u0002\u03f1\u03f2\u0007", + "J\u0002\u0002\u03f2\u008c\u0003\u0002\u0002\u0002\u03f3\u03f4\u0007", + "X\u0002\u0002\u03f4\u03f5\u0007C\u0002\u0002\u03f5\u03f6\u0007N\u0002", + "\u0002\u03f6\u03f7\u0007W\u0002\u0002\u03f7\u03f8\u0007G\u0002\u0002", + "\u03f8\u03f9\u0007U\u0002\u0002\u03f9\u008e\u0003\u0002\u0002\u0002", + "\u03fa\u03fb\u0007E\u0002\u0002\u03fb\u03fc\u0007T\u0002\u0002\u03fc", + "\u03fd\u0007G\u0002\u0002\u03fd\u03fe\u0007C\u0002\u0002\u03fe\u03ff", + "\u0007V\u0002\u0002\u03ff\u0400\u0007G\u0002\u0002\u0400\u0090\u0003", + "\u0002\u0002\u0002\u0401\u0402\u0007V\u0002\u0002\u0402\u0403\u0007", + "C\u0002\u0002\u0403\u0404\u0007D\u0002\u0002\u0404\u0405\u0007N\u0002", + "\u0002\u0405\u0406\u0007G\u0002\u0002\u0406\u0092\u0003\u0002\u0002", + "\u0002\u0407\u0408\u0007F\u0002\u0002\u0408\u0409\u0007K\u0002\u0002", + "\u0409\u040a\u0007T\u0002\u0002\u040a\u040b\u0007G\u0002\u0002\u040b", + "\u040c\u0007E\u0002\u0002\u040c\u040d\u0007V\u0002\u0002\u040d\u040e", + "\u0007Q\u0002\u0002\u040e\u040f\u0007T\u0002\u0002\u040f\u0410\u0007", + "[\u0002\u0002\u0410\u0094\u0003\u0002\u0002\u0002\u0411\u0412\u0007", + "X\u0002\u0002\u0412\u0413\u0007K\u0002\u0002\u0413\u0414\u0007G\u0002", + "\u0002\u0414\u0415\u0007Y\u0002\u0002\u0415\u0096\u0003\u0002\u0002", + "\u0002\u0416\u0417\u0007T\u0002\u0002\u0417\u0418\u0007G\u0002\u0002", + "\u0418\u0419\u0007R\u0002\u0002\u0419\u041a\u0007N\u0002\u0002\u041a", + "\u041b\u0007C\u0002\u0002\u041b\u041c\u0007E\u0002\u0002\u041c\u041d", + "\u0007G\u0002\u0002\u041d\u0098\u0003\u0002\u0002\u0002\u041e\u041f", + "\u0007K\u0002\u0002\u041f\u0420\u0007P\u0002\u0002\u0420\u0421\u0007", + "U\u0002\u0002\u0421\u0422\u0007G\u0002\u0002\u0422\u0423\u0007T\u0002", + "\u0002\u0423\u0424\u0007V\u0002\u0002\u0424\u009a\u0003\u0002\u0002", + "\u0002\u0425\u0426\u0007F\u0002\u0002\u0426\u0427\u0007G\u0002\u0002", + "\u0427\u0428\u0007N\u0002\u0002\u0428\u0429\u0007G\u0002\u0002\u0429", + "\u042a\u0007V\u0002\u0002\u042a\u042b\u0007G\u0002\u0002\u042b\u009c", + "\u0003\u0002\u0002\u0002\u042c\u042d\u0007K\u0002\u0002\u042d\u042e", + "\u0007P\u0002\u0002\u042e\u042f\u0007V\u0002\u0002\u042f\u0430\u0007", + "Q\u0002\u0002\u0430\u009e\u0003\u0002\u0002\u0002\u0431\u0432\u0007", + "F\u0002\u0002\u0432\u0433\u0007G\u0002\u0002\u0433\u0434\u0007U\u0002", + "\u0002\u0434\u0435\u0007E\u0002\u0002\u0435\u0436\u0007T\u0002\u0002", + "\u0436\u0437\u0007K\u0002\u0002\u0437\u0438\u0007D\u0002\u0002\u0438", + "\u0439\u0007G\u0002\u0002\u0439\u00a0\u0003\u0002\u0002\u0002\u043a", + "\u043b\u0007G\u0002\u0002\u043b\u043c\u0007Z\u0002\u0002\u043c\u043d", + "\u0007R\u0002\u0002\u043d\u043e\u0007N\u0002\u0002\u043e\u043f\u0007", + "C\u0002\u0002\u043f\u0440\u0007K\u0002\u0002\u0440\u0441\u0007P\u0002", + "\u0002\u0441\u00a2\u0003\u0002\u0002\u0002\u0442\u0443\u0007H\u0002", + "\u0002\u0443\u0444\u0007Q\u0002\u0002\u0444\u0445\u0007T\u0002\u0002", + "\u0445\u0446\u0007O\u0002\u0002\u0446\u0447\u0007C\u0002\u0002\u0447", + "\u0448\u0007V\u0002\u0002\u0448\u00a4\u0003\u0002\u0002\u0002\u0449", + "\u044a\u0007N\u0002\u0002\u044a\u044b\u0007Q\u0002\u0002\u044b\u044c", + "\u0007I\u0002\u0002\u044c\u044d\u0007K\u0002\u0002\u044d\u044e\u0007", + "E\u0002\u0002\u044e\u044f\u0007C\u0002\u0002\u044f\u0450\u0007N\u0002", + "\u0002\u0450\u00a6\u0003\u0002\u0002\u0002\u0451\u0452\u0007E\u0002", + "\u0002\u0452\u0453\u0007Q\u0002\u0002\u0453\u0454\u0007F\u0002\u0002", + "\u0454\u0455\u0007G\u0002\u0002\u0455\u0456\u0007I\u0002\u0002\u0456", + "\u0457\u0007G\u0002\u0002\u0457\u0458\u0007P\u0002\u0002\u0458\u00a8", + "\u0003\u0002\u0002\u0002\u0459\u045a\u0007E\u0002\u0002\u045a\u045b", + "\u0007Q\u0002\u0002\u045b\u045c\u0007U\u0002\u0002\u045c\u045d\u0007", + "V\u0002\u0002\u045d\u00aa\u0003\u0002\u0002\u0002\u045e\u045f\u0007", + "E\u0002\u0002\u045f\u0460\u0007C\u0002\u0002\u0460\u0461\u0007U\u0002", + "\u0002\u0461\u0462\u0007V\u0002\u0002\u0462\u00ac\u0003\u0002\u0002", + "\u0002\u0463\u0464\u0007U\u0002\u0002\u0464\u0465\u0007J\u0002\u0002", + "\u0465\u0466\u0007Q\u0002\u0002\u0466\u0467\u0007Y\u0002\u0002\u0467", + "\u00ae\u0003\u0002\u0002\u0002\u0468\u0469\u0007V\u0002\u0002\u0469", + "\u046a\u0007C\u0002\u0002\u046a\u046b\u0007D\u0002\u0002\u046b\u046c", + "\u0007N\u0002\u0002\u046c\u046d\u0007G\u0002\u0002\u046d\u046e\u0007", + "U\u0002\u0002\u046e\u00b0\u0003\u0002\u0002\u0002\u046f\u0470\u0007", + "E\u0002\u0002\u0470\u0471\u0007Q\u0002\u0002\u0471\u0472\u0007N\u0002", + "\u0002\u0472\u0473\u0007W\u0002\u0002\u0473\u0474\u0007O\u0002\u0002", + "\u0474\u0475\u0007P\u0002\u0002\u0475\u0476\u0007U\u0002\u0002\u0476", + "\u00b2\u0003\u0002\u0002\u0002\u0477\u0478\u0007E\u0002\u0002\u0478", + "\u0479\u0007Q\u0002\u0002\u0479\u047a\u0007N\u0002\u0002\u047a\u047b", + "\u0007W\u0002\u0002\u047b\u047c\u0007O\u0002\u0002\u047c\u047d\u0007", + "P\u0002\u0002\u047d\u00b4\u0003\u0002\u0002\u0002\u047e\u047f\u0007", + "W\u0002\u0002\u047f\u0480\u0007U\u0002\u0002\u0480\u0481\u0007G\u0002", + "\u0002\u0481\u00b6\u0003\u0002\u0002\u0002\u0482\u0483\u0007R\u0002", + "\u0002\u0483\u0484\u0007C\u0002\u0002\u0484\u0485\u0007T\u0002\u0002", + "\u0485\u0486\u0007V\u0002\u0002\u0486\u0487\u0007K\u0002\u0002\u0487", + "\u0488\u0007V\u0002\u0002\u0488\u0489\u0007K\u0002\u0002\u0489\u048a", + "\u0007Q\u0002\u0002\u048a\u048b\u0007P\u0002\u0002\u048b\u048c\u0007", + "U\u0002\u0002\u048c\u00b8\u0003\u0002\u0002\u0002\u048d\u048e\u0007", + "H\u0002\u0002\u048e\u048f\u0007W\u0002\u0002\u048f\u0490\u0007P\u0002", + "\u0002\u0490\u0491\u0007E\u0002\u0002\u0491\u0492\u0007V\u0002\u0002", + "\u0492\u0493\u0007K\u0002\u0002\u0493\u0494\u0007Q\u0002\u0002\u0494", + "\u0495\u0007P\u0002\u0002\u0495\u0496\u0007U\u0002\u0002\u0496\u00ba", + "\u0003\u0002\u0002\u0002\u0497\u0498\u0007F\u0002\u0002\u0498\u0499", + "\u0007T\u0002\u0002\u0499\u049a\u0007Q\u0002\u0002\u049a\u049b\u0007", + "R\u0002\u0002\u049b\u00bc\u0003\u0002\u0002\u0002\u049c\u049d\u0007", + "W\u0002\u0002\u049d\u049e\u0007P\u0002\u0002\u049e\u049f\u0007K\u0002", + "\u0002\u049f\u04a0\u0007Q\u0002\u0002\u04a0\u04a1\u0007P\u0002\u0002", + "\u04a1\u00be\u0003\u0002\u0002\u0002\u04a2\u04a3\u0007G\u0002\u0002", + "\u04a3\u04a4\u0007Z\u0002\u0002\u04a4\u04a5\u0007E\u0002\u0002\u04a5", + "\u04a6\u0007G\u0002\u0002\u04a6\u04a7\u0007R\u0002\u0002\u04a7\u04a8", + "\u0007V\u0002\u0002\u04a8\u00c0\u0003\u0002\u0002\u0002\u04a9\u04aa", + "\u0007U\u0002\u0002\u04aa\u04ab\u0007G\u0002\u0002\u04ab\u04ac\u0007", + "V\u0002\u0002\u04ac\u04ad\u0007O\u0002\u0002\u04ad\u04ae\u0007K\u0002", + "\u0002\u04ae\u04af\u0007P\u0002\u0002\u04af\u04b0\u0007W\u0002\u0002", + "\u04b0\u04b1\u0007U\u0002\u0002\u04b1\u00c2\u0003\u0002\u0002\u0002", + "\u04b2\u04b3\u0007K\u0002\u0002\u04b3\u04b4\u0007P\u0002\u0002\u04b4", + "\u04b5\u0007V\u0002\u0002\u04b5\u04b6\u0007G\u0002\u0002\u04b6\u04b7", + "\u0007T\u0002\u0002\u04b7\u04b8\u0007U\u0002\u0002\u04b8\u04b9\u0007", + "G\u0002\u0002\u04b9\u04ba\u0007E\u0002\u0002\u04ba\u04bb\u0007V\u0002", + "\u0002\u04bb\u00c4\u0003\u0002\u0002\u0002\u04bc\u04bd\u0007V\u0002", + "\u0002\u04bd\u04be\u0007Q\u0002\u0002\u04be\u00c6\u0003\u0002\u0002", + "\u0002\u04bf\u04c0\u0007V\u0002\u0002\u04c0\u04c1\u0007C\u0002\u0002", + "\u04c1\u04c2\u0007D\u0002\u0002\u04c2\u04c3\u0007N\u0002\u0002\u04c3", + "\u04c4\u0007G\u0002\u0002\u04c4\u04c5\u0007U\u0002\u0002\u04c5\u04c6", + "\u0007C\u0002\u0002\u04c6\u04c7\u0007O\u0002\u0002\u04c7\u04c8\u0007", + "R\u0002\u0002\u04c8\u04c9\u0007N\u0002\u0002\u04c9\u04ca\u0007G\u0002", + "\u0002\u04ca\u00c8\u0003\u0002\u0002\u0002\u04cb\u04cc\u0007U\u0002", + "\u0002\u04cc\u04cd\u0007V\u0002\u0002\u04cd\u04ce\u0007T\u0002\u0002", + "\u04ce\u04cf\u0007C\u0002\u0002\u04cf\u04d0\u0007V\u0002\u0002\u04d0", + "\u04d1\u0007K\u0002\u0002\u04d1\u04d2\u0007H\u0002\u0002\u04d2\u04d3", + "\u0007[\u0002\u0002\u04d3\u00ca\u0003\u0002\u0002\u0002\u04d4\u04d5", + "\u0007C\u0002\u0002\u04d5\u04d6\u0007N\u0002\u0002\u04d6\u04d7\u0007", + "V\u0002\u0002\u04d7\u04d8\u0007G\u0002\u0002\u04d8\u04d9\u0007T\u0002", + "\u0002\u04d9\u00cc\u0003\u0002\u0002\u0002\u04da\u04db\u0007T\u0002", + "\u0002\u04db\u04dc\u0007G\u0002\u0002\u04dc\u04dd\u0007P\u0002\u0002", + "\u04dd\u04de\u0007C\u0002\u0002\u04de\u04df\u0007O\u0002\u0002\u04df", + "\u04e0\u0007G\u0002\u0002\u04e0\u00ce\u0003\u0002\u0002\u0002\u04e1", + "\u04e2\u0007U\u0002\u0002\u04e2\u04e3\u0007V\u0002\u0002\u04e3\u04e4", + "\u0007T\u0002\u0002\u04e4\u04e5\u0007W\u0002\u0002\u04e5\u04e6\u0007", + "E\u0002\u0002\u04e6\u04e7\u0007V\u0002\u0002\u04e7\u00d0\u0003\u0002", + "\u0002\u0002\u04e8\u04e9\u0007E\u0002\u0002\u04e9\u04ea\u0007Q\u0002", + "\u0002\u04ea\u04eb\u0007O\u0002\u0002\u04eb\u04ec\u0007O\u0002\u0002", + "\u04ec\u04ed\u0007G\u0002\u0002\u04ed\u04ee\u0007P\u0002\u0002\u04ee", + "\u04ef\u0007V\u0002\u0002\u04ef\u00d2\u0003\u0002\u0002\u0002\u04f0", + "\u04f1\u0007U\u0002\u0002\u04f1\u04f2\u0007G\u0002\u0002\u04f2\u04f3", + "\u0007V\u0002\u0002\u04f3\u00d4\u0003\u0002\u0002\u0002\u04f4\u04f5", + "\u0007T\u0002\u0002\u04f5\u04f6\u0007G\u0002\u0002\u04f6\u04f7\u0007", + "U\u0002\u0002\u04f7\u04f8\u0007G\u0002\u0002\u04f8\u04f9\u0007V\u0002", + "\u0002\u04f9\u00d6\u0003\u0002\u0002\u0002\u04fa\u04fb\u0007F\u0002", + "\u0002\u04fb\u04fc\u0007C\u0002\u0002\u04fc\u04fd\u0007V\u0002\u0002", + "\u04fd\u04fe\u0007C\u0002\u0002\u04fe\u00d8\u0003\u0002\u0002\u0002", + "\u04ff\u0500\u0007U\u0002\u0002\u0500\u0501\u0007V\u0002\u0002\u0501", + "\u0502\u0007C\u0002\u0002\u0502\u0503\u0007T\u0002\u0002\u0503\u0504", + "\u0007V\u0002\u0002\u0504\u00da\u0003\u0002\u0002\u0002\u0505\u0506", + "\u0007V\u0002\u0002\u0506\u0507\u0007T\u0002\u0002\u0507\u0508\u0007", + "C\u0002\u0002\u0508\u0509\u0007P\u0002\u0002\u0509\u050a\u0007U\u0002", + "\u0002\u050a\u050b\u0007C\u0002\u0002\u050b\u050c\u0007E\u0002\u0002", + "\u050c\u050d\u0007V\u0002\u0002\u050d\u050e\u0007K\u0002\u0002\u050e", + "\u050f\u0007Q\u0002\u0002\u050f\u0510\u0007P\u0002\u0002\u0510\u00dc", + "\u0003\u0002\u0002\u0002\u0511\u0512\u0007E\u0002\u0002\u0512\u0513", + "\u0007Q\u0002\u0002\u0513\u0514\u0007O\u0002\u0002\u0514\u0515\u0007", + "O\u0002\u0002\u0515\u0516\u0007K\u0002\u0002\u0516\u0517\u0007V\u0002", + "\u0002\u0517\u00de\u0003\u0002\u0002\u0002\u0518\u0519\u0007T\u0002", + "\u0002\u0519\u051a\u0007Q\u0002\u0002\u051a\u051b\u0007N\u0002\u0002", + "\u051b\u051c\u0007N\u0002\u0002\u051c\u051d\u0007D\u0002\u0002\u051d", + "\u051e\u0007C\u0002\u0002\u051e\u051f\u0007E\u0002\u0002\u051f\u0520", + "\u0007M\u0002\u0002\u0520\u00e0\u0003\u0002\u0002\u0002\u0521\u0522", + "\u0007O\u0002\u0002\u0522\u0523\u0007C\u0002\u0002\u0523\u0524\u0007", + "E\u0002\u0002\u0524\u0525\u0007T\u0002\u0002\u0525\u0526\u0007Q\u0002", + "\u0002\u0526\u00e2\u0003\u0002\u0002\u0002\u0527\u0528\u0007K\u0002", + "\u0002\u0528\u0529\u0007I\u0002\u0002\u0529\u052a\u0007P\u0002\u0002", + "\u052a\u052b\u0007Q\u0002\u0002\u052b\u052c\u0007T\u0002\u0002\u052c", + "\u052d\u0007G\u0002\u0002\u052d\u00e4\u0003\u0002\u0002\u0002\u052e", + "\u052f\u0007D\u0002\u0002\u052f\u0530\u0007Q\u0002\u0002\u0530\u0531", + "\u0007V\u0002\u0002\u0531\u0532\u0007J\u0002\u0002\u0532\u00e6\u0003", + "\u0002\u0002\u0002\u0533\u0534\u0007N\u0002\u0002\u0534\u0535\u0007", + "G\u0002\u0002\u0535\u0536\u0007C\u0002\u0002\u0536\u0537\u0007F\u0002", + "\u0002\u0537\u0538\u0007K\u0002\u0002\u0538\u0539\u0007P\u0002\u0002", + "\u0539\u053a\u0007I\u0002\u0002\u053a\u00e8\u0003\u0002\u0002\u0002", + "\u053b\u053c\u0007V\u0002\u0002\u053c\u053d\u0007T\u0002\u0002\u053d", + "\u053e\u0007C\u0002\u0002\u053e\u053f\u0007K\u0002\u0002\u053f\u0540", + "\u0007N\u0002\u0002\u0540\u0541\u0007K\u0002\u0002\u0541\u0542\u0007", + "P\u0002\u0002\u0542\u0543\u0007I\u0002\u0002\u0543\u00ea\u0003\u0002", + "\u0002\u0002\u0544\u0545\u0007K\u0002\u0002\u0545\u0546\u0007H\u0002", + "\u0002\u0546\u00ec\u0003\u0002\u0002\u0002\u0547\u0548\u0007R\u0002", + "\u0002\u0548\u0549\u0007Q\u0002\u0002\u0549\u054a\u0007U\u0002\u0002", + "\u054a\u054b\u0007K\u0002\u0002\u054b\u054c\u0007V\u0002\u0002\u054c", + "\u054d\u0007K\u0002\u0002\u054d\u054e\u0007Q\u0002\u0002\u054e\u054f", + "\u0007P\u0002\u0002\u054f\u00ee\u0003\u0002\u0002\u0002\u0550\u0551", + "\u0007G\u0002\u0002\u0551\u0552\u0007Z\u0002\u0002\u0552\u0553\u0007", + "V\u0002\u0002\u0553\u0554\u0007T\u0002\u0002\u0554\u0555\u0007C\u0002", + "\u0002\u0555\u0556\u0007E\u0002\u0002\u0556\u0557\u0007V\u0002\u0002", + "\u0557\u00f0\u0003\u0002\u0002\u0002\u0558\u0559\u0007G\u0002\u0002", + "\u0559\u055a\u0007S\u0002\u0002\u055a\u00f2\u0003\u0002\u0002\u0002", + "\u055b\u055c\u0007P\u0002\u0002\u055c\u055d\u0007U\u0002\u0002\u055d", + "\u055e\u0007G\u0002\u0002\u055e\u055f\u0007S\u0002\u0002\u055f\u00f4", + "\u0003\u0002\u0002\u0002\u0560\u0561\u0007P\u0002\u0002\u0561\u0562", + "\u0007G\u0002\u0002\u0562\u0563\u0007S\u0002\u0002\u0563\u00f6\u0003", + "\u0002\u0002\u0002\u0564\u0565\u0007P\u0002\u0002\u0565\u0566\u0007", + "G\u0002\u0002\u0566\u0567\u0007S\u0002\u0002\u0567\u0568\u0007L\u0002", + "\u0002\u0568\u00f8\u0003\u0002\u0002\u0002\u0569\u056a\u0007N\u0002", + "\u0002\u056a\u056b\u0007V\u0002\u0002\u056b\u00fa\u0003\u0002\u0002", + "\u0002\u056c\u056d\u0007N\u0002\u0002\u056d\u056e\u0007V\u0002\u0002", + "\u056e\u056f\u0007G\u0002\u0002\u056f\u00fc\u0003\u0002\u0002\u0002", + "\u0570\u0571\u0007I\u0002\u0002\u0571\u0572\u0007V\u0002\u0002\u0572", + "\u00fe\u0003\u0002\u0002\u0002\u0573\u0574\u0007I\u0002\u0002\u0574", + "\u0575\u0007V\u0002\u0002\u0575\u0576\u0007G\u0002\u0002\u0576\u0100", + "\u0003\u0002\u0002\u0002\u0577\u0578\u0007R\u0002\u0002\u0578\u0579", + "\u0007N\u0002\u0002\u0579\u057a\u0007W\u0002\u0002\u057a\u057b\u0007", + "U\u0002\u0002\u057b\u0102\u0003\u0002\u0002\u0002\u057c\u057d\u0007", + "O\u0002\u0002\u057d\u057e\u0007K\u0002\u0002\u057e\u057f\u0007P\u0002", + "\u0002\u057f\u0580\u0007W\u0002\u0002\u0580\u0581\u0007U\u0002\u0002", + "\u0581\u0104\u0003\u0002\u0002\u0002\u0582\u0583\u0007C\u0002\u0002", + "\u0583\u0584\u0007U\u0002\u0002\u0584\u0585\u0007V\u0002\u0002\u0585", + "\u0586\u0007G\u0002\u0002\u0586\u0587\u0007T\u0002\u0002\u0587\u0588", + "\u0007K\u0002\u0002\u0588\u0589\u0007U\u0002\u0002\u0589\u058a\u0007", + "M\u0002\u0002\u058a\u0106\u0003\u0002\u0002\u0002\u058b\u058c\u0007", + "U\u0002\u0002\u058c\u058d\u0007N\u0002\u0002\u058d\u058e\u0007C\u0002", + "\u0002\u058e\u058f\u0007U\u0002\u0002\u058f\u0590\u0007J\u0002\u0002", + "\u0590\u0108\u0003\u0002\u0002\u0002\u0591\u0592\u0007R\u0002\u0002", + "\u0592\u0593\u0007G\u0002\u0002\u0593\u0594\u0007T\u0002\u0002\u0594", + "\u0595\u0007E\u0002\u0002\u0595\u0596\u0007G\u0002\u0002\u0596\u0597", + "\u0007P\u0002\u0002\u0597\u0598\u0007V\u0002\u0002\u0598\u010a\u0003", + "\u0002\u0002\u0002\u0599\u059a\u0007F\u0002\u0002\u059a\u059b\u0007", + "K\u0002\u0002\u059b\u059c\u0007X\u0002\u0002\u059c\u010c\u0003\u0002", + "\u0002\u0002\u059d\u059e\u0007V\u0002\u0002\u059e\u059f\u0007K\u0002", + "\u0002\u059f\u05a0\u0007N\u0002\u0002\u05a0\u05a1\u0007F\u0002\u0002", + "\u05a1\u05a2\u0007G\u0002\u0002\u05a2\u010e\u0003\u0002\u0002\u0002", + "\u05a3\u05a4\u0007C\u0002\u0002\u05a4\u05a5\u0007O\u0002\u0002\u05a5", + "\u05a6\u0007R\u0002\u0002\u05a6\u05a7\u0007G\u0002\u0002\u05a7\u05a8", + "\u0007T\u0002\u0002\u05a8\u05a9\u0007U\u0002\u0002\u05a9\u05aa\u0007", + "C\u0002\u0002\u05aa\u05ab\u0007P\u0002\u0002\u05ab\u05ac\u0007F\u0002", + "\u0002\u05ac\u0110\u0003\u0002\u0002\u0002\u05ad\u05ae\u0007R\u0002", + "\u0002\u05ae\u05af\u0007K\u0002\u0002\u05af\u05b0\u0007R\u0002\u0002", + "\u05b0\u05b1\u0007G\u0002\u0002\u05b1\u0112\u0003\u0002\u0002\u0002", + "\u05b2\u05b3\u0007E\u0002\u0002\u05b3\u05b4\u0007Q\u0002\u0002\u05b4", + "\u05b5\u0007P\u0002\u0002\u05b5\u05b6\u0007E\u0002\u0002\u05b6\u05b7", + "\u0007C\u0002\u0002\u05b7\u05b8\u0007V\u0002\u0002\u05b8\u05b9\u0007", + "a\u0002\u0002\u05b9\u05ba\u0007R\u0002\u0002\u05ba\u05bb\u0007K\u0002", + "\u0002\u05bb\u05bc\u0007R\u0002\u0002\u05bc\u05bd\u0007G\u0002\u0002", + "\u05bd\u0114\u0003\u0002\u0002\u0002\u05be\u05bf\u0007J\u0002\u0002", + "\u05bf\u05c0\u0007C\u0002\u0002\u05c0\u05c1\u0007V\u0002\u0002\u05c1", + "\u0116\u0003\u0002\u0002\u0002\u05c2\u05c3\u0007R\u0002\u0002\u05c3", + "\u05c4\u0007G\u0002\u0002\u05c4\u05c5\u0007T\u0002\u0002\u05c5\u05c6", + "\u0007E\u0002\u0002\u05c6\u05c7\u0007G\u0002\u0002\u05c7\u05c8\u0007", + "P\u0002\u0002\u05c8\u05c9\u0007V\u0002\u0002\u05c9\u05ca\u0007N\u0002", + "\u0002\u05ca\u05cb\u0007K\u0002\u0002\u05cb\u05cc\u0007V\u0002\u0002", + "\u05cc\u0118\u0003\u0002\u0002\u0002\u05cd\u05ce\u0007D\u0002\u0002", + "\u05ce\u05cf\u0007W\u0002\u0002\u05cf\u05d0\u0007E\u0002\u0002\u05d0", + "\u05d1\u0007M\u0002\u0002\u05d1\u05d2\u0007G\u0002\u0002\u05d2\u05d3", + "\u0007V\u0002\u0002\u05d3\u011a\u0003\u0002\u0002\u0002\u05d4\u05d5", + "\u0007Q\u0002\u0002\u05d5\u05d6\u0007W\u0002\u0002\u05d6\u05d7\u0007", + "V\u0002\u0002\u05d7\u011c\u0003\u0002\u0002\u0002\u05d8\u05d9\u0007", + "Q\u0002\u0002\u05d9\u05da\u0007H\u0002\u0002\u05da\u011e\u0003\u0002", + "\u0002\u0002\u05db\u05dc\u0007U\u0002\u0002\u05dc\u05dd\u0007Q\u0002", + "\u0002\u05dd\u05de\u0007T\u0002\u0002\u05de\u05df\u0007V\u0002\u0002", + "\u05df\u0120\u0003\u0002\u0002\u0002\u05e0\u05e1\u0007E\u0002\u0002", + "\u05e1\u05e2\u0007N\u0002\u0002\u05e2\u05e3\u0007W\u0002\u0002\u05e3", + "\u05e4\u0007U\u0002\u0002\u05e4\u05e5\u0007V\u0002\u0002\u05e5\u05e6", + "\u0007G\u0002\u0002\u05e6\u05e7\u0007T\u0002\u0002\u05e7\u0122\u0003", + "\u0002\u0002\u0002\u05e8\u05e9\u0007F\u0002\u0002\u05e9\u05ea\u0007", + "K\u0002\u0002\u05ea\u05eb\u0007U\u0002\u0002\u05eb\u05ec\u0007V\u0002", + "\u0002\u05ec\u05ed\u0007T\u0002\u0002\u05ed\u05ee\u0007K\u0002\u0002", + "\u05ee\u05ef\u0007D\u0002\u0002\u05ef\u05f0\u0007W\u0002\u0002\u05f0", + "\u05f1\u0007V\u0002\u0002\u05f1\u05f2\u0007G\u0002\u0002\u05f2\u0124", + "\u0003\u0002\u0002\u0002\u05f3\u05f4\u0007Q\u0002\u0002\u05f4\u05f5", + "\u0007X\u0002\u0002\u05f5\u05f6\u0007G\u0002\u0002\u05f6\u05f7\u0007", + "T\u0002\u0002\u05f7\u05f8\u0007Y\u0002\u0002\u05f8\u05f9\u0007T\u0002", + "\u0002\u05f9\u05fa\u0007K\u0002\u0002\u05fa\u05fb\u0007V\u0002\u0002", + "\u05fb\u05fc\u0007G\u0002\u0002\u05fc\u0126\u0003\u0002\u0002\u0002", + "\u05fd\u05fe\u0007V\u0002\u0002\u05fe\u05ff\u0007T\u0002\u0002\u05ff", + "\u0600\u0007C\u0002\u0002\u0600\u0601\u0007P\u0002\u0002\u0601\u0602", + "\u0007U\u0002\u0002\u0602\u0603\u0007H\u0002\u0002\u0603\u0604\u0007", + "Q\u0002\u0002\u0604\u0605\u0007T\u0002\u0002\u0605\u0606\u0007O\u0002", + "\u0002\u0606\u0128\u0003\u0002\u0002\u0002\u0607\u0608\u0007T\u0002", + "\u0002\u0608\u0609\u0007G\u0002\u0002\u0609\u060a\u0007F\u0002\u0002", + "\u060a\u060b\u0007W\u0002\u0002\u060b\u060c\u0007E\u0002\u0002\u060c", + "\u060d\u0007G\u0002\u0002\u060d\u012a\u0003\u0002\u0002\u0002\u060e", + "\u060f\u0007W\u0002\u0002\u060f\u0610\u0007U\u0002\u0002\u0610\u0611", + "\u0007K\u0002\u0002\u0611\u0612\u0007P\u0002\u0002\u0612\u0613\u0007", + "I\u0002\u0002\u0613\u012c\u0003\u0002\u0002\u0002\u0614\u0615\u0007", + "U\u0002\u0002\u0615\u0616\u0007G\u0002\u0002\u0616\u0617\u0007T\u0002", + "\u0002\u0617\u0618\u0007F\u0002\u0002\u0618\u0619\u0007G\u0002\u0002", + "\u0619\u012e\u0003\u0002\u0002\u0002\u061a\u061b\u0007U\u0002\u0002", + "\u061b\u061c\u0007G\u0002\u0002\u061c\u061d\u0007T\u0002\u0002\u061d", + "\u061e\u0007F\u0002\u0002\u061e\u061f\u0007G\u0002\u0002\u061f\u0620", + "\u0007R\u0002\u0002\u0620\u0621\u0007T\u0002\u0002\u0621\u0622\u0007", + "Q\u0002\u0002\u0622\u0623\u0007R\u0002\u0002\u0623\u0624\u0007G\u0002", + "\u0002\u0624\u0625\u0007T\u0002\u0002\u0625\u0626\u0007V\u0002\u0002", + "\u0626\u0627\u0007K\u0002\u0002\u0627\u0628\u0007G\u0002\u0002\u0628", + "\u0629\u0007U\u0002\u0002\u0629\u0130\u0003\u0002\u0002\u0002\u062a", + "\u062b\u0007T\u0002\u0002\u062b\u062c\u0007G\u0002\u0002\u062c\u062d", + "\u0007E\u0002\u0002\u062d\u062e\u0007Q\u0002\u0002\u062e\u062f\u0007", + "T\u0002\u0002\u062f\u0630\u0007F\u0002\u0002\u0630\u0631\u0007T\u0002", + "\u0002\u0631\u0632\u0007G\u0002\u0002\u0632\u0633\u0007C\u0002\u0002", + "\u0633\u0634\u0007F\u0002\u0002\u0634\u0635\u0007G\u0002\u0002\u0635", + "\u0636\u0007T\u0002\u0002\u0636\u0132\u0003\u0002\u0002\u0002\u0637", + "\u0638\u0007T\u0002\u0002\u0638\u0639\u0007G\u0002\u0002\u0639\u063a", + "\u0007E\u0002\u0002\u063a\u063b\u0007Q\u0002\u0002\u063b\u063c\u0007", + "T\u0002\u0002\u063c\u063d\u0007F\u0002\u0002\u063d\u063e\u0007Y\u0002", + "\u0002\u063e\u063f\u0007T\u0002\u0002\u063f\u0640\u0007K\u0002\u0002", + "\u0640\u0641\u0007V\u0002\u0002\u0641\u0642\u0007G\u0002\u0002\u0642", + "\u0643\u0007T\u0002\u0002\u0643\u0134\u0003\u0002\u0002\u0002\u0644", + "\u0645\u0007F\u0002\u0002\u0645\u0646\u0007G\u0002\u0002\u0646\u0647", + "\u0007N\u0002\u0002\u0647\u0648\u0007K\u0002\u0002\u0648\u0649\u0007", + "O\u0002\u0002\u0649\u064a\u0007K\u0002\u0002\u064a\u064b\u0007V\u0002", + "\u0002\u064b\u064c\u0007G\u0002\u0002\u064c\u064d\u0007F\u0002\u0002", + "\u064d\u0136\u0003\u0002\u0002\u0002\u064e\u064f\u0007H\u0002\u0002", + "\u064f\u0650\u0007K\u0002\u0002\u0650\u0651\u0007G\u0002\u0002\u0651", + "\u0652\u0007N\u0002\u0002\u0652\u0653\u0007F\u0002\u0002\u0653\u0654", + "\u0007U\u0002\u0002\u0654\u0138\u0003\u0002\u0002\u0002\u0655\u0656", + "\u0007V\u0002\u0002\u0656\u0657\u0007G\u0002\u0002\u0657\u0658\u0007", + "T\u0002\u0002\u0658\u0659\u0007O\u0002\u0002\u0659\u065a\u0007K\u0002", + "\u0002\u065a\u065b\u0007P\u0002\u0002\u065b\u065c\u0007C\u0002\u0002", + "\u065c\u065d\u0007V\u0002\u0002\u065d\u065e\u0007G\u0002\u0002\u065e", + "\u065f\u0007F\u0002\u0002\u065f\u013a\u0003\u0002\u0002\u0002\u0660", + "\u0661\u0007E\u0002\u0002\u0661\u0662\u0007Q\u0002\u0002\u0662\u0663", + "\u0007N\u0002\u0002\u0663\u0664\u0007N\u0002\u0002\u0664\u0665\u0007", + "G\u0002\u0002\u0665\u0666\u0007E\u0002\u0002\u0666\u0667\u0007V\u0002", + "\u0002\u0667\u0668\u0007K\u0002\u0002\u0668\u0669\u0007Q\u0002\u0002", + "\u0669\u066a\u0007P\u0002\u0002\u066a\u013c\u0003\u0002\u0002\u0002", + "\u066b\u066c\u0007K\u0002\u0002\u066c\u066d\u0007V\u0002\u0002\u066d", + "\u066e\u0007G\u0002\u0002\u066e\u066f\u0007O\u0002\u0002\u066f\u0670", + "\u0007U\u0002\u0002\u0670\u013e\u0003\u0002\u0002\u0002\u0671\u0672", + "\u0007M\u0002\u0002\u0672\u0673\u0007G\u0002\u0002\u0673\u0674\u0007", + "[\u0002\u0002\u0674\u0675\u0007U\u0002\u0002\u0675\u0140\u0003\u0002", + "\u0002\u0002\u0676\u0677\u0007G\u0002\u0002\u0677\u0678\u0007U\u0002", + "\u0002\u0678\u0679\u0007E\u0002\u0002\u0679\u067a\u0007C\u0002\u0002", + "\u067a\u067b\u0007R\u0002\u0002\u067b\u067c\u0007G\u0002\u0002\u067c", + "\u067d\u0007F\u0002\u0002\u067d\u0142\u0003\u0002\u0002\u0002\u067e", + "\u067f\u0007N\u0002\u0002\u067f\u0680\u0007K\u0002\u0002\u0680\u0681", + "\u0007P\u0002\u0002\u0681\u0682\u0007G\u0002\u0002\u0682\u0683\u0007", + "U\u0002\u0002\u0683\u0144\u0003\u0002\u0002\u0002\u0684\u0685\u0007", + "U\u0002\u0002\u0685\u0686\u0007G\u0002\u0002\u0686\u0687\u0007R\u0002", + "\u0002\u0687\u0688\u0007C\u0002\u0002\u0688\u0689\u0007T\u0002\u0002", + "\u0689\u068a\u0007C\u0002\u0002\u068a\u068b\u0007V\u0002\u0002\u068b", + "\u068c\u0007G\u0002\u0002\u068c\u068d\u0007F\u0002\u0002\u068d\u0146", + "\u0003\u0002\u0002\u0002\u068e\u068f\u0007H\u0002\u0002\u068f\u0690", + "\u0007W\u0002\u0002\u0690\u0691\u0007P\u0002\u0002\u0691\u0692\u0007", + "E\u0002\u0002\u0692\u0693\u0007V\u0002\u0002\u0693\u0694\u0007K\u0002", + "\u0002\u0694\u0695\u0007Q\u0002\u0002\u0695\u0696\u0007P\u0002\u0002", + "\u0696\u0148\u0003\u0002\u0002\u0002\u0697\u0698\u0007G\u0002\u0002", + "\u0698\u0699\u0007Z\u0002\u0002\u0699\u069a\u0007V\u0002\u0002\u069a", + "\u069b\u0007G\u0002\u0002\u069b\u069c\u0007P\u0002\u0002\u069c\u069d", + "\u0007F\u0002\u0002\u069d\u069e\u0007G\u0002\u0002\u069e\u069f\u0007", + "F\u0002\u0002\u069f\u014a\u0003\u0002\u0002\u0002\u06a0\u06a1\u0007", + "T\u0002\u0002\u06a1\u06a2\u0007G\u0002\u0002\u06a2\u06a3\u0007H\u0002", + "\u0002\u06a3\u06a4\u0007T\u0002\u0002\u06a4\u06a5\u0007G\u0002\u0002", + "\u06a5\u06a6\u0007U\u0002\u0002\u06a6\u06a7\u0007J\u0002\u0002\u06a7", + "\u014c\u0003\u0002\u0002\u0002\u06a8\u06a9\u0007E\u0002\u0002\u06a9", + "\u06aa\u0007N\u0002\u0002\u06aa\u06ab\u0007G\u0002\u0002\u06ab\u06ac", + "\u0007C\u0002\u0002\u06ac\u06ad\u0007T\u0002\u0002\u06ad\u014e\u0003", + "\u0002\u0002\u0002\u06ae\u06af\u0007E\u0002\u0002\u06af\u06b0\u0007", + "C\u0002\u0002\u06b0\u06b1\u0007E\u0002\u0002\u06b1\u06b2\u0007J\u0002", + "\u0002\u06b2\u06b3\u0007G\u0002\u0002\u06b3\u0150\u0003\u0002\u0002", + "\u0002\u06b4\u06b5\u0007W\u0002\u0002\u06b5\u06b6\u0007P\u0002\u0002", + "\u06b6\u06b7\u0007E\u0002\u0002\u06b7\u06b8\u0007C\u0002\u0002\u06b8", + "\u06b9\u0007E\u0002\u0002\u06b9\u06ba\u0007J\u0002\u0002\u06ba\u06bb", + "\u0007G\u0002\u0002\u06bb\u0152\u0003\u0002\u0002\u0002\u06bc\u06bd", + "\u0007N\u0002\u0002\u06bd\u06be\u0007C\u0002\u0002\u06be\u06bf\u0007", + "\\\u0002\u0002\u06bf\u06c0\u0007[\u0002\u0002\u06c0\u0154\u0003\u0002", + "\u0002\u0002\u06c1\u06c2\u0007H\u0002\u0002\u06c2\u06c3\u0007Q\u0002", + "\u0002\u06c3\u06c4\u0007T\u0002\u0002\u06c4\u06c5\u0007O\u0002\u0002", + "\u06c5\u06c6\u0007C\u0002\u0002\u06c6\u06c7\u0007V\u0002\u0002\u06c7", + "\u06c8\u0007V\u0002\u0002\u06c8\u06c9\u0007G\u0002\u0002\u06c9\u06ca", + "\u0007F\u0002\u0002\u06ca\u0156\u0003\u0002\u0002\u0002\u06cb\u06cc", + "\u0007I\u0002\u0002\u06cc\u06cd\u0007N\u0002\u0002\u06cd\u06ce\u0007", + "Q\u0002\u0002\u06ce\u06cf\u0007D\u0002\u0002\u06cf\u06d0\u0007C\u0002", + "\u0002\u06d0\u06d1\u0007N\u0002\u0002\u06d1\u0158\u0003\u0002\u0002", + "\u0002\u06d2\u06d3\u0007V\u0002\u0002\u06d3\u06d4\u0007G\u0002\u0002", + "\u06d4\u06d5\u0007O\u0002\u0002\u06d5\u06d6\u0007R\u0002\u0002\u06d6", + "\u06d7\u0007Q\u0002\u0002\u06d7\u06d8\u0007T\u0002\u0002\u06d8\u06d9", + "\u0007C\u0002\u0002\u06d9\u06da\u0007T\u0002\u0002\u06da\u06db\u0007", + "[\u0002\u0002\u06db\u015a\u0003\u0002\u0002\u0002\u06dc\u06dd\u0007", + "Q\u0002\u0002\u06dd\u06de\u0007R\u0002\u0002\u06de\u06df\u0007V\u0002", + "\u0002\u06df\u06e0\u0007K\u0002\u0002\u06e0\u06e1\u0007Q\u0002\u0002", + "\u06e1\u06e2\u0007P\u0002\u0002\u06e2\u06e3\u0007U\u0002\u0002\u06e3", + "\u015c\u0003\u0002\u0002\u0002\u06e4\u06e5\u0007W\u0002\u0002\u06e5", + "\u06e6\u0007P\u0002\u0002\u06e6\u06e7\u0007U\u0002\u0002\u06e7\u06e8", + "\u0007G\u0002\u0002\u06e8\u06e9\u0007V\u0002\u0002\u06e9\u015e\u0003", + "\u0002\u0002\u0002\u06ea\u06eb\u0007V\u0002\u0002\u06eb\u06ec\u0007", + "D\u0002\u0002\u06ec\u06ed\u0007N\u0002\u0002\u06ed\u06ee\u0007R\u0002", + "\u0002\u06ee\u06ef\u0007T\u0002\u0002\u06ef\u06f0\u0007Q\u0002\u0002", + "\u06f0\u06f1\u0007R\u0002\u0002\u06f1\u06f2\u0007G\u0002\u0002\u06f2", + "\u06f3\u0007T\u0002\u0002\u06f3\u06f4\u0007V\u0002\u0002\u06f4\u06f5", + "\u0007K\u0002\u0002\u06f5\u06f6\u0007G\u0002\u0002\u06f6\u06f7\u0007", + "U\u0002\u0002\u06f7\u0160\u0003\u0002\u0002\u0002\u06f8\u06f9\u0007", + "F\u0002\u0002\u06f9\u06fa\u0007D\u0002\u0002\u06fa\u06fb\u0007R\u0002", + "\u0002\u06fb\u06fc\u0007T\u0002\u0002\u06fc\u06fd\u0007Q\u0002\u0002", + "\u06fd\u06fe\u0007R\u0002\u0002\u06fe\u06ff\u0007G\u0002\u0002\u06ff", + "\u0700\u0007T\u0002\u0002\u0700\u0701\u0007V\u0002\u0002\u0701\u0702", + "\u0007K\u0002\u0002\u0702\u0703\u0007G\u0002\u0002\u0703\u0704\u0007", + "U\u0002\u0002\u0704\u0162\u0003\u0002\u0002\u0002\u0705\u0706\u0007", + "D\u0002\u0002\u0706\u0707\u0007W\u0002\u0002\u0707\u0708\u0007E\u0002", + "\u0002\u0708\u0709\u0007M\u0002\u0002\u0709\u070a\u0007G\u0002\u0002", + "\u070a\u070b\u0007V\u0002\u0002\u070b\u070c\u0007U\u0002\u0002\u070c", + "\u0164\u0003\u0002\u0002\u0002\u070d\u070e\u0007U\u0002\u0002\u070e", + "\u070f\u0007M\u0002\u0002\u070f\u0710\u0007G\u0002\u0002\u0710\u0711", + "\u0007Y\u0002\u0002\u0711\u0712\u0007G\u0002\u0002\u0712\u0713\u0007", + "F\u0002\u0002\u0713\u0166\u0003\u0002\u0002\u0002\u0714\u0715\u0007", + "U\u0002\u0002\u0715\u0716\u0007V\u0002\u0002\u0716\u0717\u0007Q\u0002", + "\u0002\u0717\u0718\u0007T\u0002\u0002\u0718\u0719\u0007G\u0002\u0002", + "\u0719\u071a\u0007F\u0002\u0002\u071a\u0168\u0003\u0002\u0002\u0002", + "\u071b\u071c\u0007F\u0002\u0002\u071c\u071d\u0007K\u0002\u0002\u071d", + "\u071e\u0007T\u0002\u0002\u071e\u071f\u0007G\u0002\u0002\u071f\u0720", + "\u0007E\u0002\u0002\u0720\u0721\u0007V\u0002\u0002\u0721\u0722\u0007", + "Q\u0002\u0002\u0722\u0723\u0007T\u0002\u0002\u0723\u0724\u0007K\u0002", + "\u0002\u0724\u0725\u0007G\u0002\u0002\u0725\u0726\u0007U\u0002\u0002", + "\u0726\u016a\u0003\u0002\u0002\u0002\u0727\u0728\u0007N\u0002\u0002", + "\u0728\u0729\u0007Q\u0002\u0002\u0729\u072a\u0007E\u0002\u0002\u072a", + "\u072b\u0007C\u0002\u0002\u072b\u072c\u0007V\u0002\u0002\u072c\u072d", + "\u0007K\u0002\u0002\u072d\u072e\u0007Q\u0002\u0002\u072e\u072f\u0007", + "P\u0002\u0002\u072f\u016c\u0003\u0002\u0002\u0002\u0730\u0731\u0007", + "G\u0002\u0002\u0731\u0732\u0007Z\u0002\u0002\u0732\u0733\u0007E\u0002", + "\u0002\u0733\u0734\u0007J\u0002\u0002\u0734\u0735\u0007C\u0002\u0002", + "\u0735\u0736\u0007P\u0002\u0002\u0736\u0737\u0007I\u0002\u0002\u0737", + "\u0738\u0007G\u0002\u0002\u0738\u016e\u0003\u0002\u0002\u0002\u0739", + "\u073a\u0007C\u0002\u0002\u073a\u073b\u0007T\u0002\u0002\u073b\u073c", + "\u0007E\u0002\u0002\u073c\u073d\u0007J\u0002\u0002\u073d\u073e\u0007", + "K\u0002\u0002\u073e\u073f\u0007X\u0002\u0002\u073f\u0740\u0007G\u0002", + "\u0002\u0740\u0170\u0003\u0002\u0002\u0002\u0741\u0742\u0007W\u0002", + "\u0002\u0742\u0743\u0007P\u0002\u0002\u0743\u0744\u0007C\u0002\u0002", + "\u0744\u0745\u0007T\u0002\u0002\u0745\u0746\u0007E\u0002\u0002\u0746", + "\u0747\u0007J\u0002\u0002\u0747\u0748\u0007K\u0002\u0002\u0748\u0749", + "\u0007X\u0002\u0002\u0749\u074a\u0007G\u0002\u0002\u074a\u0172\u0003", + "\u0002\u0002\u0002\u074b\u074c\u0007H\u0002\u0002\u074c\u074d\u0007", + "K\u0002\u0002\u074d\u074e\u0007N\u0002\u0002\u074e\u074f\u0007G\u0002", + "\u0002\u074f\u0750\u0007H\u0002\u0002\u0750\u0751\u0007Q\u0002\u0002", + "\u0751\u0752\u0007T\u0002\u0002\u0752\u0753\u0007O\u0002\u0002\u0753", + "\u0754\u0007C\u0002\u0002\u0754\u0755\u0007V\u0002\u0002\u0755\u0174", + "\u0003\u0002\u0002\u0002\u0756\u0757\u0007V\u0002\u0002\u0757\u0758", + "\u0007Q\u0002\u0002\u0758\u0759\u0007W\u0002\u0002\u0759\u075a\u0007", + "E\u0002\u0002\u075a\u075b\u0007J\u0002\u0002\u075b\u0176\u0003\u0002", + "\u0002\u0002\u075c\u075d\u0007E\u0002\u0002\u075d\u075e\u0007Q\u0002", + "\u0002\u075e\u075f\u0007O\u0002\u0002\u075f\u0760\u0007R\u0002\u0002", + "\u0760\u0761\u0007C\u0002\u0002\u0761\u0762\u0007E\u0002\u0002\u0762", + "\u0763\u0007V\u0002\u0002\u0763\u0178\u0003\u0002\u0002\u0002\u0764", + "\u0765\u0007E\u0002\u0002\u0765\u0766\u0007Q\u0002\u0002\u0766\u0767", + "\u0007P\u0002\u0002\u0767\u0768\u0007E\u0002\u0002\u0768\u0769\u0007", + "C\u0002\u0002\u0769\u076a\u0007V\u0002\u0002\u076a\u076b\u0007G\u0002", + "\u0002\u076b\u076c\u0007P\u0002\u0002\u076c\u076d\u0007C\u0002\u0002", + "\u076d\u076e\u0007V\u0002\u0002\u076e\u076f\u0007G\u0002\u0002\u076f", + "\u017a\u0003\u0002\u0002\u0002\u0770\u0771\u0007E\u0002\u0002\u0771", + "\u0772\u0007J\u0002\u0002\u0772\u0773\u0007C\u0002\u0002\u0773\u0774", + "\u0007P\u0002\u0002\u0774\u0775\u0007I\u0002\u0002\u0775\u0776\u0007", + "G\u0002\u0002\u0776\u017c\u0003\u0002\u0002\u0002\u0777\u0778\u0007", + "E\u0002\u0002\u0778\u0779\u0007C\u0002\u0002\u0779\u077a\u0007U\u0002", + "\u0002\u077a\u077b\u0007E\u0002\u0002\u077b\u077c\u0007C\u0002\u0002", + "\u077c\u077d\u0007F\u0002\u0002\u077d\u077e\u0007G\u0002\u0002\u077e", + "\u017e\u0003\u0002\u0002\u0002\u077f\u0780\u0007T\u0002\u0002\u0780", + "\u0781\u0007G\u0002\u0002\u0781\u0782\u0007U\u0002\u0002\u0782\u0783", + "\u0007V\u0002\u0002\u0783\u0784\u0007T\u0002\u0002\u0784\u0785\u0007", + "K\u0002\u0002\u0785\u0786\u0007E\u0002\u0002\u0786\u0787\u0007V\u0002", + "\u0002\u0787\u0180\u0003\u0002\u0002\u0002\u0788\u0789\u0007E\u0002", + "\u0002\u0789\u078a\u0007N\u0002\u0002\u078a\u078b\u0007W\u0002\u0002", + "\u078b\u078c\u0007U\u0002\u0002\u078c\u078d\u0007V\u0002\u0002\u078d", + "\u078e\u0007G\u0002\u0002\u078e\u078f\u0007T\u0002\u0002\u078f\u0790", + "\u0007G\u0002\u0002\u0790\u0791\u0007F\u0002\u0002\u0791\u0182\u0003", + "\u0002\u0002\u0002\u0792\u0793\u0007U\u0002\u0002\u0793\u0794\u0007", + "Q\u0002\u0002\u0794\u0795\u0007T\u0002\u0002\u0795\u0796\u0007V\u0002", + "\u0002\u0796\u0797\u0007G\u0002\u0002\u0797\u0798\u0007F\u0002\u0002", + "\u0798\u0184\u0003\u0002\u0002\u0002\u0799\u079a\u0007R\u0002\u0002", + "\u079a\u079b\u0007W\u0002\u0002\u079b\u079c\u0007T\u0002\u0002\u079c", + "\u079d\u0007I\u0002\u0002\u079d\u079e\u0007G\u0002\u0002\u079e\u0186", + "\u0003\u0002\u0002\u0002\u079f\u07a0\u0007K\u0002\u0002\u07a0\u07a1", + "\u0007P\u0002\u0002\u07a1\u07a2\u0007R\u0002\u0002\u07a2\u07a3\u0007", + "W\u0002\u0002\u07a3\u07a4\u0007V\u0002\u0002\u07a4\u07a5\u0007H\u0002", + "\u0002\u07a5\u07a6\u0007Q\u0002\u0002\u07a6\u07a7\u0007T\u0002\u0002", + "\u07a7\u07a8\u0007O\u0002\u0002\u07a8\u07a9\u0007C\u0002\u0002\u07a9", + "\u07aa\u0007V\u0002\u0002\u07aa\u0188\u0003\u0002\u0002\u0002\u07ab", + "\u07ac\u0007Q\u0002\u0002\u07ac\u07ad\u0007W\u0002\u0002\u07ad\u07ae", + "\u0007V\u0002\u0002\u07ae\u07af\u0007R\u0002\u0002\u07af\u07b0\u0007", + "W\u0002\u0002\u07b0\u07b1\u0007V\u0002\u0002\u07b1\u07b2\u0007H\u0002", + "\u0002\u07b2\u07b3\u0007Q\u0002\u0002\u07b3\u07b4\u0007T\u0002\u0002", + "\u07b4\u07b5\u0007O\u0002\u0002\u07b5\u07b6\u0007C\u0002\u0002\u07b6", + "\u07b7\u0007V\u0002\u0002\u07b7\u018a\u0003\u0002\u0002\u0002\u07b8", + "\u07b9\u0007F\u0002\u0002\u07b9\u07ba\u0007C\u0002\u0002\u07ba\u07bb", + "\u0007V\u0002\u0002\u07bb\u07bc\u0007C\u0002\u0002\u07bc\u07bd\u0007", + "D\u0002\u0002\u07bd\u07be\u0007C\u0002\u0002\u07be\u07bf\u0007U\u0002", + "\u0002\u07bf\u07c0\u0007G\u0002\u0002\u07c0\u018c\u0003\u0002\u0002", + "\u0002\u07c1\u07c2\u0007F\u0002\u0002\u07c2\u07c3\u0007C\u0002\u0002", + "\u07c3\u07c4\u0007V\u0002\u0002\u07c4\u07c5\u0007C\u0002\u0002\u07c5", + "\u07c6\u0007D\u0002\u0002\u07c6\u07c7\u0007C\u0002\u0002\u07c7\u07c8", + "\u0007U\u0002\u0002\u07c8\u07c9\u0007G\u0002\u0002\u07c9\u07ca\u0007", + "U\u0002\u0002\u07ca\u018e\u0003\u0002\u0002\u0002\u07cb\u07cc\u0007", + "F\u0002\u0002\u07cc\u07cd\u0007H\u0002\u0002\u07cd\u07ce\u0007U\u0002", + "\u0002\u07ce\u0190\u0003\u0002\u0002\u0002\u07cf\u07d0\u0007V\u0002", + "\u0002\u07d0\u07d1\u0007T\u0002\u0002\u07d1\u07d2\u0007W\u0002\u0002", + "\u07d2\u07d3\u0007P\u0002\u0002\u07d3\u07d4\u0007E\u0002\u0002\u07d4", + "\u07d5\u0007C\u0002\u0002\u07d5\u07d6\u0007V\u0002\u0002\u07d6\u07d7", + "\u0007G\u0002\u0002\u07d7\u0192\u0003\u0002\u0002\u0002\u07d8\u07d9", + "\u0007C\u0002\u0002\u07d9\u07da\u0007P\u0002\u0002\u07da\u07db\u0007", + "C\u0002\u0002\u07db\u07dc\u0007N\u0002\u0002\u07dc\u07dd\u0007[\u0002", + "\u0002\u07dd\u07de\u0007\\\u0002\u0002\u07de\u07df\u0007G\u0002\u0002", + "\u07df\u0194\u0003\u0002\u0002\u0002\u07e0\u07e1\u0007E\u0002\u0002", + "\u07e1\u07e2\u0007Q\u0002\u0002\u07e2\u07e3\u0007O\u0002\u0002\u07e3", + "\u07e4\u0007R\u0002\u0002\u07e4\u07e5\u0007W\u0002\u0002\u07e5\u07e6", + "\u0007V\u0002\u0002\u07e6\u07e7\u0007G\u0002\u0002\u07e7\u0196\u0003", + "\u0002\u0002\u0002\u07e8\u07e9\u0007N\u0002\u0002\u07e9\u07ea\u0007", + "K\u0002\u0002\u07ea\u07eb\u0007U\u0002\u0002\u07eb\u07ec\u0007V\u0002", + "\u0002\u07ec\u0198\u0003\u0002\u0002\u0002\u07ed\u07ee\u0007U\u0002", + "\u0002\u07ee\u07ef\u0007V\u0002\u0002\u07ef\u07f0\u0007C\u0002\u0002", + "\u07f0\u07f1\u0007V\u0002\u0002\u07f1\u07f2\u0007K\u0002\u0002\u07f2", + "\u07f3\u0007U\u0002\u0002\u07f3\u07f4\u0007V\u0002\u0002\u07f4\u07f5", + "\u0007K\u0002\u0002\u07f5\u07f6\u0007E\u0002\u0002\u07f6\u07f7\u0007", + "U\u0002\u0002\u07f7\u019a\u0003\u0002\u0002\u0002\u07f8\u07f9\u0007", + "R\u0002\u0002\u07f9\u07fa\u0007C\u0002\u0002\u07fa\u07fb\u0007T\u0002", + "\u0002\u07fb\u07fc\u0007V\u0002\u0002\u07fc\u07fd\u0007K\u0002\u0002", + "\u07fd\u07fe\u0007V\u0002\u0002\u07fe\u07ff\u0007K\u0002\u0002\u07ff", + "\u0800\u0007Q\u0002\u0002\u0800\u0801\u0007P\u0002\u0002\u0801\u0802", + "\u0007G\u0002\u0002\u0802\u0803\u0007F\u0002\u0002\u0803\u019c\u0003", + "\u0002\u0002\u0002\u0804\u0805\u0007G\u0002\u0002\u0805\u0806\u0007", + "Z\u0002\u0002\u0806\u0807\u0007V\u0002\u0002\u0807\u0808\u0007G\u0002", + "\u0002\u0808\u0809\u0007T\u0002\u0002\u0809\u080a\u0007P\u0002\u0002", + "\u080a\u080b\u0007C\u0002\u0002\u080b\u080c\u0007N\u0002\u0002\u080c", + "\u019e\u0003\u0002\u0002\u0002\u080d\u080e\u0007F\u0002\u0002\u080e", + "\u080f\u0007G\u0002\u0002\u080f\u0810\u0007H\u0002\u0002\u0810\u0811", + "\u0007K\u0002\u0002\u0811\u0812\u0007P\u0002\u0002\u0812\u0813\u0007", + "G\u0002\u0002\u0813\u0814\u0007F\u0002\u0002\u0814\u01a0\u0003\u0002", + "\u0002\u0002\u0815\u0816\u0007T\u0002\u0002\u0816\u0817\u0007G\u0002", + "\u0002\u0817\u0818\u0007X\u0002\u0002\u0818\u0819\u0007Q\u0002\u0002", + "\u0819\u081a\u0007M\u0002\u0002\u081a\u081b\u0007G\u0002\u0002\u081b", + "\u01a2\u0003\u0002\u0002\u0002\u081c\u081d\u0007I\u0002\u0002\u081d", + "\u081e\u0007T\u0002\u0002\u081e\u081f\u0007C\u0002\u0002\u081f\u0820", + "\u0007P\u0002\u0002\u0820\u0821\u0007V\u0002\u0002\u0821\u01a4\u0003", + "\u0002\u0002\u0002\u0822\u0823\u0007N\u0002\u0002\u0823\u0824\u0007", + "Q\u0002\u0002\u0824\u0825\u0007E\u0002\u0002\u0825\u0826\u0007M\u0002", + "\u0002\u0826\u01a6\u0003\u0002\u0002\u0002\u0827\u0828\u0007W\u0002", + "\u0002\u0828\u0829\u0007P\u0002\u0002\u0829\u082a\u0007N\u0002\u0002", + "\u082a\u082b\u0007Q\u0002\u0002\u082b\u082c\u0007E\u0002\u0002\u082c", + "\u082d\u0007M\u0002\u0002\u082d\u01a8\u0003\u0002\u0002\u0002\u082e", + "\u082f\u0007O\u0002\u0002\u082f\u0830\u0007U\u0002\u0002\u0830\u0831", + "\u0007E\u0002\u0002\u0831\u0832\u0007M\u0002\u0002\u0832\u01aa\u0003", + "\u0002\u0002\u0002\u0833\u0834\u0007T\u0002\u0002\u0834\u0835\u0007", + "G\u0002\u0002\u0835\u0836\u0007R\u0002\u0002\u0836\u0837\u0007C\u0002", + "\u0002\u0837\u0838\u0007K\u0002\u0002\u0838\u0839\u0007T\u0002\u0002", + "\u0839\u01ac\u0003\u0002\u0002\u0002\u083a\u083b\u0007T\u0002\u0002", + "\u083b\u083c\u0007G\u0002\u0002\u083c\u083d\u0007E\u0002\u0002\u083d", + "\u083e\u0007Q\u0002\u0002\u083e\u083f\u0007X\u0002\u0002\u083f\u0840", + "\u0007G\u0002\u0002\u0840\u0841\u0007T\u0002\u0002\u0841\u01ae\u0003", + "\u0002\u0002\u0002\u0842\u0843\u0007G\u0002\u0002\u0843\u0844\u0007", + "Z\u0002\u0002\u0844\u0845\u0007R\u0002\u0002\u0845\u0846\u0007Q\u0002", + "\u0002\u0846\u0847\u0007T\u0002\u0002\u0847\u0848\u0007V\u0002\u0002", + "\u0848\u01b0\u0003\u0002\u0002\u0002\u0849\u084a\u0007K\u0002\u0002", + "\u084a\u084b\u0007O\u0002\u0002\u084b\u084c\u0007R\u0002\u0002\u084c", + "\u084d\u0007Q\u0002\u0002\u084d\u084e\u0007T\u0002\u0002\u084e\u084f", + "\u0007V\u0002\u0002\u084f\u01b2\u0003\u0002\u0002\u0002\u0850\u0851", + "\u0007N\u0002\u0002\u0851\u0852\u0007Q\u0002\u0002\u0852\u0853\u0007", + "C\u0002\u0002\u0853\u0854\u0007F\u0002\u0002\u0854\u01b4\u0003\u0002", + "\u0002\u0002\u0855\u0856\u0007T\u0002\u0002\u0856\u0857\u0007Q\u0002", + "\u0002\u0857\u0858\u0007N\u0002\u0002\u0858\u0859\u0007G\u0002\u0002", + "\u0859\u01b6\u0003\u0002\u0002\u0002\u085a\u085b\u0007T\u0002\u0002", + "\u085b\u085c\u0007Q\u0002\u0002\u085c\u085d\u0007N\u0002\u0002\u085d", + "\u085e\u0007G\u0002\u0002\u085e\u085f\u0007U\u0002\u0002\u085f\u01b8", + "\u0003\u0002\u0002\u0002\u0860\u0861\u0007E\u0002\u0002\u0861\u0862", + "\u0007Q\u0002\u0002\u0862\u0863\u0007O\u0002\u0002\u0863\u0864\u0007", + "R\u0002\u0002\u0864\u0865\u0007C\u0002\u0002\u0865\u0866\u0007E\u0002", + "\u0002\u0866\u0867\u0007V\u0002\u0002\u0867\u0868\u0007K\u0002\u0002", + "\u0868\u0869\u0007Q\u0002\u0002\u0869\u086a\u0007P\u0002\u0002\u086a", + "\u086b\u0007U\u0002\u0002\u086b\u01ba\u0003\u0002\u0002\u0002\u086c", + "\u086d\u0007R\u0002\u0002\u086d\u086e\u0007T\u0002\u0002\u086e\u086f", + "\u0007K\u0002\u0002\u086f\u0870\u0007P\u0002\u0002\u0870\u0871\u0007", + "E\u0002\u0002\u0871\u0872\u0007K\u0002\u0002\u0872\u0873\u0007R\u0002", + "\u0002\u0873\u0874\u0007C\u0002\u0002\u0874\u0875\u0007N\u0002\u0002", + "\u0875\u0876\u0007U\u0002\u0002\u0876\u01bc\u0003\u0002\u0002\u0002", + "\u0877\u0878\u0007V\u0002\u0002\u0878\u0879\u0007T\u0002\u0002\u0879", + "\u087a\u0007C\u0002\u0002\u087a\u087b\u0007P\u0002\u0002\u087b\u087c", + "\u0007U\u0002\u0002\u087c\u087d\u0007C\u0002\u0002\u087d\u087e\u0007", + "E\u0002\u0002\u087e\u087f\u0007V\u0002\u0002\u087f\u0880\u0007K\u0002", + "\u0002\u0880\u0881\u0007Q\u0002\u0002\u0881\u0882\u0007P\u0002\u0002", + "\u0882\u0883\u0007U\u0002\u0002\u0883\u01be\u0003\u0002\u0002\u0002", + "\u0884\u0885\u0007K\u0002\u0002\u0885\u0886\u0007P\u0002\u0002\u0886", + "\u0887\u0007F\u0002\u0002\u0887\u0888\u0007G\u0002\u0002\u0888\u0889", + "\u0007Z\u0002\u0002\u0889\u01c0\u0003\u0002\u0002\u0002\u088a\u088b", + "\u0007K\u0002\u0002\u088b\u088c\u0007P\u0002\u0002\u088c\u088d\u0007", + "F\u0002\u0002\u088d\u088e\u0007G\u0002\u0002\u088e\u088f\u0007Z\u0002", + "\u0002\u088f\u0890\u0007G\u0002\u0002\u0890\u0891\u0007U\u0002\u0002", + "\u0891\u01c2\u0003\u0002\u0002\u0002\u0892\u0893\u0007N\u0002\u0002", + "\u0893\u0894\u0007Q\u0002\u0002\u0894\u0895\u0007E\u0002\u0002\u0895", + "\u0896\u0007M\u0002\u0002\u0896\u0897\u0007U\u0002\u0002\u0897\u01c4", + "\u0003\u0002\u0002\u0002\u0898\u0899\u0007Q\u0002\u0002\u0899\u089a", + "\u0007R\u0002\u0002\u089a\u089b\u0007V\u0002\u0002\u089b\u089c\u0007", + "K\u0002\u0002\u089c\u089d\u0007Q\u0002\u0002\u089d\u089e\u0007P\u0002", + "\u0002\u089e\u01c6\u0003\u0002\u0002\u0002\u089f\u08a0\u0007C\u0002", + "\u0002\u08a0\u08a1\u0007P\u0002\u0002\u08a1\u08a2\u0007V\u0002\u0002", + "\u08a2\u08a3\u0007K\u0002\u0002\u08a3\u01c8\u0003\u0002\u0002\u0002", + "\u08a4\u08a5\u0007N\u0002\u0002\u08a5\u08a6\u0007Q\u0002\u0002\u08a6", + "\u08a7\u0007E\u0002\u0002\u08a7\u08a8\u0007C\u0002\u0002\u08a8\u08a9", + "\u0007N\u0002\u0002\u08a9\u01ca\u0003\u0002\u0002\u0002\u08aa\u08ab", + "\u0007K\u0002\u0002\u08ab\u08ac\u0007P\u0002\u0002\u08ac\u08ad\u0007", + "R\u0002\u0002\u08ad\u08ae\u0007C\u0002\u0002\u08ae\u08af\u0007V\u0002", + "\u0002\u08af\u08b0\u0007J\u0002\u0002\u08b0\u01cc\u0003\u0002\u0002", + "\u0002\u08b1\u08b2\u0007Y\u0002\u0002\u08b2\u08b3\u0007C\u0002\u0002", + "\u08b3\u08b4\u0007V\u0002\u0002\u08b4\u08b5\u0007G\u0002\u0002\u08b5", + "\u08b6\u0007T\u0002\u0002\u08b6\u08b7\u0007O\u0002\u0002\u08b7\u08b8", + "\u0007C\u0002\u0002\u08b8\u08b9\u0007T\u0002\u0002\u08b9\u08ba\u0007", + "M\u0002\u0002\u08ba\u01ce\u0003\u0002\u0002\u0002\u08bb\u08bc\u0007", + "W\u0002\u0002\u08bc\u08bd\u0007P\u0002\u0002\u08bd\u08be\u0007P\u0002", + "\u0002\u08be\u08bf\u0007G\u0002\u0002\u08bf\u08c0\u0007U\u0002\u0002", + "\u08c0\u08c1\u0007V\u0002\u0002\u08c1\u01d0\u0003\u0002\u0002\u0002", + "\u08c2\u08c3\u0007O\u0002\u0002\u08c3\u08c4\u0007C\u0002\u0002\u08c4", + "\u08c5\u0007V\u0002\u0002\u08c5\u08c6\u0007E\u0002\u0002\u08c6\u08c7", + "\u0007J\u0002\u0002\u08c7\u08c8\u0007a\u0002\u0002\u08c8\u08c9\u0007", + "T\u0002\u0002\u08c9\u08ca\u0007G\u0002\u0002\u08ca\u08cb\u0007E\u0002", + "\u0002\u08cb\u08cc\u0007Q\u0002\u0002\u08cc\u08cd\u0007I\u0002\u0002", + "\u08cd\u08ce\u0007P\u0002\u0002\u08ce\u08cf\u0007K\u0002\u0002\u08cf", + "\u08d0\u0007\\\u0002\u0002\u08d0\u08d1\u0007G\u0002\u0002\u08d1\u01d2", + "\u0003\u0002\u0002\u0002\u08d2\u08d3\u0007O\u0002\u0002\u08d3\u08d4", + "\u0007G\u0002\u0002\u08d4\u08d5\u0007C\u0002\u0002\u08d5\u08d6\u0007", + "U\u0002\u0002\u08d6\u08d7\u0007W\u0002\u0002\u08d7\u08d8\u0007T\u0002", + "\u0002\u08d8\u08d9\u0007G\u0002\u0002\u08d9\u08da\u0007U\u0002\u0002", + "\u08da\u01d4\u0003\u0002\u0002\u0002\u08db\u08dc\u0007Q\u0002\u0002", + "\u08dc\u08dd\u0007P\u0002\u0002\u08dd\u08de\u0007G\u0002\u0002\u08de", + "\u01d6\u0003\u0002\u0002\u0002\u08df\u08e0\u0007R\u0002\u0002\u08e0", + "\u08e1\u0007G\u0002\u0002\u08e1\u08e2\u0007T\u0002\u0002\u08e2\u01d8", + "\u0003\u0002\u0002\u0002\u08e3\u08e4\u0007O\u0002\u0002\u08e4\u08e5", + "\u0007C\u0002\u0002\u08e5\u08e6\u0007V\u0002\u0002\u08e6\u08e7\u0007", + "E\u0002\u0002\u08e7\u08e8\u0007J\u0002\u0002\u08e8\u01da\u0003\u0002", + "\u0002\u0002\u08e9\u08ea\u0007U\u0002\u0002\u08ea\u08eb\u0007M\u0002", + "\u0002\u08eb\u08ec\u0007K\u0002\u0002\u08ec\u08ed\u0007R\u0002\u0002", + "\u08ed\u08ee\u00073\u0002\u0002\u08ee\u01dc\u0003\u0002\u0002\u0002", + "\u08ef\u08f0\u0007P\u0002\u0002\u08f0\u08f1\u0007G\u0002\u0002\u08f1", + "\u08f2\u0007Z\u0002\u0002\u08f2\u08f3\u0007V\u0002\u0002\u08f3\u01de", + "\u0003\u0002\u0002\u0002\u08f4\u08f5\u0007R\u0002\u0002\u08f5\u08f6", + "\u0007C\u0002\u0002\u08f6\u08f7\u0007U\u0002\u0002\u08f7\u08f8\u0007", + "V\u0002\u0002\u08f8\u01e0\u0003\u0002\u0002\u0002\u08f9\u08fa\u0007", + "R\u0002\u0002\u08fa\u08fb\u0007C\u0002\u0002\u08fb\u08fc\u0007V\u0002", + "\u0002\u08fc\u08fd\u0007V\u0002\u0002\u08fd\u08fe\u0007G\u0002\u0002", + "\u08fe\u08ff\u0007T\u0002\u0002\u08ff\u0900\u0007P\u0002\u0002\u0900", + "\u01e2\u0003\u0002\u0002\u0002\u0901\u0902\u0007Y\u0002\u0002\u0902", + "\u0903\u0007K\u0002\u0002\u0903\u0904\u0007V\u0002\u0002\u0904\u0905", + "\u0007J\u0002\u0002\u0905\u0906\u0007K\u0002\u0002\u0906\u0907\u0007", + "P\u0002\u0002\u0907\u01e4\u0003\u0002\u0002\u0002\u0908\u0909\u0007", + "F\u0002\u0002\u0909\u090a\u0007G\u0002\u0002\u090a\u090b\u0007H\u0002", + "\u0002\u090b\u090c\u0007K\u0002\u0002\u090c\u090d\u0007P\u0002\u0002", + "\u090d\u090e\u0007G\u0002\u0002\u090e\u01e6\u0003\u0002\u0002\u0002", + "\u090f\u0910\u0007D\u0002\u0002\u0910\u0911\u0007K\u0002\u0002\u0911", + "\u0912\u0007I\u0002\u0002\u0912\u0913\u0007K\u0002\u0002\u0913\u0914", + "\u0007P\u0002\u0002\u0914\u0915\u0007V\u0002\u0002\u0915\u0916\u0007", + "a\u0002\u0002\u0916\u0917\u0007N\u0002\u0002\u0917\u0918\u0007K\u0002", + "\u0002\u0918\u0919\u0007V\u0002\u0002\u0919\u091a\u0007G\u0002\u0002", + "\u091a\u091b\u0007T\u0002\u0002\u091b\u091c\u0007C\u0002\u0002\u091c", + "\u091d\u0007N\u0002\u0002\u091d\u01e8\u0003\u0002\u0002\u0002\u091e", + "\u091f\u0007U\u0002\u0002\u091f\u0920\u0007O\u0002\u0002\u0920\u0921", + "\u0007C\u0002\u0002\u0921\u0922\u0007N\u0002\u0002\u0922\u0923\u0007", + "N\u0002\u0002\u0923\u0924\u0007K\u0002\u0002\u0924\u0925\u0007P\u0002", + "\u0002\u0925\u0926\u0007V\u0002\u0002\u0926\u0927\u0007a\u0002\u0002", + "\u0927\u0928\u0007N\u0002\u0002\u0928\u0929\u0007K\u0002\u0002\u0929", + "\u092a\u0007V\u0002\u0002\u092a\u092b\u0007G\u0002\u0002\u092b\u092c", + "\u0007T\u0002\u0002\u092c\u092d\u0007C\u0002\u0002\u092d\u092e\u0007", + "N\u0002\u0002\u092e\u01ea\u0003\u0002\u0002\u0002\u092f\u0930\u0007", + "V\u0002\u0002\u0930\u0931\u0007K\u0002\u0002\u0931\u0932\u0007P\u0002", + "\u0002\u0932\u0933\u0007[\u0002\u0002\u0933\u0934\u0007K\u0002\u0002", + "\u0934\u0935\u0007P\u0002\u0002\u0935\u0936\u0007V\u0002\u0002\u0936", + "\u0937\u0007a\u0002\u0002\u0937\u0938\u0007N\u0002\u0002\u0938\u0939", + "\u0007K\u0002\u0002\u0939\u093a\u0007V\u0002\u0002\u093a\u093b\u0007", + "G\u0002\u0002\u093b\u093c\u0007T\u0002\u0002\u093c\u093d\u0007C\u0002", + "\u0002\u093d\u093e\u0007N\u0002\u0002\u093e\u01ec\u0003\u0002\u0002", + "\u0002\u093f\u0940\u0007K\u0002\u0002\u0940\u0941\u0007P\u0002\u0002", + "\u0941\u0942\u0007V\u0002\u0002\u0942\u0943\u0007G\u0002\u0002\u0943", + "\u0944\u0007I\u0002\u0002\u0944\u0945\u0007G\u0002\u0002\u0945\u0946", + "\u0007T\u0002\u0002\u0946\u0947\u0007a\u0002\u0002\u0947\u0948\u0007", + "X\u0002\u0002\u0948\u0949\u0007C\u0002\u0002\u0949\u094a\u0007N\u0002", + "\u0002\u094a\u094b\u0007W\u0002\u0002\u094b\u094c\u0007G\u0002\u0002", + "\u094c\u01ee\u0003\u0002\u0002\u0002\u094d\u094e\u0007F\u0002\u0002", + "\u094e\u094f\u0007G\u0002\u0002\u094f\u0950\u0007E\u0002\u0002\u0950", + "\u0951\u0007K\u0002\u0002\u0951\u0952\u0007O\u0002\u0002\u0952\u0953", + "\u0007C\u0002\u0002\u0953\u0954\u0007N\u0002\u0002\u0954\u0955\u0007", + "a\u0002\u0002\u0955\u0956\u0007X\u0002\u0002\u0956\u0957\u0007C\u0002", + "\u0002\u0957\u0958\u0007N\u0002\u0002\u0958\u0959\u0007W\u0002\u0002", + "\u0959\u095a\u0007G\u0002\u0002\u095a\u01f0\u0003\u0002\u0002\u0002", + "\u095b\u095c\u0007F\u0002\u0002\u095c\u095d\u0007Q\u0002\u0002\u095d", + "\u095e\u0007W\u0002\u0002\u095e\u095f\u0007D\u0002\u0002\u095f\u0960", + "\u0007N\u0002\u0002\u0960\u0961\u0007G\u0002\u0002\u0961\u0962\u0007", + "a\u0002\u0002\u0962\u0963\u0007N\u0002\u0002\u0963\u0964\u0007K\u0002", + "\u0002\u0964\u0965\u0007V\u0002\u0002\u0965\u0966\u0007G\u0002\u0002", + "\u0966\u0967\u0007T\u0002\u0002\u0967\u0968\u0007C\u0002\u0002\u0968", + "\u0969\u0007N\u0002\u0002\u0969\u01f2\u0003\u0002\u0002\u0002\u096a", + "\u096b\u0007D\u0002\u0002\u096b\u096c\u0007K\u0002\u0002\u096c\u096d", + "\u0007I\u0002\u0002\u096d\u096e\u0007F\u0002\u0002\u096e\u096f\u0007", + "G\u0002\u0002\u096f\u0970\u0007E\u0002\u0002\u0970\u0971\u0007K\u0002", + "\u0002\u0971\u0972\u0007O\u0002\u0002\u0972\u0973\u0007C\u0002\u0002", + "\u0973\u0974\u0007N\u0002\u0002\u0974\u0975\u0007a\u0002\u0002\u0975", + "\u0976\u0007N\u0002\u0002\u0976\u0977\u0007K\u0002\u0002\u0977\u0978", + "\u0007V\u0002\u0002\u0978\u0979\u0007G\u0002\u0002\u0979\u097a\u0007", + "T\u0002\u0002\u097a\u097b\u0007C\u0002\u0002\u097b\u097c\u0007N\u0002", + "\u0002\u097c\u01f4\u0003\u0002\u0002\u0002\u097d\u097e\u0007K\u0002", + "\u0002\u097e\u097f\u0007F\u0002\u0002\u097f\u0980\u0007G\u0002\u0002", + "\u0980\u0981\u0007P\u0002\u0002\u0981\u0982\u0007V\u0002\u0002\u0982", + "\u0983\u0007K\u0002\u0002\u0983\u0984\u0007H\u0002\u0002\u0984\u0985", + "\u0007K\u0002\u0002\u0985\u0986\u0007G\u0002\u0002\u0986\u0987\u0007", + "T\u0002\u0002\u0987\u01f6\u0003\u0002\u0002\u0002\u0988\u0989\u0007", + "D\u0002\u0002\u0989\u098a\u0007C\u0002\u0002\u098a\u098b\u0007E\u0002", + "\u0002\u098b\u098c\u0007M\u0002\u0002\u098c\u098d\u0007S\u0002\u0002", + "\u098d\u098e\u0007W\u0002\u0002\u098e\u098f\u0007Q\u0002\u0002\u098f", + "\u0990\u0007V\u0002\u0002\u0990\u0991\u0007G\u0002\u0002\u0991\u0992", + "\u0007F\u0002\u0002\u0992\u0993\u0007a\u0002\u0002\u0993\u0994\u0007", + "K\u0002\u0002\u0994\u0995\u0007F\u0002\u0002\u0995\u0996\u0007G\u0002", + "\u0002\u0996\u0997\u0007P\u0002\u0002\u0997\u0998\u0007V\u0002\u0002", + "\u0998\u0999\u0007K\u0002\u0002\u0999\u099a\u0007H\u0002\u0002\u099a", + "\u099b\u0007K\u0002\u0002\u099b\u099c\u0007G\u0002\u0002\u099c\u099d", + "\u0007T\u0002\u0002\u099d\u01f8\u0003\u0002\u0002\u0002\u099e\u099f", + "\u0007U\u0002\u0002\u099f\u09a0\u0007K\u0002\u0002\u09a0\u09a1\u0007", + "O\u0002\u0002\u09a1\u09a2\u0007R\u0002\u0002\u09a2\u09a3\u0007N\u0002", + "\u0002\u09a3\u09a4\u0007G\u0002\u0002\u09a4\u09a5\u0007a\u0002\u0002", + "\u09a5\u09a6\u0007E\u0002\u0002\u09a6\u09a7\u0007Q\u0002\u0002\u09a7", + "\u09a8\u0007O\u0002\u0002\u09a8\u09a9\u0007O\u0002\u0002\u09a9\u09aa", + "\u0007G\u0002\u0002\u09aa\u09ab\u0007P\u0002\u0002\u09ab\u09ac\u0007", + "V\u0002\u0002\u09ac\u01fa\u0003\u0002\u0002\u0002\u09ad\u09ae\u0007", + "D\u0002\u0002\u09ae\u09af\u0007T\u0002\u0002\u09af\u09b0\u0007C\u0002", + "\u0002\u09b0\u09b1\u0007E\u0002\u0002\u09b1\u09b2\u0007M\u0002\u0002", + "\u09b2\u09b3\u0007G\u0002\u0002\u09b3\u09b4\u0007V\u0002\u0002\u09b4", + "\u09b5\u0007G\u0002\u0002\u09b5\u09b6\u0007F\u0002\u0002\u09b6\u09b7", + "\u0007a\u0002\u0002\u09b7\u09b8\u0007G\u0002\u0002\u09b8\u09b9\u0007", + "O\u0002\u0002\u09b9\u09ba\u0007R\u0002\u0002\u09ba\u09bb\u0007V\u0002", + "\u0002\u09bb\u09bc\u0007[\u0002\u0002\u09bc\u09bd\u0007a\u0002\u0002", + "\u09bd\u09be\u0007E\u0002\u0002\u09be\u09bf\u0007Q\u0002\u0002\u09bf", + "\u09c0\u0007O\u0002\u0002\u09c0\u09c1\u0007O\u0002\u0002\u09c1\u09c2", + "\u0007G\u0002\u0002\u09c2\u09c3\u0007P\u0002\u0002\u09c3\u09c4\u0007", + "V\u0002\u0002\u09c4\u01fc\u0003\u0002\u0002\u0002\u09c5\u09c6\u0007", + "D\u0002\u0002\u09c6\u09c7\u0007T\u0002\u0002\u09c7\u09c8\u0007C\u0002", + "\u0002\u09c8\u09c9\u0007E\u0002\u0002\u09c9\u09ca\u0007M\u0002\u0002", + "\u09ca\u09cb\u0007G\u0002\u0002\u09cb\u09cc\u0007V\u0002\u0002\u09cc", + "\u09cd\u0007G\u0002\u0002\u09cd\u09ce\u0007F\u0002\u0002\u09ce\u09cf", + "\u0007a\u0002\u0002\u09cf\u09d0\u0007E\u0002\u0002\u09d0\u09d1\u0007", + "Q\u0002\u0002\u09d1\u09d2\u0007O\u0002\u0002\u09d2\u09d3\u0007O\u0002", + "\u0002\u09d3\u09d4\u0007G\u0002\u0002\u09d4\u09d5\u0007P\u0002\u0002", + "\u09d5\u09d6\u0007V\u0002\u0002\u09d6\u01fe\u0003\u0002\u0002\u0002", + "\u09d7\u09d8\u0007Y\u0002\u0002\u09d8\u09d9\u0007U\u0002\u0002\u09d9", + "\u0200\u0003\u0002\u0002\u0002\u09da\u09db\u0007W\u0002\u0002\u09db", + "\u09dc\u0007P\u0002\u0002\u09dc\u09dd\u0007T\u0002\u0002\u09dd\u09de", + "\u0007G\u0002\u0002\u09de\u09df\u0007E\u0002\u0002\u09df\u09e0\u0007", + "Q\u0002\u0002\u09e0\u09e1\u0007I\u0002\u0002\u09e1\u09e2\u0007P\u0002", + "\u0002\u09e2\u09e3\u0007K\u0002\u0002\u09e3\u09e4\u0007\\\u0002\u0002", + "\u09e4\u09e5\u0007G\u0002\u0002\u09e5\u09e6\u0007F\u0002\u0002\u09e6", + "\u0202\u0003\u0002\u0002\u0002\u09e7\u09e9\u0007$\u0002\u0002\u09e8", + "\u09ea\n\u0004\u0002\u0002\u09e9\u09e8\u0003\u0002\u0002\u0002\u09ea", + "\u09eb\u0003\u0002\u0002\u0002\u09eb\u09e9\u0003\u0002\u0002\u0002\u09eb", + "\u09ec\u0003\u0002\u0002\u0002\u09ec\u09ed\u0003\u0002\u0002\u0002\u09ed", + "\u09ee\u0007$\u0002\u0002\u09ee\u0204\u0003\u0002\u0002\u0002\u09ef", + "\u09f0\u00070\u0002\u0002\u09f0\u09f1\u0005\u023b\u011e\u0002\u09f1", + "\u0206\u0003\u0002\u0002\u0002\u09f2\u09f3\u0005\u023b\u011e\u0002\u09f3", + "\u0208\u0003\u0002\u0002\u0002\u09f4\u09f5\u0007U\u0002\u0002\u09f5", + "\u09f6\u0007V\u0002\u0002\u09f6\u09f7\u0007T\u0002\u0002\u09f7\u09f8", + "\u0007K\u0002\u0002\u09f8\u09f9\u0007P\u0002\u0002\u09f9\u09fa\u0007", + "I\u0002\u0002\u09fa\u020a\u0003\u0002\u0002\u0002\u09fb\u09fc\u0007", + "C\u0002\u0002\u09fc\u09fd\u0007T\u0002\u0002\u09fd\u09fe\u0007T\u0002", + "\u0002\u09fe\u09ff\u0007C\u0002\u0002\u09ff\u0a00\u0007[\u0002\u0002", + "\u0a00\u020c\u0003\u0002\u0002\u0002\u0a01\u0a02\u0007O\u0002\u0002", + "\u0a02\u0a03\u0007C\u0002\u0002\u0a03\u0a04\u0007R\u0002\u0002\u0a04", + "\u020e\u0003\u0002\u0002\u0002\u0a05\u0a06\u0007E\u0002\u0002\u0a06", + "\u0a07\u0007J\u0002\u0002\u0a07\u0a08\u0007C\u0002\u0002\u0a08\u0a09", + "\u0007T\u0002\u0002\u0a09\u0210\u0003\u0002\u0002\u0002\u0a0a\u0a0b", + "\u0007X\u0002\u0002\u0a0b\u0a0c\u0007C\u0002\u0002\u0a0c\u0a0d\u0007", + "T\u0002\u0002\u0a0d\u0a0e\u0007E\u0002\u0002\u0a0e\u0a0f\u0007J\u0002", + "\u0002\u0a0f\u0a10\u0007C\u0002\u0002\u0a10\u0a11\u0007T\u0002\u0002", + "\u0a11\u0212\u0003\u0002\u0002\u0002\u0a12\u0a13\u0007D\u0002\u0002", + "\u0a13\u0a14\u0007K\u0002\u0002\u0a14\u0a15\u0007P\u0002\u0002\u0a15", + "\u0a16\u0007C\u0002\u0002\u0a16\u0a17\u0007T\u0002\u0002\u0a17\u0a18", + "\u0007[\u0002\u0002\u0a18\u0214\u0003\u0002\u0002\u0002\u0a19\u0a1a", + "\u0007X\u0002\u0002\u0a1a\u0a1b\u0007C\u0002\u0002\u0a1b\u0a1c\u0007", + "T\u0002\u0002\u0a1c\u0a1d\u0007D\u0002\u0002\u0a1d\u0a1e\u0007K\u0002", + "\u0002\u0a1e\u0a1f\u0007P\u0002\u0002\u0a1f\u0a20\u0007C\u0002\u0002", + "\u0a20\u0a21\u0007T\u0002\u0002\u0a21\u0a22\u0007[\u0002\u0002\u0a22", + "\u0216\u0003\u0002\u0002\u0002\u0a23\u0a24\u0007D\u0002\u0002\u0a24", + "\u0a25\u0007[\u0002\u0002\u0a25\u0a26\u0007V\u0002\u0002\u0a26\u0a27", + "\u0007G\u0002\u0002\u0a27\u0a28\u0007U\u0002\u0002\u0a28\u0218\u0003", + "\u0002\u0002\u0002\u0a29\u0a2a\u0007F\u0002\u0002\u0a2a\u0a2b\u0007", + "G\u0002\u0002\u0a2b\u0a2c\u0007E\u0002\u0002\u0a2c\u0a2d\u0007K\u0002", + "\u0002\u0a2d\u0a2e\u0007O\u0002\u0002\u0a2e\u0a2f\u0007C\u0002\u0002", + "\u0a2f\u0a30\u0007N\u0002\u0002\u0a30\u021a\u0003\u0002\u0002\u0002", + "\u0a31\u0a32\u0007V\u0002\u0002\u0a32\u0a33\u0007K\u0002\u0002\u0a33", + "\u0a34\u0007P\u0002\u0002\u0a34\u0a35\u0007[\u0002\u0002\u0a35\u0a36", + "\u0007K\u0002\u0002\u0a36\u0a37\u0007P\u0002\u0002\u0a37\u0a38\u0007", + "V\u0002\u0002\u0a38\u021c\u0003\u0002\u0002\u0002\u0a39\u0a3a\u0007", + "U\u0002\u0002\u0a3a\u0a3b\u0007O\u0002\u0002\u0a3b\u0a3c\u0007C\u0002", + "\u0002\u0a3c\u0a3d\u0007N\u0002\u0002\u0a3d\u0a3e\u0007N\u0002\u0002", + "\u0a3e\u0a3f\u0007K\u0002\u0002\u0a3f\u0a40\u0007P\u0002\u0002\u0a40", + "\u0a41\u0007V\u0002\u0002\u0a41\u021e\u0003\u0002\u0002\u0002\u0a42", + "\u0a43\u0007K\u0002\u0002\u0a43\u0a44\u0007P\u0002\u0002\u0a44\u0a45", + "\u0007V\u0002\u0002\u0a45\u0220\u0003\u0002\u0002\u0002\u0a46\u0a47", + "\u0007D\u0002\u0002\u0a47\u0a48\u0007K\u0002\u0002\u0a48\u0a49\u0007", + "I\u0002\u0002\u0a49\u0a4a\u0007K\u0002\u0002\u0a4a\u0a4b\u0007P\u0002", + "\u0002\u0a4b\u0a4c\u0007V\u0002\u0002\u0a4c\u0222\u0003\u0002\u0002", + "\u0002\u0a4d\u0a4e\u0007H\u0002\u0002\u0a4e\u0a4f\u0007N\u0002\u0002", + "\u0a4f\u0a50\u0007Q\u0002\u0002\u0a50\u0a51\u0007C\u0002\u0002\u0a51", + "\u0a52\u0007V\u0002\u0002\u0a52\u0224\u0003\u0002\u0002\u0002\u0a53", + "\u0a54\u0007F\u0002\u0002\u0a54\u0a55\u0007Q\u0002\u0002\u0a55\u0a56", + "\u0007W\u0002\u0002\u0a56\u0a57\u0007D\u0002\u0002\u0a57\u0a58\u0007", + "N\u0002\u0002\u0a58\u0a59\u0007G\u0002\u0002\u0a59\u0226\u0003\u0002", + "\u0002\u0002\u0a5a\u0a5b\u0007F\u0002\u0002\u0a5b\u0a5c\u0007C\u0002", + "\u0002\u0a5c\u0a5d\u0007V\u0002\u0002\u0a5d\u0a5e\u0007G\u0002\u0002", + "\u0a5e\u0228\u0003\u0002\u0002\u0002\u0a5f\u0a60\u0007V\u0002\u0002", + "\u0a60\u0a61\u0007K\u0002\u0002\u0a61\u0a62\u0007O\u0002\u0002\u0a62", + "\u0a63\u0007G\u0002\u0002\u0a63\u022a\u0003\u0002\u0002\u0002\u0a64", + "\u0a65\u0007V\u0002\u0002\u0a65\u0a66\u0007K\u0002\u0002\u0a66\u0a67", + "\u0007O\u0002\u0002\u0a67\u0a68\u0007G\u0002\u0002\u0a68\u0a69\u0007", + "U\u0002\u0002\u0a69\u0a6a\u0007V\u0002\u0002\u0a6a\u0a6b\u0007C\u0002", + "\u0002\u0a6b\u0a6c\u0007O\u0002\u0002\u0a6c\u0a6d\u0007R\u0002\u0002", + "\u0a6d\u022c\u0003\u0002\u0002\u0002\u0a6e\u0a6f\u0007O\u0002\u0002", + "\u0a6f\u0a70\u0007W\u0002\u0002\u0a70\u0a71\u0007N\u0002\u0002\u0a71", + "\u0a72\u0007V\u0002\u0002\u0a72\u0a73\u0007K\u0002\u0002\u0a73\u0a74", + "\u0007U\u0002\u0002\u0a74\u0a75\u0007G\u0002\u0002\u0a75\u0a76\u0007", + "V\u0002\u0002\u0a76\u022e\u0003\u0002\u0002\u0002\u0a77\u0a78\u0007", + "D\u0002\u0002\u0a78\u0a79\u0007Q\u0002\u0002\u0a79\u0a7a\u0007Q\u0002", + "\u0002\u0a7a\u0a7b\u0007N\u0002\u0002\u0a7b\u0a7c\u0007G\u0002\u0002", + "\u0a7c\u0a7d\u0007C\u0002\u0002\u0a7d\u0a7e\u0007P\u0002\u0002\u0a7e", + "\u0230\u0003\u0002\u0002\u0002\u0a7f\u0a80\u0007T\u0002\u0002\u0a80", + "\u0a81\u0007C\u0002\u0002\u0a81\u0a82\u0007Y\u0002\u0002\u0a82\u0232", + "\u0003\u0002\u0002\u0002\u0a83\u0a84\u0007T\u0002\u0002\u0a84\u0a85", + "\u0007Q\u0002\u0002\u0a85\u0a86\u0007Y\u0002\u0002\u0a86\u0234\u0003", + "\u0002\u0002\u0002\u0a87\u0a88\u0007P\u0002\u0002\u0a88\u0a89\u0007", + "W\u0002\u0002\u0a89\u0a8a\u0007N\u0002\u0002\u0a8a\u0a8b\u0007N\u0002", + "\u0002\u0a8b\u0236\u0003\u0002\u0002\u0002\u0a8c\u0a8d\u0007?\u0002", + "\u0002\u0a8d\u0238\u0003\u0002\u0002\u0002\u0a8e\u0a8f\u0007.\u0002", + "\u0002\u0a8f\u023a\u0003\u0002\u0002\u0002\u0a90\u0a92\t\u0005\u0002", + "\u0002\u0a91\u0a90\u0003\u0002\u0002\u0002\u0a92\u0a95\u0003\u0002\u0002", + "\u0002\u0a93\u0a94\u0003\u0002\u0002\u0002\u0a93\u0a91\u0003\u0002\u0002", + "\u0002\u0a94\u0a97\u0003\u0002\u0002\u0002\u0a95\u0a93\u0003\u0002\u0002", + "\u0002\u0a96\u0a98\t\u0006\u0002\u0002\u0a97\u0a96\u0003\u0002\u0002", + "\u0002\u0a98\u0a99\u0003\u0002\u0002\u0002\u0a99\u0a9a\u0003\u0002\u0002", + "\u0002\u0a99\u0a97\u0003\u0002\u0002\u0002\u0a9a\u0a9e\u0003\u0002\u0002", + "\u0002\u0a9b\u0a9d\t\u0005\u0002\u0002\u0a9c\u0a9b\u0003\u0002\u0002", + "\u0002\u0a9d\u0aa0\u0003\u0002\u0002\u0002\u0a9e\u0a9c\u0003\u0002\u0002", + "\u0002\u0a9e\u0a9f\u0003\u0002\u0002\u0002\u0a9f\u023c\u0003\u0002\u0002", + "\u0002\u0aa0\u0a9e\u0003\u0002\u0002\u0002\u0011\u0002\u0240\u024b\u0258", + "\u0264\u0269\u026d\u0271\u0277\u027b\u027d\u09eb\u0a93\u0a99\u0a9e\u0004", + "\u0002\u0003\u0002\u0002\u0004\u0002"].join(""); + + +var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); + +var decisionsToDFA = atn.decisionToState.map( function(ds, index) { return new antlr4.dfa.DFA(ds, index); }); + +function FlinkSqlLexer(input) { + antlr4.Lexer.call(this, input); + this._interp = new antlr4.atn.LexerATNSimulator(this, atn, decisionsToDFA, new antlr4.PredictionContextCache()); + return this; +} + +FlinkSqlLexer.prototype = Object.create(antlr4.Lexer.prototype); +FlinkSqlLexer.prototype.constructor = FlinkSqlLexer; + +Object.defineProperty(FlinkSqlLexer.prototype, "atn", { + get : function() { + return atn; + } +}); + +FlinkSqlLexer.EOF = antlr4.Token.EOF; +FlinkSqlLexer.SPACE = 1; +FlinkSqlLexer.SPEC_MYSQL_COMMENT = 2; +FlinkSqlLexer.COMMENT_INPUT = 3; +FlinkSqlLexer.LINE_COMMENT = 4; +FlinkSqlLexer.SELECT = 5; +FlinkSqlLexer.FROM = 6; +FlinkSqlLexer.ADD = 7; +FlinkSqlLexer.AS = 8; +FlinkSqlLexer.ALL = 9; +FlinkSqlLexer.ANY = 10; +FlinkSqlLexer.DISTINCT = 11; +FlinkSqlLexer.WHERE = 12; +FlinkSqlLexer.GROUP = 13; +FlinkSqlLexer.BY = 14; +FlinkSqlLexer.GROUPING = 15; +FlinkSqlLexer.SETS = 16; +FlinkSqlLexer.CUBE = 17; +FlinkSqlLexer.ROLLUP = 18; +FlinkSqlLexer.ORDER = 19; +FlinkSqlLexer.HAVING = 20; +FlinkSqlLexer.LIMIT = 21; +FlinkSqlLexer.AT = 22; +FlinkSqlLexer.OR = 23; +FlinkSqlLexer.AND = 24; +FlinkSqlLexer.IN = 25; +FlinkSqlLexer.NOT = 26; +FlinkSqlLexer.NO = 27; +FlinkSqlLexer.EXISTS = 28; +FlinkSqlLexer.BETWEEN = 29; +FlinkSqlLexer.LIKE = 30; +FlinkSqlLexer.RLIKE = 31; +FlinkSqlLexer.IS = 32; +FlinkSqlLexer.TRUE = 33; +FlinkSqlLexer.FALSE = 34; +FlinkSqlLexer.NULLS = 35; +FlinkSqlLexer.ASC = 36; +FlinkSqlLexer.DESC = 37; +FlinkSqlLexer.FOR = 38; +FlinkSqlLexer.INTERVAL = 39; +FlinkSqlLexer.CASE = 40; +FlinkSqlLexer.WHEN = 41; +FlinkSqlLexer.THEN = 42; +FlinkSqlLexer.ELSE = 43; +FlinkSqlLexer.END = 44; +FlinkSqlLexer.JOIN = 45; +FlinkSqlLexer.CROSS = 46; +FlinkSqlLexer.OUTER = 47; +FlinkSqlLexer.INNER = 48; +FlinkSqlLexer.LEFT = 49; +FlinkSqlLexer.SEMI = 50; +FlinkSqlLexer.RIGHT = 51; +FlinkSqlLexer.FULL = 52; +FlinkSqlLexer.NATURAL = 53; +FlinkSqlLexer.ON = 54; +FlinkSqlLexer.PIVOT = 55; +FlinkSqlLexer.LATERAL = 56; +FlinkSqlLexer.WINDOW = 57; +FlinkSqlLexer.OVER = 58; +FlinkSqlLexer.PARTITION = 59; +FlinkSqlLexer.RANGE = 60; +FlinkSqlLexer.ROWS = 61; +FlinkSqlLexer.UNBOUNDED = 62; +FlinkSqlLexer.PRECEDING = 63; +FlinkSqlLexer.FOLLOWING = 64; +FlinkSqlLexer.CURRENT = 65; +FlinkSqlLexer.FIRST = 66; +FlinkSqlLexer.AFTER = 67; +FlinkSqlLexer.LAST = 68; +FlinkSqlLexer.WITH = 69; +FlinkSqlLexer.VALUES = 70; +FlinkSqlLexer.CREATE = 71; +FlinkSqlLexer.TABLE = 72; +FlinkSqlLexer.DIRECTORY = 73; +FlinkSqlLexer.VIEW = 74; +FlinkSqlLexer.REPLACE = 75; +FlinkSqlLexer.INSERT = 76; +FlinkSqlLexer.DELETE = 77; +FlinkSqlLexer.INTO = 78; +FlinkSqlLexer.DESCRIBE = 79; +FlinkSqlLexer.EXPLAIN = 80; +FlinkSqlLexer.FORMAT = 81; +FlinkSqlLexer.LOGICAL = 82; +FlinkSqlLexer.CODEGEN = 83; +FlinkSqlLexer.COST = 84; +FlinkSqlLexer.CAST = 85; +FlinkSqlLexer.SHOW = 86; +FlinkSqlLexer.TABLES = 87; +FlinkSqlLexer.COLUMNS = 88; +FlinkSqlLexer.COLUMN = 89; +FlinkSqlLexer.USE = 90; +FlinkSqlLexer.PARTITIONS = 91; +FlinkSqlLexer.FUNCTIONS = 92; +FlinkSqlLexer.DROP = 93; +FlinkSqlLexer.UNION = 94; +FlinkSqlLexer.EXCEPT = 95; +FlinkSqlLexer.SETMINUS = 96; +FlinkSqlLexer.INTERSECT = 97; +FlinkSqlLexer.TO = 98; +FlinkSqlLexer.TABLESAMPLE = 99; +FlinkSqlLexer.STRATIFY = 100; +FlinkSqlLexer.ALTER = 101; +FlinkSqlLexer.RENAME = 102; +FlinkSqlLexer.STRUCT = 103; +FlinkSqlLexer.COMMENT = 104; +FlinkSqlLexer.SET = 105; +FlinkSqlLexer.RESET = 106; +FlinkSqlLexer.DATA = 107; +FlinkSqlLexer.START = 108; +FlinkSqlLexer.TRANSACTION = 109; +FlinkSqlLexer.COMMIT = 110; +FlinkSqlLexer.ROLLBACK = 111; +FlinkSqlLexer.MACRO = 112; +FlinkSqlLexer.IGNORE = 113; +FlinkSqlLexer.BOTH = 114; +FlinkSqlLexer.LEADING = 115; +FlinkSqlLexer.TRAILING = 116; +FlinkSqlLexer.IF = 117; +FlinkSqlLexer.POSITION = 118; +FlinkSqlLexer.EXTRACT = 119; +FlinkSqlLexer.EQ = 120; +FlinkSqlLexer.NSEQ = 121; +FlinkSqlLexer.NEQ = 122; +FlinkSqlLexer.NEQJ = 123; +FlinkSqlLexer.LT = 124; +FlinkSqlLexer.LTE = 125; +FlinkSqlLexer.GT = 126; +FlinkSqlLexer.GTE = 127; +FlinkSqlLexer.PLUS = 128; +FlinkSqlLexer.MINUS = 129; +FlinkSqlLexer.ASTERISK = 130; +FlinkSqlLexer.SLASH = 131; +FlinkSqlLexer.PERCENT = 132; +FlinkSqlLexer.DIV = 133; +FlinkSqlLexer.TILDE = 134; +FlinkSqlLexer.AMPERSAND = 135; +FlinkSqlLexer.PIPE = 136; +FlinkSqlLexer.CONCAT_PIPE = 137; +FlinkSqlLexer.HAT = 138; +FlinkSqlLexer.PERCENTLIT = 139; +FlinkSqlLexer.BUCKET = 140; +FlinkSqlLexer.OUT = 141; +FlinkSqlLexer.OF = 142; +FlinkSqlLexer.SORT = 143; +FlinkSqlLexer.CLUSTER = 144; +FlinkSqlLexer.DISTRIBUTE = 145; +FlinkSqlLexer.OVERWRITE = 146; +FlinkSqlLexer.TRANSFORM = 147; +FlinkSqlLexer.REDUCE = 148; +FlinkSqlLexer.USING = 149; +FlinkSqlLexer.SERDE = 150; +FlinkSqlLexer.SERDEPROPERTIES = 151; +FlinkSqlLexer.RECORDREADER = 152; +FlinkSqlLexer.RECORDWRITER = 153; +FlinkSqlLexer.DELIMITED = 154; +FlinkSqlLexer.FIELDS = 155; +FlinkSqlLexer.TERMINATED = 156; +FlinkSqlLexer.COLLECTION = 157; +FlinkSqlLexer.ITEMS = 158; +FlinkSqlLexer.KEYS = 159; +FlinkSqlLexer.ESCAPED = 160; +FlinkSqlLexer.LINES = 161; +FlinkSqlLexer.SEPARATED = 162; +FlinkSqlLexer.FUNCTION = 163; +FlinkSqlLexer.EXTENDED = 164; +FlinkSqlLexer.REFRESH = 165; +FlinkSqlLexer.CLEAR = 166; +FlinkSqlLexer.CACHE = 167; +FlinkSqlLexer.UNCACHE = 168; +FlinkSqlLexer.LAZY = 169; +FlinkSqlLexer.FORMATTED = 170; +FlinkSqlLexer.GLOBAL = 171; +FlinkSqlLexer.TEMPORARY = 172; +FlinkSqlLexer.OPTIONS = 173; +FlinkSqlLexer.UNSET = 174; +FlinkSqlLexer.TBLPROPERTIES = 175; +FlinkSqlLexer.DBPROPERTIES = 176; +FlinkSqlLexer.BUCKETS = 177; +FlinkSqlLexer.SKEWED = 178; +FlinkSqlLexer.STORED = 179; +FlinkSqlLexer.DIRECTORIES = 180; +FlinkSqlLexer.LOCATION = 181; +FlinkSqlLexer.EXCHANGE = 182; +FlinkSqlLexer.ARCHIVE = 183; +FlinkSqlLexer.UNARCHIVE = 184; +FlinkSqlLexer.FILEFORMAT = 185; +FlinkSqlLexer.TOUCH = 186; +FlinkSqlLexer.COMPACT = 187; +FlinkSqlLexer.CONCATENATE = 188; +FlinkSqlLexer.CHANGE = 189; +FlinkSqlLexer.CASCADE = 190; +FlinkSqlLexer.RESTRICT = 191; +FlinkSqlLexer.CLUSTERED = 192; +FlinkSqlLexer.SORTED = 193; +FlinkSqlLexer.PURGE = 194; +FlinkSqlLexer.INPUTFORMAT = 195; +FlinkSqlLexer.OUTPUTFORMAT = 196; +FlinkSqlLexer.DATABASE = 197; +FlinkSqlLexer.DATABASES = 198; +FlinkSqlLexer.DFS = 199; +FlinkSqlLexer.TRUNCATE = 200; +FlinkSqlLexer.ANALYZE = 201; +FlinkSqlLexer.COMPUTE = 202; +FlinkSqlLexer.LIST = 203; +FlinkSqlLexer.STATISTICS = 204; +FlinkSqlLexer.PARTITIONED = 205; +FlinkSqlLexer.EXTERNAL = 206; +FlinkSqlLexer.DEFINED = 207; +FlinkSqlLexer.REVOKE = 208; +FlinkSqlLexer.GRANT = 209; +FlinkSqlLexer.LOCK = 210; +FlinkSqlLexer.UNLOCK = 211; +FlinkSqlLexer.MSCK = 212; +FlinkSqlLexer.REPAIR = 213; +FlinkSqlLexer.RECOVER = 214; +FlinkSqlLexer.EXPORT = 215; +FlinkSqlLexer.IMPORT = 216; +FlinkSqlLexer.LOAD = 217; +FlinkSqlLexer.ROLE = 218; +FlinkSqlLexer.ROLES = 219; +FlinkSqlLexer.COMPACTIONS = 220; +FlinkSqlLexer.PRINCIPALS = 221; +FlinkSqlLexer.TRANSACTIONS = 222; +FlinkSqlLexer.INDEX = 223; +FlinkSqlLexer.INDEXES = 224; +FlinkSqlLexer.LOCKS = 225; +FlinkSqlLexer.OPTION = 226; +FlinkSqlLexer.ANTI = 227; +FlinkSqlLexer.LOCAL = 228; +FlinkSqlLexer.INPATH = 229; +FlinkSqlLexer.WATERMARK = 230; +FlinkSqlLexer.UNNEST = 231; +FlinkSqlLexer.MATCH_RECOGNIZE = 232; +FlinkSqlLexer.MEASURES = 233; +FlinkSqlLexer.ONE = 234; +FlinkSqlLexer.PER = 235; +FlinkSqlLexer.MATCH = 236; +FlinkSqlLexer.SKIP1 = 237; +FlinkSqlLexer.NEXT = 238; +FlinkSqlLexer.PAST = 239; +FlinkSqlLexer.PATTERN = 240; +FlinkSqlLexer.WITHIN = 241; +FlinkSqlLexer.DEFINE = 242; +FlinkSqlLexer.BIGINT_LITERAL = 243; +FlinkSqlLexer.SMALLINT_LITERAL = 244; +FlinkSqlLexer.TINYINT_LITERAL = 245; +FlinkSqlLexer.INTEGER_VALUE = 246; +FlinkSqlLexer.DECIMAL_VALUE = 247; +FlinkSqlLexer.DOUBLE_LITERAL = 248; +FlinkSqlLexer.BIGDECIMAL_LITERAL = 249; +FlinkSqlLexer.IDENTIFIER = 250; +FlinkSqlLexer.BACKQUOTED_IDENTIFIER = 251; +FlinkSqlLexer.SIMPLE_COMMENT = 252; +FlinkSqlLexer.BRACKETED_EMPTY_COMMENT = 253; +FlinkSqlLexer.BRACKETED_COMMENT = 254; +FlinkSqlLexer.WS = 255; +FlinkSqlLexer.UNRECOGNIZED = 256; +FlinkSqlLexer.REVERSE_QUOTE_ID = 257; +FlinkSqlLexer.DOT_ID = 258; +FlinkSqlLexer.ID = 259; +FlinkSqlLexer.STRING = 260; +FlinkSqlLexer.ARRAY = 261; +FlinkSqlLexer.MAP = 262; +FlinkSqlLexer.CHAR = 263; +FlinkSqlLexer.VARCHAR = 264; +FlinkSqlLexer.BINARY = 265; +FlinkSqlLexer.VARBINARY = 266; +FlinkSqlLexer.BYTES = 267; +FlinkSqlLexer.DECIMAL = 268; +FlinkSqlLexer.TINYINT = 269; +FlinkSqlLexer.SMALLINT = 270; +FlinkSqlLexer.INT = 271; +FlinkSqlLexer.BIGINT = 272; +FlinkSqlLexer.FLOAT = 273; +FlinkSqlLexer.DOUBLE = 274; +FlinkSqlLexer.DATE = 275; +FlinkSqlLexer.TIME = 276; +FlinkSqlLexer.TIMESTAMP = 277; +FlinkSqlLexer.MULTISET = 278; +FlinkSqlLexer.BOOLEAN = 279; +FlinkSqlLexer.RAW = 280; +FlinkSqlLexer.ROW = 281; +FlinkSqlLexer.NULL = 282; +FlinkSqlLexer.EQUAL = 283; +FlinkSqlLexer.COMMA = 284; + +FlinkSqlLexer.MYSQLCOMMENT = 2; + +FlinkSqlLexer.prototype.channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN", + "MYSQLCOMMENT" ]; + +FlinkSqlLexer.prototype.modeNames = [ "DEFAULT_MODE" ]; + +FlinkSqlLexer.prototype.literalNames = [ null, 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, + "'STRING'", "'ARRAY'", "'MAP'", + "'CHAR'", "'VARCHAR'", "'BINARY'", + "'VARBINARY'", "'BYTES'", "'DECIMAL'", + "'TINYINT'", "'SMALLINT'", "'INT'", + "'BIGINT'", "'FLOAT'", "'DOUBLE'", + "'DATE'", "'TIME'", "'TIMESTAMP'", + "'MULTISET'", "'BOOLEAN'", "'RAW'", + "'ROW'", "'NULL'", "'='", "','" ]; + +FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", + "COMMENT_INPUT", "LINE_COMMENT", + "SELECT", "FROM", "ADD", "AS", + "ALL", "ANY", "DISTINCT", "WHERE", + "GROUP", "BY", "GROUPING", "SETS", + "CUBE", "ROLLUP", "ORDER", "HAVING", + "LIMIT", "AT", "OR", "AND", "IN", + "NOT", "NO", "EXISTS", "BETWEEN", + "LIKE", "RLIKE", "IS", "TRUE", + "FALSE", "NULLS", "ASC", "DESC", + "FOR", "INTERVAL", "CASE", "WHEN", + "THEN", "ELSE", "END", "JOIN", + "CROSS", "OUTER", "INNER", "LEFT", + "SEMI", "RIGHT", "FULL", "NATURAL", + "ON", "PIVOT", "LATERAL", "WINDOW", + "OVER", "PARTITION", "RANGE", + "ROWS", "UNBOUNDED", "PRECEDING", + "FOLLOWING", "CURRENT", "FIRST", + "AFTER", "LAST", "WITH", "VALUES", + "CREATE", "TABLE", "DIRECTORY", + "VIEW", "REPLACE", "INSERT", "DELETE", + "INTO", "DESCRIBE", "EXPLAIN", + "FORMAT", "LOGICAL", "CODEGEN", + "COST", "CAST", "SHOW", "TABLES", + "COLUMNS", "COLUMN", "USE", "PARTITIONS", + "FUNCTIONS", "DROP", "UNION", + "EXCEPT", "SETMINUS", "INTERSECT", + "TO", "TABLESAMPLE", "STRATIFY", + "ALTER", "RENAME", "STRUCT", "COMMENT", + "SET", "RESET", "DATA", "START", + "TRANSACTION", "COMMIT", "ROLLBACK", + "MACRO", "IGNORE", "BOTH", "LEADING", + "TRAILING", "IF", "POSITION", + "EXTRACT", "EQ", "NSEQ", "NEQ", + "NEQJ", "LT", "LTE", "GT", "GTE", + "PLUS", "MINUS", "ASTERISK", "SLASH", + "PERCENT", "DIV", "TILDE", "AMPERSAND", + "PIPE", "CONCAT_PIPE", "HAT", + "PERCENTLIT", "BUCKET", "OUT", + "OF", "SORT", "CLUSTER", "DISTRIBUTE", + "OVERWRITE", "TRANSFORM", "REDUCE", + "USING", "SERDE", "SERDEPROPERTIES", + "RECORDREADER", "RECORDWRITER", + "DELIMITED", "FIELDS", "TERMINATED", + "COLLECTION", "ITEMS", "KEYS", + "ESCAPED", "LINES", "SEPARATED", + "FUNCTION", "EXTENDED", "REFRESH", + "CLEAR", "CACHE", "UNCACHE", "LAZY", + "FORMATTED", "GLOBAL", "TEMPORARY", + "OPTIONS", "UNSET", "TBLPROPERTIES", + "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", + "DOT_ID", "ID", "STRING", "ARRAY", + "MAP", "CHAR", "VARCHAR", "BINARY", + "VARBINARY", "BYTES", "DECIMAL", + "TINYINT", "SMALLINT", "INT", + "BIGINT", "FLOAT", "DOUBLE", "DATE", + "TIME", "TIMESTAMP", "MULTISET", + "BOOLEAN", "RAW", "ROW", "NULL", + "EQUAL", "COMMA" ]; + +FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", + "LINE_COMMENT", "SELECT", "FROM", + "ADD", "AS", "ALL", "ANY", "DISTINCT", + "WHERE", "GROUP", "BY", "GROUPING", + "SETS", "CUBE", "ROLLUP", "ORDER", + "HAVING", "LIMIT", "AT", "OR", "AND", + "IN", "NOT", "NO", "EXISTS", "BETWEEN", + "LIKE", "RLIKE", "IS", "TRUE", "FALSE", + "NULLS", "ASC", "DESC", "FOR", "INTERVAL", + "CASE", "WHEN", "THEN", "ELSE", "END", + "JOIN", "CROSS", "OUTER", "INNER", + "LEFT", "SEMI", "RIGHT", "FULL", "NATURAL", + "ON", "PIVOT", "LATERAL", "WINDOW", + "OVER", "PARTITION", "RANGE", "ROWS", + "UNBOUNDED", "PRECEDING", "FOLLOWING", + "CURRENT", "FIRST", "AFTER", "LAST", + "WITH", "VALUES", "CREATE", "TABLE", + "DIRECTORY", "VIEW", "REPLACE", "INSERT", + "DELETE", "INTO", "DESCRIBE", "EXPLAIN", + "FORMAT", "LOGICAL", "CODEGEN", "COST", + "CAST", "SHOW", "TABLES", "COLUMNS", + "COLUMN", "USE", "PARTITIONS", "FUNCTIONS", + "DROP", "UNION", "EXCEPT", "SETMINUS", + "INTERSECT", "TO", "TABLESAMPLE", + "STRATIFY", "ALTER", "RENAME", "STRUCT", + "COMMENT", "SET", "RESET", "DATA", + "START", "TRANSACTION", "COMMIT", + "ROLLBACK", "MACRO", "IGNORE", "BOTH", + "LEADING", "TRAILING", "IF", "POSITION", + "EXTRACT", "EQ", "NSEQ", "NEQ", "NEQJ", + "LT", "LTE", "GT", "GTE", "PLUS", + "MINUS", "ASTERISK", "SLASH", "PERCENT", + "DIV", "TILDE", "AMPERSAND", "PIPE", + "CONCAT_PIPE", "HAT", "PERCENTLIT", + "BUCKET", "OUT", "OF", "SORT", "CLUSTER", + "DISTRIBUTE", "OVERWRITE", "TRANSFORM", + "REDUCE", "USING", "SERDE", "SERDEPROPERTIES", + "RECORDREADER", "RECORDWRITER", "DELIMITED", + "FIELDS", "TERMINATED", "COLLECTION", + "ITEMS", "KEYS", "ESCAPED", "LINES", + "SEPARATED", "FUNCTION", "EXTENDED", + "REFRESH", "CLEAR", "CACHE", "UNCACHE", + "LAZY", "FORMATTED", "GLOBAL", "TEMPORARY", + "OPTIONS", "UNSET", "TBLPROPERTIES", + "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", + "DOT_ID", "ID", "STRING", "ARRAY", + "MAP", "CHAR", "VARCHAR", "BINARY", + "VARBINARY", "BYTES", "DECIMAL", "TINYINT", + "SMALLINT", "INT", "BIGINT", "FLOAT", + "DOUBLE", "DATE", "TIME", "TIMESTAMP", + "MULTISET", "BOOLEAN", "RAW", "ROW", + "NULL", "EQUAL", "COMMA", "ID_LITERAL" ]; + +FlinkSqlLexer.prototype.grammarFileName = "FlinkSqlLexer.g4"; + + +exports.FlinkSqlLexer = FlinkSqlLexer; + diff --git a/src/lib/flinksql/FlinkSqlLexer.tokens b/src/lib/flinksql/FlinkSqlLexer.tokens new file mode 100644 index 00000000..7d7d73cc --- /dev/null +++ b/src/lib/flinksql/FlinkSqlLexer.tokens @@ -0,0 +1,561 @@ +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 +DOT_ID=258 +ID=259 +STRING=260 +ARRAY=261 +MAP=262 +CHAR=263 +VARCHAR=264 +BINARY=265 +VARBINARY=266 +BYTES=267 +DECIMAL=268 +TINYINT=269 +SMALLINT=270 +INT=271 +BIGINT=272 +FLOAT=273 +DOUBLE=274 +DATE=275 +TIME=276 +TIMESTAMP=277 +MULTISET=278 +BOOLEAN=279 +RAW=280 +ROW=281 +NULL=282 +EQUAL=283 +COMMA=284 +'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 +'STRING'=260 +'ARRAY'=261 +'MAP'=262 +'CHAR'=263 +'VARCHAR'=264 +'BINARY'=265 +'VARBINARY'=266 +'BYTES'=267 +'DECIMAL'=268 +'TINYINT'=269 +'SMALLINT'=270 +'INT'=271 +'BIGINT'=272 +'FLOAT'=273 +'DOUBLE'=274 +'DATE'=275 +'TIME'=276 +'TIMESTAMP'=277 +'MULTISET'=278 +'BOOLEAN'=279 +'RAW'=280 +'ROW'=281 +'NULL'=282 +'='=283 +','=284 diff --git a/src/lib/flinksql/FlinkSqlParser.interp b/src/lib/flinksql/FlinkSqlParser.interp new file mode 100644 index 00000000..b8f427f9 --- /dev/null +++ b/src/lib/flinksql/FlinkSqlParser.interp @@ -0,0 +1,605 @@ +token literal names: +null +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 +'STRING' +'ARRAY' +'MAP' +'CHAR' +'VARCHAR' +'BINARY' +'VARBINARY' +'BYTES' +'DECIMAL' +'TINYINT' +'SMALLINT' +'INT' +'BIGINT' +'FLOAT' +'DOUBLE' +'DATE' +'TIME' +'TIMESTAMP' +'MULTISET' +'BOOLEAN' +'RAW' +'ROW' +'NULL' +'=' +',' + +token symbolic names: +null +SPACE +SPEC_MYSQL_COMMENT +COMMENT_INPUT +LINE_COMMENT +SELECT +FROM +ADD +AS +ALL +ANY +DISTINCT +WHERE +GROUP +BY +GROUPING +SETS +CUBE +ROLLUP +ORDER +HAVING +LIMIT +AT +OR +AND +IN +NOT +NO +EXISTS +BETWEEN +LIKE +RLIKE +IS +TRUE +FALSE +NULLS +ASC +DESC +FOR +INTERVAL +CASE +WHEN +THEN +ELSE +END +JOIN +CROSS +OUTER +INNER +LEFT +SEMI +RIGHT +FULL +NATURAL +ON +PIVOT +LATERAL +WINDOW +OVER +PARTITION +RANGE +ROWS +UNBOUNDED +PRECEDING +FOLLOWING +CURRENT +FIRST +AFTER +LAST +WITH +VALUES +CREATE +TABLE +DIRECTORY +VIEW +REPLACE +INSERT +DELETE +INTO +DESCRIBE +EXPLAIN +FORMAT +LOGICAL +CODEGEN +COST +CAST +SHOW +TABLES +COLUMNS +COLUMN +USE +PARTITIONS +FUNCTIONS +DROP +UNION +EXCEPT +SETMINUS +INTERSECT +TO +TABLESAMPLE +STRATIFY +ALTER +RENAME +STRUCT +COMMENT +SET +RESET +DATA +START +TRANSACTION +COMMIT +ROLLBACK +MACRO +IGNORE +BOTH +LEADING +TRAILING +IF +POSITION +EXTRACT +EQ +NSEQ +NEQ +NEQJ +LT +LTE +GT +GTE +PLUS +MINUS +ASTERISK +SLASH +PERCENT +DIV +TILDE +AMPERSAND +PIPE +CONCAT_PIPE +HAT +PERCENTLIT +BUCKET +OUT +OF +SORT +CLUSTER +DISTRIBUTE +OVERWRITE +TRANSFORM +REDUCE +USING +SERDE +SERDEPROPERTIES +RECORDREADER +RECORDWRITER +DELIMITED +FIELDS +TERMINATED +COLLECTION +ITEMS +KEYS +ESCAPED +LINES +SEPARATED +FUNCTION +EXTENDED +REFRESH +CLEAR +CACHE +UNCACHE +LAZY +FORMATTED +GLOBAL +TEMPORARY +OPTIONS +UNSET +TBLPROPERTIES +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 +DOT_ID +ID +STRING +ARRAY +MAP +CHAR +VARCHAR +BINARY +VARBINARY +BYTES +DECIMAL +TINYINT +SMALLINT +INT +BIGINT +FLOAT +DOUBLE +DATE +TIME +TIMESTAMP +MULTISET +BOOLEAN +RAW +ROW +NULL +EQUAL +COMMA + +rule names: +program +statement +sqlStatement +ddlStatement +dmlStatement +createTable +tableName +columnOptionDefinition +columnName +columnType +partitionDefinition +partitionColumnDefinition +partitionColumnName +withOptionDefinition +createDatabase +createView +createFunction +alterTable +alterDatabase +alterFunction +dropTable +dropDatabase +dropView +dropFunction +selectStatement +insertStatement + + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 286, 161, 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, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 5, 4, 63, 10, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 76, 10, 5, 3, 6, 3, 6, 5, 6, 80, 10, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 7, 7, 88, 10, 7, 12, 7, 14, 7, 91, 11, 7, 3, 7, 5, 7, 94, 10, 7, 3, 7, 3, 7, 3, 7, 3, 7, 7, 7, 100, 10, 7, 12, 7, 14, 7, 103, 11, 7, 3, 8, 3, 8, 7, 8, 107, 10, 8, 12, 8, 14, 8, 110, 11, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 7, 13, 126, 10, 13, 12, 13, 14, 13, 129, 11, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 108, 2, 28, 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, 2, 3, 3, 2, 262, 284, 2, 151, 2, 54, 3, 2, 2, 2, 4, 57, 3, 2, 2, 2, 6, 62, 3, 2, 2, 2, 8, 75, 3, 2, 2, 2, 10, 79, 3, 2, 2, 2, 12, 81, 3, 2, 2, 2, 14, 104, 3, 2, 2, 2, 16, 111, 3, 2, 2, 2, 18, 114, 3, 2, 2, 2, 20, 116, 3, 2, 2, 2, 22, 118, 3, 2, 2, 2, 24, 122, 3, 2, 2, 2, 26, 130, 3, 2, 2, 2, 28, 132, 3, 2, 2, 2, 30, 136, 3, 2, 2, 2, 32, 138, 3, 2, 2, 2, 34, 140, 3, 2, 2, 2, 36, 142, 3, 2, 2, 2, 38, 144, 3, 2, 2, 2, 40, 146, 3, 2, 2, 2, 42, 148, 3, 2, 2, 2, 44, 150, 3, 2, 2, 2, 46, 152, 3, 2, 2, 2, 48, 154, 3, 2, 2, 2, 50, 156, 3, 2, 2, 2, 52, 158, 3, 2, 2, 2, 54, 55, 5, 4, 3, 2, 55, 56, 7, 2, 2, 3, 56, 3, 3, 2, 2, 2, 57, 58, 5, 6, 4, 2, 58, 59, 7, 2, 2, 3, 59, 5, 3, 2, 2, 2, 60, 63, 5, 8, 5, 2, 61, 63, 5, 10, 6, 2, 62, 60, 3, 2, 2, 2, 62, 61, 3, 2, 2, 2, 63, 7, 3, 2, 2, 2, 64, 76, 5, 12, 7, 2, 65, 76, 5, 30, 16, 2, 66, 76, 5, 32, 17, 2, 67, 76, 5, 34, 18, 2, 68, 76, 5, 36, 19, 2, 69, 76, 5, 38, 20, 2, 70, 76, 5, 40, 21, 2, 71, 76, 5, 42, 22, 2, 72, 76, 5, 44, 23, 2, 73, 76, 5, 46, 24, 2, 74, 76, 5, 48, 25, 2, 75, 64, 3, 2, 2, 2, 75, 65, 3, 2, 2, 2, 75, 66, 3, 2, 2, 2, 75, 67, 3, 2, 2, 2, 75, 68, 3, 2, 2, 2, 75, 69, 3, 2, 2, 2, 75, 70, 3, 2, 2, 2, 75, 71, 3, 2, 2, 2, 75, 72, 3, 2, 2, 2, 75, 73, 3, 2, 2, 2, 75, 74, 3, 2, 2, 2, 76, 9, 3, 2, 2, 2, 77, 80, 5, 50, 26, 2, 78, 80, 5, 52, 27, 2, 79, 77, 3, 2, 2, 2, 79, 78, 3, 2, 2, 2, 80, 11, 3, 2, 2, 2, 81, 82, 7, 73, 2, 2, 82, 83, 7, 74, 2, 2, 83, 84, 5, 14, 8, 2, 84, 89, 5, 16, 9, 2, 85, 86, 7, 286, 2, 2, 86, 88, 5, 16, 9, 2, 87, 85, 3, 2, 2, 2, 88, 91, 3, 2, 2, 2, 89, 87, 3, 2, 2, 2, 89, 90, 3, 2, 2, 2, 90, 93, 3, 2, 2, 2, 91, 89, 3, 2, 2, 2, 92, 94, 5, 22, 12, 2, 93, 92, 3, 2, 2, 2, 93, 94, 3, 2, 2, 2, 94, 95, 3, 2, 2, 2, 95, 96, 7, 71, 2, 2, 96, 101, 5, 28, 15, 2, 97, 98, 7, 286, 2, 2, 98, 100, 5, 28, 15, 2, 99, 97, 3, 2, 2, 2, 100, 103, 3, 2, 2, 2, 101, 99, 3, 2, 2, 2, 101, 102, 3, 2, 2, 2, 102, 13, 3, 2, 2, 2, 103, 101, 3, 2, 2, 2, 104, 108, 7, 261, 2, 2, 105, 107, 7, 260, 2, 2, 106, 105, 3, 2, 2, 2, 107, 110, 3, 2, 2, 2, 108, 109, 3, 2, 2, 2, 108, 106, 3, 2, 2, 2, 109, 15, 3, 2, 2, 2, 110, 108, 3, 2, 2, 2, 111, 112, 5, 18, 10, 2, 112, 113, 5, 20, 11, 2, 113, 17, 3, 2, 2, 2, 114, 115, 7, 261, 2, 2, 115, 19, 3, 2, 2, 2, 116, 117, 9, 2, 2, 2, 117, 21, 3, 2, 2, 2, 118, 119, 7, 207, 2, 2, 119, 120, 7, 16, 2, 2, 120, 121, 5, 24, 13, 2, 121, 23, 3, 2, 2, 2, 122, 127, 5, 26, 14, 2, 123, 124, 7, 286, 2, 2, 124, 126, 5, 26, 14, 2, 125, 123, 3, 2, 2, 2, 126, 129, 3, 2, 2, 2, 127, 125, 3, 2, 2, 2, 127, 128, 3, 2, 2, 2, 128, 25, 3, 2, 2, 2, 129, 127, 3, 2, 2, 2, 130, 131, 7, 261, 2, 2, 131, 27, 3, 2, 2, 2, 132, 133, 7, 259, 2, 2, 133, 134, 7, 285, 2, 2, 134, 135, 7, 259, 2, 2, 135, 29, 3, 2, 2, 2, 136, 137, 3, 2, 2, 2, 137, 31, 3, 2, 2, 2, 138, 139, 3, 2, 2, 2, 139, 33, 3, 2, 2, 2, 140, 141, 3, 2, 2, 2, 141, 35, 3, 2, 2, 2, 142, 143, 3, 2, 2, 2, 143, 37, 3, 2, 2, 2, 144, 145, 3, 2, 2, 2, 145, 39, 3, 2, 2, 2, 146, 147, 3, 2, 2, 2, 147, 41, 3, 2, 2, 2, 148, 149, 3, 2, 2, 2, 149, 43, 3, 2, 2, 2, 150, 151, 3, 2, 2, 2, 151, 45, 3, 2, 2, 2, 152, 153, 3, 2, 2, 2, 153, 47, 3, 2, 2, 2, 154, 155, 3, 2, 2, 2, 155, 49, 3, 2, 2, 2, 156, 157, 3, 2, 2, 2, 157, 51, 3, 2, 2, 2, 158, 159, 3, 2, 2, 2, 159, 53, 3, 2, 2, 2, 10, 62, 75, 79, 89, 93, 101, 108, 127] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParser.js b/src/lib/flinksql/FlinkSqlParser.js new file mode 100644 index 00000000..af6d7044 --- /dev/null +++ b/src/lib/flinksql/FlinkSqlParser.js @@ -0,0 +1,2723 @@ +// Generated from /Users/erindeng/Desktop/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.8 +// jshint ignore: start +var antlr4 = require('antlr4/index'); +var FlinkSqlParserListener = require('./FlinkSqlParserListener').FlinkSqlParserListener; +var FlinkSqlParserVisitor = require('./FlinkSqlParserVisitor').FlinkSqlParserVisitor; + +var grammarFileName = "FlinkSqlParser.g4"; + + +var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", + "\u0003\u011e\u00a1\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\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\u0003\u0002\u0003\u0002\u0003\u0002\u0003\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0004\u0003\u0004\u0005\u0004?\n\u0004\u0003\u0005", + "\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005", + "\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0005\u0005L\n\u0005", + "\u0003\u0006\u0003\u0006\u0005\u0006P\n\u0006\u0003\u0007\u0003\u0007", + "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0007\u0007X\n\u0007", + "\f\u0007\u000e\u0007[\u000b\u0007\u0003\u0007\u0005\u0007^\n\u0007\u0003", + "\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0007\u0007d\n\u0007\f\u0007", + "\u000e\u0007g\u000b\u0007\u0003\b\u0003\b\u0007\bk\n\b\f\b\u000e\bn", + "\u000b\b\u0003\t\u0003\t\u0003\t\u0003\n\u0003\n\u0003\u000b\u0003\u000b", + "\u0003\f\u0003\f\u0003\f\u0003\f\u0003\r\u0003\r\u0003\r\u0007\r~\n", + "\r\f\r\u000e\r\u0081\u000b\r\u0003\u000e\u0003\u000e\u0003\u000f\u0003", + "\u000f\u0003\u000f\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0011\u0003", + "\u0011\u0003\u0012\u0003\u0012\u0003\u0013\u0003\u0013\u0003\u0014\u0003", + "\u0014\u0003\u0015\u0003\u0015\u0003\u0016\u0003\u0016\u0003\u0017\u0003", + "\u0017\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u001a\u0003", + "\u001a\u0003\u001b\u0003\u001b\u0003\u001b\u0003l\u0002\u001c\u0002", + "\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e", + " \"$&(*,.024\u0002\u0003\u0003\u0002\u0106\u011c\u0002\u0097\u00026", + "\u0003\u0002\u0002\u0002\u00049\u0003\u0002\u0002\u0002\u0006>\u0003", + "\u0002\u0002\u0002\bK\u0003\u0002\u0002\u0002\nO\u0003\u0002\u0002\u0002", + "\fQ\u0003\u0002\u0002\u0002\u000eh\u0003\u0002\u0002\u0002\u0010o\u0003", + "\u0002\u0002\u0002\u0012r\u0003\u0002\u0002\u0002\u0014t\u0003\u0002", + "\u0002\u0002\u0016v\u0003\u0002\u0002\u0002\u0018z\u0003\u0002\u0002", + "\u0002\u001a\u0082\u0003\u0002\u0002\u0002\u001c\u0084\u0003\u0002\u0002", + "\u0002\u001e\u0088\u0003\u0002\u0002\u0002 \u008a\u0003\u0002\u0002", + "\u0002\"\u008c\u0003\u0002\u0002\u0002$\u008e\u0003\u0002\u0002\u0002", + "&\u0090\u0003\u0002\u0002\u0002(\u0092\u0003\u0002\u0002\u0002*\u0094", + "\u0003\u0002\u0002\u0002,\u0096\u0003\u0002\u0002\u0002.\u0098\u0003", + "\u0002\u0002\u00020\u009a\u0003\u0002\u0002\u00022\u009c\u0003\u0002", + "\u0002\u00024\u009e\u0003\u0002\u0002\u000267\u0005\u0004\u0003\u0002", + "78\u0007\u0002\u0002\u00038\u0003\u0003\u0002\u0002\u00029:\u0005\u0006", + "\u0004\u0002:;\u0007\u0002\u0002\u0003;\u0005\u0003\u0002\u0002\u0002", + "<\u0003\u0002\u0002\u0002", + ">=\u0003\u0002\u0002\u0002?\u0007\u0003\u0002\u0002\u0002@L\u0005\f", + "\u0007\u0002AL\u0005\u001e\u0010\u0002BL\u0005 \u0011\u0002CL\u0005", + "\"\u0012\u0002DL\u0005$\u0013\u0002EL\u0005&\u0014\u0002FL\u0005(\u0015", + "\u0002GL\u0005*\u0016\u0002HL\u0005,\u0017\u0002IL\u0005.\u0018\u0002", + "JL\u00050\u0019\u0002K@\u0003\u0002\u0002\u0002KA\u0003\u0002\u0002", + "\u0002KB\u0003\u0002\u0002\u0002KC\u0003\u0002\u0002\u0002KD\u0003\u0002", + "\u0002\u0002KE\u0003\u0002\u0002\u0002KF\u0003\u0002\u0002\u0002KG\u0003", + "\u0002\u0002\u0002KH\u0003\u0002\u0002\u0002KI\u0003\u0002\u0002\u0002", + "KJ\u0003\u0002\u0002\u0002L\t\u0003\u0002\u0002\u0002MP\u00052\u001a", + "\u0002NP\u00054\u001b\u0002OM\u0003\u0002\u0002\u0002ON\u0003\u0002", + "\u0002\u0002P\u000b\u0003\u0002\u0002\u0002QR\u0007I\u0002\u0002RS\u0007", + "J\u0002\u0002ST\u0005\u000e\b\u0002TY\u0005\u0010\t\u0002UV\u0007\u011e", + "\u0002\u0002VX\u0005\u0010\t\u0002WU\u0003\u0002\u0002\u0002X[\u0003", + "\u0002\u0002\u0002YW\u0003\u0002\u0002\u0002YZ\u0003\u0002\u0002\u0002", + "Z]\u0003\u0002\u0002\u0002[Y\u0003\u0002\u0002\u0002\\^\u0005\u0016", + "\f\u0002]\\\u0003\u0002\u0002\u0002]^\u0003\u0002\u0002\u0002^_\u0003", + "\u0002\u0002\u0002_`\u0007G\u0002\u0002`e\u0005\u001c\u000f\u0002ab", + "\u0007\u011e\u0002\u0002bd\u0005\u001c\u000f\u0002ca\u0003\u0002\u0002", + "\u0002dg\u0003\u0002\u0002\u0002ec\u0003\u0002\u0002\u0002ef\u0003\u0002", + "\u0002\u0002f\r\u0003\u0002\u0002\u0002ge\u0003\u0002\u0002\u0002hl", + "\u0007\u0105\u0002\u0002ik\u0007\u0104\u0002\u0002ji\u0003\u0002\u0002", + "\u0002kn\u0003\u0002\u0002\u0002lm\u0003\u0002\u0002\u0002lj\u0003\u0002", + "\u0002\u0002m\u000f\u0003\u0002\u0002\u0002nl\u0003\u0002\u0002\u0002", + "op\u0005\u0012\n\u0002pq\u0005\u0014\u000b\u0002q\u0011\u0003\u0002", + "\u0002\u0002rs\u0007\u0105\u0002\u0002s\u0013\u0003\u0002\u0002\u0002", + "tu\t\u0002\u0002\u0002u\u0015\u0003\u0002\u0002\u0002vw\u0007\u00cf", + "\u0002\u0002wx\u0007\u0010\u0002\u0002xy\u0005\u0018\r\u0002y\u0017", + "\u0003\u0002\u0002\u0002z\u007f\u0005\u001a\u000e\u0002{|\u0007\u011e", + "\u0002\u0002|~\u0005\u001a\u000e\u0002}{\u0003\u0002\u0002\u0002~\u0081", + "\u0003\u0002\u0002\u0002\u007f}\u0003\u0002\u0002\u0002\u007f\u0080", + "\u0003\u0002\u0002\u0002\u0080\u0019\u0003\u0002\u0002\u0002\u0081\u007f", + "\u0003\u0002\u0002\u0002\u0082\u0083\u0007\u0105\u0002\u0002\u0083\u001b", + "\u0003\u0002\u0002\u0002\u0084\u0085\u0007\u0103\u0002\u0002\u0085\u0086", + "\u0007\u011d\u0002\u0002\u0086\u0087\u0007\u0103\u0002\u0002\u0087\u001d", + "\u0003\u0002\u0002\u0002\u0088\u0089\u0003\u0002\u0002\u0002\u0089\u001f", + "\u0003\u0002\u0002\u0002\u008a\u008b\u0003\u0002\u0002\u0002\u008b!", + "\u0003\u0002\u0002\u0002\u008c\u008d\u0003\u0002\u0002\u0002\u008d#", + "\u0003\u0002\u0002\u0002\u008e\u008f\u0003\u0002\u0002\u0002\u008f%", + "\u0003\u0002\u0002\u0002\u0090\u0091\u0003\u0002\u0002\u0002\u0091\'", + "\u0003\u0002\u0002\u0002\u0092\u0093\u0003\u0002\u0002\u0002\u0093)", + "\u0003\u0002\u0002\u0002\u0094\u0095\u0003\u0002\u0002\u0002\u0095+", + "\u0003\u0002\u0002\u0002\u0096\u0097\u0003\u0002\u0002\u0002\u0097-", + "\u0003\u0002\u0002\u0002\u0098\u0099\u0003\u0002\u0002\u0002\u0099/", + "\u0003\u0002\u0002\u0002\u009a\u009b\u0003\u0002\u0002\u0002\u009b1", + "\u0003\u0002\u0002\u0002\u009c\u009d\u0003\u0002\u0002\u0002\u009d3", + "\u0003\u0002\u0002\u0002\u009e\u009f\u0003\u0002\u0002\u0002\u009f5", + "\u0003\u0002\u0002\u0002\n>KOY]el\u007f"].join(""); + + +var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); + +var decisionsToDFA = atn.decisionToState.map( function(ds, index) { return new antlr4.dfa.DFA(ds, index); }); + +var sharedContextCache = new antlr4.PredictionContextCache(); + +var literalNames = [ null, 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, "'STRING'", + "'ARRAY'", "'MAP'", "'CHAR'", "'VARCHAR'", "'BINARY'", + "'VARBINARY'", "'BYTES'", "'DECIMAL'", "'TINYINT'", + "'SMALLINT'", "'INT'", "'BIGINT'", "'FLOAT'", "'DOUBLE'", + "'DATE'", "'TIME'", "'TIMESTAMP'", "'MULTISET'", "'BOOLEAN'", + "'RAW'", "'ROW'", "'NULL'", "'='", "','" ]; + +var symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", + "LINE_COMMENT", "SELECT", "FROM", "ADD", "AS", "ALL", + "ANY", "DISTINCT", "WHERE", "GROUP", "BY", "GROUPING", + "SETS", "CUBE", "ROLLUP", "ORDER", "HAVING", "LIMIT", + "AT", "OR", "AND", "IN", "NOT", "NO", "EXISTS", "BETWEEN", + "LIKE", "RLIKE", "IS", "TRUE", "FALSE", "NULLS", "ASC", + "DESC", "FOR", "INTERVAL", "CASE", "WHEN", "THEN", + "ELSE", "END", "JOIN", "CROSS", "OUTER", "INNER", + "LEFT", "SEMI", "RIGHT", "FULL", "NATURAL", "ON", + "PIVOT", "LATERAL", "WINDOW", "OVER", "PARTITION", + "RANGE", "ROWS", "UNBOUNDED", "PRECEDING", "FOLLOWING", + "CURRENT", "FIRST", "AFTER", "LAST", "WITH", "VALUES", + "CREATE", "TABLE", "DIRECTORY", "VIEW", "REPLACE", + "INSERT", "DELETE", "INTO", "DESCRIBE", "EXPLAIN", + "FORMAT", "LOGICAL", "CODEGEN", "COST", "CAST", "SHOW", + "TABLES", "COLUMNS", "COLUMN", "USE", "PARTITIONS", + "FUNCTIONS", "DROP", "UNION", "EXCEPT", "SETMINUS", + "INTERSECT", "TO", "TABLESAMPLE", "STRATIFY", "ALTER", + "RENAME", "STRUCT", "COMMENT", "SET", "RESET", "DATA", + "START", "TRANSACTION", "COMMIT", "ROLLBACK", "MACRO", + "IGNORE", "BOTH", "LEADING", "TRAILING", "IF", "POSITION", + "EXTRACT", "EQ", "NSEQ", "NEQ", "NEQJ", "LT", "LTE", + "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", + "PERCENT", "DIV", "TILDE", "AMPERSAND", "PIPE", "CONCAT_PIPE", + "HAT", "PERCENTLIT", "BUCKET", "OUT", "OF", "SORT", + "CLUSTER", "DISTRIBUTE", "OVERWRITE", "TRANSFORM", + "REDUCE", "USING", "SERDE", "SERDEPROPERTIES", "RECORDREADER", + "RECORDWRITER", "DELIMITED", "FIELDS", "TERMINATED", + "COLLECTION", "ITEMS", "KEYS", "ESCAPED", "LINES", + "SEPARATED", "FUNCTION", "EXTENDED", "REFRESH", "CLEAR", + "CACHE", "UNCACHE", "LAZY", "FORMATTED", "GLOBAL", + "TEMPORARY", "OPTIONS", "UNSET", "TBLPROPERTIES", + "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", "DOT_ID", + "ID", "STRING", "ARRAY", "MAP", "CHAR", "VARCHAR", + "BINARY", "VARBINARY", "BYTES", "DECIMAL", "TINYINT", + "SMALLINT", "INT", "BIGINT", "FLOAT", "DOUBLE", "DATE", + "TIME", "TIMESTAMP", "MULTISET", "BOOLEAN", "RAW", + "ROW", "NULL", "EQUAL", "COMMA" ]; + +var ruleNames = [ "program", "statement", "sqlStatement", "ddlStatement", + "dmlStatement", "createTable", "tableName", "columnOptionDefinition", + "columnName", "columnType", "partitionDefinition", "partitionColumnDefinition", + "partitionColumnName", "withOptionDefinition", "createDatabase", + "createView", "createFunction", "alterTable", "alterDatabase", + "alterFunction", "dropTable", "dropDatabase", "dropView", + "dropFunction", "selectStatement", "insertStatement" ]; + +function FlinkSqlParser (input) { + antlr4.Parser.call(this, input); + this._interp = new antlr4.atn.ParserATNSimulator(this, atn, decisionsToDFA, sharedContextCache); + this.ruleNames = ruleNames; + this.literalNames = literalNames; + this.symbolicNames = symbolicNames; + return this; +} + +FlinkSqlParser.prototype = Object.create(antlr4.Parser.prototype); +FlinkSqlParser.prototype.constructor = FlinkSqlParser; + +Object.defineProperty(FlinkSqlParser.prototype, "atn", { + get : function() { + return atn; + } +}); + +FlinkSqlParser.EOF = antlr4.Token.EOF; +FlinkSqlParser.SPACE = 1; +FlinkSqlParser.SPEC_MYSQL_COMMENT = 2; +FlinkSqlParser.COMMENT_INPUT = 3; +FlinkSqlParser.LINE_COMMENT = 4; +FlinkSqlParser.SELECT = 5; +FlinkSqlParser.FROM = 6; +FlinkSqlParser.ADD = 7; +FlinkSqlParser.AS = 8; +FlinkSqlParser.ALL = 9; +FlinkSqlParser.ANY = 10; +FlinkSqlParser.DISTINCT = 11; +FlinkSqlParser.WHERE = 12; +FlinkSqlParser.GROUP = 13; +FlinkSqlParser.BY = 14; +FlinkSqlParser.GROUPING = 15; +FlinkSqlParser.SETS = 16; +FlinkSqlParser.CUBE = 17; +FlinkSqlParser.ROLLUP = 18; +FlinkSqlParser.ORDER = 19; +FlinkSqlParser.HAVING = 20; +FlinkSqlParser.LIMIT = 21; +FlinkSqlParser.AT = 22; +FlinkSqlParser.OR = 23; +FlinkSqlParser.AND = 24; +FlinkSqlParser.IN = 25; +FlinkSqlParser.NOT = 26; +FlinkSqlParser.NO = 27; +FlinkSqlParser.EXISTS = 28; +FlinkSqlParser.BETWEEN = 29; +FlinkSqlParser.LIKE = 30; +FlinkSqlParser.RLIKE = 31; +FlinkSqlParser.IS = 32; +FlinkSqlParser.TRUE = 33; +FlinkSqlParser.FALSE = 34; +FlinkSqlParser.NULLS = 35; +FlinkSqlParser.ASC = 36; +FlinkSqlParser.DESC = 37; +FlinkSqlParser.FOR = 38; +FlinkSqlParser.INTERVAL = 39; +FlinkSqlParser.CASE = 40; +FlinkSqlParser.WHEN = 41; +FlinkSqlParser.THEN = 42; +FlinkSqlParser.ELSE = 43; +FlinkSqlParser.END = 44; +FlinkSqlParser.JOIN = 45; +FlinkSqlParser.CROSS = 46; +FlinkSqlParser.OUTER = 47; +FlinkSqlParser.INNER = 48; +FlinkSqlParser.LEFT = 49; +FlinkSqlParser.SEMI = 50; +FlinkSqlParser.RIGHT = 51; +FlinkSqlParser.FULL = 52; +FlinkSqlParser.NATURAL = 53; +FlinkSqlParser.ON = 54; +FlinkSqlParser.PIVOT = 55; +FlinkSqlParser.LATERAL = 56; +FlinkSqlParser.WINDOW = 57; +FlinkSqlParser.OVER = 58; +FlinkSqlParser.PARTITION = 59; +FlinkSqlParser.RANGE = 60; +FlinkSqlParser.ROWS = 61; +FlinkSqlParser.UNBOUNDED = 62; +FlinkSqlParser.PRECEDING = 63; +FlinkSqlParser.FOLLOWING = 64; +FlinkSqlParser.CURRENT = 65; +FlinkSqlParser.FIRST = 66; +FlinkSqlParser.AFTER = 67; +FlinkSqlParser.LAST = 68; +FlinkSqlParser.WITH = 69; +FlinkSqlParser.VALUES = 70; +FlinkSqlParser.CREATE = 71; +FlinkSqlParser.TABLE = 72; +FlinkSqlParser.DIRECTORY = 73; +FlinkSqlParser.VIEW = 74; +FlinkSqlParser.REPLACE = 75; +FlinkSqlParser.INSERT = 76; +FlinkSqlParser.DELETE = 77; +FlinkSqlParser.INTO = 78; +FlinkSqlParser.DESCRIBE = 79; +FlinkSqlParser.EXPLAIN = 80; +FlinkSqlParser.FORMAT = 81; +FlinkSqlParser.LOGICAL = 82; +FlinkSqlParser.CODEGEN = 83; +FlinkSqlParser.COST = 84; +FlinkSqlParser.CAST = 85; +FlinkSqlParser.SHOW = 86; +FlinkSqlParser.TABLES = 87; +FlinkSqlParser.COLUMNS = 88; +FlinkSqlParser.COLUMN = 89; +FlinkSqlParser.USE = 90; +FlinkSqlParser.PARTITIONS = 91; +FlinkSqlParser.FUNCTIONS = 92; +FlinkSqlParser.DROP = 93; +FlinkSqlParser.UNION = 94; +FlinkSqlParser.EXCEPT = 95; +FlinkSqlParser.SETMINUS = 96; +FlinkSqlParser.INTERSECT = 97; +FlinkSqlParser.TO = 98; +FlinkSqlParser.TABLESAMPLE = 99; +FlinkSqlParser.STRATIFY = 100; +FlinkSqlParser.ALTER = 101; +FlinkSqlParser.RENAME = 102; +FlinkSqlParser.STRUCT = 103; +FlinkSqlParser.COMMENT = 104; +FlinkSqlParser.SET = 105; +FlinkSqlParser.RESET = 106; +FlinkSqlParser.DATA = 107; +FlinkSqlParser.START = 108; +FlinkSqlParser.TRANSACTION = 109; +FlinkSqlParser.COMMIT = 110; +FlinkSqlParser.ROLLBACK = 111; +FlinkSqlParser.MACRO = 112; +FlinkSqlParser.IGNORE = 113; +FlinkSqlParser.BOTH = 114; +FlinkSqlParser.LEADING = 115; +FlinkSqlParser.TRAILING = 116; +FlinkSqlParser.IF = 117; +FlinkSqlParser.POSITION = 118; +FlinkSqlParser.EXTRACT = 119; +FlinkSqlParser.EQ = 120; +FlinkSqlParser.NSEQ = 121; +FlinkSqlParser.NEQ = 122; +FlinkSqlParser.NEQJ = 123; +FlinkSqlParser.LT = 124; +FlinkSqlParser.LTE = 125; +FlinkSqlParser.GT = 126; +FlinkSqlParser.GTE = 127; +FlinkSqlParser.PLUS = 128; +FlinkSqlParser.MINUS = 129; +FlinkSqlParser.ASTERISK = 130; +FlinkSqlParser.SLASH = 131; +FlinkSqlParser.PERCENT = 132; +FlinkSqlParser.DIV = 133; +FlinkSqlParser.TILDE = 134; +FlinkSqlParser.AMPERSAND = 135; +FlinkSqlParser.PIPE = 136; +FlinkSqlParser.CONCAT_PIPE = 137; +FlinkSqlParser.HAT = 138; +FlinkSqlParser.PERCENTLIT = 139; +FlinkSqlParser.BUCKET = 140; +FlinkSqlParser.OUT = 141; +FlinkSqlParser.OF = 142; +FlinkSqlParser.SORT = 143; +FlinkSqlParser.CLUSTER = 144; +FlinkSqlParser.DISTRIBUTE = 145; +FlinkSqlParser.OVERWRITE = 146; +FlinkSqlParser.TRANSFORM = 147; +FlinkSqlParser.REDUCE = 148; +FlinkSqlParser.USING = 149; +FlinkSqlParser.SERDE = 150; +FlinkSqlParser.SERDEPROPERTIES = 151; +FlinkSqlParser.RECORDREADER = 152; +FlinkSqlParser.RECORDWRITER = 153; +FlinkSqlParser.DELIMITED = 154; +FlinkSqlParser.FIELDS = 155; +FlinkSqlParser.TERMINATED = 156; +FlinkSqlParser.COLLECTION = 157; +FlinkSqlParser.ITEMS = 158; +FlinkSqlParser.KEYS = 159; +FlinkSqlParser.ESCAPED = 160; +FlinkSqlParser.LINES = 161; +FlinkSqlParser.SEPARATED = 162; +FlinkSqlParser.FUNCTION = 163; +FlinkSqlParser.EXTENDED = 164; +FlinkSqlParser.REFRESH = 165; +FlinkSqlParser.CLEAR = 166; +FlinkSqlParser.CACHE = 167; +FlinkSqlParser.UNCACHE = 168; +FlinkSqlParser.LAZY = 169; +FlinkSqlParser.FORMATTED = 170; +FlinkSqlParser.GLOBAL = 171; +FlinkSqlParser.TEMPORARY = 172; +FlinkSqlParser.OPTIONS = 173; +FlinkSqlParser.UNSET = 174; +FlinkSqlParser.TBLPROPERTIES = 175; +FlinkSqlParser.DBPROPERTIES = 176; +FlinkSqlParser.BUCKETS = 177; +FlinkSqlParser.SKEWED = 178; +FlinkSqlParser.STORED = 179; +FlinkSqlParser.DIRECTORIES = 180; +FlinkSqlParser.LOCATION = 181; +FlinkSqlParser.EXCHANGE = 182; +FlinkSqlParser.ARCHIVE = 183; +FlinkSqlParser.UNARCHIVE = 184; +FlinkSqlParser.FILEFORMAT = 185; +FlinkSqlParser.TOUCH = 186; +FlinkSqlParser.COMPACT = 187; +FlinkSqlParser.CONCATENATE = 188; +FlinkSqlParser.CHANGE = 189; +FlinkSqlParser.CASCADE = 190; +FlinkSqlParser.RESTRICT = 191; +FlinkSqlParser.CLUSTERED = 192; +FlinkSqlParser.SORTED = 193; +FlinkSqlParser.PURGE = 194; +FlinkSqlParser.INPUTFORMAT = 195; +FlinkSqlParser.OUTPUTFORMAT = 196; +FlinkSqlParser.DATABASE = 197; +FlinkSqlParser.DATABASES = 198; +FlinkSqlParser.DFS = 199; +FlinkSqlParser.TRUNCATE = 200; +FlinkSqlParser.ANALYZE = 201; +FlinkSqlParser.COMPUTE = 202; +FlinkSqlParser.LIST = 203; +FlinkSqlParser.STATISTICS = 204; +FlinkSqlParser.PARTITIONED = 205; +FlinkSqlParser.EXTERNAL = 206; +FlinkSqlParser.DEFINED = 207; +FlinkSqlParser.REVOKE = 208; +FlinkSqlParser.GRANT = 209; +FlinkSqlParser.LOCK = 210; +FlinkSqlParser.UNLOCK = 211; +FlinkSqlParser.MSCK = 212; +FlinkSqlParser.REPAIR = 213; +FlinkSqlParser.RECOVER = 214; +FlinkSqlParser.EXPORT = 215; +FlinkSqlParser.IMPORT = 216; +FlinkSqlParser.LOAD = 217; +FlinkSqlParser.ROLE = 218; +FlinkSqlParser.ROLES = 219; +FlinkSqlParser.COMPACTIONS = 220; +FlinkSqlParser.PRINCIPALS = 221; +FlinkSqlParser.TRANSACTIONS = 222; +FlinkSqlParser.INDEX = 223; +FlinkSqlParser.INDEXES = 224; +FlinkSqlParser.LOCKS = 225; +FlinkSqlParser.OPTION = 226; +FlinkSqlParser.ANTI = 227; +FlinkSqlParser.LOCAL = 228; +FlinkSqlParser.INPATH = 229; +FlinkSqlParser.WATERMARK = 230; +FlinkSqlParser.UNNEST = 231; +FlinkSqlParser.MATCH_RECOGNIZE = 232; +FlinkSqlParser.MEASURES = 233; +FlinkSqlParser.ONE = 234; +FlinkSqlParser.PER = 235; +FlinkSqlParser.MATCH = 236; +FlinkSqlParser.SKIP1 = 237; +FlinkSqlParser.NEXT = 238; +FlinkSqlParser.PAST = 239; +FlinkSqlParser.PATTERN = 240; +FlinkSqlParser.WITHIN = 241; +FlinkSqlParser.DEFINE = 242; +FlinkSqlParser.BIGINT_LITERAL = 243; +FlinkSqlParser.SMALLINT_LITERAL = 244; +FlinkSqlParser.TINYINT_LITERAL = 245; +FlinkSqlParser.INTEGER_VALUE = 246; +FlinkSqlParser.DECIMAL_VALUE = 247; +FlinkSqlParser.DOUBLE_LITERAL = 248; +FlinkSqlParser.BIGDECIMAL_LITERAL = 249; +FlinkSqlParser.IDENTIFIER = 250; +FlinkSqlParser.BACKQUOTED_IDENTIFIER = 251; +FlinkSqlParser.SIMPLE_COMMENT = 252; +FlinkSqlParser.BRACKETED_EMPTY_COMMENT = 253; +FlinkSqlParser.BRACKETED_COMMENT = 254; +FlinkSqlParser.WS = 255; +FlinkSqlParser.UNRECOGNIZED = 256; +FlinkSqlParser.REVERSE_QUOTE_ID = 257; +FlinkSqlParser.DOT_ID = 258; +FlinkSqlParser.ID = 259; +FlinkSqlParser.STRING = 260; +FlinkSqlParser.ARRAY = 261; +FlinkSqlParser.MAP = 262; +FlinkSqlParser.CHAR = 263; +FlinkSqlParser.VARCHAR = 264; +FlinkSqlParser.BINARY = 265; +FlinkSqlParser.VARBINARY = 266; +FlinkSqlParser.BYTES = 267; +FlinkSqlParser.DECIMAL = 268; +FlinkSqlParser.TINYINT = 269; +FlinkSqlParser.SMALLINT = 270; +FlinkSqlParser.INT = 271; +FlinkSqlParser.BIGINT = 272; +FlinkSqlParser.FLOAT = 273; +FlinkSqlParser.DOUBLE = 274; +FlinkSqlParser.DATE = 275; +FlinkSqlParser.TIME = 276; +FlinkSqlParser.TIMESTAMP = 277; +FlinkSqlParser.MULTISET = 278; +FlinkSqlParser.BOOLEAN = 279; +FlinkSqlParser.RAW = 280; +FlinkSqlParser.ROW = 281; +FlinkSqlParser.NULL = 282; +FlinkSqlParser.EQUAL = 283; +FlinkSqlParser.COMMA = 284; + +FlinkSqlParser.RULE_program = 0; +FlinkSqlParser.RULE_statement = 1; +FlinkSqlParser.RULE_sqlStatement = 2; +FlinkSqlParser.RULE_ddlStatement = 3; +FlinkSqlParser.RULE_dmlStatement = 4; +FlinkSqlParser.RULE_createTable = 5; +FlinkSqlParser.RULE_tableName = 6; +FlinkSqlParser.RULE_columnOptionDefinition = 7; +FlinkSqlParser.RULE_columnName = 8; +FlinkSqlParser.RULE_columnType = 9; +FlinkSqlParser.RULE_partitionDefinition = 10; +FlinkSqlParser.RULE_partitionColumnDefinition = 11; +FlinkSqlParser.RULE_partitionColumnName = 12; +FlinkSqlParser.RULE_withOptionDefinition = 13; +FlinkSqlParser.RULE_createDatabase = 14; +FlinkSqlParser.RULE_createView = 15; +FlinkSqlParser.RULE_createFunction = 16; +FlinkSqlParser.RULE_alterTable = 17; +FlinkSqlParser.RULE_alterDatabase = 18; +FlinkSqlParser.RULE_alterFunction = 19; +FlinkSqlParser.RULE_dropTable = 20; +FlinkSqlParser.RULE_dropDatabase = 21; +FlinkSqlParser.RULE_dropView = 22; +FlinkSqlParser.RULE_dropFunction = 23; +FlinkSqlParser.RULE_selectStatement = 24; +FlinkSqlParser.RULE_insertStatement = 25; + + +function ProgramContext(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_program; + return this; +} + +ProgramContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ProgramContext.prototype.constructor = ProgramContext; + +ProgramContext.prototype.statement = function() { + return this.getTypedRuleContext(StatementContext,0); +}; + +ProgramContext.prototype.EOF = function() { + return this.getToken(FlinkSqlParser.EOF, 0); +}; + +ProgramContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterProgram(this); + } +}; + +ProgramContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitProgram(this); + } +}; + +ProgramContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitProgram(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ProgramContext = ProgramContext; + +FlinkSqlParser.prototype.program = function() { + + var localctx = new ProgramContext(this, this._ctx, this.state); + this.enterRule(localctx, 0, FlinkSqlParser.RULE_program); + try { + this.enterOuterAlt(localctx, 1); + this.state = 52; + this.statement(); + this.state = 53; + this.match(FlinkSqlParser.EOF); + } 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 StatementContext(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_statement; + return this; +} + +StatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +StatementContext.prototype.constructor = StatementContext; + +StatementContext.prototype.sqlStatement = function() { + return this.getTypedRuleContext(SqlStatementContext,0); +}; + +StatementContext.prototype.EOF = function() { + return this.getToken(FlinkSqlParser.EOF, 0); +}; + +StatementContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterStatement(this); + } +}; + +StatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitStatement(this); + } +}; + +StatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.StatementContext = StatementContext; + +FlinkSqlParser.prototype.statement = function() { + + var localctx = new StatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 2, FlinkSqlParser.RULE_statement); + try { + this.enterOuterAlt(localctx, 1); + this.state = 55; + this.sqlStatement(); + this.state = 56; + this.match(FlinkSqlParser.EOF); + } 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 SqlStatementContext(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_sqlStatement; + return this; +} + +SqlStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SqlStatementContext.prototype.constructor = SqlStatementContext; + +SqlStatementContext.prototype.ddlStatement = function() { + return this.getTypedRuleContext(DdlStatementContext,0); +}; + +SqlStatementContext.prototype.dmlStatement = function() { + return this.getTypedRuleContext(DmlStatementContext,0); +}; + +SqlStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSqlStatement(this); + } +}; + +SqlStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSqlStatement(this); + } +}; + +SqlStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSqlStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.SqlStatementContext = SqlStatementContext; + +FlinkSqlParser.prototype.sqlStatement = function() { + + var localctx = new SqlStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 4, FlinkSqlParser.RULE_sqlStatement); + try { + this.state = 60; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,0,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 58; + this.ddlStatement(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 59; + this.dmlStatement(); + 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 DdlStatementContext(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_ddlStatement; + return this; +} + +DdlStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DdlStatementContext.prototype.constructor = DdlStatementContext; + +DdlStatementContext.prototype.createTable = function() { + return this.getTypedRuleContext(CreateTableContext,0); +}; + +DdlStatementContext.prototype.createDatabase = function() { + return this.getTypedRuleContext(CreateDatabaseContext,0); +}; + +DdlStatementContext.prototype.createView = function() { + return this.getTypedRuleContext(CreateViewContext,0); +}; + +DdlStatementContext.prototype.createFunction = function() { + return this.getTypedRuleContext(CreateFunctionContext,0); +}; + +DdlStatementContext.prototype.alterTable = function() { + return this.getTypedRuleContext(AlterTableContext,0); +}; + +DdlStatementContext.prototype.alterDatabase = function() { + return this.getTypedRuleContext(AlterDatabaseContext,0); +}; + +DdlStatementContext.prototype.alterFunction = function() { + return this.getTypedRuleContext(AlterFunctionContext,0); +}; + +DdlStatementContext.prototype.dropTable = function() { + return this.getTypedRuleContext(DropTableContext,0); +}; + +DdlStatementContext.prototype.dropDatabase = function() { + return this.getTypedRuleContext(DropDatabaseContext,0); +}; + +DdlStatementContext.prototype.dropView = function() { + return this.getTypedRuleContext(DropViewContext,0); +}; + +DdlStatementContext.prototype.dropFunction = function() { + return this.getTypedRuleContext(DropFunctionContext,0); +}; + +DdlStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDdlStatement(this); + } +}; + +DdlStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDdlStatement(this); + } +}; + +DdlStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDdlStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.DdlStatementContext = DdlStatementContext; + +FlinkSqlParser.prototype.ddlStatement = function() { + + var localctx = new DdlStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 6, FlinkSqlParser.RULE_ddlStatement); + try { + this.state = 73; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,1,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 62; + this.createTable(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 63; + this.createDatabase(); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 64; + this.createView(); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 65; + this.createFunction(); + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 66; + this.alterTable(); + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 67; + this.alterDatabase(); + break; + + case 7: + this.enterOuterAlt(localctx, 7); + this.state = 68; + this.alterFunction(); + break; + + case 8: + this.enterOuterAlt(localctx, 8); + this.state = 69; + this.dropTable(); + break; + + case 9: + this.enterOuterAlt(localctx, 9); + this.state = 70; + this.dropDatabase(); + break; + + case 10: + this.enterOuterAlt(localctx, 10); + this.state = 71; + this.dropView(); + break; + + case 11: + this.enterOuterAlt(localctx, 11); + this.state = 72; + this.dropFunction(); + 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 DmlStatementContext(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_dmlStatement; + return this; +} + +DmlStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DmlStatementContext.prototype.constructor = DmlStatementContext; + +DmlStatementContext.prototype.selectStatement = function() { + return this.getTypedRuleContext(SelectStatementContext,0); +}; + +DmlStatementContext.prototype.insertStatement = function() { + return this.getTypedRuleContext(InsertStatementContext,0); +}; + +DmlStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDmlStatement(this); + } +}; + +DmlStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDmlStatement(this); + } +}; + +DmlStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDmlStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.DmlStatementContext = DmlStatementContext; + +FlinkSqlParser.prototype.dmlStatement = function() { + + var localctx = new DmlStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 8, FlinkSqlParser.RULE_dmlStatement); + try { + this.state = 77; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,2,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 75; + this.selectStatement(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 76; + this.insertStatement(); + 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 CreateTableContext(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_createTable; + return this; +} + +CreateTableContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CreateTableContext.prototype.constructor = CreateTableContext; + +CreateTableContext.prototype.CREATE = function() { + return this.getToken(FlinkSqlParser.CREATE, 0); +}; + +CreateTableContext.prototype.TABLE = function() { + return this.getToken(FlinkSqlParser.TABLE, 0); +}; + +CreateTableContext.prototype.tableName = function() { + return this.getTypedRuleContext(TableNameContext,0); +}; + +CreateTableContext.prototype.WITH = function() { + return this.getToken(FlinkSqlParser.WITH, 0); +}; + +CreateTableContext.prototype.columnOptionDefinition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ColumnOptionDefinitionContext); + } else { + return this.getTypedRuleContext(ColumnOptionDefinitionContext,i); + } +}; + +CreateTableContext.prototype.withOptionDefinition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(WithOptionDefinitionContext); + } else { + return this.getTypedRuleContext(WithOptionDefinitionContext,i); + } +}; + +CreateTableContext.prototype.partitionDefinition = function() { + return this.getTypedRuleContext(PartitionDefinitionContext,0); +}; + +CreateTableContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +CreateTableContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterCreateTable(this); + } +}; + +CreateTableContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitCreateTable(this); + } +}; + +CreateTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitCreateTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.CreateTableContext = CreateTableContext; + +FlinkSqlParser.prototype.createTable = function() { + + var localctx = new CreateTableContext(this, this._ctx, this.state); + this.enterRule(localctx, 10, FlinkSqlParser.RULE_createTable); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 79; + this.match(FlinkSqlParser.CREATE); + this.state = 80; + this.match(FlinkSqlParser.TABLE); + this.state = 81; + this.tableName(); + + this.state = 82; + this.columnOptionDefinition(); + this.state = 87; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 83; + this.match(FlinkSqlParser.COMMA); + this.state = 84; + this.columnOptionDefinition(); + this.state = 89; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 91; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.PARTITIONED) { + this.state = 90; + this.partitionDefinition(); + } + + this.state = 93; + this.match(FlinkSqlParser.WITH); + + this.state = 94; + this.withOptionDefinition(); + this.state = 99; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 95; + this.match(FlinkSqlParser.COMMA); + this.state = 96; + this.withOptionDefinition(); + this.state = 101; + 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 TableNameContext(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_tableName; + return this; +} + +TableNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TableNameContext.prototype.constructor = TableNameContext; + +TableNameContext.prototype.ID = function() { + return this.getToken(FlinkSqlParser.ID, 0); +}; + +TableNameContext.prototype.DOT_ID = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.DOT_ID); + } else { + return this.getToken(FlinkSqlParser.DOT_ID, i); + } +}; + + +TableNameContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterTableName(this); + } +}; + +TableNameContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitTableName(this); + } +}; + +TableNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitTableName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.TableNameContext = TableNameContext; + +FlinkSqlParser.prototype.tableName = function() { + + var localctx = new TableNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 12, FlinkSqlParser.RULE_tableName); + try { + this.enterOuterAlt(localctx, 1); + this.state = 102; + this.match(FlinkSqlParser.ID); + this.state = 106; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,6,this._ctx) + while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1+1) { + this.state = 103; + this.match(FlinkSqlParser.DOT_ID); + } + this.state = 108; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,6,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ColumnOptionDefinitionContext(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_columnOptionDefinition; + return this; +} + +ColumnOptionDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ColumnOptionDefinitionContext.prototype.constructor = ColumnOptionDefinitionContext; + +ColumnOptionDefinitionContext.prototype.columnName = function() { + return this.getTypedRuleContext(ColumnNameContext,0); +}; + +ColumnOptionDefinitionContext.prototype.columnType = function() { + return this.getTypedRuleContext(ColumnTypeContext,0); +}; + +ColumnOptionDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterColumnOptionDefinition(this); + } +}; + +ColumnOptionDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitColumnOptionDefinition(this); + } +}; + +ColumnOptionDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitColumnOptionDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ColumnOptionDefinitionContext = ColumnOptionDefinitionContext; + +FlinkSqlParser.prototype.columnOptionDefinition = function() { + + var localctx = new ColumnOptionDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 14, FlinkSqlParser.RULE_columnOptionDefinition); + try { + this.enterOuterAlt(localctx, 1); + this.state = 109; + this.columnName(); + this.state = 110; + this.columnType(); + } 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 ColumnNameContext(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_columnName; + return this; +} + +ColumnNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ColumnNameContext.prototype.constructor = ColumnNameContext; + +ColumnNameContext.prototype.ID = function() { + return this.getToken(FlinkSqlParser.ID, 0); +}; + +ColumnNameContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterColumnName(this); + } +}; + +ColumnNameContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitColumnName(this); + } +}; + +ColumnNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitColumnName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ColumnNameContext = ColumnNameContext; + +FlinkSqlParser.prototype.columnName = function() { + + var localctx = new ColumnNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 16, FlinkSqlParser.RULE_columnName); + try { + this.enterOuterAlt(localctx, 1); + this.state = 112; + this.match(FlinkSqlParser.ID); + } 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 ColumnTypeContext(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_columnType; + return this; +} + +ColumnTypeContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ColumnTypeContext.prototype.constructor = ColumnTypeContext; + +ColumnTypeContext.prototype.CHAR = function() { + return this.getToken(FlinkSqlParser.CHAR, 0); +}; + +ColumnTypeContext.prototype.VARCHAR = function() { + return this.getToken(FlinkSqlParser.VARCHAR, 0); +}; + +ColumnTypeContext.prototype.STRING = function() { + return this.getToken(FlinkSqlParser.STRING, 0); +}; + +ColumnTypeContext.prototype.BINARY = function() { + return this.getToken(FlinkSqlParser.BINARY, 0); +}; + +ColumnTypeContext.prototype.VARBINARY = function() { + return this.getToken(FlinkSqlParser.VARBINARY, 0); +}; + +ColumnTypeContext.prototype.BYTES = function() { + return this.getToken(FlinkSqlParser.BYTES, 0); +}; + +ColumnTypeContext.prototype.DECIMAL = function() { + return this.getToken(FlinkSqlParser.DECIMAL, 0); +}; + +ColumnTypeContext.prototype.TINYINT = function() { + return this.getToken(FlinkSqlParser.TINYINT, 0); +}; + +ColumnTypeContext.prototype.SMALLINT = function() { + return this.getToken(FlinkSqlParser.SMALLINT, 0); +}; + +ColumnTypeContext.prototype.INT = function() { + return this.getToken(FlinkSqlParser.INT, 0); +}; + +ColumnTypeContext.prototype.BIGINT = function() { + return this.getToken(FlinkSqlParser.BIGINT, 0); +}; + +ColumnTypeContext.prototype.FLOAT = function() { + return this.getToken(FlinkSqlParser.FLOAT, 0); +}; + +ColumnTypeContext.prototype.DOUBLE = function() { + return this.getToken(FlinkSqlParser.DOUBLE, 0); +}; + +ColumnTypeContext.prototype.DATE = function() { + return this.getToken(FlinkSqlParser.DATE, 0); +}; + +ColumnTypeContext.prototype.TIME = function() { + return this.getToken(FlinkSqlParser.TIME, 0); +}; + +ColumnTypeContext.prototype.TIMESTAMP = function() { + return this.getToken(FlinkSqlParser.TIMESTAMP, 0); +}; + +ColumnTypeContext.prototype.ARRAY = function() { + return this.getToken(FlinkSqlParser.ARRAY, 0); +}; + +ColumnTypeContext.prototype.MAP = function() { + return this.getToken(FlinkSqlParser.MAP, 0); +}; + +ColumnTypeContext.prototype.MULTISET = function() { + return this.getToken(FlinkSqlParser.MULTISET, 0); +}; + +ColumnTypeContext.prototype.ROW = function() { + return this.getToken(FlinkSqlParser.ROW, 0); +}; + +ColumnTypeContext.prototype.BOOLEAN = function() { + return this.getToken(FlinkSqlParser.BOOLEAN, 0); +}; + +ColumnTypeContext.prototype.RAW = function() { + return this.getToken(FlinkSqlParser.RAW, 0); +}; + +ColumnTypeContext.prototype.NULL = function() { + return this.getToken(FlinkSqlParser.NULL, 0); +}; + +ColumnTypeContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterColumnType(this); + } +}; + +ColumnTypeContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitColumnType(this); + } +}; + +ColumnTypeContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitColumnType(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ColumnTypeContext = ColumnTypeContext; + +FlinkSqlParser.prototype.columnType = function() { + + var localctx = new ColumnTypeContext(this, this._ctx, this.state); + this.enterRule(localctx, 18, FlinkSqlParser.RULE_columnType); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 114; + _la = this._input.LA(1); + if(!(((((_la - 260)) & ~0x1f) == 0 && ((1 << (_la - 260)) & ((1 << (FlinkSqlParser.STRING - 260)) | (1 << (FlinkSqlParser.ARRAY - 260)) | (1 << (FlinkSqlParser.MAP - 260)) | (1 << (FlinkSqlParser.CHAR - 260)) | (1 << (FlinkSqlParser.VARCHAR - 260)) | (1 << (FlinkSqlParser.BINARY - 260)) | (1 << (FlinkSqlParser.VARBINARY - 260)) | (1 << (FlinkSqlParser.BYTES - 260)) | (1 << (FlinkSqlParser.DECIMAL - 260)) | (1 << (FlinkSqlParser.TINYINT - 260)) | (1 << (FlinkSqlParser.SMALLINT - 260)) | (1 << (FlinkSqlParser.INT - 260)) | (1 << (FlinkSqlParser.BIGINT - 260)) | (1 << (FlinkSqlParser.FLOAT - 260)) | (1 << (FlinkSqlParser.DOUBLE - 260)) | (1 << (FlinkSqlParser.DATE - 260)) | (1 << (FlinkSqlParser.TIME - 260)) | (1 << (FlinkSqlParser.TIMESTAMP - 260)) | (1 << (FlinkSqlParser.MULTISET - 260)) | (1 << (FlinkSqlParser.BOOLEAN - 260)) | (1 << (FlinkSqlParser.RAW - 260)) | (1 << (FlinkSqlParser.ROW - 260)) | (1 << (FlinkSqlParser.NULL - 260)))) !== 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 PartitionDefinitionContext(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_partitionDefinition; + return this; +} + +PartitionDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PartitionDefinitionContext.prototype.constructor = PartitionDefinitionContext; + +PartitionDefinitionContext.prototype.PARTITIONED = function() { + return this.getToken(FlinkSqlParser.PARTITIONED, 0); +}; + +PartitionDefinitionContext.prototype.BY = function() { + return this.getToken(FlinkSqlParser.BY, 0); +}; + +PartitionDefinitionContext.prototype.partitionColumnDefinition = function() { + return this.getTypedRuleContext(PartitionColumnDefinitionContext,0); +}; + +PartitionDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPartitionDefinition(this); + } +}; + +PartitionDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPartitionDefinition(this); + } +}; + +PartitionDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPartitionDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.PartitionDefinitionContext = PartitionDefinitionContext; + +FlinkSqlParser.prototype.partitionDefinition = function() { + + var localctx = new PartitionDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 20, FlinkSqlParser.RULE_partitionDefinition); + try { + this.enterOuterAlt(localctx, 1); + this.state = 116; + this.match(FlinkSqlParser.PARTITIONED); + this.state = 117; + this.match(FlinkSqlParser.BY); + this.state = 118; + this.partitionColumnDefinition(); + } 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 PartitionColumnDefinitionContext(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_partitionColumnDefinition; + return this; +} + +PartitionColumnDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PartitionColumnDefinitionContext.prototype.constructor = PartitionColumnDefinitionContext; + +PartitionColumnDefinitionContext.prototype.partitionColumnName = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(PartitionColumnNameContext); + } else { + return this.getTypedRuleContext(PartitionColumnNameContext,i); + } +}; + +PartitionColumnDefinitionContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +PartitionColumnDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPartitionColumnDefinition(this); + } +}; + +PartitionColumnDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPartitionColumnDefinition(this); + } +}; + +PartitionColumnDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPartitionColumnDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.PartitionColumnDefinitionContext = PartitionColumnDefinitionContext; + +FlinkSqlParser.prototype.partitionColumnDefinition = function() { + + var localctx = new PartitionColumnDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 22, FlinkSqlParser.RULE_partitionColumnDefinition); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 120; + this.partitionColumnName(); + this.state = 125; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 121; + this.match(FlinkSqlParser.COMMA); + this.state = 122; + this.partitionColumnName(); + this.state = 127; + 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 PartitionColumnNameContext(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_partitionColumnName; + return this; +} + +PartitionColumnNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PartitionColumnNameContext.prototype.constructor = PartitionColumnNameContext; + +PartitionColumnNameContext.prototype.ID = function() { + return this.getToken(FlinkSqlParser.ID, 0); +}; + +PartitionColumnNameContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPartitionColumnName(this); + } +}; + +PartitionColumnNameContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPartitionColumnName(this); + } +}; + +PartitionColumnNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPartitionColumnName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.PartitionColumnNameContext = PartitionColumnNameContext; + +FlinkSqlParser.prototype.partitionColumnName = function() { + + var localctx = new PartitionColumnNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 24, FlinkSqlParser.RULE_partitionColumnName); + try { + this.enterOuterAlt(localctx, 1); + this.state = 128; + this.match(FlinkSqlParser.ID); + } 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 WithOptionDefinitionContext(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_withOptionDefinition; + return this; +} + +WithOptionDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WithOptionDefinitionContext.prototype.constructor = WithOptionDefinitionContext; + +WithOptionDefinitionContext.prototype.REVERSE_QUOTE_ID = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.REVERSE_QUOTE_ID); + } else { + return this.getToken(FlinkSqlParser.REVERSE_QUOTE_ID, i); + } +}; + + +WithOptionDefinitionContext.prototype.EQUAL = function() { + return this.getToken(FlinkSqlParser.EQUAL, 0); +}; + +WithOptionDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterWithOptionDefinition(this); + } +}; + +WithOptionDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitWithOptionDefinition(this); + } +}; + +WithOptionDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitWithOptionDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.WithOptionDefinitionContext = WithOptionDefinitionContext; + +FlinkSqlParser.prototype.withOptionDefinition = function() { + + var localctx = new WithOptionDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 26, FlinkSqlParser.RULE_withOptionDefinition); + try { + this.enterOuterAlt(localctx, 1); + this.state = 130; + this.match(FlinkSqlParser.REVERSE_QUOTE_ID); + this.state = 131; + this.match(FlinkSqlParser.EQUAL); + this.state = 132; + this.match(FlinkSqlParser.REVERSE_QUOTE_ID); + } 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 CreateDatabaseContext(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_createDatabase; + return this; +} + +CreateDatabaseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CreateDatabaseContext.prototype.constructor = CreateDatabaseContext; + + +CreateDatabaseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterCreateDatabase(this); + } +}; + +CreateDatabaseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitCreateDatabase(this); + } +}; + +CreateDatabaseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitCreateDatabase(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.CreateDatabaseContext = CreateDatabaseContext; + +FlinkSqlParser.prototype.createDatabase = function() { + + var localctx = new CreateDatabaseContext(this, this._ctx, this.state); + this.enterRule(localctx, 28, FlinkSqlParser.RULE_createDatabase); + 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 CreateViewContext(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_createView; + return this; +} + +CreateViewContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CreateViewContext.prototype.constructor = CreateViewContext; + + +CreateViewContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterCreateView(this); + } +}; + +CreateViewContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitCreateView(this); + } +}; + +CreateViewContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitCreateView(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.CreateViewContext = CreateViewContext; + +FlinkSqlParser.prototype.createView = function() { + + var localctx = new CreateViewContext(this, this._ctx, this.state); + this.enterRule(localctx, 30, FlinkSqlParser.RULE_createView); + 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 CreateFunctionContext(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_createFunction; + return this; +} + +CreateFunctionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CreateFunctionContext.prototype.constructor = CreateFunctionContext; + + +CreateFunctionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterCreateFunction(this); + } +}; + +CreateFunctionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitCreateFunction(this); + } +}; + +CreateFunctionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitCreateFunction(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.CreateFunctionContext = CreateFunctionContext; + +FlinkSqlParser.prototype.createFunction = function() { + + var localctx = new CreateFunctionContext(this, this._ctx, this.state); + this.enterRule(localctx, 32, FlinkSqlParser.RULE_createFunction); + 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 AlterTableContext(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_alterTable; + return this; +} + +AlterTableContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +AlterTableContext.prototype.constructor = AlterTableContext; + + +AlterTableContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterAlterTable(this); + } +}; + +AlterTableContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitAlterTable(this); + } +}; + +AlterTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitAlterTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.AlterTableContext = AlterTableContext; + +FlinkSqlParser.prototype.alterTable = function() { + + var localctx = new AlterTableContext(this, this._ctx, this.state); + this.enterRule(localctx, 34, FlinkSqlParser.RULE_alterTable); + 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 AlterDatabaseContext(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_alterDatabase; + return this; +} + +AlterDatabaseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +AlterDatabaseContext.prototype.constructor = AlterDatabaseContext; + + +AlterDatabaseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterAlterDatabase(this); + } +}; + +AlterDatabaseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitAlterDatabase(this); + } +}; + +AlterDatabaseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitAlterDatabase(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.AlterDatabaseContext = AlterDatabaseContext; + +FlinkSqlParser.prototype.alterDatabase = function() { + + var localctx = new AlterDatabaseContext(this, this._ctx, this.state); + this.enterRule(localctx, 36, FlinkSqlParser.RULE_alterDatabase); + 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 AlterFunctionContext(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_alterFunction; + return this; +} + +AlterFunctionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +AlterFunctionContext.prototype.constructor = AlterFunctionContext; + + +AlterFunctionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterAlterFunction(this); + } +}; + +AlterFunctionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitAlterFunction(this); + } +}; + +AlterFunctionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitAlterFunction(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.AlterFunctionContext = AlterFunctionContext; + +FlinkSqlParser.prototype.alterFunction = function() { + + var localctx = new AlterFunctionContext(this, this._ctx, this.state); + this.enterRule(localctx, 38, FlinkSqlParser.RULE_alterFunction); + 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 DropTableContext(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_dropTable; + return this; +} + +DropTableContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DropTableContext.prototype.constructor = DropTableContext; + + +DropTableContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDropTable(this); + } +}; + +DropTableContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDropTable(this); + } +}; + +DropTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDropTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.DropTableContext = DropTableContext; + +FlinkSqlParser.prototype.dropTable = function() { + + var localctx = new DropTableContext(this, this._ctx, this.state); + this.enterRule(localctx, 40, FlinkSqlParser.RULE_dropTable); + 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 DropDatabaseContext(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_dropDatabase; + return this; +} + +DropDatabaseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DropDatabaseContext.prototype.constructor = DropDatabaseContext; + + +DropDatabaseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDropDatabase(this); + } +}; + +DropDatabaseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDropDatabase(this); + } +}; + +DropDatabaseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDropDatabase(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.DropDatabaseContext = DropDatabaseContext; + +FlinkSqlParser.prototype.dropDatabase = function() { + + var localctx = new DropDatabaseContext(this, this._ctx, this.state); + this.enterRule(localctx, 42, FlinkSqlParser.RULE_dropDatabase); + 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 DropViewContext(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_dropView; + return this; +} + +DropViewContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DropViewContext.prototype.constructor = DropViewContext; + + +DropViewContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDropView(this); + } +}; + +DropViewContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDropView(this); + } +}; + +DropViewContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDropView(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.DropViewContext = DropViewContext; + +FlinkSqlParser.prototype.dropView = function() { + + var localctx = new DropViewContext(this, this._ctx, this.state); + this.enterRule(localctx, 44, FlinkSqlParser.RULE_dropView); + 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 DropFunctionContext(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_dropFunction; + return this; +} + +DropFunctionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DropFunctionContext.prototype.constructor = DropFunctionContext; + + +DropFunctionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDropFunction(this); + } +}; + +DropFunctionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDropFunction(this); + } +}; + +DropFunctionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDropFunction(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.DropFunctionContext = DropFunctionContext; + +FlinkSqlParser.prototype.dropFunction = function() { + + var localctx = new DropFunctionContext(this, this._ctx, this.state); + this.enterRule(localctx, 46, FlinkSqlParser.RULE_dropFunction); + 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.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, 48, 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; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_insertStatement; + return this; +} + +InsertStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +InsertStatementContext.prototype.constructor = InsertStatementContext; + + +InsertStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterInsertStatement(this); + } +}; + +InsertStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitInsertStatement(this); + } +}; + +InsertStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitInsertStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.InsertStatementContext = InsertStatementContext; + +FlinkSqlParser.prototype.insertStatement = function() { + + var localctx = new InsertStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 50, FlinkSqlParser.RULE_insertStatement); + 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; +}; + + +exports.FlinkSqlParser = FlinkSqlParser; diff --git a/src/lib/flinksql/FlinkSqlParser.tokens b/src/lib/flinksql/FlinkSqlParser.tokens new file mode 100644 index 00000000..7d7d73cc --- /dev/null +++ b/src/lib/flinksql/FlinkSqlParser.tokens @@ -0,0 +1,561 @@ +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 +DOT_ID=258 +ID=259 +STRING=260 +ARRAY=261 +MAP=262 +CHAR=263 +VARCHAR=264 +BINARY=265 +VARBINARY=266 +BYTES=267 +DECIMAL=268 +TINYINT=269 +SMALLINT=270 +INT=271 +BIGINT=272 +FLOAT=273 +DOUBLE=274 +DATE=275 +TIME=276 +TIMESTAMP=277 +MULTISET=278 +BOOLEAN=279 +RAW=280 +ROW=281 +NULL=282 +EQUAL=283 +COMMA=284 +'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 +'STRING'=260 +'ARRAY'=261 +'MAP'=262 +'CHAR'=263 +'VARCHAR'=264 +'BINARY'=265 +'VARBINARY'=266 +'BYTES'=267 +'DECIMAL'=268 +'TINYINT'=269 +'SMALLINT'=270 +'INT'=271 +'BIGINT'=272 +'FLOAT'=273 +'DOUBLE'=274 +'DATE'=275 +'TIME'=276 +'TIMESTAMP'=277 +'MULTISET'=278 +'BOOLEAN'=279 +'RAW'=280 +'ROW'=281 +'NULL'=282 +'='=283 +','=284 diff --git a/src/lib/flinksql/FlinkSqlParserListener.js b/src/lib/flinksql/FlinkSqlParserListener.js new file mode 100644 index 00000000..751576e4 --- /dev/null +++ b/src/lib/flinksql/FlinkSqlParserListener.js @@ -0,0 +1,249 @@ +// Generated from /Users/erindeng/Desktop/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.8 +// jshint ignore: start +var antlr4 = require('antlr4/index'); + +// This class defines a complete listener for a parse tree produced by FlinkSqlParser. +function FlinkSqlParserListener() { + antlr4.tree.ParseTreeListener.call(this); + return this; +} + +FlinkSqlParserListener.prototype = Object.create(antlr4.tree.ParseTreeListener.prototype); +FlinkSqlParserListener.prototype.constructor = FlinkSqlParserListener; + +// Enter a parse tree produced by FlinkSqlParser#program. +FlinkSqlParserListener.prototype.enterProgram = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#program. +FlinkSqlParserListener.prototype.exitProgram = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#statement. +FlinkSqlParserListener.prototype.enterStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#statement. +FlinkSqlParserListener.prototype.exitStatement = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#sqlStatement. +FlinkSqlParserListener.prototype.enterSqlStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#sqlStatement. +FlinkSqlParserListener.prototype.exitSqlStatement = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#ddlStatement. +FlinkSqlParserListener.prototype.enterDdlStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#ddlStatement. +FlinkSqlParserListener.prototype.exitDdlStatement = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#dmlStatement. +FlinkSqlParserListener.prototype.enterDmlStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#dmlStatement. +FlinkSqlParserListener.prototype.exitDmlStatement = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#createTable. +FlinkSqlParserListener.prototype.enterCreateTable = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#createTable. +FlinkSqlParserListener.prototype.exitCreateTable = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#tableName. +FlinkSqlParserListener.prototype.enterTableName = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#tableName. +FlinkSqlParserListener.prototype.exitTableName = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#columnOptionDefinition. +FlinkSqlParserListener.prototype.enterColumnOptionDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#columnOptionDefinition. +FlinkSqlParserListener.prototype.exitColumnOptionDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#columnName. +FlinkSqlParserListener.prototype.enterColumnName = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#columnName. +FlinkSqlParserListener.prototype.exitColumnName = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#columnType. +FlinkSqlParserListener.prototype.enterColumnType = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#columnType. +FlinkSqlParserListener.prototype.exitColumnType = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#partitionDefinition. +FlinkSqlParserListener.prototype.enterPartitionDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#partitionDefinition. +FlinkSqlParserListener.prototype.exitPartitionDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#partitionColumnDefinition. +FlinkSqlParserListener.prototype.enterPartitionColumnDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#partitionColumnDefinition. +FlinkSqlParserListener.prototype.exitPartitionColumnDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#partitionColumnName. +FlinkSqlParserListener.prototype.enterPartitionColumnName = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#partitionColumnName. +FlinkSqlParserListener.prototype.exitPartitionColumnName = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#withOptionDefinition. +FlinkSqlParserListener.prototype.enterWithOptionDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#withOptionDefinition. +FlinkSqlParserListener.prototype.exitWithOptionDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#createDatabase. +FlinkSqlParserListener.prototype.enterCreateDatabase = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#createDatabase. +FlinkSqlParserListener.prototype.exitCreateDatabase = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#createView. +FlinkSqlParserListener.prototype.enterCreateView = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#createView. +FlinkSqlParserListener.prototype.exitCreateView = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#createFunction. +FlinkSqlParserListener.prototype.enterCreateFunction = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#createFunction. +FlinkSqlParserListener.prototype.exitCreateFunction = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#alterTable. +FlinkSqlParserListener.prototype.enterAlterTable = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#alterTable. +FlinkSqlParserListener.prototype.exitAlterTable = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#alterDatabase. +FlinkSqlParserListener.prototype.enterAlterDatabase = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#alterDatabase. +FlinkSqlParserListener.prototype.exitAlterDatabase = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#alterFunction. +FlinkSqlParserListener.prototype.enterAlterFunction = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#alterFunction. +FlinkSqlParserListener.prototype.exitAlterFunction = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#dropTable. +FlinkSqlParserListener.prototype.enterDropTable = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#dropTable. +FlinkSqlParserListener.prototype.exitDropTable = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#dropDatabase. +FlinkSqlParserListener.prototype.enterDropDatabase = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#dropDatabase. +FlinkSqlParserListener.prototype.exitDropDatabase = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#dropView. +FlinkSqlParserListener.prototype.enterDropView = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#dropView. +FlinkSqlParserListener.prototype.exitDropView = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#dropFunction. +FlinkSqlParserListener.prototype.enterDropFunction = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#dropFunction. +FlinkSqlParserListener.prototype.exitDropFunction = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#selectStatement. +FlinkSqlParserListener.prototype.enterSelectStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#selectStatement. +FlinkSqlParserListener.prototype.exitSelectStatement = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#insertStatement. +FlinkSqlParserListener.prototype.enterInsertStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#insertStatement. +FlinkSqlParserListener.prototype.exitInsertStatement = function(ctx) { +}; + + + +exports.FlinkSqlParserListener = FlinkSqlParserListener; \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParserVisitor.js b/src/lib/flinksql/FlinkSqlParserVisitor.js new file mode 100644 index 00000000..1848c2e5 --- /dev/null +++ b/src/lib/flinksql/FlinkSqlParserVisitor.js @@ -0,0 +1,172 @@ +// Generated from /Users/erindeng/Desktop/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.8 +// jshint ignore: start +var antlr4 = require('antlr4/index'); + +// This class defines a complete generic visitor for a parse tree produced by FlinkSqlParser. + +function FlinkSqlParserVisitor() { + antlr4.tree.ParseTreeVisitor.call(this); + return this; +} + +FlinkSqlParserVisitor.prototype = Object.create(antlr4.tree.ParseTreeVisitor.prototype); +FlinkSqlParserVisitor.prototype.constructor = FlinkSqlParserVisitor; + +// Visit a parse tree produced by FlinkSqlParser#program. +FlinkSqlParserVisitor.prototype.visitProgram = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#statement. +FlinkSqlParserVisitor.prototype.visitStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#sqlStatement. +FlinkSqlParserVisitor.prototype.visitSqlStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#ddlStatement. +FlinkSqlParserVisitor.prototype.visitDdlStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#dmlStatement. +FlinkSqlParserVisitor.prototype.visitDmlStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#createTable. +FlinkSqlParserVisitor.prototype.visitCreateTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#tableName. +FlinkSqlParserVisitor.prototype.visitTableName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#columnOptionDefinition. +FlinkSqlParserVisitor.prototype.visitColumnOptionDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#columnName. +FlinkSqlParserVisitor.prototype.visitColumnName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#columnType. +FlinkSqlParserVisitor.prototype.visitColumnType = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#partitionDefinition. +FlinkSqlParserVisitor.prototype.visitPartitionDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#partitionColumnDefinition. +FlinkSqlParserVisitor.prototype.visitPartitionColumnDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#partitionColumnName. +FlinkSqlParserVisitor.prototype.visitPartitionColumnName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#withOptionDefinition. +FlinkSqlParserVisitor.prototype.visitWithOptionDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#createDatabase. +FlinkSqlParserVisitor.prototype.visitCreateDatabase = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#createView. +FlinkSqlParserVisitor.prototype.visitCreateView = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#createFunction. +FlinkSqlParserVisitor.prototype.visitCreateFunction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#alterTable. +FlinkSqlParserVisitor.prototype.visitAlterTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#alterDatabase. +FlinkSqlParserVisitor.prototype.visitAlterDatabase = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#alterFunction. +FlinkSqlParserVisitor.prototype.visitAlterFunction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#dropTable. +FlinkSqlParserVisitor.prototype.visitDropTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#dropDatabase. +FlinkSqlParserVisitor.prototype.visitDropDatabase = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#dropView. +FlinkSqlParserVisitor.prototype.visitDropView = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#dropFunction. +FlinkSqlParserVisitor.prototype.visitDropFunction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#selectStatement. +FlinkSqlParserVisitor.prototype.visitSelectStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#insertStatement. +FlinkSqlParserVisitor.prototype.visitInsertStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + + +exports.FlinkSqlParserVisitor = FlinkSqlParserVisitor; \ No newline at end of file diff --git a/src/parser/flinksql.ts b/src/parser/flinksql.ts new file mode 100644 index 00000000..655d7cff --- /dev/null +++ b/src/parser/flinksql.ts @@ -0,0 +1,20 @@ +import { InputStream, CommonTokenStream, Lexer } from 'antlr4'; +import { FlinkSqlLexer } from '../lib/flinksql/FlinkSqlLexer'; +import { FlinkSqlParser } from '../lib/flinksql/FlinkSqlParser'; +export * from '../lib/flinksql/FlinkSqlParserListener'; +export * from '../lib/flinksql/FlinkSqlParserVisitor'; + +import BasicParser from './common/BasicParser'; + +export default class FlinkSQL extends BasicParser { + public createLexer(input: string): Lexer { + const chars = new InputStream(input); + const lexer = new FlinkSqlLexer(chars) as Lexer; + return lexer; + } + public createParserFromLexer(lexer: Lexer) { + const tokenStream = new CommonTokenStream(lexer); + return new FlinkSqlParser(tokenStream); + } +} + diff --git a/src/parser/index.ts b/src/parser/index.ts index ff3b1925..46dd3e8d 100644 --- a/src/parser/index.ts +++ b/src/parser/index.ts @@ -1,3 +1,4 @@ export * from './generic'; export * from './plsql'; export * from './hive'; +export * from './flinksql'; diff --git a/test/parser/flinksql/lexer.test.ts b/test/parser/flinksql/lexer.test.ts new file mode 100644 index 00000000..872892f7 --- /dev/null +++ b/test/parser/flinksql/lexer.test.ts @@ -0,0 +1,12 @@ +import SQLParser from '../../../src/parser/flinksql'; +// todo 校验 token 解析 +describe('FlinkSQL Lexer tests', () => { + const parser = new SQLParser(); + + const sql = 'SELECT * FROM table1'; + const tokens = parser.getAllTokens(sql); + + test('token counts', () => { + expect(tokens.length).toBe(7); + }); +}); diff --git a/test/parser/flinksql/listener.test.ts b/test/parser/flinksql/listener.test.ts new file mode 100644 index 00000000..cbfc5c9a --- /dev/null +++ b/test/parser/flinksql/listener.test.ts @@ -0,0 +1,22 @@ +import SQLParser, { PlSqlParserListener } from '../../../src/parser/plsql'; +// todo 校验关键字提取 +describe('PLSQL Listener Tests', () => { + const expectTableName = 'user1'; + const sql = `select id,name,sex from ${expectTableName};`; + const parser = new SQLParser(); + + const parserTree = parser.parse(sql); + + test('Listener enterTableName', async () => { + let result = ''; + class MyListener extends PlSqlParserListener { + enterTable_ref_list(ctx): void { + result = ctx.getText().toLowerCase(); + } + } + const listenTableName: any = new MyListener(); + + await parser.listen(listenTableName, parserTree); + expect(result).toBe(expectTableName); + }); +}); diff --git a/test/parser/flinksql/syntax.test.ts b/test/parser/flinksql/syntax.test.ts new file mode 100644 index 00000000..26d22df1 --- /dev/null +++ b/test/parser/flinksql/syntax.test.ts @@ -0,0 +1,20 @@ +import SQLParser from '../../../src/parser/flinksql'; + +describe('FlinkSQL Syntax Tests', () => { + const parser = new SQLParser(); + + test('Test simple CreateTable Statement', () => { + const sql = ` + CREATE TABLE Orders ( + user BIGINT, + product STRING + ) WITH ( + "connector" = "kafka", + "scan.startup.mode" = "earliest-offset" + ); + `; + const result = parser.validate(sql); + + expect(result.length).toBe(0); + }); +}); diff --git a/test/parser/flinksql/visitor.test.ts b/test/parser/flinksql/visitor.test.ts new file mode 100644 index 00000000..b088a26f --- /dev/null +++ b/test/parser/flinksql/visitor.test.ts @@ -0,0 +1,23 @@ +import SQLParser, { PlSqlParserVisitor } from '../../../src/parser/plsql'; +// todo 校验关键字提取 +describe('PLSQL Visitor Tests', () => { + const expectTableName = 'user1'; + const sql = `select id,name,sex from ${expectTableName};`; + const parser = new SQLParser(); + + const parserTree = parser.parse(sql); + + test('Visitor visitTable_ref_list', () => { + let result = ''; + class MyVisitor extends PlSqlParserVisitor { + visitTable_ref_list(ctx): void { + result = ctx.getText().toLowerCase(); + super.visitTable_ref_list(ctx); + } + } + const visitor: any = new MyVisitor(); + visitor.visit(parserTree); + + expect(result).toBe(expectTableName); + }); +});