From a99721162be0d463b513f53bb13ada6d10168548 Mon Sep 17 00:00:00 2001 From: Hayden Date: Tue, 26 Mar 2024 14:28:27 +0800 Subject: [PATCH] feat: collect entity (#265) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: add text and word utils * feat: add entity collector class * refactor: rename SyntaxContextType to EntityContextType * refactor: improve EntityCollector * feat: improve mysql parser grammar * feat: add mysql entity collector * test: mysql entity collector tests * feat: remove useless method * feat: improve spark grammar file * feat: add spark entity collector * test: spark entity collector unit tests * feat: remove useless code * feat: add queryStatement label * feat: add crateDatabaseStmt * feat: add trino entity collector * feat: rename trinosql to trino * test: trino collect entity unit tests * test: fix spark test * feat(impala): support impale entity collector (#256) * Feat/collect entity hive (#263) * feat(hive): support hive collect entity * feat(hive): update tableAllColumns * feat: replace antlr4ts with antlr4ng * feat(pgsql): pgsql collect entity (#268) * feat(pgsql): pgsql collect entity * feat(pgsql): optimize some name --------- Co-authored-by: zhaoge <> * feat: get word text by token.text * feat: supprt collect db/function and add splitListener (#270) * feat: supprt collect db/function and add splitListner * feat: remove SplitListener interface in baseParser to use SplitListener in root * fix(mysql): fix show create xxx not celloct as createXXXEntity type * test: fix pgsql unit tests * Feat/error recover predicate (#274) * feat: optimize pgsql grammar * feat: add sql parser base * feat: apply SQLParserBase * feat: add geAllEntities method * test: test collect table when missing column * feat: compose collect and suggestion (#276) * feat: mark stmt which contain caret * test: correct name of getAllEntities * test: remove misscolumn unit tests * test: add suggestionWithEntity tests * feat: flink collect entity (#277) * feat: improve flink sql parser * feat: support flink entity collector * test: flink entity collect unit test * feat: move combine entities to parent class --------- Co-authored-by: 霜序 <976060700@qq.com> Co-authored-by: XCynthia <942884029@qq.com> --- src/grammar/flinksql/FlinkSqlParser.g4 | 10 +- src/grammar/hive/HiveSqlParser.g4 | 58 +- src/grammar/impala/ImpalaSqlParser.g4 | 24 +- src/grammar/mysql/MySqlParser.g4 | 93 +- src/grammar/pgsql/PostgreSQLParser.g4 | 200 +- src/grammar/spark/SparkSqlLexer.g4 | 2 +- src/grammar/spark/SparkSqlParser.g4 | 226 +- src/grammar/trinosql/TrinoSql.g4 | 12 +- src/index.ts | 18 +- src/lib/SQLParserBase.ts | 18 + src/lib/flinksql/FlinkSqlParser.interp | 2 +- src/lib/flinksql/FlinkSqlParser.ts | 4296 +- src/lib/flinksql/FlinkSqlParserListener.ts | 16 +- src/lib/flinksql/FlinkSqlParserVisitor.ts | 11 +- src/lib/hive/HiveSqlParser.interp | 3 +- src/lib/hive/HiveSqlParser.ts | 11333 +++-- src/lib/hive/HiveSqlParserListener.ts | 64 +- src/lib/hive/HiveSqlParserVisitor.ts | 40 +- src/lib/impala/ImpalaSqlParser.interp | 4 +- src/lib/impala/ImpalaSqlParser.ts | 4002 +- src/lib/impala/ImpalaSqlParserListener.ts | 25 +- src/lib/impala/ImpalaSqlParserVisitor.ts | 17 +- src/lib/mysql/MySqlParser.interp | 2 +- src/lib/mysql/MySqlParser.ts | 20754 ++++----- src/lib/mysql/MySqlParserListener.ts | 42 +- src/lib/mysql/MySqlParserVisitor.ts | 27 +- src/lib/pgsql/PostgreSQLParser.interp | 9 +- src/lib/pgsql/PostgreSQLParser.ts | 34900 ++++++++-------- src/lib/pgsql/PostgreSQLParserListener.ts | 394 +- src/lib/pgsql/PostgreSQLParserVisitor.ts | 234 +- src/lib/plsql/PlSqlBaseParser.ts | 5 +- src/lib/spark/SparkSqlParser.interp | 10 +- src/lib/spark/SparkSqlParser.ts | 16274 ++++--- src/lib/spark/SparkSqlParserListener.ts | 1301 +- src/lib/spark/SparkSqlParserVisitor.ts | 800 +- src/lib/trinosql/TrinoSql.interp | 2 +- src/lib/trinosql/TrinoSqlLexer.ts | 3 + src/lib/trinosql/TrinoSqlListener.ts | 15 +- src/lib/trinosql/TrinoSqlParser.ts | 590 +- src/lib/trinosql/TrinoSqlVisitor.ts | 10 +- src/parser/common/basic-parser-types.ts | 38 +- src/parser/common/basicParser.ts | 95 +- src/parser/common/entityCollector.ts | 279 + .../common/{utils => }/findCaretTokenIndex.ts | 2 +- src/parser/common/simpleStack.ts | 32 + src/parser/common/splitListener.ts | 17 + src/parser/common/textAndWord.ts | 89 + src/parser/flinksql/flinkEntityCollector.ts | 134 + src/parser/flinksql/flinkSplitListener.ts | 12 + src/parser/{flinksql.ts => flinksql/index.ts} | 63 +- src/parser/hive/hiveEntityCollector.ts | 140 + src/parser/hive/hiveSplitListener.ts | 12 + src/parser/{hive.ts => hive/index.ts} | 58 +- src/parser/impala/impalaEntityCollector.ts | 143 + src/parser/impala/impalaSplitListener.ts | 12 + src/parser/{impala.ts => impala/index.ts} | 61 +- src/parser/index.ts | 2 +- src/parser/{mysql.ts => mysql/index.ts} | 57 +- src/parser/mysql/mysqlEntityCollector.ts | 147 + src/parser/mysql/mysqlSplitListener.ts | 12 + src/parser/{pgsql.ts => pgsql/index.ts} | 70 +- src/parser/pgsql/postgreEntityCollector.ts | 151 + src/parser/pgsql/postgreSplitListener.ts | 12 + src/parser/plsql.ts | 4 + src/parser/{spark.ts => spark/index.ts} | 69 +- src/parser/spark/sparkEntityCollector.ts | 151 + src/parser/spark/sparkSplitListener.ts | 13 + src/parser/{trinosql.ts => trino/index.ts} | 61 +- src/parser/trino/trinoEntityCollector.ts | 117 + src/parser/trino/trinoSplitListener.ts | 12 + .../contextCollect/entityCollector.test.ts | 395 + .../contextCollect/fixtures/common.sql | 46 + .../fixtures/suggestionWithEntity.sql | 11 + .../suggestion/fixtures/syntaxSuggestion.sql | 2 +- .../suggestion/multipleStatement.test.ts | 10 +- .../suggestion/suggestionWithEntity.test.ts | 162 + .../suggestion/syntaxSuggestion.test.ts | 48 +- .../contextCollect/entityCollector.test.ts | 752 + .../hive/contextCollect/fixtures/common.sql | 60 + .../fixtures/suggestionWithEntity.sql | 23 + .../suggestion/fixtures/syntaxSuggestion.sql | 8 +- .../hive/suggestion/multipleStatement.test.ts | 10 +- .../suggestion/suggestionWithEntity.test.ts | 310 + .../hive/suggestion/syntaxSuggestion.test.ts | 87 +- test/parser/hive/syntax/fixtures/select.sql | 5 + .../contextCollect/entityCollector.test.ts | 600 + .../impala/contextCollect/fixtures/common.sql | 50 + .../fixtures/suggestionWithEntity.sql | 11 + .../suggestion/multipleStatement.test.ts | 10 +- .../suggestion/suggestionWithEntity.test.ts | 158 + .../suggestion/syntaxSuggestion.test.ts | 52 +- .../impala/syntax/fixtures/create_table.sql | 6 +- .../contextCollect/entityCollector.test.ts | 495 + .../mysql/contextCollect/fixtures/common.sql | 39 + .../fixtures/suggestionWithEntity.sql | 11 + .../suggestion/fixtures/syntaxSuggestion.sql | 8 + .../suggestion/multipleStatement.test.ts | 10 +- .../suggestion/suggestionWithEntity.test.ts | 156 + .../mysql/suggestion/syntaxSuggestion.test.ts | 120 +- .../contextCollect/entityCollector.test.ts | 444 + .../pgsql/contextCollect/fixtures/common.sql | 49 + test/parser/pgsql/errorStrategy.test.ts | 8 +- .../fixtures/suggestionWithEntity.sql | 11 + .../suggestion/multipleStatement.test.ts | 12 +- .../suggestion/suggestionWithEntity.test.ts | 156 + .../pgsql/suggestion/syntaxSuggestion.test.ts | 126 +- .../contextCollect/entityCollector.test.ts | 362 + .../spark/contextCollect/fixtures/common.sql | 30 + .../fixtures/suggestionWithEntity.sql | 11 + .../suggestion/multipleStatement.test.ts | 10 +- .../suggestion/suggestionWithEntity.test.ts | 156 + .../spark/suggestion/syntaxSuggestion.test.ts | 70 +- .../contextCollect/entityCollector.test.ts | 250 + .../trino/contextCollect/fixtures/common.sql | 17 + .../{trinosql => trino}/errorStrategy.test.ts | 2 +- test/parser/{trinosql => trino}/lexer.test.ts | 2 +- .../{trinosql => trino}/listener.test.ts | 2 +- .../suggestion/fixtures/multipleStatement.sql | 0 .../fixtures/suggestionWithEntity.sql | 11 + .../suggestion/fixtures/syntaxSuggestion.sql | 0 .../suggestion/fixtures/tokenSuggestion.sql | 0 .../suggestion/multipleStatement.test.ts | 12 +- .../suggestion/suggestionWithEntity.test.ts | 159 + .../suggestion/syntaxSuggestion.test.ts | 46 +- .../suggestion/tokenSuggestion.test.ts | 2 +- .../syntax/alterStatement.test.ts | 2 +- .../syntax/analyzeStatement.test.ts | 2 +- .../syntax/callStatement.test.ts | 2 +- .../syntax/commentStatement.test.ts | 2 +- .../syntax/commitStatement.test.ts | 2 +- .../syntax/createStatement.test.ts | 2 +- .../syntax/deallocatePrepareStatement.test.ts | 2 +- .../syntax/deleteStatement.test.ts | 2 +- .../syntax/denyStatement.test.ts | 2 +- .../syntax/describeStatement.test.ts | 2 +- .../syntax/dropStatement.test.ts | 2 +- .../syntax/executeStatement.test.ts | 2 +- .../syntax/explainStatement.test.ts | 2 +- .../fixtures/alter_materialized_view.sql | 0 .../syntax/fixtures/alter_schema.sql | 0 .../syntax/fixtures/alter_table.sql | 0 .../syntax/fixtures/alter_view.sql | 0 .../syntax/fixtures/analyze.sql | 0 .../syntax/fixtures/call.sql | 0 .../syntax/fixtures/comment.sql | 0 .../syntax/fixtures/commit.sql | 0 .../fixtures/create_materialized_view.sql | 0 .../syntax/fixtures/create_role.sql | 0 .../syntax/fixtures/create_schema.sql | 0 .../syntax/fixtures/create_table.sql | 0 .../fixtures/create_table_as_select.sql | 0 .../syntax/fixtures/create_view.sql | 0 .../syntax/fixtures/deallocate_prepare.sql | 0 .../syntax/fixtures/delete.sql | 0 .../syntax/fixtures/deny.sql | 0 .../syntax/fixtures/describe.sql | 0 .../syntax/fixtures/drop_column.sql | 0 .../fixtures/drop_materialized_view.sql | 0 .../syntax/fixtures/drop_role.sql | 0 .../syntax/fixtures/drop_schema.sql | 0 .../syntax/fixtures/drop_table.sql | 0 .../syntax/fixtures/drop_view.sql | 0 .../syntax/fixtures/execute.sql | 0 .../syntax/fixtures/explain.sql | 0 .../syntax/fixtures/grant.sql | 0 .../syntax/fixtures/implicit_join.sql | 0 .../syntax/fixtures/insert_into.sql | 0 .../syntax/fixtures/match_recognize.sql | 0 .../syntax/fixtures/merge.sql | 0 .../syntax/fixtures/prepare.sql | 0 .../fixtures/refresh_materialized_view.sql | 0 .../syntax/fixtures/reset_session.sql | 0 .../syntax/fixtures/revoke.sql | 0 .../syntax/fixtures/revoke_roles.sql | 0 .../syntax/fixtures/rollback_transaction.sql | 0 .../syntax/fixtures/select.sql | 0 .../syntax/fixtures/select_with_ unnest.sql | 0 .../syntax/fixtures/select_with_clause.sql | 0 .../syntax/fixtures/select_with_exists.sql | 0 .../syntax/fixtures/select_with_fetch.sql | 0 .../syntax/fixtures/select_with_join.sql | 0 .../syntax/fixtures/select_with_offset.sql | 0 .../syntax/fixtures/select_with_row_type.sql | 0 .../fixtures/select_with_set_operations.sql | 0 .../fixtures/select_with_sub_queries.sql | 0 .../fixtures/select_with_table_sample.sql | 0 .../syntax/fixtures/select_with_union.sql | 0 .../syntax/fixtures/set_path.sql | 0 .../syntax/fixtures/set_role.sql | 0 .../syntax/fixtures/set_session.sql | 0 .../syntax/fixtures/set_time_zone.sql | 0 .../syntax/fixtures/show_catalogs.sql | 0 .../syntax/fixtures/show_columns.sql | 0 .../syntax/fixtures/show_create.sql | 0 .../syntax/fixtures/show_functions.sql | 0 .../syntax/fixtures/show_grants.sql | 0 .../syntax/fixtures/show_role_grants.sql | 0 .../syntax/fixtures/show_roles.sql | 0 .../syntax/fixtures/show_schemas.sql | 0 .../syntax/fixtures/show_session.sql | 0 .../syntax/fixtures/show_stats.sql | 0 .../syntax/fixtures/show_stats_for_query.sql | 0 .../syntax/fixtures/show_tables.sql | 0 .../syntax/fixtures/start_transaction.sql | 0 .../fixtures/substring_built_in_function.sql | 0 .../syntax/fixtures/truncate_table.sql | 0 .../syntax/fixtures/update.sql | 0 .../syntax/fixtures/use.sql | 0 .../syntax/fixtures/values.sql | 0 .../window_with_row_pattern_recognition.sql | 0 .../syntax/grantStatement.test.ts | 2 +- .../syntax/insertStatement.test.ts | 2 +- .../syntax/matchRecognizeStatement.test.ts | 2 +- .../{trinosql => trino}/syntax/merge.test.ts | 2 +- .../syntax/prepareStatement.test.ts | 2 +- .../refreshMaterializedViewStatement.test.ts | 2 +- .../syntax/resetSessionStatement.test.ts | 2 +- .../syntax/revokeStatement.test.ts | 2 +- .../rollbackTransactionStatement.test.ts | 2 +- .../syntax/selectStatement.test.ts | 2 +- .../syntax/setStatement.test.ts | 2 +- .../syntax/showStatement.test.ts | 2 +- .../syntax/startTransactionStatement.test.ts | 2 +- .../syntax/truncateTableStatement.test.ts | 2 +- .../syntax/updateStatement.test.ts | 2 +- .../syntax/useStatement.test.ts | 2 +- .../syntax/valuesStatement.test.ts | 2 +- ...WithRowPatternRecognitionStatement.test.ts | 2 +- .../validateInvalidSql.test.ts | 2 +- .../{trinosql => trino}/visitor.test.ts | 2 +- 230 files changed, 56908 insertions(+), 46672 deletions(-) create mode 100644 src/lib/SQLParserBase.ts create mode 100644 src/parser/common/entityCollector.ts rename src/parser/common/{utils => }/findCaretTokenIndex.ts (94%) create mode 100644 src/parser/common/simpleStack.ts create mode 100644 src/parser/common/splitListener.ts create mode 100644 src/parser/common/textAndWord.ts create mode 100644 src/parser/flinksql/flinkEntityCollector.ts create mode 100644 src/parser/flinksql/flinkSplitListener.ts rename src/parser/{flinksql.ts => flinksql/index.ts} (72%) create mode 100644 src/parser/hive/hiveEntityCollector.ts create mode 100644 src/parser/hive/hiveSplitListener.ts rename src/parser/{hive.ts => hive/index.ts} (73%) create mode 100644 src/parser/impala/impalaEntityCollector.ts create mode 100644 src/parser/impala/impalaSplitListener.ts rename src/parser/{impala.ts => impala/index.ts} (71%) rename src/parser/{mysql.ts => mysql/index.ts} (71%) create mode 100644 src/parser/mysql/mysqlEntityCollector.ts create mode 100644 src/parser/mysql/mysqlSplitListener.ts rename src/parser/{pgsql.ts => pgsql/index.ts} (73%) create mode 100644 src/parser/pgsql/postgreEntityCollector.ts create mode 100644 src/parser/pgsql/postgreSplitListener.ts rename src/parser/{spark.ts => spark/index.ts} (67%) create mode 100644 src/parser/spark/sparkEntityCollector.ts create mode 100644 src/parser/spark/sparkSplitListener.ts rename src/parser/{trinosql.ts => trino/index.ts} (71%) create mode 100644 src/parser/trino/trinoEntityCollector.ts create mode 100644 src/parser/trino/trinoSplitListener.ts create mode 100644 test/parser/flinksql/contextCollect/entityCollector.test.ts create mode 100644 test/parser/flinksql/contextCollect/fixtures/common.sql create mode 100644 test/parser/flinksql/suggestion/fixtures/suggestionWithEntity.sql create mode 100644 test/parser/flinksql/suggestion/suggestionWithEntity.test.ts create mode 100644 test/parser/hive/contextCollect/entityCollector.test.ts create mode 100644 test/parser/hive/contextCollect/fixtures/common.sql create mode 100644 test/parser/hive/suggestion/fixtures/suggestionWithEntity.sql create mode 100644 test/parser/hive/suggestion/suggestionWithEntity.test.ts create mode 100644 test/parser/impala/contextCollect/entityCollector.test.ts create mode 100644 test/parser/impala/contextCollect/fixtures/common.sql create mode 100644 test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql create mode 100644 test/parser/impala/suggestion/suggestionWithEntity.test.ts create mode 100644 test/parser/mysql/contextCollect/entityCollector.test.ts create mode 100644 test/parser/mysql/contextCollect/fixtures/common.sql create mode 100644 test/parser/mysql/suggestion/fixtures/suggestionWithEntity.sql create mode 100644 test/parser/mysql/suggestion/suggestionWithEntity.test.ts create mode 100644 test/parser/pgsql/contextCollect/entityCollector.test.ts create mode 100644 test/parser/pgsql/contextCollect/fixtures/common.sql create mode 100644 test/parser/pgsql/suggestion/fixtures/suggestionWithEntity.sql create mode 100644 test/parser/pgsql/suggestion/suggestionWithEntity.test.ts create mode 100644 test/parser/spark/contextCollect/entityCollector.test.ts create mode 100644 test/parser/spark/contextCollect/fixtures/common.sql create mode 100644 test/parser/spark/suggestion/fixtures/suggestionWithEntity.sql create mode 100644 test/parser/spark/suggestion/suggestionWithEntity.test.ts create mode 100644 test/parser/trino/contextCollect/entityCollector.test.ts create mode 100644 test/parser/trino/contextCollect/fixtures/common.sql rename test/parser/{trinosql => trino}/errorStrategy.test.ts (99%) rename test/parser/{trinosql => trino}/lexer.test.ts (84%) rename test/parser/{trinosql => trino}/listener.test.ts (97%) rename test/parser/{trinosql => trino}/suggestion/fixtures/multipleStatement.sql (100%) create mode 100644 test/parser/trino/suggestion/fixtures/suggestionWithEntity.sql rename test/parser/{trinosql => trino}/suggestion/fixtures/syntaxSuggestion.sql (100%) rename test/parser/{trinosql => trino}/suggestion/fixtures/tokenSuggestion.sql (100%) rename test/parser/{trinosql => trino}/suggestion/multipleStatement.test.ts (84%) create mode 100644 test/parser/trino/suggestion/suggestionWithEntity.test.ts rename test/parser/{trinosql => trino}/suggestion/syntaxSuggestion.test.ts (87%) rename test/parser/{trinosql => trino}/suggestion/tokenSuggestion.test.ts (98%) rename test/parser/{trinosql => trino}/syntax/alterStatement.test.ts (95%) rename test/parser/{trinosql => trino}/syntax/analyzeStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/callStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/commentStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/commitStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/createStatement.test.ts (96%) rename test/parser/{trinosql => trino}/syntax/deallocatePrepareStatement.test.ts (90%) rename test/parser/{trinosql => trino}/syntax/deleteStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/denyStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/describeStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/dropStatement.test.ts (96%) rename test/parser/{trinosql => trino}/syntax/executeStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/explainStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/fixtures/alter_materialized_view.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/alter_schema.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/alter_table.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/alter_view.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/analyze.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/call.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/comment.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/commit.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/create_materialized_view.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/create_role.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/create_schema.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/create_table.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/create_table_as_select.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/create_view.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/deallocate_prepare.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/delete.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/deny.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/describe.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/drop_column.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/drop_materialized_view.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/drop_role.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/drop_schema.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/drop_table.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/drop_view.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/execute.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/explain.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/grant.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/implicit_join.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/insert_into.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/match_recognize.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/merge.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/prepare.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/refresh_materialized_view.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/reset_session.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/revoke.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/revoke_roles.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/rollback_transaction.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_ unnest.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_clause.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_exists.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_fetch.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_join.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_offset.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_row_type.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_set_operations.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_sub_queries.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_table_sample.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/select_with_union.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/set_path.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/set_role.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/set_session.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/set_time_zone.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_catalogs.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_columns.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_create.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_functions.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_grants.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_role_grants.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_roles.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_schemas.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_session.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_stats.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_stats_for_query.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/show_tables.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/start_transaction.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/substring_built_in_function.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/truncate_table.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/update.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/use.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/values.sql (100%) rename test/parser/{trinosql => trino}/syntax/fixtures/window_with_row_pattern_recognition.sql (100%) rename test/parser/{trinosql => trino}/syntax/grantStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/insertStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/matchRecognizeStatement.test.ts (90%) rename test/parser/{trinosql => trino}/syntax/merge.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/prepareStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/refreshMaterializedViewStatement.test.ts (91%) rename test/parser/{trinosql => trino}/syntax/resetSessionStatement.test.ts (90%) rename test/parser/{trinosql => trino}/syntax/revokeStatement.test.ts (92%) rename test/parser/{trinosql => trino}/syntax/rollbackTransactionStatement.test.ts (90%) rename test/parser/{trinosql => trino}/syntax/selectStatement.test.ts (98%) rename test/parser/{trinosql => trino}/syntax/setStatement.test.ts (95%) rename test/parser/{trinosql => trino}/syntax/showStatement.test.ts (98%) rename test/parser/{trinosql => trino}/syntax/startTransactionStatement.test.ts (90%) rename test/parser/{trinosql => trino}/syntax/truncateTableStatement.test.ts (90%) rename test/parser/{trinosql => trino}/syntax/updateStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/useStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/valuesStatement.test.ts (89%) rename test/parser/{trinosql => trino}/syntax/windowWithRowPatternRecognitionStatement.test.ts (92%) rename test/parser/{trinosql => trino}/validateInvalidSql.test.ts (90%) rename test/parser/{trinosql => trino}/visitor.test.ts (95%) diff --git a/src/grammar/flinksql/FlinkSqlParser.g4 b/src/grammar/flinksql/FlinkSqlParser.g4 index 83b0ade..0f479f6 100644 --- a/src/grammar/flinksql/FlinkSqlParser.g4 +++ b/src/grammar/flinksql/FlinkSqlParser.g4 @@ -7,6 +7,11 @@ parser grammar FlinkSqlParser; options { tokenVocab=FlinkSqlLexer; caseInsensitive= true; + superClass=SQLParserBase; +} + +@header { +import SQLParserBase from '../SQLParserBase'; } program @@ -180,7 +185,7 @@ columnNameCreate columnName : uid - | expression + | {this.shouldMatchEmpty()}? ; columnNameList @@ -289,7 +294,6 @@ transformList transform : columnName # identityTransform - | qualifiedName # columnTransform | LR_BRACKET transformArgument (COMMA transformArgument)* RR_BRACKET # applyTransform ; @@ -484,6 +488,7 @@ selectClause projectItemDefinition : overWindowItem | columnName (KW_AS? expression)? + | expression (KW_AS? columnName)? ; overWindowItem @@ -583,6 +588,7 @@ groupItemDefinition | LR_BRACKET expression (COMMA expression)* RR_BRACKET | groupingSetsNotaionName LR_BRACKET expression (COMMA expression)* RR_BRACKET | groupingSets LR_BRACKET groupItemDefinition (COMMA groupItemDefinition)* RR_BRACKET + | expression ; groupingSets diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index 85e185b..54ed564 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -1,23 +1,21 @@ /** - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -*/ + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. + See the NOTICE file distributed with this work for additional information regarding copyright + ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. You may obtain a copy of the + License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software distributed under the License + is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied. See the License for the specific language governing permissions and limitations under the + License. + */ /** - * This file is an adaptation of antlr/grammars-v4's sql/hive/v4/HiveParser.g4 grammar. - * Reference: https://github.com/antlr/grammars-v4/blob/master/sql/hive/v4/HiveParser.g4 + * This file is an adaptation of antlr/grammars-v4's sql/hive/v4/HiveParser.g4 grammar. Reference: + * https://github.com/antlr/grammars-v4/blob/master/sql/hive/v4/HiveParser.g4 */ // $antlr-format alignTrailingComments true, columnLimit 150, minEmptyLines 1, maxEmptyLinesToKeep 1, reflowComments false, useTab false @@ -30,6 +28,11 @@ options { tokenVocab=HiveSqlLexer; caseInsensitive= true; + superClass=SQLParserBase; +} + +@header { +import SQLParserBase from '../SQLParserBase'; } program @@ -804,6 +807,7 @@ columnNameList columnName : id_ (DOT id_)* + | {this.shouldMatchEmpty()}? ; columnNameCreate @@ -1096,7 +1100,10 @@ fromStatement ; singleFromStatement - : fromClause b+=body+ + : fromClause insertClause selectClause lateralView? whereClause? groupByClause? havingClause? window_clause? qualifyClause? orderByClause? + clusterByClause? distributeByClause? sortByClause? limitClause? # fromInsertStmt + | fromClause selectClause lateralView? whereClause? groupByClause? havingClause? window_clause? qualifyClause? orderByClause? clusterByClause? + distributeByClause? sortByClause? limitClause? # fromSelectStmt ; /* @@ -1106,8 +1113,8 @@ The valuesClause rule below ensures that the parse tree for very similar to the tree for "insert into table FOO select a,b from BAR". */ regularBody - : i=insertClause s=selectStatement - | selectStatement + : i=insertClause s=selectStatement # insertStmt + | selectStatement # selectStmt ; atomSelectStatement @@ -1128,13 +1135,6 @@ selectStatementWithCTE : w=withClause? selectStatement ; -body - : insertClause selectClause lateralView? whereClause? groupByClause? havingClause? window_clause? qualifyClause? orderByClause? clusterByClause? - distributeByClause? sortByClause? limitClause? - | selectClause lateralView? whereClause? groupByClause? havingClause? window_clause? qualifyClause? orderByClause? clusterByClause? - distributeByClause? sortByClause? limitClause? - ; - insertClause : KW_INSERT ( KW_OVERWRITE destination ifNotExists? @@ -1667,8 +1667,7 @@ dropDataConnectorStatement ; tableAllColumns - : STAR - | tableOrView DOT STAR + : (id_ DOT)* STAR ; defaultValue @@ -1866,6 +1865,7 @@ VALUES(1),(2) means 2 rows, 1 column each. VALUES(1,2),(3,4) means 2 rows, 2 columns each. VALUES(1,2,3) means 1 row, 3 columns */ + valuesClause : KW_VALUES valuesTableConstructor ; diff --git a/src/grammar/impala/ImpalaSqlParser.g4 b/src/grammar/impala/ImpalaSqlParser.g4 index fadc6b9..b53915b 100644 --- a/src/grammar/impala/ImpalaSqlParser.g4 +++ b/src/grammar/impala/ImpalaSqlParser.g4 @@ -22,6 +22,11 @@ options { tokenVocab=ImpalaSqlLexer; caseInsensitive= true; + superClass=SQLParserBase; +} + +@header { +import SQLParserBase from '../SQLParserBase'; } program @@ -75,7 +80,7 @@ createStatement createTableSelect : KW_CREATE KW_EXTERNAL? KW_TABLE ifNotExists? tableNameCreate ( LPAREN columnDefinition (COMMA columnDefinition)* (COMMA constraintSpecification)? RPAREN - )? (KW_PARTITIONED KW_BY (partitionedBy | createColumnAliases))? createCommonItem ( + )? (KW_PARTITIONED KW_BY (columnAliases | partitionedBy))? createCommonItem ( KW_AS queryStatement )? ; @@ -555,6 +560,7 @@ functionNamePath columnNamePath : qualifiedName + | {this.shouldMatchEmpty()}? ; tableOrViewPath @@ -582,8 +588,8 @@ assignmentItem ; viewColumns - : LPAREN columnNamePath (KW_COMMENT stringLiteral)? ( - COMMA identifier (KW_COMMENT stringLiteral)? + : LPAREN columnNamePathCreate (KW_COMMENT stringLiteral)? ( + COMMA columnNamePathCreate (KW_COMMENT stringLiteral)? )* RPAREN ; @@ -610,6 +616,10 @@ foreignKeySpecification )? (KW_RELY)? ; +columnSpec + : columnNamePath type (KW_COMMENT stringLiteral)? + ; + columnDefinition : columnNamePathCreate type (KW_COMMENT stringLiteral)? ; @@ -625,7 +635,7 @@ kuduColumnDefinition ; columnSpecWithKudu - : columnNamePath type (KW_COMMENT stringLiteral)? (kuduAttributes kuduAttributes*?)? + : columnSpec? (kuduAttributes kuduAttributes*?)? ; createColumnSpecWithKudu @@ -712,7 +722,7 @@ properties ; partitionedBy - : LPAREN columnDefinition (COMMA columnDefinition)*? RPAREN + : LPAREN columnSpec (COMMA columnSpec)*? RPAREN ; sortedBy @@ -835,10 +845,6 @@ columnAliases : LPAREN columnNamePath (COMMA columnNamePath)* RPAREN ; -createColumnAliases - : LPAREN columnNamePathCreate (COMMA columnNamePathCreate)* RPAREN - ; - relationPrimary : tableOrViewPath | KW_LATERAL? subQueryRelation diff --git a/src/grammar/mysql/MySqlParser.g4 b/src/grammar/mysql/MySqlParser.g4 index 26e30e7..a6697a8 100644 --- a/src/grammar/mysql/MySqlParser.g4 +++ b/src/grammar/mysql/MySqlParser.g4 @@ -36,6 +36,11 @@ parser grammar MySqlParser; options { tokenVocab= MySqlLexer; caseInsensitive= true; + superClass=SQLParserBase; +} + +@header { +import SQLParserBase from '../SQLParserBase'; } // Top Level Description @@ -212,8 +217,8 @@ administrationStatement ; utilityStatement - : simpleDescribeStatement - | fullDescribeStatement + : fullDescribeStatement + | simpleDescribeStatement | analyzeDescribeStatement | helpStatement | useStatement @@ -273,16 +278,16 @@ createServer ; createTable - : KW_CREATE KW_TEMPORARY? KW_TABLE ifNotExists? tableNameCreate createDefinitions ( + : KW_CREATE KW_TEMPORARY? KW_TABLE ifNotExists? tb= tableNameCreate col=createDefinitions? ( tableOption (','? tableOption)* - )? partitionDefinitions? # copyCreateTable - | KW_CREATE KW_TEMPORARY? KW_TABLE ifNotExists? tableNameCreate createDefinitions? ( - tableOption (','? tableOption)* - )? partitionDefinitions? (KW_IGNORE | KW_REPLACE)? KW_AS? selectStatement # columnCreateTable + )? partitionDefinitions? (KW_IGNORE | KW_REPLACE)? KW_AS? selectStatement # queryCreateTable | KW_CREATE KW_TEMPORARY? KW_TABLE ifNotExists? tableNameCreate ( KW_LIKE tableName | '(' KW_LIKE tableName ')' - ) # queryCreateTable + ) # copyCreateTable + | KW_CREATE KW_TEMPORARY? KW_TABLE ifNotExists? tableNameCreate createDefinitions ( + tableOption (','? tableOption)* + )? partitionDefinitions? # columnCreateTable ; createTablespaceInnodb @@ -326,7 +331,7 @@ commonTableExpressions createView : KW_CREATE orReplace? (KW_ALGORITHM '=' algType=(KW_UNDEFINED | KW_MERGE | KW_TEMPTABLE))? ownerStatement? ( KW_SQL KW_SECURITY secContext=(KW_DEFINER | KW_INVOKER) - )? KW_VIEW viewNameCreate ('(' columnNames ')')? KW_AS ( + )? KW_VIEW viewNameCreate ('(' columnNameCreate (',' columnNameCreate)* ')')? KW_AS ( '(' withClause? selectStatement ')' | withClause? selectStatement ( KW_WITH checkOption=(KW_CASCADED | KW_LOCAL)? KW_CHECK KW_OPTION @@ -438,7 +443,7 @@ createDefinitions ; createDefinition - : columnName columnDefinition + : columnNameCreate columnDefinition | (KW_INDEX | KW_KEY) indexName? indexType? indexColumnNames indexOption* | (KW_FULLTEXT | KW_SPATIAL) (KW_INDEX | KW_KEY)? indexName? indexColumnNames indexOption* | constraintSymbol? KW_PRIMARY KW_KEY indexType? indexColumnNames indexOption* @@ -2052,15 +2057,15 @@ showStatement | KW_SHOW KW_EXTENDED? KW_FULL? columnsFormat=(KW_COLUMNS | KW_FIELDS) tableFormat=( KW_FROM | KW_IN - ) tableName (schemaFormat=(KW_FROM | KW_IN) databaseName)? showFilter? # showColumns - | KW_SHOW KW_CREATE (KW_DATABASE | KW_SCHEMA) ifNotExists? databaseNameCreate # showCreateDb - | KW_SHOW KW_CREATE (KW_EVENT | KW_PROCEDURE | KW_TRIGGER) fullId # showCreateFullIdObject - | KW_SHOW KW_CREATE KW_FUNCTION functionNameCreate # showCreateFunction - | KW_SHOW KW_CREATE KW_VIEW viewNameCreate # showCreateView - | KW_SHOW KW_CREATE KW_TABLE tableNameCreate # showCreateTable - | KW_SHOW KW_CREATE KW_USER userName # showCreateUser - | KW_SHOW KW_ENGINE engineName engineOption=(KW_STATUS | KW_MUTEX) # showEngine - | KW_SHOW showGlobalInfoClause # showGlobalInfo + ) tableName (schemaFormat=(KW_FROM | KW_IN) databaseName)? showFilter? # showColumns + | KW_SHOW KW_CREATE (KW_DATABASE | KW_SCHEMA) ifNotExists? databaseName # showCreateDb + | KW_SHOW KW_CREATE (KW_EVENT | KW_PROCEDURE | KW_TRIGGER) fullId # showCreateFullIdObject + | KW_SHOW KW_CREATE KW_FUNCTION functionName # showCreateFunction + | KW_SHOW KW_CREATE KW_VIEW viewName # showCreateView + | KW_SHOW KW_CREATE KW_TABLE tableName # showCreateTable + | KW_SHOW KW_CREATE KW_USER userName # showCreateUser + | KW_SHOW KW_ENGINE engineName engineOption=(KW_STATUS | KW_MUTEX) # showEngine + | KW_SHOW showGlobalInfoClause # showGlobalInfo | KW_SHOW errorFormat=(KW_ERRORS | KW_WARNINGS) ( KW_LIMIT (offset=decimalLiteral ',')? rowCount=decimalLiteral )? # showErrors @@ -2396,6 +2401,7 @@ columnNames columnName : uid (dottedId dottedId?)? | .? dottedId dottedId? + | {this.shouldMatchEmpty()}? ; tablespaceNameCreate @@ -2751,12 +2757,12 @@ orReplace // Functions functionCall - : specificFunction # specificFunctionCall - | aggregateWindowedFunction # aggregateFunctionCall - | nonAggregateWindowedFunction # nonAggregateFunctionCall - | scalarFunctionName '(' functionArgs? ')' # scalarFunctionCall - | functionName '(' functionArgs? ')' # udfFunctionCall - | passwordFunctionClause # passwordFunctionCall + : specificFunction # specificFunctionCall + | aggregateWindowedFunction # aggregateFunctionCall + | nonAggregateWindowedFunction # nonAggregateFunctionCall + | scalarFunctionName ('(' ')' | '(' functionArgs ')') # scalarFunctionCall + | functionName ('(' ')' | '(' functionArgs ')') # udfFunctionCall + | passwordFunctionClause # passwordFunctionCall ; specificFunction @@ -2925,7 +2931,6 @@ functionArgs functionArg : constant - | columnName | functionCall | expression ; @@ -2941,22 +2946,23 @@ expression ; predicate - : predicate KW_NOT? KW_IN '(' (selectStatement | expressions) ')' # inPredicate - | predicate KW_IS nullNotnull # isNullPredicate - | left=predicate comparisonOperator right=predicate # binaryComparisonPredicate - | predicate comparisonOperator quantifier=(KW_ALL | KW_ANY | KW_SOME) '(' selectStatement ')' # subqueryComparisonPredicate - | predicate KW_NOT? KW_BETWEEN predicate KW_AND predicate # betweenPredicate - | predicate KW_SOUNDS KW_LIKE predicate # soundsLikePredicate - | predicate KW_NOT? KW_LIKE predicate (KW_ESCAPE STRING_LITERAL)? # likePredicate - | predicate KW_NOT? regex=(KW_REGEXP | KW_RLIKE) predicate # regexpPredicate - | predicate KW_MEMBER KW_OF '(' predicate ')' # jsonMemberOfPredicate - | expressionAtom # expressionAtomPredicate + : predicate KW_NOT? KW_IN '(' (selectStatement | expressions) ')' # inPredicate + | predicate KW_IS nullNotnull # isNullPredicate + | predicate comparisonOperator ( + quantifier=(KW_ALL | KW_ANY | KW_SOME) '(' subQuery=selectStatement ')' + | right=predicate + ) # binaryComparisonPredicate + | predicate KW_NOT? KW_BETWEEN predicate KW_AND predicate # betweenPredicate + | predicate KW_SOUNDS KW_LIKE predicate # soundsLikePredicate + | predicate KW_NOT? KW_LIKE predicate (KW_ESCAPE STRING_LITERAL)? # likePredicate + | predicate KW_NOT? regex=(KW_REGEXP | KW_RLIKE) predicate # regexpPredicate + | predicate KW_MEMBER KW_OF '(' predicate ')' # jsonMemberOfPredicate + | expressionAtom # expressionAtomPredicate ; // Add in ASTVisitor nullNotnull in constant expressionAtom : constant # constantExpressionAtom - | columnName # columnNameExpressionAtom | functionCall # functionCallExpressionAtom | expressionAtom KW_COLLATE collationName # collateExpressionAtom | mysqlVariable # mysqlVariableExpressionAtom @@ -2968,9 +2974,10 @@ expressionAtom | KW_EXISTS '(' selectStatement ')' # existsExpressionAtom | '(' selectStatement ')' # subqueryExpressionAtom | KW_INTERVAL expression intervalType # intervalExpressionAtom + | left=expressionAtom jsonOperator right=expressionAtom # jsonExpressionAtom | left=expressionAtom bitOperator right=expressionAtom # bitExpressionAtom | left=expressionAtom mathOperator right=expressionAtom # mathExpressionAtom - | left=expressionAtom jsonOperator right=expressionAtom # jsonExpressionAtom + | columnName # columnNameExpressionAtom ; unaryOperator @@ -2982,18 +2989,18 @@ unaryOperator ; comparisonOperator - : comparisonBase - | '<' '>' + : '<' '>' | '!' '=' | '<' '=' '>' + | comparisonBase ; comparisonBase - : '=' + : '<' '=' + | '>' '=' + | '=' | '>' | '<' - | '<' '=' - | '>' '=' ; logicalOperator diff --git a/src/grammar/pgsql/PostgreSQLParser.g4 b/src/grammar/pgsql/PostgreSQLParser.g4 index f540041..d2ce0b5 100644 --- a/src/grammar/pgsql/PostgreSQLParser.g4 +++ b/src/grammar/pgsql/PostgreSQLParser.g4 @@ -42,6 +42,11 @@ parser grammar PostgreSQLParser; options { tokenVocab= PostgreSQLLexer; caseInsensitive= true; + superClass=SQLParserBase; +} + +@header { +import SQLParserBase from '../SQLParserBase'; } program @@ -298,7 +303,7 @@ createschemastmt ; schema_name_create - : colid attrs? + : colid attrs? # schemaNameCreate ; optschemaeltlist @@ -469,7 +474,7 @@ altertablestmt | KW_FINALIZE )? | KW_ALTER KW_INDEX opt_if_exists? qualified_name (alter_table_cmds | index_partition_cmd) - | KW_ALTER KW_INDEX KW_ALL KW_IN KW_TABLESPACE tablespace_name (KW_OWNED KW_BY role_list)? KW_SET KW_TABLESPACE tablespace_name_create opt_nowait? + | KW_ALTER KW_INDEX KW_ALL KW_IN KW_TABLESPACE tablespace_name (KW_OWNED KW_BY role_list)? KW_SET KW_TABLESPACE tablespace_name opt_nowait? | KW_ALTER KW_SEQUENCE opt_if_exists? qualified_name alter_table_cmds | KW_ALTER KW_VIEW opt_if_exists? view_name alter_table_cmds | KW_ALTER KW_MATERIALIZED KW_VIEW opt_if_exists? view_name alter_table_cmds @@ -538,7 +543,7 @@ alter_table_cmd | KW_FORCE KW_ROW KW_LEVEL KW_SECURITY | KW_NO KW_FORCE KW_ROW KW_LEVEL KW_SECURITY | KW_DROP KW_COLUMN? opt_if_exists? column_name opt_drop_behavior? - | KW_ADD KW_COLUMN? opt_if_not_exists? columnDefCluase + | KW_ADD KW_COLUMN? opt_if_not_exists? column_def | KW_ALTER KW_COLUMN? column_name alter_column_default | KW_ALTER KW_COLUMN? column_name (KW_DROP | KW_SET) KW_NOT KW_NULL | KW_ALTER KW_COLUMN? column_name KW_DROP KW_EXPRESSION opt_if_exists? @@ -674,10 +679,10 @@ copy_opt_item | KW_HEADER | KW_QUOTE opt_as? sconst | KW_ESCAPE opt_as? sconst - | KW_FORCE KW_QUOTE columnlist + | KW_FORCE KW_QUOTE column_list | KW_FORCE KW_QUOTE STAR - | KW_FORCE KW_NOT KW_NULL columnlist - | KW_FORCE KW_NULL columnlist + | KW_FORCE KW_NOT KW_NULL column_list + | KW_FORCE KW_NULL column_list | KW_ENCODING sconst ; @@ -722,7 +727,7 @@ createstmt | KW_OF any_name opttypedtableelementlist? optpartitionspec? table_access_method_clause? optwith? oncommitoption? opttablespace? | KW_PARTITION KW_OF qualified_name opttypedtableelementlist? partitionboundspec optpartitionspec? table_access_method_clause? optwith? oncommitoption? opttablespace? - ) + ) # columnCreateTable ; opttemp @@ -754,7 +759,7 @@ typedtableelementlist ; tableelement - : columnDef + : column_def | tablelikeclause | tableconstraint ; @@ -764,14 +769,8 @@ typedtableelement | tableconstraint ; -columnDefCluase - : column_name typename create_generic_options? storageCluase? compressionCluase? ( - KW_COLLATE any_name - )? (KW_WITH KW_OPTIONS)? colquallist - ; - -columnDef - : column_name typename create_generic_options? storageCluase? compressionCluase? ( +column_def + : column_name_create typename create_generic_options? storageCluase? compressionCluase? ( KW_COLLATE any_name )? (KW_WITH KW_OPTIONS)? colquallist ; @@ -785,7 +784,7 @@ storageCluase ; columnOptions - : column_name (KW_WITH KW_OPTIONS)? colquallist + : column_name_create (KW_WITH KW_OPTIONS)? colquallist ; colquallist @@ -859,16 +858,16 @@ tableconstraint constraintelem : KW_CHECK OPEN_PAREN a_expr CLOSE_PAREN constraintattributespec | KW_UNIQUE ( - OPEN_PAREN columnlist CLOSE_PAREN opt_c_include? opt_definition? optconstablespace? constraintattributespec + OPEN_PAREN column_list CLOSE_PAREN opt_c_include? opt_definition? optconstablespace? constraintattributespec | existingindex constraintattributespec ) | KW_PRIMARY KW_KEY ( - OPEN_PAREN columnlist CLOSE_PAREN opt_c_include? opt_definition? optconstablespace? constraintattributespec + OPEN_PAREN column_list CLOSE_PAREN opt_c_include? opt_definition? optconstablespace? constraintattributespec | existingindex constraintattributespec ) | KW_EXCLUDE access_method_clause? OPEN_PAREN exclusionconstraintlist CLOSE_PAREN opt_c_include? opt_definition? optconstablespace? exclusionwhereclause? constraintattributespec - | KW_FOREIGN KW_KEY OPEN_PAREN columnlist CLOSE_PAREN KW_REFERENCES qualified_name opt_column_list? key_match? key_actions? + | KW_FOREIGN KW_KEY OPEN_PAREN column_list CLOSE_PAREN KW_REFERENCES qualified_name opt_column_list? key_match? key_actions? constraintattributespec ; @@ -877,15 +876,23 @@ opt_no_inherit ; opt_column_list - : OPEN_PAREN columnlist CLOSE_PAREN + : OPEN_PAREN column_list CLOSE_PAREN ; -columnlist +opt_column_list_create + : OPEN_PAREN column_list_create CLOSE_PAREN + ; + +column_list : column_name (COMMA column_name)* ; +column_list_create + : column_name_create (COMMA column_name_create)* + ; + opt_c_include - : KW_INCLUDE OPEN_PAREN columnlist CLOSE_PAREN + : KW_INCLUDE OPEN_PAREN column_list CLOSE_PAREN ; key_match @@ -923,7 +930,7 @@ key_action : KW_NO KW_ACTION | KW_RESTRICT | KW_CASCADE - | KW_SET (KW_NULL | KW_DEFAULT) columnlist? + | KW_SET (KW_NULL | KW_DEFAULT) column_list? ; optinherit @@ -990,11 +997,11 @@ alterstatsstmt ; createasstmt - : KW_CREATE opttemp? KW_TABLE opt_if_not_exists? create_as_target KW_AS selectstmt opt_with_data? + : KW_CREATE opttemp? KW_TABLE opt_if_not_exists? create_as_target KW_AS selectstmt opt_with_data? # queryCreateTable ; create_as_target - : table_name_create opt_column_list? table_access_method_clause? optwith? oncommitoption? opttablespace? + : table_name_create opt_column_list_create? table_access_method_clause? optwith? oncommitoption? opttablespace? ; opt_with_data @@ -1002,11 +1009,11 @@ opt_with_data ; creatematviewstmt - : KW_CREATE optnolog? KW_MATERIALIZED KW_VIEW opt_if_not_exists? create_mv_target KW_AS selectstmt opt_with_data? + : KW_CREATE optnolog? KW_MATERIALIZED KW_VIEW opt_if_not_exists? create_mv_target KW_AS selectstmt opt_with_data? # createMaterializedView ; create_mv_target - : view_name_create opt_column_list? table_access_method_clause? opt_reloptions? opttablespace? + : view_name_create opt_column_list_create? table_access_method_clause? opt_reloptions? opttablespace? ; optnolog @@ -1232,9 +1239,9 @@ alterforeignserverstmt createforeigntablestmt : KW_CREATE KW_FOREIGN KW_TABLE opt_if_not_exists? table_name_create OPEN_PAREN opttableelementlist? CLOSE_PAREN optinherit? KW_SERVER name - create_generic_options? + create_generic_options? # createForeignTable | KW_CREATE KW_FOREIGN KW_TABLE opt_if_not_exists? table_name_create KW_PARTITION KW_OF table_name opttypedtableelementlist? partitionboundspec - KW_SERVER name create_generic_options? + KW_SERVER name create_generic_options? # createPartitionForeignTable ; importforeignschemastmt @@ -1363,7 +1370,7 @@ triggeroneevent : KW_INSERT | KW_DELETE | KW_UPDATE - | KW_UPDATE KW_OF columnlist + | KW_UPDATE KW_OF column_list | KW_TRUNCATE ; @@ -1806,8 +1813,8 @@ privileges : privilege_list | KW_ALL | KW_ALL KW_PRIVILEGES - | KW_ALL OPEN_PAREN columnlist CLOSE_PAREN - | KW_ALL KW_PRIVILEGES OPEN_PAREN columnlist CLOSE_PAREN + | KW_ALL OPEN_PAREN column_list CLOSE_PAREN + | KW_ALL KW_PRIVILEGES OPEN_PAREN column_list CLOSE_PAREN | beforeprivilegeselectlist ; @@ -2350,28 +2357,28 @@ opt_no ; alterobjectschemastmt - : KW_ALTER KW_AGGREGATE aggregate_with_argtypes KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_COLLATION any_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_CONVERSION any_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_DOMAIN any_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_EXTENSION name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_FUNCTION function_with_argtypes KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_OPERATOR operator_with_argtypes KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_OPERATOR KW_CLASS any_name KW_USING name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_OPERATOR KW_FAMILY any_name KW_USING name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_PROCEDURE procedure_with_argtypes KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_ROUTINE routine_with_argtypes KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_TABLE opt_if_exists? relation_expr KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_STATISTICS any_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_TEXT KW_SEARCH KW_PARSER any_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_TEXT KW_SEARCH KW_DICTIONARY any_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_TEXT KW_SEARCH KW_TEMPLATE any_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_TEXT KW_SEARCH KW_CONFIGURATION any_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_SEQUENCE opt_if_exists? qualified_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_VIEW opt_if_exists? view_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_MATERIALIZED KW_VIEW opt_if_exists? view_name KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_FOREIGN KW_TABLE opt_if_exists? relation_expr KW_SET KW_SCHEMA schema_name_create - | KW_ALTER KW_TYPE any_name KW_SET KW_SCHEMA schema_name_create + : KW_ALTER KW_AGGREGATE aggregate_with_argtypes KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_COLLATION any_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_CONVERSION any_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_DOMAIN any_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_EXTENSION name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_FUNCTION function_with_argtypes KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_OPERATOR operator_with_argtypes KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_OPERATOR KW_CLASS any_name KW_USING name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_OPERATOR KW_FAMILY any_name KW_USING name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_PROCEDURE procedure_with_argtypes KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_ROUTINE routine_with_argtypes KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_TABLE opt_if_exists? relation_expr KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_STATISTICS any_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_TEXT KW_SEARCH KW_PARSER any_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_TEXT KW_SEARCH KW_DICTIONARY any_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_TEXT KW_SEARCH KW_TEMPLATE any_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_TEXT KW_SEARCH KW_CONFIGURATION any_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_SEQUENCE opt_if_exists? qualified_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_VIEW opt_if_exists? view_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_MATERIALIZED KW_VIEW opt_if_exists? view_name KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_FOREIGN KW_TABLE opt_if_exists? relation_expr KW_SET KW_SCHEMA schema_name + | KW_ALTER KW_TYPE any_name KW_SET KW_SCHEMA schema_name ; alteroperatorstmt @@ -2571,9 +2578,9 @@ opt_transaction_chain viewstmt : KW_CREATE (KW_OR KW_REPLACE)? opttemp? ( - KW_VIEW view_name_create opt_column_list? opt_reloptions? - | KW_RECURSIVE KW_VIEW view_name_create OPEN_PAREN columnlist CLOSE_PAREN opt_reloptions? - ) KW_AS selectstmt opt_check_option? + KW_VIEW view_name_create opt_column_list_create? opt_reloptions? + | KW_RECURSIVE KW_VIEW view_name_create OPEN_PAREN column_list CLOSE_PAREN opt_reloptions? + ) KW_AS selectstmt opt_check_option? # createView ; opt_check_option @@ -2585,7 +2592,7 @@ loadstmt ; createdbstmt - : KW_CREATE KW_DATABASE database_name_create opt_with? createdb_opt_list? + : KW_CREATE KW_DATABASE database_name_create opt_with? createdb_opt_list? # createDatabase ; createdb_opt_list @@ -2762,7 +2769,7 @@ opt_freeze ; opt_name_list - : OPEN_PAREN columnlist CLOSE_PAREN + : OPEN_PAREN column_list CLOSE_PAREN ; vacuum_relation @@ -2843,7 +2850,7 @@ deallocatestmt ; insertstmt - : opt_with_clause? KW_INSERT KW_INTO insert_target insert_rest opt_on_conflict? returning_clause? + : opt_with_clause? KW_INSERT KW_INTO insert_target insert_rest opt_on_conflict? returning_clause? # insertStatement ; insert_target @@ -2971,8 +2978,8 @@ opt_hold */ selectstmt - : select_no_parens - | select_with_parens + : select_no_parens # selectStatement + | select_with_parens # selectStatement ; select_with_parens @@ -3029,11 +3036,11 @@ common_table_expr ; search_cluase - : KW_SEARCH (KW_BREADTH | KW_DEPTH) KW_FIRST KW_BY columnlist KW_SET column_name + : KW_SEARCH (KW_BREADTH | KW_DEPTH) KW_FIRST KW_BY column_list KW_SET column_name ; cycle_cluase - : KW_CYCLE columnlist KW_SET column_name (KW_TO name KW_DEFAULT name)? KW_USING column_name + : KW_CYCLE column_list KW_SET column_name (KW_TO name KW_DEFAULT name)? KW_USING column_name ; opt_materialized @@ -3265,7 +3272,7 @@ join_type ; join_qual - : KW_USING OPEN_PAREN columnlist CLOSE_PAREN + : KW_USING OPEN_PAREN column_list CLOSE_PAREN | KW_ON a_expr ; @@ -3276,11 +3283,11 @@ relation_expr ; view_relation_expr - : KW_ONLY? view_name STAR? + : KW_ONLY? view_name STAR? column_list? where_clause? ; publication_relation_expr - : KW_TABLE KW_ONLY? table_name STAR? (OPEN_PAREN columnlist CLOSE_PAREN)? where_clause? + : KW_TABLE KW_ONLY? table_name STAR? (OPEN_PAREN column_list CLOSE_PAREN)? where_clause? | KW_TABLE KW_ONLY ( table_name | OPEN_PAREN table_name CLOSE_PAREN) | KW_TABLES KW_IN KW_SCHEMA (schema_name | KW_CURRENT_SCHEMA) ; @@ -3949,13 +3956,13 @@ column_expr_list ; column_expr - : column_name - | (OPEN_PAREN a_expr CLOSE_PAREN) + : (OPEN_PAREN a_expr CLOSE_PAREN) + | column_name ; column_expr_noparen - : column_name - | a_expr + : a_expr + | column_name ; func_arg_list @@ -4104,27 +4111,27 @@ procedure_name_list ; tablespace_name_create - : colid indirection? + : colid indirection? # tablespaceNameCreate ; tablespace_name - : colid indirection? + : colid indirection? # tablespaceName ; table_name_create - : colid indirection? + : colid indirection? # tableNameCreate ; table_name - : colid indirection? + : colid indirection? # tableName ; view_name_create - : colid indirection? + : colid indirection? # viewNameCreate ; view_name - : colid attrs? + : colid attrs? # viewName ; qualified_name @@ -4140,41 +4147,42 @@ name_list ; database_name_create - : colid attrs? + : colid attrs? # databaseNameCreate ; database_name - : colid attrs? + : colid attrs? # databaseName ; schema_name - : colid attrs? + : colid attrs? # schemaName ; routine_name_create - : colid + : colid # routineNameCreate ; routine_name - : colid + : colid # routineName ; procedure_name - : type_function_name - | colid indirection + : type_function_name # procedureName + | colid indirection # procedureName ; procedure_name_create - : type_function_name - | colid indirection + : type_function_name # procedureNameCreate + | colid indirection # procedureNameCreate ; column_name - : colid indirection_el* + : colid indirection_el* # columnName + | {this.shouldMatchEmpty()}? # columnNameMatch ; column_name_create - : colid + : colid # columnNameCreate ; name @@ -4190,13 +4198,13 @@ file_name ; function_name_create - : type_function_name - | colid indirection + : type_function_name # functionNameCreate + | colid indirection # functionNameCreate ; function_name - : type_function_name - | colid indirection + : type_function_name # functionName + | colid indirection # functionName ; usual_name @@ -5353,13 +5361,15 @@ merge_when_clause ; merge_insert - : KW_INSERT (OPEN_PAREN columnlist CLOSE_PAREN)? (KW_OVERRIDING (KW_SYSTEM | KW_USER) KW_VALUE)? default_values_or_values + : KW_INSERT (OPEN_PAREN column_list CLOSE_PAREN)? ( + KW_OVERRIDING (KW_SYSTEM | KW_USER) KW_VALUE + )? default_values_or_values ; merge_update : KW_UPDATE KW_SET ( column_name EQUAL exprofdefault - | OPEN_PAREN columnlist CLOSE_PAREN EQUAL OPEN_PAREN exprofdefaultlist CLOSE_PAREN + | OPEN_PAREN column_list CLOSE_PAREN EQUAL OPEN_PAREN exprofdefaultlist CLOSE_PAREN )+ ; diff --git a/src/grammar/spark/SparkSqlLexer.g4 b/src/grammar/spark/SparkSqlLexer.g4 index a3d966c..8cc813f 100644 --- a/src/grammar/spark/SparkSqlLexer.g4 +++ b/src/grammar/spark/SparkSqlLexer.g4 @@ -15,7 +15,7 @@ /** * This file is an adaptation of spark's spark/sql/api/src/main/antlr4/org/apache/spark/sql/catalyst/parser/SqlBaseLexer.g4 grammar. - * Reference: https://github.com/apache/spark/blob/master/sql/api/src/main/antlr4/org/apache/spark/sql/catalyst/parser/SqlBaseLexer.g4 + * Reference: https://github.com/apache/spark/blob/v3.5.0/sql/api/src/main/antlr4/org/apache/spark/sql/catalyst/parser/SqlBaseLexer.g4 */ // $antlr-format alignTrailingComments true, columnLimit 150, maxEmptyLinesToKeep 1, reflowComments false, useTab false diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index bb3f7d9..df66eb9 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -15,7 +15,7 @@ /** * This file is an adaptation of spark's spark/sql/api/src/main/antlr4/org/apache/spark/sql/catalyst/parser/SqlBaseParser.g4 grammar. - * Reference: https://github.com/apache/spark/blob/master/sql/api/src/main/antlr4/org/apache/spark/sql/catalyst/parser/SqlBaseParser.g4 + * Reference: https://github.com/apache/spark/blob/v3.5.0/sql/api/src/main/antlr4/org/apache/spark/sql/catalyst/parser/SqlBaseParser.g4 */ // $antlr-format alignTrailingComments true, columnLimit 150, minEmptyLines 1, maxEmptyLinesToKeep 1, reflowComments false, useTab false @@ -27,6 +27,11 @@ parser grammar SparkSqlParser; options { tokenVocab=SparkSqlLexer; caseInsensitive= true; + superClass=SQLParserBase; +} + +@header { +import SQLParserBase from '../SQLParserBase'; } program @@ -38,78 +43,78 @@ singleStatement ; statement - : query - | ctes? dmlStatementNoWith - | KW_USE dbSchemaName - | KW_USE dbSchema dbSchemaName - | KW_SET KW_CATALOG (identifier | stringLit) - | KW_CREATE dbSchema (ifNotExists)? dbSchemaNameCreate ( + : query # statementDefault + | ctes? dmlStatementNoWith # dmlStatement + | KW_USE namespace? namespaceName # useNamespace + | KW_SET KW_CATALOG (identifier | stringLit) # setCatalog + | KW_CREATE namespace (ifNotExists)? namespaceNameCreate ( commentSpec | locationSpec | (KW_WITH (KW_DBPROPERTIES | KW_PROPERTIES) propertyList) - )* - | KW_ALTER dbSchema dbSchemaName KW_SET (KW_DBPROPERTIES | KW_PROPERTIES) propertyList - | KW_ALTER dbSchema dbSchemaName KW_SET locationSpec - | KW_DROP dbSchema (ifExists)? dbSchemaName (KW_RESTRICT | KW_CASCADE)? - | KW_SHOW dbSchemas ((KW_FROM | KW_IN) multipartIdentifier)? (KW_LIKE? pattern=stringLit)? + )* # createNamespace + | KW_ALTER namespace namespaceName KW_SET (KW_DBPROPERTIES | KW_PROPERTIES) propertyList # setNamespaceProperties + | KW_ALTER namespace namespaceName KW_SET locationSpec # setNamespaceLocation + | KW_DROP namespace (ifExists)? namespaceName (KW_RESTRICT | KW_CASCADE)? # dropNamespace + | KW_SHOW namespaces ((KW_FROM | KW_IN) multipartIdentifier)? (KW_LIKE? pattern=stringLit)? # showNamespaces | createTableHeader (LEFT_PAREN createOrReplaceTableColTypeList RIGHT_PAREN)? tableProvider? createTableClauses ( KW_AS? query - )? + )? # createTable | KW_CREATE KW_TABLE (ifNotExists)? target=tableNameCreate KW_LIKE source=tableName ( tableProvider | rowFormat | createFileFormat | locationSpec | (KW_TBLPROPERTIES tableProps=propertyList) - )* + )* # createTableLike | replaceTableHeader (LEFT_PAREN createOrReplaceTableColTypeList RIGHT_PAREN)? tableProvider? createTableClauses ( KW_AS? query - )? + )? # replaceTable | KW_ANALYZE KW_TABLE tableName partitionSpec? KW_COMPUTE KW_STATISTICS ( KW_NOSCAN | KW_FOR KW_COLUMNS columnNameSeq | KW_FOR KW_ALL KW_COLUMNS - )? - | KW_ANALYZE KW_TABLES ((KW_FROM | KW_IN) dbSchemaName)? KW_COMPUTE KW_STATISTICS (KW_NOSCAN)? - | KW_ALTER KW_TABLE tableName KW_ADD KW_COLUMN qualifiedColTypeWithPositionForAdd - | KW_ALTER KW_TABLE tableName KW_ADD KW_COLUMNS LEFT_PAREN qualifiedColTypeWithPositionSeqForAdd RIGHT_PAREN - | KW_ALTER KW_TABLE table=tableName KW_RENAME KW_COLUMN columnName KW_TO columnNameCreate - | KW_ALTER KW_TABLE tableName KW_DROP KW_COLUMN (ifExists)? columnName - | KW_ALTER KW_TABLE tableName KW_DROP KW_COLUMNS (ifExists)? LEFT_PAREN columnNameSeq RIGHT_PAREN - | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_RENAME KW_TO multipartIdentifier - | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_SET KW_TBLPROPERTIES propertyList - | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_UNSET KW_TBLPROPERTIES (ifExists)? propertyList - | KW_ALTER KW_TABLE table=tableName (KW_ALTER | KW_CHANGE) KW_COLUMN? column=columnName alterColumnAction? - | KW_ALTER KW_TABLE table=tableName partitionSpec? KW_CHANGE KW_COLUMN? colName=columnName colType colPosition? - | KW_ALTER KW_TABLE table=tableName partitionSpec? KW_REPLACE KW_COLUMNS LEFT_PAREN qualifiedColTypeWithPositionSeqForReplace RIGHT_PAREN + )? # analyze + | KW_ANALYZE KW_TABLES ((KW_FROM | KW_IN) namespaceName)? KW_COMPUTE KW_STATISTICS (KW_NOSCAN)? # analyzeTables + | KW_ALTER KW_TABLE tableName KW_ADD KW_COLUMN qualifiedColTypeWithPositionForAdd # alterTableAddColumn + | KW_ALTER KW_TABLE tableName KW_ADD KW_COLUMNS LEFT_PAREN qualifiedColTypeWithPositionSeqForAdd RIGHT_PAREN # alterTableAddColumns + | KW_ALTER KW_TABLE table=tableName KW_RENAME KW_COLUMN columnName KW_TO columnNameCreate # renameTableColumn + | KW_ALTER KW_TABLE tableName KW_DROP KW_COLUMN (ifExists)? columnName # alterTableDropColumn + | KW_ALTER KW_TABLE tableName KW_DROP KW_COLUMNS (ifExists)? LEFT_PAREN columnNameSeq RIGHT_PAREN # dropTableColumns + | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_RENAME KW_TO multipartIdentifier # renameTable + | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_SET KW_TBLPROPERTIES propertyList # setTableProperties + | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_UNSET KW_TBLPROPERTIES (ifExists)? propertyList # unsetTableProperties + | KW_ALTER KW_TABLE table=tableName (KW_ALTER | KW_CHANGE) KW_COLUMN? column=columnName alterColumnAction? # alterTableAlterColumn + | KW_ALTER KW_TABLE table=tableName partitionSpec? KW_CHANGE KW_COLUMN? colName=columnName colType colPosition? # hiveChangeColumn + | KW_ALTER KW_TABLE table=tableName partitionSpec? KW_REPLACE KW_COLUMNS LEFT_PAREN qualifiedColTypeWithPositionSeqForReplace RIGHT_PAREN # + hiveReplaceColumns | KW_ALTER KW_TABLE tableName (partitionSpec)? KW_SET KW_SERDE stringLit ( KW_WITH KW_SERDEPROPERTIES propertyList - )? - | KW_ALTER KW_TABLE tableName (partitionSpec)? KW_SET KW_SERDEPROPERTIES propertyList - | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_ADD (ifNotExists)? partitionSpecLocation+ - | KW_ALTER KW_TABLE tableName partitionSpec KW_RENAME KW_TO partitionSpec + )? # setTableSerDe + | KW_ALTER KW_TABLE tableName (partitionSpec)? KW_SET KW_SERDEPROPERTIES propertyList # setTableSerDeProperties + | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_ADD (ifNotExists)? partitionSpecLocation+ # addTablePartition + | KW_ALTER KW_TABLE tableName partitionSpec KW_RENAME KW_TO partitionSpec # renameTablePartition | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_DROP (ifExists)? partitionSpec ( COMMA partitionSpec - )* KW_PURGE? - | KW_ALTER KW_TABLE tableName (partitionSpec)? KW_SET locationSpec - | KW_ALTER KW_TABLE tableName KW_RECOVER KW_PARTITIONS - | KW_ALTER KW_MATERIALIZED KW_VIEW viewName (KW_ENABLE | KW_DISABLE) KW_REWRITE - | KW_ALTER KW_MATERIALIZED KW_VIEW viewName KW_SET KW_TBLPROPERTIES propertyList - | KW_DROP KW_TABLE (ifExists)? tableName KW_PURGE? - | KW_DROP KW_VIEW (ifExists)? viewName - | KW_DROP KW_MATERIALIZED KW_VIEW (ifExists)? viewName + )* KW_PURGE? # dropTablePartitions + | KW_ALTER KW_TABLE tableName (partitionSpec)? KW_SET locationSpec # setTableLocation + | KW_ALTER KW_TABLE tableName KW_RECOVER KW_PARTITIONS # recoverPartitions + | KW_ALTER KW_MATERIALIZED KW_VIEW viewName (KW_ENABLE | KW_DISABLE) KW_REWRITE # alterMaterializedViewRewrite + | KW_ALTER KW_MATERIALIZED KW_VIEW viewName KW_SET KW_TBLPROPERTIES propertyList # alterMaterializedViewProperties + | KW_DROP KW_TABLE (ifExists)? tableName KW_PURGE? # dropTable + | KW_DROP KW_VIEW (ifExists)? viewName # dropView + | KW_DROP KW_MATERIALIZED KW_VIEW (ifExists)? viewName # dropMaterializedView | KW_CREATE (KW_OR KW_REPLACE)? (KW_GLOBAL? KW_TEMPORARY)? KW_VIEW (ifNotExists)? viewNameCreate identifierCommentList? ( commentSpec | (KW_PARTITIONED KW_ON identifierList) | (KW_TBLPROPERTIES propertyList) - )* KW_AS query + )* KW_AS query # createView | KW_CREATE (KW_OR KW_REPLACE)? KW_GLOBAL? KW_TEMPORARY KW_VIEW viewNameCreate ( LEFT_PAREN colTypeList RIGHT_PAREN - )? tableProvider (KW_OPTIONS propertyList)? - | KW_ALTER KW_VIEW viewName KW_AS? query + )? tableProvider (KW_OPTIONS propertyList)? # createTempViewUsing + | KW_ALTER KW_VIEW viewName KW_AS? query # alterViewQuery | KW_CREATE (KW_OR KW_REPLACE)? KW_TEMPORARY? KW_FUNCTION (ifNotExists)? functionNameCreate KW_AS className=stringLit ( KW_USING resource (COMMA resource)* - )? + )? # createFunction | // Self developed materialized view syntax by dtstack, spark not support now. KW_CREATE KW_MATERIALIZED KW_VIEW (ifNotExists)? viewNameCreate tableProvider? ( @@ -122,62 +127,62 @@ statement | locationSpec | commentSpec | (KW_TBLPROPERTIES tableProps=propertyList) - )* KW_AS query - | KW_DROP KW_TEMPORARY? KW_FUNCTION (ifExists)? functionName - | KW_DECLARE (KW_OR KW_REPLACE)? KW_VARIABLE? functionName dataType? variableDefaultExpression? - | KW_DROP KW_TEMPORARY KW_VARIABLE (ifExists)? (tableName | viewName | functionName) - | KW_EXPLAIN (KW_LOGICAL | KW_FORMATTED | KW_EXTENDED | KW_CODEGEN | KW_COST)? statement - | KW_SHOW KW_TABLES ((KW_FROM | KW_IN) dbSchemaName)? (KW_LIKE? pattern=stringLit)? - | KW_SHOW KW_TABLE KW_EXTENDED ((KW_FROM | KW_IN) ns=dbSchemaName)? KW_LIKE pattern=stringLit partitionSpec? - | KW_SHOW KW_TBLPROPERTIES table=tableName (LEFT_PAREN key=propertyKey RIGHT_PAREN)? - | KW_SHOW KW_COLUMNS (KW_FROM | KW_IN) table=tableName ((KW_FROM | KW_IN) dbSchemaName)? - | KW_SHOW KW_VIEWS ((KW_FROM | KW_IN) dbSchemaName)? (KW_LIKE? pattern=stringLit)? - | KW_SHOW KW_PARTITIONS tableName partitionSpec? - | KW_SHOW functionKind? KW_FUNCTIONS ((KW_FROM | KW_IN) ns=dbSchemaName)? ( + )* KW_AS query # createMaterializedView + | KW_DROP KW_TEMPORARY? KW_FUNCTION (ifExists)? functionName # dropFunction + | KW_DECLARE (KW_OR KW_REPLACE)? KW_VARIABLE? functionName dataType? variableDefaultExpression? # declareVariable + | KW_DROP KW_TEMPORARY KW_VARIABLE (ifExists)? (tableName | viewName | functionName) # dropVariable + | KW_EXPLAIN (KW_LOGICAL | KW_FORMATTED | KW_EXTENDED | KW_CODEGEN | KW_COST)? statement # explainStatement + | KW_SHOW KW_TABLES ((KW_FROM | KW_IN) namespaceName)? (KW_LIKE? pattern=stringLit)? # showTables + | KW_SHOW KW_TABLE KW_EXTENDED ((KW_FROM | KW_IN) ns=namespaceName)? KW_LIKE pattern=stringLit partitionSpec? # showTableExtended + | KW_SHOW KW_TBLPROPERTIES table=tableName (LEFT_PAREN key=propertyKey RIGHT_PAREN)? # showTblProperties + | KW_SHOW KW_COLUMNS (KW_FROM | KW_IN) table=tableName ((KW_FROM | KW_IN) namespaceName)? # showColumns + | KW_SHOW KW_VIEWS ((KW_FROM | KW_IN) namespaceName)? (KW_LIKE? pattern=stringLit)? # showViews + | KW_SHOW KW_PARTITIONS tableName partitionSpec? # showPartitions + | KW_SHOW functionKind? KW_FUNCTIONS ((KW_FROM | KW_IN) ns=namespaceName)? ( KW_LIKE? (legacy=multipartIdentifier | pattern=stringLit) - )? - | KW_SHOW KW_CREATE KW_TABLE tableName (KW_AS KW_SERDE)? - | KW_SHOW KW_CURRENT dbSchema - | KW_SHOW KW_CATALOGS (KW_LIKE? pattern=stringLit)? - | KW_SHOW KW_MATERIALIZED KW_VIEWS ((KW_FROM | KW_IN) db_name=dbSchemaName)? ( + )? # showFunctions + | KW_SHOW KW_CREATE KW_TABLE tableName (KW_AS KW_SERDE)? # showCreateTable + | KW_SHOW KW_CURRENT namespace # showCurrentNamespace + | KW_SHOW KW_CATALOGS (KW_LIKE? pattern=stringLit)? # showCatalogs + | KW_SHOW KW_MATERIALIZED KW_VIEWS ((KW_FROM | KW_IN) db_name=namespaceName)? ( KW_LIKE? pattern=stringLit - )? - | KW_SHOW KW_CREATE KW_MATERIALIZED KW_VIEW viewName (KW_AS KW_SERDE)? - | (KW_DESC | KW_DESCRIBE) KW_FUNCTION KW_EXTENDED? describeFuncName - | (KW_DESC | KW_DESCRIBE) KW_DATABASE KW_EXTENDED? dbSchemaName - | (KW_DESC | KW_DESCRIBE) KW_TABLE? option=(KW_EXTENDED | KW_FORMATTED)? tableName partitionSpec? describeColName? - | (KW_DESC | KW_DESCRIBE) KW_QUERY? query - | KW_COMMENT KW_ON dbSchema dbSchemaName KW_IS comment - | KW_COMMENT KW_ON KW_TABLE tableName KW_IS comment - | KW_REFRESH KW_TABLE tableName - | KW_REFRESH KW_FUNCTION functionName - | KW_REFRESH (stringLit | .*?) - | KW_REFRESH KW_MATERIALIZED KW_VIEW viewName - | KW_CACHE KW_LAZY? KW_TABLE tableName (KW_OPTIONS options=propertyList)? (KW_AS? query)? - | KW_UNCACHE KW_TABLE (ifExists)? tableName - | KW_CLEAR KW_CACHE - | KW_LOAD KW_DATA KW_LOCAL? KW_INPATH path=stringLit KW_OVERWRITE? KW_INTO KW_TABLE tableName partitionSpec? - | KW_TRUNCATE KW_TABLE tableName partitionSpec? - | (KW_MSCK)? KW_REPAIR KW_TABLE tableName (option=(KW_ADD | KW_DROP | KW_SYNC) KW_PARTITIONS)? - | op=(KW_ADD | KW_LIST) identifier .*? - | KW_SET KW_ROLE .*? - | KW_SET KW_TIME KW_ZONE interval - | KW_SET KW_TIME KW_ZONE timezone - | KW_SET KW_TIME KW_ZONE .*? - | KW_SET (KW_VARIABLE | KW_VAR) assignmentList - | KW_SET (KW_VARIABLE | KW_VAR) LEFT_PAREN multipartIdentifierList RIGHT_PAREN EQ LEFT_PAREN query RIGHT_PAREN - | KW_SET configKey EQ configValue - | KW_SET configKey (EQ .*?)? - | KW_SET .*? EQ configValue - | KW_SET .*? - | KW_RESET configKey - | KW_RESET .*? + )? # showMaterializedViews + | KW_SHOW KW_CREATE KW_MATERIALIZED KW_VIEW viewName (KW_AS KW_SERDE)? # showCreateMaterializedView + | (KW_DESC | KW_DESCRIBE) KW_FUNCTION KW_EXTENDED? describeFuncName # describeFunction + | (KW_DESC | KW_DESCRIBE) KW_DATABASE KW_EXTENDED? namespaceName # describeNamespace + | (KW_DESC | KW_DESCRIBE) KW_TABLE? option=(KW_EXTENDED | KW_FORMATTED)? tableName partitionSpec? describeColName? # describeRelation + | (KW_DESC | KW_DESCRIBE) KW_QUERY? query # describeQuery + | KW_COMMENT KW_ON namespace namespaceName KW_IS comment # commentNamespace + | KW_COMMENT KW_ON KW_TABLE tableName KW_IS comment # commentTable + | KW_REFRESH KW_TABLE tableName # refreshTable + | KW_REFRESH KW_FUNCTION functionName # refreshFunction + | KW_REFRESH (stringLit | .*?) # refreshResource + | KW_REFRESH KW_MATERIALIZED KW_VIEW viewName # refreshMaterializedView + | KW_CACHE KW_LAZY? KW_TABLE tableName (KW_OPTIONS options=propertyList)? (KW_AS? query)? # cacheTable + | KW_UNCACHE KW_TABLE (ifExists)? tableName # unCacheTable + | KW_CLEAR KW_CACHE # clearCache + | KW_LOAD KW_DATA KW_LOCAL? KW_INPATH path=stringLit KW_OVERWRITE? KW_INTO KW_TABLE tableName partitionSpec? # loadData + | KW_TRUNCATE KW_TABLE tableName partitionSpec? # truncateTable + | (KW_MSCK)? KW_REPAIR KW_TABLE tableName (option=(KW_ADD | KW_DROP | KW_SYNC) KW_PARTITIONS)? # repairTable + | op=(KW_ADD | KW_LIST) identifier .*? # manageResource + | KW_SET KW_ROLE .*? # failNativeCommand + | KW_SET KW_TIME KW_ZONE interval # setTimeZoneInterval + | KW_SET KW_TIME KW_ZONE timezone # setTimeZone + | KW_SET KW_TIME KW_ZONE .*? # setTimeZoneAny + | KW_SET (KW_VARIABLE | KW_VAR) assignmentList # setVariableAssignment + | KW_SET (KW_VARIABLE | KW_VAR) LEFT_PAREN multipartIdentifierList RIGHT_PAREN EQ LEFT_PAREN query RIGHT_PAREN # setVariableMultiAssignment + | KW_SET configKey EQ configValue # setConfig + | KW_SET configKey (EQ .*?)? # setConfigAndValue + | KW_SET .*? EQ configValue # setConfigAnyKey + | KW_SET .*? # setAny + | KW_RESET configKey # resetConfig + | KW_RESET .*? # resetAny | KW_CREATE KW_INDEX (ifNotExists)? identifier KW_ON KW_TABLE? tableName ( KW_USING indexType=identifier - )? LEFT_PAREN multipartIdentifierPropertyList RIGHT_PAREN (KW_OPTIONS options=propertyList)? - | KW_DROP KW_INDEX (ifExists)? identifier KW_ON KW_TABLE? tableName - | KW_OPTIMIZE tableName whereClause? zorderClause - | unsupportedHiveNativeCommands .*? + )? LEFT_PAREN multipartIdentifierPropertyList RIGHT_PAREN (KW_OPTIONS options=propertyList)? # createIndex + | KW_DROP KW_INDEX (ifExists)? identifier KW_ON KW_TABLE? tableName # dropIndex + | KW_OPTIMIZE tableName whereClause? zorderClause # optimizeTable + | unsupportedHiveNativeCommands .*? # unsupportHiveCommands ; timezone @@ -267,7 +272,7 @@ commentSpec ; query - : ctes? queryTerm queryOrganization + : ctes? queryTerm queryOrganization # queryStatement ; insertInto @@ -299,13 +304,13 @@ partitionVal | identifier EQ KW_DEFAULT ; -dbSchema +namespace : KW_NAMESPACE | KW_DATABASE | KW_SCHEMA ; -dbSchemas +namespaces : KW_NAMESPACES | KW_DATABASES | KW_SCHEMAS @@ -404,21 +409,21 @@ resource ; dmlStatementNoWith - : insertInto query - | fromClause multiInsertQueryBody+ - | KW_DELETE KW_FROM tableName tableAlias whereClause? - | KW_UPDATE tableName tableAlias setClause whereClause? + : insertInto query # insertFromQuery + | fromClause multiInsertQueryBody+ # multipleInsert + | KW_DELETE KW_FROM tableName tableAlias whereClause? # deleteFromTable + | KW_UPDATE tableName tableAlias setClause whereClause? # updateTable | KW_MERGE KW_INTO target=tableName targetAlias=tableAlias KW_USING ( source=identifierReference | LEFT_PAREN sourceQuery=query RIGHT_PAREN - ) sourceAlias=tableAlias KW_ON mergeCondition=booleanExpression matchedClause* notMatchedClause* notMatchedBySourceClause* + ) sourceAlias=tableAlias KW_ON mergeCondition=booleanExpression matchedClause* notMatchedClause* notMatchedBySourceClause* # mergeIntoTable ; -dbSchemaName +namespaceName : identifierReference ; -dbSchemaNameCreate +namespaceNameCreate : identifierReference ; @@ -440,6 +445,7 @@ viewName columnName : multipartIdentifier + | {this.shouldMatchEmpty()}? ; columnNameSeq @@ -782,11 +788,11 @@ identifierCommentList ; identifierComment - : identifier commentSpec? + : columnNameCreate commentSpec? ; relationPrimary - : identifierReference temporalClause? sample? tableAlias + : (tableName | viewName | identifierReference) temporalClause? sample? tableAlias | LEFT_PAREN query RIGHT_PAREN sample? tableAlias | LEFT_PAREN relation RIGHT_PAREN sample? tableAlias | inlineTable @@ -1811,7 +1817,7 @@ nonReserved | KW_FOREIGN | KW_FORMAT | KW_FORMATTED - | KW_FROM + // | KW_FROM | KW_FUNCTION | KW_FUNCTIONS | KW_GENERATED @@ -1967,7 +1973,7 @@ nonReserved | KW_SYSTEM | KW_SYSTEM_TIME | KW_SYSTEM_VERSION - | KW_TABLE + // | KW_TABLE | KW_TABLES | KW_TABLESAMPLE | KW_TARGET diff --git a/src/grammar/trinosql/TrinoSql.g4 b/src/grammar/trinosql/TrinoSql.g4 index 3c5dcdf..52fc1e8 100644 --- a/src/grammar/trinosql/TrinoSql.g4 +++ b/src/grammar/trinosql/TrinoSql.g4 @@ -25,6 +25,11 @@ grammar TrinoSql; options { caseInsensitive= true; + superClass=SQLParserBase; +} + +@header { +import SQLParserBase from '../SQLParserBase'; } tokens { @@ -173,12 +178,12 @@ statement KW_WHERE where= booleanExpression )? # update | KW_MERGE KW_INTO tableName (KW_AS? identifier)? KW_USING relation KW_ON expression mergeCase+ # merge - | KW_SHOW KW_COMMENT KW_ON KW_TABLE tableName # showTableComment - | KW_SHOW KW_COMMENT KW_ON KW_COLUMN columnName # showColumnComment + | KW_SHOW KW_COMMENT KW_ON KW_TABLE tableName # showTableComment // dtstack + | KW_SHOW KW_COMMENT KW_ON KW_COLUMN columnName # showColumnComment // dtstack ; query - : with? queryNoWith + : with? queryNoWith # queryStatement ; with @@ -746,6 +751,7 @@ functionName columnName : qualifiedName + | {this.shouldMatchEmpty()}? ; columnNameCreate diff --git a/src/index.ts b/src/index.ts index 3049c27..86e82fc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -30,19 +30,29 @@ export type { ImpalaSqlParserVisitor, } from './lib'; -export { SyntaxContextType } from './parser/common/basic-parser-types'; +export { EntityContextType } from './parser/common/basic-parser-types'; + +export { + /** + * @deprecated SyntaxContextType has been renamed to {@link EntityContextType}, + * It will be removed when the stable version is released. + */ + EntityContextType as SyntaxContextType, +} from './parser/common/basic-parser-types'; export type { CaretPosition, - WordRange, Suggestions, SyntaxSuggestion, - TextSlice, } from './parser/common/basic-parser-types'; +export type { WordRange, TextSlice } from './parser/common/textAndWord'; + export type { SyntaxError, ParseError, ErrorListener } from './parser/common/parseErrorListener'; +export type { StmtContextType, StmtContext, EntityContext } from './parser/common/entityCollector'; + /** - * @deprecated legacy, will be removed. + * @deprecated Legacy utils will be removed when the stable version is released. */ export * from './utils'; diff --git a/src/lib/SQLParserBase.ts b/src/lib/SQLParserBase.ts new file mode 100644 index 0000000..cfeeda8 --- /dev/null +++ b/src/lib/SQLParserBase.ts @@ -0,0 +1,18 @@ +import * as antlr from "antlr4ng"; +export default abstract class SQLParserBase extends antlr.Parser{ + public constructor(input: antlr.TokenStream) { + super(input); + } + + public abstract program(): T; + + public caretTokenIndex = -1; + + public entityCollecting = false; + + public shouldMatchEmpty () { + return this.entityCollecting + && this.tokenStream.LT(-1).tokenIndex <= this.caretTokenIndex + && this.tokenStream.LT(1).tokenIndex >= this.caretTokenIndex + } +} \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParser.interp b/src/lib/flinksql/FlinkSqlParser.interp index 4799299..17c3bd1 100644 --- a/src/lib/flinksql/FlinkSqlParser.interp +++ b/src/lib/flinksql/FlinkSqlParser.interp @@ -1278,4 +1278,4 @@ nonReservedKeywords atn: -[4, 1, 541, 2265, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 1, 0, 5, 0, 378, 8, 0, 10, 0, 12, 0, 381, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 387, 8, 1, 1, 1, 3, 1, 390, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 404, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 422, 8, 4, 1, 5, 1, 5, 3, 5, 426, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 435, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 440, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 445, 8, 8, 10, 8, 12, 8, 448, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 458, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 465, 8, 11, 10, 11, 12, 11, 468, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 479, 8, 12, 1, 12, 3, 12, 482, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 489, 8, 12, 1, 12, 3, 12, 492, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 500, 8, 12, 1, 12, 1, 12, 3, 12, 504, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 509, 8, 12, 1, 12, 3, 12, 512, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 519, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 527, 8, 15, 1, 16, 1, 16, 3, 16, 531, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 543, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 551, 8, 18, 1, 18, 1, 18, 3, 18, 555, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 587, 8, 18, 1, 19, 3, 19, 590, 8, 19, 1, 19, 4, 19, 593, 8, 19, 11, 19, 12, 19, 594, 1, 20, 1, 20, 3, 20, 599, 8, 20, 1, 21, 1, 21, 3, 21, 603, 8, 21, 1, 21, 1, 21, 3, 21, 607, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 614, 8, 21, 10, 21, 12, 21, 617, 9, 21, 1, 21, 1, 21, 3, 21, 621, 8, 21, 1, 21, 1, 21, 3, 21, 625, 8, 21, 1, 21, 1, 21, 3, 21, 629, 8, 21, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 3, 21, 636, 8, 21, 1, 21, 1, 21, 3, 21, 640, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 645, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 651, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 656, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 661, 8, 24, 1, 24, 3, 24, 664, 8, 24, 1, 25, 1, 25, 3, 25, 668, 8, 25, 1, 26, 1, 26, 3, 26, 672, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 678, 8, 27, 10, 27, 12, 27, 681, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 688, 8, 28, 1, 28, 1, 28, 3, 28, 692, 8, 28, 1, 28, 1, 28, 3, 28, 696, 8, 28, 1, 28, 1, 28, 3, 28, 700, 8, 28, 1, 28, 1, 28, 3, 28, 704, 8, 28, 1, 28, 1, 28, 3, 28, 708, 8, 28, 1, 28, 1, 28, 3, 28, 712, 8, 28, 1, 28, 1, 28, 3, 28, 716, 8, 28, 1, 28, 1, 28, 3, 28, 720, 8, 28, 3, 28, 722, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 732, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 740, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 762, 8, 34, 10, 34, 12, 34, 765, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 771, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 777, 8, 35, 1, 35, 3, 35, 780, 8, 35, 1, 35, 3, 35, 783, 8, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 793, 8, 37, 1, 37, 3, 37, 796, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 804, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 816, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 838, 8, 46, 10, 46, 12, 46, 841, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 851, 8, 47, 10, 47, 12, 47, 854, 9, 47, 1, 47, 1, 47, 3, 47, 858, 8, 47, 1, 48, 1, 48, 3, 48, 862, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 868, 8, 49, 10, 49, 12, 49, 871, 9, 49, 1, 49, 3, 49, 874, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 880, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 890, 8, 52, 1, 52, 1, 52, 3, 52, 894, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 900, 8, 53, 1, 53, 1, 53, 3, 53, 904, 8, 53, 1, 53, 1, 53, 3, 53, 908, 8, 53, 1, 53, 3, 53, 911, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 920, 8, 54, 1, 54, 1, 54, 3, 54, 924, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 931, 8, 54, 1, 54, 3, 54, 934, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 942, 8, 55, 10, 55, 12, 55, 945, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 952, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 960, 8, 57, 1, 58, 1, 58, 3, 58, 964, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 979, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 998, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1009, 8, 66, 1, 66, 1, 66, 3, 66, 1013, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1020, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1025, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1031, 8, 68, 1, 68, 1, 68, 3, 68, 1035, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1042, 8, 69, 1, 69, 1, 69, 3, 69, 1046, 8, 69, 1, 70, 1, 70, 3, 70, 1050, 8, 70, 1, 70, 1, 70, 3, 70, 1054, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1062, 8, 71, 1, 71, 1, 71, 3, 71, 1066, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1071, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1077, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1083, 8, 73, 1, 73, 3, 73, 1086, 8, 73, 1, 73, 1, 73, 3, 73, 1090, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1099, 8, 75, 10, 75, 12, 75, 1102, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1108, 8, 76, 10, 76, 12, 76, 1111, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1122, 8, 77, 11, 77, 12, 77, 1123, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1134, 8, 78, 11, 78, 12, 78, 1135, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1151, 8, 79, 1, 79, 3, 79, 1154, 8, 79, 1, 79, 1, 79, 3, 79, 1158, 8, 79, 1, 79, 3, 79, 1161, 8, 79, 3, 79, 1163, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1168, 8, 79, 1, 79, 1, 79, 3, 79, 1172, 8, 79, 1, 79, 3, 79, 1175, 8, 79, 5, 79, 1177, 8, 79, 10, 79, 12, 79, 1180, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1186, 8, 80, 10, 80, 12, 80, 1189, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1195, 8, 81, 10, 81, 12, 81, 1198, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1205, 8, 82, 10, 82, 12, 82, 1208, 9, 82, 1, 82, 1, 82, 3, 82, 1212, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1223, 8, 84, 1, 84, 3, 84, 1226, 8, 84, 1, 84, 3, 84, 1229, 8, 84, 1, 84, 3, 84, 1232, 8, 84, 1, 84, 3, 84, 1235, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1241, 8, 84, 1, 85, 1, 85, 3, 85, 1245, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1251, 8, 85, 10, 85, 12, 85, 1254, 9, 85, 3, 85, 1256, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1261, 8, 86, 1, 86, 3, 86, 1264, 8, 86, 3, 86, 1266, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1280, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 1289, 8, 89, 10, 89, 12, 89, 1292, 9, 89, 1, 89, 1, 89, 3, 89, 1296, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1304, 8, 89, 1, 89, 3, 89, 1307, 8, 89, 1, 89, 3, 89, 1310, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1315, 8, 89, 5, 89, 1317, 8, 89, 10, 89, 12, 89, 1320, 9, 89, 1, 90, 1, 90, 3, 90, 1324, 8, 90, 1, 91, 3, 91, 1327, 8, 91, 1, 91, 1, 91, 3, 91, 1331, 8, 91, 1, 91, 3, 91, 1334, 8, 91, 1, 91, 3, 91, 1337, 8, 91, 1, 91, 1, 91, 3, 91, 1341, 8, 91, 1, 91, 3, 91, 1344, 8, 91, 1, 91, 3, 91, 1347, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 1357, 8, 91, 10, 91, 12, 91, 1360, 9, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1366, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1377, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 1402, 8, 96, 10, 96, 12, 96, 1405, 9, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1426, 8, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1439, 8, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1449, 8, 103, 10, 103, 12, 103, 1452, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1462, 8, 104, 10, 104, 12, 104, 1465, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1474, 8, 104, 10, 104, 12, 104, 1477, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1486, 8, 104, 10, 104, 12, 104, 1489, 9, 104, 1, 104, 1, 104, 3, 104, 1493, 8, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1518, 8, 111, 10, 111, 12, 111, 1521, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 3, 113, 1528, 8, 113, 1, 113, 1, 113, 3, 113, 1532, 8, 113, 1, 113, 3, 113, 1535, 8, 113, 1, 113, 3, 113, 1538, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1545, 8, 114, 1, 114, 3, 114, 1548, 8, 114, 1, 114, 3, 114, 1551, 8, 114, 1, 114, 3, 114, 1554, 8, 114, 1, 114, 3, 114, 1557, 8, 114, 1, 114, 3, 114, 1560, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1565, 8, 114, 1, 114, 3, 114, 1568, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1575, 8, 115, 10, 115, 12, 115, 1578, 9, 115, 1, 116, 1, 116, 3, 116, 1582, 8, 116, 1, 116, 1, 116, 3, 116, 1586, 8, 116, 1, 117, 1, 117, 1, 117, 3, 117, 1591, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 1598, 8, 118, 10, 118, 12, 118, 1601, 9, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1619, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1625, 8, 120, 10, 120, 12, 120, 1628, 9, 120, 1, 121, 1, 121, 1, 121, 4, 121, 1633, 8, 121, 11, 121, 12, 121, 1634, 1, 121, 1, 121, 3, 121, 1639, 8, 121, 1, 122, 1, 122, 3, 122, 1643, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1653, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1679, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1685, 8, 125, 10, 125, 12, 125, 1688, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1699, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1721, 8, 130, 3, 130, 1723, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1734, 8, 130, 1, 130, 5, 130, 1737, 8, 130, 10, 130, 12, 130, 1740, 9, 130, 1, 131, 3, 131, 1743, 8, 131, 1, 131, 1, 131, 3, 131, 1747, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1754, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1761, 8, 131, 10, 131, 12, 131, 1764, 9, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1769, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1782, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1789, 8, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1794, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1800, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1807, 8, 131, 3, 131, 1809, 8, 131, 1, 132, 3, 132, 1812, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1822, 8, 132, 10, 132, 12, 132, 1825, 9, 132, 1, 132, 1, 132, 3, 132, 1829, 8, 132, 1, 132, 3, 132, 1832, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1838, 8, 132, 3, 132, 1840, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1846, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1867, 8, 133, 10, 133, 12, 133, 1870, 9, 133, 1, 134, 1, 134, 1, 134, 4, 134, 1875, 8, 134, 11, 134, 12, 134, 1876, 1, 134, 1, 134, 3, 134, 1881, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 4, 134, 1888, 8, 134, 11, 134, 12, 134, 1889, 1, 134, 1, 134, 3, 134, 1894, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1910, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1919, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1943, 8, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1948, 8, 134, 10, 134, 12, 134, 1951, 9, 134, 3, 134, 1953, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1964, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1971, 8, 134, 10, 134, 12, 134, 1974, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 1980, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1986, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 1994, 8, 140, 1, 141, 1, 141, 1, 141, 3, 141, 1999, 8, 141, 1, 142, 1, 142, 3, 142, 2003, 8, 142, 1, 143, 1, 143, 1, 143, 4, 143, 2008, 8, 143, 11, 143, 12, 143, 2009, 1, 144, 1, 144, 1, 144, 3, 144, 2015, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 3, 146, 2023, 8, 146, 1, 146, 1, 146, 3, 146, 2027, 8, 146, 1, 147, 3, 147, 2030, 8, 147, 1, 147, 1, 147, 3, 147, 2034, 8, 147, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 4, 149, 2041, 8, 149, 11, 149, 12, 149, 2042, 1, 149, 3, 149, 2046, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 5, 151, 2055, 8, 151, 10, 151, 12, 151, 2058, 9, 151, 1, 152, 1, 152, 1, 152, 3, 152, 2063, 8, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2081, 8, 158, 1, 159, 1, 159, 1, 159, 3, 159, 2086, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2091, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2098, 8, 160, 3, 160, 2100, 8, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2105, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2112, 8, 161, 3, 161, 2114, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2119, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2126, 8, 162, 3, 162, 2128, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2133, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2140, 8, 163, 3, 163, 2142, 8, 163, 1, 164, 1, 164, 1, 164, 5, 164, 2147, 8, 164, 10, 164, 12, 164, 2150, 9, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2166, 8, 168, 10, 168, 12, 168, 2169, 9, 168, 1, 168, 1, 168, 1, 169, 1, 169, 3, 169, 2175, 8, 169, 1, 169, 3, 169, 2178, 8, 169, 1, 170, 1, 170, 1, 170, 3, 170, 2183, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2189, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2197, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2213, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2222, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2232, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2239, 8, 177, 1, 177, 3, 177, 2242, 8, 177, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 2148, 5, 158, 178, 260, 266, 268, 188, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 0, 45, 2, 0, 109, 109, 450, 450, 3, 0, 45, 45, 128, 128, 188, 188, 4, 0, 42, 42, 90, 90, 422, 422, 464, 464, 2, 0, 441, 441, 447, 447, 2, 0, 151, 151, 170, 170, 2, 0, 437, 437, 489, 489, 2, 0, 482, 485, 487, 487, 3, 0, 32, 32, 91, 91, 244, 244, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 344, 344, 360, 360, 378, 378, 381, 381, 387, 387, 416, 417, 2, 0, 433, 433, 435, 435, 4, 0, 101, 102, 115, 115, 144, 144, 246, 246, 2, 0, 13, 13, 231, 231, 2, 0, 455, 455, 462, 462, 3, 0, 5, 5, 270, 270, 444, 444, 3, 0, 266, 266, 455, 455, 462, 462, 3, 0, 425, 425, 458, 458, 477, 477, 3, 0, 330, 330, 465, 465, 481, 481, 2, 0, 440, 440, 490, 490, 2, 0, 183, 183, 265, 265, 3, 0, 130, 130, 180, 180, 402, 402, 4, 0, 152, 152, 174, 174, 201, 201, 317, 317, 3, 0, 445, 445, 459, 459, 499, 499, 4, 0, 250, 250, 446, 446, 494, 496, 498, 498, 2, 0, 74, 74, 320, 320, 3, 0, 459, 459, 492, 492, 499, 499, 2, 0, 439, 439, 450, 450, 2, 0, 457, 457, 467, 467, 4, 0, 140, 140, 244, 244, 397, 397, 404, 404, 2, 0, 19, 19, 369, 369, 2, 0, 5, 5, 11, 11, 2, 0, 509, 509, 529, 530, 4, 0, 452, 452, 527, 527, 531, 531, 534, 534, 2, 0, 529, 530, 532, 532, 1, 0, 529, 530, 1, 0, 538, 539, 2, 0, 538, 538, 541, 541, 4, 0, 452, 452, 527, 527, 529, 531, 533, 534, 3, 0, 241, 241, 508, 509, 529, 530, 2, 0, 140, 140, 397, 397, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 436, 436, 470, 470, 472, 472, 488, 488, 502, 502, 15, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 427, 427, 436, 436, 442, 442, 448, 449, 454, 454, 460, 460, 470, 475, 488, 488, 491, 491, 502, 503, 9, 0, 5, 5, 13, 13, 33, 33, 85, 85, 113, 113, 200, 200, 389, 389, 413, 413, 527, 527, 55, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 78, 78, 84, 85, 91, 91, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 194, 194, 197, 197, 199, 199, 201, 201, 205, 205, 207, 209, 214, 214, 220, 220, 222, 223, 229, 229, 243, 243, 245, 245, 264, 264, 276, 276, 281, 281, 283, 283, 293, 293, 317, 317, 321, 323, 334, 334, 357, 358, 364, 364, 367, 367, 378, 380, 395, 395, 398, 399, 408, 408, 419, 420, 436, 436, 469, 469, 488, 488, 502, 502, 1, 0, 437, 504, 2465, 0, 379, 1, 0, 0, 0, 2, 389, 1, 0, 0, 0, 4, 403, 1, 0, 0, 0, 6, 405, 1, 0, 0, 0, 8, 421, 1, 0, 0, 0, 10, 425, 1, 0, 0, 0, 12, 427, 1, 0, 0, 0, 14, 430, 1, 0, 0, 0, 16, 441, 1, 0, 0, 0, 18, 449, 1, 0, 0, 0, 20, 457, 1, 0, 0, 0, 22, 459, 1, 0, 0, 0, 24, 511, 1, 0, 0, 0, 26, 513, 1, 0, 0, 0, 28, 520, 1, 0, 0, 0, 30, 524, 1, 0, 0, 0, 32, 528, 1, 0, 0, 0, 34, 532, 1, 0, 0, 0, 36, 586, 1, 0, 0, 0, 38, 592, 1, 0, 0, 0, 40, 598, 1, 0, 0, 0, 42, 600, 1, 0, 0, 0, 44, 641, 1, 0, 0, 0, 46, 655, 1, 0, 0, 0, 48, 657, 1, 0, 0, 0, 50, 667, 1, 0, 0, 0, 52, 671, 1, 0, 0, 0, 54, 673, 1, 0, 0, 0, 56, 721, 1, 0, 0, 0, 58, 723, 1, 0, 0, 0, 60, 727, 1, 0, 0, 0, 62, 735, 1, 0, 0, 0, 64, 743, 1, 0, 0, 0, 66, 747, 1, 0, 0, 0, 68, 754, 1, 0, 0, 0, 70, 782, 1, 0, 0, 0, 72, 784, 1, 0, 0, 0, 74, 787, 1, 0, 0, 0, 76, 797, 1, 0, 0, 0, 78, 799, 1, 0, 0, 0, 80, 805, 1, 0, 0, 0, 82, 807, 1, 0, 0, 0, 84, 815, 1, 0, 0, 0, 86, 823, 1, 0, 0, 0, 88, 825, 1, 0, 0, 0, 90, 829, 1, 0, 0, 0, 92, 833, 1, 0, 0, 0, 94, 857, 1, 0, 0, 0, 96, 861, 1, 0, 0, 0, 98, 863, 1, 0, 0, 0, 100, 879, 1, 0, 0, 0, 102, 881, 1, 0, 0, 0, 104, 886, 1, 0, 0, 0, 106, 897, 1, 0, 0, 0, 108, 915, 1, 0, 0, 0, 110, 935, 1, 0, 0, 0, 112, 946, 1, 0, 0, 0, 114, 948, 1, 0, 0, 0, 116, 961, 1, 0, 0, 0, 118, 968, 1, 0, 0, 0, 120, 971, 1, 0, 0, 0, 122, 980, 1, 0, 0, 0, 124, 984, 1, 0, 0, 0, 126, 988, 1, 0, 0, 0, 128, 991, 1, 0, 0, 0, 130, 999, 1, 0, 0, 0, 132, 1004, 1, 0, 0, 0, 134, 1021, 1, 0, 0, 0, 136, 1028, 1, 0, 0, 0, 138, 1038, 1, 0, 0, 0, 140, 1047, 1, 0, 0, 0, 142, 1057, 1, 0, 0, 0, 144, 1076, 1, 0, 0, 0, 146, 1078, 1, 0, 0, 0, 148, 1091, 1, 0, 0, 0, 150, 1094, 1, 0, 0, 0, 152, 1103, 1, 0, 0, 0, 154, 1114, 1, 0, 0, 0, 156, 1127, 1, 0, 0, 0, 158, 1162, 1, 0, 0, 0, 160, 1181, 1, 0, 0, 0, 162, 1190, 1, 0, 0, 0, 164, 1199, 1, 0, 0, 0, 166, 1218, 1, 0, 0, 0, 168, 1240, 1, 0, 0, 0, 170, 1242, 1, 0, 0, 0, 172, 1265, 1, 0, 0, 0, 174, 1279, 1, 0, 0, 0, 176, 1281, 1, 0, 0, 0, 178, 1295, 1, 0, 0, 0, 180, 1321, 1, 0, 0, 0, 182, 1376, 1, 0, 0, 0, 184, 1378, 1, 0, 0, 0, 186, 1384, 1, 0, 0, 0, 188, 1386, 1, 0, 0, 0, 190, 1391, 1, 0, 0, 0, 192, 1396, 1, 0, 0, 0, 194, 1408, 1, 0, 0, 0, 196, 1425, 1, 0, 0, 0, 198, 1427, 1, 0, 0, 0, 200, 1429, 1, 0, 0, 0, 202, 1438, 1, 0, 0, 0, 204, 1440, 1, 0, 0, 0, 206, 1443, 1, 0, 0, 0, 208, 1492, 1, 0, 0, 0, 210, 1494, 1, 0, 0, 0, 212, 1497, 1, 0, 0, 0, 214, 1499, 1, 0, 0, 0, 216, 1506, 1, 0, 0, 0, 218, 1508, 1, 0, 0, 0, 220, 1510, 1, 0, 0, 0, 222, 1513, 1, 0, 0, 0, 224, 1522, 1, 0, 0, 0, 226, 1527, 1, 0, 0, 0, 228, 1541, 1, 0, 0, 0, 230, 1569, 1, 0, 0, 0, 232, 1579, 1, 0, 0, 0, 234, 1587, 1, 0, 0, 0, 236, 1592, 1, 0, 0, 0, 238, 1618, 1, 0, 0, 0, 240, 1620, 1, 0, 0, 0, 242, 1629, 1, 0, 0, 0, 244, 1640, 1, 0, 0, 0, 246, 1652, 1, 0, 0, 0, 248, 1678, 1, 0, 0, 0, 250, 1680, 1, 0, 0, 0, 252, 1698, 1, 0, 0, 0, 254, 1700, 1, 0, 0, 0, 256, 1705, 1, 0, 0, 0, 258, 1708, 1, 0, 0, 0, 260, 1722, 1, 0, 0, 0, 262, 1808, 1, 0, 0, 0, 264, 1839, 1, 0, 0, 0, 266, 1845, 1, 0, 0, 0, 268, 1963, 1, 0, 0, 0, 270, 1975, 1, 0, 0, 0, 272, 1979, 1, 0, 0, 0, 274, 1985, 1, 0, 0, 0, 276, 1987, 1, 0, 0, 0, 278, 1989, 1, 0, 0, 0, 280, 1993, 1, 0, 0, 0, 282, 1995, 1, 0, 0, 0, 284, 2000, 1, 0, 0, 0, 286, 2007, 1, 0, 0, 0, 288, 2011, 1, 0, 0, 0, 290, 2016, 1, 0, 0, 0, 292, 2026, 1, 0, 0, 0, 294, 2029, 1, 0, 0, 0, 296, 2035, 1, 0, 0, 0, 298, 2045, 1, 0, 0, 0, 300, 2047, 1, 0, 0, 0, 302, 2051, 1, 0, 0, 0, 304, 2062, 1, 0, 0, 0, 306, 2064, 1, 0, 0, 0, 308, 2066, 1, 0, 0, 0, 310, 2068, 1, 0, 0, 0, 312, 2073, 1, 0, 0, 0, 314, 2075, 1, 0, 0, 0, 316, 2077, 1, 0, 0, 0, 318, 2082, 1, 0, 0, 0, 320, 2099, 1, 0, 0, 0, 322, 2113, 1, 0, 0, 0, 324, 2127, 1, 0, 0, 0, 326, 2141, 1, 0, 0, 0, 328, 2143, 1, 0, 0, 0, 330, 2151, 1, 0, 0, 0, 332, 2154, 1, 0, 0, 0, 334, 2158, 1, 0, 0, 0, 336, 2161, 1, 0, 0, 0, 338, 2172, 1, 0, 0, 0, 340, 2182, 1, 0, 0, 0, 342, 2188, 1, 0, 0, 0, 344, 2196, 1, 0, 0, 0, 346, 2212, 1, 0, 0, 0, 348, 2221, 1, 0, 0, 0, 350, 2223, 1, 0, 0, 0, 352, 2225, 1, 0, 0, 0, 354, 2241, 1, 0, 0, 0, 356, 2243, 1, 0, 0, 0, 358, 2246, 1, 0, 0, 0, 360, 2248, 1, 0, 0, 0, 362, 2250, 1, 0, 0, 0, 364, 2252, 1, 0, 0, 0, 366, 2254, 1, 0, 0, 0, 368, 2256, 1, 0, 0, 0, 370, 2258, 1, 0, 0, 0, 372, 2260, 1, 0, 0, 0, 374, 2262, 1, 0, 0, 0, 376, 378, 3, 2, 1, 0, 377, 376, 1, 0, 0, 0, 378, 381, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 382, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 382, 383, 5, 0, 0, 1, 383, 1, 1, 0, 0, 0, 384, 386, 3, 4, 2, 0, 385, 387, 5, 521, 0, 0, 386, 385, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 390, 1, 0, 0, 0, 388, 390, 3, 6, 3, 0, 389, 384, 1, 0, 0, 0, 389, 388, 1, 0, 0, 0, 390, 3, 1, 0, 0, 0, 391, 404, 3, 8, 4, 0, 392, 404, 3, 10, 5, 0, 393, 404, 3, 12, 6, 0, 394, 404, 3, 14, 7, 0, 395, 404, 3, 20, 10, 0, 396, 404, 3, 24, 12, 0, 397, 404, 3, 26, 13, 0, 398, 404, 3, 28, 14, 0, 399, 404, 3, 30, 15, 0, 400, 404, 3, 32, 16, 0, 401, 404, 3, 34, 17, 0, 402, 404, 3, 36, 18, 0, 403, 391, 1, 0, 0, 0, 403, 392, 1, 0, 0, 0, 403, 393, 1, 0, 0, 0, 403, 394, 1, 0, 0, 0, 403, 395, 1, 0, 0, 0, 403, 396, 1, 0, 0, 0, 403, 397, 1, 0, 0, 0, 403, 398, 1, 0, 0, 0, 403, 399, 1, 0, 0, 0, 403, 400, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 402, 1, 0, 0, 0, 404, 5, 1, 0, 0, 0, 405, 406, 5, 521, 0, 0, 406, 7, 1, 0, 0, 0, 407, 422, 3, 40, 20, 0, 408, 422, 3, 104, 52, 0, 409, 422, 3, 106, 53, 0, 410, 422, 3, 108, 54, 0, 411, 422, 3, 102, 51, 0, 412, 422, 3, 114, 57, 0, 413, 422, 3, 128, 64, 0, 414, 422, 3, 130, 65, 0, 415, 422, 3, 132, 66, 0, 416, 422, 3, 134, 67, 0, 417, 422, 3, 136, 68, 0, 418, 422, 3, 138, 69, 0, 419, 422, 3, 140, 70, 0, 420, 422, 3, 142, 71, 0, 421, 407, 1, 0, 0, 0, 421, 408, 1, 0, 0, 0, 421, 409, 1, 0, 0, 0, 421, 410, 1, 0, 0, 0, 421, 411, 1, 0, 0, 0, 421, 412, 1, 0, 0, 0, 421, 413, 1, 0, 0, 0, 421, 414, 1, 0, 0, 0, 421, 415, 1, 0, 0, 0, 421, 416, 1, 0, 0, 0, 421, 417, 1, 0, 0, 0, 421, 418, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 420, 1, 0, 0, 0, 422, 9, 1, 0, 0, 0, 423, 426, 3, 158, 79, 0, 424, 426, 3, 144, 72, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 11, 1, 0, 0, 0, 427, 428, 7, 0, 0, 0, 428, 429, 3, 322, 161, 0, 429, 13, 1, 0, 0, 0, 430, 434, 5, 135, 0, 0, 431, 435, 3, 16, 8, 0, 432, 433, 5, 479, 0, 0, 433, 435, 5, 146, 0, 0, 434, 431, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 439, 1, 0, 0, 0, 436, 440, 3, 10, 5, 0, 437, 440, 3, 146, 73, 0, 438, 440, 3, 156, 78, 0, 439, 436, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 438, 1, 0, 0, 0, 440, 15, 1, 0, 0, 0, 441, 446, 3, 18, 9, 0, 442, 443, 5, 520, 0, 0, 443, 445, 3, 18, 9, 0, 444, 442, 1, 0, 0, 0, 445, 448, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 17, 1, 0, 0, 0, 448, 446, 1, 0, 0, 0, 449, 450, 7, 1, 0, 0, 450, 19, 1, 0, 0, 0, 451, 452, 5, 410, 0, 0, 452, 453, 5, 441, 0, 0, 453, 458, 3, 312, 156, 0, 454, 455, 5, 410, 0, 0, 455, 458, 3, 316, 158, 0, 456, 458, 3, 22, 11, 0, 457, 451, 1, 0, 0, 0, 457, 454, 1, 0, 0, 0, 457, 456, 1, 0, 0, 0, 458, 21, 1, 0, 0, 0, 459, 460, 5, 410, 0, 0, 460, 461, 5, 227, 0, 0, 461, 466, 3, 328, 164, 0, 462, 463, 5, 520, 0, 0, 463, 465, 3, 328, 164, 0, 464, 462, 1, 0, 0, 0, 465, 468, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 23, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 469, 470, 5, 341, 0, 0, 470, 512, 7, 2, 0, 0, 471, 472, 5, 341, 0, 0, 472, 473, 5, 76, 0, 0, 473, 512, 7, 3, 0, 0, 474, 475, 5, 341, 0, 0, 475, 478, 5, 374, 0, 0, 476, 477, 7, 4, 0, 0, 477, 479, 3, 316, 158, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 481, 1, 0, 0, 0, 480, 482, 3, 264, 132, 0, 481, 480, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 512, 1, 0, 0, 0, 483, 484, 5, 341, 0, 0, 484, 485, 5, 58, 0, 0, 485, 488, 7, 4, 0, 0, 486, 489, 3, 324, 162, 0, 487, 489, 3, 322, 161, 0, 488, 486, 1, 0, 0, 0, 488, 487, 1, 0, 0, 0, 489, 491, 1, 0, 0, 0, 490, 492, 3, 264, 132, 0, 491, 490, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 512, 1, 0, 0, 0, 493, 494, 5, 341, 0, 0, 494, 499, 5, 72, 0, 0, 495, 496, 5, 373, 0, 0, 496, 500, 3, 322, 161, 0, 497, 498, 5, 501, 0, 0, 498, 500, 3, 324, 162, 0, 499, 495, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 512, 1, 0, 0, 0, 501, 503, 5, 341, 0, 0, 502, 504, 5, 411, 0, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 512, 5, 154, 0, 0, 506, 508, 5, 341, 0, 0, 507, 509, 5, 152, 0, 0, 508, 507, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 512, 5, 227, 0, 0, 511, 469, 1, 0, 0, 0, 511, 471, 1, 0, 0, 0, 511, 474, 1, 0, 0, 0, 511, 483, 1, 0, 0, 0, 511, 493, 1, 0, 0, 0, 511, 501, 1, 0, 0, 0, 511, 506, 1, 0, 0, 0, 512, 25, 1, 0, 0, 0, 513, 514, 5, 468, 0, 0, 514, 515, 5, 226, 0, 0, 515, 518, 3, 328, 164, 0, 516, 517, 5, 433, 0, 0, 517, 519, 3, 336, 168, 0, 518, 516, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 27, 1, 0, 0, 0, 520, 521, 5, 500, 0, 0, 521, 522, 5, 226, 0, 0, 522, 523, 3, 328, 164, 0, 523, 29, 1, 0, 0, 0, 524, 526, 5, 340, 0, 0, 525, 527, 3, 338, 169, 0, 526, 525, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 31, 1, 0, 0, 0, 528, 530, 5, 312, 0, 0, 529, 531, 3, 340, 170, 0, 530, 529, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 33, 1, 0, 0, 0, 532, 533, 7, 5, 0, 0, 533, 534, 5, 463, 0, 0, 534, 535, 3, 112, 56, 0, 535, 35, 1, 0, 0, 0, 536, 537, 5, 437, 0, 0, 537, 538, 5, 463, 0, 0, 538, 539, 5, 433, 0, 0, 539, 542, 3, 38, 19, 0, 540, 541, 5, 17, 0, 0, 541, 543, 3, 328, 164, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 587, 1, 0, 0, 0, 544, 545, 5, 437, 0, 0, 545, 546, 5, 456, 0, 0, 546, 547, 5, 433, 0, 0, 547, 550, 3, 38, 19, 0, 548, 549, 5, 17, 0, 0, 549, 551, 3, 328, 164, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 554, 1, 0, 0, 0, 552, 553, 5, 311, 0, 0, 553, 555, 3, 328, 164, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 587, 1, 0, 0, 0, 556, 557, 5, 437, 0, 0, 557, 558, 7, 6, 0, 0, 558, 559, 5, 433, 0, 0, 559, 560, 3, 38, 19, 0, 560, 561, 5, 311, 0, 0, 561, 562, 3, 328, 164, 0, 562, 587, 1, 0, 0, 0, 563, 564, 5, 437, 0, 0, 564, 565, 5, 486, 0, 0, 565, 587, 3, 38, 19, 0, 566, 567, 5, 437, 0, 0, 567, 568, 5, 453, 0, 0, 568, 569, 5, 456, 0, 0, 569, 570, 5, 433, 0, 0, 570, 571, 3, 38, 19, 0, 571, 572, 5, 311, 0, 0, 572, 573, 3, 328, 164, 0, 573, 574, 5, 466, 0, 0, 574, 575, 3, 328, 164, 0, 575, 587, 1, 0, 0, 0, 576, 577, 5, 437, 0, 0, 577, 578, 5, 443, 0, 0, 578, 579, 5, 456, 0, 0, 579, 580, 5, 433, 0, 0, 580, 581, 3, 38, 19, 0, 581, 582, 5, 146, 0, 0, 582, 583, 3, 328, 164, 0, 583, 584, 5, 17, 0, 0, 584, 585, 3, 328, 164, 0, 585, 587, 1, 0, 0, 0, 586, 536, 1, 0, 0, 0, 586, 544, 1, 0, 0, 0, 586, 556, 1, 0, 0, 0, 586, 563, 1, 0, 0, 0, 586, 566, 1, 0, 0, 0, 586, 576, 1, 0, 0, 0, 587, 37, 1, 0, 0, 0, 588, 590, 5, 534, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 3, 328, 164, 0, 592, 589, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 39, 1, 0, 0, 0, 596, 599, 3, 42, 21, 0, 597, 599, 3, 44, 22, 0, 598, 596, 1, 0, 0, 0, 598, 597, 1, 0, 0, 0, 599, 41, 1, 0, 0, 0, 600, 602, 5, 72, 0, 0, 601, 603, 5, 497, 0, 0, 602, 601, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 606, 5, 373, 0, 0, 605, 607, 3, 332, 166, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 3, 320, 160, 0, 609, 610, 5, 516, 0, 0, 610, 615, 3, 46, 23, 0, 611, 612, 5, 520, 0, 0, 612, 614, 3, 46, 23, 0, 613, 611, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 618, 619, 5, 520, 0, 0, 619, 621, 3, 82, 41, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 624, 1, 0, 0, 0, 622, 623, 5, 520, 0, 0, 623, 625, 3, 84, 42, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 628, 1, 0, 0, 0, 626, 627, 5, 520, 0, 0, 627, 629, 3, 88, 44, 0, 628, 626, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 632, 5, 517, 0, 0, 631, 633, 3, 72, 36, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 635, 1, 0, 0, 0, 634, 636, 3, 90, 45, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 639, 3, 330, 165, 0, 638, 640, 3, 98, 49, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 43, 1, 0, 0, 0, 641, 642, 5, 72, 0, 0, 642, 644, 5, 373, 0, 0, 643, 645, 3, 332, 166, 0, 644, 643, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 3, 320, 160, 0, 647, 650, 3, 330, 165, 0, 648, 649, 5, 17, 0, 0, 649, 651, 3, 158, 79, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 45, 1, 0, 0, 0, 652, 656, 3, 48, 24, 0, 653, 656, 3, 74, 37, 0, 654, 656, 3, 78, 39, 0, 655, 652, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 655, 654, 1, 0, 0, 0, 656, 47, 1, 0, 0, 0, 657, 658, 3, 50, 25, 0, 658, 660, 3, 56, 28, 0, 659, 661, 3, 70, 35, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 663, 1, 0, 0, 0, 662, 664, 3, 72, 36, 0, 663, 662, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 49, 1, 0, 0, 0, 665, 668, 3, 328, 164, 0, 666, 668, 3, 258, 129, 0, 667, 665, 1, 0, 0, 0, 667, 666, 1, 0, 0, 0, 668, 51, 1, 0, 0, 0, 669, 672, 3, 328, 164, 0, 670, 672, 3, 258, 129, 0, 671, 669, 1, 0, 0, 0, 671, 670, 1, 0, 0, 0, 672, 53, 1, 0, 0, 0, 673, 674, 5, 516, 0, 0, 674, 679, 3, 52, 26, 0, 675, 676, 5, 520, 0, 0, 676, 678, 3, 52, 26, 0, 677, 675, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 683, 5, 517, 0, 0, 683, 55, 1, 0, 0, 0, 684, 722, 7, 7, 0, 0, 685, 687, 7, 8, 0, 0, 686, 688, 3, 58, 29, 0, 687, 686, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 722, 1, 0, 0, 0, 689, 691, 5, 379, 0, 0, 690, 692, 3, 58, 29, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 699, 1, 0, 0, 0, 693, 695, 7, 9, 0, 0, 694, 696, 5, 206, 0, 0, 695, 694, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 5, 378, 0, 0, 698, 700, 5, 504, 0, 0, 699, 693, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 722, 1, 0, 0, 0, 701, 703, 7, 10, 0, 0, 702, 704, 3, 60, 30, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 722, 1, 0, 0, 0, 705, 707, 7, 11, 0, 0, 706, 708, 3, 64, 32, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 722, 1, 0, 0, 0, 709, 711, 5, 469, 0, 0, 710, 712, 3, 66, 33, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 722, 1, 0, 0, 0, 713, 715, 5, 321, 0, 0, 714, 716, 3, 68, 34, 0, 715, 714, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 722, 1, 0, 0, 0, 717, 719, 5, 294, 0, 0, 718, 720, 3, 62, 31, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 722, 1, 0, 0, 0, 721, 684, 1, 0, 0, 0, 721, 685, 1, 0, 0, 0, 721, 689, 1, 0, 0, 0, 721, 701, 1, 0, 0, 0, 721, 705, 1, 0, 0, 0, 721, 709, 1, 0, 0, 0, 721, 713, 1, 0, 0, 0, 721, 717, 1, 0, 0, 0, 722, 57, 1, 0, 0, 0, 723, 724, 5, 516, 0, 0, 724, 725, 3, 360, 180, 0, 725, 726, 5, 517, 0, 0, 726, 59, 1, 0, 0, 0, 727, 728, 5, 516, 0, 0, 728, 731, 3, 360, 180, 0, 729, 730, 5, 520, 0, 0, 730, 732, 3, 360, 180, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 5, 517, 0, 0, 734, 61, 1, 0, 0, 0, 735, 736, 5, 516, 0, 0, 736, 739, 3, 358, 179, 0, 737, 738, 5, 520, 0, 0, 738, 740, 3, 358, 179, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 5, 517, 0, 0, 742, 63, 1, 0, 0, 0, 743, 744, 5, 507, 0, 0, 744, 745, 3, 56, 28, 0, 745, 746, 5, 506, 0, 0, 746, 65, 1, 0, 0, 0, 747, 748, 5, 507, 0, 0, 748, 749, 3, 56, 28, 0, 749, 750, 5, 520, 0, 0, 750, 751, 3, 56, 28, 0, 751, 752, 1, 0, 0, 0, 752, 753, 5, 506, 0, 0, 753, 67, 1, 0, 0, 0, 754, 755, 5, 507, 0, 0, 755, 756, 3, 52, 26, 0, 756, 763, 3, 56, 28, 0, 757, 758, 5, 520, 0, 0, 758, 759, 3, 52, 26, 0, 759, 760, 3, 56, 28, 0, 760, 762, 1, 0, 0, 0, 761, 757, 1, 0, 0, 0, 762, 765, 1, 0, 0, 0, 763, 761, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 766, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 766, 767, 5, 506, 0, 0, 767, 69, 1, 0, 0, 0, 768, 769, 5, 64, 0, 0, 769, 771, 3, 86, 43, 0, 770, 768, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 5, 288, 0, 0, 773, 776, 5, 466, 0, 0, 774, 775, 5, 241, 0, 0, 775, 777, 5, 125, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 783, 1, 0, 0, 0, 778, 780, 5, 241, 0, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 783, 5, 244, 0, 0, 782, 770, 1, 0, 0, 0, 782, 779, 1, 0, 0, 0, 783, 71, 1, 0, 0, 0, 784, 785, 5, 59, 0, 0, 785, 786, 5, 537, 0, 0, 786, 73, 1, 0, 0, 0, 787, 788, 3, 50, 25, 0, 788, 789, 3, 56, 28, 0, 789, 792, 5, 218, 0, 0, 790, 791, 5, 151, 0, 0, 791, 793, 3, 76, 38, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 795, 1, 0, 0, 0, 794, 796, 5, 423, 0, 0, 795, 794, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 75, 1, 0, 0, 0, 797, 798, 5, 537, 0, 0, 798, 77, 1, 0, 0, 0, 799, 800, 3, 50, 25, 0, 800, 801, 5, 17, 0, 0, 801, 803, 3, 80, 40, 0, 802, 804, 3, 72, 36, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 79, 1, 0, 0, 0, 805, 806, 3, 258, 129, 0, 806, 81, 1, 0, 0, 0, 807, 808, 5, 424, 0, 0, 808, 809, 5, 146, 0, 0, 809, 810, 3, 52, 26, 0, 810, 811, 5, 17, 0, 0, 811, 812, 3, 258, 129, 0, 812, 83, 1, 0, 0, 0, 813, 814, 5, 64, 0, 0, 814, 816, 3, 86, 43, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 5, 288, 0, 0, 818, 819, 5, 466, 0, 0, 819, 820, 3, 54, 27, 0, 820, 821, 5, 241, 0, 0, 821, 822, 5, 125, 0, 0, 822, 85, 1, 0, 0, 0, 823, 824, 3, 304, 152, 0, 824, 87, 1, 0, 0, 0, 825, 826, 5, 277, 0, 0, 826, 827, 5, 146, 0, 0, 827, 828, 5, 371, 0, 0, 828, 89, 1, 0, 0, 0, 829, 830, 5, 269, 0, 0, 830, 831, 5, 34, 0, 0, 831, 832, 3, 92, 46, 0, 832, 91, 1, 0, 0, 0, 833, 834, 5, 516, 0, 0, 834, 839, 3, 94, 47, 0, 835, 836, 5, 520, 0, 0, 836, 838, 3, 94, 47, 0, 837, 835, 1, 0, 0, 0, 838, 841, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 842, 843, 5, 517, 0, 0, 843, 93, 1, 0, 0, 0, 844, 858, 3, 52, 26, 0, 845, 858, 3, 280, 140, 0, 846, 847, 5, 516, 0, 0, 847, 852, 3, 96, 48, 0, 848, 849, 5, 520, 0, 0, 849, 851, 3, 96, 48, 0, 850, 848, 1, 0, 0, 0, 851, 854, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 855, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 855, 856, 5, 517, 0, 0, 856, 858, 1, 0, 0, 0, 857, 844, 1, 0, 0, 0, 857, 845, 1, 0, 0, 0, 857, 846, 1, 0, 0, 0, 858, 95, 1, 0, 0, 0, 859, 862, 3, 280, 140, 0, 860, 862, 3, 354, 177, 0, 861, 859, 1, 0, 0, 0, 861, 860, 1, 0, 0, 0, 862, 97, 1, 0, 0, 0, 863, 864, 5, 202, 0, 0, 864, 873, 3, 322, 161, 0, 865, 869, 5, 516, 0, 0, 866, 868, 3, 100, 50, 0, 867, 866, 1, 0, 0, 0, 868, 871, 1, 0, 0, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 872, 874, 5, 517, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 99, 1, 0, 0, 0, 875, 876, 7, 12, 0, 0, 876, 880, 7, 13, 0, 0, 877, 878, 7, 14, 0, 0, 878, 880, 7, 15, 0, 0, 879, 875, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 880, 101, 1, 0, 0, 0, 881, 882, 5, 72, 0, 0, 882, 883, 5, 441, 0, 0, 883, 884, 3, 314, 157, 0, 884, 885, 3, 330, 165, 0, 885, 103, 1, 0, 0, 0, 886, 887, 5, 72, 0, 0, 887, 889, 5, 447, 0, 0, 888, 890, 3, 332, 166, 0, 889, 888, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 893, 3, 318, 159, 0, 892, 894, 3, 72, 36, 0, 893, 892, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 896, 3, 330, 165, 0, 896, 105, 1, 0, 0, 0, 897, 899, 5, 72, 0, 0, 898, 900, 5, 497, 0, 0, 899, 898, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 903, 5, 501, 0, 0, 902, 904, 3, 332, 166, 0, 903, 902, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 907, 3, 326, 163, 0, 906, 908, 3, 54, 27, 0, 907, 906, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 910, 1, 0, 0, 0, 909, 911, 3, 72, 36, 0, 910, 909, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 913, 5, 17, 0, 0, 913, 914, 3, 158, 79, 0, 914, 107, 1, 0, 0, 0, 915, 919, 5, 72, 0, 0, 916, 920, 5, 497, 0, 0, 917, 918, 5, 497, 0, 0, 918, 920, 5, 370, 0, 0, 919, 916, 1, 0, 0, 0, 919, 917, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 923, 5, 153, 0, 0, 922, 924, 3, 332, 166, 0, 923, 922, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 3, 270, 135, 0, 926, 927, 5, 17, 0, 0, 927, 930, 3, 304, 152, 0, 928, 929, 5, 195, 0, 0, 929, 931, 7, 16, 0, 0, 930, 928, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 933, 1, 0, 0, 0, 932, 934, 3, 110, 55, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 109, 1, 0, 0, 0, 935, 936, 5, 412, 0, 0, 936, 937, 5, 463, 0, 0, 937, 943, 3, 112, 56, 0, 938, 939, 5, 520, 0, 0, 939, 940, 5, 463, 0, 0, 940, 942, 3, 112, 56, 0, 941, 938, 1, 0, 0, 0, 942, 945, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 111, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 946, 947, 5, 537, 0, 0, 947, 113, 1, 0, 0, 0, 948, 949, 5, 8, 0, 0, 949, 951, 5, 373, 0, 0, 950, 952, 3, 334, 167, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 959, 3, 322, 161, 0, 954, 960, 3, 116, 58, 0, 955, 960, 3, 118, 59, 0, 956, 960, 3, 120, 60, 0, 957, 960, 3, 122, 61, 0, 958, 960, 3, 124, 62, 0, 959, 954, 1, 0, 0, 0, 959, 955, 1, 0, 0, 0, 959, 956, 1, 0, 0, 0, 959, 957, 1, 0, 0, 0, 959, 958, 1, 0, 0, 0, 960, 115, 1, 0, 0, 0, 961, 963, 5, 311, 0, 0, 962, 964, 3, 328, 164, 0, 963, 962, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 5, 388, 0, 0, 966, 967, 3, 328, 164, 0, 967, 117, 1, 0, 0, 0, 968, 969, 5, 340, 0, 0, 969, 970, 3, 336, 168, 0, 970, 119, 1, 0, 0, 0, 971, 972, 5, 437, 0, 0, 972, 973, 5, 64, 0, 0, 973, 974, 3, 86, 43, 0, 974, 975, 5, 288, 0, 0, 975, 976, 5, 466, 0, 0, 976, 978, 3, 54, 27, 0, 977, 979, 3, 126, 63, 0, 978, 977, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 121, 1, 0, 0, 0, 980, 981, 5, 116, 0, 0, 981, 982, 5, 64, 0, 0, 982, 983, 3, 86, 43, 0, 983, 123, 1, 0, 0, 0, 984, 985, 5, 437, 0, 0, 985, 986, 5, 403, 0, 0, 986, 987, 3, 54, 27, 0, 987, 125, 1, 0, 0, 0, 988, 989, 5, 241, 0, 0, 989, 990, 5, 125, 0, 0, 990, 127, 1, 0, 0, 0, 991, 992, 5, 8, 0, 0, 992, 993, 5, 501, 0, 0, 993, 997, 3, 324, 162, 0, 994, 998, 3, 116, 58, 0, 995, 996, 5, 17, 0, 0, 996, 998, 3, 158, 79, 0, 997, 994, 1, 0, 0, 0, 997, 995, 1, 0, 0, 0, 998, 129, 1, 0, 0, 0, 999, 1000, 5, 8, 0, 0, 1000, 1001, 5, 447, 0, 0, 1001, 1002, 3, 316, 158, 0, 1002, 1003, 3, 118, 59, 0, 1003, 131, 1, 0, 0, 0, 1004, 1008, 5, 8, 0, 0, 1005, 1009, 5, 497, 0, 0, 1006, 1007, 5, 497, 0, 0, 1007, 1009, 5, 370, 0, 0, 1008, 1005, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1012, 5, 153, 0, 0, 1011, 1013, 3, 334, 167, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1015, 3, 272, 136, 0, 1015, 1016, 5, 17, 0, 0, 1016, 1019, 3, 304, 152, 0, 1017, 1018, 5, 195, 0, 0, 1018, 1020, 7, 16, 0, 0, 1019, 1017, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 133, 1, 0, 0, 0, 1021, 1022, 5, 116, 0, 0, 1022, 1024, 5, 441, 0, 0, 1023, 1025, 3, 334, 167, 0, 1024, 1023, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1027, 3, 312, 156, 0, 1027, 135, 1, 0, 0, 0, 1028, 1030, 5, 116, 0, 0, 1029, 1031, 5, 497, 0, 0, 1030, 1029, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1032, 1, 0, 0, 0, 1032, 1034, 5, 373, 0, 0, 1033, 1035, 3, 334, 167, 0, 1034, 1033, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1037, 3, 322, 161, 0, 1037, 137, 1, 0, 0, 0, 1038, 1039, 5, 116, 0, 0, 1039, 1041, 5, 447, 0, 0, 1040, 1042, 3, 334, 167, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1045, 3, 316, 158, 0, 1044, 1046, 7, 17, 0, 0, 1045, 1044, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 139, 1, 0, 0, 0, 1047, 1049, 5, 116, 0, 0, 1048, 1050, 5, 497, 0, 0, 1049, 1048, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 5, 501, 0, 0, 1052, 1054, 3, 334, 167, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 3, 324, 162, 0, 1056, 141, 1, 0, 0, 0, 1057, 1061, 5, 116, 0, 0, 1058, 1062, 5, 497, 0, 0, 1059, 1060, 5, 497, 0, 0, 1060, 1062, 5, 370, 0, 0, 1061, 1058, 1, 0, 0, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 5, 153, 0, 0, 1064, 1066, 3, 334, 167, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 3, 272, 136, 0, 1068, 143, 1, 0, 0, 0, 1069, 1071, 5, 132, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1077, 3, 146, 73, 0, 1073, 1077, 3, 154, 77, 0, 1074, 1075, 5, 132, 0, 0, 1075, 1077, 3, 156, 78, 0, 1076, 1070, 1, 0, 0, 0, 1076, 1073, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1077, 145, 1, 0, 0, 0, 1078, 1079, 5, 177, 0, 0, 1079, 1080, 7, 18, 0, 0, 1080, 1089, 3, 322, 161, 0, 1081, 1083, 3, 148, 74, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1085, 1, 0, 0, 0, 1084, 1086, 3, 54, 27, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1090, 3, 158, 79, 0, 1088, 1090, 3, 150, 75, 0, 1089, 1082, 1, 0, 0, 0, 1089, 1088, 1, 0, 0, 0, 1090, 147, 1, 0, 0, 0, 1091, 1092, 5, 268, 0, 0, 1092, 1093, 3, 336, 168, 0, 1093, 149, 1, 0, 0, 0, 1094, 1095, 5, 414, 0, 0, 1095, 1100, 3, 152, 76, 0, 1096, 1097, 5, 520, 0, 0, 1097, 1099, 3, 152, 76, 0, 1098, 1096, 1, 0, 0, 0, 1099, 1102, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 151, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1103, 1104, 5, 516, 0, 0, 1104, 1109, 3, 354, 177, 0, 1105, 1106, 5, 520, 0, 0, 1106, 1108, 3, 354, 177, 0, 1107, 1105, 1, 0, 0, 0, 1108, 1111, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1112, 1, 0, 0, 0, 1111, 1109, 1, 0, 0, 0, 1112, 1113, 5, 517, 0, 0, 1113, 153, 1, 0, 0, 0, 1114, 1115, 5, 24, 0, 0, 1115, 1116, 5, 354, 0, 0, 1116, 1117, 5, 340, 0, 0, 1117, 1121, 5, 521, 0, 0, 1118, 1119, 3, 146, 73, 0, 1119, 1120, 5, 521, 0, 0, 1120, 1122, 1, 0, 0, 0, 1121, 1118, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1121, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 5, 122, 0, 0, 1126, 155, 1, 0, 0, 0, 1127, 1128, 5, 354, 0, 0, 1128, 1129, 5, 340, 0, 0, 1129, 1133, 5, 24, 0, 0, 1130, 1131, 3, 146, 73, 0, 1131, 1132, 5, 521, 0, 0, 1132, 1134, 1, 0, 0, 0, 1133, 1130, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 5, 122, 0, 0, 1138, 157, 1, 0, 0, 0, 1139, 1140, 6, 79, -1, 0, 1140, 1163, 3, 160, 80, 0, 1141, 1142, 3, 162, 81, 0, 1142, 1143, 3, 158, 79, 5, 1143, 1163, 1, 0, 0, 0, 1144, 1145, 5, 516, 0, 0, 1145, 1146, 3, 158, 79, 0, 1146, 1147, 5, 517, 0, 0, 1147, 1163, 1, 0, 0, 0, 1148, 1150, 3, 170, 85, 0, 1149, 1151, 3, 230, 115, 0, 1150, 1149, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1153, 1, 0, 0, 0, 1152, 1154, 3, 234, 117, 0, 1153, 1152, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1163, 1, 0, 0, 0, 1155, 1157, 3, 168, 84, 0, 1156, 1158, 3, 230, 115, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1160, 1, 0, 0, 0, 1159, 1161, 3, 234, 117, 0, 1160, 1159, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1163, 1, 0, 0, 0, 1162, 1139, 1, 0, 0, 0, 1162, 1141, 1, 0, 0, 0, 1162, 1144, 1, 0, 0, 0, 1162, 1148, 1, 0, 0, 0, 1162, 1155, 1, 0, 0, 0, 1163, 1178, 1, 0, 0, 0, 1164, 1165, 10, 3, 0, 0, 1165, 1167, 7, 19, 0, 0, 1166, 1168, 5, 5, 0, 0, 1167, 1166, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1171, 3, 158, 79, 0, 1170, 1172, 3, 230, 115, 0, 1171, 1170, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1174, 1, 0, 0, 0, 1173, 1175, 3, 234, 117, 0, 1174, 1173, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1177, 1, 0, 0, 0, 1176, 1164, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 159, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1182, 5, 414, 0, 0, 1182, 1187, 3, 258, 129, 0, 1183, 1184, 5, 520, 0, 0, 1184, 1186, 3, 258, 129, 0, 1185, 1183, 1, 0, 0, 0, 1186, 1189, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 161, 1, 0, 0, 0, 1189, 1187, 1, 0, 0, 0, 1190, 1191, 5, 433, 0, 0, 1191, 1196, 3, 164, 82, 0, 1192, 1193, 5, 520, 0, 0, 1193, 1195, 3, 164, 82, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1198, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 163, 1, 0, 0, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1211, 3, 166, 83, 0, 1200, 1201, 5, 516, 0, 0, 1201, 1206, 3, 52, 26, 0, 1202, 1203, 5, 520, 0, 0, 1203, 1205, 3, 52, 26, 0, 1204, 1202, 1, 0, 0, 0, 1205, 1208, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1210, 5, 517, 0, 0, 1210, 1212, 1, 0, 0, 0, 1211, 1200, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 5, 17, 0, 0, 1214, 1215, 5, 516, 0, 0, 1215, 1216, 3, 158, 79, 0, 1216, 1217, 5, 517, 0, 0, 1217, 165, 1, 0, 0, 0, 1218, 1219, 3, 304, 152, 0, 1219, 167, 1, 0, 0, 0, 1220, 1222, 3, 170, 85, 0, 1221, 1223, 3, 176, 88, 0, 1222, 1221, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1225, 1, 0, 0, 0, 1224, 1226, 3, 204, 102, 0, 1225, 1224, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1228, 1, 0, 0, 0, 1227, 1229, 3, 206, 103, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1231, 1, 0, 0, 0, 1230, 1232, 3, 220, 110, 0, 1231, 1230, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1234, 1, 0, 0, 0, 1233, 1235, 3, 222, 111, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1241, 1, 0, 0, 0, 1236, 1237, 3, 170, 85, 0, 1237, 1238, 3, 176, 88, 0, 1238, 1239, 3, 228, 114, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1220, 1, 0, 0, 0, 1240, 1236, 1, 0, 0, 0, 1241, 169, 1, 0, 0, 0, 1242, 1244, 5, 336, 0, 0, 1243, 1245, 3, 364, 182, 0, 1244, 1243, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1255, 1, 0, 0, 0, 1246, 1256, 5, 527, 0, 0, 1247, 1252, 3, 172, 86, 0, 1248, 1249, 5, 520, 0, 0, 1249, 1251, 3, 172, 86, 0, 1250, 1248, 1, 0, 0, 0, 1251, 1254, 1, 0, 0, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1256, 1, 0, 0, 0, 1254, 1252, 1, 0, 0, 0, 1255, 1246, 1, 0, 0, 0, 1255, 1247, 1, 0, 0, 0, 1256, 171, 1, 0, 0, 0, 1257, 1266, 3, 174, 87, 0, 1258, 1263, 3, 52, 26, 0, 1259, 1261, 5, 17, 0, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1264, 3, 258, 129, 0, 1263, 1260, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1257, 1, 0, 0, 0, 1265, 1258, 1, 0, 0, 0, 1266, 173, 1, 0, 0, 0, 1267, 1268, 3, 268, 134, 0, 1268, 1269, 5, 262, 0, 0, 1269, 1270, 3, 226, 113, 0, 1270, 1271, 5, 17, 0, 0, 1271, 1272, 3, 304, 152, 0, 1272, 1280, 1, 0, 0, 0, 1273, 1274, 3, 268, 134, 0, 1274, 1275, 5, 262, 0, 0, 1275, 1276, 3, 296, 148, 0, 1276, 1277, 5, 17, 0, 0, 1277, 1278, 3, 304, 152, 0, 1278, 1280, 1, 0, 0, 0, 1279, 1267, 1, 0, 0, 0, 1279, 1273, 1, 0, 0, 0, 1280, 175, 1, 0, 0, 0, 1281, 1282, 5, 151, 0, 0, 1282, 1283, 3, 178, 89, 0, 1283, 177, 1, 0, 0, 0, 1284, 1285, 6, 89, -1, 0, 1285, 1290, 3, 180, 90, 0, 1286, 1287, 5, 520, 0, 0, 1287, 1289, 3, 180, 90, 0, 1288, 1286, 1, 0, 0, 0, 1289, 1292, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1296, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1296, 3, 188, 94, 0, 1294, 1296, 3, 190, 95, 0, 1295, 1284, 1, 0, 0, 0, 1295, 1293, 1, 0, 0, 0, 1295, 1294, 1, 0, 0, 0, 1296, 1318, 1, 0, 0, 0, 1297, 1298, 10, 3, 0, 0, 1298, 1299, 5, 73, 0, 0, 1299, 1300, 5, 185, 0, 0, 1300, 1317, 3, 178, 89, 4, 1301, 1303, 10, 4, 0, 0, 1302, 1304, 5, 233, 0, 0, 1303, 1302, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1306, 1, 0, 0, 0, 1305, 1307, 7, 20, 0, 0, 1306, 1305, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1309, 1, 0, 0, 0, 1308, 1310, 5, 261, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1312, 5, 185, 0, 0, 1312, 1314, 3, 178, 89, 0, 1313, 1315, 3, 202, 101, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 1, 0, 0, 0, 1316, 1297, 1, 0, 0, 0, 1316, 1301, 1, 0, 0, 0, 1317, 1320, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 179, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1321, 1323, 3, 182, 91, 0, 1322, 1324, 3, 294, 147, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 181, 1, 0, 0, 0, 1325, 1327, 5, 373, 0, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1330, 3, 322, 161, 0, 1329, 1331, 3, 184, 92, 0, 1330, 1329, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1336, 1, 0, 0, 0, 1332, 1334, 5, 17, 0, 0, 1333, 1332, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1337, 3, 278, 139, 0, 1336, 1333, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1377, 1, 0, 0, 0, 1338, 1340, 3, 324, 162, 0, 1339, 1341, 3, 184, 92, 0, 1340, 1339, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1346, 1, 0, 0, 0, 1342, 1344, 5, 17, 0, 0, 1343, 1342, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1347, 3, 278, 139, 0, 1346, 1343, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1377, 1, 0, 0, 0, 1348, 1349, 5, 198, 0, 0, 1349, 1350, 5, 373, 0, 0, 1350, 1351, 5, 516, 0, 0, 1351, 1352, 3, 272, 136, 0, 1352, 1353, 5, 516, 0, 0, 1353, 1358, 3, 274, 137, 0, 1354, 1355, 5, 520, 0, 0, 1355, 1357, 3, 274, 137, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1360, 1, 0, 0, 0, 1358, 1356, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1361, 1, 0, 0, 0, 1360, 1358, 1, 0, 0, 0, 1361, 1362, 5, 517, 0, 0, 1362, 1363, 5, 517, 0, 0, 1363, 1377, 1, 0, 0, 0, 1364, 1366, 5, 198, 0, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 5, 516, 0, 0, 1368, 1369, 3, 158, 79, 0, 1369, 1370, 5, 517, 0, 0, 1370, 1377, 1, 0, 0, 0, 1371, 1372, 5, 405, 0, 0, 1372, 1373, 5, 516, 0, 0, 1373, 1374, 3, 258, 129, 0, 1374, 1375, 5, 517, 0, 0, 1375, 1377, 1, 0, 0, 0, 1376, 1326, 1, 0, 0, 0, 1376, 1338, 1, 0, 0, 0, 1376, 1348, 1, 0, 0, 0, 1376, 1365, 1, 0, 0, 0, 1376, 1371, 1, 0, 0, 0, 1377, 183, 1, 0, 0, 0, 1378, 1379, 5, 146, 0, 0, 1379, 1380, 5, 371, 0, 0, 1380, 1381, 5, 17, 0, 0, 1381, 1382, 5, 249, 0, 0, 1382, 1383, 3, 186, 93, 0, 1383, 185, 1, 0, 0, 0, 1384, 1385, 3, 258, 129, 0, 1385, 187, 1, 0, 0, 0, 1386, 1387, 5, 516, 0, 0, 1387, 1388, 3, 150, 75, 0, 1388, 1389, 5, 517, 0, 0, 1389, 1390, 3, 294, 147, 0, 1390, 189, 1, 0, 0, 0, 1391, 1392, 5, 373, 0, 0, 1392, 1393, 5, 516, 0, 0, 1393, 1394, 3, 192, 96, 0, 1394, 1395, 5, 517, 0, 0, 1395, 191, 1, 0, 0, 0, 1396, 1397, 3, 194, 97, 0, 1397, 1398, 5, 516, 0, 0, 1398, 1403, 3, 196, 98, 0, 1399, 1400, 5, 520, 0, 0, 1400, 1402, 3, 196, 98, 0, 1401, 1399, 1, 0, 0, 0, 1402, 1405, 1, 0, 0, 0, 1403, 1401, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1406, 1, 0, 0, 0, 1405, 1403, 1, 0, 0, 0, 1406, 1407, 5, 517, 0, 0, 1407, 193, 1, 0, 0, 0, 1408, 1409, 7, 21, 0, 0, 1409, 195, 1, 0, 0, 0, 1410, 1411, 5, 373, 0, 0, 1411, 1426, 3, 218, 109, 0, 1412, 1426, 3, 200, 100, 0, 1413, 1426, 3, 282, 141, 0, 1414, 1415, 5, 446, 0, 0, 1415, 1416, 5, 536, 0, 0, 1416, 1417, 5, 373, 0, 0, 1417, 1426, 3, 218, 109, 0, 1418, 1419, 5, 498, 0, 0, 1419, 1420, 5, 536, 0, 0, 1420, 1426, 3, 200, 100, 0, 1421, 1422, 3, 198, 99, 0, 1422, 1423, 5, 536, 0, 0, 1423, 1424, 3, 282, 141, 0, 1424, 1426, 1, 0, 0, 0, 1425, 1410, 1, 0, 0, 0, 1425, 1412, 1, 0, 0, 0, 1425, 1413, 1, 0, 0, 0, 1425, 1414, 1, 0, 0, 0, 1425, 1418, 1, 0, 0, 0, 1425, 1421, 1, 0, 0, 0, 1426, 197, 1, 0, 0, 0, 1427, 1428, 7, 22, 0, 0, 1428, 199, 1, 0, 0, 0, 1429, 1430, 5, 451, 0, 0, 1430, 1431, 5, 516, 0, 0, 1431, 1432, 3, 52, 26, 0, 1432, 1433, 5, 517, 0, 0, 1433, 201, 1, 0, 0, 0, 1434, 1435, 5, 253, 0, 0, 1435, 1439, 3, 260, 130, 0, 1436, 1437, 5, 412, 0, 0, 1437, 1439, 3, 54, 27, 0, 1438, 1434, 1, 0, 0, 0, 1438, 1436, 1, 0, 0, 0, 1439, 203, 1, 0, 0, 0, 1440, 1441, 5, 430, 0, 0, 1441, 1442, 3, 260, 130, 0, 1442, 205, 1, 0, 0, 0, 1443, 1444, 5, 159, 0, 0, 1444, 1445, 5, 34, 0, 0, 1445, 1450, 3, 208, 104, 0, 1446, 1447, 5, 520, 0, 0, 1447, 1449, 3, 208, 104, 0, 1448, 1446, 1, 0, 0, 0, 1449, 1452, 1, 0, 0, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 207, 1, 0, 0, 0, 1452, 1450, 1, 0, 0, 0, 1453, 1493, 3, 52, 26, 0, 1454, 1493, 3, 214, 107, 0, 1455, 1456, 5, 516, 0, 0, 1456, 1493, 5, 517, 0, 0, 1457, 1458, 5, 516, 0, 0, 1458, 1463, 3, 258, 129, 0, 1459, 1460, 5, 520, 0, 0, 1460, 1462, 3, 258, 129, 0, 1461, 1459, 1, 0, 0, 0, 1462, 1465, 1, 0, 0, 0, 1463, 1461, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1466, 1, 0, 0, 0, 1465, 1463, 1, 0, 0, 0, 1466, 1467, 5, 517, 0, 0, 1467, 1493, 1, 0, 0, 0, 1468, 1469, 3, 212, 106, 0, 1469, 1470, 5, 516, 0, 0, 1470, 1475, 3, 258, 129, 0, 1471, 1472, 5, 520, 0, 0, 1472, 1474, 3, 258, 129, 0, 1473, 1471, 1, 0, 0, 0, 1474, 1477, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, 0, 1476, 1478, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1479, 5, 517, 0, 0, 1479, 1493, 1, 0, 0, 0, 1480, 1481, 3, 210, 105, 0, 1481, 1482, 5, 516, 0, 0, 1482, 1487, 3, 208, 104, 0, 1483, 1484, 5, 520, 0, 0, 1484, 1486, 3, 208, 104, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1489, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1490, 1, 0, 0, 0, 1489, 1487, 1, 0, 0, 0, 1490, 1491, 5, 517, 0, 0, 1491, 1493, 1, 0, 0, 0, 1492, 1453, 1, 0, 0, 0, 1492, 1454, 1, 0, 0, 0, 1492, 1455, 1, 0, 0, 0, 1492, 1457, 1, 0, 0, 0, 1492, 1468, 1, 0, 0, 0, 1492, 1480, 1, 0, 0, 0, 1493, 209, 1, 0, 0, 0, 1494, 1495, 5, 160, 0, 0, 1495, 1496, 5, 493, 0, 0, 1496, 211, 1, 0, 0, 0, 1497, 1498, 7, 23, 0, 0, 1498, 213, 1, 0, 0, 0, 1499, 1500, 3, 216, 108, 0, 1500, 1501, 5, 516, 0, 0, 1501, 1502, 3, 218, 109, 0, 1502, 1503, 5, 520, 0, 0, 1503, 1504, 3, 282, 141, 0, 1504, 1505, 5, 517, 0, 0, 1505, 215, 1, 0, 0, 0, 1506, 1507, 7, 24, 0, 0, 1507, 217, 1, 0, 0, 0, 1508, 1509, 3, 328, 164, 0, 1509, 219, 1, 0, 0, 0, 1510, 1511, 5, 163, 0, 0, 1511, 1512, 3, 260, 130, 0, 1512, 221, 1, 0, 0, 0, 1513, 1514, 5, 432, 0, 0, 1514, 1519, 3, 224, 112, 0, 1515, 1516, 5, 520, 0, 0, 1516, 1518, 3, 224, 112, 0, 1517, 1515, 1, 0, 0, 0, 1518, 1521, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 223, 1, 0, 0, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1523, 3, 296, 148, 0, 1523, 1524, 5, 17, 0, 0, 1524, 1525, 3, 226, 113, 0, 1525, 225, 1, 0, 0, 0, 1526, 1528, 3, 296, 148, 0, 1527, 1526, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1531, 5, 516, 0, 0, 1530, 1532, 3, 236, 118, 0, 1531, 1530, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1534, 1, 0, 0, 0, 1533, 1535, 3, 230, 115, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1537, 1, 0, 0, 0, 1536, 1538, 3, 252, 126, 0, 1537, 1536, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 5, 517, 0, 0, 1540, 227, 1, 0, 0, 0, 1541, 1542, 5, 213, 0, 0, 1542, 1544, 5, 516, 0, 0, 1543, 1545, 3, 236, 118, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1547, 1, 0, 0, 0, 1546, 1548, 3, 230, 115, 0, 1547, 1546, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1550, 1, 0, 0, 0, 1549, 1551, 3, 240, 120, 0, 1550, 1549, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 1, 0, 0, 0, 1552, 1554, 3, 246, 123, 0, 1553, 1552, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1556, 1, 0, 0, 0, 1555, 1557, 3, 248, 124, 0, 1556, 1555, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1559, 1, 0, 0, 0, 1558, 1560, 3, 242, 121, 0, 1559, 1558, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 3, 250, 125, 0, 1562, 1567, 5, 517, 0, 0, 1563, 1565, 5, 17, 0, 0, 1564, 1563, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 3, 304, 152, 0, 1567, 1564, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 229, 1, 0, 0, 0, 1569, 1570, 5, 258, 0, 0, 1570, 1571, 5, 34, 0, 0, 1571, 1576, 3, 232, 116, 0, 1572, 1573, 5, 520, 0, 0, 1573, 1575, 3, 232, 116, 0, 1574, 1572, 1, 0, 0, 0, 1575, 1578, 1, 0, 0, 0, 1576, 1574, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 231, 1, 0, 0, 0, 1578, 1576, 1, 0, 0, 0, 1579, 1581, 3, 52, 26, 0, 1580, 1582, 7, 25, 0, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1585, 1, 0, 0, 0, 1583, 1584, 5, 476, 0, 0, 1584, 1586, 7, 26, 0, 0, 1585, 1583, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 233, 1, 0, 0, 0, 1587, 1590, 5, 204, 0, 0, 1588, 1591, 5, 5, 0, 0, 1589, 1591, 3, 258, 129, 0, 1590, 1588, 1, 0, 0, 0, 1590, 1589, 1, 0, 0, 0, 1591, 235, 1, 0, 0, 0, 1592, 1593, 5, 268, 0, 0, 1593, 1594, 5, 34, 0, 0, 1594, 1599, 3, 52, 26, 0, 1595, 1596, 5, 520, 0, 0, 1596, 1598, 3, 52, 26, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1601, 1, 0, 0, 0, 1599, 1597, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 237, 1, 0, 0, 0, 1601, 1599, 1, 0, 0, 0, 1602, 1619, 5, 527, 0, 0, 1603, 1619, 5, 530, 0, 0, 1604, 1619, 5, 535, 0, 0, 1605, 1606, 5, 518, 0, 0, 1606, 1607, 5, 538, 0, 0, 1607, 1608, 5, 520, 0, 0, 1608, 1609, 5, 538, 0, 0, 1609, 1619, 5, 519, 0, 0, 1610, 1611, 5, 518, 0, 0, 1611, 1612, 5, 538, 0, 0, 1612, 1613, 5, 520, 0, 0, 1613, 1619, 5, 519, 0, 0, 1614, 1615, 5, 518, 0, 0, 1615, 1616, 5, 520, 0, 0, 1616, 1617, 5, 538, 0, 0, 1617, 1619, 5, 519, 0, 0, 1618, 1602, 1, 0, 0, 0, 1618, 1603, 1, 0, 0, 0, 1618, 1604, 1, 0, 0, 0, 1618, 1605, 1, 0, 0, 0, 1618, 1610, 1, 0, 0, 0, 1618, 1614, 1, 0, 0, 0, 1619, 239, 1, 0, 0, 0, 1620, 1621, 5, 215, 0, 0, 1621, 1626, 3, 172, 86, 0, 1622, 1623, 5, 520, 0, 0, 1623, 1625, 3, 172, 86, 0, 1624, 1622, 1, 0, 0, 0, 1625, 1628, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 241, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1629, 1630, 5, 271, 0, 0, 1630, 1632, 5, 516, 0, 0, 1631, 1633, 3, 244, 122, 0, 1632, 1631, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1632, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1638, 5, 517, 0, 0, 1637, 1639, 3, 256, 128, 0, 1638, 1637, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 243, 1, 0, 0, 0, 1640, 1642, 3, 306, 153, 0, 1641, 1643, 3, 238, 119, 0, 1642, 1641, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 245, 1, 0, 0, 0, 1644, 1645, 5, 5, 0, 0, 1645, 1646, 5, 322, 0, 0, 1646, 1647, 5, 272, 0, 0, 1647, 1653, 5, 210, 0, 0, 1648, 1649, 5, 254, 0, 0, 1649, 1650, 5, 321, 0, 0, 1650, 1651, 5, 272, 0, 0, 1651, 1653, 5, 210, 0, 0, 1652, 1644, 1, 0, 0, 0, 1652, 1648, 1, 0, 0, 0, 1653, 247, 1, 0, 0, 0, 1654, 1655, 5, 438, 0, 0, 1655, 1656, 5, 210, 0, 0, 1656, 1657, 5, 343, 0, 0, 1657, 1658, 5, 478, 0, 0, 1658, 1659, 5, 467, 0, 0, 1659, 1679, 5, 321, 0, 0, 1660, 1661, 5, 438, 0, 0, 1661, 1662, 5, 210, 0, 0, 1662, 1663, 5, 343, 0, 0, 1663, 1664, 5, 388, 0, 0, 1664, 1665, 5, 237, 0, 0, 1665, 1679, 5, 321, 0, 0, 1666, 1667, 5, 438, 0, 0, 1667, 1668, 5, 210, 0, 0, 1668, 1669, 5, 343, 0, 0, 1669, 1670, 5, 388, 0, 0, 1670, 1671, 5, 467, 0, 0, 1671, 1679, 3, 306, 153, 0, 1672, 1673, 5, 438, 0, 0, 1673, 1674, 5, 210, 0, 0, 1674, 1675, 5, 343, 0, 0, 1675, 1676, 5, 388, 0, 0, 1676, 1677, 5, 457, 0, 0, 1677, 1679, 3, 306, 153, 0, 1678, 1654, 1, 0, 0, 0, 1678, 1660, 1, 0, 0, 0, 1678, 1666, 1, 0, 0, 0, 1678, 1672, 1, 0, 0, 0, 1679, 249, 1, 0, 0, 0, 1680, 1681, 5, 105, 0, 0, 1681, 1686, 3, 172, 86, 0, 1682, 1683, 5, 520, 0, 0, 1683, 1685, 3, 172, 86, 0, 1684, 1682, 1, 0, 0, 0, 1685, 1688, 1, 0, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 251, 1, 0, 0, 0, 1688, 1686, 1, 0, 0, 0, 1689, 1690, 5, 292, 0, 0, 1690, 1691, 5, 27, 0, 0, 1691, 1692, 3, 282, 141, 0, 1692, 1693, 3, 254, 127, 0, 1693, 1699, 1, 0, 0, 0, 1694, 1695, 5, 322, 0, 0, 1695, 1696, 5, 27, 0, 0, 1696, 1697, 5, 538, 0, 0, 1697, 1699, 3, 254, 127, 0, 1698, 1689, 1, 0, 0, 0, 1698, 1694, 1, 0, 0, 0, 1699, 253, 1, 0, 0, 0, 1700, 1701, 5, 480, 0, 0, 1701, 1702, 5, 10, 0, 0, 1702, 1703, 5, 76, 0, 0, 1703, 1704, 5, 321, 0, 0, 1704, 255, 1, 0, 0, 0, 1705, 1706, 5, 434, 0, 0, 1706, 1707, 3, 282, 141, 0, 1707, 257, 1, 0, 0, 0, 1708, 1709, 3, 260, 130, 0, 1709, 259, 1, 0, 0, 0, 1710, 1711, 6, 130, -1, 0, 1711, 1712, 5, 241, 0, 0, 1712, 1723, 3, 260, 130, 6, 1713, 1714, 5, 133, 0, 0, 1714, 1715, 5, 516, 0, 0, 1715, 1716, 3, 158, 79, 0, 1716, 1717, 5, 517, 0, 0, 1717, 1723, 1, 0, 0, 0, 1718, 1720, 3, 266, 133, 0, 1719, 1721, 3, 262, 131, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1723, 1, 0, 0, 0, 1722, 1710, 1, 0, 0, 0, 1722, 1713, 1, 0, 0, 0, 1722, 1718, 1, 0, 0, 0, 1723, 1738, 1, 0, 0, 0, 1724, 1725, 10, 3, 0, 0, 1725, 1726, 5, 10, 0, 0, 1726, 1737, 3, 260, 130, 4, 1727, 1728, 10, 2, 0, 0, 1728, 1729, 5, 257, 0, 0, 1729, 1737, 3, 260, 130, 3, 1730, 1731, 10, 1, 0, 0, 1731, 1733, 5, 184, 0, 0, 1732, 1734, 5, 241, 0, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1737, 7, 27, 0, 0, 1736, 1724, 1, 0, 0, 0, 1736, 1727, 1, 0, 0, 0, 1736, 1730, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 261, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1743, 5, 241, 0, 0, 1742, 1741, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1746, 5, 27, 0, 0, 1745, 1747, 7, 28, 0, 0, 1746, 1745, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 3, 266, 133, 0, 1749, 1750, 5, 10, 0, 0, 1750, 1751, 3, 266, 133, 0, 1751, 1809, 1, 0, 0, 0, 1752, 1754, 5, 241, 0, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 5, 170, 0, 0, 1756, 1757, 5, 516, 0, 0, 1757, 1762, 3, 258, 129, 0, 1758, 1759, 5, 520, 0, 0, 1759, 1761, 3, 258, 129, 0, 1760, 1758, 1, 0, 0, 0, 1761, 1764, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1765, 1766, 5, 517, 0, 0, 1766, 1809, 1, 0, 0, 0, 1767, 1769, 5, 241, 0, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 5, 170, 0, 0, 1771, 1772, 5, 516, 0, 0, 1772, 1773, 3, 158, 79, 0, 1773, 1774, 5, 517, 0, 0, 1774, 1809, 1, 0, 0, 0, 1775, 1776, 5, 133, 0, 0, 1776, 1777, 5, 516, 0, 0, 1777, 1778, 3, 158, 79, 0, 1778, 1779, 5, 517, 0, 0, 1779, 1809, 1, 0, 0, 0, 1780, 1782, 5, 241, 0, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 5, 318, 0, 0, 1784, 1809, 3, 266, 133, 0, 1785, 1809, 3, 264, 132, 0, 1786, 1788, 5, 184, 0, 0, 1787, 1789, 5, 241, 0, 0, 1788, 1787, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1809, 7, 27, 0, 0, 1791, 1793, 5, 184, 0, 0, 1792, 1794, 5, 241, 0, 0, 1793, 1792, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 5, 113, 0, 0, 1796, 1797, 5, 151, 0, 0, 1797, 1809, 3, 266, 133, 0, 1798, 1800, 5, 241, 0, 0, 1799, 1798, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 5, 342, 0, 0, 1802, 1803, 5, 388, 0, 0, 1803, 1806, 3, 266, 133, 0, 1804, 1805, 5, 127, 0, 0, 1805, 1807, 3, 358, 179, 0, 1806, 1804, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1809, 1, 0, 0, 0, 1808, 1742, 1, 0, 0, 0, 1808, 1753, 1, 0, 0, 0, 1808, 1768, 1, 0, 0, 0, 1808, 1775, 1, 0, 0, 0, 1808, 1781, 1, 0, 0, 0, 1808, 1785, 1, 0, 0, 0, 1808, 1786, 1, 0, 0, 0, 1808, 1791, 1, 0, 0, 0, 1808, 1799, 1, 0, 0, 0, 1809, 263, 1, 0, 0, 0, 1810, 1812, 5, 241, 0, 0, 1811, 1810, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1814, 5, 202, 0, 0, 1814, 1828, 7, 29, 0, 0, 1815, 1816, 5, 516, 0, 0, 1816, 1829, 5, 517, 0, 0, 1817, 1818, 5, 516, 0, 0, 1818, 1823, 3, 258, 129, 0, 1819, 1820, 5, 520, 0, 0, 1820, 1822, 3, 258, 129, 0, 1821, 1819, 1, 0, 0, 0, 1822, 1825, 1, 0, 0, 0, 1823, 1821, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1826, 1, 0, 0, 0, 1825, 1823, 1, 0, 0, 0, 1826, 1827, 5, 517, 0, 0, 1827, 1829, 1, 0, 0, 0, 1828, 1815, 1, 0, 0, 0, 1828, 1817, 1, 0, 0, 0, 1829, 1840, 1, 0, 0, 0, 1830, 1832, 5, 241, 0, 0, 1831, 1830, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1834, 5, 202, 0, 0, 1834, 1837, 3, 266, 133, 0, 1835, 1836, 5, 127, 0, 0, 1836, 1838, 3, 358, 179, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1840, 1, 0, 0, 0, 1839, 1811, 1, 0, 0, 0, 1839, 1831, 1, 0, 0, 0, 1840, 265, 1, 0, 0, 0, 1841, 1842, 6, 133, -1, 0, 1842, 1846, 3, 268, 134, 0, 1843, 1844, 7, 30, 0, 0, 1844, 1846, 3, 266, 133, 7, 1845, 1841, 1, 0, 0, 0, 1845, 1843, 1, 0, 0, 0, 1846, 1868, 1, 0, 0, 0, 1847, 1848, 10, 6, 0, 0, 1848, 1849, 7, 31, 0, 0, 1849, 1867, 3, 266, 133, 7, 1850, 1851, 10, 5, 0, 0, 1851, 1852, 7, 32, 0, 0, 1852, 1867, 3, 266, 133, 6, 1853, 1854, 10, 4, 0, 0, 1854, 1855, 5, 511, 0, 0, 1855, 1867, 3, 266, 133, 5, 1856, 1857, 10, 3, 0, 0, 1857, 1858, 5, 512, 0, 0, 1858, 1867, 3, 266, 133, 4, 1859, 1860, 10, 2, 0, 0, 1860, 1861, 5, 510, 0, 0, 1861, 1867, 3, 266, 133, 3, 1862, 1863, 10, 1, 0, 0, 1863, 1864, 3, 346, 173, 0, 1864, 1865, 3, 266, 133, 2, 1865, 1867, 1, 0, 0, 0, 1866, 1847, 1, 0, 0, 0, 1866, 1850, 1, 0, 0, 0, 1866, 1853, 1, 0, 0, 0, 1866, 1856, 1, 0, 0, 0, 1866, 1859, 1, 0, 0, 0, 1866, 1862, 1, 0, 0, 0, 1867, 1870, 1, 0, 0, 0, 1868, 1866, 1, 0, 0, 0, 1868, 1869, 1, 0, 0, 0, 1869, 267, 1, 0, 0, 0, 1870, 1868, 1, 0, 0, 0, 1871, 1872, 6, 134, -1, 0, 1872, 1874, 5, 40, 0, 0, 1873, 1875, 3, 310, 155, 0, 1874, 1873, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1874, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1880, 1, 0, 0, 0, 1878, 1879, 5, 120, 0, 0, 1879, 1881, 3, 258, 129, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1883, 5, 122, 0, 0, 1883, 1964, 1, 0, 0, 0, 1884, 1885, 5, 40, 0, 0, 1885, 1887, 3, 258, 129, 0, 1886, 1888, 3, 310, 155, 0, 1887, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1887, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1893, 1, 0, 0, 0, 1891, 1892, 5, 120, 0, 0, 1892, 1894, 3, 258, 129, 0, 1893, 1891, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 5, 122, 0, 0, 1896, 1964, 1, 0, 0, 0, 1897, 1898, 5, 41, 0, 0, 1898, 1899, 5, 516, 0, 0, 1899, 1900, 3, 258, 129, 0, 1900, 1901, 5, 17, 0, 0, 1901, 1902, 3, 56, 28, 0, 1902, 1903, 5, 517, 0, 0, 1903, 1964, 1, 0, 0, 0, 1904, 1905, 5, 457, 0, 0, 1905, 1906, 5, 516, 0, 0, 1906, 1909, 3, 258, 129, 0, 1907, 1908, 5, 461, 0, 0, 1908, 1910, 5, 476, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 5, 517, 0, 0, 1912, 1964, 1, 0, 0, 0, 1913, 1914, 5, 467, 0, 0, 1914, 1915, 5, 516, 0, 0, 1915, 1918, 3, 258, 129, 0, 1916, 1917, 5, 461, 0, 0, 1917, 1919, 5, 476, 0, 0, 1918, 1916, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 5, 517, 0, 0, 1921, 1964, 1, 0, 0, 0, 1922, 1923, 5, 281, 0, 0, 1923, 1924, 5, 516, 0, 0, 1924, 1925, 3, 266, 133, 0, 1925, 1926, 5, 170, 0, 0, 1926, 1927, 3, 266, 133, 0, 1927, 1928, 5, 517, 0, 0, 1928, 1964, 1, 0, 0, 0, 1929, 1964, 3, 354, 177, 0, 1930, 1964, 5, 527, 0, 0, 1931, 1932, 3, 328, 164, 0, 1932, 1933, 5, 513, 0, 0, 1933, 1934, 5, 527, 0, 0, 1934, 1964, 1, 0, 0, 0, 1935, 1936, 5, 516, 0, 0, 1936, 1937, 3, 158, 79, 0, 1937, 1938, 5, 517, 0, 0, 1938, 1964, 1, 0, 0, 0, 1939, 1940, 3, 272, 136, 0, 1940, 1952, 5, 516, 0, 0, 1941, 1943, 3, 364, 182, 0, 1942, 1941, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1949, 3, 274, 137, 0, 1945, 1946, 5, 520, 0, 0, 1946, 1948, 3, 274, 137, 0, 1947, 1945, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1953, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1952, 1942, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1955, 5, 517, 0, 0, 1955, 1964, 1, 0, 0, 0, 1956, 1964, 3, 304, 152, 0, 1957, 1964, 3, 276, 138, 0, 1958, 1959, 5, 516, 0, 0, 1959, 1960, 3, 258, 129, 0, 1960, 1961, 5, 517, 0, 0, 1961, 1964, 1, 0, 0, 0, 1962, 1964, 5, 85, 0, 0, 1963, 1871, 1, 0, 0, 0, 1963, 1884, 1, 0, 0, 0, 1963, 1897, 1, 0, 0, 0, 1963, 1904, 1, 0, 0, 0, 1963, 1913, 1, 0, 0, 0, 1963, 1922, 1, 0, 0, 0, 1963, 1929, 1, 0, 0, 0, 1963, 1930, 1, 0, 0, 0, 1963, 1931, 1, 0, 0, 0, 1963, 1935, 1, 0, 0, 0, 1963, 1939, 1, 0, 0, 0, 1963, 1956, 1, 0, 0, 0, 1963, 1957, 1, 0, 0, 0, 1963, 1958, 1, 0, 0, 0, 1963, 1962, 1, 0, 0, 0, 1964, 1972, 1, 0, 0, 0, 1965, 1966, 10, 5, 0, 0, 1966, 1967, 5, 514, 0, 0, 1967, 1968, 3, 266, 133, 0, 1968, 1969, 5, 515, 0, 0, 1969, 1971, 1, 0, 0, 0, 1970, 1965, 1, 0, 0, 0, 1971, 1974, 1, 0, 0, 0, 1972, 1970, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 269, 1, 0, 0, 0, 1974, 1972, 1, 0, 0, 0, 1975, 1976, 3, 328, 164, 0, 1976, 271, 1, 0, 0, 0, 1977, 1980, 3, 372, 186, 0, 1978, 1980, 3, 328, 164, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1978, 1, 0, 0, 0, 1980, 273, 1, 0, 0, 0, 1981, 1986, 3, 370, 185, 0, 1982, 1986, 3, 368, 184, 0, 1983, 1986, 3, 366, 183, 0, 1984, 1986, 3, 258, 129, 0, 1985, 1981, 1, 0, 0, 0, 1985, 1982, 1, 0, 0, 0, 1985, 1983, 1, 0, 0, 0, 1985, 1984, 1, 0, 0, 0, 1986, 275, 1, 0, 0, 0, 1987, 1988, 3, 328, 164, 0, 1988, 277, 1, 0, 0, 0, 1989, 1990, 3, 304, 152, 0, 1990, 279, 1, 0, 0, 0, 1991, 1994, 3, 304, 152, 0, 1992, 1994, 3, 276, 138, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1992, 1, 0, 0, 0, 1994, 281, 1, 0, 0, 0, 1995, 1998, 5, 182, 0, 0, 1996, 1999, 3, 284, 142, 0, 1997, 1999, 3, 288, 144, 0, 1998, 1996, 1, 0, 0, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 283, 1, 0, 0, 0, 2000, 2002, 3, 286, 143, 0, 2001, 2003, 3, 290, 145, 0, 2002, 2001, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 285, 1, 0, 0, 0, 2004, 2005, 3, 292, 146, 0, 2005, 2006, 3, 368, 184, 0, 2006, 2008, 1, 0, 0, 0, 2007, 2004, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 287, 1, 0, 0, 0, 2011, 2014, 3, 290, 145, 0, 2012, 2015, 3, 286, 143, 0, 2013, 2015, 3, 290, 145, 0, 2014, 2012, 1, 0, 0, 0, 2014, 2013, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 289, 1, 0, 0, 0, 2016, 2017, 3, 292, 146, 0, 2017, 2018, 3, 368, 184, 0, 2018, 2019, 5, 388, 0, 0, 2019, 2020, 3, 368, 184, 0, 2020, 291, 1, 0, 0, 0, 2021, 2023, 7, 33, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2027, 7, 34, 0, 0, 2025, 2027, 5, 537, 0, 0, 2026, 2022, 1, 0, 0, 0, 2026, 2025, 1, 0, 0, 0, 2027, 293, 1, 0, 0, 0, 2028, 2030, 5, 17, 0, 0, 2029, 2028, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2033, 3, 304, 152, 0, 2032, 2034, 3, 300, 150, 0, 2033, 2032, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 295, 1, 0, 0, 0, 2035, 2036, 3, 304, 152, 0, 2036, 2037, 3, 298, 149, 0, 2037, 297, 1, 0, 0, 0, 2038, 2039, 5, 221, 0, 0, 2039, 2041, 3, 304, 152, 0, 2040, 2038, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2046, 1, 0, 0, 0, 2044, 2046, 1, 0, 0, 0, 2045, 2040, 1, 0, 0, 0, 2045, 2044, 1, 0, 0, 0, 2046, 299, 1, 0, 0, 0, 2047, 2048, 5, 516, 0, 0, 2048, 2049, 3, 302, 151, 0, 2049, 2050, 5, 517, 0, 0, 2050, 301, 1, 0, 0, 0, 2051, 2056, 3, 304, 152, 0, 2052, 2053, 5, 520, 0, 0, 2053, 2055, 3, 304, 152, 0, 2054, 2052, 1, 0, 0, 0, 2055, 2058, 1, 0, 0, 0, 2056, 2054, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 303, 1, 0, 0, 0, 2058, 2056, 1, 0, 0, 0, 2059, 2063, 3, 306, 153, 0, 2060, 2063, 3, 308, 154, 0, 2061, 2063, 3, 374, 187, 0, 2062, 2059, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2061, 1, 0, 0, 0, 2063, 305, 1, 0, 0, 0, 2064, 2065, 7, 35, 0, 0, 2065, 307, 1, 0, 0, 0, 2066, 2067, 5, 537, 0, 0, 2067, 309, 1, 0, 0, 0, 2068, 2069, 5, 428, 0, 0, 2069, 2070, 3, 258, 129, 0, 2070, 2071, 5, 376, 0, 0, 2071, 2072, 3, 258, 129, 0, 2072, 311, 1, 0, 0, 0, 2073, 2074, 3, 304, 152, 0, 2074, 313, 1, 0, 0, 0, 2075, 2076, 3, 304, 152, 0, 2076, 315, 1, 0, 0, 0, 2077, 2080, 3, 304, 152, 0, 2078, 2079, 5, 513, 0, 0, 2079, 2081, 3, 304, 152, 0, 2080, 2078, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 317, 1, 0, 0, 0, 2082, 2085, 3, 304, 152, 0, 2083, 2084, 5, 513, 0, 0, 2084, 2086, 3, 304, 152, 0, 2085, 2083, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 319, 1, 0, 0, 0, 2087, 2090, 3, 304, 152, 0, 2088, 2089, 5, 513, 0, 0, 2089, 2091, 3, 304, 152, 0, 2090, 2088, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2100, 1, 0, 0, 0, 2092, 2093, 3, 304, 152, 0, 2093, 2094, 5, 513, 0, 0, 2094, 2097, 3, 304, 152, 0, 2095, 2096, 5, 513, 0, 0, 2096, 2098, 3, 304, 152, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2087, 1, 0, 0, 0, 2099, 2092, 1, 0, 0, 0, 2100, 321, 1, 0, 0, 0, 2101, 2104, 3, 304, 152, 0, 2102, 2103, 5, 513, 0, 0, 2103, 2105, 3, 304, 152, 0, 2104, 2102, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2114, 1, 0, 0, 0, 2106, 2107, 3, 304, 152, 0, 2107, 2108, 5, 513, 0, 0, 2108, 2111, 3, 304, 152, 0, 2109, 2110, 5, 513, 0, 0, 2110, 2112, 3, 304, 152, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2114, 1, 0, 0, 0, 2113, 2101, 1, 0, 0, 0, 2113, 2106, 1, 0, 0, 0, 2114, 323, 1, 0, 0, 0, 2115, 2118, 3, 304, 152, 0, 2116, 2117, 5, 513, 0, 0, 2117, 2119, 3, 304, 152, 0, 2118, 2116, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2128, 1, 0, 0, 0, 2120, 2121, 3, 304, 152, 0, 2121, 2122, 5, 513, 0, 0, 2122, 2125, 3, 304, 152, 0, 2123, 2124, 5, 513, 0, 0, 2124, 2126, 3, 304, 152, 0, 2125, 2123, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2128, 1, 0, 0, 0, 2127, 2115, 1, 0, 0, 0, 2127, 2120, 1, 0, 0, 0, 2128, 325, 1, 0, 0, 0, 2129, 2132, 3, 304, 152, 0, 2130, 2131, 5, 513, 0, 0, 2131, 2133, 3, 304, 152, 0, 2132, 2130, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2142, 1, 0, 0, 0, 2134, 2135, 3, 304, 152, 0, 2135, 2136, 5, 513, 0, 0, 2136, 2139, 3, 304, 152, 0, 2137, 2138, 5, 513, 0, 0, 2138, 2140, 3, 304, 152, 0, 2139, 2137, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2129, 1, 0, 0, 0, 2141, 2134, 1, 0, 0, 0, 2142, 327, 1, 0, 0, 0, 2143, 2148, 3, 304, 152, 0, 2144, 2145, 5, 513, 0, 0, 2145, 2147, 3, 304, 152, 0, 2146, 2144, 1, 0, 0, 0, 2147, 2150, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2149, 329, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2151, 2152, 5, 433, 0, 0, 2152, 2153, 3, 336, 168, 0, 2153, 331, 1, 0, 0, 0, 2154, 2155, 5, 167, 0, 0, 2155, 2156, 5, 241, 0, 0, 2156, 2157, 5, 133, 0, 0, 2157, 333, 1, 0, 0, 0, 2158, 2159, 5, 167, 0, 0, 2159, 2160, 5, 133, 0, 0, 2160, 335, 1, 0, 0, 0, 2161, 2162, 5, 516, 0, 0, 2162, 2167, 3, 338, 169, 0, 2163, 2164, 5, 520, 0, 0, 2164, 2166, 3, 338, 169, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2169, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2170, 2171, 5, 517, 0, 0, 2171, 337, 1, 0, 0, 0, 2172, 2177, 3, 340, 170, 0, 2173, 2175, 5, 505, 0, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 3, 342, 171, 0, 2177, 2174, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 339, 1, 0, 0, 0, 2179, 2183, 3, 304, 152, 0, 2180, 2183, 3, 276, 138, 0, 2181, 2183, 5, 537, 0, 0, 2182, 2179, 1, 0, 0, 0, 2182, 2180, 1, 0, 0, 0, 2182, 2181, 1, 0, 0, 0, 2183, 341, 1, 0, 0, 0, 2184, 2189, 5, 538, 0, 0, 2185, 2189, 5, 539, 0, 0, 2186, 2189, 3, 362, 181, 0, 2187, 2189, 5, 537, 0, 0, 2188, 2184, 1, 0, 0, 0, 2188, 2185, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2187, 1, 0, 0, 0, 2189, 343, 1, 0, 0, 0, 2190, 2197, 5, 10, 0, 0, 2191, 2192, 5, 511, 0, 0, 2192, 2197, 5, 511, 0, 0, 2193, 2197, 5, 257, 0, 0, 2194, 2195, 5, 510, 0, 0, 2195, 2197, 5, 510, 0, 0, 2196, 2190, 1, 0, 0, 0, 2196, 2191, 1, 0, 0, 0, 2196, 2193, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2197, 345, 1, 0, 0, 0, 2198, 2213, 5, 505, 0, 0, 2199, 2213, 5, 506, 0, 0, 2200, 2213, 5, 507, 0, 0, 2201, 2202, 5, 507, 0, 0, 2202, 2213, 5, 505, 0, 0, 2203, 2204, 5, 506, 0, 0, 2204, 2213, 5, 505, 0, 0, 2205, 2206, 5, 507, 0, 0, 2206, 2213, 5, 506, 0, 0, 2207, 2208, 5, 508, 0, 0, 2208, 2213, 5, 505, 0, 0, 2209, 2210, 5, 507, 0, 0, 2210, 2211, 5, 505, 0, 0, 2211, 2213, 5, 506, 0, 0, 2212, 2198, 1, 0, 0, 0, 2212, 2199, 1, 0, 0, 0, 2212, 2200, 1, 0, 0, 0, 2212, 2201, 1, 0, 0, 0, 2212, 2203, 1, 0, 0, 0, 2212, 2205, 1, 0, 0, 0, 2212, 2207, 1, 0, 0, 0, 2212, 2209, 1, 0, 0, 0, 2213, 347, 1, 0, 0, 0, 2214, 2215, 5, 507, 0, 0, 2215, 2222, 5, 507, 0, 0, 2216, 2217, 5, 506, 0, 0, 2217, 2222, 5, 506, 0, 0, 2218, 2222, 5, 511, 0, 0, 2219, 2222, 5, 512, 0, 0, 2220, 2222, 5, 510, 0, 0, 2221, 2214, 1, 0, 0, 0, 2221, 2216, 1, 0, 0, 0, 2221, 2218, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2221, 2220, 1, 0, 0, 0, 2222, 349, 1, 0, 0, 0, 2223, 2224, 7, 36, 0, 0, 2224, 351, 1, 0, 0, 0, 2225, 2226, 7, 37, 0, 0, 2226, 353, 1, 0, 0, 0, 2227, 2242, 3, 282, 141, 0, 2228, 2242, 3, 356, 178, 0, 2229, 2242, 3, 358, 179, 0, 2230, 2232, 5, 529, 0, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2242, 3, 360, 180, 0, 2234, 2242, 3, 362, 181, 0, 2235, 2242, 5, 539, 0, 0, 2236, 2242, 5, 540, 0, 0, 2237, 2239, 5, 241, 0, 0, 2238, 2237, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2242, 5, 244, 0, 0, 2241, 2227, 1, 0, 0, 0, 2241, 2228, 1, 0, 0, 0, 2241, 2229, 1, 0, 0, 0, 2241, 2231, 1, 0, 0, 0, 2241, 2234, 1, 0, 0, 0, 2241, 2235, 1, 0, 0, 0, 2241, 2236, 1, 0, 0, 0, 2241, 2238, 1, 0, 0, 0, 2242, 355, 1, 0, 0, 0, 2243, 2244, 3, 366, 183, 0, 2244, 2245, 3, 358, 179, 0, 2245, 357, 1, 0, 0, 0, 2246, 2247, 5, 537, 0, 0, 2247, 359, 1, 0, 0, 0, 2248, 2249, 5, 538, 0, 0, 2249, 361, 1, 0, 0, 0, 2250, 2251, 7, 38, 0, 0, 2251, 363, 1, 0, 0, 0, 2252, 2253, 7, 39, 0, 0, 2253, 365, 1, 0, 0, 0, 2254, 2255, 7, 40, 0, 0, 2255, 367, 1, 0, 0, 0, 2256, 2257, 7, 41, 0, 0, 2257, 369, 1, 0, 0, 0, 2258, 2259, 7, 42, 0, 0, 2259, 371, 1, 0, 0, 0, 2260, 2261, 7, 43, 0, 0, 2261, 373, 1, 0, 0, 0, 2262, 2263, 7, 44, 0, 0, 2263, 375, 1, 0, 0, 0, 268, 379, 386, 389, 403, 421, 425, 434, 439, 446, 457, 466, 478, 481, 488, 491, 499, 503, 508, 511, 518, 526, 530, 542, 550, 554, 586, 589, 594, 598, 602, 606, 615, 620, 624, 628, 632, 635, 639, 644, 650, 655, 660, 663, 667, 671, 679, 687, 691, 695, 699, 703, 707, 711, 715, 719, 721, 731, 739, 763, 770, 776, 779, 782, 792, 795, 803, 815, 839, 852, 857, 861, 869, 873, 879, 889, 893, 899, 903, 907, 910, 919, 923, 930, 933, 943, 951, 959, 963, 978, 997, 1008, 1012, 1019, 1024, 1030, 1034, 1041, 1045, 1049, 1053, 1061, 1065, 1070, 1076, 1082, 1085, 1089, 1100, 1109, 1123, 1135, 1150, 1153, 1157, 1160, 1162, 1167, 1171, 1174, 1178, 1187, 1196, 1206, 1211, 1222, 1225, 1228, 1231, 1234, 1240, 1244, 1252, 1255, 1260, 1263, 1265, 1279, 1290, 1295, 1303, 1306, 1309, 1314, 1316, 1318, 1323, 1326, 1330, 1333, 1336, 1340, 1343, 1346, 1358, 1365, 1376, 1403, 1425, 1438, 1450, 1463, 1475, 1487, 1492, 1519, 1527, 1531, 1534, 1537, 1544, 1547, 1550, 1553, 1556, 1559, 1564, 1567, 1576, 1581, 1585, 1590, 1599, 1618, 1626, 1634, 1638, 1642, 1652, 1678, 1686, 1698, 1720, 1722, 1733, 1736, 1738, 1742, 1746, 1753, 1762, 1768, 1781, 1788, 1793, 1799, 1806, 1808, 1811, 1823, 1828, 1831, 1837, 1839, 1845, 1866, 1868, 1876, 1880, 1889, 1893, 1909, 1918, 1942, 1949, 1952, 1963, 1972, 1979, 1985, 1993, 1998, 2002, 2009, 2014, 2022, 2026, 2029, 2033, 2042, 2045, 2056, 2062, 2080, 2085, 2090, 2097, 2099, 2104, 2111, 2113, 2118, 2125, 2127, 2132, 2139, 2141, 2148, 2167, 2174, 2177, 2182, 2188, 2196, 2212, 2221, 2231, 2238, 2241] \ No newline at end of file +[4, 1, 541, 2272, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 1, 0, 5, 0, 378, 8, 0, 10, 0, 12, 0, 381, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 387, 8, 1, 1, 1, 3, 1, 390, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 404, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 422, 8, 4, 1, 5, 1, 5, 3, 5, 426, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 435, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 440, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 445, 8, 8, 10, 8, 12, 8, 448, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 458, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 465, 8, 11, 10, 11, 12, 11, 468, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 479, 8, 12, 1, 12, 3, 12, 482, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 489, 8, 12, 1, 12, 3, 12, 492, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 500, 8, 12, 1, 12, 1, 12, 3, 12, 504, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 509, 8, 12, 1, 12, 3, 12, 512, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 519, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 527, 8, 15, 1, 16, 1, 16, 3, 16, 531, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 543, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 551, 8, 18, 1, 18, 1, 18, 3, 18, 555, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 587, 8, 18, 1, 19, 3, 19, 590, 8, 19, 1, 19, 4, 19, 593, 8, 19, 11, 19, 12, 19, 594, 1, 20, 1, 20, 3, 20, 599, 8, 20, 1, 21, 1, 21, 3, 21, 603, 8, 21, 1, 21, 1, 21, 3, 21, 607, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 614, 8, 21, 10, 21, 12, 21, 617, 9, 21, 1, 21, 1, 21, 3, 21, 621, 8, 21, 1, 21, 1, 21, 3, 21, 625, 8, 21, 1, 21, 1, 21, 3, 21, 629, 8, 21, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 3, 21, 636, 8, 21, 1, 21, 1, 21, 3, 21, 640, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 645, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 651, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 656, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 661, 8, 24, 1, 24, 3, 24, 664, 8, 24, 1, 25, 1, 25, 3, 25, 668, 8, 25, 1, 26, 1, 26, 3, 26, 672, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 678, 8, 27, 10, 27, 12, 27, 681, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 688, 8, 28, 1, 28, 1, 28, 3, 28, 692, 8, 28, 1, 28, 1, 28, 3, 28, 696, 8, 28, 1, 28, 1, 28, 3, 28, 700, 8, 28, 1, 28, 1, 28, 3, 28, 704, 8, 28, 1, 28, 1, 28, 3, 28, 708, 8, 28, 1, 28, 1, 28, 3, 28, 712, 8, 28, 1, 28, 1, 28, 3, 28, 716, 8, 28, 1, 28, 1, 28, 3, 28, 720, 8, 28, 3, 28, 722, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 732, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 740, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 762, 8, 34, 10, 34, 12, 34, 765, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 771, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 777, 8, 35, 1, 35, 3, 35, 780, 8, 35, 1, 35, 3, 35, 783, 8, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 793, 8, 37, 1, 37, 3, 37, 796, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 804, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 816, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 838, 8, 46, 10, 46, 12, 46, 841, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 850, 8, 47, 10, 47, 12, 47, 853, 9, 47, 1, 47, 1, 47, 3, 47, 857, 8, 47, 1, 48, 1, 48, 3, 48, 861, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 867, 8, 49, 10, 49, 12, 49, 870, 9, 49, 1, 49, 3, 49, 873, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 879, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 889, 8, 52, 1, 52, 1, 52, 3, 52, 893, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 899, 8, 53, 1, 53, 1, 53, 3, 53, 903, 8, 53, 1, 53, 1, 53, 3, 53, 907, 8, 53, 1, 53, 3, 53, 910, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 919, 8, 54, 1, 54, 1, 54, 3, 54, 923, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 930, 8, 54, 1, 54, 3, 54, 933, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 941, 8, 55, 10, 55, 12, 55, 944, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 951, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 959, 8, 57, 1, 58, 1, 58, 3, 58, 963, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 978, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 997, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1008, 8, 66, 1, 66, 1, 66, 3, 66, 1012, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1019, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1024, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1030, 8, 68, 1, 68, 1, 68, 3, 68, 1034, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1041, 8, 69, 1, 69, 1, 69, 3, 69, 1045, 8, 69, 1, 70, 1, 70, 3, 70, 1049, 8, 70, 1, 70, 1, 70, 3, 70, 1053, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1061, 8, 71, 1, 71, 1, 71, 3, 71, 1065, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1070, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1076, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1082, 8, 73, 1, 73, 3, 73, 1085, 8, 73, 1, 73, 1, 73, 3, 73, 1089, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1098, 8, 75, 10, 75, 12, 75, 1101, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1107, 8, 76, 10, 76, 12, 76, 1110, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1121, 8, 77, 11, 77, 12, 77, 1122, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1133, 8, 78, 11, 78, 12, 78, 1134, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1150, 8, 79, 1, 79, 3, 79, 1153, 8, 79, 1, 79, 1, 79, 3, 79, 1157, 8, 79, 1, 79, 3, 79, 1160, 8, 79, 3, 79, 1162, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1167, 8, 79, 1, 79, 1, 79, 3, 79, 1171, 8, 79, 1, 79, 3, 79, 1174, 8, 79, 5, 79, 1176, 8, 79, 10, 79, 12, 79, 1179, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1185, 8, 80, 10, 80, 12, 80, 1188, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1194, 8, 81, 10, 81, 12, 81, 1197, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1204, 8, 82, 10, 82, 12, 82, 1207, 9, 82, 1, 82, 1, 82, 3, 82, 1211, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1222, 8, 84, 1, 84, 3, 84, 1225, 8, 84, 1, 84, 3, 84, 1228, 8, 84, 1, 84, 3, 84, 1231, 8, 84, 1, 84, 3, 84, 1234, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1240, 8, 84, 1, 85, 1, 85, 3, 85, 1244, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1250, 8, 85, 10, 85, 12, 85, 1253, 9, 85, 3, 85, 1255, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1260, 8, 86, 1, 86, 3, 86, 1263, 8, 86, 1, 86, 1, 86, 3, 86, 1267, 8, 86, 1, 86, 3, 86, 1270, 8, 86, 3, 86, 1272, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1286, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 1295, 8, 89, 10, 89, 12, 89, 1298, 9, 89, 1, 89, 1, 89, 3, 89, 1302, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1310, 8, 89, 1, 89, 3, 89, 1313, 8, 89, 1, 89, 3, 89, 1316, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1321, 8, 89, 5, 89, 1323, 8, 89, 10, 89, 12, 89, 1326, 9, 89, 1, 90, 1, 90, 3, 90, 1330, 8, 90, 1, 91, 3, 91, 1333, 8, 91, 1, 91, 1, 91, 3, 91, 1337, 8, 91, 1, 91, 3, 91, 1340, 8, 91, 1, 91, 3, 91, 1343, 8, 91, 1, 91, 1, 91, 3, 91, 1347, 8, 91, 1, 91, 3, 91, 1350, 8, 91, 1, 91, 3, 91, 1353, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 1363, 8, 91, 10, 91, 12, 91, 1366, 9, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1372, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1383, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 1408, 8, 96, 10, 96, 12, 96, 1411, 9, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1432, 8, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1445, 8, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1455, 8, 103, 10, 103, 12, 103, 1458, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1468, 8, 104, 10, 104, 12, 104, 1471, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1480, 8, 104, 10, 104, 12, 104, 1483, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1492, 8, 104, 10, 104, 12, 104, 1495, 9, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1500, 8, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1525, 8, 111, 10, 111, 12, 111, 1528, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 3, 113, 1535, 8, 113, 1, 113, 1, 113, 3, 113, 1539, 8, 113, 1, 113, 3, 113, 1542, 8, 113, 1, 113, 3, 113, 1545, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1552, 8, 114, 1, 114, 3, 114, 1555, 8, 114, 1, 114, 3, 114, 1558, 8, 114, 1, 114, 3, 114, 1561, 8, 114, 1, 114, 3, 114, 1564, 8, 114, 1, 114, 3, 114, 1567, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1572, 8, 114, 1, 114, 3, 114, 1575, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1582, 8, 115, 10, 115, 12, 115, 1585, 9, 115, 1, 116, 1, 116, 3, 116, 1589, 8, 116, 1, 116, 1, 116, 3, 116, 1593, 8, 116, 1, 117, 1, 117, 1, 117, 3, 117, 1598, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 1605, 8, 118, 10, 118, 12, 118, 1608, 9, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1626, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1632, 8, 120, 10, 120, 12, 120, 1635, 9, 120, 1, 121, 1, 121, 1, 121, 4, 121, 1640, 8, 121, 11, 121, 12, 121, 1641, 1, 121, 1, 121, 3, 121, 1646, 8, 121, 1, 122, 1, 122, 3, 122, 1650, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1660, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1686, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1692, 8, 125, 10, 125, 12, 125, 1695, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1706, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1728, 8, 130, 3, 130, 1730, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1741, 8, 130, 1, 130, 5, 130, 1744, 8, 130, 10, 130, 12, 130, 1747, 9, 130, 1, 131, 3, 131, 1750, 8, 131, 1, 131, 1, 131, 3, 131, 1754, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1761, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1768, 8, 131, 10, 131, 12, 131, 1771, 9, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1776, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1789, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1796, 8, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1801, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1807, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1814, 8, 131, 3, 131, 1816, 8, 131, 1, 132, 3, 132, 1819, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1829, 8, 132, 10, 132, 12, 132, 1832, 9, 132, 1, 132, 1, 132, 3, 132, 1836, 8, 132, 1, 132, 3, 132, 1839, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1845, 8, 132, 3, 132, 1847, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1853, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1874, 8, 133, 10, 133, 12, 133, 1877, 9, 133, 1, 134, 1, 134, 1, 134, 4, 134, 1882, 8, 134, 11, 134, 12, 134, 1883, 1, 134, 1, 134, 3, 134, 1888, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 4, 134, 1895, 8, 134, 11, 134, 12, 134, 1896, 1, 134, 1, 134, 3, 134, 1901, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1917, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1926, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1950, 8, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1955, 8, 134, 10, 134, 12, 134, 1958, 9, 134, 3, 134, 1960, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1971, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1978, 8, 134, 10, 134, 12, 134, 1981, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 1987, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1993, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 2001, 8, 140, 1, 141, 1, 141, 1, 141, 3, 141, 2006, 8, 141, 1, 142, 1, 142, 3, 142, 2010, 8, 142, 1, 143, 1, 143, 1, 143, 4, 143, 2015, 8, 143, 11, 143, 12, 143, 2016, 1, 144, 1, 144, 1, 144, 3, 144, 2022, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 3, 146, 2030, 8, 146, 1, 146, 1, 146, 3, 146, 2034, 8, 146, 1, 147, 3, 147, 2037, 8, 147, 1, 147, 1, 147, 3, 147, 2041, 8, 147, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 4, 149, 2048, 8, 149, 11, 149, 12, 149, 2049, 1, 149, 3, 149, 2053, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 5, 151, 2062, 8, 151, 10, 151, 12, 151, 2065, 9, 151, 1, 152, 1, 152, 1, 152, 3, 152, 2070, 8, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2088, 8, 158, 1, 159, 1, 159, 1, 159, 3, 159, 2093, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2098, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2105, 8, 160, 3, 160, 2107, 8, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2112, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2119, 8, 161, 3, 161, 2121, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2126, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2133, 8, 162, 3, 162, 2135, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2140, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2147, 8, 163, 3, 163, 2149, 8, 163, 1, 164, 1, 164, 1, 164, 5, 164, 2154, 8, 164, 10, 164, 12, 164, 2157, 9, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2173, 8, 168, 10, 168, 12, 168, 2176, 9, 168, 1, 168, 1, 168, 1, 169, 1, 169, 3, 169, 2182, 8, 169, 1, 169, 3, 169, 2185, 8, 169, 1, 170, 1, 170, 1, 170, 3, 170, 2190, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2196, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2204, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2220, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2229, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2239, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2246, 8, 177, 1, 177, 3, 177, 2249, 8, 177, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 2155, 5, 158, 178, 260, 266, 268, 188, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 0, 45, 2, 0, 109, 109, 450, 450, 3, 0, 45, 45, 128, 128, 188, 188, 4, 0, 42, 42, 90, 90, 422, 422, 464, 464, 2, 0, 441, 441, 447, 447, 2, 0, 151, 151, 170, 170, 2, 0, 437, 437, 489, 489, 2, 0, 482, 485, 487, 487, 3, 0, 32, 32, 91, 91, 244, 244, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 344, 344, 360, 360, 378, 378, 381, 381, 387, 387, 416, 417, 2, 0, 433, 433, 435, 435, 4, 0, 101, 102, 115, 115, 144, 144, 246, 246, 2, 0, 13, 13, 231, 231, 2, 0, 455, 455, 462, 462, 3, 0, 5, 5, 270, 270, 444, 444, 3, 0, 266, 266, 455, 455, 462, 462, 3, 0, 425, 425, 458, 458, 477, 477, 3, 0, 330, 330, 465, 465, 481, 481, 2, 0, 440, 440, 490, 490, 2, 0, 183, 183, 265, 265, 3, 0, 130, 130, 180, 180, 402, 402, 4, 0, 152, 152, 174, 174, 201, 201, 317, 317, 3, 0, 445, 445, 459, 459, 499, 499, 4, 0, 250, 250, 446, 446, 494, 496, 498, 498, 2, 0, 74, 74, 320, 320, 3, 0, 459, 459, 492, 492, 499, 499, 2, 0, 439, 439, 450, 450, 2, 0, 457, 457, 467, 467, 4, 0, 140, 140, 244, 244, 397, 397, 404, 404, 2, 0, 19, 19, 369, 369, 2, 0, 5, 5, 11, 11, 2, 0, 509, 509, 529, 530, 4, 0, 452, 452, 527, 527, 531, 531, 534, 534, 2, 0, 529, 530, 532, 532, 1, 0, 529, 530, 1, 0, 538, 539, 2, 0, 538, 538, 541, 541, 4, 0, 452, 452, 527, 527, 529, 531, 533, 534, 3, 0, 241, 241, 508, 509, 529, 530, 2, 0, 140, 140, 397, 397, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 436, 436, 470, 470, 472, 472, 488, 488, 502, 502, 15, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 427, 427, 436, 436, 442, 442, 448, 449, 454, 454, 460, 460, 470, 475, 488, 488, 491, 491, 502, 503, 9, 0, 5, 5, 13, 13, 33, 33, 85, 85, 113, 113, 200, 200, 389, 389, 413, 413, 527, 527, 55, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 78, 78, 84, 85, 91, 91, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 194, 194, 197, 197, 199, 199, 201, 201, 205, 205, 207, 209, 214, 214, 220, 220, 222, 223, 229, 229, 243, 243, 245, 245, 264, 264, 276, 276, 281, 281, 283, 283, 293, 293, 317, 317, 321, 323, 334, 334, 357, 358, 364, 364, 367, 367, 378, 380, 395, 395, 398, 399, 408, 408, 419, 420, 436, 436, 469, 469, 488, 488, 502, 502, 1, 0, 437, 504, 2475, 0, 379, 1, 0, 0, 0, 2, 389, 1, 0, 0, 0, 4, 403, 1, 0, 0, 0, 6, 405, 1, 0, 0, 0, 8, 421, 1, 0, 0, 0, 10, 425, 1, 0, 0, 0, 12, 427, 1, 0, 0, 0, 14, 430, 1, 0, 0, 0, 16, 441, 1, 0, 0, 0, 18, 449, 1, 0, 0, 0, 20, 457, 1, 0, 0, 0, 22, 459, 1, 0, 0, 0, 24, 511, 1, 0, 0, 0, 26, 513, 1, 0, 0, 0, 28, 520, 1, 0, 0, 0, 30, 524, 1, 0, 0, 0, 32, 528, 1, 0, 0, 0, 34, 532, 1, 0, 0, 0, 36, 586, 1, 0, 0, 0, 38, 592, 1, 0, 0, 0, 40, 598, 1, 0, 0, 0, 42, 600, 1, 0, 0, 0, 44, 641, 1, 0, 0, 0, 46, 655, 1, 0, 0, 0, 48, 657, 1, 0, 0, 0, 50, 667, 1, 0, 0, 0, 52, 671, 1, 0, 0, 0, 54, 673, 1, 0, 0, 0, 56, 721, 1, 0, 0, 0, 58, 723, 1, 0, 0, 0, 60, 727, 1, 0, 0, 0, 62, 735, 1, 0, 0, 0, 64, 743, 1, 0, 0, 0, 66, 747, 1, 0, 0, 0, 68, 754, 1, 0, 0, 0, 70, 782, 1, 0, 0, 0, 72, 784, 1, 0, 0, 0, 74, 787, 1, 0, 0, 0, 76, 797, 1, 0, 0, 0, 78, 799, 1, 0, 0, 0, 80, 805, 1, 0, 0, 0, 82, 807, 1, 0, 0, 0, 84, 815, 1, 0, 0, 0, 86, 823, 1, 0, 0, 0, 88, 825, 1, 0, 0, 0, 90, 829, 1, 0, 0, 0, 92, 833, 1, 0, 0, 0, 94, 856, 1, 0, 0, 0, 96, 860, 1, 0, 0, 0, 98, 862, 1, 0, 0, 0, 100, 878, 1, 0, 0, 0, 102, 880, 1, 0, 0, 0, 104, 885, 1, 0, 0, 0, 106, 896, 1, 0, 0, 0, 108, 914, 1, 0, 0, 0, 110, 934, 1, 0, 0, 0, 112, 945, 1, 0, 0, 0, 114, 947, 1, 0, 0, 0, 116, 960, 1, 0, 0, 0, 118, 967, 1, 0, 0, 0, 120, 970, 1, 0, 0, 0, 122, 979, 1, 0, 0, 0, 124, 983, 1, 0, 0, 0, 126, 987, 1, 0, 0, 0, 128, 990, 1, 0, 0, 0, 130, 998, 1, 0, 0, 0, 132, 1003, 1, 0, 0, 0, 134, 1020, 1, 0, 0, 0, 136, 1027, 1, 0, 0, 0, 138, 1037, 1, 0, 0, 0, 140, 1046, 1, 0, 0, 0, 142, 1056, 1, 0, 0, 0, 144, 1075, 1, 0, 0, 0, 146, 1077, 1, 0, 0, 0, 148, 1090, 1, 0, 0, 0, 150, 1093, 1, 0, 0, 0, 152, 1102, 1, 0, 0, 0, 154, 1113, 1, 0, 0, 0, 156, 1126, 1, 0, 0, 0, 158, 1161, 1, 0, 0, 0, 160, 1180, 1, 0, 0, 0, 162, 1189, 1, 0, 0, 0, 164, 1198, 1, 0, 0, 0, 166, 1217, 1, 0, 0, 0, 168, 1239, 1, 0, 0, 0, 170, 1241, 1, 0, 0, 0, 172, 1271, 1, 0, 0, 0, 174, 1285, 1, 0, 0, 0, 176, 1287, 1, 0, 0, 0, 178, 1301, 1, 0, 0, 0, 180, 1327, 1, 0, 0, 0, 182, 1382, 1, 0, 0, 0, 184, 1384, 1, 0, 0, 0, 186, 1390, 1, 0, 0, 0, 188, 1392, 1, 0, 0, 0, 190, 1397, 1, 0, 0, 0, 192, 1402, 1, 0, 0, 0, 194, 1414, 1, 0, 0, 0, 196, 1431, 1, 0, 0, 0, 198, 1433, 1, 0, 0, 0, 200, 1435, 1, 0, 0, 0, 202, 1444, 1, 0, 0, 0, 204, 1446, 1, 0, 0, 0, 206, 1449, 1, 0, 0, 0, 208, 1499, 1, 0, 0, 0, 210, 1501, 1, 0, 0, 0, 212, 1504, 1, 0, 0, 0, 214, 1506, 1, 0, 0, 0, 216, 1513, 1, 0, 0, 0, 218, 1515, 1, 0, 0, 0, 220, 1517, 1, 0, 0, 0, 222, 1520, 1, 0, 0, 0, 224, 1529, 1, 0, 0, 0, 226, 1534, 1, 0, 0, 0, 228, 1548, 1, 0, 0, 0, 230, 1576, 1, 0, 0, 0, 232, 1586, 1, 0, 0, 0, 234, 1594, 1, 0, 0, 0, 236, 1599, 1, 0, 0, 0, 238, 1625, 1, 0, 0, 0, 240, 1627, 1, 0, 0, 0, 242, 1636, 1, 0, 0, 0, 244, 1647, 1, 0, 0, 0, 246, 1659, 1, 0, 0, 0, 248, 1685, 1, 0, 0, 0, 250, 1687, 1, 0, 0, 0, 252, 1705, 1, 0, 0, 0, 254, 1707, 1, 0, 0, 0, 256, 1712, 1, 0, 0, 0, 258, 1715, 1, 0, 0, 0, 260, 1729, 1, 0, 0, 0, 262, 1815, 1, 0, 0, 0, 264, 1846, 1, 0, 0, 0, 266, 1852, 1, 0, 0, 0, 268, 1970, 1, 0, 0, 0, 270, 1982, 1, 0, 0, 0, 272, 1986, 1, 0, 0, 0, 274, 1992, 1, 0, 0, 0, 276, 1994, 1, 0, 0, 0, 278, 1996, 1, 0, 0, 0, 280, 2000, 1, 0, 0, 0, 282, 2002, 1, 0, 0, 0, 284, 2007, 1, 0, 0, 0, 286, 2014, 1, 0, 0, 0, 288, 2018, 1, 0, 0, 0, 290, 2023, 1, 0, 0, 0, 292, 2033, 1, 0, 0, 0, 294, 2036, 1, 0, 0, 0, 296, 2042, 1, 0, 0, 0, 298, 2052, 1, 0, 0, 0, 300, 2054, 1, 0, 0, 0, 302, 2058, 1, 0, 0, 0, 304, 2069, 1, 0, 0, 0, 306, 2071, 1, 0, 0, 0, 308, 2073, 1, 0, 0, 0, 310, 2075, 1, 0, 0, 0, 312, 2080, 1, 0, 0, 0, 314, 2082, 1, 0, 0, 0, 316, 2084, 1, 0, 0, 0, 318, 2089, 1, 0, 0, 0, 320, 2106, 1, 0, 0, 0, 322, 2120, 1, 0, 0, 0, 324, 2134, 1, 0, 0, 0, 326, 2148, 1, 0, 0, 0, 328, 2150, 1, 0, 0, 0, 330, 2158, 1, 0, 0, 0, 332, 2161, 1, 0, 0, 0, 334, 2165, 1, 0, 0, 0, 336, 2168, 1, 0, 0, 0, 338, 2179, 1, 0, 0, 0, 340, 2189, 1, 0, 0, 0, 342, 2195, 1, 0, 0, 0, 344, 2203, 1, 0, 0, 0, 346, 2219, 1, 0, 0, 0, 348, 2228, 1, 0, 0, 0, 350, 2230, 1, 0, 0, 0, 352, 2232, 1, 0, 0, 0, 354, 2248, 1, 0, 0, 0, 356, 2250, 1, 0, 0, 0, 358, 2253, 1, 0, 0, 0, 360, 2255, 1, 0, 0, 0, 362, 2257, 1, 0, 0, 0, 364, 2259, 1, 0, 0, 0, 366, 2261, 1, 0, 0, 0, 368, 2263, 1, 0, 0, 0, 370, 2265, 1, 0, 0, 0, 372, 2267, 1, 0, 0, 0, 374, 2269, 1, 0, 0, 0, 376, 378, 3, 2, 1, 0, 377, 376, 1, 0, 0, 0, 378, 381, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 382, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 382, 383, 5, 0, 0, 1, 383, 1, 1, 0, 0, 0, 384, 386, 3, 4, 2, 0, 385, 387, 5, 521, 0, 0, 386, 385, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 390, 1, 0, 0, 0, 388, 390, 3, 6, 3, 0, 389, 384, 1, 0, 0, 0, 389, 388, 1, 0, 0, 0, 390, 3, 1, 0, 0, 0, 391, 404, 3, 8, 4, 0, 392, 404, 3, 10, 5, 0, 393, 404, 3, 12, 6, 0, 394, 404, 3, 14, 7, 0, 395, 404, 3, 20, 10, 0, 396, 404, 3, 24, 12, 0, 397, 404, 3, 26, 13, 0, 398, 404, 3, 28, 14, 0, 399, 404, 3, 30, 15, 0, 400, 404, 3, 32, 16, 0, 401, 404, 3, 34, 17, 0, 402, 404, 3, 36, 18, 0, 403, 391, 1, 0, 0, 0, 403, 392, 1, 0, 0, 0, 403, 393, 1, 0, 0, 0, 403, 394, 1, 0, 0, 0, 403, 395, 1, 0, 0, 0, 403, 396, 1, 0, 0, 0, 403, 397, 1, 0, 0, 0, 403, 398, 1, 0, 0, 0, 403, 399, 1, 0, 0, 0, 403, 400, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 402, 1, 0, 0, 0, 404, 5, 1, 0, 0, 0, 405, 406, 5, 521, 0, 0, 406, 7, 1, 0, 0, 0, 407, 422, 3, 40, 20, 0, 408, 422, 3, 104, 52, 0, 409, 422, 3, 106, 53, 0, 410, 422, 3, 108, 54, 0, 411, 422, 3, 102, 51, 0, 412, 422, 3, 114, 57, 0, 413, 422, 3, 128, 64, 0, 414, 422, 3, 130, 65, 0, 415, 422, 3, 132, 66, 0, 416, 422, 3, 134, 67, 0, 417, 422, 3, 136, 68, 0, 418, 422, 3, 138, 69, 0, 419, 422, 3, 140, 70, 0, 420, 422, 3, 142, 71, 0, 421, 407, 1, 0, 0, 0, 421, 408, 1, 0, 0, 0, 421, 409, 1, 0, 0, 0, 421, 410, 1, 0, 0, 0, 421, 411, 1, 0, 0, 0, 421, 412, 1, 0, 0, 0, 421, 413, 1, 0, 0, 0, 421, 414, 1, 0, 0, 0, 421, 415, 1, 0, 0, 0, 421, 416, 1, 0, 0, 0, 421, 417, 1, 0, 0, 0, 421, 418, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 420, 1, 0, 0, 0, 422, 9, 1, 0, 0, 0, 423, 426, 3, 158, 79, 0, 424, 426, 3, 144, 72, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 11, 1, 0, 0, 0, 427, 428, 7, 0, 0, 0, 428, 429, 3, 322, 161, 0, 429, 13, 1, 0, 0, 0, 430, 434, 5, 135, 0, 0, 431, 435, 3, 16, 8, 0, 432, 433, 5, 479, 0, 0, 433, 435, 5, 146, 0, 0, 434, 431, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 439, 1, 0, 0, 0, 436, 440, 3, 10, 5, 0, 437, 440, 3, 146, 73, 0, 438, 440, 3, 156, 78, 0, 439, 436, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 438, 1, 0, 0, 0, 440, 15, 1, 0, 0, 0, 441, 446, 3, 18, 9, 0, 442, 443, 5, 520, 0, 0, 443, 445, 3, 18, 9, 0, 444, 442, 1, 0, 0, 0, 445, 448, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 17, 1, 0, 0, 0, 448, 446, 1, 0, 0, 0, 449, 450, 7, 1, 0, 0, 450, 19, 1, 0, 0, 0, 451, 452, 5, 410, 0, 0, 452, 453, 5, 441, 0, 0, 453, 458, 3, 312, 156, 0, 454, 455, 5, 410, 0, 0, 455, 458, 3, 316, 158, 0, 456, 458, 3, 22, 11, 0, 457, 451, 1, 0, 0, 0, 457, 454, 1, 0, 0, 0, 457, 456, 1, 0, 0, 0, 458, 21, 1, 0, 0, 0, 459, 460, 5, 410, 0, 0, 460, 461, 5, 227, 0, 0, 461, 466, 3, 328, 164, 0, 462, 463, 5, 520, 0, 0, 463, 465, 3, 328, 164, 0, 464, 462, 1, 0, 0, 0, 465, 468, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 23, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 469, 470, 5, 341, 0, 0, 470, 512, 7, 2, 0, 0, 471, 472, 5, 341, 0, 0, 472, 473, 5, 76, 0, 0, 473, 512, 7, 3, 0, 0, 474, 475, 5, 341, 0, 0, 475, 478, 5, 374, 0, 0, 476, 477, 7, 4, 0, 0, 477, 479, 3, 316, 158, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 481, 1, 0, 0, 0, 480, 482, 3, 264, 132, 0, 481, 480, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 512, 1, 0, 0, 0, 483, 484, 5, 341, 0, 0, 484, 485, 5, 58, 0, 0, 485, 488, 7, 4, 0, 0, 486, 489, 3, 324, 162, 0, 487, 489, 3, 322, 161, 0, 488, 486, 1, 0, 0, 0, 488, 487, 1, 0, 0, 0, 489, 491, 1, 0, 0, 0, 490, 492, 3, 264, 132, 0, 491, 490, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 512, 1, 0, 0, 0, 493, 494, 5, 341, 0, 0, 494, 499, 5, 72, 0, 0, 495, 496, 5, 373, 0, 0, 496, 500, 3, 322, 161, 0, 497, 498, 5, 501, 0, 0, 498, 500, 3, 324, 162, 0, 499, 495, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 512, 1, 0, 0, 0, 501, 503, 5, 341, 0, 0, 502, 504, 5, 411, 0, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 512, 5, 154, 0, 0, 506, 508, 5, 341, 0, 0, 507, 509, 5, 152, 0, 0, 508, 507, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 512, 5, 227, 0, 0, 511, 469, 1, 0, 0, 0, 511, 471, 1, 0, 0, 0, 511, 474, 1, 0, 0, 0, 511, 483, 1, 0, 0, 0, 511, 493, 1, 0, 0, 0, 511, 501, 1, 0, 0, 0, 511, 506, 1, 0, 0, 0, 512, 25, 1, 0, 0, 0, 513, 514, 5, 468, 0, 0, 514, 515, 5, 226, 0, 0, 515, 518, 3, 328, 164, 0, 516, 517, 5, 433, 0, 0, 517, 519, 3, 336, 168, 0, 518, 516, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 27, 1, 0, 0, 0, 520, 521, 5, 500, 0, 0, 521, 522, 5, 226, 0, 0, 522, 523, 3, 328, 164, 0, 523, 29, 1, 0, 0, 0, 524, 526, 5, 340, 0, 0, 525, 527, 3, 338, 169, 0, 526, 525, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 31, 1, 0, 0, 0, 528, 530, 5, 312, 0, 0, 529, 531, 3, 340, 170, 0, 530, 529, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 33, 1, 0, 0, 0, 532, 533, 7, 5, 0, 0, 533, 534, 5, 463, 0, 0, 534, 535, 3, 112, 56, 0, 535, 35, 1, 0, 0, 0, 536, 537, 5, 437, 0, 0, 537, 538, 5, 463, 0, 0, 538, 539, 5, 433, 0, 0, 539, 542, 3, 38, 19, 0, 540, 541, 5, 17, 0, 0, 541, 543, 3, 328, 164, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 587, 1, 0, 0, 0, 544, 545, 5, 437, 0, 0, 545, 546, 5, 456, 0, 0, 546, 547, 5, 433, 0, 0, 547, 550, 3, 38, 19, 0, 548, 549, 5, 17, 0, 0, 549, 551, 3, 328, 164, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 554, 1, 0, 0, 0, 552, 553, 5, 311, 0, 0, 553, 555, 3, 328, 164, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 587, 1, 0, 0, 0, 556, 557, 5, 437, 0, 0, 557, 558, 7, 6, 0, 0, 558, 559, 5, 433, 0, 0, 559, 560, 3, 38, 19, 0, 560, 561, 5, 311, 0, 0, 561, 562, 3, 328, 164, 0, 562, 587, 1, 0, 0, 0, 563, 564, 5, 437, 0, 0, 564, 565, 5, 486, 0, 0, 565, 587, 3, 38, 19, 0, 566, 567, 5, 437, 0, 0, 567, 568, 5, 453, 0, 0, 568, 569, 5, 456, 0, 0, 569, 570, 5, 433, 0, 0, 570, 571, 3, 38, 19, 0, 571, 572, 5, 311, 0, 0, 572, 573, 3, 328, 164, 0, 573, 574, 5, 466, 0, 0, 574, 575, 3, 328, 164, 0, 575, 587, 1, 0, 0, 0, 576, 577, 5, 437, 0, 0, 577, 578, 5, 443, 0, 0, 578, 579, 5, 456, 0, 0, 579, 580, 5, 433, 0, 0, 580, 581, 3, 38, 19, 0, 581, 582, 5, 146, 0, 0, 582, 583, 3, 328, 164, 0, 583, 584, 5, 17, 0, 0, 584, 585, 3, 328, 164, 0, 585, 587, 1, 0, 0, 0, 586, 536, 1, 0, 0, 0, 586, 544, 1, 0, 0, 0, 586, 556, 1, 0, 0, 0, 586, 563, 1, 0, 0, 0, 586, 566, 1, 0, 0, 0, 586, 576, 1, 0, 0, 0, 587, 37, 1, 0, 0, 0, 588, 590, 5, 534, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 3, 328, 164, 0, 592, 589, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 39, 1, 0, 0, 0, 596, 599, 3, 42, 21, 0, 597, 599, 3, 44, 22, 0, 598, 596, 1, 0, 0, 0, 598, 597, 1, 0, 0, 0, 599, 41, 1, 0, 0, 0, 600, 602, 5, 72, 0, 0, 601, 603, 5, 497, 0, 0, 602, 601, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 606, 5, 373, 0, 0, 605, 607, 3, 332, 166, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 3, 320, 160, 0, 609, 610, 5, 516, 0, 0, 610, 615, 3, 46, 23, 0, 611, 612, 5, 520, 0, 0, 612, 614, 3, 46, 23, 0, 613, 611, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 618, 619, 5, 520, 0, 0, 619, 621, 3, 82, 41, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 624, 1, 0, 0, 0, 622, 623, 5, 520, 0, 0, 623, 625, 3, 84, 42, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 628, 1, 0, 0, 0, 626, 627, 5, 520, 0, 0, 627, 629, 3, 88, 44, 0, 628, 626, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 632, 5, 517, 0, 0, 631, 633, 3, 72, 36, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 635, 1, 0, 0, 0, 634, 636, 3, 90, 45, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 639, 3, 330, 165, 0, 638, 640, 3, 98, 49, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 43, 1, 0, 0, 0, 641, 642, 5, 72, 0, 0, 642, 644, 5, 373, 0, 0, 643, 645, 3, 332, 166, 0, 644, 643, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 3, 320, 160, 0, 647, 650, 3, 330, 165, 0, 648, 649, 5, 17, 0, 0, 649, 651, 3, 158, 79, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 45, 1, 0, 0, 0, 652, 656, 3, 48, 24, 0, 653, 656, 3, 74, 37, 0, 654, 656, 3, 78, 39, 0, 655, 652, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 655, 654, 1, 0, 0, 0, 656, 47, 1, 0, 0, 0, 657, 658, 3, 50, 25, 0, 658, 660, 3, 56, 28, 0, 659, 661, 3, 70, 35, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 663, 1, 0, 0, 0, 662, 664, 3, 72, 36, 0, 663, 662, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 49, 1, 0, 0, 0, 665, 668, 3, 328, 164, 0, 666, 668, 3, 258, 129, 0, 667, 665, 1, 0, 0, 0, 667, 666, 1, 0, 0, 0, 668, 51, 1, 0, 0, 0, 669, 672, 3, 328, 164, 0, 670, 672, 4, 26, 0, 0, 671, 669, 1, 0, 0, 0, 671, 670, 1, 0, 0, 0, 672, 53, 1, 0, 0, 0, 673, 674, 5, 516, 0, 0, 674, 679, 3, 52, 26, 0, 675, 676, 5, 520, 0, 0, 676, 678, 3, 52, 26, 0, 677, 675, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 683, 5, 517, 0, 0, 683, 55, 1, 0, 0, 0, 684, 722, 7, 7, 0, 0, 685, 687, 7, 8, 0, 0, 686, 688, 3, 58, 29, 0, 687, 686, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 722, 1, 0, 0, 0, 689, 691, 5, 379, 0, 0, 690, 692, 3, 58, 29, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 699, 1, 0, 0, 0, 693, 695, 7, 9, 0, 0, 694, 696, 5, 206, 0, 0, 695, 694, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 5, 378, 0, 0, 698, 700, 5, 504, 0, 0, 699, 693, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 722, 1, 0, 0, 0, 701, 703, 7, 10, 0, 0, 702, 704, 3, 60, 30, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 722, 1, 0, 0, 0, 705, 707, 7, 11, 0, 0, 706, 708, 3, 64, 32, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 722, 1, 0, 0, 0, 709, 711, 5, 469, 0, 0, 710, 712, 3, 66, 33, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 722, 1, 0, 0, 0, 713, 715, 5, 321, 0, 0, 714, 716, 3, 68, 34, 0, 715, 714, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 722, 1, 0, 0, 0, 717, 719, 5, 294, 0, 0, 718, 720, 3, 62, 31, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 722, 1, 0, 0, 0, 721, 684, 1, 0, 0, 0, 721, 685, 1, 0, 0, 0, 721, 689, 1, 0, 0, 0, 721, 701, 1, 0, 0, 0, 721, 705, 1, 0, 0, 0, 721, 709, 1, 0, 0, 0, 721, 713, 1, 0, 0, 0, 721, 717, 1, 0, 0, 0, 722, 57, 1, 0, 0, 0, 723, 724, 5, 516, 0, 0, 724, 725, 3, 360, 180, 0, 725, 726, 5, 517, 0, 0, 726, 59, 1, 0, 0, 0, 727, 728, 5, 516, 0, 0, 728, 731, 3, 360, 180, 0, 729, 730, 5, 520, 0, 0, 730, 732, 3, 360, 180, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 5, 517, 0, 0, 734, 61, 1, 0, 0, 0, 735, 736, 5, 516, 0, 0, 736, 739, 3, 358, 179, 0, 737, 738, 5, 520, 0, 0, 738, 740, 3, 358, 179, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 5, 517, 0, 0, 742, 63, 1, 0, 0, 0, 743, 744, 5, 507, 0, 0, 744, 745, 3, 56, 28, 0, 745, 746, 5, 506, 0, 0, 746, 65, 1, 0, 0, 0, 747, 748, 5, 507, 0, 0, 748, 749, 3, 56, 28, 0, 749, 750, 5, 520, 0, 0, 750, 751, 3, 56, 28, 0, 751, 752, 1, 0, 0, 0, 752, 753, 5, 506, 0, 0, 753, 67, 1, 0, 0, 0, 754, 755, 5, 507, 0, 0, 755, 756, 3, 52, 26, 0, 756, 763, 3, 56, 28, 0, 757, 758, 5, 520, 0, 0, 758, 759, 3, 52, 26, 0, 759, 760, 3, 56, 28, 0, 760, 762, 1, 0, 0, 0, 761, 757, 1, 0, 0, 0, 762, 765, 1, 0, 0, 0, 763, 761, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 766, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 766, 767, 5, 506, 0, 0, 767, 69, 1, 0, 0, 0, 768, 769, 5, 64, 0, 0, 769, 771, 3, 86, 43, 0, 770, 768, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 5, 288, 0, 0, 773, 776, 5, 466, 0, 0, 774, 775, 5, 241, 0, 0, 775, 777, 5, 125, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 783, 1, 0, 0, 0, 778, 780, 5, 241, 0, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 783, 5, 244, 0, 0, 782, 770, 1, 0, 0, 0, 782, 779, 1, 0, 0, 0, 783, 71, 1, 0, 0, 0, 784, 785, 5, 59, 0, 0, 785, 786, 5, 537, 0, 0, 786, 73, 1, 0, 0, 0, 787, 788, 3, 50, 25, 0, 788, 789, 3, 56, 28, 0, 789, 792, 5, 218, 0, 0, 790, 791, 5, 151, 0, 0, 791, 793, 3, 76, 38, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 795, 1, 0, 0, 0, 794, 796, 5, 423, 0, 0, 795, 794, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 75, 1, 0, 0, 0, 797, 798, 5, 537, 0, 0, 798, 77, 1, 0, 0, 0, 799, 800, 3, 50, 25, 0, 800, 801, 5, 17, 0, 0, 801, 803, 3, 80, 40, 0, 802, 804, 3, 72, 36, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 79, 1, 0, 0, 0, 805, 806, 3, 258, 129, 0, 806, 81, 1, 0, 0, 0, 807, 808, 5, 424, 0, 0, 808, 809, 5, 146, 0, 0, 809, 810, 3, 52, 26, 0, 810, 811, 5, 17, 0, 0, 811, 812, 3, 258, 129, 0, 812, 83, 1, 0, 0, 0, 813, 814, 5, 64, 0, 0, 814, 816, 3, 86, 43, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 5, 288, 0, 0, 818, 819, 5, 466, 0, 0, 819, 820, 3, 54, 27, 0, 820, 821, 5, 241, 0, 0, 821, 822, 5, 125, 0, 0, 822, 85, 1, 0, 0, 0, 823, 824, 3, 304, 152, 0, 824, 87, 1, 0, 0, 0, 825, 826, 5, 277, 0, 0, 826, 827, 5, 146, 0, 0, 827, 828, 5, 371, 0, 0, 828, 89, 1, 0, 0, 0, 829, 830, 5, 269, 0, 0, 830, 831, 5, 34, 0, 0, 831, 832, 3, 92, 46, 0, 832, 91, 1, 0, 0, 0, 833, 834, 5, 516, 0, 0, 834, 839, 3, 94, 47, 0, 835, 836, 5, 520, 0, 0, 836, 838, 3, 94, 47, 0, 837, 835, 1, 0, 0, 0, 838, 841, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 842, 843, 5, 517, 0, 0, 843, 93, 1, 0, 0, 0, 844, 857, 3, 52, 26, 0, 845, 846, 5, 516, 0, 0, 846, 851, 3, 96, 48, 0, 847, 848, 5, 520, 0, 0, 848, 850, 3, 96, 48, 0, 849, 847, 1, 0, 0, 0, 850, 853, 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 854, 855, 5, 517, 0, 0, 855, 857, 1, 0, 0, 0, 856, 844, 1, 0, 0, 0, 856, 845, 1, 0, 0, 0, 857, 95, 1, 0, 0, 0, 858, 861, 3, 280, 140, 0, 859, 861, 3, 354, 177, 0, 860, 858, 1, 0, 0, 0, 860, 859, 1, 0, 0, 0, 861, 97, 1, 0, 0, 0, 862, 863, 5, 202, 0, 0, 863, 872, 3, 322, 161, 0, 864, 868, 5, 516, 0, 0, 865, 867, 3, 100, 50, 0, 866, 865, 1, 0, 0, 0, 867, 870, 1, 0, 0, 0, 868, 866, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 871, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 871, 873, 5, 517, 0, 0, 872, 864, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 99, 1, 0, 0, 0, 874, 875, 7, 12, 0, 0, 875, 879, 7, 13, 0, 0, 876, 877, 7, 14, 0, 0, 877, 879, 7, 15, 0, 0, 878, 874, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 879, 101, 1, 0, 0, 0, 880, 881, 5, 72, 0, 0, 881, 882, 5, 441, 0, 0, 882, 883, 3, 314, 157, 0, 883, 884, 3, 330, 165, 0, 884, 103, 1, 0, 0, 0, 885, 886, 5, 72, 0, 0, 886, 888, 5, 447, 0, 0, 887, 889, 3, 332, 166, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 892, 3, 318, 159, 0, 891, 893, 3, 72, 36, 0, 892, 891, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 3, 330, 165, 0, 895, 105, 1, 0, 0, 0, 896, 898, 5, 72, 0, 0, 897, 899, 5, 497, 0, 0, 898, 897, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 902, 5, 501, 0, 0, 901, 903, 3, 332, 166, 0, 902, 901, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 906, 3, 326, 163, 0, 905, 907, 3, 54, 27, 0, 906, 905, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 909, 1, 0, 0, 0, 908, 910, 3, 72, 36, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 5, 17, 0, 0, 912, 913, 3, 158, 79, 0, 913, 107, 1, 0, 0, 0, 914, 918, 5, 72, 0, 0, 915, 919, 5, 497, 0, 0, 916, 917, 5, 497, 0, 0, 917, 919, 5, 370, 0, 0, 918, 915, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 922, 5, 153, 0, 0, 921, 923, 3, 332, 166, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 3, 270, 135, 0, 925, 926, 5, 17, 0, 0, 926, 929, 3, 304, 152, 0, 927, 928, 5, 195, 0, 0, 928, 930, 7, 16, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 1, 0, 0, 0, 931, 933, 3, 110, 55, 0, 932, 931, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 109, 1, 0, 0, 0, 934, 935, 5, 412, 0, 0, 935, 936, 5, 463, 0, 0, 936, 942, 3, 112, 56, 0, 937, 938, 5, 520, 0, 0, 938, 939, 5, 463, 0, 0, 939, 941, 3, 112, 56, 0, 940, 937, 1, 0, 0, 0, 941, 944, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 111, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 945, 946, 5, 537, 0, 0, 946, 113, 1, 0, 0, 0, 947, 948, 5, 8, 0, 0, 948, 950, 5, 373, 0, 0, 949, 951, 3, 334, 167, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 958, 3, 322, 161, 0, 953, 959, 3, 116, 58, 0, 954, 959, 3, 118, 59, 0, 955, 959, 3, 120, 60, 0, 956, 959, 3, 122, 61, 0, 957, 959, 3, 124, 62, 0, 958, 953, 1, 0, 0, 0, 958, 954, 1, 0, 0, 0, 958, 955, 1, 0, 0, 0, 958, 956, 1, 0, 0, 0, 958, 957, 1, 0, 0, 0, 959, 115, 1, 0, 0, 0, 960, 962, 5, 311, 0, 0, 961, 963, 3, 328, 164, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 965, 5, 388, 0, 0, 965, 966, 3, 328, 164, 0, 966, 117, 1, 0, 0, 0, 967, 968, 5, 340, 0, 0, 968, 969, 3, 336, 168, 0, 969, 119, 1, 0, 0, 0, 970, 971, 5, 437, 0, 0, 971, 972, 5, 64, 0, 0, 972, 973, 3, 86, 43, 0, 973, 974, 5, 288, 0, 0, 974, 975, 5, 466, 0, 0, 975, 977, 3, 54, 27, 0, 976, 978, 3, 126, 63, 0, 977, 976, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 121, 1, 0, 0, 0, 979, 980, 5, 116, 0, 0, 980, 981, 5, 64, 0, 0, 981, 982, 3, 86, 43, 0, 982, 123, 1, 0, 0, 0, 983, 984, 5, 437, 0, 0, 984, 985, 5, 403, 0, 0, 985, 986, 3, 54, 27, 0, 986, 125, 1, 0, 0, 0, 987, 988, 5, 241, 0, 0, 988, 989, 5, 125, 0, 0, 989, 127, 1, 0, 0, 0, 990, 991, 5, 8, 0, 0, 991, 992, 5, 501, 0, 0, 992, 996, 3, 324, 162, 0, 993, 997, 3, 116, 58, 0, 994, 995, 5, 17, 0, 0, 995, 997, 3, 158, 79, 0, 996, 993, 1, 0, 0, 0, 996, 994, 1, 0, 0, 0, 997, 129, 1, 0, 0, 0, 998, 999, 5, 8, 0, 0, 999, 1000, 5, 447, 0, 0, 1000, 1001, 3, 316, 158, 0, 1001, 1002, 3, 118, 59, 0, 1002, 131, 1, 0, 0, 0, 1003, 1007, 5, 8, 0, 0, 1004, 1008, 5, 497, 0, 0, 1005, 1006, 5, 497, 0, 0, 1006, 1008, 5, 370, 0, 0, 1007, 1004, 1, 0, 0, 0, 1007, 1005, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 5, 153, 0, 0, 1010, 1012, 3, 334, 167, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 3, 272, 136, 0, 1014, 1015, 5, 17, 0, 0, 1015, 1018, 3, 304, 152, 0, 1016, 1017, 5, 195, 0, 0, 1017, 1019, 7, 16, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 133, 1, 0, 0, 0, 1020, 1021, 5, 116, 0, 0, 1021, 1023, 5, 441, 0, 0, 1022, 1024, 3, 334, 167, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 3, 312, 156, 0, 1026, 135, 1, 0, 0, 0, 1027, 1029, 5, 116, 0, 0, 1028, 1030, 5, 497, 0, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1033, 5, 373, 0, 0, 1032, 1034, 3, 334, 167, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1036, 3, 322, 161, 0, 1036, 137, 1, 0, 0, 0, 1037, 1038, 5, 116, 0, 0, 1038, 1040, 5, 447, 0, 0, 1039, 1041, 3, 334, 167, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1044, 3, 316, 158, 0, 1043, 1045, 7, 17, 0, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 139, 1, 0, 0, 0, 1046, 1048, 5, 116, 0, 0, 1047, 1049, 5, 497, 0, 0, 1048, 1047, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1052, 5, 501, 0, 0, 1051, 1053, 3, 334, 167, 0, 1052, 1051, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 3, 324, 162, 0, 1055, 141, 1, 0, 0, 0, 1056, 1060, 5, 116, 0, 0, 1057, 1061, 5, 497, 0, 0, 1058, 1059, 5, 497, 0, 0, 1059, 1061, 5, 370, 0, 0, 1060, 1057, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1064, 5, 153, 0, 0, 1063, 1065, 3, 334, 167, 0, 1064, 1063, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 3, 272, 136, 0, 1067, 143, 1, 0, 0, 0, 1068, 1070, 5, 132, 0, 0, 1069, 1068, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1076, 3, 146, 73, 0, 1072, 1076, 3, 154, 77, 0, 1073, 1074, 5, 132, 0, 0, 1074, 1076, 3, 156, 78, 0, 1075, 1069, 1, 0, 0, 0, 1075, 1072, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1076, 145, 1, 0, 0, 0, 1077, 1078, 5, 177, 0, 0, 1078, 1079, 7, 18, 0, 0, 1079, 1088, 3, 322, 161, 0, 1080, 1082, 3, 148, 74, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1085, 3, 54, 27, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1089, 3, 158, 79, 0, 1087, 1089, 3, 150, 75, 0, 1088, 1081, 1, 0, 0, 0, 1088, 1087, 1, 0, 0, 0, 1089, 147, 1, 0, 0, 0, 1090, 1091, 5, 268, 0, 0, 1091, 1092, 3, 336, 168, 0, 1092, 149, 1, 0, 0, 0, 1093, 1094, 5, 414, 0, 0, 1094, 1099, 3, 152, 76, 0, 1095, 1096, 5, 520, 0, 0, 1096, 1098, 3, 152, 76, 0, 1097, 1095, 1, 0, 0, 0, 1098, 1101, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 151, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1102, 1103, 5, 516, 0, 0, 1103, 1108, 3, 354, 177, 0, 1104, 1105, 5, 520, 0, 0, 1105, 1107, 3, 354, 177, 0, 1106, 1104, 1, 0, 0, 0, 1107, 1110, 1, 0, 0, 0, 1108, 1106, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1111, 1, 0, 0, 0, 1110, 1108, 1, 0, 0, 0, 1111, 1112, 5, 517, 0, 0, 1112, 153, 1, 0, 0, 0, 1113, 1114, 5, 24, 0, 0, 1114, 1115, 5, 354, 0, 0, 1115, 1116, 5, 340, 0, 0, 1116, 1120, 5, 521, 0, 0, 1117, 1118, 3, 146, 73, 0, 1118, 1119, 5, 521, 0, 0, 1119, 1121, 1, 0, 0, 0, 1120, 1117, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1120, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 5, 122, 0, 0, 1125, 155, 1, 0, 0, 0, 1126, 1127, 5, 354, 0, 0, 1127, 1128, 5, 340, 0, 0, 1128, 1132, 5, 24, 0, 0, 1129, 1130, 3, 146, 73, 0, 1130, 1131, 5, 521, 0, 0, 1131, 1133, 1, 0, 0, 0, 1132, 1129, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 5, 122, 0, 0, 1137, 157, 1, 0, 0, 0, 1138, 1139, 6, 79, -1, 0, 1139, 1162, 3, 160, 80, 0, 1140, 1141, 3, 162, 81, 0, 1141, 1142, 3, 158, 79, 5, 1142, 1162, 1, 0, 0, 0, 1143, 1144, 5, 516, 0, 0, 1144, 1145, 3, 158, 79, 0, 1145, 1146, 5, 517, 0, 0, 1146, 1162, 1, 0, 0, 0, 1147, 1149, 3, 170, 85, 0, 1148, 1150, 3, 230, 115, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1152, 1, 0, 0, 0, 1151, 1153, 3, 234, 117, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1162, 1, 0, 0, 0, 1154, 1156, 3, 168, 84, 0, 1155, 1157, 3, 230, 115, 0, 1156, 1155, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 1, 0, 0, 0, 1158, 1160, 3, 234, 117, 0, 1159, 1158, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1162, 1, 0, 0, 0, 1161, 1138, 1, 0, 0, 0, 1161, 1140, 1, 0, 0, 0, 1161, 1143, 1, 0, 0, 0, 1161, 1147, 1, 0, 0, 0, 1161, 1154, 1, 0, 0, 0, 1162, 1177, 1, 0, 0, 0, 1163, 1164, 10, 3, 0, 0, 1164, 1166, 7, 19, 0, 0, 1165, 1167, 5, 5, 0, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1170, 3, 158, 79, 0, 1169, 1171, 3, 230, 115, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1174, 3, 234, 117, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1176, 1, 0, 0, 0, 1175, 1163, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 159, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1181, 5, 414, 0, 0, 1181, 1186, 3, 258, 129, 0, 1182, 1183, 5, 520, 0, 0, 1183, 1185, 3, 258, 129, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 161, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1189, 1190, 5, 433, 0, 0, 1190, 1195, 3, 164, 82, 0, 1191, 1192, 5, 520, 0, 0, 1192, 1194, 3, 164, 82, 0, 1193, 1191, 1, 0, 0, 0, 1194, 1197, 1, 0, 0, 0, 1195, 1193, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 163, 1, 0, 0, 0, 1197, 1195, 1, 0, 0, 0, 1198, 1210, 3, 166, 83, 0, 1199, 1200, 5, 516, 0, 0, 1200, 1205, 3, 52, 26, 0, 1201, 1202, 5, 520, 0, 0, 1202, 1204, 3, 52, 26, 0, 1203, 1201, 1, 0, 0, 0, 1204, 1207, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1208, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1209, 5, 517, 0, 0, 1209, 1211, 1, 0, 0, 0, 1210, 1199, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 17, 0, 0, 1213, 1214, 5, 516, 0, 0, 1214, 1215, 3, 158, 79, 0, 1215, 1216, 5, 517, 0, 0, 1216, 165, 1, 0, 0, 0, 1217, 1218, 3, 304, 152, 0, 1218, 167, 1, 0, 0, 0, 1219, 1221, 3, 170, 85, 0, 1220, 1222, 3, 176, 88, 0, 1221, 1220, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 1, 0, 0, 0, 1223, 1225, 3, 204, 102, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1228, 3, 206, 103, 0, 1227, 1226, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 1, 0, 0, 0, 1229, 1231, 3, 220, 110, 0, 1230, 1229, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1233, 1, 0, 0, 0, 1232, 1234, 3, 222, 111, 0, 1233, 1232, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1240, 1, 0, 0, 0, 1235, 1236, 3, 170, 85, 0, 1236, 1237, 3, 176, 88, 0, 1237, 1238, 3, 228, 114, 0, 1238, 1240, 1, 0, 0, 0, 1239, 1219, 1, 0, 0, 0, 1239, 1235, 1, 0, 0, 0, 1240, 169, 1, 0, 0, 0, 1241, 1243, 5, 336, 0, 0, 1242, 1244, 3, 364, 182, 0, 1243, 1242, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1254, 1, 0, 0, 0, 1245, 1255, 5, 527, 0, 0, 1246, 1251, 3, 172, 86, 0, 1247, 1248, 5, 520, 0, 0, 1248, 1250, 3, 172, 86, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1253, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1245, 1, 0, 0, 0, 1254, 1246, 1, 0, 0, 0, 1255, 171, 1, 0, 0, 0, 1256, 1272, 3, 174, 87, 0, 1257, 1262, 3, 52, 26, 0, 1258, 1260, 5, 17, 0, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1263, 3, 258, 129, 0, 1262, 1259, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1272, 1, 0, 0, 0, 1264, 1269, 3, 258, 129, 0, 1265, 1267, 5, 17, 0, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1270, 3, 52, 26, 0, 1269, 1266, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1272, 1, 0, 0, 0, 1271, 1256, 1, 0, 0, 0, 1271, 1257, 1, 0, 0, 0, 1271, 1264, 1, 0, 0, 0, 1272, 173, 1, 0, 0, 0, 1273, 1274, 3, 268, 134, 0, 1274, 1275, 5, 262, 0, 0, 1275, 1276, 3, 226, 113, 0, 1276, 1277, 5, 17, 0, 0, 1277, 1278, 3, 304, 152, 0, 1278, 1286, 1, 0, 0, 0, 1279, 1280, 3, 268, 134, 0, 1280, 1281, 5, 262, 0, 0, 1281, 1282, 3, 296, 148, 0, 1282, 1283, 5, 17, 0, 0, 1283, 1284, 3, 304, 152, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1273, 1, 0, 0, 0, 1285, 1279, 1, 0, 0, 0, 1286, 175, 1, 0, 0, 0, 1287, 1288, 5, 151, 0, 0, 1288, 1289, 3, 178, 89, 0, 1289, 177, 1, 0, 0, 0, 1290, 1291, 6, 89, -1, 0, 1291, 1296, 3, 180, 90, 0, 1292, 1293, 5, 520, 0, 0, 1293, 1295, 3, 180, 90, 0, 1294, 1292, 1, 0, 0, 0, 1295, 1298, 1, 0, 0, 0, 1296, 1294, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1302, 1, 0, 0, 0, 1298, 1296, 1, 0, 0, 0, 1299, 1302, 3, 188, 94, 0, 1300, 1302, 3, 190, 95, 0, 1301, 1290, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1301, 1300, 1, 0, 0, 0, 1302, 1324, 1, 0, 0, 0, 1303, 1304, 10, 3, 0, 0, 1304, 1305, 5, 73, 0, 0, 1305, 1306, 5, 185, 0, 0, 1306, 1323, 3, 178, 89, 4, 1307, 1309, 10, 4, 0, 0, 1308, 1310, 5, 233, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1313, 7, 20, 0, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1316, 5, 261, 0, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 5, 185, 0, 0, 1318, 1320, 3, 178, 89, 0, 1319, 1321, 3, 202, 101, 0, 1320, 1319, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1323, 1, 0, 0, 0, 1322, 1303, 1, 0, 0, 0, 1322, 1307, 1, 0, 0, 0, 1323, 1326, 1, 0, 0, 0, 1324, 1322, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 179, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, 0, 1327, 1329, 3, 182, 91, 0, 1328, 1330, 3, 294, 147, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 181, 1, 0, 0, 0, 1331, 1333, 5, 373, 0, 0, 1332, 1331, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1336, 3, 322, 161, 0, 1335, 1337, 3, 184, 92, 0, 1336, 1335, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1342, 1, 0, 0, 0, 1338, 1340, 5, 17, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1343, 3, 278, 139, 0, 1342, 1339, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1383, 1, 0, 0, 0, 1344, 1346, 3, 324, 162, 0, 1345, 1347, 3, 184, 92, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1352, 1, 0, 0, 0, 1348, 1350, 5, 17, 0, 0, 1349, 1348, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 3, 278, 139, 0, 1352, 1349, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1383, 1, 0, 0, 0, 1354, 1355, 5, 198, 0, 0, 1355, 1356, 5, 373, 0, 0, 1356, 1357, 5, 516, 0, 0, 1357, 1358, 3, 272, 136, 0, 1358, 1359, 5, 516, 0, 0, 1359, 1364, 3, 274, 137, 0, 1360, 1361, 5, 520, 0, 0, 1361, 1363, 3, 274, 137, 0, 1362, 1360, 1, 0, 0, 0, 1363, 1366, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1368, 5, 517, 0, 0, 1368, 1369, 5, 517, 0, 0, 1369, 1383, 1, 0, 0, 0, 1370, 1372, 5, 198, 0, 0, 1371, 1370, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1374, 5, 516, 0, 0, 1374, 1375, 3, 158, 79, 0, 1375, 1376, 5, 517, 0, 0, 1376, 1383, 1, 0, 0, 0, 1377, 1378, 5, 405, 0, 0, 1378, 1379, 5, 516, 0, 0, 1379, 1380, 3, 258, 129, 0, 1380, 1381, 5, 517, 0, 0, 1381, 1383, 1, 0, 0, 0, 1382, 1332, 1, 0, 0, 0, 1382, 1344, 1, 0, 0, 0, 1382, 1354, 1, 0, 0, 0, 1382, 1371, 1, 0, 0, 0, 1382, 1377, 1, 0, 0, 0, 1383, 183, 1, 0, 0, 0, 1384, 1385, 5, 146, 0, 0, 1385, 1386, 5, 371, 0, 0, 1386, 1387, 5, 17, 0, 0, 1387, 1388, 5, 249, 0, 0, 1388, 1389, 3, 186, 93, 0, 1389, 185, 1, 0, 0, 0, 1390, 1391, 3, 258, 129, 0, 1391, 187, 1, 0, 0, 0, 1392, 1393, 5, 516, 0, 0, 1393, 1394, 3, 150, 75, 0, 1394, 1395, 5, 517, 0, 0, 1395, 1396, 3, 294, 147, 0, 1396, 189, 1, 0, 0, 0, 1397, 1398, 5, 373, 0, 0, 1398, 1399, 5, 516, 0, 0, 1399, 1400, 3, 192, 96, 0, 1400, 1401, 5, 517, 0, 0, 1401, 191, 1, 0, 0, 0, 1402, 1403, 3, 194, 97, 0, 1403, 1404, 5, 516, 0, 0, 1404, 1409, 3, 196, 98, 0, 1405, 1406, 5, 520, 0, 0, 1406, 1408, 3, 196, 98, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1411, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1412, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1413, 5, 517, 0, 0, 1413, 193, 1, 0, 0, 0, 1414, 1415, 7, 21, 0, 0, 1415, 195, 1, 0, 0, 0, 1416, 1417, 5, 373, 0, 0, 1417, 1432, 3, 218, 109, 0, 1418, 1432, 3, 200, 100, 0, 1419, 1432, 3, 282, 141, 0, 1420, 1421, 5, 446, 0, 0, 1421, 1422, 5, 536, 0, 0, 1422, 1423, 5, 373, 0, 0, 1423, 1432, 3, 218, 109, 0, 1424, 1425, 5, 498, 0, 0, 1425, 1426, 5, 536, 0, 0, 1426, 1432, 3, 200, 100, 0, 1427, 1428, 3, 198, 99, 0, 1428, 1429, 5, 536, 0, 0, 1429, 1430, 3, 282, 141, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1416, 1, 0, 0, 0, 1431, 1418, 1, 0, 0, 0, 1431, 1419, 1, 0, 0, 0, 1431, 1420, 1, 0, 0, 0, 1431, 1424, 1, 0, 0, 0, 1431, 1427, 1, 0, 0, 0, 1432, 197, 1, 0, 0, 0, 1433, 1434, 7, 22, 0, 0, 1434, 199, 1, 0, 0, 0, 1435, 1436, 5, 451, 0, 0, 1436, 1437, 5, 516, 0, 0, 1437, 1438, 3, 52, 26, 0, 1438, 1439, 5, 517, 0, 0, 1439, 201, 1, 0, 0, 0, 1440, 1441, 5, 253, 0, 0, 1441, 1445, 3, 260, 130, 0, 1442, 1443, 5, 412, 0, 0, 1443, 1445, 3, 54, 27, 0, 1444, 1440, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1445, 203, 1, 0, 0, 0, 1446, 1447, 5, 430, 0, 0, 1447, 1448, 3, 260, 130, 0, 1448, 205, 1, 0, 0, 0, 1449, 1450, 5, 159, 0, 0, 1450, 1451, 5, 34, 0, 0, 1451, 1456, 3, 208, 104, 0, 1452, 1453, 5, 520, 0, 0, 1453, 1455, 3, 208, 104, 0, 1454, 1452, 1, 0, 0, 0, 1455, 1458, 1, 0, 0, 0, 1456, 1454, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 207, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1459, 1500, 3, 52, 26, 0, 1460, 1500, 3, 214, 107, 0, 1461, 1462, 5, 516, 0, 0, 1462, 1500, 5, 517, 0, 0, 1463, 1464, 5, 516, 0, 0, 1464, 1469, 3, 258, 129, 0, 1465, 1466, 5, 520, 0, 0, 1466, 1468, 3, 258, 129, 0, 1467, 1465, 1, 0, 0, 0, 1468, 1471, 1, 0, 0, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1472, 1, 0, 0, 0, 1471, 1469, 1, 0, 0, 0, 1472, 1473, 5, 517, 0, 0, 1473, 1500, 1, 0, 0, 0, 1474, 1475, 3, 212, 106, 0, 1475, 1476, 5, 516, 0, 0, 1476, 1481, 3, 258, 129, 0, 1477, 1478, 5, 520, 0, 0, 1478, 1480, 3, 258, 129, 0, 1479, 1477, 1, 0, 0, 0, 1480, 1483, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1484, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1485, 5, 517, 0, 0, 1485, 1500, 1, 0, 0, 0, 1486, 1487, 3, 210, 105, 0, 1487, 1488, 5, 516, 0, 0, 1488, 1493, 3, 208, 104, 0, 1489, 1490, 5, 520, 0, 0, 1490, 1492, 3, 208, 104, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1496, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1497, 5, 517, 0, 0, 1497, 1500, 1, 0, 0, 0, 1498, 1500, 3, 258, 129, 0, 1499, 1459, 1, 0, 0, 0, 1499, 1460, 1, 0, 0, 0, 1499, 1461, 1, 0, 0, 0, 1499, 1463, 1, 0, 0, 0, 1499, 1474, 1, 0, 0, 0, 1499, 1486, 1, 0, 0, 0, 1499, 1498, 1, 0, 0, 0, 1500, 209, 1, 0, 0, 0, 1501, 1502, 5, 160, 0, 0, 1502, 1503, 5, 493, 0, 0, 1503, 211, 1, 0, 0, 0, 1504, 1505, 7, 23, 0, 0, 1505, 213, 1, 0, 0, 0, 1506, 1507, 3, 216, 108, 0, 1507, 1508, 5, 516, 0, 0, 1508, 1509, 3, 218, 109, 0, 1509, 1510, 5, 520, 0, 0, 1510, 1511, 3, 282, 141, 0, 1511, 1512, 5, 517, 0, 0, 1512, 215, 1, 0, 0, 0, 1513, 1514, 7, 24, 0, 0, 1514, 217, 1, 0, 0, 0, 1515, 1516, 3, 328, 164, 0, 1516, 219, 1, 0, 0, 0, 1517, 1518, 5, 163, 0, 0, 1518, 1519, 3, 260, 130, 0, 1519, 221, 1, 0, 0, 0, 1520, 1521, 5, 432, 0, 0, 1521, 1526, 3, 224, 112, 0, 1522, 1523, 5, 520, 0, 0, 1523, 1525, 3, 224, 112, 0, 1524, 1522, 1, 0, 0, 0, 1525, 1528, 1, 0, 0, 0, 1526, 1524, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 223, 1, 0, 0, 0, 1528, 1526, 1, 0, 0, 0, 1529, 1530, 3, 296, 148, 0, 1530, 1531, 5, 17, 0, 0, 1531, 1532, 3, 226, 113, 0, 1532, 225, 1, 0, 0, 0, 1533, 1535, 3, 296, 148, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1538, 5, 516, 0, 0, 1537, 1539, 3, 236, 118, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1541, 1, 0, 0, 0, 1540, 1542, 3, 230, 115, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1544, 1, 0, 0, 0, 1543, 1545, 3, 252, 126, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 517, 0, 0, 1547, 227, 1, 0, 0, 0, 1548, 1549, 5, 213, 0, 0, 1549, 1551, 5, 516, 0, 0, 1550, 1552, 3, 236, 118, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1554, 1, 0, 0, 0, 1553, 1555, 3, 230, 115, 0, 1554, 1553, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1557, 1, 0, 0, 0, 1556, 1558, 3, 240, 120, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1560, 1, 0, 0, 0, 1559, 1561, 3, 246, 123, 0, 1560, 1559, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1563, 1, 0, 0, 0, 1562, 1564, 3, 248, 124, 0, 1563, 1562, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1566, 1, 0, 0, 0, 1565, 1567, 3, 242, 121, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 3, 250, 125, 0, 1569, 1574, 5, 517, 0, 0, 1570, 1572, 5, 17, 0, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1575, 3, 304, 152, 0, 1574, 1571, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 229, 1, 0, 0, 0, 1576, 1577, 5, 258, 0, 0, 1577, 1578, 5, 34, 0, 0, 1578, 1583, 3, 232, 116, 0, 1579, 1580, 5, 520, 0, 0, 1580, 1582, 3, 232, 116, 0, 1581, 1579, 1, 0, 0, 0, 1582, 1585, 1, 0, 0, 0, 1583, 1581, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 231, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1588, 3, 52, 26, 0, 1587, 1589, 7, 25, 0, 0, 1588, 1587, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 1592, 1, 0, 0, 0, 1590, 1591, 5, 476, 0, 0, 1591, 1593, 7, 26, 0, 0, 1592, 1590, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 233, 1, 0, 0, 0, 1594, 1597, 5, 204, 0, 0, 1595, 1598, 5, 5, 0, 0, 1596, 1598, 3, 258, 129, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1596, 1, 0, 0, 0, 1598, 235, 1, 0, 0, 0, 1599, 1600, 5, 268, 0, 0, 1600, 1601, 5, 34, 0, 0, 1601, 1606, 3, 52, 26, 0, 1602, 1603, 5, 520, 0, 0, 1603, 1605, 3, 52, 26, 0, 1604, 1602, 1, 0, 0, 0, 1605, 1608, 1, 0, 0, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 237, 1, 0, 0, 0, 1608, 1606, 1, 0, 0, 0, 1609, 1626, 5, 527, 0, 0, 1610, 1626, 5, 530, 0, 0, 1611, 1626, 5, 535, 0, 0, 1612, 1613, 5, 518, 0, 0, 1613, 1614, 5, 538, 0, 0, 1614, 1615, 5, 520, 0, 0, 1615, 1616, 5, 538, 0, 0, 1616, 1626, 5, 519, 0, 0, 1617, 1618, 5, 518, 0, 0, 1618, 1619, 5, 538, 0, 0, 1619, 1620, 5, 520, 0, 0, 1620, 1626, 5, 519, 0, 0, 1621, 1622, 5, 518, 0, 0, 1622, 1623, 5, 520, 0, 0, 1623, 1624, 5, 538, 0, 0, 1624, 1626, 5, 519, 0, 0, 1625, 1609, 1, 0, 0, 0, 1625, 1610, 1, 0, 0, 0, 1625, 1611, 1, 0, 0, 0, 1625, 1612, 1, 0, 0, 0, 1625, 1617, 1, 0, 0, 0, 1625, 1621, 1, 0, 0, 0, 1626, 239, 1, 0, 0, 0, 1627, 1628, 5, 215, 0, 0, 1628, 1633, 3, 172, 86, 0, 1629, 1630, 5, 520, 0, 0, 1630, 1632, 3, 172, 86, 0, 1631, 1629, 1, 0, 0, 0, 1632, 1635, 1, 0, 0, 0, 1633, 1631, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 241, 1, 0, 0, 0, 1635, 1633, 1, 0, 0, 0, 1636, 1637, 5, 271, 0, 0, 1637, 1639, 5, 516, 0, 0, 1638, 1640, 3, 244, 122, 0, 1639, 1638, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1645, 5, 517, 0, 0, 1644, 1646, 3, 256, 128, 0, 1645, 1644, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 243, 1, 0, 0, 0, 1647, 1649, 3, 306, 153, 0, 1648, 1650, 3, 238, 119, 0, 1649, 1648, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 245, 1, 0, 0, 0, 1651, 1652, 5, 5, 0, 0, 1652, 1653, 5, 322, 0, 0, 1653, 1654, 5, 272, 0, 0, 1654, 1660, 5, 210, 0, 0, 1655, 1656, 5, 254, 0, 0, 1656, 1657, 5, 321, 0, 0, 1657, 1658, 5, 272, 0, 0, 1658, 1660, 5, 210, 0, 0, 1659, 1651, 1, 0, 0, 0, 1659, 1655, 1, 0, 0, 0, 1660, 247, 1, 0, 0, 0, 1661, 1662, 5, 438, 0, 0, 1662, 1663, 5, 210, 0, 0, 1663, 1664, 5, 343, 0, 0, 1664, 1665, 5, 478, 0, 0, 1665, 1666, 5, 467, 0, 0, 1666, 1686, 5, 321, 0, 0, 1667, 1668, 5, 438, 0, 0, 1668, 1669, 5, 210, 0, 0, 1669, 1670, 5, 343, 0, 0, 1670, 1671, 5, 388, 0, 0, 1671, 1672, 5, 237, 0, 0, 1672, 1686, 5, 321, 0, 0, 1673, 1674, 5, 438, 0, 0, 1674, 1675, 5, 210, 0, 0, 1675, 1676, 5, 343, 0, 0, 1676, 1677, 5, 388, 0, 0, 1677, 1678, 5, 467, 0, 0, 1678, 1686, 3, 306, 153, 0, 1679, 1680, 5, 438, 0, 0, 1680, 1681, 5, 210, 0, 0, 1681, 1682, 5, 343, 0, 0, 1682, 1683, 5, 388, 0, 0, 1683, 1684, 5, 457, 0, 0, 1684, 1686, 3, 306, 153, 0, 1685, 1661, 1, 0, 0, 0, 1685, 1667, 1, 0, 0, 0, 1685, 1673, 1, 0, 0, 0, 1685, 1679, 1, 0, 0, 0, 1686, 249, 1, 0, 0, 0, 1687, 1688, 5, 105, 0, 0, 1688, 1693, 3, 172, 86, 0, 1689, 1690, 5, 520, 0, 0, 1690, 1692, 3, 172, 86, 0, 1691, 1689, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 251, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1697, 5, 292, 0, 0, 1697, 1698, 5, 27, 0, 0, 1698, 1699, 3, 282, 141, 0, 1699, 1700, 3, 254, 127, 0, 1700, 1706, 1, 0, 0, 0, 1701, 1702, 5, 322, 0, 0, 1702, 1703, 5, 27, 0, 0, 1703, 1704, 5, 538, 0, 0, 1704, 1706, 3, 254, 127, 0, 1705, 1696, 1, 0, 0, 0, 1705, 1701, 1, 0, 0, 0, 1706, 253, 1, 0, 0, 0, 1707, 1708, 5, 480, 0, 0, 1708, 1709, 5, 10, 0, 0, 1709, 1710, 5, 76, 0, 0, 1710, 1711, 5, 321, 0, 0, 1711, 255, 1, 0, 0, 0, 1712, 1713, 5, 434, 0, 0, 1713, 1714, 3, 282, 141, 0, 1714, 257, 1, 0, 0, 0, 1715, 1716, 3, 260, 130, 0, 1716, 259, 1, 0, 0, 0, 1717, 1718, 6, 130, -1, 0, 1718, 1719, 5, 241, 0, 0, 1719, 1730, 3, 260, 130, 6, 1720, 1721, 5, 133, 0, 0, 1721, 1722, 5, 516, 0, 0, 1722, 1723, 3, 158, 79, 0, 1723, 1724, 5, 517, 0, 0, 1724, 1730, 1, 0, 0, 0, 1725, 1727, 3, 266, 133, 0, 1726, 1728, 3, 262, 131, 0, 1727, 1726, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1730, 1, 0, 0, 0, 1729, 1717, 1, 0, 0, 0, 1729, 1720, 1, 0, 0, 0, 1729, 1725, 1, 0, 0, 0, 1730, 1745, 1, 0, 0, 0, 1731, 1732, 10, 3, 0, 0, 1732, 1733, 5, 10, 0, 0, 1733, 1744, 3, 260, 130, 4, 1734, 1735, 10, 2, 0, 0, 1735, 1736, 5, 257, 0, 0, 1736, 1744, 3, 260, 130, 3, 1737, 1738, 10, 1, 0, 0, 1738, 1740, 5, 184, 0, 0, 1739, 1741, 5, 241, 0, 0, 1740, 1739, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1744, 7, 27, 0, 0, 1743, 1731, 1, 0, 0, 0, 1743, 1734, 1, 0, 0, 0, 1743, 1737, 1, 0, 0, 0, 1744, 1747, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 261, 1, 0, 0, 0, 1747, 1745, 1, 0, 0, 0, 1748, 1750, 5, 241, 0, 0, 1749, 1748, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1753, 5, 27, 0, 0, 1752, 1754, 7, 28, 0, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 3, 266, 133, 0, 1756, 1757, 5, 10, 0, 0, 1757, 1758, 3, 266, 133, 0, 1758, 1816, 1, 0, 0, 0, 1759, 1761, 5, 241, 0, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 5, 170, 0, 0, 1763, 1764, 5, 516, 0, 0, 1764, 1769, 3, 258, 129, 0, 1765, 1766, 5, 520, 0, 0, 1766, 1768, 3, 258, 129, 0, 1767, 1765, 1, 0, 0, 0, 1768, 1771, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1772, 1, 0, 0, 0, 1771, 1769, 1, 0, 0, 0, 1772, 1773, 5, 517, 0, 0, 1773, 1816, 1, 0, 0, 0, 1774, 1776, 5, 241, 0, 0, 1775, 1774, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 5, 170, 0, 0, 1778, 1779, 5, 516, 0, 0, 1779, 1780, 3, 158, 79, 0, 1780, 1781, 5, 517, 0, 0, 1781, 1816, 1, 0, 0, 0, 1782, 1783, 5, 133, 0, 0, 1783, 1784, 5, 516, 0, 0, 1784, 1785, 3, 158, 79, 0, 1785, 1786, 5, 517, 0, 0, 1786, 1816, 1, 0, 0, 0, 1787, 1789, 5, 241, 0, 0, 1788, 1787, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 5, 318, 0, 0, 1791, 1816, 3, 266, 133, 0, 1792, 1816, 3, 264, 132, 0, 1793, 1795, 5, 184, 0, 0, 1794, 1796, 5, 241, 0, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1816, 7, 27, 0, 0, 1798, 1800, 5, 184, 0, 0, 1799, 1801, 5, 241, 0, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 5, 113, 0, 0, 1803, 1804, 5, 151, 0, 0, 1804, 1816, 3, 266, 133, 0, 1805, 1807, 5, 241, 0, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1809, 5, 342, 0, 0, 1809, 1810, 5, 388, 0, 0, 1810, 1813, 3, 266, 133, 0, 1811, 1812, 5, 127, 0, 0, 1812, 1814, 3, 358, 179, 0, 1813, 1811, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1816, 1, 0, 0, 0, 1815, 1749, 1, 0, 0, 0, 1815, 1760, 1, 0, 0, 0, 1815, 1775, 1, 0, 0, 0, 1815, 1782, 1, 0, 0, 0, 1815, 1788, 1, 0, 0, 0, 1815, 1792, 1, 0, 0, 0, 1815, 1793, 1, 0, 0, 0, 1815, 1798, 1, 0, 0, 0, 1815, 1806, 1, 0, 0, 0, 1816, 263, 1, 0, 0, 0, 1817, 1819, 5, 241, 0, 0, 1818, 1817, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 5, 202, 0, 0, 1821, 1835, 7, 29, 0, 0, 1822, 1823, 5, 516, 0, 0, 1823, 1836, 5, 517, 0, 0, 1824, 1825, 5, 516, 0, 0, 1825, 1830, 3, 258, 129, 0, 1826, 1827, 5, 520, 0, 0, 1827, 1829, 3, 258, 129, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1833, 1834, 5, 517, 0, 0, 1834, 1836, 1, 0, 0, 0, 1835, 1822, 1, 0, 0, 0, 1835, 1824, 1, 0, 0, 0, 1836, 1847, 1, 0, 0, 0, 1837, 1839, 5, 241, 0, 0, 1838, 1837, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1841, 5, 202, 0, 0, 1841, 1844, 3, 266, 133, 0, 1842, 1843, 5, 127, 0, 0, 1843, 1845, 3, 358, 179, 0, 1844, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1847, 1, 0, 0, 0, 1846, 1818, 1, 0, 0, 0, 1846, 1838, 1, 0, 0, 0, 1847, 265, 1, 0, 0, 0, 1848, 1849, 6, 133, -1, 0, 1849, 1853, 3, 268, 134, 0, 1850, 1851, 7, 30, 0, 0, 1851, 1853, 3, 266, 133, 7, 1852, 1848, 1, 0, 0, 0, 1852, 1850, 1, 0, 0, 0, 1853, 1875, 1, 0, 0, 0, 1854, 1855, 10, 6, 0, 0, 1855, 1856, 7, 31, 0, 0, 1856, 1874, 3, 266, 133, 7, 1857, 1858, 10, 5, 0, 0, 1858, 1859, 7, 32, 0, 0, 1859, 1874, 3, 266, 133, 6, 1860, 1861, 10, 4, 0, 0, 1861, 1862, 5, 511, 0, 0, 1862, 1874, 3, 266, 133, 5, 1863, 1864, 10, 3, 0, 0, 1864, 1865, 5, 512, 0, 0, 1865, 1874, 3, 266, 133, 4, 1866, 1867, 10, 2, 0, 0, 1867, 1868, 5, 510, 0, 0, 1868, 1874, 3, 266, 133, 3, 1869, 1870, 10, 1, 0, 0, 1870, 1871, 3, 346, 173, 0, 1871, 1872, 3, 266, 133, 2, 1872, 1874, 1, 0, 0, 0, 1873, 1854, 1, 0, 0, 0, 1873, 1857, 1, 0, 0, 0, 1873, 1860, 1, 0, 0, 0, 1873, 1863, 1, 0, 0, 0, 1873, 1866, 1, 0, 0, 0, 1873, 1869, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 267, 1, 0, 0, 0, 1877, 1875, 1, 0, 0, 0, 1878, 1879, 6, 134, -1, 0, 1879, 1881, 5, 40, 0, 0, 1880, 1882, 3, 310, 155, 0, 1881, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1886, 5, 120, 0, 0, 1886, 1888, 3, 258, 129, 0, 1887, 1885, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 5, 122, 0, 0, 1890, 1971, 1, 0, 0, 0, 1891, 1892, 5, 40, 0, 0, 1892, 1894, 3, 258, 129, 0, 1893, 1895, 3, 310, 155, 0, 1894, 1893, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1900, 1, 0, 0, 0, 1898, 1899, 5, 120, 0, 0, 1899, 1901, 3, 258, 129, 0, 1900, 1898, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 5, 122, 0, 0, 1903, 1971, 1, 0, 0, 0, 1904, 1905, 5, 41, 0, 0, 1905, 1906, 5, 516, 0, 0, 1906, 1907, 3, 258, 129, 0, 1907, 1908, 5, 17, 0, 0, 1908, 1909, 3, 56, 28, 0, 1909, 1910, 5, 517, 0, 0, 1910, 1971, 1, 0, 0, 0, 1911, 1912, 5, 457, 0, 0, 1912, 1913, 5, 516, 0, 0, 1913, 1916, 3, 258, 129, 0, 1914, 1915, 5, 461, 0, 0, 1915, 1917, 5, 476, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1919, 5, 517, 0, 0, 1919, 1971, 1, 0, 0, 0, 1920, 1921, 5, 467, 0, 0, 1921, 1922, 5, 516, 0, 0, 1922, 1925, 3, 258, 129, 0, 1923, 1924, 5, 461, 0, 0, 1924, 1926, 5, 476, 0, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 5, 517, 0, 0, 1928, 1971, 1, 0, 0, 0, 1929, 1930, 5, 281, 0, 0, 1930, 1931, 5, 516, 0, 0, 1931, 1932, 3, 266, 133, 0, 1932, 1933, 5, 170, 0, 0, 1933, 1934, 3, 266, 133, 0, 1934, 1935, 5, 517, 0, 0, 1935, 1971, 1, 0, 0, 0, 1936, 1971, 3, 354, 177, 0, 1937, 1971, 5, 527, 0, 0, 1938, 1939, 3, 328, 164, 0, 1939, 1940, 5, 513, 0, 0, 1940, 1941, 5, 527, 0, 0, 1941, 1971, 1, 0, 0, 0, 1942, 1943, 5, 516, 0, 0, 1943, 1944, 3, 158, 79, 0, 1944, 1945, 5, 517, 0, 0, 1945, 1971, 1, 0, 0, 0, 1946, 1947, 3, 272, 136, 0, 1947, 1959, 5, 516, 0, 0, 1948, 1950, 3, 364, 182, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1956, 3, 274, 137, 0, 1952, 1953, 5, 520, 0, 0, 1953, 1955, 3, 274, 137, 0, 1954, 1952, 1, 0, 0, 0, 1955, 1958, 1, 0, 0, 0, 1956, 1954, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, 1956, 1, 0, 0, 0, 1959, 1949, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1962, 5, 517, 0, 0, 1962, 1971, 1, 0, 0, 0, 1963, 1971, 3, 304, 152, 0, 1964, 1971, 3, 276, 138, 0, 1965, 1966, 5, 516, 0, 0, 1966, 1967, 3, 258, 129, 0, 1967, 1968, 5, 517, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1971, 5, 85, 0, 0, 1970, 1878, 1, 0, 0, 0, 1970, 1891, 1, 0, 0, 0, 1970, 1904, 1, 0, 0, 0, 1970, 1911, 1, 0, 0, 0, 1970, 1920, 1, 0, 0, 0, 1970, 1929, 1, 0, 0, 0, 1970, 1936, 1, 0, 0, 0, 1970, 1937, 1, 0, 0, 0, 1970, 1938, 1, 0, 0, 0, 1970, 1942, 1, 0, 0, 0, 1970, 1946, 1, 0, 0, 0, 1970, 1963, 1, 0, 0, 0, 1970, 1964, 1, 0, 0, 0, 1970, 1965, 1, 0, 0, 0, 1970, 1969, 1, 0, 0, 0, 1971, 1979, 1, 0, 0, 0, 1972, 1973, 10, 5, 0, 0, 1973, 1974, 5, 514, 0, 0, 1974, 1975, 3, 266, 133, 0, 1975, 1976, 5, 515, 0, 0, 1976, 1978, 1, 0, 0, 0, 1977, 1972, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 269, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1983, 3, 328, 164, 0, 1983, 271, 1, 0, 0, 0, 1984, 1987, 3, 372, 186, 0, 1985, 1987, 3, 328, 164, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1985, 1, 0, 0, 0, 1987, 273, 1, 0, 0, 0, 1988, 1993, 3, 370, 185, 0, 1989, 1993, 3, 368, 184, 0, 1990, 1993, 3, 366, 183, 0, 1991, 1993, 3, 258, 129, 0, 1992, 1988, 1, 0, 0, 0, 1992, 1989, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1992, 1991, 1, 0, 0, 0, 1993, 275, 1, 0, 0, 0, 1994, 1995, 3, 328, 164, 0, 1995, 277, 1, 0, 0, 0, 1996, 1997, 3, 304, 152, 0, 1997, 279, 1, 0, 0, 0, 1998, 2001, 3, 304, 152, 0, 1999, 2001, 3, 276, 138, 0, 2000, 1998, 1, 0, 0, 0, 2000, 1999, 1, 0, 0, 0, 2001, 281, 1, 0, 0, 0, 2002, 2005, 5, 182, 0, 0, 2003, 2006, 3, 284, 142, 0, 2004, 2006, 3, 288, 144, 0, 2005, 2003, 1, 0, 0, 0, 2005, 2004, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 283, 1, 0, 0, 0, 2007, 2009, 3, 286, 143, 0, 2008, 2010, 3, 290, 145, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 285, 1, 0, 0, 0, 2011, 2012, 3, 292, 146, 0, 2012, 2013, 3, 368, 184, 0, 2013, 2015, 1, 0, 0, 0, 2014, 2011, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 287, 1, 0, 0, 0, 2018, 2021, 3, 290, 145, 0, 2019, 2022, 3, 286, 143, 0, 2020, 2022, 3, 290, 145, 0, 2021, 2019, 1, 0, 0, 0, 2021, 2020, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 289, 1, 0, 0, 0, 2023, 2024, 3, 292, 146, 0, 2024, 2025, 3, 368, 184, 0, 2025, 2026, 5, 388, 0, 0, 2026, 2027, 3, 368, 184, 0, 2027, 291, 1, 0, 0, 0, 2028, 2030, 7, 33, 0, 0, 2029, 2028, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2034, 7, 34, 0, 0, 2032, 2034, 5, 537, 0, 0, 2033, 2029, 1, 0, 0, 0, 2033, 2032, 1, 0, 0, 0, 2034, 293, 1, 0, 0, 0, 2035, 2037, 5, 17, 0, 0, 2036, 2035, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2040, 3, 304, 152, 0, 2039, 2041, 3, 300, 150, 0, 2040, 2039, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 295, 1, 0, 0, 0, 2042, 2043, 3, 304, 152, 0, 2043, 2044, 3, 298, 149, 0, 2044, 297, 1, 0, 0, 0, 2045, 2046, 5, 221, 0, 0, 2046, 2048, 3, 304, 152, 0, 2047, 2045, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2053, 1, 0, 0, 0, 2051, 2053, 1, 0, 0, 0, 2052, 2047, 1, 0, 0, 0, 2052, 2051, 1, 0, 0, 0, 2053, 299, 1, 0, 0, 0, 2054, 2055, 5, 516, 0, 0, 2055, 2056, 3, 302, 151, 0, 2056, 2057, 5, 517, 0, 0, 2057, 301, 1, 0, 0, 0, 2058, 2063, 3, 304, 152, 0, 2059, 2060, 5, 520, 0, 0, 2060, 2062, 3, 304, 152, 0, 2061, 2059, 1, 0, 0, 0, 2062, 2065, 1, 0, 0, 0, 2063, 2061, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 303, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2066, 2070, 3, 306, 153, 0, 2067, 2070, 3, 308, 154, 0, 2068, 2070, 3, 374, 187, 0, 2069, 2066, 1, 0, 0, 0, 2069, 2067, 1, 0, 0, 0, 2069, 2068, 1, 0, 0, 0, 2070, 305, 1, 0, 0, 0, 2071, 2072, 7, 35, 0, 0, 2072, 307, 1, 0, 0, 0, 2073, 2074, 5, 537, 0, 0, 2074, 309, 1, 0, 0, 0, 2075, 2076, 5, 428, 0, 0, 2076, 2077, 3, 258, 129, 0, 2077, 2078, 5, 376, 0, 0, 2078, 2079, 3, 258, 129, 0, 2079, 311, 1, 0, 0, 0, 2080, 2081, 3, 304, 152, 0, 2081, 313, 1, 0, 0, 0, 2082, 2083, 3, 304, 152, 0, 2083, 315, 1, 0, 0, 0, 2084, 2087, 3, 304, 152, 0, 2085, 2086, 5, 513, 0, 0, 2086, 2088, 3, 304, 152, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 317, 1, 0, 0, 0, 2089, 2092, 3, 304, 152, 0, 2090, 2091, 5, 513, 0, 0, 2091, 2093, 3, 304, 152, 0, 2092, 2090, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 319, 1, 0, 0, 0, 2094, 2097, 3, 304, 152, 0, 2095, 2096, 5, 513, 0, 0, 2096, 2098, 3, 304, 152, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2107, 1, 0, 0, 0, 2099, 2100, 3, 304, 152, 0, 2100, 2101, 5, 513, 0, 0, 2101, 2104, 3, 304, 152, 0, 2102, 2103, 5, 513, 0, 0, 2103, 2105, 3, 304, 152, 0, 2104, 2102, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2107, 1, 0, 0, 0, 2106, 2094, 1, 0, 0, 0, 2106, 2099, 1, 0, 0, 0, 2107, 321, 1, 0, 0, 0, 2108, 2111, 3, 304, 152, 0, 2109, 2110, 5, 513, 0, 0, 2110, 2112, 3, 304, 152, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2121, 1, 0, 0, 0, 2113, 2114, 3, 304, 152, 0, 2114, 2115, 5, 513, 0, 0, 2115, 2118, 3, 304, 152, 0, 2116, 2117, 5, 513, 0, 0, 2117, 2119, 3, 304, 152, 0, 2118, 2116, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2108, 1, 0, 0, 0, 2120, 2113, 1, 0, 0, 0, 2121, 323, 1, 0, 0, 0, 2122, 2125, 3, 304, 152, 0, 2123, 2124, 5, 513, 0, 0, 2124, 2126, 3, 304, 152, 0, 2125, 2123, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2135, 1, 0, 0, 0, 2127, 2128, 3, 304, 152, 0, 2128, 2129, 5, 513, 0, 0, 2129, 2132, 3, 304, 152, 0, 2130, 2131, 5, 513, 0, 0, 2131, 2133, 3, 304, 152, 0, 2132, 2130, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2135, 1, 0, 0, 0, 2134, 2122, 1, 0, 0, 0, 2134, 2127, 1, 0, 0, 0, 2135, 325, 1, 0, 0, 0, 2136, 2139, 3, 304, 152, 0, 2137, 2138, 5, 513, 0, 0, 2138, 2140, 3, 304, 152, 0, 2139, 2137, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2149, 1, 0, 0, 0, 2141, 2142, 3, 304, 152, 0, 2142, 2143, 5, 513, 0, 0, 2143, 2146, 3, 304, 152, 0, 2144, 2145, 5, 513, 0, 0, 2145, 2147, 3, 304, 152, 0, 2146, 2144, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2136, 1, 0, 0, 0, 2148, 2141, 1, 0, 0, 0, 2149, 327, 1, 0, 0, 0, 2150, 2155, 3, 304, 152, 0, 2151, 2152, 5, 513, 0, 0, 2152, 2154, 3, 304, 152, 0, 2153, 2151, 1, 0, 0, 0, 2154, 2157, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2155, 2153, 1, 0, 0, 0, 2156, 329, 1, 0, 0, 0, 2157, 2155, 1, 0, 0, 0, 2158, 2159, 5, 433, 0, 0, 2159, 2160, 3, 336, 168, 0, 2160, 331, 1, 0, 0, 0, 2161, 2162, 5, 167, 0, 0, 2162, 2163, 5, 241, 0, 0, 2163, 2164, 5, 133, 0, 0, 2164, 333, 1, 0, 0, 0, 2165, 2166, 5, 167, 0, 0, 2166, 2167, 5, 133, 0, 0, 2167, 335, 1, 0, 0, 0, 2168, 2169, 5, 516, 0, 0, 2169, 2174, 3, 338, 169, 0, 2170, 2171, 5, 520, 0, 0, 2171, 2173, 3, 338, 169, 0, 2172, 2170, 1, 0, 0, 0, 2173, 2176, 1, 0, 0, 0, 2174, 2172, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2177, 1, 0, 0, 0, 2176, 2174, 1, 0, 0, 0, 2177, 2178, 5, 517, 0, 0, 2178, 337, 1, 0, 0, 0, 2179, 2184, 3, 340, 170, 0, 2180, 2182, 5, 505, 0, 0, 2181, 2180, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2185, 3, 342, 171, 0, 2184, 2181, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 339, 1, 0, 0, 0, 2186, 2190, 3, 304, 152, 0, 2187, 2190, 3, 276, 138, 0, 2188, 2190, 5, 537, 0, 0, 2189, 2186, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2188, 1, 0, 0, 0, 2190, 341, 1, 0, 0, 0, 2191, 2196, 5, 538, 0, 0, 2192, 2196, 5, 539, 0, 0, 2193, 2196, 3, 362, 181, 0, 2194, 2196, 5, 537, 0, 0, 2195, 2191, 1, 0, 0, 0, 2195, 2192, 1, 0, 0, 0, 2195, 2193, 1, 0, 0, 0, 2195, 2194, 1, 0, 0, 0, 2196, 343, 1, 0, 0, 0, 2197, 2204, 5, 10, 0, 0, 2198, 2199, 5, 511, 0, 0, 2199, 2204, 5, 511, 0, 0, 2200, 2204, 5, 257, 0, 0, 2201, 2202, 5, 510, 0, 0, 2202, 2204, 5, 510, 0, 0, 2203, 2197, 1, 0, 0, 0, 2203, 2198, 1, 0, 0, 0, 2203, 2200, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2204, 345, 1, 0, 0, 0, 2205, 2220, 5, 505, 0, 0, 2206, 2220, 5, 506, 0, 0, 2207, 2220, 5, 507, 0, 0, 2208, 2209, 5, 507, 0, 0, 2209, 2220, 5, 505, 0, 0, 2210, 2211, 5, 506, 0, 0, 2211, 2220, 5, 505, 0, 0, 2212, 2213, 5, 507, 0, 0, 2213, 2220, 5, 506, 0, 0, 2214, 2215, 5, 508, 0, 0, 2215, 2220, 5, 505, 0, 0, 2216, 2217, 5, 507, 0, 0, 2217, 2218, 5, 505, 0, 0, 2218, 2220, 5, 506, 0, 0, 2219, 2205, 1, 0, 0, 0, 2219, 2206, 1, 0, 0, 0, 2219, 2207, 1, 0, 0, 0, 2219, 2208, 1, 0, 0, 0, 2219, 2210, 1, 0, 0, 0, 2219, 2212, 1, 0, 0, 0, 2219, 2214, 1, 0, 0, 0, 2219, 2216, 1, 0, 0, 0, 2220, 347, 1, 0, 0, 0, 2221, 2222, 5, 507, 0, 0, 2222, 2229, 5, 507, 0, 0, 2223, 2224, 5, 506, 0, 0, 2224, 2229, 5, 506, 0, 0, 2225, 2229, 5, 511, 0, 0, 2226, 2229, 5, 512, 0, 0, 2227, 2229, 5, 510, 0, 0, 2228, 2221, 1, 0, 0, 0, 2228, 2223, 1, 0, 0, 0, 2228, 2225, 1, 0, 0, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2227, 1, 0, 0, 0, 2229, 349, 1, 0, 0, 0, 2230, 2231, 7, 36, 0, 0, 2231, 351, 1, 0, 0, 0, 2232, 2233, 7, 37, 0, 0, 2233, 353, 1, 0, 0, 0, 2234, 2249, 3, 282, 141, 0, 2235, 2249, 3, 356, 178, 0, 2236, 2249, 3, 358, 179, 0, 2237, 2239, 5, 529, 0, 0, 2238, 2237, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2249, 3, 360, 180, 0, 2241, 2249, 3, 362, 181, 0, 2242, 2249, 5, 539, 0, 0, 2243, 2249, 5, 540, 0, 0, 2244, 2246, 5, 241, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2249, 5, 244, 0, 0, 2248, 2234, 1, 0, 0, 0, 2248, 2235, 1, 0, 0, 0, 2248, 2236, 1, 0, 0, 0, 2248, 2238, 1, 0, 0, 0, 2248, 2241, 1, 0, 0, 0, 2248, 2242, 1, 0, 0, 0, 2248, 2243, 1, 0, 0, 0, 2248, 2245, 1, 0, 0, 0, 2249, 355, 1, 0, 0, 0, 2250, 2251, 3, 366, 183, 0, 2251, 2252, 3, 358, 179, 0, 2252, 357, 1, 0, 0, 0, 2253, 2254, 5, 537, 0, 0, 2254, 359, 1, 0, 0, 0, 2255, 2256, 5, 538, 0, 0, 2256, 361, 1, 0, 0, 0, 2257, 2258, 7, 38, 0, 0, 2258, 363, 1, 0, 0, 0, 2259, 2260, 7, 39, 0, 0, 2260, 365, 1, 0, 0, 0, 2261, 2262, 7, 40, 0, 0, 2262, 367, 1, 0, 0, 0, 2263, 2264, 7, 41, 0, 0, 2264, 369, 1, 0, 0, 0, 2265, 2266, 7, 42, 0, 0, 2266, 371, 1, 0, 0, 0, 2267, 2268, 7, 43, 0, 0, 2268, 373, 1, 0, 0, 0, 2269, 2270, 7, 44, 0, 0, 2270, 375, 1, 0, 0, 0, 270, 379, 386, 389, 403, 421, 425, 434, 439, 446, 457, 466, 478, 481, 488, 491, 499, 503, 508, 511, 518, 526, 530, 542, 550, 554, 586, 589, 594, 598, 602, 606, 615, 620, 624, 628, 632, 635, 639, 644, 650, 655, 660, 663, 667, 671, 679, 687, 691, 695, 699, 703, 707, 711, 715, 719, 721, 731, 739, 763, 770, 776, 779, 782, 792, 795, 803, 815, 839, 851, 856, 860, 868, 872, 878, 888, 892, 898, 902, 906, 909, 918, 922, 929, 932, 942, 950, 958, 962, 977, 996, 1007, 1011, 1018, 1023, 1029, 1033, 1040, 1044, 1048, 1052, 1060, 1064, 1069, 1075, 1081, 1084, 1088, 1099, 1108, 1122, 1134, 1149, 1152, 1156, 1159, 1161, 1166, 1170, 1173, 1177, 1186, 1195, 1205, 1210, 1221, 1224, 1227, 1230, 1233, 1239, 1243, 1251, 1254, 1259, 1262, 1266, 1269, 1271, 1285, 1296, 1301, 1309, 1312, 1315, 1320, 1322, 1324, 1329, 1332, 1336, 1339, 1342, 1346, 1349, 1352, 1364, 1371, 1382, 1409, 1431, 1444, 1456, 1469, 1481, 1493, 1499, 1526, 1534, 1538, 1541, 1544, 1551, 1554, 1557, 1560, 1563, 1566, 1571, 1574, 1583, 1588, 1592, 1597, 1606, 1625, 1633, 1641, 1645, 1649, 1659, 1685, 1693, 1705, 1727, 1729, 1740, 1743, 1745, 1749, 1753, 1760, 1769, 1775, 1788, 1795, 1800, 1806, 1813, 1815, 1818, 1830, 1835, 1838, 1844, 1846, 1852, 1873, 1875, 1883, 1887, 1896, 1900, 1916, 1925, 1949, 1956, 1959, 1970, 1979, 1986, 1992, 2000, 2005, 2009, 2016, 2021, 2029, 2033, 2036, 2040, 2049, 2052, 2063, 2069, 2087, 2092, 2097, 2104, 2106, 2111, 2118, 2120, 2125, 2132, 2134, 2139, 2146, 2148, 2155, 2174, 2181, 2184, 2189, 2195, 2203, 2219, 2228, 2238, 2245, 2248] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParser.ts b/src/lib/flinksql/FlinkSqlParser.ts index 52998ef..69645ca 100644 --- a/src/lib/flinksql/FlinkSqlParser.ts +++ b/src/lib/flinksql/FlinkSqlParser.ts @@ -11,7 +11,10 @@ import { FlinkSqlParserVisitor } from "./FlinkSqlParserVisitor.js"; type int = number; -export class FlinkSqlParser extends antlr.Parser { +import SQLParserBase from '../SQLParserBase'; + + +export class FlinkSqlParser extends SQLParserBase { public static readonly SPACE = 1; public static readonly COMMENT_INPUT = 2; public static readonly LINE_COMMENT = 3; @@ -2682,7 +2685,9 @@ export class FlinkSqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { this.state = 670; - this.expression(); + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } } break; } @@ -3651,7 +3656,7 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 94, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 857; + this.state = 856; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: @@ -3663,38 +3668,30 @@ export class FlinkSqlParser extends antlr.Parser { } break; case 2: - localContext = new ColumnTransformContext(localContext); + localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { this.state = 845; - this.qualifiedName(); - } - break; - case 3: - localContext = new ApplyTransformContext(localContext); - this.enterOuterAlt(localContext, 3); - { - this.state = 846; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 847; + this.state = 846; this.transformArgument(); - this.state = 852; + this.state = 851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 848; + this.state = 847; this.match(FlinkSqlParser.COMMA); - this.state = 849; + this.state = 848; this.transformArgument(); } } - this.state = 854; + this.state = 853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 855; + this.state = 854; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3718,20 +3715,20 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new TransformArgumentContext(this.context, this.state); this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformArgument); try { - this.state = 861; + this.state = 860; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 859; + this.state = 858; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 860; + this.state = 859; this.constant(); } break; @@ -3758,32 +3755,32 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 863; + this.state = 862; this.match(FlinkSqlParser.KW_LIKE); - this.state = 864; + this.state = 863; this.tablePath(); - this.state = 873; + this.state = 872; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 865; + this.state = 864; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 869; + this.state = 868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 266 || _la === 455 || _la === 462) { { { - this.state = 866; + this.state = 865; this.likeOption(); } } - this.state = 871; + this.state = 870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 872; + this.state = 871; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3809,14 +3806,14 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 100, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 879; + this.state = 878; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 875; + this.state = 874; _la = this.tokenStream.LA(1); if(!(_la === 455 || _la === 462)) { this.errorHandler.recoverInline(this); @@ -3825,7 +3822,7 @@ export class FlinkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 876; + this.state = 875; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 270 || _la === 444)) { this.errorHandler.recoverInline(this); @@ -3841,7 +3838,7 @@ export class FlinkSqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 877; + this.state = 876; _la = this.tokenStream.LA(1); if(!(_la === 266 || _la === 455 || _la === 462)) { this.errorHandler.recoverInline(this); @@ -3850,7 +3847,7 @@ export class FlinkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 878; + this.state = 877; _la = this.tokenStream.LA(1); if(!(_la === 425 || _la === 458 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -3884,13 +3881,13 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 881; + this.state = 880; this.match(FlinkSqlParser.KW_CREATE); - this.state = 882; + this.state = 881; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 883; + this.state = 882; this.catalogPathCreate(); - this.state = 884; + this.state = 883; this.withOption(); } } @@ -3915,33 +3912,33 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 886; + this.state = 885; this.match(FlinkSqlParser.KW_CREATE); - this.state = 887; + this.state = 886; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 889; + this.state = 888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 888; + this.state = 887; this.ifNotExists(); } } - this.state = 891; + this.state = 890; this.databasePathCreate(); - this.state = 893; + this.state = 892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 892; + this.state = 891; this.commentSpec(); } } - this.state = 895; + this.state = 894; this.withOption(); } } @@ -3966,55 +3963,55 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 897; + this.state = 896; this.match(FlinkSqlParser.KW_CREATE); - this.state = 899; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 898; + this.state = 897; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 901; + this.state = 900; this.match(FlinkSqlParser.KW_VIEW); - this.state = 903; + this.state = 902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 902; + this.state = 901; this.ifNotExists(); } } - this.state = 905; + this.state = 904; this.viewPathCreate(); - this.state = 907; + this.state = 906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 906; + this.state = 905; this.columnNameList(); } } - this.state = 910; + this.state = 909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 909; + this.state = 908; this.commentSpec(); } } - this.state = 912; + this.state = 911; this.match(FlinkSqlParser.KW_AS); - this.state = 913; + this.state = 912; this.queryStatement(0); } } @@ -4039,52 +4036,52 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 915; + this.state = 914; this.match(FlinkSqlParser.KW_CREATE); - this.state = 919; + this.state = 918; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { case 1: { - this.state = 916; + this.state = 915; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 917; + this.state = 916; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 918; + this.state = 917; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 921; + this.state = 920; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 923; + this.state = 922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 922; + this.state = 921; this.ifNotExists(); } } - this.state = 925; + this.state = 924; this.functionNameCreate(); - this.state = 926; + this.state = 925; this.match(FlinkSqlParser.KW_AS); - this.state = 927; + this.state = 926; this.identifier(); - this.state = 930; + this.state = 929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 928; + this.state = 927; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 929; + this.state = 928; _la = this.tokenStream.LA(1); if(!(_la === 330 || _la === 465 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -4096,12 +4093,12 @@ export class FlinkSqlParser extends antlr.Parser { } } - this.state = 933; + this.state = 932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 412) { { - this.state = 932; + this.state = 931; this.usingClause(); } } @@ -4129,27 +4126,27 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 935; + this.state = 934; this.match(FlinkSqlParser.KW_USING); - this.state = 936; + this.state = 935; this.match(FlinkSqlParser.KW_JAR); - this.state = 937; + this.state = 936; this.jarFileName(); - this.state = 943; + this.state = 942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 938; + this.state = 937; this.match(FlinkSqlParser.COMMA); - this.state = 939; + this.state = 938; this.match(FlinkSqlParser.KW_JAR); - this.state = 940; + this.state = 939; this.jarFileName(); } } - this.state = 945; + this.state = 944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4175,7 +4172,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 946; + this.state = 945; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4200,52 +4197,52 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 948; + this.state = 947; this.match(FlinkSqlParser.KW_ALTER); - this.state = 949; + this.state = 948; this.match(FlinkSqlParser.KW_TABLE); - this.state = 951; + this.state = 950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 950; + this.state = 949; this.ifExists(); } } - this.state = 953; + this.state = 952; this.tablePath(); - this.state = 959; + this.state = 958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 954; + this.state = 953; this.renameDefinition(); } break; case 2: { - this.state = 955; + this.state = 954; this.setKeyValueDefinition(); } break; case 3: { - this.state = 956; + this.state = 955; this.addConstraint(); } break; case 4: { - this.state = 957; + this.state = 956; this.dropConstraint(); } break; case 5: { - this.state = 958; + this.state = 957; this.addUnique(); } break; @@ -4273,21 +4270,21 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 961; + this.state = 960; this.match(FlinkSqlParser.KW_RENAME); - this.state = 963; + this.state = 962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 15) !== 0) || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 19) !== 0)) { { - this.state = 962; + this.state = 961; this.uid(); } } - this.state = 965; + this.state = 964; this.match(FlinkSqlParser.KW_TO); - this.state = 966; + this.state = 965; this.uid(); } } @@ -4311,9 +4308,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 968; + this.state = 967; this.match(FlinkSqlParser.KW_SET); - this.state = 969; + this.state = 968; this.tablePropertyList(); } } @@ -4338,24 +4335,24 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 971; + this.state = 970; this.match(FlinkSqlParser.KW_ADD); - this.state = 972; + this.state = 971; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 973; + this.state = 972; this.constraintName(); - this.state = 974; + this.state = 973; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 975; + this.state = 974; this.match(FlinkSqlParser.KW_KEY); - this.state = 976; + this.state = 975; this.columnNameList(); - this.state = 978; + this.state = 977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 977; + this.state = 976; this.notForced(); } } @@ -4382,11 +4379,11 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 980; + this.state = 979; this.match(FlinkSqlParser.KW_DROP); - this.state = 981; + this.state = 980; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 982; + this.state = 981; this.constraintName(); } } @@ -4410,11 +4407,11 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 984; + this.state = 983; this.match(FlinkSqlParser.KW_ADD); - this.state = 985; + this.state = 984; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 986; + this.state = 985; this.columnNameList(); } } @@ -4438,9 +4435,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 988; + this.state = 987; this.match(FlinkSqlParser.KW_NOT); - this.state = 989; + this.state = 988; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4464,26 +4461,26 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 991; + this.state = 990; this.match(FlinkSqlParser.KW_ALTER); - this.state = 992; + this.state = 991; this.match(FlinkSqlParser.KW_VIEW); - this.state = 993; + this.state = 992; this.viewPath(); - this.state = 997; + this.state = 996; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 994; + this.state = 993; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 995; + this.state = 994; this.match(FlinkSqlParser.KW_AS); - this.state = 996; + this.state = 995; this.queryStatement(0); } break; @@ -4512,13 +4509,13 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 999; + this.state = 998; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1000; + this.state = 999; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1001; + this.state = 1000; this.databasePath(); - this.state = 1002; + this.state = 1001; this.setKeyValueDefinition(); } } @@ -4543,52 +4540,52 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1004; + this.state = 1003; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1008; + this.state = 1007; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 1005; + this.state = 1004; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1006; + this.state = 1005; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1007; + this.state = 1006; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1010; + this.state = 1009; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1012; + this.state = 1011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1011; + this.state = 1010; this.ifExists(); } break; } - this.state = 1014; + this.state = 1013; this.functionName(); - this.state = 1015; + this.state = 1014; this.match(FlinkSqlParser.KW_AS); - this.state = 1016; + this.state = 1015; this.identifier(); - this.state = 1019; + this.state = 1018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1017; + this.state = 1016; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1018; + this.state = 1017; _la = this.tokenStream.LA(1); if(!(_la === 330 || _la === 465 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -4623,21 +4620,21 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1021; + this.state = 1020; this.match(FlinkSqlParser.KW_DROP); - this.state = 1022; + this.state = 1021; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 1024; + this.state = 1023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1023; + this.state = 1022; this.ifExists(); } } - this.state = 1026; + this.state = 1025; this.catalogPath(); } } @@ -4662,31 +4659,31 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1028; + this.state = 1027; this.match(FlinkSqlParser.KW_DROP); - this.state = 1030; + this.state = 1029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 1029; + this.state = 1028; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1032; + this.state = 1031; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1034; + this.state = 1033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1033; + this.state = 1032; this.ifExists(); } } - this.state = 1036; + this.state = 1035; this.tablePath(); } } @@ -4711,28 +4708,28 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1038; + this.state = 1037; this.match(FlinkSqlParser.KW_DROP); - this.state = 1039; + this.state = 1038; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1041; + this.state = 1040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1040; + this.state = 1039; this.ifExists(); } } - this.state = 1043; + this.state = 1042; this.databasePath(); - this.state = 1045; + this.state = 1044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 440 || _la === 490) { { - this.state = 1044; + this.state = 1043; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 440 || _la === 490)) { @@ -4768,31 +4765,31 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1047; + this.state = 1046; this.match(FlinkSqlParser.KW_DROP); - this.state = 1049; + this.state = 1048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 1048; + this.state = 1047; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1051; + this.state = 1050; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1053; + this.state = 1052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1052; + this.state = 1051; this.ifExists(); } } - this.state = 1055; + this.state = 1054; this.viewPath(); } } @@ -4816,39 +4813,39 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1057; + this.state = 1056; this.match(FlinkSqlParser.KW_DROP); - this.state = 1061; + this.state = 1060; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: { - this.state = 1058; + this.state = 1057; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1059; + this.state = 1058; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1060; + this.state = 1059; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1063; + this.state = 1062; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1065; + this.state = 1064; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1064; + this.state = 1063; this.ifExists(); } break; } - this.state = 1067; + this.state = 1066; this.functionName(); } } @@ -4871,24 +4868,24 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1076; + this.state = 1075; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1070; + this.state = 1069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1069; + this.state = 1068; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1072; + this.state = 1071; this.insertSimpleStatement(); } } @@ -4896,7 +4893,7 @@ export class FlinkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1073; + this.state = 1072; this.insertMulStatementCompatibility(); } break; @@ -4904,9 +4901,9 @@ export class FlinkSqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 1074; + this.state = 1073; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1075; + this.state = 1074; this.insertMulStatement(); } } @@ -4934,9 +4931,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1078; + this.state = 1077; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1079; + this.state = 1078; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 265)) { this.errorHandler.recoverInline(this); @@ -4945,40 +4942,40 @@ export class FlinkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1080; + this.state = 1079; this.tablePath(); - this.state = 1089; + this.state = 1088; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1082; + this.state = 1081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 268) { { - this.state = 1081; + this.state = 1080; this.insertPartitionDefinition(); } } - this.state = 1085; + this.state = 1084; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: { - this.state = 1084; + this.state = 1083; this.columnNameList(); } break; } - this.state = 1087; + this.state = 1086; this.queryStatement(0); } break; case 2: { - this.state = 1088; + this.state = 1087; this.valuesDefinition(); } break; @@ -5005,9 +5002,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1091; + this.state = 1090; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1092; + this.state = 1091; this.tablePropertyList(); } } @@ -5032,23 +5029,23 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1094; + this.state = 1093; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1095; + this.state = 1094; this.valuesRowDefinition(); - this.state = 1100; + this.state = 1099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1096; + this.state = 1095; this.match(FlinkSqlParser.COMMA); - this.state = 1097; + this.state = 1096; this.valuesRowDefinition(); } } - this.state = 1102; + this.state = 1101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5075,27 +5072,27 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1103; + this.state = 1102; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1104; + this.state = 1103; this.constant(); - this.state = 1109; + this.state = 1108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1105; + this.state = 1104; this.match(FlinkSqlParser.COMMA); - this.state = 1106; + this.state = 1105; this.constant(); } } - this.state = 1111; + this.state = 1110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1112; + this.state = 1111; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5120,31 +5117,31 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1114; + this.state = 1113; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1115; + this.state = 1114; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1116; + this.state = 1115; this.match(FlinkSqlParser.KW_SET); - this.state = 1117; + this.state = 1116; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1121; + this.state = 1120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1118; + this.state = 1117; this.insertSimpleStatement(); - this.state = 1119; + this.state = 1118; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1123; + this.state = 1122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1125; + this.state = 1124; this.match(FlinkSqlParser.KW_END); } } @@ -5169,29 +5166,29 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1127; + this.state = 1126; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1128; + this.state = 1127; this.match(FlinkSqlParser.KW_SET); - this.state = 1129; + this.state = 1128; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1133; + this.state = 1132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1130; + this.state = 1129; this.insertSimpleStatement(); - this.state = 1131; + this.state = 1130; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1135; + this.state = 1134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1137; + this.state = 1136; this.match(FlinkSqlParser.KW_END); } } @@ -5228,53 +5225,53 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1162; + this.state = 1161; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1140; + this.state = 1139; this.valuesCaluse(); } break; case 2: { - this.state = 1141; + this.state = 1140; this.withClause(); - this.state = 1142; + this.state = 1141; this.queryStatement(5); } break; case 3: { - this.state = 1144; + this.state = 1143; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1145; + this.state = 1144; this.queryStatement(0); - this.state = 1146; + this.state = 1145; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1148; + this.state = 1147; this.selectClause(); - this.state = 1150; + this.state = 1149; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1149; + this.state = 1148; this.orderByCaluse(); } break; } - this.state = 1153; + this.state = 1152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1152; + this.state = 1151; this.limitClause(); } break; @@ -5283,24 +5280,24 @@ export class FlinkSqlParser extends antlr.Parser { break; case 5: { - this.state = 1155; + this.state = 1154; this.selectStatement(); - this.state = 1157; + this.state = 1156; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1156; + this.state = 1155; this.orderByCaluse(); } break; } - this.state = 1160; + this.state = 1159; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1159; + this.state = 1158; this.limitClause(); } break; @@ -5309,7 +5306,7 @@ export class FlinkSqlParser extends antlr.Parser { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1178; + this.state = 1177; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 119, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5323,11 +5320,11 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1164; + this.state = 1163; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1165; + this.state = 1164; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 180 || _la === 402)) { @@ -5337,34 +5334,34 @@ export class FlinkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1167; + this.state = 1166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1166; + this.state = 1165; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1169; + this.state = 1168; localContext._right = this.queryStatement(0); - this.state = 1171; + this.state = 1170; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1170; + this.state = 1169; this.orderByCaluse(); } break; } - this.state = 1174; + this.state = 1173; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { case 1: { - this.state = 1173; + this.state = 1172; this.limitClause(); } break; @@ -5372,7 +5369,7 @@ export class FlinkSqlParser extends antlr.Parser { } } } - this.state = 1180; + this.state = 1179; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 119, this.context); } @@ -5399,25 +5396,25 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1181; + this.state = 1180; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1182; + this.state = 1181; this.expression(); - this.state = 1187; + this.state = 1186; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 120, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1183; + this.state = 1182; this.match(FlinkSqlParser.COMMA); - this.state = 1184; + this.state = 1183; this.expression(); } } } - this.state = 1189; + this.state = 1188; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 120, this.context); } @@ -5444,23 +5441,23 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1190; + this.state = 1189; this.match(FlinkSqlParser.KW_WITH); - this.state = 1191; + this.state = 1190; this.withItem(); - this.state = 1196; + this.state = 1195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1192; + this.state = 1191; this.match(FlinkSqlParser.COMMA); - this.state = 1193; + this.state = 1192; this.withItem(); } } - this.state = 1198; + this.state = 1197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5487,45 +5484,45 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1199; + this.state = 1198; this.withItemName(); - this.state = 1211; + this.state = 1210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 1200; + this.state = 1199; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1201; + this.state = 1200; this.columnName(); - this.state = 1206; + this.state = 1205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1202; + this.state = 1201; this.match(FlinkSqlParser.COMMA); - this.state = 1203; + this.state = 1202; this.columnName(); } } - this.state = 1208; + this.state = 1207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1209; + this.state = 1208; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1213; + this.state = 1212; this.match(FlinkSqlParser.KW_AS); - this.state = 1214; + this.state = 1213; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1215; + this.state = 1214; this.queryStatement(0); - this.state = 1216; + this.state = 1215; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5549,7 +5546,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1218; + this.state = 1217; this.identifier(); } } @@ -5571,60 +5568,60 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new SelectStatementContext(this.context, this.state); this.enterRule(localContext, 168, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1240; + this.state = 1239; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1220; + this.state = 1219; this.selectClause(); - this.state = 1222; + this.state = 1221; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: { - this.state = 1221; + this.state = 1220; this.fromClause(); } break; } - this.state = 1225; + this.state = 1224; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { case 1: { - this.state = 1224; + this.state = 1223; this.whereClause(); } break; } - this.state = 1228; + this.state = 1227; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1227; + this.state = 1226; this.groupByClause(); } break; } - this.state = 1231; + this.state = 1230; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1230; + this.state = 1229; this.havingClause(); } break; } - this.state = 1234; + this.state = 1233; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1233; + this.state = 1232; this.windowClause(); } break; @@ -5634,11 +5631,11 @@ export class FlinkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1236; + this.state = 1235; this.selectClause(); - this.state = 1237; + this.state = 1236; this.fromClause(); - this.state = 1238; + this.state = 1237; this.matchRecognizeClause(); } break; @@ -5661,51 +5658,50 @@ export class FlinkSqlParser extends antlr.Parser { public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); this.enterRule(localContext, 170, FlinkSqlParser.RULE_selectClause); - let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1242; + this.state = 1241; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1244; + this.state = 1243; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 5 || _la === 113) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { + case 1: { - this.state = 1243; + this.state = 1242; this.setQuantifier(); } + break; } - - this.state = 1255; + this.state = 1254; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1246; + this.state = 1245; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; case 2: { - this.state = 1247; + this.state = 1246; this.projectItemDefinition(); - this.state = 1252; + this.state = 1251; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1248; + this.state = 1247; this.match(FlinkSqlParser.COMMA); - this.state = 1249; + this.state = 1248; this.projectItemDefinition(); } } } - this.state = 1254; + this.state = 1253; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); } @@ -5733,43 +5729,70 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 172, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1265; + this.state = 1271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1257; + this.state = 1256; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1258; + this.state = 1257; this.columnName(); - this.state = 1263; + this.state = 1262; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1260; + this.state = 1259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1259; + this.state = 1258; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1262; + this.state = 1261; this.expression(); } break; } } break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 1264; + this.expression(); + this.state = 1269; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + case 1: + { + this.state = 1266; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { + case 1: + { + this.state = 1265; + this.match(FlinkSqlParser.KW_AS); + } + break; + } + this.state = 1268; + this.columnName(); + } + break; + } + } + break; } } catch (re) { @@ -5790,39 +5813,39 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new OverWindowItemContext(this.context, this.state); this.enterRule(localContext, 174, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1279; + this.state = 1285; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1267; - this.primaryExpression(0); - this.state = 1268; - this.match(FlinkSqlParser.KW_OVER); - this.state = 1269; - this.windowSpec(); - this.state = 1270; - this.match(FlinkSqlParser.KW_AS); - this.state = 1271; - this.identifier(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { this.state = 1273; this.primaryExpression(0); this.state = 1274; this.match(FlinkSqlParser.KW_OVER); this.state = 1275; - this.errorCapturingIdentifier(); + this.windowSpec(); this.state = 1276; this.match(FlinkSqlParser.KW_AS); this.state = 1277; this.identifier(); } break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1279; + this.primaryExpression(0); + this.state = 1280; + this.match(FlinkSqlParser.KW_OVER); + this.state = 1281; + this.errorCapturingIdentifier(); + this.state = 1282; + this.match(FlinkSqlParser.KW_AS); + this.state = 1283; + this.identifier(); + } + break; } } catch (re) { @@ -5845,9 +5868,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1281; + this.state = 1287; this.match(FlinkSqlParser.KW_FROM); - this.state = 1282; + this.state = 1288; this.tableExpression(0); } } @@ -5884,50 +5907,50 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1295; + this.state = 1301; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1285; + this.state = 1291; this.tableReference(); - this.state = 1290; + this.state = 1296; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 137, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 139, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1286; + this.state = 1292; this.match(FlinkSqlParser.COMMA); - this.state = 1287; + this.state = 1293; this.tableReference(); } } } - this.state = 1292; + this.state = 1298; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 137, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 139, this.context); } } break; case 2: { - this.state = 1293; + this.state = 1299; this.inlineDataValueClause(); } break; case 3: { - this.state = 1294; + this.state = 1300; this.windoTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1318; + this.state = 1324; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 144, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 146, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -5935,22 +5958,22 @@ export class FlinkSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 1316; + this.state = 1322; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1297; + this.state = 1303; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1298; + this.state = 1304; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1299; + this.state = 1305; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1300; + this.state = 1306; this.tableExpression(4); } break; @@ -5958,26 +5981,26 @@ export class FlinkSqlParser extends antlr.Parser { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1301; + this.state = 1307; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1303; + this.state = 1309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233) { { - this.state = 1302; + this.state = 1308; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1306; + this.state = 1312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 174 || _la === 201 || _la === 317) { { - this.state = 1305; + this.state = 1311; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 174 || _la === 201 || _la === 317)) { this.errorHandler.recoverInline(this); @@ -5989,26 +6012,26 @@ export class FlinkSqlParser extends antlr.Parser { } } - this.state = 1309; + this.state = 1315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 261) { { - this.state = 1308; + this.state = 1314; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1311; + this.state = 1317; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1312; + this.state = 1318; this.tableExpression(0); - this.state = 1314; + this.state = 1320; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1313; + this.state = 1319; this.joinCondition(); } break; @@ -6018,9 +6041,9 @@ export class FlinkSqlParser extends antlr.Parser { } } } - this.state = 1320; + this.state = 1326; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 144, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 146, this.context); } } } @@ -6044,14 +6067,14 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1321; + this.state = 1327; this.tablePrimary(); - this.state = 1323; + this.state = 1329; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1322; + this.state = 1328; this.tableAlias(); } break; @@ -6077,50 +6100,50 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 182, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1376; + this.state = 1382; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1326; + this.state = 1332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 373) { { - this.state = 1325; + this.state = 1331; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1328; + this.state = 1334; this.tablePath(); - this.state = 1330; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { - case 1: - { - this.state = 1329; - this.systemTimePeriod(); - } - break; - } this.state = 1336; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: { - this.state = 1333; + this.state = 1335; + this.systemTimePeriod(); + } + break; + } + this.state = 1342; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { + case 1: + { + this.state = 1339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1332; + this.state = 1338; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1335; + this.state = 1341; this.correlationName(); } break; @@ -6130,34 +6153,34 @@ export class FlinkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1338; + this.state = 1344; this.viewPath(); - this.state = 1340; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { - case 1: - { - this.state = 1339; - this.systemTimePeriod(); - } - break; - } this.state = 1346; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1343; + this.state = 1345; + this.systemTimePeriod(); + } + break; + } + this.state = 1352; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { + case 1: + { + this.state = 1349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1342; + this.state = 1348; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1345; + this.state = 1351; this.correlationName(); } break; @@ -6167,71 +6190,71 @@ export class FlinkSqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1348; + this.state = 1354; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1349; + this.state = 1355; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1350; + this.state = 1356; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1351; + this.state = 1357; this.functionName(); - this.state = 1352; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1353; - this.functionParam(); this.state = 1358; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1359; + this.functionParam(); + this.state = 1364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1354; + this.state = 1360; this.match(FlinkSqlParser.COMMA); - this.state = 1355; + this.state = 1361; this.functionParam(); } } - this.state = 1360; + this.state = 1366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1361; + this.state = 1367; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1362; + this.state = 1368; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1365; + this.state = 1371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 198) { { - this.state = 1364; + this.state = 1370; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1367; + this.state = 1373; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1368; + this.state = 1374; this.queryStatement(0); - this.state = 1369; + this.state = 1375; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1371; + this.state = 1377; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1372; + this.state = 1378; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1373; + this.state = 1379; this.expression(); - this.state = 1374; + this.state = 1380; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6257,15 +6280,15 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1378; + this.state = 1384; this.match(FlinkSqlParser.KW_FOR); - this.state = 1379; + this.state = 1385; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1380; + this.state = 1386; this.match(FlinkSqlParser.KW_AS); - this.state = 1381; + this.state = 1387; this.match(FlinkSqlParser.KW_OF); - this.state = 1382; + this.state = 1388; this.dateTimeExpression(); } } @@ -6289,7 +6312,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1384; + this.state = 1390; this.expression(); } } @@ -6313,13 +6336,13 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1386; + this.state = 1392; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1387; + this.state = 1393; this.valuesDefinition(); - this.state = 1388; + this.state = 1394; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1389; + this.state = 1395; this.tableAlias(); } } @@ -6343,13 +6366,13 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1391; + this.state = 1397; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1392; + this.state = 1398; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1393; + this.state = 1399; this.windowTVFExression(); - this.state = 1394; + this.state = 1400; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6374,29 +6397,29 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1396; + this.state = 1402; this.windoTVFName(); - this.state = 1397; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1398; - this.windowTVFParam(); this.state = 1403; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1404; + this.windowTVFParam(); + this.state = 1409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1399; + this.state = 1405; this.match(FlinkSqlParser.COMMA); - this.state = 1400; + this.state = 1406; this.windowTVFParam(); } } - this.state = 1405; + this.state = 1411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1406; + this.state = 1412; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6421,7 +6444,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1414; _la = this.tokenStream.LA(1); if(!(_la === 445 || _la === 459 || _la === 499)) { this.errorHandler.recoverInline(this); @@ -6450,64 +6473,64 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new WindowTVFParamContext(this.context, this.state); this.enterRule(localContext, 196, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1425; + this.state = 1431; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1410; - this.match(FlinkSqlParser.KW_TABLE); - this.state = 1411; - this.timeAttrColumn(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 1412; - this.columnDescriptor(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 1413; - this.timeIntervalExpression(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 1414; - this.match(FlinkSqlParser.KW_DATA); - this.state = 1415; - this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); this.state = 1416; this.match(FlinkSqlParser.KW_TABLE); this.state = 1417; this.timeAttrColumn(); } break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1418; + this.columnDescriptor(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 1419; + this.timeIntervalExpression(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 1420; + this.match(FlinkSqlParser.KW_DATA); + this.state = 1421; + this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); + this.state = 1422; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 1423; + this.timeAttrColumn(); + } + break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1418; + this.state = 1424; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1419; + this.state = 1425; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1420; + this.state = 1426; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1421; + this.state = 1427; this.timeIntervalParamName(); - this.state = 1422; + this.state = 1428; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1423; + this.state = 1429; this.timeIntervalExpression(); } break; @@ -6534,7 +6557,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1427; + this.state = 1433; _la = this.tokenStream.LA(1); if(!(_la === 250 || _la === 446 || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 23) !== 0))) { this.errorHandler.recoverInline(this); @@ -6565,13 +6588,13 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1429; + this.state = 1435; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1430; + this.state = 1436; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1431; + this.state = 1437; this.columnName(); - this.state = 1432; + this.state = 1438; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6593,24 +6616,24 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new JoinConditionContext(this.context, this.state); this.enterRule(localContext, 202, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1438; + this.state = 1444; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1434; + this.state = 1440; this.match(FlinkSqlParser.KW_ON); - this.state = 1435; + this.state = 1441; this.booleanExpression(0); } break; case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1436; + this.state = 1442; this.match(FlinkSqlParser.KW_USING); - this.state = 1437; + this.state = 1443; this.columnNameList(); } break; @@ -6638,9 +6661,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1440; + this.state = 1446; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1441; + this.state = 1447; this.booleanExpression(0); } } @@ -6665,29 +6688,29 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1443; + this.state = 1449; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1444; - this.match(FlinkSqlParser.KW_BY); - this.state = 1445; - this.groupItemDefinition(); this.state = 1450; + this.match(FlinkSqlParser.KW_BY); + this.state = 1451; + this.groupItemDefinition(); + this.state = 1456; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1446; + this.state = 1452; this.match(FlinkSqlParser.COMMA); - this.state = 1447; + this.state = 1453; this.groupItemDefinition(); } } } - this.state = 1452; + this.state = 1458; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } } } @@ -6710,117 +6733,124 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 208, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1492; + this.state = 1499; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1453; + this.state = 1459; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1454; + this.state = 1460; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1455; + this.state = 1461; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1456; + this.state = 1462; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1457; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1458; - this.expression(); this.state = 1463; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1464; + this.expression(); + this.state = 1469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1459; + this.state = 1465; this.match(FlinkSqlParser.COMMA); - this.state = 1460; + this.state = 1466; this.expression(); } } - this.state = 1465; + this.state = 1471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1466; + this.state = 1472; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1468; + this.state = 1474; this.groupingSetsNotaionName(); - this.state = 1469; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1470; - this.expression(); this.state = 1475; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1476; + this.expression(); + this.state = 1481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1471; + this.state = 1477; this.match(FlinkSqlParser.COMMA); - this.state = 1472; + this.state = 1478; this.expression(); } } - this.state = 1477; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1478; + this.state = 1484; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1480; + this.state = 1486; this.groupingSets(); - this.state = 1481; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1482; - this.groupItemDefinition(); this.state = 1487; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1488; + this.groupItemDefinition(); + this.state = 1493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1483; + this.state = 1489; this.match(FlinkSqlParser.COMMA); - this.state = 1484; + this.state = 1490; this.groupItemDefinition(); } } - this.state = 1489; + this.state = 1495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1490; + this.state = 1496; this.match(FlinkSqlParser.RR_BRACKET); } break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 1498; + this.expression(); + } + break; } } catch (re) { @@ -6843,9 +6873,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1494; + this.state = 1501; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1495; + this.state = 1502; this.match(FlinkSqlParser.KW_SETS); } } @@ -6870,7 +6900,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1497; + this.state = 1504; _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 320)) { this.errorHandler.recoverInline(this); @@ -6901,17 +6931,17 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1499; + this.state = 1506; this.groupWindowFunctionName(); - this.state = 1500; + this.state = 1507; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1501; + this.state = 1508; this.timeAttrColumn(); - this.state = 1502; + this.state = 1509; this.match(FlinkSqlParser.COMMA); - this.state = 1503; + this.state = 1510; this.timeIntervalExpression(); - this.state = 1504; + this.state = 1511; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6936,7 +6966,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1506; + this.state = 1513; _la = this.tokenStream.LA(1); if(!(_la === 459 || _la === 492 || _la === 499)) { this.errorHandler.recoverInline(this); @@ -6967,7 +6997,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1508; + this.state = 1515; this.uid(); } } @@ -6991,9 +7021,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1510; + this.state = 1517; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1511; + this.state = 1518; this.booleanExpression(0); } } @@ -7018,27 +7048,27 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1513; + this.state = 1520; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1514; + this.state = 1521; this.namedWindow(); - this.state = 1519; + this.state = 1526; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 166, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1515; + this.state = 1522; this.match(FlinkSqlParser.COMMA); - this.state = 1516; + this.state = 1523; this.namedWindow(); } } } - this.state = 1521; + this.state = 1528; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 166, this.context); } } } @@ -7062,11 +7092,11 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1522; + this.state = 1529; localContext._name = this.errorCapturingIdentifier(); - this.state = 1523; + this.state = 1530; this.match(FlinkSqlParser.KW_AS); - this.state = 1524; + this.state = 1531; this.windowSpec(); } } @@ -7091,49 +7121,49 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1527; + this.state = 1534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 15) !== 0) || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 19) !== 0)) { { - this.state = 1526; + this.state = 1533; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1529; + this.state = 1536; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1531; + this.state = 1538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 268) { { - this.state = 1530; + this.state = 1537; this.partitionByClause(); } } - this.state = 1534; + this.state = 1541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 258) { { - this.state = 1533; + this.state = 1540; this.orderByCaluse(); } } - this.state = 1537; + this.state = 1544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 322) { { - this.state = 1536; + this.state = 1543; this.windowFrame(); } } - this.state = 1539; + this.state = 1546; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7158,90 +7188,90 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1541; + this.state = 1548; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1542; + this.state = 1549; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1544; + this.state = 1551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 268) { { - this.state = 1543; + this.state = 1550; this.partitionByClause(); } } - this.state = 1547; + this.state = 1554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 258) { { - this.state = 1546; + this.state = 1553; this.orderByCaluse(); } } - this.state = 1550; + this.state = 1557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1549; + this.state = 1556; this.measuresClause(); } } - this.state = 1553; + this.state = 1560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5 || _la === 254) { { - this.state = 1552; + this.state = 1559; this.outputMode(); } } - this.state = 1556; + this.state = 1563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438) { { - this.state = 1555; + this.state = 1562; this.afterMatchStrategy(); } } - this.state = 1559; + this.state = 1566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 271) { { - this.state = 1558; + this.state = 1565; this.patternDefination(); } } - this.state = 1561; + this.state = 1568; this.patternVariablesDefination(); - this.state = 1562; + this.state = 1569; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1567; + this.state = 1574; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 1564; + this.state = 1571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1563; + this.state = 1570; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1566; + this.state = 1573; this.identifier(); } break; @@ -7269,29 +7299,29 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1569; - this.match(FlinkSqlParser.KW_ORDER); - this.state = 1570; - this.match(FlinkSqlParser.KW_BY); - this.state = 1571; - this.orderItemDefition(); this.state = 1576; + this.match(FlinkSqlParser.KW_ORDER); + this.state = 1577; + this.match(FlinkSqlParser.KW_BY); + this.state = 1578; + this.orderItemDefition(); + this.state = 1583; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 179, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1572; + this.state = 1579; this.match(FlinkSqlParser.COMMA); - this.state = 1573; + this.state = 1580; this.orderItemDefition(); } } } - this.state = 1578; + this.state = 1585; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 179, this.context); } } } @@ -7316,14 +7346,14 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1579; + this.state = 1586; this.columnName(); - this.state = 1581; + this.state = 1588; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { case 1: { - this.state = 1580; + this.state = 1587; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 439 || _la === 450)) { @@ -7336,14 +7366,14 @@ export class FlinkSqlParser extends antlr.Parser { } break; } - this.state = 1585; + this.state = 1592; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1583; + this.state = 1590; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1584; + this.state = 1591; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 457 || _la === 467)) { @@ -7378,14 +7408,14 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1587; + this.state = 1594; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1590; + this.state = 1597; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1588; + this.state = 1595; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7541,7 +7571,7 @@ export class FlinkSqlParser extends antlr.Parser { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1589; + this.state = 1596; localContext._limit = this.expression(); } break; @@ -7571,25 +7601,25 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1592; - this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1593; - this.match(FlinkSqlParser.KW_BY); - this.state = 1594; - this.columnName(); this.state = 1599; + this.match(FlinkSqlParser.KW_PARTITION); + this.state = 1600; + this.match(FlinkSqlParser.KW_BY); + this.state = 1601; + this.columnName(); + this.state = 1606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1595; + this.state = 1602; this.match(FlinkSqlParser.COMMA); - this.state = 1596; + this.state = 1603; this.columnName(); } } - this.state = 1601; + this.state = 1608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7613,14 +7643,14 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new QuantifiersContext(this.context, this.state); this.enterRule(localContext, 238, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1618; + this.state = 1625; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1602; + this.state = 1609; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -7629,7 +7659,7 @@ export class FlinkSqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 1603; + this.state = 1610; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -7638,7 +7668,7 @@ export class FlinkSqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 1604; + this.state = 1611; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -7647,15 +7677,15 @@ export class FlinkSqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 4); { { - this.state = 1605; + this.state = 1612; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1606; + this.state = 1613; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1607; + this.state = 1614; this.match(FlinkSqlParser.COMMA); - this.state = 1608; + this.state = 1615; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1609; + this.state = 1616; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7664,13 +7694,13 @@ export class FlinkSqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 5); { { - this.state = 1610; + this.state = 1617; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1611; + this.state = 1618; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1612; + this.state = 1619; this.match(FlinkSqlParser.COMMA); - this.state = 1613; + this.state = 1620; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7679,13 +7709,13 @@ export class FlinkSqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 6); { { - this.state = 1614; + this.state = 1621; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1615; + this.state = 1622; this.match(FlinkSqlParser.COMMA); - this.state = 1616; + this.state = 1623; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1617; + this.state = 1624; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7713,23 +7743,23 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1620; + this.state = 1627; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1621; + this.state = 1628; this.projectItemDefinition(); - this.state = 1626; + this.state = 1633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1622; + this.state = 1629; this.match(FlinkSqlParser.COMMA); - this.state = 1623; + this.state = 1630; this.projectItemDefinition(); } } - this.state = 1628; + this.state = 1635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7756,32 +7786,32 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1629; + this.state = 1636; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1630; + this.state = 1637; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1632; + this.state = 1639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1631; + this.state = 1638; this.patternVariable(); } } - this.state = 1634; + this.state = 1641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 538 || _la === 541); - this.state = 1636; + this.state = 1643; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1638; + this.state = 1645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434) { { - this.state = 1637; + this.state = 1644; this.withinClause(); } } @@ -7809,14 +7839,14 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1640; + this.state = 1647; this.unquotedIdentifier(); - this.state = 1642; + this.state = 1649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 518)) & ~0x1F) === 0 && ((1 << (_la - 518)) & 135681) !== 0)) { { - this.state = 1641; + this.state = 1648; this.quantifiers(); } } @@ -7841,32 +7871,32 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new OutputModeContext(this.context, this.state); this.enterRule(localContext, 246, FlinkSqlParser.RULE_outputMode); try { - this.state = 1652; + this.state = 1659; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1644; + this.state = 1651; this.match(FlinkSqlParser.KW_ALL); - this.state = 1645; + this.state = 1652; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1646; + this.state = 1653; this.match(FlinkSqlParser.KW_PER); - this.state = 1647; + this.state = 1654; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1648; + this.state = 1655; this.match(FlinkSqlParser.KW_ONE); - this.state = 1649; + this.state = 1656; this.match(FlinkSqlParser.KW_ROW); - this.state = 1650; + this.state = 1657; this.match(FlinkSqlParser.KW_PER); - this.state = 1651; + this.state = 1658; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -7892,74 +7922,74 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new AfterMatchStrategyContext(this.context, this.state); this.enterRule(localContext, 248, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1678; + this.state = 1685; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1661; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1655; + this.state = 1662; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1656; + this.state = 1663; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1657; + this.state = 1664; this.match(FlinkSqlParser.KW_PAST); - this.state = 1658; + this.state = 1665; this.match(FlinkSqlParser.KW_LAST); - this.state = 1659; + this.state = 1666; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1660; + this.state = 1667; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1661; + this.state = 1668; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1662; + this.state = 1669; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1663; + this.state = 1670; this.match(FlinkSqlParser.KW_TO); - this.state = 1664; + this.state = 1671; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1665; + this.state = 1672; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1666; + this.state = 1673; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1667; + this.state = 1674; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1668; + this.state = 1675; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1669; + this.state = 1676; this.match(FlinkSqlParser.KW_TO); - this.state = 1670; + this.state = 1677; this.match(FlinkSqlParser.KW_LAST); - this.state = 1671; + this.state = 1678; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1672; + this.state = 1679; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1673; + this.state = 1680; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1674; + this.state = 1681; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1675; + this.state = 1682; this.match(FlinkSqlParser.KW_TO); - this.state = 1676; + this.state = 1683; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1677; + this.state = 1684; this.unquotedIdentifier(); } break; @@ -7986,23 +8016,23 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1680; + this.state = 1687; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1681; + this.state = 1688; this.projectItemDefinition(); - this.state = 1686; + this.state = 1693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1682; + this.state = 1689; this.match(FlinkSqlParser.COMMA); - this.state = 1683; + this.state = 1690; this.projectItemDefinition(); } } - this.state = 1688; + this.state = 1695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8026,32 +8056,32 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new WindowFrameContext(this.context, this.state); this.enterRule(localContext, 252, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1698; + this.state = 1705; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 1689; + this.state = 1696; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1690; + this.state = 1697; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1691; + this.state = 1698; this.timeIntervalExpression(); - this.state = 1692; + this.state = 1699; this.frameBound(); } break; case FlinkSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 1694; + this.state = 1701; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1695; + this.state = 1702; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1696; + this.state = 1703; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1697; + this.state = 1704; this.frameBound(); } break; @@ -8079,13 +8109,13 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1700; + this.state = 1707; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1701; + this.state = 1708; this.match(FlinkSqlParser.KW_AND); - this.state = 1702; + this.state = 1709; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1703; + this.state = 1710; this.match(FlinkSqlParser.KW_ROW); } } @@ -8109,9 +8139,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1705; + this.state = 1712; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1706; + this.state = 1713; this.timeIntervalExpression(); } } @@ -8135,7 +8165,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1708; + this.state = 1715; this.booleanExpression(0); } } @@ -8172,18 +8202,18 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1722; + this.state = 1729; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { case 1: { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1711; + this.state = 1718; this.match(FlinkSqlParser.KW_NOT); - this.state = 1712; + this.state = 1719; this.booleanExpression(6); } break; @@ -8192,13 +8222,13 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1713; + this.state = 1720; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1714; + this.state = 1721; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1715; + this.state = 1722; this.queryStatement(0); - this.state = 1716; + this.state = 1723; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8207,14 +8237,14 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1718; + this.state = 1725; this.valueExpression(0); - this.state = 1720; + this.state = 1727; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: { - this.state = 1719; + this.state = 1726; this.predicate(); } break; @@ -8223,9 +8253,9 @@ export class FlinkSqlParser extends antlr.Parser { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1738; + this.state = 1745; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 195, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8233,21 +8263,21 @@ export class FlinkSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 1736; + this.state = 1743; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1724; + this.state = 1731; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1725; + this.state = 1732; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1726; + this.state = 1733; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8256,13 +8286,13 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1727; + this.state = 1734; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1728; + this.state = 1735; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1729; + this.state = 1736; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8270,23 +8300,23 @@ export class FlinkSqlParser extends antlr.Parser { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1730; + this.state = 1737; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1731; + this.state = 1738; this.match(FlinkSqlParser.KW_IS); - this.state = 1733; + this.state = 1740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1732; + this.state = 1739; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1735; + this.state = 1742; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 244 || _la === 397 || _la === 404)) { @@ -8301,9 +8331,9 @@ export class FlinkSqlParser extends antlr.Parser { } } } - this.state = 1740; + this.state = 1747; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 195, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); } } } @@ -8326,30 +8356,30 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 262, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1808; + this.state = 1815; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1742; + this.state = 1749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1741; + this.state = 1748; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1744; + this.state = 1751; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1746; + this.state = 1753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19 || _la === 369) { { - this.state = 1745; + this.state = 1752; _la = this.tokenStream.LA(1); if(!(_la === 19 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -8361,120 +8391,92 @@ export class FlinkSqlParser extends antlr.Parser { } } - this.state = 1748; + this.state = 1755; localContext._lower = this.valueExpression(0); - this.state = 1749; + this.state = 1756; this.match(FlinkSqlParser.KW_AND); - this.state = 1750; + this.state = 1757; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1753; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1752; + this.state = 1759; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1755; - localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1756; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1757; - this.expression(); this.state = 1762; + localContext._kind = this.match(FlinkSqlParser.KW_IN); + this.state = 1763; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1764; + this.expression(); + this.state = 1769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1758; + this.state = 1765; this.match(FlinkSqlParser.COMMA); - this.state = 1759; + this.state = 1766; this.expression(); } } - this.state = 1764; + this.state = 1771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1765; + this.state = 1772; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1768; + this.state = 1775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1767; + this.state = 1774; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1770; + this.state = 1777; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1771; + this.state = 1778; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1772; + this.state = 1779; this.queryStatement(0); - this.state = 1773; + this.state = 1780; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1775; + this.state = 1782; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1776; + this.state = 1783; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1777; + this.state = 1784; this.queryStatement(0); - this.state = 1778; + this.state = 1785; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1781; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 241) { - { - this.state = 1780; - this.match(FlinkSqlParser.KW_NOT); - } - } - - this.state = 1783; - localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1784; - localContext._pattern = this.valueExpression(0); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 1785; - this.likePredicate(); - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 1786; - this.match(FlinkSqlParser.KW_IS); this.state = 1788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -8486,6 +8488,34 @@ export class FlinkSqlParser extends antlr.Parser { } this.state = 1790; + localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); + this.state = 1791; + localContext._pattern = this.valueExpression(0); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 1792; + this.likePredicate(); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 1793; + this.match(FlinkSqlParser.KW_IS); + this.state = 1795; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 241) { + { + this.state = 1794; + this.match(FlinkSqlParser.KW_NOT); + } + } + + this.state = 1797; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 244 || _la === 397 || _la === 404)) { @@ -8500,53 +8530,53 @@ export class FlinkSqlParser extends antlr.Parser { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1791; + this.state = 1798; this.match(FlinkSqlParser.KW_IS); - this.state = 1793; + this.state = 1800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1792; + this.state = 1799; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1795; + this.state = 1802; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1796; + this.state = 1803; this.match(FlinkSqlParser.KW_FROM); - this.state = 1797; + this.state = 1804; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1799; + this.state = 1806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1798; + this.state = 1805; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1801; + this.state = 1808; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1802; + this.state = 1809; this.match(FlinkSqlParser.KW_TO); - this.state = 1803; + this.state = 1810; localContext._right = this.valueExpression(0); - this.state = 1806; + this.state = 1813; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 205, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { - this.state = 1804; + this.state = 1811; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1805; + this.state = 1812; this.stringLiteral(); } break; @@ -8574,25 +8604,25 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 264, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1839; + this.state = 1846; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1811; + this.state = 1818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1810; + this.state = 1817; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1813; + this.state = 1820; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1814; + this.state = 1821; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -8602,40 +8632,40 @@ export class FlinkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1828; + this.state = 1835; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 1815; + this.state = 1822; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1816; + this.state = 1823; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1817; + this.state = 1824; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1818; + this.state = 1825; this.expression(); - this.state = 1823; + this.state = 1830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1819; + this.state = 1826; this.match(FlinkSqlParser.COMMA); - this.state = 1820; + this.state = 1827; this.expression(); } } - this.state = 1825; + this.state = 1832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1826; + this.state = 1833; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8645,28 +8675,28 @@ export class FlinkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1831; + this.state = 1838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1830; + this.state = 1837; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1833; + this.state = 1840; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1834; + this.state = 1841; localContext._pattern = this.valueExpression(0); - this.state = 1837; + this.state = 1844; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1835; + this.state = 1842; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1836; + this.state = 1843; this.stringLiteral(); } break; @@ -8708,16 +8738,16 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1845; + this.state = 1852; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1842; + this.state = 1849; this.primaryExpression(0); } break; @@ -8726,7 +8756,7 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1843; + this.state = 1850; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3145729) !== 0))) { @@ -8736,15 +8766,15 @@ export class FlinkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1844; + this.state = 1851; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1868; + this.state = 1875; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 215, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8752,19 +8782,19 @@ export class FlinkSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 1866; + this.state = 1873; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1847; + this.state = 1854; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1848; + this.state = 1855; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 452 || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 145) !== 0))) { @@ -8774,7 +8804,7 @@ export class FlinkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1849; + this.state = 1856; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -8783,11 +8813,11 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1850; + this.state = 1857; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1851; + this.state = 1858; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 529)) & ~0x1F) === 0 && ((1 << (_la - 529)) & 11) !== 0))) { @@ -8797,7 +8827,7 @@ export class FlinkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1852; + this.state = 1859; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -8806,13 +8836,13 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1853; + this.state = 1860; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1854; + this.state = 1861; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1855; + this.state = 1862; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -8821,13 +8851,13 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1856; + this.state = 1863; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1857; + this.state = 1864; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1858; + this.state = 1865; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -8836,13 +8866,13 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1859; + this.state = 1866; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1860; + this.state = 1867; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1861; + this.state = 1868; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -8851,22 +8881,22 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new ComparisonContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ComparisonContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1862; + this.state = 1869; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1863; + this.state = 1870; this.comparisonOperator(); - this.state = 1864; + this.state = 1871; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1870; + this.state = 1877; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 215, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); } } } @@ -8903,44 +8933,44 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1963; + this.state = 1970; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1872; + this.state = 1879; this.match(FlinkSqlParser.KW_CASE); - this.state = 1874; + this.state = 1881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1873; + this.state = 1880; this.whenClause(); } } - this.state = 1876; + this.state = 1883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 428); - this.state = 1880; + this.state = 1887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1878; + this.state = 1885; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1879; + this.state = 1886; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1882; + this.state = 1889; this.match(FlinkSqlParser.KW_END); } break; @@ -8949,37 +8979,37 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1884; + this.state = 1891; this.match(FlinkSqlParser.KW_CASE); - this.state = 1885; + this.state = 1892; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 1887; + this.state = 1894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1886; + this.state = 1893; this.whenClause(); } } - this.state = 1889; + this.state = 1896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 428); - this.state = 1893; + this.state = 1900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1891; + this.state = 1898; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1892; + this.state = 1899; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1895; + this.state = 1902; this.match(FlinkSqlParser.KW_END); } break; @@ -8988,17 +9018,17 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1897; + this.state = 1904; this.match(FlinkSqlParser.KW_CAST); - this.state = 1898; + this.state = 1905; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1899; + this.state = 1906; this.expression(); - this.state = 1900; + this.state = 1907; this.match(FlinkSqlParser.KW_AS); - this.state = 1901; + this.state = 1908; this.columnType(); - this.state = 1902; + this.state = 1909; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9007,25 +9037,25 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1904; + this.state = 1911; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1905; + this.state = 1912; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1906; + this.state = 1913; this.expression(); - this.state = 1909; + this.state = 1916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 461) { { - this.state = 1907; + this.state = 1914; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1908; + this.state = 1915; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1911; + this.state = 1918; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9034,25 +9064,25 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1913; + this.state = 1920; this.match(FlinkSqlParser.KW_LAST); - this.state = 1914; + this.state = 1921; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1915; + this.state = 1922; this.expression(); - this.state = 1918; + this.state = 1925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 461) { { - this.state = 1916; + this.state = 1923; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1917; + this.state = 1924; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1920; + this.state = 1927; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9061,17 +9091,17 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1922; + this.state = 1929; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1923; + this.state = 1930; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1924; + this.state = 1931; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 1925; + this.state = 1932; this.match(FlinkSqlParser.KW_IN); - this.state = 1926; + this.state = 1933; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 1927; + this.state = 1934; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9080,7 +9110,7 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1929; + this.state = 1936; this.constant(); } break; @@ -9089,7 +9119,7 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1930; + this.state = 1937; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9098,11 +9128,11 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1931; + this.state = 1938; this.uid(); - this.state = 1932; + this.state = 1939; this.match(FlinkSqlParser.DOT); - this.state = 1933; + this.state = 1940; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9111,11 +9141,11 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1935; + this.state = 1942; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1936; + this.state = 1943; this.queryStatement(0); - this.state = 1937; + this.state = 1944; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9124,47 +9154,47 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1939; + this.state = 1946; this.functionName(); - this.state = 1940; + this.state = 1947; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1952; + this.state = 1959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396848) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 10489249) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 1883341377) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 201330753) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641555) !== 0) || ((((_la - 182)) & ~0x1F) === 0 && ((1 << (_la - 182)) & 244224001) !== 0) || ((((_la - 214)) & ~0x1F) === 0 && ((1 << (_la - 214)) & 3892347713) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 537530369) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 131185) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 14681219) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 3238528833) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4294966785) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 33832959) !== 0) || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 31757) !== 0)) { { - this.state = 1942; + this.state = 1949; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 1941; + this.state = 1948; this.setQuantifier(); } break; } - this.state = 1944; + this.state = 1951; this.functionParam(); - this.state = 1949; + this.state = 1956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1945; + this.state = 1952; this.match(FlinkSqlParser.COMMA); - this.state = 1946; + this.state = 1953; this.functionParam(); } } - this.state = 1951; + this.state = 1958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1954; + this.state = 1961; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9173,7 +9203,7 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1956; + this.state = 1963; this.identifier(); } break; @@ -9182,7 +9212,7 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1957; + this.state = 1964; this.dereferenceDefinition(); } break; @@ -9191,11 +9221,11 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1958; + this.state = 1965; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1959; + this.state = 1966; this.expression(); - this.state = 1960; + this.state = 1967; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9204,15 +9234,15 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new DateFunctionExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1962; + this.state = 1969; this.match(FlinkSqlParser.KW_CURRENT_TIMESTAMP); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1972; + this.state = 1979; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 226, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9224,22 +9254,22 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 1965; + this.state = 1972; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1966; + this.state = 1973; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1967; + this.state = 1974; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 1968; + this.state = 1975; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 1974; + this.state = 1981; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 226, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); } } } @@ -9263,7 +9293,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1975; + this.state = 1982; this.uid(); } } @@ -9285,20 +9315,20 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new FunctionNameContext(this.context, this.state); this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionName); try { - this.state = 1979; + this.state = 1986; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1977; + this.state = 1984; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1978; + this.state = 1985; this.uid(); } break; @@ -9322,34 +9352,34 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new FunctionParamContext(this.context, this.state); this.enterRule(localContext, 274, FlinkSqlParser.RULE_functionParam); try { - this.state = 1985; + this.state = 1992; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1981; + this.state = 1988; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1982; + this.state = 1989; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1983; + this.state = 1990; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1984; + this.state = 1991; this.expression(); } break; @@ -9375,7 +9405,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1987; + this.state = 1994; this.uid(); } } @@ -9399,7 +9429,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1989; + this.state = 1996; this.identifier(); } } @@ -9421,20 +9451,20 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new QualifiedNameContext(this.context, this.state); this.enterRule(localContext, 280, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 1993; + this.state = 2000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1991; + this.state = 1998; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1992; + this.state = 1999; this.dereferenceDefinition(); } break; @@ -9460,20 +9490,20 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1995; + this.state = 2002; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 1998; + this.state = 2005; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 1996; + this.state = 2003; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 1997; + this.state = 2004; this.errorCapturingUnitToUnitInterval(); } break; @@ -9500,14 +9530,14 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2000; + this.state = 2007; this.multiUnitsInterval(); - this.state = 2002; + this.state = 2009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 2001; + this.state = 2008; this.unitToUnitInterval(); } break; @@ -9535,7 +9565,7 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2007; + this.state = 2014; this.errorHandler.sync(this); alternative = 1; do { @@ -9543,9 +9573,9 @@ export class FlinkSqlParser extends antlr.Parser { case 1: { { - this.state = 2004; + this.state = 2011; this.intervalValue(); - this.state = 2005; + this.state = 2012; this.timeIntervalUnit(); } } @@ -9553,9 +9583,9 @@ export class FlinkSqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 2009; + this.state = 2016; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -9579,20 +9609,20 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2011; + this.state = 2018; localContext._body = this.unitToUnitInterval(); - this.state = 2014; + this.state = 2021; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { - this.state = 2012; + this.state = 2019; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2013; + this.state = 2020; localContext._error2 = this.unitToUnitInterval(); } break; @@ -9619,13 +9649,13 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2016; + this.state = 2023; localContext._value = this.intervalValue(); - this.state = 2017; + this.state = 2024; localContext._from_ = this.timeIntervalUnit(); - this.state = 2018; + this.state = 2025; this.match(FlinkSqlParser.KW_TO); - this.state = 2019; + this.state = 2026; localContext._to = this.timeIntervalUnit(); } } @@ -9648,7 +9678,7 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 292, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2026; + this.state = 2033; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPNEN_SIGN: @@ -9657,12 +9687,12 @@ export class FlinkSqlParser extends antlr.Parser { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2022; + this.state = 2029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 529 || _la === 530) { { - this.state = 2021; + this.state = 2028; _la = this.tokenStream.LA(1); if(!(_la === 529 || _la === 530)) { this.errorHandler.recoverInline(this); @@ -9674,7 +9704,7 @@ export class FlinkSqlParser extends antlr.Parser { } } - this.state = 2024; + this.state = 2031; _la = this.tokenStream.LA(1); if(!(_la === 538 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -9688,7 +9718,7 @@ export class FlinkSqlParser extends antlr.Parser { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2025; + this.state = 2032; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -9717,24 +9747,24 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2029; + this.state = 2036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2028; + this.state = 2035; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2031; + this.state = 2038; this.identifier(); - this.state = 2033; + this.state = 2040; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 2032; + this.state = 2039; this.identifierList(); } break; @@ -9761,9 +9791,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2035; + this.state = 2042; this.identifier(); - this.state = 2036; + this.state = 2043; this.errorCapturingIdentifierExtra(); } } @@ -9786,26 +9816,26 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 298, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2045; + this.state = 2052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2040; + this.state = 2047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2038; + this.state = 2045; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2039; + this.state = 2046; this.identifier(); } } - this.state = 2042; + this.state = 2049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 221); @@ -9843,11 +9873,11 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2047; + this.state = 2054; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2048; + this.state = 2055; this.identifierSeq(); - this.state = 2049; + this.state = 2056; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -9872,21 +9902,21 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2051; + this.state = 2058; this.identifier(); - this.state = 2056; + this.state = 2063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 2052; + this.state = 2059; this.match(FlinkSqlParser.COMMA); - this.state = 2053; + this.state = 2060; this.identifier(); } } - this.state = 2058; + this.state = 2065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9910,7 +9940,7 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new IdentifierContext(this.context, this.state); this.enterRule(localContext, 304, FlinkSqlParser.RULE_identifier); try { - this.state = 2062; + this.state = 2069; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -9918,7 +9948,7 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2059; + this.state = 2066; this.unquotedIdentifier(); } break; @@ -9926,7 +9956,7 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2060; + this.state = 2067; this.quotedIdentifier(); } break; @@ -10001,7 +10031,7 @@ export class FlinkSqlParser extends antlr.Parser { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2061; + this.state = 2068; this.nonReservedKeywords(); } break; @@ -10030,7 +10060,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2064; + this.state = 2071; _la = this.tokenStream.LA(1); if(!(_la === 538 || _la === 541)) { this.errorHandler.recoverInline(this); @@ -10061,7 +10091,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2066; + this.state = 2073; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10085,13 +10115,13 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2068; + this.state = 2075; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2069; + this.state = 2076; localContext._condition = this.expression(); - this.state = 2070; + this.state = 2077; this.match(FlinkSqlParser.KW_THEN); - this.state = 2071; + this.state = 2078; localContext._result = this.expression(); } } @@ -10115,7 +10145,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2073; + this.state = 2080; this.identifier(); } } @@ -10139,7 +10169,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2075; + this.state = 2082; this.identifier(); } } @@ -10164,16 +10194,16 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2077; + this.state = 2084; this.identifier(); - this.state = 2080; + this.state = 2087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2078; + this.state = 2085; this.match(FlinkSqlParser.DOT); - this.state = 2079; + this.state = 2086; this.identifier(); } } @@ -10201,16 +10231,16 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2082; + this.state = 2089; this.identifier(); - this.state = 2085; + this.state = 2092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2083; + this.state = 2090; this.match(FlinkSqlParser.DOT); - this.state = 2084; + this.state = 2091; this.identifier(); } } @@ -10236,35 +10266,12 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 320, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2099; + this.state = 2106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2087; - this.identifier(); - this.state = 2090; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 513) { - { - this.state = 2088; - this.match(FlinkSqlParser.DOT); - this.state = 2089; - this.identifier(); - } - } - - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2092; - this.identifier(); - this.state = 2093; - this.match(FlinkSqlParser.DOT); this.state = 2094; this.identifier(); this.state = 2097; @@ -10279,6 +10286,29 @@ export class FlinkSqlParser extends antlr.Parser { } } + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2099; + this.identifier(); + this.state = 2100; + this.match(FlinkSqlParser.DOT); + this.state = 2101; + this.identifier(); + this.state = 2104; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 513) { + { + this.state = 2102; + this.match(FlinkSqlParser.DOT); + this.state = 2103; + this.identifier(); + } + } + } break; } @@ -10301,22 +10331,22 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new TablePathContext(this.context, this.state); this.enterRule(localContext, 322, FlinkSqlParser.RULE_tablePath); try { - this.state = 2113; + this.state = 2120; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2101; + this.state = 2108; this.identifier(); - this.state = 2104; + this.state = 2111; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: { - this.state = 2102; + this.state = 2109; this.match(FlinkSqlParser.DOT); - this.state = 2103; + this.state = 2110; this.identifier(); } break; @@ -10326,20 +10356,20 @@ export class FlinkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2106; + this.state = 2113; this.identifier(); - this.state = 2107; + this.state = 2114; this.match(FlinkSqlParser.DOT); - this.state = 2108; + this.state = 2115; this.identifier(); - this.state = 2111; + this.state = 2118; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2109; + this.state = 2116; this.match(FlinkSqlParser.DOT); - this.state = 2110; + this.state = 2117; this.identifier(); } break; @@ -10366,22 +10396,22 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new ViewPathContext(this.context, this.state); this.enterRule(localContext, 324, FlinkSqlParser.RULE_viewPath); try { - this.state = 2127; + this.state = 2134; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2115; + this.state = 2122; this.identifier(); - this.state = 2118; + this.state = 2125; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2116; + this.state = 2123; this.match(FlinkSqlParser.DOT); - this.state = 2117; + this.state = 2124; this.identifier(); } break; @@ -10391,20 +10421,20 @@ export class FlinkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2120; + this.state = 2127; this.identifier(); - this.state = 2121; + this.state = 2128; this.match(FlinkSqlParser.DOT); - this.state = 2122; + this.state = 2129; this.identifier(); - this.state = 2125; + this.state = 2132; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2123; + this.state = 2130; this.match(FlinkSqlParser.DOT); - this.state = 2124; + this.state = 2131; this.identifier(); } break; @@ -10432,35 +10462,12 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 326, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2141; + this.state = 2148; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2129; - this.identifier(); - this.state = 2132; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 513) { - { - this.state = 2130; - this.match(FlinkSqlParser.DOT); - this.state = 2131; - this.identifier(); - } - } - - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2134; - this.identifier(); - this.state = 2135; - this.match(FlinkSqlParser.DOT); this.state = 2136; this.identifier(); this.state = 2139; @@ -10475,6 +10482,29 @@ export class FlinkSqlParser extends antlr.Parser { } } + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2141; + this.identifier(); + this.state = 2142; + this.match(FlinkSqlParser.DOT); + this.state = 2143; + this.identifier(); + this.state = 2146; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 513) { + { + this.state = 2144; + this.match(FlinkSqlParser.DOT); + this.state = 2145; + this.identifier(); + } + } + } break; } @@ -10500,25 +10530,25 @@ export class FlinkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2143; + this.state = 2150; this.identifier(); - this.state = 2148; + this.state = 2155; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 256, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 258, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2144; + this.state = 2151; this.match(FlinkSqlParser.DOT); - this.state = 2145; + this.state = 2152; this.identifier(); } } } - this.state = 2150; + this.state = 2157; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 256, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 258, this.context); } } } @@ -10542,9 +10572,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2151; + this.state = 2158; this.match(FlinkSqlParser.KW_WITH); - this.state = 2152; + this.state = 2159; this.tablePropertyList(); } } @@ -10568,11 +10598,11 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2154; + this.state = 2161; this.match(FlinkSqlParser.KW_IF); - this.state = 2155; + this.state = 2162; this.match(FlinkSqlParser.KW_NOT); - this.state = 2156; + this.state = 2163; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10596,9 +10626,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2158; + this.state = 2165; this.match(FlinkSqlParser.KW_IF); - this.state = 2159; + this.state = 2166; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10623,27 +10653,27 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2161; + this.state = 2168; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2162; + this.state = 2169; this.tableProperty(); - this.state = 2167; + this.state = 2174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 2163; + this.state = 2170; this.match(FlinkSqlParser.COMMA); - this.state = 2164; + this.state = 2171; this.tableProperty(); } } - this.state = 2169; + this.state = 2176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2170; + this.state = 2177; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10668,24 +10698,24 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2172; + this.state = 2179; localContext._key = this.tablePropertyKey(); - this.state = 2177; + this.state = 2184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 397 || _la === 505 || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 7) !== 0)) { { - this.state = 2174; + this.state = 2181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 505) { { - this.state = 2173; + this.state = 2180; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2176; + this.state = 2183; localContext._value = this.tablePropertyValue(); } } @@ -10710,27 +10740,27 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new TablePropertyKeyContext(this.context, this.state); this.enterRule(localContext, 340, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2182; + this.state = 2189; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2179; + this.state = 2186; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2180; + this.state = 2187; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2181; + this.state = 2188; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10754,20 +10784,20 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new TablePropertyValueContext(this.context, this.state); this.enterRule(localContext, 342, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2188; + this.state = 2195; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2184; + this.state = 2191; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2185; + this.state = 2192; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -10775,14 +10805,14 @@ export class FlinkSqlParser extends antlr.Parser { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2186; + this.state = 2193; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2187; + this.state = 2194; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10808,38 +10838,38 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new LogicalOperatorContext(this.context, this.state); this.enterRule(localContext, 344, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2196; + this.state = 2203; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2190; + this.state = 2197; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2191; + this.state = 2198; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2192; + this.state = 2199; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2193; + this.state = 2200; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2194; + this.state = 2201; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2195; + this.state = 2202; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -10865,74 +10895,74 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new ComparisonOperatorContext(this.context, this.state); this.enterRule(localContext, 346, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2212; + this.state = 2219; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2198; + this.state = 2205; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2199; + this.state = 2206; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2200; + this.state = 2207; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2201; + this.state = 2208; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2202; + this.state = 2209; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2203; + this.state = 2210; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2204; + this.state = 2211; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2205; + this.state = 2212; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2206; + this.state = 2213; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2207; + this.state = 2214; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2208; + this.state = 2215; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2209; + this.state = 2216; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2210; + this.state = 2217; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2211; + this.state = 2218; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -10956,45 +10986,45 @@ export class FlinkSqlParser extends antlr.Parser { let localContext = new BitOperatorContext(this.context, this.state); this.enterRule(localContext, 348, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2221; + this.state = 2228; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2214; + this.state = 2221; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2215; + this.state = 2222; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2216; + this.state = 2223; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2217; + this.state = 2224; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2218; + this.state = 2225; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2219; + this.state = 2226; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2220; + this.state = 2227; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11023,7 +11053,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2223; + this.state = 2230; _la = this.tokenStream.LA(1); if(!(_la === 452 || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -11055,7 +11085,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2225; + this.state = 2232; _la = this.tokenStream.LA(1); if(!(_la === 241 || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -11085,13 +11115,13 @@ export class FlinkSqlParser extends antlr.Parser { this.enterRule(localContext, 354, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2241; + this.state = 2248; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2227; + this.state = 2234; this.timeIntervalExpression(); } break; @@ -11107,14 +11137,14 @@ export class FlinkSqlParser extends antlr.Parser { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2228; + this.state = 2235; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2229; + this.state = 2236; this.stringLiteral(); } break; @@ -11122,17 +11152,17 @@ export class FlinkSqlParser extends antlr.Parser { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2231; + this.state = 2238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 529) { { - this.state = 2230; + this.state = 2237; this.match(FlinkSqlParser.HYPNEN_SIGN); } } - this.state = 2233; + this.state = 2240; this.decimalLiteral(); } break; @@ -11140,21 +11170,21 @@ export class FlinkSqlParser extends antlr.Parser { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2234; + this.state = 2241; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2235; + this.state = 2242; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2236; + this.state = 2243; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11162,17 +11192,17 @@ export class FlinkSqlParser extends antlr.Parser { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2238; + this.state = 2245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 2237; + this.state = 2244; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2240; + this.state = 2247; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11200,9 +11230,9 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2243; + this.state = 2250; this.timePointUnit(); - this.state = 2244; + this.state = 2251; this.stringLiteral(); } } @@ -11226,7 +11256,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2246; + this.state = 2253; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11250,7 +11280,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2248; + this.state = 2255; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11275,7 +11305,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2250; + this.state = 2257; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 397)) { this.errorHandler.recoverInline(this); @@ -11307,7 +11337,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2252; + this.state = 2259; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -11339,7 +11369,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2254; + this.state = 2261; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 222 || _la === 229 || _la === 334 || _la === 436 || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 262149) !== 0) || _la === 502)) { this.errorHandler.recoverInline(this); @@ -11371,7 +11401,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2256; + this.state = 2263; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 222 || _la === 229 || _la === 334 || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 140542465) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 2415983617) !== 0) || _la === 502 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11403,7 +11433,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2258; + this.state = 2265; _la = this.tokenStream.LA(1); if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || _la === 85 || _la === 113 || _la === 200 || _la === 389 || _la === 413 || _la === 527)) { this.errorHandler.recoverInline(this); @@ -11435,7 +11465,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2260; + this.state = 2267; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25232905) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 873523369) !== 0) || ((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 81921) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 537530369) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 131185) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 14681219) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 50339865) !== 0) || _la === 436 || _la === 469 || _la === 488 || _la === 502)) { this.errorHandler.recoverInline(this); @@ -11467,7 +11497,7 @@ export class FlinkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2262; + this.state = 2269; _la = this.tokenStream.LA(1); if(!(((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11495,6 +11525,8 @@ export class FlinkSqlParser extends antlr.Parser { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { + case 26: + return this.columnName_sempred(localContext as ColumnNameContext, predIndex); case 79: return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); case 89: @@ -11508,60 +11540,67 @@ export class FlinkSqlParser extends antlr.Parser { } return true; } - private queryStatement_sempred(localContext: QueryStatementContext | null, predIndex: number): boolean { + private columnName_sempred(localContext: ColumnNameContext | null, predIndex: number): boolean { switch (predIndex) { case 0: + return this.shouldMatchEmpty(); + } + return true; + } + private queryStatement_sempred(localContext: QueryStatementContext | null, predIndex: number): boolean { + switch (predIndex) { + case 1: return this.precpred(this.context, 3); } return true; } private tableExpression_sempred(localContext: TableExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 1: - return this.precpred(this.context, 3); case 2: + return this.precpred(this.context, 3); + case 3: return this.precpred(this.context, 4); } return true; } private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 3: - return this.precpred(this.context, 3); case 4: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 5: + return this.precpred(this.context, 2); + case 6: return this.precpred(this.context, 1); } return true; } private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 6: - return this.precpred(this.context, 6); case 7: - return this.precpred(this.context, 5); + return this.precpred(this.context, 6); case 8: - return this.precpred(this.context, 4); + return this.precpred(this.context, 5); case 9: - return this.precpred(this.context, 3); + return this.precpred(this.context, 4); case 10: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 11: + return this.precpred(this.context, 2); + case 12: return this.precpred(this.context, 1); } return true; } private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 12: + case 13: return this.precpred(this.context, 5); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,541,2265,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,541,2272,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -11632,896 +11671,898 @@ export class FlinkSqlParser extends antlr.Parser { 40,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,3,42,816,8,42,1,42,1, 42,1,42,1,42,1,42,1,42,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1, 45,1,45,1,46,1,46,1,46,1,46,5,46,838,8,46,10,46,12,46,841,9,46,1, - 46,1,46,1,47,1,47,1,47,1,47,1,47,1,47,5,47,851,8,47,10,47,12,47, - 854,9,47,1,47,1,47,3,47,858,8,47,1,48,1,48,3,48,862,8,48,1,49,1, - 49,1,49,1,49,5,49,868,8,49,10,49,12,49,871,9,49,1,49,3,49,874,8, - 49,1,50,1,50,1,50,1,50,3,50,880,8,50,1,51,1,51,1,51,1,51,1,51,1, - 52,1,52,1,52,3,52,890,8,52,1,52,1,52,3,52,894,8,52,1,52,1,52,1,53, - 1,53,3,53,900,8,53,1,53,1,53,3,53,904,8,53,1,53,1,53,3,53,908,8, - 53,1,53,3,53,911,8,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,920, - 8,54,1,54,1,54,3,54,924,8,54,1,54,1,54,1,54,1,54,1,54,3,54,931,8, - 54,1,54,3,54,934,8,54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,942,8,55, - 10,55,12,55,945,9,55,1,56,1,56,1,57,1,57,1,57,3,57,952,8,57,1,57, - 1,57,1,57,1,57,1,57,1,57,3,57,960,8,57,1,58,1,58,3,58,964,8,58,1, - 58,1,58,1,58,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3, - 60,979,8,60,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1, - 63,1,64,1,64,1,64,1,64,1,64,1,64,3,64,998,8,64,1,65,1,65,1,65,1, - 65,1,65,1,66,1,66,1,66,1,66,3,66,1009,8,66,1,66,1,66,3,66,1013,8, - 66,1,66,1,66,1,66,1,66,1,66,3,66,1020,8,66,1,67,1,67,1,67,3,67,1025, - 8,67,1,67,1,67,1,68,1,68,3,68,1031,8,68,1,68,1,68,3,68,1035,8,68, - 1,68,1,68,1,69,1,69,1,69,3,69,1042,8,69,1,69,1,69,3,69,1046,8,69, - 1,70,1,70,3,70,1050,8,70,1,70,1,70,3,70,1054,8,70,1,70,1,70,1,71, - 1,71,1,71,1,71,3,71,1062,8,71,1,71,1,71,3,71,1066,8,71,1,71,1,71, - 1,72,3,72,1071,8,72,1,72,1,72,1,72,1,72,3,72,1077,8,72,1,73,1,73, - 1,73,1,73,3,73,1083,8,73,1,73,3,73,1086,8,73,1,73,1,73,3,73,1090, - 8,73,1,74,1,74,1,74,1,75,1,75,1,75,1,75,5,75,1099,8,75,10,75,12, - 75,1102,9,75,1,76,1,76,1,76,1,76,5,76,1108,8,76,10,76,12,76,1111, - 9,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,4,77,1122,8,77, - 11,77,12,77,1123,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1134, - 8,78,11,78,12,78,1135,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1, - 79,1,79,1,79,1,79,1,79,3,79,1151,8,79,1,79,3,79,1154,8,79,1,79,1, - 79,3,79,1158,8,79,1,79,3,79,1161,8,79,3,79,1163,8,79,1,79,1,79,1, - 79,3,79,1168,8,79,1,79,1,79,3,79,1172,8,79,1,79,3,79,1175,8,79,5, - 79,1177,8,79,10,79,12,79,1180,9,79,1,80,1,80,1,80,1,80,5,80,1186, - 8,80,10,80,12,80,1189,9,80,1,81,1,81,1,81,1,81,5,81,1195,8,81,10, - 81,12,81,1198,9,81,1,82,1,82,1,82,1,82,1,82,5,82,1205,8,82,10,82, - 12,82,1208,9,82,1,82,1,82,3,82,1212,8,82,1,82,1,82,1,82,1,82,1,82, - 1,83,1,83,1,84,1,84,3,84,1223,8,84,1,84,3,84,1226,8,84,1,84,3,84, - 1229,8,84,1,84,3,84,1232,8,84,1,84,3,84,1235,8,84,1,84,1,84,1,84, - 1,84,3,84,1241,8,84,1,85,1,85,3,85,1245,8,85,1,85,1,85,1,85,1,85, - 5,85,1251,8,85,10,85,12,85,1254,9,85,3,85,1256,8,85,1,86,1,86,1, - 86,3,86,1261,8,86,1,86,3,86,1264,8,86,3,86,1266,8,86,1,87,1,87,1, - 87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,3,87,1280,8,87,1, - 88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,1289,8,89,10,89,12,89,1292, - 9,89,1,89,1,89,3,89,1296,8,89,1,89,1,89,1,89,1,89,1,89,1,89,3,89, - 1304,8,89,1,89,3,89,1307,8,89,1,89,3,89,1310,8,89,1,89,1,89,1,89, - 3,89,1315,8,89,5,89,1317,8,89,10,89,12,89,1320,9,89,1,90,1,90,3, - 90,1324,8,90,1,91,3,91,1327,8,91,1,91,1,91,3,91,1331,8,91,1,91,3, - 91,1334,8,91,1,91,3,91,1337,8,91,1,91,1,91,3,91,1341,8,91,1,91,3, - 91,1344,8,91,1,91,3,91,1347,8,91,1,91,1,91,1,91,1,91,1,91,1,91,1, - 91,1,91,5,91,1357,8,91,10,91,12,91,1360,9,91,1,91,1,91,1,91,1,91, - 3,91,1366,8,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,3,91, - 1377,8,91,1,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93,1,94,1,94,1,94, - 1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96,5,96, - 1402,8,96,10,96,12,96,1405,9,96,1,96,1,96,1,97,1,97,1,98,1,98,1, - 98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,3, - 98,1426,8,98,1,99,1,99,1,100,1,100,1,100,1,100,1,100,1,101,1,101, - 1,101,1,101,3,101,1439,8,101,1,102,1,102,1,102,1,103,1,103,1,103, - 1,103,1,103,5,103,1449,8,103,10,103,12,103,1452,9,103,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,5,104,1462,8,104,10,104,12,104, - 1465,9,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,5,104,1474, - 8,104,10,104,12,104,1477,9,104,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,5,104,1486,8,104,10,104,12,104,1489,9,104,1,104,1,104,3,104, - 1493,8,104,1,105,1,105,1,105,1,106,1,106,1,107,1,107,1,107,1,107, - 1,107,1,107,1,107,1,108,1,108,1,109,1,109,1,110,1,110,1,110,1,111, - 1,111,1,111,1,111,5,111,1518,8,111,10,111,12,111,1521,9,111,1,112, - 1,112,1,112,1,112,1,113,3,113,1528,8,113,1,113,1,113,3,113,1532, - 8,113,1,113,3,113,1535,8,113,1,113,3,113,1538,8,113,1,113,1,113, - 1,114,1,114,1,114,3,114,1545,8,114,1,114,3,114,1548,8,114,1,114, - 3,114,1551,8,114,1,114,3,114,1554,8,114,1,114,3,114,1557,8,114,1, - 114,3,114,1560,8,114,1,114,1,114,1,114,3,114,1565,8,114,1,114,3, - 114,1568,8,114,1,115,1,115,1,115,1,115,1,115,5,115,1575,8,115,10, - 115,12,115,1578,9,115,1,116,1,116,3,116,1582,8,116,1,116,1,116,3, - 116,1586,8,116,1,117,1,117,1,117,3,117,1591,8,117,1,118,1,118,1, - 118,1,118,1,118,5,118,1598,8,118,10,118,12,118,1601,9,118,1,119, - 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,1,119,1,119,3,119,1619,8,119,1,120,1,120,1,120,1,120, - 5,120,1625,8,120,10,120,12,120,1628,9,120,1,121,1,121,1,121,4,121, - 1633,8,121,11,121,12,121,1634,1,121,1,121,3,121,1639,8,121,1,122, - 1,122,3,122,1643,8,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,3,123,1653,8,123,1,124,1,124,1,124,1,124,1,124,1,124,1,124, + 46,1,46,1,47,1,47,1,47,1,47,1,47,5,47,850,8,47,10,47,12,47,853,9, + 47,1,47,1,47,3,47,857,8,47,1,48,1,48,3,48,861,8,48,1,49,1,49,1,49, + 1,49,5,49,867,8,49,10,49,12,49,870,9,49,1,49,3,49,873,8,49,1,50, + 1,50,1,50,1,50,3,50,879,8,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52, + 1,52,3,52,889,8,52,1,52,1,52,3,52,893,8,52,1,52,1,52,1,53,1,53,3, + 53,899,8,53,1,53,1,53,3,53,903,8,53,1,53,1,53,3,53,907,8,53,1,53, + 3,53,910,8,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,919,8,54,1, + 54,1,54,3,54,923,8,54,1,54,1,54,1,54,1,54,1,54,3,54,930,8,54,1,54, + 3,54,933,8,54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,941,8,55,10,55, + 12,55,944,9,55,1,56,1,56,1,57,1,57,1,57,3,57,951,8,57,1,57,1,57, + 1,57,1,57,1,57,1,57,3,57,959,8,57,1,58,1,58,3,58,963,8,58,1,58,1, + 58,1,58,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,978, + 8,60,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,64, + 1,64,1,64,1,64,1,64,1,64,3,64,997,8,64,1,65,1,65,1,65,1,65,1,65, + 1,66,1,66,1,66,1,66,3,66,1008,8,66,1,66,1,66,3,66,1012,8,66,1,66, + 1,66,1,66,1,66,1,66,3,66,1019,8,66,1,67,1,67,1,67,3,67,1024,8,67, + 1,67,1,67,1,68,1,68,3,68,1030,8,68,1,68,1,68,3,68,1034,8,68,1,68, + 1,68,1,69,1,69,1,69,3,69,1041,8,69,1,69,1,69,3,69,1045,8,69,1,70, + 1,70,3,70,1049,8,70,1,70,1,70,3,70,1053,8,70,1,70,1,70,1,71,1,71, + 1,71,1,71,3,71,1061,8,71,1,71,1,71,3,71,1065,8,71,1,71,1,71,1,72, + 3,72,1070,8,72,1,72,1,72,1,72,1,72,3,72,1076,8,72,1,73,1,73,1,73, + 1,73,3,73,1082,8,73,1,73,3,73,1085,8,73,1,73,1,73,3,73,1089,8,73, + 1,74,1,74,1,74,1,75,1,75,1,75,1,75,5,75,1098,8,75,10,75,12,75,1101, + 9,75,1,76,1,76,1,76,1,76,5,76,1107,8,76,10,76,12,76,1110,9,76,1, + 76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,4,77,1121,8,77,11,77, + 12,77,1122,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1133,8,78, + 11,78,12,78,1134,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1, + 79,1,79,1,79,1,79,3,79,1150,8,79,1,79,3,79,1153,8,79,1,79,1,79,3, + 79,1157,8,79,1,79,3,79,1160,8,79,3,79,1162,8,79,1,79,1,79,1,79,3, + 79,1167,8,79,1,79,1,79,3,79,1171,8,79,1,79,3,79,1174,8,79,5,79,1176, + 8,79,10,79,12,79,1179,9,79,1,80,1,80,1,80,1,80,5,80,1185,8,80,10, + 80,12,80,1188,9,80,1,81,1,81,1,81,1,81,5,81,1194,8,81,10,81,12,81, + 1197,9,81,1,82,1,82,1,82,1,82,1,82,5,82,1204,8,82,10,82,12,82,1207, + 9,82,1,82,1,82,3,82,1211,8,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83, + 1,84,1,84,3,84,1222,8,84,1,84,3,84,1225,8,84,1,84,3,84,1228,8,84, + 1,84,3,84,1231,8,84,1,84,3,84,1234,8,84,1,84,1,84,1,84,1,84,3,84, + 1240,8,84,1,85,1,85,3,85,1244,8,85,1,85,1,85,1,85,1,85,5,85,1250, + 8,85,10,85,12,85,1253,9,85,3,85,1255,8,85,1,86,1,86,1,86,3,86,1260, + 8,86,1,86,3,86,1263,8,86,1,86,1,86,3,86,1267,8,86,1,86,3,86,1270, + 8,86,3,86,1272,8,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87, + 1,87,1,87,1,87,3,87,1286,8,87,1,88,1,88,1,88,1,89,1,89,1,89,1,89, + 5,89,1295,8,89,10,89,12,89,1298,9,89,1,89,1,89,3,89,1302,8,89,1, + 89,1,89,1,89,1,89,1,89,1,89,3,89,1310,8,89,1,89,3,89,1313,8,89,1, + 89,3,89,1316,8,89,1,89,1,89,1,89,3,89,1321,8,89,5,89,1323,8,89,10, + 89,12,89,1326,9,89,1,90,1,90,3,90,1330,8,90,1,91,3,91,1333,8,91, + 1,91,1,91,3,91,1337,8,91,1,91,3,91,1340,8,91,1,91,3,91,1343,8,91, + 1,91,1,91,3,91,1347,8,91,1,91,3,91,1350,8,91,1,91,3,91,1353,8,91, + 1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,5,91,1363,8,91,10,91,12, + 91,1366,9,91,1,91,1,91,1,91,1,91,3,91,1372,8,91,1,91,1,91,1,91,1, + 91,1,91,1,91,1,91,1,91,1,91,3,91,1383,8,91,1,92,1,92,1,92,1,92,1, + 92,1,92,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1, + 95,1,96,1,96,1,96,1,96,1,96,5,96,1408,8,96,10,96,12,96,1411,9,96, + 1,96,1,96,1,97,1,97,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98, + 1,98,1,98,1,98,1,98,1,98,1,98,3,98,1432,8,98,1,99,1,99,1,100,1,100, + 1,100,1,100,1,100,1,101,1,101,1,101,1,101,3,101,1445,8,101,1,102, + 1,102,1,102,1,103,1,103,1,103,1,103,1,103,5,103,1455,8,103,10,103, + 12,103,1458,9,103,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, + 5,104,1468,8,104,10,104,12,104,1471,9,104,1,104,1,104,1,104,1,104, + 1,104,1,104,1,104,5,104,1480,8,104,10,104,12,104,1483,9,104,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,5,104,1492,8,104,10,104,12,104, + 1495,9,104,1,104,1,104,1,104,3,104,1500,8,104,1,105,1,105,1,105, + 1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,108,1,108, + 1,109,1,109,1,110,1,110,1,110,1,111,1,111,1,111,1,111,5,111,1525, + 8,111,10,111,12,111,1528,9,111,1,112,1,112,1,112,1,112,1,113,3,113, + 1535,8,113,1,113,1,113,3,113,1539,8,113,1,113,3,113,1542,8,113,1, + 113,3,113,1545,8,113,1,113,1,113,1,114,1,114,1,114,3,114,1552,8, + 114,1,114,3,114,1555,8,114,1,114,3,114,1558,8,114,1,114,3,114,1561, + 8,114,1,114,3,114,1564,8,114,1,114,3,114,1567,8,114,1,114,1,114, + 1,114,3,114,1572,8,114,1,114,3,114,1575,8,114,1,115,1,115,1,115, + 1,115,1,115,5,115,1582,8,115,10,115,12,115,1585,9,115,1,116,1,116, + 3,116,1589,8,116,1,116,1,116,3,116,1593,8,116,1,117,1,117,1,117, + 3,117,1598,8,117,1,118,1,118,1,118,1,118,1,118,5,118,1605,8,118, + 10,118,12,118,1608,9,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,1626, + 8,119,1,120,1,120,1,120,1,120,5,120,1632,8,120,10,120,12,120,1635, + 9,120,1,121,1,121,1,121,4,121,1640,8,121,11,121,12,121,1641,1,121, + 1,121,3,121,1646,8,121,1,122,1,122,3,122,1650,8,122,1,123,1,123, + 1,123,1,123,1,123,1,123,1,123,1,123,3,123,1660,8,123,1,124,1,124, 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,3,124,1679,8,124,1,125,1,125, - 1,125,1,125,5,125,1685,8,125,10,125,12,125,1688,9,125,1,126,1,126, - 1,126,1,126,1,126,1,126,1,126,1,126,1,126,3,126,1699,8,126,1,127, - 1,127,1,127,1,127,1,127,1,128,1,128,1,128,1,129,1,129,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130,1721,8,130, - 3,130,1723,8,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, - 1,130,3,130,1734,8,130,1,130,5,130,1737,8,130,10,130,12,130,1740, - 9,130,1,131,3,131,1743,8,131,1,131,1,131,3,131,1747,8,131,1,131, - 1,131,1,131,1,131,1,131,3,131,1754,8,131,1,131,1,131,1,131,1,131, - 1,131,5,131,1761,8,131,10,131,12,131,1764,9,131,1,131,1,131,1,131, - 3,131,1769,8,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,3,131,1782,8,131,1,131,1,131,1,131,1,131,1,131, - 3,131,1789,8,131,1,131,1,131,1,131,3,131,1794,8,131,1,131,1,131, - 1,131,1,131,3,131,1800,8,131,1,131,1,131,1,131,1,131,1,131,3,131, - 1807,8,131,3,131,1809,8,131,1,132,3,132,1812,8,132,1,132,1,132,1, - 132,1,132,1,132,1,132,1,132,1,132,5,132,1822,8,132,10,132,12,132, - 1825,9,132,1,132,1,132,3,132,1829,8,132,1,132,3,132,1832,8,132,1, - 132,1,132,1,132,1,132,3,132,1838,8,132,3,132,1840,8,132,1,133,1, - 133,1,133,1,133,3,133,1846,8,133,1,133,1,133,1,133,1,133,1,133,1, - 133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,5,133,1867,8,133,10,133,12,133,1870,9,133,1,134, - 1,134,1,134,4,134,1875,8,134,11,134,12,134,1876,1,134,1,134,3,134, - 1881,8,134,1,134,1,134,1,134,1,134,1,134,4,134,1888,8,134,11,134, - 12,134,1889,1,134,1,134,3,134,1894,8,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,3,134, - 1910,8,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,3,134,1919, + 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, + 3,124,1686,8,124,1,125,1,125,1,125,1,125,5,125,1692,8,125,10,125, + 12,125,1695,9,125,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126, + 1,126,3,126,1706,8,126,1,127,1,127,1,127,1,127,1,127,1,128,1,128, + 1,128,1,129,1,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, + 1,130,1,130,3,130,1728,8,130,3,130,1730,8,130,1,130,1,130,1,130, + 1,130,1,130,1,130,1,130,1,130,1,130,3,130,1741,8,130,1,130,5,130, + 1744,8,130,10,130,12,130,1747,9,130,1,131,3,131,1750,8,131,1,131, + 1,131,3,131,1754,8,131,1,131,1,131,1,131,1,131,1,131,3,131,1761, + 8,131,1,131,1,131,1,131,1,131,1,131,5,131,1768,8,131,10,131,12,131, + 1771,9,131,1,131,1,131,1,131,3,131,1776,8,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131,1789,8,131, + 1,131,1,131,1,131,1,131,1,131,3,131,1796,8,131,1,131,1,131,1,131, + 3,131,1801,8,131,1,131,1,131,1,131,1,131,3,131,1807,8,131,1,131, + 1,131,1,131,1,131,1,131,3,131,1814,8,131,3,131,1816,8,131,1,132, + 3,132,1819,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 5,132,1829,8,132,10,132,12,132,1832,9,132,1,132,1,132,3,132,1836, + 8,132,1,132,3,132,1839,8,132,1,132,1,132,1,132,1,132,3,132,1845, + 8,132,3,132,1847,8,132,1,133,1,133,1,133,1,133,3,133,1853,8,133, + 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, + 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1874,8,133, + 10,133,12,133,1877,9,133,1,134,1,134,1,134,4,134,1882,8,134,11,134, + 12,134,1883,1,134,1,134,3,134,1888,8,134,1,134,1,134,1,134,1,134, + 1,134,4,134,1895,8,134,11,134,12,134,1896,1,134,1,134,3,134,1901, 8,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,3,134,1917,8,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,3,134,1926,8,134,1,134,1,134,1,134,1,134,1,134, 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,3,134,1943,8,134,1,134,1,134,1,134,5,134,1948,8,134,10,134, - 12,134,1951,9,134,3,134,1953,8,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,3,134,1964,8,134,1,134,1,134,1,134,1,134, - 1,134,5,134,1971,8,134,10,134,12,134,1974,9,134,1,135,1,135,1,136, - 1,136,3,136,1980,8,136,1,137,1,137,1,137,1,137,3,137,1986,8,137, - 1,138,1,138,1,139,1,139,1,140,1,140,3,140,1994,8,140,1,141,1,141, - 1,141,3,141,1999,8,141,1,142,1,142,3,142,2003,8,142,1,143,1,143, - 1,143,4,143,2008,8,143,11,143,12,143,2009,1,144,1,144,1,144,3,144, - 2015,8,144,1,145,1,145,1,145,1,145,1,145,1,146,3,146,2023,8,146, - 1,146,1,146,3,146,2027,8,146,1,147,3,147,2030,8,147,1,147,1,147, - 3,147,2034,8,147,1,148,1,148,1,148,1,149,1,149,4,149,2041,8,149, - 11,149,12,149,2042,1,149,3,149,2046,8,149,1,150,1,150,1,150,1,150, - 1,151,1,151,1,151,5,151,2055,8,151,10,151,12,151,2058,9,151,1,152, - 1,152,1,152,3,152,2063,8,152,1,153,1,153,1,154,1,154,1,155,1,155, - 1,155,1,155,1,155,1,156,1,156,1,157,1,157,1,158,1,158,1,158,3,158, - 2081,8,158,1,159,1,159,1,159,3,159,2086,8,159,1,160,1,160,1,160, - 3,160,2091,8,160,1,160,1,160,1,160,1,160,1,160,3,160,2098,8,160, - 3,160,2100,8,160,1,161,1,161,1,161,3,161,2105,8,161,1,161,1,161, - 1,161,1,161,1,161,3,161,2112,8,161,3,161,2114,8,161,1,162,1,162, - 1,162,3,162,2119,8,162,1,162,1,162,1,162,1,162,1,162,3,162,2126, - 8,162,3,162,2128,8,162,1,163,1,163,1,163,3,163,2133,8,163,1,163, - 1,163,1,163,1,163,1,163,3,163,2140,8,163,3,163,2142,8,163,1,164, - 1,164,1,164,5,164,2147,8,164,10,164,12,164,2150,9,164,1,165,1,165, - 1,165,1,166,1,166,1,166,1,166,1,167,1,167,1,167,1,168,1,168,1,168, - 1,168,5,168,2166,8,168,10,168,12,168,2169,9,168,1,168,1,168,1,169, - 1,169,3,169,2175,8,169,1,169,3,169,2178,8,169,1,170,1,170,1,170, - 3,170,2183,8,170,1,171,1,171,1,171,1,171,3,171,2189,8,171,1,172, - 1,172,1,172,1,172,1,172,1,172,3,172,2197,8,172,1,173,1,173,1,173, - 1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, - 3,173,2213,8,173,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174, - 2222,8,174,1,175,1,175,1,176,1,176,1,177,1,177,1,177,1,177,3,177, - 2232,8,177,1,177,1,177,1,177,1,177,1,177,3,177,2239,8,177,1,177, - 3,177,2242,8,177,1,178,1,178,1,178,1,179,1,179,1,180,1,180,1,181, - 1,181,1,182,1,182,1,183,1,183,1,184,1,184,1,185,1,185,1,186,1,186, - 1,187,1,187,1,187,1,2148,5,158,178,260,266,268,188,0,2,4,6,8,10, - 12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54, - 56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98, - 100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130, - 132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162, - 164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194, - 196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226, - 228,230,232,234,236,238,240,242,244,246,248,250,252,254,256,258, - 260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290, - 292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322, - 324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354, - 356,358,360,362,364,366,368,370,372,374,0,45,2,0,109,109,450,450, - 3,0,45,45,128,128,188,188,4,0,42,42,90,90,422,422,464,464,2,0,441, - 441,447,447,2,0,151,151,170,170,2,0,437,437,489,489,2,0,482,485, - 487,487,3,0,32,32,91,91,244,244,11,0,28,29,35,35,46,46,92,92,178, - 179,344,344,360,360,378,378,381,381,387,387,416,417,2,0,433,433, - 435,435,4,0,101,102,115,115,144,144,246,246,2,0,13,13,231,231,2, - 0,455,455,462,462,3,0,5,5,270,270,444,444,3,0,266,266,455,455,462, - 462,3,0,425,425,458,458,477,477,3,0,330,330,465,465,481,481,2,0, - 440,440,490,490,2,0,183,183,265,265,3,0,130,130,180,180,402,402, - 4,0,152,152,174,174,201,201,317,317,3,0,445,445,459,459,499,499, - 4,0,250,250,446,446,494,496,498,498,2,0,74,74,320,320,3,0,459,459, - 492,492,499,499,2,0,439,439,450,450,2,0,457,457,467,467,4,0,140, - 140,244,244,397,397,404,404,2,0,19,19,369,369,2,0,5,5,11,11,2,0, - 509,509,529,530,4,0,452,452,527,527,531,531,534,534,2,0,529,530, - 532,532,1,0,529,530,1,0,538,539,2,0,538,538,541,541,4,0,452,452, - 527,527,529,531,533,534,3,0,241,241,508,509,529,530,2,0,140,140, - 397,397,2,0,5,5,113,113,10,0,97,97,165,165,222,222,229,229,334,334, - 436,436,470,470,472,472,488,488,502,502,15,0,97,97,165,165,222,222, - 229,229,334,334,427,427,436,436,442,442,448,449,454,454,460,460, - 470,475,488,488,491,491,502,503,9,0,5,5,13,13,33,33,85,85,113,113, - 200,200,389,389,413,413,527,527,55,0,4,4,13,13,23,23,38,38,41,41, - 43,44,54,54,56,56,69,69,75,75,78,78,84,85,91,91,98,99,107,107,119, - 119,134,134,139,139,143,143,145,145,160,160,165,165,167,167,194, - 194,197,197,199,199,201,201,205,205,207,209,214,214,220,220,222, - 223,229,229,243,243,245,245,264,264,276,276,281,281,283,283,293, - 293,317,317,321,323,334,334,357,358,364,364,367,367,378,380,395, - 395,398,399,408,408,419,420,436,436,469,469,488,488,502,502,1,0, - 437,504,2465,0,379,1,0,0,0,2,389,1,0,0,0,4,403,1,0,0,0,6,405,1,0, - 0,0,8,421,1,0,0,0,10,425,1,0,0,0,12,427,1,0,0,0,14,430,1,0,0,0,16, - 441,1,0,0,0,18,449,1,0,0,0,20,457,1,0,0,0,22,459,1,0,0,0,24,511, - 1,0,0,0,26,513,1,0,0,0,28,520,1,0,0,0,30,524,1,0,0,0,32,528,1,0, - 0,0,34,532,1,0,0,0,36,586,1,0,0,0,38,592,1,0,0,0,40,598,1,0,0,0, - 42,600,1,0,0,0,44,641,1,0,0,0,46,655,1,0,0,0,48,657,1,0,0,0,50,667, - 1,0,0,0,52,671,1,0,0,0,54,673,1,0,0,0,56,721,1,0,0,0,58,723,1,0, - 0,0,60,727,1,0,0,0,62,735,1,0,0,0,64,743,1,0,0,0,66,747,1,0,0,0, - 68,754,1,0,0,0,70,782,1,0,0,0,72,784,1,0,0,0,74,787,1,0,0,0,76,797, - 1,0,0,0,78,799,1,0,0,0,80,805,1,0,0,0,82,807,1,0,0,0,84,815,1,0, - 0,0,86,823,1,0,0,0,88,825,1,0,0,0,90,829,1,0,0,0,92,833,1,0,0,0, - 94,857,1,0,0,0,96,861,1,0,0,0,98,863,1,0,0,0,100,879,1,0,0,0,102, - 881,1,0,0,0,104,886,1,0,0,0,106,897,1,0,0,0,108,915,1,0,0,0,110, - 935,1,0,0,0,112,946,1,0,0,0,114,948,1,0,0,0,116,961,1,0,0,0,118, - 968,1,0,0,0,120,971,1,0,0,0,122,980,1,0,0,0,124,984,1,0,0,0,126, - 988,1,0,0,0,128,991,1,0,0,0,130,999,1,0,0,0,132,1004,1,0,0,0,134, - 1021,1,0,0,0,136,1028,1,0,0,0,138,1038,1,0,0,0,140,1047,1,0,0,0, - 142,1057,1,0,0,0,144,1076,1,0,0,0,146,1078,1,0,0,0,148,1091,1,0, - 0,0,150,1094,1,0,0,0,152,1103,1,0,0,0,154,1114,1,0,0,0,156,1127, - 1,0,0,0,158,1162,1,0,0,0,160,1181,1,0,0,0,162,1190,1,0,0,0,164,1199, - 1,0,0,0,166,1218,1,0,0,0,168,1240,1,0,0,0,170,1242,1,0,0,0,172,1265, - 1,0,0,0,174,1279,1,0,0,0,176,1281,1,0,0,0,178,1295,1,0,0,0,180,1321, - 1,0,0,0,182,1376,1,0,0,0,184,1378,1,0,0,0,186,1384,1,0,0,0,188,1386, - 1,0,0,0,190,1391,1,0,0,0,192,1396,1,0,0,0,194,1408,1,0,0,0,196,1425, - 1,0,0,0,198,1427,1,0,0,0,200,1429,1,0,0,0,202,1438,1,0,0,0,204,1440, - 1,0,0,0,206,1443,1,0,0,0,208,1492,1,0,0,0,210,1494,1,0,0,0,212,1497, - 1,0,0,0,214,1499,1,0,0,0,216,1506,1,0,0,0,218,1508,1,0,0,0,220,1510, - 1,0,0,0,222,1513,1,0,0,0,224,1522,1,0,0,0,226,1527,1,0,0,0,228,1541, - 1,0,0,0,230,1569,1,0,0,0,232,1579,1,0,0,0,234,1587,1,0,0,0,236,1592, - 1,0,0,0,238,1618,1,0,0,0,240,1620,1,0,0,0,242,1629,1,0,0,0,244,1640, - 1,0,0,0,246,1652,1,0,0,0,248,1678,1,0,0,0,250,1680,1,0,0,0,252,1698, - 1,0,0,0,254,1700,1,0,0,0,256,1705,1,0,0,0,258,1708,1,0,0,0,260,1722, - 1,0,0,0,262,1808,1,0,0,0,264,1839,1,0,0,0,266,1845,1,0,0,0,268,1963, - 1,0,0,0,270,1975,1,0,0,0,272,1979,1,0,0,0,274,1985,1,0,0,0,276,1987, - 1,0,0,0,278,1989,1,0,0,0,280,1993,1,0,0,0,282,1995,1,0,0,0,284,2000, - 1,0,0,0,286,2007,1,0,0,0,288,2011,1,0,0,0,290,2016,1,0,0,0,292,2026, - 1,0,0,0,294,2029,1,0,0,0,296,2035,1,0,0,0,298,2045,1,0,0,0,300,2047, - 1,0,0,0,302,2051,1,0,0,0,304,2062,1,0,0,0,306,2064,1,0,0,0,308,2066, - 1,0,0,0,310,2068,1,0,0,0,312,2073,1,0,0,0,314,2075,1,0,0,0,316,2077, - 1,0,0,0,318,2082,1,0,0,0,320,2099,1,0,0,0,322,2113,1,0,0,0,324,2127, - 1,0,0,0,326,2141,1,0,0,0,328,2143,1,0,0,0,330,2151,1,0,0,0,332,2154, - 1,0,0,0,334,2158,1,0,0,0,336,2161,1,0,0,0,338,2172,1,0,0,0,340,2182, - 1,0,0,0,342,2188,1,0,0,0,344,2196,1,0,0,0,346,2212,1,0,0,0,348,2221, - 1,0,0,0,350,2223,1,0,0,0,352,2225,1,0,0,0,354,2241,1,0,0,0,356,2243, - 1,0,0,0,358,2246,1,0,0,0,360,2248,1,0,0,0,362,2250,1,0,0,0,364,2252, - 1,0,0,0,366,2254,1,0,0,0,368,2256,1,0,0,0,370,2258,1,0,0,0,372,2260, - 1,0,0,0,374,2262,1,0,0,0,376,378,3,2,1,0,377,376,1,0,0,0,378,381, - 1,0,0,0,379,377,1,0,0,0,379,380,1,0,0,0,380,382,1,0,0,0,381,379, - 1,0,0,0,382,383,5,0,0,1,383,1,1,0,0,0,384,386,3,4,2,0,385,387,5, - 521,0,0,386,385,1,0,0,0,386,387,1,0,0,0,387,390,1,0,0,0,388,390, - 3,6,3,0,389,384,1,0,0,0,389,388,1,0,0,0,390,3,1,0,0,0,391,404,3, - 8,4,0,392,404,3,10,5,0,393,404,3,12,6,0,394,404,3,14,7,0,395,404, - 3,20,10,0,396,404,3,24,12,0,397,404,3,26,13,0,398,404,3,28,14,0, - 399,404,3,30,15,0,400,404,3,32,16,0,401,404,3,34,17,0,402,404,3, - 36,18,0,403,391,1,0,0,0,403,392,1,0,0,0,403,393,1,0,0,0,403,394, - 1,0,0,0,403,395,1,0,0,0,403,396,1,0,0,0,403,397,1,0,0,0,403,398, - 1,0,0,0,403,399,1,0,0,0,403,400,1,0,0,0,403,401,1,0,0,0,403,402, - 1,0,0,0,404,5,1,0,0,0,405,406,5,521,0,0,406,7,1,0,0,0,407,422,3, - 40,20,0,408,422,3,104,52,0,409,422,3,106,53,0,410,422,3,108,54,0, - 411,422,3,102,51,0,412,422,3,114,57,0,413,422,3,128,64,0,414,422, - 3,130,65,0,415,422,3,132,66,0,416,422,3,134,67,0,417,422,3,136,68, - 0,418,422,3,138,69,0,419,422,3,140,70,0,420,422,3,142,71,0,421,407, - 1,0,0,0,421,408,1,0,0,0,421,409,1,0,0,0,421,410,1,0,0,0,421,411, - 1,0,0,0,421,412,1,0,0,0,421,413,1,0,0,0,421,414,1,0,0,0,421,415, - 1,0,0,0,421,416,1,0,0,0,421,417,1,0,0,0,421,418,1,0,0,0,421,419, - 1,0,0,0,421,420,1,0,0,0,422,9,1,0,0,0,423,426,3,158,79,0,424,426, - 3,144,72,0,425,423,1,0,0,0,425,424,1,0,0,0,426,11,1,0,0,0,427,428, - 7,0,0,0,428,429,3,322,161,0,429,13,1,0,0,0,430,434,5,135,0,0,431, - 435,3,16,8,0,432,433,5,479,0,0,433,435,5,146,0,0,434,431,1,0,0,0, - 434,432,1,0,0,0,434,435,1,0,0,0,435,439,1,0,0,0,436,440,3,10,5,0, - 437,440,3,146,73,0,438,440,3,156,78,0,439,436,1,0,0,0,439,437,1, - 0,0,0,439,438,1,0,0,0,440,15,1,0,0,0,441,446,3,18,9,0,442,443,5, - 520,0,0,443,445,3,18,9,0,444,442,1,0,0,0,445,448,1,0,0,0,446,444, - 1,0,0,0,446,447,1,0,0,0,447,17,1,0,0,0,448,446,1,0,0,0,449,450,7, - 1,0,0,450,19,1,0,0,0,451,452,5,410,0,0,452,453,5,441,0,0,453,458, - 3,312,156,0,454,455,5,410,0,0,455,458,3,316,158,0,456,458,3,22,11, - 0,457,451,1,0,0,0,457,454,1,0,0,0,457,456,1,0,0,0,458,21,1,0,0,0, - 459,460,5,410,0,0,460,461,5,227,0,0,461,466,3,328,164,0,462,463, - 5,520,0,0,463,465,3,328,164,0,464,462,1,0,0,0,465,468,1,0,0,0,466, - 464,1,0,0,0,466,467,1,0,0,0,467,23,1,0,0,0,468,466,1,0,0,0,469,470, - 5,341,0,0,470,512,7,2,0,0,471,472,5,341,0,0,472,473,5,76,0,0,473, - 512,7,3,0,0,474,475,5,341,0,0,475,478,5,374,0,0,476,477,7,4,0,0, - 477,479,3,316,158,0,478,476,1,0,0,0,478,479,1,0,0,0,479,481,1,0, - 0,0,480,482,3,264,132,0,481,480,1,0,0,0,481,482,1,0,0,0,482,512, - 1,0,0,0,483,484,5,341,0,0,484,485,5,58,0,0,485,488,7,4,0,0,486,489, - 3,324,162,0,487,489,3,322,161,0,488,486,1,0,0,0,488,487,1,0,0,0, - 489,491,1,0,0,0,490,492,3,264,132,0,491,490,1,0,0,0,491,492,1,0, - 0,0,492,512,1,0,0,0,493,494,5,341,0,0,494,499,5,72,0,0,495,496,5, - 373,0,0,496,500,3,322,161,0,497,498,5,501,0,0,498,500,3,324,162, - 0,499,495,1,0,0,0,499,497,1,0,0,0,500,512,1,0,0,0,501,503,5,341, - 0,0,502,504,5,411,0,0,503,502,1,0,0,0,503,504,1,0,0,0,504,505,1, - 0,0,0,505,512,5,154,0,0,506,508,5,341,0,0,507,509,5,152,0,0,508, - 507,1,0,0,0,508,509,1,0,0,0,509,510,1,0,0,0,510,512,5,227,0,0,511, - 469,1,0,0,0,511,471,1,0,0,0,511,474,1,0,0,0,511,483,1,0,0,0,511, - 493,1,0,0,0,511,501,1,0,0,0,511,506,1,0,0,0,512,25,1,0,0,0,513,514, - 5,468,0,0,514,515,5,226,0,0,515,518,3,328,164,0,516,517,5,433,0, - 0,517,519,3,336,168,0,518,516,1,0,0,0,518,519,1,0,0,0,519,27,1,0, - 0,0,520,521,5,500,0,0,521,522,5,226,0,0,522,523,3,328,164,0,523, - 29,1,0,0,0,524,526,5,340,0,0,525,527,3,338,169,0,526,525,1,0,0,0, - 526,527,1,0,0,0,527,31,1,0,0,0,528,530,5,312,0,0,529,531,3,340,170, - 0,530,529,1,0,0,0,530,531,1,0,0,0,531,33,1,0,0,0,532,533,7,5,0,0, - 533,534,5,463,0,0,534,535,3,112,56,0,535,35,1,0,0,0,536,537,5,437, - 0,0,537,538,5,463,0,0,538,539,5,433,0,0,539,542,3,38,19,0,540,541, - 5,17,0,0,541,543,3,328,164,0,542,540,1,0,0,0,542,543,1,0,0,0,543, - 587,1,0,0,0,544,545,5,437,0,0,545,546,5,456,0,0,546,547,5,433,0, - 0,547,550,3,38,19,0,548,549,5,17,0,0,549,551,3,328,164,0,550,548, - 1,0,0,0,550,551,1,0,0,0,551,554,1,0,0,0,552,553,5,311,0,0,553,555, - 3,328,164,0,554,552,1,0,0,0,554,555,1,0,0,0,555,587,1,0,0,0,556, - 557,5,437,0,0,557,558,7,6,0,0,558,559,5,433,0,0,559,560,3,38,19, - 0,560,561,5,311,0,0,561,562,3,328,164,0,562,587,1,0,0,0,563,564, - 5,437,0,0,564,565,5,486,0,0,565,587,3,38,19,0,566,567,5,437,0,0, - 567,568,5,453,0,0,568,569,5,456,0,0,569,570,5,433,0,0,570,571,3, - 38,19,0,571,572,5,311,0,0,572,573,3,328,164,0,573,574,5,466,0,0, - 574,575,3,328,164,0,575,587,1,0,0,0,576,577,5,437,0,0,577,578,5, - 443,0,0,578,579,5,456,0,0,579,580,5,433,0,0,580,581,3,38,19,0,581, - 582,5,146,0,0,582,583,3,328,164,0,583,584,5,17,0,0,584,585,3,328, - 164,0,585,587,1,0,0,0,586,536,1,0,0,0,586,544,1,0,0,0,586,556,1, - 0,0,0,586,563,1,0,0,0,586,566,1,0,0,0,586,576,1,0,0,0,587,37,1,0, - 0,0,588,590,5,534,0,0,589,588,1,0,0,0,589,590,1,0,0,0,590,591,1, - 0,0,0,591,593,3,328,164,0,592,589,1,0,0,0,593,594,1,0,0,0,594,592, - 1,0,0,0,594,595,1,0,0,0,595,39,1,0,0,0,596,599,3,42,21,0,597,599, - 3,44,22,0,598,596,1,0,0,0,598,597,1,0,0,0,599,41,1,0,0,0,600,602, - 5,72,0,0,601,603,5,497,0,0,602,601,1,0,0,0,602,603,1,0,0,0,603,604, - 1,0,0,0,604,606,5,373,0,0,605,607,3,332,166,0,606,605,1,0,0,0,606, - 607,1,0,0,0,607,608,1,0,0,0,608,609,3,320,160,0,609,610,5,516,0, - 0,610,615,3,46,23,0,611,612,5,520,0,0,612,614,3,46,23,0,613,611, - 1,0,0,0,614,617,1,0,0,0,615,613,1,0,0,0,615,616,1,0,0,0,616,620, - 1,0,0,0,617,615,1,0,0,0,618,619,5,520,0,0,619,621,3,82,41,0,620, - 618,1,0,0,0,620,621,1,0,0,0,621,624,1,0,0,0,622,623,5,520,0,0,623, - 625,3,84,42,0,624,622,1,0,0,0,624,625,1,0,0,0,625,628,1,0,0,0,626, - 627,5,520,0,0,627,629,3,88,44,0,628,626,1,0,0,0,628,629,1,0,0,0, - 629,630,1,0,0,0,630,632,5,517,0,0,631,633,3,72,36,0,632,631,1,0, - 0,0,632,633,1,0,0,0,633,635,1,0,0,0,634,636,3,90,45,0,635,634,1, - 0,0,0,635,636,1,0,0,0,636,637,1,0,0,0,637,639,3,330,165,0,638,640, - 3,98,49,0,639,638,1,0,0,0,639,640,1,0,0,0,640,43,1,0,0,0,641,642, - 5,72,0,0,642,644,5,373,0,0,643,645,3,332,166,0,644,643,1,0,0,0,644, - 645,1,0,0,0,645,646,1,0,0,0,646,647,3,320,160,0,647,650,3,330,165, - 0,648,649,5,17,0,0,649,651,3,158,79,0,650,648,1,0,0,0,650,651,1, - 0,0,0,651,45,1,0,0,0,652,656,3,48,24,0,653,656,3,74,37,0,654,656, - 3,78,39,0,655,652,1,0,0,0,655,653,1,0,0,0,655,654,1,0,0,0,656,47, - 1,0,0,0,657,658,3,50,25,0,658,660,3,56,28,0,659,661,3,70,35,0,660, - 659,1,0,0,0,660,661,1,0,0,0,661,663,1,0,0,0,662,664,3,72,36,0,663, - 662,1,0,0,0,663,664,1,0,0,0,664,49,1,0,0,0,665,668,3,328,164,0,666, - 668,3,258,129,0,667,665,1,0,0,0,667,666,1,0,0,0,668,51,1,0,0,0,669, - 672,3,328,164,0,670,672,3,258,129,0,671,669,1,0,0,0,671,670,1,0, - 0,0,672,53,1,0,0,0,673,674,5,516,0,0,674,679,3,52,26,0,675,676,5, - 520,0,0,676,678,3,52,26,0,677,675,1,0,0,0,678,681,1,0,0,0,679,677, - 1,0,0,0,679,680,1,0,0,0,680,682,1,0,0,0,681,679,1,0,0,0,682,683, - 5,517,0,0,683,55,1,0,0,0,684,722,7,7,0,0,685,687,7,8,0,0,686,688, - 3,58,29,0,687,686,1,0,0,0,687,688,1,0,0,0,688,722,1,0,0,0,689,691, - 5,379,0,0,690,692,3,58,29,0,691,690,1,0,0,0,691,692,1,0,0,0,692, - 699,1,0,0,0,693,695,7,9,0,0,694,696,5,206,0,0,695,694,1,0,0,0,695, - 696,1,0,0,0,696,697,1,0,0,0,697,698,5,378,0,0,698,700,5,504,0,0, - 699,693,1,0,0,0,699,700,1,0,0,0,700,722,1,0,0,0,701,703,7,10,0,0, - 702,704,3,60,30,0,703,702,1,0,0,0,703,704,1,0,0,0,704,722,1,0,0, - 0,705,707,7,11,0,0,706,708,3,64,32,0,707,706,1,0,0,0,707,708,1,0, - 0,0,708,722,1,0,0,0,709,711,5,469,0,0,710,712,3,66,33,0,711,710, - 1,0,0,0,711,712,1,0,0,0,712,722,1,0,0,0,713,715,5,321,0,0,714,716, - 3,68,34,0,715,714,1,0,0,0,715,716,1,0,0,0,716,722,1,0,0,0,717,719, - 5,294,0,0,718,720,3,62,31,0,719,718,1,0,0,0,719,720,1,0,0,0,720, - 722,1,0,0,0,721,684,1,0,0,0,721,685,1,0,0,0,721,689,1,0,0,0,721, - 701,1,0,0,0,721,705,1,0,0,0,721,709,1,0,0,0,721,713,1,0,0,0,721, - 717,1,0,0,0,722,57,1,0,0,0,723,724,5,516,0,0,724,725,3,360,180,0, - 725,726,5,517,0,0,726,59,1,0,0,0,727,728,5,516,0,0,728,731,3,360, - 180,0,729,730,5,520,0,0,730,732,3,360,180,0,731,729,1,0,0,0,731, - 732,1,0,0,0,732,733,1,0,0,0,733,734,5,517,0,0,734,61,1,0,0,0,735, - 736,5,516,0,0,736,739,3,358,179,0,737,738,5,520,0,0,738,740,3,358, - 179,0,739,737,1,0,0,0,739,740,1,0,0,0,740,741,1,0,0,0,741,742,5, - 517,0,0,742,63,1,0,0,0,743,744,5,507,0,0,744,745,3,56,28,0,745,746, - 5,506,0,0,746,65,1,0,0,0,747,748,5,507,0,0,748,749,3,56,28,0,749, - 750,5,520,0,0,750,751,3,56,28,0,751,752,1,0,0,0,752,753,5,506,0, - 0,753,67,1,0,0,0,754,755,5,507,0,0,755,756,3,52,26,0,756,763,3,56, - 28,0,757,758,5,520,0,0,758,759,3,52,26,0,759,760,3,56,28,0,760,762, - 1,0,0,0,761,757,1,0,0,0,762,765,1,0,0,0,763,761,1,0,0,0,763,764, - 1,0,0,0,764,766,1,0,0,0,765,763,1,0,0,0,766,767,5,506,0,0,767,69, - 1,0,0,0,768,769,5,64,0,0,769,771,3,86,43,0,770,768,1,0,0,0,770,771, - 1,0,0,0,771,772,1,0,0,0,772,773,5,288,0,0,773,776,5,466,0,0,774, - 775,5,241,0,0,775,777,5,125,0,0,776,774,1,0,0,0,776,777,1,0,0,0, - 777,783,1,0,0,0,778,780,5,241,0,0,779,778,1,0,0,0,779,780,1,0,0, - 0,780,781,1,0,0,0,781,783,5,244,0,0,782,770,1,0,0,0,782,779,1,0, - 0,0,783,71,1,0,0,0,784,785,5,59,0,0,785,786,5,537,0,0,786,73,1,0, - 0,0,787,788,3,50,25,0,788,789,3,56,28,0,789,792,5,218,0,0,790,791, - 5,151,0,0,791,793,3,76,38,0,792,790,1,0,0,0,792,793,1,0,0,0,793, - 795,1,0,0,0,794,796,5,423,0,0,795,794,1,0,0,0,795,796,1,0,0,0,796, - 75,1,0,0,0,797,798,5,537,0,0,798,77,1,0,0,0,799,800,3,50,25,0,800, - 801,5,17,0,0,801,803,3,80,40,0,802,804,3,72,36,0,803,802,1,0,0,0, - 803,804,1,0,0,0,804,79,1,0,0,0,805,806,3,258,129,0,806,81,1,0,0, - 0,807,808,5,424,0,0,808,809,5,146,0,0,809,810,3,52,26,0,810,811, - 5,17,0,0,811,812,3,258,129,0,812,83,1,0,0,0,813,814,5,64,0,0,814, - 816,3,86,43,0,815,813,1,0,0,0,815,816,1,0,0,0,816,817,1,0,0,0,817, - 818,5,288,0,0,818,819,5,466,0,0,819,820,3,54,27,0,820,821,5,241, - 0,0,821,822,5,125,0,0,822,85,1,0,0,0,823,824,3,304,152,0,824,87, - 1,0,0,0,825,826,5,277,0,0,826,827,5,146,0,0,827,828,5,371,0,0,828, - 89,1,0,0,0,829,830,5,269,0,0,830,831,5,34,0,0,831,832,3,92,46,0, - 832,91,1,0,0,0,833,834,5,516,0,0,834,839,3,94,47,0,835,836,5,520, - 0,0,836,838,3,94,47,0,837,835,1,0,0,0,838,841,1,0,0,0,839,837,1, - 0,0,0,839,840,1,0,0,0,840,842,1,0,0,0,841,839,1,0,0,0,842,843,5, - 517,0,0,843,93,1,0,0,0,844,858,3,52,26,0,845,858,3,280,140,0,846, - 847,5,516,0,0,847,852,3,96,48,0,848,849,5,520,0,0,849,851,3,96,48, - 0,850,848,1,0,0,0,851,854,1,0,0,0,852,850,1,0,0,0,852,853,1,0,0, - 0,853,855,1,0,0,0,854,852,1,0,0,0,855,856,5,517,0,0,856,858,1,0, - 0,0,857,844,1,0,0,0,857,845,1,0,0,0,857,846,1,0,0,0,858,95,1,0,0, - 0,859,862,3,280,140,0,860,862,3,354,177,0,861,859,1,0,0,0,861,860, - 1,0,0,0,862,97,1,0,0,0,863,864,5,202,0,0,864,873,3,322,161,0,865, - 869,5,516,0,0,866,868,3,100,50,0,867,866,1,0,0,0,868,871,1,0,0,0, - 869,867,1,0,0,0,869,870,1,0,0,0,870,872,1,0,0,0,871,869,1,0,0,0, - 872,874,5,517,0,0,873,865,1,0,0,0,873,874,1,0,0,0,874,99,1,0,0,0, - 875,876,7,12,0,0,876,880,7,13,0,0,877,878,7,14,0,0,878,880,7,15, - 0,0,879,875,1,0,0,0,879,877,1,0,0,0,880,101,1,0,0,0,881,882,5,72, - 0,0,882,883,5,441,0,0,883,884,3,314,157,0,884,885,3,330,165,0,885, - 103,1,0,0,0,886,887,5,72,0,0,887,889,5,447,0,0,888,890,3,332,166, - 0,889,888,1,0,0,0,889,890,1,0,0,0,890,891,1,0,0,0,891,893,3,318, - 159,0,892,894,3,72,36,0,893,892,1,0,0,0,893,894,1,0,0,0,894,895, - 1,0,0,0,895,896,3,330,165,0,896,105,1,0,0,0,897,899,5,72,0,0,898, - 900,5,497,0,0,899,898,1,0,0,0,899,900,1,0,0,0,900,901,1,0,0,0,901, - 903,5,501,0,0,902,904,3,332,166,0,903,902,1,0,0,0,903,904,1,0,0, - 0,904,905,1,0,0,0,905,907,3,326,163,0,906,908,3,54,27,0,907,906, - 1,0,0,0,907,908,1,0,0,0,908,910,1,0,0,0,909,911,3,72,36,0,910,909, - 1,0,0,0,910,911,1,0,0,0,911,912,1,0,0,0,912,913,5,17,0,0,913,914, - 3,158,79,0,914,107,1,0,0,0,915,919,5,72,0,0,916,920,5,497,0,0,917, - 918,5,497,0,0,918,920,5,370,0,0,919,916,1,0,0,0,919,917,1,0,0,0, - 919,920,1,0,0,0,920,921,1,0,0,0,921,923,5,153,0,0,922,924,3,332, - 166,0,923,922,1,0,0,0,923,924,1,0,0,0,924,925,1,0,0,0,925,926,3, - 270,135,0,926,927,5,17,0,0,927,930,3,304,152,0,928,929,5,195,0,0, - 929,931,7,16,0,0,930,928,1,0,0,0,930,931,1,0,0,0,931,933,1,0,0,0, - 932,934,3,110,55,0,933,932,1,0,0,0,933,934,1,0,0,0,934,109,1,0,0, - 0,935,936,5,412,0,0,936,937,5,463,0,0,937,943,3,112,56,0,938,939, - 5,520,0,0,939,940,5,463,0,0,940,942,3,112,56,0,941,938,1,0,0,0,942, - 945,1,0,0,0,943,941,1,0,0,0,943,944,1,0,0,0,944,111,1,0,0,0,945, - 943,1,0,0,0,946,947,5,537,0,0,947,113,1,0,0,0,948,949,5,8,0,0,949, - 951,5,373,0,0,950,952,3,334,167,0,951,950,1,0,0,0,951,952,1,0,0, - 0,952,953,1,0,0,0,953,959,3,322,161,0,954,960,3,116,58,0,955,960, - 3,118,59,0,956,960,3,120,60,0,957,960,3,122,61,0,958,960,3,124,62, - 0,959,954,1,0,0,0,959,955,1,0,0,0,959,956,1,0,0,0,959,957,1,0,0, - 0,959,958,1,0,0,0,960,115,1,0,0,0,961,963,5,311,0,0,962,964,3,328, - 164,0,963,962,1,0,0,0,963,964,1,0,0,0,964,965,1,0,0,0,965,966,5, - 388,0,0,966,967,3,328,164,0,967,117,1,0,0,0,968,969,5,340,0,0,969, - 970,3,336,168,0,970,119,1,0,0,0,971,972,5,437,0,0,972,973,5,64,0, - 0,973,974,3,86,43,0,974,975,5,288,0,0,975,976,5,466,0,0,976,978, - 3,54,27,0,977,979,3,126,63,0,978,977,1,0,0,0,978,979,1,0,0,0,979, - 121,1,0,0,0,980,981,5,116,0,0,981,982,5,64,0,0,982,983,3,86,43,0, - 983,123,1,0,0,0,984,985,5,437,0,0,985,986,5,403,0,0,986,987,3,54, - 27,0,987,125,1,0,0,0,988,989,5,241,0,0,989,990,5,125,0,0,990,127, - 1,0,0,0,991,992,5,8,0,0,992,993,5,501,0,0,993,997,3,324,162,0,994, - 998,3,116,58,0,995,996,5,17,0,0,996,998,3,158,79,0,997,994,1,0,0, - 0,997,995,1,0,0,0,998,129,1,0,0,0,999,1000,5,8,0,0,1000,1001,5,447, - 0,0,1001,1002,3,316,158,0,1002,1003,3,118,59,0,1003,131,1,0,0,0, - 1004,1008,5,8,0,0,1005,1009,5,497,0,0,1006,1007,5,497,0,0,1007,1009, - 5,370,0,0,1008,1005,1,0,0,0,1008,1006,1,0,0,0,1008,1009,1,0,0,0, - 1009,1010,1,0,0,0,1010,1012,5,153,0,0,1011,1013,3,334,167,0,1012, - 1011,1,0,0,0,1012,1013,1,0,0,0,1013,1014,1,0,0,0,1014,1015,3,272, - 136,0,1015,1016,5,17,0,0,1016,1019,3,304,152,0,1017,1018,5,195,0, - 0,1018,1020,7,16,0,0,1019,1017,1,0,0,0,1019,1020,1,0,0,0,1020,133, - 1,0,0,0,1021,1022,5,116,0,0,1022,1024,5,441,0,0,1023,1025,3,334, - 167,0,1024,1023,1,0,0,0,1024,1025,1,0,0,0,1025,1026,1,0,0,0,1026, - 1027,3,312,156,0,1027,135,1,0,0,0,1028,1030,5,116,0,0,1029,1031, - 5,497,0,0,1030,1029,1,0,0,0,1030,1031,1,0,0,0,1031,1032,1,0,0,0, - 1032,1034,5,373,0,0,1033,1035,3,334,167,0,1034,1033,1,0,0,0,1034, - 1035,1,0,0,0,1035,1036,1,0,0,0,1036,1037,3,322,161,0,1037,137,1, - 0,0,0,1038,1039,5,116,0,0,1039,1041,5,447,0,0,1040,1042,3,334,167, - 0,1041,1040,1,0,0,0,1041,1042,1,0,0,0,1042,1043,1,0,0,0,1043,1045, - 3,316,158,0,1044,1046,7,17,0,0,1045,1044,1,0,0,0,1045,1046,1,0,0, - 0,1046,139,1,0,0,0,1047,1049,5,116,0,0,1048,1050,5,497,0,0,1049, - 1048,1,0,0,0,1049,1050,1,0,0,0,1050,1051,1,0,0,0,1051,1053,5,501, - 0,0,1052,1054,3,334,167,0,1053,1052,1,0,0,0,1053,1054,1,0,0,0,1054, - 1055,1,0,0,0,1055,1056,3,324,162,0,1056,141,1,0,0,0,1057,1061,5, - 116,0,0,1058,1062,5,497,0,0,1059,1060,5,497,0,0,1060,1062,5,370, - 0,0,1061,1058,1,0,0,0,1061,1059,1,0,0,0,1061,1062,1,0,0,0,1062,1063, - 1,0,0,0,1063,1065,5,153,0,0,1064,1066,3,334,167,0,1065,1064,1,0, - 0,0,1065,1066,1,0,0,0,1066,1067,1,0,0,0,1067,1068,3,272,136,0,1068, - 143,1,0,0,0,1069,1071,5,132,0,0,1070,1069,1,0,0,0,1070,1071,1,0, - 0,0,1071,1072,1,0,0,0,1072,1077,3,146,73,0,1073,1077,3,154,77,0, - 1074,1075,5,132,0,0,1075,1077,3,156,78,0,1076,1070,1,0,0,0,1076, - 1073,1,0,0,0,1076,1074,1,0,0,0,1077,145,1,0,0,0,1078,1079,5,177, - 0,0,1079,1080,7,18,0,0,1080,1089,3,322,161,0,1081,1083,3,148,74, - 0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1085,1,0,0,0,1084,1086, - 3,54,27,0,1085,1084,1,0,0,0,1085,1086,1,0,0,0,1086,1087,1,0,0,0, - 1087,1090,3,158,79,0,1088,1090,3,150,75,0,1089,1082,1,0,0,0,1089, - 1088,1,0,0,0,1090,147,1,0,0,0,1091,1092,5,268,0,0,1092,1093,3,336, - 168,0,1093,149,1,0,0,0,1094,1095,5,414,0,0,1095,1100,3,152,76,0, - 1096,1097,5,520,0,0,1097,1099,3,152,76,0,1098,1096,1,0,0,0,1099, - 1102,1,0,0,0,1100,1098,1,0,0,0,1100,1101,1,0,0,0,1101,151,1,0,0, - 0,1102,1100,1,0,0,0,1103,1104,5,516,0,0,1104,1109,3,354,177,0,1105, - 1106,5,520,0,0,1106,1108,3,354,177,0,1107,1105,1,0,0,0,1108,1111, - 1,0,0,0,1109,1107,1,0,0,0,1109,1110,1,0,0,0,1110,1112,1,0,0,0,1111, - 1109,1,0,0,0,1112,1113,5,517,0,0,1113,153,1,0,0,0,1114,1115,5,24, - 0,0,1115,1116,5,354,0,0,1116,1117,5,340,0,0,1117,1121,5,521,0,0, - 1118,1119,3,146,73,0,1119,1120,5,521,0,0,1120,1122,1,0,0,0,1121, - 1118,1,0,0,0,1122,1123,1,0,0,0,1123,1121,1,0,0,0,1123,1124,1,0,0, - 0,1124,1125,1,0,0,0,1125,1126,5,122,0,0,1126,155,1,0,0,0,1127,1128, - 5,354,0,0,1128,1129,5,340,0,0,1129,1133,5,24,0,0,1130,1131,3,146, - 73,0,1131,1132,5,521,0,0,1132,1134,1,0,0,0,1133,1130,1,0,0,0,1134, - 1135,1,0,0,0,1135,1133,1,0,0,0,1135,1136,1,0,0,0,1136,1137,1,0,0, - 0,1137,1138,5,122,0,0,1138,157,1,0,0,0,1139,1140,6,79,-1,0,1140, - 1163,3,160,80,0,1141,1142,3,162,81,0,1142,1143,3,158,79,5,1143,1163, - 1,0,0,0,1144,1145,5,516,0,0,1145,1146,3,158,79,0,1146,1147,5,517, - 0,0,1147,1163,1,0,0,0,1148,1150,3,170,85,0,1149,1151,3,230,115,0, - 1150,1149,1,0,0,0,1150,1151,1,0,0,0,1151,1153,1,0,0,0,1152,1154, - 3,234,117,0,1153,1152,1,0,0,0,1153,1154,1,0,0,0,1154,1163,1,0,0, - 0,1155,1157,3,168,84,0,1156,1158,3,230,115,0,1157,1156,1,0,0,0,1157, - 1158,1,0,0,0,1158,1160,1,0,0,0,1159,1161,3,234,117,0,1160,1159,1, - 0,0,0,1160,1161,1,0,0,0,1161,1163,1,0,0,0,1162,1139,1,0,0,0,1162, - 1141,1,0,0,0,1162,1144,1,0,0,0,1162,1148,1,0,0,0,1162,1155,1,0,0, - 0,1163,1178,1,0,0,0,1164,1165,10,3,0,0,1165,1167,7,19,0,0,1166,1168, - 5,5,0,0,1167,1166,1,0,0,0,1167,1168,1,0,0,0,1168,1169,1,0,0,0,1169, - 1171,3,158,79,0,1170,1172,3,230,115,0,1171,1170,1,0,0,0,1171,1172, - 1,0,0,0,1172,1174,1,0,0,0,1173,1175,3,234,117,0,1174,1173,1,0,0, - 0,1174,1175,1,0,0,0,1175,1177,1,0,0,0,1176,1164,1,0,0,0,1177,1180, - 1,0,0,0,1178,1176,1,0,0,0,1178,1179,1,0,0,0,1179,159,1,0,0,0,1180, - 1178,1,0,0,0,1181,1182,5,414,0,0,1182,1187,3,258,129,0,1183,1184, - 5,520,0,0,1184,1186,3,258,129,0,1185,1183,1,0,0,0,1186,1189,1,0, - 0,0,1187,1185,1,0,0,0,1187,1188,1,0,0,0,1188,161,1,0,0,0,1189,1187, - 1,0,0,0,1190,1191,5,433,0,0,1191,1196,3,164,82,0,1192,1193,5,520, - 0,0,1193,1195,3,164,82,0,1194,1192,1,0,0,0,1195,1198,1,0,0,0,1196, - 1194,1,0,0,0,1196,1197,1,0,0,0,1197,163,1,0,0,0,1198,1196,1,0,0, - 0,1199,1211,3,166,83,0,1200,1201,5,516,0,0,1201,1206,3,52,26,0,1202, - 1203,5,520,0,0,1203,1205,3,52,26,0,1204,1202,1,0,0,0,1205,1208,1, - 0,0,0,1206,1204,1,0,0,0,1206,1207,1,0,0,0,1207,1209,1,0,0,0,1208, - 1206,1,0,0,0,1209,1210,5,517,0,0,1210,1212,1,0,0,0,1211,1200,1,0, - 0,0,1211,1212,1,0,0,0,1212,1213,1,0,0,0,1213,1214,5,17,0,0,1214, - 1215,5,516,0,0,1215,1216,3,158,79,0,1216,1217,5,517,0,0,1217,165, - 1,0,0,0,1218,1219,3,304,152,0,1219,167,1,0,0,0,1220,1222,3,170,85, - 0,1221,1223,3,176,88,0,1222,1221,1,0,0,0,1222,1223,1,0,0,0,1223, - 1225,1,0,0,0,1224,1226,3,204,102,0,1225,1224,1,0,0,0,1225,1226,1, - 0,0,0,1226,1228,1,0,0,0,1227,1229,3,206,103,0,1228,1227,1,0,0,0, - 1228,1229,1,0,0,0,1229,1231,1,0,0,0,1230,1232,3,220,110,0,1231,1230, - 1,0,0,0,1231,1232,1,0,0,0,1232,1234,1,0,0,0,1233,1235,3,222,111, - 0,1234,1233,1,0,0,0,1234,1235,1,0,0,0,1235,1241,1,0,0,0,1236,1237, - 3,170,85,0,1237,1238,3,176,88,0,1238,1239,3,228,114,0,1239,1241, - 1,0,0,0,1240,1220,1,0,0,0,1240,1236,1,0,0,0,1241,169,1,0,0,0,1242, - 1244,5,336,0,0,1243,1245,3,364,182,0,1244,1243,1,0,0,0,1244,1245, - 1,0,0,0,1245,1255,1,0,0,0,1246,1256,5,527,0,0,1247,1252,3,172,86, - 0,1248,1249,5,520,0,0,1249,1251,3,172,86,0,1250,1248,1,0,0,0,1251, - 1254,1,0,0,0,1252,1250,1,0,0,0,1252,1253,1,0,0,0,1253,1256,1,0,0, - 0,1254,1252,1,0,0,0,1255,1246,1,0,0,0,1255,1247,1,0,0,0,1256,171, - 1,0,0,0,1257,1266,3,174,87,0,1258,1263,3,52,26,0,1259,1261,5,17, - 0,0,1260,1259,1,0,0,0,1260,1261,1,0,0,0,1261,1262,1,0,0,0,1262,1264, - 3,258,129,0,1263,1260,1,0,0,0,1263,1264,1,0,0,0,1264,1266,1,0,0, - 0,1265,1257,1,0,0,0,1265,1258,1,0,0,0,1266,173,1,0,0,0,1267,1268, - 3,268,134,0,1268,1269,5,262,0,0,1269,1270,3,226,113,0,1270,1271, - 5,17,0,0,1271,1272,3,304,152,0,1272,1280,1,0,0,0,1273,1274,3,268, - 134,0,1274,1275,5,262,0,0,1275,1276,3,296,148,0,1276,1277,5,17,0, - 0,1277,1278,3,304,152,0,1278,1280,1,0,0,0,1279,1267,1,0,0,0,1279, - 1273,1,0,0,0,1280,175,1,0,0,0,1281,1282,5,151,0,0,1282,1283,3,178, - 89,0,1283,177,1,0,0,0,1284,1285,6,89,-1,0,1285,1290,3,180,90,0,1286, - 1287,5,520,0,0,1287,1289,3,180,90,0,1288,1286,1,0,0,0,1289,1292, - 1,0,0,0,1290,1288,1,0,0,0,1290,1291,1,0,0,0,1291,1296,1,0,0,0,1292, - 1290,1,0,0,0,1293,1296,3,188,94,0,1294,1296,3,190,95,0,1295,1284, - 1,0,0,0,1295,1293,1,0,0,0,1295,1294,1,0,0,0,1296,1318,1,0,0,0,1297, - 1298,10,3,0,0,1298,1299,5,73,0,0,1299,1300,5,185,0,0,1300,1317,3, - 178,89,4,1301,1303,10,4,0,0,1302,1304,5,233,0,0,1303,1302,1,0,0, - 0,1303,1304,1,0,0,0,1304,1306,1,0,0,0,1305,1307,7,20,0,0,1306,1305, - 1,0,0,0,1306,1307,1,0,0,0,1307,1309,1,0,0,0,1308,1310,5,261,0,0, - 1309,1308,1,0,0,0,1309,1310,1,0,0,0,1310,1311,1,0,0,0,1311,1312, - 5,185,0,0,1312,1314,3,178,89,0,1313,1315,3,202,101,0,1314,1313,1, - 0,0,0,1314,1315,1,0,0,0,1315,1317,1,0,0,0,1316,1297,1,0,0,0,1316, - 1301,1,0,0,0,1317,1320,1,0,0,0,1318,1316,1,0,0,0,1318,1319,1,0,0, - 0,1319,179,1,0,0,0,1320,1318,1,0,0,0,1321,1323,3,182,91,0,1322,1324, - 3,294,147,0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324,181,1,0,0,0, - 1325,1327,5,373,0,0,1326,1325,1,0,0,0,1326,1327,1,0,0,0,1327,1328, - 1,0,0,0,1328,1330,3,322,161,0,1329,1331,3,184,92,0,1330,1329,1,0, - 0,0,1330,1331,1,0,0,0,1331,1336,1,0,0,0,1332,1334,5,17,0,0,1333, - 1332,1,0,0,0,1333,1334,1,0,0,0,1334,1335,1,0,0,0,1335,1337,3,278, - 139,0,1336,1333,1,0,0,0,1336,1337,1,0,0,0,1337,1377,1,0,0,0,1338, - 1340,3,324,162,0,1339,1341,3,184,92,0,1340,1339,1,0,0,0,1340,1341, - 1,0,0,0,1341,1346,1,0,0,0,1342,1344,5,17,0,0,1343,1342,1,0,0,0,1343, - 1344,1,0,0,0,1344,1345,1,0,0,0,1345,1347,3,278,139,0,1346,1343,1, - 0,0,0,1346,1347,1,0,0,0,1347,1377,1,0,0,0,1348,1349,5,198,0,0,1349, - 1350,5,373,0,0,1350,1351,5,516,0,0,1351,1352,3,272,136,0,1352,1353, - 5,516,0,0,1353,1358,3,274,137,0,1354,1355,5,520,0,0,1355,1357,3, - 274,137,0,1356,1354,1,0,0,0,1357,1360,1,0,0,0,1358,1356,1,0,0,0, - 1358,1359,1,0,0,0,1359,1361,1,0,0,0,1360,1358,1,0,0,0,1361,1362, - 5,517,0,0,1362,1363,5,517,0,0,1363,1377,1,0,0,0,1364,1366,5,198, - 0,0,1365,1364,1,0,0,0,1365,1366,1,0,0,0,1366,1367,1,0,0,0,1367,1368, - 5,516,0,0,1368,1369,3,158,79,0,1369,1370,5,517,0,0,1370,1377,1,0, - 0,0,1371,1372,5,405,0,0,1372,1373,5,516,0,0,1373,1374,3,258,129, - 0,1374,1375,5,517,0,0,1375,1377,1,0,0,0,1376,1326,1,0,0,0,1376,1338, - 1,0,0,0,1376,1348,1,0,0,0,1376,1365,1,0,0,0,1376,1371,1,0,0,0,1377, - 183,1,0,0,0,1378,1379,5,146,0,0,1379,1380,5,371,0,0,1380,1381,5, - 17,0,0,1381,1382,5,249,0,0,1382,1383,3,186,93,0,1383,185,1,0,0,0, - 1384,1385,3,258,129,0,1385,187,1,0,0,0,1386,1387,5,516,0,0,1387, - 1388,3,150,75,0,1388,1389,5,517,0,0,1389,1390,3,294,147,0,1390,189, - 1,0,0,0,1391,1392,5,373,0,0,1392,1393,5,516,0,0,1393,1394,3,192, - 96,0,1394,1395,5,517,0,0,1395,191,1,0,0,0,1396,1397,3,194,97,0,1397, - 1398,5,516,0,0,1398,1403,3,196,98,0,1399,1400,5,520,0,0,1400,1402, - 3,196,98,0,1401,1399,1,0,0,0,1402,1405,1,0,0,0,1403,1401,1,0,0,0, - 1403,1404,1,0,0,0,1404,1406,1,0,0,0,1405,1403,1,0,0,0,1406,1407, - 5,517,0,0,1407,193,1,0,0,0,1408,1409,7,21,0,0,1409,195,1,0,0,0,1410, - 1411,5,373,0,0,1411,1426,3,218,109,0,1412,1426,3,200,100,0,1413, - 1426,3,282,141,0,1414,1415,5,446,0,0,1415,1416,5,536,0,0,1416,1417, - 5,373,0,0,1417,1426,3,218,109,0,1418,1419,5,498,0,0,1419,1420,5, - 536,0,0,1420,1426,3,200,100,0,1421,1422,3,198,99,0,1422,1423,5,536, - 0,0,1423,1424,3,282,141,0,1424,1426,1,0,0,0,1425,1410,1,0,0,0,1425, - 1412,1,0,0,0,1425,1413,1,0,0,0,1425,1414,1,0,0,0,1425,1418,1,0,0, - 0,1425,1421,1,0,0,0,1426,197,1,0,0,0,1427,1428,7,22,0,0,1428,199, - 1,0,0,0,1429,1430,5,451,0,0,1430,1431,5,516,0,0,1431,1432,3,52,26, - 0,1432,1433,5,517,0,0,1433,201,1,0,0,0,1434,1435,5,253,0,0,1435, - 1439,3,260,130,0,1436,1437,5,412,0,0,1437,1439,3,54,27,0,1438,1434, - 1,0,0,0,1438,1436,1,0,0,0,1439,203,1,0,0,0,1440,1441,5,430,0,0,1441, - 1442,3,260,130,0,1442,205,1,0,0,0,1443,1444,5,159,0,0,1444,1445, - 5,34,0,0,1445,1450,3,208,104,0,1446,1447,5,520,0,0,1447,1449,3,208, - 104,0,1448,1446,1,0,0,0,1449,1452,1,0,0,0,1450,1448,1,0,0,0,1450, - 1451,1,0,0,0,1451,207,1,0,0,0,1452,1450,1,0,0,0,1453,1493,3,52,26, - 0,1454,1493,3,214,107,0,1455,1456,5,516,0,0,1456,1493,5,517,0,0, - 1457,1458,5,516,0,0,1458,1463,3,258,129,0,1459,1460,5,520,0,0,1460, - 1462,3,258,129,0,1461,1459,1,0,0,0,1462,1465,1,0,0,0,1463,1461,1, - 0,0,0,1463,1464,1,0,0,0,1464,1466,1,0,0,0,1465,1463,1,0,0,0,1466, - 1467,5,517,0,0,1467,1493,1,0,0,0,1468,1469,3,212,106,0,1469,1470, - 5,516,0,0,1470,1475,3,258,129,0,1471,1472,5,520,0,0,1472,1474,3, - 258,129,0,1473,1471,1,0,0,0,1474,1477,1,0,0,0,1475,1473,1,0,0,0, - 1475,1476,1,0,0,0,1476,1478,1,0,0,0,1477,1475,1,0,0,0,1478,1479, - 5,517,0,0,1479,1493,1,0,0,0,1480,1481,3,210,105,0,1481,1482,5,516, - 0,0,1482,1487,3,208,104,0,1483,1484,5,520,0,0,1484,1486,3,208,104, - 0,1485,1483,1,0,0,0,1486,1489,1,0,0,0,1487,1485,1,0,0,0,1487,1488, - 1,0,0,0,1488,1490,1,0,0,0,1489,1487,1,0,0,0,1490,1491,5,517,0,0, - 1491,1493,1,0,0,0,1492,1453,1,0,0,0,1492,1454,1,0,0,0,1492,1455, - 1,0,0,0,1492,1457,1,0,0,0,1492,1468,1,0,0,0,1492,1480,1,0,0,0,1493, - 209,1,0,0,0,1494,1495,5,160,0,0,1495,1496,5,493,0,0,1496,211,1,0, - 0,0,1497,1498,7,23,0,0,1498,213,1,0,0,0,1499,1500,3,216,108,0,1500, - 1501,5,516,0,0,1501,1502,3,218,109,0,1502,1503,5,520,0,0,1503,1504, - 3,282,141,0,1504,1505,5,517,0,0,1505,215,1,0,0,0,1506,1507,7,24, - 0,0,1507,217,1,0,0,0,1508,1509,3,328,164,0,1509,219,1,0,0,0,1510, - 1511,5,163,0,0,1511,1512,3,260,130,0,1512,221,1,0,0,0,1513,1514, - 5,432,0,0,1514,1519,3,224,112,0,1515,1516,5,520,0,0,1516,1518,3, - 224,112,0,1517,1515,1,0,0,0,1518,1521,1,0,0,0,1519,1517,1,0,0,0, - 1519,1520,1,0,0,0,1520,223,1,0,0,0,1521,1519,1,0,0,0,1522,1523,3, - 296,148,0,1523,1524,5,17,0,0,1524,1525,3,226,113,0,1525,225,1,0, - 0,0,1526,1528,3,296,148,0,1527,1526,1,0,0,0,1527,1528,1,0,0,0,1528, - 1529,1,0,0,0,1529,1531,5,516,0,0,1530,1532,3,236,118,0,1531,1530, - 1,0,0,0,1531,1532,1,0,0,0,1532,1534,1,0,0,0,1533,1535,3,230,115, - 0,1534,1533,1,0,0,0,1534,1535,1,0,0,0,1535,1537,1,0,0,0,1536,1538, - 3,252,126,0,1537,1536,1,0,0,0,1537,1538,1,0,0,0,1538,1539,1,0,0, - 0,1539,1540,5,517,0,0,1540,227,1,0,0,0,1541,1542,5,213,0,0,1542, - 1544,5,516,0,0,1543,1545,3,236,118,0,1544,1543,1,0,0,0,1544,1545, - 1,0,0,0,1545,1547,1,0,0,0,1546,1548,3,230,115,0,1547,1546,1,0,0, - 0,1547,1548,1,0,0,0,1548,1550,1,0,0,0,1549,1551,3,240,120,0,1550, - 1549,1,0,0,0,1550,1551,1,0,0,0,1551,1553,1,0,0,0,1552,1554,3,246, - 123,0,1553,1552,1,0,0,0,1553,1554,1,0,0,0,1554,1556,1,0,0,0,1555, - 1557,3,248,124,0,1556,1555,1,0,0,0,1556,1557,1,0,0,0,1557,1559,1, - 0,0,0,1558,1560,3,242,121,0,1559,1558,1,0,0,0,1559,1560,1,0,0,0, - 1560,1561,1,0,0,0,1561,1562,3,250,125,0,1562,1567,5,517,0,0,1563, - 1565,5,17,0,0,1564,1563,1,0,0,0,1564,1565,1,0,0,0,1565,1566,1,0, - 0,0,1566,1568,3,304,152,0,1567,1564,1,0,0,0,1567,1568,1,0,0,0,1568, - 229,1,0,0,0,1569,1570,5,258,0,0,1570,1571,5,34,0,0,1571,1576,3,232, - 116,0,1572,1573,5,520,0,0,1573,1575,3,232,116,0,1574,1572,1,0,0, - 0,1575,1578,1,0,0,0,1576,1574,1,0,0,0,1576,1577,1,0,0,0,1577,231, - 1,0,0,0,1578,1576,1,0,0,0,1579,1581,3,52,26,0,1580,1582,7,25,0,0, - 1581,1580,1,0,0,0,1581,1582,1,0,0,0,1582,1585,1,0,0,0,1583,1584, - 5,476,0,0,1584,1586,7,26,0,0,1585,1583,1,0,0,0,1585,1586,1,0,0,0, - 1586,233,1,0,0,0,1587,1590,5,204,0,0,1588,1591,5,5,0,0,1589,1591, - 3,258,129,0,1590,1588,1,0,0,0,1590,1589,1,0,0,0,1591,235,1,0,0,0, - 1592,1593,5,268,0,0,1593,1594,5,34,0,0,1594,1599,3,52,26,0,1595, - 1596,5,520,0,0,1596,1598,3,52,26,0,1597,1595,1,0,0,0,1598,1601,1, - 0,0,0,1599,1597,1,0,0,0,1599,1600,1,0,0,0,1600,237,1,0,0,0,1601, - 1599,1,0,0,0,1602,1619,5,527,0,0,1603,1619,5,530,0,0,1604,1619,5, - 535,0,0,1605,1606,5,518,0,0,1606,1607,5,538,0,0,1607,1608,5,520, - 0,0,1608,1609,5,538,0,0,1609,1619,5,519,0,0,1610,1611,5,518,0,0, - 1611,1612,5,538,0,0,1612,1613,5,520,0,0,1613,1619,5,519,0,0,1614, - 1615,5,518,0,0,1615,1616,5,520,0,0,1616,1617,5,538,0,0,1617,1619, - 5,519,0,0,1618,1602,1,0,0,0,1618,1603,1,0,0,0,1618,1604,1,0,0,0, - 1618,1605,1,0,0,0,1618,1610,1,0,0,0,1618,1614,1,0,0,0,1619,239,1, - 0,0,0,1620,1621,5,215,0,0,1621,1626,3,172,86,0,1622,1623,5,520,0, - 0,1623,1625,3,172,86,0,1624,1622,1,0,0,0,1625,1628,1,0,0,0,1626, - 1624,1,0,0,0,1626,1627,1,0,0,0,1627,241,1,0,0,0,1628,1626,1,0,0, - 0,1629,1630,5,271,0,0,1630,1632,5,516,0,0,1631,1633,3,244,122,0, - 1632,1631,1,0,0,0,1633,1634,1,0,0,0,1634,1632,1,0,0,0,1634,1635, - 1,0,0,0,1635,1636,1,0,0,0,1636,1638,5,517,0,0,1637,1639,3,256,128, - 0,1638,1637,1,0,0,0,1638,1639,1,0,0,0,1639,243,1,0,0,0,1640,1642, - 3,306,153,0,1641,1643,3,238,119,0,1642,1641,1,0,0,0,1642,1643,1, - 0,0,0,1643,245,1,0,0,0,1644,1645,5,5,0,0,1645,1646,5,322,0,0,1646, - 1647,5,272,0,0,1647,1653,5,210,0,0,1648,1649,5,254,0,0,1649,1650, - 5,321,0,0,1650,1651,5,272,0,0,1651,1653,5,210,0,0,1652,1644,1,0, - 0,0,1652,1648,1,0,0,0,1653,247,1,0,0,0,1654,1655,5,438,0,0,1655, - 1656,5,210,0,0,1656,1657,5,343,0,0,1657,1658,5,478,0,0,1658,1659, - 5,467,0,0,1659,1679,5,321,0,0,1660,1661,5,438,0,0,1661,1662,5,210, - 0,0,1662,1663,5,343,0,0,1663,1664,5,388,0,0,1664,1665,5,237,0,0, - 1665,1679,5,321,0,0,1666,1667,5,438,0,0,1667,1668,5,210,0,0,1668, - 1669,5,343,0,0,1669,1670,5,388,0,0,1670,1671,5,467,0,0,1671,1679, - 3,306,153,0,1672,1673,5,438,0,0,1673,1674,5,210,0,0,1674,1675,5, - 343,0,0,1675,1676,5,388,0,0,1676,1677,5,457,0,0,1677,1679,3,306, - 153,0,1678,1654,1,0,0,0,1678,1660,1,0,0,0,1678,1666,1,0,0,0,1678, - 1672,1,0,0,0,1679,249,1,0,0,0,1680,1681,5,105,0,0,1681,1686,3,172, - 86,0,1682,1683,5,520,0,0,1683,1685,3,172,86,0,1684,1682,1,0,0,0, - 1685,1688,1,0,0,0,1686,1684,1,0,0,0,1686,1687,1,0,0,0,1687,251,1, - 0,0,0,1688,1686,1,0,0,0,1689,1690,5,292,0,0,1690,1691,5,27,0,0,1691, - 1692,3,282,141,0,1692,1693,3,254,127,0,1693,1699,1,0,0,0,1694,1695, - 5,322,0,0,1695,1696,5,27,0,0,1696,1697,5,538,0,0,1697,1699,3,254, - 127,0,1698,1689,1,0,0,0,1698,1694,1,0,0,0,1699,253,1,0,0,0,1700, - 1701,5,480,0,0,1701,1702,5,10,0,0,1702,1703,5,76,0,0,1703,1704,5, - 321,0,0,1704,255,1,0,0,0,1705,1706,5,434,0,0,1706,1707,3,282,141, - 0,1707,257,1,0,0,0,1708,1709,3,260,130,0,1709,259,1,0,0,0,1710,1711, - 6,130,-1,0,1711,1712,5,241,0,0,1712,1723,3,260,130,6,1713,1714,5, - 133,0,0,1714,1715,5,516,0,0,1715,1716,3,158,79,0,1716,1717,5,517, - 0,0,1717,1723,1,0,0,0,1718,1720,3,266,133,0,1719,1721,3,262,131, - 0,1720,1719,1,0,0,0,1720,1721,1,0,0,0,1721,1723,1,0,0,0,1722,1710, - 1,0,0,0,1722,1713,1,0,0,0,1722,1718,1,0,0,0,1723,1738,1,0,0,0,1724, - 1725,10,3,0,0,1725,1726,5,10,0,0,1726,1737,3,260,130,4,1727,1728, - 10,2,0,0,1728,1729,5,257,0,0,1729,1737,3,260,130,3,1730,1731,10, - 1,0,0,1731,1733,5,184,0,0,1732,1734,5,241,0,0,1733,1732,1,0,0,0, - 1733,1734,1,0,0,0,1734,1735,1,0,0,0,1735,1737,7,27,0,0,1736,1724, - 1,0,0,0,1736,1727,1,0,0,0,1736,1730,1,0,0,0,1737,1740,1,0,0,0,1738, - 1736,1,0,0,0,1738,1739,1,0,0,0,1739,261,1,0,0,0,1740,1738,1,0,0, - 0,1741,1743,5,241,0,0,1742,1741,1,0,0,0,1742,1743,1,0,0,0,1743,1744, - 1,0,0,0,1744,1746,5,27,0,0,1745,1747,7,28,0,0,1746,1745,1,0,0,0, - 1746,1747,1,0,0,0,1747,1748,1,0,0,0,1748,1749,3,266,133,0,1749,1750, - 5,10,0,0,1750,1751,3,266,133,0,1751,1809,1,0,0,0,1752,1754,5,241, - 0,0,1753,1752,1,0,0,0,1753,1754,1,0,0,0,1754,1755,1,0,0,0,1755,1756, - 5,170,0,0,1756,1757,5,516,0,0,1757,1762,3,258,129,0,1758,1759,5, - 520,0,0,1759,1761,3,258,129,0,1760,1758,1,0,0,0,1761,1764,1,0,0, - 0,1762,1760,1,0,0,0,1762,1763,1,0,0,0,1763,1765,1,0,0,0,1764,1762, - 1,0,0,0,1765,1766,5,517,0,0,1766,1809,1,0,0,0,1767,1769,5,241,0, - 0,1768,1767,1,0,0,0,1768,1769,1,0,0,0,1769,1770,1,0,0,0,1770,1771, - 5,170,0,0,1771,1772,5,516,0,0,1772,1773,3,158,79,0,1773,1774,5,517, - 0,0,1774,1809,1,0,0,0,1775,1776,5,133,0,0,1776,1777,5,516,0,0,1777, - 1778,3,158,79,0,1778,1779,5,517,0,0,1779,1809,1,0,0,0,1780,1782, - 5,241,0,0,1781,1780,1,0,0,0,1781,1782,1,0,0,0,1782,1783,1,0,0,0, - 1783,1784,5,318,0,0,1784,1809,3,266,133,0,1785,1809,3,264,132,0, - 1786,1788,5,184,0,0,1787,1789,5,241,0,0,1788,1787,1,0,0,0,1788,1789, - 1,0,0,0,1789,1790,1,0,0,0,1790,1809,7,27,0,0,1791,1793,5,184,0,0, - 1792,1794,5,241,0,0,1793,1792,1,0,0,0,1793,1794,1,0,0,0,1794,1795, - 1,0,0,0,1795,1796,5,113,0,0,1796,1797,5,151,0,0,1797,1809,3,266, - 133,0,1798,1800,5,241,0,0,1799,1798,1,0,0,0,1799,1800,1,0,0,0,1800, - 1801,1,0,0,0,1801,1802,5,342,0,0,1802,1803,5,388,0,0,1803,1806,3, - 266,133,0,1804,1805,5,127,0,0,1805,1807,3,358,179,0,1806,1804,1, - 0,0,0,1806,1807,1,0,0,0,1807,1809,1,0,0,0,1808,1742,1,0,0,0,1808, - 1753,1,0,0,0,1808,1768,1,0,0,0,1808,1775,1,0,0,0,1808,1781,1,0,0, - 0,1808,1785,1,0,0,0,1808,1786,1,0,0,0,1808,1791,1,0,0,0,1808,1799, - 1,0,0,0,1809,263,1,0,0,0,1810,1812,5,241,0,0,1811,1810,1,0,0,0,1811, - 1812,1,0,0,0,1812,1813,1,0,0,0,1813,1814,5,202,0,0,1814,1828,7,29, - 0,0,1815,1816,5,516,0,0,1816,1829,5,517,0,0,1817,1818,5,516,0,0, - 1818,1823,3,258,129,0,1819,1820,5,520,0,0,1820,1822,3,258,129,0, - 1821,1819,1,0,0,0,1822,1825,1,0,0,0,1823,1821,1,0,0,0,1823,1824, - 1,0,0,0,1824,1826,1,0,0,0,1825,1823,1,0,0,0,1826,1827,5,517,0,0, - 1827,1829,1,0,0,0,1828,1815,1,0,0,0,1828,1817,1,0,0,0,1829,1840, - 1,0,0,0,1830,1832,5,241,0,0,1831,1830,1,0,0,0,1831,1832,1,0,0,0, - 1832,1833,1,0,0,0,1833,1834,5,202,0,0,1834,1837,3,266,133,0,1835, - 1836,5,127,0,0,1836,1838,3,358,179,0,1837,1835,1,0,0,0,1837,1838, - 1,0,0,0,1838,1840,1,0,0,0,1839,1811,1,0,0,0,1839,1831,1,0,0,0,1840, - 265,1,0,0,0,1841,1842,6,133,-1,0,1842,1846,3,268,134,0,1843,1844, - 7,30,0,0,1844,1846,3,266,133,7,1845,1841,1,0,0,0,1845,1843,1,0,0, - 0,1846,1868,1,0,0,0,1847,1848,10,6,0,0,1848,1849,7,31,0,0,1849,1867, - 3,266,133,7,1850,1851,10,5,0,0,1851,1852,7,32,0,0,1852,1867,3,266, - 133,6,1853,1854,10,4,0,0,1854,1855,5,511,0,0,1855,1867,3,266,133, - 5,1856,1857,10,3,0,0,1857,1858,5,512,0,0,1858,1867,3,266,133,4,1859, - 1860,10,2,0,0,1860,1861,5,510,0,0,1861,1867,3,266,133,3,1862,1863, - 10,1,0,0,1863,1864,3,346,173,0,1864,1865,3,266,133,2,1865,1867,1, - 0,0,0,1866,1847,1,0,0,0,1866,1850,1,0,0,0,1866,1853,1,0,0,0,1866, - 1856,1,0,0,0,1866,1859,1,0,0,0,1866,1862,1,0,0,0,1867,1870,1,0,0, - 0,1868,1866,1,0,0,0,1868,1869,1,0,0,0,1869,267,1,0,0,0,1870,1868, - 1,0,0,0,1871,1872,6,134,-1,0,1872,1874,5,40,0,0,1873,1875,3,310, - 155,0,1874,1873,1,0,0,0,1875,1876,1,0,0,0,1876,1874,1,0,0,0,1876, - 1877,1,0,0,0,1877,1880,1,0,0,0,1878,1879,5,120,0,0,1879,1881,3,258, - 129,0,1880,1878,1,0,0,0,1880,1881,1,0,0,0,1881,1882,1,0,0,0,1882, - 1883,5,122,0,0,1883,1964,1,0,0,0,1884,1885,5,40,0,0,1885,1887,3, - 258,129,0,1886,1888,3,310,155,0,1887,1886,1,0,0,0,1888,1889,1,0, - 0,0,1889,1887,1,0,0,0,1889,1890,1,0,0,0,1890,1893,1,0,0,0,1891,1892, - 5,120,0,0,1892,1894,3,258,129,0,1893,1891,1,0,0,0,1893,1894,1,0, - 0,0,1894,1895,1,0,0,0,1895,1896,5,122,0,0,1896,1964,1,0,0,0,1897, - 1898,5,41,0,0,1898,1899,5,516,0,0,1899,1900,3,258,129,0,1900,1901, - 5,17,0,0,1901,1902,3,56,28,0,1902,1903,5,517,0,0,1903,1964,1,0,0, - 0,1904,1905,5,457,0,0,1905,1906,5,516,0,0,1906,1909,3,258,129,0, - 1907,1908,5,461,0,0,1908,1910,5,476,0,0,1909,1907,1,0,0,0,1909,1910, - 1,0,0,0,1910,1911,1,0,0,0,1911,1912,5,517,0,0,1912,1964,1,0,0,0, - 1913,1914,5,467,0,0,1914,1915,5,516,0,0,1915,1918,3,258,129,0,1916, - 1917,5,461,0,0,1917,1919,5,476,0,0,1918,1916,1,0,0,0,1918,1919,1, - 0,0,0,1919,1920,1,0,0,0,1920,1921,5,517,0,0,1921,1964,1,0,0,0,1922, - 1923,5,281,0,0,1923,1924,5,516,0,0,1924,1925,3,266,133,0,1925,1926, - 5,170,0,0,1926,1927,3,266,133,0,1927,1928,5,517,0,0,1928,1964,1, - 0,0,0,1929,1964,3,354,177,0,1930,1964,5,527,0,0,1931,1932,3,328, - 164,0,1932,1933,5,513,0,0,1933,1934,5,527,0,0,1934,1964,1,0,0,0, - 1935,1936,5,516,0,0,1936,1937,3,158,79,0,1937,1938,5,517,0,0,1938, - 1964,1,0,0,0,1939,1940,3,272,136,0,1940,1952,5,516,0,0,1941,1943, - 3,364,182,0,1942,1941,1,0,0,0,1942,1943,1,0,0,0,1943,1944,1,0,0, - 0,1944,1949,3,274,137,0,1945,1946,5,520,0,0,1946,1948,3,274,137, - 0,1947,1945,1,0,0,0,1948,1951,1,0,0,0,1949,1947,1,0,0,0,1949,1950, - 1,0,0,0,1950,1953,1,0,0,0,1951,1949,1,0,0,0,1952,1942,1,0,0,0,1952, - 1953,1,0,0,0,1953,1954,1,0,0,0,1954,1955,5,517,0,0,1955,1964,1,0, - 0,0,1956,1964,3,304,152,0,1957,1964,3,276,138,0,1958,1959,5,516, - 0,0,1959,1960,3,258,129,0,1960,1961,5,517,0,0,1961,1964,1,0,0,0, - 1962,1964,5,85,0,0,1963,1871,1,0,0,0,1963,1884,1,0,0,0,1963,1897, - 1,0,0,0,1963,1904,1,0,0,0,1963,1913,1,0,0,0,1963,1922,1,0,0,0,1963, - 1929,1,0,0,0,1963,1930,1,0,0,0,1963,1931,1,0,0,0,1963,1935,1,0,0, - 0,1963,1939,1,0,0,0,1963,1956,1,0,0,0,1963,1957,1,0,0,0,1963,1958, - 1,0,0,0,1963,1962,1,0,0,0,1964,1972,1,0,0,0,1965,1966,10,5,0,0,1966, - 1967,5,514,0,0,1967,1968,3,266,133,0,1968,1969,5,515,0,0,1969,1971, - 1,0,0,0,1970,1965,1,0,0,0,1971,1974,1,0,0,0,1972,1970,1,0,0,0,1972, - 1973,1,0,0,0,1973,269,1,0,0,0,1974,1972,1,0,0,0,1975,1976,3,328, - 164,0,1976,271,1,0,0,0,1977,1980,3,372,186,0,1978,1980,3,328,164, - 0,1979,1977,1,0,0,0,1979,1978,1,0,0,0,1980,273,1,0,0,0,1981,1986, - 3,370,185,0,1982,1986,3,368,184,0,1983,1986,3,366,183,0,1984,1986, - 3,258,129,0,1985,1981,1,0,0,0,1985,1982,1,0,0,0,1985,1983,1,0,0, - 0,1985,1984,1,0,0,0,1986,275,1,0,0,0,1987,1988,3,328,164,0,1988, - 277,1,0,0,0,1989,1990,3,304,152,0,1990,279,1,0,0,0,1991,1994,3,304, - 152,0,1992,1994,3,276,138,0,1993,1991,1,0,0,0,1993,1992,1,0,0,0, - 1994,281,1,0,0,0,1995,1998,5,182,0,0,1996,1999,3,284,142,0,1997, - 1999,3,288,144,0,1998,1996,1,0,0,0,1998,1997,1,0,0,0,1998,1999,1, - 0,0,0,1999,283,1,0,0,0,2000,2002,3,286,143,0,2001,2003,3,290,145, - 0,2002,2001,1,0,0,0,2002,2003,1,0,0,0,2003,285,1,0,0,0,2004,2005, - 3,292,146,0,2005,2006,3,368,184,0,2006,2008,1,0,0,0,2007,2004,1, - 0,0,0,2008,2009,1,0,0,0,2009,2007,1,0,0,0,2009,2010,1,0,0,0,2010, - 287,1,0,0,0,2011,2014,3,290,145,0,2012,2015,3,286,143,0,2013,2015, - 3,290,145,0,2014,2012,1,0,0,0,2014,2013,1,0,0,0,2014,2015,1,0,0, - 0,2015,289,1,0,0,0,2016,2017,3,292,146,0,2017,2018,3,368,184,0,2018, - 2019,5,388,0,0,2019,2020,3,368,184,0,2020,291,1,0,0,0,2021,2023, - 7,33,0,0,2022,2021,1,0,0,0,2022,2023,1,0,0,0,2023,2024,1,0,0,0,2024, - 2027,7,34,0,0,2025,2027,5,537,0,0,2026,2022,1,0,0,0,2026,2025,1, - 0,0,0,2027,293,1,0,0,0,2028,2030,5,17,0,0,2029,2028,1,0,0,0,2029, - 2030,1,0,0,0,2030,2031,1,0,0,0,2031,2033,3,304,152,0,2032,2034,3, - 300,150,0,2033,2032,1,0,0,0,2033,2034,1,0,0,0,2034,295,1,0,0,0,2035, - 2036,3,304,152,0,2036,2037,3,298,149,0,2037,297,1,0,0,0,2038,2039, - 5,221,0,0,2039,2041,3,304,152,0,2040,2038,1,0,0,0,2041,2042,1,0, - 0,0,2042,2040,1,0,0,0,2042,2043,1,0,0,0,2043,2046,1,0,0,0,2044,2046, - 1,0,0,0,2045,2040,1,0,0,0,2045,2044,1,0,0,0,2046,299,1,0,0,0,2047, - 2048,5,516,0,0,2048,2049,3,302,151,0,2049,2050,5,517,0,0,2050,301, - 1,0,0,0,2051,2056,3,304,152,0,2052,2053,5,520,0,0,2053,2055,3,304, - 152,0,2054,2052,1,0,0,0,2055,2058,1,0,0,0,2056,2054,1,0,0,0,2056, - 2057,1,0,0,0,2057,303,1,0,0,0,2058,2056,1,0,0,0,2059,2063,3,306, - 153,0,2060,2063,3,308,154,0,2061,2063,3,374,187,0,2062,2059,1,0, - 0,0,2062,2060,1,0,0,0,2062,2061,1,0,0,0,2063,305,1,0,0,0,2064,2065, - 7,35,0,0,2065,307,1,0,0,0,2066,2067,5,537,0,0,2067,309,1,0,0,0,2068, - 2069,5,428,0,0,2069,2070,3,258,129,0,2070,2071,5,376,0,0,2071,2072, - 3,258,129,0,2072,311,1,0,0,0,2073,2074,3,304,152,0,2074,313,1,0, - 0,0,2075,2076,3,304,152,0,2076,315,1,0,0,0,2077,2080,3,304,152,0, - 2078,2079,5,513,0,0,2079,2081,3,304,152,0,2080,2078,1,0,0,0,2080, - 2081,1,0,0,0,2081,317,1,0,0,0,2082,2085,3,304,152,0,2083,2084,5, - 513,0,0,2084,2086,3,304,152,0,2085,2083,1,0,0,0,2085,2086,1,0,0, - 0,2086,319,1,0,0,0,2087,2090,3,304,152,0,2088,2089,5,513,0,0,2089, - 2091,3,304,152,0,2090,2088,1,0,0,0,2090,2091,1,0,0,0,2091,2100,1, - 0,0,0,2092,2093,3,304,152,0,2093,2094,5,513,0,0,2094,2097,3,304, - 152,0,2095,2096,5,513,0,0,2096,2098,3,304,152,0,2097,2095,1,0,0, - 0,2097,2098,1,0,0,0,2098,2100,1,0,0,0,2099,2087,1,0,0,0,2099,2092, - 1,0,0,0,2100,321,1,0,0,0,2101,2104,3,304,152,0,2102,2103,5,513,0, - 0,2103,2105,3,304,152,0,2104,2102,1,0,0,0,2104,2105,1,0,0,0,2105, - 2114,1,0,0,0,2106,2107,3,304,152,0,2107,2108,5,513,0,0,2108,2111, - 3,304,152,0,2109,2110,5,513,0,0,2110,2112,3,304,152,0,2111,2109, - 1,0,0,0,2111,2112,1,0,0,0,2112,2114,1,0,0,0,2113,2101,1,0,0,0,2113, - 2106,1,0,0,0,2114,323,1,0,0,0,2115,2118,3,304,152,0,2116,2117,5, - 513,0,0,2117,2119,3,304,152,0,2118,2116,1,0,0,0,2118,2119,1,0,0, - 0,2119,2128,1,0,0,0,2120,2121,3,304,152,0,2121,2122,5,513,0,0,2122, - 2125,3,304,152,0,2123,2124,5,513,0,0,2124,2126,3,304,152,0,2125, - 2123,1,0,0,0,2125,2126,1,0,0,0,2126,2128,1,0,0,0,2127,2115,1,0,0, - 0,2127,2120,1,0,0,0,2128,325,1,0,0,0,2129,2132,3,304,152,0,2130, - 2131,5,513,0,0,2131,2133,3,304,152,0,2132,2130,1,0,0,0,2132,2133, - 1,0,0,0,2133,2142,1,0,0,0,2134,2135,3,304,152,0,2135,2136,5,513, - 0,0,2136,2139,3,304,152,0,2137,2138,5,513,0,0,2138,2140,3,304,152, - 0,2139,2137,1,0,0,0,2139,2140,1,0,0,0,2140,2142,1,0,0,0,2141,2129, - 1,0,0,0,2141,2134,1,0,0,0,2142,327,1,0,0,0,2143,2148,3,304,152,0, - 2144,2145,5,513,0,0,2145,2147,3,304,152,0,2146,2144,1,0,0,0,2147, - 2150,1,0,0,0,2148,2149,1,0,0,0,2148,2146,1,0,0,0,2149,329,1,0,0, - 0,2150,2148,1,0,0,0,2151,2152,5,433,0,0,2152,2153,3,336,168,0,2153, - 331,1,0,0,0,2154,2155,5,167,0,0,2155,2156,5,241,0,0,2156,2157,5, - 133,0,0,2157,333,1,0,0,0,2158,2159,5,167,0,0,2159,2160,5,133,0,0, - 2160,335,1,0,0,0,2161,2162,5,516,0,0,2162,2167,3,338,169,0,2163, - 2164,5,520,0,0,2164,2166,3,338,169,0,2165,2163,1,0,0,0,2166,2169, - 1,0,0,0,2167,2165,1,0,0,0,2167,2168,1,0,0,0,2168,2170,1,0,0,0,2169, - 2167,1,0,0,0,2170,2171,5,517,0,0,2171,337,1,0,0,0,2172,2177,3,340, - 170,0,2173,2175,5,505,0,0,2174,2173,1,0,0,0,2174,2175,1,0,0,0,2175, - 2176,1,0,0,0,2176,2178,3,342,171,0,2177,2174,1,0,0,0,2177,2178,1, - 0,0,0,2178,339,1,0,0,0,2179,2183,3,304,152,0,2180,2183,3,276,138, - 0,2181,2183,5,537,0,0,2182,2179,1,0,0,0,2182,2180,1,0,0,0,2182,2181, - 1,0,0,0,2183,341,1,0,0,0,2184,2189,5,538,0,0,2185,2189,5,539,0,0, - 2186,2189,3,362,181,0,2187,2189,5,537,0,0,2188,2184,1,0,0,0,2188, - 2185,1,0,0,0,2188,2186,1,0,0,0,2188,2187,1,0,0,0,2189,343,1,0,0, - 0,2190,2197,5,10,0,0,2191,2192,5,511,0,0,2192,2197,5,511,0,0,2193, - 2197,5,257,0,0,2194,2195,5,510,0,0,2195,2197,5,510,0,0,2196,2190, - 1,0,0,0,2196,2191,1,0,0,0,2196,2193,1,0,0,0,2196,2194,1,0,0,0,2197, - 345,1,0,0,0,2198,2213,5,505,0,0,2199,2213,5,506,0,0,2200,2213,5, - 507,0,0,2201,2202,5,507,0,0,2202,2213,5,505,0,0,2203,2204,5,506, - 0,0,2204,2213,5,505,0,0,2205,2206,5,507,0,0,2206,2213,5,506,0,0, - 2207,2208,5,508,0,0,2208,2213,5,505,0,0,2209,2210,5,507,0,0,2210, - 2211,5,505,0,0,2211,2213,5,506,0,0,2212,2198,1,0,0,0,2212,2199,1, - 0,0,0,2212,2200,1,0,0,0,2212,2201,1,0,0,0,2212,2203,1,0,0,0,2212, - 2205,1,0,0,0,2212,2207,1,0,0,0,2212,2209,1,0,0,0,2213,347,1,0,0, - 0,2214,2215,5,507,0,0,2215,2222,5,507,0,0,2216,2217,5,506,0,0,2217, - 2222,5,506,0,0,2218,2222,5,511,0,0,2219,2222,5,512,0,0,2220,2222, - 5,510,0,0,2221,2214,1,0,0,0,2221,2216,1,0,0,0,2221,2218,1,0,0,0, - 2221,2219,1,0,0,0,2221,2220,1,0,0,0,2222,349,1,0,0,0,2223,2224,7, - 36,0,0,2224,351,1,0,0,0,2225,2226,7,37,0,0,2226,353,1,0,0,0,2227, - 2242,3,282,141,0,2228,2242,3,356,178,0,2229,2242,3,358,179,0,2230, - 2232,5,529,0,0,2231,2230,1,0,0,0,2231,2232,1,0,0,0,2232,2233,1,0, - 0,0,2233,2242,3,360,180,0,2234,2242,3,362,181,0,2235,2242,5,539, - 0,0,2236,2242,5,540,0,0,2237,2239,5,241,0,0,2238,2237,1,0,0,0,2238, - 2239,1,0,0,0,2239,2240,1,0,0,0,2240,2242,5,244,0,0,2241,2227,1,0, - 0,0,2241,2228,1,0,0,0,2241,2229,1,0,0,0,2241,2231,1,0,0,0,2241,2234, - 1,0,0,0,2241,2235,1,0,0,0,2241,2236,1,0,0,0,2241,2238,1,0,0,0,2242, - 355,1,0,0,0,2243,2244,3,366,183,0,2244,2245,3,358,179,0,2245,357, - 1,0,0,0,2246,2247,5,537,0,0,2247,359,1,0,0,0,2248,2249,5,538,0,0, - 2249,361,1,0,0,0,2250,2251,7,38,0,0,2251,363,1,0,0,0,2252,2253,7, - 39,0,0,2253,365,1,0,0,0,2254,2255,7,40,0,0,2255,367,1,0,0,0,2256, - 2257,7,41,0,0,2257,369,1,0,0,0,2258,2259,7,42,0,0,2259,371,1,0,0, - 0,2260,2261,7,43,0,0,2261,373,1,0,0,0,2262,2263,7,44,0,0,2263,375, - 1,0,0,0,268,379,386,389,403,421,425,434,439,446,457,466,478,481, + 1,134,1,134,1,134,1,134,1,134,1,134,3,134,1950,8,134,1,134,1,134, + 1,134,5,134,1955,8,134,10,134,12,134,1958,9,134,3,134,1960,8,134, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,3,134,1971, + 8,134,1,134,1,134,1,134,1,134,1,134,5,134,1978,8,134,10,134,12,134, + 1981,9,134,1,135,1,135,1,136,1,136,3,136,1987,8,136,1,137,1,137, + 1,137,1,137,3,137,1993,8,137,1,138,1,138,1,139,1,139,1,140,1,140, + 3,140,2001,8,140,1,141,1,141,1,141,3,141,2006,8,141,1,142,1,142, + 3,142,2010,8,142,1,143,1,143,1,143,4,143,2015,8,143,11,143,12,143, + 2016,1,144,1,144,1,144,3,144,2022,8,144,1,145,1,145,1,145,1,145, + 1,145,1,146,3,146,2030,8,146,1,146,1,146,3,146,2034,8,146,1,147, + 3,147,2037,8,147,1,147,1,147,3,147,2041,8,147,1,148,1,148,1,148, + 1,149,1,149,4,149,2048,8,149,11,149,12,149,2049,1,149,3,149,2053, + 8,149,1,150,1,150,1,150,1,150,1,151,1,151,1,151,5,151,2062,8,151, + 10,151,12,151,2065,9,151,1,152,1,152,1,152,3,152,2070,8,152,1,153, + 1,153,1,154,1,154,1,155,1,155,1,155,1,155,1,155,1,156,1,156,1,157, + 1,157,1,158,1,158,1,158,3,158,2088,8,158,1,159,1,159,1,159,3,159, + 2093,8,159,1,160,1,160,1,160,3,160,2098,8,160,1,160,1,160,1,160, + 1,160,1,160,3,160,2105,8,160,3,160,2107,8,160,1,161,1,161,1,161, + 3,161,2112,8,161,1,161,1,161,1,161,1,161,1,161,3,161,2119,8,161, + 3,161,2121,8,161,1,162,1,162,1,162,3,162,2126,8,162,1,162,1,162, + 1,162,1,162,1,162,3,162,2133,8,162,3,162,2135,8,162,1,163,1,163, + 1,163,3,163,2140,8,163,1,163,1,163,1,163,1,163,1,163,3,163,2147, + 8,163,3,163,2149,8,163,1,164,1,164,1,164,5,164,2154,8,164,10,164, + 12,164,2157,9,164,1,165,1,165,1,165,1,166,1,166,1,166,1,166,1,167, + 1,167,1,167,1,168,1,168,1,168,1,168,5,168,2173,8,168,10,168,12,168, + 2176,9,168,1,168,1,168,1,169,1,169,3,169,2182,8,169,1,169,3,169, + 2185,8,169,1,170,1,170,1,170,3,170,2190,8,170,1,171,1,171,1,171, + 1,171,3,171,2196,8,171,1,172,1,172,1,172,1,172,1,172,1,172,3,172, + 2204,8,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, + 1,173,1,173,1,173,1,173,1,173,3,173,2220,8,173,1,174,1,174,1,174, + 1,174,1,174,1,174,1,174,3,174,2229,8,174,1,175,1,175,1,176,1,176, + 1,177,1,177,1,177,1,177,3,177,2239,8,177,1,177,1,177,1,177,1,177, + 1,177,3,177,2246,8,177,1,177,3,177,2249,8,177,1,178,1,178,1,178, + 1,179,1,179,1,180,1,180,1,181,1,181,1,182,1,182,1,183,1,183,1,184, + 1,184,1,185,1,185,1,186,1,186,1,187,1,187,1,187,1,2155,5,158,178, + 260,266,268,188,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34, + 36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78, + 80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116, + 118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148, + 150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180, + 182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212, + 214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244, + 246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276, + 278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308, + 310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340, + 342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372, + 374,0,45,2,0,109,109,450,450,3,0,45,45,128,128,188,188,4,0,42,42, + 90,90,422,422,464,464,2,0,441,441,447,447,2,0,151,151,170,170,2, + 0,437,437,489,489,2,0,482,485,487,487,3,0,32,32,91,91,244,244,11, + 0,28,29,35,35,46,46,92,92,178,179,344,344,360,360,378,378,381,381, + 387,387,416,417,2,0,433,433,435,435,4,0,101,102,115,115,144,144, + 246,246,2,0,13,13,231,231,2,0,455,455,462,462,3,0,5,5,270,270,444, + 444,3,0,266,266,455,455,462,462,3,0,425,425,458,458,477,477,3,0, + 330,330,465,465,481,481,2,0,440,440,490,490,2,0,183,183,265,265, + 3,0,130,130,180,180,402,402,4,0,152,152,174,174,201,201,317,317, + 3,0,445,445,459,459,499,499,4,0,250,250,446,446,494,496,498,498, + 2,0,74,74,320,320,3,0,459,459,492,492,499,499,2,0,439,439,450,450, + 2,0,457,457,467,467,4,0,140,140,244,244,397,397,404,404,2,0,19,19, + 369,369,2,0,5,5,11,11,2,0,509,509,529,530,4,0,452,452,527,527,531, + 531,534,534,2,0,529,530,532,532,1,0,529,530,1,0,538,539,2,0,538, + 538,541,541,4,0,452,452,527,527,529,531,533,534,3,0,241,241,508, + 509,529,530,2,0,140,140,397,397,2,0,5,5,113,113,10,0,97,97,165,165, + 222,222,229,229,334,334,436,436,470,470,472,472,488,488,502,502, + 15,0,97,97,165,165,222,222,229,229,334,334,427,427,436,436,442,442, + 448,449,454,454,460,460,470,475,488,488,491,491,502,503,9,0,5,5, + 13,13,33,33,85,85,113,113,200,200,389,389,413,413,527,527,55,0,4, + 4,13,13,23,23,38,38,41,41,43,44,54,54,56,56,69,69,75,75,78,78,84, + 85,91,91,98,99,107,107,119,119,134,134,139,139,143,143,145,145,160, + 160,165,165,167,167,194,194,197,197,199,199,201,201,205,205,207, + 209,214,214,220,220,222,223,229,229,243,243,245,245,264,264,276, + 276,281,281,283,283,293,293,317,317,321,323,334,334,357,358,364, + 364,367,367,378,380,395,395,398,399,408,408,419,420,436,436,469, + 469,488,488,502,502,1,0,437,504,2475,0,379,1,0,0,0,2,389,1,0,0,0, + 4,403,1,0,0,0,6,405,1,0,0,0,8,421,1,0,0,0,10,425,1,0,0,0,12,427, + 1,0,0,0,14,430,1,0,0,0,16,441,1,0,0,0,18,449,1,0,0,0,20,457,1,0, + 0,0,22,459,1,0,0,0,24,511,1,0,0,0,26,513,1,0,0,0,28,520,1,0,0,0, + 30,524,1,0,0,0,32,528,1,0,0,0,34,532,1,0,0,0,36,586,1,0,0,0,38,592, + 1,0,0,0,40,598,1,0,0,0,42,600,1,0,0,0,44,641,1,0,0,0,46,655,1,0, + 0,0,48,657,1,0,0,0,50,667,1,0,0,0,52,671,1,0,0,0,54,673,1,0,0,0, + 56,721,1,0,0,0,58,723,1,0,0,0,60,727,1,0,0,0,62,735,1,0,0,0,64,743, + 1,0,0,0,66,747,1,0,0,0,68,754,1,0,0,0,70,782,1,0,0,0,72,784,1,0, + 0,0,74,787,1,0,0,0,76,797,1,0,0,0,78,799,1,0,0,0,80,805,1,0,0,0, + 82,807,1,0,0,0,84,815,1,0,0,0,86,823,1,0,0,0,88,825,1,0,0,0,90,829, + 1,0,0,0,92,833,1,0,0,0,94,856,1,0,0,0,96,860,1,0,0,0,98,862,1,0, + 0,0,100,878,1,0,0,0,102,880,1,0,0,0,104,885,1,0,0,0,106,896,1,0, + 0,0,108,914,1,0,0,0,110,934,1,0,0,0,112,945,1,0,0,0,114,947,1,0, + 0,0,116,960,1,0,0,0,118,967,1,0,0,0,120,970,1,0,0,0,122,979,1,0, + 0,0,124,983,1,0,0,0,126,987,1,0,0,0,128,990,1,0,0,0,130,998,1,0, + 0,0,132,1003,1,0,0,0,134,1020,1,0,0,0,136,1027,1,0,0,0,138,1037, + 1,0,0,0,140,1046,1,0,0,0,142,1056,1,0,0,0,144,1075,1,0,0,0,146,1077, + 1,0,0,0,148,1090,1,0,0,0,150,1093,1,0,0,0,152,1102,1,0,0,0,154,1113, + 1,0,0,0,156,1126,1,0,0,0,158,1161,1,0,0,0,160,1180,1,0,0,0,162,1189, + 1,0,0,0,164,1198,1,0,0,0,166,1217,1,0,0,0,168,1239,1,0,0,0,170,1241, + 1,0,0,0,172,1271,1,0,0,0,174,1285,1,0,0,0,176,1287,1,0,0,0,178,1301, + 1,0,0,0,180,1327,1,0,0,0,182,1382,1,0,0,0,184,1384,1,0,0,0,186,1390, + 1,0,0,0,188,1392,1,0,0,0,190,1397,1,0,0,0,192,1402,1,0,0,0,194,1414, + 1,0,0,0,196,1431,1,0,0,0,198,1433,1,0,0,0,200,1435,1,0,0,0,202,1444, + 1,0,0,0,204,1446,1,0,0,0,206,1449,1,0,0,0,208,1499,1,0,0,0,210,1501, + 1,0,0,0,212,1504,1,0,0,0,214,1506,1,0,0,0,216,1513,1,0,0,0,218,1515, + 1,0,0,0,220,1517,1,0,0,0,222,1520,1,0,0,0,224,1529,1,0,0,0,226,1534, + 1,0,0,0,228,1548,1,0,0,0,230,1576,1,0,0,0,232,1586,1,0,0,0,234,1594, + 1,0,0,0,236,1599,1,0,0,0,238,1625,1,0,0,0,240,1627,1,0,0,0,242,1636, + 1,0,0,0,244,1647,1,0,0,0,246,1659,1,0,0,0,248,1685,1,0,0,0,250,1687, + 1,0,0,0,252,1705,1,0,0,0,254,1707,1,0,0,0,256,1712,1,0,0,0,258,1715, + 1,0,0,0,260,1729,1,0,0,0,262,1815,1,0,0,0,264,1846,1,0,0,0,266,1852, + 1,0,0,0,268,1970,1,0,0,0,270,1982,1,0,0,0,272,1986,1,0,0,0,274,1992, + 1,0,0,0,276,1994,1,0,0,0,278,1996,1,0,0,0,280,2000,1,0,0,0,282,2002, + 1,0,0,0,284,2007,1,0,0,0,286,2014,1,0,0,0,288,2018,1,0,0,0,290,2023, + 1,0,0,0,292,2033,1,0,0,0,294,2036,1,0,0,0,296,2042,1,0,0,0,298,2052, + 1,0,0,0,300,2054,1,0,0,0,302,2058,1,0,0,0,304,2069,1,0,0,0,306,2071, + 1,0,0,0,308,2073,1,0,0,0,310,2075,1,0,0,0,312,2080,1,0,0,0,314,2082, + 1,0,0,0,316,2084,1,0,0,0,318,2089,1,0,0,0,320,2106,1,0,0,0,322,2120, + 1,0,0,0,324,2134,1,0,0,0,326,2148,1,0,0,0,328,2150,1,0,0,0,330,2158, + 1,0,0,0,332,2161,1,0,0,0,334,2165,1,0,0,0,336,2168,1,0,0,0,338,2179, + 1,0,0,0,340,2189,1,0,0,0,342,2195,1,0,0,0,344,2203,1,0,0,0,346,2219, + 1,0,0,0,348,2228,1,0,0,0,350,2230,1,0,0,0,352,2232,1,0,0,0,354,2248, + 1,0,0,0,356,2250,1,0,0,0,358,2253,1,0,0,0,360,2255,1,0,0,0,362,2257, + 1,0,0,0,364,2259,1,0,0,0,366,2261,1,0,0,0,368,2263,1,0,0,0,370,2265, + 1,0,0,0,372,2267,1,0,0,0,374,2269,1,0,0,0,376,378,3,2,1,0,377,376, + 1,0,0,0,378,381,1,0,0,0,379,377,1,0,0,0,379,380,1,0,0,0,380,382, + 1,0,0,0,381,379,1,0,0,0,382,383,5,0,0,1,383,1,1,0,0,0,384,386,3, + 4,2,0,385,387,5,521,0,0,386,385,1,0,0,0,386,387,1,0,0,0,387,390, + 1,0,0,0,388,390,3,6,3,0,389,384,1,0,0,0,389,388,1,0,0,0,390,3,1, + 0,0,0,391,404,3,8,4,0,392,404,3,10,5,0,393,404,3,12,6,0,394,404, + 3,14,7,0,395,404,3,20,10,0,396,404,3,24,12,0,397,404,3,26,13,0,398, + 404,3,28,14,0,399,404,3,30,15,0,400,404,3,32,16,0,401,404,3,34,17, + 0,402,404,3,36,18,0,403,391,1,0,0,0,403,392,1,0,0,0,403,393,1,0, + 0,0,403,394,1,0,0,0,403,395,1,0,0,0,403,396,1,0,0,0,403,397,1,0, + 0,0,403,398,1,0,0,0,403,399,1,0,0,0,403,400,1,0,0,0,403,401,1,0, + 0,0,403,402,1,0,0,0,404,5,1,0,0,0,405,406,5,521,0,0,406,7,1,0,0, + 0,407,422,3,40,20,0,408,422,3,104,52,0,409,422,3,106,53,0,410,422, + 3,108,54,0,411,422,3,102,51,0,412,422,3,114,57,0,413,422,3,128,64, + 0,414,422,3,130,65,0,415,422,3,132,66,0,416,422,3,134,67,0,417,422, + 3,136,68,0,418,422,3,138,69,0,419,422,3,140,70,0,420,422,3,142,71, + 0,421,407,1,0,0,0,421,408,1,0,0,0,421,409,1,0,0,0,421,410,1,0,0, + 0,421,411,1,0,0,0,421,412,1,0,0,0,421,413,1,0,0,0,421,414,1,0,0, + 0,421,415,1,0,0,0,421,416,1,0,0,0,421,417,1,0,0,0,421,418,1,0,0, + 0,421,419,1,0,0,0,421,420,1,0,0,0,422,9,1,0,0,0,423,426,3,158,79, + 0,424,426,3,144,72,0,425,423,1,0,0,0,425,424,1,0,0,0,426,11,1,0, + 0,0,427,428,7,0,0,0,428,429,3,322,161,0,429,13,1,0,0,0,430,434,5, + 135,0,0,431,435,3,16,8,0,432,433,5,479,0,0,433,435,5,146,0,0,434, + 431,1,0,0,0,434,432,1,0,0,0,434,435,1,0,0,0,435,439,1,0,0,0,436, + 440,3,10,5,0,437,440,3,146,73,0,438,440,3,156,78,0,439,436,1,0,0, + 0,439,437,1,0,0,0,439,438,1,0,0,0,440,15,1,0,0,0,441,446,3,18,9, + 0,442,443,5,520,0,0,443,445,3,18,9,0,444,442,1,0,0,0,445,448,1,0, + 0,0,446,444,1,0,0,0,446,447,1,0,0,0,447,17,1,0,0,0,448,446,1,0,0, + 0,449,450,7,1,0,0,450,19,1,0,0,0,451,452,5,410,0,0,452,453,5,441, + 0,0,453,458,3,312,156,0,454,455,5,410,0,0,455,458,3,316,158,0,456, + 458,3,22,11,0,457,451,1,0,0,0,457,454,1,0,0,0,457,456,1,0,0,0,458, + 21,1,0,0,0,459,460,5,410,0,0,460,461,5,227,0,0,461,466,3,328,164, + 0,462,463,5,520,0,0,463,465,3,328,164,0,464,462,1,0,0,0,465,468, + 1,0,0,0,466,464,1,0,0,0,466,467,1,0,0,0,467,23,1,0,0,0,468,466,1, + 0,0,0,469,470,5,341,0,0,470,512,7,2,0,0,471,472,5,341,0,0,472,473, + 5,76,0,0,473,512,7,3,0,0,474,475,5,341,0,0,475,478,5,374,0,0,476, + 477,7,4,0,0,477,479,3,316,158,0,478,476,1,0,0,0,478,479,1,0,0,0, + 479,481,1,0,0,0,480,482,3,264,132,0,481,480,1,0,0,0,481,482,1,0, + 0,0,482,512,1,0,0,0,483,484,5,341,0,0,484,485,5,58,0,0,485,488,7, + 4,0,0,486,489,3,324,162,0,487,489,3,322,161,0,488,486,1,0,0,0,488, + 487,1,0,0,0,489,491,1,0,0,0,490,492,3,264,132,0,491,490,1,0,0,0, + 491,492,1,0,0,0,492,512,1,0,0,0,493,494,5,341,0,0,494,499,5,72,0, + 0,495,496,5,373,0,0,496,500,3,322,161,0,497,498,5,501,0,0,498,500, + 3,324,162,0,499,495,1,0,0,0,499,497,1,0,0,0,500,512,1,0,0,0,501, + 503,5,341,0,0,502,504,5,411,0,0,503,502,1,0,0,0,503,504,1,0,0,0, + 504,505,1,0,0,0,505,512,5,154,0,0,506,508,5,341,0,0,507,509,5,152, + 0,0,508,507,1,0,0,0,508,509,1,0,0,0,509,510,1,0,0,0,510,512,5,227, + 0,0,511,469,1,0,0,0,511,471,1,0,0,0,511,474,1,0,0,0,511,483,1,0, + 0,0,511,493,1,0,0,0,511,501,1,0,0,0,511,506,1,0,0,0,512,25,1,0,0, + 0,513,514,5,468,0,0,514,515,5,226,0,0,515,518,3,328,164,0,516,517, + 5,433,0,0,517,519,3,336,168,0,518,516,1,0,0,0,518,519,1,0,0,0,519, + 27,1,0,0,0,520,521,5,500,0,0,521,522,5,226,0,0,522,523,3,328,164, + 0,523,29,1,0,0,0,524,526,5,340,0,0,525,527,3,338,169,0,526,525,1, + 0,0,0,526,527,1,0,0,0,527,31,1,0,0,0,528,530,5,312,0,0,529,531,3, + 340,170,0,530,529,1,0,0,0,530,531,1,0,0,0,531,33,1,0,0,0,532,533, + 7,5,0,0,533,534,5,463,0,0,534,535,3,112,56,0,535,35,1,0,0,0,536, + 537,5,437,0,0,537,538,5,463,0,0,538,539,5,433,0,0,539,542,3,38,19, + 0,540,541,5,17,0,0,541,543,3,328,164,0,542,540,1,0,0,0,542,543,1, + 0,0,0,543,587,1,0,0,0,544,545,5,437,0,0,545,546,5,456,0,0,546,547, + 5,433,0,0,547,550,3,38,19,0,548,549,5,17,0,0,549,551,3,328,164,0, + 550,548,1,0,0,0,550,551,1,0,0,0,551,554,1,0,0,0,552,553,5,311,0, + 0,553,555,3,328,164,0,554,552,1,0,0,0,554,555,1,0,0,0,555,587,1, + 0,0,0,556,557,5,437,0,0,557,558,7,6,0,0,558,559,5,433,0,0,559,560, + 3,38,19,0,560,561,5,311,0,0,561,562,3,328,164,0,562,587,1,0,0,0, + 563,564,5,437,0,0,564,565,5,486,0,0,565,587,3,38,19,0,566,567,5, + 437,0,0,567,568,5,453,0,0,568,569,5,456,0,0,569,570,5,433,0,0,570, + 571,3,38,19,0,571,572,5,311,0,0,572,573,3,328,164,0,573,574,5,466, + 0,0,574,575,3,328,164,0,575,587,1,0,0,0,576,577,5,437,0,0,577,578, + 5,443,0,0,578,579,5,456,0,0,579,580,5,433,0,0,580,581,3,38,19,0, + 581,582,5,146,0,0,582,583,3,328,164,0,583,584,5,17,0,0,584,585,3, + 328,164,0,585,587,1,0,0,0,586,536,1,0,0,0,586,544,1,0,0,0,586,556, + 1,0,0,0,586,563,1,0,0,0,586,566,1,0,0,0,586,576,1,0,0,0,587,37,1, + 0,0,0,588,590,5,534,0,0,589,588,1,0,0,0,589,590,1,0,0,0,590,591, + 1,0,0,0,591,593,3,328,164,0,592,589,1,0,0,0,593,594,1,0,0,0,594, + 592,1,0,0,0,594,595,1,0,0,0,595,39,1,0,0,0,596,599,3,42,21,0,597, + 599,3,44,22,0,598,596,1,0,0,0,598,597,1,0,0,0,599,41,1,0,0,0,600, + 602,5,72,0,0,601,603,5,497,0,0,602,601,1,0,0,0,602,603,1,0,0,0,603, + 604,1,0,0,0,604,606,5,373,0,0,605,607,3,332,166,0,606,605,1,0,0, + 0,606,607,1,0,0,0,607,608,1,0,0,0,608,609,3,320,160,0,609,610,5, + 516,0,0,610,615,3,46,23,0,611,612,5,520,0,0,612,614,3,46,23,0,613, + 611,1,0,0,0,614,617,1,0,0,0,615,613,1,0,0,0,615,616,1,0,0,0,616, + 620,1,0,0,0,617,615,1,0,0,0,618,619,5,520,0,0,619,621,3,82,41,0, + 620,618,1,0,0,0,620,621,1,0,0,0,621,624,1,0,0,0,622,623,5,520,0, + 0,623,625,3,84,42,0,624,622,1,0,0,0,624,625,1,0,0,0,625,628,1,0, + 0,0,626,627,5,520,0,0,627,629,3,88,44,0,628,626,1,0,0,0,628,629, + 1,0,0,0,629,630,1,0,0,0,630,632,5,517,0,0,631,633,3,72,36,0,632, + 631,1,0,0,0,632,633,1,0,0,0,633,635,1,0,0,0,634,636,3,90,45,0,635, + 634,1,0,0,0,635,636,1,0,0,0,636,637,1,0,0,0,637,639,3,330,165,0, + 638,640,3,98,49,0,639,638,1,0,0,0,639,640,1,0,0,0,640,43,1,0,0,0, + 641,642,5,72,0,0,642,644,5,373,0,0,643,645,3,332,166,0,644,643,1, + 0,0,0,644,645,1,0,0,0,645,646,1,0,0,0,646,647,3,320,160,0,647,650, + 3,330,165,0,648,649,5,17,0,0,649,651,3,158,79,0,650,648,1,0,0,0, + 650,651,1,0,0,0,651,45,1,0,0,0,652,656,3,48,24,0,653,656,3,74,37, + 0,654,656,3,78,39,0,655,652,1,0,0,0,655,653,1,0,0,0,655,654,1,0, + 0,0,656,47,1,0,0,0,657,658,3,50,25,0,658,660,3,56,28,0,659,661,3, + 70,35,0,660,659,1,0,0,0,660,661,1,0,0,0,661,663,1,0,0,0,662,664, + 3,72,36,0,663,662,1,0,0,0,663,664,1,0,0,0,664,49,1,0,0,0,665,668, + 3,328,164,0,666,668,3,258,129,0,667,665,1,0,0,0,667,666,1,0,0,0, + 668,51,1,0,0,0,669,672,3,328,164,0,670,672,4,26,0,0,671,669,1,0, + 0,0,671,670,1,0,0,0,672,53,1,0,0,0,673,674,5,516,0,0,674,679,3,52, + 26,0,675,676,5,520,0,0,676,678,3,52,26,0,677,675,1,0,0,0,678,681, + 1,0,0,0,679,677,1,0,0,0,679,680,1,0,0,0,680,682,1,0,0,0,681,679, + 1,0,0,0,682,683,5,517,0,0,683,55,1,0,0,0,684,722,7,7,0,0,685,687, + 7,8,0,0,686,688,3,58,29,0,687,686,1,0,0,0,687,688,1,0,0,0,688,722, + 1,0,0,0,689,691,5,379,0,0,690,692,3,58,29,0,691,690,1,0,0,0,691, + 692,1,0,0,0,692,699,1,0,0,0,693,695,7,9,0,0,694,696,5,206,0,0,695, + 694,1,0,0,0,695,696,1,0,0,0,696,697,1,0,0,0,697,698,5,378,0,0,698, + 700,5,504,0,0,699,693,1,0,0,0,699,700,1,0,0,0,700,722,1,0,0,0,701, + 703,7,10,0,0,702,704,3,60,30,0,703,702,1,0,0,0,703,704,1,0,0,0,704, + 722,1,0,0,0,705,707,7,11,0,0,706,708,3,64,32,0,707,706,1,0,0,0,707, + 708,1,0,0,0,708,722,1,0,0,0,709,711,5,469,0,0,710,712,3,66,33,0, + 711,710,1,0,0,0,711,712,1,0,0,0,712,722,1,0,0,0,713,715,5,321,0, + 0,714,716,3,68,34,0,715,714,1,0,0,0,715,716,1,0,0,0,716,722,1,0, + 0,0,717,719,5,294,0,0,718,720,3,62,31,0,719,718,1,0,0,0,719,720, + 1,0,0,0,720,722,1,0,0,0,721,684,1,0,0,0,721,685,1,0,0,0,721,689, + 1,0,0,0,721,701,1,0,0,0,721,705,1,0,0,0,721,709,1,0,0,0,721,713, + 1,0,0,0,721,717,1,0,0,0,722,57,1,0,0,0,723,724,5,516,0,0,724,725, + 3,360,180,0,725,726,5,517,0,0,726,59,1,0,0,0,727,728,5,516,0,0,728, + 731,3,360,180,0,729,730,5,520,0,0,730,732,3,360,180,0,731,729,1, + 0,0,0,731,732,1,0,0,0,732,733,1,0,0,0,733,734,5,517,0,0,734,61,1, + 0,0,0,735,736,5,516,0,0,736,739,3,358,179,0,737,738,5,520,0,0,738, + 740,3,358,179,0,739,737,1,0,0,0,739,740,1,0,0,0,740,741,1,0,0,0, + 741,742,5,517,0,0,742,63,1,0,0,0,743,744,5,507,0,0,744,745,3,56, + 28,0,745,746,5,506,0,0,746,65,1,0,0,0,747,748,5,507,0,0,748,749, + 3,56,28,0,749,750,5,520,0,0,750,751,3,56,28,0,751,752,1,0,0,0,752, + 753,5,506,0,0,753,67,1,0,0,0,754,755,5,507,0,0,755,756,3,52,26,0, + 756,763,3,56,28,0,757,758,5,520,0,0,758,759,3,52,26,0,759,760,3, + 56,28,0,760,762,1,0,0,0,761,757,1,0,0,0,762,765,1,0,0,0,763,761, + 1,0,0,0,763,764,1,0,0,0,764,766,1,0,0,0,765,763,1,0,0,0,766,767, + 5,506,0,0,767,69,1,0,0,0,768,769,5,64,0,0,769,771,3,86,43,0,770, + 768,1,0,0,0,770,771,1,0,0,0,771,772,1,0,0,0,772,773,5,288,0,0,773, + 776,5,466,0,0,774,775,5,241,0,0,775,777,5,125,0,0,776,774,1,0,0, + 0,776,777,1,0,0,0,777,783,1,0,0,0,778,780,5,241,0,0,779,778,1,0, + 0,0,779,780,1,0,0,0,780,781,1,0,0,0,781,783,5,244,0,0,782,770,1, + 0,0,0,782,779,1,0,0,0,783,71,1,0,0,0,784,785,5,59,0,0,785,786,5, + 537,0,0,786,73,1,0,0,0,787,788,3,50,25,0,788,789,3,56,28,0,789,792, + 5,218,0,0,790,791,5,151,0,0,791,793,3,76,38,0,792,790,1,0,0,0,792, + 793,1,0,0,0,793,795,1,0,0,0,794,796,5,423,0,0,795,794,1,0,0,0,795, + 796,1,0,0,0,796,75,1,0,0,0,797,798,5,537,0,0,798,77,1,0,0,0,799, + 800,3,50,25,0,800,801,5,17,0,0,801,803,3,80,40,0,802,804,3,72,36, + 0,803,802,1,0,0,0,803,804,1,0,0,0,804,79,1,0,0,0,805,806,3,258,129, + 0,806,81,1,0,0,0,807,808,5,424,0,0,808,809,5,146,0,0,809,810,3,52, + 26,0,810,811,5,17,0,0,811,812,3,258,129,0,812,83,1,0,0,0,813,814, + 5,64,0,0,814,816,3,86,43,0,815,813,1,0,0,0,815,816,1,0,0,0,816,817, + 1,0,0,0,817,818,5,288,0,0,818,819,5,466,0,0,819,820,3,54,27,0,820, + 821,5,241,0,0,821,822,5,125,0,0,822,85,1,0,0,0,823,824,3,304,152, + 0,824,87,1,0,0,0,825,826,5,277,0,0,826,827,5,146,0,0,827,828,5,371, + 0,0,828,89,1,0,0,0,829,830,5,269,0,0,830,831,5,34,0,0,831,832,3, + 92,46,0,832,91,1,0,0,0,833,834,5,516,0,0,834,839,3,94,47,0,835,836, + 5,520,0,0,836,838,3,94,47,0,837,835,1,0,0,0,838,841,1,0,0,0,839, + 837,1,0,0,0,839,840,1,0,0,0,840,842,1,0,0,0,841,839,1,0,0,0,842, + 843,5,517,0,0,843,93,1,0,0,0,844,857,3,52,26,0,845,846,5,516,0,0, + 846,851,3,96,48,0,847,848,5,520,0,0,848,850,3,96,48,0,849,847,1, + 0,0,0,850,853,1,0,0,0,851,849,1,0,0,0,851,852,1,0,0,0,852,854,1, + 0,0,0,853,851,1,0,0,0,854,855,5,517,0,0,855,857,1,0,0,0,856,844, + 1,0,0,0,856,845,1,0,0,0,857,95,1,0,0,0,858,861,3,280,140,0,859,861, + 3,354,177,0,860,858,1,0,0,0,860,859,1,0,0,0,861,97,1,0,0,0,862,863, + 5,202,0,0,863,872,3,322,161,0,864,868,5,516,0,0,865,867,3,100,50, + 0,866,865,1,0,0,0,867,870,1,0,0,0,868,866,1,0,0,0,868,869,1,0,0, + 0,869,871,1,0,0,0,870,868,1,0,0,0,871,873,5,517,0,0,872,864,1,0, + 0,0,872,873,1,0,0,0,873,99,1,0,0,0,874,875,7,12,0,0,875,879,7,13, + 0,0,876,877,7,14,0,0,877,879,7,15,0,0,878,874,1,0,0,0,878,876,1, + 0,0,0,879,101,1,0,0,0,880,881,5,72,0,0,881,882,5,441,0,0,882,883, + 3,314,157,0,883,884,3,330,165,0,884,103,1,0,0,0,885,886,5,72,0,0, + 886,888,5,447,0,0,887,889,3,332,166,0,888,887,1,0,0,0,888,889,1, + 0,0,0,889,890,1,0,0,0,890,892,3,318,159,0,891,893,3,72,36,0,892, + 891,1,0,0,0,892,893,1,0,0,0,893,894,1,0,0,0,894,895,3,330,165,0, + 895,105,1,0,0,0,896,898,5,72,0,0,897,899,5,497,0,0,898,897,1,0,0, + 0,898,899,1,0,0,0,899,900,1,0,0,0,900,902,5,501,0,0,901,903,3,332, + 166,0,902,901,1,0,0,0,902,903,1,0,0,0,903,904,1,0,0,0,904,906,3, + 326,163,0,905,907,3,54,27,0,906,905,1,0,0,0,906,907,1,0,0,0,907, + 909,1,0,0,0,908,910,3,72,36,0,909,908,1,0,0,0,909,910,1,0,0,0,910, + 911,1,0,0,0,911,912,5,17,0,0,912,913,3,158,79,0,913,107,1,0,0,0, + 914,918,5,72,0,0,915,919,5,497,0,0,916,917,5,497,0,0,917,919,5,370, + 0,0,918,915,1,0,0,0,918,916,1,0,0,0,918,919,1,0,0,0,919,920,1,0, + 0,0,920,922,5,153,0,0,921,923,3,332,166,0,922,921,1,0,0,0,922,923, + 1,0,0,0,923,924,1,0,0,0,924,925,3,270,135,0,925,926,5,17,0,0,926, + 929,3,304,152,0,927,928,5,195,0,0,928,930,7,16,0,0,929,927,1,0,0, + 0,929,930,1,0,0,0,930,932,1,0,0,0,931,933,3,110,55,0,932,931,1,0, + 0,0,932,933,1,0,0,0,933,109,1,0,0,0,934,935,5,412,0,0,935,936,5, + 463,0,0,936,942,3,112,56,0,937,938,5,520,0,0,938,939,5,463,0,0,939, + 941,3,112,56,0,940,937,1,0,0,0,941,944,1,0,0,0,942,940,1,0,0,0,942, + 943,1,0,0,0,943,111,1,0,0,0,944,942,1,0,0,0,945,946,5,537,0,0,946, + 113,1,0,0,0,947,948,5,8,0,0,948,950,5,373,0,0,949,951,3,334,167, + 0,950,949,1,0,0,0,950,951,1,0,0,0,951,952,1,0,0,0,952,958,3,322, + 161,0,953,959,3,116,58,0,954,959,3,118,59,0,955,959,3,120,60,0,956, + 959,3,122,61,0,957,959,3,124,62,0,958,953,1,0,0,0,958,954,1,0,0, + 0,958,955,1,0,0,0,958,956,1,0,0,0,958,957,1,0,0,0,959,115,1,0,0, + 0,960,962,5,311,0,0,961,963,3,328,164,0,962,961,1,0,0,0,962,963, + 1,0,0,0,963,964,1,0,0,0,964,965,5,388,0,0,965,966,3,328,164,0,966, + 117,1,0,0,0,967,968,5,340,0,0,968,969,3,336,168,0,969,119,1,0,0, + 0,970,971,5,437,0,0,971,972,5,64,0,0,972,973,3,86,43,0,973,974,5, + 288,0,0,974,975,5,466,0,0,975,977,3,54,27,0,976,978,3,126,63,0,977, + 976,1,0,0,0,977,978,1,0,0,0,978,121,1,0,0,0,979,980,5,116,0,0,980, + 981,5,64,0,0,981,982,3,86,43,0,982,123,1,0,0,0,983,984,5,437,0,0, + 984,985,5,403,0,0,985,986,3,54,27,0,986,125,1,0,0,0,987,988,5,241, + 0,0,988,989,5,125,0,0,989,127,1,0,0,0,990,991,5,8,0,0,991,992,5, + 501,0,0,992,996,3,324,162,0,993,997,3,116,58,0,994,995,5,17,0,0, + 995,997,3,158,79,0,996,993,1,0,0,0,996,994,1,0,0,0,997,129,1,0,0, + 0,998,999,5,8,0,0,999,1000,5,447,0,0,1000,1001,3,316,158,0,1001, + 1002,3,118,59,0,1002,131,1,0,0,0,1003,1007,5,8,0,0,1004,1008,5,497, + 0,0,1005,1006,5,497,0,0,1006,1008,5,370,0,0,1007,1004,1,0,0,0,1007, + 1005,1,0,0,0,1007,1008,1,0,0,0,1008,1009,1,0,0,0,1009,1011,5,153, + 0,0,1010,1012,3,334,167,0,1011,1010,1,0,0,0,1011,1012,1,0,0,0,1012, + 1013,1,0,0,0,1013,1014,3,272,136,0,1014,1015,5,17,0,0,1015,1018, + 3,304,152,0,1016,1017,5,195,0,0,1017,1019,7,16,0,0,1018,1016,1,0, + 0,0,1018,1019,1,0,0,0,1019,133,1,0,0,0,1020,1021,5,116,0,0,1021, + 1023,5,441,0,0,1022,1024,3,334,167,0,1023,1022,1,0,0,0,1023,1024, + 1,0,0,0,1024,1025,1,0,0,0,1025,1026,3,312,156,0,1026,135,1,0,0,0, + 1027,1029,5,116,0,0,1028,1030,5,497,0,0,1029,1028,1,0,0,0,1029,1030, + 1,0,0,0,1030,1031,1,0,0,0,1031,1033,5,373,0,0,1032,1034,3,334,167, + 0,1033,1032,1,0,0,0,1033,1034,1,0,0,0,1034,1035,1,0,0,0,1035,1036, + 3,322,161,0,1036,137,1,0,0,0,1037,1038,5,116,0,0,1038,1040,5,447, + 0,0,1039,1041,3,334,167,0,1040,1039,1,0,0,0,1040,1041,1,0,0,0,1041, + 1042,1,0,0,0,1042,1044,3,316,158,0,1043,1045,7,17,0,0,1044,1043, + 1,0,0,0,1044,1045,1,0,0,0,1045,139,1,0,0,0,1046,1048,5,116,0,0,1047, + 1049,5,497,0,0,1048,1047,1,0,0,0,1048,1049,1,0,0,0,1049,1050,1,0, + 0,0,1050,1052,5,501,0,0,1051,1053,3,334,167,0,1052,1051,1,0,0,0, + 1052,1053,1,0,0,0,1053,1054,1,0,0,0,1054,1055,3,324,162,0,1055,141, + 1,0,0,0,1056,1060,5,116,0,0,1057,1061,5,497,0,0,1058,1059,5,497, + 0,0,1059,1061,5,370,0,0,1060,1057,1,0,0,0,1060,1058,1,0,0,0,1060, + 1061,1,0,0,0,1061,1062,1,0,0,0,1062,1064,5,153,0,0,1063,1065,3,334, + 167,0,1064,1063,1,0,0,0,1064,1065,1,0,0,0,1065,1066,1,0,0,0,1066, + 1067,3,272,136,0,1067,143,1,0,0,0,1068,1070,5,132,0,0,1069,1068, + 1,0,0,0,1069,1070,1,0,0,0,1070,1071,1,0,0,0,1071,1076,3,146,73,0, + 1072,1076,3,154,77,0,1073,1074,5,132,0,0,1074,1076,3,156,78,0,1075, + 1069,1,0,0,0,1075,1072,1,0,0,0,1075,1073,1,0,0,0,1076,145,1,0,0, + 0,1077,1078,5,177,0,0,1078,1079,7,18,0,0,1079,1088,3,322,161,0,1080, + 1082,3,148,74,0,1081,1080,1,0,0,0,1081,1082,1,0,0,0,1082,1084,1, + 0,0,0,1083,1085,3,54,27,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085, + 1086,1,0,0,0,1086,1089,3,158,79,0,1087,1089,3,150,75,0,1088,1081, + 1,0,0,0,1088,1087,1,0,0,0,1089,147,1,0,0,0,1090,1091,5,268,0,0,1091, + 1092,3,336,168,0,1092,149,1,0,0,0,1093,1094,5,414,0,0,1094,1099, + 3,152,76,0,1095,1096,5,520,0,0,1096,1098,3,152,76,0,1097,1095,1, + 0,0,0,1098,1101,1,0,0,0,1099,1097,1,0,0,0,1099,1100,1,0,0,0,1100, + 151,1,0,0,0,1101,1099,1,0,0,0,1102,1103,5,516,0,0,1103,1108,3,354, + 177,0,1104,1105,5,520,0,0,1105,1107,3,354,177,0,1106,1104,1,0,0, + 0,1107,1110,1,0,0,0,1108,1106,1,0,0,0,1108,1109,1,0,0,0,1109,1111, + 1,0,0,0,1110,1108,1,0,0,0,1111,1112,5,517,0,0,1112,153,1,0,0,0,1113, + 1114,5,24,0,0,1114,1115,5,354,0,0,1115,1116,5,340,0,0,1116,1120, + 5,521,0,0,1117,1118,3,146,73,0,1118,1119,5,521,0,0,1119,1121,1,0, + 0,0,1120,1117,1,0,0,0,1121,1122,1,0,0,0,1122,1120,1,0,0,0,1122,1123, + 1,0,0,0,1123,1124,1,0,0,0,1124,1125,5,122,0,0,1125,155,1,0,0,0,1126, + 1127,5,354,0,0,1127,1128,5,340,0,0,1128,1132,5,24,0,0,1129,1130, + 3,146,73,0,1130,1131,5,521,0,0,1131,1133,1,0,0,0,1132,1129,1,0,0, + 0,1133,1134,1,0,0,0,1134,1132,1,0,0,0,1134,1135,1,0,0,0,1135,1136, + 1,0,0,0,1136,1137,5,122,0,0,1137,157,1,0,0,0,1138,1139,6,79,-1,0, + 1139,1162,3,160,80,0,1140,1141,3,162,81,0,1141,1142,3,158,79,5,1142, + 1162,1,0,0,0,1143,1144,5,516,0,0,1144,1145,3,158,79,0,1145,1146, + 5,517,0,0,1146,1162,1,0,0,0,1147,1149,3,170,85,0,1148,1150,3,230, + 115,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0,1150,1152,1,0,0,0,1151, + 1153,3,234,117,0,1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1162,1, + 0,0,0,1154,1156,3,168,84,0,1155,1157,3,230,115,0,1156,1155,1,0,0, + 0,1156,1157,1,0,0,0,1157,1159,1,0,0,0,1158,1160,3,234,117,0,1159, + 1158,1,0,0,0,1159,1160,1,0,0,0,1160,1162,1,0,0,0,1161,1138,1,0,0, + 0,1161,1140,1,0,0,0,1161,1143,1,0,0,0,1161,1147,1,0,0,0,1161,1154, + 1,0,0,0,1162,1177,1,0,0,0,1163,1164,10,3,0,0,1164,1166,7,19,0,0, + 1165,1167,5,5,0,0,1166,1165,1,0,0,0,1166,1167,1,0,0,0,1167,1168, + 1,0,0,0,1168,1170,3,158,79,0,1169,1171,3,230,115,0,1170,1169,1,0, + 0,0,1170,1171,1,0,0,0,1171,1173,1,0,0,0,1172,1174,3,234,117,0,1173, + 1172,1,0,0,0,1173,1174,1,0,0,0,1174,1176,1,0,0,0,1175,1163,1,0,0, + 0,1176,1179,1,0,0,0,1177,1175,1,0,0,0,1177,1178,1,0,0,0,1178,159, + 1,0,0,0,1179,1177,1,0,0,0,1180,1181,5,414,0,0,1181,1186,3,258,129, + 0,1182,1183,5,520,0,0,1183,1185,3,258,129,0,1184,1182,1,0,0,0,1185, + 1188,1,0,0,0,1186,1184,1,0,0,0,1186,1187,1,0,0,0,1187,161,1,0,0, + 0,1188,1186,1,0,0,0,1189,1190,5,433,0,0,1190,1195,3,164,82,0,1191, + 1192,5,520,0,0,1192,1194,3,164,82,0,1193,1191,1,0,0,0,1194,1197, + 1,0,0,0,1195,1193,1,0,0,0,1195,1196,1,0,0,0,1196,163,1,0,0,0,1197, + 1195,1,0,0,0,1198,1210,3,166,83,0,1199,1200,5,516,0,0,1200,1205, + 3,52,26,0,1201,1202,5,520,0,0,1202,1204,3,52,26,0,1203,1201,1,0, + 0,0,1204,1207,1,0,0,0,1205,1203,1,0,0,0,1205,1206,1,0,0,0,1206,1208, + 1,0,0,0,1207,1205,1,0,0,0,1208,1209,5,517,0,0,1209,1211,1,0,0,0, + 1210,1199,1,0,0,0,1210,1211,1,0,0,0,1211,1212,1,0,0,0,1212,1213, + 5,17,0,0,1213,1214,5,516,0,0,1214,1215,3,158,79,0,1215,1216,5,517, + 0,0,1216,165,1,0,0,0,1217,1218,3,304,152,0,1218,167,1,0,0,0,1219, + 1221,3,170,85,0,1220,1222,3,176,88,0,1221,1220,1,0,0,0,1221,1222, + 1,0,0,0,1222,1224,1,0,0,0,1223,1225,3,204,102,0,1224,1223,1,0,0, + 0,1224,1225,1,0,0,0,1225,1227,1,0,0,0,1226,1228,3,206,103,0,1227, + 1226,1,0,0,0,1227,1228,1,0,0,0,1228,1230,1,0,0,0,1229,1231,3,220, + 110,0,1230,1229,1,0,0,0,1230,1231,1,0,0,0,1231,1233,1,0,0,0,1232, + 1234,3,222,111,0,1233,1232,1,0,0,0,1233,1234,1,0,0,0,1234,1240,1, + 0,0,0,1235,1236,3,170,85,0,1236,1237,3,176,88,0,1237,1238,3,228, + 114,0,1238,1240,1,0,0,0,1239,1219,1,0,0,0,1239,1235,1,0,0,0,1240, + 169,1,0,0,0,1241,1243,5,336,0,0,1242,1244,3,364,182,0,1243,1242, + 1,0,0,0,1243,1244,1,0,0,0,1244,1254,1,0,0,0,1245,1255,5,527,0,0, + 1246,1251,3,172,86,0,1247,1248,5,520,0,0,1248,1250,3,172,86,0,1249, + 1247,1,0,0,0,1250,1253,1,0,0,0,1251,1249,1,0,0,0,1251,1252,1,0,0, + 0,1252,1255,1,0,0,0,1253,1251,1,0,0,0,1254,1245,1,0,0,0,1254,1246, + 1,0,0,0,1255,171,1,0,0,0,1256,1272,3,174,87,0,1257,1262,3,52,26, + 0,1258,1260,5,17,0,0,1259,1258,1,0,0,0,1259,1260,1,0,0,0,1260,1261, + 1,0,0,0,1261,1263,3,258,129,0,1262,1259,1,0,0,0,1262,1263,1,0,0, + 0,1263,1272,1,0,0,0,1264,1269,3,258,129,0,1265,1267,5,17,0,0,1266, + 1265,1,0,0,0,1266,1267,1,0,0,0,1267,1268,1,0,0,0,1268,1270,3,52, + 26,0,1269,1266,1,0,0,0,1269,1270,1,0,0,0,1270,1272,1,0,0,0,1271, + 1256,1,0,0,0,1271,1257,1,0,0,0,1271,1264,1,0,0,0,1272,173,1,0,0, + 0,1273,1274,3,268,134,0,1274,1275,5,262,0,0,1275,1276,3,226,113, + 0,1276,1277,5,17,0,0,1277,1278,3,304,152,0,1278,1286,1,0,0,0,1279, + 1280,3,268,134,0,1280,1281,5,262,0,0,1281,1282,3,296,148,0,1282, + 1283,5,17,0,0,1283,1284,3,304,152,0,1284,1286,1,0,0,0,1285,1273, + 1,0,0,0,1285,1279,1,0,0,0,1286,175,1,0,0,0,1287,1288,5,151,0,0,1288, + 1289,3,178,89,0,1289,177,1,0,0,0,1290,1291,6,89,-1,0,1291,1296,3, + 180,90,0,1292,1293,5,520,0,0,1293,1295,3,180,90,0,1294,1292,1,0, + 0,0,1295,1298,1,0,0,0,1296,1294,1,0,0,0,1296,1297,1,0,0,0,1297,1302, + 1,0,0,0,1298,1296,1,0,0,0,1299,1302,3,188,94,0,1300,1302,3,190,95, + 0,1301,1290,1,0,0,0,1301,1299,1,0,0,0,1301,1300,1,0,0,0,1302,1324, + 1,0,0,0,1303,1304,10,3,0,0,1304,1305,5,73,0,0,1305,1306,5,185,0, + 0,1306,1323,3,178,89,4,1307,1309,10,4,0,0,1308,1310,5,233,0,0,1309, + 1308,1,0,0,0,1309,1310,1,0,0,0,1310,1312,1,0,0,0,1311,1313,7,20, + 0,0,1312,1311,1,0,0,0,1312,1313,1,0,0,0,1313,1315,1,0,0,0,1314,1316, + 5,261,0,0,1315,1314,1,0,0,0,1315,1316,1,0,0,0,1316,1317,1,0,0,0, + 1317,1318,5,185,0,0,1318,1320,3,178,89,0,1319,1321,3,202,101,0,1320, + 1319,1,0,0,0,1320,1321,1,0,0,0,1321,1323,1,0,0,0,1322,1303,1,0,0, + 0,1322,1307,1,0,0,0,1323,1326,1,0,0,0,1324,1322,1,0,0,0,1324,1325, + 1,0,0,0,1325,179,1,0,0,0,1326,1324,1,0,0,0,1327,1329,3,182,91,0, + 1328,1330,3,294,147,0,1329,1328,1,0,0,0,1329,1330,1,0,0,0,1330,181, + 1,0,0,0,1331,1333,5,373,0,0,1332,1331,1,0,0,0,1332,1333,1,0,0,0, + 1333,1334,1,0,0,0,1334,1336,3,322,161,0,1335,1337,3,184,92,0,1336, + 1335,1,0,0,0,1336,1337,1,0,0,0,1337,1342,1,0,0,0,1338,1340,5,17, + 0,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340,1341,1,0,0,0,1341,1343, + 3,278,139,0,1342,1339,1,0,0,0,1342,1343,1,0,0,0,1343,1383,1,0,0, + 0,1344,1346,3,324,162,0,1345,1347,3,184,92,0,1346,1345,1,0,0,0,1346, + 1347,1,0,0,0,1347,1352,1,0,0,0,1348,1350,5,17,0,0,1349,1348,1,0, + 0,0,1349,1350,1,0,0,0,1350,1351,1,0,0,0,1351,1353,3,278,139,0,1352, + 1349,1,0,0,0,1352,1353,1,0,0,0,1353,1383,1,0,0,0,1354,1355,5,198, + 0,0,1355,1356,5,373,0,0,1356,1357,5,516,0,0,1357,1358,3,272,136, + 0,1358,1359,5,516,0,0,1359,1364,3,274,137,0,1360,1361,5,520,0,0, + 1361,1363,3,274,137,0,1362,1360,1,0,0,0,1363,1366,1,0,0,0,1364,1362, + 1,0,0,0,1364,1365,1,0,0,0,1365,1367,1,0,0,0,1366,1364,1,0,0,0,1367, + 1368,5,517,0,0,1368,1369,5,517,0,0,1369,1383,1,0,0,0,1370,1372,5, + 198,0,0,1371,1370,1,0,0,0,1371,1372,1,0,0,0,1372,1373,1,0,0,0,1373, + 1374,5,516,0,0,1374,1375,3,158,79,0,1375,1376,5,517,0,0,1376,1383, + 1,0,0,0,1377,1378,5,405,0,0,1378,1379,5,516,0,0,1379,1380,3,258, + 129,0,1380,1381,5,517,0,0,1381,1383,1,0,0,0,1382,1332,1,0,0,0,1382, + 1344,1,0,0,0,1382,1354,1,0,0,0,1382,1371,1,0,0,0,1382,1377,1,0,0, + 0,1383,183,1,0,0,0,1384,1385,5,146,0,0,1385,1386,5,371,0,0,1386, + 1387,5,17,0,0,1387,1388,5,249,0,0,1388,1389,3,186,93,0,1389,185, + 1,0,0,0,1390,1391,3,258,129,0,1391,187,1,0,0,0,1392,1393,5,516,0, + 0,1393,1394,3,150,75,0,1394,1395,5,517,0,0,1395,1396,3,294,147,0, + 1396,189,1,0,0,0,1397,1398,5,373,0,0,1398,1399,5,516,0,0,1399,1400, + 3,192,96,0,1400,1401,5,517,0,0,1401,191,1,0,0,0,1402,1403,3,194, + 97,0,1403,1404,5,516,0,0,1404,1409,3,196,98,0,1405,1406,5,520,0, + 0,1406,1408,3,196,98,0,1407,1405,1,0,0,0,1408,1411,1,0,0,0,1409, + 1407,1,0,0,0,1409,1410,1,0,0,0,1410,1412,1,0,0,0,1411,1409,1,0,0, + 0,1412,1413,5,517,0,0,1413,193,1,0,0,0,1414,1415,7,21,0,0,1415,195, + 1,0,0,0,1416,1417,5,373,0,0,1417,1432,3,218,109,0,1418,1432,3,200, + 100,0,1419,1432,3,282,141,0,1420,1421,5,446,0,0,1421,1422,5,536, + 0,0,1422,1423,5,373,0,0,1423,1432,3,218,109,0,1424,1425,5,498,0, + 0,1425,1426,5,536,0,0,1426,1432,3,200,100,0,1427,1428,3,198,99,0, + 1428,1429,5,536,0,0,1429,1430,3,282,141,0,1430,1432,1,0,0,0,1431, + 1416,1,0,0,0,1431,1418,1,0,0,0,1431,1419,1,0,0,0,1431,1420,1,0,0, + 0,1431,1424,1,0,0,0,1431,1427,1,0,0,0,1432,197,1,0,0,0,1433,1434, + 7,22,0,0,1434,199,1,0,0,0,1435,1436,5,451,0,0,1436,1437,5,516,0, + 0,1437,1438,3,52,26,0,1438,1439,5,517,0,0,1439,201,1,0,0,0,1440, + 1441,5,253,0,0,1441,1445,3,260,130,0,1442,1443,5,412,0,0,1443,1445, + 3,54,27,0,1444,1440,1,0,0,0,1444,1442,1,0,0,0,1445,203,1,0,0,0,1446, + 1447,5,430,0,0,1447,1448,3,260,130,0,1448,205,1,0,0,0,1449,1450, + 5,159,0,0,1450,1451,5,34,0,0,1451,1456,3,208,104,0,1452,1453,5,520, + 0,0,1453,1455,3,208,104,0,1454,1452,1,0,0,0,1455,1458,1,0,0,0,1456, + 1454,1,0,0,0,1456,1457,1,0,0,0,1457,207,1,0,0,0,1458,1456,1,0,0, + 0,1459,1500,3,52,26,0,1460,1500,3,214,107,0,1461,1462,5,516,0,0, + 1462,1500,5,517,0,0,1463,1464,5,516,0,0,1464,1469,3,258,129,0,1465, + 1466,5,520,0,0,1466,1468,3,258,129,0,1467,1465,1,0,0,0,1468,1471, + 1,0,0,0,1469,1467,1,0,0,0,1469,1470,1,0,0,0,1470,1472,1,0,0,0,1471, + 1469,1,0,0,0,1472,1473,5,517,0,0,1473,1500,1,0,0,0,1474,1475,3,212, + 106,0,1475,1476,5,516,0,0,1476,1481,3,258,129,0,1477,1478,5,520, + 0,0,1478,1480,3,258,129,0,1479,1477,1,0,0,0,1480,1483,1,0,0,0,1481, + 1479,1,0,0,0,1481,1482,1,0,0,0,1482,1484,1,0,0,0,1483,1481,1,0,0, + 0,1484,1485,5,517,0,0,1485,1500,1,0,0,0,1486,1487,3,210,105,0,1487, + 1488,5,516,0,0,1488,1493,3,208,104,0,1489,1490,5,520,0,0,1490,1492, + 3,208,104,0,1491,1489,1,0,0,0,1492,1495,1,0,0,0,1493,1491,1,0,0, + 0,1493,1494,1,0,0,0,1494,1496,1,0,0,0,1495,1493,1,0,0,0,1496,1497, + 5,517,0,0,1497,1500,1,0,0,0,1498,1500,3,258,129,0,1499,1459,1,0, + 0,0,1499,1460,1,0,0,0,1499,1461,1,0,0,0,1499,1463,1,0,0,0,1499,1474, + 1,0,0,0,1499,1486,1,0,0,0,1499,1498,1,0,0,0,1500,209,1,0,0,0,1501, + 1502,5,160,0,0,1502,1503,5,493,0,0,1503,211,1,0,0,0,1504,1505,7, + 23,0,0,1505,213,1,0,0,0,1506,1507,3,216,108,0,1507,1508,5,516,0, + 0,1508,1509,3,218,109,0,1509,1510,5,520,0,0,1510,1511,3,282,141, + 0,1511,1512,5,517,0,0,1512,215,1,0,0,0,1513,1514,7,24,0,0,1514,217, + 1,0,0,0,1515,1516,3,328,164,0,1516,219,1,0,0,0,1517,1518,5,163,0, + 0,1518,1519,3,260,130,0,1519,221,1,0,0,0,1520,1521,5,432,0,0,1521, + 1526,3,224,112,0,1522,1523,5,520,0,0,1523,1525,3,224,112,0,1524, + 1522,1,0,0,0,1525,1528,1,0,0,0,1526,1524,1,0,0,0,1526,1527,1,0,0, + 0,1527,223,1,0,0,0,1528,1526,1,0,0,0,1529,1530,3,296,148,0,1530, + 1531,5,17,0,0,1531,1532,3,226,113,0,1532,225,1,0,0,0,1533,1535,3, + 296,148,0,1534,1533,1,0,0,0,1534,1535,1,0,0,0,1535,1536,1,0,0,0, + 1536,1538,5,516,0,0,1537,1539,3,236,118,0,1538,1537,1,0,0,0,1538, + 1539,1,0,0,0,1539,1541,1,0,0,0,1540,1542,3,230,115,0,1541,1540,1, + 0,0,0,1541,1542,1,0,0,0,1542,1544,1,0,0,0,1543,1545,3,252,126,0, + 1544,1543,1,0,0,0,1544,1545,1,0,0,0,1545,1546,1,0,0,0,1546,1547, + 5,517,0,0,1547,227,1,0,0,0,1548,1549,5,213,0,0,1549,1551,5,516,0, + 0,1550,1552,3,236,118,0,1551,1550,1,0,0,0,1551,1552,1,0,0,0,1552, + 1554,1,0,0,0,1553,1555,3,230,115,0,1554,1553,1,0,0,0,1554,1555,1, + 0,0,0,1555,1557,1,0,0,0,1556,1558,3,240,120,0,1557,1556,1,0,0,0, + 1557,1558,1,0,0,0,1558,1560,1,0,0,0,1559,1561,3,246,123,0,1560,1559, + 1,0,0,0,1560,1561,1,0,0,0,1561,1563,1,0,0,0,1562,1564,3,248,124, + 0,1563,1562,1,0,0,0,1563,1564,1,0,0,0,1564,1566,1,0,0,0,1565,1567, + 3,242,121,0,1566,1565,1,0,0,0,1566,1567,1,0,0,0,1567,1568,1,0,0, + 0,1568,1569,3,250,125,0,1569,1574,5,517,0,0,1570,1572,5,17,0,0,1571, + 1570,1,0,0,0,1571,1572,1,0,0,0,1572,1573,1,0,0,0,1573,1575,3,304, + 152,0,1574,1571,1,0,0,0,1574,1575,1,0,0,0,1575,229,1,0,0,0,1576, + 1577,5,258,0,0,1577,1578,5,34,0,0,1578,1583,3,232,116,0,1579,1580, + 5,520,0,0,1580,1582,3,232,116,0,1581,1579,1,0,0,0,1582,1585,1,0, + 0,0,1583,1581,1,0,0,0,1583,1584,1,0,0,0,1584,231,1,0,0,0,1585,1583, + 1,0,0,0,1586,1588,3,52,26,0,1587,1589,7,25,0,0,1588,1587,1,0,0,0, + 1588,1589,1,0,0,0,1589,1592,1,0,0,0,1590,1591,5,476,0,0,1591,1593, + 7,26,0,0,1592,1590,1,0,0,0,1592,1593,1,0,0,0,1593,233,1,0,0,0,1594, + 1597,5,204,0,0,1595,1598,5,5,0,0,1596,1598,3,258,129,0,1597,1595, + 1,0,0,0,1597,1596,1,0,0,0,1598,235,1,0,0,0,1599,1600,5,268,0,0,1600, + 1601,5,34,0,0,1601,1606,3,52,26,0,1602,1603,5,520,0,0,1603,1605, + 3,52,26,0,1604,1602,1,0,0,0,1605,1608,1,0,0,0,1606,1604,1,0,0,0, + 1606,1607,1,0,0,0,1607,237,1,0,0,0,1608,1606,1,0,0,0,1609,1626,5, + 527,0,0,1610,1626,5,530,0,0,1611,1626,5,535,0,0,1612,1613,5,518, + 0,0,1613,1614,5,538,0,0,1614,1615,5,520,0,0,1615,1616,5,538,0,0, + 1616,1626,5,519,0,0,1617,1618,5,518,0,0,1618,1619,5,538,0,0,1619, + 1620,5,520,0,0,1620,1626,5,519,0,0,1621,1622,5,518,0,0,1622,1623, + 5,520,0,0,1623,1624,5,538,0,0,1624,1626,5,519,0,0,1625,1609,1,0, + 0,0,1625,1610,1,0,0,0,1625,1611,1,0,0,0,1625,1612,1,0,0,0,1625,1617, + 1,0,0,0,1625,1621,1,0,0,0,1626,239,1,0,0,0,1627,1628,5,215,0,0,1628, + 1633,3,172,86,0,1629,1630,5,520,0,0,1630,1632,3,172,86,0,1631,1629, + 1,0,0,0,1632,1635,1,0,0,0,1633,1631,1,0,0,0,1633,1634,1,0,0,0,1634, + 241,1,0,0,0,1635,1633,1,0,0,0,1636,1637,5,271,0,0,1637,1639,5,516, + 0,0,1638,1640,3,244,122,0,1639,1638,1,0,0,0,1640,1641,1,0,0,0,1641, + 1639,1,0,0,0,1641,1642,1,0,0,0,1642,1643,1,0,0,0,1643,1645,5,517, + 0,0,1644,1646,3,256,128,0,1645,1644,1,0,0,0,1645,1646,1,0,0,0,1646, + 243,1,0,0,0,1647,1649,3,306,153,0,1648,1650,3,238,119,0,1649,1648, + 1,0,0,0,1649,1650,1,0,0,0,1650,245,1,0,0,0,1651,1652,5,5,0,0,1652, + 1653,5,322,0,0,1653,1654,5,272,0,0,1654,1660,5,210,0,0,1655,1656, + 5,254,0,0,1656,1657,5,321,0,0,1657,1658,5,272,0,0,1658,1660,5,210, + 0,0,1659,1651,1,0,0,0,1659,1655,1,0,0,0,1660,247,1,0,0,0,1661,1662, + 5,438,0,0,1662,1663,5,210,0,0,1663,1664,5,343,0,0,1664,1665,5,478, + 0,0,1665,1666,5,467,0,0,1666,1686,5,321,0,0,1667,1668,5,438,0,0, + 1668,1669,5,210,0,0,1669,1670,5,343,0,0,1670,1671,5,388,0,0,1671, + 1672,5,237,0,0,1672,1686,5,321,0,0,1673,1674,5,438,0,0,1674,1675, + 5,210,0,0,1675,1676,5,343,0,0,1676,1677,5,388,0,0,1677,1678,5,467, + 0,0,1678,1686,3,306,153,0,1679,1680,5,438,0,0,1680,1681,5,210,0, + 0,1681,1682,5,343,0,0,1682,1683,5,388,0,0,1683,1684,5,457,0,0,1684, + 1686,3,306,153,0,1685,1661,1,0,0,0,1685,1667,1,0,0,0,1685,1673,1, + 0,0,0,1685,1679,1,0,0,0,1686,249,1,0,0,0,1687,1688,5,105,0,0,1688, + 1693,3,172,86,0,1689,1690,5,520,0,0,1690,1692,3,172,86,0,1691,1689, + 1,0,0,0,1692,1695,1,0,0,0,1693,1691,1,0,0,0,1693,1694,1,0,0,0,1694, + 251,1,0,0,0,1695,1693,1,0,0,0,1696,1697,5,292,0,0,1697,1698,5,27, + 0,0,1698,1699,3,282,141,0,1699,1700,3,254,127,0,1700,1706,1,0,0, + 0,1701,1702,5,322,0,0,1702,1703,5,27,0,0,1703,1704,5,538,0,0,1704, + 1706,3,254,127,0,1705,1696,1,0,0,0,1705,1701,1,0,0,0,1706,253,1, + 0,0,0,1707,1708,5,480,0,0,1708,1709,5,10,0,0,1709,1710,5,76,0,0, + 1710,1711,5,321,0,0,1711,255,1,0,0,0,1712,1713,5,434,0,0,1713,1714, + 3,282,141,0,1714,257,1,0,0,0,1715,1716,3,260,130,0,1716,259,1,0, + 0,0,1717,1718,6,130,-1,0,1718,1719,5,241,0,0,1719,1730,3,260,130, + 6,1720,1721,5,133,0,0,1721,1722,5,516,0,0,1722,1723,3,158,79,0,1723, + 1724,5,517,0,0,1724,1730,1,0,0,0,1725,1727,3,266,133,0,1726,1728, + 3,262,131,0,1727,1726,1,0,0,0,1727,1728,1,0,0,0,1728,1730,1,0,0, + 0,1729,1717,1,0,0,0,1729,1720,1,0,0,0,1729,1725,1,0,0,0,1730,1745, + 1,0,0,0,1731,1732,10,3,0,0,1732,1733,5,10,0,0,1733,1744,3,260,130, + 4,1734,1735,10,2,0,0,1735,1736,5,257,0,0,1736,1744,3,260,130,3,1737, + 1738,10,1,0,0,1738,1740,5,184,0,0,1739,1741,5,241,0,0,1740,1739, + 1,0,0,0,1740,1741,1,0,0,0,1741,1742,1,0,0,0,1742,1744,7,27,0,0,1743, + 1731,1,0,0,0,1743,1734,1,0,0,0,1743,1737,1,0,0,0,1744,1747,1,0,0, + 0,1745,1743,1,0,0,0,1745,1746,1,0,0,0,1746,261,1,0,0,0,1747,1745, + 1,0,0,0,1748,1750,5,241,0,0,1749,1748,1,0,0,0,1749,1750,1,0,0,0, + 1750,1751,1,0,0,0,1751,1753,5,27,0,0,1752,1754,7,28,0,0,1753,1752, + 1,0,0,0,1753,1754,1,0,0,0,1754,1755,1,0,0,0,1755,1756,3,266,133, + 0,1756,1757,5,10,0,0,1757,1758,3,266,133,0,1758,1816,1,0,0,0,1759, + 1761,5,241,0,0,1760,1759,1,0,0,0,1760,1761,1,0,0,0,1761,1762,1,0, + 0,0,1762,1763,5,170,0,0,1763,1764,5,516,0,0,1764,1769,3,258,129, + 0,1765,1766,5,520,0,0,1766,1768,3,258,129,0,1767,1765,1,0,0,0,1768, + 1771,1,0,0,0,1769,1767,1,0,0,0,1769,1770,1,0,0,0,1770,1772,1,0,0, + 0,1771,1769,1,0,0,0,1772,1773,5,517,0,0,1773,1816,1,0,0,0,1774,1776, + 5,241,0,0,1775,1774,1,0,0,0,1775,1776,1,0,0,0,1776,1777,1,0,0,0, + 1777,1778,5,170,0,0,1778,1779,5,516,0,0,1779,1780,3,158,79,0,1780, + 1781,5,517,0,0,1781,1816,1,0,0,0,1782,1783,5,133,0,0,1783,1784,5, + 516,0,0,1784,1785,3,158,79,0,1785,1786,5,517,0,0,1786,1816,1,0,0, + 0,1787,1789,5,241,0,0,1788,1787,1,0,0,0,1788,1789,1,0,0,0,1789,1790, + 1,0,0,0,1790,1791,5,318,0,0,1791,1816,3,266,133,0,1792,1816,3,264, + 132,0,1793,1795,5,184,0,0,1794,1796,5,241,0,0,1795,1794,1,0,0,0, + 1795,1796,1,0,0,0,1796,1797,1,0,0,0,1797,1816,7,27,0,0,1798,1800, + 5,184,0,0,1799,1801,5,241,0,0,1800,1799,1,0,0,0,1800,1801,1,0,0, + 0,1801,1802,1,0,0,0,1802,1803,5,113,0,0,1803,1804,5,151,0,0,1804, + 1816,3,266,133,0,1805,1807,5,241,0,0,1806,1805,1,0,0,0,1806,1807, + 1,0,0,0,1807,1808,1,0,0,0,1808,1809,5,342,0,0,1809,1810,5,388,0, + 0,1810,1813,3,266,133,0,1811,1812,5,127,0,0,1812,1814,3,358,179, + 0,1813,1811,1,0,0,0,1813,1814,1,0,0,0,1814,1816,1,0,0,0,1815,1749, + 1,0,0,0,1815,1760,1,0,0,0,1815,1775,1,0,0,0,1815,1782,1,0,0,0,1815, + 1788,1,0,0,0,1815,1792,1,0,0,0,1815,1793,1,0,0,0,1815,1798,1,0,0, + 0,1815,1806,1,0,0,0,1816,263,1,0,0,0,1817,1819,5,241,0,0,1818,1817, + 1,0,0,0,1818,1819,1,0,0,0,1819,1820,1,0,0,0,1820,1821,5,202,0,0, + 1821,1835,7,29,0,0,1822,1823,5,516,0,0,1823,1836,5,517,0,0,1824, + 1825,5,516,0,0,1825,1830,3,258,129,0,1826,1827,5,520,0,0,1827,1829, + 3,258,129,0,1828,1826,1,0,0,0,1829,1832,1,0,0,0,1830,1828,1,0,0, + 0,1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832,1830,1,0,0,0,1833,1834, + 5,517,0,0,1834,1836,1,0,0,0,1835,1822,1,0,0,0,1835,1824,1,0,0,0, + 1836,1847,1,0,0,0,1837,1839,5,241,0,0,1838,1837,1,0,0,0,1838,1839, + 1,0,0,0,1839,1840,1,0,0,0,1840,1841,5,202,0,0,1841,1844,3,266,133, + 0,1842,1843,5,127,0,0,1843,1845,3,358,179,0,1844,1842,1,0,0,0,1844, + 1845,1,0,0,0,1845,1847,1,0,0,0,1846,1818,1,0,0,0,1846,1838,1,0,0, + 0,1847,265,1,0,0,0,1848,1849,6,133,-1,0,1849,1853,3,268,134,0,1850, + 1851,7,30,0,0,1851,1853,3,266,133,7,1852,1848,1,0,0,0,1852,1850, + 1,0,0,0,1853,1875,1,0,0,0,1854,1855,10,6,0,0,1855,1856,7,31,0,0, + 1856,1874,3,266,133,7,1857,1858,10,5,0,0,1858,1859,7,32,0,0,1859, + 1874,3,266,133,6,1860,1861,10,4,0,0,1861,1862,5,511,0,0,1862,1874, + 3,266,133,5,1863,1864,10,3,0,0,1864,1865,5,512,0,0,1865,1874,3,266, + 133,4,1866,1867,10,2,0,0,1867,1868,5,510,0,0,1868,1874,3,266,133, + 3,1869,1870,10,1,0,0,1870,1871,3,346,173,0,1871,1872,3,266,133,2, + 1872,1874,1,0,0,0,1873,1854,1,0,0,0,1873,1857,1,0,0,0,1873,1860, + 1,0,0,0,1873,1863,1,0,0,0,1873,1866,1,0,0,0,1873,1869,1,0,0,0,1874, + 1877,1,0,0,0,1875,1873,1,0,0,0,1875,1876,1,0,0,0,1876,267,1,0,0, + 0,1877,1875,1,0,0,0,1878,1879,6,134,-1,0,1879,1881,5,40,0,0,1880, + 1882,3,310,155,0,1881,1880,1,0,0,0,1882,1883,1,0,0,0,1883,1881,1, + 0,0,0,1883,1884,1,0,0,0,1884,1887,1,0,0,0,1885,1886,5,120,0,0,1886, + 1888,3,258,129,0,1887,1885,1,0,0,0,1887,1888,1,0,0,0,1888,1889,1, + 0,0,0,1889,1890,5,122,0,0,1890,1971,1,0,0,0,1891,1892,5,40,0,0,1892, + 1894,3,258,129,0,1893,1895,3,310,155,0,1894,1893,1,0,0,0,1895,1896, + 1,0,0,0,1896,1894,1,0,0,0,1896,1897,1,0,0,0,1897,1900,1,0,0,0,1898, + 1899,5,120,0,0,1899,1901,3,258,129,0,1900,1898,1,0,0,0,1900,1901, + 1,0,0,0,1901,1902,1,0,0,0,1902,1903,5,122,0,0,1903,1971,1,0,0,0, + 1904,1905,5,41,0,0,1905,1906,5,516,0,0,1906,1907,3,258,129,0,1907, + 1908,5,17,0,0,1908,1909,3,56,28,0,1909,1910,5,517,0,0,1910,1971, + 1,0,0,0,1911,1912,5,457,0,0,1912,1913,5,516,0,0,1913,1916,3,258, + 129,0,1914,1915,5,461,0,0,1915,1917,5,476,0,0,1916,1914,1,0,0,0, + 1916,1917,1,0,0,0,1917,1918,1,0,0,0,1918,1919,5,517,0,0,1919,1971, + 1,0,0,0,1920,1921,5,467,0,0,1921,1922,5,516,0,0,1922,1925,3,258, + 129,0,1923,1924,5,461,0,0,1924,1926,5,476,0,0,1925,1923,1,0,0,0, + 1925,1926,1,0,0,0,1926,1927,1,0,0,0,1927,1928,5,517,0,0,1928,1971, + 1,0,0,0,1929,1930,5,281,0,0,1930,1931,5,516,0,0,1931,1932,3,266, + 133,0,1932,1933,5,170,0,0,1933,1934,3,266,133,0,1934,1935,5,517, + 0,0,1935,1971,1,0,0,0,1936,1971,3,354,177,0,1937,1971,5,527,0,0, + 1938,1939,3,328,164,0,1939,1940,5,513,0,0,1940,1941,5,527,0,0,1941, + 1971,1,0,0,0,1942,1943,5,516,0,0,1943,1944,3,158,79,0,1944,1945, + 5,517,0,0,1945,1971,1,0,0,0,1946,1947,3,272,136,0,1947,1959,5,516, + 0,0,1948,1950,3,364,182,0,1949,1948,1,0,0,0,1949,1950,1,0,0,0,1950, + 1951,1,0,0,0,1951,1956,3,274,137,0,1952,1953,5,520,0,0,1953,1955, + 3,274,137,0,1954,1952,1,0,0,0,1955,1958,1,0,0,0,1956,1954,1,0,0, + 0,1956,1957,1,0,0,0,1957,1960,1,0,0,0,1958,1956,1,0,0,0,1959,1949, + 1,0,0,0,1959,1960,1,0,0,0,1960,1961,1,0,0,0,1961,1962,5,517,0,0, + 1962,1971,1,0,0,0,1963,1971,3,304,152,0,1964,1971,3,276,138,0,1965, + 1966,5,516,0,0,1966,1967,3,258,129,0,1967,1968,5,517,0,0,1968,1971, + 1,0,0,0,1969,1971,5,85,0,0,1970,1878,1,0,0,0,1970,1891,1,0,0,0,1970, + 1904,1,0,0,0,1970,1911,1,0,0,0,1970,1920,1,0,0,0,1970,1929,1,0,0, + 0,1970,1936,1,0,0,0,1970,1937,1,0,0,0,1970,1938,1,0,0,0,1970,1942, + 1,0,0,0,1970,1946,1,0,0,0,1970,1963,1,0,0,0,1970,1964,1,0,0,0,1970, + 1965,1,0,0,0,1970,1969,1,0,0,0,1971,1979,1,0,0,0,1972,1973,10,5, + 0,0,1973,1974,5,514,0,0,1974,1975,3,266,133,0,1975,1976,5,515,0, + 0,1976,1978,1,0,0,0,1977,1972,1,0,0,0,1978,1981,1,0,0,0,1979,1977, + 1,0,0,0,1979,1980,1,0,0,0,1980,269,1,0,0,0,1981,1979,1,0,0,0,1982, + 1983,3,328,164,0,1983,271,1,0,0,0,1984,1987,3,372,186,0,1985,1987, + 3,328,164,0,1986,1984,1,0,0,0,1986,1985,1,0,0,0,1987,273,1,0,0,0, + 1988,1993,3,370,185,0,1989,1993,3,368,184,0,1990,1993,3,366,183, + 0,1991,1993,3,258,129,0,1992,1988,1,0,0,0,1992,1989,1,0,0,0,1992, + 1990,1,0,0,0,1992,1991,1,0,0,0,1993,275,1,0,0,0,1994,1995,3,328, + 164,0,1995,277,1,0,0,0,1996,1997,3,304,152,0,1997,279,1,0,0,0,1998, + 2001,3,304,152,0,1999,2001,3,276,138,0,2000,1998,1,0,0,0,2000,1999, + 1,0,0,0,2001,281,1,0,0,0,2002,2005,5,182,0,0,2003,2006,3,284,142, + 0,2004,2006,3,288,144,0,2005,2003,1,0,0,0,2005,2004,1,0,0,0,2005, + 2006,1,0,0,0,2006,283,1,0,0,0,2007,2009,3,286,143,0,2008,2010,3, + 290,145,0,2009,2008,1,0,0,0,2009,2010,1,0,0,0,2010,285,1,0,0,0,2011, + 2012,3,292,146,0,2012,2013,3,368,184,0,2013,2015,1,0,0,0,2014,2011, + 1,0,0,0,2015,2016,1,0,0,0,2016,2014,1,0,0,0,2016,2017,1,0,0,0,2017, + 287,1,0,0,0,2018,2021,3,290,145,0,2019,2022,3,286,143,0,2020,2022, + 3,290,145,0,2021,2019,1,0,0,0,2021,2020,1,0,0,0,2021,2022,1,0,0, + 0,2022,289,1,0,0,0,2023,2024,3,292,146,0,2024,2025,3,368,184,0,2025, + 2026,5,388,0,0,2026,2027,3,368,184,0,2027,291,1,0,0,0,2028,2030, + 7,33,0,0,2029,2028,1,0,0,0,2029,2030,1,0,0,0,2030,2031,1,0,0,0,2031, + 2034,7,34,0,0,2032,2034,5,537,0,0,2033,2029,1,0,0,0,2033,2032,1, + 0,0,0,2034,293,1,0,0,0,2035,2037,5,17,0,0,2036,2035,1,0,0,0,2036, + 2037,1,0,0,0,2037,2038,1,0,0,0,2038,2040,3,304,152,0,2039,2041,3, + 300,150,0,2040,2039,1,0,0,0,2040,2041,1,0,0,0,2041,295,1,0,0,0,2042, + 2043,3,304,152,0,2043,2044,3,298,149,0,2044,297,1,0,0,0,2045,2046, + 5,221,0,0,2046,2048,3,304,152,0,2047,2045,1,0,0,0,2048,2049,1,0, + 0,0,2049,2047,1,0,0,0,2049,2050,1,0,0,0,2050,2053,1,0,0,0,2051,2053, + 1,0,0,0,2052,2047,1,0,0,0,2052,2051,1,0,0,0,2053,299,1,0,0,0,2054, + 2055,5,516,0,0,2055,2056,3,302,151,0,2056,2057,5,517,0,0,2057,301, + 1,0,0,0,2058,2063,3,304,152,0,2059,2060,5,520,0,0,2060,2062,3,304, + 152,0,2061,2059,1,0,0,0,2062,2065,1,0,0,0,2063,2061,1,0,0,0,2063, + 2064,1,0,0,0,2064,303,1,0,0,0,2065,2063,1,0,0,0,2066,2070,3,306, + 153,0,2067,2070,3,308,154,0,2068,2070,3,374,187,0,2069,2066,1,0, + 0,0,2069,2067,1,0,0,0,2069,2068,1,0,0,0,2070,305,1,0,0,0,2071,2072, + 7,35,0,0,2072,307,1,0,0,0,2073,2074,5,537,0,0,2074,309,1,0,0,0,2075, + 2076,5,428,0,0,2076,2077,3,258,129,0,2077,2078,5,376,0,0,2078,2079, + 3,258,129,0,2079,311,1,0,0,0,2080,2081,3,304,152,0,2081,313,1,0, + 0,0,2082,2083,3,304,152,0,2083,315,1,0,0,0,2084,2087,3,304,152,0, + 2085,2086,5,513,0,0,2086,2088,3,304,152,0,2087,2085,1,0,0,0,2087, + 2088,1,0,0,0,2088,317,1,0,0,0,2089,2092,3,304,152,0,2090,2091,5, + 513,0,0,2091,2093,3,304,152,0,2092,2090,1,0,0,0,2092,2093,1,0,0, + 0,2093,319,1,0,0,0,2094,2097,3,304,152,0,2095,2096,5,513,0,0,2096, + 2098,3,304,152,0,2097,2095,1,0,0,0,2097,2098,1,0,0,0,2098,2107,1, + 0,0,0,2099,2100,3,304,152,0,2100,2101,5,513,0,0,2101,2104,3,304, + 152,0,2102,2103,5,513,0,0,2103,2105,3,304,152,0,2104,2102,1,0,0, + 0,2104,2105,1,0,0,0,2105,2107,1,0,0,0,2106,2094,1,0,0,0,2106,2099, + 1,0,0,0,2107,321,1,0,0,0,2108,2111,3,304,152,0,2109,2110,5,513,0, + 0,2110,2112,3,304,152,0,2111,2109,1,0,0,0,2111,2112,1,0,0,0,2112, + 2121,1,0,0,0,2113,2114,3,304,152,0,2114,2115,5,513,0,0,2115,2118, + 3,304,152,0,2116,2117,5,513,0,0,2117,2119,3,304,152,0,2118,2116, + 1,0,0,0,2118,2119,1,0,0,0,2119,2121,1,0,0,0,2120,2108,1,0,0,0,2120, + 2113,1,0,0,0,2121,323,1,0,0,0,2122,2125,3,304,152,0,2123,2124,5, + 513,0,0,2124,2126,3,304,152,0,2125,2123,1,0,0,0,2125,2126,1,0,0, + 0,2126,2135,1,0,0,0,2127,2128,3,304,152,0,2128,2129,5,513,0,0,2129, + 2132,3,304,152,0,2130,2131,5,513,0,0,2131,2133,3,304,152,0,2132, + 2130,1,0,0,0,2132,2133,1,0,0,0,2133,2135,1,0,0,0,2134,2122,1,0,0, + 0,2134,2127,1,0,0,0,2135,325,1,0,0,0,2136,2139,3,304,152,0,2137, + 2138,5,513,0,0,2138,2140,3,304,152,0,2139,2137,1,0,0,0,2139,2140, + 1,0,0,0,2140,2149,1,0,0,0,2141,2142,3,304,152,0,2142,2143,5,513, + 0,0,2143,2146,3,304,152,0,2144,2145,5,513,0,0,2145,2147,3,304,152, + 0,2146,2144,1,0,0,0,2146,2147,1,0,0,0,2147,2149,1,0,0,0,2148,2136, + 1,0,0,0,2148,2141,1,0,0,0,2149,327,1,0,0,0,2150,2155,3,304,152,0, + 2151,2152,5,513,0,0,2152,2154,3,304,152,0,2153,2151,1,0,0,0,2154, + 2157,1,0,0,0,2155,2156,1,0,0,0,2155,2153,1,0,0,0,2156,329,1,0,0, + 0,2157,2155,1,0,0,0,2158,2159,5,433,0,0,2159,2160,3,336,168,0,2160, + 331,1,0,0,0,2161,2162,5,167,0,0,2162,2163,5,241,0,0,2163,2164,5, + 133,0,0,2164,333,1,0,0,0,2165,2166,5,167,0,0,2166,2167,5,133,0,0, + 2167,335,1,0,0,0,2168,2169,5,516,0,0,2169,2174,3,338,169,0,2170, + 2171,5,520,0,0,2171,2173,3,338,169,0,2172,2170,1,0,0,0,2173,2176, + 1,0,0,0,2174,2172,1,0,0,0,2174,2175,1,0,0,0,2175,2177,1,0,0,0,2176, + 2174,1,0,0,0,2177,2178,5,517,0,0,2178,337,1,0,0,0,2179,2184,3,340, + 170,0,2180,2182,5,505,0,0,2181,2180,1,0,0,0,2181,2182,1,0,0,0,2182, + 2183,1,0,0,0,2183,2185,3,342,171,0,2184,2181,1,0,0,0,2184,2185,1, + 0,0,0,2185,339,1,0,0,0,2186,2190,3,304,152,0,2187,2190,3,276,138, + 0,2188,2190,5,537,0,0,2189,2186,1,0,0,0,2189,2187,1,0,0,0,2189,2188, + 1,0,0,0,2190,341,1,0,0,0,2191,2196,5,538,0,0,2192,2196,5,539,0,0, + 2193,2196,3,362,181,0,2194,2196,5,537,0,0,2195,2191,1,0,0,0,2195, + 2192,1,0,0,0,2195,2193,1,0,0,0,2195,2194,1,0,0,0,2196,343,1,0,0, + 0,2197,2204,5,10,0,0,2198,2199,5,511,0,0,2199,2204,5,511,0,0,2200, + 2204,5,257,0,0,2201,2202,5,510,0,0,2202,2204,5,510,0,0,2203,2197, + 1,0,0,0,2203,2198,1,0,0,0,2203,2200,1,0,0,0,2203,2201,1,0,0,0,2204, + 345,1,0,0,0,2205,2220,5,505,0,0,2206,2220,5,506,0,0,2207,2220,5, + 507,0,0,2208,2209,5,507,0,0,2209,2220,5,505,0,0,2210,2211,5,506, + 0,0,2211,2220,5,505,0,0,2212,2213,5,507,0,0,2213,2220,5,506,0,0, + 2214,2215,5,508,0,0,2215,2220,5,505,0,0,2216,2217,5,507,0,0,2217, + 2218,5,505,0,0,2218,2220,5,506,0,0,2219,2205,1,0,0,0,2219,2206,1, + 0,0,0,2219,2207,1,0,0,0,2219,2208,1,0,0,0,2219,2210,1,0,0,0,2219, + 2212,1,0,0,0,2219,2214,1,0,0,0,2219,2216,1,0,0,0,2220,347,1,0,0, + 0,2221,2222,5,507,0,0,2222,2229,5,507,0,0,2223,2224,5,506,0,0,2224, + 2229,5,506,0,0,2225,2229,5,511,0,0,2226,2229,5,512,0,0,2227,2229, + 5,510,0,0,2228,2221,1,0,0,0,2228,2223,1,0,0,0,2228,2225,1,0,0,0, + 2228,2226,1,0,0,0,2228,2227,1,0,0,0,2229,349,1,0,0,0,2230,2231,7, + 36,0,0,2231,351,1,0,0,0,2232,2233,7,37,0,0,2233,353,1,0,0,0,2234, + 2249,3,282,141,0,2235,2249,3,356,178,0,2236,2249,3,358,179,0,2237, + 2239,5,529,0,0,2238,2237,1,0,0,0,2238,2239,1,0,0,0,2239,2240,1,0, + 0,0,2240,2249,3,360,180,0,2241,2249,3,362,181,0,2242,2249,5,539, + 0,0,2243,2249,5,540,0,0,2244,2246,5,241,0,0,2245,2244,1,0,0,0,2245, + 2246,1,0,0,0,2246,2247,1,0,0,0,2247,2249,5,244,0,0,2248,2234,1,0, + 0,0,2248,2235,1,0,0,0,2248,2236,1,0,0,0,2248,2238,1,0,0,0,2248,2241, + 1,0,0,0,2248,2242,1,0,0,0,2248,2243,1,0,0,0,2248,2245,1,0,0,0,2249, + 355,1,0,0,0,2250,2251,3,366,183,0,2251,2252,3,358,179,0,2252,357, + 1,0,0,0,2253,2254,5,537,0,0,2254,359,1,0,0,0,2255,2256,5,538,0,0, + 2256,361,1,0,0,0,2257,2258,7,38,0,0,2258,363,1,0,0,0,2259,2260,7, + 39,0,0,2260,365,1,0,0,0,2261,2262,7,40,0,0,2262,367,1,0,0,0,2263, + 2264,7,41,0,0,2264,369,1,0,0,0,2265,2266,7,42,0,0,2266,371,1,0,0, + 0,2267,2268,7,43,0,0,2268,373,1,0,0,0,2269,2270,7,44,0,0,2270,375, + 1,0,0,0,270,379,386,389,403,421,425,434,439,446,457,466,478,481, 488,491,499,503,508,511,518,526,530,542,550,554,586,589,594,598, 602,606,615,620,624,628,632,635,639,644,650,655,660,663,667,671, 679,687,691,695,699,703,707,711,715,719,721,731,739,763,770,776, - 779,782,792,795,803,815,839,852,857,861,869,873,879,889,893,899, - 903,907,910,919,923,930,933,943,951,959,963,978,997,1008,1012,1019, - 1024,1030,1034,1041,1045,1049,1053,1061,1065,1070,1076,1082,1085, - 1089,1100,1109,1123,1135,1150,1153,1157,1160,1162,1167,1171,1174, - 1178,1187,1196,1206,1211,1222,1225,1228,1231,1234,1240,1244,1252, - 1255,1260,1263,1265,1279,1290,1295,1303,1306,1309,1314,1316,1318, - 1323,1326,1330,1333,1336,1340,1343,1346,1358,1365,1376,1403,1425, - 1438,1450,1463,1475,1487,1492,1519,1527,1531,1534,1537,1544,1547, - 1550,1553,1556,1559,1564,1567,1576,1581,1585,1590,1599,1618,1626, - 1634,1638,1642,1652,1678,1686,1698,1720,1722,1733,1736,1738,1742, - 1746,1753,1762,1768,1781,1788,1793,1799,1806,1808,1811,1823,1828, - 1831,1837,1839,1845,1866,1868,1876,1880,1889,1893,1909,1918,1942, - 1949,1952,1963,1972,1979,1985,1993,1998,2002,2009,2014,2022,2026, - 2029,2033,2042,2045,2056,2062,2080,2085,2090,2097,2099,2104,2111, - 2113,2118,2125,2127,2132,2139,2141,2148,2167,2174,2177,2182,2188, - 2196,2212,2221,2231,2238,2241 + 779,782,792,795,803,815,839,851,856,860,868,872,878,888,892,898, + 902,906,909,918,922,929,932,942,950,958,962,977,996,1007,1011,1018, + 1023,1029,1033,1040,1044,1048,1052,1060,1064,1069,1075,1081,1084, + 1088,1099,1108,1122,1134,1149,1152,1156,1159,1161,1166,1170,1173, + 1177,1186,1195,1205,1210,1221,1224,1227,1230,1233,1239,1243,1251, + 1254,1259,1262,1266,1269,1271,1285,1296,1301,1309,1312,1315,1320, + 1322,1324,1329,1332,1336,1339,1342,1346,1349,1352,1364,1371,1382, + 1409,1431,1444,1456,1469,1481,1493,1499,1526,1534,1538,1541,1544, + 1551,1554,1557,1560,1563,1566,1571,1574,1583,1588,1592,1597,1606, + 1625,1633,1641,1645,1649,1659,1685,1693,1705,1727,1729,1740,1743, + 1745,1749,1753,1760,1769,1775,1788,1795,1800,1806,1813,1815,1818, + 1830,1835,1838,1844,1846,1852,1873,1875,1883,1887,1896,1900,1916, + 1925,1949,1956,1959,1970,1979,1986,1992,2000,2005,2009,2016,2021, + 2029,2033,2036,2040,2049,2052,2063,2069,2087,2092,2097,2104,2106, + 2111,2118,2120,2125,2132,2134,2139,2146,2148,2155,2174,2181,2184, + 2189,2195,2203,2219,2228,2238,2245,2248 ]; private static __ATN: antlr.ATN; @@ -13765,9 +13806,6 @@ export class ColumnNameContext extends antlr.ParserRuleContext { public uid(): UidContext | null { return this.getRuleContext(0, UidContext); } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); - } public override get ruleIndex(): number { return FlinkSqlParser.RULE_columnName; } @@ -14804,32 +14842,6 @@ export class ApplyTransformContext extends TransformContext { } } } -export class ColumnTransformContext extends TransformContext { - public constructor(ctx: TransformContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public qualifiedName(): QualifiedNameContext { - return this.getRuleContext(0, QualifiedNameContext)!; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterColumnTransform) { - listener.enterColumnTransform(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitColumnTransform) { - listener.exitColumnTransform(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitColumnTransform) { - return visitor.visitColumnTransform(this); - } else { - return visitor.visitChildren(this); - } - } -} export class TransformArgumentContext extends antlr.ParserRuleContext { diff --git a/src/lib/flinksql/FlinkSqlParserListener.ts b/src/lib/flinksql/FlinkSqlParserListener.ts index 69811af..0424399 100644 --- a/src/lib/flinksql/FlinkSqlParserListener.ts +++ b/src/lib/flinksql/FlinkSqlParserListener.ts @@ -3,6 +3,9 @@ import { ErrorNode, ParseTreeListener, ParserRuleContext, TerminalNode } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./FlinkSqlParser.js"; import { SingleStatementContext } from "./FlinkSqlParser.js"; import { SqlStatementContext } from "./FlinkSqlParser.js"; @@ -51,7 +54,6 @@ import { SelfDefinitionClauseContext } from "./FlinkSqlParser.js"; import { PartitionDefinitionContext } from "./FlinkSqlParser.js"; import { TransformListContext } from "./FlinkSqlParser.js"; import { IdentityTransformContext } from "./FlinkSqlParser.js"; -import { ColumnTransformContext } from "./FlinkSqlParser.js"; import { ApplyTransformContext } from "./FlinkSqlParser.js"; import { TransformArgumentContext } from "./FlinkSqlParser.js"; import { LikeDefinitionContext } from "./FlinkSqlParser.js"; @@ -706,18 +708,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitIdentityTransform?: (ctx: IdentityTransformContext) => void; - /** - * Enter a parse tree produced by the `columnTransform` - * labeled alternative in `FlinkSqlParser.transform`. - * @param ctx the parse tree - */ - enterColumnTransform?: (ctx: ColumnTransformContext) => void; - /** - * Exit a parse tree produced by the `columnTransform` - * labeled alternative in `FlinkSqlParser.transform`. - * @param ctx the parse tree - */ - exitColumnTransform?: (ctx: ColumnTransformContext) => void; /** * Enter a parse tree produced by the `applyTransform` * labeled alternative in `FlinkSqlParser.transform`. diff --git a/src/lib/flinksql/FlinkSqlParserVisitor.ts b/src/lib/flinksql/FlinkSqlParserVisitor.ts index c22522a..1580d99 100644 --- a/src/lib/flinksql/FlinkSqlParserVisitor.ts +++ b/src/lib/flinksql/FlinkSqlParserVisitor.ts @@ -3,6 +3,9 @@ import { AbstractParseTreeVisitor } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./FlinkSqlParser.js"; import { SingleStatementContext } from "./FlinkSqlParser.js"; import { SqlStatementContext } from "./FlinkSqlParser.js"; @@ -51,7 +54,6 @@ import { SelfDefinitionClauseContext } from "./FlinkSqlParser.js"; import { PartitionDefinitionContext } from "./FlinkSqlParser.js"; import { TransformListContext } from "./FlinkSqlParser.js"; import { IdentityTransformContext } from "./FlinkSqlParser.js"; -import { ColumnTransformContext } from "./FlinkSqlParser.js"; import { ApplyTransformContext } from "./FlinkSqlParser.js"; import { TransformArgumentContext } from "./FlinkSqlParser.js"; import { LikeDefinitionContext } from "./FlinkSqlParser.js"; @@ -516,13 +518,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by the `columnTransform` - * labeled alternative in `FlinkSqlParser.transform`. - * @param ctx the parse tree - * @return the visitor result - */ - visitColumnTransform?: (ctx: ColumnTransformContext) => Result; /** * Visit a parse tree produced by the `applyTransform` * labeled alternative in `FlinkSqlParser.transform`. diff --git a/src/lib/hive/HiveSqlParser.interp b/src/lib/hive/HiveSqlParser.interp index 10128fc..73c47e3 100644 --- a/src/lib/hive/HiveSqlParser.interp +++ b/src/lib/hive/HiveSqlParser.interp @@ -1086,7 +1086,6 @@ atomSelectStatement selectStatement setOpSelectStatement selectStatementWithCTE -body insertClause destination limitClause @@ -1403,4 +1402,4 @@ dropMappingStatement atn: -[4, 1, 437, 5519, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 1, 0, 5, 0, 1044, 8, 0, 10, 0, 12, 0, 1047, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 1053, 8, 1, 1, 1, 3, 1, 1056, 8, 1, 1, 2, 1, 2, 5, 2, 1060, 8, 2, 10, 2, 12, 2, 1063, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1068, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1075, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1085, 8, 3, 1, 3, 3, 3, 1088, 8, 3, 1, 3, 1, 3, 3, 3, 1092, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1112, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 1117, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1122, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1128, 8, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 3, 9, 1135, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1148, 8, 10, 1, 11, 1, 11, 3, 11, 1152, 8, 11, 1, 11, 1, 11, 3, 11, 1156, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1161, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1168, 8, 12, 1, 12, 1, 12, 3, 12, 1172, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 1177, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1184, 8, 14, 1, 14, 1, 14, 3, 14, 1188, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 5, 16, 1197, 8, 16, 10, 16, 12, 16, 1200, 9, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1205, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1212, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1261, 8, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1289, 8, 28, 1, 28, 1, 28, 3, 28, 1293, 8, 28, 1, 28, 1, 28, 3, 28, 1297, 8, 28, 1, 28, 3, 28, 1300, 8, 28, 1, 28, 3, 28, 1303, 8, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1308, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1314, 8, 28, 1, 28, 1, 28, 3, 28, 1318, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1324, 8, 28, 3, 28, 1326, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1341, 8, 32, 10, 32, 12, 32, 1344, 9, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 3, 35, 1355, 8, 35, 1, 35, 1, 35, 3, 35, 1359, 8, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 3, 37, 1366, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1374, 8, 37, 1, 37, 3, 37, 1377, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1382, 8, 38, 1, 38, 1, 38, 3, 38, 1386, 8, 38, 1, 38, 3, 38, 1389, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1399, 8, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1407, 8, 40, 5, 40, 1409, 8, 40, 10, 40, 12, 40, 1412, 9, 40, 3, 40, 1414, 8, 40, 1, 41, 1, 41, 3, 41, 1418, 8, 41, 1, 42, 1, 42, 3, 42, 1422, 8, 42, 1, 42, 3, 42, 1425, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 1430, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1436, 8, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1441, 8, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1446, 8, 43, 1, 43, 1, 43, 3, 43, 1450, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1461, 8, 44, 3, 44, 1463, 8, 44, 1, 44, 1, 44, 3, 44, 1467, 8, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1477, 8, 47, 1, 47, 1, 47, 3, 47, 1481, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1487, 8, 47, 1, 47, 3, 47, 1490, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1497, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1502, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1510, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1515, 8, 47, 1, 47, 1, 47, 3, 47, 1519, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1527, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1532, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1538, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1544, 8, 47, 1, 47, 3, 47, 1547, 8, 47, 1, 47, 3, 47, 1550, 8, 47, 1, 47, 3, 47, 1553, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1562, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1570, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1575, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1583, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1590, 8, 47, 1, 47, 3, 47, 1593, 8, 47, 1, 47, 3, 47, 1596, 8, 47, 3, 47, 1598, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1606, 8, 47, 1, 47, 3, 47, 1609, 8, 47, 1, 47, 3, 47, 1612, 8, 47, 1, 47, 3, 47, 1615, 8, 47, 1, 47, 3, 47, 1618, 8, 47, 1, 47, 3, 47, 1621, 8, 47, 1, 47, 3, 47, 1624, 8, 47, 1, 47, 3, 47, 1627, 8, 47, 1, 47, 3, 47, 1630, 8, 47, 1, 47, 3, 47, 1633, 8, 47, 1, 47, 3, 47, 1636, 8, 47, 3, 47, 1638, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1650, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1656, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1664, 8, 47, 3, 47, 1666, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1676, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1682, 8, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1697, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1714, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1719, 8, 56, 1, 57, 1, 57, 3, 57, 1723, 8, 57, 1, 57, 1, 57, 3, 57, 1727, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1734, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1739, 8, 58, 10, 58, 12, 58, 1742, 9, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1747, 8, 58, 1, 59, 1, 59, 3, 59, 1751, 8, 59, 1, 59, 3, 59, 1754, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1759, 8, 59, 10, 59, 12, 59, 1762, 9, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1784, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1789, 8, 64, 1, 64, 1, 64, 3, 64, 1793, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 3, 66, 1801, 8, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1810, 8, 68, 1, 68, 1, 68, 3, 68, 1814, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1820, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1826, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1833, 8, 69, 1, 69, 3, 69, 1836, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1842, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1847, 8, 70, 10, 70, 12, 70, 1850, 9, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1857, 8, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 5, 73, 1864, 8, 73, 10, 73, 12, 73, 1867, 9, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1875, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1882, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 1902, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1909, 8, 80, 3, 80, 1911, 8, 80, 1, 81, 1, 81, 1, 81, 5, 81, 1916, 8, 81, 10, 81, 12, 81, 1919, 9, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1928, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1936, 8, 84, 1, 85, 1, 85, 3, 85, 1940, 8, 85, 1, 85, 1, 85, 3, 85, 1944, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1957, 8, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1966, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1982, 8, 89, 1, 89, 1, 89, 3, 89, 1986, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1991, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1996, 8, 89, 1, 89, 3, 89, 1999, 8, 89, 1, 89, 3, 89, 2002, 8, 89, 1, 89, 1, 89, 3, 89, 2006, 8, 89, 1, 89, 3, 89, 2009, 8, 89, 1, 89, 3, 89, 2012, 8, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2017, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 2025, 8, 91, 1, 91, 1, 91, 3, 91, 2029, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2036, 8, 91, 1, 91, 3, 91, 2039, 8, 91, 1, 91, 3, 91, 2042, 8, 91, 1, 91, 3, 91, 2045, 8, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2057, 8, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2063, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 3, 98, 2089, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2097, 8, 99, 1, 99, 1, 99, 3, 99, 2101, 8, 99, 1, 99, 3, 99, 2104, 8, 99, 1, 99, 3, 99, 2107, 8, 99, 1, 99, 3, 99, 2110, 8, 99, 1, 99, 3, 99, 2113, 8, 99, 1, 99, 3, 99, 2116, 8, 99, 1, 99, 3, 99, 2119, 8, 99, 1, 99, 3, 99, 2122, 8, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2131, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2141, 8, 101, 1, 101, 3, 101, 2144, 8, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2164, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2170, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2176, 8, 105, 1, 105, 3, 105, 2179, 8, 105, 3, 105, 2181, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 3, 107, 2188, 8, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 3, 108, 2195, 8, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2205, 8, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2210, 8, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 5, 111, 2217, 8, 111, 10, 111, 12, 111, 2220, 9, 111, 1, 112, 1, 112, 1, 112, 5, 112, 2225, 8, 112, 10, 112, 12, 112, 2228, 9, 112, 1, 113, 1, 113, 1, 113, 5, 113, 2233, 8, 113, 10, 113, 12, 113, 2236, 9, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2245, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2258, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2271, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2292, 8, 118, 1, 119, 1, 119, 3, 119, 2296, 8, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 2311, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2317, 8, 123, 1, 123, 3, 123, 2320, 8, 123, 1, 123, 3, 123, 2323, 8, 123, 1, 123, 3, 123, 2326, 8, 123, 1, 123, 3, 123, 2329, 8, 123, 1, 124, 1, 124, 3, 124, 2333, 8, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2345, 8, 127, 10, 127, 12, 127, 2348, 9, 127, 1, 127, 1, 127, 1, 127, 5, 127, 2353, 8, 127, 10, 127, 12, 127, 2356, 9, 127, 3, 127, 2358, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 2373, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2407, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2415, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2420, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2428, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2433, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2438, 8, 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 5, 137, 2446, 8, 137, 10, 137, 12, 137, 2449, 9, 137, 1, 138, 1, 138, 1, 138, 5, 138, 2454, 8, 138, 10, 138, 12, 138, 2457, 9, 138, 1, 139, 1, 139, 1, 139, 5, 139, 2462, 8, 139, 10, 139, 12, 139, 2465, 9, 139, 1, 140, 1, 140, 1, 140, 5, 140, 2470, 8, 140, 10, 140, 12, 140, 2473, 9, 140, 1, 141, 1, 141, 1, 141, 5, 141, 2478, 8, 141, 10, 141, 12, 141, 2481, 9, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2491, 8, 143, 5, 143, 2493, 8, 143, 10, 143, 12, 143, 2496, 9, 143, 1, 144, 1, 144, 1, 144, 5, 144, 2501, 8, 144, 10, 144, 12, 144, 2504, 9, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 3, 146, 2512, 8, 146, 1, 146, 3, 146, 2515, 8, 146, 1, 147, 1, 147, 3, 147, 2519, 8, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 2526, 8, 149, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2532, 8, 151, 1, 151, 1, 151, 3, 151, 2536, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2542, 8, 152, 1, 153, 1, 153, 3, 153, 2546, 8, 153, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 3, 156, 2558, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2567, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2578, 8, 157, 1, 158, 1, 158, 3, 158, 2582, 8, 158, 1, 159, 1, 159, 1, 159, 5, 159, 2587, 8, 159, 10, 159, 12, 159, 2590, 9, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 5, 161, 2599, 8, 161, 10, 161, 12, 161, 2602, 9, 161, 1, 162, 1, 162, 1, 163, 1, 163, 3, 163, 2608, 8, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 3, 166, 2617, 8, 166, 1, 166, 3, 166, 2620, 8, 166, 1, 167, 1, 167, 1, 167, 5, 167, 2625, 8, 167, 10, 167, 12, 167, 2628, 9, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2633, 8, 168, 1, 169, 1, 169, 1, 170, 1, 170, 3, 170, 2639, 8, 170, 1, 170, 3, 170, 2642, 8, 170, 1, 170, 3, 170, 2645, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2651, 8, 171, 1, 172, 1, 172, 3, 172, 2655, 8, 172, 1, 173, 1, 173, 3, 173, 2659, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2664, 8, 174, 1, 174, 1, 174, 3, 174, 2668, 8, 174, 1, 175, 1, 175, 3, 175, 2672, 8, 175, 1, 176, 1, 176, 3, 176, 2676, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2684, 8, 176, 1, 177, 1, 177, 3, 177, 2688, 8, 177, 1, 177, 1, 177, 3, 177, 2692, 8, 177, 1, 178, 1, 178, 3, 178, 2696, 8, 178, 1, 179, 1, 179, 3, 179, 2700, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2708, 8, 179, 1, 180, 1, 180, 3, 180, 2712, 8, 180, 1, 180, 1, 180, 3, 180, 2716, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2724, 8, 181, 1, 182, 1, 182, 1, 182, 3, 182, 2729, 8, 182, 1, 183, 1, 183, 1, 183, 3, 183, 2734, 8, 183, 1, 184, 1, 184, 3, 184, 2738, 8, 184, 1, 185, 1, 185, 3, 185, 2742, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2749, 8, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 5, 188, 2756, 8, 188, 10, 188, 12, 188, 2759, 9, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2766, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2778, 8, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2796, 8, 190, 1, 190, 3, 190, 2799, 8, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2805, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 2831, 8, 195, 1, 196, 3, 196, 2834, 8, 196, 1, 196, 1, 196, 1, 197, 1, 197, 3, 197, 2840, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2846, 8, 198, 10, 198, 12, 198, 2849, 9, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2856, 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 5, 200, 2867, 8, 200, 10, 200, 12, 200, 2870, 9, 200, 1, 201, 1, 201, 4, 201, 2874, 8, 201, 11, 201, 12, 201, 2875, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2882, 8, 202, 1, 203, 1, 203, 3, 203, 2886, 8, 203, 1, 203, 3, 203, 2889, 8, 203, 1, 203, 3, 203, 2892, 8, 203, 1, 203, 3, 203, 2895, 8, 203, 1, 203, 3, 203, 2898, 8, 203, 1, 203, 3, 203, 2901, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2908, 8, 203, 1, 204, 1, 204, 3, 204, 2912, 8, 204, 1, 204, 3, 204, 2915, 8, 204, 1, 204, 3, 204, 2918, 8, 204, 1, 204, 3, 204, 2921, 8, 204, 1, 204, 3, 204, 2924, 8, 204, 1, 204, 3, 204, 2927, 8, 204, 1, 205, 1, 205, 1, 205, 4, 205, 2932, 8, 205, 11, 205, 12, 205, 2933, 1, 206, 3, 206, 2937, 8, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 3, 207, 2944, 8, 207, 1, 207, 3, 207, 2947, 8, 207, 1, 207, 3, 207, 2950, 8, 207, 1, 207, 3, 207, 2953, 8, 207, 1, 207, 3, 207, 2956, 8, 207, 1, 207, 3, 207, 2959, 8, 207, 1, 207, 3, 207, 2962, 8, 207, 1, 207, 3, 207, 2965, 8, 207, 1, 207, 3, 207, 2968, 8, 207, 1, 207, 3, 207, 2971, 8, 207, 1, 207, 3, 207, 2974, 8, 207, 1, 207, 1, 207, 3, 207, 2978, 8, 207, 1, 207, 3, 207, 2981, 8, 207, 1, 207, 3, 207, 2984, 8, 207, 1, 207, 3, 207, 2987, 8, 207, 1, 207, 3, 207, 2990, 8, 207, 1, 207, 3, 207, 2993, 8, 207, 1, 207, 3, 207, 2996, 8, 207, 1, 207, 3, 207, 2999, 8, 207, 1, 207, 3, 207, 3002, 8, 207, 1, 207, 3, 207, 3005, 8, 207, 1, 207, 3, 207, 3008, 8, 207, 3, 207, 3010, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3016, 8, 208, 1, 208, 1, 208, 3, 208, 3020, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3027, 8, 208, 3, 208, 3029, 8, 208, 1, 209, 3, 209, 3032, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3037, 8, 209, 1, 209, 3, 209, 3040, 8, 209, 1, 209, 1, 209, 3, 209, 3044, 8, 209, 1, 210, 1, 210, 1, 210, 3, 210, 3049, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3055, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3061, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 3, 213, 3069, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 5, 214, 3075, 8, 214, 10, 214, 12, 214, 3078, 9, 214, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 3084, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 3090, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 3097, 8, 217, 10, 217, 12, 217, 3100, 9, 217, 3, 217, 3102, 8, 217, 1, 218, 1, 218, 3, 218, 3106, 8, 218, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 222, 1, 222, 3, 222, 3119, 8, 222, 1, 223, 1, 223, 3, 223, 3123, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 4, 225, 3132, 8, 225, 11, 225, 12, 225, 3133, 1, 226, 1, 226, 1, 226, 4, 226, 3139, 8, 226, 11, 226, 12, 226, 3140, 1, 227, 1, 227, 3, 227, 3145, 8, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3150, 8, 227, 1, 227, 3, 227, 3153, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 5, 228, 3163, 8, 228, 10, 228, 12, 228, 3166, 9, 228, 1, 228, 3, 228, 3169, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3176, 8, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3181, 8, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 3, 232, 3201, 8, 232, 1, 233, 1, 233, 1, 233, 4, 233, 3206, 8, 233, 11, 233, 12, 233, 3207, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 3231, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 3247, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3264, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3270, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 3287, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 3300, 8, 242, 1, 243, 1, 243, 3, 243, 3304, 8, 243, 1, 244, 1, 244, 3, 244, 3308, 8, 244, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 3, 246, 3315, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 3343, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 3350, 8, 252, 1, 253, 1, 253, 1, 253, 3, 253, 3355, 8, 253, 1, 254, 1, 254, 1, 254, 3, 254, 3360, 8, 254, 1, 255, 1, 255, 1, 255, 3, 255, 3365, 8, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3370, 8, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 3, 257, 3378, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 3384, 8, 257, 1, 257, 1, 257, 3, 257, 3388, 8, 257, 1, 257, 3, 257, 3391, 8, 257, 1, 257, 3, 257, 3394, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3400, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3407, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 3417, 8, 260, 1, 261, 1, 261, 3, 261, 3421, 8, 261, 1, 261, 4, 261, 3424, 8, 261, 11, 261, 12, 261, 3425, 1, 262, 1, 262, 3, 262, 3430, 8, 262, 1, 263, 1, 263, 5, 263, 3434, 8, 263, 10, 263, 12, 263, 3437, 9, 263, 1, 264, 1, 264, 5, 264, 3441, 8, 264, 10, 264, 12, 264, 3444, 9, 264, 1, 265, 1, 265, 5, 265, 3448, 8, 265, 10, 265, 12, 265, 3451, 9, 265, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 3, 268, 3461, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3468, 8, 268, 10, 268, 12, 268, 3471, 9, 268, 1, 268, 3, 268, 3474, 8, 268, 1, 268, 3, 268, 3477, 8, 268, 1, 268, 3, 268, 3480, 8, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3488, 8, 269, 1, 269, 3, 269, 3491, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 3499, 8, 270, 1, 270, 3, 270, 3502, 8, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 3510, 8, 271, 1, 271, 1, 271, 3, 271, 3514, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 3519, 8, 271, 1, 272, 1, 272, 3, 272, 3523, 8, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 3, 274, 3532, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 5, 277, 3546, 8, 277, 10, 277, 12, 277, 3549, 9, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 3563, 8, 280, 3, 280, 3565, 8, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 3581, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 3588, 8, 283, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 3, 288, 3605, 8, 288, 1, 288, 3, 288, 3608, 8, 288, 1, 288, 3, 288, 3611, 8, 288, 1, 288, 3, 288, 3614, 8, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 3620, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 3643, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 3651, 8, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 3665, 8, 293, 1, 293, 3, 293, 3668, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 3673, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3699, 8, 298, 1, 299, 1, 299, 3, 299, 3703, 8, 299, 1, 299, 3, 299, 3706, 8, 299, 1, 299, 3, 299, 3709, 8, 299, 1, 299, 1, 299, 3, 299, 3713, 8, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3718, 8, 299, 1, 299, 3, 299, 3721, 8, 299, 1, 299, 3, 299, 3724, 8, 299, 1, 299, 3, 299, 3727, 8, 299, 1, 299, 3, 299, 3730, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3736, 8, 299, 1, 299, 3, 299, 3739, 8, 299, 1, 299, 3, 299, 3742, 8, 299, 1, 299, 3, 299, 3745, 8, 299, 1, 299, 3, 299, 3748, 8, 299, 1, 299, 3, 299, 3751, 8, 299, 1, 299, 3, 299, 3754, 8, 299, 1, 299, 3, 299, 3757, 8, 299, 1, 299, 3, 299, 3760, 8, 299, 1, 299, 1, 299, 3, 299, 3764, 8, 299, 3, 299, 3766, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3772, 8, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3777, 8, 299, 1, 299, 3, 299, 3780, 8, 299, 1, 299, 3, 299, 3783, 8, 299, 1, 299, 3, 299, 3786, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3792, 8, 299, 1, 299, 3, 299, 3795, 8, 299, 1, 299, 3, 299, 3798, 8, 299, 1, 299, 3, 299, 3801, 8, 299, 1, 299, 3, 299, 3804, 8, 299, 1, 299, 3, 299, 3807, 8, 299, 1, 299, 3, 299, 3810, 8, 299, 1, 299, 3, 299, 3813, 8, 299, 1, 299, 3, 299, 3816, 8, 299, 1, 299, 1, 299, 3, 299, 3820, 8, 299, 3, 299, 3822, 8, 299, 3, 299, 3824, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 3829, 8, 300, 1, 300, 1, 300, 3, 300, 3833, 8, 300, 1, 300, 3, 300, 3836, 8, 300, 1, 300, 3, 300, 3839, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 3844, 8, 300, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 3, 305, 3862, 8, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 3871, 8, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 5, 308, 3878, 8, 308, 10, 308, 12, 308, 3881, 9, 308, 1, 309, 1, 309, 1, 309, 5, 309, 3886, 8, 309, 10, 309, 12, 309, 3889, 9, 309, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 4, 311, 3898, 8, 311, 11, 311, 12, 311, 3899, 1, 311, 3, 311, 3903, 8, 311, 1, 312, 1, 312, 5, 312, 3907, 8, 312, 10, 312, 12, 312, 3910, 9, 312, 1, 312, 1, 312, 5, 312, 3914, 8, 312, 10, 312, 12, 312, 3917, 9, 312, 1, 312, 1, 312, 5, 312, 3921, 8, 312, 10, 312, 12, 312, 3924, 9, 312, 1, 312, 1, 312, 5, 312, 3928, 8, 312, 10, 312, 12, 312, 3931, 9, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 3937, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 3946, 8, 313, 5, 313, 3948, 8, 313, 10, 313, 12, 313, 3951, 9, 313, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 3957, 8, 314, 1, 314, 5, 314, 3960, 8, 314, 10, 314, 12, 314, 3963, 9, 314, 1, 315, 3, 315, 3966, 8, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 3982, 8, 318, 1, 318, 1, 318, 3, 318, 3986, 8, 318, 3, 318, 3988, 8, 318, 1, 318, 3, 318, 3991, 8, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 5, 319, 4002, 8, 319, 10, 319, 12, 319, 4005, 9, 319, 3, 319, 4007, 8, 319, 1, 319, 3, 319, 4010, 8, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 5, 319, 4020, 8, 319, 10, 319, 12, 319, 4023, 9, 319, 3, 319, 4025, 8, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 3, 319, 4032, 8, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 5, 319, 4039, 8, 319, 10, 319, 12, 319, 4042, 9, 319, 1, 319, 1, 319, 3, 319, 4046, 8, 319, 3, 319, 4048, 8, 319, 3, 319, 4050, 8, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 4065, 8, 321, 10, 321, 12, 321, 4068, 9, 321, 3, 321, 4070, 8, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 4079, 8, 322, 1, 322, 1, 322, 1, 323, 1, 323, 3, 323, 4085, 8, 323, 1, 324, 1, 324, 3, 324, 4089, 8, 324, 1, 324, 3, 324, 4092, 8, 324, 1, 324, 3, 324, 4095, 8, 324, 1, 324, 3, 324, 4098, 8, 324, 1, 324, 3, 324, 4101, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4113, 8, 325, 1, 326, 1, 326, 3, 326, 4117, 8, 326, 1, 326, 3, 326, 4120, 8, 326, 1, 326, 3, 326, 4123, 8, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 329, 1, 329, 3, 329, 4131, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4138, 8, 330, 1, 330, 3, 330, 4141, 8, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 4148, 8, 331, 1, 331, 3, 331, 4151, 8, 331, 1, 332, 1, 332, 1, 332, 3, 332, 4156, 8, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 3, 333, 4163, 8, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 4171, 8, 334, 1, 334, 1, 334, 1, 335, 1, 335, 3, 335, 4177, 8, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4182, 8, 335, 1, 335, 1, 335, 3, 335, 4186, 8, 335, 1, 336, 1, 336, 1, 336, 3, 336, 4191, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 4198, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 4210, 8, 337, 10, 337, 12, 337, 4213, 9, 337, 3, 337, 4215, 8, 337, 1, 337, 1, 337, 3, 337, 4219, 8, 337, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 5, 342, 4234, 8, 342, 10, 342, 12, 342, 4237, 9, 342, 1, 342, 1, 342, 1, 342, 5, 342, 4242, 8, 342, 10, 342, 12, 342, 4245, 9, 342, 3, 342, 4247, 8, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 4260, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 5, 345, 4267, 8, 345, 10, 345, 12, 345, 4270, 9, 345, 3, 345, 4272, 8, 345, 1, 345, 1, 345, 1, 346, 1, 346, 3, 346, 4278, 8, 346, 1, 346, 3, 346, 4281, 8, 346, 1, 346, 1, 346, 1, 346, 3, 346, 4286, 8, 346, 1, 346, 3, 346, 4289, 8, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 5, 348, 4296, 8, 348, 10, 348, 12, 348, 4299, 9, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 4312, 8, 349, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 4318, 8, 349, 3, 349, 4320, 8, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 3, 350, 4328, 8, 350, 1, 350, 3, 350, 4331, 8, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 5, 350, 4339, 8, 350, 10, 350, 12, 350, 4342, 9, 350, 1, 350, 1, 350, 3, 350, 4346, 8, 350, 3, 350, 4348, 8, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 3, 351, 4360, 8, 351, 1, 351, 1, 351, 1, 351, 1, 351, 3, 351, 4366, 8, 351, 3, 351, 4368, 8, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 3, 352, 4375, 8, 352, 1, 353, 1, 353, 1, 353, 5, 353, 4380, 8, 353, 10, 353, 12, 353, 4383, 9, 353, 1, 354, 1, 354, 1, 354, 1, 354, 5, 354, 4389, 8, 354, 10, 354, 12, 354, 4392, 9, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 3, 356, 4401, 8, 356, 1, 356, 3, 356, 4404, 8, 356, 1, 356, 3, 356, 4407, 8, 356, 1, 356, 3, 356, 4410, 8, 356, 1, 357, 1, 357, 3, 357, 4414, 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 4423, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 4432, 8, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 4440, 8, 360, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 4446, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 4456, 8, 363, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 3, 365, 4463, 8, 365, 1, 365, 1, 365, 1, 365, 1, 365, 5, 365, 4469, 8, 365, 10, 365, 12, 365, 4472, 9, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 3, 366, 4481, 8, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 5, 366, 4489, 8, 366, 10, 366, 12, 366, 4492, 9, 366, 1, 366, 1, 366, 3, 366, 4496, 8, 366, 1, 367, 1, 367, 3, 367, 4500, 8, 367, 1, 368, 1, 368, 3, 368, 4504, 8, 368, 1, 368, 1, 368, 5, 368, 4508, 8, 368, 10, 368, 12, 368, 4511, 9, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 3, 374, 4531, 8, 374, 1, 375, 1, 375, 4, 375, 4535, 8, 375, 11, 375, 12, 375, 4536, 1, 376, 1, 376, 3, 376, 4541, 8, 376, 1, 377, 1, 377, 3, 377, 4545, 8, 377, 1, 377, 3, 377, 4548, 8, 377, 1, 377, 1, 377, 5, 377, 4552, 8, 377, 10, 377, 12, 377, 4555, 9, 377, 1, 378, 1, 378, 3, 378, 4559, 8, 378, 1, 378, 3, 378, 4562, 8, 378, 1, 379, 1, 379, 3, 379, 4566, 8, 379, 1, 380, 1, 380, 1, 380, 1, 380, 5, 380, 4572, 8, 380, 10, 380, 12, 380, 4575, 9, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 5, 381, 4582, 8, 381, 10, 381, 12, 381, 4585, 9, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 5, 382, 4592, 8, 382, 10, 382, 12, 382, 4595, 9, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 4613, 8, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 4620, 8, 387, 1, 387, 3, 387, 4623, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 4634, 8, 388, 1, 388, 1, 388, 1, 388, 5, 388, 4639, 8, 388, 10, 388, 12, 388, 4642, 9, 388, 3, 388, 4644, 8, 388, 3, 388, 4646, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 4657, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 4667, 8, 388, 3, 388, 4669, 8, 388, 1, 389, 1, 389, 1, 389, 1, 389, 3, 389, 4675, 8, 389, 1, 390, 1, 390, 1, 391, 1, 391, 3, 391, 4681, 8, 391, 1, 392, 1, 392, 3, 392, 4685, 8, 392, 1, 393, 1, 393, 1, 394, 1, 394, 3, 394, 4691, 8, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 3, 395, 4700, 8, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 4, 396, 4711, 8, 396, 11, 396, 12, 396, 4712, 1, 396, 1, 396, 3, 396, 4717, 8, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 4, 397, 4727, 8, 397, 11, 397, 12, 397, 4728, 1, 397, 1, 397, 3, 397, 4733, 8, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 4742, 8, 398, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 3, 399, 4754, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 4771, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 4786, 8, 402, 1, 403, 1, 403, 1, 404, 1, 404, 1, 405, 1, 405, 4, 405, 4794, 8, 405, 11, 405, 12, 405, 4795, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 3, 407, 4804, 8, 407, 1, 408, 1, 408, 1, 408, 3, 408, 4809, 8, 408, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 4830, 8, 412, 1, 412, 1, 412, 3, 412, 4834, 8, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 4850, 8, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 4865, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 5, 416, 4874, 8, 416, 10, 416, 12, 416, 4877, 9, 416, 1, 417, 1, 417, 1, 418, 5, 418, 4882, 8, 418, 10, 418, 12, 418, 4885, 9, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 5, 420, 4895, 8, 420, 10, 420, 12, 420, 4898, 9, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 5, 422, 4906, 8, 422, 10, 422, 12, 422, 4909, 9, 422, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 5, 424, 4917, 8, 424, 10, 424, 12, 424, 4920, 9, 424, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 5, 426, 4928, 8, 426, 10, 426, 12, 426, 4931, 9, 426, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 5, 428, 4939, 8, 428, 10, 428, 12, 428, 4942, 9, 428, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 5, 430, 4950, 8, 430, 10, 430, 12, 430, 4953, 9, 430, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 3, 432, 4962, 8, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 3, 434, 4971, 8, 434, 1, 435, 1, 435, 3, 435, 4975, 8, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 4983, 8, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 4996, 8, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 440, 1, 440, 3, 440, 5006, 8, 440, 1, 441, 1, 441, 1, 441, 1, 441, 3, 441, 5012, 8, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 3, 443, 5025, 8, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 5, 444, 5034, 8, 444, 10, 444, 12, 444, 5037, 9, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 5051, 8, 445, 1, 446, 1, 446, 1, 446, 3, 446, 5056, 8, 446, 1, 447, 1, 447, 1, 448, 5, 448, 5061, 8, 448, 10, 448, 12, 448, 5064, 9, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 5, 450, 5074, 8, 450, 10, 450, 12, 450, 5077, 9, 450, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 5, 452, 5085, 8, 452, 10, 452, 12, 452, 5088, 9, 452, 1, 453, 1, 453, 1, 454, 1, 454, 1, 455, 1, 455, 3, 455, 5096, 8, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 5, 456, 5103, 8, 456, 10, 456, 12, 456, 5106, 9, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 3, 457, 5113, 8, 457, 1, 458, 1, 458, 1, 458, 1, 458, 5, 458, 5119, 8, 458, 10, 458, 12, 458, 5122, 9, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 3, 460, 5132, 8, 460, 1, 461, 1, 461, 1, 462, 1, 462, 1, 463, 1, 463, 3, 463, 5140, 8, 463, 1, 464, 1, 464, 1, 464, 3, 464, 5145, 8, 464, 1, 465, 1, 465, 1, 466, 1, 466, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 5, 469, 5159, 8, 469, 10, 469, 12, 469, 5162, 9, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 3, 470, 5169, 8, 470, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 5, 472, 5176, 8, 472, 10, 472, 12, 472, 5179, 9, 472, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 5, 476, 5196, 8, 476, 10, 476, 12, 476, 5199, 9, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 3, 477, 5215, 8, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 3, 478, 5224, 8, 478, 1, 479, 1, 479, 1, 479, 5, 479, 5229, 8, 479, 10, 479, 12, 479, 5232, 9, 479, 1, 480, 1, 480, 1, 480, 3, 480, 5237, 8, 480, 1, 481, 1, 481, 1, 481, 5, 481, 5242, 8, 481, 10, 481, 12, 481, 5245, 9, 481, 1, 482, 1, 482, 1, 482, 1, 482, 3, 482, 5251, 8, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 3, 482, 5260, 8, 482, 3, 482, 5262, 8, 482, 1, 483, 1, 483, 1, 483, 1, 484, 1, 484, 3, 484, 5269, 8, 484, 1, 485, 1, 485, 1, 486, 1, 486, 1, 487, 1, 487, 1, 488, 1, 488, 1, 489, 1, 489, 1, 490, 1, 490, 1, 491, 1, 491, 1, 492, 1, 492, 1, 493, 1, 493, 1, 494, 1, 494, 1, 495, 1, 495, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 3, 496, 5308, 8, 496, 1, 496, 1, 496, 3, 496, 5312, 8, 496, 3, 496, 5314, 8, 496, 1, 497, 1, 497, 3, 497, 5318, 8, 497, 1, 497, 1, 497, 1, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 3, 498, 5335, 8, 498, 1, 499, 1, 499, 1, 499, 1, 499, 3, 499, 5341, 8, 499, 1, 499, 1, 499, 1, 500, 1, 500, 1, 500, 5, 500, 5348, 8, 500, 10, 500, 12, 500, 5351, 9, 500, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 1, 503, 1, 503, 1, 503, 5, 503, 5361, 8, 503, 10, 503, 12, 503, 5364, 9, 503, 1, 504, 1, 504, 1, 504, 5, 504, 5369, 8, 504, 10, 504, 12, 504, 5372, 9, 504, 1, 505, 1, 505, 1, 505, 1, 505, 1, 506, 1, 506, 1, 507, 1, 507, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, 5386, 8, 508, 1, 509, 1, 509, 1, 509, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 3, 511, 5415, 8, 511, 1, 511, 1, 511, 1, 511, 3, 511, 5420, 8, 511, 3, 511, 5422, 8, 511, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 3, 513, 5442, 8, 513, 1, 514, 1, 514, 1, 514, 5, 514, 5447, 8, 514, 10, 514, 12, 514, 5450, 9, 514, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 3, 516, 5472, 8, 516, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 3, 518, 5489, 8, 518, 1, 518, 1, 518, 1, 518, 3, 518, 5494, 8, 518, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 3, 519, 5505, 8, 519, 1, 519, 1, 519, 1, 519, 3, 519, 5510, 8, 519, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 0, 0, 521, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1040, 0, 56, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 225, 225, 324, 324, 2, 0, 34, 34, 281, 281, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 294, 294, 2, 0, 68, 68, 295, 295, 1, 0, 155, 156, 2, 0, 114, 114, 306, 306, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 189, 189, 298, 298, 308, 308, 364, 364, 3, 0, 4, 4, 101, 101, 325, 325, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 350, 350, 2, 0, 216, 216, 372, 372, 2, 0, 213, 213, 271, 271, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 375, 375, 4, 0, 112, 112, 164, 164, 204, 204, 355, 355, 2, 0, 7, 7, 96, 96, 2, 0, 224, 224, 390, 390, 2, 0, 188, 188, 195, 195, 2, 0, 42, 42, 314, 314, 2, 0, 425, 425, 430, 430, 2, 0, 140, 140, 284, 284, 3, 0, 12, 12, 230, 230, 299, 299, 2, 0, 240, 240, 291, 291, 2, 0, 197, 197, 267, 267, 2, 0, 353, 353, 430, 430, 2, 0, 133, 133, 246, 246, 3, 0, 412, 413, 417, 417, 419, 419, 2, 0, 411, 411, 414, 416, 1, 0, 412, 413, 3, 0, 183, 183, 269, 269, 285, 285, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 312, 312, 2, 0, 125, 125, 349, 349, 2, 0, 404, 404, 406, 410, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 183, 183, 197, 197, 215, 215, 227, 227, 263, 263, 269, 269, 285, 285, 310, 310, 322, 323, 339, 339, 356, 356, 382, 382, 404, 416, 418, 420, 422, 422, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 182, 184, 186, 188, 192, 194, 196, 198, 201, 203, 203, 205, 208, 210, 211, 213, 214, 216, 217, 219, 219, 221, 222, 225, 226, 231, 232, 234, 235, 237, 239, 242, 245, 251, 251, 253, 254, 256, 258, 260, 261, 264, 266, 270, 281, 283, 283, 286, 287, 292, 297, 299, 302, 304, 309, 311, 311, 313, 316, 318, 324, 326, 327, 329, 329, 331, 333, 338, 339, 341, 341, 343, 345, 348, 348, 351, 352, 354, 354, 356, 356, 359, 363, 365, 367, 370, 372, 374, 374, 376, 381, 384, 384, 387, 393, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 197, 197, 263, 263, 310, 310, 336, 336, 4, 0, 198, 198, 241, 241, 299, 299, 321, 321, 2, 0, 212, 212, 430, 431, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 391, 392, 1, 0, 207, 208, 1, 0, 380, 381, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 205, 206, 1, 0, 296, 297, 1, 0, 80, 82, 2, 0, 4, 4, 101, 101, 3, 0, 14, 14, 144, 144, 368, 368, 5918, 0, 1045, 1, 0, 0, 0, 2, 1052, 1, 0, 0, 0, 4, 1057, 1, 0, 0, 0, 6, 1091, 1, 0, 0, 0, 8, 1093, 1, 0, 0, 0, 10, 1095, 1, 0, 0, 0, 12, 1111, 1, 0, 0, 0, 14, 1113, 1, 0, 0, 0, 16, 1129, 1, 0, 0, 0, 18, 1132, 1, 0, 0, 0, 20, 1141, 1, 0, 0, 0, 22, 1149, 1, 0, 0, 0, 24, 1162, 1, 0, 0, 0, 26, 1173, 1, 0, 0, 0, 28, 1178, 1, 0, 0, 0, 30, 1189, 1, 0, 0, 0, 32, 1193, 1, 0, 0, 0, 34, 1201, 1, 0, 0, 0, 36, 1206, 1, 0, 0, 0, 38, 1260, 1, 0, 0, 0, 40, 1262, 1, 0, 0, 0, 42, 1265, 1, 0, 0, 0, 44, 1267, 1, 0, 0, 0, 46, 1271, 1, 0, 0, 0, 48, 1273, 1, 0, 0, 0, 50, 1276, 1, 0, 0, 0, 52, 1279, 1, 0, 0, 0, 54, 1283, 1, 0, 0, 0, 56, 1325, 1, 0, 0, 0, 58, 1327, 1, 0, 0, 0, 60, 1330, 1, 0, 0, 0, 62, 1333, 1, 0, 0, 0, 64, 1337, 1, 0, 0, 0, 66, 1345, 1, 0, 0, 0, 68, 1348, 1, 0, 0, 0, 70, 1351, 1, 0, 0, 0, 72, 1360, 1, 0, 0, 0, 74, 1363, 1, 0, 0, 0, 76, 1378, 1, 0, 0, 0, 78, 1390, 1, 0, 0, 0, 80, 1395, 1, 0, 0, 0, 82, 1415, 1, 0, 0, 0, 84, 1419, 1, 0, 0, 0, 86, 1426, 1, 0, 0, 0, 88, 1451, 1, 0, 0, 0, 90, 1468, 1, 0, 0, 0, 92, 1470, 1, 0, 0, 0, 94, 1665, 1, 0, 0, 0, 96, 1675, 1, 0, 0, 0, 98, 1677, 1, 0, 0, 0, 100, 1685, 1, 0, 0, 0, 102, 1690, 1, 0, 0, 0, 104, 1692, 1, 0, 0, 0, 106, 1698, 1, 0, 0, 0, 108, 1702, 1, 0, 0, 0, 110, 1706, 1, 0, 0, 0, 112, 1710, 1, 0, 0, 0, 114, 1720, 1, 0, 0, 0, 116, 1731, 1, 0, 0, 0, 118, 1748, 1, 0, 0, 0, 120, 1766, 1, 0, 0, 0, 122, 1771, 1, 0, 0, 0, 124, 1774, 1, 0, 0, 0, 126, 1778, 1, 0, 0, 0, 128, 1785, 1, 0, 0, 0, 130, 1794, 1, 0, 0, 0, 132, 1800, 1, 0, 0, 0, 134, 1802, 1, 0, 0, 0, 136, 1819, 1, 0, 0, 0, 138, 1841, 1, 0, 0, 0, 140, 1843, 1, 0, 0, 0, 142, 1851, 1, 0, 0, 0, 144, 1858, 1, 0, 0, 0, 146, 1860, 1, 0, 0, 0, 148, 1874, 1, 0, 0, 0, 150, 1881, 1, 0, 0, 0, 152, 1883, 1, 0, 0, 0, 154, 1887, 1, 0, 0, 0, 156, 1891, 1, 0, 0, 0, 158, 1895, 1, 0, 0, 0, 160, 1899, 1, 0, 0, 0, 162, 1912, 1, 0, 0, 0, 164, 1920, 1, 0, 0, 0, 166, 1923, 1, 0, 0, 0, 168, 1925, 1, 0, 0, 0, 170, 1937, 1, 0, 0, 0, 172, 1947, 1, 0, 0, 0, 174, 1950, 1, 0, 0, 0, 176, 1961, 1, 0, 0, 0, 178, 1969, 1, 0, 0, 0, 180, 2013, 1, 0, 0, 0, 182, 2022, 1, 0, 0, 0, 184, 2049, 1, 0, 0, 0, 186, 2062, 1, 0, 0, 0, 188, 2064, 1, 0, 0, 0, 190, 2070, 1, 0, 0, 0, 192, 2073, 1, 0, 0, 0, 194, 2079, 1, 0, 0, 0, 196, 2085, 1, 0, 0, 0, 198, 2092, 1, 0, 0, 0, 200, 2126, 1, 0, 0, 0, 202, 2134, 1, 0, 0, 0, 204, 2147, 1, 0, 0, 0, 206, 2152, 1, 0, 0, 0, 208, 2163, 1, 0, 0, 0, 210, 2180, 1, 0, 0, 0, 212, 2182, 1, 0, 0, 0, 214, 2187, 1, 0, 0, 0, 216, 2194, 1, 0, 0, 0, 218, 2196, 1, 0, 0, 0, 220, 2199, 1, 0, 0, 0, 222, 2213, 1, 0, 0, 0, 224, 2221, 1, 0, 0, 0, 226, 2229, 1, 0, 0, 0, 228, 2237, 1, 0, 0, 0, 230, 2257, 1, 0, 0, 0, 232, 2259, 1, 0, 0, 0, 234, 2276, 1, 0, 0, 0, 236, 2281, 1, 0, 0, 0, 238, 2295, 1, 0, 0, 0, 240, 2297, 1, 0, 0, 0, 242, 2300, 1, 0, 0, 0, 244, 2303, 1, 0, 0, 0, 246, 2312, 1, 0, 0, 0, 248, 2332, 1, 0, 0, 0, 250, 2334, 1, 0, 0, 0, 252, 2337, 1, 0, 0, 0, 254, 2357, 1, 0, 0, 0, 256, 2359, 1, 0, 0, 0, 258, 2363, 1, 0, 0, 0, 260, 2365, 1, 0, 0, 0, 262, 2374, 1, 0, 0, 0, 264, 2380, 1, 0, 0, 0, 266, 2386, 1, 0, 0, 0, 268, 2391, 1, 0, 0, 0, 270, 2437, 1, 0, 0, 0, 272, 2439, 1, 0, 0, 0, 274, 2442, 1, 0, 0, 0, 276, 2450, 1, 0, 0, 0, 278, 2458, 1, 0, 0, 0, 280, 2466, 1, 0, 0, 0, 282, 2474, 1, 0, 0, 0, 284, 2482, 1, 0, 0, 0, 286, 2484, 1, 0, 0, 0, 288, 2497, 1, 0, 0, 0, 290, 2505, 1, 0, 0, 0, 292, 2514, 1, 0, 0, 0, 294, 2518, 1, 0, 0, 0, 296, 2520, 1, 0, 0, 0, 298, 2525, 1, 0, 0, 0, 300, 2527, 1, 0, 0, 0, 302, 2531, 1, 0, 0, 0, 304, 2537, 1, 0, 0, 0, 306, 2545, 1, 0, 0, 0, 308, 2547, 1, 0, 0, 0, 310, 2550, 1, 0, 0, 0, 312, 2557, 1, 0, 0, 0, 314, 2568, 1, 0, 0, 0, 316, 2581, 1, 0, 0, 0, 318, 2583, 1, 0, 0, 0, 320, 2591, 1, 0, 0, 0, 322, 2595, 1, 0, 0, 0, 324, 2603, 1, 0, 0, 0, 326, 2607, 1, 0, 0, 0, 328, 2609, 1, 0, 0, 0, 330, 2611, 1, 0, 0, 0, 332, 2614, 1, 0, 0, 0, 334, 2621, 1, 0, 0, 0, 336, 2629, 1, 0, 0, 0, 338, 2634, 1, 0, 0, 0, 340, 2638, 1, 0, 0, 0, 342, 2646, 1, 0, 0, 0, 344, 2654, 1, 0, 0, 0, 346, 2658, 1, 0, 0, 0, 348, 2660, 1, 0, 0, 0, 350, 2671, 1, 0, 0, 0, 352, 2675, 1, 0, 0, 0, 354, 2687, 1, 0, 0, 0, 356, 2695, 1, 0, 0, 0, 358, 2699, 1, 0, 0, 0, 360, 2711, 1, 0, 0, 0, 362, 2723, 1, 0, 0, 0, 364, 2728, 1, 0, 0, 0, 366, 2733, 1, 0, 0, 0, 368, 2735, 1, 0, 0, 0, 370, 2739, 1, 0, 0, 0, 372, 2743, 1, 0, 0, 0, 374, 2750, 1, 0, 0, 0, 376, 2752, 1, 0, 0, 0, 378, 2765, 1, 0, 0, 0, 380, 2804, 1, 0, 0, 0, 382, 2806, 1, 0, 0, 0, 384, 2811, 1, 0, 0, 0, 386, 2816, 1, 0, 0, 0, 388, 2823, 1, 0, 0, 0, 390, 2828, 1, 0, 0, 0, 392, 2833, 1, 0, 0, 0, 394, 2839, 1, 0, 0, 0, 396, 2841, 1, 0, 0, 0, 398, 2850, 1, 0, 0, 0, 400, 2862, 1, 0, 0, 0, 402, 2871, 1, 0, 0, 0, 404, 2881, 1, 0, 0, 0, 406, 2907, 1, 0, 0, 0, 408, 2909, 1, 0, 0, 0, 410, 2931, 1, 0, 0, 0, 412, 2936, 1, 0, 0, 0, 414, 3009, 1, 0, 0, 0, 416, 3011, 1, 0, 0, 0, 418, 3043, 1, 0, 0, 0, 420, 3045, 1, 0, 0, 0, 422, 3056, 1, 0, 0, 0, 424, 3062, 1, 0, 0, 0, 426, 3068, 1, 0, 0, 0, 428, 3070, 1, 0, 0, 0, 430, 3079, 1, 0, 0, 0, 432, 3089, 1, 0, 0, 0, 434, 3091, 1, 0, 0, 0, 436, 3105, 1, 0, 0, 0, 438, 3107, 1, 0, 0, 0, 440, 3110, 1, 0, 0, 0, 442, 3114, 1, 0, 0, 0, 444, 3116, 1, 0, 0, 0, 446, 3120, 1, 0, 0, 0, 448, 3124, 1, 0, 0, 0, 450, 3128, 1, 0, 0, 0, 452, 3135, 1, 0, 0, 0, 454, 3142, 1, 0, 0, 0, 456, 3164, 1, 0, 0, 0, 458, 3170, 1, 0, 0, 0, 460, 3185, 1, 0, 0, 0, 462, 3192, 1, 0, 0, 0, 464, 3200, 1, 0, 0, 0, 466, 3202, 1, 0, 0, 0, 468, 3209, 1, 0, 0, 0, 470, 3213, 1, 0, 0, 0, 472, 3216, 1, 0, 0, 0, 474, 3219, 1, 0, 0, 0, 476, 3222, 1, 0, 0, 0, 478, 3269, 1, 0, 0, 0, 480, 3286, 1, 0, 0, 0, 482, 3288, 1, 0, 0, 0, 484, 3299, 1, 0, 0, 0, 486, 3303, 1, 0, 0, 0, 488, 3307, 1, 0, 0, 0, 490, 3309, 1, 0, 0, 0, 492, 3314, 1, 0, 0, 0, 494, 3316, 1, 0, 0, 0, 496, 3321, 1, 0, 0, 0, 498, 3326, 1, 0, 0, 0, 500, 3331, 1, 0, 0, 0, 502, 3336, 1, 0, 0, 0, 504, 3342, 1, 0, 0, 0, 506, 3351, 1, 0, 0, 0, 508, 3356, 1, 0, 0, 0, 510, 3369, 1, 0, 0, 0, 512, 3371, 1, 0, 0, 0, 514, 3375, 1, 0, 0, 0, 516, 3395, 1, 0, 0, 0, 518, 3408, 1, 0, 0, 0, 520, 3416, 1, 0, 0, 0, 522, 3418, 1, 0, 0, 0, 524, 3427, 1, 0, 0, 0, 526, 3431, 1, 0, 0, 0, 528, 3438, 1, 0, 0, 0, 530, 3445, 1, 0, 0, 0, 532, 3452, 1, 0, 0, 0, 534, 3455, 1, 0, 0, 0, 536, 3458, 1, 0, 0, 0, 538, 3490, 1, 0, 0, 0, 540, 3501, 1, 0, 0, 0, 542, 3518, 1, 0, 0, 0, 544, 3520, 1, 0, 0, 0, 546, 3524, 1, 0, 0, 0, 548, 3531, 1, 0, 0, 0, 550, 3533, 1, 0, 0, 0, 552, 3538, 1, 0, 0, 0, 554, 3542, 1, 0, 0, 0, 556, 3550, 1, 0, 0, 0, 558, 3554, 1, 0, 0, 0, 560, 3564, 1, 0, 0, 0, 562, 3566, 1, 0, 0, 0, 564, 3572, 1, 0, 0, 0, 566, 3576, 1, 0, 0, 0, 568, 3589, 1, 0, 0, 0, 570, 3591, 1, 0, 0, 0, 572, 3595, 1, 0, 0, 0, 574, 3598, 1, 0, 0, 0, 576, 3601, 1, 0, 0, 0, 578, 3621, 1, 0, 0, 0, 580, 3625, 1, 0, 0, 0, 582, 3632, 1, 0, 0, 0, 584, 3646, 1, 0, 0, 0, 586, 3667, 1, 0, 0, 0, 588, 3672, 1, 0, 0, 0, 590, 3674, 1, 0, 0, 0, 592, 3679, 1, 0, 0, 0, 594, 3684, 1, 0, 0, 0, 596, 3698, 1, 0, 0, 0, 598, 3823, 1, 0, 0, 0, 600, 3825, 1, 0, 0, 0, 602, 3845, 1, 0, 0, 0, 604, 3848, 1, 0, 0, 0, 606, 3851, 1, 0, 0, 0, 608, 3854, 1, 0, 0, 0, 610, 3858, 1, 0, 0, 0, 612, 3870, 1, 0, 0, 0, 614, 3872, 1, 0, 0, 0, 616, 3874, 1, 0, 0, 0, 618, 3882, 1, 0, 0, 0, 620, 3890, 1, 0, 0, 0, 622, 3902, 1, 0, 0, 0, 624, 3936, 1, 0, 0, 0, 626, 3938, 1, 0, 0, 0, 628, 3956, 1, 0, 0, 0, 630, 3965, 1, 0, 0, 0, 632, 3970, 1, 0, 0, 0, 634, 3974, 1, 0, 0, 0, 636, 3990, 1, 0, 0, 0, 638, 4049, 1, 0, 0, 0, 640, 4051, 1, 0, 0, 0, 642, 4053, 1, 0, 0, 0, 644, 4073, 1, 0, 0, 0, 646, 4084, 1, 0, 0, 0, 648, 4086, 1, 0, 0, 0, 650, 4102, 1, 0, 0, 0, 652, 4114, 1, 0, 0, 0, 654, 4124, 1, 0, 0, 0, 656, 4126, 1, 0, 0, 0, 658, 4130, 1, 0, 0, 0, 660, 4140, 1, 0, 0, 0, 662, 4150, 1, 0, 0, 0, 664, 4155, 1, 0, 0, 0, 666, 4162, 1, 0, 0, 0, 668, 4166, 1, 0, 0, 0, 670, 4185, 1, 0, 0, 0, 672, 4190, 1, 0, 0, 0, 674, 4192, 1, 0, 0, 0, 676, 4220, 1, 0, 0, 0, 678, 4223, 1, 0, 0, 0, 680, 4225, 1, 0, 0, 0, 682, 4227, 1, 0, 0, 0, 684, 4246, 1, 0, 0, 0, 686, 4248, 1, 0, 0, 0, 688, 4250, 1, 0, 0, 0, 690, 4254, 1, 0, 0, 0, 692, 4288, 1, 0, 0, 0, 694, 4290, 1, 0, 0, 0, 696, 4292, 1, 0, 0, 0, 698, 4300, 1, 0, 0, 0, 700, 4347, 1, 0, 0, 0, 702, 4349, 1, 0, 0, 0, 704, 4374, 1, 0, 0, 0, 706, 4376, 1, 0, 0, 0, 708, 4384, 1, 0, 0, 0, 710, 4393, 1, 0, 0, 0, 712, 4409, 1, 0, 0, 0, 714, 4413, 1, 0, 0, 0, 716, 4415, 1, 0, 0, 0, 718, 4424, 1, 0, 0, 0, 720, 4439, 1, 0, 0, 0, 722, 4445, 1, 0, 0, 0, 724, 4447, 1, 0, 0, 0, 726, 4455, 1, 0, 0, 0, 728, 4457, 1, 0, 0, 0, 730, 4462, 1, 0, 0, 0, 732, 4475, 1, 0, 0, 0, 734, 4499, 1, 0, 0, 0, 736, 4501, 1, 0, 0, 0, 738, 4514, 1, 0, 0, 0, 740, 4516, 1, 0, 0, 0, 742, 4519, 1, 0, 0, 0, 744, 4522, 1, 0, 0, 0, 746, 4524, 1, 0, 0, 0, 748, 4528, 1, 0, 0, 0, 750, 4534, 1, 0, 0, 0, 752, 4540, 1, 0, 0, 0, 754, 4542, 1, 0, 0, 0, 756, 4556, 1, 0, 0, 0, 758, 4565, 1, 0, 0, 0, 760, 4567, 1, 0, 0, 0, 762, 4578, 1, 0, 0, 0, 764, 4586, 1, 0, 0, 0, 766, 4596, 1, 0, 0, 0, 768, 4600, 1, 0, 0, 0, 770, 4604, 1, 0, 0, 0, 772, 4608, 1, 0, 0, 0, 774, 4614, 1, 0, 0, 0, 776, 4668, 1, 0, 0, 0, 778, 4674, 1, 0, 0, 0, 780, 4676, 1, 0, 0, 0, 782, 4680, 1, 0, 0, 0, 784, 4684, 1, 0, 0, 0, 786, 4686, 1, 0, 0, 0, 788, 4690, 1, 0, 0, 0, 790, 4692, 1, 0, 0, 0, 792, 4703, 1, 0, 0, 0, 794, 4720, 1, 0, 0, 0, 796, 4736, 1, 0, 0, 0, 798, 4753, 1, 0, 0, 0, 800, 4755, 1, 0, 0, 0, 802, 4770, 1, 0, 0, 0, 804, 4785, 1, 0, 0, 0, 806, 4787, 1, 0, 0, 0, 808, 4789, 1, 0, 0, 0, 810, 4791, 1, 0, 0, 0, 812, 4797, 1, 0, 0, 0, 814, 4803, 1, 0, 0, 0, 816, 4808, 1, 0, 0, 0, 818, 4810, 1, 0, 0, 0, 820, 4813, 1, 0, 0, 0, 822, 4815, 1, 0, 0, 0, 824, 4833, 1, 0, 0, 0, 826, 4849, 1, 0, 0, 0, 828, 4851, 1, 0, 0, 0, 830, 4864, 1, 0, 0, 0, 832, 4866, 1, 0, 0, 0, 834, 4878, 1, 0, 0, 0, 836, 4883, 1, 0, 0, 0, 838, 4888, 1, 0, 0, 0, 840, 4890, 1, 0, 0, 0, 842, 4899, 1, 0, 0, 0, 844, 4901, 1, 0, 0, 0, 846, 4910, 1, 0, 0, 0, 848, 4912, 1, 0, 0, 0, 850, 4921, 1, 0, 0, 0, 852, 4923, 1, 0, 0, 0, 854, 4932, 1, 0, 0, 0, 856, 4934, 1, 0, 0, 0, 858, 4943, 1, 0, 0, 0, 860, 4945, 1, 0, 0, 0, 862, 4954, 1, 0, 0, 0, 864, 4961, 1, 0, 0, 0, 866, 4963, 1, 0, 0, 0, 868, 4970, 1, 0, 0, 0, 870, 4972, 1, 0, 0, 0, 872, 4982, 1, 0, 0, 0, 874, 4995, 1, 0, 0, 0, 876, 4997, 1, 0, 0, 0, 878, 5001, 1, 0, 0, 0, 880, 5005, 1, 0, 0, 0, 882, 5011, 1, 0, 0, 0, 884, 5013, 1, 0, 0, 0, 886, 5024, 1, 0, 0, 0, 888, 5026, 1, 0, 0, 0, 890, 5050, 1, 0, 0, 0, 892, 5052, 1, 0, 0, 0, 894, 5057, 1, 0, 0, 0, 896, 5062, 1, 0, 0, 0, 898, 5067, 1, 0, 0, 0, 900, 5069, 1, 0, 0, 0, 902, 5078, 1, 0, 0, 0, 904, 5080, 1, 0, 0, 0, 906, 5089, 1, 0, 0, 0, 908, 5091, 1, 0, 0, 0, 910, 5093, 1, 0, 0, 0, 912, 5097, 1, 0, 0, 0, 914, 5109, 1, 0, 0, 0, 916, 5114, 1, 0, 0, 0, 918, 5125, 1, 0, 0, 0, 920, 5131, 1, 0, 0, 0, 922, 5133, 1, 0, 0, 0, 924, 5135, 1, 0, 0, 0, 926, 5139, 1, 0, 0, 0, 928, 5141, 1, 0, 0, 0, 930, 5146, 1, 0, 0, 0, 932, 5148, 1, 0, 0, 0, 934, 5150, 1, 0, 0, 0, 936, 5152, 1, 0, 0, 0, 938, 5155, 1, 0, 0, 0, 940, 5163, 1, 0, 0, 0, 942, 5170, 1, 0, 0, 0, 944, 5172, 1, 0, 0, 0, 946, 5180, 1, 0, 0, 0, 948, 5182, 1, 0, 0, 0, 950, 5187, 1, 0, 0, 0, 952, 5192, 1, 0, 0, 0, 954, 5214, 1, 0, 0, 0, 956, 5223, 1, 0, 0, 0, 958, 5225, 1, 0, 0, 0, 960, 5236, 1, 0, 0, 0, 962, 5238, 1, 0, 0, 0, 964, 5246, 1, 0, 0, 0, 966, 5263, 1, 0, 0, 0, 968, 5266, 1, 0, 0, 0, 970, 5270, 1, 0, 0, 0, 972, 5272, 1, 0, 0, 0, 974, 5274, 1, 0, 0, 0, 976, 5276, 1, 0, 0, 0, 978, 5278, 1, 0, 0, 0, 980, 5280, 1, 0, 0, 0, 982, 5282, 1, 0, 0, 0, 984, 5284, 1, 0, 0, 0, 986, 5286, 1, 0, 0, 0, 988, 5288, 1, 0, 0, 0, 990, 5290, 1, 0, 0, 0, 992, 5292, 1, 0, 0, 0, 994, 5317, 1, 0, 0, 0, 996, 5322, 1, 0, 0, 0, 998, 5336, 1, 0, 0, 0, 1000, 5344, 1, 0, 0, 0, 1002, 5352, 1, 0, 0, 0, 1004, 5354, 1, 0, 0, 0, 1006, 5357, 1, 0, 0, 0, 1008, 5365, 1, 0, 0, 0, 1010, 5373, 1, 0, 0, 0, 1012, 5377, 1, 0, 0, 0, 1014, 5379, 1, 0, 0, 0, 1016, 5385, 1, 0, 0, 0, 1018, 5387, 1, 0, 0, 0, 1020, 5390, 1, 0, 0, 0, 1022, 5400, 1, 0, 0, 0, 1024, 5423, 1, 0, 0, 0, 1026, 5441, 1, 0, 0, 0, 1028, 5443, 1, 0, 0, 0, 1030, 5451, 1, 0, 0, 0, 1032, 5459, 1, 0, 0, 0, 1034, 5473, 1, 0, 0, 0, 1036, 5479, 1, 0, 0, 0, 1038, 5495, 1, 0, 0, 0, 1040, 5511, 1, 0, 0, 0, 1042, 1044, 3, 2, 1, 0, 1043, 1042, 1, 0, 0, 0, 1044, 1047, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1048, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1048, 1049, 5, 0, 0, 1, 1049, 1, 1, 0, 0, 0, 1050, 1053, 3, 4, 2, 0, 1051, 1053, 3, 12, 6, 0, 1052, 1050, 1, 0, 0, 0, 1052, 1051, 1, 0, 0, 0, 1053, 1055, 1, 0, 0, 0, 1054, 1056, 5, 397, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 3, 1, 0, 0, 0, 1057, 1067, 5, 119, 0, 0, 1058, 1060, 3, 6, 3, 0, 1059, 1058, 1, 0, 0, 0, 1060, 1063, 1, 0, 0, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1064, 1, 0, 0, 0, 1063, 1061, 1, 0, 0, 0, 1064, 1068, 3, 12, 6, 0, 1065, 1066, 5, 283, 0, 0, 1066, 1068, 3, 392, 196, 0, 1067, 1061, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1068, 5, 1, 0, 0, 0, 1069, 1092, 5, 122, 0, 0, 1070, 1092, 5, 138, 0, 0, 1071, 1092, 5, 88, 0, 0, 1072, 1074, 5, 37, 0, 0, 1073, 1075, 7, 0, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1092, 1, 0, 0, 0, 1076, 1092, 5, 191, 0, 0, 1077, 1092, 5, 21, 0, 0, 1078, 1092, 5, 10, 0, 0, 1079, 1092, 5, 274, 0, 0, 1080, 1092, 5, 190, 0, 0, 1081, 1092, 5, 19, 0, 0, 1082, 1084, 5, 376, 0, 0, 1083, 1085, 3, 8, 4, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1087, 1, 0, 0, 0, 1086, 1088, 3, 10, 5, 0, 1087, 1086, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1092, 1, 0, 0, 0, 1089, 1092, 5, 79, 0, 0, 1090, 1092, 5, 78, 0, 0, 1091, 1069, 1, 0, 0, 0, 1091, 1070, 1, 0, 0, 0, 1091, 1071, 1, 0, 0, 0, 1091, 1072, 1, 0, 0, 0, 1091, 1076, 1, 0, 0, 0, 1091, 1077, 1, 0, 0, 0, 1091, 1078, 1, 0, 0, 0, 1091, 1079, 1, 0, 0, 0, 1091, 1080, 1, 0, 0, 0, 1091, 1081, 1, 0, 0, 0, 1091, 1082, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1090, 1, 0, 0, 0, 1092, 7, 1, 0, 0, 0, 1093, 1094, 5, 224, 0, 0, 1094, 9, 1, 0, 0, 0, 1095, 1096, 7, 1, 0, 0, 1096, 11, 1, 0, 0, 0, 1097, 1112, 3, 392, 196, 0, 1098, 1112, 3, 14, 7, 0, 1099, 1112, 3, 20, 10, 0, 1100, 1112, 3, 22, 11, 0, 1101, 1112, 3, 24, 12, 0, 1102, 1112, 3, 28, 14, 0, 1103, 1112, 3, 36, 18, 0, 1104, 1112, 3, 38, 19, 0, 1105, 1112, 3, 422, 211, 0, 1106, 1112, 3, 430, 215, 0, 1107, 1112, 3, 432, 216, 0, 1108, 1112, 3, 454, 227, 0, 1109, 1112, 3, 948, 474, 0, 1110, 1112, 3, 950, 475, 0, 1111, 1097, 1, 0, 0, 0, 1111, 1098, 1, 0, 0, 0, 1111, 1099, 1, 0, 0, 0, 1111, 1100, 1, 0, 0, 0, 1111, 1101, 1, 0, 0, 0, 1111, 1102, 1, 0, 0, 0, 1111, 1103, 1, 0, 0, 0, 1111, 1104, 1, 0, 0, 0, 1111, 1105, 1, 0, 0, 0, 1111, 1106, 1, 0, 0, 0, 1111, 1107, 1, 0, 0, 0, 1111, 1108, 1, 0, 0, 0, 1111, 1109, 1, 0, 0, 0, 1111, 1110, 1, 0, 0, 0, 1112, 13, 1, 0, 0, 0, 1113, 1114, 5, 186, 0, 0, 1114, 1116, 5, 66, 0, 0, 1115, 1117, 5, 187, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 5, 158, 0, 0, 1119, 1121, 5, 425, 0, 0, 1120, 1122, 5, 234, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 5, 166, 0, 0, 1124, 1125, 5, 328, 0, 0, 1125, 1127, 3, 910, 455, 0, 1126, 1128, 3, 78, 39, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 15, 1, 0, 0, 0, 1129, 1130, 5, 152, 0, 0, 1130, 1131, 5, 253, 0, 0, 1131, 17, 1, 0, 0, 0, 1132, 1134, 5, 134, 0, 0, 1133, 1135, 5, 203, 0, 0, 1134, 1133, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 5, 278, 0, 0, 1137, 1138, 5, 398, 0, 0, 1138, 1139, 5, 425, 0, 0, 1139, 1140, 5, 399, 0, 0, 1140, 19, 1, 0, 0, 0, 1141, 1142, 5, 120, 0, 0, 1142, 1143, 5, 328, 0, 0, 1143, 1144, 3, 910, 455, 0, 1144, 1145, 5, 340, 0, 0, 1145, 1147, 5, 425, 0, 0, 1146, 1148, 3, 18, 9, 0, 1147, 1146, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 21, 1, 0, 0, 0, 1149, 1155, 5, 153, 0, 0, 1150, 1152, 5, 123, 0, 0, 1151, 1150, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 5, 328, 0, 0, 1154, 1156, 3, 910, 455, 0, 1155, 1151, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 5, 139, 0, 0, 1158, 1160, 5, 425, 0, 0, 1159, 1161, 3, 272, 136, 0, 1160, 1159, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 23, 1, 0, 0, 0, 1162, 1163, 5, 276, 0, 0, 1163, 1164, 5, 103, 0, 0, 1164, 1167, 3, 26, 13, 0, 1165, 1166, 5, 277, 0, 0, 1166, 1168, 3, 26, 13, 0, 1167, 1165, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1171, 1, 0, 0, 0, 1169, 1170, 5, 386, 0, 0, 1170, 1172, 3, 30, 15, 0, 1171, 1169, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 25, 1, 0, 0, 0, 1173, 1176, 3, 654, 327, 0, 1174, 1175, 5, 394, 0, 0, 1175, 1177, 3, 34, 17, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 27, 1, 0, 0, 0, 1178, 1179, 5, 276, 0, 0, 1179, 1180, 5, 186, 0, 0, 1180, 1183, 3, 26, 13, 0, 1181, 1182, 5, 166, 0, 0, 1182, 1184, 3, 654, 327, 0, 1183, 1181, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1187, 1, 0, 0, 0, 1185, 1186, 5, 386, 0, 0, 1186, 1188, 3, 30, 15, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 29, 1, 0, 0, 0, 1189, 1190, 5, 398, 0, 0, 1190, 1191, 3, 32, 16, 0, 1191, 1192, 5, 399, 0, 0, 1192, 31, 1, 0, 0, 0, 1193, 1198, 3, 256, 128, 0, 1194, 1195, 5, 396, 0, 0, 1195, 1197, 3, 256, 128, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1200, 1, 0, 0, 0, 1198, 1196, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 33, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1204, 5, 425, 0, 0, 1202, 1203, 5, 394, 0, 0, 1203, 1205, 5, 425, 0, 0, 1204, 1202, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 35, 1, 0, 0, 0, 1206, 1207, 5, 276, 0, 0, 1207, 1208, 5, 319, 0, 0, 1208, 1211, 3, 654, 327, 0, 1209, 1210, 5, 386, 0, 0, 1210, 1212, 3, 30, 15, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 37, 1, 0, 0, 0, 1213, 1261, 3, 56, 28, 0, 1214, 1261, 3, 68, 34, 0, 1215, 1261, 3, 70, 35, 0, 1216, 1261, 3, 598, 299, 0, 1217, 1261, 3, 76, 38, 0, 1218, 1261, 3, 74, 37, 0, 1219, 1261, 3, 476, 238, 0, 1220, 1261, 3, 86, 43, 0, 1221, 1261, 3, 94, 47, 0, 1222, 1261, 3, 160, 80, 0, 1223, 1261, 3, 182, 91, 0, 1224, 1261, 3, 198, 99, 0, 1225, 1261, 3, 202, 101, 0, 1226, 1261, 3, 206, 103, 0, 1227, 1261, 3, 204, 102, 0, 1228, 1261, 3, 196, 98, 0, 1229, 1261, 3, 200, 100, 0, 1230, 1261, 3, 168, 84, 0, 1231, 1261, 3, 174, 87, 0, 1232, 1261, 3, 170, 85, 0, 1233, 1261, 3, 172, 86, 0, 1234, 1261, 3, 176, 88, 0, 1235, 1261, 3, 178, 89, 0, 1236, 1261, 3, 180, 90, 0, 1237, 1261, 3, 88, 44, 0, 1238, 1261, 3, 98, 49, 0, 1239, 1261, 3, 104, 52, 0, 1240, 1261, 3, 100, 50, 0, 1241, 1261, 3, 106, 53, 0, 1242, 1261, 3, 108, 54, 0, 1243, 1261, 3, 110, 55, 0, 1244, 1261, 3, 112, 56, 0, 1245, 1261, 3, 114, 57, 0, 1246, 1261, 3, 128, 64, 0, 1247, 1261, 3, 120, 60, 0, 1248, 1261, 3, 130, 65, 0, 1249, 1261, 3, 122, 61, 0, 1250, 1261, 3, 116, 58, 0, 1251, 1261, 3, 118, 59, 0, 1252, 1261, 3, 126, 63, 0, 1253, 1261, 3, 124, 62, 0, 1254, 1261, 3, 450, 225, 0, 1255, 1261, 3, 452, 226, 0, 1256, 1261, 3, 466, 233, 0, 1257, 1261, 3, 954, 477, 0, 1258, 1261, 3, 600, 300, 0, 1259, 1261, 3, 610, 305, 0, 1260, 1213, 1, 0, 0, 0, 1260, 1214, 1, 0, 0, 0, 1260, 1215, 1, 0, 0, 0, 1260, 1216, 1, 0, 0, 0, 1260, 1217, 1, 0, 0, 0, 1260, 1218, 1, 0, 0, 0, 1260, 1219, 1, 0, 0, 0, 1260, 1220, 1, 0, 0, 0, 1260, 1221, 1, 0, 0, 0, 1260, 1222, 1, 0, 0, 0, 1260, 1223, 1, 0, 0, 0, 1260, 1224, 1, 0, 0, 0, 1260, 1225, 1, 0, 0, 0, 1260, 1226, 1, 0, 0, 0, 1260, 1227, 1, 0, 0, 0, 1260, 1228, 1, 0, 0, 0, 1260, 1229, 1, 0, 0, 0, 1260, 1230, 1, 0, 0, 0, 1260, 1231, 1, 0, 0, 0, 1260, 1232, 1, 0, 0, 0, 1260, 1233, 1, 0, 0, 0, 1260, 1234, 1, 0, 0, 0, 1260, 1235, 1, 0, 0, 0, 1260, 1236, 1, 0, 0, 0, 1260, 1237, 1, 0, 0, 0, 1260, 1238, 1, 0, 0, 0, 1260, 1239, 1, 0, 0, 0, 1260, 1240, 1, 0, 0, 0, 1260, 1241, 1, 0, 0, 0, 1260, 1242, 1, 0, 0, 0, 1260, 1243, 1, 0, 0, 0, 1260, 1244, 1, 0, 0, 0, 1260, 1245, 1, 0, 0, 0, 1260, 1246, 1, 0, 0, 0, 1260, 1247, 1, 0, 0, 0, 1260, 1248, 1, 0, 0, 0, 1260, 1249, 1, 0, 0, 0, 1260, 1250, 1, 0, 0, 0, 1260, 1251, 1, 0, 0, 0, 1260, 1252, 1, 0, 0, 0, 1260, 1253, 1, 0, 0, 0, 1260, 1254, 1, 0, 0, 0, 1260, 1255, 1, 0, 0, 0, 1260, 1256, 1, 0, 0, 0, 1260, 1257, 1, 0, 0, 0, 1260, 1258, 1, 0, 0, 0, 1260, 1259, 1, 0, 0, 0, 1261, 39, 1, 0, 0, 0, 1262, 1263, 5, 151, 0, 0, 1263, 1264, 5, 117, 0, 0, 1264, 41, 1, 0, 0, 0, 1265, 1266, 7, 2, 0, 0, 1266, 43, 1, 0, 0, 0, 1267, 1268, 5, 151, 0, 0, 1268, 1269, 5, 215, 0, 0, 1269, 1270, 5, 117, 0, 0, 1270, 45, 1, 0, 0, 0, 1271, 1272, 5, 135, 0, 0, 1272, 47, 1, 0, 0, 0, 1273, 1274, 3, 970, 485, 0, 1274, 1275, 5, 283, 0, 0, 1275, 49, 1, 0, 0, 0, 1276, 1277, 3, 972, 486, 0, 1277, 1278, 5, 283, 0, 0, 1278, 51, 1, 0, 0, 0, 1279, 1280, 5, 320, 0, 0, 1280, 1281, 5, 17, 0, 0, 1281, 1282, 5, 92, 0, 0, 1282, 53, 1, 0, 0, 0, 1283, 1284, 5, 227, 0, 0, 1284, 1285, 5, 277, 0, 0, 1285, 55, 1, 0, 0, 0, 1286, 1288, 5, 58, 0, 0, 1287, 1289, 5, 272, 0, 0, 1288, 1287, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 3, 92, 46, 0, 1291, 1293, 3, 44, 22, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1296, 3, 656, 328, 0, 1295, 1297, 3, 72, 36, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1299, 1, 0, 0, 0, 1298, 1300, 3, 58, 29, 0, 1299, 1298, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1303, 3, 60, 30, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1307, 1, 0, 0, 0, 1304, 1305, 5, 386, 0, 0, 1305, 1306, 5, 76, 0, 0, 1306, 1308, 3, 62, 31, 0, 1307, 1304, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1326, 1, 0, 0, 0, 1309, 1310, 5, 58, 0, 0, 1310, 1311, 5, 272, 0, 0, 1311, 1313, 3, 92, 46, 0, 1312, 1314, 3, 44, 22, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 3, 656, 328, 0, 1316, 1318, 3, 72, 36, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1323, 3, 66, 33, 0, 1320, 1321, 5, 386, 0, 0, 1321, 1322, 5, 76, 0, 0, 1322, 1324, 3, 62, 31, 0, 1323, 1320, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1326, 1, 0, 0, 0, 1325, 1286, 1, 0, 0, 0, 1325, 1309, 1, 0, 0, 0, 1326, 57, 1, 0, 0, 0, 1327, 1328, 5, 188, 0, 0, 1328, 1329, 5, 425, 0, 0, 1329, 59, 1, 0, 0, 0, 1330, 1331, 5, 195, 0, 0, 1331, 1332, 5, 425, 0, 0, 1332, 61, 1, 0, 0, 0, 1333, 1334, 5, 398, 0, 0, 1334, 1335, 3, 64, 32, 0, 1335, 1336, 5, 399, 0, 0, 1336, 63, 1, 0, 0, 0, 1337, 1342, 3, 256, 128, 0, 1338, 1339, 5, 396, 0, 0, 1339, 1341, 3, 256, 128, 0, 1340, 1338, 1, 0, 0, 0, 1341, 1344, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 65, 1, 0, 0, 0, 1344, 1342, 1, 0, 0, 0, 1345, 1346, 5, 369, 0, 0, 1346, 1347, 3, 654, 327, 0, 1347, 67, 1, 0, 0, 0, 1348, 1349, 5, 367, 0, 0, 1349, 1350, 3, 654, 327, 0, 1350, 69, 1, 0, 0, 0, 1351, 1352, 5, 101, 0, 0, 1352, 1354, 3, 92, 46, 0, 1353, 1355, 3, 40, 20, 0, 1354, 1353, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1358, 3, 654, 327, 0, 1357, 1359, 3, 42, 21, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 71, 1, 0, 0, 0, 1360, 1361, 5, 47, 0, 0, 1361, 1362, 5, 425, 0, 0, 1362, 73, 1, 0, 0, 0, 1363, 1365, 5, 350, 0, 0, 1364, 1366, 5, 328, 0, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1373, 3, 544, 272, 0, 1368, 1369, 5, 46, 0, 0, 1369, 1370, 5, 398, 0, 0, 1370, 1371, 3, 280, 140, 0, 1371, 1372, 5, 399, 0, 0, 1372, 1374, 1, 0, 0, 0, 1373, 1368, 1, 0, 0, 0, 1373, 1374, 1, 0, 0, 0, 1374, 1376, 1, 0, 0, 0, 1375, 1377, 3, 46, 23, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 75, 1, 0, 0, 0, 1378, 1379, 5, 101, 0, 0, 1379, 1381, 5, 328, 0, 0, 1380, 1382, 3, 40, 20, 0, 1381, 1380, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1385, 3, 660, 330, 0, 1384, 1386, 5, 254, 0, 0, 1385, 1384, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1388, 1, 0, 0, 0, 1387, 1389, 3, 18, 9, 0, 1388, 1387, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 77, 1, 0, 0, 0, 1390, 1391, 5, 160, 0, 0, 1391, 1392, 5, 425, 0, 0, 1392, 1393, 5, 300, 0, 0, 1393, 1394, 5, 425, 0, 0, 1394, 79, 1, 0, 0, 0, 1395, 1398, 3, 926, 463, 0, 1396, 1397, 5, 394, 0, 0, 1397, 1399, 3, 926, 463, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1413, 1, 0, 0, 0, 1400, 1410, 3, 926, 463, 0, 1401, 1406, 5, 394, 0, 0, 1402, 1407, 5, 104, 0, 0, 1403, 1407, 5, 175, 0, 0, 1404, 1407, 5, 374, 0, 0, 1405, 1407, 3, 926, 463, 0, 1406, 1402, 1, 0, 0, 0, 1406, 1403, 1, 0, 0, 0, 1406, 1404, 1, 0, 0, 0, 1406, 1405, 1, 0, 0, 0, 1407, 1409, 1, 0, 0, 0, 1408, 1401, 1, 0, 0, 0, 1409, 1412, 1, 0, 0, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1414, 1, 0, 0, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1400, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 81, 1, 0, 0, 0, 1415, 1417, 3, 80, 40, 0, 1416, 1418, 3, 912, 456, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 83, 1, 0, 0, 0, 1419, 1421, 3, 658, 329, 0, 1420, 1422, 3, 912, 456, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1425, 3, 286, 143, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 85, 1, 0, 0, 0, 1426, 1449, 7, 3, 0, 0, 1427, 1429, 3, 92, 46, 0, 1428, 1430, 5, 122, 0, 0, 1429, 1428, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 3, 654, 327, 0, 1432, 1450, 1, 0, 0, 0, 1433, 1435, 5, 69, 0, 0, 1434, 1436, 5, 122, 0, 0, 1435, 1434, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1450, 3, 654, 327, 0, 1438, 1440, 5, 141, 0, 0, 1439, 1441, 5, 122, 0, 0, 1440, 1439, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1450, 3, 782, 391, 0, 1443, 1446, 5, 138, 0, 0, 1444, 1446, 5, 122, 0, 0, 1445, 1443, 1, 0, 0, 0, 1445, 1444, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1450, 3, 84, 42, 0, 1448, 1450, 3, 84, 42, 0, 1449, 1427, 1, 0, 0, 0, 1449, 1433, 1, 0, 0, 0, 1449, 1438, 1, 0, 0, 0, 1449, 1445, 1, 0, 0, 0, 1449, 1448, 1, 0, 0, 0, 1450, 87, 1, 0, 0, 0, 1451, 1452, 5, 10, 0, 0, 1452, 1453, 5, 328, 0, 0, 1453, 1466, 3, 910, 455, 0, 1454, 1455, 5, 52, 0, 0, 1455, 1462, 5, 318, 0, 0, 1456, 1463, 5, 214, 0, 0, 1457, 1458, 5, 134, 0, 0, 1458, 1460, 5, 46, 0, 0, 1459, 1461, 3, 280, 140, 0, 1460, 1459, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1463, 1, 0, 0, 0, 1462, 1456, 1, 0, 0, 0, 1462, 1457, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1467, 1, 0, 0, 0, 1464, 1465, 5, 33, 0, 0, 1465, 1467, 5, 203, 0, 0, 1466, 1454, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1467, 89, 1, 0, 0, 0, 1468, 1469, 7, 4, 0, 0, 1469, 91, 1, 0, 0, 0, 1470, 1471, 7, 5, 0, 0, 1471, 93, 1, 0, 0, 0, 1472, 1473, 5, 307, 0, 0, 1473, 1476, 7, 6, 0, 0, 1474, 1475, 5, 183, 0, 0, 1475, 1477, 3, 216, 108, 0, 1476, 1474, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1666, 1, 0, 0, 0, 1478, 1480, 5, 307, 0, 0, 1479, 1481, 5, 122, 0, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1486, 5, 329, 0, 0, 1483, 1484, 3, 90, 45, 0, 1484, 1485, 3, 654, 327, 0, 1485, 1487, 1, 0, 0, 0, 1486, 1483, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1489, 1, 0, 0, 0, 1488, 1490, 3, 96, 48, 0, 1489, 1488, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1666, 1, 0, 0, 0, 1491, 1492, 5, 307, 0, 0, 1492, 1496, 5, 378, 0, 0, 1493, 1494, 3, 90, 45, 0, 1494, 1495, 3, 654, 327, 0, 1495, 1497, 1, 0, 0, 0, 1496, 1493, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1501, 1, 0, 0, 0, 1498, 1499, 5, 183, 0, 0, 1499, 1502, 3, 216, 108, 0, 1500, 1502, 3, 216, 108, 0, 1501, 1498, 1, 0, 0, 0, 1501, 1500, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1666, 1, 0, 0, 0, 1503, 1504, 5, 307, 0, 0, 1504, 1505, 5, 201, 0, 0, 1505, 1509, 5, 378, 0, 0, 1506, 1507, 3, 90, 45, 0, 1507, 1508, 3, 654, 327, 0, 1508, 1510, 1, 0, 0, 0, 1509, 1506, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1514, 1, 0, 0, 0, 1511, 1512, 5, 183, 0, 0, 1512, 1515, 3, 216, 108, 0, 1513, 1515, 3, 216, 108, 0, 1514, 1511, 1, 0, 0, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1666, 1, 0, 0, 0, 1516, 1518, 5, 307, 0, 0, 1517, 1519, 5, 314, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 5, 46, 0, 0, 1521, 1522, 3, 90, 45, 0, 1522, 1526, 3, 658, 329, 0, 1523, 1524, 3, 90, 45, 0, 1524, 1525, 3, 654, 327, 0, 1525, 1527, 1, 0, 0, 0, 1526, 1523, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1531, 1, 0, 0, 0, 1528, 1529, 5, 183, 0, 0, 1529, 1532, 3, 216, 108, 0, 1530, 1532, 3, 216, 108, 0, 1531, 1528, 1, 0, 0, 0, 1531, 1530, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1666, 1, 0, 0, 0, 1533, 1534, 5, 307, 0, 0, 1534, 1537, 5, 142, 0, 0, 1535, 1536, 5, 183, 0, 0, 1536, 1538, 3, 782, 391, 0, 1537, 1535, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1666, 1, 0, 0, 0, 1539, 1540, 5, 307, 0, 0, 1540, 1541, 5, 238, 0, 0, 1541, 1543, 3, 658, 329, 0, 1542, 1544, 3, 912, 456, 0, 1543, 1542, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1546, 1, 0, 0, 0, 1545, 1547, 3, 676, 338, 0, 1546, 1545, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1549, 1, 0, 0, 0, 1548, 1550, 3, 764, 382, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 1, 0, 0, 0, 1551, 1553, 3, 420, 210, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1666, 1, 0, 0, 0, 1554, 1555, 5, 307, 0, 0, 1555, 1561, 5, 58, 0, 0, 1556, 1557, 3, 92, 46, 0, 1557, 1558, 3, 654, 327, 0, 1558, 1562, 1, 0, 0, 0, 1559, 1560, 5, 328, 0, 0, 1560, 1562, 3, 660, 330, 0, 1561, 1556, 1, 0, 0, 0, 1561, 1559, 1, 0, 0, 0, 1562, 1666, 1, 0, 0, 0, 1563, 1564, 5, 307, 0, 0, 1564, 1565, 5, 328, 0, 0, 1565, 1569, 5, 122, 0, 0, 1566, 1567, 3, 90, 45, 0, 1567, 1568, 3, 654, 327, 0, 1568, 1570, 1, 0, 0, 0, 1569, 1566, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 5, 183, 0, 0, 1572, 1574, 3, 216, 108, 0, 1573, 1575, 3, 912, 456, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1666, 1, 0, 0, 0, 1576, 1577, 5, 307, 0, 0, 1577, 1578, 5, 331, 0, 0, 1578, 1582, 3, 660, 330, 0, 1579, 1580, 5, 398, 0, 0, 1580, 1581, 5, 425, 0, 0, 1581, 1583, 5, 399, 0, 0, 1582, 1579, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1666, 1, 0, 0, 0, 1584, 1585, 5, 307, 0, 0, 1585, 1597, 5, 190, 0, 0, 1586, 1587, 3, 92, 46, 0, 1587, 1589, 3, 654, 327, 0, 1588, 1590, 5, 122, 0, 0, 1589, 1588, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 1598, 1, 0, 0, 0, 1591, 1593, 3, 82, 41, 0, 1592, 1591, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1595, 1, 0, 0, 0, 1594, 1596, 5, 122, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1598, 1, 0, 0, 0, 1597, 1586, 1, 0, 0, 0, 1597, 1592, 1, 0, 0, 0, 1598, 1666, 1, 0, 0, 0, 1599, 1600, 5, 307, 0, 0, 1600, 1637, 5, 50, 0, 0, 1601, 1638, 3, 468, 234, 0, 1602, 1603, 3, 92, 46, 0, 1603, 1605, 3, 654, 327, 0, 1604, 1606, 3, 470, 235, 0, 1605, 1604, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1608, 1, 0, 0, 0, 1607, 1609, 3, 472, 236, 0, 1608, 1607, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1611, 1, 0, 0, 0, 1610, 1612, 3, 474, 237, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1615, 3, 764, 382, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 1, 0, 0, 0, 1616, 1618, 3, 420, 210, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1638, 1, 0, 0, 0, 1619, 1621, 3, 82, 41, 0, 1620, 1619, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1623, 1, 0, 0, 0, 1622, 1624, 3, 470, 235, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1626, 1, 0, 0, 0, 1625, 1627, 3, 472, 236, 0, 1626, 1625, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1629, 1, 0, 0, 0, 1628, 1630, 3, 474, 237, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1632, 1, 0, 0, 0, 1631, 1633, 3, 764, 382, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1636, 3, 420, 210, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1638, 1, 0, 0, 0, 1637, 1601, 1, 0, 0, 0, 1637, 1602, 1, 0, 0, 0, 1637, 1620, 1, 0, 0, 0, 1638, 1666, 1, 0, 0, 0, 1639, 1640, 5, 307, 0, 0, 1640, 1666, 5, 345, 0, 0, 1641, 1642, 5, 307, 0, 0, 1642, 1643, 5, 54, 0, 0, 1643, 1666, 5, 425, 0, 0, 1644, 1645, 5, 307, 0, 0, 1645, 1649, 5, 279, 0, 0, 1646, 1647, 5, 242, 0, 0, 1647, 1650, 3, 926, 463, 0, 1648, 1650, 5, 243, 0, 0, 1649, 1646, 1, 0, 0, 0, 1649, 1648, 1, 0, 0, 0, 1650, 1666, 1, 0, 0, 0, 1651, 1652, 5, 307, 0, 0, 1652, 1666, 5, 70, 0, 0, 1653, 1655, 5, 307, 0, 0, 1654, 1656, 5, 138, 0, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 7, 7, 0, 0, 1658, 1659, 5, 223, 0, 0, 1659, 1663, 3, 660, 330, 0, 1660, 1661, 3, 90, 45, 0, 1661, 1662, 3, 654, 327, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1660, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1472, 1, 0, 0, 0, 1665, 1478, 1, 0, 0, 0, 1665, 1491, 1, 0, 0, 0, 1665, 1503, 1, 0, 0, 0, 1665, 1516, 1, 0, 0, 0, 1665, 1533, 1, 0, 0, 0, 1665, 1539, 1, 0, 0, 0, 1665, 1554, 1, 0, 0, 0, 1665, 1563, 1, 0, 0, 0, 1665, 1576, 1, 0, 0, 0, 1665, 1584, 1, 0, 0, 0, 1665, 1599, 1, 0, 0, 0, 1665, 1639, 1, 0, 0, 0, 1665, 1641, 1, 0, 0, 0, 1665, 1644, 1, 0, 0, 0, 1665, 1651, 1, 0, 0, 0, 1665, 1653, 1, 0, 0, 0, 1666, 95, 1, 0, 0, 0, 1667, 1668, 5, 383, 0, 0, 1668, 1669, 3, 926, 463, 0, 1669, 1670, 5, 404, 0, 0, 1670, 1671, 5, 425, 0, 0, 1671, 1676, 1, 0, 0, 0, 1672, 1673, 5, 183, 0, 0, 1673, 1676, 3, 216, 108, 0, 1674, 1676, 3, 216, 108, 0, 1675, 1667, 1, 0, 0, 0, 1675, 1672, 1, 0, 0, 0, 1675, 1674, 1, 0, 0, 0, 1676, 97, 1, 0, 0, 0, 1677, 1678, 5, 189, 0, 0, 1678, 1679, 5, 328, 0, 0, 1679, 1681, 3, 660, 330, 0, 1680, 1682, 3, 912, 456, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 3, 102, 51, 0, 1684, 99, 1, 0, 0, 0, 1685, 1686, 5, 189, 0, 0, 1686, 1687, 3, 92, 46, 0, 1687, 1688, 3, 654, 327, 0, 1688, 1689, 3, 102, 51, 0, 1689, 101, 1, 0, 0, 0, 1690, 1691, 7, 8, 0, 0, 1691, 103, 1, 0, 0, 0, 1692, 1693, 5, 360, 0, 0, 1693, 1694, 5, 328, 0, 0, 1694, 1696, 3, 660, 330, 0, 1695, 1697, 3, 912, 456, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 105, 1, 0, 0, 0, 1698, 1699, 5, 360, 0, 0, 1699, 1700, 3, 92, 46, 0, 1700, 1701, 3, 654, 327, 0, 1701, 107, 1, 0, 0, 0, 1702, 1703, 5, 58, 0, 0, 1703, 1704, 5, 286, 0, 0, 1704, 1705, 3, 926, 463, 0, 1705, 109, 1, 0, 0, 0, 1706, 1707, 5, 101, 0, 0, 1707, 1708, 5, 286, 0, 0, 1708, 1709, 3, 926, 463, 0, 1709, 111, 1, 0, 0, 0, 1710, 1711, 5, 143, 0, 0, 1711, 1713, 3, 140, 70, 0, 1712, 1714, 3, 134, 67, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 5, 340, 0, 0, 1716, 1718, 3, 146, 73, 0, 1717, 1719, 3, 152, 76, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 113, 1, 0, 0, 0, 1720, 1722, 5, 282, 0, 0, 1721, 1723, 3, 154, 77, 0, 1722, 1721, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1726, 3, 140, 70, 0, 1725, 1727, 3, 134, 67, 0, 1726, 1725, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1729, 5, 139, 0, 0, 1729, 1730, 3, 146, 73, 0, 1730, 115, 1, 0, 0, 0, 1731, 1733, 5, 143, 0, 0, 1732, 1734, 5, 286, 0, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1740, 3, 926, 463, 0, 1736, 1737, 5, 396, 0, 0, 1737, 1739, 3, 926, 463, 0, 1738, 1736, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1743, 1, 0, 0, 0, 1742, 1740, 1, 0, 0, 0, 1743, 1744, 5, 340, 0, 0, 1744, 1746, 3, 146, 73, 0, 1745, 1747, 3, 158, 79, 0, 1746, 1745, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 117, 1, 0, 0, 0, 1748, 1750, 5, 282, 0, 0, 1749, 1751, 3, 156, 78, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1753, 1, 0, 0, 0, 1752, 1754, 5, 286, 0, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1760, 3, 926, 463, 0, 1756, 1757, 5, 396, 0, 0, 1757, 1759, 3, 926, 463, 0, 1758, 1756, 1, 0, 0, 0, 1759, 1762, 1, 0, 0, 0, 1760, 1758, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1764, 5, 139, 0, 0, 1764, 1765, 3, 146, 73, 0, 1765, 119, 1, 0, 0, 0, 1766, 1767, 5, 307, 0, 0, 1767, 1768, 5, 286, 0, 0, 1768, 1769, 5, 143, 0, 0, 1769, 1770, 3, 148, 74, 0, 1770, 121, 1, 0, 0, 0, 1771, 1772, 5, 307, 0, 0, 1772, 1773, 5, 287, 0, 0, 1773, 123, 1, 0, 0, 0, 1774, 1775, 5, 307, 0, 0, 1775, 1776, 5, 62, 0, 0, 1776, 1777, 5, 287, 0, 0, 1777, 125, 1, 0, 0, 0, 1778, 1779, 5, 303, 0, 0, 1779, 1783, 5, 286, 0, 0, 1780, 1784, 5, 7, 0, 0, 1781, 1784, 5, 212, 0, 0, 1782, 1784, 3, 926, 463, 0, 1783, 1780, 1, 0, 0, 0, 1783, 1781, 1, 0, 0, 0, 1783, 1782, 1, 0, 0, 0, 1784, 127, 1, 0, 0, 0, 1785, 1786, 5, 307, 0, 0, 1786, 1788, 5, 143, 0, 0, 1787, 1789, 3, 148, 74, 0, 1788, 1787, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1792, 1, 0, 0, 0, 1790, 1791, 5, 223, 0, 0, 1791, 1793, 3, 132, 66, 0, 1792, 1790, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 129, 1, 0, 0, 0, 1794, 1795, 5, 307, 0, 0, 1795, 1796, 5, 251, 0, 0, 1796, 1797, 3, 926, 463, 0, 1797, 131, 1, 0, 0, 0, 1798, 1801, 5, 7, 0, 0, 1799, 1801, 3, 138, 69, 0, 1800, 1798, 1, 0, 0, 0, 1800, 1799, 1, 0, 0, 0, 1801, 133, 1, 0, 0, 0, 1802, 1803, 5, 223, 0, 0, 1803, 1804, 3, 136, 68, 0, 1804, 135, 1, 0, 0, 0, 1805, 1806, 3, 92, 46, 0, 1806, 1807, 3, 654, 327, 0, 1807, 1820, 1, 0, 0, 0, 1808, 1810, 5, 328, 0, 0, 1809, 1808, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1813, 3, 660, 330, 0, 1812, 1814, 3, 912, 456, 0, 1813, 1812, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1820, 1, 0, 0, 0, 1815, 1816, 5, 365, 0, 0, 1816, 1820, 5, 425, 0, 0, 1817, 1818, 5, 302, 0, 0, 1818, 1820, 3, 926, 463, 0, 1819, 1805, 1, 0, 0, 0, 1819, 1809, 1, 0, 0, 0, 1819, 1815, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1820, 137, 1, 0, 0, 0, 1821, 1822, 3, 92, 46, 0, 1822, 1823, 3, 654, 327, 0, 1823, 1842, 1, 0, 0, 0, 1824, 1826, 5, 328, 0, 0, 1825, 1824, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1832, 3, 660, 330, 0, 1828, 1829, 5, 398, 0, 0, 1829, 1830, 3, 280, 140, 0, 1830, 1831, 5, 399, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1828, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1835, 1, 0, 0, 0, 1834, 1836, 3, 912, 456, 0, 1835, 1834, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1842, 1, 0, 0, 0, 1837, 1838, 5, 365, 0, 0, 1838, 1842, 5, 425, 0, 0, 1839, 1840, 5, 302, 0, 0, 1840, 1842, 3, 926, 463, 0, 1841, 1821, 1, 0, 0, 0, 1841, 1825, 1, 0, 0, 0, 1841, 1837, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 139, 1, 0, 0, 0, 1843, 1848, 3, 142, 71, 0, 1844, 1845, 5, 396, 0, 0, 1845, 1847, 3, 142, 71, 0, 1846, 1844, 1, 0, 0, 0, 1847, 1850, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 141, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1851, 1856, 3, 144, 72, 0, 1852, 1853, 5, 398, 0, 0, 1853, 1854, 3, 280, 140, 0, 1854, 1855, 5, 399, 0, 0, 1855, 1857, 1, 0, 0, 0, 1856, 1852, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 143, 1, 0, 0, 0, 1858, 1859, 7, 9, 0, 0, 1859, 145, 1, 0, 0, 0, 1860, 1865, 3, 148, 74, 0, 1861, 1862, 5, 396, 0, 0, 1862, 1864, 3, 148, 74, 0, 1863, 1861, 1, 0, 0, 0, 1864, 1867, 1, 0, 0, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 147, 1, 0, 0, 0, 1867, 1865, 1, 0, 0, 0, 1868, 1869, 5, 368, 0, 0, 1869, 1875, 3, 930, 465, 0, 1870, 1871, 5, 144, 0, 0, 1871, 1875, 3, 930, 465, 0, 1872, 1873, 5, 286, 0, 0, 1873, 1875, 3, 926, 463, 0, 1874, 1868, 1, 0, 0, 0, 1874, 1870, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1875, 149, 1, 0, 0, 0, 1876, 1877, 5, 368, 0, 0, 1877, 1882, 3, 930, 465, 0, 1878, 1879, 5, 286, 0, 0, 1879, 1882, 3, 926, 463, 0, 1880, 1882, 3, 926, 463, 0, 1881, 1876, 1, 0, 0, 0, 1881, 1878, 1, 0, 0, 0, 1881, 1880, 1, 0, 0, 0, 1882, 151, 1, 0, 0, 0, 1883, 1884, 5, 386, 0, 0, 1884, 1885, 5, 143, 0, 0, 1885, 1886, 5, 226, 0, 0, 1886, 153, 1, 0, 0, 0, 1887, 1888, 5, 143, 0, 0, 1888, 1889, 5, 226, 0, 0, 1889, 1890, 5, 134, 0, 0, 1890, 155, 1, 0, 0, 0, 1891, 1892, 5, 5, 0, 0, 1892, 1893, 5, 226, 0, 0, 1893, 1894, 5, 134, 0, 0, 1894, 157, 1, 0, 0, 0, 1895, 1896, 5, 386, 0, 0, 1896, 1897, 5, 5, 0, 0, 1897, 1898, 5, 226, 0, 0, 1898, 159, 1, 0, 0, 0, 1899, 1901, 5, 211, 0, 0, 1900, 1902, 5, 275, 0, 0, 1901, 1900, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1904, 5, 328, 0, 0, 1904, 1910, 3, 660, 330, 0, 1905, 1906, 7, 10, 0, 0, 1906, 1908, 5, 238, 0, 0, 1907, 1909, 3, 916, 458, 0, 1908, 1907, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1911, 1, 0, 0, 0, 1910, 1905, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 161, 1, 0, 0, 0, 1912, 1917, 3, 164, 82, 0, 1913, 1914, 5, 396, 0, 0, 1914, 1916, 3, 164, 82, 0, 1915, 1913, 1, 0, 0, 0, 1916, 1919, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 163, 1, 0, 0, 0, 1919, 1917, 1, 0, 0, 0, 1920, 1921, 3, 166, 83, 0, 1921, 1922, 5, 425, 0, 0, 1922, 165, 1, 0, 0, 0, 1923, 1924, 7, 11, 0, 0, 1924, 167, 1, 0, 0, 0, 1925, 1927, 5, 58, 0, 0, 1926, 1928, 5, 332, 0, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1930, 5, 141, 0, 0, 1930, 1931, 3, 780, 390, 0, 1931, 1932, 5, 17, 0, 0, 1932, 1935, 5, 425, 0, 0, 1933, 1934, 5, 369, 0, 0, 1934, 1936, 3, 162, 81, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 169, 1, 0, 0, 0, 1937, 1939, 5, 101, 0, 0, 1938, 1940, 5, 332, 0, 0, 1939, 1938, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1943, 5, 141, 0, 0, 1942, 1944, 3, 40, 20, 0, 1943, 1942, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1946, 3, 782, 391, 0, 1946, 171, 1, 0, 0, 0, 1947, 1948, 5, 270, 0, 0, 1948, 1949, 7, 12, 0, 0, 1949, 173, 1, 0, 0, 0, 1950, 1951, 5, 58, 0, 0, 1951, 1952, 5, 332, 0, 0, 1952, 1953, 5, 193, 0, 0, 1953, 1954, 5, 431, 0, 0, 1954, 1956, 5, 398, 0, 0, 1955, 1957, 3, 274, 137, 0, 1956, 1955, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 5, 399, 0, 0, 1959, 1960, 3, 828, 414, 0, 1960, 175, 1, 0, 0, 0, 1961, 1962, 5, 101, 0, 0, 1962, 1963, 5, 332, 0, 0, 1963, 1965, 5, 193, 0, 0, 1964, 1966, 3, 40, 20, 0, 1965, 1964, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 5, 431, 0, 0, 1968, 177, 1, 0, 0, 0, 1969, 1970, 5, 58, 0, 0, 1970, 1971, 5, 155, 0, 0, 1971, 1972, 3, 926, 463, 0, 1972, 1973, 5, 223, 0, 0, 1973, 1974, 5, 328, 0, 0, 1974, 1975, 3, 660, 330, 0, 1975, 1976, 3, 290, 145, 0, 1976, 1977, 5, 17, 0, 0, 1977, 1981, 5, 425, 0, 0, 1978, 1979, 5, 386, 0, 0, 1979, 1980, 5, 84, 0, 0, 1980, 1982, 5, 264, 0, 0, 1981, 1978, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1985, 1, 0, 0, 0, 1983, 1984, 5, 150, 0, 0, 1984, 1986, 3, 252, 126, 0, 1985, 1983, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1990, 1, 0, 0, 0, 1987, 1988, 5, 154, 0, 0, 1988, 1989, 5, 328, 0, 0, 1989, 1991, 3, 660, 330, 0, 1990, 1987, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1995, 1, 0, 0, 0, 1992, 1993, 5, 237, 0, 0, 1993, 1994, 5, 32, 0, 0, 1994, 1996, 3, 290, 145, 0, 1995, 1992, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 2001, 1, 0, 0, 0, 1997, 1999, 3, 248, 124, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2002, 3, 270, 135, 0, 2001, 1998, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2004, 5, 188, 0, 0, 2004, 2006, 5, 425, 0, 0, 2005, 2003, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2008, 1, 0, 0, 0, 2007, 2009, 3, 250, 125, 0, 2008, 2007, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2011, 1, 0, 0, 0, 2010, 2012, 3, 218, 109, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 179, 1, 0, 0, 0, 2013, 2014, 5, 101, 0, 0, 2014, 2016, 5, 155, 0, 0, 2015, 2017, 3, 40, 20, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 3, 926, 463, 0, 2019, 2020, 5, 223, 0, 0, 2020, 2021, 3, 660, 330, 0, 2021, 181, 1, 0, 0, 0, 2022, 2024, 5, 58, 0, 0, 2023, 2025, 3, 54, 27, 0, 2024, 2023, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2028, 5, 377, 0, 0, 2027, 2029, 3, 44, 22, 0, 2028, 2027, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2035, 3, 666, 333, 0, 2031, 2032, 5, 398, 0, 0, 2032, 2033, 3, 334, 167, 0, 2033, 2034, 5, 399, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2031, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2038, 1, 0, 0, 0, 2037, 2039, 3, 218, 109, 0, 2038, 2037, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2041, 1, 0, 0, 0, 2040, 2042, 3, 184, 92, 0, 2041, 2040, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2044, 1, 0, 0, 0, 2043, 2045, 3, 250, 125, 0, 2044, 2043, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2047, 5, 17, 0, 0, 2047, 2048, 3, 412, 206, 0, 2048, 183, 1, 0, 0, 0, 2049, 2050, 5, 237, 0, 0, 2050, 2056, 5, 223, 0, 0, 2051, 2052, 5, 398, 0, 0, 2052, 2057, 3, 280, 140, 0, 2053, 2054, 5, 315, 0, 0, 2054, 2055, 5, 398, 0, 0, 2055, 2057, 3, 226, 113, 0, 2056, 2051, 1, 0, 0, 0, 2056, 2053, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 5, 399, 0, 0, 2059, 185, 1, 0, 0, 0, 2060, 2063, 3, 188, 94, 0, 2061, 2063, 3, 190, 95, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2061, 1, 0, 0, 0, 2063, 187, 1, 0, 0, 0, 2064, 2065, 5, 42, 0, 0, 2065, 2066, 5, 223, 0, 0, 2066, 2067, 5, 398, 0, 0, 2067, 2068, 3, 280, 140, 0, 2068, 2069, 5, 399, 0, 0, 2069, 189, 1, 0, 0, 0, 2070, 2071, 3, 192, 96, 0, 2071, 2072, 3, 194, 97, 0, 2072, 191, 1, 0, 0, 0, 2073, 2074, 5, 98, 0, 0, 2074, 2075, 5, 223, 0, 0, 2075, 2076, 5, 398, 0, 0, 2076, 2077, 3, 280, 140, 0, 2077, 2078, 5, 399, 0, 0, 2078, 193, 1, 0, 0, 0, 2079, 2080, 5, 314, 0, 0, 2080, 2081, 5, 223, 0, 0, 2081, 2082, 5, 398, 0, 0, 2082, 2083, 3, 280, 140, 0, 2083, 2084, 5, 399, 0, 0, 2084, 195, 1, 0, 0, 0, 2085, 2086, 5, 101, 0, 0, 2086, 2088, 5, 377, 0, 0, 2087, 2089, 3, 40, 20, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2091, 3, 664, 332, 0, 2091, 197, 1, 0, 0, 0, 2092, 2093, 5, 58, 0, 0, 2093, 2094, 5, 201, 0, 0, 2094, 2096, 5, 377, 0, 0, 2095, 2097, 3, 44, 22, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 3, 666, 333, 0, 2099, 2101, 3, 50, 25, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2103, 1, 0, 0, 0, 2102, 2104, 3, 218, 109, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2106, 1, 0, 0, 0, 2105, 2107, 3, 184, 92, 0, 2106, 2105, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2109, 1, 0, 0, 0, 2108, 2110, 3, 186, 93, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 248, 124, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2116, 3, 270, 135, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2119, 3, 272, 136, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2122, 3, 250, 125, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2124, 5, 17, 0, 0, 2124, 2125, 3, 412, 206, 0, 2125, 199, 1, 0, 0, 0, 2126, 2127, 5, 101, 0, 0, 2127, 2128, 5, 201, 0, 0, 2128, 2130, 5, 377, 0, 0, 2129, 2131, 3, 40, 20, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2133, 3, 664, 332, 0, 2133, 201, 1, 0, 0, 0, 2134, 2135, 5, 58, 0, 0, 2135, 2136, 5, 292, 0, 0, 2136, 2137, 5, 257, 0, 0, 2137, 2138, 3, 926, 463, 0, 2138, 2140, 3, 210, 105, 0, 2139, 2141, 3, 212, 106, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2144, 3, 294, 147, 0, 2143, 2142, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2146, 3, 214, 107, 0, 2146, 203, 1, 0, 0, 0, 2147, 2148, 5, 101, 0, 0, 2148, 2149, 5, 292, 0, 0, 2149, 2150, 5, 257, 0, 0, 2150, 2151, 3, 926, 463, 0, 2151, 205, 1, 0, 0, 0, 2152, 2153, 5, 9, 0, 0, 2153, 2154, 5, 292, 0, 0, 2154, 2155, 5, 257, 0, 0, 2155, 2156, 3, 926, 463, 0, 2156, 2157, 3, 208, 104, 0, 2157, 207, 1, 0, 0, 0, 2158, 2164, 3, 210, 105, 0, 2159, 2164, 3, 212, 106, 0, 2160, 2164, 3, 294, 147, 0, 2161, 2164, 3, 214, 107, 0, 2162, 2164, 5, 115, 0, 0, 2163, 2158, 1, 0, 0, 0, 2163, 2159, 1, 0, 0, 0, 2163, 2160, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2163, 2162, 1, 0, 0, 0, 2164, 209, 1, 0, 0, 0, 2165, 2166, 5, 59, 0, 0, 2166, 2181, 5, 425, 0, 0, 2167, 2169, 5, 111, 0, 0, 2168, 2170, 5, 430, 0, 0, 2169, 2168, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2178, 3, 826, 413, 0, 2172, 2176, 5, 20, 0, 0, 2173, 2174, 5, 222, 0, 0, 2174, 2176, 5, 32, 0, 0, 2175, 2172, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 5, 425, 0, 0, 2178, 2175, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2181, 1, 0, 0, 0, 2180, 2165, 1, 0, 0, 0, 2180, 2167, 1, 0, 0, 0, 2181, 211, 1, 0, 0, 0, 2182, 2183, 5, 116, 0, 0, 2183, 2184, 5, 17, 0, 0, 2184, 2185, 5, 425, 0, 0, 2185, 213, 1, 0, 0, 0, 2186, 2188, 5, 85, 0, 0, 2187, 2186, 1, 0, 0, 0, 2187, 2188, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 5, 17, 0, 0, 2190, 2191, 3, 2, 1, 0, 2191, 215, 1, 0, 0, 0, 2192, 2195, 3, 926, 463, 0, 2193, 2195, 5, 425, 0, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2193, 1, 0, 0, 0, 2195, 217, 1, 0, 0, 0, 2196, 2197, 5, 47, 0, 0, 2197, 2198, 5, 425, 0, 0, 2198, 219, 1, 0, 0, 0, 2199, 2200, 5, 237, 0, 0, 2200, 2209, 5, 32, 0, 0, 2201, 2204, 5, 398, 0, 0, 2202, 2205, 3, 222, 111, 0, 2203, 2205, 3, 224, 112, 0, 2204, 2202, 1, 0, 0, 0, 2204, 2203, 1, 0, 0, 0, 2205, 2210, 1, 0, 0, 0, 2206, 2207, 5, 315, 0, 0, 2207, 2208, 5, 398, 0, 0, 2208, 2210, 3, 226, 113, 0, 2209, 2201, 1, 0, 0, 0, 2209, 2206, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2212, 5, 399, 0, 0, 2212, 221, 1, 0, 0, 0, 2213, 2218, 3, 348, 174, 0, 2214, 2215, 5, 396, 0, 0, 2215, 2217, 3, 348, 174, 0, 2216, 2214, 1, 0, 0, 0, 2217, 2220, 1, 0, 0, 0, 2218, 2216, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 223, 1, 0, 0, 0, 2220, 2218, 1, 0, 0, 0, 2221, 2226, 3, 282, 141, 0, 2222, 2223, 5, 396, 0, 0, 2223, 2225, 3, 282, 141, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2228, 1, 0, 0, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 225, 1, 0, 0, 0, 2228, 2226, 1, 0, 0, 0, 2229, 2234, 3, 228, 114, 0, 2230, 2231, 5, 396, 0, 0, 2231, 2233, 3, 228, 114, 0, 2232, 2230, 1, 0, 0, 0, 2233, 2236, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 227, 1, 0, 0, 0, 2236, 2234, 1, 0, 0, 0, 2237, 2238, 3, 230, 115, 0, 2238, 229, 1, 0, 0, 0, 2239, 2258, 3, 282, 141, 0, 2240, 2245, 3, 976, 488, 0, 2241, 2245, 3, 978, 489, 0, 2242, 2245, 3, 982, 491, 0, 2243, 2245, 3, 984, 492, 0, 2244, 2240, 1, 0, 0, 0, 2244, 2241, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2243, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 5, 398, 0, 0, 2247, 2248, 3, 282, 141, 0, 2248, 2249, 5, 399, 0, 0, 2249, 2258, 1, 0, 0, 0, 2250, 2251, 7, 13, 0, 0, 2251, 2252, 5, 398, 0, 0, 2252, 2253, 5, 430, 0, 0, 2253, 2254, 5, 396, 0, 0, 2254, 2255, 3, 282, 141, 0, 2255, 2256, 5, 399, 0, 0, 2256, 2258, 1, 0, 0, 0, 2257, 2239, 1, 0, 0, 0, 2257, 2244, 1, 0, 0, 0, 2257, 2250, 1, 0, 0, 0, 2258, 231, 1, 0, 0, 0, 2259, 2260, 5, 42, 0, 0, 2260, 2261, 5, 32, 0, 0, 2261, 2262, 5, 398, 0, 0, 2262, 2263, 3, 280, 140, 0, 2263, 2270, 5, 399, 0, 0, 2264, 2265, 5, 314, 0, 0, 2265, 2266, 5, 32, 0, 0, 2266, 2267, 5, 398, 0, 0, 2267, 2268, 3, 288, 144, 0, 2268, 2269, 5, 399, 0, 0, 2269, 2271, 1, 0, 0, 0, 2270, 2264, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2273, 5, 166, 0, 0, 2273, 2274, 5, 430, 0, 0, 2274, 2275, 5, 31, 0, 0, 2275, 233, 1, 0, 0, 0, 2276, 2277, 5, 42, 0, 0, 2277, 2278, 5, 166, 0, 0, 2278, 2279, 5, 430, 0, 0, 2279, 2280, 5, 31, 0, 0, 2280, 235, 1, 0, 0, 0, 2281, 2282, 5, 309, 0, 0, 2282, 2283, 5, 32, 0, 0, 2283, 2284, 5, 398, 0, 0, 2284, 2285, 3, 280, 140, 0, 2285, 2286, 5, 399, 0, 0, 2286, 2287, 5, 223, 0, 0, 2287, 2288, 5, 398, 0, 0, 2288, 2289, 3, 316, 158, 0, 2289, 2291, 5, 399, 0, 0, 2290, 2292, 3, 52, 26, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 237, 1, 0, 0, 0, 2293, 2296, 3, 244, 122, 0, 2294, 2296, 3, 246, 123, 0, 2295, 2293, 1, 0, 0, 0, 2295, 2294, 1, 0, 0, 0, 2296, 239, 1, 0, 0, 0, 2297, 2298, 5, 265, 0, 0, 2298, 2299, 5, 425, 0, 0, 2299, 241, 1, 0, 0, 0, 2300, 2301, 5, 266, 0, 0, 2301, 2302, 5, 425, 0, 0, 2302, 243, 1, 0, 0, 0, 2303, 2304, 5, 290, 0, 0, 2304, 2305, 5, 137, 0, 0, 2305, 2306, 5, 300, 0, 0, 2306, 2310, 5, 425, 0, 0, 2307, 2308, 5, 386, 0, 0, 2308, 2309, 5, 301, 0, 0, 2309, 2311, 3, 252, 126, 0, 2310, 2307, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 245, 1, 0, 0, 0, 2312, 2313, 5, 290, 0, 0, 2313, 2314, 5, 137, 0, 0, 2314, 2316, 5, 87, 0, 0, 2315, 2317, 3, 260, 130, 0, 2316, 2315, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2319, 1, 0, 0, 0, 2318, 2320, 3, 262, 131, 0, 2319, 2318, 1, 0, 0, 0, 2319, 2320, 1, 0, 0, 0, 2320, 2322, 1, 0, 0, 0, 2321, 2323, 3, 264, 132, 0, 2322, 2321, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2325, 1, 0, 0, 0, 2324, 2326, 3, 266, 133, 0, 2325, 2324, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2328, 1, 0, 0, 0, 2327, 2329, 3, 268, 134, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 247, 1, 0, 0, 0, 2330, 2333, 3, 246, 123, 0, 2331, 2333, 3, 244, 122, 0, 2332, 2330, 1, 0, 0, 0, 2332, 2331, 1, 0, 0, 0, 2333, 249, 1, 0, 0, 0, 2334, 2335, 5, 331, 0, 0, 2335, 2336, 3, 252, 126, 0, 2336, 251, 1, 0, 0, 0, 2337, 2338, 5, 398, 0, 0, 2338, 2339, 3, 254, 127, 0, 2339, 2340, 5, 399, 0, 0, 2340, 253, 1, 0, 0, 0, 2341, 2346, 3, 256, 128, 0, 2342, 2343, 5, 396, 0, 0, 2343, 2345, 3, 256, 128, 0, 2344, 2342, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2358, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2354, 3, 258, 129, 0, 2350, 2351, 5, 396, 0, 0, 2351, 2353, 3, 258, 129, 0, 2352, 2350, 1, 0, 0, 0, 2353, 2356, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2358, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2341, 1, 0, 0, 0, 2357, 2349, 1, 0, 0, 0, 2358, 255, 1, 0, 0, 0, 2359, 2360, 5, 425, 0, 0, 2360, 2361, 5, 404, 0, 0, 2361, 2362, 5, 425, 0, 0, 2362, 257, 1, 0, 0, 0, 2363, 2364, 5, 425, 0, 0, 2364, 259, 1, 0, 0, 0, 2365, 2366, 5, 127, 0, 0, 2366, 2367, 5, 333, 0, 0, 2367, 2368, 5, 32, 0, 0, 2368, 2372, 5, 425, 0, 0, 2369, 2370, 5, 110, 0, 0, 2370, 2371, 5, 32, 0, 0, 2371, 2373, 5, 425, 0, 0, 2372, 2369, 1, 0, 0, 0, 2372, 2373, 1, 0, 0, 0, 2373, 261, 1, 0, 0, 0, 2374, 2375, 5, 44, 0, 0, 2375, 2376, 5, 169, 0, 0, 2376, 2377, 5, 333, 0, 0, 2377, 2378, 5, 32, 0, 0, 2378, 2379, 5, 425, 0, 0, 2379, 263, 1, 0, 0, 0, 2380, 2381, 5, 197, 0, 0, 2381, 2382, 5, 174, 0, 0, 2382, 2383, 5, 333, 0, 0, 2383, 2384, 5, 32, 0, 0, 2384, 2385, 5, 425, 0, 0, 2385, 265, 1, 0, 0, 0, 2386, 2387, 5, 185, 0, 0, 2387, 2388, 5, 333, 0, 0, 2388, 2389, 5, 32, 0, 0, 2389, 2390, 5, 425, 0, 0, 2390, 267, 1, 0, 0, 0, 2391, 2392, 5, 218, 0, 0, 2392, 2393, 5, 85, 0, 0, 2393, 2394, 5, 17, 0, 0, 2394, 2395, 5, 425, 0, 0, 2395, 269, 1, 0, 0, 0, 2396, 2397, 5, 320, 0, 0, 2397, 2398, 5, 17, 0, 0, 2398, 2399, 5, 160, 0, 0, 2399, 2400, 5, 425, 0, 0, 2400, 2401, 5, 232, 0, 0, 2401, 2406, 5, 425, 0, 0, 2402, 2403, 5, 159, 0, 0, 2403, 2404, 5, 425, 0, 0, 2404, 2405, 5, 231, 0, 0, 2405, 2407, 5, 425, 0, 0, 2406, 2402, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2438, 1, 0, 0, 0, 2408, 2409, 5, 320, 0, 0, 2409, 2410, 5, 32, 0, 0, 2410, 2414, 5, 425, 0, 0, 2411, 2412, 5, 386, 0, 0, 2412, 2413, 5, 301, 0, 0, 2413, 2415, 3, 252, 126, 0, 2414, 2411, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2419, 1, 0, 0, 0, 2416, 2417, 5, 320, 0, 0, 2417, 2418, 5, 17, 0, 0, 2418, 2420, 3, 926, 463, 0, 2419, 2416, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2438, 1, 0, 0, 0, 2421, 2422, 5, 320, 0, 0, 2422, 2423, 5, 32, 0, 0, 2423, 2427, 3, 926, 463, 0, 2424, 2425, 5, 386, 0, 0, 2425, 2426, 5, 301, 0, 0, 2426, 2428, 3, 252, 126, 0, 2427, 2424, 1, 0, 0, 0, 2427, 2428, 1, 0, 0, 0, 2428, 2432, 1, 0, 0, 0, 2429, 2430, 5, 320, 0, 0, 2430, 2431, 5, 17, 0, 0, 2431, 2433, 3, 926, 463, 0, 2432, 2429, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2438, 1, 0, 0, 0, 2434, 2435, 5, 320, 0, 0, 2435, 2436, 5, 17, 0, 0, 2436, 2438, 3, 926, 463, 0, 2437, 2396, 1, 0, 0, 0, 2437, 2408, 1, 0, 0, 0, 2437, 2421, 1, 0, 0, 0, 2437, 2434, 1, 0, 0, 0, 2438, 271, 1, 0, 0, 0, 2439, 2440, 5, 188, 0, 0, 2440, 2441, 5, 425, 0, 0, 2441, 273, 1, 0, 0, 0, 2442, 2447, 3, 342, 171, 0, 2443, 2444, 5, 396, 0, 0, 2444, 2446, 3, 342, 171, 0, 2445, 2443, 1, 0, 0, 0, 2446, 2449, 1, 0, 0, 0, 2447, 2445, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 275, 1, 0, 0, 0, 2449, 2447, 1, 0, 0, 0, 2450, 2455, 3, 344, 172, 0, 2451, 2452, 5, 396, 0, 0, 2452, 2454, 3, 344, 172, 0, 2453, 2451, 1, 0, 0, 0, 2454, 2457, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 277, 1, 0, 0, 0, 2457, 2455, 1, 0, 0, 0, 2458, 2463, 3, 372, 186, 0, 2459, 2460, 5, 396, 0, 0, 2460, 2462, 3, 372, 186, 0, 2461, 2459, 1, 0, 0, 0, 2462, 2465, 1, 0, 0, 0, 2463, 2461, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 279, 1, 0, 0, 0, 2465, 2463, 1, 0, 0, 0, 2466, 2471, 3, 282, 141, 0, 2467, 2468, 5, 396, 0, 0, 2468, 2470, 3, 282, 141, 0, 2469, 2467, 1, 0, 0, 0, 2470, 2473, 1, 0, 0, 0, 2471, 2469, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, 281, 1, 0, 0, 0, 2473, 2471, 1, 0, 0, 0, 2474, 2479, 3, 926, 463, 0, 2475, 2476, 5, 394, 0, 0, 2476, 2478, 3, 926, 463, 0, 2477, 2475, 1, 0, 0, 0, 2478, 2481, 1, 0, 0, 0, 2479, 2477, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 283, 1, 0, 0, 0, 2481, 2479, 1, 0, 0, 0, 2482, 2483, 3, 926, 463, 0, 2483, 285, 1, 0, 0, 0, 2484, 2494, 3, 282, 141, 0, 2485, 2490, 5, 394, 0, 0, 2486, 2491, 5, 104, 0, 0, 2487, 2491, 5, 175, 0, 0, 2488, 2491, 5, 374, 0, 0, 2489, 2491, 3, 926, 463, 0, 2490, 2486, 1, 0, 0, 0, 2490, 2487, 1, 0, 0, 0, 2490, 2488, 1, 0, 0, 0, 2490, 2489, 1, 0, 0, 0, 2491, 2493, 1, 0, 0, 0, 2492, 2485, 1, 0, 0, 0, 2493, 2496, 1, 0, 0, 0, 2494, 2492, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 287, 1, 0, 0, 0, 2496, 2494, 1, 0, 0, 0, 2497, 2502, 3, 332, 166, 0, 2498, 2499, 5, 396, 0, 0, 2499, 2501, 3, 332, 166, 0, 2500, 2498, 1, 0, 0, 0, 2501, 2504, 1, 0, 0, 0, 2502, 2500, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 289, 1, 0, 0, 0, 2504, 2502, 1, 0, 0, 0, 2505, 2506, 5, 398, 0, 0, 2506, 2507, 3, 280, 140, 0, 2507, 2508, 5, 399, 0, 0, 2508, 291, 1, 0, 0, 0, 2509, 2511, 3, 294, 147, 0, 2510, 2512, 3, 296, 148, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2515, 1, 0, 0, 0, 2513, 2515, 3, 298, 149, 0, 2514, 2509, 1, 0, 0, 0, 2514, 2513, 1, 0, 0, 0, 2515, 293, 1, 0, 0, 0, 2516, 2519, 3, 970, 485, 0, 2517, 2519, 3, 972, 486, 0, 2518, 2516, 1, 0, 0, 0, 2518, 2517, 1, 0, 0, 0, 2519, 295, 1, 0, 0, 0, 2520, 2521, 7, 14, 0, 0, 2521, 297, 1, 0, 0, 0, 2522, 2526, 5, 109, 0, 0, 2523, 2524, 5, 215, 0, 0, 2524, 2526, 5, 109, 0, 0, 2525, 2522, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 299, 1, 0, 0, 0, 2527, 2528, 7, 15, 0, 0, 2528, 301, 1, 0, 0, 0, 2529, 2530, 5, 55, 0, 0, 2530, 2532, 3, 926, 463, 0, 2531, 2529, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2535, 3, 306, 153, 0, 2534, 2536, 3, 368, 184, 0, 2535, 2534, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 303, 1, 0, 0, 0, 2537, 2538, 5, 55, 0, 0, 2538, 2539, 3, 926, 463, 0, 2539, 2541, 3, 306, 153, 0, 2540, 2542, 3, 370, 185, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 305, 1, 0, 0, 0, 2543, 2546, 3, 308, 154, 0, 2544, 2546, 3, 310, 155, 0, 2545, 2543, 1, 0, 0, 0, 2545, 2544, 1, 0, 0, 0, 2546, 307, 1, 0, 0, 0, 2547, 2548, 3, 366, 183, 0, 2548, 2549, 3, 290, 145, 0, 2549, 309, 1, 0, 0, 0, 2550, 2551, 5, 40, 0, 0, 2551, 2552, 5, 398, 0, 0, 2552, 2553, 3, 828, 414, 0, 2553, 2554, 5, 399, 0, 0, 2554, 311, 1, 0, 0, 0, 2555, 2556, 5, 55, 0, 0, 2556, 2558, 3, 926, 463, 0, 2557, 2555, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2560, 5, 136, 0, 0, 2560, 2561, 5, 173, 0, 0, 2561, 2562, 3, 290, 145, 0, 2562, 2563, 5, 268, 0, 0, 2563, 2564, 3, 660, 330, 0, 2564, 2566, 3, 290, 145, 0, 2565, 2567, 3, 368, 184, 0, 2566, 2565, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 313, 1, 0, 0, 0, 2568, 2569, 5, 55, 0, 0, 2569, 2570, 3, 926, 463, 0, 2570, 2571, 5, 136, 0, 0, 2571, 2572, 5, 173, 0, 0, 2572, 2573, 3, 290, 145, 0, 2573, 2574, 5, 268, 0, 0, 2574, 2575, 3, 660, 330, 0, 2575, 2577, 3, 290, 145, 0, 2576, 2578, 3, 370, 185, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 315, 1, 0, 0, 0, 2579, 2582, 3, 322, 161, 0, 2580, 2582, 3, 318, 159, 0, 2581, 2579, 1, 0, 0, 0, 2581, 2580, 1, 0, 0, 0, 2582, 317, 1, 0, 0, 0, 2583, 2588, 3, 320, 160, 0, 2584, 2585, 5, 396, 0, 0, 2585, 2587, 3, 320, 160, 0, 2586, 2584, 1, 0, 0, 0, 2587, 2590, 1, 0, 0, 0, 2588, 2586, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 319, 1, 0, 0, 0, 2590, 2588, 1, 0, 0, 0, 2591, 2592, 5, 398, 0, 0, 2592, 2593, 3, 322, 161, 0, 2593, 2594, 5, 399, 0, 0, 2594, 321, 1, 0, 0, 0, 2595, 2600, 3, 324, 162, 0, 2596, 2597, 5, 396, 0, 0, 2597, 2599, 3, 324, 162, 0, 2598, 2596, 1, 0, 0, 0, 2599, 2602, 1, 0, 0, 0, 2600, 2598, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 323, 1, 0, 0, 0, 2602, 2600, 1, 0, 0, 0, 2603, 2604, 3, 804, 402, 0, 2604, 325, 1, 0, 0, 0, 2605, 2608, 3, 324, 162, 0, 2606, 2608, 3, 320, 160, 0, 2607, 2605, 1, 0, 0, 0, 2607, 2606, 1, 0, 0, 0, 2608, 327, 1, 0, 0, 0, 2609, 2610, 7, 16, 0, 0, 2610, 329, 1, 0, 0, 0, 2611, 2612, 5, 219, 0, 0, 2612, 2613, 7, 17, 0, 0, 2613, 331, 1, 0, 0, 0, 2614, 2616, 3, 282, 141, 0, 2615, 2617, 3, 328, 164, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2619, 1, 0, 0, 0, 2618, 2620, 3, 330, 165, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 333, 1, 0, 0, 0, 2621, 2626, 3, 336, 168, 0, 2622, 2623, 5, 396, 0, 0, 2623, 2625, 3, 336, 168, 0, 2624, 2622, 1, 0, 0, 0, 2625, 2628, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 335, 1, 0, 0, 0, 2628, 2626, 1, 0, 0, 0, 2629, 2632, 3, 284, 142, 0, 2630, 2631, 5, 47, 0, 0, 2631, 2633, 5, 425, 0, 0, 2632, 2630, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 337, 1, 0, 0, 0, 2634, 2635, 7, 16, 0, 0, 2635, 339, 1, 0, 0, 0, 2636, 2639, 3, 282, 141, 0, 2637, 2639, 3, 828, 414, 0, 2638, 2636, 1, 0, 0, 0, 2638, 2637, 1, 0, 0, 0, 2639, 2641, 1, 0, 0, 0, 2640, 2642, 3, 338, 169, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, 0, 2643, 2645, 3, 330, 165, 0, 2644, 2643, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 341, 1, 0, 0, 0, 2646, 2647, 3, 284, 142, 0, 2647, 2650, 3, 374, 187, 0, 2648, 2649, 5, 47, 0, 0, 2649, 2651, 5, 425, 0, 0, 2650, 2648, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 343, 1, 0, 0, 0, 2652, 2655, 3, 346, 173, 0, 2653, 2655, 3, 348, 174, 0, 2654, 2652, 1, 0, 0, 0, 2654, 2653, 1, 0, 0, 0, 2655, 345, 1, 0, 0, 0, 2656, 2659, 3, 312, 156, 0, 2657, 2659, 3, 302, 151, 0, 2658, 2656, 1, 0, 0, 0, 2658, 2657, 1, 0, 0, 0, 2659, 347, 1, 0, 0, 0, 2660, 2661, 3, 284, 142, 0, 2661, 2663, 3, 374, 187, 0, 2662, 2664, 3, 350, 175, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2667, 1, 0, 0, 0, 2665, 2666, 5, 47, 0, 0, 2666, 2668, 5, 425, 0, 0, 2667, 2665, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 349, 1, 0, 0, 0, 2669, 2672, 3, 352, 176, 0, 2670, 2672, 3, 354, 177, 0, 2671, 2669, 1, 0, 0, 0, 2671, 2670, 1, 0, 0, 0, 2672, 351, 1, 0, 0, 0, 2673, 2674, 5, 55, 0, 0, 2674, 2676, 3, 926, 463, 0, 2675, 2673, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2678, 5, 268, 0, 0, 2678, 2679, 3, 660, 330, 0, 2679, 2680, 5, 398, 0, 0, 2680, 2681, 3, 282, 141, 0, 2681, 2683, 5, 399, 0, 0, 2682, 2684, 3, 368, 184, 0, 2683, 2682, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 353, 1, 0, 0, 0, 2685, 2686, 5, 55, 0, 0, 2686, 2688, 3, 926, 463, 0, 2687, 2685, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2691, 3, 362, 181, 0, 2690, 2692, 3, 368, 184, 0, 2691, 2690, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 355, 1, 0, 0, 0, 2693, 2696, 3, 358, 179, 0, 2694, 2696, 3, 360, 180, 0, 2695, 2693, 1, 0, 0, 0, 2695, 2694, 1, 0, 0, 0, 2696, 357, 1, 0, 0, 0, 2697, 2698, 5, 55, 0, 0, 2698, 2700, 3, 926, 463, 0, 2699, 2697, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 5, 268, 0, 0, 2702, 2703, 3, 660, 330, 0, 2703, 2704, 5, 398, 0, 0, 2704, 2705, 3, 282, 141, 0, 2705, 2707, 5, 399, 0, 0, 2706, 2708, 3, 370, 185, 0, 2707, 2706, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 359, 1, 0, 0, 0, 2709, 2710, 5, 55, 0, 0, 2710, 2712, 3, 926, 463, 0, 2711, 2709, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2715, 3, 362, 181, 0, 2714, 2716, 3, 370, 185, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 361, 1, 0, 0, 0, 2717, 2718, 5, 215, 0, 0, 2718, 2724, 5, 218, 0, 0, 2719, 2720, 5, 83, 0, 0, 2720, 2724, 3, 364, 182, 0, 2721, 2724, 3, 310, 155, 0, 2722, 2724, 3, 366, 183, 0, 2723, 2717, 1, 0, 0, 0, 2723, 2719, 1, 0, 0, 0, 2723, 2721, 1, 0, 0, 0, 2723, 2722, 1, 0, 0, 0, 2724, 363, 1, 0, 0, 0, 2725, 2729, 3, 804, 402, 0, 2726, 2729, 3, 776, 388, 0, 2727, 2729, 3, 790, 395, 0, 2728, 2725, 1, 0, 0, 0, 2728, 2726, 1, 0, 0, 0, 2728, 2727, 1, 0, 0, 0, 2729, 365, 1, 0, 0, 0, 2730, 2731, 5, 250, 0, 0, 2731, 2734, 5, 173, 0, 0, 2732, 2734, 5, 357, 0, 0, 2733, 2730, 1, 0, 0, 0, 2733, 2732, 1, 0, 0, 0, 2734, 367, 1, 0, 0, 0, 2735, 2737, 3, 292, 146, 0, 2736, 2738, 3, 300, 150, 0, 2737, 2736, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 369, 1, 0, 0, 0, 2739, 2741, 3, 292, 146, 0, 2740, 2742, 3, 300, 150, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 371, 1, 0, 0, 0, 2743, 2744, 3, 284, 142, 0, 2744, 2745, 5, 395, 0, 0, 2745, 2748, 3, 374, 187, 0, 2746, 2747, 5, 47, 0, 0, 2747, 2749, 5, 425, 0, 0, 2748, 2746, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 373, 1, 0, 0, 0, 2750, 2751, 3, 378, 189, 0, 2751, 375, 1, 0, 0, 0, 2752, 2757, 3, 374, 187, 0, 2753, 2754, 5, 396, 0, 0, 2754, 2756, 3, 374, 187, 0, 2755, 2753, 1, 0, 0, 0, 2756, 2759, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 377, 1, 0, 0, 0, 2759, 2757, 1, 0, 0, 0, 2760, 2766, 3, 380, 190, 0, 2761, 2766, 3, 382, 191, 0, 2762, 2766, 3, 384, 192, 0, 2763, 2766, 3, 386, 193, 0, 2764, 2766, 3, 388, 194, 0, 2765, 2760, 1, 0, 0, 0, 2765, 2761, 1, 0, 0, 0, 2765, 2762, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2765, 2764, 1, 0, 0, 0, 2766, 379, 1, 0, 0, 0, 2767, 2805, 5, 339, 0, 0, 2768, 2805, 5, 310, 0, 0, 2769, 2805, 5, 162, 0, 0, 2770, 2805, 5, 163, 0, 0, 2771, 2805, 5, 26, 0, 0, 2772, 2805, 5, 28, 0, 0, 2773, 2805, 5, 131, 0, 0, 2774, 2805, 5, 263, 0, 0, 2775, 2777, 5, 100, 0, 0, 2776, 2778, 5, 247, 0, 0, 2777, 2776, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2805, 1, 0, 0, 0, 2779, 2805, 5, 71, 0, 0, 2780, 2805, 5, 72, 0, 0, 2781, 2805, 5, 336, 0, 0, 2782, 2805, 5, 337, 0, 0, 2783, 2784, 5, 336, 0, 0, 2784, 2785, 5, 386, 0, 0, 2785, 2786, 5, 187, 0, 0, 2786, 2787, 5, 335, 0, 0, 2787, 2805, 5, 393, 0, 0, 2788, 2805, 5, 322, 0, 0, 2789, 2805, 5, 27, 0, 0, 2790, 2798, 3, 990, 495, 0, 2791, 2792, 5, 398, 0, 0, 2792, 2795, 5, 430, 0, 0, 2793, 2794, 5, 396, 0, 0, 2794, 2796, 5, 430, 0, 0, 2795, 2793, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2799, 5, 399, 0, 0, 2798, 2791, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2805, 1, 0, 0, 0, 2800, 2801, 7, 18, 0, 0, 2801, 2802, 5, 398, 0, 0, 2802, 2803, 5, 430, 0, 0, 2803, 2805, 5, 399, 0, 0, 2804, 2767, 1, 0, 0, 0, 2804, 2768, 1, 0, 0, 0, 2804, 2769, 1, 0, 0, 0, 2804, 2770, 1, 0, 0, 0, 2804, 2771, 1, 0, 0, 0, 2804, 2772, 1, 0, 0, 0, 2804, 2773, 1, 0, 0, 0, 2804, 2774, 1, 0, 0, 0, 2804, 2775, 1, 0, 0, 0, 2804, 2779, 1, 0, 0, 0, 2804, 2780, 1, 0, 0, 0, 2804, 2781, 1, 0, 0, 0, 2804, 2782, 1, 0, 0, 0, 2804, 2783, 1, 0, 0, 0, 2804, 2788, 1, 0, 0, 0, 2804, 2789, 1, 0, 0, 0, 2804, 2790, 1, 0, 0, 0, 2804, 2800, 1, 0, 0, 0, 2805, 381, 1, 0, 0, 0, 2806, 2807, 5, 16, 0, 0, 2807, 2808, 5, 408, 0, 0, 2808, 2809, 3, 378, 189, 0, 2809, 2810, 5, 410, 0, 0, 2810, 383, 1, 0, 0, 0, 2811, 2812, 5, 323, 0, 0, 2812, 2813, 5, 408, 0, 0, 2813, 2814, 3, 278, 139, 0, 2814, 2815, 5, 410, 0, 0, 2815, 385, 1, 0, 0, 0, 2816, 2817, 5, 197, 0, 0, 2817, 2818, 5, 408, 0, 0, 2818, 2819, 3, 380, 190, 0, 2819, 2820, 5, 396, 0, 0, 2820, 2821, 3, 378, 189, 0, 2821, 2822, 5, 410, 0, 0, 2822, 387, 1, 0, 0, 0, 2823, 2824, 5, 356, 0, 0, 2824, 2825, 5, 408, 0, 0, 2825, 2826, 3, 376, 188, 0, 2826, 2827, 5, 410, 0, 0, 2827, 389, 1, 0, 0, 0, 2828, 2830, 7, 19, 0, 0, 2829, 2831, 7, 20, 0, 0, 2830, 2829, 1, 0, 0, 0, 2830, 2831, 1, 0, 0, 0, 2831, 391, 1, 0, 0, 0, 2832, 2834, 3, 396, 198, 0, 2833, 2832, 1, 0, 0, 0, 2833, 2834, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2836, 3, 394, 197, 0, 2836, 393, 1, 0, 0, 0, 2837, 2840, 3, 400, 200, 0, 2838, 2840, 3, 404, 202, 0, 2839, 2837, 1, 0, 0, 0, 2839, 2838, 1, 0, 0, 0, 2840, 395, 1, 0, 0, 0, 2841, 2842, 5, 386, 0, 0, 2842, 2847, 3, 398, 199, 0, 2843, 2844, 5, 396, 0, 0, 2844, 2846, 3, 398, 199, 0, 2845, 2843, 1, 0, 0, 0, 2846, 2849, 1, 0, 0, 0, 2847, 2845, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 397, 1, 0, 0, 0, 2849, 2847, 1, 0, 0, 0, 2850, 2855, 3, 926, 463, 0, 2851, 2852, 5, 398, 0, 0, 2852, 2853, 3, 280, 140, 0, 2853, 2854, 5, 399, 0, 0, 2854, 2856, 1, 0, 0, 0, 2855, 2851, 1, 0, 0, 0, 2855, 2856, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2858, 5, 17, 0, 0, 2858, 2859, 5, 398, 0, 0, 2859, 2860, 3, 392, 196, 0, 2860, 2861, 5, 399, 0, 0, 2861, 399, 1, 0, 0, 0, 2862, 2868, 3, 402, 201, 0, 2863, 2864, 3, 390, 195, 0, 2864, 2865, 3, 402, 201, 0, 2865, 2867, 1, 0, 0, 0, 2866, 2863, 1, 0, 0, 0, 2867, 2870, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 401, 1, 0, 0, 0, 2870, 2868, 1, 0, 0, 0, 2871, 2873, 3, 620, 310, 0, 2872, 2874, 3, 414, 207, 0, 2873, 2872, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2873, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 403, 1, 0, 0, 0, 2877, 2878, 3, 416, 208, 0, 2878, 2879, 3, 408, 204, 0, 2879, 2882, 1, 0, 0, 0, 2880, 2882, 3, 408, 204, 0, 2881, 2877, 1, 0, 0, 0, 2881, 2880, 1, 0, 0, 0, 2882, 405, 1, 0, 0, 0, 2883, 2885, 3, 692, 346, 0, 2884, 2886, 3, 620, 310, 0, 2885, 2884, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2888, 1, 0, 0, 0, 2887, 2889, 3, 676, 338, 0, 2888, 2887, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2891, 1, 0, 0, 0, 2890, 2892, 3, 724, 362, 0, 2891, 2890, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2894, 1, 0, 0, 0, 2893, 2895, 3, 740, 370, 0, 2894, 2893, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 2897, 1, 0, 0, 0, 2896, 2898, 3, 708, 354, 0, 2897, 2896, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2901, 3, 742, 371, 0, 2900, 2899, 1, 0, 0, 0, 2900, 2901, 1, 0, 0, 0, 2901, 2908, 1, 0, 0, 0, 2902, 2903, 5, 398, 0, 0, 2903, 2904, 3, 408, 204, 0, 2904, 2905, 5, 399, 0, 0, 2905, 2908, 1, 0, 0, 0, 2906, 2908, 3, 680, 340, 0, 2907, 2883, 1, 0, 0, 0, 2907, 2902, 1, 0, 0, 0, 2907, 2906, 1, 0, 0, 0, 2908, 407, 1, 0, 0, 0, 2909, 2911, 3, 406, 203, 0, 2910, 2912, 3, 410, 205, 0, 2911, 2910, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, 2914, 1, 0, 0, 0, 2913, 2915, 3, 764, 382, 0, 2914, 2913, 1, 0, 0, 0, 2914, 2915, 1, 0, 0, 0, 2915, 2917, 1, 0, 0, 0, 2916, 2918, 3, 766, 383, 0, 2917, 2916, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2920, 1, 0, 0, 0, 2919, 2921, 3, 770, 385, 0, 2920, 2919, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2923, 1, 0, 0, 0, 2922, 2924, 3, 772, 386, 0, 2923, 2922, 1, 0, 0, 0, 2923, 2924, 1, 0, 0, 0, 2924, 2926, 1, 0, 0, 0, 2925, 2927, 3, 420, 210, 0, 2926, 2925, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 409, 1, 0, 0, 0, 2928, 2929, 3, 390, 195, 0, 2929, 2930, 3, 406, 203, 0, 2930, 2932, 1, 0, 0, 0, 2931, 2928, 1, 0, 0, 0, 2932, 2933, 1, 0, 0, 0, 2933, 2931, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 411, 1, 0, 0, 0, 2935, 2937, 3, 396, 198, 0, 2936, 2935, 1, 0, 0, 0, 2936, 2937, 1, 0, 0, 0, 2937, 2938, 1, 0, 0, 0, 2938, 2939, 3, 408, 204, 0, 2939, 413, 1, 0, 0, 0, 2940, 2941, 3, 416, 208, 0, 2941, 2943, 3, 692, 346, 0, 2942, 2944, 3, 638, 319, 0, 2943, 2942, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2946, 1, 0, 0, 0, 2945, 2947, 3, 676, 338, 0, 2946, 2945, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2949, 1, 0, 0, 0, 2948, 2950, 3, 724, 362, 0, 2949, 2948, 1, 0, 0, 0, 2949, 2950, 1, 0, 0, 0, 2950, 2952, 1, 0, 0, 0, 2951, 2953, 3, 740, 370, 0, 2952, 2951, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2955, 1, 0, 0, 0, 2954, 2956, 3, 708, 354, 0, 2955, 2954, 1, 0, 0, 0, 2955, 2956, 1, 0, 0, 0, 2956, 2958, 1, 0, 0, 0, 2957, 2959, 3, 742, 371, 0, 2958, 2957, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 2961, 1, 0, 0, 0, 2960, 2962, 3, 764, 382, 0, 2961, 2960, 1, 0, 0, 0, 2961, 2962, 1, 0, 0, 0, 2962, 2964, 1, 0, 0, 0, 2963, 2965, 3, 766, 383, 0, 2964, 2963, 1, 0, 0, 0, 2964, 2965, 1, 0, 0, 0, 2965, 2967, 1, 0, 0, 0, 2966, 2968, 3, 770, 385, 0, 2967, 2966, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 2970, 1, 0, 0, 0, 2969, 2971, 3, 772, 386, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2973, 1, 0, 0, 0, 2972, 2974, 3, 420, 210, 0, 2973, 2972, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 3010, 1, 0, 0, 0, 2975, 2977, 3, 692, 346, 0, 2976, 2978, 3, 638, 319, 0, 2977, 2976, 1, 0, 0, 0, 2977, 2978, 1, 0, 0, 0, 2978, 2980, 1, 0, 0, 0, 2979, 2981, 3, 676, 338, 0, 2980, 2979, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2983, 1, 0, 0, 0, 2982, 2984, 3, 724, 362, 0, 2983, 2982, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 2986, 1, 0, 0, 0, 2985, 2987, 3, 740, 370, 0, 2986, 2985, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2989, 1, 0, 0, 0, 2988, 2990, 3, 708, 354, 0, 2989, 2988, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2992, 1, 0, 0, 0, 2991, 2993, 3, 742, 371, 0, 2992, 2991, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2995, 1, 0, 0, 0, 2994, 2996, 3, 764, 382, 0, 2995, 2994, 1, 0, 0, 0, 2995, 2996, 1, 0, 0, 0, 2996, 2998, 1, 0, 0, 0, 2997, 2999, 3, 766, 383, 0, 2998, 2997, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3001, 1, 0, 0, 0, 3000, 3002, 3, 770, 385, 0, 3001, 3000, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3004, 1, 0, 0, 0, 3003, 3005, 3, 772, 386, 0, 3004, 3003, 1, 0, 0, 0, 3004, 3005, 1, 0, 0, 0, 3005, 3007, 1, 0, 0, 0, 3006, 3008, 3, 420, 210, 0, 3007, 3006, 1, 0, 0, 0, 3007, 3008, 1, 0, 0, 0, 3008, 3010, 1, 0, 0, 0, 3009, 2940, 1, 0, 0, 0, 3009, 2975, 1, 0, 0, 0, 3010, 415, 1, 0, 0, 0, 3011, 3028, 5, 161, 0, 0, 3012, 3013, 5, 234, 0, 0, 3013, 3015, 3, 418, 209, 0, 3014, 3016, 3, 44, 22, 0, 3015, 3014, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3029, 1, 0, 0, 0, 3017, 3019, 5, 166, 0, 0, 3018, 3020, 5, 328, 0, 0, 3019, 3018, 1, 0, 0, 0, 3019, 3020, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3026, 3, 910, 455, 0, 3022, 3023, 5, 398, 0, 0, 3023, 3024, 3, 280, 140, 0, 3024, 3025, 5, 399, 0, 0, 3025, 3027, 1, 0, 0, 0, 3026, 3022, 1, 0, 0, 0, 3026, 3027, 1, 0, 0, 0, 3027, 3029, 1, 0, 0, 0, 3028, 3012, 1, 0, 0, 0, 3028, 3017, 1, 0, 0, 0, 3029, 417, 1, 0, 0, 0, 3030, 3032, 5, 187, 0, 0, 3031, 3030, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3034, 5, 93, 0, 0, 3034, 3036, 5, 425, 0, 0, 3035, 3037, 3, 248, 124, 0, 3036, 3035, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3039, 1, 0, 0, 0, 3038, 3040, 3, 270, 135, 0, 3039, 3038, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3044, 1, 0, 0, 0, 3041, 3042, 5, 328, 0, 0, 3042, 3044, 3, 910, 455, 0, 3043, 3031, 1, 0, 0, 0, 3043, 3041, 1, 0, 0, 0, 3044, 419, 1, 0, 0, 0, 3045, 3054, 5, 184, 0, 0, 3046, 3047, 5, 430, 0, 0, 3047, 3049, 5, 396, 0, 0, 3048, 3046, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 3055, 5, 430, 0, 0, 3051, 3052, 5, 430, 0, 0, 3052, 3053, 5, 222, 0, 0, 3053, 3055, 5, 430, 0, 0, 3054, 3048, 1, 0, 0, 0, 3054, 3051, 1, 0, 0, 0, 3055, 421, 1, 0, 0, 0, 3056, 3057, 5, 86, 0, 0, 3057, 3058, 5, 139, 0, 0, 3058, 3060, 3, 660, 330, 0, 3059, 3061, 3, 676, 338, 0, 3060, 3059, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 423, 1, 0, 0, 0, 3062, 3063, 3, 282, 141, 0, 3063, 3064, 5, 404, 0, 0, 3064, 3065, 3, 426, 213, 0, 3065, 425, 1, 0, 0, 0, 3066, 3069, 3, 614, 307, 0, 3067, 3069, 3, 848, 424, 0, 3068, 3066, 1, 0, 0, 0, 3068, 3067, 1, 0, 0, 0, 3069, 427, 1, 0, 0, 0, 3070, 3071, 5, 303, 0, 0, 3071, 3076, 3, 424, 212, 0, 3072, 3073, 5, 396, 0, 0, 3073, 3075, 3, 424, 212, 0, 3074, 3072, 1, 0, 0, 0, 3075, 3078, 1, 0, 0, 0, 3076, 3074, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 429, 1, 0, 0, 0, 3078, 3076, 1, 0, 0, 0, 3079, 3080, 5, 364, 0, 0, 3080, 3081, 3, 660, 330, 0, 3081, 3083, 3, 428, 214, 0, 3082, 3084, 3, 676, 338, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 431, 1, 0, 0, 0, 3085, 3090, 3, 434, 217, 0, 3086, 3090, 3, 444, 222, 0, 3087, 3090, 3, 446, 223, 0, 3088, 3090, 3, 448, 224, 0, 3089, 3085, 1, 0, 0, 0, 3089, 3086, 1, 0, 0, 0, 3089, 3087, 1, 0, 0, 0, 3089, 3088, 1, 0, 0, 0, 3090, 433, 1, 0, 0, 0, 3091, 3092, 5, 317, 0, 0, 3092, 3101, 5, 343, 0, 0, 3093, 3098, 3, 436, 218, 0, 3094, 3095, 5, 396, 0, 0, 3095, 3097, 3, 436, 218, 0, 3096, 3094, 1, 0, 0, 0, 3097, 3100, 1, 0, 0, 0, 3098, 3096, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 3102, 1, 0, 0, 0, 3100, 3098, 1, 0, 0, 0, 3101, 3093, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 435, 1, 0, 0, 0, 3103, 3106, 3, 440, 220, 0, 3104, 3106, 3, 438, 219, 0, 3105, 3103, 1, 0, 0, 0, 3105, 3104, 1, 0, 0, 0, 3106, 437, 1, 0, 0, 0, 3107, 3108, 5, 260, 0, 0, 3108, 3109, 7, 21, 0, 0, 3109, 439, 1, 0, 0, 0, 3110, 3111, 5, 168, 0, 0, 3111, 3112, 5, 182, 0, 0, 3112, 3113, 3, 442, 221, 0, 3113, 441, 1, 0, 0, 0, 3114, 3115, 5, 311, 0, 0, 3115, 443, 1, 0, 0, 0, 3116, 3118, 5, 48, 0, 0, 3117, 3119, 5, 388, 0, 0, 3118, 3117, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 445, 1, 0, 0, 0, 3120, 3122, 5, 288, 0, 0, 3121, 3123, 5, 388, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 447, 1, 0, 0, 0, 3124, 3125, 5, 303, 0, 0, 3125, 3126, 5, 22, 0, 0, 3126, 3127, 3, 908, 454, 0, 3127, 449, 1, 0, 0, 0, 3128, 3129, 5, 1, 0, 0, 3129, 3131, 5, 345, 0, 0, 3130, 3132, 5, 430, 0, 0, 3131, 3130, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3131, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 451, 1, 0, 0, 0, 3135, 3136, 5, 1, 0, 0, 3136, 3138, 5, 50, 0, 0, 3137, 3139, 5, 430, 0, 0, 3138, 3137, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3138, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 453, 1, 0, 0, 0, 3142, 3144, 5, 202, 0, 0, 3143, 3145, 5, 435, 0, 0, 3144, 3143, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3147, 5, 166, 0, 0, 3147, 3152, 3, 660, 330, 0, 3148, 3150, 5, 17, 0, 0, 3149, 3148, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3153, 3, 926, 463, 0, 3152, 3149, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3155, 5, 369, 0, 0, 3155, 3156, 3, 628, 314, 0, 3156, 3157, 5, 223, 0, 0, 3157, 3158, 3, 828, 414, 0, 3158, 3159, 3, 456, 228, 0, 3159, 455, 1, 0, 0, 0, 3160, 3163, 3, 460, 230, 0, 3161, 3163, 3, 462, 231, 0, 3162, 3160, 1, 0, 0, 0, 3162, 3161, 1, 0, 0, 0, 3163, 3166, 1, 0, 0, 0, 3164, 3162, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3168, 1, 0, 0, 0, 3166, 3164, 1, 0, 0, 0, 3167, 3169, 3, 458, 229, 0, 3168, 3167, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 457, 1, 0, 0, 0, 3170, 3171, 5, 382, 0, 0, 3171, 3172, 5, 215, 0, 0, 3172, 3175, 5, 200, 0, 0, 3173, 3174, 5, 11, 0, 0, 3174, 3176, 3, 828, 414, 0, 3175, 3173, 1, 0, 0, 0, 3175, 3176, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 334, 0, 0, 3178, 3180, 5, 161, 0, 0, 3179, 3181, 3, 290, 145, 0, 3180, 3179, 1, 0, 0, 0, 3180, 3181, 1, 0, 0, 0, 3181, 3182, 1, 0, 0, 0, 3182, 3183, 5, 373, 0, 0, 3183, 3184, 3, 686, 343, 0, 3184, 459, 1, 0, 0, 0, 3185, 3186, 5, 382, 0, 0, 3186, 3187, 5, 200, 0, 0, 3187, 3188, 5, 11, 0, 0, 3188, 3189, 3, 828, 414, 0, 3189, 3190, 5, 334, 0, 0, 3190, 3191, 3, 464, 232, 0, 3191, 461, 1, 0, 0, 0, 3192, 3193, 5, 382, 0, 0, 3193, 3194, 5, 200, 0, 0, 3194, 3195, 5, 334, 0, 0, 3195, 3196, 3, 464, 232, 0, 3196, 463, 1, 0, 0, 0, 3197, 3198, 5, 364, 0, 0, 3198, 3201, 3, 428, 214, 0, 3199, 3201, 5, 86, 0, 0, 3200, 3197, 1, 0, 0, 0, 3200, 3199, 1, 0, 0, 0, 3201, 465, 1, 0, 0, 0, 3202, 3203, 5, 176, 0, 0, 3203, 3205, 5, 257, 0, 0, 3204, 3206, 5, 425, 0, 0, 3205, 3204, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3205, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 467, 1, 0, 0, 0, 3209, 3210, 5, 51, 0, 0, 3210, 3211, 5, 404, 0, 0, 3211, 3212, 5, 430, 0, 0, 3212, 469, 1, 0, 0, 0, 3213, 3214, 5, 245, 0, 0, 3214, 3215, 5, 425, 0, 0, 3215, 471, 1, 0, 0, 0, 3216, 3217, 5, 351, 0, 0, 3217, 3218, 5, 425, 0, 0, 3218, 473, 1, 0, 0, 0, 3219, 3220, 5, 319, 0, 0, 3220, 3221, 5, 425, 0, 0, 3221, 475, 1, 0, 0, 0, 3222, 3246, 5, 9, 0, 0, 3223, 3224, 5, 328, 0, 0, 3224, 3225, 3, 660, 330, 0, 3225, 3226, 3, 478, 239, 0, 3226, 3247, 1, 0, 0, 0, 3227, 3228, 5, 377, 0, 0, 3228, 3230, 3, 664, 332, 0, 3229, 3231, 5, 17, 0, 0, 3230, 3229, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3233, 3, 484, 242, 0, 3233, 3247, 1, 0, 0, 0, 3234, 3235, 5, 201, 0, 0, 3235, 3236, 5, 377, 0, 0, 3236, 3237, 3, 664, 332, 0, 3237, 3238, 3, 486, 243, 0, 3238, 3247, 1, 0, 0, 0, 3239, 3240, 3, 92, 46, 0, 3240, 3241, 3, 492, 246, 0, 3241, 3247, 1, 0, 0, 0, 3242, 3243, 5, 69, 0, 0, 3243, 3247, 3, 588, 294, 0, 3244, 3245, 5, 155, 0, 0, 3245, 3247, 3, 584, 292, 0, 3246, 3223, 1, 0, 0, 0, 3246, 3227, 1, 0, 0, 0, 3246, 3234, 1, 0, 0, 0, 3246, 3239, 1, 0, 0, 0, 3246, 3242, 1, 0, 0, 0, 3246, 3244, 1, 0, 0, 0, 3247, 477, 1, 0, 0, 0, 3248, 3270, 3, 502, 251, 0, 3249, 3270, 3, 534, 267, 0, 3250, 3270, 3, 536, 268, 0, 3251, 3270, 3, 522, 261, 0, 3252, 3270, 3, 526, 263, 0, 3253, 3270, 3, 528, 264, 0, 3254, 3270, 3, 530, 265, 0, 3255, 3270, 3, 538, 269, 0, 3256, 3270, 3, 560, 280, 0, 3257, 3270, 3, 562, 281, 0, 3258, 3270, 3, 482, 241, 0, 3259, 3270, 3, 512, 256, 0, 3260, 3270, 3, 506, 253, 0, 3261, 3270, 3, 480, 240, 0, 3262, 3264, 3, 912, 456, 0, 3263, 3262, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3270, 3, 480, 240, 0, 3266, 3270, 3, 578, 289, 0, 3267, 3270, 3, 580, 290, 0, 3268, 3270, 3, 582, 291, 0, 3269, 3248, 1, 0, 0, 0, 3269, 3249, 1, 0, 0, 0, 3269, 3250, 1, 0, 0, 0, 3269, 3251, 1, 0, 0, 0, 3269, 3252, 1, 0, 0, 0, 3269, 3253, 1, 0, 0, 0, 3269, 3254, 1, 0, 0, 0, 3269, 3255, 1, 0, 0, 0, 3269, 3256, 1, 0, 0, 0, 3269, 3257, 1, 0, 0, 0, 3269, 3258, 1, 0, 0, 0, 3269, 3259, 1, 0, 0, 0, 3269, 3260, 1, 0, 0, 0, 3269, 3261, 1, 0, 0, 0, 3269, 3263, 1, 0, 0, 0, 3269, 3266, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3269, 3268, 1, 0, 0, 0, 3270, 479, 1, 0, 0, 0, 3271, 3287, 3, 546, 273, 0, 3272, 3287, 3, 558, 279, 0, 3273, 3287, 3, 568, 284, 0, 3274, 3287, 3, 542, 271, 0, 3275, 3287, 3, 564, 282, 0, 3276, 3287, 3, 570, 285, 0, 3277, 3287, 3, 550, 275, 0, 3278, 3287, 3, 548, 274, 0, 3279, 3287, 3, 576, 288, 0, 3280, 3287, 3, 516, 258, 0, 3281, 3287, 3, 518, 259, 0, 3282, 3287, 3, 514, 257, 0, 3283, 3287, 3, 504, 252, 0, 3284, 3287, 3, 508, 254, 0, 3285, 3287, 3, 510, 255, 0, 3286, 3271, 1, 0, 0, 0, 3286, 3272, 1, 0, 0, 0, 3286, 3273, 1, 0, 0, 0, 3286, 3274, 1, 0, 0, 0, 3286, 3275, 1, 0, 0, 0, 3286, 3276, 1, 0, 0, 0, 3286, 3277, 1, 0, 0, 0, 3286, 3278, 1, 0, 0, 0, 3286, 3279, 1, 0, 0, 0, 3286, 3280, 1, 0, 0, 0, 3286, 3281, 1, 0, 0, 0, 3286, 3282, 1, 0, 0, 0, 3286, 3283, 1, 0, 0, 0, 3286, 3284, 1, 0, 0, 0, 3286, 3285, 1, 0, 0, 0, 3287, 481, 1, 0, 0, 0, 3288, 3289, 5, 236, 0, 0, 3289, 3290, 5, 45, 0, 0, 3290, 3291, 5, 398, 0, 0, 3291, 3292, 3, 342, 171, 0, 3292, 3293, 5, 399, 0, 0, 3293, 483, 1, 0, 0, 0, 3294, 3300, 3, 540, 270, 0, 3295, 3300, 3, 502, 251, 0, 3296, 3300, 3, 522, 261, 0, 3297, 3300, 3, 536, 268, 0, 3298, 3300, 3, 412, 206, 0, 3299, 3294, 1, 0, 0, 0, 3299, 3295, 1, 0, 0, 0, 3299, 3296, 1, 0, 0, 0, 3299, 3297, 1, 0, 0, 0, 3299, 3298, 1, 0, 0, 0, 3300, 485, 1, 0, 0, 0, 3301, 3304, 3, 488, 244, 0, 3302, 3304, 3, 490, 245, 0, 3303, 3301, 1, 0, 0, 0, 3303, 3302, 1, 0, 0, 0, 3304, 487, 1, 0, 0, 0, 3305, 3308, 3, 48, 24, 0, 3306, 3308, 3, 50, 25, 0, 3307, 3305, 1, 0, 0, 0, 3307, 3306, 1, 0, 0, 0, 3308, 489, 1, 0, 0, 0, 3309, 3310, 5, 264, 0, 0, 3310, 491, 1, 0, 0, 0, 3311, 3315, 3, 494, 247, 0, 3312, 3315, 3, 496, 248, 0, 3313, 3315, 3, 498, 249, 0, 3314, 3311, 1, 0, 0, 0, 3314, 3312, 1, 0, 0, 0, 3314, 3313, 1, 0, 0, 0, 3315, 493, 1, 0, 0, 0, 3316, 3317, 3, 654, 327, 0, 3317, 3318, 5, 303, 0, 0, 3318, 3319, 5, 76, 0, 0, 3319, 3320, 3, 62, 31, 0, 3320, 495, 1, 0, 0, 0, 3321, 3322, 3, 654, 327, 0, 3322, 3323, 5, 303, 0, 0, 3323, 3324, 5, 235, 0, 0, 3324, 3325, 3, 150, 75, 0, 3325, 497, 1, 0, 0, 0, 3326, 3327, 3, 654, 327, 0, 3327, 3328, 5, 303, 0, 0, 3328, 3329, 7, 22, 0, 0, 3329, 3330, 5, 425, 0, 0, 3330, 499, 1, 0, 0, 0, 3331, 3332, 3, 654, 327, 0, 3332, 3333, 5, 303, 0, 0, 3333, 3334, 5, 195, 0, 0, 3334, 3335, 5, 425, 0, 0, 3335, 501, 1, 0, 0, 0, 3336, 3337, 5, 273, 0, 0, 3337, 3338, 5, 340, 0, 0, 3338, 3339, 3, 662, 331, 0, 3339, 503, 1, 0, 0, 0, 3340, 3343, 5, 4, 0, 0, 3341, 3343, 5, 277, 0, 0, 3342, 3340, 1, 0, 0, 0, 3342, 3341, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3345, 5, 46, 0, 0, 3345, 3346, 5, 398, 0, 0, 3346, 3347, 3, 274, 137, 0, 3347, 3349, 5, 399, 0, 0, 3348, 3350, 3, 42, 21, 0, 3349, 3348, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 505, 1, 0, 0, 0, 3351, 3354, 5, 4, 0, 0, 3352, 3355, 3, 314, 157, 0, 3353, 3355, 3, 304, 152, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3353, 1, 0, 0, 0, 3355, 507, 1, 0, 0, 0, 3356, 3357, 5, 364, 0, 0, 3357, 3359, 5, 46, 0, 0, 3358, 3360, 3, 42, 21, 0, 3359, 3358, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 509, 1, 0, 0, 0, 3361, 3362, 3, 294, 147, 0, 3362, 3364, 5, 217, 0, 0, 3363, 3365, 5, 34, 0, 0, 3364, 3363, 1, 0, 0, 0, 3364, 3365, 1, 0, 0, 0, 3365, 3370, 1, 0, 0, 0, 3366, 3367, 3, 294, 147, 0, 3367, 3368, 5, 221, 0, 0, 3368, 3370, 1, 0, 0, 0, 3369, 3361, 1, 0, 0, 0, 3369, 3366, 1, 0, 0, 0, 3370, 511, 1, 0, 0, 0, 3371, 3372, 5, 101, 0, 0, 3372, 3373, 5, 55, 0, 0, 3373, 3374, 3, 926, 463, 0, 3374, 513, 1, 0, 0, 0, 3375, 3377, 5, 38, 0, 0, 3376, 3378, 5, 45, 0, 0, 3377, 3376, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 3380, 3, 282, 141, 0, 3380, 3381, 3, 284, 142, 0, 3381, 3383, 3, 374, 187, 0, 3382, 3384, 3, 356, 178, 0, 3383, 3382, 1, 0, 0, 0, 3383, 3384, 1, 0, 0, 0, 3384, 3387, 1, 0, 0, 0, 3385, 3386, 5, 47, 0, 0, 3386, 3388, 5, 425, 0, 0, 3387, 3385, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3390, 1, 0, 0, 0, 3389, 3391, 3, 520, 260, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3393, 1, 0, 0, 0, 3392, 3394, 3, 42, 21, 0, 3393, 3392, 1, 0, 0, 0, 3393, 3394, 1, 0, 0, 0, 3394, 515, 1, 0, 0, 0, 3395, 3396, 5, 364, 0, 0, 3396, 3397, 5, 318, 0, 0, 3397, 3399, 5, 134, 0, 0, 3398, 3400, 5, 45, 0, 0, 3399, 3398, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 3, 282, 141, 0, 3402, 3403, 5, 303, 0, 0, 3403, 3406, 3, 252, 126, 0, 3404, 3405, 5, 47, 0, 0, 3405, 3407, 5, 425, 0, 0, 3406, 3404, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 517, 1, 0, 0, 0, 3408, 3409, 5, 364, 0, 0, 3409, 3410, 5, 318, 0, 0, 3410, 3411, 5, 303, 0, 0, 3411, 3412, 3, 252, 126, 0, 3412, 519, 1, 0, 0, 0, 3413, 3417, 5, 130, 0, 0, 3414, 3415, 5, 6, 0, 0, 3415, 3417, 3, 926, 463, 0, 3416, 3413, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3417, 521, 1, 0, 0, 0, 3418, 3420, 5, 4, 0, 0, 3419, 3421, 3, 44, 22, 0, 3420, 3419, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3423, 1, 0, 0, 0, 3422, 3424, 3, 524, 262, 0, 3423, 3422, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 523, 1, 0, 0, 0, 3427, 3429, 3, 912, 456, 0, 3428, 3430, 3, 532, 266, 0, 3429, 3428, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 525, 1, 0, 0, 0, 3431, 3435, 5, 341, 0, 0, 3432, 3434, 3, 912, 456, 0, 3433, 3432, 1, 0, 0, 0, 3434, 3437, 1, 0, 0, 0, 3435, 3433, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 527, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3438, 3442, 5, 15, 0, 0, 3439, 3441, 3, 912, 456, 0, 3440, 3439, 1, 0, 0, 0, 3441, 3444, 1, 0, 0, 0, 3442, 3440, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 529, 1, 0, 0, 0, 3444, 3442, 1, 0, 0, 0, 3445, 3449, 5, 352, 0, 0, 3446, 3448, 3, 912, 456, 0, 3447, 3446, 1, 0, 0, 0, 3448, 3451, 1, 0, 0, 0, 3449, 3447, 1, 0, 0, 0, 3449, 3450, 1, 0, 0, 0, 3450, 531, 1, 0, 0, 0, 3451, 3449, 1, 0, 0, 0, 3452, 3453, 5, 188, 0, 0, 3453, 3454, 5, 425, 0, 0, 3454, 533, 1, 0, 0, 0, 3455, 3456, 5, 102, 0, 0, 3456, 3457, 5, 238, 0, 0, 3457, 535, 1, 0, 0, 0, 3458, 3460, 5, 101, 0, 0, 3459, 3461, 3, 40, 20, 0, 3460, 3459, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3463, 5, 236, 0, 0, 3463, 3469, 3, 916, 458, 0, 3464, 3465, 5, 396, 0, 0, 3465, 3466, 5, 236, 0, 0, 3466, 3468, 3, 916, 458, 0, 3467, 3464, 1, 0, 0, 0, 3468, 3471, 1, 0, 0, 0, 3469, 3467, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 3473, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3472, 3474, 3, 16, 8, 0, 3473, 3472, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3476, 1, 0, 0, 0, 3475, 3477, 5, 254, 0, 0, 3476, 3475, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 3479, 1, 0, 0, 0, 3478, 3480, 3, 18, 9, 0, 3479, 3478, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 537, 1, 0, 0, 0, 3481, 3482, 5, 303, 0, 0, 3482, 3483, 5, 331, 0, 0, 3483, 3491, 3, 252, 126, 0, 3484, 3485, 5, 362, 0, 0, 3485, 3487, 5, 331, 0, 0, 3486, 3488, 3, 40, 20, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3491, 3, 252, 126, 0, 3490, 3481, 1, 0, 0, 0, 3490, 3484, 1, 0, 0, 0, 3491, 539, 1, 0, 0, 0, 3492, 3493, 5, 303, 0, 0, 3493, 3494, 5, 331, 0, 0, 3494, 3502, 3, 252, 126, 0, 3495, 3496, 5, 362, 0, 0, 3496, 3498, 5, 331, 0, 0, 3497, 3499, 3, 40, 20, 0, 3498, 3497, 1, 0, 0, 0, 3498, 3499, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3502, 3, 252, 126, 0, 3501, 3492, 1, 0, 0, 0, 3501, 3495, 1, 0, 0, 0, 3502, 541, 1, 0, 0, 0, 3503, 3513, 5, 303, 0, 0, 3504, 3505, 5, 300, 0, 0, 3505, 3509, 5, 425, 0, 0, 3506, 3507, 5, 386, 0, 0, 3507, 3508, 5, 301, 0, 0, 3508, 3510, 3, 252, 126, 0, 3509, 3506, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3514, 1, 0, 0, 0, 3511, 3512, 5, 301, 0, 0, 3512, 3514, 3, 252, 126, 0, 3513, 3504, 1, 0, 0, 0, 3513, 3511, 1, 0, 0, 0, 3514, 3519, 1, 0, 0, 0, 3515, 3516, 5, 362, 0, 0, 3516, 3517, 5, 301, 0, 0, 3517, 3519, 3, 252, 126, 0, 3518, 3503, 1, 0, 0, 0, 3518, 3515, 1, 0, 0, 0, 3519, 543, 1, 0, 0, 0, 3520, 3522, 3, 660, 330, 0, 3521, 3523, 3, 912, 456, 0, 3522, 3521, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 545, 1, 0, 0, 0, 3524, 3525, 5, 303, 0, 0, 3525, 3526, 5, 129, 0, 0, 3526, 3527, 3, 586, 293, 0, 3527, 547, 1, 0, 0, 0, 3528, 3529, 5, 215, 0, 0, 3529, 3532, 7, 23, 0, 0, 3530, 3532, 3, 232, 116, 0, 3531, 3528, 1, 0, 0, 0, 3531, 3530, 1, 0, 0, 0, 3532, 549, 1, 0, 0, 0, 3533, 3534, 5, 303, 0, 0, 3534, 3535, 5, 309, 0, 0, 3535, 3536, 5, 188, 0, 0, 3536, 3537, 3, 552, 276, 0, 3537, 551, 1, 0, 0, 0, 3538, 3539, 5, 398, 0, 0, 3539, 3540, 3, 554, 277, 0, 3540, 3541, 5, 399, 0, 0, 3541, 553, 1, 0, 0, 0, 3542, 3547, 3, 556, 278, 0, 3543, 3544, 5, 396, 0, 0, 3544, 3546, 3, 556, 278, 0, 3545, 3543, 1, 0, 0, 0, 3546, 3549, 1, 0, 0, 0, 3547, 3545, 1, 0, 0, 0, 3547, 3548, 1, 0, 0, 0, 3548, 555, 1, 0, 0, 0, 3549, 3547, 1, 0, 0, 0, 3550, 3551, 3, 326, 163, 0, 3551, 3552, 5, 404, 0, 0, 3552, 3553, 5, 425, 0, 0, 3553, 557, 1, 0, 0, 0, 3554, 3555, 5, 303, 0, 0, 3555, 3556, 5, 188, 0, 0, 3556, 3557, 5, 425, 0, 0, 3557, 559, 1, 0, 0, 0, 3558, 3565, 3, 236, 118, 0, 3559, 3562, 5, 215, 0, 0, 3560, 3563, 5, 309, 0, 0, 3561, 3563, 3, 52, 26, 0, 3562, 3560, 1, 0, 0, 0, 3562, 3561, 1, 0, 0, 0, 3563, 3565, 1, 0, 0, 0, 3564, 3558, 1, 0, 0, 0, 3564, 3559, 1, 0, 0, 0, 3565, 561, 1, 0, 0, 0, 3566, 3567, 5, 113, 0, 0, 3567, 3568, 3, 912, 456, 0, 3568, 3569, 5, 386, 0, 0, 3569, 3570, 5, 328, 0, 0, 3570, 3571, 3, 660, 330, 0, 3571, 563, 1, 0, 0, 0, 3572, 3573, 5, 273, 0, 0, 3573, 3574, 5, 340, 0, 0, 3574, 3575, 3, 912, 456, 0, 3575, 565, 1, 0, 0, 0, 3576, 3577, 5, 364, 0, 0, 3577, 3578, 5, 318, 0, 0, 3578, 3580, 5, 134, 0, 0, 3579, 3581, 5, 45, 0, 0, 3580, 3579, 1, 0, 0, 0, 3580, 3581, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3583, 3, 282, 141, 0, 3583, 3584, 5, 303, 0, 0, 3584, 3587, 3, 252, 126, 0, 3585, 3586, 5, 47, 0, 0, 3586, 3588, 5, 425, 0, 0, 3587, 3585, 1, 0, 0, 0, 3587, 3588, 1, 0, 0, 0, 3588, 567, 1, 0, 0, 0, 3589, 3590, 5, 53, 0, 0, 3590, 569, 1, 0, 0, 0, 3591, 3592, 5, 166, 0, 0, 3592, 3593, 5, 430, 0, 0, 3593, 3594, 5, 31, 0, 0, 3594, 571, 1, 0, 0, 0, 3595, 3596, 5, 11, 0, 0, 3596, 3597, 5, 379, 0, 0, 3597, 573, 1, 0, 0, 0, 3598, 3599, 5, 245, 0, 0, 3599, 3600, 5, 425, 0, 0, 3600, 575, 1, 0, 0, 0, 3601, 3602, 5, 49, 0, 0, 3602, 3604, 5, 425, 0, 0, 3603, 3605, 3, 572, 286, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 234, 117, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3611, 3, 764, 382, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3613, 1, 0, 0, 0, 3612, 3614, 3, 574, 287, 0, 3613, 3612, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3619, 1, 0, 0, 0, 3615, 3616, 5, 386, 0, 0, 3616, 3617, 5, 234, 0, 0, 3617, 3618, 5, 331, 0, 0, 3618, 3620, 3, 252, 126, 0, 3619, 3615, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 577, 1, 0, 0, 0, 3621, 3622, 5, 303, 0, 0, 3622, 3623, 5, 235, 0, 0, 3623, 3624, 3, 148, 74, 0, 3624, 579, 1, 0, 0, 0, 3625, 3626, 5, 303, 0, 0, 3626, 3627, 5, 236, 0, 0, 3627, 3628, 5, 315, 0, 0, 3628, 3629, 5, 398, 0, 0, 3629, 3630, 3, 226, 113, 0, 3630, 3631, 5, 399, 0, 0, 3631, 581, 1, 0, 0, 0, 3632, 3642, 5, 115, 0, 0, 3633, 3634, 5, 288, 0, 0, 3634, 3635, 5, 398, 0, 0, 3635, 3643, 7, 24, 0, 0, 3636, 3637, 5, 118, 0, 0, 3637, 3638, 5, 398, 0, 0, 3638, 3643, 5, 425, 0, 0, 3639, 3640, 5, 305, 0, 0, 3640, 3641, 5, 398, 0, 0, 3641, 3643, 5, 430, 0, 0, 3642, 3633, 1, 0, 0, 0, 3642, 3636, 1, 0, 0, 0, 3642, 3639, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3645, 5, 399, 0, 0, 3645, 583, 1, 0, 0, 0, 3646, 3647, 3, 926, 463, 0, 3647, 3648, 5, 223, 0, 0, 3648, 3650, 3, 660, 330, 0, 3649, 3651, 3, 912, 456, 0, 3650, 3649, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 5, 264, 0, 0, 3653, 585, 1, 0, 0, 0, 3654, 3655, 5, 160, 0, 0, 3655, 3656, 5, 425, 0, 0, 3656, 3657, 5, 232, 0, 0, 3657, 3658, 5, 425, 0, 0, 3658, 3659, 5, 300, 0, 0, 3659, 3664, 5, 425, 0, 0, 3660, 3661, 5, 159, 0, 0, 3661, 3662, 5, 425, 0, 0, 3662, 3663, 5, 231, 0, 0, 3663, 3665, 5, 425, 0, 0, 3664, 3660, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3668, 1, 0, 0, 0, 3666, 3668, 3, 926, 463, 0, 3667, 3654, 1, 0, 0, 0, 3667, 3666, 1, 0, 0, 0, 3668, 587, 1, 0, 0, 0, 3669, 3673, 3, 590, 295, 0, 3670, 3673, 3, 592, 296, 0, 3671, 3673, 3, 594, 297, 0, 3672, 3669, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 589, 1, 0, 0, 0, 3674, 3675, 3, 654, 327, 0, 3675, 3676, 5, 303, 0, 0, 3676, 3677, 5, 77, 0, 0, 3677, 3678, 3, 608, 304, 0, 3678, 591, 1, 0, 0, 0, 3679, 3680, 3, 654, 327, 0, 3680, 3681, 5, 303, 0, 0, 3681, 3682, 5, 235, 0, 0, 3682, 3683, 3, 150, 75, 0, 3683, 593, 1, 0, 0, 0, 3684, 3685, 3, 654, 327, 0, 3685, 3686, 5, 303, 0, 0, 3686, 3687, 5, 366, 0, 0, 3687, 3688, 5, 425, 0, 0, 3688, 595, 1, 0, 0, 0, 3689, 3690, 5, 183, 0, 0, 3690, 3699, 5, 128, 0, 0, 3691, 3692, 5, 183, 0, 0, 3692, 3693, 5, 128, 0, 0, 3693, 3694, 3, 926, 463, 0, 3694, 3695, 5, 425, 0, 0, 3695, 3699, 1, 0, 0, 0, 3696, 3697, 5, 183, 0, 0, 3697, 3699, 3, 660, 330, 0, 3698, 3689, 1, 0, 0, 0, 3698, 3691, 1, 0, 0, 0, 3698, 3696, 1, 0, 0, 0, 3699, 597, 1, 0, 0, 0, 3700, 3702, 5, 58, 0, 0, 3701, 3703, 5, 332, 0, 0, 3702, 3701, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3705, 1, 0, 0, 0, 3704, 3706, 5, 344, 0, 0, 3705, 3704, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3708, 1, 0, 0, 0, 3707, 3709, 5, 123, 0, 0, 3708, 3707, 1, 0, 0, 0, 3708, 3709, 1, 0, 0, 0, 3709, 3710, 1, 0, 0, 0, 3710, 3712, 5, 328, 0, 0, 3711, 3713, 3, 44, 22, 0, 3712, 3711, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 3765, 3, 662, 331, 0, 3715, 3717, 3, 596, 298, 0, 3716, 3718, 3, 220, 110, 0, 3717, 3716, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3720, 1, 0, 0, 0, 3719, 3721, 3, 248, 124, 0, 3720, 3719, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3723, 1, 0, 0, 0, 3722, 3724, 3, 270, 135, 0, 3723, 3722, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3726, 1, 0, 0, 0, 3725, 3727, 3, 272, 136, 0, 3726, 3725, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3729, 1, 0, 0, 0, 3728, 3730, 3, 250, 125, 0, 3729, 3728, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3766, 1, 0, 0, 0, 3731, 3732, 5, 398, 0, 0, 3732, 3733, 3, 276, 138, 0, 3733, 3734, 5, 399, 0, 0, 3734, 3736, 1, 0, 0, 0, 3735, 3731, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3738, 1, 0, 0, 0, 3737, 3739, 3, 218, 109, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3741, 1, 0, 0, 0, 3740, 3742, 3, 220, 110, 0, 3741, 3740, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3744, 1, 0, 0, 0, 3743, 3745, 3, 232, 116, 0, 3744, 3743, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3747, 1, 0, 0, 0, 3746, 3748, 3, 236, 118, 0, 3747, 3746, 1, 0, 0, 0, 3747, 3748, 1, 0, 0, 0, 3748, 3750, 1, 0, 0, 0, 3749, 3751, 3, 248, 124, 0, 3750, 3749, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 3753, 1, 0, 0, 0, 3752, 3754, 3, 270, 135, 0, 3753, 3752, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3756, 1, 0, 0, 0, 3755, 3757, 3, 272, 136, 0, 3756, 3755, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3759, 1, 0, 0, 0, 3758, 3760, 3, 250, 125, 0, 3759, 3758, 1, 0, 0, 0, 3759, 3760, 1, 0, 0, 0, 3760, 3763, 1, 0, 0, 0, 3761, 3762, 5, 17, 0, 0, 3762, 3764, 3, 412, 206, 0, 3763, 3761, 1, 0, 0, 0, 3763, 3764, 1, 0, 0, 0, 3764, 3766, 1, 0, 0, 0, 3765, 3715, 1, 0, 0, 0, 3765, 3735, 1, 0, 0, 0, 3766, 3824, 1, 0, 0, 0, 3767, 3768, 5, 58, 0, 0, 3768, 3769, 5, 194, 0, 0, 3769, 3771, 5, 328, 0, 0, 3770, 3772, 3, 44, 22, 0, 3771, 3770, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 3821, 3, 662, 331, 0, 3774, 3776, 3, 596, 298, 0, 3775, 3777, 3, 248, 124, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3779, 1, 0, 0, 0, 3778, 3780, 3, 270, 135, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3782, 1, 0, 0, 0, 3781, 3783, 3, 272, 136, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3785, 1, 0, 0, 0, 3784, 3786, 3, 250, 125, 0, 3785, 3784, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3822, 1, 0, 0, 0, 3787, 3788, 5, 398, 0, 0, 3788, 3789, 3, 276, 138, 0, 3789, 3790, 5, 399, 0, 0, 3790, 3792, 1, 0, 0, 0, 3791, 3787, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3794, 1, 0, 0, 0, 3793, 3795, 3, 218, 109, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3797, 1, 0, 0, 0, 3796, 3798, 3, 220, 110, 0, 3797, 3796, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3800, 1, 0, 0, 0, 3799, 3801, 3, 232, 116, 0, 3800, 3799, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3803, 1, 0, 0, 0, 3802, 3804, 3, 236, 118, 0, 3803, 3802, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3806, 1, 0, 0, 0, 3805, 3807, 3, 248, 124, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3809, 1, 0, 0, 0, 3808, 3810, 3, 270, 135, 0, 3809, 3808, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3813, 3, 272, 136, 0, 3812, 3811, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3815, 1, 0, 0, 0, 3814, 3816, 3, 250, 125, 0, 3815, 3814, 1, 0, 0, 0, 3815, 3816, 1, 0, 0, 0, 3816, 3819, 1, 0, 0, 0, 3817, 3818, 5, 17, 0, 0, 3818, 3820, 3, 412, 206, 0, 3819, 3817, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3822, 1, 0, 0, 0, 3821, 3774, 1, 0, 0, 0, 3821, 3791, 1, 0, 0, 0, 3822, 3824, 1, 0, 0, 0, 3823, 3700, 1, 0, 0, 0, 3823, 3767, 1, 0, 0, 0, 3824, 599, 1, 0, 0, 0, 3825, 3826, 5, 58, 0, 0, 3826, 3828, 5, 69, 0, 0, 3827, 3829, 3, 44, 22, 0, 3828, 3827, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 3832, 3, 926, 463, 0, 3831, 3833, 3, 606, 303, 0, 3832, 3831, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3835, 1, 0, 0, 0, 3834, 3836, 3, 604, 302, 0, 3835, 3834, 1, 0, 0, 0, 3835, 3836, 1, 0, 0, 0, 3836, 3838, 1, 0, 0, 0, 3837, 3839, 3, 602, 301, 0, 3838, 3837, 1, 0, 0, 0, 3838, 3839, 1, 0, 0, 0, 3839, 3843, 1, 0, 0, 0, 3840, 3841, 5, 386, 0, 0, 3841, 3842, 5, 77, 0, 0, 3842, 3844, 3, 608, 304, 0, 3843, 3840, 1, 0, 0, 0, 3843, 3844, 1, 0, 0, 0, 3844, 601, 1, 0, 0, 0, 3845, 3846, 5, 47, 0, 0, 3846, 3847, 5, 425, 0, 0, 3847, 603, 1, 0, 0, 0, 3848, 3849, 5, 366, 0, 0, 3849, 3850, 5, 425, 0, 0, 3850, 605, 1, 0, 0, 0, 3851, 3852, 5, 351, 0, 0, 3852, 3853, 5, 425, 0, 0, 3853, 607, 1, 0, 0, 0, 3854, 3855, 5, 398, 0, 0, 3855, 3856, 3, 64, 32, 0, 3856, 3857, 5, 399, 0, 0, 3857, 609, 1, 0, 0, 0, 3858, 3859, 5, 101, 0, 0, 3859, 3861, 5, 69, 0, 0, 3860, 3862, 3, 40, 20, 0, 3861, 3860, 1, 0, 0, 0, 3861, 3862, 1, 0, 0, 0, 3862, 3863, 1, 0, 0, 0, 3863, 3864, 3, 926, 463, 0, 3864, 611, 1, 0, 0, 0, 3865, 3871, 5, 414, 0, 0, 3866, 3867, 3, 658, 329, 0, 3867, 3868, 5, 394, 0, 0, 3868, 3869, 5, 414, 0, 0, 3869, 3871, 1, 0, 0, 0, 3870, 3865, 1, 0, 0, 0, 3870, 3866, 1, 0, 0, 0, 3871, 613, 1, 0, 0, 0, 3872, 3873, 5, 83, 0, 0, 3873, 615, 1, 0, 0, 0, 3874, 3879, 3, 828, 414, 0, 3875, 3876, 5, 396, 0, 0, 3876, 3878, 3, 828, 414, 0, 3877, 3875, 1, 0, 0, 0, 3878, 3881, 1, 0, 0, 0, 3879, 3877, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 617, 1, 0, 0, 0, 3881, 3879, 1, 0, 0, 0, 3882, 3887, 3, 926, 463, 0, 3883, 3884, 5, 396, 0, 0, 3884, 3886, 3, 926, 463, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3889, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 619, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3890, 3891, 5, 139, 0, 0, 3891, 3892, 3, 622, 311, 0, 3892, 621, 1, 0, 0, 0, 3893, 3894, 3, 634, 317, 0, 3894, 3897, 3, 630, 315, 0, 3895, 3896, 5, 396, 0, 0, 3896, 3898, 3, 630, 315, 0, 3897, 3895, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3903, 1, 0, 0, 0, 3901, 3903, 3, 626, 313, 0, 3902, 3893, 1, 0, 0, 0, 3902, 3901, 1, 0, 0, 0, 3903, 623, 1, 0, 0, 0, 3904, 3908, 3, 648, 324, 0, 3905, 3907, 3, 638, 319, 0, 3906, 3905, 1, 0, 0, 0, 3907, 3910, 1, 0, 0, 0, 3908, 3906, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3937, 1, 0, 0, 0, 3910, 3908, 1, 0, 0, 0, 3911, 3915, 3, 690, 345, 0, 3912, 3914, 3, 638, 319, 0, 3913, 3912, 1, 0, 0, 0, 3914, 3917, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3915, 3916, 1, 0, 0, 0, 3916, 3937, 1, 0, 0, 0, 3917, 3915, 1, 0, 0, 0, 3918, 3922, 3, 668, 334, 0, 3919, 3921, 3, 638, 319, 0, 3920, 3919, 1, 0, 0, 0, 3921, 3924, 1, 0, 0, 0, 3922, 3920, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3937, 1, 0, 0, 0, 3924, 3922, 1, 0, 0, 0, 3925, 3929, 3, 674, 337, 0, 3926, 3928, 3, 638, 319, 0, 3927, 3926, 1, 0, 0, 0, 3928, 3931, 1, 0, 0, 0, 3929, 3927, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3937, 1, 0, 0, 0, 3931, 3929, 1, 0, 0, 0, 3932, 3933, 5, 398, 0, 0, 3933, 3934, 3, 626, 313, 0, 3934, 3935, 5, 399, 0, 0, 3935, 3937, 1, 0, 0, 0, 3936, 3904, 1, 0, 0, 0, 3936, 3911, 1, 0, 0, 0, 3936, 3918, 1, 0, 0, 0, 3936, 3925, 1, 0, 0, 0, 3936, 3932, 1, 0, 0, 0, 3937, 625, 1, 0, 0, 0, 3938, 3949, 3, 624, 312, 0, 3939, 3940, 3, 636, 318, 0, 3940, 3945, 3, 628, 314, 0, 3941, 3942, 5, 223, 0, 0, 3942, 3946, 3, 828, 414, 0, 3943, 3944, 5, 369, 0, 0, 3944, 3946, 3, 290, 145, 0, 3945, 3941, 1, 0, 0, 0, 3945, 3943, 1, 0, 0, 0, 3945, 3946, 1, 0, 0, 0, 3946, 3948, 1, 0, 0, 0, 3947, 3939, 1, 0, 0, 0, 3948, 3951, 1, 0, 0, 0, 3949, 3947, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 627, 1, 0, 0, 0, 3951, 3949, 1, 0, 0, 0, 3952, 3957, 3, 648, 324, 0, 3953, 3957, 3, 690, 345, 0, 3954, 3957, 3, 668, 334, 0, 3955, 3957, 3, 674, 337, 0, 3956, 3952, 1, 0, 0, 0, 3956, 3953, 1, 0, 0, 0, 3956, 3954, 1, 0, 0, 0, 3956, 3955, 1, 0, 0, 0, 3957, 3961, 1, 0, 0, 0, 3958, 3960, 3, 638, 319, 0, 3959, 3958, 1, 0, 0, 0, 3960, 3963, 1, 0, 0, 0, 3961, 3959, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 629, 1, 0, 0, 0, 3963, 3961, 1, 0, 0, 0, 3964, 3966, 5, 249, 0, 0, 3965, 3964, 1, 0, 0, 0, 3965, 3966, 1, 0, 0, 0, 3966, 3967, 1, 0, 0, 0, 3967, 3968, 3, 652, 326, 0, 3968, 3969, 3, 632, 316, 0, 3969, 631, 1, 0, 0, 0, 3970, 3971, 5, 398, 0, 0, 3971, 3972, 3, 616, 308, 0, 3972, 3973, 5, 399, 0, 0, 3973, 633, 1, 0, 0, 0, 3974, 3975, 5, 358, 0, 0, 3975, 635, 1, 0, 0, 0, 3976, 3991, 5, 396, 0, 0, 3977, 3988, 5, 157, 0, 0, 3978, 3988, 5, 60, 0, 0, 3979, 3981, 7, 25, 0, 0, 3980, 3982, 5, 230, 0, 0, 3981, 3980, 1, 0, 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 3988, 1, 0, 0, 0, 3983, 3985, 5, 180, 0, 0, 3984, 3986, 7, 26, 0, 0, 3985, 3984, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3988, 1, 0, 0, 0, 3987, 3977, 1, 0, 0, 0, 3987, 3978, 1, 0, 0, 0, 3987, 3979, 1, 0, 0, 0, 3987, 3983, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 3989, 1, 0, 0, 0, 3989, 3991, 5, 171, 0, 0, 3990, 3976, 1, 0, 0, 0, 3990, 3987, 1, 0, 0, 0, 3991, 637, 1, 0, 0, 0, 3992, 3993, 5, 178, 0, 0, 3993, 3994, 5, 377, 0, 0, 3994, 3995, 5, 230, 0, 0, 3995, 3996, 3, 776, 388, 0, 3996, 4006, 3, 640, 320, 0, 3997, 3998, 5, 17, 0, 0, 3998, 4003, 3, 926, 463, 0, 3999, 4000, 5, 396, 0, 0, 4000, 4002, 3, 926, 463, 0, 4001, 3999, 1, 0, 0, 0, 4002, 4005, 1, 0, 0, 0, 4003, 4001, 1, 0, 0, 0, 4003, 4004, 1, 0, 0, 0, 4004, 4007, 1, 0, 0, 0, 4005, 4003, 1, 0, 0, 0, 4006, 3997, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4050, 1, 0, 0, 0, 4008, 4010, 5, 396, 0, 0, 4009, 4008, 1, 0, 0, 0, 4009, 4010, 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4047, 5, 178, 0, 0, 4012, 4013, 5, 377, 0, 0, 4013, 4014, 3, 776, 388, 0, 4014, 4024, 3, 640, 320, 0, 4015, 4016, 5, 17, 0, 0, 4016, 4021, 3, 926, 463, 0, 4017, 4018, 5, 396, 0, 0, 4018, 4020, 3, 926, 463, 0, 4019, 4017, 1, 0, 0, 0, 4020, 4023, 1, 0, 0, 0, 4021, 4019, 1, 0, 0, 0, 4021, 4022, 1, 0, 0, 0, 4022, 4025, 1, 0, 0, 0, 4023, 4021, 1, 0, 0, 0, 4024, 4015, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4048, 1, 0, 0, 0, 4026, 4027, 5, 328, 0, 0, 4027, 4028, 5, 398, 0, 0, 4028, 4029, 3, 682, 341, 0, 4029, 4031, 5, 399, 0, 0, 4030, 4032, 5, 17, 0, 0, 4031, 4030, 1, 0, 0, 0, 4031, 4032, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4045, 3, 640, 320, 0, 4034, 4035, 5, 398, 0, 0, 4035, 4040, 3, 926, 463, 0, 4036, 4037, 5, 396, 0, 0, 4037, 4039, 3, 926, 463, 0, 4038, 4036, 1, 0, 0, 0, 4039, 4042, 1, 0, 0, 0, 4040, 4038, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4043, 1, 0, 0, 0, 4042, 4040, 1, 0, 0, 0, 4043, 4044, 5, 399, 0, 0, 4044, 4046, 1, 0, 0, 0, 4045, 4034, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4048, 1, 0, 0, 0, 4047, 4012, 1, 0, 0, 0, 4047, 4026, 1, 0, 0, 0, 4048, 4050, 1, 0, 0, 0, 4049, 3992, 1, 0, 0, 0, 4049, 4009, 1, 0, 0, 0, 4050, 639, 1, 0, 0, 0, 4051, 4052, 3, 926, 463, 0, 4052, 641, 1, 0, 0, 0, 4053, 4054, 5, 330, 0, 0, 4054, 4055, 5, 398, 0, 0, 4055, 4056, 5, 30, 0, 0, 4056, 4057, 5, 430, 0, 0, 4057, 4058, 5, 229, 0, 0, 4058, 4059, 5, 220, 0, 0, 4059, 4069, 5, 430, 0, 0, 4060, 4061, 5, 223, 0, 0, 4061, 4066, 3, 828, 414, 0, 4062, 4063, 5, 396, 0, 0, 4063, 4065, 3, 828, 414, 0, 4064, 4062, 1, 0, 0, 0, 4065, 4068, 1, 0, 0, 0, 4066, 4064, 1, 0, 0, 0, 4066, 4067, 1, 0, 0, 0, 4067, 4070, 1, 0, 0, 0, 4068, 4066, 1, 0, 0, 0, 4069, 4060, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4071, 1, 0, 0, 0, 4071, 4072, 5, 399, 0, 0, 4072, 643, 1, 0, 0, 0, 4073, 4074, 5, 330, 0, 0, 4074, 4078, 5, 398, 0, 0, 4075, 4076, 5, 430, 0, 0, 4076, 4079, 7, 27, 0, 0, 4077, 4079, 5, 429, 0, 0, 4078, 4075, 1, 0, 0, 0, 4078, 4077, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4081, 5, 399, 0, 0, 4081, 645, 1, 0, 0, 0, 4082, 4085, 3, 642, 321, 0, 4083, 4085, 3, 644, 322, 0, 4084, 4082, 1, 0, 0, 0, 4084, 4083, 1, 0, 0, 0, 4085, 647, 1, 0, 0, 0, 4086, 4088, 3, 658, 329, 0, 4087, 4089, 3, 252, 126, 0, 4088, 4087, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4091, 1, 0, 0, 0, 4090, 4092, 3, 646, 323, 0, 4091, 4090, 1, 0, 0, 0, 4091, 4092, 1, 0, 0, 0, 4092, 4094, 1, 0, 0, 0, 4093, 4095, 3, 650, 325, 0, 4094, 4093, 1, 0, 0, 0, 4094, 4095, 1, 0, 0, 0, 4095, 4100, 1, 0, 0, 0, 4096, 4098, 5, 17, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4101, 3, 926, 463, 0, 4100, 4097, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 649, 1, 0, 0, 0, 4102, 4112, 5, 134, 0, 0, 4103, 4104, 5, 326, 0, 0, 4104, 4105, 5, 17, 0, 0, 4105, 4106, 5, 220, 0, 0, 4106, 4113, 3, 828, 414, 0, 4107, 4108, 5, 134, 0, 0, 4108, 4109, 5, 327, 0, 0, 4109, 4110, 5, 17, 0, 0, 4110, 4111, 5, 220, 0, 0, 4111, 4113, 5, 430, 0, 0, 4112, 4103, 1, 0, 0, 0, 4112, 4107, 1, 0, 0, 0, 4113, 651, 1, 0, 0, 0, 4114, 4116, 3, 658, 329, 0, 4115, 4117, 3, 646, 323, 0, 4116, 4115, 1, 0, 0, 0, 4116, 4117, 1, 0, 0, 0, 4117, 4122, 1, 0, 0, 0, 4118, 4120, 5, 17, 0, 0, 4119, 4118, 1, 0, 0, 0, 4119, 4120, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4123, 3, 926, 463, 0, 4122, 4119, 1, 0, 0, 0, 4122, 4123, 1, 0, 0, 0, 4123, 653, 1, 0, 0, 0, 4124, 4125, 3, 926, 463, 0, 4125, 655, 1, 0, 0, 0, 4126, 4127, 3, 926, 463, 0, 4127, 657, 1, 0, 0, 0, 4128, 4131, 3, 660, 330, 0, 4129, 4131, 3, 664, 332, 0, 4130, 4128, 1, 0, 0, 0, 4130, 4129, 1, 0, 0, 0, 4131, 659, 1, 0, 0, 0, 4132, 4133, 3, 926, 463, 0, 4133, 4134, 5, 394, 0, 0, 4134, 4137, 3, 926, 463, 0, 4135, 4136, 5, 394, 0, 0, 4136, 4138, 3, 926, 463, 0, 4137, 4135, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4141, 1, 0, 0, 0, 4139, 4141, 3, 926, 463, 0, 4140, 4132, 1, 0, 0, 0, 4140, 4139, 1, 0, 0, 0, 4141, 661, 1, 0, 0, 0, 4142, 4143, 3, 926, 463, 0, 4143, 4144, 5, 394, 0, 0, 4144, 4147, 3, 926, 463, 0, 4145, 4146, 5, 394, 0, 0, 4146, 4148, 3, 926, 463, 0, 4147, 4145, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4151, 1, 0, 0, 0, 4149, 4151, 3, 926, 463, 0, 4150, 4142, 1, 0, 0, 0, 4150, 4149, 1, 0, 0, 0, 4151, 663, 1, 0, 0, 0, 4152, 4153, 3, 926, 463, 0, 4153, 4154, 5, 394, 0, 0, 4154, 4156, 1, 0, 0, 0, 4155, 4152, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4158, 3, 926, 463, 0, 4158, 665, 1, 0, 0, 0, 4159, 4160, 3, 926, 463, 0, 4160, 4161, 5, 394, 0, 0, 4161, 4163, 1, 0, 0, 0, 4162, 4159, 1, 0, 0, 0, 4162, 4163, 1, 0, 0, 0, 4163, 4164, 1, 0, 0, 0, 4164, 4165, 3, 926, 463, 0, 4165, 667, 1, 0, 0, 0, 4166, 4167, 5, 398, 0, 0, 4167, 4168, 3, 392, 196, 0, 4168, 4170, 5, 399, 0, 0, 4169, 4171, 5, 17, 0, 0, 4170, 4169, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 3, 926, 463, 0, 4173, 669, 1, 0, 0, 0, 4174, 4176, 3, 768, 384, 0, 4175, 4177, 3, 764, 382, 0, 4176, 4175, 1, 0, 0, 0, 4176, 4177, 1, 0, 0, 0, 4177, 4186, 1, 0, 0, 0, 4178, 4186, 3, 764, 382, 0, 4179, 4181, 3, 770, 385, 0, 4180, 4182, 3, 772, 386, 0, 4181, 4180, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4186, 1, 0, 0, 0, 4183, 4186, 3, 772, 386, 0, 4184, 4186, 3, 766, 383, 0, 4185, 4174, 1, 0, 0, 0, 4185, 4178, 1, 0, 0, 0, 4185, 4179, 1, 0, 0, 0, 4185, 4183, 1, 0, 0, 0, 4185, 4184, 1, 0, 0, 0, 4186, 671, 1, 0, 0, 0, 4187, 4191, 3, 668, 334, 0, 4188, 4191, 3, 648, 324, 0, 4189, 4191, 3, 674, 337, 0, 4190, 4187, 1, 0, 0, 0, 4190, 4188, 1, 0, 0, 0, 4190, 4189, 1, 0, 0, 0, 4191, 673, 1, 0, 0, 0, 4192, 4193, 3, 926, 463, 0, 4193, 4194, 5, 398, 0, 0, 4194, 4195, 5, 223, 0, 0, 4195, 4197, 3, 672, 336, 0, 4196, 4198, 3, 670, 335, 0, 4197, 4196, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4214, 1, 0, 0, 0, 4199, 4200, 5, 431, 0, 0, 4200, 4201, 5, 398, 0, 0, 4201, 4202, 3, 828, 414, 0, 4202, 4211, 5, 399, 0, 0, 4203, 4204, 5, 396, 0, 0, 4204, 4205, 5, 431, 0, 0, 4205, 4206, 5, 398, 0, 0, 4206, 4207, 3, 828, 414, 0, 4207, 4208, 5, 399, 0, 0, 4208, 4210, 1, 0, 0, 0, 4209, 4203, 1, 0, 0, 0, 4210, 4213, 1, 0, 0, 0, 4211, 4209, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4215, 1, 0, 0, 0, 4213, 4211, 1, 0, 0, 0, 4214, 4199, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 4216, 1, 0, 0, 0, 4216, 4218, 5, 399, 0, 0, 4217, 4219, 3, 926, 463, 0, 4218, 4217, 1, 0, 0, 0, 4218, 4219, 1, 0, 0, 0, 4219, 675, 1, 0, 0, 0, 4220, 4221, 5, 383, 0, 0, 4221, 4222, 3, 678, 339, 0, 4222, 677, 1, 0, 0, 0, 4223, 4224, 3, 828, 414, 0, 4224, 679, 1, 0, 0, 0, 4225, 4226, 3, 682, 341, 0, 4226, 681, 1, 0, 0, 0, 4227, 4228, 5, 373, 0, 0, 4228, 4229, 3, 684, 342, 0, 4229, 683, 1, 0, 0, 0, 4230, 4235, 3, 686, 343, 0, 4231, 4232, 5, 396, 0, 0, 4232, 4234, 3, 686, 343, 0, 4233, 4231, 1, 0, 0, 0, 4234, 4237, 1, 0, 0, 0, 4235, 4233, 1, 0, 0, 0, 4235, 4236, 1, 0, 0, 0, 4236, 4247, 1, 0, 0, 0, 4237, 4235, 1, 0, 0, 0, 4238, 4243, 3, 688, 344, 0, 4239, 4240, 5, 396, 0, 0, 4240, 4242, 3, 686, 343, 0, 4241, 4239, 1, 0, 0, 0, 4242, 4245, 1, 0, 0, 0, 4243, 4241, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4247, 1, 0, 0, 0, 4245, 4243, 1, 0, 0, 0, 4246, 4230, 1, 0, 0, 0, 4246, 4238, 1, 0, 0, 0, 4247, 685, 1, 0, 0, 0, 4248, 4249, 3, 746, 373, 0, 4249, 687, 1, 0, 0, 0, 4250, 4251, 5, 398, 0, 0, 4251, 4252, 3, 754, 377, 0, 4252, 4253, 5, 399, 0, 0, 4253, 689, 1, 0, 0, 0, 4254, 4255, 5, 328, 0, 0, 4255, 4256, 5, 398, 0, 0, 4256, 4257, 3, 682, 341, 0, 4257, 4259, 5, 399, 0, 0, 4258, 4260, 5, 17, 0, 0, 4259, 4258, 1, 0, 0, 0, 4259, 4260, 1, 0, 0, 0, 4260, 4261, 1, 0, 0, 0, 4261, 4271, 3, 640, 320, 0, 4262, 4263, 5, 398, 0, 0, 4263, 4268, 3, 926, 463, 0, 4264, 4265, 5, 396, 0, 0, 4265, 4267, 3, 926, 463, 0, 4266, 4264, 1, 0, 0, 0, 4267, 4270, 1, 0, 0, 0, 4268, 4266, 1, 0, 0, 0, 4268, 4269, 1, 0, 0, 0, 4269, 4272, 1, 0, 0, 0, 4270, 4268, 1, 0, 0, 0, 4271, 4262, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4273, 1, 0, 0, 0, 4273, 4274, 5, 399, 0, 0, 4274, 691, 1, 0, 0, 0, 4275, 4277, 5, 298, 0, 0, 4276, 4278, 5, 435, 0, 0, 4277, 4276, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4285, 1, 0, 0, 0, 4279, 4281, 3, 694, 347, 0, 4280, 4279, 1, 0, 0, 0, 4280, 4281, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4286, 3, 696, 348, 0, 4283, 4284, 5, 346, 0, 0, 4284, 4286, 3, 698, 349, 0, 4285, 4280, 1, 0, 0, 0, 4285, 4283, 1, 0, 0, 0, 4286, 4289, 1, 0, 0, 0, 4287, 4289, 3, 702, 351, 0, 4288, 4275, 1, 0, 0, 0, 4288, 4287, 1, 0, 0, 0, 4289, 693, 1, 0, 0, 0, 4290, 4291, 7, 20, 0, 0, 4291, 695, 1, 0, 0, 0, 4292, 4297, 3, 700, 350, 0, 4293, 4294, 5, 396, 0, 0, 4294, 4296, 3, 700, 350, 0, 4295, 4293, 1, 0, 0, 0, 4296, 4299, 1, 0, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 697, 1, 0, 0, 0, 4299, 4297, 1, 0, 0, 0, 4300, 4301, 5, 398, 0, 0, 4301, 4302, 3, 706, 353, 0, 4302, 4303, 5, 399, 0, 0, 4303, 4304, 3, 238, 119, 0, 4304, 4305, 3, 242, 121, 0, 4305, 4306, 5, 369, 0, 0, 4306, 4319, 5, 425, 0, 0, 4307, 4317, 5, 17, 0, 0, 4308, 4311, 5, 398, 0, 0, 4309, 4312, 3, 618, 309, 0, 4310, 4312, 3, 274, 137, 0, 4311, 4309, 1, 0, 0, 0, 4311, 4310, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 4314, 5, 399, 0, 0, 4314, 4318, 1, 0, 0, 0, 4315, 4318, 3, 618, 309, 0, 4316, 4318, 3, 274, 137, 0, 4317, 4308, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4317, 4316, 1, 0, 0, 0, 4318, 4320, 1, 0, 0, 0, 4319, 4307, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4322, 3, 238, 119, 0, 4322, 4323, 3, 240, 120, 0, 4323, 699, 1, 0, 0, 0, 4324, 4348, 3, 612, 306, 0, 4325, 4328, 3, 282, 141, 0, 4326, 4328, 3, 828, 414, 0, 4327, 4325, 1, 0, 0, 0, 4327, 4326, 1, 0, 0, 0, 4328, 4345, 1, 0, 0, 0, 4329, 4331, 5, 17, 0, 0, 4330, 4329, 1, 0, 0, 0, 4330, 4331, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4346, 3, 926, 463, 0, 4333, 4334, 5, 17, 0, 0, 4334, 4335, 5, 398, 0, 0, 4335, 4340, 3, 926, 463, 0, 4336, 4337, 5, 396, 0, 0, 4337, 4339, 3, 926, 463, 0, 4338, 4336, 1, 0, 0, 0, 4339, 4342, 1, 0, 0, 0, 4340, 4338, 1, 0, 0, 0, 4340, 4341, 1, 0, 0, 0, 4341, 4343, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4343, 4344, 5, 399, 0, 0, 4344, 4346, 1, 0, 0, 0, 4345, 4330, 1, 0, 0, 0, 4345, 4333, 1, 0, 0, 0, 4345, 4346, 1, 0, 0, 0, 4346, 4348, 1, 0, 0, 0, 4347, 4324, 1, 0, 0, 0, 4347, 4327, 1, 0, 0, 0, 4348, 701, 1, 0, 0, 0, 4349, 4350, 7, 28, 0, 0, 4350, 4351, 3, 706, 353, 0, 4351, 4352, 3, 238, 119, 0, 4352, 4353, 3, 242, 121, 0, 4353, 4354, 5, 369, 0, 0, 4354, 4367, 5, 425, 0, 0, 4355, 4365, 5, 17, 0, 0, 4356, 4359, 5, 398, 0, 0, 4357, 4360, 3, 618, 309, 0, 4358, 4360, 3, 274, 137, 0, 4359, 4357, 1, 0, 0, 0, 4359, 4358, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 4362, 5, 399, 0, 0, 4362, 4366, 1, 0, 0, 0, 4363, 4366, 3, 618, 309, 0, 4364, 4366, 3, 274, 137, 0, 4365, 4356, 1, 0, 0, 0, 4365, 4363, 1, 0, 0, 0, 4365, 4364, 1, 0, 0, 0, 4366, 4368, 1, 0, 0, 0, 4367, 4355, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4370, 3, 238, 119, 0, 4370, 4371, 3, 240, 120, 0, 4371, 703, 1, 0, 0, 0, 4372, 4375, 3, 612, 306, 0, 4373, 4375, 3, 828, 414, 0, 4374, 4372, 1, 0, 0, 0, 4374, 4373, 1, 0, 0, 0, 4375, 705, 1, 0, 0, 0, 4376, 4381, 3, 704, 352, 0, 4377, 4378, 5, 396, 0, 0, 4378, 4380, 3, 704, 352, 0, 4379, 4377, 1, 0, 0, 0, 4380, 4383, 1, 0, 0, 0, 4381, 4379, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 707, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4384, 4385, 5, 385, 0, 0, 4385, 4390, 3, 710, 355, 0, 4386, 4387, 5, 396, 0, 0, 4387, 4389, 3, 710, 355, 0, 4388, 4386, 1, 0, 0, 0, 4389, 4392, 1, 0, 0, 0, 4390, 4388, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 709, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4393, 4394, 3, 926, 463, 0, 4394, 4395, 5, 17, 0, 0, 4395, 4396, 3, 712, 356, 0, 4396, 711, 1, 0, 0, 0, 4397, 4410, 3, 926, 463, 0, 4398, 4400, 5, 398, 0, 0, 4399, 4401, 3, 926, 463, 0, 4400, 4399, 1, 0, 0, 0, 4400, 4401, 1, 0, 0, 0, 4401, 4403, 1, 0, 0, 0, 4402, 4404, 3, 670, 335, 0, 4403, 4402, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 4406, 1, 0, 0, 0, 4405, 4407, 3, 714, 357, 0, 4406, 4405, 1, 0, 0, 0, 4406, 4407, 1, 0, 0, 0, 4407, 4408, 1, 0, 0, 0, 4408, 4410, 5, 399, 0, 0, 4409, 4397, 1, 0, 0, 0, 4409, 4398, 1, 0, 0, 0, 4410, 713, 1, 0, 0, 0, 4411, 4414, 3, 716, 358, 0, 4412, 4414, 3, 718, 359, 0, 4413, 4411, 1, 0, 0, 0, 4413, 4412, 1, 0, 0, 0, 4414, 715, 1, 0, 0, 0, 4415, 4422, 5, 291, 0, 0, 4416, 4423, 3, 720, 360, 0, 4417, 4418, 5, 25, 0, 0, 4418, 4419, 3, 722, 361, 0, 4419, 4420, 5, 11, 0, 0, 4420, 4421, 3, 722, 361, 0, 4421, 4423, 1, 0, 0, 0, 4422, 4416, 1, 0, 0, 0, 4422, 4417, 1, 0, 0, 0, 4423, 717, 1, 0, 0, 0, 4424, 4431, 5, 259, 0, 0, 4425, 4432, 3, 720, 360, 0, 4426, 4427, 5, 25, 0, 0, 4427, 4428, 3, 722, 361, 0, 4428, 4429, 5, 11, 0, 0, 4429, 4430, 3, 722, 361, 0, 4430, 4432, 1, 0, 0, 0, 4431, 4425, 1, 0, 0, 0, 4431, 4426, 1, 0, 0, 0, 4432, 719, 1, 0, 0, 0, 4433, 4434, 5, 353, 0, 0, 4434, 4440, 5, 246, 0, 0, 4435, 4436, 5, 62, 0, 0, 4436, 4440, 5, 290, 0, 0, 4437, 4438, 5, 430, 0, 0, 4438, 4440, 5, 246, 0, 0, 4439, 4433, 1, 0, 0, 0, 4439, 4435, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4440, 721, 1, 0, 0, 0, 4441, 4442, 7, 29, 0, 0, 4442, 4446, 7, 30, 0, 0, 4443, 4444, 5, 62, 0, 0, 4444, 4446, 5, 290, 0, 0, 4445, 4441, 1, 0, 0, 0, 4445, 4443, 1, 0, 0, 0, 4446, 723, 1, 0, 0, 0, 4447, 4448, 5, 144, 0, 0, 4448, 4449, 5, 32, 0, 0, 4449, 4450, 3, 726, 363, 0, 4450, 725, 1, 0, 0, 0, 4451, 4456, 3, 282, 141, 0, 4452, 4456, 3, 730, 365, 0, 4453, 4456, 3, 732, 366, 0, 4454, 4456, 3, 728, 364, 0, 4455, 4451, 1, 0, 0, 0, 4455, 4452, 1, 0, 0, 0, 4455, 4453, 1, 0, 0, 0, 4455, 4454, 1, 0, 0, 0, 4456, 727, 1, 0, 0, 0, 4457, 4458, 5, 398, 0, 0, 4458, 4459, 5, 399, 0, 0, 4459, 729, 1, 0, 0, 0, 4460, 4463, 5, 289, 0, 0, 4461, 4463, 5, 61, 0, 0, 4462, 4460, 1, 0, 0, 0, 4462, 4461, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4465, 5, 398, 0, 0, 4465, 4470, 3, 828, 414, 0, 4466, 4467, 5, 396, 0, 0, 4467, 4469, 3, 828, 414, 0, 4468, 4466, 1, 0, 0, 0, 4469, 4472, 1, 0, 0, 0, 4470, 4468, 1, 0, 0, 0, 4470, 4471, 1, 0, 0, 0, 4471, 4473, 1, 0, 0, 0, 4472, 4470, 1, 0, 0, 0, 4473, 4474, 5, 399, 0, 0, 4474, 731, 1, 0, 0, 0, 4475, 4480, 3, 748, 374, 0, 4476, 4477, 5, 386, 0, 0, 4477, 4481, 5, 289, 0, 0, 4478, 4479, 5, 386, 0, 0, 4479, 4481, 5, 61, 0, 0, 4480, 4476, 1, 0, 0, 0, 4480, 4478, 1, 0, 0, 0, 4480, 4481, 1, 0, 0, 0, 4481, 4495, 1, 0, 0, 0, 4482, 4483, 5, 145, 0, 0, 4483, 4484, 5, 304, 0, 0, 4484, 4485, 5, 398, 0, 0, 4485, 4490, 3, 734, 367, 0, 4486, 4487, 5, 396, 0, 0, 4487, 4489, 3, 734, 367, 0, 4488, 4486, 1, 0, 0, 0, 4489, 4492, 1, 0, 0, 0, 4490, 4488, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4493, 1, 0, 0, 0, 4492, 4490, 1, 0, 0, 0, 4493, 4494, 5, 399, 0, 0, 4494, 4496, 1, 0, 0, 0, 4495, 4482, 1, 0, 0, 0, 4495, 4496, 1, 0, 0, 0, 4496, 733, 1, 0, 0, 0, 4497, 4500, 3, 736, 368, 0, 4498, 4500, 3, 738, 369, 0, 4499, 4497, 1, 0, 0, 0, 4499, 4498, 1, 0, 0, 0, 4500, 735, 1, 0, 0, 0, 4501, 4503, 5, 398, 0, 0, 4502, 4504, 3, 828, 414, 0, 4503, 4502, 1, 0, 0, 0, 4503, 4504, 1, 0, 0, 0, 4504, 4509, 1, 0, 0, 0, 4505, 4506, 5, 396, 0, 0, 4506, 4508, 3, 828, 414, 0, 4507, 4505, 1, 0, 0, 0, 4508, 4511, 1, 0, 0, 0, 4509, 4507, 1, 0, 0, 0, 4509, 4510, 1, 0, 0, 0, 4510, 4512, 1, 0, 0, 0, 4511, 4509, 1, 0, 0, 0, 4512, 4513, 5, 399, 0, 0, 4513, 737, 1, 0, 0, 0, 4514, 4515, 3, 828, 414, 0, 4515, 739, 1, 0, 0, 0, 4516, 4517, 5, 146, 0, 0, 4517, 4518, 3, 744, 372, 0, 4518, 741, 1, 0, 0, 0, 4519, 4520, 5, 255, 0, 0, 4520, 4521, 3, 828, 414, 0, 4521, 743, 1, 0, 0, 0, 4522, 4523, 3, 828, 414, 0, 4523, 745, 1, 0, 0, 0, 4524, 4525, 5, 398, 0, 0, 4525, 4526, 3, 748, 374, 0, 4526, 4527, 5, 399, 0, 0, 4527, 747, 1, 0, 0, 0, 4528, 4530, 3, 752, 376, 0, 4529, 4531, 3, 750, 375, 0, 4530, 4529, 1, 0, 0, 0, 4530, 4531, 1, 0, 0, 0, 4531, 749, 1, 0, 0, 0, 4532, 4533, 5, 396, 0, 0, 4533, 4535, 3, 752, 376, 0, 4534, 4532, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4534, 1, 0, 0, 0, 4536, 4537, 1, 0, 0, 0, 4537, 751, 1, 0, 0, 0, 4538, 4541, 3, 614, 307, 0, 4539, 4541, 3, 828, 414, 0, 4540, 4538, 1, 0, 0, 0, 4540, 4539, 1, 0, 0, 0, 4541, 753, 1, 0, 0, 0, 4542, 4544, 3, 828, 414, 0, 4543, 4545, 5, 17, 0, 0, 4544, 4543, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 4547, 1, 0, 0, 0, 4546, 4548, 3, 926, 463, 0, 4547, 4546, 1, 0, 0, 0, 4547, 4548, 1, 0, 0, 0, 4548, 4553, 1, 0, 0, 0, 4549, 4550, 5, 396, 0, 0, 4550, 4552, 3, 756, 378, 0, 4551, 4549, 1, 0, 0, 0, 4552, 4555, 1, 0, 0, 0, 4553, 4551, 1, 0, 0, 0, 4553, 4554, 1, 0, 0, 0, 4554, 755, 1, 0, 0, 0, 4555, 4553, 1, 0, 0, 0, 4556, 4558, 3, 828, 414, 0, 4557, 4559, 5, 17, 0, 0, 4558, 4557, 1, 0, 0, 0, 4558, 4559, 1, 0, 0, 0, 4559, 4561, 1, 0, 0, 0, 4560, 4562, 3, 926, 463, 0, 4561, 4560, 1, 0, 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 757, 1, 0, 0, 0, 4563, 4566, 3, 746, 373, 0, 4564, 4566, 3, 748, 374, 0, 4565, 4563, 1, 0, 0, 0, 4565, 4564, 1, 0, 0, 0, 4566, 759, 1, 0, 0, 0, 4567, 4568, 5, 398, 0, 0, 4568, 4573, 3, 340, 170, 0, 4569, 4570, 5, 396, 0, 0, 4570, 4572, 3, 340, 170, 0, 4571, 4569, 1, 0, 0, 0, 4572, 4575, 1, 0, 0, 0, 4573, 4571, 1, 0, 0, 0, 4573, 4574, 1, 0, 0, 0, 4574, 4576, 1, 0, 0, 0, 4575, 4573, 1, 0, 0, 0, 4576, 4577, 5, 399, 0, 0, 4577, 761, 1, 0, 0, 0, 4578, 4583, 3, 340, 170, 0, 4579, 4580, 5, 396, 0, 0, 4580, 4582, 3, 340, 170, 0, 4581, 4579, 1, 0, 0, 0, 4582, 4585, 1, 0, 0, 0, 4583, 4581, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 763, 1, 0, 0, 0, 4585, 4583, 1, 0, 0, 0, 4586, 4587, 5, 228, 0, 0, 4587, 4588, 5, 32, 0, 0, 4588, 4593, 3, 340, 170, 0, 4589, 4590, 5, 396, 0, 0, 4590, 4592, 3, 340, 170, 0, 4591, 4589, 1, 0, 0, 0, 4592, 4595, 1, 0, 0, 0, 4593, 4591, 1, 0, 0, 0, 4593, 4594, 1, 0, 0, 0, 4594, 765, 1, 0, 0, 0, 4595, 4593, 1, 0, 0, 0, 4596, 4597, 5, 41, 0, 0, 4597, 4598, 5, 32, 0, 0, 4598, 4599, 3, 758, 379, 0, 4599, 767, 1, 0, 0, 0, 4600, 4601, 5, 236, 0, 0, 4601, 4602, 5, 32, 0, 0, 4602, 4603, 3, 758, 379, 0, 4603, 769, 1, 0, 0, 0, 4604, 4605, 5, 97, 0, 0, 4605, 4606, 5, 32, 0, 0, 4606, 4607, 3, 758, 379, 0, 4607, 771, 1, 0, 0, 0, 4608, 4609, 5, 313, 0, 0, 4609, 4612, 5, 32, 0, 0, 4610, 4613, 3, 760, 380, 0, 4611, 4613, 3, 762, 381, 0, 4612, 4610, 1, 0, 0, 0, 4612, 4611, 1, 0, 0, 0, 4613, 773, 1, 0, 0, 0, 4614, 4615, 5, 348, 0, 0, 4615, 4619, 5, 398, 0, 0, 4616, 4620, 5, 179, 0, 0, 4617, 4620, 5, 342, 0, 0, 4618, 4620, 5, 29, 0, 0, 4619, 4616, 1, 0, 0, 0, 4619, 4617, 1, 0, 0, 0, 4619, 4618, 1, 0, 0, 0, 4619, 4620, 1, 0, 0, 0, 4620, 4622, 1, 0, 0, 0, 4621, 4623, 3, 704, 352, 0, 4622, 4621, 1, 0, 0, 0, 4622, 4623, 1, 0, 0, 0, 4623, 4624, 1, 0, 0, 0, 4624, 4625, 5, 139, 0, 0, 4625, 4626, 3, 704, 352, 0, 4626, 4627, 5, 399, 0, 0, 4627, 775, 1, 0, 0, 0, 4628, 4669, 3, 774, 387, 0, 4629, 4630, 3, 784, 392, 0, 4630, 4645, 5, 398, 0, 0, 4631, 4646, 5, 414, 0, 0, 4632, 4634, 3, 694, 347, 0, 4633, 4632, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4643, 1, 0, 0, 0, 4635, 4640, 3, 704, 352, 0, 4636, 4637, 5, 396, 0, 0, 4637, 4639, 3, 704, 352, 0, 4638, 4636, 1, 0, 0, 0, 4639, 4642, 1, 0, 0, 0, 4640, 4638, 1, 0, 0, 0, 4640, 4641, 1, 0, 0, 0, 4641, 4644, 1, 0, 0, 0, 4642, 4640, 1, 0, 0, 0, 4643, 4635, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4646, 1, 0, 0, 0, 4645, 4631, 1, 0, 0, 0, 4645, 4633, 1, 0, 0, 0, 4646, 4666, 1, 0, 0, 0, 4647, 4648, 5, 399, 0, 0, 4648, 4649, 5, 387, 0, 0, 4649, 4650, 5, 144, 0, 0, 4650, 4651, 5, 398, 0, 0, 4651, 4652, 3, 764, 382, 0, 4652, 4653, 5, 399, 0, 0, 4653, 4667, 1, 0, 0, 0, 4654, 4656, 5, 399, 0, 0, 4655, 4657, 3, 778, 389, 0, 4656, 4655, 1, 0, 0, 0, 4656, 4657, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 4659, 5, 233, 0, 0, 4659, 4667, 3, 712, 356, 0, 4660, 4661, 3, 778, 389, 0, 4661, 4662, 5, 399, 0, 0, 4662, 4663, 5, 233, 0, 0, 4663, 4664, 3, 712, 356, 0, 4664, 4667, 1, 0, 0, 0, 4665, 4667, 5, 399, 0, 0, 4666, 4647, 1, 0, 0, 0, 4666, 4654, 1, 0, 0, 0, 4666, 4660, 1, 0, 0, 0, 4666, 4665, 1, 0, 0, 0, 4667, 4669, 1, 0, 0, 0, 4668, 4628, 1, 0, 0, 0, 4668, 4629, 1, 0, 0, 0, 4669, 777, 1, 0, 0, 0, 4670, 4671, 5, 280, 0, 0, 4671, 4675, 5, 219, 0, 0, 4672, 4673, 5, 152, 0, 0, 4673, 4675, 5, 219, 0, 0, 4674, 4670, 1, 0, 0, 0, 4674, 4672, 1, 0, 0, 0, 4675, 779, 1, 0, 0, 0, 4676, 4677, 3, 928, 464, 0, 4677, 781, 1, 0, 0, 0, 4678, 4681, 3, 786, 393, 0, 4679, 4681, 5, 425, 0, 0, 4680, 4678, 1, 0, 0, 0, 4680, 4679, 1, 0, 0, 0, 4681, 783, 1, 0, 0, 0, 4682, 4685, 3, 786, 393, 0, 4683, 4685, 3, 788, 394, 0, 4684, 4682, 1, 0, 0, 0, 4684, 4683, 1, 0, 0, 0, 4685, 785, 1, 0, 0, 0, 4686, 4687, 3, 928, 464, 0, 4687, 787, 1, 0, 0, 0, 4688, 4691, 3, 934, 467, 0, 4689, 4691, 3, 924, 462, 0, 4690, 4688, 1, 0, 0, 0, 4690, 4689, 1, 0, 0, 0, 4691, 789, 1, 0, 0, 0, 4692, 4693, 5, 36, 0, 0, 4693, 4694, 5, 398, 0, 0, 4694, 4695, 3, 828, 414, 0, 4695, 4696, 5, 17, 0, 0, 4696, 4699, 3, 380, 190, 0, 4697, 4698, 5, 137, 0, 0, 4698, 4700, 5, 425, 0, 0, 4699, 4697, 1, 0, 0, 0, 4699, 4700, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4702, 5, 399, 0, 0, 4702, 791, 1, 0, 0, 0, 4703, 4704, 5, 35, 0, 0, 4704, 4710, 3, 828, 414, 0, 4705, 4706, 5, 382, 0, 0, 4706, 4707, 3, 828, 414, 0, 4707, 4708, 5, 334, 0, 0, 4708, 4709, 3, 828, 414, 0, 4709, 4711, 1, 0, 0, 0, 4710, 4705, 1, 0, 0, 0, 4711, 4712, 1, 0, 0, 0, 4712, 4710, 1, 0, 0, 0, 4712, 4713, 1, 0, 0, 0, 4713, 4716, 1, 0, 0, 0, 4714, 4715, 5, 105, 0, 0, 4715, 4717, 3, 828, 414, 0, 4716, 4714, 1, 0, 0, 0, 4716, 4717, 1, 0, 0, 0, 4717, 4718, 1, 0, 0, 0, 4718, 4719, 5, 108, 0, 0, 4719, 793, 1, 0, 0, 0, 4720, 4726, 5, 35, 0, 0, 4721, 4722, 5, 382, 0, 0, 4722, 4723, 3, 828, 414, 0, 4723, 4724, 5, 334, 0, 0, 4724, 4725, 3, 828, 414, 0, 4725, 4727, 1, 0, 0, 0, 4726, 4721, 1, 0, 0, 0, 4727, 4728, 1, 0, 0, 0, 4728, 4726, 1, 0, 0, 0, 4728, 4729, 1, 0, 0, 0, 4729, 4732, 1, 0, 0, 0, 4730, 4731, 5, 105, 0, 0, 4731, 4733, 3, 828, 414, 0, 4732, 4730, 1, 0, 0, 0, 4732, 4733, 1, 0, 0, 0, 4733, 4734, 1, 0, 0, 0, 4734, 4735, 5, 108, 0, 0, 4735, 795, 1, 0, 0, 0, 4736, 4737, 5, 132, 0, 0, 4737, 4738, 5, 398, 0, 0, 4738, 4741, 3, 828, 414, 0, 4739, 4740, 5, 340, 0, 0, 4740, 4742, 3, 798, 399, 0, 4741, 4739, 1, 0, 0, 0, 4741, 4742, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4744, 5, 399, 0, 0, 4744, 797, 1, 0, 0, 0, 4745, 4754, 3, 976, 488, 0, 4746, 4754, 5, 256, 0, 0, 4747, 4754, 3, 978, 489, 0, 4748, 4754, 3, 980, 490, 0, 4749, 4754, 3, 982, 491, 0, 4750, 4754, 3, 984, 492, 0, 4751, 4754, 3, 986, 493, 0, 4752, 4754, 3, 988, 494, 0, 4753, 4745, 1, 0, 0, 0, 4753, 4746, 1, 0, 0, 0, 4753, 4747, 1, 0, 0, 0, 4753, 4748, 1, 0, 0, 0, 4753, 4749, 1, 0, 0, 0, 4753, 4750, 1, 0, 0, 0, 4753, 4751, 1, 0, 0, 0, 4753, 4752, 1, 0, 0, 0, 4754, 799, 1, 0, 0, 0, 4755, 4756, 5, 124, 0, 0, 4756, 4757, 5, 398, 0, 0, 4757, 4758, 3, 802, 401, 0, 4758, 4759, 5, 139, 0, 0, 4759, 4760, 3, 828, 414, 0, 4760, 4761, 5, 399, 0, 0, 4761, 801, 1, 0, 0, 0, 4762, 4771, 3, 976, 488, 0, 4763, 4771, 5, 256, 0, 0, 4764, 4771, 3, 978, 489, 0, 4765, 4771, 3, 980, 490, 0, 4766, 4771, 3, 982, 491, 0, 4767, 4771, 3, 984, 492, 0, 4768, 4771, 3, 986, 493, 0, 4769, 4771, 3, 988, 494, 0, 4770, 4762, 1, 0, 0, 0, 4770, 4763, 1, 0, 0, 0, 4770, 4764, 1, 0, 0, 0, 4770, 4765, 1, 0, 0, 0, 4770, 4766, 1, 0, 0, 0, 4770, 4767, 1, 0, 0, 0, 4770, 4768, 1, 0, 0, 0, 4770, 4769, 1, 0, 0, 0, 4771, 803, 1, 0, 0, 0, 4772, 4786, 3, 822, 411, 0, 4773, 4786, 5, 430, 0, 0, 4774, 4786, 3, 814, 407, 0, 4775, 4786, 3, 816, 408, 0, 4776, 4786, 3, 818, 409, 0, 4777, 4786, 5, 425, 0, 0, 4778, 4786, 3, 810, 405, 0, 4779, 4786, 5, 427, 0, 0, 4780, 4786, 5, 428, 0, 0, 4781, 4786, 3, 812, 406, 0, 4782, 4786, 3, 906, 453, 0, 4783, 4786, 5, 218, 0, 0, 4784, 4786, 3, 806, 403, 0, 4785, 4772, 1, 0, 0, 0, 4785, 4773, 1, 0, 0, 0, 4785, 4774, 1, 0, 0, 0, 4785, 4775, 1, 0, 0, 0, 4785, 4776, 1, 0, 0, 0, 4785, 4777, 1, 0, 0, 0, 4785, 4778, 1, 0, 0, 0, 4785, 4779, 1, 0, 0, 0, 4785, 4780, 1, 0, 0, 0, 4785, 4781, 1, 0, 0, 0, 4785, 4782, 1, 0, 0, 0, 4785, 4783, 1, 0, 0, 0, 4785, 4784, 1, 0, 0, 0, 4786, 805, 1, 0, 0, 0, 4787, 4788, 3, 808, 404, 0, 4788, 807, 1, 0, 0, 0, 4789, 4790, 5, 423, 0, 0, 4790, 809, 1, 0, 0, 0, 4791, 4793, 5, 425, 0, 0, 4792, 4794, 5, 425, 0, 0, 4793, 4792, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4793, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 811, 1, 0, 0, 0, 4797, 4798, 5, 432, 0, 0, 4798, 4799, 5, 426, 0, 0, 4799, 813, 1, 0, 0, 0, 4800, 4801, 5, 71, 0, 0, 4801, 4804, 5, 425, 0, 0, 4802, 4804, 5, 63, 0, 0, 4803, 4800, 1, 0, 0, 0, 4803, 4802, 1, 0, 0, 0, 4804, 815, 1, 0, 0, 0, 4805, 4806, 5, 336, 0, 0, 4806, 4809, 5, 425, 0, 0, 4807, 4809, 5, 64, 0, 0, 4808, 4805, 1, 0, 0, 0, 4808, 4807, 1, 0, 0, 0, 4809, 817, 1, 0, 0, 0, 4810, 4811, 5, 337, 0, 0, 4811, 4812, 5, 425, 0, 0, 4812, 819, 1, 0, 0, 0, 4813, 4814, 7, 24, 0, 0, 4814, 821, 1, 0, 0, 0, 4815, 4816, 3, 820, 410, 0, 4816, 4817, 3, 826, 413, 0, 4817, 823, 1, 0, 0, 0, 4818, 4819, 5, 398, 0, 0, 4819, 4820, 3, 820, 410, 0, 4820, 4821, 5, 399, 0, 0, 4821, 4822, 3, 826, 413, 0, 4822, 4834, 1, 0, 0, 0, 4823, 4829, 5, 165, 0, 0, 4824, 4830, 3, 820, 410, 0, 4825, 4826, 5, 398, 0, 0, 4826, 4827, 3, 828, 414, 0, 4827, 4828, 5, 399, 0, 0, 4828, 4830, 1, 0, 0, 0, 4829, 4824, 1, 0, 0, 0, 4829, 4825, 1, 0, 0, 0, 4830, 4831, 1, 0, 0, 0, 4831, 4832, 3, 826, 413, 0, 4832, 4834, 1, 0, 0, 0, 4833, 4818, 1, 0, 0, 0, 4833, 4823, 1, 0, 0, 0, 4834, 825, 1, 0, 0, 0, 4835, 4836, 3, 976, 488, 0, 4836, 4837, 5, 340, 0, 0, 4837, 4838, 3, 978, 489, 0, 4838, 4850, 1, 0, 0, 0, 4839, 4840, 3, 982, 491, 0, 4840, 4841, 5, 340, 0, 0, 4841, 4842, 3, 988, 494, 0, 4842, 4850, 1, 0, 0, 0, 4843, 4850, 3, 976, 488, 0, 4844, 4850, 3, 978, 489, 0, 4845, 4850, 3, 982, 491, 0, 4846, 4850, 3, 984, 492, 0, 4847, 4850, 3, 986, 493, 0, 4848, 4850, 3, 988, 494, 0, 4849, 4835, 1, 0, 0, 0, 4849, 4839, 1, 0, 0, 0, 4849, 4843, 1, 0, 0, 0, 4849, 4844, 1, 0, 0, 0, 4849, 4845, 1, 0, 0, 0, 4849, 4846, 1, 0, 0, 0, 4849, 4847, 1, 0, 0, 0, 4849, 4848, 1, 0, 0, 0, 4850, 827, 1, 0, 0, 0, 4851, 4852, 3, 904, 452, 0, 4852, 829, 1, 0, 0, 0, 4853, 4865, 3, 804, 402, 0, 4854, 4865, 3, 824, 412, 0, 4855, 4865, 3, 790, 395, 0, 4856, 4865, 3, 800, 400, 0, 4857, 4865, 3, 796, 398, 0, 4858, 4865, 3, 792, 396, 0, 4859, 4865, 3, 794, 397, 0, 4860, 4865, 3, 866, 433, 0, 4861, 4865, 3, 776, 388, 0, 4862, 4865, 3, 746, 373, 0, 4863, 4865, 3, 926, 463, 0, 4864, 4853, 1, 0, 0, 0, 4864, 4854, 1, 0, 0, 0, 4864, 4855, 1, 0, 0, 0, 4864, 4856, 1, 0, 0, 0, 4864, 4857, 1, 0, 0, 0, 4864, 4858, 1, 0, 0, 0, 4864, 4859, 1, 0, 0, 0, 4864, 4860, 1, 0, 0, 0, 4864, 4861, 1, 0, 0, 0, 4864, 4862, 1, 0, 0, 0, 4864, 4863, 1, 0, 0, 0, 4865, 831, 1, 0, 0, 0, 4866, 4875, 3, 830, 415, 0, 4867, 4868, 5, 400, 0, 0, 4868, 4869, 3, 828, 414, 0, 4869, 4870, 5, 401, 0, 0, 4870, 4874, 1, 0, 0, 0, 4871, 4872, 5, 394, 0, 0, 4872, 4874, 3, 926, 463, 0, 4873, 4867, 1, 0, 0, 0, 4873, 4871, 1, 0, 0, 0, 4874, 4877, 1, 0, 0, 0, 4875, 4873, 1, 0, 0, 0, 4875, 4876, 1, 0, 0, 0, 4876, 833, 1, 0, 0, 0, 4877, 4875, 1, 0, 0, 0, 4878, 4879, 7, 31, 0, 0, 4879, 835, 1, 0, 0, 0, 4880, 4882, 3, 834, 417, 0, 4881, 4880, 1, 0, 0, 0, 4882, 4885, 1, 0, 0, 0, 4883, 4881, 1, 0, 0, 0, 4883, 4884, 1, 0, 0, 0, 4884, 4886, 1, 0, 0, 0, 4885, 4883, 1, 0, 0, 0, 4886, 4887, 3, 832, 416, 0, 4887, 837, 1, 0, 0, 0, 4888, 4889, 5, 422, 0, 0, 4889, 839, 1, 0, 0, 0, 4890, 4896, 3, 836, 418, 0, 4891, 4892, 3, 838, 419, 0, 4892, 4893, 3, 836, 418, 0, 4893, 4895, 1, 0, 0, 0, 4894, 4891, 1, 0, 0, 0, 4895, 4898, 1, 0, 0, 0, 4896, 4894, 1, 0, 0, 0, 4896, 4897, 1, 0, 0, 0, 4897, 841, 1, 0, 0, 0, 4898, 4896, 1, 0, 0, 0, 4899, 4900, 7, 32, 0, 0, 4900, 843, 1, 0, 0, 0, 4901, 4907, 3, 840, 420, 0, 4902, 4903, 3, 842, 421, 0, 4903, 4904, 3, 840, 420, 0, 4904, 4906, 1, 0, 0, 0, 4905, 4902, 1, 0, 0, 0, 4906, 4909, 1, 0, 0, 0, 4907, 4905, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 845, 1, 0, 0, 0, 4909, 4907, 1, 0, 0, 0, 4910, 4911, 7, 33, 0, 0, 4911, 847, 1, 0, 0, 0, 4912, 4918, 3, 844, 422, 0, 4913, 4914, 3, 846, 423, 0, 4914, 4915, 3, 844, 422, 0, 4915, 4917, 1, 0, 0, 0, 4916, 4913, 1, 0, 0, 0, 4917, 4920, 1, 0, 0, 0, 4918, 4916, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 849, 1, 0, 0, 0, 4920, 4918, 1, 0, 0, 0, 4921, 4922, 5, 421, 0, 0, 4922, 851, 1, 0, 0, 0, 4923, 4929, 3, 848, 424, 0, 4924, 4925, 3, 850, 425, 0, 4925, 4926, 3, 848, 424, 0, 4926, 4928, 1, 0, 0, 0, 4927, 4924, 1, 0, 0, 0, 4928, 4931, 1, 0, 0, 0, 4929, 4927, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 853, 1, 0, 0, 0, 4931, 4929, 1, 0, 0, 0, 4932, 4933, 5, 418, 0, 0, 4933, 855, 1, 0, 0, 0, 4934, 4940, 3, 852, 426, 0, 4935, 4936, 3, 854, 427, 0, 4936, 4937, 3, 852, 426, 0, 4937, 4939, 1, 0, 0, 0, 4938, 4935, 1, 0, 0, 0, 4939, 4942, 1, 0, 0, 0, 4940, 4938, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 857, 1, 0, 0, 0, 4942, 4940, 1, 0, 0, 0, 4943, 4944, 5, 420, 0, 0, 4944, 859, 1, 0, 0, 0, 4945, 4951, 3, 856, 428, 0, 4946, 4947, 3, 858, 429, 0, 4947, 4948, 3, 856, 428, 0, 4948, 4950, 1, 0, 0, 0, 4949, 4946, 1, 0, 0, 0, 4950, 4953, 1, 0, 0, 0, 4951, 4949, 1, 0, 0, 0, 4951, 4952, 1, 0, 0, 0, 4952, 861, 1, 0, 0, 0, 4953, 4951, 1, 0, 0, 0, 4954, 4955, 7, 34, 0, 0, 4955, 863, 1, 0, 0, 0, 4956, 4962, 3, 862, 431, 0, 4957, 4962, 5, 407, 0, 0, 4958, 4962, 5, 408, 0, 0, 4959, 4962, 5, 409, 0, 0, 4960, 4962, 5, 410, 0, 0, 4961, 4956, 1, 0, 0, 0, 4961, 4957, 1, 0, 0, 0, 4961, 4958, 1, 0, 0, 0, 4961, 4959, 1, 0, 0, 0, 4961, 4960, 1, 0, 0, 0, 4962, 865, 1, 0, 0, 0, 4963, 4964, 5, 398, 0, 0, 4964, 4965, 3, 408, 204, 0, 4965, 4966, 5, 399, 0, 0, 4966, 867, 1, 0, 0, 0, 4967, 4971, 3, 870, 435, 0, 4968, 4969, 5, 117, 0, 0, 4969, 4971, 3, 866, 433, 0, 4970, 4967, 1, 0, 0, 0, 4970, 4968, 1, 0, 0, 0, 4971, 869, 1, 0, 0, 0, 4972, 4974, 3, 860, 430, 0, 4973, 4975, 3, 872, 436, 0, 4974, 4973, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 871, 1, 0, 0, 0, 4976, 4977, 3, 864, 432, 0, 4977, 4978, 3, 860, 430, 0, 4978, 4983, 1, 0, 0, 0, 4979, 4983, 3, 874, 437, 0, 4980, 4981, 5, 215, 0, 0, 4981, 4983, 3, 882, 441, 0, 4982, 4976, 1, 0, 0, 0, 4982, 4979, 1, 0, 0, 0, 4982, 4980, 1, 0, 0, 0, 4983, 873, 1, 0, 0, 0, 4984, 4985, 5, 154, 0, 0, 4985, 4996, 3, 880, 440, 0, 4986, 4987, 5, 25, 0, 0, 4987, 4988, 3, 860, 430, 0, 4988, 4989, 5, 11, 0, 0, 4989, 4990, 3, 860, 430, 0, 4990, 4996, 1, 0, 0, 0, 4991, 4992, 5, 183, 0, 0, 4992, 4993, 7, 35, 0, 0, 4993, 4996, 3, 746, 373, 0, 4994, 4996, 3, 876, 438, 0, 4995, 4984, 1, 0, 0, 0, 4995, 4986, 1, 0, 0, 0, 4995, 4991, 1, 0, 0, 0, 4995, 4994, 1, 0, 0, 0, 4996, 875, 1, 0, 0, 0, 4997, 4998, 3, 922, 461, 0, 4998, 4999, 3, 878, 439, 0, 4999, 5000, 3, 866, 433, 0, 5000, 877, 1, 0, 0, 0, 5001, 5002, 7, 36, 0, 0, 5002, 879, 1, 0, 0, 0, 5003, 5006, 3, 866, 433, 0, 5004, 5006, 3, 746, 373, 0, 5005, 5003, 1, 0, 0, 0, 5005, 5004, 1, 0, 0, 0, 5006, 881, 1, 0, 0, 0, 5007, 5008, 3, 862, 431, 0, 5008, 5009, 3, 860, 430, 0, 5009, 5012, 1, 0, 0, 0, 5010, 5012, 3, 874, 437, 0, 5011, 5007, 1, 0, 0, 0, 5011, 5010, 1, 0, 0, 0, 5012, 883, 1, 0, 0, 0, 5013, 5014, 5, 167, 0, 0, 5014, 5015, 5, 96, 0, 0, 5015, 5016, 5, 139, 0, 0, 5016, 885, 1, 0, 0, 0, 5017, 5025, 5, 404, 0, 0, 5018, 5025, 5, 405, 0, 0, 5019, 5025, 5, 406, 0, 0, 5020, 5021, 5, 167, 0, 0, 5021, 5022, 5, 215, 0, 0, 5022, 5023, 5, 96, 0, 0, 5023, 5025, 5, 139, 0, 0, 5024, 5017, 1, 0, 0, 0, 5024, 5018, 1, 0, 0, 0, 5024, 5019, 1, 0, 0, 0, 5024, 5020, 1, 0, 0, 0, 5025, 887, 1, 0, 0, 0, 5026, 5035, 3, 868, 434, 0, 5027, 5028, 3, 886, 443, 0, 5028, 5029, 3, 868, 434, 0, 5029, 5034, 1, 0, 0, 0, 5030, 5031, 3, 884, 442, 0, 5031, 5032, 3, 868, 434, 0, 5032, 5034, 1, 0, 0, 0, 5033, 5027, 1, 0, 0, 0, 5033, 5030, 1, 0, 0, 0, 5034, 5037, 1, 0, 0, 0, 5035, 5033, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 889, 1, 0, 0, 0, 5037, 5035, 1, 0, 0, 0, 5038, 5051, 5, 218, 0, 0, 5039, 5051, 5, 349, 0, 0, 5040, 5051, 5, 125, 0, 0, 5041, 5051, 5, 359, 0, 0, 5042, 5043, 5, 215, 0, 0, 5043, 5051, 5, 218, 0, 0, 5044, 5045, 5, 215, 0, 0, 5045, 5051, 5, 349, 0, 0, 5046, 5047, 5, 215, 0, 0, 5047, 5051, 5, 125, 0, 0, 5048, 5049, 5, 215, 0, 0, 5049, 5051, 5, 359, 0, 0, 5050, 5038, 1, 0, 0, 0, 5050, 5039, 1, 0, 0, 0, 5050, 5040, 1, 0, 0, 0, 5050, 5041, 1, 0, 0, 0, 5050, 5042, 1, 0, 0, 0, 5050, 5044, 1, 0, 0, 0, 5050, 5046, 1, 0, 0, 0, 5050, 5048, 1, 0, 0, 0, 5051, 891, 1, 0, 0, 0, 5052, 5055, 3, 888, 444, 0, 5053, 5054, 5, 167, 0, 0, 5054, 5056, 3, 890, 445, 0, 5055, 5053, 1, 0, 0, 0, 5055, 5056, 1, 0, 0, 0, 5056, 893, 1, 0, 0, 0, 5057, 5058, 5, 215, 0, 0, 5058, 895, 1, 0, 0, 0, 5059, 5061, 3, 894, 447, 0, 5060, 5059, 1, 0, 0, 0, 5061, 5064, 1, 0, 0, 0, 5062, 5060, 1, 0, 0, 0, 5062, 5063, 1, 0, 0, 0, 5063, 5065, 1, 0, 0, 0, 5064, 5062, 1, 0, 0, 0, 5065, 5066, 3, 892, 446, 0, 5066, 897, 1, 0, 0, 0, 5067, 5068, 5, 11, 0, 0, 5068, 899, 1, 0, 0, 0, 5069, 5075, 3, 896, 448, 0, 5070, 5071, 3, 898, 449, 0, 5071, 5072, 3, 896, 448, 0, 5072, 5074, 1, 0, 0, 0, 5073, 5070, 1, 0, 0, 0, 5074, 5077, 1, 0, 0, 0, 5075, 5073, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 901, 1, 0, 0, 0, 5077, 5075, 1, 0, 0, 0, 5078, 5079, 5, 227, 0, 0, 5079, 903, 1, 0, 0, 0, 5080, 5086, 3, 900, 450, 0, 5081, 5082, 3, 902, 451, 0, 5082, 5083, 3, 900, 450, 0, 5083, 5085, 1, 0, 0, 0, 5084, 5081, 1, 0, 0, 0, 5085, 5088, 1, 0, 0, 0, 5086, 5084, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 905, 1, 0, 0, 0, 5088, 5086, 1, 0, 0, 0, 5089, 5090, 7, 37, 0, 0, 5090, 907, 1, 0, 0, 0, 5091, 5092, 7, 37, 0, 0, 5092, 909, 1, 0, 0, 0, 5093, 5095, 3, 660, 330, 0, 5094, 5096, 3, 912, 456, 0, 5095, 5094, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 911, 1, 0, 0, 0, 5097, 5098, 5, 236, 0, 0, 5098, 5099, 5, 398, 0, 0, 5099, 5104, 3, 914, 457, 0, 5100, 5101, 5, 396, 0, 0, 5101, 5103, 3, 914, 457, 0, 5102, 5100, 1, 0, 0, 0, 5103, 5106, 1, 0, 0, 0, 5104, 5102, 1, 0, 0, 0, 5104, 5105, 1, 0, 0, 0, 5105, 5107, 1, 0, 0, 0, 5106, 5104, 1, 0, 0, 0, 5107, 5108, 5, 399, 0, 0, 5108, 913, 1, 0, 0, 0, 5109, 5112, 3, 926, 463, 0, 5110, 5111, 5, 404, 0, 0, 5111, 5113, 3, 804, 402, 0, 5112, 5110, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 915, 1, 0, 0, 0, 5114, 5115, 5, 398, 0, 0, 5115, 5120, 3, 918, 459, 0, 5116, 5117, 5, 396, 0, 0, 5117, 5119, 3, 918, 459, 0, 5118, 5116, 1, 0, 0, 0, 5119, 5122, 1, 0, 0, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5123, 1, 0, 0, 0, 5122, 5120, 1, 0, 0, 0, 5123, 5124, 5, 399, 0, 0, 5124, 917, 1, 0, 0, 0, 5125, 5126, 3, 926, 463, 0, 5126, 5127, 3, 920, 460, 0, 5127, 5128, 3, 804, 402, 0, 5128, 919, 1, 0, 0, 0, 5129, 5132, 5, 183, 0, 0, 5130, 5132, 3, 922, 461, 0, 5131, 5129, 1, 0, 0, 0, 5131, 5130, 1, 0, 0, 0, 5132, 921, 1, 0, 0, 0, 5133, 5134, 7, 38, 0, 0, 5134, 923, 1, 0, 0, 0, 5135, 5136, 7, 39, 0, 0, 5136, 925, 1, 0, 0, 0, 5137, 5140, 5, 431, 0, 0, 5138, 5140, 3, 932, 466, 0, 5139, 5137, 1, 0, 0, 0, 5139, 5138, 1, 0, 0, 0, 5140, 927, 1, 0, 0, 0, 5141, 5144, 3, 926, 463, 0, 5142, 5143, 5, 394, 0, 0, 5143, 5145, 3, 926, 463, 0, 5144, 5142, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, 929, 1, 0, 0, 0, 5146, 5147, 3, 926, 463, 0, 5147, 931, 1, 0, 0, 0, 5148, 5149, 7, 40, 0, 0, 5149, 933, 1, 0, 0, 0, 5150, 5151, 7, 41, 0, 0, 5151, 935, 1, 0, 0, 0, 5152, 5153, 3, 938, 469, 0, 5153, 5154, 5, 0, 0, 1, 5154, 937, 1, 0, 0, 0, 5155, 5160, 3, 940, 470, 0, 5156, 5157, 5, 396, 0, 0, 5157, 5159, 3, 940, 470, 0, 5158, 5156, 1, 0, 0, 0, 5159, 5162, 1, 0, 0, 0, 5160, 5158, 1, 0, 0, 0, 5160, 5161, 1, 0, 0, 0, 5161, 939, 1, 0, 0, 0, 5162, 5160, 1, 0, 0, 0, 5163, 5168, 3, 942, 471, 0, 5164, 5165, 5, 398, 0, 0, 5165, 5166, 3, 944, 472, 0, 5166, 5167, 5, 399, 0, 0, 5167, 5169, 1, 0, 0, 0, 5168, 5164, 1, 0, 0, 0, 5168, 5169, 1, 0, 0, 0, 5169, 941, 1, 0, 0, 0, 5170, 5171, 7, 42, 0, 0, 5171, 943, 1, 0, 0, 0, 5172, 5177, 3, 946, 473, 0, 5173, 5174, 5, 396, 0, 0, 5174, 5176, 3, 946, 473, 0, 5175, 5173, 1, 0, 0, 0, 5176, 5179, 1, 0, 0, 0, 5177, 5175, 1, 0, 0, 0, 5177, 5178, 1, 0, 0, 0, 5178, 945, 1, 0, 0, 0, 5179, 5177, 1, 0, 0, 0, 5180, 5181, 7, 43, 0, 0, 5181, 947, 1, 0, 0, 0, 5182, 5183, 5, 248, 0, 0, 5183, 5184, 3, 926, 463, 0, 5184, 5185, 5, 139, 0, 0, 5185, 5186, 3, 392, 196, 0, 5186, 949, 1, 0, 0, 0, 5187, 5188, 5, 115, 0, 0, 5188, 5189, 3, 926, 463, 0, 5189, 5190, 5, 369, 0, 0, 5190, 5191, 3, 952, 476, 0, 5191, 951, 1, 0, 0, 0, 5192, 5197, 3, 804, 402, 0, 5193, 5194, 5, 396, 0, 0, 5194, 5196, 3, 804, 402, 0, 5195, 5193, 1, 0, 0, 0, 5196, 5199, 1, 0, 0, 0, 5197, 5195, 1, 0, 0, 0, 5197, 5198, 1, 0, 0, 0, 5198, 953, 1, 0, 0, 0, 5199, 5197, 1, 0, 0, 0, 5200, 5215, 3, 964, 482, 0, 5201, 5215, 3, 992, 496, 0, 5202, 5215, 3, 998, 499, 0, 5203, 5215, 3, 994, 497, 0, 5204, 5215, 3, 996, 498, 0, 5205, 5215, 3, 1020, 510, 0, 5206, 5215, 3, 1022, 511, 0, 5207, 5215, 3, 1024, 512, 0, 5208, 5215, 3, 1030, 515, 0, 5209, 5215, 3, 1032, 516, 0, 5210, 5215, 3, 1034, 517, 0, 5211, 5215, 3, 1036, 518, 0, 5212, 5215, 3, 1038, 519, 0, 5213, 5215, 3, 1040, 520, 0, 5214, 5200, 1, 0, 0, 0, 5214, 5201, 1, 0, 0, 0, 5214, 5202, 1, 0, 0, 0, 5214, 5203, 1, 0, 0, 0, 5214, 5204, 1, 0, 0, 0, 5214, 5205, 1, 0, 0, 0, 5214, 5206, 1, 0, 0, 0, 5214, 5207, 1, 0, 0, 0, 5214, 5208, 1, 0, 0, 0, 5214, 5209, 1, 0, 0, 0, 5214, 5210, 1, 0, 0, 0, 5214, 5211, 1, 0, 0, 0, 5214, 5212, 1, 0, 0, 0, 5214, 5213, 1, 0, 0, 0, 5215, 955, 1, 0, 0, 0, 5216, 5217, 5, 258, 0, 0, 5217, 5218, 5, 404, 0, 0, 5218, 5224, 5, 430, 0, 0, 5219, 5220, 5, 83, 0, 0, 5220, 5221, 5, 245, 0, 0, 5221, 5222, 5, 404, 0, 0, 5222, 5224, 3, 1000, 500, 0, 5223, 5216, 1, 0, 0, 0, 5223, 5219, 1, 0, 0, 0, 5224, 957, 1, 0, 0, 0, 5225, 5230, 3, 956, 478, 0, 5226, 5227, 5, 396, 0, 0, 5227, 5229, 3, 956, 478, 0, 5228, 5226, 1, 0, 0, 0, 5229, 5232, 1, 0, 0, 0, 5230, 5228, 1, 0, 0, 0, 5230, 5231, 1, 0, 0, 0, 5231, 959, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5233, 5237, 5, 258, 0, 0, 5234, 5235, 5, 83, 0, 0, 5235, 5237, 5, 245, 0, 0, 5236, 5233, 1, 0, 0, 0, 5236, 5234, 1, 0, 0, 0, 5237, 961, 1, 0, 0, 0, 5238, 5243, 3, 960, 480, 0, 5239, 5240, 5, 396, 0, 0, 5240, 5242, 3, 960, 480, 0, 5241, 5239, 1, 0, 0, 0, 5242, 5245, 1, 0, 0, 0, 5243, 5241, 1, 0, 0, 0, 5243, 5244, 1, 0, 0, 0, 5244, 963, 1, 0, 0, 0, 5245, 5243, 1, 0, 0, 0, 5246, 5247, 5, 58, 0, 0, 5247, 5248, 5, 279, 0, 0, 5248, 5250, 5, 242, 0, 0, 5249, 5251, 3, 44, 22, 0, 5250, 5249, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5261, 1, 0, 0, 0, 5252, 5253, 3, 926, 463, 0, 5253, 5254, 5, 183, 0, 0, 5254, 5255, 3, 926, 463, 0, 5255, 5262, 1, 0, 0, 0, 5256, 5259, 3, 926, 463, 0, 5257, 5258, 5, 386, 0, 0, 5258, 5260, 3, 958, 479, 0, 5259, 5257, 1, 0, 0, 0, 5259, 5260, 1, 0, 0, 0, 5260, 5262, 1, 0, 0, 0, 5261, 5252, 1, 0, 0, 0, 5261, 5256, 1, 0, 0, 0, 5262, 965, 1, 0, 0, 0, 5263, 5264, 5, 386, 0, 0, 5264, 5265, 5, 277, 0, 0, 5265, 967, 1, 0, 0, 0, 5266, 5268, 5, 2, 0, 0, 5267, 5269, 3, 966, 483, 0, 5268, 5267, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, 969, 1, 0, 0, 0, 5270, 5271, 7, 44, 0, 0, 5271, 971, 1, 0, 0, 0, 5272, 5273, 7, 45, 0, 0, 5273, 973, 1, 0, 0, 0, 5274, 5275, 5, 361, 0, 0, 5275, 975, 1, 0, 0, 0, 5276, 5277, 7, 46, 0, 0, 5277, 977, 1, 0, 0, 0, 5278, 5279, 7, 47, 0, 0, 5279, 979, 1, 0, 0, 0, 5280, 5281, 7, 48, 0, 0, 5281, 981, 1, 0, 0, 0, 5282, 5283, 7, 49, 0, 0, 5283, 983, 1, 0, 0, 0, 5284, 5285, 7, 50, 0, 0, 5285, 985, 1, 0, 0, 0, 5286, 5287, 7, 51, 0, 0, 5287, 987, 1, 0, 0, 0, 5288, 5289, 7, 52, 0, 0, 5289, 989, 1, 0, 0, 0, 5290, 5291, 7, 53, 0, 0, 5291, 991, 1, 0, 0, 0, 5292, 5293, 5, 9, 0, 0, 5293, 5294, 5, 279, 0, 0, 5294, 5295, 5, 242, 0, 0, 5295, 5313, 3, 926, 463, 0, 5296, 5314, 5, 372, 0, 0, 5297, 5314, 3, 972, 486, 0, 5298, 5299, 5, 303, 0, 0, 5299, 5314, 3, 958, 479, 0, 5300, 5301, 5, 362, 0, 0, 5301, 5314, 3, 962, 481, 0, 5302, 5303, 5, 273, 0, 0, 5303, 5304, 5, 340, 0, 0, 5304, 5314, 3, 926, 463, 0, 5305, 5307, 3, 968, 484, 0, 5306, 5308, 3, 970, 485, 0, 5307, 5306, 1, 0, 0, 0, 5307, 5308, 1, 0, 0, 0, 5308, 5314, 1, 0, 0, 0, 5309, 5311, 3, 970, 485, 0, 5310, 5312, 3, 968, 484, 0, 5311, 5310, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, 5314, 1, 0, 0, 0, 5313, 5296, 1, 0, 0, 0, 5313, 5297, 1, 0, 0, 0, 5313, 5298, 1, 0, 0, 0, 5313, 5300, 1, 0, 0, 0, 5313, 5302, 1, 0, 0, 0, 5313, 5305, 1, 0, 0, 0, 5313, 5309, 1, 0, 0, 0, 5314, 993, 1, 0, 0, 0, 5315, 5318, 3, 970, 485, 0, 5316, 5318, 3, 972, 486, 0, 5317, 5315, 1, 0, 0, 0, 5317, 5316, 1, 0, 0, 0, 5318, 5319, 1, 0, 0, 0, 5319, 5320, 5, 389, 0, 0, 5320, 5321, 5, 196, 0, 0, 5321, 995, 1, 0, 0, 0, 5322, 5334, 5, 277, 0, 0, 5323, 5324, 5, 3, 0, 0, 5324, 5325, 5, 279, 0, 0, 5325, 5326, 5, 242, 0, 0, 5326, 5327, 5, 386, 0, 0, 5327, 5335, 3, 926, 463, 0, 5328, 5329, 5, 279, 0, 0, 5329, 5330, 5, 242, 0, 0, 5330, 5331, 3, 926, 463, 0, 5331, 5332, 5, 386, 0, 0, 5332, 5333, 3, 926, 463, 0, 5333, 5335, 1, 0, 0, 0, 5334, 5323, 1, 0, 0, 0, 5334, 5328, 1, 0, 0, 0, 5335, 997, 1, 0, 0, 0, 5336, 5337, 5, 101, 0, 0, 5337, 5338, 5, 279, 0, 0, 5338, 5340, 5, 242, 0, 0, 5339, 5341, 3, 40, 20, 0, 5340, 5339, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5343, 3, 926, 463, 0, 5343, 999, 1, 0, 0, 0, 5344, 5349, 3, 926, 463, 0, 5345, 5346, 5, 394, 0, 0, 5346, 5348, 3, 926, 463, 0, 5347, 5345, 1, 0, 0, 0, 5348, 5351, 1, 0, 0, 0, 5349, 5347, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, 1001, 1, 0, 0, 0, 5351, 5349, 1, 0, 0, 0, 5352, 5353, 3, 1010, 505, 0, 5353, 1003, 1, 0, 0, 0, 5354, 5355, 3, 1002, 501, 0, 5355, 5356, 5, 0, 0, 1, 5356, 1005, 1, 0, 0, 0, 5357, 5362, 3, 1008, 504, 0, 5358, 5359, 5, 227, 0, 0, 5359, 5361, 3, 1008, 504, 0, 5360, 5358, 1, 0, 0, 0, 5361, 5364, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 1007, 1, 0, 0, 0, 5364, 5362, 1, 0, 0, 0, 5365, 5370, 3, 1010, 505, 0, 5366, 5367, 5, 11, 0, 0, 5367, 5369, 3, 1010, 505, 0, 5368, 5366, 1, 0, 0, 0, 5369, 5372, 1, 0, 0, 0, 5370, 5368, 1, 0, 0, 0, 5370, 5371, 1, 0, 0, 0, 5371, 1009, 1, 0, 0, 0, 5372, 5370, 1, 0, 0, 0, 5373, 5374, 3, 926, 463, 0, 5374, 5375, 3, 1014, 507, 0, 5375, 5376, 3, 1012, 506, 0, 5376, 1011, 1, 0, 0, 0, 5377, 5378, 7, 24, 0, 0, 5378, 1013, 1, 0, 0, 0, 5379, 5380, 5, 410, 0, 0, 5380, 1015, 1, 0, 0, 0, 5381, 5386, 5, 176, 0, 0, 5382, 5383, 5, 210, 0, 0, 5383, 5384, 5, 340, 0, 0, 5384, 5386, 3, 1000, 500, 0, 5385, 5381, 1, 0, 0, 0, 5385, 5382, 1, 0, 0, 0, 5386, 1017, 1, 0, 0, 0, 5387, 5388, 3, 1016, 508, 0, 5388, 5389, 5, 0, 0, 1, 5389, 1019, 1, 0, 0, 0, 5390, 5391, 5, 58, 0, 0, 5391, 5392, 5, 347, 0, 0, 5392, 5393, 3, 926, 463, 0, 5393, 5394, 5, 394, 0, 0, 5394, 5395, 3, 926, 463, 0, 5395, 5396, 5, 382, 0, 0, 5396, 5397, 3, 1002, 501, 0, 5397, 5398, 5, 99, 0, 0, 5398, 5399, 3, 1016, 508, 0, 5399, 1021, 1, 0, 0, 0, 5400, 5401, 5, 9, 0, 0, 5401, 5402, 5, 347, 0, 0, 5402, 5403, 3, 926, 463, 0, 5403, 5404, 5, 394, 0, 0, 5404, 5421, 3, 926, 463, 0, 5405, 5406, 5, 382, 0, 0, 5406, 5407, 3, 1002, 501, 0, 5407, 5408, 5, 99, 0, 0, 5408, 5409, 3, 1016, 508, 0, 5409, 5422, 1, 0, 0, 0, 5410, 5411, 5, 4, 0, 0, 5411, 5415, 5, 340, 0, 0, 5412, 5413, 5, 101, 0, 0, 5413, 5415, 5, 139, 0, 0, 5414, 5410, 1, 0, 0, 0, 5414, 5412, 1, 0, 0, 0, 5415, 5419, 1, 0, 0, 0, 5416, 5417, 5, 245, 0, 0, 5417, 5420, 3, 1000, 500, 0, 5418, 5420, 5, 361, 0, 0, 5419, 5416, 1, 0, 0, 0, 5419, 5418, 1, 0, 0, 0, 5420, 5422, 1, 0, 0, 0, 5421, 5405, 1, 0, 0, 0, 5421, 5414, 1, 0, 0, 0, 5422, 1023, 1, 0, 0, 0, 5423, 5424, 5, 101, 0, 0, 5424, 5425, 5, 347, 0, 0, 5425, 5426, 3, 926, 463, 0, 5426, 5427, 5, 394, 0, 0, 5427, 5428, 3, 926, 463, 0, 5428, 1025, 1, 0, 0, 0, 5429, 5430, 5, 8, 0, 0, 5430, 5431, 5, 404, 0, 0, 5431, 5442, 5, 430, 0, 0, 5432, 5433, 5, 258, 0, 0, 5433, 5434, 5, 404, 0, 0, 5434, 5442, 5, 430, 0, 0, 5435, 5436, 5, 293, 0, 0, 5436, 5437, 5, 404, 0, 0, 5437, 5442, 5, 425, 0, 0, 5438, 5439, 5, 239, 0, 0, 5439, 5440, 5, 404, 0, 0, 5440, 5442, 3, 1000, 500, 0, 5441, 5429, 1, 0, 0, 0, 5441, 5432, 1, 0, 0, 0, 5441, 5435, 1, 0, 0, 0, 5441, 5438, 1, 0, 0, 0, 5442, 1027, 1, 0, 0, 0, 5443, 5448, 3, 1026, 513, 0, 5444, 5445, 5, 396, 0, 0, 5445, 5447, 3, 1026, 513, 0, 5446, 5444, 1, 0, 0, 0, 5447, 5450, 1, 0, 0, 0, 5448, 5446, 1, 0, 0, 0, 5448, 5449, 1, 0, 0, 0, 5449, 1029, 1, 0, 0, 0, 5450, 5448, 1, 0, 0, 0, 5451, 5452, 5, 58, 0, 0, 5452, 5453, 5, 245, 0, 0, 5453, 5454, 3, 926, 463, 0, 5454, 5455, 5, 394, 0, 0, 5455, 5456, 3, 1000, 500, 0, 5456, 5457, 5, 386, 0, 0, 5457, 5458, 3, 1028, 514, 0, 5458, 1031, 1, 0, 0, 0, 5459, 5460, 5, 9, 0, 0, 5460, 5461, 5, 245, 0, 0, 5461, 5462, 3, 926, 463, 0, 5462, 5463, 5, 394, 0, 0, 5463, 5471, 3, 1000, 500, 0, 5464, 5465, 5, 303, 0, 0, 5465, 5472, 3, 1028, 514, 0, 5466, 5467, 5, 362, 0, 0, 5467, 5472, 5, 293, 0, 0, 5468, 5469, 7, 54, 0, 0, 5469, 5470, 5, 347, 0, 0, 5470, 5472, 3, 926, 463, 0, 5471, 5464, 1, 0, 0, 0, 5471, 5466, 1, 0, 0, 0, 5471, 5468, 1, 0, 0, 0, 5472, 1033, 1, 0, 0, 0, 5473, 5474, 5, 101, 0, 0, 5474, 5475, 5, 245, 0, 0, 5475, 5476, 3, 926, 463, 0, 5476, 5477, 5, 394, 0, 0, 5477, 5478, 3, 1000, 500, 0, 5478, 1035, 1, 0, 0, 0, 5479, 5480, 5, 58, 0, 0, 5480, 5481, 7, 55, 0, 0, 5481, 5482, 5, 199, 0, 0, 5482, 5483, 5, 425, 0, 0, 5483, 5484, 5, 154, 0, 0, 5484, 5488, 3, 926, 463, 0, 5485, 5486, 5, 340, 0, 0, 5486, 5489, 3, 1000, 500, 0, 5487, 5489, 3, 974, 487, 0, 5488, 5485, 1, 0, 0, 0, 5488, 5487, 1, 0, 0, 0, 5489, 5493, 1, 0, 0, 0, 5490, 5491, 5, 386, 0, 0, 5491, 5492, 5, 228, 0, 0, 5492, 5494, 5, 430, 0, 0, 5493, 5490, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, 1037, 1, 0, 0, 0, 5495, 5496, 5, 9, 0, 0, 5496, 5497, 7, 55, 0, 0, 5497, 5498, 5, 199, 0, 0, 5498, 5499, 5, 425, 0, 0, 5499, 5500, 5, 154, 0, 0, 5500, 5504, 3, 926, 463, 0, 5501, 5502, 5, 340, 0, 0, 5502, 5505, 3, 1000, 500, 0, 5503, 5505, 3, 974, 487, 0, 5504, 5501, 1, 0, 0, 0, 5504, 5503, 1, 0, 0, 0, 5505, 5509, 1, 0, 0, 0, 5506, 5507, 5, 386, 0, 0, 5507, 5508, 5, 228, 0, 0, 5508, 5510, 5, 430, 0, 0, 5509, 5506, 1, 0, 0, 0, 5509, 5510, 1, 0, 0, 0, 5510, 1039, 1, 0, 0, 0, 5511, 5512, 5, 101, 0, 0, 5512, 5513, 7, 55, 0, 0, 5513, 5514, 5, 199, 0, 0, 5514, 5515, 5, 425, 0, 0, 5515, 5516, 5, 154, 0, 0, 5516, 5517, 3, 926, 463, 0, 5517, 1041, 1, 0, 0, 0, 649, 1045, 1052, 1055, 1061, 1067, 1074, 1084, 1087, 1091, 1111, 1116, 1121, 1127, 1134, 1147, 1151, 1155, 1160, 1167, 1171, 1176, 1183, 1187, 1198, 1204, 1211, 1260, 1288, 1292, 1296, 1299, 1302, 1307, 1313, 1317, 1323, 1325, 1342, 1354, 1358, 1365, 1373, 1376, 1381, 1385, 1388, 1398, 1406, 1410, 1413, 1417, 1421, 1424, 1429, 1435, 1440, 1445, 1449, 1460, 1462, 1466, 1476, 1480, 1486, 1489, 1496, 1501, 1509, 1514, 1518, 1526, 1531, 1537, 1543, 1546, 1549, 1552, 1561, 1569, 1574, 1582, 1589, 1592, 1595, 1597, 1605, 1608, 1611, 1614, 1617, 1620, 1623, 1626, 1629, 1632, 1635, 1637, 1649, 1655, 1663, 1665, 1675, 1681, 1696, 1713, 1718, 1722, 1726, 1733, 1740, 1746, 1750, 1753, 1760, 1783, 1788, 1792, 1800, 1809, 1813, 1819, 1825, 1832, 1835, 1841, 1848, 1856, 1865, 1874, 1881, 1901, 1908, 1910, 1917, 1927, 1935, 1939, 1943, 1956, 1965, 1981, 1985, 1990, 1995, 1998, 2001, 2005, 2008, 2011, 2016, 2024, 2028, 2035, 2038, 2041, 2044, 2056, 2062, 2088, 2096, 2100, 2103, 2106, 2109, 2112, 2115, 2118, 2121, 2130, 2140, 2143, 2163, 2169, 2175, 2178, 2180, 2187, 2194, 2204, 2209, 2218, 2226, 2234, 2244, 2257, 2270, 2291, 2295, 2310, 2316, 2319, 2322, 2325, 2328, 2332, 2346, 2354, 2357, 2372, 2406, 2414, 2419, 2427, 2432, 2437, 2447, 2455, 2463, 2471, 2479, 2490, 2494, 2502, 2511, 2514, 2518, 2525, 2531, 2535, 2541, 2545, 2557, 2566, 2577, 2581, 2588, 2600, 2607, 2616, 2619, 2626, 2632, 2638, 2641, 2644, 2650, 2654, 2658, 2663, 2667, 2671, 2675, 2683, 2687, 2691, 2695, 2699, 2707, 2711, 2715, 2723, 2728, 2733, 2737, 2741, 2748, 2757, 2765, 2777, 2795, 2798, 2804, 2830, 2833, 2839, 2847, 2855, 2868, 2875, 2881, 2885, 2888, 2891, 2894, 2897, 2900, 2907, 2911, 2914, 2917, 2920, 2923, 2926, 2933, 2936, 2943, 2946, 2949, 2952, 2955, 2958, 2961, 2964, 2967, 2970, 2973, 2977, 2980, 2983, 2986, 2989, 2992, 2995, 2998, 3001, 3004, 3007, 3009, 3015, 3019, 3026, 3028, 3031, 3036, 3039, 3043, 3048, 3054, 3060, 3068, 3076, 3083, 3089, 3098, 3101, 3105, 3118, 3122, 3133, 3140, 3144, 3149, 3152, 3162, 3164, 3168, 3175, 3180, 3200, 3207, 3230, 3246, 3263, 3269, 3286, 3299, 3303, 3307, 3314, 3342, 3349, 3354, 3359, 3364, 3369, 3377, 3383, 3387, 3390, 3393, 3399, 3406, 3416, 3420, 3425, 3429, 3435, 3442, 3449, 3460, 3469, 3473, 3476, 3479, 3487, 3490, 3498, 3501, 3509, 3513, 3518, 3522, 3531, 3547, 3562, 3564, 3580, 3587, 3604, 3607, 3610, 3613, 3619, 3642, 3650, 3664, 3667, 3672, 3698, 3702, 3705, 3708, 3712, 3717, 3720, 3723, 3726, 3729, 3735, 3738, 3741, 3744, 3747, 3750, 3753, 3756, 3759, 3763, 3765, 3771, 3776, 3779, 3782, 3785, 3791, 3794, 3797, 3800, 3803, 3806, 3809, 3812, 3815, 3819, 3821, 3823, 3828, 3832, 3835, 3838, 3843, 3861, 3870, 3879, 3887, 3899, 3902, 3908, 3915, 3922, 3929, 3936, 3945, 3949, 3956, 3961, 3965, 3981, 3985, 3987, 3990, 4003, 4006, 4009, 4021, 4024, 4031, 4040, 4045, 4047, 4049, 4066, 4069, 4078, 4084, 4088, 4091, 4094, 4097, 4100, 4112, 4116, 4119, 4122, 4130, 4137, 4140, 4147, 4150, 4155, 4162, 4170, 4176, 4181, 4185, 4190, 4197, 4211, 4214, 4218, 4235, 4243, 4246, 4259, 4268, 4271, 4277, 4280, 4285, 4288, 4297, 4311, 4317, 4319, 4327, 4330, 4340, 4345, 4347, 4359, 4365, 4367, 4374, 4381, 4390, 4400, 4403, 4406, 4409, 4413, 4422, 4431, 4439, 4445, 4455, 4462, 4470, 4480, 4490, 4495, 4499, 4503, 4509, 4530, 4536, 4540, 4544, 4547, 4553, 4558, 4561, 4565, 4573, 4583, 4593, 4612, 4619, 4622, 4633, 4640, 4643, 4645, 4656, 4666, 4668, 4674, 4680, 4684, 4690, 4699, 4712, 4716, 4728, 4732, 4741, 4753, 4770, 4785, 4795, 4803, 4808, 4829, 4833, 4849, 4864, 4873, 4875, 4883, 4896, 4907, 4918, 4929, 4940, 4951, 4961, 4970, 4974, 4982, 4995, 5005, 5011, 5024, 5033, 5035, 5050, 5055, 5062, 5075, 5086, 5095, 5104, 5112, 5120, 5131, 5139, 5144, 5160, 5168, 5177, 5197, 5214, 5223, 5230, 5236, 5243, 5250, 5259, 5261, 5268, 5307, 5311, 5313, 5317, 5334, 5340, 5349, 5362, 5370, 5385, 5414, 5419, 5421, 5441, 5448, 5471, 5488, 5493, 5504, 5509] \ No newline at end of file +[4, 1, 437, 5519, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 1, 0, 5, 0, 1042, 8, 0, 10, 0, 12, 0, 1045, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 1051, 8, 1, 1, 1, 3, 1, 1054, 8, 1, 1, 2, 1, 2, 5, 2, 1058, 8, 2, 10, 2, 12, 2, 1061, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1073, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1083, 8, 3, 1, 3, 3, 3, 1086, 8, 3, 1, 3, 1, 3, 3, 3, 1090, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1110, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 1115, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1120, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1126, 8, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 3, 9, 1133, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1146, 8, 10, 1, 11, 1, 11, 3, 11, 1150, 8, 11, 1, 11, 1, 11, 3, 11, 1154, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1159, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1166, 8, 12, 1, 12, 1, 12, 3, 12, 1170, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 1175, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1182, 8, 14, 1, 14, 1, 14, 3, 14, 1186, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 5, 16, 1195, 8, 16, 10, 16, 12, 16, 1198, 9, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1203, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1210, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1259, 8, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1287, 8, 28, 1, 28, 1, 28, 3, 28, 1291, 8, 28, 1, 28, 1, 28, 3, 28, 1295, 8, 28, 1, 28, 3, 28, 1298, 8, 28, 1, 28, 3, 28, 1301, 8, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1306, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1312, 8, 28, 1, 28, 1, 28, 3, 28, 1316, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1322, 8, 28, 3, 28, 1324, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1339, 8, 32, 10, 32, 12, 32, 1342, 9, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 3, 35, 1353, 8, 35, 1, 35, 1, 35, 3, 35, 1357, 8, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 3, 37, 1364, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1372, 8, 37, 1, 37, 3, 37, 1375, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1380, 8, 38, 1, 38, 1, 38, 3, 38, 1384, 8, 38, 1, 38, 3, 38, 1387, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1397, 8, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1405, 8, 40, 5, 40, 1407, 8, 40, 10, 40, 12, 40, 1410, 9, 40, 3, 40, 1412, 8, 40, 1, 41, 1, 41, 3, 41, 1416, 8, 41, 1, 42, 1, 42, 3, 42, 1420, 8, 42, 1, 42, 3, 42, 1423, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 1428, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1434, 8, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1439, 8, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1444, 8, 43, 1, 43, 1, 43, 3, 43, 1448, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1459, 8, 44, 3, 44, 1461, 8, 44, 1, 44, 1, 44, 3, 44, 1465, 8, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1475, 8, 47, 1, 47, 1, 47, 3, 47, 1479, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1485, 8, 47, 1, 47, 3, 47, 1488, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1495, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1500, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1508, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1513, 8, 47, 1, 47, 1, 47, 3, 47, 1517, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1525, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1530, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1536, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1542, 8, 47, 1, 47, 3, 47, 1545, 8, 47, 1, 47, 3, 47, 1548, 8, 47, 1, 47, 3, 47, 1551, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1560, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1568, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1573, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1581, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1588, 8, 47, 1, 47, 3, 47, 1591, 8, 47, 1, 47, 3, 47, 1594, 8, 47, 3, 47, 1596, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1604, 8, 47, 1, 47, 3, 47, 1607, 8, 47, 1, 47, 3, 47, 1610, 8, 47, 1, 47, 3, 47, 1613, 8, 47, 1, 47, 3, 47, 1616, 8, 47, 1, 47, 3, 47, 1619, 8, 47, 1, 47, 3, 47, 1622, 8, 47, 1, 47, 3, 47, 1625, 8, 47, 1, 47, 3, 47, 1628, 8, 47, 1, 47, 3, 47, 1631, 8, 47, 1, 47, 3, 47, 1634, 8, 47, 3, 47, 1636, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1648, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1654, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1662, 8, 47, 3, 47, 1664, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1674, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1680, 8, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1695, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1712, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1717, 8, 56, 1, 57, 1, 57, 3, 57, 1721, 8, 57, 1, 57, 1, 57, 3, 57, 1725, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1732, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1737, 8, 58, 10, 58, 12, 58, 1740, 9, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1745, 8, 58, 1, 59, 1, 59, 3, 59, 1749, 8, 59, 1, 59, 3, 59, 1752, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1757, 8, 59, 10, 59, 12, 59, 1760, 9, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1782, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1787, 8, 64, 1, 64, 1, 64, 3, 64, 1791, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 3, 66, 1799, 8, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1808, 8, 68, 1, 68, 1, 68, 3, 68, 1812, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1818, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1824, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1831, 8, 69, 1, 69, 3, 69, 1834, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1840, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1845, 8, 70, 10, 70, 12, 70, 1848, 9, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1855, 8, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 5, 73, 1862, 8, 73, 10, 73, 12, 73, 1865, 9, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1873, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1880, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 1900, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1907, 8, 80, 3, 80, 1909, 8, 80, 1, 81, 1, 81, 1, 81, 5, 81, 1914, 8, 81, 10, 81, 12, 81, 1917, 9, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1926, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1934, 8, 84, 1, 85, 1, 85, 3, 85, 1938, 8, 85, 1, 85, 1, 85, 3, 85, 1942, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1955, 8, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1964, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1980, 8, 89, 1, 89, 1, 89, 3, 89, 1984, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1989, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1994, 8, 89, 1, 89, 3, 89, 1997, 8, 89, 1, 89, 3, 89, 2000, 8, 89, 1, 89, 1, 89, 3, 89, 2004, 8, 89, 1, 89, 3, 89, 2007, 8, 89, 1, 89, 3, 89, 2010, 8, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2015, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 2023, 8, 91, 1, 91, 1, 91, 3, 91, 2027, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2034, 8, 91, 1, 91, 3, 91, 2037, 8, 91, 1, 91, 3, 91, 2040, 8, 91, 1, 91, 3, 91, 2043, 8, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2055, 8, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2061, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 3, 98, 2087, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2095, 8, 99, 1, 99, 1, 99, 3, 99, 2099, 8, 99, 1, 99, 3, 99, 2102, 8, 99, 1, 99, 3, 99, 2105, 8, 99, 1, 99, 3, 99, 2108, 8, 99, 1, 99, 3, 99, 2111, 8, 99, 1, 99, 3, 99, 2114, 8, 99, 1, 99, 3, 99, 2117, 8, 99, 1, 99, 3, 99, 2120, 8, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2129, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2139, 8, 101, 1, 101, 3, 101, 2142, 8, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2162, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2168, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2174, 8, 105, 1, 105, 3, 105, 2177, 8, 105, 3, 105, 2179, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 3, 107, 2186, 8, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 3, 108, 2193, 8, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2203, 8, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2208, 8, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 5, 111, 2215, 8, 111, 10, 111, 12, 111, 2218, 9, 111, 1, 112, 1, 112, 1, 112, 5, 112, 2223, 8, 112, 10, 112, 12, 112, 2226, 9, 112, 1, 113, 1, 113, 1, 113, 5, 113, 2231, 8, 113, 10, 113, 12, 113, 2234, 9, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2243, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2256, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2269, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2290, 8, 118, 1, 119, 1, 119, 3, 119, 2294, 8, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 2309, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2315, 8, 123, 1, 123, 3, 123, 2318, 8, 123, 1, 123, 3, 123, 2321, 8, 123, 1, 123, 3, 123, 2324, 8, 123, 1, 123, 3, 123, 2327, 8, 123, 1, 124, 1, 124, 3, 124, 2331, 8, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2343, 8, 127, 10, 127, 12, 127, 2346, 9, 127, 1, 127, 1, 127, 1, 127, 5, 127, 2351, 8, 127, 10, 127, 12, 127, 2354, 9, 127, 3, 127, 2356, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 2371, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2405, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2413, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2418, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2426, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2431, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2436, 8, 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 5, 137, 2444, 8, 137, 10, 137, 12, 137, 2447, 9, 137, 1, 138, 1, 138, 1, 138, 5, 138, 2452, 8, 138, 10, 138, 12, 138, 2455, 9, 138, 1, 139, 1, 139, 1, 139, 5, 139, 2460, 8, 139, 10, 139, 12, 139, 2463, 9, 139, 1, 140, 1, 140, 1, 140, 5, 140, 2468, 8, 140, 10, 140, 12, 140, 2471, 9, 140, 1, 141, 1, 141, 1, 141, 5, 141, 2476, 8, 141, 10, 141, 12, 141, 2479, 9, 141, 1, 141, 3, 141, 2482, 8, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2492, 8, 143, 5, 143, 2494, 8, 143, 10, 143, 12, 143, 2497, 9, 143, 1, 144, 1, 144, 1, 144, 5, 144, 2502, 8, 144, 10, 144, 12, 144, 2505, 9, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 3, 146, 2513, 8, 146, 1, 146, 3, 146, 2516, 8, 146, 1, 147, 1, 147, 3, 147, 2520, 8, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 2527, 8, 149, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2533, 8, 151, 1, 151, 1, 151, 3, 151, 2537, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2543, 8, 152, 1, 153, 1, 153, 3, 153, 2547, 8, 153, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 3, 156, 2559, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2568, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2579, 8, 157, 1, 158, 1, 158, 3, 158, 2583, 8, 158, 1, 159, 1, 159, 1, 159, 5, 159, 2588, 8, 159, 10, 159, 12, 159, 2591, 9, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 5, 161, 2600, 8, 161, 10, 161, 12, 161, 2603, 9, 161, 1, 162, 1, 162, 1, 163, 1, 163, 3, 163, 2609, 8, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 3, 166, 2618, 8, 166, 1, 166, 3, 166, 2621, 8, 166, 1, 167, 1, 167, 1, 167, 5, 167, 2626, 8, 167, 10, 167, 12, 167, 2629, 9, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2634, 8, 168, 1, 169, 1, 169, 1, 170, 1, 170, 3, 170, 2640, 8, 170, 1, 170, 3, 170, 2643, 8, 170, 1, 170, 3, 170, 2646, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2652, 8, 171, 1, 172, 1, 172, 3, 172, 2656, 8, 172, 1, 173, 1, 173, 3, 173, 2660, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2665, 8, 174, 1, 174, 1, 174, 3, 174, 2669, 8, 174, 1, 175, 1, 175, 3, 175, 2673, 8, 175, 1, 176, 1, 176, 3, 176, 2677, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2685, 8, 176, 1, 177, 1, 177, 3, 177, 2689, 8, 177, 1, 177, 1, 177, 3, 177, 2693, 8, 177, 1, 178, 1, 178, 3, 178, 2697, 8, 178, 1, 179, 1, 179, 3, 179, 2701, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2709, 8, 179, 1, 180, 1, 180, 3, 180, 2713, 8, 180, 1, 180, 1, 180, 3, 180, 2717, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2725, 8, 181, 1, 182, 1, 182, 1, 182, 3, 182, 2730, 8, 182, 1, 183, 1, 183, 1, 183, 3, 183, 2735, 8, 183, 1, 184, 1, 184, 3, 184, 2739, 8, 184, 1, 185, 1, 185, 3, 185, 2743, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2750, 8, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 5, 188, 2757, 8, 188, 10, 188, 12, 188, 2760, 9, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2767, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2779, 8, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2797, 8, 190, 1, 190, 3, 190, 2800, 8, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2806, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 2832, 8, 195, 1, 196, 3, 196, 2835, 8, 196, 1, 196, 1, 196, 1, 197, 1, 197, 3, 197, 2841, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2847, 8, 198, 10, 198, 12, 198, 2850, 9, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2857, 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 5, 200, 2868, 8, 200, 10, 200, 12, 200, 2871, 9, 200, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2877, 8, 201, 1, 201, 3, 201, 2880, 8, 201, 1, 201, 3, 201, 2883, 8, 201, 1, 201, 3, 201, 2886, 8, 201, 1, 201, 3, 201, 2889, 8, 201, 1, 201, 3, 201, 2892, 8, 201, 1, 201, 3, 201, 2895, 8, 201, 1, 201, 3, 201, 2898, 8, 201, 1, 201, 3, 201, 2901, 8, 201, 1, 201, 3, 201, 2904, 8, 201, 1, 201, 3, 201, 2907, 8, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2912, 8, 201, 1, 201, 3, 201, 2915, 8, 201, 1, 201, 3, 201, 2918, 8, 201, 1, 201, 3, 201, 2921, 8, 201, 1, 201, 3, 201, 2924, 8, 201, 1, 201, 3, 201, 2927, 8, 201, 1, 201, 3, 201, 2930, 8, 201, 1, 201, 3, 201, 2933, 8, 201, 1, 201, 3, 201, 2936, 8, 201, 1, 201, 3, 201, 2939, 8, 201, 1, 201, 3, 201, 2942, 8, 201, 3, 201, 2944, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2950, 8, 202, 1, 203, 1, 203, 3, 203, 2954, 8, 203, 1, 203, 3, 203, 2957, 8, 203, 1, 203, 3, 203, 2960, 8, 203, 1, 203, 3, 203, 2963, 8, 203, 1, 203, 3, 203, 2966, 8, 203, 1, 203, 3, 203, 2969, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2976, 8, 203, 1, 204, 1, 204, 3, 204, 2980, 8, 204, 1, 204, 3, 204, 2983, 8, 204, 1, 204, 3, 204, 2986, 8, 204, 1, 204, 3, 204, 2989, 8, 204, 1, 204, 3, 204, 2992, 8, 204, 1, 204, 3, 204, 2995, 8, 204, 1, 205, 1, 205, 1, 205, 4, 205, 3000, 8, 205, 11, 205, 12, 205, 3001, 1, 206, 3, 206, 3005, 8, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 3013, 8, 207, 1, 207, 1, 207, 3, 207, 3017, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 3024, 8, 207, 3, 207, 3026, 8, 207, 1, 208, 3, 208, 3029, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3034, 8, 208, 1, 208, 3, 208, 3037, 8, 208, 1, 208, 1, 208, 3, 208, 3041, 8, 208, 1, 209, 1, 209, 1, 209, 3, 209, 3046, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3052, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3058, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 3, 212, 3066, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 5, 213, 3072, 8, 213, 10, 213, 12, 213, 3075, 9, 213, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 3081, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 3087, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 5, 216, 3094, 8, 216, 10, 216, 12, 216, 3097, 9, 216, 3, 216, 3099, 8, 216, 1, 217, 1, 217, 3, 217, 3103, 8, 217, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 3, 221, 3116, 8, 221, 1, 222, 1, 222, 3, 222, 3120, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 4, 224, 3129, 8, 224, 11, 224, 12, 224, 3130, 1, 225, 1, 225, 1, 225, 4, 225, 3136, 8, 225, 11, 225, 12, 225, 3137, 1, 226, 1, 226, 3, 226, 3142, 8, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3147, 8, 226, 1, 226, 3, 226, 3150, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 5, 227, 3160, 8, 227, 10, 227, 12, 227, 3163, 9, 227, 1, 227, 3, 227, 3166, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3173, 8, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3178, 8, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 3, 231, 3198, 8, 231, 1, 232, 1, 232, 1, 232, 4, 232, 3203, 8, 232, 11, 232, 12, 232, 3204, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3228, 8, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3244, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 3261, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 3267, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3284, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3297, 8, 241, 1, 242, 1, 242, 3, 242, 3301, 8, 242, 1, 243, 1, 243, 3, 243, 3305, 8, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 3, 245, 3312, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 3, 251, 3340, 8, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 3347, 8, 251, 1, 252, 1, 252, 1, 252, 3, 252, 3352, 8, 252, 1, 253, 1, 253, 1, 253, 3, 253, 3357, 8, 253, 1, 254, 1, 254, 1, 254, 3, 254, 3362, 8, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3367, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 3, 256, 3375, 8, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 3381, 8, 256, 1, 256, 1, 256, 3, 256, 3385, 8, 256, 1, 256, 3, 256, 3388, 8, 256, 1, 256, 3, 256, 3391, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 3397, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 3404, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 3, 259, 3414, 8, 259, 1, 260, 1, 260, 3, 260, 3418, 8, 260, 1, 260, 4, 260, 3421, 8, 260, 11, 260, 12, 260, 3422, 1, 261, 1, 261, 3, 261, 3427, 8, 261, 1, 262, 1, 262, 5, 262, 3431, 8, 262, 10, 262, 12, 262, 3434, 9, 262, 1, 263, 1, 263, 5, 263, 3438, 8, 263, 10, 263, 12, 263, 3441, 9, 263, 1, 264, 1, 264, 5, 264, 3445, 8, 264, 10, 264, 12, 264, 3448, 9, 264, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 3, 267, 3458, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 5, 267, 3465, 8, 267, 10, 267, 12, 267, 3468, 9, 267, 1, 267, 3, 267, 3471, 8, 267, 1, 267, 3, 267, 3474, 8, 267, 1, 267, 3, 267, 3477, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 3485, 8, 268, 1, 268, 3, 268, 3488, 8, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3496, 8, 269, 1, 269, 3, 269, 3499, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 3507, 8, 270, 1, 270, 1, 270, 3, 270, 3511, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 3516, 8, 270, 1, 271, 1, 271, 3, 271, 3520, 8, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 3, 273, 3529, 8, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 5, 276, 3543, 8, 276, 10, 276, 12, 276, 3546, 9, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 3560, 8, 279, 3, 279, 3562, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 3578, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 3585, 8, 282, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 3, 287, 3602, 8, 287, 1, 287, 3, 287, 3605, 8, 287, 1, 287, 3, 287, 3608, 8, 287, 1, 287, 3, 287, 3611, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 3617, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 3640, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 3648, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 3662, 8, 292, 1, 292, 3, 292, 3665, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 3670, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 3696, 8, 297, 1, 298, 1, 298, 3, 298, 3700, 8, 298, 1, 298, 3, 298, 3703, 8, 298, 1, 298, 3, 298, 3706, 8, 298, 1, 298, 1, 298, 3, 298, 3710, 8, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3715, 8, 298, 1, 298, 3, 298, 3718, 8, 298, 1, 298, 3, 298, 3721, 8, 298, 1, 298, 3, 298, 3724, 8, 298, 1, 298, 3, 298, 3727, 8, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3733, 8, 298, 1, 298, 3, 298, 3736, 8, 298, 1, 298, 3, 298, 3739, 8, 298, 1, 298, 3, 298, 3742, 8, 298, 1, 298, 3, 298, 3745, 8, 298, 1, 298, 3, 298, 3748, 8, 298, 1, 298, 3, 298, 3751, 8, 298, 1, 298, 3, 298, 3754, 8, 298, 1, 298, 3, 298, 3757, 8, 298, 1, 298, 1, 298, 3, 298, 3761, 8, 298, 3, 298, 3763, 8, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3769, 8, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3774, 8, 298, 1, 298, 3, 298, 3777, 8, 298, 1, 298, 3, 298, 3780, 8, 298, 1, 298, 3, 298, 3783, 8, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3789, 8, 298, 1, 298, 3, 298, 3792, 8, 298, 1, 298, 3, 298, 3795, 8, 298, 1, 298, 3, 298, 3798, 8, 298, 1, 298, 3, 298, 3801, 8, 298, 1, 298, 3, 298, 3804, 8, 298, 1, 298, 3, 298, 3807, 8, 298, 1, 298, 3, 298, 3810, 8, 298, 1, 298, 3, 298, 3813, 8, 298, 1, 298, 1, 298, 3, 298, 3817, 8, 298, 3, 298, 3819, 8, 298, 3, 298, 3821, 8, 298, 1, 299, 1, 299, 1, 299, 3, 299, 3826, 8, 299, 1, 299, 1, 299, 3, 299, 3830, 8, 299, 1, 299, 3, 299, 3833, 8, 299, 1, 299, 3, 299, 3836, 8, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3841, 8, 299, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 3, 304, 3859, 8, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 5, 305, 3866, 8, 305, 10, 305, 12, 305, 3869, 9, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 5, 307, 3878, 8, 307, 10, 307, 12, 307, 3881, 9, 307, 1, 308, 1, 308, 1, 308, 5, 308, 3886, 8, 308, 10, 308, 12, 308, 3889, 9, 308, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 4, 310, 3898, 8, 310, 11, 310, 12, 310, 3899, 1, 310, 3, 310, 3903, 8, 310, 1, 311, 1, 311, 5, 311, 3907, 8, 311, 10, 311, 12, 311, 3910, 9, 311, 1, 311, 1, 311, 5, 311, 3914, 8, 311, 10, 311, 12, 311, 3917, 9, 311, 1, 311, 1, 311, 5, 311, 3921, 8, 311, 10, 311, 12, 311, 3924, 9, 311, 1, 311, 1, 311, 5, 311, 3928, 8, 311, 10, 311, 12, 311, 3931, 9, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 3937, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 3946, 8, 312, 5, 312, 3948, 8, 312, 10, 312, 12, 312, 3951, 9, 312, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 3957, 8, 313, 1, 313, 5, 313, 3960, 8, 313, 10, 313, 12, 313, 3963, 9, 313, 1, 314, 3, 314, 3966, 8, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 3982, 8, 317, 1, 317, 1, 317, 3, 317, 3986, 8, 317, 3, 317, 3988, 8, 317, 1, 317, 3, 317, 3991, 8, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 5, 318, 4002, 8, 318, 10, 318, 12, 318, 4005, 9, 318, 3, 318, 4007, 8, 318, 1, 318, 3, 318, 4010, 8, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 5, 318, 4020, 8, 318, 10, 318, 12, 318, 4023, 9, 318, 3, 318, 4025, 8, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 4032, 8, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 5, 318, 4039, 8, 318, 10, 318, 12, 318, 4042, 9, 318, 1, 318, 1, 318, 3, 318, 4046, 8, 318, 3, 318, 4048, 8, 318, 3, 318, 4050, 8, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 4065, 8, 320, 10, 320, 12, 320, 4068, 9, 320, 3, 320, 4070, 8, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 4079, 8, 321, 1, 321, 1, 321, 1, 322, 1, 322, 3, 322, 4085, 8, 322, 1, 323, 1, 323, 3, 323, 4089, 8, 323, 1, 323, 3, 323, 4092, 8, 323, 1, 323, 3, 323, 4095, 8, 323, 1, 323, 3, 323, 4098, 8, 323, 1, 323, 3, 323, 4101, 8, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 4113, 8, 324, 1, 325, 1, 325, 3, 325, 4117, 8, 325, 1, 325, 3, 325, 4120, 8, 325, 1, 325, 3, 325, 4123, 8, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 328, 3, 328, 4131, 8, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 4138, 8, 329, 1, 329, 3, 329, 4141, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4148, 8, 330, 1, 330, 3, 330, 4151, 8, 330, 1, 331, 1, 331, 1, 331, 3, 331, 4156, 8, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 3, 332, 4163, 8, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4171, 8, 333, 1, 333, 1, 333, 1, 334, 1, 334, 3, 334, 4177, 8, 334, 1, 334, 1, 334, 1, 334, 3, 334, 4182, 8, 334, 1, 334, 1, 334, 3, 334, 4186, 8, 334, 1, 335, 1, 335, 1, 335, 3, 335, 4191, 8, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 4198, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 4210, 8, 336, 10, 336, 12, 336, 4213, 9, 336, 3, 336, 4215, 8, 336, 1, 336, 1, 336, 3, 336, 4219, 8, 336, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 5, 341, 4234, 8, 341, 10, 341, 12, 341, 4237, 9, 341, 1, 341, 1, 341, 1, 341, 5, 341, 4242, 8, 341, 10, 341, 12, 341, 4245, 9, 341, 3, 341, 4247, 8, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 4260, 8, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 5, 344, 4267, 8, 344, 10, 344, 12, 344, 4270, 9, 344, 3, 344, 4272, 8, 344, 1, 344, 1, 344, 1, 345, 1, 345, 3, 345, 4278, 8, 345, 1, 345, 3, 345, 4281, 8, 345, 1, 345, 1, 345, 1, 345, 3, 345, 4286, 8, 345, 1, 345, 3, 345, 4289, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 5, 347, 4296, 8, 347, 10, 347, 12, 347, 4299, 9, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 4312, 8, 348, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 4318, 8, 348, 3, 348, 4320, 8, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 3, 349, 4328, 8, 349, 1, 349, 3, 349, 4331, 8, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 5, 349, 4339, 8, 349, 10, 349, 12, 349, 4342, 9, 349, 1, 349, 1, 349, 3, 349, 4346, 8, 349, 3, 349, 4348, 8, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 3, 350, 4360, 8, 350, 1, 350, 1, 350, 1, 350, 1, 350, 3, 350, 4366, 8, 350, 3, 350, 4368, 8, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 3, 351, 4375, 8, 351, 1, 352, 1, 352, 1, 352, 5, 352, 4380, 8, 352, 10, 352, 12, 352, 4383, 9, 352, 1, 353, 1, 353, 1, 353, 1, 353, 5, 353, 4389, 8, 353, 10, 353, 12, 353, 4392, 9, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 3, 355, 4401, 8, 355, 1, 355, 3, 355, 4404, 8, 355, 1, 355, 3, 355, 4407, 8, 355, 1, 355, 3, 355, 4410, 8, 355, 1, 356, 1, 356, 3, 356, 4414, 8, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 4423, 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 4432, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 4440, 8, 359, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 4446, 8, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 4456, 8, 362, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 3, 364, 4463, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 5, 364, 4469, 8, 364, 10, 364, 12, 364, 4472, 9, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 3, 365, 4481, 8, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 5, 365, 4489, 8, 365, 10, 365, 12, 365, 4492, 9, 365, 1, 365, 1, 365, 3, 365, 4496, 8, 365, 1, 366, 1, 366, 3, 366, 4500, 8, 366, 1, 367, 1, 367, 3, 367, 4504, 8, 367, 1, 367, 1, 367, 5, 367, 4508, 8, 367, 10, 367, 12, 367, 4511, 9, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 3, 373, 4531, 8, 373, 1, 374, 1, 374, 4, 374, 4535, 8, 374, 11, 374, 12, 374, 4536, 1, 375, 1, 375, 3, 375, 4541, 8, 375, 1, 376, 1, 376, 3, 376, 4545, 8, 376, 1, 376, 3, 376, 4548, 8, 376, 1, 376, 1, 376, 5, 376, 4552, 8, 376, 10, 376, 12, 376, 4555, 9, 376, 1, 377, 1, 377, 3, 377, 4559, 8, 377, 1, 377, 3, 377, 4562, 8, 377, 1, 378, 1, 378, 3, 378, 4566, 8, 378, 1, 379, 1, 379, 1, 379, 1, 379, 5, 379, 4572, 8, 379, 10, 379, 12, 379, 4575, 9, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 5, 380, 4582, 8, 380, 10, 380, 12, 380, 4585, 9, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 5, 381, 4592, 8, 381, 10, 381, 12, 381, 4595, 9, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 4613, 8, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 4620, 8, 386, 1, 386, 3, 386, 4623, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 4634, 8, 387, 1, 387, 1, 387, 1, 387, 5, 387, 4639, 8, 387, 10, 387, 12, 387, 4642, 9, 387, 3, 387, 4644, 8, 387, 3, 387, 4646, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 4657, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 4667, 8, 387, 3, 387, 4669, 8, 387, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 4675, 8, 388, 1, 389, 1, 389, 1, 390, 1, 390, 3, 390, 4681, 8, 390, 1, 391, 1, 391, 3, 391, 4685, 8, 391, 1, 392, 1, 392, 1, 393, 1, 393, 3, 393, 4691, 8, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 4700, 8, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 4, 395, 4711, 8, 395, 11, 395, 12, 395, 4712, 1, 395, 1, 395, 3, 395, 4717, 8, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 4, 396, 4727, 8, 396, 11, 396, 12, 396, 4728, 1, 396, 1, 396, 3, 396, 4733, 8, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 4742, 8, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 4754, 8, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 4771, 8, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 4786, 8, 401, 1, 402, 1, 402, 1, 403, 1, 403, 1, 404, 1, 404, 4, 404, 4794, 8, 404, 11, 404, 12, 404, 4795, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 3, 406, 4804, 8, 406, 1, 407, 1, 407, 1, 407, 3, 407, 4809, 8, 407, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 4830, 8, 411, 1, 411, 1, 411, 3, 411, 4834, 8, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 4850, 8, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 4865, 8, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 5, 415, 4874, 8, 415, 10, 415, 12, 415, 4877, 9, 415, 1, 416, 1, 416, 1, 417, 5, 417, 4882, 8, 417, 10, 417, 12, 417, 4885, 9, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 5, 419, 4895, 8, 419, 10, 419, 12, 419, 4898, 9, 419, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 5, 421, 4906, 8, 421, 10, 421, 12, 421, 4909, 9, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 5, 423, 4917, 8, 423, 10, 423, 12, 423, 4920, 9, 423, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 5, 425, 4928, 8, 425, 10, 425, 12, 425, 4931, 9, 425, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 5, 427, 4939, 8, 427, 10, 427, 12, 427, 4942, 9, 427, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 4950, 8, 429, 10, 429, 12, 429, 4953, 9, 429, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 3, 431, 4962, 8, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 3, 433, 4971, 8, 433, 1, 434, 1, 434, 3, 434, 4975, 8, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 3, 435, 4983, 8, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 4996, 8, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 439, 1, 439, 3, 439, 5006, 8, 439, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 5012, 8, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 3, 442, 5025, 8, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 5, 443, 5034, 8, 443, 10, 443, 12, 443, 5037, 9, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, 5051, 8, 444, 1, 445, 1, 445, 1, 445, 3, 445, 5056, 8, 445, 1, 446, 1, 446, 1, 447, 5, 447, 5061, 8, 447, 10, 447, 12, 447, 5064, 9, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 5, 449, 5074, 8, 449, 10, 449, 12, 449, 5077, 9, 449, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 5, 451, 5085, 8, 451, 10, 451, 12, 451, 5088, 9, 451, 1, 452, 1, 452, 1, 453, 1, 453, 1, 454, 1, 454, 3, 454, 5096, 8, 454, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 5, 455, 5103, 8, 455, 10, 455, 12, 455, 5106, 9, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 3, 456, 5113, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 5, 457, 5119, 8, 457, 10, 457, 12, 457, 5122, 9, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 3, 459, 5132, 8, 459, 1, 460, 1, 460, 1, 461, 1, 461, 1, 462, 1, 462, 3, 462, 5140, 8, 462, 1, 463, 1, 463, 1, 463, 3, 463, 5145, 8, 463, 1, 464, 1, 464, 1, 465, 1, 465, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 5, 468, 5159, 8, 468, 10, 468, 12, 468, 5162, 9, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 3, 469, 5169, 8, 469, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 5, 471, 5176, 8, 471, 10, 471, 12, 471, 5179, 9, 471, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 5, 475, 5196, 8, 475, 10, 475, 12, 475, 5199, 9, 475, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 5215, 8, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 3, 477, 5224, 8, 477, 1, 478, 1, 478, 1, 478, 5, 478, 5229, 8, 478, 10, 478, 12, 478, 5232, 9, 478, 1, 479, 1, 479, 1, 479, 3, 479, 5237, 8, 479, 1, 480, 1, 480, 1, 480, 5, 480, 5242, 8, 480, 10, 480, 12, 480, 5245, 9, 480, 1, 481, 1, 481, 1, 481, 1, 481, 3, 481, 5251, 8, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 3, 481, 5260, 8, 481, 3, 481, 5262, 8, 481, 1, 482, 1, 482, 1, 482, 1, 483, 1, 483, 3, 483, 5269, 8, 483, 1, 484, 1, 484, 1, 485, 1, 485, 1, 486, 1, 486, 1, 487, 1, 487, 1, 488, 1, 488, 1, 489, 1, 489, 1, 490, 1, 490, 1, 491, 1, 491, 1, 492, 1, 492, 1, 493, 1, 493, 1, 494, 1, 494, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 3, 495, 5308, 8, 495, 1, 495, 1, 495, 3, 495, 5312, 8, 495, 3, 495, 5314, 8, 495, 1, 496, 1, 496, 3, 496, 5318, 8, 496, 1, 496, 1, 496, 1, 496, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 3, 497, 5335, 8, 497, 1, 498, 1, 498, 1, 498, 1, 498, 3, 498, 5341, 8, 498, 1, 498, 1, 498, 1, 499, 1, 499, 1, 499, 5, 499, 5348, 8, 499, 10, 499, 12, 499, 5351, 9, 499, 1, 500, 1, 500, 1, 501, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 5, 502, 5361, 8, 502, 10, 502, 12, 502, 5364, 9, 502, 1, 503, 1, 503, 1, 503, 5, 503, 5369, 8, 503, 10, 503, 12, 503, 5372, 9, 503, 1, 504, 1, 504, 1, 504, 1, 504, 1, 505, 1, 505, 1, 506, 1, 506, 1, 507, 1, 507, 1, 507, 1, 507, 3, 507, 5386, 8, 507, 1, 508, 1, 508, 1, 508, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 3, 510, 5415, 8, 510, 1, 510, 1, 510, 1, 510, 3, 510, 5420, 8, 510, 3, 510, 5422, 8, 510, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 3, 512, 5442, 8, 512, 1, 513, 1, 513, 1, 513, 5, 513, 5447, 8, 513, 10, 513, 12, 513, 5450, 9, 513, 1, 514, 1, 514, 1, 514, 1, 514, 1, 514, 1, 514, 1, 514, 1, 514, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 3, 515, 5472, 8, 515, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 3, 517, 5489, 8, 517, 1, 517, 1, 517, 1, 517, 3, 517, 5494, 8, 517, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 3, 518, 5505, 8, 518, 1, 518, 1, 518, 1, 518, 3, 518, 5510, 8, 518, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 0, 0, 520, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 0, 56, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 225, 225, 324, 324, 2, 0, 34, 34, 281, 281, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 294, 294, 2, 0, 68, 68, 295, 295, 1, 0, 155, 156, 2, 0, 114, 114, 306, 306, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 189, 189, 298, 298, 308, 308, 364, 364, 3, 0, 4, 4, 101, 101, 325, 325, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 350, 350, 2, 0, 216, 216, 372, 372, 2, 0, 213, 213, 271, 271, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 375, 375, 4, 0, 112, 112, 164, 164, 204, 204, 355, 355, 2, 0, 7, 7, 96, 96, 2, 0, 224, 224, 390, 390, 2, 0, 188, 188, 195, 195, 2, 0, 42, 42, 314, 314, 2, 0, 425, 425, 430, 430, 2, 0, 140, 140, 284, 284, 3, 0, 12, 12, 230, 230, 299, 299, 2, 0, 240, 240, 291, 291, 2, 0, 197, 197, 267, 267, 2, 0, 353, 353, 430, 430, 2, 0, 133, 133, 246, 246, 3, 0, 412, 413, 417, 417, 419, 419, 2, 0, 411, 411, 414, 416, 1, 0, 412, 413, 3, 0, 183, 183, 269, 269, 285, 285, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 312, 312, 2, 0, 125, 125, 349, 349, 2, 0, 404, 404, 406, 410, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 183, 183, 197, 197, 215, 215, 227, 227, 263, 263, 269, 269, 285, 285, 310, 310, 322, 323, 339, 339, 356, 356, 382, 382, 404, 416, 418, 420, 422, 422, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 182, 184, 186, 188, 192, 194, 196, 198, 201, 203, 203, 205, 208, 210, 211, 213, 214, 216, 217, 219, 219, 221, 222, 225, 226, 231, 232, 234, 235, 237, 239, 242, 245, 251, 251, 253, 254, 256, 258, 260, 261, 264, 266, 270, 281, 283, 283, 286, 287, 292, 297, 299, 302, 304, 309, 311, 311, 313, 316, 318, 324, 326, 327, 329, 329, 331, 333, 338, 339, 341, 341, 343, 345, 348, 348, 351, 352, 354, 354, 356, 356, 359, 363, 365, 367, 370, 372, 374, 374, 376, 381, 384, 384, 387, 393, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 197, 197, 263, 263, 310, 310, 336, 336, 4, 0, 198, 198, 241, 241, 299, 299, 321, 321, 2, 0, 212, 212, 430, 431, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 391, 392, 1, 0, 207, 208, 1, 0, 380, 381, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 205, 206, 1, 0, 296, 297, 1, 0, 80, 82, 2, 0, 4, 4, 101, 101, 3, 0, 14, 14, 144, 144, 368, 368, 5919, 0, 1043, 1, 0, 0, 0, 2, 1050, 1, 0, 0, 0, 4, 1055, 1, 0, 0, 0, 6, 1089, 1, 0, 0, 0, 8, 1091, 1, 0, 0, 0, 10, 1093, 1, 0, 0, 0, 12, 1109, 1, 0, 0, 0, 14, 1111, 1, 0, 0, 0, 16, 1127, 1, 0, 0, 0, 18, 1130, 1, 0, 0, 0, 20, 1139, 1, 0, 0, 0, 22, 1147, 1, 0, 0, 0, 24, 1160, 1, 0, 0, 0, 26, 1171, 1, 0, 0, 0, 28, 1176, 1, 0, 0, 0, 30, 1187, 1, 0, 0, 0, 32, 1191, 1, 0, 0, 0, 34, 1199, 1, 0, 0, 0, 36, 1204, 1, 0, 0, 0, 38, 1258, 1, 0, 0, 0, 40, 1260, 1, 0, 0, 0, 42, 1263, 1, 0, 0, 0, 44, 1265, 1, 0, 0, 0, 46, 1269, 1, 0, 0, 0, 48, 1271, 1, 0, 0, 0, 50, 1274, 1, 0, 0, 0, 52, 1277, 1, 0, 0, 0, 54, 1281, 1, 0, 0, 0, 56, 1323, 1, 0, 0, 0, 58, 1325, 1, 0, 0, 0, 60, 1328, 1, 0, 0, 0, 62, 1331, 1, 0, 0, 0, 64, 1335, 1, 0, 0, 0, 66, 1343, 1, 0, 0, 0, 68, 1346, 1, 0, 0, 0, 70, 1349, 1, 0, 0, 0, 72, 1358, 1, 0, 0, 0, 74, 1361, 1, 0, 0, 0, 76, 1376, 1, 0, 0, 0, 78, 1388, 1, 0, 0, 0, 80, 1393, 1, 0, 0, 0, 82, 1413, 1, 0, 0, 0, 84, 1417, 1, 0, 0, 0, 86, 1424, 1, 0, 0, 0, 88, 1449, 1, 0, 0, 0, 90, 1466, 1, 0, 0, 0, 92, 1468, 1, 0, 0, 0, 94, 1663, 1, 0, 0, 0, 96, 1673, 1, 0, 0, 0, 98, 1675, 1, 0, 0, 0, 100, 1683, 1, 0, 0, 0, 102, 1688, 1, 0, 0, 0, 104, 1690, 1, 0, 0, 0, 106, 1696, 1, 0, 0, 0, 108, 1700, 1, 0, 0, 0, 110, 1704, 1, 0, 0, 0, 112, 1708, 1, 0, 0, 0, 114, 1718, 1, 0, 0, 0, 116, 1729, 1, 0, 0, 0, 118, 1746, 1, 0, 0, 0, 120, 1764, 1, 0, 0, 0, 122, 1769, 1, 0, 0, 0, 124, 1772, 1, 0, 0, 0, 126, 1776, 1, 0, 0, 0, 128, 1783, 1, 0, 0, 0, 130, 1792, 1, 0, 0, 0, 132, 1798, 1, 0, 0, 0, 134, 1800, 1, 0, 0, 0, 136, 1817, 1, 0, 0, 0, 138, 1839, 1, 0, 0, 0, 140, 1841, 1, 0, 0, 0, 142, 1849, 1, 0, 0, 0, 144, 1856, 1, 0, 0, 0, 146, 1858, 1, 0, 0, 0, 148, 1872, 1, 0, 0, 0, 150, 1879, 1, 0, 0, 0, 152, 1881, 1, 0, 0, 0, 154, 1885, 1, 0, 0, 0, 156, 1889, 1, 0, 0, 0, 158, 1893, 1, 0, 0, 0, 160, 1897, 1, 0, 0, 0, 162, 1910, 1, 0, 0, 0, 164, 1918, 1, 0, 0, 0, 166, 1921, 1, 0, 0, 0, 168, 1923, 1, 0, 0, 0, 170, 1935, 1, 0, 0, 0, 172, 1945, 1, 0, 0, 0, 174, 1948, 1, 0, 0, 0, 176, 1959, 1, 0, 0, 0, 178, 1967, 1, 0, 0, 0, 180, 2011, 1, 0, 0, 0, 182, 2020, 1, 0, 0, 0, 184, 2047, 1, 0, 0, 0, 186, 2060, 1, 0, 0, 0, 188, 2062, 1, 0, 0, 0, 190, 2068, 1, 0, 0, 0, 192, 2071, 1, 0, 0, 0, 194, 2077, 1, 0, 0, 0, 196, 2083, 1, 0, 0, 0, 198, 2090, 1, 0, 0, 0, 200, 2124, 1, 0, 0, 0, 202, 2132, 1, 0, 0, 0, 204, 2145, 1, 0, 0, 0, 206, 2150, 1, 0, 0, 0, 208, 2161, 1, 0, 0, 0, 210, 2178, 1, 0, 0, 0, 212, 2180, 1, 0, 0, 0, 214, 2185, 1, 0, 0, 0, 216, 2192, 1, 0, 0, 0, 218, 2194, 1, 0, 0, 0, 220, 2197, 1, 0, 0, 0, 222, 2211, 1, 0, 0, 0, 224, 2219, 1, 0, 0, 0, 226, 2227, 1, 0, 0, 0, 228, 2235, 1, 0, 0, 0, 230, 2255, 1, 0, 0, 0, 232, 2257, 1, 0, 0, 0, 234, 2274, 1, 0, 0, 0, 236, 2279, 1, 0, 0, 0, 238, 2293, 1, 0, 0, 0, 240, 2295, 1, 0, 0, 0, 242, 2298, 1, 0, 0, 0, 244, 2301, 1, 0, 0, 0, 246, 2310, 1, 0, 0, 0, 248, 2330, 1, 0, 0, 0, 250, 2332, 1, 0, 0, 0, 252, 2335, 1, 0, 0, 0, 254, 2355, 1, 0, 0, 0, 256, 2357, 1, 0, 0, 0, 258, 2361, 1, 0, 0, 0, 260, 2363, 1, 0, 0, 0, 262, 2372, 1, 0, 0, 0, 264, 2378, 1, 0, 0, 0, 266, 2384, 1, 0, 0, 0, 268, 2389, 1, 0, 0, 0, 270, 2435, 1, 0, 0, 0, 272, 2437, 1, 0, 0, 0, 274, 2440, 1, 0, 0, 0, 276, 2448, 1, 0, 0, 0, 278, 2456, 1, 0, 0, 0, 280, 2464, 1, 0, 0, 0, 282, 2481, 1, 0, 0, 0, 284, 2483, 1, 0, 0, 0, 286, 2485, 1, 0, 0, 0, 288, 2498, 1, 0, 0, 0, 290, 2506, 1, 0, 0, 0, 292, 2515, 1, 0, 0, 0, 294, 2519, 1, 0, 0, 0, 296, 2521, 1, 0, 0, 0, 298, 2526, 1, 0, 0, 0, 300, 2528, 1, 0, 0, 0, 302, 2532, 1, 0, 0, 0, 304, 2538, 1, 0, 0, 0, 306, 2546, 1, 0, 0, 0, 308, 2548, 1, 0, 0, 0, 310, 2551, 1, 0, 0, 0, 312, 2558, 1, 0, 0, 0, 314, 2569, 1, 0, 0, 0, 316, 2582, 1, 0, 0, 0, 318, 2584, 1, 0, 0, 0, 320, 2592, 1, 0, 0, 0, 322, 2596, 1, 0, 0, 0, 324, 2604, 1, 0, 0, 0, 326, 2608, 1, 0, 0, 0, 328, 2610, 1, 0, 0, 0, 330, 2612, 1, 0, 0, 0, 332, 2615, 1, 0, 0, 0, 334, 2622, 1, 0, 0, 0, 336, 2630, 1, 0, 0, 0, 338, 2635, 1, 0, 0, 0, 340, 2639, 1, 0, 0, 0, 342, 2647, 1, 0, 0, 0, 344, 2655, 1, 0, 0, 0, 346, 2659, 1, 0, 0, 0, 348, 2661, 1, 0, 0, 0, 350, 2672, 1, 0, 0, 0, 352, 2676, 1, 0, 0, 0, 354, 2688, 1, 0, 0, 0, 356, 2696, 1, 0, 0, 0, 358, 2700, 1, 0, 0, 0, 360, 2712, 1, 0, 0, 0, 362, 2724, 1, 0, 0, 0, 364, 2729, 1, 0, 0, 0, 366, 2734, 1, 0, 0, 0, 368, 2736, 1, 0, 0, 0, 370, 2740, 1, 0, 0, 0, 372, 2744, 1, 0, 0, 0, 374, 2751, 1, 0, 0, 0, 376, 2753, 1, 0, 0, 0, 378, 2766, 1, 0, 0, 0, 380, 2805, 1, 0, 0, 0, 382, 2807, 1, 0, 0, 0, 384, 2812, 1, 0, 0, 0, 386, 2817, 1, 0, 0, 0, 388, 2824, 1, 0, 0, 0, 390, 2829, 1, 0, 0, 0, 392, 2834, 1, 0, 0, 0, 394, 2840, 1, 0, 0, 0, 396, 2842, 1, 0, 0, 0, 398, 2851, 1, 0, 0, 0, 400, 2863, 1, 0, 0, 0, 402, 2943, 1, 0, 0, 0, 404, 2949, 1, 0, 0, 0, 406, 2975, 1, 0, 0, 0, 408, 2977, 1, 0, 0, 0, 410, 2999, 1, 0, 0, 0, 412, 3004, 1, 0, 0, 0, 414, 3008, 1, 0, 0, 0, 416, 3040, 1, 0, 0, 0, 418, 3042, 1, 0, 0, 0, 420, 3053, 1, 0, 0, 0, 422, 3059, 1, 0, 0, 0, 424, 3065, 1, 0, 0, 0, 426, 3067, 1, 0, 0, 0, 428, 3076, 1, 0, 0, 0, 430, 3086, 1, 0, 0, 0, 432, 3088, 1, 0, 0, 0, 434, 3102, 1, 0, 0, 0, 436, 3104, 1, 0, 0, 0, 438, 3107, 1, 0, 0, 0, 440, 3111, 1, 0, 0, 0, 442, 3113, 1, 0, 0, 0, 444, 3117, 1, 0, 0, 0, 446, 3121, 1, 0, 0, 0, 448, 3125, 1, 0, 0, 0, 450, 3132, 1, 0, 0, 0, 452, 3139, 1, 0, 0, 0, 454, 3161, 1, 0, 0, 0, 456, 3167, 1, 0, 0, 0, 458, 3182, 1, 0, 0, 0, 460, 3189, 1, 0, 0, 0, 462, 3197, 1, 0, 0, 0, 464, 3199, 1, 0, 0, 0, 466, 3206, 1, 0, 0, 0, 468, 3210, 1, 0, 0, 0, 470, 3213, 1, 0, 0, 0, 472, 3216, 1, 0, 0, 0, 474, 3219, 1, 0, 0, 0, 476, 3266, 1, 0, 0, 0, 478, 3283, 1, 0, 0, 0, 480, 3285, 1, 0, 0, 0, 482, 3296, 1, 0, 0, 0, 484, 3300, 1, 0, 0, 0, 486, 3304, 1, 0, 0, 0, 488, 3306, 1, 0, 0, 0, 490, 3311, 1, 0, 0, 0, 492, 3313, 1, 0, 0, 0, 494, 3318, 1, 0, 0, 0, 496, 3323, 1, 0, 0, 0, 498, 3328, 1, 0, 0, 0, 500, 3333, 1, 0, 0, 0, 502, 3339, 1, 0, 0, 0, 504, 3348, 1, 0, 0, 0, 506, 3353, 1, 0, 0, 0, 508, 3366, 1, 0, 0, 0, 510, 3368, 1, 0, 0, 0, 512, 3372, 1, 0, 0, 0, 514, 3392, 1, 0, 0, 0, 516, 3405, 1, 0, 0, 0, 518, 3413, 1, 0, 0, 0, 520, 3415, 1, 0, 0, 0, 522, 3424, 1, 0, 0, 0, 524, 3428, 1, 0, 0, 0, 526, 3435, 1, 0, 0, 0, 528, 3442, 1, 0, 0, 0, 530, 3449, 1, 0, 0, 0, 532, 3452, 1, 0, 0, 0, 534, 3455, 1, 0, 0, 0, 536, 3487, 1, 0, 0, 0, 538, 3498, 1, 0, 0, 0, 540, 3515, 1, 0, 0, 0, 542, 3517, 1, 0, 0, 0, 544, 3521, 1, 0, 0, 0, 546, 3528, 1, 0, 0, 0, 548, 3530, 1, 0, 0, 0, 550, 3535, 1, 0, 0, 0, 552, 3539, 1, 0, 0, 0, 554, 3547, 1, 0, 0, 0, 556, 3551, 1, 0, 0, 0, 558, 3561, 1, 0, 0, 0, 560, 3563, 1, 0, 0, 0, 562, 3569, 1, 0, 0, 0, 564, 3573, 1, 0, 0, 0, 566, 3586, 1, 0, 0, 0, 568, 3588, 1, 0, 0, 0, 570, 3592, 1, 0, 0, 0, 572, 3595, 1, 0, 0, 0, 574, 3598, 1, 0, 0, 0, 576, 3618, 1, 0, 0, 0, 578, 3622, 1, 0, 0, 0, 580, 3629, 1, 0, 0, 0, 582, 3643, 1, 0, 0, 0, 584, 3664, 1, 0, 0, 0, 586, 3669, 1, 0, 0, 0, 588, 3671, 1, 0, 0, 0, 590, 3676, 1, 0, 0, 0, 592, 3681, 1, 0, 0, 0, 594, 3695, 1, 0, 0, 0, 596, 3820, 1, 0, 0, 0, 598, 3822, 1, 0, 0, 0, 600, 3842, 1, 0, 0, 0, 602, 3845, 1, 0, 0, 0, 604, 3848, 1, 0, 0, 0, 606, 3851, 1, 0, 0, 0, 608, 3855, 1, 0, 0, 0, 610, 3867, 1, 0, 0, 0, 612, 3872, 1, 0, 0, 0, 614, 3874, 1, 0, 0, 0, 616, 3882, 1, 0, 0, 0, 618, 3890, 1, 0, 0, 0, 620, 3902, 1, 0, 0, 0, 622, 3936, 1, 0, 0, 0, 624, 3938, 1, 0, 0, 0, 626, 3956, 1, 0, 0, 0, 628, 3965, 1, 0, 0, 0, 630, 3970, 1, 0, 0, 0, 632, 3974, 1, 0, 0, 0, 634, 3990, 1, 0, 0, 0, 636, 4049, 1, 0, 0, 0, 638, 4051, 1, 0, 0, 0, 640, 4053, 1, 0, 0, 0, 642, 4073, 1, 0, 0, 0, 644, 4084, 1, 0, 0, 0, 646, 4086, 1, 0, 0, 0, 648, 4102, 1, 0, 0, 0, 650, 4114, 1, 0, 0, 0, 652, 4124, 1, 0, 0, 0, 654, 4126, 1, 0, 0, 0, 656, 4130, 1, 0, 0, 0, 658, 4140, 1, 0, 0, 0, 660, 4150, 1, 0, 0, 0, 662, 4155, 1, 0, 0, 0, 664, 4162, 1, 0, 0, 0, 666, 4166, 1, 0, 0, 0, 668, 4185, 1, 0, 0, 0, 670, 4190, 1, 0, 0, 0, 672, 4192, 1, 0, 0, 0, 674, 4220, 1, 0, 0, 0, 676, 4223, 1, 0, 0, 0, 678, 4225, 1, 0, 0, 0, 680, 4227, 1, 0, 0, 0, 682, 4246, 1, 0, 0, 0, 684, 4248, 1, 0, 0, 0, 686, 4250, 1, 0, 0, 0, 688, 4254, 1, 0, 0, 0, 690, 4288, 1, 0, 0, 0, 692, 4290, 1, 0, 0, 0, 694, 4292, 1, 0, 0, 0, 696, 4300, 1, 0, 0, 0, 698, 4347, 1, 0, 0, 0, 700, 4349, 1, 0, 0, 0, 702, 4374, 1, 0, 0, 0, 704, 4376, 1, 0, 0, 0, 706, 4384, 1, 0, 0, 0, 708, 4393, 1, 0, 0, 0, 710, 4409, 1, 0, 0, 0, 712, 4413, 1, 0, 0, 0, 714, 4415, 1, 0, 0, 0, 716, 4424, 1, 0, 0, 0, 718, 4439, 1, 0, 0, 0, 720, 4445, 1, 0, 0, 0, 722, 4447, 1, 0, 0, 0, 724, 4455, 1, 0, 0, 0, 726, 4457, 1, 0, 0, 0, 728, 4462, 1, 0, 0, 0, 730, 4475, 1, 0, 0, 0, 732, 4499, 1, 0, 0, 0, 734, 4501, 1, 0, 0, 0, 736, 4514, 1, 0, 0, 0, 738, 4516, 1, 0, 0, 0, 740, 4519, 1, 0, 0, 0, 742, 4522, 1, 0, 0, 0, 744, 4524, 1, 0, 0, 0, 746, 4528, 1, 0, 0, 0, 748, 4534, 1, 0, 0, 0, 750, 4540, 1, 0, 0, 0, 752, 4542, 1, 0, 0, 0, 754, 4556, 1, 0, 0, 0, 756, 4565, 1, 0, 0, 0, 758, 4567, 1, 0, 0, 0, 760, 4578, 1, 0, 0, 0, 762, 4586, 1, 0, 0, 0, 764, 4596, 1, 0, 0, 0, 766, 4600, 1, 0, 0, 0, 768, 4604, 1, 0, 0, 0, 770, 4608, 1, 0, 0, 0, 772, 4614, 1, 0, 0, 0, 774, 4668, 1, 0, 0, 0, 776, 4674, 1, 0, 0, 0, 778, 4676, 1, 0, 0, 0, 780, 4680, 1, 0, 0, 0, 782, 4684, 1, 0, 0, 0, 784, 4686, 1, 0, 0, 0, 786, 4690, 1, 0, 0, 0, 788, 4692, 1, 0, 0, 0, 790, 4703, 1, 0, 0, 0, 792, 4720, 1, 0, 0, 0, 794, 4736, 1, 0, 0, 0, 796, 4753, 1, 0, 0, 0, 798, 4755, 1, 0, 0, 0, 800, 4770, 1, 0, 0, 0, 802, 4785, 1, 0, 0, 0, 804, 4787, 1, 0, 0, 0, 806, 4789, 1, 0, 0, 0, 808, 4791, 1, 0, 0, 0, 810, 4797, 1, 0, 0, 0, 812, 4803, 1, 0, 0, 0, 814, 4808, 1, 0, 0, 0, 816, 4810, 1, 0, 0, 0, 818, 4813, 1, 0, 0, 0, 820, 4815, 1, 0, 0, 0, 822, 4833, 1, 0, 0, 0, 824, 4849, 1, 0, 0, 0, 826, 4851, 1, 0, 0, 0, 828, 4864, 1, 0, 0, 0, 830, 4866, 1, 0, 0, 0, 832, 4878, 1, 0, 0, 0, 834, 4883, 1, 0, 0, 0, 836, 4888, 1, 0, 0, 0, 838, 4890, 1, 0, 0, 0, 840, 4899, 1, 0, 0, 0, 842, 4901, 1, 0, 0, 0, 844, 4910, 1, 0, 0, 0, 846, 4912, 1, 0, 0, 0, 848, 4921, 1, 0, 0, 0, 850, 4923, 1, 0, 0, 0, 852, 4932, 1, 0, 0, 0, 854, 4934, 1, 0, 0, 0, 856, 4943, 1, 0, 0, 0, 858, 4945, 1, 0, 0, 0, 860, 4954, 1, 0, 0, 0, 862, 4961, 1, 0, 0, 0, 864, 4963, 1, 0, 0, 0, 866, 4970, 1, 0, 0, 0, 868, 4972, 1, 0, 0, 0, 870, 4982, 1, 0, 0, 0, 872, 4995, 1, 0, 0, 0, 874, 4997, 1, 0, 0, 0, 876, 5001, 1, 0, 0, 0, 878, 5005, 1, 0, 0, 0, 880, 5011, 1, 0, 0, 0, 882, 5013, 1, 0, 0, 0, 884, 5024, 1, 0, 0, 0, 886, 5026, 1, 0, 0, 0, 888, 5050, 1, 0, 0, 0, 890, 5052, 1, 0, 0, 0, 892, 5057, 1, 0, 0, 0, 894, 5062, 1, 0, 0, 0, 896, 5067, 1, 0, 0, 0, 898, 5069, 1, 0, 0, 0, 900, 5078, 1, 0, 0, 0, 902, 5080, 1, 0, 0, 0, 904, 5089, 1, 0, 0, 0, 906, 5091, 1, 0, 0, 0, 908, 5093, 1, 0, 0, 0, 910, 5097, 1, 0, 0, 0, 912, 5109, 1, 0, 0, 0, 914, 5114, 1, 0, 0, 0, 916, 5125, 1, 0, 0, 0, 918, 5131, 1, 0, 0, 0, 920, 5133, 1, 0, 0, 0, 922, 5135, 1, 0, 0, 0, 924, 5139, 1, 0, 0, 0, 926, 5141, 1, 0, 0, 0, 928, 5146, 1, 0, 0, 0, 930, 5148, 1, 0, 0, 0, 932, 5150, 1, 0, 0, 0, 934, 5152, 1, 0, 0, 0, 936, 5155, 1, 0, 0, 0, 938, 5163, 1, 0, 0, 0, 940, 5170, 1, 0, 0, 0, 942, 5172, 1, 0, 0, 0, 944, 5180, 1, 0, 0, 0, 946, 5182, 1, 0, 0, 0, 948, 5187, 1, 0, 0, 0, 950, 5192, 1, 0, 0, 0, 952, 5214, 1, 0, 0, 0, 954, 5223, 1, 0, 0, 0, 956, 5225, 1, 0, 0, 0, 958, 5236, 1, 0, 0, 0, 960, 5238, 1, 0, 0, 0, 962, 5246, 1, 0, 0, 0, 964, 5263, 1, 0, 0, 0, 966, 5266, 1, 0, 0, 0, 968, 5270, 1, 0, 0, 0, 970, 5272, 1, 0, 0, 0, 972, 5274, 1, 0, 0, 0, 974, 5276, 1, 0, 0, 0, 976, 5278, 1, 0, 0, 0, 978, 5280, 1, 0, 0, 0, 980, 5282, 1, 0, 0, 0, 982, 5284, 1, 0, 0, 0, 984, 5286, 1, 0, 0, 0, 986, 5288, 1, 0, 0, 0, 988, 5290, 1, 0, 0, 0, 990, 5292, 1, 0, 0, 0, 992, 5317, 1, 0, 0, 0, 994, 5322, 1, 0, 0, 0, 996, 5336, 1, 0, 0, 0, 998, 5344, 1, 0, 0, 0, 1000, 5352, 1, 0, 0, 0, 1002, 5354, 1, 0, 0, 0, 1004, 5357, 1, 0, 0, 0, 1006, 5365, 1, 0, 0, 0, 1008, 5373, 1, 0, 0, 0, 1010, 5377, 1, 0, 0, 0, 1012, 5379, 1, 0, 0, 0, 1014, 5385, 1, 0, 0, 0, 1016, 5387, 1, 0, 0, 0, 1018, 5390, 1, 0, 0, 0, 1020, 5400, 1, 0, 0, 0, 1022, 5423, 1, 0, 0, 0, 1024, 5441, 1, 0, 0, 0, 1026, 5443, 1, 0, 0, 0, 1028, 5451, 1, 0, 0, 0, 1030, 5459, 1, 0, 0, 0, 1032, 5473, 1, 0, 0, 0, 1034, 5479, 1, 0, 0, 0, 1036, 5495, 1, 0, 0, 0, 1038, 5511, 1, 0, 0, 0, 1040, 1042, 3, 2, 1, 0, 1041, 1040, 1, 0, 0, 0, 1042, 1045, 1, 0, 0, 0, 1043, 1041, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1046, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1046, 1047, 5, 0, 0, 1, 1047, 1, 1, 0, 0, 0, 1048, 1051, 3, 4, 2, 0, 1049, 1051, 3, 12, 6, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1049, 1, 0, 0, 0, 1051, 1053, 1, 0, 0, 0, 1052, 1054, 5, 397, 0, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 3, 1, 0, 0, 0, 1055, 1065, 5, 119, 0, 0, 1056, 1058, 3, 6, 3, 0, 1057, 1056, 1, 0, 0, 0, 1058, 1061, 1, 0, 0, 0, 1059, 1057, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1062, 1, 0, 0, 0, 1061, 1059, 1, 0, 0, 0, 1062, 1066, 3, 12, 6, 0, 1063, 1064, 5, 283, 0, 0, 1064, 1066, 3, 392, 196, 0, 1065, 1059, 1, 0, 0, 0, 1065, 1063, 1, 0, 0, 0, 1066, 5, 1, 0, 0, 0, 1067, 1090, 5, 122, 0, 0, 1068, 1090, 5, 138, 0, 0, 1069, 1090, 5, 88, 0, 0, 1070, 1072, 5, 37, 0, 0, 1071, 1073, 7, 0, 0, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1090, 1, 0, 0, 0, 1074, 1090, 5, 191, 0, 0, 1075, 1090, 5, 21, 0, 0, 1076, 1090, 5, 10, 0, 0, 1077, 1090, 5, 274, 0, 0, 1078, 1090, 5, 190, 0, 0, 1079, 1090, 5, 19, 0, 0, 1080, 1082, 5, 376, 0, 0, 1081, 1083, 3, 8, 4, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1085, 1, 0, 0, 0, 1084, 1086, 3, 10, 5, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1090, 1, 0, 0, 0, 1087, 1090, 5, 79, 0, 0, 1088, 1090, 5, 78, 0, 0, 1089, 1067, 1, 0, 0, 0, 1089, 1068, 1, 0, 0, 0, 1089, 1069, 1, 0, 0, 0, 1089, 1070, 1, 0, 0, 0, 1089, 1074, 1, 0, 0, 0, 1089, 1075, 1, 0, 0, 0, 1089, 1076, 1, 0, 0, 0, 1089, 1077, 1, 0, 0, 0, 1089, 1078, 1, 0, 0, 0, 1089, 1079, 1, 0, 0, 0, 1089, 1080, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1088, 1, 0, 0, 0, 1090, 7, 1, 0, 0, 0, 1091, 1092, 5, 224, 0, 0, 1092, 9, 1, 0, 0, 0, 1093, 1094, 7, 1, 0, 0, 1094, 11, 1, 0, 0, 0, 1095, 1110, 3, 392, 196, 0, 1096, 1110, 3, 14, 7, 0, 1097, 1110, 3, 20, 10, 0, 1098, 1110, 3, 22, 11, 0, 1099, 1110, 3, 24, 12, 0, 1100, 1110, 3, 28, 14, 0, 1101, 1110, 3, 36, 18, 0, 1102, 1110, 3, 38, 19, 0, 1103, 1110, 3, 420, 210, 0, 1104, 1110, 3, 428, 214, 0, 1105, 1110, 3, 430, 215, 0, 1106, 1110, 3, 452, 226, 0, 1107, 1110, 3, 946, 473, 0, 1108, 1110, 3, 948, 474, 0, 1109, 1095, 1, 0, 0, 0, 1109, 1096, 1, 0, 0, 0, 1109, 1097, 1, 0, 0, 0, 1109, 1098, 1, 0, 0, 0, 1109, 1099, 1, 0, 0, 0, 1109, 1100, 1, 0, 0, 0, 1109, 1101, 1, 0, 0, 0, 1109, 1102, 1, 0, 0, 0, 1109, 1103, 1, 0, 0, 0, 1109, 1104, 1, 0, 0, 0, 1109, 1105, 1, 0, 0, 0, 1109, 1106, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1109, 1108, 1, 0, 0, 0, 1110, 13, 1, 0, 0, 0, 1111, 1112, 5, 186, 0, 0, 1112, 1114, 5, 66, 0, 0, 1113, 1115, 5, 187, 0, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 5, 158, 0, 0, 1117, 1119, 5, 425, 0, 0, 1118, 1120, 5, 234, 0, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1122, 5, 166, 0, 0, 1122, 1123, 5, 328, 0, 0, 1123, 1125, 3, 908, 454, 0, 1124, 1126, 3, 78, 39, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 15, 1, 0, 0, 0, 1127, 1128, 5, 152, 0, 0, 1128, 1129, 5, 253, 0, 0, 1129, 17, 1, 0, 0, 0, 1130, 1132, 5, 134, 0, 0, 1131, 1133, 5, 203, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 5, 278, 0, 0, 1135, 1136, 5, 398, 0, 0, 1136, 1137, 5, 425, 0, 0, 1137, 1138, 5, 399, 0, 0, 1138, 19, 1, 0, 0, 0, 1139, 1140, 5, 120, 0, 0, 1140, 1141, 5, 328, 0, 0, 1141, 1142, 3, 908, 454, 0, 1142, 1143, 5, 340, 0, 0, 1143, 1145, 5, 425, 0, 0, 1144, 1146, 3, 18, 9, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 21, 1, 0, 0, 0, 1147, 1153, 5, 153, 0, 0, 1148, 1150, 5, 123, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 5, 328, 0, 0, 1152, 1154, 3, 908, 454, 0, 1153, 1149, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1156, 5, 139, 0, 0, 1156, 1158, 5, 425, 0, 0, 1157, 1159, 3, 272, 136, 0, 1158, 1157, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 23, 1, 0, 0, 0, 1160, 1161, 5, 276, 0, 0, 1161, 1162, 5, 103, 0, 0, 1162, 1165, 3, 26, 13, 0, 1163, 1164, 5, 277, 0, 0, 1164, 1166, 3, 26, 13, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1169, 1, 0, 0, 0, 1167, 1168, 5, 386, 0, 0, 1168, 1170, 3, 30, 15, 0, 1169, 1167, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 25, 1, 0, 0, 0, 1171, 1174, 3, 652, 326, 0, 1172, 1173, 5, 394, 0, 0, 1173, 1175, 3, 34, 17, 0, 1174, 1172, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 27, 1, 0, 0, 0, 1176, 1177, 5, 276, 0, 0, 1177, 1178, 5, 186, 0, 0, 1178, 1181, 3, 26, 13, 0, 1179, 1180, 5, 166, 0, 0, 1180, 1182, 3, 652, 326, 0, 1181, 1179, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1185, 1, 0, 0, 0, 1183, 1184, 5, 386, 0, 0, 1184, 1186, 3, 30, 15, 0, 1185, 1183, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 29, 1, 0, 0, 0, 1187, 1188, 5, 398, 0, 0, 1188, 1189, 3, 32, 16, 0, 1189, 1190, 5, 399, 0, 0, 1190, 31, 1, 0, 0, 0, 1191, 1196, 3, 256, 128, 0, 1192, 1193, 5, 396, 0, 0, 1193, 1195, 3, 256, 128, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1198, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 33, 1, 0, 0, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1202, 5, 425, 0, 0, 1200, 1201, 5, 394, 0, 0, 1201, 1203, 5, 425, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 35, 1, 0, 0, 0, 1204, 1205, 5, 276, 0, 0, 1205, 1206, 5, 319, 0, 0, 1206, 1209, 3, 652, 326, 0, 1207, 1208, 5, 386, 0, 0, 1208, 1210, 3, 30, 15, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 37, 1, 0, 0, 0, 1211, 1259, 3, 56, 28, 0, 1212, 1259, 3, 68, 34, 0, 1213, 1259, 3, 70, 35, 0, 1214, 1259, 3, 596, 298, 0, 1215, 1259, 3, 76, 38, 0, 1216, 1259, 3, 74, 37, 0, 1217, 1259, 3, 474, 237, 0, 1218, 1259, 3, 86, 43, 0, 1219, 1259, 3, 94, 47, 0, 1220, 1259, 3, 160, 80, 0, 1221, 1259, 3, 182, 91, 0, 1222, 1259, 3, 198, 99, 0, 1223, 1259, 3, 202, 101, 0, 1224, 1259, 3, 206, 103, 0, 1225, 1259, 3, 204, 102, 0, 1226, 1259, 3, 196, 98, 0, 1227, 1259, 3, 200, 100, 0, 1228, 1259, 3, 168, 84, 0, 1229, 1259, 3, 174, 87, 0, 1230, 1259, 3, 170, 85, 0, 1231, 1259, 3, 172, 86, 0, 1232, 1259, 3, 176, 88, 0, 1233, 1259, 3, 178, 89, 0, 1234, 1259, 3, 180, 90, 0, 1235, 1259, 3, 88, 44, 0, 1236, 1259, 3, 98, 49, 0, 1237, 1259, 3, 104, 52, 0, 1238, 1259, 3, 100, 50, 0, 1239, 1259, 3, 106, 53, 0, 1240, 1259, 3, 108, 54, 0, 1241, 1259, 3, 110, 55, 0, 1242, 1259, 3, 112, 56, 0, 1243, 1259, 3, 114, 57, 0, 1244, 1259, 3, 128, 64, 0, 1245, 1259, 3, 120, 60, 0, 1246, 1259, 3, 130, 65, 0, 1247, 1259, 3, 122, 61, 0, 1248, 1259, 3, 116, 58, 0, 1249, 1259, 3, 118, 59, 0, 1250, 1259, 3, 126, 63, 0, 1251, 1259, 3, 124, 62, 0, 1252, 1259, 3, 448, 224, 0, 1253, 1259, 3, 450, 225, 0, 1254, 1259, 3, 464, 232, 0, 1255, 1259, 3, 952, 476, 0, 1256, 1259, 3, 598, 299, 0, 1257, 1259, 3, 608, 304, 0, 1258, 1211, 1, 0, 0, 0, 1258, 1212, 1, 0, 0, 0, 1258, 1213, 1, 0, 0, 0, 1258, 1214, 1, 0, 0, 0, 1258, 1215, 1, 0, 0, 0, 1258, 1216, 1, 0, 0, 0, 1258, 1217, 1, 0, 0, 0, 1258, 1218, 1, 0, 0, 0, 1258, 1219, 1, 0, 0, 0, 1258, 1220, 1, 0, 0, 0, 1258, 1221, 1, 0, 0, 0, 1258, 1222, 1, 0, 0, 0, 1258, 1223, 1, 0, 0, 0, 1258, 1224, 1, 0, 0, 0, 1258, 1225, 1, 0, 0, 0, 1258, 1226, 1, 0, 0, 0, 1258, 1227, 1, 0, 0, 0, 1258, 1228, 1, 0, 0, 0, 1258, 1229, 1, 0, 0, 0, 1258, 1230, 1, 0, 0, 0, 1258, 1231, 1, 0, 0, 0, 1258, 1232, 1, 0, 0, 0, 1258, 1233, 1, 0, 0, 0, 1258, 1234, 1, 0, 0, 0, 1258, 1235, 1, 0, 0, 0, 1258, 1236, 1, 0, 0, 0, 1258, 1237, 1, 0, 0, 0, 1258, 1238, 1, 0, 0, 0, 1258, 1239, 1, 0, 0, 0, 1258, 1240, 1, 0, 0, 0, 1258, 1241, 1, 0, 0, 0, 1258, 1242, 1, 0, 0, 0, 1258, 1243, 1, 0, 0, 0, 1258, 1244, 1, 0, 0, 0, 1258, 1245, 1, 0, 0, 0, 1258, 1246, 1, 0, 0, 0, 1258, 1247, 1, 0, 0, 0, 1258, 1248, 1, 0, 0, 0, 1258, 1249, 1, 0, 0, 0, 1258, 1250, 1, 0, 0, 0, 1258, 1251, 1, 0, 0, 0, 1258, 1252, 1, 0, 0, 0, 1258, 1253, 1, 0, 0, 0, 1258, 1254, 1, 0, 0, 0, 1258, 1255, 1, 0, 0, 0, 1258, 1256, 1, 0, 0, 0, 1258, 1257, 1, 0, 0, 0, 1259, 39, 1, 0, 0, 0, 1260, 1261, 5, 151, 0, 0, 1261, 1262, 5, 117, 0, 0, 1262, 41, 1, 0, 0, 0, 1263, 1264, 7, 2, 0, 0, 1264, 43, 1, 0, 0, 0, 1265, 1266, 5, 151, 0, 0, 1266, 1267, 5, 215, 0, 0, 1267, 1268, 5, 117, 0, 0, 1268, 45, 1, 0, 0, 0, 1269, 1270, 5, 135, 0, 0, 1270, 47, 1, 0, 0, 0, 1271, 1272, 3, 968, 484, 0, 1272, 1273, 5, 283, 0, 0, 1273, 49, 1, 0, 0, 0, 1274, 1275, 3, 970, 485, 0, 1275, 1276, 5, 283, 0, 0, 1276, 51, 1, 0, 0, 0, 1277, 1278, 5, 320, 0, 0, 1278, 1279, 5, 17, 0, 0, 1279, 1280, 5, 92, 0, 0, 1280, 53, 1, 0, 0, 0, 1281, 1282, 5, 227, 0, 0, 1282, 1283, 5, 277, 0, 0, 1283, 55, 1, 0, 0, 0, 1284, 1286, 5, 58, 0, 0, 1285, 1287, 5, 272, 0, 0, 1286, 1285, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 3, 92, 46, 0, 1289, 1291, 3, 44, 22, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1294, 3, 654, 327, 0, 1293, 1295, 3, 72, 36, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1298, 3, 58, 29, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 1, 0, 0, 0, 1299, 1301, 3, 60, 30, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1305, 1, 0, 0, 0, 1302, 1303, 5, 386, 0, 0, 1303, 1304, 5, 76, 0, 0, 1304, 1306, 3, 62, 31, 0, 1305, 1302, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1324, 1, 0, 0, 0, 1307, 1308, 5, 58, 0, 0, 1308, 1309, 5, 272, 0, 0, 1309, 1311, 3, 92, 46, 0, 1310, 1312, 3, 44, 22, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 3, 654, 327, 0, 1314, 1316, 3, 72, 36, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1321, 3, 66, 33, 0, 1318, 1319, 5, 386, 0, 0, 1319, 1320, 5, 76, 0, 0, 1320, 1322, 3, 62, 31, 0, 1321, 1318, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1284, 1, 0, 0, 0, 1323, 1307, 1, 0, 0, 0, 1324, 57, 1, 0, 0, 0, 1325, 1326, 5, 188, 0, 0, 1326, 1327, 5, 425, 0, 0, 1327, 59, 1, 0, 0, 0, 1328, 1329, 5, 195, 0, 0, 1329, 1330, 5, 425, 0, 0, 1330, 61, 1, 0, 0, 0, 1331, 1332, 5, 398, 0, 0, 1332, 1333, 3, 64, 32, 0, 1333, 1334, 5, 399, 0, 0, 1334, 63, 1, 0, 0, 0, 1335, 1340, 3, 256, 128, 0, 1336, 1337, 5, 396, 0, 0, 1337, 1339, 3, 256, 128, 0, 1338, 1336, 1, 0, 0, 0, 1339, 1342, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 65, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1343, 1344, 5, 369, 0, 0, 1344, 1345, 3, 652, 326, 0, 1345, 67, 1, 0, 0, 0, 1346, 1347, 5, 367, 0, 0, 1347, 1348, 3, 652, 326, 0, 1348, 69, 1, 0, 0, 0, 1349, 1350, 5, 101, 0, 0, 1350, 1352, 3, 92, 46, 0, 1351, 1353, 3, 40, 20, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1356, 3, 652, 326, 0, 1355, 1357, 3, 42, 21, 0, 1356, 1355, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 71, 1, 0, 0, 0, 1358, 1359, 5, 47, 0, 0, 1359, 1360, 5, 425, 0, 0, 1360, 73, 1, 0, 0, 0, 1361, 1363, 5, 350, 0, 0, 1362, 1364, 5, 328, 0, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1371, 3, 542, 271, 0, 1366, 1367, 5, 46, 0, 0, 1367, 1368, 5, 398, 0, 0, 1368, 1369, 3, 280, 140, 0, 1369, 1370, 5, 399, 0, 0, 1370, 1372, 1, 0, 0, 0, 1371, 1366, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1374, 1, 0, 0, 0, 1373, 1375, 3, 46, 23, 0, 1374, 1373, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 75, 1, 0, 0, 0, 1376, 1377, 5, 101, 0, 0, 1377, 1379, 5, 328, 0, 0, 1378, 1380, 3, 40, 20, 0, 1379, 1378, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1383, 3, 658, 329, 0, 1382, 1384, 5, 254, 0, 0, 1383, 1382, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1386, 1, 0, 0, 0, 1385, 1387, 3, 18, 9, 0, 1386, 1385, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 77, 1, 0, 0, 0, 1388, 1389, 5, 160, 0, 0, 1389, 1390, 5, 425, 0, 0, 1390, 1391, 5, 300, 0, 0, 1391, 1392, 5, 425, 0, 0, 1392, 79, 1, 0, 0, 0, 1393, 1396, 3, 924, 462, 0, 1394, 1395, 5, 394, 0, 0, 1395, 1397, 3, 924, 462, 0, 1396, 1394, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1411, 1, 0, 0, 0, 1398, 1408, 3, 924, 462, 0, 1399, 1404, 5, 394, 0, 0, 1400, 1405, 5, 104, 0, 0, 1401, 1405, 5, 175, 0, 0, 1402, 1405, 5, 374, 0, 0, 1403, 1405, 3, 924, 462, 0, 1404, 1400, 1, 0, 0, 0, 1404, 1401, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 1407, 1, 0, 0, 0, 1406, 1399, 1, 0, 0, 0, 1407, 1410, 1, 0, 0, 0, 1408, 1406, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1412, 1, 0, 0, 0, 1410, 1408, 1, 0, 0, 0, 1411, 1398, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 81, 1, 0, 0, 0, 1413, 1415, 3, 80, 40, 0, 1414, 1416, 3, 910, 455, 0, 1415, 1414, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 83, 1, 0, 0, 0, 1417, 1419, 3, 656, 328, 0, 1418, 1420, 3, 910, 455, 0, 1419, 1418, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1422, 1, 0, 0, 0, 1421, 1423, 3, 286, 143, 0, 1422, 1421, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 85, 1, 0, 0, 0, 1424, 1447, 7, 3, 0, 0, 1425, 1427, 3, 92, 46, 0, 1426, 1428, 5, 122, 0, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 3, 652, 326, 0, 1430, 1448, 1, 0, 0, 0, 1431, 1433, 5, 69, 0, 0, 1432, 1434, 5, 122, 0, 0, 1433, 1432, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1448, 3, 652, 326, 0, 1436, 1438, 5, 141, 0, 0, 1437, 1439, 5, 122, 0, 0, 1438, 1437, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1448, 3, 780, 390, 0, 1441, 1444, 5, 138, 0, 0, 1442, 1444, 5, 122, 0, 0, 1443, 1441, 1, 0, 0, 0, 1443, 1442, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1448, 3, 84, 42, 0, 1446, 1448, 3, 84, 42, 0, 1447, 1425, 1, 0, 0, 0, 1447, 1431, 1, 0, 0, 0, 1447, 1436, 1, 0, 0, 0, 1447, 1443, 1, 0, 0, 0, 1447, 1446, 1, 0, 0, 0, 1448, 87, 1, 0, 0, 0, 1449, 1450, 5, 10, 0, 0, 1450, 1451, 5, 328, 0, 0, 1451, 1464, 3, 908, 454, 0, 1452, 1453, 5, 52, 0, 0, 1453, 1460, 5, 318, 0, 0, 1454, 1461, 5, 214, 0, 0, 1455, 1456, 5, 134, 0, 0, 1456, 1458, 5, 46, 0, 0, 1457, 1459, 3, 280, 140, 0, 1458, 1457, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1461, 1, 0, 0, 0, 1460, 1454, 1, 0, 0, 0, 1460, 1455, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1465, 1, 0, 0, 0, 1462, 1463, 5, 33, 0, 0, 1463, 1465, 5, 203, 0, 0, 1464, 1452, 1, 0, 0, 0, 1464, 1462, 1, 0, 0, 0, 1465, 89, 1, 0, 0, 0, 1466, 1467, 7, 4, 0, 0, 1467, 91, 1, 0, 0, 0, 1468, 1469, 7, 5, 0, 0, 1469, 93, 1, 0, 0, 0, 1470, 1471, 5, 307, 0, 0, 1471, 1474, 7, 6, 0, 0, 1472, 1473, 5, 183, 0, 0, 1473, 1475, 3, 216, 108, 0, 1474, 1472, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1664, 1, 0, 0, 0, 1476, 1478, 5, 307, 0, 0, 1477, 1479, 5, 122, 0, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1484, 5, 329, 0, 0, 1481, 1482, 3, 90, 45, 0, 1482, 1483, 3, 652, 326, 0, 1483, 1485, 1, 0, 0, 0, 1484, 1481, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1487, 1, 0, 0, 0, 1486, 1488, 3, 96, 48, 0, 1487, 1486, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1664, 1, 0, 0, 0, 1489, 1490, 5, 307, 0, 0, 1490, 1494, 5, 378, 0, 0, 1491, 1492, 3, 90, 45, 0, 1492, 1493, 3, 652, 326, 0, 1493, 1495, 1, 0, 0, 0, 1494, 1491, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1499, 1, 0, 0, 0, 1496, 1497, 5, 183, 0, 0, 1497, 1500, 3, 216, 108, 0, 1498, 1500, 3, 216, 108, 0, 1499, 1496, 1, 0, 0, 0, 1499, 1498, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1664, 1, 0, 0, 0, 1501, 1502, 5, 307, 0, 0, 1502, 1503, 5, 201, 0, 0, 1503, 1507, 5, 378, 0, 0, 1504, 1505, 3, 90, 45, 0, 1505, 1506, 3, 652, 326, 0, 1506, 1508, 1, 0, 0, 0, 1507, 1504, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1512, 1, 0, 0, 0, 1509, 1510, 5, 183, 0, 0, 1510, 1513, 3, 216, 108, 0, 1511, 1513, 3, 216, 108, 0, 1512, 1509, 1, 0, 0, 0, 1512, 1511, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1664, 1, 0, 0, 0, 1514, 1516, 5, 307, 0, 0, 1515, 1517, 5, 314, 0, 0, 1516, 1515, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 5, 46, 0, 0, 1519, 1520, 3, 90, 45, 0, 1520, 1524, 3, 656, 328, 0, 1521, 1522, 3, 90, 45, 0, 1522, 1523, 3, 652, 326, 0, 1523, 1525, 1, 0, 0, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1529, 1, 0, 0, 0, 1526, 1527, 5, 183, 0, 0, 1527, 1530, 3, 216, 108, 0, 1528, 1530, 3, 216, 108, 0, 1529, 1526, 1, 0, 0, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1664, 1, 0, 0, 0, 1531, 1532, 5, 307, 0, 0, 1532, 1535, 5, 142, 0, 0, 1533, 1534, 5, 183, 0, 0, 1534, 1536, 3, 780, 390, 0, 1535, 1533, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1664, 1, 0, 0, 0, 1537, 1538, 5, 307, 0, 0, 1538, 1539, 5, 238, 0, 0, 1539, 1541, 3, 656, 328, 0, 1540, 1542, 3, 910, 455, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1544, 1, 0, 0, 0, 1543, 1545, 3, 674, 337, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1547, 1, 0, 0, 0, 1546, 1548, 3, 762, 381, 0, 1547, 1546, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1550, 1, 0, 0, 0, 1549, 1551, 3, 418, 209, 0, 1550, 1549, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1664, 1, 0, 0, 0, 1552, 1553, 5, 307, 0, 0, 1553, 1559, 5, 58, 0, 0, 1554, 1555, 3, 92, 46, 0, 1555, 1556, 3, 652, 326, 0, 1556, 1560, 1, 0, 0, 0, 1557, 1558, 5, 328, 0, 0, 1558, 1560, 3, 658, 329, 0, 1559, 1554, 1, 0, 0, 0, 1559, 1557, 1, 0, 0, 0, 1560, 1664, 1, 0, 0, 0, 1561, 1562, 5, 307, 0, 0, 1562, 1563, 5, 328, 0, 0, 1563, 1567, 5, 122, 0, 0, 1564, 1565, 3, 90, 45, 0, 1565, 1566, 3, 652, 326, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1564, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 5, 183, 0, 0, 1570, 1572, 3, 216, 108, 0, 1571, 1573, 3, 910, 455, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1664, 1, 0, 0, 0, 1574, 1575, 5, 307, 0, 0, 1575, 1576, 5, 331, 0, 0, 1576, 1580, 3, 658, 329, 0, 1577, 1578, 5, 398, 0, 0, 1578, 1579, 5, 425, 0, 0, 1579, 1581, 5, 399, 0, 0, 1580, 1577, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1664, 1, 0, 0, 0, 1582, 1583, 5, 307, 0, 0, 1583, 1595, 5, 190, 0, 0, 1584, 1585, 3, 92, 46, 0, 1585, 1587, 3, 652, 326, 0, 1586, 1588, 5, 122, 0, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1596, 1, 0, 0, 0, 1589, 1591, 3, 82, 41, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1593, 1, 0, 0, 0, 1592, 1594, 5, 122, 0, 0, 1593, 1592, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1596, 1, 0, 0, 0, 1595, 1584, 1, 0, 0, 0, 1595, 1590, 1, 0, 0, 0, 1596, 1664, 1, 0, 0, 0, 1597, 1598, 5, 307, 0, 0, 1598, 1635, 5, 50, 0, 0, 1599, 1636, 3, 466, 233, 0, 1600, 1601, 3, 92, 46, 0, 1601, 1603, 3, 652, 326, 0, 1602, 1604, 3, 468, 234, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1607, 3, 470, 235, 0, 1606, 1605, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 1609, 1, 0, 0, 0, 1608, 1610, 3, 472, 236, 0, 1609, 1608, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1613, 3, 762, 381, 0, 1612, 1611, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1615, 1, 0, 0, 0, 1614, 1616, 3, 418, 209, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1636, 1, 0, 0, 0, 1617, 1619, 3, 82, 41, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1621, 1, 0, 0, 0, 1620, 1622, 3, 468, 234, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 1, 0, 0, 0, 1623, 1625, 3, 470, 235, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1627, 1, 0, 0, 0, 1626, 1628, 3, 472, 236, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1630, 1, 0, 0, 0, 1629, 1631, 3, 762, 381, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 1, 0, 0, 0, 1632, 1634, 3, 418, 209, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1599, 1, 0, 0, 0, 1635, 1600, 1, 0, 0, 0, 1635, 1618, 1, 0, 0, 0, 1636, 1664, 1, 0, 0, 0, 1637, 1638, 5, 307, 0, 0, 1638, 1664, 5, 345, 0, 0, 1639, 1640, 5, 307, 0, 0, 1640, 1641, 5, 54, 0, 0, 1641, 1664, 5, 425, 0, 0, 1642, 1643, 5, 307, 0, 0, 1643, 1647, 5, 279, 0, 0, 1644, 1645, 5, 242, 0, 0, 1645, 1648, 3, 924, 462, 0, 1646, 1648, 5, 243, 0, 0, 1647, 1644, 1, 0, 0, 0, 1647, 1646, 1, 0, 0, 0, 1648, 1664, 1, 0, 0, 0, 1649, 1650, 5, 307, 0, 0, 1650, 1664, 5, 70, 0, 0, 1651, 1653, 5, 307, 0, 0, 1652, 1654, 5, 138, 0, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 7, 7, 0, 0, 1656, 1657, 5, 223, 0, 0, 1657, 1661, 3, 658, 329, 0, 1658, 1659, 3, 90, 45, 0, 1659, 1660, 3, 652, 326, 0, 1660, 1662, 1, 0, 0, 0, 1661, 1658, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1470, 1, 0, 0, 0, 1663, 1476, 1, 0, 0, 0, 1663, 1489, 1, 0, 0, 0, 1663, 1501, 1, 0, 0, 0, 1663, 1514, 1, 0, 0, 0, 1663, 1531, 1, 0, 0, 0, 1663, 1537, 1, 0, 0, 0, 1663, 1552, 1, 0, 0, 0, 1663, 1561, 1, 0, 0, 0, 1663, 1574, 1, 0, 0, 0, 1663, 1582, 1, 0, 0, 0, 1663, 1597, 1, 0, 0, 0, 1663, 1637, 1, 0, 0, 0, 1663, 1639, 1, 0, 0, 0, 1663, 1642, 1, 0, 0, 0, 1663, 1649, 1, 0, 0, 0, 1663, 1651, 1, 0, 0, 0, 1664, 95, 1, 0, 0, 0, 1665, 1666, 5, 383, 0, 0, 1666, 1667, 3, 924, 462, 0, 1667, 1668, 5, 404, 0, 0, 1668, 1669, 5, 425, 0, 0, 1669, 1674, 1, 0, 0, 0, 1670, 1671, 5, 183, 0, 0, 1671, 1674, 3, 216, 108, 0, 1672, 1674, 3, 216, 108, 0, 1673, 1665, 1, 0, 0, 0, 1673, 1670, 1, 0, 0, 0, 1673, 1672, 1, 0, 0, 0, 1674, 97, 1, 0, 0, 0, 1675, 1676, 5, 189, 0, 0, 1676, 1677, 5, 328, 0, 0, 1677, 1679, 3, 658, 329, 0, 1678, 1680, 3, 910, 455, 0, 1679, 1678, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 3, 102, 51, 0, 1682, 99, 1, 0, 0, 0, 1683, 1684, 5, 189, 0, 0, 1684, 1685, 3, 92, 46, 0, 1685, 1686, 3, 652, 326, 0, 1686, 1687, 3, 102, 51, 0, 1687, 101, 1, 0, 0, 0, 1688, 1689, 7, 8, 0, 0, 1689, 103, 1, 0, 0, 0, 1690, 1691, 5, 360, 0, 0, 1691, 1692, 5, 328, 0, 0, 1692, 1694, 3, 658, 329, 0, 1693, 1695, 3, 910, 455, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 105, 1, 0, 0, 0, 1696, 1697, 5, 360, 0, 0, 1697, 1698, 3, 92, 46, 0, 1698, 1699, 3, 652, 326, 0, 1699, 107, 1, 0, 0, 0, 1700, 1701, 5, 58, 0, 0, 1701, 1702, 5, 286, 0, 0, 1702, 1703, 3, 924, 462, 0, 1703, 109, 1, 0, 0, 0, 1704, 1705, 5, 101, 0, 0, 1705, 1706, 5, 286, 0, 0, 1706, 1707, 3, 924, 462, 0, 1707, 111, 1, 0, 0, 0, 1708, 1709, 5, 143, 0, 0, 1709, 1711, 3, 140, 70, 0, 1710, 1712, 3, 134, 67, 0, 1711, 1710, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 5, 340, 0, 0, 1714, 1716, 3, 146, 73, 0, 1715, 1717, 3, 152, 76, 0, 1716, 1715, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 113, 1, 0, 0, 0, 1718, 1720, 5, 282, 0, 0, 1719, 1721, 3, 154, 77, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1724, 3, 140, 70, 0, 1723, 1725, 3, 134, 67, 0, 1724, 1723, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 5, 139, 0, 0, 1727, 1728, 3, 146, 73, 0, 1728, 115, 1, 0, 0, 0, 1729, 1731, 5, 143, 0, 0, 1730, 1732, 5, 286, 0, 0, 1731, 1730, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1738, 3, 924, 462, 0, 1734, 1735, 5, 396, 0, 0, 1735, 1737, 3, 924, 462, 0, 1736, 1734, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1741, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1742, 5, 340, 0, 0, 1742, 1744, 3, 146, 73, 0, 1743, 1745, 3, 158, 79, 0, 1744, 1743, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 117, 1, 0, 0, 0, 1746, 1748, 5, 282, 0, 0, 1747, 1749, 3, 156, 78, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1751, 1, 0, 0, 0, 1750, 1752, 5, 286, 0, 0, 1751, 1750, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1758, 3, 924, 462, 0, 1754, 1755, 5, 396, 0, 0, 1755, 1757, 3, 924, 462, 0, 1756, 1754, 1, 0, 0, 0, 1757, 1760, 1, 0, 0, 0, 1758, 1756, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1761, 1, 0, 0, 0, 1760, 1758, 1, 0, 0, 0, 1761, 1762, 5, 139, 0, 0, 1762, 1763, 3, 146, 73, 0, 1763, 119, 1, 0, 0, 0, 1764, 1765, 5, 307, 0, 0, 1765, 1766, 5, 286, 0, 0, 1766, 1767, 5, 143, 0, 0, 1767, 1768, 3, 148, 74, 0, 1768, 121, 1, 0, 0, 0, 1769, 1770, 5, 307, 0, 0, 1770, 1771, 5, 287, 0, 0, 1771, 123, 1, 0, 0, 0, 1772, 1773, 5, 307, 0, 0, 1773, 1774, 5, 62, 0, 0, 1774, 1775, 5, 287, 0, 0, 1775, 125, 1, 0, 0, 0, 1776, 1777, 5, 303, 0, 0, 1777, 1781, 5, 286, 0, 0, 1778, 1782, 5, 7, 0, 0, 1779, 1782, 5, 212, 0, 0, 1780, 1782, 3, 924, 462, 0, 1781, 1778, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1781, 1780, 1, 0, 0, 0, 1782, 127, 1, 0, 0, 0, 1783, 1784, 5, 307, 0, 0, 1784, 1786, 5, 143, 0, 0, 1785, 1787, 3, 148, 74, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1790, 1, 0, 0, 0, 1788, 1789, 5, 223, 0, 0, 1789, 1791, 3, 132, 66, 0, 1790, 1788, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 129, 1, 0, 0, 0, 1792, 1793, 5, 307, 0, 0, 1793, 1794, 5, 251, 0, 0, 1794, 1795, 3, 924, 462, 0, 1795, 131, 1, 0, 0, 0, 1796, 1799, 5, 7, 0, 0, 1797, 1799, 3, 138, 69, 0, 1798, 1796, 1, 0, 0, 0, 1798, 1797, 1, 0, 0, 0, 1799, 133, 1, 0, 0, 0, 1800, 1801, 5, 223, 0, 0, 1801, 1802, 3, 136, 68, 0, 1802, 135, 1, 0, 0, 0, 1803, 1804, 3, 92, 46, 0, 1804, 1805, 3, 652, 326, 0, 1805, 1818, 1, 0, 0, 0, 1806, 1808, 5, 328, 0, 0, 1807, 1806, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1811, 3, 658, 329, 0, 1810, 1812, 3, 910, 455, 0, 1811, 1810, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1818, 1, 0, 0, 0, 1813, 1814, 5, 365, 0, 0, 1814, 1818, 5, 425, 0, 0, 1815, 1816, 5, 302, 0, 0, 1816, 1818, 3, 924, 462, 0, 1817, 1803, 1, 0, 0, 0, 1817, 1807, 1, 0, 0, 0, 1817, 1813, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 137, 1, 0, 0, 0, 1819, 1820, 3, 92, 46, 0, 1820, 1821, 3, 652, 326, 0, 1821, 1840, 1, 0, 0, 0, 1822, 1824, 5, 328, 0, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1830, 3, 658, 329, 0, 1826, 1827, 5, 398, 0, 0, 1827, 1828, 3, 280, 140, 0, 1828, 1829, 5, 399, 0, 0, 1829, 1831, 1, 0, 0, 0, 1830, 1826, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1834, 3, 910, 455, 0, 1833, 1832, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1840, 1, 0, 0, 0, 1835, 1836, 5, 365, 0, 0, 1836, 1840, 5, 425, 0, 0, 1837, 1838, 5, 302, 0, 0, 1838, 1840, 3, 924, 462, 0, 1839, 1819, 1, 0, 0, 0, 1839, 1823, 1, 0, 0, 0, 1839, 1835, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1840, 139, 1, 0, 0, 0, 1841, 1846, 3, 142, 71, 0, 1842, 1843, 5, 396, 0, 0, 1843, 1845, 3, 142, 71, 0, 1844, 1842, 1, 0, 0, 0, 1845, 1848, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 141, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1849, 1854, 3, 144, 72, 0, 1850, 1851, 5, 398, 0, 0, 1851, 1852, 3, 280, 140, 0, 1852, 1853, 5, 399, 0, 0, 1853, 1855, 1, 0, 0, 0, 1854, 1850, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 143, 1, 0, 0, 0, 1856, 1857, 7, 9, 0, 0, 1857, 145, 1, 0, 0, 0, 1858, 1863, 3, 148, 74, 0, 1859, 1860, 5, 396, 0, 0, 1860, 1862, 3, 148, 74, 0, 1861, 1859, 1, 0, 0, 0, 1862, 1865, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 147, 1, 0, 0, 0, 1865, 1863, 1, 0, 0, 0, 1866, 1867, 5, 368, 0, 0, 1867, 1873, 3, 928, 464, 0, 1868, 1869, 5, 144, 0, 0, 1869, 1873, 3, 928, 464, 0, 1870, 1871, 5, 286, 0, 0, 1871, 1873, 3, 924, 462, 0, 1872, 1866, 1, 0, 0, 0, 1872, 1868, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1873, 149, 1, 0, 0, 0, 1874, 1875, 5, 368, 0, 0, 1875, 1880, 3, 928, 464, 0, 1876, 1877, 5, 286, 0, 0, 1877, 1880, 3, 924, 462, 0, 1878, 1880, 3, 924, 462, 0, 1879, 1874, 1, 0, 0, 0, 1879, 1876, 1, 0, 0, 0, 1879, 1878, 1, 0, 0, 0, 1880, 151, 1, 0, 0, 0, 1881, 1882, 5, 386, 0, 0, 1882, 1883, 5, 143, 0, 0, 1883, 1884, 5, 226, 0, 0, 1884, 153, 1, 0, 0, 0, 1885, 1886, 5, 143, 0, 0, 1886, 1887, 5, 226, 0, 0, 1887, 1888, 5, 134, 0, 0, 1888, 155, 1, 0, 0, 0, 1889, 1890, 5, 5, 0, 0, 1890, 1891, 5, 226, 0, 0, 1891, 1892, 5, 134, 0, 0, 1892, 157, 1, 0, 0, 0, 1893, 1894, 5, 386, 0, 0, 1894, 1895, 5, 5, 0, 0, 1895, 1896, 5, 226, 0, 0, 1896, 159, 1, 0, 0, 0, 1897, 1899, 5, 211, 0, 0, 1898, 1900, 5, 275, 0, 0, 1899, 1898, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1902, 5, 328, 0, 0, 1902, 1908, 3, 658, 329, 0, 1903, 1904, 7, 10, 0, 0, 1904, 1906, 5, 238, 0, 0, 1905, 1907, 3, 914, 457, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1909, 1, 0, 0, 0, 1908, 1903, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 161, 1, 0, 0, 0, 1910, 1915, 3, 164, 82, 0, 1911, 1912, 5, 396, 0, 0, 1912, 1914, 3, 164, 82, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1917, 1, 0, 0, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 163, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1918, 1919, 3, 166, 83, 0, 1919, 1920, 5, 425, 0, 0, 1920, 165, 1, 0, 0, 0, 1921, 1922, 7, 11, 0, 0, 1922, 167, 1, 0, 0, 0, 1923, 1925, 5, 58, 0, 0, 1924, 1926, 5, 332, 0, 0, 1925, 1924, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 5, 141, 0, 0, 1928, 1929, 3, 778, 389, 0, 1929, 1930, 5, 17, 0, 0, 1930, 1933, 5, 425, 0, 0, 1931, 1932, 5, 369, 0, 0, 1932, 1934, 3, 162, 81, 0, 1933, 1931, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 169, 1, 0, 0, 0, 1935, 1937, 5, 101, 0, 0, 1936, 1938, 5, 332, 0, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1941, 5, 141, 0, 0, 1940, 1942, 3, 40, 20, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1944, 3, 780, 390, 0, 1944, 171, 1, 0, 0, 0, 1945, 1946, 5, 270, 0, 0, 1946, 1947, 7, 12, 0, 0, 1947, 173, 1, 0, 0, 0, 1948, 1949, 5, 58, 0, 0, 1949, 1950, 5, 332, 0, 0, 1950, 1951, 5, 193, 0, 0, 1951, 1952, 5, 431, 0, 0, 1952, 1954, 5, 398, 0, 0, 1953, 1955, 3, 274, 137, 0, 1954, 1953, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 5, 399, 0, 0, 1957, 1958, 3, 826, 413, 0, 1958, 175, 1, 0, 0, 0, 1959, 1960, 5, 101, 0, 0, 1960, 1961, 5, 332, 0, 0, 1961, 1963, 5, 193, 0, 0, 1962, 1964, 3, 40, 20, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 5, 431, 0, 0, 1966, 177, 1, 0, 0, 0, 1967, 1968, 5, 58, 0, 0, 1968, 1969, 5, 155, 0, 0, 1969, 1970, 3, 924, 462, 0, 1970, 1971, 5, 223, 0, 0, 1971, 1972, 5, 328, 0, 0, 1972, 1973, 3, 658, 329, 0, 1973, 1974, 3, 290, 145, 0, 1974, 1975, 5, 17, 0, 0, 1975, 1979, 5, 425, 0, 0, 1976, 1977, 5, 386, 0, 0, 1977, 1978, 5, 84, 0, 0, 1978, 1980, 5, 264, 0, 0, 1979, 1976, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1982, 5, 150, 0, 0, 1982, 1984, 3, 252, 126, 0, 1983, 1981, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1988, 1, 0, 0, 0, 1985, 1986, 5, 154, 0, 0, 1986, 1987, 5, 328, 0, 0, 1987, 1989, 3, 658, 329, 0, 1988, 1985, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1993, 1, 0, 0, 0, 1990, 1991, 5, 237, 0, 0, 1991, 1992, 5, 32, 0, 0, 1992, 1994, 3, 290, 145, 0, 1993, 1990, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1999, 1, 0, 0, 0, 1995, 1997, 3, 248, 124, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2000, 3, 270, 135, 0, 1999, 1996, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2003, 1, 0, 0, 0, 2001, 2002, 5, 188, 0, 0, 2002, 2004, 5, 425, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2006, 1, 0, 0, 0, 2005, 2007, 3, 250, 125, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2009, 1, 0, 0, 0, 2008, 2010, 3, 218, 109, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 179, 1, 0, 0, 0, 2011, 2012, 5, 101, 0, 0, 2012, 2014, 5, 155, 0, 0, 2013, 2015, 3, 40, 20, 0, 2014, 2013, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2017, 3, 924, 462, 0, 2017, 2018, 5, 223, 0, 0, 2018, 2019, 3, 658, 329, 0, 2019, 181, 1, 0, 0, 0, 2020, 2022, 5, 58, 0, 0, 2021, 2023, 3, 54, 27, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2026, 5, 377, 0, 0, 2025, 2027, 3, 44, 22, 0, 2026, 2025, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2033, 3, 664, 332, 0, 2029, 2030, 5, 398, 0, 0, 2030, 2031, 3, 334, 167, 0, 2031, 2032, 5, 399, 0, 0, 2032, 2034, 1, 0, 0, 0, 2033, 2029, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2037, 3, 218, 109, 0, 2036, 2035, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2039, 1, 0, 0, 0, 2038, 2040, 3, 184, 92, 0, 2039, 2038, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2042, 1, 0, 0, 0, 2041, 2043, 3, 250, 125, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2045, 5, 17, 0, 0, 2045, 2046, 3, 412, 206, 0, 2046, 183, 1, 0, 0, 0, 2047, 2048, 5, 237, 0, 0, 2048, 2054, 5, 223, 0, 0, 2049, 2050, 5, 398, 0, 0, 2050, 2055, 3, 280, 140, 0, 2051, 2052, 5, 315, 0, 0, 2052, 2053, 5, 398, 0, 0, 2053, 2055, 3, 226, 113, 0, 2054, 2049, 1, 0, 0, 0, 2054, 2051, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 5, 399, 0, 0, 2057, 185, 1, 0, 0, 0, 2058, 2061, 3, 188, 94, 0, 2059, 2061, 3, 190, 95, 0, 2060, 2058, 1, 0, 0, 0, 2060, 2059, 1, 0, 0, 0, 2061, 187, 1, 0, 0, 0, 2062, 2063, 5, 42, 0, 0, 2063, 2064, 5, 223, 0, 0, 2064, 2065, 5, 398, 0, 0, 2065, 2066, 3, 280, 140, 0, 2066, 2067, 5, 399, 0, 0, 2067, 189, 1, 0, 0, 0, 2068, 2069, 3, 192, 96, 0, 2069, 2070, 3, 194, 97, 0, 2070, 191, 1, 0, 0, 0, 2071, 2072, 5, 98, 0, 0, 2072, 2073, 5, 223, 0, 0, 2073, 2074, 5, 398, 0, 0, 2074, 2075, 3, 280, 140, 0, 2075, 2076, 5, 399, 0, 0, 2076, 193, 1, 0, 0, 0, 2077, 2078, 5, 314, 0, 0, 2078, 2079, 5, 223, 0, 0, 2079, 2080, 5, 398, 0, 0, 2080, 2081, 3, 280, 140, 0, 2081, 2082, 5, 399, 0, 0, 2082, 195, 1, 0, 0, 0, 2083, 2084, 5, 101, 0, 0, 2084, 2086, 5, 377, 0, 0, 2085, 2087, 3, 40, 20, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2089, 3, 662, 331, 0, 2089, 197, 1, 0, 0, 0, 2090, 2091, 5, 58, 0, 0, 2091, 2092, 5, 201, 0, 0, 2092, 2094, 5, 377, 0, 0, 2093, 2095, 3, 44, 22, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 3, 664, 332, 0, 2097, 2099, 3, 50, 25, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 218, 109, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 184, 92, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2107, 1, 0, 0, 0, 2106, 2108, 3, 186, 93, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2110, 1, 0, 0, 0, 2109, 2111, 3, 248, 124, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2114, 3, 270, 135, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2117, 3, 272, 136, 0, 2116, 2115, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2119, 1, 0, 0, 0, 2118, 2120, 3, 250, 125, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2122, 5, 17, 0, 0, 2122, 2123, 3, 412, 206, 0, 2123, 199, 1, 0, 0, 0, 2124, 2125, 5, 101, 0, 0, 2125, 2126, 5, 201, 0, 0, 2126, 2128, 5, 377, 0, 0, 2127, 2129, 3, 40, 20, 0, 2128, 2127, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 2131, 3, 662, 331, 0, 2131, 201, 1, 0, 0, 0, 2132, 2133, 5, 58, 0, 0, 2133, 2134, 5, 292, 0, 0, 2134, 2135, 5, 257, 0, 0, 2135, 2136, 3, 924, 462, 0, 2136, 2138, 3, 210, 105, 0, 2137, 2139, 3, 212, 106, 0, 2138, 2137, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2142, 3, 294, 147, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2144, 3, 214, 107, 0, 2144, 203, 1, 0, 0, 0, 2145, 2146, 5, 101, 0, 0, 2146, 2147, 5, 292, 0, 0, 2147, 2148, 5, 257, 0, 0, 2148, 2149, 3, 924, 462, 0, 2149, 205, 1, 0, 0, 0, 2150, 2151, 5, 9, 0, 0, 2151, 2152, 5, 292, 0, 0, 2152, 2153, 5, 257, 0, 0, 2153, 2154, 3, 924, 462, 0, 2154, 2155, 3, 208, 104, 0, 2155, 207, 1, 0, 0, 0, 2156, 2162, 3, 210, 105, 0, 2157, 2162, 3, 212, 106, 0, 2158, 2162, 3, 294, 147, 0, 2159, 2162, 3, 214, 107, 0, 2160, 2162, 5, 115, 0, 0, 2161, 2156, 1, 0, 0, 0, 2161, 2157, 1, 0, 0, 0, 2161, 2158, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2160, 1, 0, 0, 0, 2162, 209, 1, 0, 0, 0, 2163, 2164, 5, 59, 0, 0, 2164, 2179, 5, 425, 0, 0, 2165, 2167, 5, 111, 0, 0, 2166, 2168, 5, 430, 0, 0, 2167, 2166, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2176, 3, 824, 412, 0, 2170, 2174, 5, 20, 0, 0, 2171, 2172, 5, 222, 0, 0, 2172, 2174, 5, 32, 0, 0, 2173, 2170, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2177, 5, 425, 0, 0, 2176, 2173, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 1, 0, 0, 0, 2178, 2163, 1, 0, 0, 0, 2178, 2165, 1, 0, 0, 0, 2179, 211, 1, 0, 0, 0, 2180, 2181, 5, 116, 0, 0, 2181, 2182, 5, 17, 0, 0, 2182, 2183, 5, 425, 0, 0, 2183, 213, 1, 0, 0, 0, 2184, 2186, 5, 85, 0, 0, 2185, 2184, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2188, 5, 17, 0, 0, 2188, 2189, 3, 2, 1, 0, 2189, 215, 1, 0, 0, 0, 2190, 2193, 3, 924, 462, 0, 2191, 2193, 5, 425, 0, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2191, 1, 0, 0, 0, 2193, 217, 1, 0, 0, 0, 2194, 2195, 5, 47, 0, 0, 2195, 2196, 5, 425, 0, 0, 2196, 219, 1, 0, 0, 0, 2197, 2198, 5, 237, 0, 0, 2198, 2207, 5, 32, 0, 0, 2199, 2202, 5, 398, 0, 0, 2200, 2203, 3, 222, 111, 0, 2201, 2203, 3, 224, 112, 0, 2202, 2200, 1, 0, 0, 0, 2202, 2201, 1, 0, 0, 0, 2203, 2208, 1, 0, 0, 0, 2204, 2205, 5, 315, 0, 0, 2205, 2206, 5, 398, 0, 0, 2206, 2208, 3, 226, 113, 0, 2207, 2199, 1, 0, 0, 0, 2207, 2204, 1, 0, 0, 0, 2208, 2209, 1, 0, 0, 0, 2209, 2210, 5, 399, 0, 0, 2210, 221, 1, 0, 0, 0, 2211, 2216, 3, 348, 174, 0, 2212, 2213, 5, 396, 0, 0, 2213, 2215, 3, 348, 174, 0, 2214, 2212, 1, 0, 0, 0, 2215, 2218, 1, 0, 0, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 223, 1, 0, 0, 0, 2218, 2216, 1, 0, 0, 0, 2219, 2224, 3, 282, 141, 0, 2220, 2221, 5, 396, 0, 0, 2221, 2223, 3, 282, 141, 0, 2222, 2220, 1, 0, 0, 0, 2223, 2226, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 225, 1, 0, 0, 0, 2226, 2224, 1, 0, 0, 0, 2227, 2232, 3, 228, 114, 0, 2228, 2229, 5, 396, 0, 0, 2229, 2231, 3, 228, 114, 0, 2230, 2228, 1, 0, 0, 0, 2231, 2234, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 227, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2235, 2236, 3, 230, 115, 0, 2236, 229, 1, 0, 0, 0, 2237, 2256, 3, 282, 141, 0, 2238, 2243, 3, 974, 487, 0, 2239, 2243, 3, 976, 488, 0, 2240, 2243, 3, 980, 490, 0, 2241, 2243, 3, 982, 491, 0, 2242, 2238, 1, 0, 0, 0, 2242, 2239, 1, 0, 0, 0, 2242, 2240, 1, 0, 0, 0, 2242, 2241, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2245, 5, 398, 0, 0, 2245, 2246, 3, 282, 141, 0, 2246, 2247, 5, 399, 0, 0, 2247, 2256, 1, 0, 0, 0, 2248, 2249, 7, 13, 0, 0, 2249, 2250, 5, 398, 0, 0, 2250, 2251, 5, 430, 0, 0, 2251, 2252, 5, 396, 0, 0, 2252, 2253, 3, 282, 141, 0, 2253, 2254, 5, 399, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2237, 1, 0, 0, 0, 2255, 2242, 1, 0, 0, 0, 2255, 2248, 1, 0, 0, 0, 2256, 231, 1, 0, 0, 0, 2257, 2258, 5, 42, 0, 0, 2258, 2259, 5, 32, 0, 0, 2259, 2260, 5, 398, 0, 0, 2260, 2261, 3, 280, 140, 0, 2261, 2268, 5, 399, 0, 0, 2262, 2263, 5, 314, 0, 0, 2263, 2264, 5, 32, 0, 0, 2264, 2265, 5, 398, 0, 0, 2265, 2266, 3, 288, 144, 0, 2266, 2267, 5, 399, 0, 0, 2267, 2269, 1, 0, 0, 0, 2268, 2262, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2271, 5, 166, 0, 0, 2271, 2272, 5, 430, 0, 0, 2272, 2273, 5, 31, 0, 0, 2273, 233, 1, 0, 0, 0, 2274, 2275, 5, 42, 0, 0, 2275, 2276, 5, 166, 0, 0, 2276, 2277, 5, 430, 0, 0, 2277, 2278, 5, 31, 0, 0, 2278, 235, 1, 0, 0, 0, 2279, 2280, 5, 309, 0, 0, 2280, 2281, 5, 32, 0, 0, 2281, 2282, 5, 398, 0, 0, 2282, 2283, 3, 280, 140, 0, 2283, 2284, 5, 399, 0, 0, 2284, 2285, 5, 223, 0, 0, 2285, 2286, 5, 398, 0, 0, 2286, 2287, 3, 316, 158, 0, 2287, 2289, 5, 399, 0, 0, 2288, 2290, 3, 52, 26, 0, 2289, 2288, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 237, 1, 0, 0, 0, 2291, 2294, 3, 244, 122, 0, 2292, 2294, 3, 246, 123, 0, 2293, 2291, 1, 0, 0, 0, 2293, 2292, 1, 0, 0, 0, 2294, 239, 1, 0, 0, 0, 2295, 2296, 5, 265, 0, 0, 2296, 2297, 5, 425, 0, 0, 2297, 241, 1, 0, 0, 0, 2298, 2299, 5, 266, 0, 0, 2299, 2300, 5, 425, 0, 0, 2300, 243, 1, 0, 0, 0, 2301, 2302, 5, 290, 0, 0, 2302, 2303, 5, 137, 0, 0, 2303, 2304, 5, 300, 0, 0, 2304, 2308, 5, 425, 0, 0, 2305, 2306, 5, 386, 0, 0, 2306, 2307, 5, 301, 0, 0, 2307, 2309, 3, 252, 126, 0, 2308, 2305, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 245, 1, 0, 0, 0, 2310, 2311, 5, 290, 0, 0, 2311, 2312, 5, 137, 0, 0, 2312, 2314, 5, 87, 0, 0, 2313, 2315, 3, 260, 130, 0, 2314, 2313, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2318, 3, 262, 131, 0, 2317, 2316, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2320, 1, 0, 0, 0, 2319, 2321, 3, 264, 132, 0, 2320, 2319, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2323, 1, 0, 0, 0, 2322, 2324, 3, 266, 133, 0, 2323, 2322, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2327, 3, 268, 134, 0, 2326, 2325, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 247, 1, 0, 0, 0, 2328, 2331, 3, 246, 123, 0, 2329, 2331, 3, 244, 122, 0, 2330, 2328, 1, 0, 0, 0, 2330, 2329, 1, 0, 0, 0, 2331, 249, 1, 0, 0, 0, 2332, 2333, 5, 331, 0, 0, 2333, 2334, 3, 252, 126, 0, 2334, 251, 1, 0, 0, 0, 2335, 2336, 5, 398, 0, 0, 2336, 2337, 3, 254, 127, 0, 2337, 2338, 5, 399, 0, 0, 2338, 253, 1, 0, 0, 0, 2339, 2344, 3, 256, 128, 0, 2340, 2341, 5, 396, 0, 0, 2341, 2343, 3, 256, 128, 0, 2342, 2340, 1, 0, 0, 0, 2343, 2346, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2356, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2347, 2352, 3, 258, 129, 0, 2348, 2349, 5, 396, 0, 0, 2349, 2351, 3, 258, 129, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2356, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2339, 1, 0, 0, 0, 2355, 2347, 1, 0, 0, 0, 2356, 255, 1, 0, 0, 0, 2357, 2358, 5, 425, 0, 0, 2358, 2359, 5, 404, 0, 0, 2359, 2360, 5, 425, 0, 0, 2360, 257, 1, 0, 0, 0, 2361, 2362, 5, 425, 0, 0, 2362, 259, 1, 0, 0, 0, 2363, 2364, 5, 127, 0, 0, 2364, 2365, 5, 333, 0, 0, 2365, 2366, 5, 32, 0, 0, 2366, 2370, 5, 425, 0, 0, 2367, 2368, 5, 110, 0, 0, 2368, 2369, 5, 32, 0, 0, 2369, 2371, 5, 425, 0, 0, 2370, 2367, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 261, 1, 0, 0, 0, 2372, 2373, 5, 44, 0, 0, 2373, 2374, 5, 169, 0, 0, 2374, 2375, 5, 333, 0, 0, 2375, 2376, 5, 32, 0, 0, 2376, 2377, 5, 425, 0, 0, 2377, 263, 1, 0, 0, 0, 2378, 2379, 5, 197, 0, 0, 2379, 2380, 5, 174, 0, 0, 2380, 2381, 5, 333, 0, 0, 2381, 2382, 5, 32, 0, 0, 2382, 2383, 5, 425, 0, 0, 2383, 265, 1, 0, 0, 0, 2384, 2385, 5, 185, 0, 0, 2385, 2386, 5, 333, 0, 0, 2386, 2387, 5, 32, 0, 0, 2387, 2388, 5, 425, 0, 0, 2388, 267, 1, 0, 0, 0, 2389, 2390, 5, 218, 0, 0, 2390, 2391, 5, 85, 0, 0, 2391, 2392, 5, 17, 0, 0, 2392, 2393, 5, 425, 0, 0, 2393, 269, 1, 0, 0, 0, 2394, 2395, 5, 320, 0, 0, 2395, 2396, 5, 17, 0, 0, 2396, 2397, 5, 160, 0, 0, 2397, 2398, 5, 425, 0, 0, 2398, 2399, 5, 232, 0, 0, 2399, 2404, 5, 425, 0, 0, 2400, 2401, 5, 159, 0, 0, 2401, 2402, 5, 425, 0, 0, 2402, 2403, 5, 231, 0, 0, 2403, 2405, 5, 425, 0, 0, 2404, 2400, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2436, 1, 0, 0, 0, 2406, 2407, 5, 320, 0, 0, 2407, 2408, 5, 32, 0, 0, 2408, 2412, 5, 425, 0, 0, 2409, 2410, 5, 386, 0, 0, 2410, 2411, 5, 301, 0, 0, 2411, 2413, 3, 252, 126, 0, 2412, 2409, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 2417, 1, 0, 0, 0, 2414, 2415, 5, 320, 0, 0, 2415, 2416, 5, 17, 0, 0, 2416, 2418, 3, 924, 462, 0, 2417, 2414, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2436, 1, 0, 0, 0, 2419, 2420, 5, 320, 0, 0, 2420, 2421, 5, 32, 0, 0, 2421, 2425, 3, 924, 462, 0, 2422, 2423, 5, 386, 0, 0, 2423, 2424, 5, 301, 0, 0, 2424, 2426, 3, 252, 126, 0, 2425, 2422, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2430, 1, 0, 0, 0, 2427, 2428, 5, 320, 0, 0, 2428, 2429, 5, 17, 0, 0, 2429, 2431, 3, 924, 462, 0, 2430, 2427, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2436, 1, 0, 0, 0, 2432, 2433, 5, 320, 0, 0, 2433, 2434, 5, 17, 0, 0, 2434, 2436, 3, 924, 462, 0, 2435, 2394, 1, 0, 0, 0, 2435, 2406, 1, 0, 0, 0, 2435, 2419, 1, 0, 0, 0, 2435, 2432, 1, 0, 0, 0, 2436, 271, 1, 0, 0, 0, 2437, 2438, 5, 188, 0, 0, 2438, 2439, 5, 425, 0, 0, 2439, 273, 1, 0, 0, 0, 2440, 2445, 3, 342, 171, 0, 2441, 2442, 5, 396, 0, 0, 2442, 2444, 3, 342, 171, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2447, 1, 0, 0, 0, 2445, 2443, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 275, 1, 0, 0, 0, 2447, 2445, 1, 0, 0, 0, 2448, 2453, 3, 344, 172, 0, 2449, 2450, 5, 396, 0, 0, 2450, 2452, 3, 344, 172, 0, 2451, 2449, 1, 0, 0, 0, 2452, 2455, 1, 0, 0, 0, 2453, 2451, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 277, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2456, 2461, 3, 372, 186, 0, 2457, 2458, 5, 396, 0, 0, 2458, 2460, 3, 372, 186, 0, 2459, 2457, 1, 0, 0, 0, 2460, 2463, 1, 0, 0, 0, 2461, 2459, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 279, 1, 0, 0, 0, 2463, 2461, 1, 0, 0, 0, 2464, 2469, 3, 282, 141, 0, 2465, 2466, 5, 396, 0, 0, 2466, 2468, 3, 282, 141, 0, 2467, 2465, 1, 0, 0, 0, 2468, 2471, 1, 0, 0, 0, 2469, 2467, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 281, 1, 0, 0, 0, 2471, 2469, 1, 0, 0, 0, 2472, 2477, 3, 924, 462, 0, 2473, 2474, 5, 394, 0, 0, 2474, 2476, 3, 924, 462, 0, 2475, 2473, 1, 0, 0, 0, 2476, 2479, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2482, 1, 0, 0, 0, 2479, 2477, 1, 0, 0, 0, 2480, 2482, 4, 141, 0, 0, 2481, 2472, 1, 0, 0, 0, 2481, 2480, 1, 0, 0, 0, 2482, 283, 1, 0, 0, 0, 2483, 2484, 3, 924, 462, 0, 2484, 285, 1, 0, 0, 0, 2485, 2495, 3, 282, 141, 0, 2486, 2491, 5, 394, 0, 0, 2487, 2492, 5, 104, 0, 0, 2488, 2492, 5, 175, 0, 0, 2489, 2492, 5, 374, 0, 0, 2490, 2492, 3, 924, 462, 0, 2491, 2487, 1, 0, 0, 0, 2491, 2488, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2491, 2490, 1, 0, 0, 0, 2492, 2494, 1, 0, 0, 0, 2493, 2486, 1, 0, 0, 0, 2494, 2497, 1, 0, 0, 0, 2495, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 287, 1, 0, 0, 0, 2497, 2495, 1, 0, 0, 0, 2498, 2503, 3, 332, 166, 0, 2499, 2500, 5, 396, 0, 0, 2500, 2502, 3, 332, 166, 0, 2501, 2499, 1, 0, 0, 0, 2502, 2505, 1, 0, 0, 0, 2503, 2501, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 289, 1, 0, 0, 0, 2505, 2503, 1, 0, 0, 0, 2506, 2507, 5, 398, 0, 0, 2507, 2508, 3, 280, 140, 0, 2508, 2509, 5, 399, 0, 0, 2509, 291, 1, 0, 0, 0, 2510, 2512, 3, 294, 147, 0, 2511, 2513, 3, 296, 148, 0, 2512, 2511, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2516, 1, 0, 0, 0, 2514, 2516, 3, 298, 149, 0, 2515, 2510, 1, 0, 0, 0, 2515, 2514, 1, 0, 0, 0, 2516, 293, 1, 0, 0, 0, 2517, 2520, 3, 968, 484, 0, 2518, 2520, 3, 970, 485, 0, 2519, 2517, 1, 0, 0, 0, 2519, 2518, 1, 0, 0, 0, 2520, 295, 1, 0, 0, 0, 2521, 2522, 7, 14, 0, 0, 2522, 297, 1, 0, 0, 0, 2523, 2527, 5, 109, 0, 0, 2524, 2525, 5, 215, 0, 0, 2525, 2527, 5, 109, 0, 0, 2526, 2523, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2527, 299, 1, 0, 0, 0, 2528, 2529, 7, 15, 0, 0, 2529, 301, 1, 0, 0, 0, 2530, 2531, 5, 55, 0, 0, 2531, 2533, 3, 924, 462, 0, 2532, 2530, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 3, 306, 153, 0, 2535, 2537, 3, 368, 184, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 303, 1, 0, 0, 0, 2538, 2539, 5, 55, 0, 0, 2539, 2540, 3, 924, 462, 0, 2540, 2542, 3, 306, 153, 0, 2541, 2543, 3, 370, 185, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 305, 1, 0, 0, 0, 2544, 2547, 3, 308, 154, 0, 2545, 2547, 3, 310, 155, 0, 2546, 2544, 1, 0, 0, 0, 2546, 2545, 1, 0, 0, 0, 2547, 307, 1, 0, 0, 0, 2548, 2549, 3, 366, 183, 0, 2549, 2550, 3, 290, 145, 0, 2550, 309, 1, 0, 0, 0, 2551, 2552, 5, 40, 0, 0, 2552, 2553, 5, 398, 0, 0, 2553, 2554, 3, 826, 413, 0, 2554, 2555, 5, 399, 0, 0, 2555, 311, 1, 0, 0, 0, 2556, 2557, 5, 55, 0, 0, 2557, 2559, 3, 924, 462, 0, 2558, 2556, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2561, 5, 136, 0, 0, 2561, 2562, 5, 173, 0, 0, 2562, 2563, 3, 290, 145, 0, 2563, 2564, 5, 268, 0, 0, 2564, 2565, 3, 658, 329, 0, 2565, 2567, 3, 290, 145, 0, 2566, 2568, 3, 368, 184, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 313, 1, 0, 0, 0, 2569, 2570, 5, 55, 0, 0, 2570, 2571, 3, 924, 462, 0, 2571, 2572, 5, 136, 0, 0, 2572, 2573, 5, 173, 0, 0, 2573, 2574, 3, 290, 145, 0, 2574, 2575, 5, 268, 0, 0, 2575, 2576, 3, 658, 329, 0, 2576, 2578, 3, 290, 145, 0, 2577, 2579, 3, 370, 185, 0, 2578, 2577, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 315, 1, 0, 0, 0, 2580, 2583, 3, 322, 161, 0, 2581, 2583, 3, 318, 159, 0, 2582, 2580, 1, 0, 0, 0, 2582, 2581, 1, 0, 0, 0, 2583, 317, 1, 0, 0, 0, 2584, 2589, 3, 320, 160, 0, 2585, 2586, 5, 396, 0, 0, 2586, 2588, 3, 320, 160, 0, 2587, 2585, 1, 0, 0, 0, 2588, 2591, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 319, 1, 0, 0, 0, 2591, 2589, 1, 0, 0, 0, 2592, 2593, 5, 398, 0, 0, 2593, 2594, 3, 322, 161, 0, 2594, 2595, 5, 399, 0, 0, 2595, 321, 1, 0, 0, 0, 2596, 2601, 3, 324, 162, 0, 2597, 2598, 5, 396, 0, 0, 2598, 2600, 3, 324, 162, 0, 2599, 2597, 1, 0, 0, 0, 2600, 2603, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 323, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2604, 2605, 3, 802, 401, 0, 2605, 325, 1, 0, 0, 0, 2606, 2609, 3, 324, 162, 0, 2607, 2609, 3, 320, 160, 0, 2608, 2606, 1, 0, 0, 0, 2608, 2607, 1, 0, 0, 0, 2609, 327, 1, 0, 0, 0, 2610, 2611, 7, 16, 0, 0, 2611, 329, 1, 0, 0, 0, 2612, 2613, 5, 219, 0, 0, 2613, 2614, 7, 17, 0, 0, 2614, 331, 1, 0, 0, 0, 2615, 2617, 3, 282, 141, 0, 2616, 2618, 3, 328, 164, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2620, 1, 0, 0, 0, 2619, 2621, 3, 330, 165, 0, 2620, 2619, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 333, 1, 0, 0, 0, 2622, 2627, 3, 336, 168, 0, 2623, 2624, 5, 396, 0, 0, 2624, 2626, 3, 336, 168, 0, 2625, 2623, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 335, 1, 0, 0, 0, 2629, 2627, 1, 0, 0, 0, 2630, 2633, 3, 284, 142, 0, 2631, 2632, 5, 47, 0, 0, 2632, 2634, 5, 425, 0, 0, 2633, 2631, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 337, 1, 0, 0, 0, 2635, 2636, 7, 16, 0, 0, 2636, 339, 1, 0, 0, 0, 2637, 2640, 3, 282, 141, 0, 2638, 2640, 3, 826, 413, 0, 2639, 2637, 1, 0, 0, 0, 2639, 2638, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 338, 169, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2646, 3, 330, 165, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 341, 1, 0, 0, 0, 2647, 2648, 3, 284, 142, 0, 2648, 2651, 3, 374, 187, 0, 2649, 2650, 5, 47, 0, 0, 2650, 2652, 5, 425, 0, 0, 2651, 2649, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 343, 1, 0, 0, 0, 2653, 2656, 3, 346, 173, 0, 2654, 2656, 3, 348, 174, 0, 2655, 2653, 1, 0, 0, 0, 2655, 2654, 1, 0, 0, 0, 2656, 345, 1, 0, 0, 0, 2657, 2660, 3, 312, 156, 0, 2658, 2660, 3, 302, 151, 0, 2659, 2657, 1, 0, 0, 0, 2659, 2658, 1, 0, 0, 0, 2660, 347, 1, 0, 0, 0, 2661, 2662, 3, 284, 142, 0, 2662, 2664, 3, 374, 187, 0, 2663, 2665, 3, 350, 175, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2668, 1, 0, 0, 0, 2666, 2667, 5, 47, 0, 0, 2667, 2669, 5, 425, 0, 0, 2668, 2666, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 349, 1, 0, 0, 0, 2670, 2673, 3, 352, 176, 0, 2671, 2673, 3, 354, 177, 0, 2672, 2670, 1, 0, 0, 0, 2672, 2671, 1, 0, 0, 0, 2673, 351, 1, 0, 0, 0, 2674, 2675, 5, 55, 0, 0, 2675, 2677, 3, 924, 462, 0, 2676, 2674, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2679, 5, 268, 0, 0, 2679, 2680, 3, 658, 329, 0, 2680, 2681, 5, 398, 0, 0, 2681, 2682, 3, 282, 141, 0, 2682, 2684, 5, 399, 0, 0, 2683, 2685, 3, 368, 184, 0, 2684, 2683, 1, 0, 0, 0, 2684, 2685, 1, 0, 0, 0, 2685, 353, 1, 0, 0, 0, 2686, 2687, 5, 55, 0, 0, 2687, 2689, 3, 924, 462, 0, 2688, 2686, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2692, 3, 362, 181, 0, 2691, 2693, 3, 368, 184, 0, 2692, 2691, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 355, 1, 0, 0, 0, 2694, 2697, 3, 358, 179, 0, 2695, 2697, 3, 360, 180, 0, 2696, 2694, 1, 0, 0, 0, 2696, 2695, 1, 0, 0, 0, 2697, 357, 1, 0, 0, 0, 2698, 2699, 5, 55, 0, 0, 2699, 2701, 3, 924, 462, 0, 2700, 2698, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2703, 5, 268, 0, 0, 2703, 2704, 3, 658, 329, 0, 2704, 2705, 5, 398, 0, 0, 2705, 2706, 3, 282, 141, 0, 2706, 2708, 5, 399, 0, 0, 2707, 2709, 3, 370, 185, 0, 2708, 2707, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 359, 1, 0, 0, 0, 2710, 2711, 5, 55, 0, 0, 2711, 2713, 3, 924, 462, 0, 2712, 2710, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2716, 3, 362, 181, 0, 2715, 2717, 3, 370, 185, 0, 2716, 2715, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 361, 1, 0, 0, 0, 2718, 2719, 5, 215, 0, 0, 2719, 2725, 5, 218, 0, 0, 2720, 2721, 5, 83, 0, 0, 2721, 2725, 3, 364, 182, 0, 2722, 2725, 3, 310, 155, 0, 2723, 2725, 3, 366, 183, 0, 2724, 2718, 1, 0, 0, 0, 2724, 2720, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2724, 2723, 1, 0, 0, 0, 2725, 363, 1, 0, 0, 0, 2726, 2730, 3, 802, 401, 0, 2727, 2730, 3, 774, 387, 0, 2728, 2730, 3, 788, 394, 0, 2729, 2726, 1, 0, 0, 0, 2729, 2727, 1, 0, 0, 0, 2729, 2728, 1, 0, 0, 0, 2730, 365, 1, 0, 0, 0, 2731, 2732, 5, 250, 0, 0, 2732, 2735, 5, 173, 0, 0, 2733, 2735, 5, 357, 0, 0, 2734, 2731, 1, 0, 0, 0, 2734, 2733, 1, 0, 0, 0, 2735, 367, 1, 0, 0, 0, 2736, 2738, 3, 292, 146, 0, 2737, 2739, 3, 300, 150, 0, 2738, 2737, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 369, 1, 0, 0, 0, 2740, 2742, 3, 292, 146, 0, 2741, 2743, 3, 300, 150, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 371, 1, 0, 0, 0, 2744, 2745, 3, 284, 142, 0, 2745, 2746, 5, 395, 0, 0, 2746, 2749, 3, 374, 187, 0, 2747, 2748, 5, 47, 0, 0, 2748, 2750, 5, 425, 0, 0, 2749, 2747, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 373, 1, 0, 0, 0, 2751, 2752, 3, 378, 189, 0, 2752, 375, 1, 0, 0, 0, 2753, 2758, 3, 374, 187, 0, 2754, 2755, 5, 396, 0, 0, 2755, 2757, 3, 374, 187, 0, 2756, 2754, 1, 0, 0, 0, 2757, 2760, 1, 0, 0, 0, 2758, 2756, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 377, 1, 0, 0, 0, 2760, 2758, 1, 0, 0, 0, 2761, 2767, 3, 380, 190, 0, 2762, 2767, 3, 382, 191, 0, 2763, 2767, 3, 384, 192, 0, 2764, 2767, 3, 386, 193, 0, 2765, 2767, 3, 388, 194, 0, 2766, 2761, 1, 0, 0, 0, 2766, 2762, 1, 0, 0, 0, 2766, 2763, 1, 0, 0, 0, 2766, 2764, 1, 0, 0, 0, 2766, 2765, 1, 0, 0, 0, 2767, 379, 1, 0, 0, 0, 2768, 2806, 5, 339, 0, 0, 2769, 2806, 5, 310, 0, 0, 2770, 2806, 5, 162, 0, 0, 2771, 2806, 5, 163, 0, 0, 2772, 2806, 5, 26, 0, 0, 2773, 2806, 5, 28, 0, 0, 2774, 2806, 5, 131, 0, 0, 2775, 2806, 5, 263, 0, 0, 2776, 2778, 5, 100, 0, 0, 2777, 2779, 5, 247, 0, 0, 2778, 2777, 1, 0, 0, 0, 2778, 2779, 1, 0, 0, 0, 2779, 2806, 1, 0, 0, 0, 2780, 2806, 5, 71, 0, 0, 2781, 2806, 5, 72, 0, 0, 2782, 2806, 5, 336, 0, 0, 2783, 2806, 5, 337, 0, 0, 2784, 2785, 5, 336, 0, 0, 2785, 2786, 5, 386, 0, 0, 2786, 2787, 5, 187, 0, 0, 2787, 2788, 5, 335, 0, 0, 2788, 2806, 5, 393, 0, 0, 2789, 2806, 5, 322, 0, 0, 2790, 2806, 5, 27, 0, 0, 2791, 2799, 3, 988, 494, 0, 2792, 2793, 5, 398, 0, 0, 2793, 2796, 5, 430, 0, 0, 2794, 2795, 5, 396, 0, 0, 2795, 2797, 5, 430, 0, 0, 2796, 2794, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2800, 5, 399, 0, 0, 2799, 2792, 1, 0, 0, 0, 2799, 2800, 1, 0, 0, 0, 2800, 2806, 1, 0, 0, 0, 2801, 2802, 7, 18, 0, 0, 2802, 2803, 5, 398, 0, 0, 2803, 2804, 5, 430, 0, 0, 2804, 2806, 5, 399, 0, 0, 2805, 2768, 1, 0, 0, 0, 2805, 2769, 1, 0, 0, 0, 2805, 2770, 1, 0, 0, 0, 2805, 2771, 1, 0, 0, 0, 2805, 2772, 1, 0, 0, 0, 2805, 2773, 1, 0, 0, 0, 2805, 2774, 1, 0, 0, 0, 2805, 2775, 1, 0, 0, 0, 2805, 2776, 1, 0, 0, 0, 2805, 2780, 1, 0, 0, 0, 2805, 2781, 1, 0, 0, 0, 2805, 2782, 1, 0, 0, 0, 2805, 2783, 1, 0, 0, 0, 2805, 2784, 1, 0, 0, 0, 2805, 2789, 1, 0, 0, 0, 2805, 2790, 1, 0, 0, 0, 2805, 2791, 1, 0, 0, 0, 2805, 2801, 1, 0, 0, 0, 2806, 381, 1, 0, 0, 0, 2807, 2808, 5, 16, 0, 0, 2808, 2809, 5, 408, 0, 0, 2809, 2810, 3, 378, 189, 0, 2810, 2811, 5, 410, 0, 0, 2811, 383, 1, 0, 0, 0, 2812, 2813, 5, 323, 0, 0, 2813, 2814, 5, 408, 0, 0, 2814, 2815, 3, 278, 139, 0, 2815, 2816, 5, 410, 0, 0, 2816, 385, 1, 0, 0, 0, 2817, 2818, 5, 197, 0, 0, 2818, 2819, 5, 408, 0, 0, 2819, 2820, 3, 380, 190, 0, 2820, 2821, 5, 396, 0, 0, 2821, 2822, 3, 378, 189, 0, 2822, 2823, 5, 410, 0, 0, 2823, 387, 1, 0, 0, 0, 2824, 2825, 5, 356, 0, 0, 2825, 2826, 5, 408, 0, 0, 2826, 2827, 3, 376, 188, 0, 2827, 2828, 5, 410, 0, 0, 2828, 389, 1, 0, 0, 0, 2829, 2831, 7, 19, 0, 0, 2830, 2832, 7, 20, 0, 0, 2831, 2830, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 391, 1, 0, 0, 0, 2833, 2835, 3, 396, 198, 0, 2834, 2833, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2837, 3, 394, 197, 0, 2837, 393, 1, 0, 0, 0, 2838, 2841, 3, 400, 200, 0, 2839, 2841, 3, 404, 202, 0, 2840, 2838, 1, 0, 0, 0, 2840, 2839, 1, 0, 0, 0, 2841, 395, 1, 0, 0, 0, 2842, 2843, 5, 386, 0, 0, 2843, 2848, 3, 398, 199, 0, 2844, 2845, 5, 396, 0, 0, 2845, 2847, 3, 398, 199, 0, 2846, 2844, 1, 0, 0, 0, 2847, 2850, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 397, 1, 0, 0, 0, 2850, 2848, 1, 0, 0, 0, 2851, 2856, 3, 924, 462, 0, 2852, 2853, 5, 398, 0, 0, 2853, 2854, 3, 280, 140, 0, 2854, 2855, 5, 399, 0, 0, 2855, 2857, 1, 0, 0, 0, 2856, 2852, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2858, 1, 0, 0, 0, 2858, 2859, 5, 17, 0, 0, 2859, 2860, 5, 398, 0, 0, 2860, 2861, 3, 392, 196, 0, 2861, 2862, 5, 399, 0, 0, 2862, 399, 1, 0, 0, 0, 2863, 2869, 3, 402, 201, 0, 2864, 2865, 3, 390, 195, 0, 2865, 2866, 3, 402, 201, 0, 2866, 2868, 1, 0, 0, 0, 2867, 2864, 1, 0, 0, 0, 2868, 2871, 1, 0, 0, 0, 2869, 2867, 1, 0, 0, 0, 2869, 2870, 1, 0, 0, 0, 2870, 401, 1, 0, 0, 0, 2871, 2869, 1, 0, 0, 0, 2872, 2873, 3, 618, 309, 0, 2873, 2874, 3, 414, 207, 0, 2874, 2876, 3, 690, 345, 0, 2875, 2877, 3, 636, 318, 0, 2876, 2875, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 2879, 1, 0, 0, 0, 2878, 2880, 3, 674, 337, 0, 2879, 2878, 1, 0, 0, 0, 2879, 2880, 1, 0, 0, 0, 2880, 2882, 1, 0, 0, 0, 2881, 2883, 3, 722, 361, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2885, 1, 0, 0, 0, 2884, 2886, 3, 738, 369, 0, 2885, 2884, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2888, 1, 0, 0, 0, 2887, 2889, 3, 706, 353, 0, 2888, 2887, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2891, 1, 0, 0, 0, 2890, 2892, 3, 740, 370, 0, 2891, 2890, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2894, 1, 0, 0, 0, 2893, 2895, 3, 762, 381, 0, 2894, 2893, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 2897, 1, 0, 0, 0, 2896, 2898, 3, 764, 382, 0, 2897, 2896, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2901, 3, 768, 384, 0, 2900, 2899, 1, 0, 0, 0, 2900, 2901, 1, 0, 0, 0, 2901, 2903, 1, 0, 0, 0, 2902, 2904, 3, 770, 385, 0, 2903, 2902, 1, 0, 0, 0, 2903, 2904, 1, 0, 0, 0, 2904, 2906, 1, 0, 0, 0, 2905, 2907, 3, 418, 209, 0, 2906, 2905, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2944, 1, 0, 0, 0, 2908, 2909, 3, 618, 309, 0, 2909, 2911, 3, 690, 345, 0, 2910, 2912, 3, 636, 318, 0, 2911, 2910, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, 2914, 1, 0, 0, 0, 2913, 2915, 3, 674, 337, 0, 2914, 2913, 1, 0, 0, 0, 2914, 2915, 1, 0, 0, 0, 2915, 2917, 1, 0, 0, 0, 2916, 2918, 3, 722, 361, 0, 2917, 2916, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2920, 1, 0, 0, 0, 2919, 2921, 3, 738, 369, 0, 2920, 2919, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2923, 1, 0, 0, 0, 2922, 2924, 3, 706, 353, 0, 2923, 2922, 1, 0, 0, 0, 2923, 2924, 1, 0, 0, 0, 2924, 2926, 1, 0, 0, 0, 2925, 2927, 3, 740, 370, 0, 2926, 2925, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 2929, 1, 0, 0, 0, 2928, 2930, 3, 762, 381, 0, 2929, 2928, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2932, 1, 0, 0, 0, 2931, 2933, 3, 764, 382, 0, 2932, 2931, 1, 0, 0, 0, 2932, 2933, 1, 0, 0, 0, 2933, 2935, 1, 0, 0, 0, 2934, 2936, 3, 768, 384, 0, 2935, 2934, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2938, 1, 0, 0, 0, 2937, 2939, 3, 770, 385, 0, 2938, 2937, 1, 0, 0, 0, 2938, 2939, 1, 0, 0, 0, 2939, 2941, 1, 0, 0, 0, 2940, 2942, 3, 418, 209, 0, 2941, 2940, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2872, 1, 0, 0, 0, 2943, 2908, 1, 0, 0, 0, 2944, 403, 1, 0, 0, 0, 2945, 2946, 3, 414, 207, 0, 2946, 2947, 3, 408, 204, 0, 2947, 2950, 1, 0, 0, 0, 2948, 2950, 3, 408, 204, 0, 2949, 2945, 1, 0, 0, 0, 2949, 2948, 1, 0, 0, 0, 2950, 405, 1, 0, 0, 0, 2951, 2953, 3, 690, 345, 0, 2952, 2954, 3, 618, 309, 0, 2953, 2952, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2956, 1, 0, 0, 0, 2955, 2957, 3, 674, 337, 0, 2956, 2955, 1, 0, 0, 0, 2956, 2957, 1, 0, 0, 0, 2957, 2959, 1, 0, 0, 0, 2958, 2960, 3, 722, 361, 0, 2959, 2958, 1, 0, 0, 0, 2959, 2960, 1, 0, 0, 0, 2960, 2962, 1, 0, 0, 0, 2961, 2963, 3, 738, 369, 0, 2962, 2961, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2966, 3, 706, 353, 0, 2965, 2964, 1, 0, 0, 0, 2965, 2966, 1, 0, 0, 0, 2966, 2968, 1, 0, 0, 0, 2967, 2969, 3, 740, 370, 0, 2968, 2967, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2976, 1, 0, 0, 0, 2970, 2971, 5, 398, 0, 0, 2971, 2972, 3, 408, 204, 0, 2972, 2973, 5, 399, 0, 0, 2973, 2976, 1, 0, 0, 0, 2974, 2976, 3, 678, 339, 0, 2975, 2951, 1, 0, 0, 0, 2975, 2970, 1, 0, 0, 0, 2975, 2974, 1, 0, 0, 0, 2976, 407, 1, 0, 0, 0, 2977, 2979, 3, 406, 203, 0, 2978, 2980, 3, 410, 205, 0, 2979, 2978, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2982, 1, 0, 0, 0, 2981, 2983, 3, 762, 381, 0, 2982, 2981, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2985, 1, 0, 0, 0, 2984, 2986, 3, 764, 382, 0, 2985, 2984, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2988, 1, 0, 0, 0, 2987, 2989, 3, 768, 384, 0, 2988, 2987, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2991, 1, 0, 0, 0, 2990, 2992, 3, 770, 385, 0, 2991, 2990, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2994, 1, 0, 0, 0, 2993, 2995, 3, 418, 209, 0, 2994, 2993, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 409, 1, 0, 0, 0, 2996, 2997, 3, 390, 195, 0, 2997, 2998, 3, 406, 203, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2996, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 2999, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 411, 1, 0, 0, 0, 3003, 3005, 3, 396, 198, 0, 3004, 3003, 1, 0, 0, 0, 3004, 3005, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3007, 3, 408, 204, 0, 3007, 413, 1, 0, 0, 0, 3008, 3025, 5, 161, 0, 0, 3009, 3010, 5, 234, 0, 0, 3010, 3012, 3, 416, 208, 0, 3011, 3013, 3, 44, 22, 0, 3012, 3011, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3026, 1, 0, 0, 0, 3014, 3016, 5, 166, 0, 0, 3015, 3017, 5, 328, 0, 0, 3016, 3015, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3023, 3, 908, 454, 0, 3019, 3020, 5, 398, 0, 0, 3020, 3021, 3, 280, 140, 0, 3021, 3022, 5, 399, 0, 0, 3022, 3024, 1, 0, 0, 0, 3023, 3019, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3026, 1, 0, 0, 0, 3025, 3009, 1, 0, 0, 0, 3025, 3014, 1, 0, 0, 0, 3026, 415, 1, 0, 0, 0, 3027, 3029, 5, 187, 0, 0, 3028, 3027, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3031, 5, 93, 0, 0, 3031, 3033, 5, 425, 0, 0, 3032, 3034, 3, 248, 124, 0, 3033, 3032, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3036, 1, 0, 0, 0, 3035, 3037, 3, 270, 135, 0, 3036, 3035, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3041, 1, 0, 0, 0, 3038, 3039, 5, 328, 0, 0, 3039, 3041, 3, 908, 454, 0, 3040, 3028, 1, 0, 0, 0, 3040, 3038, 1, 0, 0, 0, 3041, 417, 1, 0, 0, 0, 3042, 3051, 5, 184, 0, 0, 3043, 3044, 5, 430, 0, 0, 3044, 3046, 5, 396, 0, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3052, 5, 430, 0, 0, 3048, 3049, 5, 430, 0, 0, 3049, 3050, 5, 222, 0, 0, 3050, 3052, 5, 430, 0, 0, 3051, 3045, 1, 0, 0, 0, 3051, 3048, 1, 0, 0, 0, 3052, 419, 1, 0, 0, 0, 3053, 3054, 5, 86, 0, 0, 3054, 3055, 5, 139, 0, 0, 3055, 3057, 3, 658, 329, 0, 3056, 3058, 3, 674, 337, 0, 3057, 3056, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 421, 1, 0, 0, 0, 3059, 3060, 3, 282, 141, 0, 3060, 3061, 5, 404, 0, 0, 3061, 3062, 3, 424, 212, 0, 3062, 423, 1, 0, 0, 0, 3063, 3066, 3, 612, 306, 0, 3064, 3066, 3, 846, 423, 0, 3065, 3063, 1, 0, 0, 0, 3065, 3064, 1, 0, 0, 0, 3066, 425, 1, 0, 0, 0, 3067, 3068, 5, 303, 0, 0, 3068, 3073, 3, 422, 211, 0, 3069, 3070, 5, 396, 0, 0, 3070, 3072, 3, 422, 211, 0, 3071, 3069, 1, 0, 0, 0, 3072, 3075, 1, 0, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 427, 1, 0, 0, 0, 3075, 3073, 1, 0, 0, 0, 3076, 3077, 5, 364, 0, 0, 3077, 3078, 3, 658, 329, 0, 3078, 3080, 3, 426, 213, 0, 3079, 3081, 3, 674, 337, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 429, 1, 0, 0, 0, 3082, 3087, 3, 432, 216, 0, 3083, 3087, 3, 442, 221, 0, 3084, 3087, 3, 444, 222, 0, 3085, 3087, 3, 446, 223, 0, 3086, 3082, 1, 0, 0, 0, 3086, 3083, 1, 0, 0, 0, 3086, 3084, 1, 0, 0, 0, 3086, 3085, 1, 0, 0, 0, 3087, 431, 1, 0, 0, 0, 3088, 3089, 5, 317, 0, 0, 3089, 3098, 5, 343, 0, 0, 3090, 3095, 3, 434, 217, 0, 3091, 3092, 5, 396, 0, 0, 3092, 3094, 3, 434, 217, 0, 3093, 3091, 1, 0, 0, 0, 3094, 3097, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3099, 1, 0, 0, 0, 3097, 3095, 1, 0, 0, 0, 3098, 3090, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 433, 1, 0, 0, 0, 3100, 3103, 3, 438, 219, 0, 3101, 3103, 3, 436, 218, 0, 3102, 3100, 1, 0, 0, 0, 3102, 3101, 1, 0, 0, 0, 3103, 435, 1, 0, 0, 0, 3104, 3105, 5, 260, 0, 0, 3105, 3106, 7, 21, 0, 0, 3106, 437, 1, 0, 0, 0, 3107, 3108, 5, 168, 0, 0, 3108, 3109, 5, 182, 0, 0, 3109, 3110, 3, 440, 220, 0, 3110, 439, 1, 0, 0, 0, 3111, 3112, 5, 311, 0, 0, 3112, 441, 1, 0, 0, 0, 3113, 3115, 5, 48, 0, 0, 3114, 3116, 5, 388, 0, 0, 3115, 3114, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 443, 1, 0, 0, 0, 3117, 3119, 5, 288, 0, 0, 3118, 3120, 5, 388, 0, 0, 3119, 3118, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 445, 1, 0, 0, 0, 3121, 3122, 5, 303, 0, 0, 3122, 3123, 5, 22, 0, 0, 3123, 3124, 3, 906, 453, 0, 3124, 447, 1, 0, 0, 0, 3125, 3126, 5, 1, 0, 0, 3126, 3128, 5, 345, 0, 0, 3127, 3129, 5, 430, 0, 0, 3128, 3127, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 449, 1, 0, 0, 0, 3132, 3133, 5, 1, 0, 0, 3133, 3135, 5, 50, 0, 0, 3134, 3136, 5, 430, 0, 0, 3135, 3134, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3135, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 451, 1, 0, 0, 0, 3139, 3141, 5, 202, 0, 0, 3140, 3142, 5, 435, 0, 0, 3141, 3140, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3144, 5, 166, 0, 0, 3144, 3149, 3, 658, 329, 0, 3145, 3147, 5, 17, 0, 0, 3146, 3145, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 3, 924, 462, 0, 3149, 3146, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3152, 5, 369, 0, 0, 3152, 3153, 3, 626, 313, 0, 3153, 3154, 5, 223, 0, 0, 3154, 3155, 3, 826, 413, 0, 3155, 3156, 3, 454, 227, 0, 3156, 453, 1, 0, 0, 0, 3157, 3160, 3, 458, 229, 0, 3158, 3160, 3, 460, 230, 0, 3159, 3157, 1, 0, 0, 0, 3159, 3158, 1, 0, 0, 0, 3160, 3163, 1, 0, 0, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3165, 1, 0, 0, 0, 3163, 3161, 1, 0, 0, 0, 3164, 3166, 3, 456, 228, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 455, 1, 0, 0, 0, 3167, 3168, 5, 382, 0, 0, 3168, 3169, 5, 215, 0, 0, 3169, 3172, 5, 200, 0, 0, 3170, 3171, 5, 11, 0, 0, 3171, 3173, 3, 826, 413, 0, 3172, 3170, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3175, 5, 334, 0, 0, 3175, 3177, 5, 161, 0, 0, 3176, 3178, 3, 290, 145, 0, 3177, 3176, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 5, 373, 0, 0, 3180, 3181, 3, 684, 342, 0, 3181, 457, 1, 0, 0, 0, 3182, 3183, 5, 382, 0, 0, 3183, 3184, 5, 200, 0, 0, 3184, 3185, 5, 11, 0, 0, 3185, 3186, 3, 826, 413, 0, 3186, 3187, 5, 334, 0, 0, 3187, 3188, 3, 462, 231, 0, 3188, 459, 1, 0, 0, 0, 3189, 3190, 5, 382, 0, 0, 3190, 3191, 5, 200, 0, 0, 3191, 3192, 5, 334, 0, 0, 3192, 3193, 3, 462, 231, 0, 3193, 461, 1, 0, 0, 0, 3194, 3195, 5, 364, 0, 0, 3195, 3198, 3, 426, 213, 0, 3196, 3198, 5, 86, 0, 0, 3197, 3194, 1, 0, 0, 0, 3197, 3196, 1, 0, 0, 0, 3198, 463, 1, 0, 0, 0, 3199, 3200, 5, 176, 0, 0, 3200, 3202, 5, 257, 0, 0, 3201, 3203, 5, 425, 0, 0, 3202, 3201, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 465, 1, 0, 0, 0, 3206, 3207, 5, 51, 0, 0, 3207, 3208, 5, 404, 0, 0, 3208, 3209, 5, 430, 0, 0, 3209, 467, 1, 0, 0, 0, 3210, 3211, 5, 245, 0, 0, 3211, 3212, 5, 425, 0, 0, 3212, 469, 1, 0, 0, 0, 3213, 3214, 5, 351, 0, 0, 3214, 3215, 5, 425, 0, 0, 3215, 471, 1, 0, 0, 0, 3216, 3217, 5, 319, 0, 0, 3217, 3218, 5, 425, 0, 0, 3218, 473, 1, 0, 0, 0, 3219, 3243, 5, 9, 0, 0, 3220, 3221, 5, 328, 0, 0, 3221, 3222, 3, 658, 329, 0, 3222, 3223, 3, 476, 238, 0, 3223, 3244, 1, 0, 0, 0, 3224, 3225, 5, 377, 0, 0, 3225, 3227, 3, 662, 331, 0, 3226, 3228, 5, 17, 0, 0, 3227, 3226, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3230, 3, 482, 241, 0, 3230, 3244, 1, 0, 0, 0, 3231, 3232, 5, 201, 0, 0, 3232, 3233, 5, 377, 0, 0, 3233, 3234, 3, 662, 331, 0, 3234, 3235, 3, 484, 242, 0, 3235, 3244, 1, 0, 0, 0, 3236, 3237, 3, 92, 46, 0, 3237, 3238, 3, 490, 245, 0, 3238, 3244, 1, 0, 0, 0, 3239, 3240, 5, 69, 0, 0, 3240, 3244, 3, 586, 293, 0, 3241, 3242, 5, 155, 0, 0, 3242, 3244, 3, 582, 291, 0, 3243, 3220, 1, 0, 0, 0, 3243, 3224, 1, 0, 0, 0, 3243, 3231, 1, 0, 0, 0, 3243, 3236, 1, 0, 0, 0, 3243, 3239, 1, 0, 0, 0, 3243, 3241, 1, 0, 0, 0, 3244, 475, 1, 0, 0, 0, 3245, 3267, 3, 500, 250, 0, 3246, 3267, 3, 532, 266, 0, 3247, 3267, 3, 534, 267, 0, 3248, 3267, 3, 520, 260, 0, 3249, 3267, 3, 524, 262, 0, 3250, 3267, 3, 526, 263, 0, 3251, 3267, 3, 528, 264, 0, 3252, 3267, 3, 536, 268, 0, 3253, 3267, 3, 558, 279, 0, 3254, 3267, 3, 560, 280, 0, 3255, 3267, 3, 480, 240, 0, 3256, 3267, 3, 510, 255, 0, 3257, 3267, 3, 504, 252, 0, 3258, 3267, 3, 478, 239, 0, 3259, 3261, 3, 910, 455, 0, 3260, 3259, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3267, 3, 478, 239, 0, 3263, 3267, 3, 576, 288, 0, 3264, 3267, 3, 578, 289, 0, 3265, 3267, 3, 580, 290, 0, 3266, 3245, 1, 0, 0, 0, 3266, 3246, 1, 0, 0, 0, 3266, 3247, 1, 0, 0, 0, 3266, 3248, 1, 0, 0, 0, 3266, 3249, 1, 0, 0, 0, 3266, 3250, 1, 0, 0, 0, 3266, 3251, 1, 0, 0, 0, 3266, 3252, 1, 0, 0, 0, 3266, 3253, 1, 0, 0, 0, 3266, 3254, 1, 0, 0, 0, 3266, 3255, 1, 0, 0, 0, 3266, 3256, 1, 0, 0, 0, 3266, 3257, 1, 0, 0, 0, 3266, 3258, 1, 0, 0, 0, 3266, 3260, 1, 0, 0, 0, 3266, 3263, 1, 0, 0, 0, 3266, 3264, 1, 0, 0, 0, 3266, 3265, 1, 0, 0, 0, 3267, 477, 1, 0, 0, 0, 3268, 3284, 3, 544, 272, 0, 3269, 3284, 3, 556, 278, 0, 3270, 3284, 3, 566, 283, 0, 3271, 3284, 3, 540, 270, 0, 3272, 3284, 3, 562, 281, 0, 3273, 3284, 3, 568, 284, 0, 3274, 3284, 3, 548, 274, 0, 3275, 3284, 3, 546, 273, 0, 3276, 3284, 3, 574, 287, 0, 3277, 3284, 3, 514, 257, 0, 3278, 3284, 3, 516, 258, 0, 3279, 3284, 3, 512, 256, 0, 3280, 3284, 3, 502, 251, 0, 3281, 3284, 3, 506, 253, 0, 3282, 3284, 3, 508, 254, 0, 3283, 3268, 1, 0, 0, 0, 3283, 3269, 1, 0, 0, 0, 3283, 3270, 1, 0, 0, 0, 3283, 3271, 1, 0, 0, 0, 3283, 3272, 1, 0, 0, 0, 3283, 3273, 1, 0, 0, 0, 3283, 3274, 1, 0, 0, 0, 3283, 3275, 1, 0, 0, 0, 3283, 3276, 1, 0, 0, 0, 3283, 3277, 1, 0, 0, 0, 3283, 3278, 1, 0, 0, 0, 3283, 3279, 1, 0, 0, 0, 3283, 3280, 1, 0, 0, 0, 3283, 3281, 1, 0, 0, 0, 3283, 3282, 1, 0, 0, 0, 3284, 479, 1, 0, 0, 0, 3285, 3286, 5, 236, 0, 0, 3286, 3287, 5, 45, 0, 0, 3287, 3288, 5, 398, 0, 0, 3288, 3289, 3, 342, 171, 0, 3289, 3290, 5, 399, 0, 0, 3290, 481, 1, 0, 0, 0, 3291, 3297, 3, 538, 269, 0, 3292, 3297, 3, 500, 250, 0, 3293, 3297, 3, 520, 260, 0, 3294, 3297, 3, 534, 267, 0, 3295, 3297, 3, 412, 206, 0, 3296, 3291, 1, 0, 0, 0, 3296, 3292, 1, 0, 0, 0, 3296, 3293, 1, 0, 0, 0, 3296, 3294, 1, 0, 0, 0, 3296, 3295, 1, 0, 0, 0, 3297, 483, 1, 0, 0, 0, 3298, 3301, 3, 486, 243, 0, 3299, 3301, 3, 488, 244, 0, 3300, 3298, 1, 0, 0, 0, 3300, 3299, 1, 0, 0, 0, 3301, 485, 1, 0, 0, 0, 3302, 3305, 3, 48, 24, 0, 3303, 3305, 3, 50, 25, 0, 3304, 3302, 1, 0, 0, 0, 3304, 3303, 1, 0, 0, 0, 3305, 487, 1, 0, 0, 0, 3306, 3307, 5, 264, 0, 0, 3307, 489, 1, 0, 0, 0, 3308, 3312, 3, 492, 246, 0, 3309, 3312, 3, 494, 247, 0, 3310, 3312, 3, 496, 248, 0, 3311, 3308, 1, 0, 0, 0, 3311, 3309, 1, 0, 0, 0, 3311, 3310, 1, 0, 0, 0, 3312, 491, 1, 0, 0, 0, 3313, 3314, 3, 652, 326, 0, 3314, 3315, 5, 303, 0, 0, 3315, 3316, 5, 76, 0, 0, 3316, 3317, 3, 62, 31, 0, 3317, 493, 1, 0, 0, 0, 3318, 3319, 3, 652, 326, 0, 3319, 3320, 5, 303, 0, 0, 3320, 3321, 5, 235, 0, 0, 3321, 3322, 3, 150, 75, 0, 3322, 495, 1, 0, 0, 0, 3323, 3324, 3, 652, 326, 0, 3324, 3325, 5, 303, 0, 0, 3325, 3326, 7, 22, 0, 0, 3326, 3327, 5, 425, 0, 0, 3327, 497, 1, 0, 0, 0, 3328, 3329, 3, 652, 326, 0, 3329, 3330, 5, 303, 0, 0, 3330, 3331, 5, 195, 0, 0, 3331, 3332, 5, 425, 0, 0, 3332, 499, 1, 0, 0, 0, 3333, 3334, 5, 273, 0, 0, 3334, 3335, 5, 340, 0, 0, 3335, 3336, 3, 660, 330, 0, 3336, 501, 1, 0, 0, 0, 3337, 3340, 5, 4, 0, 0, 3338, 3340, 5, 277, 0, 0, 3339, 3337, 1, 0, 0, 0, 3339, 3338, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 5, 46, 0, 0, 3342, 3343, 5, 398, 0, 0, 3343, 3344, 3, 274, 137, 0, 3344, 3346, 5, 399, 0, 0, 3345, 3347, 3, 42, 21, 0, 3346, 3345, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 503, 1, 0, 0, 0, 3348, 3351, 5, 4, 0, 0, 3349, 3352, 3, 314, 157, 0, 3350, 3352, 3, 304, 152, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3350, 1, 0, 0, 0, 3352, 505, 1, 0, 0, 0, 3353, 3354, 5, 364, 0, 0, 3354, 3356, 5, 46, 0, 0, 3355, 3357, 3, 42, 21, 0, 3356, 3355, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 507, 1, 0, 0, 0, 3358, 3359, 3, 294, 147, 0, 3359, 3361, 5, 217, 0, 0, 3360, 3362, 5, 34, 0, 0, 3361, 3360, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 3367, 1, 0, 0, 0, 3363, 3364, 3, 294, 147, 0, 3364, 3365, 5, 221, 0, 0, 3365, 3367, 1, 0, 0, 0, 3366, 3358, 1, 0, 0, 0, 3366, 3363, 1, 0, 0, 0, 3367, 509, 1, 0, 0, 0, 3368, 3369, 5, 101, 0, 0, 3369, 3370, 5, 55, 0, 0, 3370, 3371, 3, 924, 462, 0, 3371, 511, 1, 0, 0, 0, 3372, 3374, 5, 38, 0, 0, 3373, 3375, 5, 45, 0, 0, 3374, 3373, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 3, 282, 141, 0, 3377, 3378, 3, 284, 142, 0, 3378, 3380, 3, 374, 187, 0, 3379, 3381, 3, 356, 178, 0, 3380, 3379, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3384, 1, 0, 0, 0, 3382, 3383, 5, 47, 0, 0, 3383, 3385, 5, 425, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 3387, 1, 0, 0, 0, 3386, 3388, 3, 518, 259, 0, 3387, 3386, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3390, 1, 0, 0, 0, 3389, 3391, 3, 42, 21, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 513, 1, 0, 0, 0, 3392, 3393, 5, 364, 0, 0, 3393, 3394, 5, 318, 0, 0, 3394, 3396, 5, 134, 0, 0, 3395, 3397, 5, 45, 0, 0, 3396, 3395, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 3, 282, 141, 0, 3399, 3400, 5, 303, 0, 0, 3400, 3403, 3, 252, 126, 0, 3401, 3402, 5, 47, 0, 0, 3402, 3404, 5, 425, 0, 0, 3403, 3401, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 515, 1, 0, 0, 0, 3405, 3406, 5, 364, 0, 0, 3406, 3407, 5, 318, 0, 0, 3407, 3408, 5, 303, 0, 0, 3408, 3409, 3, 252, 126, 0, 3409, 517, 1, 0, 0, 0, 3410, 3414, 5, 130, 0, 0, 3411, 3412, 5, 6, 0, 0, 3412, 3414, 3, 924, 462, 0, 3413, 3410, 1, 0, 0, 0, 3413, 3411, 1, 0, 0, 0, 3414, 519, 1, 0, 0, 0, 3415, 3417, 5, 4, 0, 0, 3416, 3418, 3, 44, 22, 0, 3417, 3416, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3420, 1, 0, 0, 0, 3419, 3421, 3, 522, 261, 0, 3420, 3419, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3420, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 521, 1, 0, 0, 0, 3424, 3426, 3, 910, 455, 0, 3425, 3427, 3, 530, 265, 0, 3426, 3425, 1, 0, 0, 0, 3426, 3427, 1, 0, 0, 0, 3427, 523, 1, 0, 0, 0, 3428, 3432, 5, 341, 0, 0, 3429, 3431, 3, 910, 455, 0, 3430, 3429, 1, 0, 0, 0, 3431, 3434, 1, 0, 0, 0, 3432, 3430, 1, 0, 0, 0, 3432, 3433, 1, 0, 0, 0, 3433, 525, 1, 0, 0, 0, 3434, 3432, 1, 0, 0, 0, 3435, 3439, 5, 15, 0, 0, 3436, 3438, 3, 910, 455, 0, 3437, 3436, 1, 0, 0, 0, 3438, 3441, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 527, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3442, 3446, 5, 352, 0, 0, 3443, 3445, 3, 910, 455, 0, 3444, 3443, 1, 0, 0, 0, 3445, 3448, 1, 0, 0, 0, 3446, 3444, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 529, 1, 0, 0, 0, 3448, 3446, 1, 0, 0, 0, 3449, 3450, 5, 188, 0, 0, 3450, 3451, 5, 425, 0, 0, 3451, 531, 1, 0, 0, 0, 3452, 3453, 5, 102, 0, 0, 3453, 3454, 5, 238, 0, 0, 3454, 533, 1, 0, 0, 0, 3455, 3457, 5, 101, 0, 0, 3456, 3458, 3, 40, 20, 0, 3457, 3456, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3460, 5, 236, 0, 0, 3460, 3466, 3, 914, 457, 0, 3461, 3462, 5, 396, 0, 0, 3462, 3463, 5, 236, 0, 0, 3463, 3465, 3, 914, 457, 0, 3464, 3461, 1, 0, 0, 0, 3465, 3468, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3470, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3469, 3471, 3, 16, 8, 0, 3470, 3469, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3473, 1, 0, 0, 0, 3472, 3474, 5, 254, 0, 0, 3473, 3472, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3476, 1, 0, 0, 0, 3475, 3477, 3, 18, 9, 0, 3476, 3475, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 535, 1, 0, 0, 0, 3478, 3479, 5, 303, 0, 0, 3479, 3480, 5, 331, 0, 0, 3480, 3488, 3, 252, 126, 0, 3481, 3482, 5, 362, 0, 0, 3482, 3484, 5, 331, 0, 0, 3483, 3485, 3, 40, 20, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3488, 3, 252, 126, 0, 3487, 3478, 1, 0, 0, 0, 3487, 3481, 1, 0, 0, 0, 3488, 537, 1, 0, 0, 0, 3489, 3490, 5, 303, 0, 0, 3490, 3491, 5, 331, 0, 0, 3491, 3499, 3, 252, 126, 0, 3492, 3493, 5, 362, 0, 0, 3493, 3495, 5, 331, 0, 0, 3494, 3496, 3, 40, 20, 0, 3495, 3494, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3497, 1, 0, 0, 0, 3497, 3499, 3, 252, 126, 0, 3498, 3489, 1, 0, 0, 0, 3498, 3492, 1, 0, 0, 0, 3499, 539, 1, 0, 0, 0, 3500, 3510, 5, 303, 0, 0, 3501, 3502, 5, 300, 0, 0, 3502, 3506, 5, 425, 0, 0, 3503, 3504, 5, 386, 0, 0, 3504, 3505, 5, 301, 0, 0, 3505, 3507, 3, 252, 126, 0, 3506, 3503, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3511, 1, 0, 0, 0, 3508, 3509, 5, 301, 0, 0, 3509, 3511, 3, 252, 126, 0, 3510, 3501, 1, 0, 0, 0, 3510, 3508, 1, 0, 0, 0, 3511, 3516, 1, 0, 0, 0, 3512, 3513, 5, 362, 0, 0, 3513, 3514, 5, 301, 0, 0, 3514, 3516, 3, 252, 126, 0, 3515, 3500, 1, 0, 0, 0, 3515, 3512, 1, 0, 0, 0, 3516, 541, 1, 0, 0, 0, 3517, 3519, 3, 658, 329, 0, 3518, 3520, 3, 910, 455, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 543, 1, 0, 0, 0, 3521, 3522, 5, 303, 0, 0, 3522, 3523, 5, 129, 0, 0, 3523, 3524, 3, 584, 292, 0, 3524, 545, 1, 0, 0, 0, 3525, 3526, 5, 215, 0, 0, 3526, 3529, 7, 23, 0, 0, 3527, 3529, 3, 232, 116, 0, 3528, 3525, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 547, 1, 0, 0, 0, 3530, 3531, 5, 303, 0, 0, 3531, 3532, 5, 309, 0, 0, 3532, 3533, 5, 188, 0, 0, 3533, 3534, 3, 550, 275, 0, 3534, 549, 1, 0, 0, 0, 3535, 3536, 5, 398, 0, 0, 3536, 3537, 3, 552, 276, 0, 3537, 3538, 5, 399, 0, 0, 3538, 551, 1, 0, 0, 0, 3539, 3544, 3, 554, 277, 0, 3540, 3541, 5, 396, 0, 0, 3541, 3543, 3, 554, 277, 0, 3542, 3540, 1, 0, 0, 0, 3543, 3546, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 553, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3547, 3548, 3, 326, 163, 0, 3548, 3549, 5, 404, 0, 0, 3549, 3550, 5, 425, 0, 0, 3550, 555, 1, 0, 0, 0, 3551, 3552, 5, 303, 0, 0, 3552, 3553, 5, 188, 0, 0, 3553, 3554, 5, 425, 0, 0, 3554, 557, 1, 0, 0, 0, 3555, 3562, 3, 236, 118, 0, 3556, 3559, 5, 215, 0, 0, 3557, 3560, 5, 309, 0, 0, 3558, 3560, 3, 52, 26, 0, 3559, 3557, 1, 0, 0, 0, 3559, 3558, 1, 0, 0, 0, 3560, 3562, 1, 0, 0, 0, 3561, 3555, 1, 0, 0, 0, 3561, 3556, 1, 0, 0, 0, 3562, 559, 1, 0, 0, 0, 3563, 3564, 5, 113, 0, 0, 3564, 3565, 3, 910, 455, 0, 3565, 3566, 5, 386, 0, 0, 3566, 3567, 5, 328, 0, 0, 3567, 3568, 3, 658, 329, 0, 3568, 561, 1, 0, 0, 0, 3569, 3570, 5, 273, 0, 0, 3570, 3571, 5, 340, 0, 0, 3571, 3572, 3, 910, 455, 0, 3572, 563, 1, 0, 0, 0, 3573, 3574, 5, 364, 0, 0, 3574, 3575, 5, 318, 0, 0, 3575, 3577, 5, 134, 0, 0, 3576, 3578, 5, 45, 0, 0, 3577, 3576, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 3580, 3, 282, 141, 0, 3580, 3581, 5, 303, 0, 0, 3581, 3584, 3, 252, 126, 0, 3582, 3583, 5, 47, 0, 0, 3583, 3585, 5, 425, 0, 0, 3584, 3582, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 565, 1, 0, 0, 0, 3586, 3587, 5, 53, 0, 0, 3587, 567, 1, 0, 0, 0, 3588, 3589, 5, 166, 0, 0, 3589, 3590, 5, 430, 0, 0, 3590, 3591, 5, 31, 0, 0, 3591, 569, 1, 0, 0, 0, 3592, 3593, 5, 11, 0, 0, 3593, 3594, 5, 379, 0, 0, 3594, 571, 1, 0, 0, 0, 3595, 3596, 5, 245, 0, 0, 3596, 3597, 5, 425, 0, 0, 3597, 573, 1, 0, 0, 0, 3598, 3599, 5, 49, 0, 0, 3599, 3601, 5, 425, 0, 0, 3600, 3602, 3, 570, 285, 0, 3601, 3600, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3604, 1, 0, 0, 0, 3603, 3605, 3, 234, 117, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 762, 381, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3611, 3, 572, 286, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3616, 1, 0, 0, 0, 3612, 3613, 5, 386, 0, 0, 3613, 3614, 5, 234, 0, 0, 3614, 3615, 5, 331, 0, 0, 3615, 3617, 3, 252, 126, 0, 3616, 3612, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 575, 1, 0, 0, 0, 3618, 3619, 5, 303, 0, 0, 3619, 3620, 5, 235, 0, 0, 3620, 3621, 3, 148, 74, 0, 3621, 577, 1, 0, 0, 0, 3622, 3623, 5, 303, 0, 0, 3623, 3624, 5, 236, 0, 0, 3624, 3625, 5, 315, 0, 0, 3625, 3626, 5, 398, 0, 0, 3626, 3627, 3, 226, 113, 0, 3627, 3628, 5, 399, 0, 0, 3628, 579, 1, 0, 0, 0, 3629, 3639, 5, 115, 0, 0, 3630, 3631, 5, 288, 0, 0, 3631, 3632, 5, 398, 0, 0, 3632, 3640, 7, 24, 0, 0, 3633, 3634, 5, 118, 0, 0, 3634, 3635, 5, 398, 0, 0, 3635, 3640, 5, 425, 0, 0, 3636, 3637, 5, 305, 0, 0, 3637, 3638, 5, 398, 0, 0, 3638, 3640, 5, 430, 0, 0, 3639, 3630, 1, 0, 0, 0, 3639, 3633, 1, 0, 0, 0, 3639, 3636, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3642, 5, 399, 0, 0, 3642, 581, 1, 0, 0, 0, 3643, 3644, 3, 924, 462, 0, 3644, 3645, 5, 223, 0, 0, 3645, 3647, 3, 658, 329, 0, 3646, 3648, 3, 910, 455, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3650, 5, 264, 0, 0, 3650, 583, 1, 0, 0, 0, 3651, 3652, 5, 160, 0, 0, 3652, 3653, 5, 425, 0, 0, 3653, 3654, 5, 232, 0, 0, 3654, 3655, 5, 425, 0, 0, 3655, 3656, 5, 300, 0, 0, 3656, 3661, 5, 425, 0, 0, 3657, 3658, 5, 159, 0, 0, 3658, 3659, 5, 425, 0, 0, 3659, 3660, 5, 231, 0, 0, 3660, 3662, 5, 425, 0, 0, 3661, 3657, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3665, 1, 0, 0, 0, 3663, 3665, 3, 924, 462, 0, 3664, 3651, 1, 0, 0, 0, 3664, 3663, 1, 0, 0, 0, 3665, 585, 1, 0, 0, 0, 3666, 3670, 3, 588, 294, 0, 3667, 3670, 3, 590, 295, 0, 3668, 3670, 3, 592, 296, 0, 3669, 3666, 1, 0, 0, 0, 3669, 3667, 1, 0, 0, 0, 3669, 3668, 1, 0, 0, 0, 3670, 587, 1, 0, 0, 0, 3671, 3672, 3, 652, 326, 0, 3672, 3673, 5, 303, 0, 0, 3673, 3674, 5, 77, 0, 0, 3674, 3675, 3, 606, 303, 0, 3675, 589, 1, 0, 0, 0, 3676, 3677, 3, 652, 326, 0, 3677, 3678, 5, 303, 0, 0, 3678, 3679, 5, 235, 0, 0, 3679, 3680, 3, 150, 75, 0, 3680, 591, 1, 0, 0, 0, 3681, 3682, 3, 652, 326, 0, 3682, 3683, 5, 303, 0, 0, 3683, 3684, 5, 366, 0, 0, 3684, 3685, 5, 425, 0, 0, 3685, 593, 1, 0, 0, 0, 3686, 3687, 5, 183, 0, 0, 3687, 3696, 5, 128, 0, 0, 3688, 3689, 5, 183, 0, 0, 3689, 3690, 5, 128, 0, 0, 3690, 3691, 3, 924, 462, 0, 3691, 3692, 5, 425, 0, 0, 3692, 3696, 1, 0, 0, 0, 3693, 3694, 5, 183, 0, 0, 3694, 3696, 3, 658, 329, 0, 3695, 3686, 1, 0, 0, 0, 3695, 3688, 1, 0, 0, 0, 3695, 3693, 1, 0, 0, 0, 3696, 595, 1, 0, 0, 0, 3697, 3699, 5, 58, 0, 0, 3698, 3700, 5, 332, 0, 0, 3699, 3698, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3702, 1, 0, 0, 0, 3701, 3703, 5, 344, 0, 0, 3702, 3701, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3705, 1, 0, 0, 0, 3704, 3706, 5, 123, 0, 0, 3705, 3704, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 3709, 5, 328, 0, 0, 3708, 3710, 3, 44, 22, 0, 3709, 3708, 1, 0, 0, 0, 3709, 3710, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3762, 3, 660, 330, 0, 3712, 3714, 3, 594, 297, 0, 3713, 3715, 3, 220, 110, 0, 3714, 3713, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3717, 1, 0, 0, 0, 3716, 3718, 3, 248, 124, 0, 3717, 3716, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3720, 1, 0, 0, 0, 3719, 3721, 3, 270, 135, 0, 3720, 3719, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3723, 1, 0, 0, 0, 3722, 3724, 3, 272, 136, 0, 3723, 3722, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3726, 1, 0, 0, 0, 3725, 3727, 3, 250, 125, 0, 3726, 3725, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3763, 1, 0, 0, 0, 3728, 3729, 5, 398, 0, 0, 3729, 3730, 3, 276, 138, 0, 3730, 3731, 5, 399, 0, 0, 3731, 3733, 1, 0, 0, 0, 3732, 3728, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 3735, 1, 0, 0, 0, 3734, 3736, 3, 218, 109, 0, 3735, 3734, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3738, 1, 0, 0, 0, 3737, 3739, 3, 220, 110, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3741, 1, 0, 0, 0, 3740, 3742, 3, 232, 116, 0, 3741, 3740, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3744, 1, 0, 0, 0, 3743, 3745, 3, 236, 118, 0, 3744, 3743, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3747, 1, 0, 0, 0, 3746, 3748, 3, 248, 124, 0, 3747, 3746, 1, 0, 0, 0, 3747, 3748, 1, 0, 0, 0, 3748, 3750, 1, 0, 0, 0, 3749, 3751, 3, 270, 135, 0, 3750, 3749, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 3753, 1, 0, 0, 0, 3752, 3754, 3, 272, 136, 0, 3753, 3752, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3756, 1, 0, 0, 0, 3755, 3757, 3, 250, 125, 0, 3756, 3755, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3760, 1, 0, 0, 0, 3758, 3759, 5, 17, 0, 0, 3759, 3761, 3, 412, 206, 0, 3760, 3758, 1, 0, 0, 0, 3760, 3761, 1, 0, 0, 0, 3761, 3763, 1, 0, 0, 0, 3762, 3712, 1, 0, 0, 0, 3762, 3732, 1, 0, 0, 0, 3763, 3821, 1, 0, 0, 0, 3764, 3765, 5, 58, 0, 0, 3765, 3766, 5, 194, 0, 0, 3766, 3768, 5, 328, 0, 0, 3767, 3769, 3, 44, 22, 0, 3768, 3767, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3818, 3, 660, 330, 0, 3771, 3773, 3, 594, 297, 0, 3772, 3774, 3, 248, 124, 0, 3773, 3772, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3776, 1, 0, 0, 0, 3775, 3777, 3, 270, 135, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3779, 1, 0, 0, 0, 3778, 3780, 3, 272, 136, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3782, 1, 0, 0, 0, 3781, 3783, 3, 250, 125, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3819, 1, 0, 0, 0, 3784, 3785, 5, 398, 0, 0, 3785, 3786, 3, 276, 138, 0, 3786, 3787, 5, 399, 0, 0, 3787, 3789, 1, 0, 0, 0, 3788, 3784, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3791, 1, 0, 0, 0, 3790, 3792, 3, 218, 109, 0, 3791, 3790, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3794, 1, 0, 0, 0, 3793, 3795, 3, 220, 110, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3797, 1, 0, 0, 0, 3796, 3798, 3, 232, 116, 0, 3797, 3796, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3800, 1, 0, 0, 0, 3799, 3801, 3, 236, 118, 0, 3800, 3799, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3803, 1, 0, 0, 0, 3802, 3804, 3, 248, 124, 0, 3803, 3802, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3806, 1, 0, 0, 0, 3805, 3807, 3, 270, 135, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3809, 1, 0, 0, 0, 3808, 3810, 3, 272, 136, 0, 3809, 3808, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3813, 3, 250, 125, 0, 3812, 3811, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3816, 1, 0, 0, 0, 3814, 3815, 5, 17, 0, 0, 3815, 3817, 3, 412, 206, 0, 3816, 3814, 1, 0, 0, 0, 3816, 3817, 1, 0, 0, 0, 3817, 3819, 1, 0, 0, 0, 3818, 3771, 1, 0, 0, 0, 3818, 3788, 1, 0, 0, 0, 3819, 3821, 1, 0, 0, 0, 3820, 3697, 1, 0, 0, 0, 3820, 3764, 1, 0, 0, 0, 3821, 597, 1, 0, 0, 0, 3822, 3823, 5, 58, 0, 0, 3823, 3825, 5, 69, 0, 0, 3824, 3826, 3, 44, 22, 0, 3825, 3824, 1, 0, 0, 0, 3825, 3826, 1, 0, 0, 0, 3826, 3827, 1, 0, 0, 0, 3827, 3829, 3, 924, 462, 0, 3828, 3830, 3, 604, 302, 0, 3829, 3828, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 3832, 1, 0, 0, 0, 3831, 3833, 3, 602, 301, 0, 3832, 3831, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3835, 1, 0, 0, 0, 3834, 3836, 3, 600, 300, 0, 3835, 3834, 1, 0, 0, 0, 3835, 3836, 1, 0, 0, 0, 3836, 3840, 1, 0, 0, 0, 3837, 3838, 5, 386, 0, 0, 3838, 3839, 5, 77, 0, 0, 3839, 3841, 3, 606, 303, 0, 3840, 3837, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 599, 1, 0, 0, 0, 3842, 3843, 5, 47, 0, 0, 3843, 3844, 5, 425, 0, 0, 3844, 601, 1, 0, 0, 0, 3845, 3846, 5, 366, 0, 0, 3846, 3847, 5, 425, 0, 0, 3847, 603, 1, 0, 0, 0, 3848, 3849, 5, 351, 0, 0, 3849, 3850, 5, 425, 0, 0, 3850, 605, 1, 0, 0, 0, 3851, 3852, 5, 398, 0, 0, 3852, 3853, 3, 64, 32, 0, 3853, 3854, 5, 399, 0, 0, 3854, 607, 1, 0, 0, 0, 3855, 3856, 5, 101, 0, 0, 3856, 3858, 5, 69, 0, 0, 3857, 3859, 3, 40, 20, 0, 3858, 3857, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3860, 1, 0, 0, 0, 3860, 3861, 3, 924, 462, 0, 3861, 609, 1, 0, 0, 0, 3862, 3863, 3, 924, 462, 0, 3863, 3864, 5, 394, 0, 0, 3864, 3866, 1, 0, 0, 0, 3865, 3862, 1, 0, 0, 0, 3866, 3869, 1, 0, 0, 0, 3867, 3865, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3870, 1, 0, 0, 0, 3869, 3867, 1, 0, 0, 0, 3870, 3871, 5, 414, 0, 0, 3871, 611, 1, 0, 0, 0, 3872, 3873, 5, 83, 0, 0, 3873, 613, 1, 0, 0, 0, 3874, 3879, 3, 826, 413, 0, 3875, 3876, 5, 396, 0, 0, 3876, 3878, 3, 826, 413, 0, 3877, 3875, 1, 0, 0, 0, 3878, 3881, 1, 0, 0, 0, 3879, 3877, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 615, 1, 0, 0, 0, 3881, 3879, 1, 0, 0, 0, 3882, 3887, 3, 924, 462, 0, 3883, 3884, 5, 396, 0, 0, 3884, 3886, 3, 924, 462, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3889, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 617, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3890, 3891, 5, 139, 0, 0, 3891, 3892, 3, 620, 310, 0, 3892, 619, 1, 0, 0, 0, 3893, 3894, 3, 632, 316, 0, 3894, 3897, 3, 628, 314, 0, 3895, 3896, 5, 396, 0, 0, 3896, 3898, 3, 628, 314, 0, 3897, 3895, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3903, 1, 0, 0, 0, 3901, 3903, 3, 624, 312, 0, 3902, 3893, 1, 0, 0, 0, 3902, 3901, 1, 0, 0, 0, 3903, 621, 1, 0, 0, 0, 3904, 3908, 3, 646, 323, 0, 3905, 3907, 3, 636, 318, 0, 3906, 3905, 1, 0, 0, 0, 3907, 3910, 1, 0, 0, 0, 3908, 3906, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3937, 1, 0, 0, 0, 3910, 3908, 1, 0, 0, 0, 3911, 3915, 3, 688, 344, 0, 3912, 3914, 3, 636, 318, 0, 3913, 3912, 1, 0, 0, 0, 3914, 3917, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3915, 3916, 1, 0, 0, 0, 3916, 3937, 1, 0, 0, 0, 3917, 3915, 1, 0, 0, 0, 3918, 3922, 3, 666, 333, 0, 3919, 3921, 3, 636, 318, 0, 3920, 3919, 1, 0, 0, 0, 3921, 3924, 1, 0, 0, 0, 3922, 3920, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3937, 1, 0, 0, 0, 3924, 3922, 1, 0, 0, 0, 3925, 3929, 3, 672, 336, 0, 3926, 3928, 3, 636, 318, 0, 3927, 3926, 1, 0, 0, 0, 3928, 3931, 1, 0, 0, 0, 3929, 3927, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3937, 1, 0, 0, 0, 3931, 3929, 1, 0, 0, 0, 3932, 3933, 5, 398, 0, 0, 3933, 3934, 3, 624, 312, 0, 3934, 3935, 5, 399, 0, 0, 3935, 3937, 1, 0, 0, 0, 3936, 3904, 1, 0, 0, 0, 3936, 3911, 1, 0, 0, 0, 3936, 3918, 1, 0, 0, 0, 3936, 3925, 1, 0, 0, 0, 3936, 3932, 1, 0, 0, 0, 3937, 623, 1, 0, 0, 0, 3938, 3949, 3, 622, 311, 0, 3939, 3940, 3, 634, 317, 0, 3940, 3945, 3, 626, 313, 0, 3941, 3942, 5, 223, 0, 0, 3942, 3946, 3, 826, 413, 0, 3943, 3944, 5, 369, 0, 0, 3944, 3946, 3, 290, 145, 0, 3945, 3941, 1, 0, 0, 0, 3945, 3943, 1, 0, 0, 0, 3945, 3946, 1, 0, 0, 0, 3946, 3948, 1, 0, 0, 0, 3947, 3939, 1, 0, 0, 0, 3948, 3951, 1, 0, 0, 0, 3949, 3947, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 625, 1, 0, 0, 0, 3951, 3949, 1, 0, 0, 0, 3952, 3957, 3, 646, 323, 0, 3953, 3957, 3, 688, 344, 0, 3954, 3957, 3, 666, 333, 0, 3955, 3957, 3, 672, 336, 0, 3956, 3952, 1, 0, 0, 0, 3956, 3953, 1, 0, 0, 0, 3956, 3954, 1, 0, 0, 0, 3956, 3955, 1, 0, 0, 0, 3957, 3961, 1, 0, 0, 0, 3958, 3960, 3, 636, 318, 0, 3959, 3958, 1, 0, 0, 0, 3960, 3963, 1, 0, 0, 0, 3961, 3959, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 627, 1, 0, 0, 0, 3963, 3961, 1, 0, 0, 0, 3964, 3966, 5, 249, 0, 0, 3965, 3964, 1, 0, 0, 0, 3965, 3966, 1, 0, 0, 0, 3966, 3967, 1, 0, 0, 0, 3967, 3968, 3, 650, 325, 0, 3968, 3969, 3, 630, 315, 0, 3969, 629, 1, 0, 0, 0, 3970, 3971, 5, 398, 0, 0, 3971, 3972, 3, 614, 307, 0, 3972, 3973, 5, 399, 0, 0, 3973, 631, 1, 0, 0, 0, 3974, 3975, 5, 358, 0, 0, 3975, 633, 1, 0, 0, 0, 3976, 3991, 5, 396, 0, 0, 3977, 3988, 5, 157, 0, 0, 3978, 3988, 5, 60, 0, 0, 3979, 3981, 7, 25, 0, 0, 3980, 3982, 5, 230, 0, 0, 3981, 3980, 1, 0, 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 3988, 1, 0, 0, 0, 3983, 3985, 5, 180, 0, 0, 3984, 3986, 7, 26, 0, 0, 3985, 3984, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3988, 1, 0, 0, 0, 3987, 3977, 1, 0, 0, 0, 3987, 3978, 1, 0, 0, 0, 3987, 3979, 1, 0, 0, 0, 3987, 3983, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 3989, 1, 0, 0, 0, 3989, 3991, 5, 171, 0, 0, 3990, 3976, 1, 0, 0, 0, 3990, 3987, 1, 0, 0, 0, 3991, 635, 1, 0, 0, 0, 3992, 3993, 5, 178, 0, 0, 3993, 3994, 5, 377, 0, 0, 3994, 3995, 5, 230, 0, 0, 3995, 3996, 3, 774, 387, 0, 3996, 4006, 3, 638, 319, 0, 3997, 3998, 5, 17, 0, 0, 3998, 4003, 3, 924, 462, 0, 3999, 4000, 5, 396, 0, 0, 4000, 4002, 3, 924, 462, 0, 4001, 3999, 1, 0, 0, 0, 4002, 4005, 1, 0, 0, 0, 4003, 4001, 1, 0, 0, 0, 4003, 4004, 1, 0, 0, 0, 4004, 4007, 1, 0, 0, 0, 4005, 4003, 1, 0, 0, 0, 4006, 3997, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4050, 1, 0, 0, 0, 4008, 4010, 5, 396, 0, 0, 4009, 4008, 1, 0, 0, 0, 4009, 4010, 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4047, 5, 178, 0, 0, 4012, 4013, 5, 377, 0, 0, 4013, 4014, 3, 774, 387, 0, 4014, 4024, 3, 638, 319, 0, 4015, 4016, 5, 17, 0, 0, 4016, 4021, 3, 924, 462, 0, 4017, 4018, 5, 396, 0, 0, 4018, 4020, 3, 924, 462, 0, 4019, 4017, 1, 0, 0, 0, 4020, 4023, 1, 0, 0, 0, 4021, 4019, 1, 0, 0, 0, 4021, 4022, 1, 0, 0, 0, 4022, 4025, 1, 0, 0, 0, 4023, 4021, 1, 0, 0, 0, 4024, 4015, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4048, 1, 0, 0, 0, 4026, 4027, 5, 328, 0, 0, 4027, 4028, 5, 398, 0, 0, 4028, 4029, 3, 680, 340, 0, 4029, 4031, 5, 399, 0, 0, 4030, 4032, 5, 17, 0, 0, 4031, 4030, 1, 0, 0, 0, 4031, 4032, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4045, 3, 638, 319, 0, 4034, 4035, 5, 398, 0, 0, 4035, 4040, 3, 924, 462, 0, 4036, 4037, 5, 396, 0, 0, 4037, 4039, 3, 924, 462, 0, 4038, 4036, 1, 0, 0, 0, 4039, 4042, 1, 0, 0, 0, 4040, 4038, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4043, 1, 0, 0, 0, 4042, 4040, 1, 0, 0, 0, 4043, 4044, 5, 399, 0, 0, 4044, 4046, 1, 0, 0, 0, 4045, 4034, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4048, 1, 0, 0, 0, 4047, 4012, 1, 0, 0, 0, 4047, 4026, 1, 0, 0, 0, 4048, 4050, 1, 0, 0, 0, 4049, 3992, 1, 0, 0, 0, 4049, 4009, 1, 0, 0, 0, 4050, 637, 1, 0, 0, 0, 4051, 4052, 3, 924, 462, 0, 4052, 639, 1, 0, 0, 0, 4053, 4054, 5, 330, 0, 0, 4054, 4055, 5, 398, 0, 0, 4055, 4056, 5, 30, 0, 0, 4056, 4057, 5, 430, 0, 0, 4057, 4058, 5, 229, 0, 0, 4058, 4059, 5, 220, 0, 0, 4059, 4069, 5, 430, 0, 0, 4060, 4061, 5, 223, 0, 0, 4061, 4066, 3, 826, 413, 0, 4062, 4063, 5, 396, 0, 0, 4063, 4065, 3, 826, 413, 0, 4064, 4062, 1, 0, 0, 0, 4065, 4068, 1, 0, 0, 0, 4066, 4064, 1, 0, 0, 0, 4066, 4067, 1, 0, 0, 0, 4067, 4070, 1, 0, 0, 0, 4068, 4066, 1, 0, 0, 0, 4069, 4060, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4071, 1, 0, 0, 0, 4071, 4072, 5, 399, 0, 0, 4072, 641, 1, 0, 0, 0, 4073, 4074, 5, 330, 0, 0, 4074, 4078, 5, 398, 0, 0, 4075, 4076, 5, 430, 0, 0, 4076, 4079, 7, 27, 0, 0, 4077, 4079, 5, 429, 0, 0, 4078, 4075, 1, 0, 0, 0, 4078, 4077, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4081, 5, 399, 0, 0, 4081, 643, 1, 0, 0, 0, 4082, 4085, 3, 640, 320, 0, 4083, 4085, 3, 642, 321, 0, 4084, 4082, 1, 0, 0, 0, 4084, 4083, 1, 0, 0, 0, 4085, 645, 1, 0, 0, 0, 4086, 4088, 3, 656, 328, 0, 4087, 4089, 3, 252, 126, 0, 4088, 4087, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4091, 1, 0, 0, 0, 4090, 4092, 3, 644, 322, 0, 4091, 4090, 1, 0, 0, 0, 4091, 4092, 1, 0, 0, 0, 4092, 4094, 1, 0, 0, 0, 4093, 4095, 3, 648, 324, 0, 4094, 4093, 1, 0, 0, 0, 4094, 4095, 1, 0, 0, 0, 4095, 4100, 1, 0, 0, 0, 4096, 4098, 5, 17, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4101, 3, 924, 462, 0, 4100, 4097, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 647, 1, 0, 0, 0, 4102, 4112, 5, 134, 0, 0, 4103, 4104, 5, 326, 0, 0, 4104, 4105, 5, 17, 0, 0, 4105, 4106, 5, 220, 0, 0, 4106, 4113, 3, 826, 413, 0, 4107, 4108, 5, 134, 0, 0, 4108, 4109, 5, 327, 0, 0, 4109, 4110, 5, 17, 0, 0, 4110, 4111, 5, 220, 0, 0, 4111, 4113, 5, 430, 0, 0, 4112, 4103, 1, 0, 0, 0, 4112, 4107, 1, 0, 0, 0, 4113, 649, 1, 0, 0, 0, 4114, 4116, 3, 656, 328, 0, 4115, 4117, 3, 644, 322, 0, 4116, 4115, 1, 0, 0, 0, 4116, 4117, 1, 0, 0, 0, 4117, 4122, 1, 0, 0, 0, 4118, 4120, 5, 17, 0, 0, 4119, 4118, 1, 0, 0, 0, 4119, 4120, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4123, 3, 924, 462, 0, 4122, 4119, 1, 0, 0, 0, 4122, 4123, 1, 0, 0, 0, 4123, 651, 1, 0, 0, 0, 4124, 4125, 3, 924, 462, 0, 4125, 653, 1, 0, 0, 0, 4126, 4127, 3, 924, 462, 0, 4127, 655, 1, 0, 0, 0, 4128, 4131, 3, 658, 329, 0, 4129, 4131, 3, 662, 331, 0, 4130, 4128, 1, 0, 0, 0, 4130, 4129, 1, 0, 0, 0, 4131, 657, 1, 0, 0, 0, 4132, 4133, 3, 924, 462, 0, 4133, 4134, 5, 394, 0, 0, 4134, 4137, 3, 924, 462, 0, 4135, 4136, 5, 394, 0, 0, 4136, 4138, 3, 924, 462, 0, 4137, 4135, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4141, 1, 0, 0, 0, 4139, 4141, 3, 924, 462, 0, 4140, 4132, 1, 0, 0, 0, 4140, 4139, 1, 0, 0, 0, 4141, 659, 1, 0, 0, 0, 4142, 4143, 3, 924, 462, 0, 4143, 4144, 5, 394, 0, 0, 4144, 4147, 3, 924, 462, 0, 4145, 4146, 5, 394, 0, 0, 4146, 4148, 3, 924, 462, 0, 4147, 4145, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4151, 1, 0, 0, 0, 4149, 4151, 3, 924, 462, 0, 4150, 4142, 1, 0, 0, 0, 4150, 4149, 1, 0, 0, 0, 4151, 661, 1, 0, 0, 0, 4152, 4153, 3, 924, 462, 0, 4153, 4154, 5, 394, 0, 0, 4154, 4156, 1, 0, 0, 0, 4155, 4152, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4158, 3, 924, 462, 0, 4158, 663, 1, 0, 0, 0, 4159, 4160, 3, 924, 462, 0, 4160, 4161, 5, 394, 0, 0, 4161, 4163, 1, 0, 0, 0, 4162, 4159, 1, 0, 0, 0, 4162, 4163, 1, 0, 0, 0, 4163, 4164, 1, 0, 0, 0, 4164, 4165, 3, 924, 462, 0, 4165, 665, 1, 0, 0, 0, 4166, 4167, 5, 398, 0, 0, 4167, 4168, 3, 392, 196, 0, 4168, 4170, 5, 399, 0, 0, 4169, 4171, 5, 17, 0, 0, 4170, 4169, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 3, 924, 462, 0, 4173, 667, 1, 0, 0, 0, 4174, 4176, 3, 766, 383, 0, 4175, 4177, 3, 762, 381, 0, 4176, 4175, 1, 0, 0, 0, 4176, 4177, 1, 0, 0, 0, 4177, 4186, 1, 0, 0, 0, 4178, 4186, 3, 762, 381, 0, 4179, 4181, 3, 768, 384, 0, 4180, 4182, 3, 770, 385, 0, 4181, 4180, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4186, 1, 0, 0, 0, 4183, 4186, 3, 770, 385, 0, 4184, 4186, 3, 764, 382, 0, 4185, 4174, 1, 0, 0, 0, 4185, 4178, 1, 0, 0, 0, 4185, 4179, 1, 0, 0, 0, 4185, 4183, 1, 0, 0, 0, 4185, 4184, 1, 0, 0, 0, 4186, 669, 1, 0, 0, 0, 4187, 4191, 3, 666, 333, 0, 4188, 4191, 3, 646, 323, 0, 4189, 4191, 3, 672, 336, 0, 4190, 4187, 1, 0, 0, 0, 4190, 4188, 1, 0, 0, 0, 4190, 4189, 1, 0, 0, 0, 4191, 671, 1, 0, 0, 0, 4192, 4193, 3, 924, 462, 0, 4193, 4194, 5, 398, 0, 0, 4194, 4195, 5, 223, 0, 0, 4195, 4197, 3, 670, 335, 0, 4196, 4198, 3, 668, 334, 0, 4197, 4196, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4214, 1, 0, 0, 0, 4199, 4200, 5, 431, 0, 0, 4200, 4201, 5, 398, 0, 0, 4201, 4202, 3, 826, 413, 0, 4202, 4211, 5, 399, 0, 0, 4203, 4204, 5, 396, 0, 0, 4204, 4205, 5, 431, 0, 0, 4205, 4206, 5, 398, 0, 0, 4206, 4207, 3, 826, 413, 0, 4207, 4208, 5, 399, 0, 0, 4208, 4210, 1, 0, 0, 0, 4209, 4203, 1, 0, 0, 0, 4210, 4213, 1, 0, 0, 0, 4211, 4209, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4215, 1, 0, 0, 0, 4213, 4211, 1, 0, 0, 0, 4214, 4199, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 4216, 1, 0, 0, 0, 4216, 4218, 5, 399, 0, 0, 4217, 4219, 3, 924, 462, 0, 4218, 4217, 1, 0, 0, 0, 4218, 4219, 1, 0, 0, 0, 4219, 673, 1, 0, 0, 0, 4220, 4221, 5, 383, 0, 0, 4221, 4222, 3, 676, 338, 0, 4222, 675, 1, 0, 0, 0, 4223, 4224, 3, 826, 413, 0, 4224, 677, 1, 0, 0, 0, 4225, 4226, 3, 680, 340, 0, 4226, 679, 1, 0, 0, 0, 4227, 4228, 5, 373, 0, 0, 4228, 4229, 3, 682, 341, 0, 4229, 681, 1, 0, 0, 0, 4230, 4235, 3, 684, 342, 0, 4231, 4232, 5, 396, 0, 0, 4232, 4234, 3, 684, 342, 0, 4233, 4231, 1, 0, 0, 0, 4234, 4237, 1, 0, 0, 0, 4235, 4233, 1, 0, 0, 0, 4235, 4236, 1, 0, 0, 0, 4236, 4247, 1, 0, 0, 0, 4237, 4235, 1, 0, 0, 0, 4238, 4243, 3, 686, 343, 0, 4239, 4240, 5, 396, 0, 0, 4240, 4242, 3, 684, 342, 0, 4241, 4239, 1, 0, 0, 0, 4242, 4245, 1, 0, 0, 0, 4243, 4241, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4247, 1, 0, 0, 0, 4245, 4243, 1, 0, 0, 0, 4246, 4230, 1, 0, 0, 0, 4246, 4238, 1, 0, 0, 0, 4247, 683, 1, 0, 0, 0, 4248, 4249, 3, 744, 372, 0, 4249, 685, 1, 0, 0, 0, 4250, 4251, 5, 398, 0, 0, 4251, 4252, 3, 752, 376, 0, 4252, 4253, 5, 399, 0, 0, 4253, 687, 1, 0, 0, 0, 4254, 4255, 5, 328, 0, 0, 4255, 4256, 5, 398, 0, 0, 4256, 4257, 3, 680, 340, 0, 4257, 4259, 5, 399, 0, 0, 4258, 4260, 5, 17, 0, 0, 4259, 4258, 1, 0, 0, 0, 4259, 4260, 1, 0, 0, 0, 4260, 4261, 1, 0, 0, 0, 4261, 4271, 3, 638, 319, 0, 4262, 4263, 5, 398, 0, 0, 4263, 4268, 3, 924, 462, 0, 4264, 4265, 5, 396, 0, 0, 4265, 4267, 3, 924, 462, 0, 4266, 4264, 1, 0, 0, 0, 4267, 4270, 1, 0, 0, 0, 4268, 4266, 1, 0, 0, 0, 4268, 4269, 1, 0, 0, 0, 4269, 4272, 1, 0, 0, 0, 4270, 4268, 1, 0, 0, 0, 4271, 4262, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4273, 1, 0, 0, 0, 4273, 4274, 5, 399, 0, 0, 4274, 689, 1, 0, 0, 0, 4275, 4277, 5, 298, 0, 0, 4276, 4278, 5, 435, 0, 0, 4277, 4276, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4285, 1, 0, 0, 0, 4279, 4281, 3, 692, 346, 0, 4280, 4279, 1, 0, 0, 0, 4280, 4281, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4286, 3, 694, 347, 0, 4283, 4284, 5, 346, 0, 0, 4284, 4286, 3, 696, 348, 0, 4285, 4280, 1, 0, 0, 0, 4285, 4283, 1, 0, 0, 0, 4286, 4289, 1, 0, 0, 0, 4287, 4289, 3, 700, 350, 0, 4288, 4275, 1, 0, 0, 0, 4288, 4287, 1, 0, 0, 0, 4289, 691, 1, 0, 0, 0, 4290, 4291, 7, 20, 0, 0, 4291, 693, 1, 0, 0, 0, 4292, 4297, 3, 698, 349, 0, 4293, 4294, 5, 396, 0, 0, 4294, 4296, 3, 698, 349, 0, 4295, 4293, 1, 0, 0, 0, 4296, 4299, 1, 0, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 695, 1, 0, 0, 0, 4299, 4297, 1, 0, 0, 0, 4300, 4301, 5, 398, 0, 0, 4301, 4302, 3, 704, 352, 0, 4302, 4303, 5, 399, 0, 0, 4303, 4304, 3, 238, 119, 0, 4304, 4305, 3, 242, 121, 0, 4305, 4306, 5, 369, 0, 0, 4306, 4319, 5, 425, 0, 0, 4307, 4317, 5, 17, 0, 0, 4308, 4311, 5, 398, 0, 0, 4309, 4312, 3, 616, 308, 0, 4310, 4312, 3, 274, 137, 0, 4311, 4309, 1, 0, 0, 0, 4311, 4310, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 4314, 5, 399, 0, 0, 4314, 4318, 1, 0, 0, 0, 4315, 4318, 3, 616, 308, 0, 4316, 4318, 3, 274, 137, 0, 4317, 4308, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4317, 4316, 1, 0, 0, 0, 4318, 4320, 1, 0, 0, 0, 4319, 4307, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4322, 3, 238, 119, 0, 4322, 4323, 3, 240, 120, 0, 4323, 697, 1, 0, 0, 0, 4324, 4348, 3, 610, 305, 0, 4325, 4328, 3, 282, 141, 0, 4326, 4328, 3, 826, 413, 0, 4327, 4325, 1, 0, 0, 0, 4327, 4326, 1, 0, 0, 0, 4328, 4345, 1, 0, 0, 0, 4329, 4331, 5, 17, 0, 0, 4330, 4329, 1, 0, 0, 0, 4330, 4331, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4346, 3, 924, 462, 0, 4333, 4334, 5, 17, 0, 0, 4334, 4335, 5, 398, 0, 0, 4335, 4340, 3, 924, 462, 0, 4336, 4337, 5, 396, 0, 0, 4337, 4339, 3, 924, 462, 0, 4338, 4336, 1, 0, 0, 0, 4339, 4342, 1, 0, 0, 0, 4340, 4338, 1, 0, 0, 0, 4340, 4341, 1, 0, 0, 0, 4341, 4343, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4343, 4344, 5, 399, 0, 0, 4344, 4346, 1, 0, 0, 0, 4345, 4330, 1, 0, 0, 0, 4345, 4333, 1, 0, 0, 0, 4345, 4346, 1, 0, 0, 0, 4346, 4348, 1, 0, 0, 0, 4347, 4324, 1, 0, 0, 0, 4347, 4327, 1, 0, 0, 0, 4348, 699, 1, 0, 0, 0, 4349, 4350, 7, 28, 0, 0, 4350, 4351, 3, 704, 352, 0, 4351, 4352, 3, 238, 119, 0, 4352, 4353, 3, 242, 121, 0, 4353, 4354, 5, 369, 0, 0, 4354, 4367, 5, 425, 0, 0, 4355, 4365, 5, 17, 0, 0, 4356, 4359, 5, 398, 0, 0, 4357, 4360, 3, 616, 308, 0, 4358, 4360, 3, 274, 137, 0, 4359, 4357, 1, 0, 0, 0, 4359, 4358, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 4362, 5, 399, 0, 0, 4362, 4366, 1, 0, 0, 0, 4363, 4366, 3, 616, 308, 0, 4364, 4366, 3, 274, 137, 0, 4365, 4356, 1, 0, 0, 0, 4365, 4363, 1, 0, 0, 0, 4365, 4364, 1, 0, 0, 0, 4366, 4368, 1, 0, 0, 0, 4367, 4355, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4370, 3, 238, 119, 0, 4370, 4371, 3, 240, 120, 0, 4371, 701, 1, 0, 0, 0, 4372, 4375, 3, 610, 305, 0, 4373, 4375, 3, 826, 413, 0, 4374, 4372, 1, 0, 0, 0, 4374, 4373, 1, 0, 0, 0, 4375, 703, 1, 0, 0, 0, 4376, 4381, 3, 702, 351, 0, 4377, 4378, 5, 396, 0, 0, 4378, 4380, 3, 702, 351, 0, 4379, 4377, 1, 0, 0, 0, 4380, 4383, 1, 0, 0, 0, 4381, 4379, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 705, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4384, 4385, 5, 385, 0, 0, 4385, 4390, 3, 708, 354, 0, 4386, 4387, 5, 396, 0, 0, 4387, 4389, 3, 708, 354, 0, 4388, 4386, 1, 0, 0, 0, 4389, 4392, 1, 0, 0, 0, 4390, 4388, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 707, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4393, 4394, 3, 924, 462, 0, 4394, 4395, 5, 17, 0, 0, 4395, 4396, 3, 710, 355, 0, 4396, 709, 1, 0, 0, 0, 4397, 4410, 3, 924, 462, 0, 4398, 4400, 5, 398, 0, 0, 4399, 4401, 3, 924, 462, 0, 4400, 4399, 1, 0, 0, 0, 4400, 4401, 1, 0, 0, 0, 4401, 4403, 1, 0, 0, 0, 4402, 4404, 3, 668, 334, 0, 4403, 4402, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 4406, 1, 0, 0, 0, 4405, 4407, 3, 712, 356, 0, 4406, 4405, 1, 0, 0, 0, 4406, 4407, 1, 0, 0, 0, 4407, 4408, 1, 0, 0, 0, 4408, 4410, 5, 399, 0, 0, 4409, 4397, 1, 0, 0, 0, 4409, 4398, 1, 0, 0, 0, 4410, 711, 1, 0, 0, 0, 4411, 4414, 3, 714, 357, 0, 4412, 4414, 3, 716, 358, 0, 4413, 4411, 1, 0, 0, 0, 4413, 4412, 1, 0, 0, 0, 4414, 713, 1, 0, 0, 0, 4415, 4422, 5, 291, 0, 0, 4416, 4423, 3, 718, 359, 0, 4417, 4418, 5, 25, 0, 0, 4418, 4419, 3, 720, 360, 0, 4419, 4420, 5, 11, 0, 0, 4420, 4421, 3, 720, 360, 0, 4421, 4423, 1, 0, 0, 0, 4422, 4416, 1, 0, 0, 0, 4422, 4417, 1, 0, 0, 0, 4423, 715, 1, 0, 0, 0, 4424, 4431, 5, 259, 0, 0, 4425, 4432, 3, 718, 359, 0, 4426, 4427, 5, 25, 0, 0, 4427, 4428, 3, 720, 360, 0, 4428, 4429, 5, 11, 0, 0, 4429, 4430, 3, 720, 360, 0, 4430, 4432, 1, 0, 0, 0, 4431, 4425, 1, 0, 0, 0, 4431, 4426, 1, 0, 0, 0, 4432, 717, 1, 0, 0, 0, 4433, 4434, 5, 353, 0, 0, 4434, 4440, 5, 246, 0, 0, 4435, 4436, 5, 62, 0, 0, 4436, 4440, 5, 290, 0, 0, 4437, 4438, 5, 430, 0, 0, 4438, 4440, 5, 246, 0, 0, 4439, 4433, 1, 0, 0, 0, 4439, 4435, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4440, 719, 1, 0, 0, 0, 4441, 4442, 7, 29, 0, 0, 4442, 4446, 7, 30, 0, 0, 4443, 4444, 5, 62, 0, 0, 4444, 4446, 5, 290, 0, 0, 4445, 4441, 1, 0, 0, 0, 4445, 4443, 1, 0, 0, 0, 4446, 721, 1, 0, 0, 0, 4447, 4448, 5, 144, 0, 0, 4448, 4449, 5, 32, 0, 0, 4449, 4450, 3, 724, 362, 0, 4450, 723, 1, 0, 0, 0, 4451, 4456, 3, 282, 141, 0, 4452, 4456, 3, 728, 364, 0, 4453, 4456, 3, 730, 365, 0, 4454, 4456, 3, 726, 363, 0, 4455, 4451, 1, 0, 0, 0, 4455, 4452, 1, 0, 0, 0, 4455, 4453, 1, 0, 0, 0, 4455, 4454, 1, 0, 0, 0, 4456, 725, 1, 0, 0, 0, 4457, 4458, 5, 398, 0, 0, 4458, 4459, 5, 399, 0, 0, 4459, 727, 1, 0, 0, 0, 4460, 4463, 5, 289, 0, 0, 4461, 4463, 5, 61, 0, 0, 4462, 4460, 1, 0, 0, 0, 4462, 4461, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4465, 5, 398, 0, 0, 4465, 4470, 3, 826, 413, 0, 4466, 4467, 5, 396, 0, 0, 4467, 4469, 3, 826, 413, 0, 4468, 4466, 1, 0, 0, 0, 4469, 4472, 1, 0, 0, 0, 4470, 4468, 1, 0, 0, 0, 4470, 4471, 1, 0, 0, 0, 4471, 4473, 1, 0, 0, 0, 4472, 4470, 1, 0, 0, 0, 4473, 4474, 5, 399, 0, 0, 4474, 729, 1, 0, 0, 0, 4475, 4480, 3, 746, 373, 0, 4476, 4477, 5, 386, 0, 0, 4477, 4481, 5, 289, 0, 0, 4478, 4479, 5, 386, 0, 0, 4479, 4481, 5, 61, 0, 0, 4480, 4476, 1, 0, 0, 0, 4480, 4478, 1, 0, 0, 0, 4480, 4481, 1, 0, 0, 0, 4481, 4495, 1, 0, 0, 0, 4482, 4483, 5, 145, 0, 0, 4483, 4484, 5, 304, 0, 0, 4484, 4485, 5, 398, 0, 0, 4485, 4490, 3, 732, 366, 0, 4486, 4487, 5, 396, 0, 0, 4487, 4489, 3, 732, 366, 0, 4488, 4486, 1, 0, 0, 0, 4489, 4492, 1, 0, 0, 0, 4490, 4488, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4493, 1, 0, 0, 0, 4492, 4490, 1, 0, 0, 0, 4493, 4494, 5, 399, 0, 0, 4494, 4496, 1, 0, 0, 0, 4495, 4482, 1, 0, 0, 0, 4495, 4496, 1, 0, 0, 0, 4496, 731, 1, 0, 0, 0, 4497, 4500, 3, 734, 367, 0, 4498, 4500, 3, 736, 368, 0, 4499, 4497, 1, 0, 0, 0, 4499, 4498, 1, 0, 0, 0, 4500, 733, 1, 0, 0, 0, 4501, 4503, 5, 398, 0, 0, 4502, 4504, 3, 826, 413, 0, 4503, 4502, 1, 0, 0, 0, 4503, 4504, 1, 0, 0, 0, 4504, 4509, 1, 0, 0, 0, 4505, 4506, 5, 396, 0, 0, 4506, 4508, 3, 826, 413, 0, 4507, 4505, 1, 0, 0, 0, 4508, 4511, 1, 0, 0, 0, 4509, 4507, 1, 0, 0, 0, 4509, 4510, 1, 0, 0, 0, 4510, 4512, 1, 0, 0, 0, 4511, 4509, 1, 0, 0, 0, 4512, 4513, 5, 399, 0, 0, 4513, 735, 1, 0, 0, 0, 4514, 4515, 3, 826, 413, 0, 4515, 737, 1, 0, 0, 0, 4516, 4517, 5, 146, 0, 0, 4517, 4518, 3, 742, 371, 0, 4518, 739, 1, 0, 0, 0, 4519, 4520, 5, 255, 0, 0, 4520, 4521, 3, 826, 413, 0, 4521, 741, 1, 0, 0, 0, 4522, 4523, 3, 826, 413, 0, 4523, 743, 1, 0, 0, 0, 4524, 4525, 5, 398, 0, 0, 4525, 4526, 3, 746, 373, 0, 4526, 4527, 5, 399, 0, 0, 4527, 745, 1, 0, 0, 0, 4528, 4530, 3, 750, 375, 0, 4529, 4531, 3, 748, 374, 0, 4530, 4529, 1, 0, 0, 0, 4530, 4531, 1, 0, 0, 0, 4531, 747, 1, 0, 0, 0, 4532, 4533, 5, 396, 0, 0, 4533, 4535, 3, 750, 375, 0, 4534, 4532, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4534, 1, 0, 0, 0, 4536, 4537, 1, 0, 0, 0, 4537, 749, 1, 0, 0, 0, 4538, 4541, 3, 612, 306, 0, 4539, 4541, 3, 826, 413, 0, 4540, 4538, 1, 0, 0, 0, 4540, 4539, 1, 0, 0, 0, 4541, 751, 1, 0, 0, 0, 4542, 4544, 3, 826, 413, 0, 4543, 4545, 5, 17, 0, 0, 4544, 4543, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 4547, 1, 0, 0, 0, 4546, 4548, 3, 924, 462, 0, 4547, 4546, 1, 0, 0, 0, 4547, 4548, 1, 0, 0, 0, 4548, 4553, 1, 0, 0, 0, 4549, 4550, 5, 396, 0, 0, 4550, 4552, 3, 754, 377, 0, 4551, 4549, 1, 0, 0, 0, 4552, 4555, 1, 0, 0, 0, 4553, 4551, 1, 0, 0, 0, 4553, 4554, 1, 0, 0, 0, 4554, 753, 1, 0, 0, 0, 4555, 4553, 1, 0, 0, 0, 4556, 4558, 3, 826, 413, 0, 4557, 4559, 5, 17, 0, 0, 4558, 4557, 1, 0, 0, 0, 4558, 4559, 1, 0, 0, 0, 4559, 4561, 1, 0, 0, 0, 4560, 4562, 3, 924, 462, 0, 4561, 4560, 1, 0, 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 755, 1, 0, 0, 0, 4563, 4566, 3, 744, 372, 0, 4564, 4566, 3, 746, 373, 0, 4565, 4563, 1, 0, 0, 0, 4565, 4564, 1, 0, 0, 0, 4566, 757, 1, 0, 0, 0, 4567, 4568, 5, 398, 0, 0, 4568, 4573, 3, 340, 170, 0, 4569, 4570, 5, 396, 0, 0, 4570, 4572, 3, 340, 170, 0, 4571, 4569, 1, 0, 0, 0, 4572, 4575, 1, 0, 0, 0, 4573, 4571, 1, 0, 0, 0, 4573, 4574, 1, 0, 0, 0, 4574, 4576, 1, 0, 0, 0, 4575, 4573, 1, 0, 0, 0, 4576, 4577, 5, 399, 0, 0, 4577, 759, 1, 0, 0, 0, 4578, 4583, 3, 340, 170, 0, 4579, 4580, 5, 396, 0, 0, 4580, 4582, 3, 340, 170, 0, 4581, 4579, 1, 0, 0, 0, 4582, 4585, 1, 0, 0, 0, 4583, 4581, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 761, 1, 0, 0, 0, 4585, 4583, 1, 0, 0, 0, 4586, 4587, 5, 228, 0, 0, 4587, 4588, 5, 32, 0, 0, 4588, 4593, 3, 340, 170, 0, 4589, 4590, 5, 396, 0, 0, 4590, 4592, 3, 340, 170, 0, 4591, 4589, 1, 0, 0, 0, 4592, 4595, 1, 0, 0, 0, 4593, 4591, 1, 0, 0, 0, 4593, 4594, 1, 0, 0, 0, 4594, 763, 1, 0, 0, 0, 4595, 4593, 1, 0, 0, 0, 4596, 4597, 5, 41, 0, 0, 4597, 4598, 5, 32, 0, 0, 4598, 4599, 3, 756, 378, 0, 4599, 765, 1, 0, 0, 0, 4600, 4601, 5, 236, 0, 0, 4601, 4602, 5, 32, 0, 0, 4602, 4603, 3, 756, 378, 0, 4603, 767, 1, 0, 0, 0, 4604, 4605, 5, 97, 0, 0, 4605, 4606, 5, 32, 0, 0, 4606, 4607, 3, 756, 378, 0, 4607, 769, 1, 0, 0, 0, 4608, 4609, 5, 313, 0, 0, 4609, 4612, 5, 32, 0, 0, 4610, 4613, 3, 758, 379, 0, 4611, 4613, 3, 760, 380, 0, 4612, 4610, 1, 0, 0, 0, 4612, 4611, 1, 0, 0, 0, 4613, 771, 1, 0, 0, 0, 4614, 4615, 5, 348, 0, 0, 4615, 4619, 5, 398, 0, 0, 4616, 4620, 5, 179, 0, 0, 4617, 4620, 5, 342, 0, 0, 4618, 4620, 5, 29, 0, 0, 4619, 4616, 1, 0, 0, 0, 4619, 4617, 1, 0, 0, 0, 4619, 4618, 1, 0, 0, 0, 4619, 4620, 1, 0, 0, 0, 4620, 4622, 1, 0, 0, 0, 4621, 4623, 3, 702, 351, 0, 4622, 4621, 1, 0, 0, 0, 4622, 4623, 1, 0, 0, 0, 4623, 4624, 1, 0, 0, 0, 4624, 4625, 5, 139, 0, 0, 4625, 4626, 3, 702, 351, 0, 4626, 4627, 5, 399, 0, 0, 4627, 773, 1, 0, 0, 0, 4628, 4669, 3, 772, 386, 0, 4629, 4630, 3, 782, 391, 0, 4630, 4645, 5, 398, 0, 0, 4631, 4646, 5, 414, 0, 0, 4632, 4634, 3, 692, 346, 0, 4633, 4632, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4643, 1, 0, 0, 0, 4635, 4640, 3, 702, 351, 0, 4636, 4637, 5, 396, 0, 0, 4637, 4639, 3, 702, 351, 0, 4638, 4636, 1, 0, 0, 0, 4639, 4642, 1, 0, 0, 0, 4640, 4638, 1, 0, 0, 0, 4640, 4641, 1, 0, 0, 0, 4641, 4644, 1, 0, 0, 0, 4642, 4640, 1, 0, 0, 0, 4643, 4635, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4646, 1, 0, 0, 0, 4645, 4631, 1, 0, 0, 0, 4645, 4633, 1, 0, 0, 0, 4646, 4666, 1, 0, 0, 0, 4647, 4648, 5, 399, 0, 0, 4648, 4649, 5, 387, 0, 0, 4649, 4650, 5, 144, 0, 0, 4650, 4651, 5, 398, 0, 0, 4651, 4652, 3, 762, 381, 0, 4652, 4653, 5, 399, 0, 0, 4653, 4667, 1, 0, 0, 0, 4654, 4656, 5, 399, 0, 0, 4655, 4657, 3, 776, 388, 0, 4656, 4655, 1, 0, 0, 0, 4656, 4657, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 4659, 5, 233, 0, 0, 4659, 4667, 3, 710, 355, 0, 4660, 4661, 3, 776, 388, 0, 4661, 4662, 5, 399, 0, 0, 4662, 4663, 5, 233, 0, 0, 4663, 4664, 3, 710, 355, 0, 4664, 4667, 1, 0, 0, 0, 4665, 4667, 5, 399, 0, 0, 4666, 4647, 1, 0, 0, 0, 4666, 4654, 1, 0, 0, 0, 4666, 4660, 1, 0, 0, 0, 4666, 4665, 1, 0, 0, 0, 4667, 4669, 1, 0, 0, 0, 4668, 4628, 1, 0, 0, 0, 4668, 4629, 1, 0, 0, 0, 4669, 775, 1, 0, 0, 0, 4670, 4671, 5, 280, 0, 0, 4671, 4675, 5, 219, 0, 0, 4672, 4673, 5, 152, 0, 0, 4673, 4675, 5, 219, 0, 0, 4674, 4670, 1, 0, 0, 0, 4674, 4672, 1, 0, 0, 0, 4675, 777, 1, 0, 0, 0, 4676, 4677, 3, 926, 463, 0, 4677, 779, 1, 0, 0, 0, 4678, 4681, 3, 784, 392, 0, 4679, 4681, 5, 425, 0, 0, 4680, 4678, 1, 0, 0, 0, 4680, 4679, 1, 0, 0, 0, 4681, 781, 1, 0, 0, 0, 4682, 4685, 3, 784, 392, 0, 4683, 4685, 3, 786, 393, 0, 4684, 4682, 1, 0, 0, 0, 4684, 4683, 1, 0, 0, 0, 4685, 783, 1, 0, 0, 0, 4686, 4687, 3, 926, 463, 0, 4687, 785, 1, 0, 0, 0, 4688, 4691, 3, 932, 466, 0, 4689, 4691, 3, 922, 461, 0, 4690, 4688, 1, 0, 0, 0, 4690, 4689, 1, 0, 0, 0, 4691, 787, 1, 0, 0, 0, 4692, 4693, 5, 36, 0, 0, 4693, 4694, 5, 398, 0, 0, 4694, 4695, 3, 826, 413, 0, 4695, 4696, 5, 17, 0, 0, 4696, 4699, 3, 380, 190, 0, 4697, 4698, 5, 137, 0, 0, 4698, 4700, 5, 425, 0, 0, 4699, 4697, 1, 0, 0, 0, 4699, 4700, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4702, 5, 399, 0, 0, 4702, 789, 1, 0, 0, 0, 4703, 4704, 5, 35, 0, 0, 4704, 4710, 3, 826, 413, 0, 4705, 4706, 5, 382, 0, 0, 4706, 4707, 3, 826, 413, 0, 4707, 4708, 5, 334, 0, 0, 4708, 4709, 3, 826, 413, 0, 4709, 4711, 1, 0, 0, 0, 4710, 4705, 1, 0, 0, 0, 4711, 4712, 1, 0, 0, 0, 4712, 4710, 1, 0, 0, 0, 4712, 4713, 1, 0, 0, 0, 4713, 4716, 1, 0, 0, 0, 4714, 4715, 5, 105, 0, 0, 4715, 4717, 3, 826, 413, 0, 4716, 4714, 1, 0, 0, 0, 4716, 4717, 1, 0, 0, 0, 4717, 4718, 1, 0, 0, 0, 4718, 4719, 5, 108, 0, 0, 4719, 791, 1, 0, 0, 0, 4720, 4726, 5, 35, 0, 0, 4721, 4722, 5, 382, 0, 0, 4722, 4723, 3, 826, 413, 0, 4723, 4724, 5, 334, 0, 0, 4724, 4725, 3, 826, 413, 0, 4725, 4727, 1, 0, 0, 0, 4726, 4721, 1, 0, 0, 0, 4727, 4728, 1, 0, 0, 0, 4728, 4726, 1, 0, 0, 0, 4728, 4729, 1, 0, 0, 0, 4729, 4732, 1, 0, 0, 0, 4730, 4731, 5, 105, 0, 0, 4731, 4733, 3, 826, 413, 0, 4732, 4730, 1, 0, 0, 0, 4732, 4733, 1, 0, 0, 0, 4733, 4734, 1, 0, 0, 0, 4734, 4735, 5, 108, 0, 0, 4735, 793, 1, 0, 0, 0, 4736, 4737, 5, 132, 0, 0, 4737, 4738, 5, 398, 0, 0, 4738, 4741, 3, 826, 413, 0, 4739, 4740, 5, 340, 0, 0, 4740, 4742, 3, 796, 398, 0, 4741, 4739, 1, 0, 0, 0, 4741, 4742, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4744, 5, 399, 0, 0, 4744, 795, 1, 0, 0, 0, 4745, 4754, 3, 974, 487, 0, 4746, 4754, 5, 256, 0, 0, 4747, 4754, 3, 976, 488, 0, 4748, 4754, 3, 978, 489, 0, 4749, 4754, 3, 980, 490, 0, 4750, 4754, 3, 982, 491, 0, 4751, 4754, 3, 984, 492, 0, 4752, 4754, 3, 986, 493, 0, 4753, 4745, 1, 0, 0, 0, 4753, 4746, 1, 0, 0, 0, 4753, 4747, 1, 0, 0, 0, 4753, 4748, 1, 0, 0, 0, 4753, 4749, 1, 0, 0, 0, 4753, 4750, 1, 0, 0, 0, 4753, 4751, 1, 0, 0, 0, 4753, 4752, 1, 0, 0, 0, 4754, 797, 1, 0, 0, 0, 4755, 4756, 5, 124, 0, 0, 4756, 4757, 5, 398, 0, 0, 4757, 4758, 3, 800, 400, 0, 4758, 4759, 5, 139, 0, 0, 4759, 4760, 3, 826, 413, 0, 4760, 4761, 5, 399, 0, 0, 4761, 799, 1, 0, 0, 0, 4762, 4771, 3, 974, 487, 0, 4763, 4771, 5, 256, 0, 0, 4764, 4771, 3, 976, 488, 0, 4765, 4771, 3, 978, 489, 0, 4766, 4771, 3, 980, 490, 0, 4767, 4771, 3, 982, 491, 0, 4768, 4771, 3, 984, 492, 0, 4769, 4771, 3, 986, 493, 0, 4770, 4762, 1, 0, 0, 0, 4770, 4763, 1, 0, 0, 0, 4770, 4764, 1, 0, 0, 0, 4770, 4765, 1, 0, 0, 0, 4770, 4766, 1, 0, 0, 0, 4770, 4767, 1, 0, 0, 0, 4770, 4768, 1, 0, 0, 0, 4770, 4769, 1, 0, 0, 0, 4771, 801, 1, 0, 0, 0, 4772, 4786, 3, 820, 410, 0, 4773, 4786, 5, 430, 0, 0, 4774, 4786, 3, 812, 406, 0, 4775, 4786, 3, 814, 407, 0, 4776, 4786, 3, 816, 408, 0, 4777, 4786, 5, 425, 0, 0, 4778, 4786, 3, 808, 404, 0, 4779, 4786, 5, 427, 0, 0, 4780, 4786, 5, 428, 0, 0, 4781, 4786, 3, 810, 405, 0, 4782, 4786, 3, 904, 452, 0, 4783, 4786, 5, 218, 0, 0, 4784, 4786, 3, 804, 402, 0, 4785, 4772, 1, 0, 0, 0, 4785, 4773, 1, 0, 0, 0, 4785, 4774, 1, 0, 0, 0, 4785, 4775, 1, 0, 0, 0, 4785, 4776, 1, 0, 0, 0, 4785, 4777, 1, 0, 0, 0, 4785, 4778, 1, 0, 0, 0, 4785, 4779, 1, 0, 0, 0, 4785, 4780, 1, 0, 0, 0, 4785, 4781, 1, 0, 0, 0, 4785, 4782, 1, 0, 0, 0, 4785, 4783, 1, 0, 0, 0, 4785, 4784, 1, 0, 0, 0, 4786, 803, 1, 0, 0, 0, 4787, 4788, 3, 806, 403, 0, 4788, 805, 1, 0, 0, 0, 4789, 4790, 5, 423, 0, 0, 4790, 807, 1, 0, 0, 0, 4791, 4793, 5, 425, 0, 0, 4792, 4794, 5, 425, 0, 0, 4793, 4792, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4793, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 809, 1, 0, 0, 0, 4797, 4798, 5, 432, 0, 0, 4798, 4799, 5, 426, 0, 0, 4799, 811, 1, 0, 0, 0, 4800, 4801, 5, 71, 0, 0, 4801, 4804, 5, 425, 0, 0, 4802, 4804, 5, 63, 0, 0, 4803, 4800, 1, 0, 0, 0, 4803, 4802, 1, 0, 0, 0, 4804, 813, 1, 0, 0, 0, 4805, 4806, 5, 336, 0, 0, 4806, 4809, 5, 425, 0, 0, 4807, 4809, 5, 64, 0, 0, 4808, 4805, 1, 0, 0, 0, 4808, 4807, 1, 0, 0, 0, 4809, 815, 1, 0, 0, 0, 4810, 4811, 5, 337, 0, 0, 4811, 4812, 5, 425, 0, 0, 4812, 817, 1, 0, 0, 0, 4813, 4814, 7, 24, 0, 0, 4814, 819, 1, 0, 0, 0, 4815, 4816, 3, 818, 409, 0, 4816, 4817, 3, 824, 412, 0, 4817, 821, 1, 0, 0, 0, 4818, 4819, 5, 398, 0, 0, 4819, 4820, 3, 818, 409, 0, 4820, 4821, 5, 399, 0, 0, 4821, 4822, 3, 824, 412, 0, 4822, 4834, 1, 0, 0, 0, 4823, 4829, 5, 165, 0, 0, 4824, 4830, 3, 818, 409, 0, 4825, 4826, 5, 398, 0, 0, 4826, 4827, 3, 826, 413, 0, 4827, 4828, 5, 399, 0, 0, 4828, 4830, 1, 0, 0, 0, 4829, 4824, 1, 0, 0, 0, 4829, 4825, 1, 0, 0, 0, 4830, 4831, 1, 0, 0, 0, 4831, 4832, 3, 824, 412, 0, 4832, 4834, 1, 0, 0, 0, 4833, 4818, 1, 0, 0, 0, 4833, 4823, 1, 0, 0, 0, 4834, 823, 1, 0, 0, 0, 4835, 4836, 3, 974, 487, 0, 4836, 4837, 5, 340, 0, 0, 4837, 4838, 3, 976, 488, 0, 4838, 4850, 1, 0, 0, 0, 4839, 4840, 3, 980, 490, 0, 4840, 4841, 5, 340, 0, 0, 4841, 4842, 3, 986, 493, 0, 4842, 4850, 1, 0, 0, 0, 4843, 4850, 3, 974, 487, 0, 4844, 4850, 3, 976, 488, 0, 4845, 4850, 3, 980, 490, 0, 4846, 4850, 3, 982, 491, 0, 4847, 4850, 3, 984, 492, 0, 4848, 4850, 3, 986, 493, 0, 4849, 4835, 1, 0, 0, 0, 4849, 4839, 1, 0, 0, 0, 4849, 4843, 1, 0, 0, 0, 4849, 4844, 1, 0, 0, 0, 4849, 4845, 1, 0, 0, 0, 4849, 4846, 1, 0, 0, 0, 4849, 4847, 1, 0, 0, 0, 4849, 4848, 1, 0, 0, 0, 4850, 825, 1, 0, 0, 0, 4851, 4852, 3, 902, 451, 0, 4852, 827, 1, 0, 0, 0, 4853, 4865, 3, 802, 401, 0, 4854, 4865, 3, 822, 411, 0, 4855, 4865, 3, 788, 394, 0, 4856, 4865, 3, 798, 399, 0, 4857, 4865, 3, 794, 397, 0, 4858, 4865, 3, 790, 395, 0, 4859, 4865, 3, 792, 396, 0, 4860, 4865, 3, 864, 432, 0, 4861, 4865, 3, 774, 387, 0, 4862, 4865, 3, 744, 372, 0, 4863, 4865, 3, 924, 462, 0, 4864, 4853, 1, 0, 0, 0, 4864, 4854, 1, 0, 0, 0, 4864, 4855, 1, 0, 0, 0, 4864, 4856, 1, 0, 0, 0, 4864, 4857, 1, 0, 0, 0, 4864, 4858, 1, 0, 0, 0, 4864, 4859, 1, 0, 0, 0, 4864, 4860, 1, 0, 0, 0, 4864, 4861, 1, 0, 0, 0, 4864, 4862, 1, 0, 0, 0, 4864, 4863, 1, 0, 0, 0, 4865, 829, 1, 0, 0, 0, 4866, 4875, 3, 828, 414, 0, 4867, 4868, 5, 400, 0, 0, 4868, 4869, 3, 826, 413, 0, 4869, 4870, 5, 401, 0, 0, 4870, 4874, 1, 0, 0, 0, 4871, 4872, 5, 394, 0, 0, 4872, 4874, 3, 924, 462, 0, 4873, 4867, 1, 0, 0, 0, 4873, 4871, 1, 0, 0, 0, 4874, 4877, 1, 0, 0, 0, 4875, 4873, 1, 0, 0, 0, 4875, 4876, 1, 0, 0, 0, 4876, 831, 1, 0, 0, 0, 4877, 4875, 1, 0, 0, 0, 4878, 4879, 7, 31, 0, 0, 4879, 833, 1, 0, 0, 0, 4880, 4882, 3, 832, 416, 0, 4881, 4880, 1, 0, 0, 0, 4882, 4885, 1, 0, 0, 0, 4883, 4881, 1, 0, 0, 0, 4883, 4884, 1, 0, 0, 0, 4884, 4886, 1, 0, 0, 0, 4885, 4883, 1, 0, 0, 0, 4886, 4887, 3, 830, 415, 0, 4887, 835, 1, 0, 0, 0, 4888, 4889, 5, 422, 0, 0, 4889, 837, 1, 0, 0, 0, 4890, 4896, 3, 834, 417, 0, 4891, 4892, 3, 836, 418, 0, 4892, 4893, 3, 834, 417, 0, 4893, 4895, 1, 0, 0, 0, 4894, 4891, 1, 0, 0, 0, 4895, 4898, 1, 0, 0, 0, 4896, 4894, 1, 0, 0, 0, 4896, 4897, 1, 0, 0, 0, 4897, 839, 1, 0, 0, 0, 4898, 4896, 1, 0, 0, 0, 4899, 4900, 7, 32, 0, 0, 4900, 841, 1, 0, 0, 0, 4901, 4907, 3, 838, 419, 0, 4902, 4903, 3, 840, 420, 0, 4903, 4904, 3, 838, 419, 0, 4904, 4906, 1, 0, 0, 0, 4905, 4902, 1, 0, 0, 0, 4906, 4909, 1, 0, 0, 0, 4907, 4905, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 843, 1, 0, 0, 0, 4909, 4907, 1, 0, 0, 0, 4910, 4911, 7, 33, 0, 0, 4911, 845, 1, 0, 0, 0, 4912, 4918, 3, 842, 421, 0, 4913, 4914, 3, 844, 422, 0, 4914, 4915, 3, 842, 421, 0, 4915, 4917, 1, 0, 0, 0, 4916, 4913, 1, 0, 0, 0, 4917, 4920, 1, 0, 0, 0, 4918, 4916, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 847, 1, 0, 0, 0, 4920, 4918, 1, 0, 0, 0, 4921, 4922, 5, 421, 0, 0, 4922, 849, 1, 0, 0, 0, 4923, 4929, 3, 846, 423, 0, 4924, 4925, 3, 848, 424, 0, 4925, 4926, 3, 846, 423, 0, 4926, 4928, 1, 0, 0, 0, 4927, 4924, 1, 0, 0, 0, 4928, 4931, 1, 0, 0, 0, 4929, 4927, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 851, 1, 0, 0, 0, 4931, 4929, 1, 0, 0, 0, 4932, 4933, 5, 418, 0, 0, 4933, 853, 1, 0, 0, 0, 4934, 4940, 3, 850, 425, 0, 4935, 4936, 3, 852, 426, 0, 4936, 4937, 3, 850, 425, 0, 4937, 4939, 1, 0, 0, 0, 4938, 4935, 1, 0, 0, 0, 4939, 4942, 1, 0, 0, 0, 4940, 4938, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 855, 1, 0, 0, 0, 4942, 4940, 1, 0, 0, 0, 4943, 4944, 5, 420, 0, 0, 4944, 857, 1, 0, 0, 0, 4945, 4951, 3, 854, 427, 0, 4946, 4947, 3, 856, 428, 0, 4947, 4948, 3, 854, 427, 0, 4948, 4950, 1, 0, 0, 0, 4949, 4946, 1, 0, 0, 0, 4950, 4953, 1, 0, 0, 0, 4951, 4949, 1, 0, 0, 0, 4951, 4952, 1, 0, 0, 0, 4952, 859, 1, 0, 0, 0, 4953, 4951, 1, 0, 0, 0, 4954, 4955, 7, 34, 0, 0, 4955, 861, 1, 0, 0, 0, 4956, 4962, 3, 860, 430, 0, 4957, 4962, 5, 407, 0, 0, 4958, 4962, 5, 408, 0, 0, 4959, 4962, 5, 409, 0, 0, 4960, 4962, 5, 410, 0, 0, 4961, 4956, 1, 0, 0, 0, 4961, 4957, 1, 0, 0, 0, 4961, 4958, 1, 0, 0, 0, 4961, 4959, 1, 0, 0, 0, 4961, 4960, 1, 0, 0, 0, 4962, 863, 1, 0, 0, 0, 4963, 4964, 5, 398, 0, 0, 4964, 4965, 3, 408, 204, 0, 4965, 4966, 5, 399, 0, 0, 4966, 865, 1, 0, 0, 0, 4967, 4971, 3, 868, 434, 0, 4968, 4969, 5, 117, 0, 0, 4969, 4971, 3, 864, 432, 0, 4970, 4967, 1, 0, 0, 0, 4970, 4968, 1, 0, 0, 0, 4971, 867, 1, 0, 0, 0, 4972, 4974, 3, 858, 429, 0, 4973, 4975, 3, 870, 435, 0, 4974, 4973, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 869, 1, 0, 0, 0, 4976, 4977, 3, 862, 431, 0, 4977, 4978, 3, 858, 429, 0, 4978, 4983, 1, 0, 0, 0, 4979, 4983, 3, 872, 436, 0, 4980, 4981, 5, 215, 0, 0, 4981, 4983, 3, 880, 440, 0, 4982, 4976, 1, 0, 0, 0, 4982, 4979, 1, 0, 0, 0, 4982, 4980, 1, 0, 0, 0, 4983, 871, 1, 0, 0, 0, 4984, 4985, 5, 154, 0, 0, 4985, 4996, 3, 878, 439, 0, 4986, 4987, 5, 25, 0, 0, 4987, 4988, 3, 858, 429, 0, 4988, 4989, 5, 11, 0, 0, 4989, 4990, 3, 858, 429, 0, 4990, 4996, 1, 0, 0, 0, 4991, 4992, 5, 183, 0, 0, 4992, 4993, 7, 35, 0, 0, 4993, 4996, 3, 744, 372, 0, 4994, 4996, 3, 874, 437, 0, 4995, 4984, 1, 0, 0, 0, 4995, 4986, 1, 0, 0, 0, 4995, 4991, 1, 0, 0, 0, 4995, 4994, 1, 0, 0, 0, 4996, 873, 1, 0, 0, 0, 4997, 4998, 3, 920, 460, 0, 4998, 4999, 3, 876, 438, 0, 4999, 5000, 3, 864, 432, 0, 5000, 875, 1, 0, 0, 0, 5001, 5002, 7, 36, 0, 0, 5002, 877, 1, 0, 0, 0, 5003, 5006, 3, 864, 432, 0, 5004, 5006, 3, 744, 372, 0, 5005, 5003, 1, 0, 0, 0, 5005, 5004, 1, 0, 0, 0, 5006, 879, 1, 0, 0, 0, 5007, 5008, 3, 860, 430, 0, 5008, 5009, 3, 858, 429, 0, 5009, 5012, 1, 0, 0, 0, 5010, 5012, 3, 872, 436, 0, 5011, 5007, 1, 0, 0, 0, 5011, 5010, 1, 0, 0, 0, 5012, 881, 1, 0, 0, 0, 5013, 5014, 5, 167, 0, 0, 5014, 5015, 5, 96, 0, 0, 5015, 5016, 5, 139, 0, 0, 5016, 883, 1, 0, 0, 0, 5017, 5025, 5, 404, 0, 0, 5018, 5025, 5, 405, 0, 0, 5019, 5025, 5, 406, 0, 0, 5020, 5021, 5, 167, 0, 0, 5021, 5022, 5, 215, 0, 0, 5022, 5023, 5, 96, 0, 0, 5023, 5025, 5, 139, 0, 0, 5024, 5017, 1, 0, 0, 0, 5024, 5018, 1, 0, 0, 0, 5024, 5019, 1, 0, 0, 0, 5024, 5020, 1, 0, 0, 0, 5025, 885, 1, 0, 0, 0, 5026, 5035, 3, 866, 433, 0, 5027, 5028, 3, 884, 442, 0, 5028, 5029, 3, 866, 433, 0, 5029, 5034, 1, 0, 0, 0, 5030, 5031, 3, 882, 441, 0, 5031, 5032, 3, 866, 433, 0, 5032, 5034, 1, 0, 0, 0, 5033, 5027, 1, 0, 0, 0, 5033, 5030, 1, 0, 0, 0, 5034, 5037, 1, 0, 0, 0, 5035, 5033, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 887, 1, 0, 0, 0, 5037, 5035, 1, 0, 0, 0, 5038, 5051, 5, 218, 0, 0, 5039, 5051, 5, 349, 0, 0, 5040, 5051, 5, 125, 0, 0, 5041, 5051, 5, 359, 0, 0, 5042, 5043, 5, 215, 0, 0, 5043, 5051, 5, 218, 0, 0, 5044, 5045, 5, 215, 0, 0, 5045, 5051, 5, 349, 0, 0, 5046, 5047, 5, 215, 0, 0, 5047, 5051, 5, 125, 0, 0, 5048, 5049, 5, 215, 0, 0, 5049, 5051, 5, 359, 0, 0, 5050, 5038, 1, 0, 0, 0, 5050, 5039, 1, 0, 0, 0, 5050, 5040, 1, 0, 0, 0, 5050, 5041, 1, 0, 0, 0, 5050, 5042, 1, 0, 0, 0, 5050, 5044, 1, 0, 0, 0, 5050, 5046, 1, 0, 0, 0, 5050, 5048, 1, 0, 0, 0, 5051, 889, 1, 0, 0, 0, 5052, 5055, 3, 886, 443, 0, 5053, 5054, 5, 167, 0, 0, 5054, 5056, 3, 888, 444, 0, 5055, 5053, 1, 0, 0, 0, 5055, 5056, 1, 0, 0, 0, 5056, 891, 1, 0, 0, 0, 5057, 5058, 5, 215, 0, 0, 5058, 893, 1, 0, 0, 0, 5059, 5061, 3, 892, 446, 0, 5060, 5059, 1, 0, 0, 0, 5061, 5064, 1, 0, 0, 0, 5062, 5060, 1, 0, 0, 0, 5062, 5063, 1, 0, 0, 0, 5063, 5065, 1, 0, 0, 0, 5064, 5062, 1, 0, 0, 0, 5065, 5066, 3, 890, 445, 0, 5066, 895, 1, 0, 0, 0, 5067, 5068, 5, 11, 0, 0, 5068, 897, 1, 0, 0, 0, 5069, 5075, 3, 894, 447, 0, 5070, 5071, 3, 896, 448, 0, 5071, 5072, 3, 894, 447, 0, 5072, 5074, 1, 0, 0, 0, 5073, 5070, 1, 0, 0, 0, 5074, 5077, 1, 0, 0, 0, 5075, 5073, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 899, 1, 0, 0, 0, 5077, 5075, 1, 0, 0, 0, 5078, 5079, 5, 227, 0, 0, 5079, 901, 1, 0, 0, 0, 5080, 5086, 3, 898, 449, 0, 5081, 5082, 3, 900, 450, 0, 5082, 5083, 3, 898, 449, 0, 5083, 5085, 1, 0, 0, 0, 5084, 5081, 1, 0, 0, 0, 5085, 5088, 1, 0, 0, 0, 5086, 5084, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 903, 1, 0, 0, 0, 5088, 5086, 1, 0, 0, 0, 5089, 5090, 7, 37, 0, 0, 5090, 905, 1, 0, 0, 0, 5091, 5092, 7, 37, 0, 0, 5092, 907, 1, 0, 0, 0, 5093, 5095, 3, 658, 329, 0, 5094, 5096, 3, 910, 455, 0, 5095, 5094, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 909, 1, 0, 0, 0, 5097, 5098, 5, 236, 0, 0, 5098, 5099, 5, 398, 0, 0, 5099, 5104, 3, 912, 456, 0, 5100, 5101, 5, 396, 0, 0, 5101, 5103, 3, 912, 456, 0, 5102, 5100, 1, 0, 0, 0, 5103, 5106, 1, 0, 0, 0, 5104, 5102, 1, 0, 0, 0, 5104, 5105, 1, 0, 0, 0, 5105, 5107, 1, 0, 0, 0, 5106, 5104, 1, 0, 0, 0, 5107, 5108, 5, 399, 0, 0, 5108, 911, 1, 0, 0, 0, 5109, 5112, 3, 924, 462, 0, 5110, 5111, 5, 404, 0, 0, 5111, 5113, 3, 802, 401, 0, 5112, 5110, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 913, 1, 0, 0, 0, 5114, 5115, 5, 398, 0, 0, 5115, 5120, 3, 916, 458, 0, 5116, 5117, 5, 396, 0, 0, 5117, 5119, 3, 916, 458, 0, 5118, 5116, 1, 0, 0, 0, 5119, 5122, 1, 0, 0, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5123, 1, 0, 0, 0, 5122, 5120, 1, 0, 0, 0, 5123, 5124, 5, 399, 0, 0, 5124, 915, 1, 0, 0, 0, 5125, 5126, 3, 924, 462, 0, 5126, 5127, 3, 918, 459, 0, 5127, 5128, 3, 802, 401, 0, 5128, 917, 1, 0, 0, 0, 5129, 5132, 5, 183, 0, 0, 5130, 5132, 3, 920, 460, 0, 5131, 5129, 1, 0, 0, 0, 5131, 5130, 1, 0, 0, 0, 5132, 919, 1, 0, 0, 0, 5133, 5134, 7, 38, 0, 0, 5134, 921, 1, 0, 0, 0, 5135, 5136, 7, 39, 0, 0, 5136, 923, 1, 0, 0, 0, 5137, 5140, 5, 431, 0, 0, 5138, 5140, 3, 930, 465, 0, 5139, 5137, 1, 0, 0, 0, 5139, 5138, 1, 0, 0, 0, 5140, 925, 1, 0, 0, 0, 5141, 5144, 3, 924, 462, 0, 5142, 5143, 5, 394, 0, 0, 5143, 5145, 3, 924, 462, 0, 5144, 5142, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, 927, 1, 0, 0, 0, 5146, 5147, 3, 924, 462, 0, 5147, 929, 1, 0, 0, 0, 5148, 5149, 7, 40, 0, 0, 5149, 931, 1, 0, 0, 0, 5150, 5151, 7, 41, 0, 0, 5151, 933, 1, 0, 0, 0, 5152, 5153, 3, 936, 468, 0, 5153, 5154, 5, 0, 0, 1, 5154, 935, 1, 0, 0, 0, 5155, 5160, 3, 938, 469, 0, 5156, 5157, 5, 396, 0, 0, 5157, 5159, 3, 938, 469, 0, 5158, 5156, 1, 0, 0, 0, 5159, 5162, 1, 0, 0, 0, 5160, 5158, 1, 0, 0, 0, 5160, 5161, 1, 0, 0, 0, 5161, 937, 1, 0, 0, 0, 5162, 5160, 1, 0, 0, 0, 5163, 5168, 3, 940, 470, 0, 5164, 5165, 5, 398, 0, 0, 5165, 5166, 3, 942, 471, 0, 5166, 5167, 5, 399, 0, 0, 5167, 5169, 1, 0, 0, 0, 5168, 5164, 1, 0, 0, 0, 5168, 5169, 1, 0, 0, 0, 5169, 939, 1, 0, 0, 0, 5170, 5171, 7, 42, 0, 0, 5171, 941, 1, 0, 0, 0, 5172, 5177, 3, 944, 472, 0, 5173, 5174, 5, 396, 0, 0, 5174, 5176, 3, 944, 472, 0, 5175, 5173, 1, 0, 0, 0, 5176, 5179, 1, 0, 0, 0, 5177, 5175, 1, 0, 0, 0, 5177, 5178, 1, 0, 0, 0, 5178, 943, 1, 0, 0, 0, 5179, 5177, 1, 0, 0, 0, 5180, 5181, 7, 43, 0, 0, 5181, 945, 1, 0, 0, 0, 5182, 5183, 5, 248, 0, 0, 5183, 5184, 3, 924, 462, 0, 5184, 5185, 5, 139, 0, 0, 5185, 5186, 3, 392, 196, 0, 5186, 947, 1, 0, 0, 0, 5187, 5188, 5, 115, 0, 0, 5188, 5189, 3, 924, 462, 0, 5189, 5190, 5, 369, 0, 0, 5190, 5191, 3, 950, 475, 0, 5191, 949, 1, 0, 0, 0, 5192, 5197, 3, 802, 401, 0, 5193, 5194, 5, 396, 0, 0, 5194, 5196, 3, 802, 401, 0, 5195, 5193, 1, 0, 0, 0, 5196, 5199, 1, 0, 0, 0, 5197, 5195, 1, 0, 0, 0, 5197, 5198, 1, 0, 0, 0, 5198, 951, 1, 0, 0, 0, 5199, 5197, 1, 0, 0, 0, 5200, 5215, 3, 962, 481, 0, 5201, 5215, 3, 990, 495, 0, 5202, 5215, 3, 996, 498, 0, 5203, 5215, 3, 992, 496, 0, 5204, 5215, 3, 994, 497, 0, 5205, 5215, 3, 1018, 509, 0, 5206, 5215, 3, 1020, 510, 0, 5207, 5215, 3, 1022, 511, 0, 5208, 5215, 3, 1028, 514, 0, 5209, 5215, 3, 1030, 515, 0, 5210, 5215, 3, 1032, 516, 0, 5211, 5215, 3, 1034, 517, 0, 5212, 5215, 3, 1036, 518, 0, 5213, 5215, 3, 1038, 519, 0, 5214, 5200, 1, 0, 0, 0, 5214, 5201, 1, 0, 0, 0, 5214, 5202, 1, 0, 0, 0, 5214, 5203, 1, 0, 0, 0, 5214, 5204, 1, 0, 0, 0, 5214, 5205, 1, 0, 0, 0, 5214, 5206, 1, 0, 0, 0, 5214, 5207, 1, 0, 0, 0, 5214, 5208, 1, 0, 0, 0, 5214, 5209, 1, 0, 0, 0, 5214, 5210, 1, 0, 0, 0, 5214, 5211, 1, 0, 0, 0, 5214, 5212, 1, 0, 0, 0, 5214, 5213, 1, 0, 0, 0, 5215, 953, 1, 0, 0, 0, 5216, 5217, 5, 258, 0, 0, 5217, 5218, 5, 404, 0, 0, 5218, 5224, 5, 430, 0, 0, 5219, 5220, 5, 83, 0, 0, 5220, 5221, 5, 245, 0, 0, 5221, 5222, 5, 404, 0, 0, 5222, 5224, 3, 998, 499, 0, 5223, 5216, 1, 0, 0, 0, 5223, 5219, 1, 0, 0, 0, 5224, 955, 1, 0, 0, 0, 5225, 5230, 3, 954, 477, 0, 5226, 5227, 5, 396, 0, 0, 5227, 5229, 3, 954, 477, 0, 5228, 5226, 1, 0, 0, 0, 5229, 5232, 1, 0, 0, 0, 5230, 5228, 1, 0, 0, 0, 5230, 5231, 1, 0, 0, 0, 5231, 957, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5233, 5237, 5, 258, 0, 0, 5234, 5235, 5, 83, 0, 0, 5235, 5237, 5, 245, 0, 0, 5236, 5233, 1, 0, 0, 0, 5236, 5234, 1, 0, 0, 0, 5237, 959, 1, 0, 0, 0, 5238, 5243, 3, 958, 479, 0, 5239, 5240, 5, 396, 0, 0, 5240, 5242, 3, 958, 479, 0, 5241, 5239, 1, 0, 0, 0, 5242, 5245, 1, 0, 0, 0, 5243, 5241, 1, 0, 0, 0, 5243, 5244, 1, 0, 0, 0, 5244, 961, 1, 0, 0, 0, 5245, 5243, 1, 0, 0, 0, 5246, 5247, 5, 58, 0, 0, 5247, 5248, 5, 279, 0, 0, 5248, 5250, 5, 242, 0, 0, 5249, 5251, 3, 44, 22, 0, 5250, 5249, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5261, 1, 0, 0, 0, 5252, 5253, 3, 924, 462, 0, 5253, 5254, 5, 183, 0, 0, 5254, 5255, 3, 924, 462, 0, 5255, 5262, 1, 0, 0, 0, 5256, 5259, 3, 924, 462, 0, 5257, 5258, 5, 386, 0, 0, 5258, 5260, 3, 956, 478, 0, 5259, 5257, 1, 0, 0, 0, 5259, 5260, 1, 0, 0, 0, 5260, 5262, 1, 0, 0, 0, 5261, 5252, 1, 0, 0, 0, 5261, 5256, 1, 0, 0, 0, 5262, 963, 1, 0, 0, 0, 5263, 5264, 5, 386, 0, 0, 5264, 5265, 5, 277, 0, 0, 5265, 965, 1, 0, 0, 0, 5266, 5268, 5, 2, 0, 0, 5267, 5269, 3, 964, 482, 0, 5268, 5267, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, 967, 1, 0, 0, 0, 5270, 5271, 7, 44, 0, 0, 5271, 969, 1, 0, 0, 0, 5272, 5273, 7, 45, 0, 0, 5273, 971, 1, 0, 0, 0, 5274, 5275, 5, 361, 0, 0, 5275, 973, 1, 0, 0, 0, 5276, 5277, 7, 46, 0, 0, 5277, 975, 1, 0, 0, 0, 5278, 5279, 7, 47, 0, 0, 5279, 977, 1, 0, 0, 0, 5280, 5281, 7, 48, 0, 0, 5281, 979, 1, 0, 0, 0, 5282, 5283, 7, 49, 0, 0, 5283, 981, 1, 0, 0, 0, 5284, 5285, 7, 50, 0, 0, 5285, 983, 1, 0, 0, 0, 5286, 5287, 7, 51, 0, 0, 5287, 985, 1, 0, 0, 0, 5288, 5289, 7, 52, 0, 0, 5289, 987, 1, 0, 0, 0, 5290, 5291, 7, 53, 0, 0, 5291, 989, 1, 0, 0, 0, 5292, 5293, 5, 9, 0, 0, 5293, 5294, 5, 279, 0, 0, 5294, 5295, 5, 242, 0, 0, 5295, 5313, 3, 924, 462, 0, 5296, 5314, 5, 372, 0, 0, 5297, 5314, 3, 970, 485, 0, 5298, 5299, 5, 303, 0, 0, 5299, 5314, 3, 956, 478, 0, 5300, 5301, 5, 362, 0, 0, 5301, 5314, 3, 960, 480, 0, 5302, 5303, 5, 273, 0, 0, 5303, 5304, 5, 340, 0, 0, 5304, 5314, 3, 924, 462, 0, 5305, 5307, 3, 966, 483, 0, 5306, 5308, 3, 968, 484, 0, 5307, 5306, 1, 0, 0, 0, 5307, 5308, 1, 0, 0, 0, 5308, 5314, 1, 0, 0, 0, 5309, 5311, 3, 968, 484, 0, 5310, 5312, 3, 966, 483, 0, 5311, 5310, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, 5314, 1, 0, 0, 0, 5313, 5296, 1, 0, 0, 0, 5313, 5297, 1, 0, 0, 0, 5313, 5298, 1, 0, 0, 0, 5313, 5300, 1, 0, 0, 0, 5313, 5302, 1, 0, 0, 0, 5313, 5305, 1, 0, 0, 0, 5313, 5309, 1, 0, 0, 0, 5314, 991, 1, 0, 0, 0, 5315, 5318, 3, 968, 484, 0, 5316, 5318, 3, 970, 485, 0, 5317, 5315, 1, 0, 0, 0, 5317, 5316, 1, 0, 0, 0, 5318, 5319, 1, 0, 0, 0, 5319, 5320, 5, 389, 0, 0, 5320, 5321, 5, 196, 0, 0, 5321, 993, 1, 0, 0, 0, 5322, 5334, 5, 277, 0, 0, 5323, 5324, 5, 3, 0, 0, 5324, 5325, 5, 279, 0, 0, 5325, 5326, 5, 242, 0, 0, 5326, 5327, 5, 386, 0, 0, 5327, 5335, 3, 924, 462, 0, 5328, 5329, 5, 279, 0, 0, 5329, 5330, 5, 242, 0, 0, 5330, 5331, 3, 924, 462, 0, 5331, 5332, 5, 386, 0, 0, 5332, 5333, 3, 924, 462, 0, 5333, 5335, 1, 0, 0, 0, 5334, 5323, 1, 0, 0, 0, 5334, 5328, 1, 0, 0, 0, 5335, 995, 1, 0, 0, 0, 5336, 5337, 5, 101, 0, 0, 5337, 5338, 5, 279, 0, 0, 5338, 5340, 5, 242, 0, 0, 5339, 5341, 3, 40, 20, 0, 5340, 5339, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5343, 3, 924, 462, 0, 5343, 997, 1, 0, 0, 0, 5344, 5349, 3, 924, 462, 0, 5345, 5346, 5, 394, 0, 0, 5346, 5348, 3, 924, 462, 0, 5347, 5345, 1, 0, 0, 0, 5348, 5351, 1, 0, 0, 0, 5349, 5347, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, 999, 1, 0, 0, 0, 5351, 5349, 1, 0, 0, 0, 5352, 5353, 3, 1008, 504, 0, 5353, 1001, 1, 0, 0, 0, 5354, 5355, 3, 1000, 500, 0, 5355, 5356, 5, 0, 0, 1, 5356, 1003, 1, 0, 0, 0, 5357, 5362, 3, 1006, 503, 0, 5358, 5359, 5, 227, 0, 0, 5359, 5361, 3, 1006, 503, 0, 5360, 5358, 1, 0, 0, 0, 5361, 5364, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 1005, 1, 0, 0, 0, 5364, 5362, 1, 0, 0, 0, 5365, 5370, 3, 1008, 504, 0, 5366, 5367, 5, 11, 0, 0, 5367, 5369, 3, 1008, 504, 0, 5368, 5366, 1, 0, 0, 0, 5369, 5372, 1, 0, 0, 0, 5370, 5368, 1, 0, 0, 0, 5370, 5371, 1, 0, 0, 0, 5371, 1007, 1, 0, 0, 0, 5372, 5370, 1, 0, 0, 0, 5373, 5374, 3, 924, 462, 0, 5374, 5375, 3, 1012, 506, 0, 5375, 5376, 3, 1010, 505, 0, 5376, 1009, 1, 0, 0, 0, 5377, 5378, 7, 24, 0, 0, 5378, 1011, 1, 0, 0, 0, 5379, 5380, 5, 410, 0, 0, 5380, 1013, 1, 0, 0, 0, 5381, 5386, 5, 176, 0, 0, 5382, 5383, 5, 210, 0, 0, 5383, 5384, 5, 340, 0, 0, 5384, 5386, 3, 998, 499, 0, 5385, 5381, 1, 0, 0, 0, 5385, 5382, 1, 0, 0, 0, 5386, 1015, 1, 0, 0, 0, 5387, 5388, 3, 1014, 507, 0, 5388, 5389, 5, 0, 0, 1, 5389, 1017, 1, 0, 0, 0, 5390, 5391, 5, 58, 0, 0, 5391, 5392, 5, 347, 0, 0, 5392, 5393, 3, 924, 462, 0, 5393, 5394, 5, 394, 0, 0, 5394, 5395, 3, 924, 462, 0, 5395, 5396, 5, 382, 0, 0, 5396, 5397, 3, 1000, 500, 0, 5397, 5398, 5, 99, 0, 0, 5398, 5399, 3, 1014, 507, 0, 5399, 1019, 1, 0, 0, 0, 5400, 5401, 5, 9, 0, 0, 5401, 5402, 5, 347, 0, 0, 5402, 5403, 3, 924, 462, 0, 5403, 5404, 5, 394, 0, 0, 5404, 5421, 3, 924, 462, 0, 5405, 5406, 5, 382, 0, 0, 5406, 5407, 3, 1000, 500, 0, 5407, 5408, 5, 99, 0, 0, 5408, 5409, 3, 1014, 507, 0, 5409, 5422, 1, 0, 0, 0, 5410, 5411, 5, 4, 0, 0, 5411, 5415, 5, 340, 0, 0, 5412, 5413, 5, 101, 0, 0, 5413, 5415, 5, 139, 0, 0, 5414, 5410, 1, 0, 0, 0, 5414, 5412, 1, 0, 0, 0, 5415, 5419, 1, 0, 0, 0, 5416, 5417, 5, 245, 0, 0, 5417, 5420, 3, 998, 499, 0, 5418, 5420, 5, 361, 0, 0, 5419, 5416, 1, 0, 0, 0, 5419, 5418, 1, 0, 0, 0, 5420, 5422, 1, 0, 0, 0, 5421, 5405, 1, 0, 0, 0, 5421, 5414, 1, 0, 0, 0, 5422, 1021, 1, 0, 0, 0, 5423, 5424, 5, 101, 0, 0, 5424, 5425, 5, 347, 0, 0, 5425, 5426, 3, 924, 462, 0, 5426, 5427, 5, 394, 0, 0, 5427, 5428, 3, 924, 462, 0, 5428, 1023, 1, 0, 0, 0, 5429, 5430, 5, 8, 0, 0, 5430, 5431, 5, 404, 0, 0, 5431, 5442, 5, 430, 0, 0, 5432, 5433, 5, 258, 0, 0, 5433, 5434, 5, 404, 0, 0, 5434, 5442, 5, 430, 0, 0, 5435, 5436, 5, 293, 0, 0, 5436, 5437, 5, 404, 0, 0, 5437, 5442, 5, 425, 0, 0, 5438, 5439, 5, 239, 0, 0, 5439, 5440, 5, 404, 0, 0, 5440, 5442, 3, 998, 499, 0, 5441, 5429, 1, 0, 0, 0, 5441, 5432, 1, 0, 0, 0, 5441, 5435, 1, 0, 0, 0, 5441, 5438, 1, 0, 0, 0, 5442, 1025, 1, 0, 0, 0, 5443, 5448, 3, 1024, 512, 0, 5444, 5445, 5, 396, 0, 0, 5445, 5447, 3, 1024, 512, 0, 5446, 5444, 1, 0, 0, 0, 5447, 5450, 1, 0, 0, 0, 5448, 5446, 1, 0, 0, 0, 5448, 5449, 1, 0, 0, 0, 5449, 1027, 1, 0, 0, 0, 5450, 5448, 1, 0, 0, 0, 5451, 5452, 5, 58, 0, 0, 5452, 5453, 5, 245, 0, 0, 5453, 5454, 3, 924, 462, 0, 5454, 5455, 5, 394, 0, 0, 5455, 5456, 3, 998, 499, 0, 5456, 5457, 5, 386, 0, 0, 5457, 5458, 3, 1026, 513, 0, 5458, 1029, 1, 0, 0, 0, 5459, 5460, 5, 9, 0, 0, 5460, 5461, 5, 245, 0, 0, 5461, 5462, 3, 924, 462, 0, 5462, 5463, 5, 394, 0, 0, 5463, 5471, 3, 998, 499, 0, 5464, 5465, 5, 303, 0, 0, 5465, 5472, 3, 1026, 513, 0, 5466, 5467, 5, 362, 0, 0, 5467, 5472, 5, 293, 0, 0, 5468, 5469, 7, 54, 0, 0, 5469, 5470, 5, 347, 0, 0, 5470, 5472, 3, 924, 462, 0, 5471, 5464, 1, 0, 0, 0, 5471, 5466, 1, 0, 0, 0, 5471, 5468, 1, 0, 0, 0, 5472, 1031, 1, 0, 0, 0, 5473, 5474, 5, 101, 0, 0, 5474, 5475, 5, 245, 0, 0, 5475, 5476, 3, 924, 462, 0, 5476, 5477, 5, 394, 0, 0, 5477, 5478, 3, 998, 499, 0, 5478, 1033, 1, 0, 0, 0, 5479, 5480, 5, 58, 0, 0, 5480, 5481, 7, 55, 0, 0, 5481, 5482, 5, 199, 0, 0, 5482, 5483, 5, 425, 0, 0, 5483, 5484, 5, 154, 0, 0, 5484, 5488, 3, 924, 462, 0, 5485, 5486, 5, 340, 0, 0, 5486, 5489, 3, 998, 499, 0, 5487, 5489, 3, 972, 486, 0, 5488, 5485, 1, 0, 0, 0, 5488, 5487, 1, 0, 0, 0, 5489, 5493, 1, 0, 0, 0, 5490, 5491, 5, 386, 0, 0, 5491, 5492, 5, 228, 0, 0, 5492, 5494, 5, 430, 0, 0, 5493, 5490, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, 1035, 1, 0, 0, 0, 5495, 5496, 5, 9, 0, 0, 5496, 5497, 7, 55, 0, 0, 5497, 5498, 5, 199, 0, 0, 5498, 5499, 5, 425, 0, 0, 5499, 5500, 5, 154, 0, 0, 5500, 5504, 3, 924, 462, 0, 5501, 5502, 5, 340, 0, 0, 5502, 5505, 3, 998, 499, 0, 5503, 5505, 3, 972, 486, 0, 5504, 5501, 1, 0, 0, 0, 5504, 5503, 1, 0, 0, 0, 5505, 5509, 1, 0, 0, 0, 5506, 5507, 5, 386, 0, 0, 5507, 5508, 5, 228, 0, 0, 5508, 5510, 5, 430, 0, 0, 5509, 5506, 1, 0, 0, 0, 5509, 5510, 1, 0, 0, 0, 5510, 1037, 1, 0, 0, 0, 5511, 5512, 5, 101, 0, 0, 5512, 5513, 7, 55, 0, 0, 5513, 5514, 5, 199, 0, 0, 5514, 5515, 5, 425, 0, 0, 5515, 5516, 5, 154, 0, 0, 5516, 5517, 3, 924, 462, 0, 5517, 1039, 1, 0, 0, 0, 649, 1043, 1050, 1053, 1059, 1065, 1072, 1082, 1085, 1089, 1109, 1114, 1119, 1125, 1132, 1145, 1149, 1153, 1158, 1165, 1169, 1174, 1181, 1185, 1196, 1202, 1209, 1258, 1286, 1290, 1294, 1297, 1300, 1305, 1311, 1315, 1321, 1323, 1340, 1352, 1356, 1363, 1371, 1374, 1379, 1383, 1386, 1396, 1404, 1408, 1411, 1415, 1419, 1422, 1427, 1433, 1438, 1443, 1447, 1458, 1460, 1464, 1474, 1478, 1484, 1487, 1494, 1499, 1507, 1512, 1516, 1524, 1529, 1535, 1541, 1544, 1547, 1550, 1559, 1567, 1572, 1580, 1587, 1590, 1593, 1595, 1603, 1606, 1609, 1612, 1615, 1618, 1621, 1624, 1627, 1630, 1633, 1635, 1647, 1653, 1661, 1663, 1673, 1679, 1694, 1711, 1716, 1720, 1724, 1731, 1738, 1744, 1748, 1751, 1758, 1781, 1786, 1790, 1798, 1807, 1811, 1817, 1823, 1830, 1833, 1839, 1846, 1854, 1863, 1872, 1879, 1899, 1906, 1908, 1915, 1925, 1933, 1937, 1941, 1954, 1963, 1979, 1983, 1988, 1993, 1996, 1999, 2003, 2006, 2009, 2014, 2022, 2026, 2033, 2036, 2039, 2042, 2054, 2060, 2086, 2094, 2098, 2101, 2104, 2107, 2110, 2113, 2116, 2119, 2128, 2138, 2141, 2161, 2167, 2173, 2176, 2178, 2185, 2192, 2202, 2207, 2216, 2224, 2232, 2242, 2255, 2268, 2289, 2293, 2308, 2314, 2317, 2320, 2323, 2326, 2330, 2344, 2352, 2355, 2370, 2404, 2412, 2417, 2425, 2430, 2435, 2445, 2453, 2461, 2469, 2477, 2481, 2491, 2495, 2503, 2512, 2515, 2519, 2526, 2532, 2536, 2542, 2546, 2558, 2567, 2578, 2582, 2589, 2601, 2608, 2617, 2620, 2627, 2633, 2639, 2642, 2645, 2651, 2655, 2659, 2664, 2668, 2672, 2676, 2684, 2688, 2692, 2696, 2700, 2708, 2712, 2716, 2724, 2729, 2734, 2738, 2742, 2749, 2758, 2766, 2778, 2796, 2799, 2805, 2831, 2834, 2840, 2848, 2856, 2869, 2876, 2879, 2882, 2885, 2888, 2891, 2894, 2897, 2900, 2903, 2906, 2911, 2914, 2917, 2920, 2923, 2926, 2929, 2932, 2935, 2938, 2941, 2943, 2949, 2953, 2956, 2959, 2962, 2965, 2968, 2975, 2979, 2982, 2985, 2988, 2991, 2994, 3001, 3004, 3012, 3016, 3023, 3025, 3028, 3033, 3036, 3040, 3045, 3051, 3057, 3065, 3073, 3080, 3086, 3095, 3098, 3102, 3115, 3119, 3130, 3137, 3141, 3146, 3149, 3159, 3161, 3165, 3172, 3177, 3197, 3204, 3227, 3243, 3260, 3266, 3283, 3296, 3300, 3304, 3311, 3339, 3346, 3351, 3356, 3361, 3366, 3374, 3380, 3384, 3387, 3390, 3396, 3403, 3413, 3417, 3422, 3426, 3432, 3439, 3446, 3457, 3466, 3470, 3473, 3476, 3484, 3487, 3495, 3498, 3506, 3510, 3515, 3519, 3528, 3544, 3559, 3561, 3577, 3584, 3601, 3604, 3607, 3610, 3616, 3639, 3647, 3661, 3664, 3669, 3695, 3699, 3702, 3705, 3709, 3714, 3717, 3720, 3723, 3726, 3732, 3735, 3738, 3741, 3744, 3747, 3750, 3753, 3756, 3760, 3762, 3768, 3773, 3776, 3779, 3782, 3788, 3791, 3794, 3797, 3800, 3803, 3806, 3809, 3812, 3816, 3818, 3820, 3825, 3829, 3832, 3835, 3840, 3858, 3867, 3879, 3887, 3899, 3902, 3908, 3915, 3922, 3929, 3936, 3945, 3949, 3956, 3961, 3965, 3981, 3985, 3987, 3990, 4003, 4006, 4009, 4021, 4024, 4031, 4040, 4045, 4047, 4049, 4066, 4069, 4078, 4084, 4088, 4091, 4094, 4097, 4100, 4112, 4116, 4119, 4122, 4130, 4137, 4140, 4147, 4150, 4155, 4162, 4170, 4176, 4181, 4185, 4190, 4197, 4211, 4214, 4218, 4235, 4243, 4246, 4259, 4268, 4271, 4277, 4280, 4285, 4288, 4297, 4311, 4317, 4319, 4327, 4330, 4340, 4345, 4347, 4359, 4365, 4367, 4374, 4381, 4390, 4400, 4403, 4406, 4409, 4413, 4422, 4431, 4439, 4445, 4455, 4462, 4470, 4480, 4490, 4495, 4499, 4503, 4509, 4530, 4536, 4540, 4544, 4547, 4553, 4558, 4561, 4565, 4573, 4583, 4593, 4612, 4619, 4622, 4633, 4640, 4643, 4645, 4656, 4666, 4668, 4674, 4680, 4684, 4690, 4699, 4712, 4716, 4728, 4732, 4741, 4753, 4770, 4785, 4795, 4803, 4808, 4829, 4833, 4849, 4864, 4873, 4875, 4883, 4896, 4907, 4918, 4929, 4940, 4951, 4961, 4970, 4974, 4982, 4995, 5005, 5011, 5024, 5033, 5035, 5050, 5055, 5062, 5075, 5086, 5095, 5104, 5112, 5120, 5131, 5139, 5144, 5160, 5168, 5177, 5197, 5214, 5223, 5230, 5236, 5243, 5250, 5259, 5261, 5268, 5307, 5311, 5313, 5317, 5334, 5340, 5349, 5362, 5370, 5385, 5414, 5419, 5421, 5441, 5448, 5471, 5488, 5493, 5504, 5509] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index 6a3439a..732e963 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -11,7 +11,10 @@ import { HiveSqlParserVisitor } from "./HiveSqlParserVisitor.js"; type int = number; -export class HiveSqlParser extends antlr.Parser { +import SQLParserBase from '../SQLParserBase'; + + +export class HiveSqlParser extends SQLParserBase { public static readonly KW_ABORT = 1; public static readonly KW_ACTIVATE = 2; public static readonly KW_ACTIVE = 3; @@ -656,320 +659,319 @@ export class HiveSqlParser extends antlr.Parser { public static readonly RULE_selectStatement = 204; public static readonly RULE_setOpSelectStatement = 205; public static readonly RULE_selectStatementWithCTE = 206; - public static readonly RULE_body = 207; - public static readonly RULE_insertClause = 208; - public static readonly RULE_destination = 209; - public static readonly RULE_limitClause = 210; - public static readonly RULE_deleteStatement = 211; - public static readonly RULE_columnAssignmentClause = 212; - public static readonly RULE_precedencePlusExpressionOrDefault = 213; - public static readonly RULE_setColumnsClause = 214; - public static readonly RULE_updateStatement = 215; - public static readonly RULE_sqlTransactionStatement = 216; - public static readonly RULE_startTransactionStatement = 217; - public static readonly RULE_transactionMode = 218; - public static readonly RULE_transactionAccessMode = 219; - public static readonly RULE_isolationLevel = 220; - public static readonly RULE_levelOfIsolation = 221; - public static readonly RULE_commitStatement = 222; - public static readonly RULE_rollbackStatement = 223; - public static readonly RULE_setAutoCommitStatement = 224; - public static readonly RULE_abortTransactionStatement = 225; - public static readonly RULE_abortCompactionStatement = 226; - public static readonly RULE_mergeStatement = 227; - public static readonly RULE_whenClauses = 228; - public static readonly RULE_whenNotMatchedClause = 229; - public static readonly RULE_whenMatchedAndClause = 230; - public static readonly RULE_whenMatchedThenClause = 231; - public static readonly RULE_updateOrDelete = 232; - public static readonly RULE_killQueryStatement = 233; - public static readonly RULE_compactionId = 234; - public static readonly RULE_compactionPool = 235; - public static readonly RULE_compactionType = 236; - public static readonly RULE_compactionStatus = 237; - public static readonly RULE_alterStatement = 238; - public static readonly RULE_alterTableStatementSuffix = 239; - public static readonly RULE_alterTblPartitionStatementSuffix = 240; - public static readonly RULE_alterStatementPartitionKeyType = 241; - public static readonly RULE_alterViewStatementSuffix = 242; - public static readonly RULE_alterMaterializedViewStatementSuffix = 243; - public static readonly RULE_alterMaterializedViewSuffixRewrite = 244; - public static readonly RULE_alterMaterializedViewSuffixRebuild = 245; - public static readonly RULE_alterDatabaseStatementSuffix = 246; - public static readonly RULE_alterDatabaseSuffixProperties = 247; - public static readonly RULE_alterDatabaseSuffixSetOwner = 248; - public static readonly RULE_alterDatabaseSuffixSetLocation = 249; - public static readonly RULE_alterDatabaseSuffixSetManagedLocation = 250; - public static readonly RULE_alterStatementSuffixRename = 251; - public static readonly RULE_alterStatementSuffixAddCol = 252; - public static readonly RULE_alterStatementSuffixAddConstraint = 253; - public static readonly RULE_alterStatementSuffixUpdateColumns = 254; - public static readonly RULE_alterStatementSuffixProtections = 255; - public static readonly RULE_alterStatementSuffixDropConstraint = 256; - public static readonly RULE_alterStatementSuffixRenameCol = 257; - public static readonly RULE_alterStatementSuffixUpdateStatsCol = 258; - public static readonly RULE_alterStatementSuffixUpdateStats = 259; - public static readonly RULE_alterStatementChangeColPosition = 260; - public static readonly RULE_alterStatementSuffixAddPartitions = 261; - public static readonly RULE_alterStatementSuffixAddPartitionsElement = 262; - public static readonly RULE_alterStatementSuffixTouch = 263; - public static readonly RULE_alterStatementSuffixArchive = 264; - public static readonly RULE_alterStatementSuffixUnArchive = 265; - public static readonly RULE_partitionLocation = 266; - public static readonly RULE_alterStatementSuffixRecoverPartitions = 267; - public static readonly RULE_alterStatementSuffixDropPartitions = 268; - public static readonly RULE_alterStatementSuffixProperties = 269; - public static readonly RULE_alterViewSuffixProperties = 270; - public static readonly RULE_alterStatementSuffixSerdeProperties = 271; - public static readonly RULE_tablePartitionPrefix = 272; - public static readonly RULE_alterStatementSuffixFileFormat = 273; - public static readonly RULE_alterStatementSuffixClusterbySortby = 274; - public static readonly RULE_alterTblPartitionStatementSuffixSkewedLocation = 275; - public static readonly RULE_skewedLocations = 276; - public static readonly RULE_skewedLocationsList = 277; - public static readonly RULE_skewedLocationMap = 278; - public static readonly RULE_alterStatementSuffixLocation = 279; - public static readonly RULE_alterStatementSuffixSkewedby = 280; - public static readonly RULE_alterStatementSuffixExchangePartition = 281; - public static readonly RULE_alterStatementSuffixRenamePart = 282; - public static readonly RULE_alterStatementSuffixStatsPart = 283; - public static readonly RULE_alterStatementSuffixMergeFiles = 284; - public static readonly RULE_alterStatementSuffixBucketNum = 285; - public static readonly RULE_blocking = 286; - public static readonly RULE_compactPool = 287; - public static readonly RULE_alterStatementSuffixCompact = 288; - public static readonly RULE_alterStatementSuffixSetOwner = 289; - public static readonly RULE_alterStatementSuffixSetPartSpec = 290; - public static readonly RULE_alterStatementSuffixExecute = 291; - public static readonly RULE_alterIndexStatementSuffix = 292; - public static readonly RULE_fileFormat = 293; - public static readonly RULE_alterDataConnectorStatementSuffix = 294; - public static readonly RULE_alterDataConnectorSuffixProperties = 295; - public static readonly RULE_alterDataConnectorSuffixSetOwner = 296; - public static readonly RULE_alterDataConnectorSuffixSetUrl = 297; - public static readonly RULE_likeTableOrFile = 298; - public static readonly RULE_createTableStatement = 299; - public static readonly RULE_createDataConnectorStatement = 300; - public static readonly RULE_dataConnectorComment = 301; - public static readonly RULE_dataConnectorUrl = 302; - public static readonly RULE_dataConnectorType = 303; - public static readonly RULE_dcProperties = 304; - public static readonly RULE_dropDataConnectorStatement = 305; - public static readonly RULE_tableAllColumns = 306; - public static readonly RULE_defaultValue = 307; - public static readonly RULE_expressionList = 308; - public static readonly RULE_aliasList = 309; - public static readonly RULE_fromClause = 310; - public static readonly RULE_fromSource = 311; - public static readonly RULE_atomjoinSource = 312; - public static readonly RULE_joinSource = 313; - public static readonly RULE_joinSourcePart = 314; - public static readonly RULE_uniqueJoinSource = 315; - public static readonly RULE_uniqueJoinExpr = 316; - public static readonly RULE_uniqueJoinToken = 317; - public static readonly RULE_joinToken = 318; - public static readonly RULE_lateralView = 319; - public static readonly RULE_tableAlias = 320; - public static readonly RULE_tableBucketSample = 321; - public static readonly RULE_splitSample = 322; - public static readonly RULE_tableSample = 323; - public static readonly RULE_tableSource = 324; - public static readonly RULE_asOfClause = 325; - public static readonly RULE_uniqueJoinTableSource = 326; - public static readonly RULE_dbSchemaName = 327; - public static readonly RULE_dbSchemaNameCreate = 328; - public static readonly RULE_tableOrView = 329; - public static readonly RULE_tableName = 330; - public static readonly RULE_tableNameCreate = 331; - public static readonly RULE_viewName = 332; - public static readonly RULE_viewNameCreate = 333; - public static readonly RULE_subQuerySource = 334; - public static readonly RULE_partitioningSpec = 335; - public static readonly RULE_partitionTableFunctionSource = 336; - public static readonly RULE_partitionedTableFunction = 337; - public static readonly RULE_whereClause = 338; - public static readonly RULE_searchCondition = 339; - public static readonly RULE_valuesSource = 340; - public static readonly RULE_valuesClause = 341; - public static readonly RULE_valuesTableConstructor = 342; - public static readonly RULE_valueRowConstructor = 343; - public static readonly RULE_firstValueRowConstructor = 344; - public static readonly RULE_virtualTableSource = 345; - public static readonly RULE_selectClause = 346; - public static readonly RULE_all_distinct = 347; - public static readonly RULE_selectList = 348; - public static readonly RULE_selectTrfmClause = 349; - public static readonly RULE_selectItem = 350; - public static readonly RULE_trfmClause = 351; - public static readonly RULE_selectExpression = 352; - public static readonly RULE_selectExpressionList = 353; - public static readonly RULE_window_clause = 354; - public static readonly RULE_window_defn = 355; - public static readonly RULE_window_specification = 356; - public static readonly RULE_window_frame = 357; - public static readonly RULE_window_range_expression = 358; - public static readonly RULE_window_value_expression = 359; - public static readonly RULE_window_frame_start_boundary = 360; - public static readonly RULE_window_frame_boundary = 361; - public static readonly RULE_groupByClause = 362; - public static readonly RULE_groupby_expression = 363; - public static readonly RULE_groupByEmpty = 364; - public static readonly RULE_rollupStandard = 365; - public static readonly RULE_rollupOldSyntax = 366; - public static readonly RULE_groupingSetExpression = 367; - public static readonly RULE_groupingSetExpressionMultiple = 368; - public static readonly RULE_groupingExpressionSingle = 369; - public static readonly RULE_havingClause = 370; - public static readonly RULE_qualifyClause = 371; - public static readonly RULE_havingCondition = 372; - public static readonly RULE_expressionsInParenthesis = 373; - public static readonly RULE_expressionsNotInParenthesis = 374; - public static readonly RULE_expressionPart = 375; - public static readonly RULE_expressionOrDefault = 376; - public static readonly RULE_firstExpressionsWithAlias = 377; - public static readonly RULE_expressionWithAlias = 378; - public static readonly RULE_expressions = 379; - public static readonly RULE_columnRefOrderInParenthesis = 380; - public static readonly RULE_columnRefOrderNotInParenthesis = 381; - public static readonly RULE_orderByClause = 382; - public static readonly RULE_clusterByClause = 383; - public static readonly RULE_partitionByClause = 384; - public static readonly RULE_distributeByClause = 385; - public static readonly RULE_sortByClause = 386; - public static readonly RULE_trimFunction = 387; - public static readonly RULE_function_ = 388; - public static readonly RULE_null_treatment = 389; - public static readonly RULE_functionNameCreate = 390; - public static readonly RULE_functionNameForDDL = 391; - public static readonly RULE_functionNameForInvoke = 392; - public static readonly RULE_userDefinedFuncName = 393; - public static readonly RULE_internalFunctionName = 394; - public static readonly RULE_castExpression = 395; - public static readonly RULE_caseExpression = 396; - public static readonly RULE_whenExpression = 397; - public static readonly RULE_floorExpression = 398; - public static readonly RULE_floorDateQualifiers = 399; - public static readonly RULE_extractExpression = 400; - public static readonly RULE_timeQualifiers = 401; - public static readonly RULE_constant = 402; - public static readonly RULE_prepareStmtParam = 403; - public static readonly RULE_parameterIdx = 404; - public static readonly RULE_stringLiteralSequence = 405; - public static readonly RULE_charSetStringLiteral = 406; - public static readonly RULE_dateLiteral = 407; - public static readonly RULE_timestampLiteral = 408; - public static readonly RULE_timestampLocalTZLiteral = 409; - public static readonly RULE_intervalValue = 410; - public static readonly RULE_intervalLiteral = 411; - public static readonly RULE_intervalExpression = 412; - public static readonly RULE_intervalQualifiers = 413; - public static readonly RULE_expression = 414; - public static readonly RULE_atomExpression = 415; - public static readonly RULE_precedenceFieldExpression = 416; - public static readonly RULE_precedenceUnaryOperator = 417; - public static readonly RULE_precedenceUnaryPrefixExpression = 418; - public static readonly RULE_precedenceBitwiseXorOperator = 419; - public static readonly RULE_precedenceBitwiseXorExpression = 420; - public static readonly RULE_precedenceStarOperator = 421; - public static readonly RULE_precedenceStarExpression = 422; - public static readonly RULE_precedencePlusOperator = 423; - public static readonly RULE_precedencePlusExpression = 424; - public static readonly RULE_precedenceConcatenateOperator = 425; - public static readonly RULE_precedenceConcatenateExpression = 426; - public static readonly RULE_precedenceAmpersandOperator = 427; - public static readonly RULE_precedenceAmpersandExpression = 428; - public static readonly RULE_precedenceBitwiseOrOperator = 429; - public static readonly RULE_precedenceBitwiseOrExpression = 430; - public static readonly RULE_precedenceRegexpOperator = 431; - public static readonly RULE_precedenceSimilarOperator = 432; - public static readonly RULE_subQueryExpression = 433; - public static readonly RULE_precedenceSimilarExpression = 434; - public static readonly RULE_precedenceSimilarExpressionMain = 435; - public static readonly RULE_precedenceSimilarExpressionPart = 436; - public static readonly RULE_precedenceSimilarExpressionAtom = 437; - public static readonly RULE_precedenceSimilarExpressionQuantifierPredicate = 438; - public static readonly RULE_quantifierType = 439; - public static readonly RULE_precedenceSimilarExpressionIn = 440; - public static readonly RULE_precedenceSimilarExpressionPartNot = 441; - public static readonly RULE_precedenceDistinctOperator = 442; - public static readonly RULE_precedenceEqualOperator = 443; - public static readonly RULE_precedenceEqualExpression = 444; - public static readonly RULE_isCondition = 445; - public static readonly RULE_precedenceUnarySuffixExpression = 446; - public static readonly RULE_precedenceNotOperator = 447; - public static readonly RULE_precedenceNotExpression = 448; - public static readonly RULE_precedenceAndOperator = 449; - public static readonly RULE_precedenceAndExpression = 450; - public static readonly RULE_precedenceOrOperator = 451; - public static readonly RULE_precedenceOrExpression = 452; - public static readonly RULE_booleanValue = 453; - public static readonly RULE_booleanValueTok = 454; - public static readonly RULE_tableOrPartition = 455; - public static readonly RULE_partitionSpec = 456; - public static readonly RULE_partitionVal = 457; - public static readonly RULE_partitionSelectorSpec = 458; - public static readonly RULE_partitionSelectorVal = 459; - public static readonly RULE_partitionSelectorOperator = 460; - public static readonly RULE_subQuerySelectorOperator = 461; - public static readonly RULE_sysFuncNames = 462; - public static readonly RULE_id_ = 463; - public static readonly RULE_functionIdentifier = 464; - public static readonly RULE_principalIdentifier = 465; - public static readonly RULE_nonReserved = 466; - public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 467; - public static readonly RULE_hint = 468; - public static readonly RULE_hintList = 469; - public static readonly RULE_hintItem = 470; - public static readonly RULE_hintName = 471; - public static readonly RULE_hintArgs = 472; - public static readonly RULE_hintArgName = 473; - public static readonly RULE_prepareStatement = 474; - public static readonly RULE_executeStatement = 475; - public static readonly RULE_executeParamList = 476; - public static readonly RULE_resourcePlanDdlStatements = 477; - public static readonly RULE_rpAssign = 478; - public static readonly RULE_rpAssignList = 479; - public static readonly RULE_rpUnassign = 480; - public static readonly RULE_rpUnassignList = 481; - public static readonly RULE_createResourcePlanStatement = 482; - public static readonly RULE_withReplace = 483; - public static readonly RULE_activate = 484; - public static readonly RULE_enable = 485; - public static readonly RULE_disable = 486; - public static readonly RULE_unmanaged = 487; - public static readonly RULE_year = 488; - public static readonly RULE_month = 489; - public static readonly RULE_week = 490; - public static readonly RULE_day = 491; - public static readonly RULE_hour = 492; - public static readonly RULE_minute = 493; - public static readonly RULE_second = 494; - public static readonly RULE_decimal = 495; - public static readonly RULE_alterResourcePlanStatement = 496; - public static readonly RULE_globalWmStatement = 497; - public static readonly RULE_replaceResourcePlanStatement = 498; - public static readonly RULE_dropResourcePlanStatement = 499; - public static readonly RULE_poolPath = 500; - public static readonly RULE_triggerExpression = 501; - public static readonly RULE_triggerExpressionStandalone = 502; - public static readonly RULE_triggerOrExpression = 503; - public static readonly RULE_triggerAndExpression = 504; - public static readonly RULE_triggerAtomExpression = 505; - public static readonly RULE_triggerLiteral = 506; - public static readonly RULE_comparisionOperator = 507; - public static readonly RULE_triggerActionExpression = 508; - public static readonly RULE_triggerActionExpressionStandalone = 509; - public static readonly RULE_createTriggerStatement = 510; - public static readonly RULE_alterTriggerStatement = 511; - public static readonly RULE_dropTriggerStatement = 512; - public static readonly RULE_poolAssign = 513; - public static readonly RULE_poolAssignList = 514; - public static readonly RULE_createPoolStatement = 515; - public static readonly RULE_alterPoolStatement = 516; - public static readonly RULE_dropPoolStatement = 517; - public static readonly RULE_createMappingStatement = 518; - public static readonly RULE_alterMappingStatement = 519; - public static readonly RULE_dropMappingStatement = 520; + public static readonly RULE_insertClause = 207; + public static readonly RULE_destination = 208; + public static readonly RULE_limitClause = 209; + public static readonly RULE_deleteStatement = 210; + public static readonly RULE_columnAssignmentClause = 211; + public static readonly RULE_precedencePlusExpressionOrDefault = 212; + public static readonly RULE_setColumnsClause = 213; + public static readonly RULE_updateStatement = 214; + public static readonly RULE_sqlTransactionStatement = 215; + public static readonly RULE_startTransactionStatement = 216; + public static readonly RULE_transactionMode = 217; + public static readonly RULE_transactionAccessMode = 218; + public static readonly RULE_isolationLevel = 219; + public static readonly RULE_levelOfIsolation = 220; + public static readonly RULE_commitStatement = 221; + public static readonly RULE_rollbackStatement = 222; + public static readonly RULE_setAutoCommitStatement = 223; + public static readonly RULE_abortTransactionStatement = 224; + public static readonly RULE_abortCompactionStatement = 225; + public static readonly RULE_mergeStatement = 226; + public static readonly RULE_whenClauses = 227; + public static readonly RULE_whenNotMatchedClause = 228; + public static readonly RULE_whenMatchedAndClause = 229; + public static readonly RULE_whenMatchedThenClause = 230; + public static readonly RULE_updateOrDelete = 231; + public static readonly RULE_killQueryStatement = 232; + public static readonly RULE_compactionId = 233; + public static readonly RULE_compactionPool = 234; + public static readonly RULE_compactionType = 235; + public static readonly RULE_compactionStatus = 236; + public static readonly RULE_alterStatement = 237; + public static readonly RULE_alterTableStatementSuffix = 238; + public static readonly RULE_alterTblPartitionStatementSuffix = 239; + public static readonly RULE_alterStatementPartitionKeyType = 240; + public static readonly RULE_alterViewStatementSuffix = 241; + public static readonly RULE_alterMaterializedViewStatementSuffix = 242; + public static readonly RULE_alterMaterializedViewSuffixRewrite = 243; + public static readonly RULE_alterMaterializedViewSuffixRebuild = 244; + public static readonly RULE_alterDatabaseStatementSuffix = 245; + public static readonly RULE_alterDatabaseSuffixProperties = 246; + public static readonly RULE_alterDatabaseSuffixSetOwner = 247; + public static readonly RULE_alterDatabaseSuffixSetLocation = 248; + public static readonly RULE_alterDatabaseSuffixSetManagedLocation = 249; + public static readonly RULE_alterStatementSuffixRename = 250; + public static readonly RULE_alterStatementSuffixAddCol = 251; + public static readonly RULE_alterStatementSuffixAddConstraint = 252; + public static readonly RULE_alterStatementSuffixUpdateColumns = 253; + public static readonly RULE_alterStatementSuffixProtections = 254; + public static readonly RULE_alterStatementSuffixDropConstraint = 255; + public static readonly RULE_alterStatementSuffixRenameCol = 256; + public static readonly RULE_alterStatementSuffixUpdateStatsCol = 257; + public static readonly RULE_alterStatementSuffixUpdateStats = 258; + public static readonly RULE_alterStatementChangeColPosition = 259; + public static readonly RULE_alterStatementSuffixAddPartitions = 260; + public static readonly RULE_alterStatementSuffixAddPartitionsElement = 261; + public static readonly RULE_alterStatementSuffixTouch = 262; + public static readonly RULE_alterStatementSuffixArchive = 263; + public static readonly RULE_alterStatementSuffixUnArchive = 264; + public static readonly RULE_partitionLocation = 265; + public static readonly RULE_alterStatementSuffixRecoverPartitions = 266; + public static readonly RULE_alterStatementSuffixDropPartitions = 267; + public static readonly RULE_alterStatementSuffixProperties = 268; + public static readonly RULE_alterViewSuffixProperties = 269; + public static readonly RULE_alterStatementSuffixSerdeProperties = 270; + public static readonly RULE_tablePartitionPrefix = 271; + public static readonly RULE_alterStatementSuffixFileFormat = 272; + public static readonly RULE_alterStatementSuffixClusterbySortby = 273; + public static readonly RULE_alterTblPartitionStatementSuffixSkewedLocation = 274; + public static readonly RULE_skewedLocations = 275; + public static readonly RULE_skewedLocationsList = 276; + public static readonly RULE_skewedLocationMap = 277; + public static readonly RULE_alterStatementSuffixLocation = 278; + public static readonly RULE_alterStatementSuffixSkewedby = 279; + public static readonly RULE_alterStatementSuffixExchangePartition = 280; + public static readonly RULE_alterStatementSuffixRenamePart = 281; + public static readonly RULE_alterStatementSuffixStatsPart = 282; + public static readonly RULE_alterStatementSuffixMergeFiles = 283; + public static readonly RULE_alterStatementSuffixBucketNum = 284; + public static readonly RULE_blocking = 285; + public static readonly RULE_compactPool = 286; + public static readonly RULE_alterStatementSuffixCompact = 287; + public static readonly RULE_alterStatementSuffixSetOwner = 288; + public static readonly RULE_alterStatementSuffixSetPartSpec = 289; + public static readonly RULE_alterStatementSuffixExecute = 290; + public static readonly RULE_alterIndexStatementSuffix = 291; + public static readonly RULE_fileFormat = 292; + public static readonly RULE_alterDataConnectorStatementSuffix = 293; + public static readonly RULE_alterDataConnectorSuffixProperties = 294; + public static readonly RULE_alterDataConnectorSuffixSetOwner = 295; + public static readonly RULE_alterDataConnectorSuffixSetUrl = 296; + public static readonly RULE_likeTableOrFile = 297; + public static readonly RULE_createTableStatement = 298; + public static readonly RULE_createDataConnectorStatement = 299; + public static readonly RULE_dataConnectorComment = 300; + public static readonly RULE_dataConnectorUrl = 301; + public static readonly RULE_dataConnectorType = 302; + public static readonly RULE_dcProperties = 303; + public static readonly RULE_dropDataConnectorStatement = 304; + public static readonly RULE_tableAllColumns = 305; + public static readonly RULE_defaultValue = 306; + public static readonly RULE_expressionList = 307; + public static readonly RULE_aliasList = 308; + public static readonly RULE_fromClause = 309; + public static readonly RULE_fromSource = 310; + public static readonly RULE_atomjoinSource = 311; + public static readonly RULE_joinSource = 312; + public static readonly RULE_joinSourcePart = 313; + public static readonly RULE_uniqueJoinSource = 314; + public static readonly RULE_uniqueJoinExpr = 315; + public static readonly RULE_uniqueJoinToken = 316; + public static readonly RULE_joinToken = 317; + public static readonly RULE_lateralView = 318; + public static readonly RULE_tableAlias = 319; + public static readonly RULE_tableBucketSample = 320; + public static readonly RULE_splitSample = 321; + public static readonly RULE_tableSample = 322; + public static readonly RULE_tableSource = 323; + public static readonly RULE_asOfClause = 324; + public static readonly RULE_uniqueJoinTableSource = 325; + public static readonly RULE_dbSchemaName = 326; + public static readonly RULE_dbSchemaNameCreate = 327; + public static readonly RULE_tableOrView = 328; + public static readonly RULE_tableName = 329; + public static readonly RULE_tableNameCreate = 330; + public static readonly RULE_viewName = 331; + public static readonly RULE_viewNameCreate = 332; + public static readonly RULE_subQuerySource = 333; + public static readonly RULE_partitioningSpec = 334; + public static readonly RULE_partitionTableFunctionSource = 335; + public static readonly RULE_partitionedTableFunction = 336; + public static readonly RULE_whereClause = 337; + public static readonly RULE_searchCondition = 338; + public static readonly RULE_valuesSource = 339; + public static readonly RULE_valuesClause = 340; + public static readonly RULE_valuesTableConstructor = 341; + public static readonly RULE_valueRowConstructor = 342; + public static readonly RULE_firstValueRowConstructor = 343; + public static readonly RULE_virtualTableSource = 344; + public static readonly RULE_selectClause = 345; + public static readonly RULE_all_distinct = 346; + public static readonly RULE_selectList = 347; + public static readonly RULE_selectTrfmClause = 348; + public static readonly RULE_selectItem = 349; + public static readonly RULE_trfmClause = 350; + public static readonly RULE_selectExpression = 351; + public static readonly RULE_selectExpressionList = 352; + public static readonly RULE_window_clause = 353; + public static readonly RULE_window_defn = 354; + public static readonly RULE_window_specification = 355; + public static readonly RULE_window_frame = 356; + public static readonly RULE_window_range_expression = 357; + public static readonly RULE_window_value_expression = 358; + public static readonly RULE_window_frame_start_boundary = 359; + public static readonly RULE_window_frame_boundary = 360; + public static readonly RULE_groupByClause = 361; + public static readonly RULE_groupby_expression = 362; + public static readonly RULE_groupByEmpty = 363; + public static readonly RULE_rollupStandard = 364; + public static readonly RULE_rollupOldSyntax = 365; + public static readonly RULE_groupingSetExpression = 366; + public static readonly RULE_groupingSetExpressionMultiple = 367; + public static readonly RULE_groupingExpressionSingle = 368; + public static readonly RULE_havingClause = 369; + public static readonly RULE_qualifyClause = 370; + public static readonly RULE_havingCondition = 371; + public static readonly RULE_expressionsInParenthesis = 372; + public static readonly RULE_expressionsNotInParenthesis = 373; + public static readonly RULE_expressionPart = 374; + public static readonly RULE_expressionOrDefault = 375; + public static readonly RULE_firstExpressionsWithAlias = 376; + public static readonly RULE_expressionWithAlias = 377; + public static readonly RULE_expressions = 378; + public static readonly RULE_columnRefOrderInParenthesis = 379; + public static readonly RULE_columnRefOrderNotInParenthesis = 380; + public static readonly RULE_orderByClause = 381; + public static readonly RULE_clusterByClause = 382; + public static readonly RULE_partitionByClause = 383; + public static readonly RULE_distributeByClause = 384; + public static readonly RULE_sortByClause = 385; + public static readonly RULE_trimFunction = 386; + public static readonly RULE_function_ = 387; + public static readonly RULE_null_treatment = 388; + public static readonly RULE_functionNameCreate = 389; + public static readonly RULE_functionNameForDDL = 390; + public static readonly RULE_functionNameForInvoke = 391; + public static readonly RULE_userDefinedFuncName = 392; + public static readonly RULE_internalFunctionName = 393; + public static readonly RULE_castExpression = 394; + public static readonly RULE_caseExpression = 395; + public static readonly RULE_whenExpression = 396; + public static readonly RULE_floorExpression = 397; + public static readonly RULE_floorDateQualifiers = 398; + public static readonly RULE_extractExpression = 399; + public static readonly RULE_timeQualifiers = 400; + public static readonly RULE_constant = 401; + public static readonly RULE_prepareStmtParam = 402; + public static readonly RULE_parameterIdx = 403; + public static readonly RULE_stringLiteralSequence = 404; + public static readonly RULE_charSetStringLiteral = 405; + public static readonly RULE_dateLiteral = 406; + public static readonly RULE_timestampLiteral = 407; + public static readonly RULE_timestampLocalTZLiteral = 408; + public static readonly RULE_intervalValue = 409; + public static readonly RULE_intervalLiteral = 410; + public static readonly RULE_intervalExpression = 411; + public static readonly RULE_intervalQualifiers = 412; + public static readonly RULE_expression = 413; + public static readonly RULE_atomExpression = 414; + public static readonly RULE_precedenceFieldExpression = 415; + public static readonly RULE_precedenceUnaryOperator = 416; + public static readonly RULE_precedenceUnaryPrefixExpression = 417; + public static readonly RULE_precedenceBitwiseXorOperator = 418; + public static readonly RULE_precedenceBitwiseXorExpression = 419; + public static readonly RULE_precedenceStarOperator = 420; + public static readonly RULE_precedenceStarExpression = 421; + public static readonly RULE_precedencePlusOperator = 422; + public static readonly RULE_precedencePlusExpression = 423; + public static readonly RULE_precedenceConcatenateOperator = 424; + public static readonly RULE_precedenceConcatenateExpression = 425; + public static readonly RULE_precedenceAmpersandOperator = 426; + public static readonly RULE_precedenceAmpersandExpression = 427; + public static readonly RULE_precedenceBitwiseOrOperator = 428; + public static readonly RULE_precedenceBitwiseOrExpression = 429; + public static readonly RULE_precedenceRegexpOperator = 430; + public static readonly RULE_precedenceSimilarOperator = 431; + public static readonly RULE_subQueryExpression = 432; + public static readonly RULE_precedenceSimilarExpression = 433; + public static readonly RULE_precedenceSimilarExpressionMain = 434; + public static readonly RULE_precedenceSimilarExpressionPart = 435; + public static readonly RULE_precedenceSimilarExpressionAtom = 436; + public static readonly RULE_precedenceSimilarExpressionQuantifierPredicate = 437; + public static readonly RULE_quantifierType = 438; + public static readonly RULE_precedenceSimilarExpressionIn = 439; + public static readonly RULE_precedenceSimilarExpressionPartNot = 440; + public static readonly RULE_precedenceDistinctOperator = 441; + public static readonly RULE_precedenceEqualOperator = 442; + public static readonly RULE_precedenceEqualExpression = 443; + public static readonly RULE_isCondition = 444; + public static readonly RULE_precedenceUnarySuffixExpression = 445; + public static readonly RULE_precedenceNotOperator = 446; + public static readonly RULE_precedenceNotExpression = 447; + public static readonly RULE_precedenceAndOperator = 448; + public static readonly RULE_precedenceAndExpression = 449; + public static readonly RULE_precedenceOrOperator = 450; + public static readonly RULE_precedenceOrExpression = 451; + public static readonly RULE_booleanValue = 452; + public static readonly RULE_booleanValueTok = 453; + public static readonly RULE_tableOrPartition = 454; + public static readonly RULE_partitionSpec = 455; + public static readonly RULE_partitionVal = 456; + public static readonly RULE_partitionSelectorSpec = 457; + public static readonly RULE_partitionSelectorVal = 458; + public static readonly RULE_partitionSelectorOperator = 459; + public static readonly RULE_subQuerySelectorOperator = 460; + public static readonly RULE_sysFuncNames = 461; + public static readonly RULE_id_ = 462; + public static readonly RULE_functionIdentifier = 463; + public static readonly RULE_principalIdentifier = 464; + public static readonly RULE_nonReserved = 465; + public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 466; + public static readonly RULE_hint = 467; + public static readonly RULE_hintList = 468; + public static readonly RULE_hintItem = 469; + public static readonly RULE_hintName = 470; + public static readonly RULE_hintArgs = 471; + public static readonly RULE_hintArgName = 472; + public static readonly RULE_prepareStatement = 473; + public static readonly RULE_executeStatement = 474; + public static readonly RULE_executeParamList = 475; + public static readonly RULE_resourcePlanDdlStatements = 476; + public static readonly RULE_rpAssign = 477; + public static readonly RULE_rpAssignList = 478; + public static readonly RULE_rpUnassign = 479; + public static readonly RULE_rpUnassignList = 480; + public static readonly RULE_createResourcePlanStatement = 481; + public static readonly RULE_withReplace = 482; + public static readonly RULE_activate = 483; + public static readonly RULE_enable = 484; + public static readonly RULE_disable = 485; + public static readonly RULE_unmanaged = 486; + public static readonly RULE_year = 487; + public static readonly RULE_month = 488; + public static readonly RULE_week = 489; + public static readonly RULE_day = 490; + public static readonly RULE_hour = 491; + public static readonly RULE_minute = 492; + public static readonly RULE_second = 493; + public static readonly RULE_decimal = 494; + public static readonly RULE_alterResourcePlanStatement = 495; + public static readonly RULE_globalWmStatement = 496; + public static readonly RULE_replaceResourcePlanStatement = 497; + public static readonly RULE_dropResourcePlanStatement = 498; + public static readonly RULE_poolPath = 499; + public static readonly RULE_triggerExpression = 500; + public static readonly RULE_triggerExpressionStandalone = 501; + public static readonly RULE_triggerOrExpression = 502; + public static readonly RULE_triggerAndExpression = 503; + public static readonly RULE_triggerAtomExpression = 504; + public static readonly RULE_triggerLiteral = 505; + public static readonly RULE_comparisionOperator = 506; + public static readonly RULE_triggerActionExpression = 507; + public static readonly RULE_triggerActionExpressionStandalone = 508; + public static readonly RULE_createTriggerStatement = 509; + public static readonly RULE_alterTriggerStatement = 510; + public static readonly RULE_dropTriggerStatement = 511; + public static readonly RULE_poolAssign = 512; + public static readonly RULE_poolAssignList = 513; + public static readonly RULE_createPoolStatement = 514; + public static readonly RULE_alterPoolStatement = 515; + public static readonly RULE_dropPoolStatement = 516; + public static readonly RULE_createMappingStatement = 517; + public static readonly RULE_alterMappingStatement = 518; + public static readonly RULE_dropMappingStatement = 519; public static readonly literalNames = [ null, "'ABORT'", "'ACTIVATE'", "'ACTIVE'", "'ADD'", "'ADMIN'", "'AFTER'", @@ -1191,7 +1193,7 @@ export class HiveSqlParser extends antlr.Parser { "mapType", "unionType", "setOperator", "queryStatementExpression", "queryStatementExpressionBody", "withClause", "cteStatement", "fromStatement", "singleFromStatement", "regularBody", "atomSelectStatement", "selectStatement", - "setOpSelectStatement", "selectStatementWithCTE", "body", "insertClause", + "setOpSelectStatement", "selectStatementWithCTE", "insertClause", "destination", "limitClause", "deleteStatement", "columnAssignmentClause", "precedencePlusExpressionOrDefault", "setColumnsClause", "updateStatement", "sqlTransactionStatement", "startTransactionStatement", "transactionMode", @@ -1313,21 +1315,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1045; + this.state = 1043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1538) !== 0) || _la === 48 || _la === 58 || ((((_la - 86)) & ~0x1F) === 0 && ((1 << (_la - 86)) & 540050201) !== 0) || ((((_la - 119)) & ~0x1F) === 0 && ((1 << (_la - 119)) & 17825795) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 8388865) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & 33622025) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 810024961) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 35717185) !== 0) || _la === 317 || ((((_la - 350)) & ~0x1F) === 0 && ((1 << (_la - 350)) & 8537089) !== 0) || _la === 386 || _la === 398) { { { - this.state = 1042; + this.state = 1040; this.statement(); } } - this.state = 1047; + this.state = 1045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1048; + this.state = 1046; this.match(HiveSqlParser.EOF); } } @@ -1351,12 +1353,12 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1052; + this.state = 1050; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXPLAIN: { - this.state = 1050; + this.state = 1048; this.explainStatement(); } break; @@ -1404,19 +1406,19 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 1051; + this.state = 1049; this.execStatement(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1055; + this.state = 1053; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: { - this.state = 1054; + this.state = 1052; this.match(HiveSqlParser.SEMICOLON); } break; @@ -1444,9 +1446,9 @@ export class HiveSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1057; + this.state = 1055; this.match(HiveSqlParser.KW_EXPLAIN); - this.state = 1067; + this.state = 1065; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -1505,31 +1507,31 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 1061; + this.state = 1059; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1058; + this.state = 1056; this.explainOption(); } } } - this.state = 1063; + this.state = 1061; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); } - this.state = 1064; + this.state = 1062; this.execStatement(); } break; case HiveSqlParser.KW_REWRITE: { - this.state = 1065; + this.state = 1063; this.match(HiveSqlParser.KW_REWRITE); - this.state = 1066; + this.state = 1064; this.queryStatementExpression(); } break; @@ -1557,41 +1559,41 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 6, HiveSqlParser.RULE_explainOption); let _la: number; try { - this.state = 1091; + this.state = 1089; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 1); { - this.state = 1069; + this.state = 1067; this.match(HiveSqlParser.KW_EXTENDED); } break; case HiveSqlParser.KW_FORMATTED: this.enterOuterAlt(localContext, 2); { - this.state = 1070; + this.state = 1068; this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_DEPENDENCY: this.enterOuterAlt(localContext, 3); { - this.state = 1071; + this.state = 1069; this.match(HiveSqlParser.KW_DEPENDENCY); } break; case HiveSqlParser.KW_CBO: this.enterOuterAlt(localContext, 4); { - this.state = 1072; + this.state = 1070; this.match(HiveSqlParser.KW_CBO); - this.state = 1074; + this.state = 1072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57 || _la === 172) { { - this.state = 1073; + this.state = 1071; _la = this.tokenStream.LA(1); if(!(_la === 57 || _la === 172)) { this.errorHandler.recoverInline(this); @@ -1608,66 +1610,66 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_LOGICAL: this.enterOuterAlt(localContext, 5); { - this.state = 1076; + this.state = 1074; this.match(HiveSqlParser.KW_LOGICAL); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 6); { - this.state = 1077; + this.state = 1075; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_ANALYZE: this.enterOuterAlt(localContext, 7); { - this.state = 1078; + this.state = 1076; this.match(HiveSqlParser.KW_ANALYZE); } break; case HiveSqlParser.KW_REOPTIMIZATION: this.enterOuterAlt(localContext, 8); { - this.state = 1079; + this.state = 1077; this.match(HiveSqlParser.KW_REOPTIMIZATION); } break; case HiveSqlParser.KW_LOCKS: this.enterOuterAlt(localContext, 9); { - this.state = 1080; + this.state = 1078; this.match(HiveSqlParser.KW_LOCKS); } break; case HiveSqlParser.KW_AST: this.enterOuterAlt(localContext, 10); { - this.state = 1081; + this.state = 1079; this.match(HiveSqlParser.KW_AST); } break; case HiveSqlParser.KW_VECTORIZATION: this.enterOuterAlt(localContext, 11); { - this.state = 1082; + this.state = 1080; this.match(HiveSqlParser.KW_VECTORIZATION); - this.state = 1084; + this.state = 1082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1083; + this.state = 1081; this.vectorizationOnly(); } } - this.state = 1087; + this.state = 1085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 121 || _la === 225 || _la === 324) { { - this.state = 1086; + this.state = 1084; this.vectorizatonDetail(); } } @@ -1677,14 +1679,14 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_DEBUG: this.enterOuterAlt(localContext, 12); { - this.state = 1089; + this.state = 1087; this.match(HiveSqlParser.KW_DEBUG); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 13); { - this.state = 1090; + this.state = 1088; this.match(HiveSqlParser.KW_DDL); } break; @@ -1712,7 +1714,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1093; + this.state = 1091; this.match(HiveSqlParser.KW_ONLY); } } @@ -1737,7 +1739,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1095; + this.state = 1093; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 121 || _la === 225 || _la === 324)) { this.errorHandler.recoverInline(this); @@ -1766,104 +1768,104 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new ExecStatementContext(this.context, this.state); this.enterRule(localContext, 12, HiveSqlParser.RULE_execStatement); try { - this.state = 1111; + this.state = 1109; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1097; + this.state = 1095; this.queryStatementExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1098; + this.state = 1096; this.loadStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1099; + this.state = 1097; this.exportStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1100; + this.state = 1098; this.importStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1101; + this.state = 1099; this.replDumpStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1102; + this.state = 1100; this.replLoadStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1103; + this.state = 1101; this.replStatusStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1104; + this.state = 1102; this.ddlStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1105; + this.state = 1103; this.deleteStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1106; + this.state = 1104; this.updateStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1107; + this.state = 1105; this.sqlTransactionStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1108; + this.state = 1106; this.mergeStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1109; + this.state = 1107; this.prepareStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1110; + this.state = 1108; this.executeStatement(); } break; @@ -1890,46 +1892,46 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1113; + this.state = 1111; this.match(HiveSqlParser.KW_LOAD); - this.state = 1114; + this.state = 1112; this.match(HiveSqlParser.KW_DATA); - this.state = 1116; + this.state = 1114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 1115; + this.state = 1113; this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 1118; + this.state = 1116; this.match(HiveSqlParser.KW_INPATH); - this.state = 1119; + this.state = 1117; this.match(HiveSqlParser.StringLiteral); - this.state = 1121; + this.state = 1119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 234) { { - this.state = 1120; + this.state = 1118; this.match(HiveSqlParser.KW_OVERWRITE); } } - this.state = 1123; + this.state = 1121; this.match(HiveSqlParser.KW_INTO); - this.state = 1124; + this.state = 1122; this.match(HiveSqlParser.KW_TABLE); - this.state = 1125; + this.state = 1123; this.tableOrPartition(); - this.state = 1127; + this.state = 1125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 1126; + this.state = 1124; this.inputFileFormat(); } } @@ -1956,9 +1958,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1129; + this.state = 1127; this.match(HiveSqlParser.KW_IGNORE); - this.state = 1130; + this.state = 1128; this.match(HiveSqlParser.KW_PROTECTION); } } @@ -1983,25 +1985,25 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1132; + this.state = 1130; this.match(HiveSqlParser.KW_FOR); - this.state = 1134; + this.state = 1132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 1133; + this.state = 1131; this.match(HiveSqlParser.KW_METADATA); } } - this.state = 1136; + this.state = 1134; this.match(HiveSqlParser.KW_REPLICATION); - this.state = 1137; + this.state = 1135; this.match(HiveSqlParser.LPAREN); - this.state = 1138; + this.state = 1136; this.match(HiveSqlParser.StringLiteral); - this.state = 1139; + this.state = 1137; this.match(HiveSqlParser.RPAREN); } } @@ -2026,22 +2028,22 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1141; + this.state = 1139; this.match(HiveSqlParser.KW_EXPORT); - this.state = 1142; + this.state = 1140; this.match(HiveSqlParser.KW_TABLE); - this.state = 1143; + this.state = 1141; this.tableOrPartition(); - this.state = 1144; + this.state = 1142; this.match(HiveSqlParser.KW_TO); - this.state = 1145; + this.state = 1143; this.match(HiveSqlParser.StringLiteral); - this.state = 1147; + this.state = 1145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1146; + this.state = 1144; this.replicationClause(); } } @@ -2069,40 +2071,40 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1149; + this.state = 1147; this.match(HiveSqlParser.KW_IMPORT); - this.state = 1155; + this.state = 1153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 328) { { - this.state = 1151; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 1150; + this.state = 1148; this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 1153; + this.state = 1151; this.match(HiveSqlParser.KW_TABLE); - this.state = 1154; + this.state = 1152; this.tableOrPartition(); } } - this.state = 1157; + this.state = 1155; this.match(HiveSqlParser.KW_FROM); - this.state = 1158; + this.state = 1156; localContext._path = this.match(HiveSqlParser.StringLiteral); - this.state = 1160; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1159; + this.state = 1157; this.tableLocation(); } } @@ -2129,32 +2131,32 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1162; + this.state = 1160; this.match(HiveSqlParser.KW_REPL); - this.state = 1163; + this.state = 1161; this.match(HiveSqlParser.KW_DUMP); - this.state = 1164; + this.state = 1162; localContext._dbPolicy = this.replDbPolicy(); - this.state = 1167; + this.state = 1165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: { - this.state = 1165; + this.state = 1163; this.match(HiveSqlParser.KW_REPLACE); - this.state = 1166; + this.state = 1164; localContext._oldDbPolicy = this.replDbPolicy(); } break; } - this.state = 1171; + this.state = 1169; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 1169; + this.state = 1167; this.match(HiveSqlParser.KW_WITH); - this.state = 1170; + this.state = 1168; localContext._replConf = this.replConfigs(); } break; @@ -2182,16 +2184,16 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1173; + this.state = 1171; localContext._dbName = this.dbSchemaName(); - this.state = 1176; + this.state = 1174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 394) { { - this.state = 1174; + this.state = 1172; this.match(HiveSqlParser.DOT); - this.state = 1175; + this.state = 1173; localContext._tablePolicy = this.replTableLevelPolicy(); } } @@ -2219,32 +2221,32 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1178; + this.state = 1176; this.match(HiveSqlParser.KW_REPL); - this.state = 1179; + this.state = 1177; this.match(HiveSqlParser.KW_LOAD); - this.state = 1180; + this.state = 1178; localContext._sourceDbPolicy = this.replDbPolicy(); - this.state = 1183; + this.state = 1181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 1181; + this.state = 1179; this.match(HiveSqlParser.KW_INTO); - this.state = 1182; + this.state = 1180; localContext._dbName = this.dbSchemaName(); } } - this.state = 1187; + this.state = 1185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 1185; + this.state = 1183; this.match(HiveSqlParser.KW_WITH); - this.state = 1186; + this.state = 1184; localContext._replConf = this.replConfigs(); } break; @@ -2271,11 +2273,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1189; + this.state = 1187; this.match(HiveSqlParser.LPAREN); - this.state = 1190; + this.state = 1188; this.replConfigsList(); - this.state = 1191; + this.state = 1189; this.match(HiveSqlParser.RPAREN); } } @@ -2300,21 +2302,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1193; + this.state = 1191; this.keyValueProperty(); - this.state = 1198; + this.state = 1196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 1194; + this.state = 1192; this.match(HiveSqlParser.COMMA); - this.state = 1195; + this.state = 1193; this.keyValueProperty(); } } - this.state = 1200; + this.state = 1198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2341,16 +2343,16 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1201; + this.state = 1199; localContext._replTablesIncludeList = this.match(HiveSqlParser.StringLiteral); - this.state = 1204; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 394) { { - this.state = 1202; + this.state = 1200; this.match(HiveSqlParser.DOT); - this.state = 1203; + this.state = 1201; localContext._replTablesExcludeList = this.match(HiveSqlParser.StringLiteral); } } @@ -2377,20 +2379,20 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1206; + this.state = 1204; this.match(HiveSqlParser.KW_REPL); - this.state = 1207; + this.state = 1205; this.match(HiveSqlParser.KW_STATUS); - this.state = 1208; + this.state = 1206; localContext._dbName = this.dbSchemaName(); - this.state = 1211; + this.state = 1209; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: { - this.state = 1209; + this.state = 1207; this.match(HiveSqlParser.KW_WITH); - this.state = 1210; + this.state = 1208; localContext._replConf = this.replConfigs(); } break; @@ -2415,335 +2417,335 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 38, HiveSqlParser.RULE_ddlStatement); try { - this.state = 1260; + this.state = 1258; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1213; + this.state = 1211; this.createDatabaseStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1214; + this.state = 1212; this.switchDatabaseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1215; + this.state = 1213; this.dropDatabaseStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1216; + this.state = 1214; this.createTableStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1217; + this.state = 1215; this.dropTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1218; + this.state = 1216; this.truncateTableStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1219; + this.state = 1217; this.alterStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1220; + this.state = 1218; this.descStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1221; + this.state = 1219; this.showStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1222; + this.state = 1220; this.metastoreCheck(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1223; + this.state = 1221; this.createViewStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1224; + this.state = 1222; this.createMaterializedViewStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1225; + this.state = 1223; this.createScheduledQueryStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1226; + this.state = 1224; this.alterScheduledQueryStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1227; + this.state = 1225; this.dropScheduledQueryStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1228; + this.state = 1226; this.dropViewStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1229; + this.state = 1227; this.dropMaterializedViewStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1230; + this.state = 1228; this.createFunctionStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1231; + this.state = 1229; this.createMacroStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1232; + this.state = 1230; this.dropFunctionStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1233; + this.state = 1231; this.reloadFunctionsStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1234; + this.state = 1232; this.dropMacroStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1235; + this.state = 1233; this.createIndexStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1236; + this.state = 1234; this.dropIndexStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1237; + this.state = 1235; this.analyzeStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1238; + this.state = 1236; this.lockStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1239; + this.state = 1237; this.unlockStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1240; + this.state = 1238; this.lockDatabase(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1241; + this.state = 1239; this.unlockDatabase(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1242; + this.state = 1240; this.createRoleStatement(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1243; + this.state = 1241; this.dropRoleStatement(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1244; + this.state = 1242; this.grantPrivileges(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1245; + this.state = 1243; this.revokePrivileges(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1246; + this.state = 1244; this.showGrants(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1247; + this.state = 1245; this.showRoleGrants(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1248; + this.state = 1246; this.showRolePrincipals(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1249; + this.state = 1247; this.showRoles(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1250; + this.state = 1248; this.grantRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1251; + this.state = 1249; this.revokeRole(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1252; + this.state = 1250; this.setRole(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1253; + this.state = 1251; this.showCurrentRole(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1254; + this.state = 1252; this.abortTransactionStatement(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1255; + this.state = 1253; this.abortCompactionStatement(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1256; + this.state = 1254; this.killQueryStatement(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 1257; + this.state = 1255; this.resourcePlanDdlStatements(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 1258; + this.state = 1256; this.createDataConnectorStatement(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 1259; + this.state = 1257; this.dropDataConnectorStatement(); } break; @@ -2769,9 +2771,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1262; + this.state = 1260; this.match(HiveSqlParser.KW_IF); - this.state = 1263; + this.state = 1261; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2796,7 +2798,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1265; + this.state = 1263; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -2827,11 +2829,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1267; + this.state = 1265; this.match(HiveSqlParser.KW_IF); - this.state = 1268; + this.state = 1266; this.match(HiveSqlParser.KW_NOT); - this.state = 1269; + this.state = 1267; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2855,7 +2857,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1269; this.match(HiveSqlParser.KW_FORCE); } } @@ -2879,9 +2881,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1273; + this.state = 1271; this.enable(); - this.state = 1274; + this.state = 1272; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2905,9 +2907,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1276; + this.state = 1274; this.disable(); - this.state = 1277; + this.state = 1275; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2931,11 +2933,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1279; + this.state = 1277; this.match(HiveSqlParser.KW_STORED); - this.state = 1280; + this.state = 1278; this.match(HiveSqlParser.KW_AS); - this.state = 1281; + this.state = 1279; this.match(HiveSqlParser.KW_DIRECTORIES); } } @@ -2959,9 +2961,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1283; + this.state = 1281; this.match(HiveSqlParser.KW_OR); - this.state = 1284; + this.state = 1282; this.match(HiveSqlParser.KW_REPLACE); } } @@ -2984,78 +2986,78 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 56, HiveSqlParser.RULE_createDatabaseStatement); let _la: number; try { - this.state = 1325; + this.state = 1323; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1286; + this.state = 1284; this.match(HiveSqlParser.KW_CREATE); - this.state = 1288; + this.state = 1286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 272) { { - this.state = 1287; + this.state = 1285; this.match(HiveSqlParser.KW_REMOTE); } } - this.state = 1290; + this.state = 1288; this.db_schema(); - this.state = 1292; + this.state = 1290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1291; + this.state = 1289; this.ifNotExists(); } } - this.state = 1294; + this.state = 1292; localContext._name = this.dbSchemaNameCreate(); - this.state = 1296; + this.state = 1294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1295; + this.state = 1293; this.databaseComment(); } } - this.state = 1299; + this.state = 1297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1298; + this.state = 1296; this.dbLocation(); } } - this.state = 1302; + this.state = 1300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1301; + this.state = 1299; this.dbManagedLocation(); } } - this.state = 1307; + this.state = 1305; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 1304; + this.state = 1302; this.match(HiveSqlParser.KW_WITH); - this.state = 1305; + this.state = 1303; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1306; + this.state = 1304; localContext._dbprops = this.dbProperties(); } break; @@ -3065,46 +3067,46 @@ export class HiveSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1309; + this.state = 1307; this.match(HiveSqlParser.KW_CREATE); - this.state = 1310; + this.state = 1308; this.match(HiveSqlParser.KW_REMOTE); - this.state = 1311; + this.state = 1309; this.db_schema(); - this.state = 1313; + this.state = 1311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1312; + this.state = 1310; this.ifNotExists(); } } - this.state = 1315; + this.state = 1313; localContext._name = this.dbSchemaNameCreate(); - this.state = 1317; + this.state = 1315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1316; + this.state = 1314; this.databaseComment(); } } - this.state = 1319; + this.state = 1317; this.dbConnectorName(); - this.state = 1323; + this.state = 1321; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 35, this.context) ) { case 1: { - this.state = 1320; + this.state = 1318; this.match(HiveSqlParser.KW_WITH); - this.state = 1321; + this.state = 1319; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1322; + this.state = 1320; localContext._dbprops = this.dbProperties(); } break; @@ -3133,9 +3135,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1327; + this.state = 1325; this.match(HiveSqlParser.KW_LOCATION); - this.state = 1328; + this.state = 1326; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -3159,9 +3161,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1330; + this.state = 1328; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 1331; + this.state = 1329; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -3185,11 +3187,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1333; + this.state = 1331; this.match(HiveSqlParser.LPAREN); - this.state = 1334; + this.state = 1332; this.dbPropertiesList(); - this.state = 1335; + this.state = 1333; this.match(HiveSqlParser.RPAREN); } } @@ -3214,21 +3216,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1337; + this.state = 1335; this.keyValueProperty(); - this.state = 1342; + this.state = 1340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 1338; + this.state = 1336; this.match(HiveSqlParser.COMMA); - this.state = 1339; + this.state = 1337; this.keyValueProperty(); } } - this.state = 1344; + this.state = 1342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3254,9 +3256,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1345; + this.state = 1343; this.match(HiveSqlParser.KW_USING); - this.state = 1346; + this.state = 1344; localContext._dcName = this.dbSchemaName(); } } @@ -3280,9 +3282,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1348; + this.state = 1346; this.match(HiveSqlParser.KW_USE); - this.state = 1349; + this.state = 1347; this.dbSchemaName(); } } @@ -3307,28 +3309,28 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1351; + this.state = 1349; this.match(HiveSqlParser.KW_DROP); - this.state = 1352; + this.state = 1350; this.db_schema(); - this.state = 1354; + this.state = 1352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1353; + this.state = 1351; this.ifExists(); } } - this.state = 1356; + this.state = 1354; this.dbSchemaName(); - this.state = 1358; + this.state = 1356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 281) { { - this.state = 1357; + this.state = 1355; this.restrictOrCascade(); } } @@ -3355,9 +3357,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1360; + this.state = 1358; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1361; + this.state = 1359; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -3382,42 +3384,42 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1363; + this.state = 1361; this.match(HiveSqlParser.KW_TRUNCATE); - this.state = 1365; + this.state = 1363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 328) { { - this.state = 1364; + this.state = 1362; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1367; + this.state = 1365; this.tablePartitionPrefix(); - this.state = 1373; + this.state = 1371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 1368; + this.state = 1366; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1369; + this.state = 1367; this.match(HiveSqlParser.LPAREN); - this.state = 1370; + this.state = 1368; this.columnNameList(); - this.state = 1371; + this.state = 1369; this.match(HiveSqlParser.RPAREN); } } - this.state = 1376; + this.state = 1374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1375; + this.state = 1373; this.force(); } } @@ -3445,38 +3447,38 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1378; + this.state = 1376; this.match(HiveSqlParser.KW_DROP); - this.state = 1379; + this.state = 1377; this.match(HiveSqlParser.KW_TABLE); - this.state = 1381; + this.state = 1379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1380; + this.state = 1378; this.ifExists(); } } - this.state = 1383; + this.state = 1381; this.tableName(); - this.state = 1385; + this.state = 1383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 254) { { - this.state = 1384; + this.state = 1382; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 1388; + this.state = 1386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1387; + this.state = 1385; this.replicationClause(); } } @@ -3503,13 +3505,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1390; + this.state = 1388; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 1391; + this.state = 1389; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 1392; + this.state = 1390; this.match(HiveSqlParser.KW_SERDE); - this.state = 1393; + this.state = 1391; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); } } @@ -3534,66 +3536,66 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1395; + this.state = 1393; this.id_(); - this.state = 1398; + this.state = 1396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 394) { { - this.state = 1396; + this.state = 1394; this.match(HiveSqlParser.DOT); - this.state = 1397; + this.state = 1395; this.id_(); } } - this.state = 1413; + this.state = 1411; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: { - this.state = 1400; + this.state = 1398; this.id_(); - this.state = 1410; + this.state = 1408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 394) { { { - this.state = 1401; + this.state = 1399; this.match(HiveSqlParser.DOT); - this.state = 1406; + this.state = 1404; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 1402; + this.state = 1400; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 1403; + this.state = 1401; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 1404; + this.state = 1402; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 1405; + this.state = 1403; this.id_(); } break; } } } - this.state = 1412; + this.state = 1410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3623,14 +3625,14 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1415; + this.state = 1413; this.tabTypeExpr(); - this.state = 1417; + this.state = 1415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 1416; + this.state = 1414; this.partitionSpec(); } } @@ -3654,28 +3656,27 @@ export class HiveSqlParser extends antlr.Parser { public tabPartColTypeExpr(): TabPartColTypeExprContext { let localContext = new TabPartColTypeExprContext(this.context, this.state); this.enterRule(localContext, 84, HiveSqlParser.RULE_tabPartColTypeExpr); - let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1419; + this.state = 1417; this.tableOrView(); - this.state = 1421; + this.state = 1419; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 236) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { + case 1: { - this.state = 1420; + this.state = 1418; this.partitionSpec(); } + break; } - - this.state = 1424; + this.state = 1422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 52, this.context) ) { case 1: { - this.state = 1423; + this.state = 1421; this.extColumnName(); } break; @@ -3703,7 +3704,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1426; + this.state = 1424; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -3712,90 +3713,90 @@ export class HiveSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1449; + this.state = 1447; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1427; + this.state = 1425; this.db_schema(); - this.state = 1429; + this.state = 1427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1428; + this.state = 1426; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1431; + this.state = 1429; localContext._dbName = this.dbSchemaName(); } break; case 2: { - this.state = 1433; + this.state = 1431; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 1435; + this.state = 1433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1434; + this.state = 1432; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1437; + this.state = 1435; localContext._dcName = this.dbSchemaName(); } break; case 3: { - this.state = 1438; + this.state = 1436; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1440; + this.state = 1438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1439; + this.state = 1437; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1442; + this.state = 1440; localContext._name = this.functionNameForDDL(); } break; case 4: { - this.state = 1445; + this.state = 1443; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FORMATTED: { - this.state = 1443; + this.state = 1441; localContext._descOptions = this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_EXTENDED: { - this.state = 1444; + this.state = 1442; localContext._descOptions = this.match(HiveSqlParser.KW_EXTENDED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1447; + this.state = 1445; localContext._parttype = this.tabPartColTypeExpr(); } break; case 5: { - this.state = 1448; + this.state = 1446; localContext._parttype = this.tabPartColTypeExpr(); } break; @@ -3822,42 +3823,42 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1451; + this.state = 1449; this.match(HiveSqlParser.KW_ANALYZE); - this.state = 1452; + this.state = 1450; this.match(HiveSqlParser.KW_TABLE); - this.state = 1453; + this.state = 1451; localContext._parttype = this.tableOrPartition(); - this.state = 1466; + this.state = 1464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPUTE: { - this.state = 1454; + this.state = 1452; this.match(HiveSqlParser.KW_COMPUTE); - this.state = 1455; + this.state = 1453; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 1462; + this.state = 1460; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOSCAN: { - this.state = 1456; + this.state = 1454; localContext._noscan = this.match(HiveSqlParser.KW_NOSCAN); } break; case HiveSqlParser.KW_FOR: { - this.state = 1457; + this.state = 1455; this.match(HiveSqlParser.KW_FOR); - this.state = 1458; + this.state = 1456; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1460; + this.state = 1458; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1459; + this.state = 1457; localContext._statsColumnName = this.columnNameList(); } break; @@ -3918,9 +3919,9 @@ export class HiveSqlParser extends antlr.Parser { break; case HiveSqlParser.KW_CACHE: { - this.state = 1464; + this.state = 1462; this.match(HiveSqlParser.KW_CACHE); - this.state = 1465; + this.state = 1463; this.match(HiveSqlParser.KW_METADATA); } break; @@ -3950,7 +3951,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1468; + this.state = 1466; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 154)) { this.errorHandler.recoverInline(this); @@ -3982,7 +3983,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1470; + this.state = 1468; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 294)) { this.errorHandler.recoverInline(this); @@ -4012,15 +4013,15 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 94, HiveSqlParser.RULE_showStatement); let _la: number; try { - this.state = 1665; + this.state = 1663; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1472; + this.state = 1470; this.match(HiveSqlParser.KW_SHOW); - this.state = 1473; + this.state = 1471; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 295)) { this.errorHandler.recoverInline(this); @@ -4029,14 +4030,14 @@ export class HiveSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1476; + this.state = 1474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 1474; + this.state = 1472; this.match(HiveSqlParser.KW_LIKE); - this.state = 1475; + this.state = 1473; this.showStmtIdentifier(); } } @@ -4046,38 +4047,38 @@ export class HiveSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1478; + this.state = 1476; this.match(HiveSqlParser.KW_SHOW); - this.state = 1480; + this.state = 1478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1479; + this.state = 1477; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1482; + this.state = 1480; this.match(HiveSqlParser.KW_TABLES); - this.state = 1486; + this.state = 1484; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { case 1: { - this.state = 1483; + this.state = 1481; this.from_in(); - this.state = 1484; + this.state = 1482; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1489; + this.state = 1487; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1488; + this.state = 1486; localContext._filter = this.showTablesFilterExpr(); } break; @@ -4087,36 +4088,36 @@ export class HiveSqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1491; + this.state = 1489; this.match(HiveSqlParser.KW_SHOW); - this.state = 1492; + this.state = 1490; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1496; + this.state = 1494; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1493; + this.state = 1491; this.from_in(); - this.state = 1494; + this.state = 1492; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1501; + this.state = 1499; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 1498; + this.state = 1496; this.match(HiveSqlParser.KW_LIKE); - this.state = 1499; + this.state = 1497; this.showStmtIdentifier(); } break; case 2: { - this.state = 1500; + this.state = 1498; this.showStmtIdentifier(); } break; @@ -4126,38 +4127,38 @@ export class HiveSqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1503; + this.state = 1501; this.match(HiveSqlParser.KW_SHOW); - this.state = 1504; + this.state = 1502; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1505; + this.state = 1503; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1509; + this.state = 1507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: { - this.state = 1506; + this.state = 1504; this.from_in(); - this.state = 1507; + this.state = 1505; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1514; + this.state = 1512; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 68, this.context) ) { case 1: { - this.state = 1511; + this.state = 1509; this.match(HiveSqlParser.KW_LIKE); - this.state = 1512; + this.state = 1510; this.showStmtIdentifier(); } break; case 2: { - this.state = 1513; + this.state = 1511; this.showStmtIdentifier(); } break; @@ -4167,50 +4168,50 @@ export class HiveSqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1516; + this.state = 1514; this.match(HiveSqlParser.KW_SHOW); - this.state = 1518; + this.state = 1516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1517; + this.state = 1515; this.match(HiveSqlParser.KW_SORTED); } } - this.state = 1520; + this.state = 1518; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1521; + this.state = 1519; this.from_in(); - this.state = 1522; + this.state = 1520; this.tableOrView(); - this.state = 1526; + this.state = 1524; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1523; + this.state = 1521; this.from_in(); - this.state = 1524; + this.state = 1522; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1531; + this.state = 1529; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 1528; + this.state = 1526; this.match(HiveSqlParser.KW_LIKE); - this.state = 1529; + this.state = 1527; this.showStmtIdentifier(); } break; case 2: { - this.state = 1530; + this.state = 1528; this.showStmtIdentifier(); } break; @@ -4220,18 +4221,18 @@ export class HiveSqlParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1533; + this.state = 1531; this.match(HiveSqlParser.KW_SHOW); - this.state = 1534; + this.state = 1532; this.match(HiveSqlParser.KW_FUNCTIONS); - this.state = 1537; + this.state = 1535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 1535; + this.state = 1533; this.match(HiveSqlParser.KW_LIKE); - this.state = 1536; + this.state = 1534; this.functionNameForDDL(); } } @@ -4241,48 +4242,48 @@ export class HiveSqlParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1539; + this.state = 1537; this.match(HiveSqlParser.KW_SHOW); - this.state = 1540; + this.state = 1538; this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1541; + this.state = 1539; localContext._tabOrViewName = this.tableOrView(); - this.state = 1543; + this.state = 1541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 1542; + this.state = 1540; this.partitionSpec(); } } - this.state = 1546; + this.state = 1544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 1545; + this.state = 1543; this.whereClause(); } } - this.state = 1549; + this.state = 1547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1548; + this.state = 1546; this.orderByClause(); } } - this.state = 1552; + this.state = 1550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1551; + this.state = 1549; this.limitClause(); } } @@ -4292,27 +4293,27 @@ export class HiveSqlParser extends antlr.Parser { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1554; + this.state = 1552; this.match(HiveSqlParser.KW_SHOW); - this.state = 1555; + this.state = 1553; this.match(HiveSqlParser.KW_CREATE); - this.state = 1561; + this.state = 1559; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 1556; + this.state = 1554; this.db_schema(); - this.state = 1557; + this.state = 1555; localContext._db_name = this.dbSchemaName(); } break; case HiveSqlParser.KW_TABLE: { - this.state = 1559; + this.state = 1557; this.match(HiveSqlParser.KW_TABLE); - this.state = 1560; + this.state = 1558; localContext._tabName = this.tableName(); } break; @@ -4324,34 +4325,34 @@ export class HiveSqlParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1563; + this.state = 1561; this.match(HiveSqlParser.KW_SHOW); - this.state = 1564; + this.state = 1562; this.match(HiveSqlParser.KW_TABLE); - this.state = 1565; + this.state = 1563; this.match(HiveSqlParser.KW_EXTENDED); - this.state = 1569; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 154) { { - this.state = 1566; + this.state = 1564; this.from_in(); - this.state = 1567; + this.state = 1565; localContext._db_name = this.dbSchemaName(); } } - this.state = 1571; + this.state = 1569; this.match(HiveSqlParser.KW_LIKE); - this.state = 1572; + this.state = 1570; this.showStmtIdentifier(); - this.state = 1574; + this.state = 1572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 1573; + this.state = 1571; this.partitionSpec(); } } @@ -4361,22 +4362,22 @@ export class HiveSqlParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1576; + this.state = 1574; this.match(HiveSqlParser.KW_SHOW); - this.state = 1577; + this.state = 1575; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1578; + this.state = 1576; this.tableName(); - this.state = 1582; + this.state = 1580; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { case 1: { - this.state = 1579; + this.state = 1577; this.match(HiveSqlParser.LPAREN); - this.state = 1580; + this.state = 1578; localContext._prptyName = this.match(HiveSqlParser.StringLiteral); - this.state = 1581; + this.state = 1579; this.match(HiveSqlParser.RPAREN); } break; @@ -4386,25 +4387,25 @@ export class HiveSqlParser extends antlr.Parser { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1584; + this.state = 1582; this.match(HiveSqlParser.KW_SHOW); - this.state = 1585; + this.state = 1583; this.match(HiveSqlParser.KW_LOCKS); - this.state = 1597; + this.state = 1595; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { - this.state = 1586; + this.state = 1584; this.db_schema(); - this.state = 1587; + this.state = 1585; localContext._dbName = this.dbSchemaName(); - this.state = 1589; + this.state = 1587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1588; + this.state = 1586; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4413,22 +4414,22 @@ export class HiveSqlParser extends antlr.Parser { break; case 2: { - this.state = 1592; + this.state = 1590; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 1591; + this.state = 1589; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1595; + this.state = 1593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1594; + this.state = 1592; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4441,71 +4442,71 @@ export class HiveSqlParser extends antlr.Parser { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1599; + this.state = 1597; this.match(HiveSqlParser.KW_SHOW); - this.state = 1600; + this.state = 1598; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 1637; + this.state = 1635; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { case 1: { - this.state = 1601; + this.state = 1599; this.compactionId(); } break; case 2: { - this.state = 1602; + this.state = 1600; this.db_schema(); - this.state = 1603; + this.state = 1601; localContext._dbName = this.dbSchemaName(); - this.state = 1605; + this.state = 1603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 245) { { - this.state = 1604; + this.state = 1602; this.compactionPool(); } } - this.state = 1608; + this.state = 1606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 1607; + this.state = 1605; this.compactionType(); } } - this.state = 1611; + this.state = 1609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 1610; + this.state = 1608; this.compactionStatus(); } } - this.state = 1614; + this.state = 1612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1613; + this.state = 1611; this.orderByClause(); } } - this.state = 1617; + this.state = 1615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1616; + this.state = 1614; this.limitClause(); } } @@ -4514,62 +4515,62 @@ export class HiveSqlParser extends antlr.Parser { break; case 3: { - this.state = 1620; + this.state = 1618; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 1619; + this.state = 1617; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1623; + this.state = 1621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 245) { { - this.state = 1622; + this.state = 1620; this.compactionPool(); } } - this.state = 1626; + this.state = 1624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 1625; + this.state = 1623; this.compactionType(); } } - this.state = 1629; + this.state = 1627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 1628; + this.state = 1626; this.compactionStatus(); } } - this.state = 1632; + this.state = 1630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1631; + this.state = 1629; this.orderByClause(); } } - this.state = 1635; + this.state = 1633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1634; + this.state = 1632; this.limitClause(); } } @@ -4582,44 +4583,44 @@ export class HiveSqlParser extends antlr.Parser { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1639; + this.state = 1637; this.match(HiveSqlParser.KW_SHOW); - this.state = 1640; + this.state = 1638; this.match(HiveSqlParser.KW_TRANSACTIONS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1641; + this.state = 1639; this.match(HiveSqlParser.KW_SHOW); - this.state = 1642; + this.state = 1640; this.match(HiveSqlParser.KW_CONF); - this.state = 1643; + this.state = 1641; this.match(HiveSqlParser.StringLiteral); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1644; + this.state = 1642; this.match(HiveSqlParser.KW_SHOW); - this.state = 1645; + this.state = 1643; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 1649; + this.state = 1647; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PLAN: { - this.state = 1646; + this.state = 1644; this.match(HiveSqlParser.KW_PLAN); - this.state = 1647; + this.state = 1645; localContext._rp_name = this.id_(); } break; case HiveSqlParser.KW_PLANS: { - this.state = 1648; + this.state = 1646; this.match(HiveSqlParser.KW_PLANS); } break; @@ -4631,28 +4632,28 @@ export class HiveSqlParser extends antlr.Parser { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1651; + this.state = 1649; this.match(HiveSqlParser.KW_SHOW); - this.state = 1652; + this.state = 1650; this.match(HiveSqlParser.KW_DATACONNECTORS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1653; + this.state = 1651; this.match(HiveSqlParser.KW_SHOW); - this.state = 1655; + this.state = 1653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1654; + this.state = 1652; this.match(HiveSqlParser.KW_FORMATTED); } } - this.state = 1657; + this.state = 1655; _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 156)) { this.errorHandler.recoverInline(this); @@ -4661,18 +4662,18 @@ export class HiveSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1658; + this.state = 1656; this.match(HiveSqlParser.KW_ON); - this.state = 1659; + this.state = 1657; this.tableName(); - this.state = 1663; + this.state = 1661; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { case 1: { - this.state = 1660; + this.state = 1658; this.from_in(); - this.state = 1661; + this.state = 1659; this.dbSchemaName(); } break; @@ -4699,28 +4700,28 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new ShowTablesFilterExprContext(this.context, this.state); this.enterRule(localContext, 96, HiveSqlParser.RULE_showTablesFilterExpr); try { - this.state = 1675; + this.state = 1673; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 1667; + this.state = 1665; this.match(HiveSqlParser.KW_WHERE); - this.state = 1668; + this.state = 1666; this.id_(); - this.state = 1669; + this.state = 1667; this.match(HiveSqlParser.EQUAL); - this.state = 1670; + this.state = 1668; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1672; + this.state = 1670; this.match(HiveSqlParser.KW_LIKE); - this.state = 1673; + this.state = 1671; this.showStmtIdentifier(); } break; @@ -4966,7 +4967,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 3); { - this.state = 1674; + this.state = 1672; this.showStmtIdentifier(); } break; @@ -4995,23 +4996,23 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1677; + this.state = 1675; this.match(HiveSqlParser.KW_LOCK); - this.state = 1678; + this.state = 1676; this.match(HiveSqlParser.KW_TABLE); - this.state = 1679; + this.state = 1677; this.tableName(); - this.state = 1681; + this.state = 1679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 1680; + this.state = 1678; this.partitionSpec(); } } - this.state = 1683; + this.state = 1681; this.lockMode(); } } @@ -5035,13 +5036,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1685; + this.state = 1683; this.match(HiveSqlParser.KW_LOCK); - this.state = 1686; + this.state = 1684; this.db_schema(); - this.state = 1687; + this.state = 1685; localContext._dbName = this.dbSchemaName(); - this.state = 1688; + this.state = 1686; this.lockMode(); } } @@ -5066,7 +5067,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1690; + this.state = 1688; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 306)) { this.errorHandler.recoverInline(this); @@ -5098,18 +5099,18 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1692; + this.state = 1690; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1693; + this.state = 1691; this.match(HiveSqlParser.KW_TABLE); - this.state = 1694; + this.state = 1692; this.tableName(); - this.state = 1696; + this.state = 1694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 1695; + this.state = 1693; this.partitionSpec(); } } @@ -5136,11 +5137,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1698; + this.state = 1696; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1699; + this.state = 1697; this.db_schema(); - this.state = 1700; + this.state = 1698; localContext._dbName = this.dbSchemaName(); } } @@ -5164,11 +5165,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1702; + this.state = 1700; this.match(HiveSqlParser.KW_CREATE); - this.state = 1703; + this.state = 1701; this.match(HiveSqlParser.KW_ROLE); - this.state = 1704; + this.state = 1702; localContext._roleName = this.id_(); } } @@ -5192,11 +5193,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1706; + this.state = 1704; this.match(HiveSqlParser.KW_DROP); - this.state = 1707; + this.state = 1705; this.match(HiveSqlParser.KW_ROLE); - this.state = 1708; + this.state = 1706; localContext._roleName = this.id_(); } } @@ -5221,30 +5222,30 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1710; + this.state = 1708; this.match(HiveSqlParser.KW_GRANT); - this.state = 1711; + this.state = 1709; localContext._privList = this.privilegeList(); - this.state = 1713; + this.state = 1711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 223) { { - this.state = 1712; + this.state = 1710; this.privilegeObject(); } } - this.state = 1715; + this.state = 1713; this.match(HiveSqlParser.KW_TO); - this.state = 1716; + this.state = 1714; this.principalSpecification(); - this.state = 1718; + this.state = 1716; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: { - this.state = 1717; + this.state = 1715; this.withGrantOption(); } break; @@ -5272,33 +5273,33 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1720; + this.state = 1718; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1722; + this.state = 1720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 143) { { - this.state = 1721; + this.state = 1719; this.grantOptionFor(); } } - this.state = 1724; + this.state = 1722; this.privilegeList(); - this.state = 1726; + this.state = 1724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 223) { { - this.state = 1725; + this.state = 1723; this.privilegeObject(); } } - this.state = 1728; + this.state = 1726; this.match(HiveSqlParser.KW_FROM); - this.state = 1729; + this.state = 1727; this.principalSpecification(); } } @@ -5323,46 +5324,46 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1731; + this.state = 1729; this.match(HiveSqlParser.KW_GRANT); - this.state = 1733; + this.state = 1731; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1732; + this.state = 1730; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1735; + this.state = 1733; this.id_(); - this.state = 1740; + this.state = 1738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 1736; + this.state = 1734; this.match(HiveSqlParser.COMMA); - this.state = 1737; + this.state = 1735; this.id_(); } } - this.state = 1742; + this.state = 1740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1743; + this.state = 1741; this.match(HiveSqlParser.KW_TO); - this.state = 1744; + this.state = 1742; this.principalSpecification(); - this.state = 1746; + this.state = 1744; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 110, this.context) ) { case 1: { - this.state = 1745; + this.state = 1743; this.withAdminOption(); } break; @@ -5390,49 +5391,49 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1748; + this.state = 1746; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1750; + this.state = 1748; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1749; + this.state = 1747; this.adminOptionFor(); } break; } - this.state = 1753; + this.state = 1751; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1752; + this.state = 1750; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1755; + this.state = 1753; this.id_(); - this.state = 1760; + this.state = 1758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 1756; + this.state = 1754; this.match(HiveSqlParser.COMMA); - this.state = 1757; + this.state = 1755; this.id_(); } } - this.state = 1762; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1763; + this.state = 1761; this.match(HiveSqlParser.KW_FROM); - this.state = 1764; + this.state = 1762; this.principalSpecification(); } } @@ -5456,13 +5457,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1766; + this.state = 1764; this.match(HiveSqlParser.KW_SHOW); - this.state = 1767; + this.state = 1765; this.match(HiveSqlParser.KW_ROLE); - this.state = 1768; + this.state = 1766; this.match(HiveSqlParser.KW_GRANT); - this.state = 1769; + this.state = 1767; this.principalName(); } } @@ -5486,9 +5487,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1771; + this.state = 1769; this.match(HiveSqlParser.KW_SHOW); - this.state = 1772; + this.state = 1770; this.match(HiveSqlParser.KW_ROLES); } } @@ -5512,11 +5513,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1774; + this.state = 1772; this.match(HiveSqlParser.KW_SHOW); - this.state = 1775; + this.state = 1773; this.match(HiveSqlParser.KW_CURRENT); - this.state = 1776; + this.state = 1774; this.match(HiveSqlParser.KW_ROLES); } } @@ -5540,22 +5541,22 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1778; + this.state = 1776; this.match(HiveSqlParser.KW_SET); - this.state = 1779; + this.state = 1777; this.match(HiveSqlParser.KW_ROLE); - this.state = 1783; + this.state = 1781; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: { - this.state = 1780; + this.state = 1778; localContext._all = this.match(HiveSqlParser.KW_ALL); } break; case HiveSqlParser.KW_NONE: { - this.state = 1781; + this.state = 1779; localContext._none = this.match(HiveSqlParser.KW_NONE); } break; @@ -5799,7 +5800,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_ZONE: case HiveSqlParser.Identifier: { - this.state = 1782; + this.state = 1780; this.id_(); } break; @@ -5829,28 +5830,28 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1785; + this.state = 1783; this.match(HiveSqlParser.KW_SHOW); - this.state = 1786; + this.state = 1784; this.match(HiveSqlParser.KW_GRANT); - this.state = 1788; + this.state = 1786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 286 || _la === 368) { { - this.state = 1787; + this.state = 1785; this.principalName(); } } - this.state = 1792; + this.state = 1790; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 223) { { - this.state = 1790; + this.state = 1788; this.match(HiveSqlParser.KW_ON); - this.state = 1791; + this.state = 1789; this.privilegeIncludeColObject(); } } @@ -5877,11 +5878,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1794; + this.state = 1792; this.match(HiveSqlParser.KW_SHOW); - this.state = 1795; + this.state = 1793; this.match(HiveSqlParser.KW_PRINCIPALS); - this.state = 1796; + this.state = 1794; localContext._roleName = this.id_(); } } @@ -5903,13 +5904,13 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new PrivilegeIncludeColObjectContext(this.context, this.state); this.enterRule(localContext, 132, HiveSqlParser.RULE_privilegeIncludeColObject); try { - this.state = 1800; + this.state = 1798; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1798; + this.state = 1796; this.match(HiveSqlParser.KW_ALL); } break; @@ -6156,7 +6157,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 1799; + this.state = 1797; this.privObjectCols(); } break; @@ -6184,9 +6185,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1802; + this.state = 1800; this.match(HiveSqlParser.KW_ON); - this.state = 1803; + this.state = 1801; this.privObject(); } } @@ -6209,39 +6210,39 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 136, HiveSqlParser.RULE_privObject); let _la: number; try { - this.state = 1819; + this.state = 1817; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1805; + this.state = 1803; this.db_schema(); - this.state = 1806; + this.state = 1804; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1809; + this.state = 1807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 328) { { - this.state = 1808; + this.state = 1806; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1811; + this.state = 1809; this.tableName(); - this.state = 1813; + this.state = 1811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 1812; + this.state = 1810; this.partitionSpec(); } } @@ -6251,18 +6252,18 @@ export class HiveSqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1815; + this.state = 1813; this.match(HiveSqlParser.KW_URI); - this.state = 1816; + this.state = 1814; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1817; + this.state = 1815; this.match(HiveSqlParser.KW_SERVER); - this.state = 1818; + this.state = 1816; this.id_(); } break; @@ -6287,53 +6288,53 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 138, HiveSqlParser.RULE_privObjectCols); let _la: number; try { - this.state = 1841; + this.state = 1839; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1821; + this.state = 1819; this.db_schema(); - this.state = 1822; + this.state = 1820; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1825; + this.state = 1823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 328) { { - this.state = 1824; + this.state = 1822; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1827; + this.state = 1825; this.tableName(); - this.state = 1832; + this.state = 1830; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1828; + this.state = 1826; this.match(HiveSqlParser.LPAREN); - this.state = 1829; + this.state = 1827; localContext._cols = this.columnNameList(); - this.state = 1830; + this.state = 1828; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 1835; + this.state = 1833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 1834; + this.state = 1832; this.partitionSpec(); } } @@ -6343,18 +6344,18 @@ export class HiveSqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1837; + this.state = 1835; this.match(HiveSqlParser.KW_URI); - this.state = 1838; + this.state = 1836; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1839; + this.state = 1837; this.match(HiveSqlParser.KW_SERVER); - this.state = 1840; + this.state = 1838; this.id_(); } break; @@ -6381,21 +6382,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1843; + this.state = 1841; this.privlegeDef(); - this.state = 1848; + this.state = 1846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 1844; + this.state = 1842; this.match(HiveSqlParser.COMMA); - this.state = 1845; + this.state = 1843; this.privlegeDef(); } } - this.state = 1850; + this.state = 1848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6422,18 +6423,18 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1851; + this.state = 1849; this.privilegeType(); - this.state = 1856; + this.state = 1854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 398) { { - this.state = 1852; + this.state = 1850; this.match(HiveSqlParser.LPAREN); - this.state = 1853; + this.state = 1851; localContext._cols = this.columnNameList(); - this.state = 1854; + this.state = 1852; this.match(HiveSqlParser.RPAREN); } } @@ -6461,7 +6462,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1858; + this.state = 1856; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 9 || _la === 58 || _la === 86 || _la === 101 || _la === 155 || _la === 161 || _la === 189 || _la === 298 || _la === 308 || _la === 364)) { this.errorHandler.recoverInline(this); @@ -6493,21 +6494,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1860; + this.state = 1858; this.principalName(); - this.state = 1865; + this.state = 1863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 1861; + this.state = 1859; this.match(HiveSqlParser.COMMA); - this.state = 1862; + this.state = 1860; this.principalName(); } } - this.state = 1867; + this.state = 1865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6531,33 +6532,33 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new PrincipalNameContext(this.context, this.state); this.enterRule(localContext, 148, HiveSqlParser.RULE_principalName); try { - this.state = 1874; + this.state = 1872; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 1); { - this.state = 1868; + this.state = 1866; this.match(HiveSqlParser.KW_USER); - this.state = 1869; + this.state = 1867; this.principalIdentifier(); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 1870; + this.state = 1868; this.match(HiveSqlParser.KW_GROUP); - this.state = 1871; + this.state = 1869; this.principalIdentifier(); } break; case HiveSqlParser.KW_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 1872; + this.state = 1870; this.match(HiveSqlParser.KW_ROLE); - this.state = 1873; + this.state = 1871; this.id_(); } break; @@ -6583,31 +6584,31 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new PrincipalAlterNameContext(this.context, this.state); this.enterRule(localContext, 150, HiveSqlParser.RULE_principalAlterName); try { - this.state = 1881; + this.state = 1879; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1876; + this.state = 1874; this.match(HiveSqlParser.KW_USER); - this.state = 1877; + this.state = 1875; this.principalIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1878; + this.state = 1876; this.match(HiveSqlParser.KW_ROLE); - this.state = 1879; + this.state = 1877; this.id_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1880; + this.state = 1878; this.id_(); } break; @@ -6633,11 +6634,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1883; + this.state = 1881; this.match(HiveSqlParser.KW_WITH); - this.state = 1884; + this.state = 1882; this.match(HiveSqlParser.KW_GRANT); - this.state = 1885; + this.state = 1883; this.match(HiveSqlParser.KW_OPTION); } } @@ -6661,11 +6662,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1887; + this.state = 1885; this.match(HiveSqlParser.KW_GRANT); - this.state = 1888; + this.state = 1886; this.match(HiveSqlParser.KW_OPTION); - this.state = 1889; + this.state = 1887; this.match(HiveSqlParser.KW_FOR); } } @@ -6689,11 +6690,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1891; + this.state = 1889; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1892; + this.state = 1890; this.match(HiveSqlParser.KW_OPTION); - this.state = 1893; + this.state = 1891; this.match(HiveSqlParser.KW_FOR); } } @@ -6717,11 +6718,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1895; + this.state = 1893; this.match(HiveSqlParser.KW_WITH); - this.state = 1896; + this.state = 1894; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1897; + this.state = 1895; this.match(HiveSqlParser.KW_OPTION); } } @@ -6746,29 +6747,29 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1899; + this.state = 1897; this.match(HiveSqlParser.KW_MSCK); - this.state = 1901; + this.state = 1899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 275) { { - this.state = 1900; + this.state = 1898; localContext._repair = this.match(HiveSqlParser.KW_REPAIR); } } { - this.state = 1903; + this.state = 1901; this.match(HiveSqlParser.KW_TABLE); - this.state = 1904; + this.state = 1902; this.tableName(); - this.state = 1910; + this.state = 1908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1905; + this.state = 1903; localContext._opt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101 || _la === 325)) { @@ -6778,14 +6779,14 @@ export class HiveSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1906; + this.state = 1904; localContext._parts = this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1908; + this.state = 1906; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1907; + this.state = 1905; this.partitionSelectorSpec(); } break; @@ -6817,21 +6818,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1912; + this.state = 1910; this.resource(); - this.state = 1917; + this.state = 1915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 1913; + this.state = 1911; this.match(HiveSqlParser.COMMA); - this.state = 1914; + this.state = 1912; this.resource(); } } - this.state = 1919; + this.state = 1917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6857,9 +6858,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1920; + this.state = 1918; localContext._resType = this.resourceType(); - this.state = 1921; + this.state = 1919; localContext._resPath = this.match(HiveSqlParser.StringLiteral); } } @@ -6884,7 +6885,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1923; + this.state = 1921; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 128 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -6916,34 +6917,34 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1925; + this.state = 1923; this.match(HiveSqlParser.KW_CREATE); - this.state = 1927; + this.state = 1925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1926; + this.state = 1924; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1929; + this.state = 1927; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1930; + this.state = 1928; this.functionNameCreate(); - this.state = 1931; + this.state = 1929; this.match(HiveSqlParser.KW_AS); - this.state = 1932; + this.state = 1930; this.match(HiveSqlParser.StringLiteral); - this.state = 1935; + this.state = 1933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 369) { { - this.state = 1933; + this.state = 1931; this.match(HiveSqlParser.KW_USING); - this.state = 1934; + this.state = 1932; localContext._rList = this.resourceList(); } } @@ -6971,31 +6972,31 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1937; + this.state = 1935; this.match(HiveSqlParser.KW_DROP); - this.state = 1939; + this.state = 1937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1938; + this.state = 1936; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1941; + this.state = 1939; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1943; + this.state = 1941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1942; + this.state = 1940; this.ifExists(); } } - this.state = 1945; + this.state = 1943; this.functionNameForDDL(); } } @@ -7020,9 +7021,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1947; + this.state = 1945; this.match(HiveSqlParser.KW_RELOAD); - this.state = 1948; + this.state = 1946; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 142)) { this.errorHandler.recoverInline(this); @@ -7054,29 +7055,29 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1950; + this.state = 1948; this.match(HiveSqlParser.KW_CREATE); - this.state = 1951; + this.state = 1949; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1952; + this.state = 1950; this.match(HiveSqlParser.KW_MACRO); - this.state = 1953; + this.state = 1951; this.match(HiveSqlParser.Identifier); - this.state = 1954; + this.state = 1952; this.match(HiveSqlParser.LPAREN); - this.state = 1956; + this.state = 1954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3723969527) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 2255187435) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 929578221) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4039901127) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3755917179) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 3402225181) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 4238323319) !== 0) || _la === 393 || _la === 431) { { - this.state = 1955; + this.state = 1953; this.columnNameTypeList(); } } - this.state = 1958; + this.state = 1956; this.match(HiveSqlParser.RPAREN); - this.state = 1959; + this.state = 1957; this.expression(); } } @@ -7101,23 +7102,23 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1961; + this.state = 1959; this.match(HiveSqlParser.KW_DROP); - this.state = 1962; + this.state = 1960; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1963; + this.state = 1961; this.match(HiveSqlParser.KW_MACRO); - this.state = 1965; + this.state = 1963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1964; + this.state = 1962; this.ifExists(); } } - this.state = 1967; + this.state = 1965; this.match(HiveSqlParser.Identifier); } } @@ -7142,126 +7143,126 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1969; + this.state = 1967; this.match(HiveSqlParser.KW_CREATE); - this.state = 1970; + this.state = 1968; this.match(HiveSqlParser.KW_INDEX); - this.state = 1971; + this.state = 1969; this.id_(); - this.state = 1972; + this.state = 1970; this.match(HiveSqlParser.KW_ON); - this.state = 1973; + this.state = 1971; this.match(HiveSqlParser.KW_TABLE); - this.state = 1974; + this.state = 1972; this.tableName(); - this.state = 1975; + this.state = 1973; this.columnParenthesesList(); - this.state = 1976; + this.state = 1974; this.match(HiveSqlParser.KW_AS); - this.state = 1977; + this.state = 1975; localContext._indextype = this.match(HiveSqlParser.StringLiteral); - this.state = 1981; + this.state = 1979; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1978; + this.state = 1976; this.match(HiveSqlParser.KW_WITH); - this.state = 1979; + this.state = 1977; this.match(HiveSqlParser.KW_DEFERRED); - this.state = 1980; + this.state = 1978; this.match(HiveSqlParser.KW_REBUILD); } break; } - this.state = 1985; + this.state = 1983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1983; + this.state = 1981; this.match(HiveSqlParser.KW_IDXPROPERTIES); - this.state = 1984; + this.state = 1982; this.tableProperties(); } } - this.state = 1990; + this.state = 1988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1987; + this.state = 1985; this.match(HiveSqlParser.KW_IN); - this.state = 1988; + this.state = 1986; this.match(HiveSqlParser.KW_TABLE); - this.state = 1989; + this.state = 1987; this.tableName(); } } - this.state = 1995; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1992; + this.state = 1990; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1993; + this.state = 1991; this.match(HiveSqlParser.KW_BY); - this.state = 1994; + this.state = 1992; this.columnParenthesesList(); } } - this.state = 2001; + this.state = 1999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290 || _la === 320) { { - this.state = 1998; + this.state = 1996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1997; + this.state = 1995; this.tableRowFormat(); } } - this.state = 2000; + this.state = 1998; this.tableFileFormat(); } } - this.state = 2005; + this.state = 2003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2003; + this.state = 2001; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2004; + this.state = 2002; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } - this.state = 2008; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 2007; + this.state = 2005; this.tablePropertiesPrefixed(); } } - this.state = 2011; + this.state = 2009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2010; + this.state = 2008; this.tableComment(); } } @@ -7289,25 +7290,25 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2013; + this.state = 2011; this.match(HiveSqlParser.KW_DROP); - this.state = 2014; + this.state = 2012; this.match(HiveSqlParser.KW_INDEX); - this.state = 2016; + this.state = 2014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2015; + this.state = 2013; this.ifExists(); } } - this.state = 2018; + this.state = 2016; this.id_(); - this.state = 2019; + this.state = 2017; this.match(HiveSqlParser.KW_ON); - this.state = 2020; + this.state = 2018; this.tableName(); } } @@ -7332,79 +7333,79 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2022; + this.state = 2020; this.match(HiveSqlParser.KW_CREATE); - this.state = 2024; + this.state = 2022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 227) { { - this.state = 2023; + this.state = 2021; this.orReplace(); } } - this.state = 2026; + this.state = 2024; this.match(HiveSqlParser.KW_VIEW); - this.state = 2028; + this.state = 2026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2027; + this.state = 2025; this.ifNotExists(); } } - this.state = 2030; + this.state = 2028; localContext._name = this.viewNameCreate(); - this.state = 2035; + this.state = 2033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 398) { { - this.state = 2031; + this.state = 2029; this.match(HiveSqlParser.LPAREN); - this.state = 2032; + this.state = 2030; this.columnNameCommentList(); - this.state = 2033; + this.state = 2031; this.match(HiveSqlParser.RPAREN); } } - this.state = 2038; + this.state = 2036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2037; + this.state = 2035; this.tableComment(); } } - this.state = 2041; + this.state = 2039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 2040; + this.state = 2038; this.viewPartition(); } } - this.state = 2044; + this.state = 2042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 2043; + this.state = 2041; this.tablePropertiesPrefixed(); } } - this.state = 2046; + this.state = 2044; this.match(HiveSqlParser.KW_AS); - this.state = 2047; + this.state = 2045; this.selectStatementWithCTE(); } } @@ -7428,35 +7429,35 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2049; + this.state = 2047; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 2050; + this.state = 2048; this.match(HiveSqlParser.KW_ON); - this.state = 2056; + this.state = 2054; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 2051; + this.state = 2049; this.match(HiveSqlParser.LPAREN); - this.state = 2052; + this.state = 2050; this.columnNameList(); } break; case HiveSqlParser.KW_SPEC: { - this.state = 2053; + this.state = 2051; this.match(HiveSqlParser.KW_SPEC); - this.state = 2054; + this.state = 2052; this.match(HiveSqlParser.LPAREN); - this.state = 2055; + this.state = 2053; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2058; + this.state = 2056; this.match(HiveSqlParser.RPAREN); } } @@ -7478,20 +7479,20 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new ViewOrganizationContext(this.context, this.state); this.enterRule(localContext, 186, HiveSqlParser.RULE_viewOrganization); try { - this.state = 2062; + this.state = 2060; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 1); { - this.state = 2060; + this.state = 2058; this.viewClusterSpec(); } break; case HiveSqlParser.KW_DISTRIBUTED: this.enterOuterAlt(localContext, 2); { - this.state = 2061; + this.state = 2059; this.viewComplexSpec(); } break; @@ -7519,15 +7520,15 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2064; + this.state = 2062; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2065; + this.state = 2063; this.match(HiveSqlParser.KW_ON); - this.state = 2066; + this.state = 2064; this.match(HiveSqlParser.LPAREN); - this.state = 2067; + this.state = 2065; this.columnNameList(); - this.state = 2068; + this.state = 2066; this.match(HiveSqlParser.RPAREN); } } @@ -7551,9 +7552,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2070; + this.state = 2068; this.viewDistSpec(); - this.state = 2071; + this.state = 2069; this.viewSortSpec(); } } @@ -7577,15 +7578,15 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2073; + this.state = 2071; this.match(HiveSqlParser.KW_DISTRIBUTED); - this.state = 2074; + this.state = 2072; this.match(HiveSqlParser.KW_ON); - this.state = 2075; + this.state = 2073; this.match(HiveSqlParser.LPAREN); - this.state = 2076; + this.state = 2074; localContext._colList = this.columnNameList(); - this.state = 2077; + this.state = 2075; this.match(HiveSqlParser.RPAREN); } } @@ -7609,15 +7610,15 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2079; + this.state = 2077; this.match(HiveSqlParser.KW_SORTED); - this.state = 2080; + this.state = 2078; this.match(HiveSqlParser.KW_ON); - this.state = 2081; + this.state = 2079; this.match(HiveSqlParser.LPAREN); - this.state = 2082; + this.state = 2080; localContext._colList = this.columnNameList(); - this.state = 2083; + this.state = 2081; this.match(HiveSqlParser.RPAREN); } } @@ -7642,21 +7643,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2085; + this.state = 2083; this.match(HiveSqlParser.KW_DROP); - this.state = 2086; + this.state = 2084; this.match(HiveSqlParser.KW_VIEW); - this.state = 2088; + this.state = 2086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2087; + this.state = 2085; this.ifExists(); } } - this.state = 2090; + this.state = 2088; this.viewName(); } } @@ -7681,107 +7682,107 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2092; + this.state = 2090; this.match(HiveSqlParser.KW_CREATE); - this.state = 2093; + this.state = 2091; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 2094; + this.state = 2092; this.match(HiveSqlParser.KW_VIEW); - this.state = 2096; + this.state = 2094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2095; + this.state = 2093; this.ifNotExists(); } } - this.state = 2098; + this.state = 2096; localContext._name = this.viewNameCreate(); - this.state = 2100; + this.state = 2098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94 || _la === 95) { { - this.state = 2099; + this.state = 2097; this.rewriteDisabled(); } } - this.state = 2103; + this.state = 2101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2102; + this.state = 2100; this.tableComment(); } } - this.state = 2106; + this.state = 2104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 2105; + this.state = 2103; this.viewPartition(); } } - this.state = 2109; + this.state = 2107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 98) { { - this.state = 2108; + this.state = 2106; this.viewOrganization(); } } - this.state = 2112; + this.state = 2110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 2111; + this.state = 2109; this.tableRowFormat(); } } - this.state = 2115; + this.state = 2113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 2114; + this.state = 2112; this.tableFileFormat(); } } - this.state = 2118; + this.state = 2116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2117; + this.state = 2115; this.tableLocation(); } } - this.state = 2121; + this.state = 2119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 2120; + this.state = 2118; this.tablePropertiesPrefixed(); } } - this.state = 2123; + this.state = 2121; this.match(HiveSqlParser.KW_AS); - this.state = 2124; + this.state = 2122; this.selectStatementWithCTE(); } } @@ -7806,23 +7807,23 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2126; + this.state = 2124; this.match(HiveSqlParser.KW_DROP); - this.state = 2127; + this.state = 2125; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 2128; + this.state = 2126; this.match(HiveSqlParser.KW_VIEW); - this.state = 2130; + this.state = 2128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2129; + this.state = 2127; this.ifExists(); } } - this.state = 2132; + this.state = 2130; this.viewName(); } } @@ -7847,37 +7848,37 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2134; + this.state = 2132; this.match(HiveSqlParser.KW_CREATE); - this.state = 2135; + this.state = 2133; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 2136; + this.state = 2134; this.match(HiveSqlParser.KW_QUERY); - this.state = 2137; + this.state = 2135; localContext._name = this.id_(); - this.state = 2138; + this.state = 2136; this.scheduleSpec(); - this.state = 2140; + this.state = 2138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 2139; + this.state = 2137; this.executedAsSpec(); } } - this.state = 2143; + this.state = 2141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 12291) !== 0)) { { - this.state = 2142; + this.state = 2140; this.enableSpecification(); } } - this.state = 2145; + this.state = 2143; this.definedAsSpec(); } } @@ -7901,13 +7902,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2147; + this.state = 2145; this.match(HiveSqlParser.KW_DROP); - this.state = 2148; + this.state = 2146; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 2149; + this.state = 2147; this.match(HiveSqlParser.KW_QUERY); - this.state = 2150; + this.state = 2148; localContext._name = this.id_(); } } @@ -7931,15 +7932,15 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2152; + this.state = 2150; this.match(HiveSqlParser.KW_ALTER); - this.state = 2153; + this.state = 2151; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 2154; + this.state = 2152; this.match(HiveSqlParser.KW_QUERY); - this.state = 2155; + this.state = 2153; localContext._name = this.id_(); - this.state = 2156; + this.state = 2154; localContext._mod = this.alterScheduledQueryChange(); } } @@ -7961,21 +7962,21 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new AlterScheduledQueryChangeContext(this.context, this.state); this.enterRule(localContext, 208, HiveSqlParser.RULE_alterScheduledQueryChange); try { - this.state = 2163; + this.state = 2161; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 1); { - this.state = 2158; + this.state = 2156; this.scheduleSpec(); } break; case HiveSqlParser.KW_EXECUTED: this.enterOuterAlt(localContext, 2); { - this.state = 2159; + this.state = 2157; this.executedAsSpec(); } break; @@ -7985,7 +7986,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 3); { - this.state = 2160; + this.state = 2158; this.enableSpecification(); } break; @@ -7993,14 +7994,14 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_DEFINED: this.enterOuterAlt(localContext, 4); { - this.state = 2161; + this.state = 2159; this.definedAsSpec(); } break; case HiveSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 5); { - this.state = 2162; + this.state = 2160; this.match(HiveSqlParser.KW_EXECUTE); } break; @@ -8027,61 +8028,61 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 210, HiveSqlParser.RULE_scheduleSpec); let _la: number; try { - this.state = 2180; + this.state = 2178; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2163; this.match(HiveSqlParser.KW_CRON); - this.state = 2166; + this.state = 2164; localContext._cronString = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 2); { - this.state = 2167; + this.state = 2165; this.match(HiveSqlParser.KW_EVERY); - this.state = 2169; + this.state = 2167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 430) { { - this.state = 2168; + this.state = 2166; localContext._value = this.match(HiveSqlParser.Number); } } - this.state = 2171; + this.state = 2169; localContext._qualifier = this.intervalQualifiers(); - this.state = 2178; + this.state = 2176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 222) { { - this.state = 2175; + this.state = 2173; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_AT: { - this.state = 2172; + this.state = 2170; this.match(HiveSqlParser.KW_AT); } break; case HiveSqlParser.KW_OFFSET: { - this.state = 2173; + this.state = 2171; this.match(HiveSqlParser.KW_OFFSET); - this.state = 2174; + this.state = 2172; this.match(HiveSqlParser.KW_BY); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2177; + this.state = 2175; localContext._offsetTs = this.match(HiveSqlParser.StringLiteral); } } @@ -8112,11 +8113,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2182; + this.state = 2180; this.match(HiveSqlParser.KW_EXECUTED); - this.state = 2183; + this.state = 2181; this.match(HiveSqlParser.KW_AS); - this.state = 2184; + this.state = 2182; localContext._executedAs = this.match(HiveSqlParser.StringLiteral); } } @@ -8141,19 +8142,19 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2187; + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 2186; + this.state = 2184; this.match(HiveSqlParser.KW_DEFINED); } } - this.state = 2189; + this.state = 2187; this.match(HiveSqlParser.KW_AS); - this.state = 2190; + this.state = 2188; this.statement(); } } @@ -8175,7 +8176,7 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new ShowStmtIdentifierContext(this.context, this.state); this.enterRule(localContext, 216, HiveSqlParser.RULE_showStmtIdentifier); try { - this.state = 2194; + this.state = 2192; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -8419,14 +8420,14 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 2192; + this.state = 2190; this.id_(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 2193; + this.state = 2191; this.match(HiveSqlParser.StringLiteral); } break; @@ -8454,9 +8455,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2196; + this.state = 2194; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2197; + this.state = 2195; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -8480,29 +8481,29 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2199; + this.state = 2197; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 2200; + this.state = 2198; this.match(HiveSqlParser.KW_BY); - this.state = 2209; + this.state = 2207; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 2201; + this.state = 2199; this.match(HiveSqlParser.LPAREN); - this.state = 2204; + this.state = 2202; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 2202; + this.state = 2200; localContext._opt1 = this.createTablePartitionColumnTypeSpec(); } break; case 2: { - this.state = 2203; + this.state = 2201; localContext._opt2 = this.createTablePartitionColumnSpec(); } break; @@ -8511,18 +8512,18 @@ export class HiveSqlParser extends antlr.Parser { break; case HiveSqlParser.KW_SPEC: { - this.state = 2206; + this.state = 2204; this.match(HiveSqlParser.KW_SPEC); - this.state = 2207; + this.state = 2205; this.match(HiveSqlParser.LPAREN); - this.state = 2208; + this.state = 2206; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2211; + this.state = 2209; this.match(HiveSqlParser.RPAREN); } } @@ -8547,21 +8548,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2213; + this.state = 2211; this.columnNameTypeConstraint(); - this.state = 2218; + this.state = 2216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2214; + this.state = 2212; this.match(HiveSqlParser.COMMA); - this.state = 2215; + this.state = 2213; this.columnNameTypeConstraint(); } } - this.state = 2220; + this.state = 2218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8588,21 +8589,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2221; + this.state = 2219; this.columnName(); - this.state = 2226; + this.state = 2224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2222; + this.state = 2220; this.match(HiveSqlParser.COMMA); - this.state = 2223; + this.state = 2221; this.columnName(); } } - this.state = 2228; + this.state = 2226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8629,21 +8630,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2229; + this.state = 2227; this.columnNameTransformConstraint(); - this.state = 2234; + this.state = 2232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2230; + this.state = 2228; this.match(HiveSqlParser.COMMA); - this.state = 2231; + this.state = 2229; this.columnNameTransformConstraint(); } } - this.state = 2236; + this.state = 2234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8669,7 +8670,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2237; + this.state = 2235; this.partitionTransformType(); } } @@ -8692,65 +8693,65 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 230, HiveSqlParser.RULE_partitionTransformType); let _la: number; try { - this.state = 2257; + this.state = 2255; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2239; + this.state = 2237; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2244; + this.state = 2242; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: { - this.state = 2240; + this.state = 2238; this.year(); } break; case HiveSqlParser.KW_MONTH: case HiveSqlParser.KW_MONTHS: { - this.state = 2241; + this.state = 2239; this.month(); } break; case HiveSqlParser.KW_DAY: case HiveSqlParser.KW_DAYS: { - this.state = 2242; + this.state = 2240; this.day(); } break; case HiveSqlParser.KW_HOUR: case HiveSqlParser.KW_HOURS: { - this.state = 2243; + this.state = 2241; this.hour(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2246; + this.state = 2244; this.match(HiveSqlParser.LPAREN); - this.state = 2247; + this.state = 2245; this.columnName(); - this.state = 2248; + this.state = 2246; this.match(HiveSqlParser.RPAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2250; + this.state = 2248; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 350)) { this.errorHandler.recoverInline(this); @@ -8759,15 +8760,15 @@ export class HiveSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2251; + this.state = 2249; this.match(HiveSqlParser.LPAREN); - this.state = 2252; + this.state = 2250; localContext._value = this.match(HiveSqlParser.Number); - this.state = 2253; + this.state = 2251; this.match(HiveSqlParser.COMMA); - this.state = 2254; + this.state = 2252; this.columnName(); - this.state = 2255; + this.state = 2253; this.match(HiveSqlParser.RPAREN); } break; @@ -8794,39 +8795,39 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2259; + this.state = 2257; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2260; + this.state = 2258; this.match(HiveSqlParser.KW_BY); - this.state = 2261; + this.state = 2259; this.match(HiveSqlParser.LPAREN); - this.state = 2262; + this.state = 2260; localContext._bucketCols = this.columnNameList(); - this.state = 2263; + this.state = 2261; this.match(HiveSqlParser.RPAREN); - this.state = 2270; + this.state = 2268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2264; + this.state = 2262; this.match(HiveSqlParser.KW_SORTED); - this.state = 2265; + this.state = 2263; this.match(HiveSqlParser.KW_BY); - this.state = 2266; + this.state = 2264; this.match(HiveSqlParser.LPAREN); - this.state = 2267; + this.state = 2265; localContext._sortCols = this.columnNameOrderList(); - this.state = 2268; + this.state = 2266; this.match(HiveSqlParser.RPAREN); } } - this.state = 2272; + this.state = 2270; this.match(HiveSqlParser.KW_INTO); - this.state = 2273; + this.state = 2271; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2274; + this.state = 2272; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -8850,13 +8851,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2276; + this.state = 2274; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2277; + this.state = 2275; this.match(HiveSqlParser.KW_INTO); - this.state = 2278; + this.state = 2276; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2279; + this.state = 2277; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -8880,30 +8881,30 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2281; + this.state = 2279; this.match(HiveSqlParser.KW_SKEWED); - this.state = 2282; + this.state = 2280; this.match(HiveSqlParser.KW_BY); - this.state = 2283; + this.state = 2281; this.match(HiveSqlParser.LPAREN); - this.state = 2284; + this.state = 2282; localContext._skewedCols = this.columnNameList(); - this.state = 2285; + this.state = 2283; this.match(HiveSqlParser.RPAREN); - this.state = 2286; + this.state = 2284; this.match(HiveSqlParser.KW_ON); - this.state = 2287; + this.state = 2285; this.match(HiveSqlParser.LPAREN); - this.state = 2288; + this.state = 2286; localContext._skewedValues = this.skewedValueElement(); - this.state = 2289; + this.state = 2287; this.match(HiveSqlParser.RPAREN); - this.state = 2291; + this.state = 2289; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 2290; + this.state = 2288; this.storedAsDirs(); } break; @@ -8928,20 +8929,20 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new RowFormatContext(this.context, this.state); this.enterRule(localContext, 238, HiveSqlParser.RULE_rowFormat); try { - this.state = 2295; + this.state = 2293; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2293; + this.state = 2291; this.rowFormatSerde(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2294; + this.state = 2292; this.rowFormatDelimited(); } break; @@ -8967,9 +8968,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2297; + this.state = 2295; this.match(HiveSqlParser.KW_RECORDREADER); - this.state = 2298; + this.state = 2296; this.match(HiveSqlParser.StringLiteral); } } @@ -8993,9 +8994,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2300; + this.state = 2298; this.match(HiveSqlParser.KW_RECORDWRITER); - this.state = 2301; + this.state = 2299; this.match(HiveSqlParser.StringLiteral); } } @@ -9019,24 +9020,24 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2303; + this.state = 2301; this.match(HiveSqlParser.KW_ROW); - this.state = 2304; + this.state = 2302; this.match(HiveSqlParser.KW_FORMAT); - this.state = 2305; + this.state = 2303; this.match(HiveSqlParser.KW_SERDE); - this.state = 2306; + this.state = 2304; localContext._name = this.match(HiveSqlParser.StringLiteral); - this.state = 2310; + this.state = 2308; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 2307; + this.state = 2305; this.match(HiveSqlParser.KW_WITH); - this.state = 2308; + this.state = 2306; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2309; + this.state = 2307; localContext._serdeprops = this.tableProperties(); } break; @@ -9064,58 +9065,58 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2312; + this.state = 2310; this.match(HiveSqlParser.KW_ROW); - this.state = 2313; + this.state = 2311; this.match(HiveSqlParser.KW_FORMAT); - this.state = 2314; + this.state = 2312; this.match(HiveSqlParser.KW_DELIMITED); - this.state = 2316; + this.state = 2314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 2315; + this.state = 2313; this.tableRowFormatFieldIdentifier(); } } - this.state = 2319; + this.state = 2317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 2318; + this.state = 2316; this.tableRowFormatCollItemsIdentifier(); } } - this.state = 2322; + this.state = 2320; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 2321; + this.state = 2319; this.tableRowFormatMapKeysIdentifier(); } break; } - this.state = 2325; + this.state = 2323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2324; + this.state = 2322; this.tableRowFormatLinesIdentifier(); } } - this.state = 2328; + this.state = 2326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 218) { { - this.state = 2327; + this.state = 2325; this.tableRowNullFormat(); } } @@ -9140,20 +9141,20 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new TableRowFormatContext(this.context, this.state); this.enterRule(localContext, 248, HiveSqlParser.RULE_tableRowFormat); try { - this.state = 2332; + this.state = 2330; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2330; + this.state = 2328; this.rowFormatDelimited(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2331; + this.state = 2329; this.rowFormatSerde(); } break; @@ -9179,9 +9180,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2334; + this.state = 2332; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2335; + this.state = 2333; this.tableProperties(); } } @@ -9205,11 +9206,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2337; + this.state = 2335; this.match(HiveSqlParser.LPAREN); - this.state = 2338; + this.state = 2336; this.tablePropertiesList(); - this.state = 2339; + this.state = 2337; this.match(HiveSqlParser.RPAREN); } } @@ -9232,27 +9233,27 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 254, HiveSqlParser.RULE_tablePropertiesList); let _la: number; try { - this.state = 2357; + this.state = 2355; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2341; + this.state = 2339; this.keyValueProperty(); - this.state = 2346; + this.state = 2344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2342; + this.state = 2340; this.match(HiveSqlParser.COMMA); - this.state = 2343; + this.state = 2341; this.keyValueProperty(); } } - this.state = 2348; + this.state = 2346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9261,21 +9262,21 @@ export class HiveSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2349; + this.state = 2347; this.keyProperty(); - this.state = 2354; + this.state = 2352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2350; + this.state = 2348; this.match(HiveSqlParser.COMMA); - this.state = 2351; + this.state = 2349; this.keyProperty(); } } - this.state = 2356; + this.state = 2354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9303,11 +9304,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2359; + this.state = 2357; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2360; + this.state = 2358; this.match(HiveSqlParser.EQUAL); - this.state = 2361; + this.state = 2359; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -9331,7 +9332,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2363; + this.state = 2361; localContext._key = this.match(HiveSqlParser.StringLiteral); } } @@ -9356,24 +9357,24 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2365; + this.state = 2363; this.match(HiveSqlParser.KW_FIELDS); - this.state = 2366; + this.state = 2364; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2367; + this.state = 2365; this.match(HiveSqlParser.KW_BY); - this.state = 2368; + this.state = 2366; localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); - this.state = 2372; + this.state = 2370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 2369; + this.state = 2367; this.match(HiveSqlParser.KW_ESCAPED); - this.state = 2370; + this.state = 2368; this.match(HiveSqlParser.KW_BY); - this.state = 2371; + this.state = 2369; localContext._fldEscape = this.match(HiveSqlParser.StringLiteral); } } @@ -9400,15 +9401,15 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2374; + this.state = 2372; this.match(HiveSqlParser.KW_COLLECTION); - this.state = 2375; + this.state = 2373; this.match(HiveSqlParser.KW_ITEMS); - this.state = 2376; + this.state = 2374; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2377; + this.state = 2375; this.match(HiveSqlParser.KW_BY); - this.state = 2378; + this.state = 2376; localContext._collIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9432,15 +9433,15 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2380; + this.state = 2378; this.match(HiveSqlParser.KW_MAP); - this.state = 2381; + this.state = 2379; this.match(HiveSqlParser.KW_KEYS); - this.state = 2382; + this.state = 2380; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2383; + this.state = 2381; this.match(HiveSqlParser.KW_BY); - this.state = 2384; + this.state = 2382; localContext._mapKeysIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9464,13 +9465,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2386; + this.state = 2384; this.match(HiveSqlParser.KW_LINES); - this.state = 2387; + this.state = 2385; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2388; + this.state = 2386; this.match(HiveSqlParser.KW_BY); - this.state = 2389; + this.state = 2387; localContext._linesIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9494,13 +9495,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2391; + this.state = 2389; this.match(HiveSqlParser.KW_NULL); - this.state = 2392; + this.state = 2390; this.match(HiveSqlParser.KW_DEFINED); - this.state = 2393; + this.state = 2391; this.match(HiveSqlParser.KW_AS); - this.state = 2394; + this.state = 2392; localContext._nullIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9523,36 +9524,36 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 270, HiveSqlParser.RULE_tableFileFormat); let _la: number; try { - this.state = 2437; + this.state = 2435; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 204, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2396; + this.state = 2394; this.match(HiveSqlParser.KW_STORED); - this.state = 2397; + this.state = 2395; this.match(HiveSqlParser.KW_AS); - this.state = 2398; + this.state = 2396; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 2399; + this.state = 2397; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2400; + this.state = 2398; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 2401; + this.state = 2399; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2406; + this.state = 2404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 2402; + this.state = 2400; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 2403; + this.state = 2401; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 2404; + this.state = 2402; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 2405; + this.state = 2403; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -9562,36 +9563,36 @@ export class HiveSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2408; + this.state = 2406; this.match(HiveSqlParser.KW_STORED); - this.state = 2409; + this.state = 2407; this.match(HiveSqlParser.KW_BY); - this.state = 2410; + this.state = 2408; localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); - this.state = 2414; + this.state = 2412; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: { - this.state = 2411; + this.state = 2409; this.match(HiveSqlParser.KW_WITH); - this.state = 2412; + this.state = 2410; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2413; + this.state = 2411; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2419; + this.state = 2417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 2416; + this.state = 2414; this.match(HiveSqlParser.KW_STORED); - this.state = 2417; + this.state = 2415; this.match(HiveSqlParser.KW_AS); - this.state = 2418; + this.state = 2416; localContext._fileformat = this.id_(); } } @@ -9601,36 +9602,36 @@ export class HiveSqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2421; + this.state = 2419; this.match(HiveSqlParser.KW_STORED); - this.state = 2422; + this.state = 2420; this.match(HiveSqlParser.KW_BY); - this.state = 2423; + this.state = 2421; localContext._genericSpec = this.id_(); - this.state = 2427; + this.state = 2425; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 2424; + this.state = 2422; this.match(HiveSqlParser.KW_WITH); - this.state = 2425; + this.state = 2423; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2426; + this.state = 2424; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2432; + this.state = 2430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 2429; + this.state = 2427; this.match(HiveSqlParser.KW_STORED); - this.state = 2430; + this.state = 2428; this.match(HiveSqlParser.KW_AS); - this.state = 2431; + this.state = 2429; localContext._fileformat = this.id_(); } } @@ -9640,11 +9641,11 @@ export class HiveSqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2434; + this.state = 2432; this.match(HiveSqlParser.KW_STORED); - this.state = 2435; + this.state = 2433; this.match(HiveSqlParser.KW_AS); - this.state = 2436; + this.state = 2434; localContext._genericSpec = this.id_(); } break; @@ -9670,9 +9671,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2439; + this.state = 2437; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2440; + this.state = 2438; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -9697,21 +9698,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2442; + this.state = 2440; this.columnNameType(); - this.state = 2447; + this.state = 2445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2443; + this.state = 2441; this.match(HiveSqlParser.COMMA); - this.state = 2444; + this.state = 2442; this.columnNameType(); } } - this.state = 2449; + this.state = 2447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9738,21 +9739,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2450; + this.state = 2448; this.columnNameTypeOrConstraint(); - this.state = 2455; + this.state = 2453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2451; + this.state = 2449; this.match(HiveSqlParser.COMMA); - this.state = 2452; + this.state = 2450; this.columnNameTypeOrConstraint(); } } - this.state = 2457; + this.state = 2455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9779,21 +9780,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2458; + this.state = 2456; this.columnNameColonType(); - this.state = 2463; + this.state = 2461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2459; + this.state = 2457; this.match(HiveSqlParser.COMMA); - this.state = 2460; + this.state = 2458; this.columnNameColonType(); } } - this.state = 2465; + this.state = 2463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9820,21 +9821,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2466; + this.state = 2464; this.columnName(); - this.state = 2471; + this.state = 2469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2467; + this.state = 2465; this.match(HiveSqlParser.COMMA); - this.state = 2468; + this.state = 2466; this.columnName(); } } - this.state = 2473; + this.state = 2471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9859,28 +9860,43 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 282, HiveSqlParser.RULE_columnName); try { let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 2474; - this.id_(); - this.state = 2479; + this.state = 2481; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 2475; - this.match(HiveSqlParser.DOT); - this.state = 2476; - this.id_(); - } - } - } - this.state = 2481; + switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2472; + this.id_(); + this.state = 2477; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); - } + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2473; + this.match(HiveSqlParser.DOT); + this.state = 2474; + this.id_(); + } + } + } + this.state = 2479; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); + } + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2480; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + } + break; } } catch (re) { @@ -9903,7 +9919,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2482; + this.state = 2483; this.id_(); } } @@ -9928,47 +9944,47 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2484; + this.state = 2485; this.columnName(); - this.state = 2494; + this.state = 2495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 394) { { { - this.state = 2485; + this.state = 2486; this.match(HiveSqlParser.DOT); - this.state = 2490; + this.state = 2491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 2486; + this.state = 2487; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 2487; + this.state = 2488; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 2488; + this.state = 2489; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 2489; + this.state = 2490; this.id_(); } break; } } } - this.state = 2496; + this.state = 2497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9995,21 +10011,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2497; + this.state = 2498; this.columnNameOrder(); - this.state = 2502; + this.state = 2503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2498; - this.match(HiveSqlParser.COMMA); this.state = 2499; + this.match(HiveSqlParser.COMMA); + this.state = 2500; this.columnNameOrder(); } } - this.state = 2504; + this.state = 2505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10035,11 +10051,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2505; - this.match(HiveSqlParser.LPAREN); this.state = 2506; - this.columnNameList(); + this.match(HiveSqlParser.LPAREN); this.state = 2507; + this.columnNameList(); + this.state = 2508; this.match(HiveSqlParser.RPAREN); } } @@ -10062,7 +10078,7 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 292, HiveSqlParser.RULE_enableValidateSpecification); let _la: number; try { - this.state = 2514; + this.state = 2515; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -10071,14 +10087,14 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2509; + this.state = 2510; this.enableSpecification(); - this.state = 2511; + this.state = 2512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216 || _la === 372) { { - this.state = 2510; + this.state = 2511; this.validateSpecification(); } } @@ -10089,7 +10105,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2513; + this.state = 2514; this.enforcedSpecification(); } break; @@ -10115,14 +10131,14 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new EnableSpecificationContext(this.context, this.state); this.enterRule(localContext, 294, HiveSqlParser.RULE_enableSpecification); try { - this.state = 2518; + this.state = 2519; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2516; + this.state = 2517; this.enable(); } break; @@ -10130,7 +10146,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 2517; + this.state = 2518; this.disable(); } break; @@ -10159,7 +10175,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2520; + this.state = 2521; _la = this.tokenStream.LA(1); if(!(_la === 216 || _la === 372)) { this.errorHandler.recoverInline(this); @@ -10188,22 +10204,22 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new EnforcedSpecificationContext(this.context, this.state); this.enterRule(localContext, 298, HiveSqlParser.RULE_enforcedSpecification); try { - this.state = 2525; + this.state = 2526; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENFORCED: this.enterOuterAlt(localContext, 1); { - this.state = 2522; + this.state = 2523; this.match(HiveSqlParser.KW_ENFORCED); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2523; - this.match(HiveSqlParser.KW_NOT); this.state = 2524; + this.match(HiveSqlParser.KW_NOT); + this.state = 2525; this.match(HiveSqlParser.KW_ENFORCED); } break; @@ -10232,7 +10248,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2527; + this.state = 2528; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 271)) { this.errorHandler.recoverInline(this); @@ -10264,26 +10280,26 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2531; + this.state = 2532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2529; - this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2530; + this.match(HiveSqlParser.KW_CONSTRAINT); + this.state = 2531; localContext._constraintName = this.id_(); } } - this.state = 2533; + this.state = 2534; this.tableLevelConstraint(); - this.state = 2535; + this.state = 2536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 215) { { - this.state = 2534; + this.state = 2535; this.constraintOptsCreate(); } } @@ -10310,18 +10326,18 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2537; - this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2538; - localContext._constraintName = this.id_(); + this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2539; + localContext._constraintName = this.id_(); + this.state = 2540; this.tableLevelConstraint(); - this.state = 2541; + this.state = 2542; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 2540; + this.state = 2541; this.constraintOptsAlter(); } break; @@ -10346,21 +10362,21 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new TableLevelConstraintContext(this.context, this.state); this.enterRule(localContext, 306, HiveSqlParser.RULE_tableLevelConstraint); try { - this.state = 2545; + this.state = 2546; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 1); { - this.state = 2543; + this.state = 2544; this.pkUkConstraint(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 2544; + this.state = 2545; this.checkConstraint(); } break; @@ -10388,9 +10404,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2547; - this.tableConstraintType(); this.state = 2548; + this.tableConstraintType(); + this.state = 2549; localContext._pkCols = this.columnParenthesesList(); } } @@ -10414,13 +10430,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2550; - this.match(HiveSqlParser.KW_CHECK); this.state = 2551; - this.match(HiveSqlParser.LPAREN); + this.match(HiveSqlParser.KW_CHECK); this.state = 2552; - this.expression(); + this.match(HiveSqlParser.LPAREN); this.state = 2553; + this.expression(); + this.state = 2554; this.match(HiveSqlParser.RPAREN); } } @@ -10445,36 +10461,36 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2557; + this.state = 2558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2555; - this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2556; + this.match(HiveSqlParser.KW_CONSTRAINT); + this.state = 2557; localContext._constraintName = this.id_(); } } - this.state = 2559; - this.match(HiveSqlParser.KW_FOREIGN); this.state = 2560; - this.match(HiveSqlParser.KW_KEY); + this.match(HiveSqlParser.KW_FOREIGN); this.state = 2561; - localContext._fkCols = this.columnParenthesesList(); + this.match(HiveSqlParser.KW_KEY); this.state = 2562; - this.match(HiveSqlParser.KW_REFERENCES); + localContext._fkCols = this.columnParenthesesList(); this.state = 2563; - localContext._tabName = this.tableName(); + this.match(HiveSqlParser.KW_REFERENCES); this.state = 2564; + localContext._tabName = this.tableName(); + this.state = 2565; localContext._parCols = this.columnParenthesesList(); - this.state = 2566; + this.state = 2567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 215) { { - this.state = 2565; + this.state = 2566; this.constraintOptsCreate(); } } @@ -10501,28 +10517,28 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2568; - this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2569; - localContext._constraintName = this.id_(); + this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2570; - this.match(HiveSqlParser.KW_FOREIGN); + localContext._constraintName = this.id_(); this.state = 2571; - this.match(HiveSqlParser.KW_KEY); + this.match(HiveSqlParser.KW_FOREIGN); this.state = 2572; - localContext._fkCols = this.columnParenthesesList(); + this.match(HiveSqlParser.KW_KEY); this.state = 2573; - this.match(HiveSqlParser.KW_REFERENCES); + localContext._fkCols = this.columnParenthesesList(); this.state = 2574; - localContext._tabName = this.tableName(); + this.match(HiveSqlParser.KW_REFERENCES); this.state = 2575; + localContext._tabName = this.tableName(); + this.state = 2576; localContext._parCols = this.columnParenthesesList(); - this.state = 2577; + this.state = 2578; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 2576; + this.state = 2577; this.constraintOptsAlter(); } break; @@ -10547,7 +10563,7 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new SkewedValueElementContext(this.context, this.state); this.enterRule(localContext, 316, HiveSqlParser.RULE_skewedValueElement); try { - this.state = 2581; + this.state = 2582; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT_DATE: @@ -10566,14 +10582,14 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2579; + this.state = 2580; this.skewedColumnValues(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2580; + this.state = 2581; this.skewedColumnValuePairList(); } break; @@ -10602,21 +10618,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2583; + this.state = 2584; this.skewedColumnValuePair(); - this.state = 2588; + this.state = 2589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2584; - this.match(HiveSqlParser.COMMA); this.state = 2585; + this.match(HiveSqlParser.COMMA); + this.state = 2586; this.skewedColumnValuePair(); } } - this.state = 2590; + this.state = 2591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10642,11 +10658,11 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2591; - this.match(HiveSqlParser.LPAREN); this.state = 2592; - localContext._colValues = this.skewedColumnValues(); + this.match(HiveSqlParser.LPAREN); this.state = 2593; + localContext._colValues = this.skewedColumnValues(); + this.state = 2594; this.match(HiveSqlParser.RPAREN); } } @@ -10671,21 +10687,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2595; + this.state = 2596; this.skewedColumnValue(); - this.state = 2600; + this.state = 2601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2596; - this.match(HiveSqlParser.COMMA); this.state = 2597; + this.match(HiveSqlParser.COMMA); + this.state = 2598; this.skewedColumnValue(); } } - this.state = 2602; + this.state = 2603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10711,7 +10727,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2603; + this.state = 2604; this.constant(); } } @@ -10733,7 +10749,7 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new SkewedValueLocationElementContext(this.context, this.state); this.enterRule(localContext, 326, HiveSqlParser.RULE_skewedValueLocationElement); try { - this.state = 2607; + this.state = 2608; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT_DATE: @@ -10752,14 +10768,14 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2605; + this.state = 2606; this.skewedColumnValue(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2606; + this.state = 2607; this.skewedColumnValuePair(); } break; @@ -10788,7 +10804,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2609; + this.state = 2610; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -10820,9 +10836,9 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2611; - this.match(HiveSqlParser.KW_NULLS); this.state = 2612; + this.match(HiveSqlParser.KW_NULLS); + this.state = 2613; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 177)) { this.errorHandler.recoverInline(this); @@ -10854,24 +10870,24 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2614; + this.state = 2615; this.columnName(); - this.state = 2616; + this.state = 2617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18 || _la === 89) { { - this.state = 2615; + this.state = 2616; localContext._orderSpec = this.orderSpecification(); } } - this.state = 2619; + this.state = 2620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 219) { { - this.state = 2618; + this.state = 2619; localContext._nullSpec = this.nullOrdering(); } } @@ -10899,21 +10915,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2621; + this.state = 2622; this.columnNameComment(); - this.state = 2626; + this.state = 2627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2622; - this.match(HiveSqlParser.COMMA); this.state = 2623; + this.match(HiveSqlParser.COMMA); + this.state = 2624; this.columnNameComment(); } } - this.state = 2628; + this.state = 2629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10940,16 +10956,16 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2629; + this.state = 2630; localContext._colName = this.columnNameCreate(); - this.state = 2632; + this.state = 2633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2630; - this.match(HiveSqlParser.KW_COMMENT); this.state = 2631; + this.match(HiveSqlParser.KW_COMMENT); + this.state = 2632; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10977,7 +10993,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2634; + this.state = 2635; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -11009,38 +11025,38 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2638; + this.state = 2639; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 2636; + this.state = 2637; this.columnName(); } break; case 2: { - this.state = 2637; + this.state = 2638; this.expression(); } break; } - this.state = 2641; + this.state = 2642; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 2640; + this.state = 2641; localContext._orderSpec = this.orderSpecificationRewrite(); } break; } - this.state = 2644; + this.state = 2645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 219) { { - this.state = 2643; + this.state = 2644; localContext._nullSpec = this.nullOrdering(); } } @@ -11068,18 +11084,18 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2646; - localContext._colName = this.columnNameCreate(); this.state = 2647; + localContext._colName = this.columnNameCreate(); + this.state = 2648; this.colType(); - this.state = 2650; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2648; - this.match(HiveSqlParser.KW_COMMENT); this.state = 2649; + this.match(HiveSqlParser.KW_COMMENT); + this.state = 2650; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11104,20 +11120,20 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new ColumnNameTypeOrConstraintContext(this.context, this.state); this.enterRule(localContext, 344, HiveSqlParser.RULE_columnNameTypeOrConstraint); try { - this.state = 2654; + this.state = 2655; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2652; + this.state = 2653; this.tableConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2653; + this.state = 2654; this.columnNameTypeConstraint(); } break; @@ -11141,20 +11157,20 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new TableConstraintContext(this.context, this.state); this.enterRule(localContext, 346, HiveSqlParser.RULE_tableConstraint); try { - this.state = 2658; + this.state = 2659; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2656; + this.state = 2657; this.createForeignKey(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2657; + this.state = 2658; this.createConstraint(); } break; @@ -11181,28 +11197,28 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2660; - localContext._colName = this.columnNameCreate(); this.state = 2661; + localContext._colName = this.columnNameCreate(); + this.state = 2662; this.colType(); - this.state = 2663; + this.state = 2664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 215 || _la === 250 || _la === 268 || _la === 357) { { - this.state = 2662; + this.state = 2663; this.columnConstraint(); } } - this.state = 2667; + this.state = 2668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2665; - this.match(HiveSqlParser.KW_COMMENT); this.state = 2666; + this.match(HiveSqlParser.KW_COMMENT); + this.state = 2667; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11227,20 +11243,20 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new ColumnConstraintContext(this.context, this.state); this.enterRule(localContext, 350, HiveSqlParser.RULE_columnConstraint); try { - this.state = 2671; + this.state = 2672; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2669; + this.state = 2670; this.foreignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2670; + this.state = 2671; this.colConstraint(); } break; @@ -11267,34 +11283,34 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2675; + this.state = 2676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2673; - this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2674; + this.match(HiveSqlParser.KW_CONSTRAINT); + this.state = 2675; localContext._constraintName = this.id_(); } } - this.state = 2677; - this.match(HiveSqlParser.KW_REFERENCES); this.state = 2678; - localContext._tabName = this.tableName(); + this.match(HiveSqlParser.KW_REFERENCES); this.state = 2679; - this.match(HiveSqlParser.LPAREN); + localContext._tabName = this.tableName(); this.state = 2680; - localContext._colName = this.columnName(); + this.match(HiveSqlParser.LPAREN); this.state = 2681; + localContext._colName = this.columnName(); + this.state = 2682; this.match(HiveSqlParser.RPAREN); - this.state = 2683; + this.state = 2684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 215) { { - this.state = 2682; + this.state = 2683; this.constraintOptsCreate(); } } @@ -11322,26 +11338,26 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2687; + this.state = 2688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2685; - this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2686; + this.match(HiveSqlParser.KW_CONSTRAINT); + this.state = 2687; localContext._constraintName = this.id_(); } } - this.state = 2689; + this.state = 2690; this.columnConstraintType(); - this.state = 2691; + this.state = 2692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 215) { { - this.state = 2690; + this.state = 2691; this.constraintOptsCreate(); } } @@ -11366,20 +11382,20 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new AlterColumnConstraintContext(this.context, this.state); this.enterRule(localContext, 356, HiveSqlParser.RULE_alterColumnConstraint); try { - this.state = 2695; + this.state = 2696; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2693; + this.state = 2694; this.alterForeignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2694; + this.state = 2695; this.alterColConstraint(); } break; @@ -11406,34 +11422,34 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2699; + this.state = 2700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2697; - this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2698; + this.match(HiveSqlParser.KW_CONSTRAINT); + this.state = 2699; localContext._constraintName = this.id_(); } } - this.state = 2701; - this.match(HiveSqlParser.KW_REFERENCES); this.state = 2702; - localContext._tabName = this.tableName(); + this.match(HiveSqlParser.KW_REFERENCES); this.state = 2703; - this.match(HiveSqlParser.LPAREN); + localContext._tabName = this.tableName(); this.state = 2704; - localContext._colName = this.columnName(); + this.match(HiveSqlParser.LPAREN); this.state = 2705; + localContext._colName = this.columnName(); + this.state = 2706; this.match(HiveSqlParser.RPAREN); - this.state = 2707; + this.state = 2708; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2706; + this.state = 2707; this.constraintOptsAlter(); } break; @@ -11461,26 +11477,26 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2711; + this.state = 2712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2709; - this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2710; + this.match(HiveSqlParser.KW_CONSTRAINT); + this.state = 2711; localContext._constraintName = this.id_(); } } - this.state = 2713; + this.state = 2714; this.columnConstraintType(); - this.state = 2715; + this.state = 2716; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2714; + this.state = 2715; this.constraintOptsAlter(); } break; @@ -11505,31 +11521,31 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new ColumnConstraintTypeContext(this.context, this.state); this.enterRule(localContext, 362, HiveSqlParser.RULE_columnConstraintType); try { - this.state = 2723; + this.state = 2724; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 2717; - this.match(HiveSqlParser.KW_NOT); this.state = 2718; + this.match(HiveSqlParser.KW_NOT); + this.state = 2719; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2719; - this.match(HiveSqlParser.KW_DEFAULT); this.state = 2720; + this.match(HiveSqlParser.KW_DEFAULT); + this.state = 2721; this.defaultVal(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 3); { - this.state = 2721; + this.state = 2722; this.checkConstraint(); } break; @@ -11537,7 +11553,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 4); { - this.state = 2722; + this.state = 2723; this.tableConstraintType(); } break; @@ -11563,27 +11579,27 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new DefaultValContext(this.context, this.state); this.enterRule(localContext, 364, HiveSqlParser.RULE_defaultVal); try { - this.state = 2728; + this.state = 2729; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2725; + this.state = 2726; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2726; + this.state = 2727; this.function_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2727; + this.state = 2728; this.castExpression(); } break; @@ -11607,22 +11623,22 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new TableConstraintTypeContext(this.context, this.state); this.enterRule(localContext, 366, HiveSqlParser.RULE_tableConstraintType); try { - this.state = 2733; + this.state = 2734; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 2730; - this.match(HiveSqlParser.KW_PRIMARY); this.state = 2731; + this.match(HiveSqlParser.KW_PRIMARY); + this.state = 2732; this.match(HiveSqlParser.KW_KEY); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2732; + this.state = 2733; this.match(HiveSqlParser.KW_UNIQUE); } break; @@ -11651,14 +11667,14 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2735; + this.state = 2736; this.enableValidateSpecification(); - this.state = 2737; + this.state = 2738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 271) { { - this.state = 2736; + this.state = 2737; this.relySpecification(); } } @@ -11686,14 +11702,14 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2739; + this.state = 2740; this.enableValidateSpecification(); - this.state = 2741; + this.state = 2742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 271) { { - this.state = 2740; + this.state = 2741; this.relySpecification(); } } @@ -11721,20 +11737,20 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2743; - localContext._colName = this.columnNameCreate(); this.state = 2744; - this.match(HiveSqlParser.COLON); + localContext._colName = this.columnNameCreate(); this.state = 2745; + this.match(HiveSqlParser.COLON); + this.state = 2746; this.colType(); - this.state = 2748; + this.state = 2749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2746; - this.match(HiveSqlParser.KW_COMMENT); this.state = 2747; + this.match(HiveSqlParser.KW_COMMENT); + this.state = 2748; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11761,7 +11777,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2750; + this.state = 2751; this.type_(); } } @@ -11786,21 +11802,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2752; + this.state = 2753; this.colType(); - this.state = 2757; + this.state = 2758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2753; - this.match(HiveSqlParser.COMMA); this.state = 2754; + this.match(HiveSqlParser.COMMA); + this.state = 2755; this.colType(); } } - this.state = 2759; + this.state = 2760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11824,7 +11840,7 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new TypeContext(this.context, this.state); this.enterRule(localContext, 378, HiveSqlParser.RULE_type); try { - this.state = 2765; + this.state = 2766; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_BIGINT: @@ -11849,35 +11865,35 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 2760; + this.state = 2761; this.primitiveType(); } break; case HiveSqlParser.KW_ARRAY: this.enterOuterAlt(localContext, 2); { - this.state = 2761; + this.state = 2762; this.listType(); } break; case HiveSqlParser.KW_STRUCT: this.enterOuterAlt(localContext, 3); { - this.state = 2762; + this.state = 2763; this.structType(); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 4); { - this.state = 2763; + this.state = 2764; this.mapType(); } break; case HiveSqlParser.KW_UNIONTYPE: this.enterOuterAlt(localContext, 5); { - this.state = 2764; + this.state = 2765; this.unionType(); } break; @@ -11904,76 +11920,76 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 380, HiveSqlParser.RULE_primitiveType); let _la: number; try { - this.state = 2804; + this.state = 2805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2767; + this.state = 2768; this.match(HiveSqlParser.KW_TINYINT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2768; + this.state = 2769; this.match(HiveSqlParser.KW_SMALLINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2769; + this.state = 2770; this.match(HiveSqlParser.KW_INT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2770; + this.state = 2771; this.match(HiveSqlParser.KW_INTEGER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2771; + this.state = 2772; this.match(HiveSqlParser.KW_BIGINT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2772; + this.state = 2773; this.match(HiveSqlParser.KW_BOOLEAN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2773; + this.state = 2774; this.match(HiveSqlParser.KW_FLOAT); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2774; + this.state = 2775; this.match(HiveSqlParser.KW_REAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2775; + this.state = 2776; this.match(HiveSqlParser.KW_DOUBLE); - this.state = 2777; + this.state = 2778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 247) { { - this.state = 2776; + this.state = 2777; this.match(HiveSqlParser.KW_PRECISION); } } @@ -11983,87 +11999,87 @@ export class HiveSqlParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2779; + this.state = 2780; this.match(HiveSqlParser.KW_DATE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2780; + this.state = 2781; this.match(HiveSqlParser.KW_DATETIME); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2781; + this.state = 2782; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2782; + this.state = 2783; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2783; - this.match(HiveSqlParser.KW_TIMESTAMP); this.state = 2784; - this.match(HiveSqlParser.KW_WITH); + this.match(HiveSqlParser.KW_TIMESTAMP); this.state = 2785; - this.match(HiveSqlParser.KW_LOCAL); + this.match(HiveSqlParser.KW_WITH); this.state = 2786; - this.match(HiveSqlParser.KW_TIME); + this.match(HiveSqlParser.KW_LOCAL); this.state = 2787; + this.match(HiveSqlParser.KW_TIME); + this.state = 2788; this.match(HiveSqlParser.KW_ZONE); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2788; + this.state = 2789; this.match(HiveSqlParser.KW_STRING); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2789; + this.state = 2790; this.match(HiveSqlParser.KW_BINARY); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2790; + this.state = 2791; this.decimal(); - this.state = 2798; + this.state = 2799; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2791; - this.match(HiveSqlParser.LPAREN); this.state = 2792; + this.match(HiveSqlParser.LPAREN); + this.state = 2793; localContext._prec = this.match(HiveSqlParser.Number); - this.state = 2795; + this.state = 2796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 396) { { - this.state = 2793; - this.match(HiveSqlParser.COMMA); this.state = 2794; + this.match(HiveSqlParser.COMMA); + this.state = 2795; localContext._scale = this.match(HiveSqlParser.Number); } } - this.state = 2797; + this.state = 2798; this.match(HiveSqlParser.RPAREN); } break; @@ -12073,7 +12089,7 @@ export class HiveSqlParser extends antlr.Parser { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2800; + this.state = 2801; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -12082,11 +12098,11 @@ export class HiveSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2801; - this.match(HiveSqlParser.LPAREN); this.state = 2802; - localContext._length = this.match(HiveSqlParser.Number); + this.match(HiveSqlParser.LPAREN); this.state = 2803; + localContext._length = this.match(HiveSqlParser.Number); + this.state = 2804; this.match(HiveSqlParser.RPAREN); } break; @@ -12112,13 +12128,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2806; - this.match(HiveSqlParser.KW_ARRAY); this.state = 2807; - this.match(HiveSqlParser.LESSTHAN); + this.match(HiveSqlParser.KW_ARRAY); this.state = 2808; - this.type_(); + this.match(HiveSqlParser.LESSTHAN); this.state = 2809; + this.type_(); + this.state = 2810; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12142,13 +12158,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2811; - this.match(HiveSqlParser.KW_STRUCT); this.state = 2812; - this.match(HiveSqlParser.LESSTHAN); + this.match(HiveSqlParser.KW_STRUCT); this.state = 2813; - this.columnNameColonTypeList(); + this.match(HiveSqlParser.LESSTHAN); this.state = 2814; + this.columnNameColonTypeList(); + this.state = 2815; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12172,17 +12188,17 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2816; - this.match(HiveSqlParser.KW_MAP); this.state = 2817; - this.match(HiveSqlParser.LESSTHAN); + this.match(HiveSqlParser.KW_MAP); this.state = 2818; - localContext._left = this.primitiveType(); + this.match(HiveSqlParser.LESSTHAN); this.state = 2819; - this.match(HiveSqlParser.COMMA); + localContext._left = this.primitiveType(); this.state = 2820; - localContext._right = this.type_(); + this.match(HiveSqlParser.COMMA); this.state = 2821; + localContext._right = this.type_(); + this.state = 2822; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12206,13 +12222,13 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2823; - this.match(HiveSqlParser.KW_UNIONTYPE); this.state = 2824; - this.match(HiveSqlParser.LESSTHAN); + this.match(HiveSqlParser.KW_UNIONTYPE); this.state = 2825; - this.colTypeList(); + this.match(HiveSqlParser.LESSTHAN); this.state = 2826; + this.colTypeList(); + this.state = 2827; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12237,7 +12253,7 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2828; + this.state = 2829; _la = this.tokenStream.LA(1); if(!(_la === 112 || _la === 164 || _la === 204 || _la === 355)) { this.errorHandler.recoverInline(this); @@ -12246,12 +12262,12 @@ export class HiveSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2830; + this.state = 2831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 2829; + this.state = 2830; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -12286,17 +12302,17 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2833; + this.state = 2834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2832; + this.state = 2833; localContext._w = this.withClause(); } } - this.state = 2835; + this.state = 2836; this.queryStatementExpressionBody(); } } @@ -12318,13 +12334,13 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new QueryStatementExpressionBodyContext(this.context, this.state); this.enterRule(localContext, 394, HiveSqlParser.RULE_queryStatementExpressionBody); try { - this.state = 2839; + this.state = 2840; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FROM: this.enterOuterAlt(localContext, 1); { - this.state = 2837; + this.state = 2838; this.fromStatement(); } break; @@ -12336,7 +12352,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2838; + this.state = 2839; this.regularBody(); } break; @@ -12365,23 +12381,23 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2841; - this.match(HiveSqlParser.KW_WITH); this.state = 2842; + this.match(HiveSqlParser.KW_WITH); + this.state = 2843; this.cteStatement(); - this.state = 2847; + this.state = 2848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 2843; - this.match(HiveSqlParser.COMMA); this.state = 2844; + this.match(HiveSqlParser.COMMA); + this.state = 2845; this.cteStatement(); } } - this.state = 2849; + this.state = 2850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12408,29 +12424,29 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2850; + this.state = 2851; this.id_(); - this.state = 2855; + this.state = 2856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 398) { { - this.state = 2851; - this.match(HiveSqlParser.LPAREN); this.state = 2852; - localContext._colAliases = this.columnNameList(); + this.match(HiveSqlParser.LPAREN); this.state = 2853; + localContext._colAliases = this.columnNameList(); + this.state = 2854; this.match(HiveSqlParser.RPAREN); } } - this.state = 2857; - this.match(HiveSqlParser.KW_AS); this.state = 2858; - this.match(HiveSqlParser.LPAREN); + this.match(HiveSqlParser.KW_AS); this.state = 2859; - this.queryStatementExpression(); + this.match(HiveSqlParser.LPAREN); this.state = 2860; + this.queryStatementExpression(); + this.state = 2861; this.match(HiveSqlParser.RPAREN); } } @@ -12455,21 +12471,21 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2862; + this.state = 2863; this.singleFromStatement(); - this.state = 2868; + this.state = 2869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 112 || _la === 164 || _la === 204 || _la === 355) { { { - this.state = 2863; - localContext._u = this.setOperator(); this.state = 2864; + localContext._u = this.setOperator(); + this.state = 2865; localContext._r = this.singleFromStatement(); } } - this.state = 2870; + this.state = 2871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12492,33 +12508,253 @@ export class HiveSqlParser extends antlr.Parser { public singleFromStatement(): SingleFromStatementContext { let localContext = new SingleFromStatementContext(this.context, this.state); this.enterRule(localContext, 402, HiveSqlParser.RULE_singleFromStatement); + let _la: number; try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 2871; - this.fromClause(); - this.state = 2873; + this.state = 2943; this.errorHandler.sync(this); - alternative = 1; - do { - switch (alternative) { - case 1: - { - { - this.state = 2872; - localContext._body = this.body(); - localContext._b.push(localContext._body); - } - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 2875; + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { + case 1: + localContext = new FromInsertStmtContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 2872; + this.fromClause(); + this.state = 2873; + this.insertClause(); + this.state = 2874; + this.selectClause(); + this.state = 2876; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 268, this.context); - } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); + _la = this.tokenStream.LA(1); + if (_la === 178 || _la === 396) { + { + this.state = 2875; + this.lateralView(); + } + } + + this.state = 2879; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 383) { + { + this.state = 2878; + this.whereClause(); + } + } + + this.state = 2882; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 144) { + { + this.state = 2881; + this.groupByClause(); + } + } + + this.state = 2885; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 146) { + { + this.state = 2884; + this.havingClause(); + } + } + + this.state = 2888; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 385) { + { + this.state = 2887; + this.window_clause(); + } + } + + this.state = 2891; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 255) { + { + this.state = 2890; + this.qualifyClause(); + } + } + + this.state = 2894; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 228) { + { + this.state = 2893; + this.orderByClause(); + } + } + + this.state = 2897; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 41) { + { + this.state = 2896; + this.clusterByClause(); + } + } + + this.state = 2900; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 97) { + { + this.state = 2899; + this.distributeByClause(); + } + } + + this.state = 2903; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 313) { + { + this.state = 2902; + this.sortByClause(); + } + } + + this.state = 2906; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 184) { + { + this.state = 2905; + this.limitClause(); + } + } + + } + break; + case 2: + localContext = new FromSelectStmtContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 2908; + this.fromClause(); + this.state = 2909; + this.selectClause(); + this.state = 2911; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 178 || _la === 396) { + { + this.state = 2910; + this.lateralView(); + } + } + + this.state = 2914; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 383) { + { + this.state = 2913; + this.whereClause(); + } + } + + this.state = 2917; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 144) { + { + this.state = 2916; + this.groupByClause(); + } + } + + this.state = 2920; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 146) { + { + this.state = 2919; + this.havingClause(); + } + } + + this.state = 2923; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 385) { + { + this.state = 2922; + this.window_clause(); + } + } + + this.state = 2926; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 255) { + { + this.state = 2925; + this.qualifyClause(); + } + } + + this.state = 2929; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 228) { + { + this.state = 2928; + this.orderByClause(); + } + } + + this.state = 2932; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 41) { + { + this.state = 2931; + this.clusterByClause(); + } + } + + this.state = 2935; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 97) { + { + this.state = 2934; + this.distributeByClause(); + } + } + + this.state = 2938; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 313) { + { + this.state = 2937; + this.sortByClause(); + } + } + + this.state = 2941; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 184) { + { + this.state = 2940; + this.limitClause(); + } + } + + } + break; } } catch (re) { @@ -12539,16 +12775,17 @@ export class HiveSqlParser extends antlr.Parser { let localContext = new RegularBodyContext(this.context, this.state); this.enterRule(localContext, 404, HiveSqlParser.RULE_regularBody); try { - this.state = 2881; + this.state = 2949; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INSERT: + localContext = new InsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2877; - localContext._i = this.insertClause(); - this.state = 2878; - localContext._s = this.selectStatement(); + this.state = 2945; + (localContext as InsertStmtContext)._i = this.insertClause(); + this.state = 2946; + (localContext as InsertStmtContext)._s = this.selectStatement(); } break; case HiveSqlParser.KW_MAP: @@ -12556,9 +12793,10 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_SELECT: case HiveSqlParser.KW_VALUES: case HiveSqlParser.LPAREN: + localContext = new SelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2880; + this.state = 2948; this.selectStatement(); } break; @@ -12585,7 +12823,7 @@ export class HiveSqlParser extends antlr.Parser { this.enterRule(localContext, 406, HiveSqlParser.RULE_atomSelectStatement); let _la: number; try { - this.state = 2907; + this.state = 2975; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_MAP: @@ -12593,64 +12831,64 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2883; + this.state = 2951; localContext._s = this.selectClause(); - this.state = 2885; + this.state = 2953; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 2884; + this.state = 2952; localContext._f = this.fromClause(); } break; } - this.state = 2888; + this.state = 2956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 2887; + this.state = 2955; localContext._w = this.whereClause(); } } - this.state = 2891; + this.state = 2959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2890; + this.state = 2958; localContext._g = this.groupByClause(); } } - this.state = 2894; + this.state = 2962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2893; + this.state = 2961; localContext._h = this.havingClause(); } } - this.state = 2897; + this.state = 2965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 385) { { - this.state = 2896; + this.state = 2964; localContext._win = this.window_clause(); } } - this.state = 2900; + this.state = 2968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 2899; + this.state = 2967; localContext._q = this.qualifyClause(); } } @@ -12660,18 +12898,18 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2902; + this.state = 2970; this.match(HiveSqlParser.LPAREN); - this.state = 2903; + this.state = 2971; this.selectStatement(); - this.state = 2904; + this.state = 2972; this.match(HiveSqlParser.RPAREN); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 2906; + this.state = 2974; this.valuesSource(); } break; @@ -12700,64 +12938,64 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2909; + this.state = 2977; localContext._a = this.atomSelectStatement(); - this.state = 2911; + this.state = 2979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112 || _la === 164 || _la === 204 || _la === 355) { { - this.state = 2910; + this.state = 2978; localContext._set_ = this.setOpSelectStatement(); } } - this.state = 2914; + this.state = 2982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 2913; + this.state = 2981; localContext._o = this.orderByClause(); } } - this.state = 2917; + this.state = 2985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2916; + this.state = 2984; localContext._c = this.clusterByClause(); } } - this.state = 2920; + this.state = 2988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2919; + this.state = 2987; localContext._d = this.distributeByClause(); } } - this.state = 2923; + this.state = 2991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 313) { { - this.state = 2922; + this.state = 2990; localContext._sort = this.sortByClause(); } } - this.state = 2926; + this.state = 2994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 2925; + this.state = 2993; localContext._l = this.limitClause(); } } @@ -12785,19 +13023,19 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2931; + this.state = 2999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2928; + this.state = 2996; localContext._u = this.setOperator(); - this.state = 2929; + this.state = 2997; localContext._b = this.atomSelectStatement(); } } - this.state = 2933; + this.state = 3001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 112 || _la === 164 || _la === 204 || _la === 355); @@ -12824,17 +13062,17 @@ export class HiveSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2936; + this.state = 3004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2935; + this.state = 3003; localContext._w = this.withClause(); } } - this.state = 2938; + this.state = 3006; this.selectStatement(); } } @@ -12852,294 +13090,30 @@ export class HiveSqlParser extends antlr.Parser { } return localContext; } - public body(): BodyContext { - let localContext = new BodyContext(this.context, this.state); - this.enterRule(localContext, 414, HiveSqlParser.RULE_body); - let _la: number; - try { - this.state = 3009; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case HiveSqlParser.KW_INSERT: - this.enterOuterAlt(localContext, 1); - { - this.state = 2940; - this.insertClause(); - this.state = 2941; - this.selectClause(); - this.state = 2943; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 178 || _la === 396) { - { - this.state = 2942; - this.lateralView(); - } - } - - this.state = 2946; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 383) { - { - this.state = 2945; - this.whereClause(); - } - } - - this.state = 2949; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 144) { - { - this.state = 2948; - this.groupByClause(); - } - } - - this.state = 2952; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 146) { - { - this.state = 2951; - this.havingClause(); - } - } - - this.state = 2955; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 385) { - { - this.state = 2954; - this.window_clause(); - } - } - - this.state = 2958; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 255) { - { - this.state = 2957; - this.qualifyClause(); - } - } - - this.state = 2961; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 228) { - { - this.state = 2960; - this.orderByClause(); - } - } - - this.state = 2964; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 41) { - { - this.state = 2963; - this.clusterByClause(); - } - } - - this.state = 2967; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 97) { - { - this.state = 2966; - this.distributeByClause(); - } - } - - this.state = 2970; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 313) { - { - this.state = 2969; - this.sortByClause(); - } - } - - this.state = 2973; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 184) { - { - this.state = 2972; - this.limitClause(); - } - } - - } - break; - case HiveSqlParser.KW_MAP: - case HiveSqlParser.KW_REDUCE: - case HiveSqlParser.KW_SELECT: - this.enterOuterAlt(localContext, 2); - { - this.state = 2975; - this.selectClause(); - this.state = 2977; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 178 || _la === 396) { - { - this.state = 2976; - this.lateralView(); - } - } - - this.state = 2980; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 383) { - { - this.state = 2979; - this.whereClause(); - } - } - - this.state = 2983; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 144) { - { - this.state = 2982; - this.groupByClause(); - } - } - - this.state = 2986; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 146) { - { - this.state = 2985; - this.havingClause(); - } - } - - this.state = 2989; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 385) { - { - this.state = 2988; - this.window_clause(); - } - } - - this.state = 2992; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 255) { - { - this.state = 2991; - this.qualifyClause(); - } - } - - this.state = 2995; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 228) { - { - this.state = 2994; - this.orderByClause(); - } - } - - this.state = 2998; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 41) { - { - this.state = 2997; - this.clusterByClause(); - } - } - - this.state = 3001; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 97) { - { - this.state = 3000; - this.distributeByClause(); - } - } - - this.state = 3004; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 313) { - { - this.state = 3003; - this.sortByClause(); - } - } - - this.state = 3007; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 184) { - { - this.state = 3006; - this.limitClause(); - } - } - - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public insertClause(): InsertClauseContext { let localContext = new InsertClauseContext(this.context, this.state); - this.enterRule(localContext, 416, HiveSqlParser.RULE_insertClause); + this.enterRule(localContext, 414, HiveSqlParser.RULE_insertClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3011; + this.state = 3008; this.match(HiveSqlParser.KW_INSERT); - this.state = 3028; + this.state = 3025; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_OVERWRITE: { - this.state = 3012; + this.state = 3009; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 3013; + this.state = 3010; this.destination(); - this.state = 3015; + this.state = 3012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3014; + this.state = 3011; this.ifNotExists(); } } @@ -13148,30 +13122,30 @@ export class HiveSqlParser extends antlr.Parser { break; case HiveSqlParser.KW_INTO: { - this.state = 3017; + this.state = 3014; this.match(HiveSqlParser.KW_INTO); - this.state = 3019; + this.state = 3016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 328) { { - this.state = 3018; + this.state = 3015; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 3021; + this.state = 3018; this.tableOrPartition(); - this.state = 3026; + this.state = 3023; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 3022; + this.state = 3019; this.match(HiveSqlParser.LPAREN); - this.state = 3023; + this.state = 3020; localContext._targetCols = this.columnNameList(); - this.state = 3024; + this.state = 3021; this.match(HiveSqlParser.RPAREN); } break; @@ -13199,46 +13173,46 @@ export class HiveSqlParser extends antlr.Parser { } public destination(): DestinationContext { let localContext = new DestinationContext(this.context, this.state); - this.enterRule(localContext, 418, HiveSqlParser.RULE_destination); + this.enterRule(localContext, 416, HiveSqlParser.RULE_destination); let _la: number; try { - this.state = 3043; + this.state = 3040; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DIRECTORY: case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 1); { - this.state = 3031; + this.state = 3028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 3030; + this.state = 3027; localContext._local = this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 3033; + this.state = 3030; this.match(HiveSqlParser.KW_DIRECTORY); - this.state = 3034; + this.state = 3031; this.match(HiveSqlParser.StringLiteral); - this.state = 3036; + this.state = 3033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 3035; + this.state = 3032; this.tableRowFormat(); } } - this.state = 3039; + this.state = 3036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 3038; + this.state = 3035; this.tableFileFormat(); } } @@ -13248,9 +13222,9 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3041; + this.state = 3038; this.match(HiveSqlParser.KW_TABLE); - this.state = 3042; + this.state = 3039; this.tableOrPartition(); } break; @@ -13274,40 +13248,40 @@ export class HiveSqlParser extends antlr.Parser { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 420, HiveSqlParser.RULE_limitClause); + this.enterRule(localContext, 418, HiveSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3045; + this.state = 3042; this.match(HiveSqlParser.KW_LIMIT); - this.state = 3054; + this.state = 3051; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 3048; + this.state = 3045; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 3046; + this.state = 3043; localContext._offset = this.match(HiveSqlParser.Number); - this.state = 3047; + this.state = 3044; this.match(HiveSqlParser.COMMA); } break; } - this.state = 3050; + this.state = 3047; localContext._num = this.match(HiveSqlParser.Number); } break; case 2: { - this.state = 3051; + this.state = 3048; localContext._num = this.match(HiveSqlParser.Number); - this.state = 3052; + this.state = 3049; this.match(HiveSqlParser.KW_OFFSET); - this.state = 3053; + this.state = 3050; localContext._offset = this.match(HiveSqlParser.Number); } break; @@ -13330,23 +13304,23 @@ export class HiveSqlParser extends antlr.Parser { } public deleteStatement(): DeleteStatementContext { let localContext = new DeleteStatementContext(this.context, this.state); - this.enterRule(localContext, 422, HiveSqlParser.RULE_deleteStatement); + this.enterRule(localContext, 420, HiveSqlParser.RULE_deleteStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3056; + this.state = 3053; this.match(HiveSqlParser.KW_DELETE); - this.state = 3057; + this.state = 3054; this.match(HiveSqlParser.KW_FROM); - this.state = 3058; + this.state = 3055; this.tableName(); - this.state = 3060; + this.state = 3057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 3059; + this.state = 3056; this.whereClause(); } } @@ -13369,15 +13343,15 @@ export class HiveSqlParser extends antlr.Parser { } public columnAssignmentClause(): ColumnAssignmentClauseContext { let localContext = new ColumnAssignmentClauseContext(this.context, this.state); - this.enterRule(localContext, 424, HiveSqlParser.RULE_columnAssignmentClause); + this.enterRule(localContext, 422, HiveSqlParser.RULE_columnAssignmentClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3062; + this.state = 3059; this.columnName(); - this.state = 3063; + this.state = 3060; this.match(HiveSqlParser.EQUAL); - this.state = 3064; + this.state = 3061; this.precedencePlusExpressionOrDefault(); } } @@ -13397,22 +13371,22 @@ export class HiveSqlParser extends antlr.Parser { } public precedencePlusExpressionOrDefault(): PrecedencePlusExpressionOrDefaultContext { let localContext = new PrecedencePlusExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 426, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); + this.enterRule(localContext, 424, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); try { - this.state = 3068; + this.state = 3065; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3066; + this.state = 3063; this.defaultValue(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3067; + this.state = 3064; this.precedencePlusExpression(); } break; @@ -13434,28 +13408,28 @@ export class HiveSqlParser extends antlr.Parser { } public setColumnsClause(): SetColumnsClauseContext { let localContext = new SetColumnsClauseContext(this.context, this.state); - this.enterRule(localContext, 428, HiveSqlParser.RULE_setColumnsClause); + this.enterRule(localContext, 426, HiveSqlParser.RULE_setColumnsClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3070; + this.state = 3067; this.match(HiveSqlParser.KW_SET); - this.state = 3071; + this.state = 3068; this.columnAssignmentClause(); - this.state = 3076; + this.state = 3073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 3072; + this.state = 3069; this.match(HiveSqlParser.COMMA); - this.state = 3073; + this.state = 3070; this.columnAssignmentClause(); } } - this.state = 3078; + this.state = 3075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13477,23 +13451,23 @@ export class HiveSqlParser extends antlr.Parser { } public updateStatement(): UpdateStatementContext { let localContext = new UpdateStatementContext(this.context, this.state); - this.enterRule(localContext, 430, HiveSqlParser.RULE_updateStatement); + this.enterRule(localContext, 428, HiveSqlParser.RULE_updateStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3079; + this.state = 3076; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3080; + this.state = 3077; this.tableName(); - this.state = 3081; + this.state = 3078; this.setColumnsClause(); - this.state = 3083; + this.state = 3080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 3082; + this.state = 3079; this.whereClause(); } } @@ -13516,36 +13490,36 @@ export class HiveSqlParser extends antlr.Parser { } public sqlTransactionStatement(): SqlTransactionStatementContext { let localContext = new SqlTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 432, HiveSqlParser.RULE_sqlTransactionStatement); + this.enterRule(localContext, 430, HiveSqlParser.RULE_sqlTransactionStatement); try { - this.state = 3089; + this.state = 3086; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 1); { - this.state = 3085; + this.state = 3082; this.startTransactionStatement(); } break; case HiveSqlParser.KW_COMMIT: this.enterOuterAlt(localContext, 2); { - this.state = 3086; + this.state = 3083; this.commitStatement(); } break; case HiveSqlParser.KW_ROLLBACK: this.enterOuterAlt(localContext, 3); { - this.state = 3087; + this.state = 3084; this.rollbackStatement(); } break; case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 3088; + this.state = 3085; this.setAutoCommitStatement(); } break; @@ -13569,35 +13543,35 @@ export class HiveSqlParser extends antlr.Parser { } public startTransactionStatement(): StartTransactionStatementContext { let localContext = new StartTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 434, HiveSqlParser.RULE_startTransactionStatement); + this.enterRule(localContext, 432, HiveSqlParser.RULE_startTransactionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3091; + this.state = 3088; this.match(HiveSqlParser.KW_START); - this.state = 3092; + this.state = 3089; this.match(HiveSqlParser.KW_TRANSACTION); - this.state = 3101; + this.state = 3098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168 || _la === 260) { { - this.state = 3093; + this.state = 3090; this.transactionMode(); - this.state = 3098; + this.state = 3095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 3094; + this.state = 3091; this.match(HiveSqlParser.COMMA); - this.state = 3095; + this.state = 3092; this.transactionMode(); } } - this.state = 3100; + this.state = 3097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13622,22 +13596,22 @@ export class HiveSqlParser extends antlr.Parser { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 436, HiveSqlParser.RULE_transactionMode); + this.enterRule(localContext, 434, HiveSqlParser.RULE_transactionMode); try { - this.state = 3105; + this.state = 3102; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 3103; + this.state = 3100; this.isolationLevel(); } break; case HiveSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 3104; + this.state = 3101; this.transactionAccessMode(); } break; @@ -13661,14 +13635,14 @@ export class HiveSqlParser extends antlr.Parser { } public transactionAccessMode(): TransactionAccessModeContext { let localContext = new TransactionAccessModeContext(this.context, this.state); - this.enterRule(localContext, 438, HiveSqlParser.RULE_transactionAccessMode); + this.enterRule(localContext, 436, HiveSqlParser.RULE_transactionAccessMode); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3107; + this.state = 3104; this.match(HiveSqlParser.KW_READ); - this.state = 3108; + this.state = 3105; _la = this.tokenStream.LA(1); if(!(_la === 224 || _la === 390)) { this.errorHandler.recoverInline(this); @@ -13695,15 +13669,15 @@ export class HiveSqlParser extends antlr.Parser { } public isolationLevel(): IsolationLevelContext { let localContext = new IsolationLevelContext(this.context, this.state); - this.enterRule(localContext, 440, HiveSqlParser.RULE_isolationLevel); + this.enterRule(localContext, 438, HiveSqlParser.RULE_isolationLevel); try { this.enterOuterAlt(localContext, 1); { - this.state = 3110; + this.state = 3107; this.match(HiveSqlParser.KW_ISOLATION); - this.state = 3111; + this.state = 3108; this.match(HiveSqlParser.KW_LEVEL); - this.state = 3112; + this.state = 3109; this.levelOfIsolation(); } } @@ -13723,11 +13697,11 @@ export class HiveSqlParser extends antlr.Parser { } public levelOfIsolation(): LevelOfIsolationContext { let localContext = new LevelOfIsolationContext(this.context, this.state); - this.enterRule(localContext, 442, HiveSqlParser.RULE_levelOfIsolation); + this.enterRule(localContext, 440, HiveSqlParser.RULE_levelOfIsolation); try { this.enterOuterAlt(localContext, 1); { - this.state = 3114; + this.state = 3111; this.match(HiveSqlParser.KW_SNAPSHOT); } } @@ -13747,19 +13721,19 @@ export class HiveSqlParser extends antlr.Parser { } public commitStatement(): CommitStatementContext { let localContext = new CommitStatementContext(this.context, this.state); - this.enterRule(localContext, 444, HiveSqlParser.RULE_commitStatement); + this.enterRule(localContext, 442, HiveSqlParser.RULE_commitStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3116; + this.state = 3113; this.match(HiveSqlParser.KW_COMMIT); - this.state = 3118; + this.state = 3115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 388) { { - this.state = 3117; + this.state = 3114; this.match(HiveSqlParser.KW_WORK); } } @@ -13782,19 +13756,19 @@ export class HiveSqlParser extends antlr.Parser { } public rollbackStatement(): RollbackStatementContext { let localContext = new RollbackStatementContext(this.context, this.state); - this.enterRule(localContext, 446, HiveSqlParser.RULE_rollbackStatement); + this.enterRule(localContext, 444, HiveSqlParser.RULE_rollbackStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3120; + this.state = 3117; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3122; + this.state = 3119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 388) { { - this.state = 3121; + this.state = 3118; this.match(HiveSqlParser.KW_WORK); } } @@ -13817,15 +13791,15 @@ export class HiveSqlParser extends antlr.Parser { } public setAutoCommitStatement(): SetAutoCommitStatementContext { let localContext = new SetAutoCommitStatementContext(this.context, this.state); - this.enterRule(localContext, 448, HiveSqlParser.RULE_setAutoCommitStatement); + this.enterRule(localContext, 446, HiveSqlParser.RULE_setAutoCommitStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 3124; + this.state = 3121; this.match(HiveSqlParser.KW_SET); - this.state = 3125; + this.state = 3122; this.match(HiveSqlParser.KW_AUTOCOMMIT); - this.state = 3126; + this.state = 3123; this.booleanValueTok(); } } @@ -13845,26 +13819,26 @@ export class HiveSqlParser extends antlr.Parser { } public abortTransactionStatement(): AbortTransactionStatementContext { let localContext = new AbortTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 450, HiveSqlParser.RULE_abortTransactionStatement); + this.enterRule(localContext, 448, HiveSqlParser.RULE_abortTransactionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3128; + this.state = 3125; this.match(HiveSqlParser.KW_ABORT); - this.state = 3129; + this.state = 3126; this.match(HiveSqlParser.KW_TRANSACTIONS); - this.state = 3131; + this.state = 3128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3130; + this.state = 3127; this.match(HiveSqlParser.Number); } } - this.state = 3133; + this.state = 3130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 430); @@ -13886,26 +13860,26 @@ export class HiveSqlParser extends antlr.Parser { } public abortCompactionStatement(): AbortCompactionStatementContext { let localContext = new AbortCompactionStatementContext(this.context, this.state); - this.enterRule(localContext, 452, HiveSqlParser.RULE_abortCompactionStatement); + this.enterRule(localContext, 450, HiveSqlParser.RULE_abortCompactionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3135; + this.state = 3132; this.match(HiveSqlParser.KW_ABORT); - this.state = 3136; + this.state = 3133; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 3138; + this.state = 3135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3137; + this.state = 3134; this.match(HiveSqlParser.Number); } } - this.state = 3140; + this.state = 3137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 430); @@ -13927,56 +13901,56 @@ export class HiveSqlParser extends antlr.Parser { } public mergeStatement(): MergeStatementContext { let localContext = new MergeStatementContext(this.context, this.state); - this.enterRule(localContext, 454, HiveSqlParser.RULE_mergeStatement); + this.enterRule(localContext, 452, HiveSqlParser.RULE_mergeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3142; + this.state = 3139; this.match(HiveSqlParser.KW_MERGE); - this.state = 3144; + this.state = 3141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 435) { { - this.state = 3143; + this.state = 3140; this.match(HiveSqlParser.QUERY_HINT); } } - this.state = 3146; + this.state = 3143; this.match(HiveSqlParser.KW_INTO); - this.state = 3147; + this.state = 3144; this.tableName(); - this.state = 3152; + this.state = 3149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3723969527) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 2255187435) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 929578221) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4039901127) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3755917179) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 3402225181) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 4238323319) !== 0) || _la === 393 || _la === 431) { { - this.state = 3149; + this.state = 3146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3148; + this.state = 3145; this.match(HiveSqlParser.KW_AS); } } - this.state = 3151; + this.state = 3148; this.id_(); } } - this.state = 3154; + this.state = 3151; this.match(HiveSqlParser.KW_USING); - this.state = 3155; + this.state = 3152; this.joinSourcePart(); - this.state = 3156; + this.state = 3153; this.match(HiveSqlParser.KW_ON); - this.state = 3157; + this.state = 3154; this.expression(); - this.state = 3158; + this.state = 3155; this.whenClauses(); } } @@ -13996,46 +13970,46 @@ export class HiveSqlParser extends antlr.Parser { } public whenClauses(): WhenClausesContext { let localContext = new WhenClausesContext(this.context, this.state); - this.enterRule(localContext, 456, HiveSqlParser.RULE_whenClauses); + this.enterRule(localContext, 454, HiveSqlParser.RULE_whenClauses); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3164; + this.state = 3161; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 334, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 3162; + this.state = 3159; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 3160; + this.state = 3157; this.whenMatchedAndClause(); } break; case 2: { - this.state = 3161; + this.state = 3158; this.whenMatchedThenClause(); } break; } } } - this.state = 3166; + this.state = 3163; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 334, this.context); } - this.state = 3168; + this.state = 3165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 382) { { - this.state = 3167; + this.state = 3164; this.whenNotMatchedClause(); } } @@ -14058,46 +14032,46 @@ export class HiveSqlParser extends antlr.Parser { } public whenNotMatchedClause(): WhenNotMatchedClauseContext { let localContext = new WhenNotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 458, HiveSqlParser.RULE_whenNotMatchedClause); + this.enterRule(localContext, 456, HiveSqlParser.RULE_whenNotMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3170; + this.state = 3167; this.match(HiveSqlParser.KW_WHEN); - this.state = 3171; + this.state = 3168; this.match(HiveSqlParser.KW_NOT); - this.state = 3172; + this.state = 3169; this.match(HiveSqlParser.KW_MATCHED); - this.state = 3175; + this.state = 3172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 3173; + this.state = 3170; this.match(HiveSqlParser.KW_AND); - this.state = 3174; + this.state = 3171; this.expression(); } } - this.state = 3177; + this.state = 3174; this.match(HiveSqlParser.KW_THEN); - this.state = 3178; + this.state = 3175; this.match(HiveSqlParser.KW_INSERT); - this.state = 3180; + this.state = 3177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 398) { { - this.state = 3179; + this.state = 3176; localContext._targetCols = this.columnParenthesesList(); } } - this.state = 3182; + this.state = 3179; this.match(HiveSqlParser.KW_VALUES); - this.state = 3183; + this.state = 3180; this.valueRowConstructor(); } } @@ -14117,21 +14091,21 @@ export class HiveSqlParser extends antlr.Parser { } public whenMatchedAndClause(): WhenMatchedAndClauseContext { let localContext = new WhenMatchedAndClauseContext(this.context, this.state); - this.enterRule(localContext, 460, HiveSqlParser.RULE_whenMatchedAndClause); + this.enterRule(localContext, 458, HiveSqlParser.RULE_whenMatchedAndClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3185; + this.state = 3182; this.match(HiveSqlParser.KW_WHEN); - this.state = 3186; + this.state = 3183; this.match(HiveSqlParser.KW_MATCHED); - this.state = 3187; + this.state = 3184; this.match(HiveSqlParser.KW_AND); - this.state = 3188; + this.state = 3185; this.expression(); - this.state = 3189; + this.state = 3186; this.match(HiveSqlParser.KW_THEN); - this.state = 3190; + this.state = 3187; this.updateOrDelete(); } } @@ -14151,17 +14125,17 @@ export class HiveSqlParser extends antlr.Parser { } public whenMatchedThenClause(): WhenMatchedThenClauseContext { let localContext = new WhenMatchedThenClauseContext(this.context, this.state); - this.enterRule(localContext, 462, HiveSqlParser.RULE_whenMatchedThenClause); + this.enterRule(localContext, 460, HiveSqlParser.RULE_whenMatchedThenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3192; + this.state = 3189; this.match(HiveSqlParser.KW_WHEN); - this.state = 3193; + this.state = 3190; this.match(HiveSqlParser.KW_MATCHED); - this.state = 3194; + this.state = 3191; this.match(HiveSqlParser.KW_THEN); - this.state = 3195; + this.state = 3192; this.updateOrDelete(); } } @@ -14181,24 +14155,24 @@ export class HiveSqlParser extends antlr.Parser { } public updateOrDelete(): UpdateOrDeleteContext { let localContext = new UpdateOrDeleteContext(this.context, this.state); - this.enterRule(localContext, 464, HiveSqlParser.RULE_updateOrDelete); + this.enterRule(localContext, 462, HiveSqlParser.RULE_updateOrDelete); try { - this.state = 3200; + this.state = 3197; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 1); { - this.state = 3197; + this.state = 3194; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3198; + this.state = 3195; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 2); { - this.state = 3199; + this.state = 3196; this.match(HiveSqlParser.KW_DELETE); } break; @@ -14222,26 +14196,26 @@ export class HiveSqlParser extends antlr.Parser { } public killQueryStatement(): KillQueryStatementContext { let localContext = new KillQueryStatementContext(this.context, this.state); - this.enterRule(localContext, 466, HiveSqlParser.RULE_killQueryStatement); + this.enterRule(localContext, 464, HiveSqlParser.RULE_killQueryStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3202; + this.state = 3199; this.match(HiveSqlParser.KW_KILL); - this.state = 3203; + this.state = 3200; this.match(HiveSqlParser.KW_QUERY); - this.state = 3205; + this.state = 3202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3204; + this.state = 3201; this.match(HiveSqlParser.StringLiteral); } } - this.state = 3207; + this.state = 3204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 425); @@ -14263,15 +14237,15 @@ export class HiveSqlParser extends antlr.Parser { } public compactionId(): CompactionIdContext { let localContext = new CompactionIdContext(this.context, this.state); - this.enterRule(localContext, 468, HiveSqlParser.RULE_compactionId); + this.enterRule(localContext, 466, HiveSqlParser.RULE_compactionId); try { this.enterOuterAlt(localContext, 1); { - this.state = 3209; + this.state = 3206; this.match(HiveSqlParser.KW_COMPACT_ID); - this.state = 3210; + this.state = 3207; this.match(HiveSqlParser.EQUAL); - this.state = 3211; + this.state = 3208; localContext._compactId = this.match(HiveSqlParser.Number); } } @@ -14291,13 +14265,13 @@ export class HiveSqlParser extends antlr.Parser { } public compactionPool(): CompactionPoolContext { let localContext = new CompactionPoolContext(this.context, this.state); - this.enterRule(localContext, 470, HiveSqlParser.RULE_compactionPool); + this.enterRule(localContext, 468, HiveSqlParser.RULE_compactionPool); try { this.enterOuterAlt(localContext, 1); { - this.state = 3213; + this.state = 3210; this.match(HiveSqlParser.KW_POOL); - this.state = 3214; + this.state = 3211; localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } @@ -14317,13 +14291,13 @@ export class HiveSqlParser extends antlr.Parser { } public compactionType(): CompactionTypeContext { let localContext = new CompactionTypeContext(this.context, this.state); - this.enterRule(localContext, 472, HiveSqlParser.RULE_compactionType); + this.enterRule(localContext, 470, HiveSqlParser.RULE_compactionType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3216; + this.state = 3213; this.match(HiveSqlParser.KW_TYPE); - this.state = 3217; + this.state = 3214; localContext._compactType = this.match(HiveSqlParser.StringLiteral); } } @@ -14343,13 +14317,13 @@ export class HiveSqlParser extends antlr.Parser { } public compactionStatus(): CompactionStatusContext { let localContext = new CompactionStatusContext(this.context, this.state); - this.enterRule(localContext, 474, HiveSqlParser.RULE_compactionStatus); + this.enterRule(localContext, 472, HiveSqlParser.RULE_compactionStatus); try { this.enterOuterAlt(localContext, 1); { - this.state = 3219; + this.state = 3216; this.match(HiveSqlParser.KW_STATUS); - this.state = 3220; + this.state = 3217; localContext._status = this.match(HiveSqlParser.StringLiteral); } } @@ -14369,80 +14343,80 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatement(): AlterStatementContext { let localContext = new AlterStatementContext(this.context, this.state); - this.enterRule(localContext, 476, HiveSqlParser.RULE_alterStatement); + this.enterRule(localContext, 474, HiveSqlParser.RULE_alterStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3222; + this.state = 3219; this.match(HiveSqlParser.KW_ALTER); - this.state = 3246; + this.state = 3243; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TABLE: { - this.state = 3223; + this.state = 3220; this.match(HiveSqlParser.KW_TABLE); - this.state = 3224; + this.state = 3221; this.tableName(); - this.state = 3225; + this.state = 3222; this.alterTableStatementSuffix(); } break; case HiveSqlParser.KW_VIEW: { - this.state = 3227; + this.state = 3224; this.match(HiveSqlParser.KW_VIEW); - this.state = 3228; + this.state = 3225; this.viewName(); - this.state = 3230; + this.state = 3227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3229; + this.state = 3226; this.match(HiveSqlParser.KW_AS); } } - this.state = 3232; + this.state = 3229; this.alterViewStatementSuffix(); } break; case HiveSqlParser.KW_MATERIALIZED: { - this.state = 3234; + this.state = 3231; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 3235; + this.state = 3232; this.match(HiveSqlParser.KW_VIEW); - this.state = 3236; + this.state = 3233; localContext._tableNameTree = this.viewName(); - this.state = 3237; + this.state = 3234; this.alterMaterializedViewStatementSuffix(); } break; case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 3239; + this.state = 3236; this.db_schema(); - this.state = 3240; + this.state = 3237; this.alterDatabaseStatementSuffix(); } break; case HiveSqlParser.KW_DATACONNECTOR: { - this.state = 3242; + this.state = 3239; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3243; + this.state = 3240; this.alterDataConnectorStatementSuffix(); } break; case HiveSqlParser.KW_INDEX: { - this.state = 3244; + this.state = 3241; this.match(HiveSqlParser.KW_INDEX); - this.state = 3245; + this.state = 3242; this.alterIndexStatementSuffix(); } break; @@ -14467,145 +14441,145 @@ export class HiveSqlParser extends antlr.Parser { } public alterTableStatementSuffix(): AlterTableStatementSuffixContext { let localContext = new AlterTableStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 478, HiveSqlParser.RULE_alterTableStatementSuffix); + this.enterRule(localContext, 476, HiveSqlParser.RULE_alterTableStatementSuffix); let _la: number; try { - this.state = 3269; + this.state = 3266; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3248; + this.state = 3245; this.alterStatementSuffixRename(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3249; + this.state = 3246; this.alterStatementSuffixRecoverPartitions(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3250; + this.state = 3247; this.alterStatementSuffixDropPartitions(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3251; + this.state = 3248; this.alterStatementSuffixAddPartitions(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3252; + this.state = 3249; this.alterStatementSuffixTouch(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3253; + this.state = 3250; this.alterStatementSuffixArchive(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3254; + this.state = 3251; this.alterStatementSuffixUnArchive(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3255; + this.state = 3252; this.alterStatementSuffixProperties(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3256; + this.state = 3253; this.alterStatementSuffixSkewedby(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3257; + this.state = 3254; this.alterStatementSuffixExchangePartition(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3258; + this.state = 3255; this.alterStatementPartitionKeyType(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3259; + this.state = 3256; this.alterStatementSuffixDropConstraint(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3260; + this.state = 3257; this.alterStatementSuffixAddConstraint(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3261; + this.state = 3258; this.alterTblPartitionStatementSuffix(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3263; + this.state = 3260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 3262; + this.state = 3259; this.partitionSpec(); } } - this.state = 3265; + this.state = 3262; this.alterTblPartitionStatementSuffix(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3266; + this.state = 3263; this.alterStatementSuffixSetOwner(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3267; + this.state = 3264; this.alterStatementSuffixSetPartSpec(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3268; + this.state = 3265; this.alterStatementSuffixExecute(); } break; @@ -14627,113 +14601,113 @@ export class HiveSqlParser extends antlr.Parser { } public alterTblPartitionStatementSuffix(): AlterTblPartitionStatementSuffixContext { let localContext = new AlterTblPartitionStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 480, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); + this.enterRule(localContext, 478, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); try { - this.state = 3286; + this.state = 3283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3271; + this.state = 3268; this.alterStatementSuffixFileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3272; + this.state = 3269; this.alterStatementSuffixLocation(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3273; + this.state = 3270; this.alterStatementSuffixMergeFiles(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3274; + this.state = 3271; this.alterStatementSuffixSerdeProperties(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3275; + this.state = 3272; this.alterStatementSuffixRenamePart(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3276; + this.state = 3273; this.alterStatementSuffixBucketNum(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3277; + this.state = 3274; this.alterTblPartitionStatementSuffixSkewedLocation(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3278; + this.state = 3275; this.alterStatementSuffixClusterbySortby(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3279; + this.state = 3276; this.alterStatementSuffixCompact(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3280; + this.state = 3277; this.alterStatementSuffixUpdateStatsCol(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3281; + this.state = 3278; this.alterStatementSuffixUpdateStats(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3282; + this.state = 3279; this.alterStatementSuffixRenameCol(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3283; + this.state = 3280; this.alterStatementSuffixAddCol(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3284; + this.state = 3281; this.alterStatementSuffixUpdateColumns(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3285; + this.state = 3282; this.alterStatementSuffixProtections(); } break; @@ -14755,19 +14729,19 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementPartitionKeyType(): AlterStatementPartitionKeyTypeContext { let localContext = new AlterStatementPartitionKeyTypeContext(this.context, this.state); - this.enterRule(localContext, 482, HiveSqlParser.RULE_alterStatementPartitionKeyType); + this.enterRule(localContext, 480, HiveSqlParser.RULE_alterStatementPartitionKeyType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3288; + this.state = 3285; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3289; + this.state = 3286; this.match(HiveSqlParser.KW_COLUMN); - this.state = 3290; + this.state = 3287; this.match(HiveSqlParser.LPAREN); - this.state = 3291; + this.state = 3288; this.columnNameType(); - this.state = 3292; + this.state = 3289; this.match(HiveSqlParser.RPAREN); } } @@ -14787,37 +14761,37 @@ export class HiveSqlParser extends antlr.Parser { } public alterViewStatementSuffix(): AlterViewStatementSuffixContext { let localContext = new AlterViewStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 484, HiveSqlParser.RULE_alterViewStatementSuffix); + this.enterRule(localContext, 482, HiveSqlParser.RULE_alterViewStatementSuffix); try { - this.state = 3299; + this.state = 3296; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 1); { - this.state = 3294; + this.state = 3291; this.alterViewSuffixProperties(); } break; case HiveSqlParser.KW_RENAME: this.enterOuterAlt(localContext, 2); { - this.state = 3295; + this.state = 3292; this.alterStatementSuffixRename(); } break; case HiveSqlParser.KW_ADD: this.enterOuterAlt(localContext, 3); { - this.state = 3296; + this.state = 3293; this.alterStatementSuffixAddPartitions(); } break; case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 4); { - this.state = 3297; + this.state = 3294; this.alterStatementSuffixDropPartitions(); } break; @@ -14829,7 +14803,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 5); { - this.state = 3298; + this.state = 3295; this.selectStatementWithCTE(); } break; @@ -14853,9 +14827,9 @@ export class HiveSqlParser extends antlr.Parser { } public alterMaterializedViewStatementSuffix(): AlterMaterializedViewStatementSuffixContext { let localContext = new AlterMaterializedViewStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 486, HiveSqlParser.RULE_alterMaterializedViewStatementSuffix); + this.enterRule(localContext, 484, HiveSqlParser.RULE_alterMaterializedViewStatementSuffix); try { - this.state = 3303; + this.state = 3300; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -14864,14 +14838,14 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 3301; + this.state = 3298; this.alterMaterializedViewSuffixRewrite(); } break; case HiveSqlParser.KW_REBUILD: this.enterOuterAlt(localContext, 2); { - this.state = 3302; + this.state = 3299; this.alterMaterializedViewSuffixRebuild(); } break; @@ -14895,16 +14869,16 @@ export class HiveSqlParser extends antlr.Parser { } public alterMaterializedViewSuffixRewrite(): AlterMaterializedViewSuffixRewriteContext { let localContext = new AlterMaterializedViewSuffixRewriteContext(this.context, this.state); - this.enterRule(localContext, 488, HiveSqlParser.RULE_alterMaterializedViewSuffixRewrite); + this.enterRule(localContext, 486, HiveSqlParser.RULE_alterMaterializedViewSuffixRewrite); try { - this.state = 3307; + this.state = 3304; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 3305; + this.state = 3302; localContext._mvRewriteFlag = this.rewriteEnabled(); } break; @@ -14912,7 +14886,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 3306; + this.state = 3303; localContext._mvRewriteFlag2 = this.rewriteDisabled(); } break; @@ -14936,11 +14910,11 @@ export class HiveSqlParser extends antlr.Parser { } public alterMaterializedViewSuffixRebuild(): AlterMaterializedViewSuffixRebuildContext { let localContext = new AlterMaterializedViewSuffixRebuildContext(this.context, this.state); - this.enterRule(localContext, 490, HiveSqlParser.RULE_alterMaterializedViewSuffixRebuild); + this.enterRule(localContext, 488, HiveSqlParser.RULE_alterMaterializedViewSuffixRebuild); try { this.enterOuterAlt(localContext, 1); { - this.state = 3309; + this.state = 3306; this.match(HiveSqlParser.KW_REBUILD); } } @@ -14960,29 +14934,29 @@ export class HiveSqlParser extends antlr.Parser { } public alterDatabaseStatementSuffix(): AlterDatabaseStatementSuffixContext { let localContext = new AlterDatabaseStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 492, HiveSqlParser.RULE_alterDatabaseStatementSuffix); + this.enterRule(localContext, 490, HiveSqlParser.RULE_alterDatabaseStatementSuffix); try { - this.state = 3314; + this.state = 3311; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3311; + this.state = 3308; this.alterDatabaseSuffixProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3312; + this.state = 3309; this.alterDatabaseSuffixSetOwner(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3313; + this.state = 3310; this.alterDatabaseSuffixSetLocation(); } break; @@ -15004,17 +14978,17 @@ export class HiveSqlParser extends antlr.Parser { } public alterDatabaseSuffixProperties(): AlterDatabaseSuffixPropertiesContext { let localContext = new AlterDatabaseSuffixPropertiesContext(this.context, this.state); - this.enterRule(localContext, 494, HiveSqlParser.RULE_alterDatabaseSuffixProperties); + this.enterRule(localContext, 492, HiveSqlParser.RULE_alterDatabaseSuffixProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 3316; + this.state = 3313; localContext._name = this.dbSchemaName(); - this.state = 3317; + this.state = 3314; this.match(HiveSqlParser.KW_SET); - this.state = 3318; + this.state = 3315; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 3319; + this.state = 3316; this.dbProperties(); } } @@ -15034,17 +15008,17 @@ export class HiveSqlParser extends antlr.Parser { } public alterDatabaseSuffixSetOwner(): AlterDatabaseSuffixSetOwnerContext { let localContext = new AlterDatabaseSuffixSetOwnerContext(this.context, this.state); - this.enterRule(localContext, 496, HiveSqlParser.RULE_alterDatabaseSuffixSetOwner); + this.enterRule(localContext, 494, HiveSqlParser.RULE_alterDatabaseSuffixSetOwner); try { this.enterOuterAlt(localContext, 1); { - this.state = 3321; + this.state = 3318; localContext._dbName = this.dbSchemaName(); - this.state = 3322; + this.state = 3319; this.match(HiveSqlParser.KW_SET); - this.state = 3323; + this.state = 3320; this.match(HiveSqlParser.KW_OWNER); - this.state = 3324; + this.state = 3321; this.principalAlterName(); } } @@ -15064,16 +15038,16 @@ export class HiveSqlParser extends antlr.Parser { } public alterDatabaseSuffixSetLocation(): AlterDatabaseSuffixSetLocationContext { let localContext = new AlterDatabaseSuffixSetLocationContext(this.context, this.state); - this.enterRule(localContext, 498, HiveSqlParser.RULE_alterDatabaseSuffixSetLocation); + this.enterRule(localContext, 496, HiveSqlParser.RULE_alterDatabaseSuffixSetLocation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3326; + this.state = 3323; localContext._dbName = this.dbSchemaName(); - this.state = 3327; + this.state = 3324; this.match(HiveSqlParser.KW_SET); - this.state = 3328; + this.state = 3325; _la = this.tokenStream.LA(1); if(!(_la === 188 || _la === 195)) { this.errorHandler.recoverInline(this); @@ -15082,7 +15056,7 @@ export class HiveSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3329; + this.state = 3326; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } } @@ -15102,17 +15076,17 @@ export class HiveSqlParser extends antlr.Parser { } public alterDatabaseSuffixSetManagedLocation(): AlterDatabaseSuffixSetManagedLocationContext { let localContext = new AlterDatabaseSuffixSetManagedLocationContext(this.context, this.state); - this.enterRule(localContext, 500, HiveSqlParser.RULE_alterDatabaseSuffixSetManagedLocation); + this.enterRule(localContext, 498, HiveSqlParser.RULE_alterDatabaseSuffixSetManagedLocation); try { this.enterOuterAlt(localContext, 1); { - this.state = 3331; + this.state = 3328; localContext._dbName = this.dbSchemaName(); - this.state = 3332; + this.state = 3329; this.match(HiveSqlParser.KW_SET); - this.state = 3333; + this.state = 3330; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 3334; + this.state = 3331; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } } @@ -15132,15 +15106,15 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixRename(): AlterStatementSuffixRenameContext { let localContext = new AlterStatementSuffixRenameContext(this.context, this.state); - this.enterRule(localContext, 502, HiveSqlParser.RULE_alterStatementSuffixRename); + this.enterRule(localContext, 500, HiveSqlParser.RULE_alterStatementSuffixRename); try { this.enterOuterAlt(localContext, 1); { - this.state = 3336; + this.state = 3333; this.match(HiveSqlParser.KW_RENAME); - this.state = 3337; + this.state = 3334; this.match(HiveSqlParser.KW_TO); - this.state = 3338; + this.state = 3335; this.tableNameCreate(); } } @@ -15160,43 +15134,43 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixAddCol(): AlterStatementSuffixAddColContext { let localContext = new AlterStatementSuffixAddColContext(this.context, this.state); - this.enterRule(localContext, 504, HiveSqlParser.RULE_alterStatementSuffixAddCol); + this.enterRule(localContext, 502, HiveSqlParser.RULE_alterStatementSuffixAddCol); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3342; + this.state = 3339; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 3340; + this.state = 3337; localContext._add = this.match(HiveSqlParser.KW_ADD); } break; case HiveSqlParser.KW_REPLACE: { - this.state = 3341; + this.state = 3338; localContext._replace = this.match(HiveSqlParser.KW_REPLACE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3344; + this.state = 3341; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3345; + this.state = 3342; this.match(HiveSqlParser.LPAREN); - this.state = 3346; + this.state = 3343; this.columnNameTypeList(); - this.state = 3347; + this.state = 3344; this.match(HiveSqlParser.RPAREN); - this.state = 3349; + this.state = 3346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 281) { { - this.state = 3348; + this.state = 3345; this.restrictOrCascade(); } } @@ -15219,24 +15193,24 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixAddConstraint(): AlterStatementSuffixAddConstraintContext { let localContext = new AlterStatementSuffixAddConstraintContext(this.context, this.state); - this.enterRule(localContext, 506, HiveSqlParser.RULE_alterStatementSuffixAddConstraint); + this.enterRule(localContext, 504, HiveSqlParser.RULE_alterStatementSuffixAddConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 3351; + this.state = 3348; this.match(HiveSqlParser.KW_ADD); - this.state = 3354; + this.state = 3351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 3352; + this.state = 3349; localContext._fk = this.alterForeignKeyWithName(); } break; case 2: { - this.state = 3353; + this.state = 3350; this.alterConstraintWithName(); } break; @@ -15259,21 +15233,21 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixUpdateColumns(): AlterStatementSuffixUpdateColumnsContext { let localContext = new AlterStatementSuffixUpdateColumnsContext(this.context, this.state); - this.enterRule(localContext, 508, HiveSqlParser.RULE_alterStatementSuffixUpdateColumns); + this.enterRule(localContext, 506, HiveSqlParser.RULE_alterStatementSuffixUpdateColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3356; + this.state = 3353; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3357; + this.state = 3354; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3359; + this.state = 3356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 281) { { - this.state = 3358; + this.state = 3355; this.restrictOrCascade(); } } @@ -15296,25 +15270,25 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixProtections(): AlterStatementSuffixProtectionsContext { let localContext = new AlterStatementSuffixProtectionsContext(this.context, this.state); - this.enterRule(localContext, 510, HiveSqlParser.RULE_alterStatementSuffixProtections); + this.enterRule(localContext, 508, HiveSqlParser.RULE_alterStatementSuffixProtections); let _la: number; try { - this.state = 3369; + this.state = 3366; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3361; + this.state = 3358; this.enableSpecification(); - this.state = 3362; + this.state = 3359; this.match(HiveSqlParser.KW_NO_DROP); - this.state = 3364; + this.state = 3361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 3363; + this.state = 3360; this.match(HiveSqlParser.KW_CASCADE); } } @@ -15324,9 +15298,9 @@ export class HiveSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3366; + this.state = 3363; this.enableSpecification(); - this.state = 3367; + this.state = 3364; this.match(HiveSqlParser.KW_OFFLINE); } break; @@ -15348,15 +15322,15 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixDropConstraint(): AlterStatementSuffixDropConstraintContext { let localContext = new AlterStatementSuffixDropConstraintContext(this.context, this.state); - this.enterRule(localContext, 512, HiveSqlParser.RULE_alterStatementSuffixDropConstraint); + this.enterRule(localContext, 510, HiveSqlParser.RULE_alterStatementSuffixDropConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 3371; + this.state = 3368; this.match(HiveSqlParser.KW_DROP); - this.state = 3372; + this.state = 3369; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 3373; + this.state = 3370; localContext._cName = this.id_(); } } @@ -15376,67 +15350,67 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixRenameCol(): AlterStatementSuffixRenameColContext { let localContext = new AlterStatementSuffixRenameColContext(this.context, this.state); - this.enterRule(localContext, 514, HiveSqlParser.RULE_alterStatementSuffixRenameCol); + this.enterRule(localContext, 512, HiveSqlParser.RULE_alterStatementSuffixRenameCol); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3375; + this.state = 3372; this.match(HiveSqlParser.KW_CHANGE); - this.state = 3377; + this.state = 3374; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 45) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + case 1: { - this.state = 3376; + this.state = 3373; this.match(HiveSqlParser.KW_COLUMN); } + break; } - - this.state = 3379; + this.state = 3376; localContext._oldName = this.columnName(); - this.state = 3380; + this.state = 3377; localContext._newName = this.columnNameCreate(); - this.state = 3381; + this.state = 3378; this.colType(); - this.state = 3383; + this.state = 3380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 215 || _la === 250 || _la === 268 || _la === 357) { { - this.state = 3382; + this.state = 3379; this.alterColumnConstraint(); } } + this.state = 3384; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 47) { + { + this.state = 3382; + this.match(HiveSqlParser.KW_COMMENT); + this.state = 3383; + localContext._comment = this.match(HiveSqlParser.StringLiteral); + } + } + this.state = 3387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 47) { + if (_la === 6 || _la === 130) { { - this.state = 3385; - this.match(HiveSqlParser.KW_COMMENT); this.state = 3386; - localContext._comment = this.match(HiveSqlParser.StringLiteral); + this.alterStatementChangeColPosition(); } } this.state = 3390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 6 || _la === 130) { - { - this.state = 3389; - this.alterStatementChangeColPosition(); - } - } - - this.state = 3393; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); if (_la === 34 || _la === 281) { { - this.state = 3392; + this.state = 3389; this.restrictOrCascade(); } } @@ -15459,41 +15433,41 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixUpdateStatsCol(): AlterStatementSuffixUpdateStatsColContext { let localContext = new AlterStatementSuffixUpdateStatsColContext(this.context, this.state); - this.enterRule(localContext, 516, HiveSqlParser.RULE_alterStatementSuffixUpdateStatsCol); + this.enterRule(localContext, 514, HiveSqlParser.RULE_alterStatementSuffixUpdateStatsCol); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3395; + this.state = 3392; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3396; + this.state = 3393; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3397; + this.state = 3394; this.match(HiveSqlParser.KW_FOR); - this.state = 3399; + this.state = 3396; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 45) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { + case 1: { - this.state = 3398; + this.state = 3395; this.match(HiveSqlParser.KW_COLUMN); } + break; } - - this.state = 3401; + this.state = 3398; localContext._colName = this.columnName(); - this.state = 3402; + this.state = 3399; this.match(HiveSqlParser.KW_SET); - this.state = 3403; + this.state = 3400; this.tableProperties(); - this.state = 3406; + this.state = 3403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3404; + this.state = 3401; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3405; + this.state = 3402; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -15516,17 +15490,17 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixUpdateStats(): AlterStatementSuffixUpdateStatsContext { let localContext = new AlterStatementSuffixUpdateStatsContext(this.context, this.state); - this.enterRule(localContext, 518, HiveSqlParser.RULE_alterStatementSuffixUpdateStats); + this.enterRule(localContext, 516, HiveSqlParser.RULE_alterStatementSuffixUpdateStats); try { this.enterOuterAlt(localContext, 1); { - this.state = 3408; + this.state = 3405; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3409; + this.state = 3406; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3410; + this.state = 3407; this.match(HiveSqlParser.KW_SET); - this.state = 3411; + this.state = 3408; this.tableProperties(); } } @@ -15546,24 +15520,24 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementChangeColPosition(): AlterStatementChangeColPositionContext { let localContext = new AlterStatementChangeColPositionContext(this.context, this.state); - this.enterRule(localContext, 520, HiveSqlParser.RULE_alterStatementChangeColPosition); + this.enterRule(localContext, 518, HiveSqlParser.RULE_alterStatementChangeColPosition); try { - this.state = 3416; + this.state = 3413; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3413; + this.state = 3410; localContext._first = this.match(HiveSqlParser.KW_FIRST); } break; case HiveSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3414; + this.state = 3411; this.match(HiveSqlParser.KW_AFTER); - this.state = 3415; + this.state = 3412; localContext._afterCol = this.id_(); } break; @@ -15587,34 +15561,34 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixAddPartitions(): AlterStatementSuffixAddPartitionsContext { let localContext = new AlterStatementSuffixAddPartitionsContext(this.context, this.state); - this.enterRule(localContext, 522, HiveSqlParser.RULE_alterStatementSuffixAddPartitions); + this.enterRule(localContext, 520, HiveSqlParser.RULE_alterStatementSuffixAddPartitions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3418; + this.state = 3415; this.match(HiveSqlParser.KW_ADD); - this.state = 3420; + this.state = 3417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3419; + this.state = 3416; this.ifNotExists(); } } - this.state = 3423; + this.state = 3420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3422; + this.state = 3419; this.alterStatementSuffixAddPartitionsElement(); } } - this.state = 3425; + this.state = 3422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 236); @@ -15636,19 +15610,19 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixAddPartitionsElement(): AlterStatementSuffixAddPartitionsElementContext { let localContext = new AlterStatementSuffixAddPartitionsElementContext(this.context, this.state); - this.enterRule(localContext, 524, HiveSqlParser.RULE_alterStatementSuffixAddPartitionsElement); + this.enterRule(localContext, 522, HiveSqlParser.RULE_alterStatementSuffixAddPartitionsElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3427; + this.state = 3424; this.partitionSpec(); - this.state = 3429; + this.state = 3426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 3428; + this.state = 3425; this.partitionLocation(); } } @@ -15671,24 +15645,24 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixTouch(): AlterStatementSuffixTouchContext { let localContext = new AlterStatementSuffixTouchContext(this.context, this.state); - this.enterRule(localContext, 526, HiveSqlParser.RULE_alterStatementSuffixTouch); + this.enterRule(localContext, 524, HiveSqlParser.RULE_alterStatementSuffixTouch); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3431; + this.state = 3428; this.match(HiveSqlParser.KW_TOUCH); - this.state = 3435; + this.state = 3432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 236) { { { - this.state = 3432; + this.state = 3429; this.partitionSpec(); } } - this.state = 3437; + this.state = 3434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15710,24 +15684,24 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixArchive(): AlterStatementSuffixArchiveContext { let localContext = new AlterStatementSuffixArchiveContext(this.context, this.state); - this.enterRule(localContext, 528, HiveSqlParser.RULE_alterStatementSuffixArchive); + this.enterRule(localContext, 526, HiveSqlParser.RULE_alterStatementSuffixArchive); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3438; + this.state = 3435; this.match(HiveSqlParser.KW_ARCHIVE); - this.state = 3442; + this.state = 3439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 236) { { { - this.state = 3439; + this.state = 3436; this.partitionSpec(); } } - this.state = 3444; + this.state = 3441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15749,24 +15723,24 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixUnArchive(): AlterStatementSuffixUnArchiveContext { let localContext = new AlterStatementSuffixUnArchiveContext(this.context, this.state); - this.enterRule(localContext, 530, HiveSqlParser.RULE_alterStatementSuffixUnArchive); + this.enterRule(localContext, 528, HiveSqlParser.RULE_alterStatementSuffixUnArchive); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3445; + this.state = 3442; this.match(HiveSqlParser.KW_UNARCHIVE); - this.state = 3449; + this.state = 3446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 236) { { { - this.state = 3446; + this.state = 3443; this.partitionSpec(); } } - this.state = 3451; + this.state = 3448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15788,13 +15762,13 @@ export class HiveSqlParser extends antlr.Parser { } public partitionLocation(): PartitionLocationContext { let localContext = new PartitionLocationContext(this.context, this.state); - this.enterRule(localContext, 532, HiveSqlParser.RULE_partitionLocation); + this.enterRule(localContext, 530, HiveSqlParser.RULE_partitionLocation); try { this.enterOuterAlt(localContext, 1); { - this.state = 3452; + this.state = 3449; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3453; + this.state = 3450; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -15814,13 +15788,13 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixRecoverPartitions(): AlterStatementSuffixRecoverPartitionsContext { let localContext = new AlterStatementSuffixRecoverPartitionsContext(this.context, this.state); - this.enterRule(localContext, 534, HiveSqlParser.RULE_alterStatementSuffixRecoverPartitions); + this.enterRule(localContext, 532, HiveSqlParser.RULE_alterStatementSuffixRecoverPartitions); try { this.enterOuterAlt(localContext, 1); { - this.state = 3455; + this.state = 3452; this.match(HiveSqlParser.KW_RECOVER); - this.state = 3456; + this.state = 3453; this.match(HiveSqlParser.KW_PARTITIONS); } } @@ -15840,71 +15814,71 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixDropPartitions(): AlterStatementSuffixDropPartitionsContext { let localContext = new AlterStatementSuffixDropPartitionsContext(this.context, this.state); - this.enterRule(localContext, 536, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); + this.enterRule(localContext, 534, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3458; + this.state = 3455; this.match(HiveSqlParser.KW_DROP); - this.state = 3460; + this.state = 3457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3459; + this.state = 3456; this.ifExists(); } } - this.state = 3462; + this.state = 3459; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3463; + this.state = 3460; this.partitionSelectorSpec(); - this.state = 3469; + this.state = 3466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 3464; + this.state = 3461; this.match(HiveSqlParser.COMMA); - this.state = 3465; + this.state = 3462; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3466; + this.state = 3463; this.partitionSelectorSpec(); } } - this.state = 3471; + this.state = 3468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3473; + this.state = 3470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 3472; + this.state = 3469; this.dropPartitionsIgnoreClause(); } } + this.state = 3473; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 254) { + { + this.state = 3472; + this.match(HiveSqlParser.KW_PURGE); + } + } + this.state = 3476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 254) { - { - this.state = 3475; - this.match(HiveSqlParser.KW_PURGE); - } - } - - this.state = 3479; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3478; + this.state = 3475; this.replicationClause(); } } @@ -15927,41 +15901,41 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixProperties(): AlterStatementSuffixPropertiesContext { let localContext = new AlterStatementSuffixPropertiesContext(this.context, this.state); - this.enterRule(localContext, 538, HiveSqlParser.RULE_alterStatementSuffixProperties); + this.enterRule(localContext, 536, HiveSqlParser.RULE_alterStatementSuffixProperties); let _la: number; try { - this.state = 3490; + this.state = 3487; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3481; + this.state = 3478; this.match(HiveSqlParser.KW_SET); - this.state = 3482; + this.state = 3479; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3483; + this.state = 3480; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3484; + this.state = 3481; this.match(HiveSqlParser.KW_UNSET); - this.state = 3485; + this.state = 3482; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3487; + this.state = 3484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3486; + this.state = 3483; this.ifExists(); } } - this.state = 3489; + this.state = 3486; this.tableProperties(); } break; @@ -15985,41 +15959,41 @@ export class HiveSqlParser extends antlr.Parser { } public alterViewSuffixProperties(): AlterViewSuffixPropertiesContext { let localContext = new AlterViewSuffixPropertiesContext(this.context, this.state); - this.enterRule(localContext, 540, HiveSqlParser.RULE_alterViewSuffixProperties); + this.enterRule(localContext, 538, HiveSqlParser.RULE_alterViewSuffixProperties); let _la: number; try { - this.state = 3501; + this.state = 3498; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3492; + this.state = 3489; this.match(HiveSqlParser.KW_SET); - this.state = 3493; + this.state = 3490; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3494; + this.state = 3491; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3495; + this.state = 3492; this.match(HiveSqlParser.KW_UNSET); - this.state = 3496; + this.state = 3493; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3498; + this.state = 3495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3497; + this.state = 3494; this.ifExists(); } } - this.state = 3500; + this.state = 3497; this.tableProperties(); } break; @@ -16043,35 +16017,35 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixSerdeProperties(): AlterStatementSuffixSerdePropertiesContext { let localContext = new AlterStatementSuffixSerdePropertiesContext(this.context, this.state); - this.enterRule(localContext, 542, HiveSqlParser.RULE_alterStatementSuffixSerdeProperties); + this.enterRule(localContext, 540, HiveSqlParser.RULE_alterStatementSuffixSerdeProperties); try { - this.state = 3518; + this.state = 3515; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3503; + this.state = 3500; this.match(HiveSqlParser.KW_SET); - this.state = 3513; + this.state = 3510; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SERDE: { - this.state = 3504; + this.state = 3501; this.match(HiveSqlParser.KW_SERDE); - this.state = 3505; + this.state = 3502; localContext._serdeName = this.match(HiveSqlParser.StringLiteral); - this.state = 3509; + this.state = 3506; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 3506; + this.state = 3503; this.match(HiveSqlParser.KW_WITH); - this.state = 3507; + this.state = 3504; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 3508; + this.state = 3505; this.tableProperties(); } break; @@ -16080,9 +16054,9 @@ export class HiveSqlParser extends antlr.Parser { break; case HiveSqlParser.KW_SERDEPROPERTIES: { - this.state = 3511; + this.state = 3508; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 3512; + this.state = 3509; this.tableProperties(); } break; @@ -16094,11 +16068,11 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3515; + this.state = 3512; this.match(HiveSqlParser.KW_UNSET); - this.state = 3516; + this.state = 3513; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 3517; + this.state = 3514; this.tableProperties(); } break; @@ -16122,19 +16096,19 @@ export class HiveSqlParser extends antlr.Parser { } public tablePartitionPrefix(): TablePartitionPrefixContext { let localContext = new TablePartitionPrefixContext(this.context, this.state); - this.enterRule(localContext, 544, HiveSqlParser.RULE_tablePartitionPrefix); + this.enterRule(localContext, 542, HiveSqlParser.RULE_tablePartitionPrefix); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3520; + this.state = 3517; this.tableName(); - this.state = 3522; + this.state = 3519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 3521; + this.state = 3518; this.partitionSpec(); } } @@ -16157,15 +16131,15 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixFileFormat(): AlterStatementSuffixFileFormatContext { let localContext = new AlterStatementSuffixFileFormatContext(this.context, this.state); - this.enterRule(localContext, 546, HiveSqlParser.RULE_alterStatementSuffixFileFormat); + this.enterRule(localContext, 544, HiveSqlParser.RULE_alterStatementSuffixFileFormat); try { this.enterOuterAlt(localContext, 1); { - this.state = 3524; + this.state = 3521; this.match(HiveSqlParser.KW_SET); - this.state = 3525; + this.state = 3522; this.match(HiveSqlParser.KW_FILEFORMAT); - this.state = 3526; + this.state = 3523; this.fileFormat(); } } @@ -16185,18 +16159,18 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixClusterbySortby(): AlterStatementSuffixClusterbySortbyContext { let localContext = new AlterStatementSuffixClusterbySortbyContext(this.context, this.state); - this.enterRule(localContext, 548, HiveSqlParser.RULE_alterStatementSuffixClusterbySortby); + this.enterRule(localContext, 546, HiveSqlParser.RULE_alterStatementSuffixClusterbySortby); let _la: number; try { - this.state = 3531; + this.state = 3528; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3528; + this.state = 3525; this.match(HiveSqlParser.KW_NOT); - this.state = 3529; + this.state = 3526; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 314)) { this.errorHandler.recoverInline(this); @@ -16210,7 +16184,7 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 2); { - this.state = 3530; + this.state = 3527; this.tableBuckets(); } break; @@ -16234,17 +16208,17 @@ export class HiveSqlParser extends antlr.Parser { } public alterTblPartitionStatementSuffixSkewedLocation(): AlterTblPartitionStatementSuffixSkewedLocationContext { let localContext = new AlterTblPartitionStatementSuffixSkewedLocationContext(this.context, this.state); - this.enterRule(localContext, 550, HiveSqlParser.RULE_alterTblPartitionStatementSuffixSkewedLocation); + this.enterRule(localContext, 548, HiveSqlParser.RULE_alterTblPartitionStatementSuffixSkewedLocation); try { this.enterOuterAlt(localContext, 1); { - this.state = 3533; + this.state = 3530; this.match(HiveSqlParser.KW_SET); - this.state = 3534; + this.state = 3531; this.match(HiveSqlParser.KW_SKEWED); - this.state = 3535; + this.state = 3532; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3536; + this.state = 3533; this.skewedLocations(); } } @@ -16264,15 +16238,15 @@ export class HiveSqlParser extends antlr.Parser { } public skewedLocations(): SkewedLocationsContext { let localContext = new SkewedLocationsContext(this.context, this.state); - this.enterRule(localContext, 552, HiveSqlParser.RULE_skewedLocations); + this.enterRule(localContext, 550, HiveSqlParser.RULE_skewedLocations); try { this.enterOuterAlt(localContext, 1); { - this.state = 3538; + this.state = 3535; this.match(HiveSqlParser.LPAREN); - this.state = 3539; + this.state = 3536; this.skewedLocationsList(); - this.state = 3540; + this.state = 3537; this.match(HiveSqlParser.RPAREN); } } @@ -16292,26 +16266,26 @@ export class HiveSqlParser extends antlr.Parser { } public skewedLocationsList(): SkewedLocationsListContext { let localContext = new SkewedLocationsListContext(this.context, this.state); - this.enterRule(localContext, 554, HiveSqlParser.RULE_skewedLocationsList); + this.enterRule(localContext, 552, HiveSqlParser.RULE_skewedLocationsList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3542; + this.state = 3539; this.skewedLocationMap(); - this.state = 3547; + this.state = 3544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 396) { { { - this.state = 3543; + this.state = 3540; this.match(HiveSqlParser.COMMA); - this.state = 3544; + this.state = 3541; this.skewedLocationMap(); } } - this.state = 3549; + this.state = 3546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16333,15 +16307,15 @@ export class HiveSqlParser extends antlr.Parser { } public skewedLocationMap(): SkewedLocationMapContext { let localContext = new SkewedLocationMapContext(this.context, this.state); - this.enterRule(localContext, 556, HiveSqlParser.RULE_skewedLocationMap); + this.enterRule(localContext, 554, HiveSqlParser.RULE_skewedLocationMap); try { this.enterOuterAlt(localContext, 1); { - this.state = 3550; + this.state = 3547; localContext._key = this.skewedValueLocationElement(); - this.state = 3551; + this.state = 3548; this.match(HiveSqlParser.EQUAL); - this.state = 3552; + this.state = 3549; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -16361,15 +16335,15 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixLocation(): AlterStatementSuffixLocationContext { let localContext = new AlterStatementSuffixLocationContext(this.context, this.state); - this.enterRule(localContext, 558, HiveSqlParser.RULE_alterStatementSuffixLocation); + this.enterRule(localContext, 556, HiveSqlParser.RULE_alterStatementSuffixLocation); try { this.enterOuterAlt(localContext, 1); { - this.state = 3554; + this.state = 3551; this.match(HiveSqlParser.KW_SET); - this.state = 3555; + this.state = 3552; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3556; + this.state = 3553; localContext._newLoc = this.match(HiveSqlParser.StringLiteral); } } @@ -16389,35 +16363,35 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixSkewedby(): AlterStatementSuffixSkewedbyContext { let localContext = new AlterStatementSuffixSkewedbyContext(this.context, this.state); - this.enterRule(localContext, 560, HiveSqlParser.RULE_alterStatementSuffixSkewedby); + this.enterRule(localContext, 558, HiveSqlParser.RULE_alterStatementSuffixSkewedby); try { - this.state = 3564; + this.state = 3561; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: this.enterOuterAlt(localContext, 1); { - this.state = 3558; + this.state = 3555; this.tableSkewed(); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 3559; + this.state = 3556; this.match(HiveSqlParser.KW_NOT); - this.state = 3562; + this.state = 3559; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: { - this.state = 3560; + this.state = 3557; this.match(HiveSqlParser.KW_SKEWED); } break; case HiveSqlParser.KW_STORED: { - this.state = 3561; + this.state = 3558; this.storedAsDirs(); } break; @@ -16446,19 +16420,19 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixExchangePartition(): AlterStatementSuffixExchangePartitionContext { let localContext = new AlterStatementSuffixExchangePartitionContext(this.context, this.state); - this.enterRule(localContext, 562, HiveSqlParser.RULE_alterStatementSuffixExchangePartition); + this.enterRule(localContext, 560, HiveSqlParser.RULE_alterStatementSuffixExchangePartition); try { this.enterOuterAlt(localContext, 1); { - this.state = 3566; + this.state = 3563; this.match(HiveSqlParser.KW_EXCHANGE); - this.state = 3567; + this.state = 3564; this.partitionSpec(); - this.state = 3568; + this.state = 3565; this.match(HiveSqlParser.KW_WITH); - this.state = 3569; + this.state = 3566; this.match(HiveSqlParser.KW_TABLE); - this.state = 3570; + this.state = 3567; localContext._exchangename = this.tableName(); } } @@ -16478,15 +16452,15 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixRenamePart(): AlterStatementSuffixRenamePartContext { let localContext = new AlterStatementSuffixRenamePartContext(this.context, this.state); - this.enterRule(localContext, 564, HiveSqlParser.RULE_alterStatementSuffixRenamePart); + this.enterRule(localContext, 562, HiveSqlParser.RULE_alterStatementSuffixRenamePart); try { this.enterOuterAlt(localContext, 1); { - this.state = 3572; + this.state = 3569; this.match(HiveSqlParser.KW_RENAME); - this.state = 3573; + this.state = 3570; this.match(HiveSqlParser.KW_TO); - this.state = 3574; + this.state = 3571; this.partitionSpec(); } } @@ -16506,41 +16480,41 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixStatsPart(): AlterStatementSuffixStatsPartContext { let localContext = new AlterStatementSuffixStatsPartContext(this.context, this.state); - this.enterRule(localContext, 566, HiveSqlParser.RULE_alterStatementSuffixStatsPart); + this.enterRule(localContext, 564, HiveSqlParser.RULE_alterStatementSuffixStatsPart); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3576; + this.state = 3573; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3577; + this.state = 3574; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3578; + this.state = 3575; this.match(HiveSqlParser.KW_FOR); - this.state = 3580; + this.state = 3577; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 45) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { + case 1: { - this.state = 3579; + this.state = 3576; this.match(HiveSqlParser.KW_COLUMN); } + break; } - - this.state = 3582; + this.state = 3579; localContext._colName = this.columnName(); - this.state = 3583; + this.state = 3580; this.match(HiveSqlParser.KW_SET); - this.state = 3584; + this.state = 3581; this.tableProperties(); - this.state = 3587; + this.state = 3584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3585; + this.state = 3582; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3586; + this.state = 3583; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -16563,11 +16537,11 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixMergeFiles(): AlterStatementSuffixMergeFilesContext { let localContext = new AlterStatementSuffixMergeFilesContext(this.context, this.state); - this.enterRule(localContext, 568, HiveSqlParser.RULE_alterStatementSuffixMergeFiles); + this.enterRule(localContext, 566, HiveSqlParser.RULE_alterStatementSuffixMergeFiles); try { this.enterOuterAlt(localContext, 1); { - this.state = 3589; + this.state = 3586; this.match(HiveSqlParser.KW_CONCATENATE); } } @@ -16587,15 +16561,15 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixBucketNum(): AlterStatementSuffixBucketNumContext { let localContext = new AlterStatementSuffixBucketNumContext(this.context, this.state); - this.enterRule(localContext, 570, HiveSqlParser.RULE_alterStatementSuffixBucketNum); + this.enterRule(localContext, 568, HiveSqlParser.RULE_alterStatementSuffixBucketNum); try { this.enterOuterAlt(localContext, 1); { - this.state = 3591; + this.state = 3588; this.match(HiveSqlParser.KW_INTO); - this.state = 3592; + this.state = 3589; localContext._num = this.match(HiveSqlParser.Number); - this.state = 3593; + this.state = 3590; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -16615,13 +16589,13 @@ export class HiveSqlParser extends antlr.Parser { } public blocking(): BlockingContext { let localContext = new BlockingContext(this.context, this.state); - this.enterRule(localContext, 572, HiveSqlParser.RULE_blocking); + this.enterRule(localContext, 570, HiveSqlParser.RULE_blocking); try { this.enterOuterAlt(localContext, 1); { - this.state = 3595; + this.state = 3592; this.match(HiveSqlParser.KW_AND); - this.state = 3596; + this.state = 3593; this.match(HiveSqlParser.KW_WAIT); } } @@ -16641,13 +16615,13 @@ export class HiveSqlParser extends antlr.Parser { } public compactPool(): CompactPoolContext { let localContext = new CompactPoolContext(this.context, this.state); - this.enterRule(localContext, 574, HiveSqlParser.RULE_compactPool); + this.enterRule(localContext, 572, HiveSqlParser.RULE_compactPool); try { this.enterOuterAlt(localContext, 1); { - this.state = 3598; + this.state = 3595; this.match(HiveSqlParser.KW_POOL); - this.state = 3599; + this.state = 3596; localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } @@ -16667,67 +16641,67 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixCompact(): AlterStatementSuffixCompactContext { let localContext = new AlterStatementSuffixCompactContext(this.context, this.state); - this.enterRule(localContext, 576, HiveSqlParser.RULE_alterStatementSuffixCompact); + this.enterRule(localContext, 574, HiveSqlParser.RULE_alterStatementSuffixCompact); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3601; + this.state = 3598; this.match(HiveSqlParser.KW_COMPACT); - this.state = 3602; + this.state = 3599; localContext._compactType = this.match(HiveSqlParser.StringLiteral); - this.state = 3604; + this.state = 3601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 3603; + this.state = 3600; this.blocking(); } } + this.state = 3604; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 42) { + { + this.state = 3603; + this.tableImplBuckets(); + } + } + this.state = 3607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 42) { + if (_la === 228) { { this.state = 3606; - this.tableImplBuckets(); + this.orderByClause(); } } this.state = 3610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 228) { - { - this.state = 3609; - this.orderByClause(); - } - } - - this.state = 3613; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); if (_la === 245) { { - this.state = 3612; + this.state = 3609; this.compactPool(); } } - this.state = 3619; + this.state = 3616; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 3615; + this.state = 3612; this.match(HiveSqlParser.KW_WITH); - this.state = 3616; + this.state = 3613; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 3617; + this.state = 3614; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3618; + this.state = 3615; this.tableProperties(); } break; @@ -16750,15 +16724,15 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixSetOwner(): AlterStatementSuffixSetOwnerContext { let localContext = new AlterStatementSuffixSetOwnerContext(this.context, this.state); - this.enterRule(localContext, 578, HiveSqlParser.RULE_alterStatementSuffixSetOwner); + this.enterRule(localContext, 576, HiveSqlParser.RULE_alterStatementSuffixSetOwner); try { this.enterOuterAlt(localContext, 1); { - this.state = 3621; + this.state = 3618; this.match(HiveSqlParser.KW_SET); - this.state = 3622; + this.state = 3619; this.match(HiveSqlParser.KW_OWNER); - this.state = 3623; + this.state = 3620; this.principalName(); } } @@ -16778,21 +16752,21 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixSetPartSpec(): AlterStatementSuffixSetPartSpecContext { let localContext = new AlterStatementSuffixSetPartSpecContext(this.context, this.state); - this.enterRule(localContext, 580, HiveSqlParser.RULE_alterStatementSuffixSetPartSpec); + this.enterRule(localContext, 578, HiveSqlParser.RULE_alterStatementSuffixSetPartSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 3625; + this.state = 3622; this.match(HiveSqlParser.KW_SET); - this.state = 3626; + this.state = 3623; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3627; + this.state = 3624; this.match(HiveSqlParser.KW_SPEC); - this.state = 3628; + this.state = 3625; this.match(HiveSqlParser.LPAREN); - this.state = 3629; + this.state = 3626; localContext._spec = this.partitionTransformSpec(); - this.state = 3630; + this.state = 3627; this.match(HiveSqlParser.RPAREN); } } @@ -16812,23 +16786,23 @@ export class HiveSqlParser extends antlr.Parser { } public alterStatementSuffixExecute(): AlterStatementSuffixExecuteContext { let localContext = new AlterStatementSuffixExecuteContext(this.context, this.state); - this.enterRule(localContext, 582, HiveSqlParser.RULE_alterStatementSuffixExecute); + this.enterRule(localContext, 580, HiveSqlParser.RULE_alterStatementSuffixExecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3632; + this.state = 3629; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 3642; + this.state = 3639; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLBACK: { - this.state = 3633; + this.state = 3630; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3634; + this.state = 3631; this.match(HiveSqlParser.LPAREN); - this.state = 3635; + this.state = 3632; localContext._rollbackParam = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 425 || _la === 430)) { @@ -16842,28 +16816,28 @@ export class HiveSqlParser extends antlr.Parser { break; case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: { - this.state = 3636; + this.state = 3633; this.match(HiveSqlParser.KW_EXPIRE_SNAPSHOTS); - this.state = 3637; + this.state = 3634; this.match(HiveSqlParser.LPAREN); - this.state = 3638; + this.state = 3635; localContext._expireParam = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: { - this.state = 3639; + this.state = 3636; this.match(HiveSqlParser.KW_SET_CURRENT_SNAPSHOT); - this.state = 3640; + this.state = 3637; this.match(HiveSqlParser.LPAREN); - this.state = 3641; + this.state = 3638; localContext._snapshotParam = this.match(HiveSqlParser.Number); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3644; + this.state = 3641; this.match(HiveSqlParser.RPAREN); } } @@ -16883,28 +16857,28 @@ export class HiveSqlParser extends antlr.Parser { } public alterIndexStatementSuffix(): AlterIndexStatementSuffixContext { let localContext = new AlterIndexStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 584, HiveSqlParser.RULE_alterIndexStatementSuffix); + this.enterRule(localContext, 582, HiveSqlParser.RULE_alterIndexStatementSuffix); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3646; + this.state = 3643; this.id_(); - this.state = 3647; + this.state = 3644; this.match(HiveSqlParser.KW_ON); - this.state = 3648; + this.state = 3645; this.tableName(); - this.state = 3650; + this.state = 3647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 3649; + this.state = 3646; this.partitionSpec(); } } - this.state = 3652; + this.state = 3649; this.match(HiveSqlParser.KW_REBUILD); } } @@ -16924,39 +16898,39 @@ export class HiveSqlParser extends antlr.Parser { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 586, HiveSqlParser.RULE_fileFormat); + this.enterRule(localContext, 584, HiveSqlParser.RULE_fileFormat); let _la: number; try { - this.state = 3667; + this.state = 3664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3654; + this.state = 3651; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 3655; + this.state = 3652; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3656; + this.state = 3653; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 3657; + this.state = 3654; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3658; + this.state = 3655; this.match(HiveSqlParser.KW_SERDE); - this.state = 3659; + this.state = 3656; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); - this.state = 3664; + this.state = 3661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 3660; + this.state = 3657; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 3661; + this.state = 3658; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 3662; + this.state = 3659; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 3663; + this.state = 3660; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -16966,7 +16940,7 @@ export class HiveSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3666; + this.state = 3663; localContext._genericSpec = this.id_(); } break; @@ -16988,29 +16962,29 @@ export class HiveSqlParser extends antlr.Parser { } public alterDataConnectorStatementSuffix(): AlterDataConnectorStatementSuffixContext { let localContext = new AlterDataConnectorStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 588, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); + this.enterRule(localContext, 586, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); try { - this.state = 3672; + this.state = 3669; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3669; + this.state = 3666; this.alterDataConnectorSuffixProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3670; + this.state = 3667; this.alterDataConnectorSuffixSetOwner(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3671; + this.state = 3668; this.alterDataConnectorSuffixSetUrl(); } break; @@ -17032,17 +17006,17 @@ export class HiveSqlParser extends antlr.Parser { } public alterDataConnectorSuffixProperties(): AlterDataConnectorSuffixPropertiesContext { let localContext = new AlterDataConnectorSuffixPropertiesContext(this.context, this.state); - this.enterRule(localContext, 590, HiveSqlParser.RULE_alterDataConnectorSuffixProperties); + this.enterRule(localContext, 588, HiveSqlParser.RULE_alterDataConnectorSuffixProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 3674; + this.state = 3671; localContext._name = this.dbSchemaName(); - this.state = 3675; + this.state = 3672; this.match(HiveSqlParser.KW_SET); - this.state = 3676; + this.state = 3673; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3677; + this.state = 3674; this.dcProperties(); } } @@ -17062,17 +17036,17 @@ export class HiveSqlParser extends antlr.Parser { } public alterDataConnectorSuffixSetOwner(): AlterDataConnectorSuffixSetOwnerContext { let localContext = new AlterDataConnectorSuffixSetOwnerContext(this.context, this.state); - this.enterRule(localContext, 592, HiveSqlParser.RULE_alterDataConnectorSuffixSetOwner); + this.enterRule(localContext, 590, HiveSqlParser.RULE_alterDataConnectorSuffixSetOwner); try { this.enterOuterAlt(localContext, 1); { - this.state = 3679; + this.state = 3676; localContext._dcName = this.dbSchemaName(); - this.state = 3680; + this.state = 3677; this.match(HiveSqlParser.KW_SET); - this.state = 3681; + this.state = 3678; this.match(HiveSqlParser.KW_OWNER); - this.state = 3682; + this.state = 3679; this.principalAlterName(); } } @@ -17092,17 +17066,17 @@ export class HiveSqlParser extends antlr.Parser { } public alterDataConnectorSuffixSetUrl(): AlterDataConnectorSuffixSetUrlContext { let localContext = new AlterDataConnectorSuffixSetUrlContext(this.context, this.state); - this.enterRule(localContext, 594, HiveSqlParser.RULE_alterDataConnectorSuffixSetUrl); + this.enterRule(localContext, 592, HiveSqlParser.RULE_alterDataConnectorSuffixSetUrl); try { this.enterOuterAlt(localContext, 1); { - this.state = 3684; + this.state = 3681; localContext._dcName = this.dbSchemaName(); - this.state = 3685; + this.state = 3682; this.match(HiveSqlParser.KW_SET); - this.state = 3686; + this.state = 3683; this.match(HiveSqlParser.KW_URL); - this.state = 3687; + this.state = 3684; localContext._newUri = this.match(HiveSqlParser.StringLiteral); } } @@ -17122,39 +17096,39 @@ export class HiveSqlParser extends antlr.Parser { } public likeTableOrFile(): LikeTableOrFileContext { let localContext = new LikeTableOrFileContext(this.context, this.state); - this.enterRule(localContext, 596, HiveSqlParser.RULE_likeTableOrFile); + this.enterRule(localContext, 594, HiveSqlParser.RULE_likeTableOrFile); try { - this.state = 3698; + this.state = 3695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3689; + this.state = 3686; this.match(HiveSqlParser.KW_LIKE); - this.state = 3690; + this.state = 3687; this.match(HiveSqlParser.KW_FILE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3691; + this.state = 3688; this.match(HiveSqlParser.KW_LIKE); - this.state = 3692; + this.state = 3689; this.match(HiveSqlParser.KW_FILE); - this.state = 3693; + this.state = 3690; localContext._format = this.id_(); - this.state = 3694; + this.state = 3691; localContext._uri = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3696; + this.state = 3693; this.match(HiveSqlParser.KW_LIKE); - this.state = 3697; + this.state = 3694; localContext._likeName = this.tableName(); } break; @@ -17176,114 +17150,114 @@ export class HiveSqlParser extends antlr.Parser { } public createTableStatement(): CreateTableStatementContext { let localContext = new CreateTableStatementContext(this.context, this.state); - this.enterRule(localContext, 598, HiveSqlParser.RULE_createTableStatement); + this.enterRule(localContext, 596, HiveSqlParser.RULE_createTableStatement); let _la: number; try { - this.state = 3823; + this.state = 3820; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3700; + this.state = 3697; this.match(HiveSqlParser.KW_CREATE); - this.state = 3702; + this.state = 3699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3701; + this.state = 3698; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } + this.state = 3702; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 344) { + { + this.state = 3701; + localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); + } + } + this.state = 3705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 344) { - { - this.state = 3704; - localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); - } - } - - this.state = 3708; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 3707; + this.state = 3704; localContext._ext = this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 3710; + this.state = 3707; this.match(HiveSqlParser.KW_TABLE); - this.state = 3712; + this.state = 3709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3711; + this.state = 3708; this.ifNotExists(); } } - this.state = 3714; + this.state = 3711; localContext._name = this.tableNameCreate(); - this.state = 3765; + this.state = 3762; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3715; + this.state = 3712; this.likeTableOrFile(); - this.state = 3717; + this.state = 3714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 3716; + this.state = 3713; this.createTablePartitionSpec(); } } + this.state = 3717; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 290) { + { + this.state = 3716; + this.tableRowFormat(); + } + } + this.state = 3720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290) { + if (_la === 320) { { this.state = 3719; - this.tableRowFormat(); + this.tableFileFormat(); } } this.state = 3723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 188) { { this.state = 3722; - this.tableFileFormat(); + this.tableLocation(); } } this.state = 3726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { - { - this.state = 3725; - this.tableLocation(); - } - } - - this.state = 3729; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3728; + this.state = 3725; this.tablePropertiesPrefixed(); } } @@ -17346,108 +17320,108 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3735; + this.state = 3732; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { - this.state = 3731; + this.state = 3728; this.match(HiveSqlParser.LPAREN); - this.state = 3732; + this.state = 3729; this.columnNameTypeOrConstraintList(); - this.state = 3733; + this.state = 3730; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3738; + this.state = 3735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3737; + this.state = 3734; this.tableComment(); } } + this.state = 3738; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 237) { + { + this.state = 3737; + this.createTablePartitionSpec(); + } + } + this.state = 3741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 237) { + if (_la === 42) { { this.state = 3740; - this.createTablePartitionSpec(); + this.tableBuckets(); } } this.state = 3744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 42) { + if (_la === 309) { { this.state = 3743; - this.tableBuckets(); + this.tableSkewed(); } } this.state = 3747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 309) { + if (_la === 290) { { this.state = 3746; - this.tableSkewed(); + this.tableRowFormat(); } } this.state = 3750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290) { + if (_la === 320) { { this.state = 3749; - this.tableRowFormat(); + this.tableFileFormat(); } } this.state = 3753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 188) { { this.state = 3752; - this.tableFileFormat(); + this.tableLocation(); } } this.state = 3756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { - { - this.state = 3755; - this.tableLocation(); - } - } - - this.state = 3759; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3758; + this.state = 3755; this.tablePropertiesPrefixed(); } } - this.state = 3763; + this.state = 3760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3761; + this.state = 3758; this.match(HiveSqlParser.KW_AS); - this.state = 3762; + this.state = 3759; this.selectStatementWithCTE(); } } @@ -17462,67 +17436,67 @@ export class HiveSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3767; + this.state = 3764; this.match(HiveSqlParser.KW_CREATE); - this.state = 3768; + this.state = 3765; localContext._mgd = this.match(HiveSqlParser.KW_MANAGED); - this.state = 3769; + this.state = 3766; this.match(HiveSqlParser.KW_TABLE); - this.state = 3771; + this.state = 3768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3770; + this.state = 3767; this.ifNotExists(); } } - this.state = 3773; + this.state = 3770; localContext._name = this.tableNameCreate(); - this.state = 3821; + this.state = 3818; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3774; + this.state = 3771; this.likeTableOrFile(); - this.state = 3776; + this.state = 3773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 3775; + this.state = 3772; this.tableRowFormat(); } } + this.state = 3776; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 320) { + { + this.state = 3775; + this.tableFileFormat(); + } + } + this.state = 3779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 188) { { this.state = 3778; - this.tableFileFormat(); + this.tableLocation(); } } this.state = 3782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { - { - this.state = 3781; - this.tableLocation(); - } - } - - this.state = 3785; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3784; + this.state = 3781; this.tablePropertiesPrefixed(); } } @@ -17585,108 +17559,108 @@ export class HiveSqlParser extends antlr.Parser { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3791; + this.state = 3788; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: { - this.state = 3787; + this.state = 3784; this.match(HiveSqlParser.LPAREN); - this.state = 3788; + this.state = 3785; this.columnNameTypeOrConstraintList(); - this.state = 3789; + this.state = 3786; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3794; + this.state = 3791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3793; + this.state = 3790; this.tableComment(); } } + this.state = 3794; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 237) { + { + this.state = 3793; + this.createTablePartitionSpec(); + } + } + this.state = 3797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 237) { + if (_la === 42) { { this.state = 3796; - this.createTablePartitionSpec(); + this.tableBuckets(); } } this.state = 3800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 42) { + if (_la === 309) { { this.state = 3799; - this.tableBuckets(); + this.tableSkewed(); } } this.state = 3803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 309) { + if (_la === 290) { { this.state = 3802; - this.tableSkewed(); + this.tableRowFormat(); } } this.state = 3806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290) { + if (_la === 320) { { this.state = 3805; - this.tableRowFormat(); + this.tableFileFormat(); } } this.state = 3809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 188) { { this.state = 3808; - this.tableFileFormat(); + this.tableLocation(); } } this.state = 3812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { - { - this.state = 3811; - this.tableLocation(); - } - } - - this.state = 3815; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3814; + this.state = 3811; this.tablePropertiesPrefixed(); } } - this.state = 3819; + this.state = 3816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3817; + this.state = 3814; this.match(HiveSqlParser.KW_AS); - this.state = 3818; + this.state = 3815; this.selectStatementWithCTE(); } } @@ -17716,67 +17690,67 @@ export class HiveSqlParser extends antlr.Parser { } public createDataConnectorStatement(): CreateDataConnectorStatementContext { let localContext = new CreateDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 600, HiveSqlParser.RULE_createDataConnectorStatement); + this.enterRule(localContext, 598, HiveSqlParser.RULE_createDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3825; + this.state = 3822; this.match(HiveSqlParser.KW_CREATE); - this.state = 3826; + this.state = 3823; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3828; + this.state = 3825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3827; + this.state = 3824; this.ifNotExists(); } } - this.state = 3830; + this.state = 3827; localContext._name = this.id_(); - this.state = 3832; + this.state = 3829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 3831; + this.state = 3828; this.dataConnectorType(); } } + this.state = 3832; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 366) { + { + this.state = 3831; + this.dataConnectorUrl(); + } + } + this.state = 3835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 366) { - { - this.state = 3834; - this.dataConnectorUrl(); - } - } - - this.state = 3838; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3837; + this.state = 3834; this.dataConnectorComment(); } } - this.state = 3843; + this.state = 3840; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3840; + this.state = 3837; this.match(HiveSqlParser.KW_WITH); - this.state = 3841; + this.state = 3838; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3842; + this.state = 3839; localContext._dcprops = this.dcProperties(); } break; @@ -17799,13 +17773,13 @@ export class HiveSqlParser extends antlr.Parser { } public dataConnectorComment(): DataConnectorCommentContext { let localContext = new DataConnectorCommentContext(this.context, this.state); - this.enterRule(localContext, 602, HiveSqlParser.RULE_dataConnectorComment); + this.enterRule(localContext, 600, HiveSqlParser.RULE_dataConnectorComment); try { this.enterOuterAlt(localContext, 1); { - this.state = 3845; + this.state = 3842; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3846; + this.state = 3843; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -17825,13 +17799,13 @@ export class HiveSqlParser extends antlr.Parser { } public dataConnectorUrl(): DataConnectorUrlContext { let localContext = new DataConnectorUrlContext(this.context, this.state); - this.enterRule(localContext, 604, HiveSqlParser.RULE_dataConnectorUrl); + this.enterRule(localContext, 602, HiveSqlParser.RULE_dataConnectorUrl); try { this.enterOuterAlt(localContext, 1); { - this.state = 3848; + this.state = 3845; this.match(HiveSqlParser.KW_URL); - this.state = 3849; + this.state = 3846; localContext._url = this.match(HiveSqlParser.StringLiteral); } } @@ -17851,13 +17825,13 @@ export class HiveSqlParser extends antlr.Parser { } public dataConnectorType(): DataConnectorTypeContext { let localContext = new DataConnectorTypeContext(this.context, this.state); - this.enterRule(localContext, 606, HiveSqlParser.RULE_dataConnectorType); + this.enterRule(localContext, 604, HiveSqlParser.RULE_dataConnectorType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3851; + this.state = 3848; this.match(HiveSqlParser.KW_TYPE); - this.state = 3852; + this.state = 3849; localContext._dcType = this.match(HiveSqlParser.StringLiteral); } } @@ -17877,15 +17851,15 @@ export class HiveSqlParser extends antlr.Parser { } public dcProperties(): DcPropertiesContext { let localContext = new DcPropertiesContext(this.context, this.state); - this.enterRule(localContext, 608, HiveSqlParser.RULE_dcProperties); + this.enterRule(localContext, 606, HiveSqlParser.RULE_dcProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 3854; + this.state = 3851; this.match(HiveSqlParser.LPAREN); - this.state = 3855; + this.state = 3852; this.dbPropertiesList(); - this.state = 3856; + this.state = 3853; this.match(HiveSqlParser.RPAREN); } } @@ -17905,26 +17879,26 @@ export class HiveSqlParser extends antlr.Parser { } public dropDataConnectorStatement(): DropDataConnectorStatementContext { let localContext = new DropDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 610, HiveSqlParser.RULE_dropDataConnectorStatement); + this.enterRule(localContext, 608, HiveSqlParser.RULE_dropDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3858; + this.state = 3855; this.match(HiveSqlParser.KW_DROP); - this.state = 3859; + this.state = 3856; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3861; + this.state = 3858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3860; + this.state = 3857; this.ifExists(); } } - this.state = 3863; + this.state = 3860; this.id_(); } } @@ -17944,269 +17918,29 @@ export class HiveSqlParser extends antlr.Parser { } public tableAllColumns(): TableAllColumnsContext { let localContext = new TableAllColumnsContext(this.context, this.state); - this.enterRule(localContext, 612, HiveSqlParser.RULE_tableAllColumns); + this.enterRule(localContext, 610, HiveSqlParser.RULE_tableAllColumns); + let _la: number; try { - this.state = 3870; + this.enterOuterAlt(localContext, 1); + { + this.state = 3867; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case HiveSqlParser.STAR: - this.enterOuterAlt(localContext, 1); + _la = this.tokenStream.LA(1); + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3723969527) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 2255187435) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 929578221) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4039901127) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3755917179) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 3402225181) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 4238323319) !== 0) || _la === 393 || _la === 431) { { - this.state = 3865; - this.match(HiveSqlParser.STAR); - } - break; - case HiveSqlParser.KW_ABORT: - case HiveSqlParser.KW_ACTIVATE: - case HiveSqlParser.KW_ACTIVE: - case HiveSqlParser.KW_ADD: - case HiveSqlParser.KW_ADMIN: - case HiveSqlParser.KW_AFTER: - case HiveSqlParser.KW_ALLOC_FRACTION: - case HiveSqlParser.KW_ANALYZE: - case HiveSqlParser.KW_ARCHIVE: - case HiveSqlParser.KW_ASC: - case HiveSqlParser.KW_AST: - case HiveSqlParser.KW_AT: - case HiveSqlParser.KW_AUTOCOMMIT: - case HiveSqlParser.KW_BATCH: - case HiveSqlParser.KW_BEFORE: - case HiveSqlParser.KW_BUCKET: - case HiveSqlParser.KW_BUCKETS: - case HiveSqlParser.KW_CACHE: - case HiveSqlParser.KW_CASCADE: - case HiveSqlParser.KW_CBO: - case HiveSqlParser.KW_CHANGE: - case HiveSqlParser.KW_CHECK: - case HiveSqlParser.KW_CLUSTER: - case HiveSqlParser.KW_CLUSTERED: - case HiveSqlParser.KW_CLUSTERSTATUS: - case HiveSqlParser.KW_COLLECTION: - case HiveSqlParser.KW_COLUMNS: - case HiveSqlParser.KW_COMMENT: - case HiveSqlParser.KW_COMPACT: - case HiveSqlParser.KW_COMPACTIONS: - case HiveSqlParser.KW_COMPUTE: - case HiveSqlParser.KW_CONCATENATE: - case HiveSqlParser.KW_CONTINUE: - case HiveSqlParser.KW_COST: - case HiveSqlParser.KW_CRON: - case HiveSqlParser.KW_DATA: - case HiveSqlParser.KW_DATABASES: - case HiveSqlParser.KW_DATETIME: - case HiveSqlParser.KW_DAY: - case HiveSqlParser.KW_DAYS: - case HiveSqlParser.KW_DAYOFWEEK: - case HiveSqlParser.KW_DBPROPERTIES: - case HiveSqlParser.KW_DCPROPERTIES: - case HiveSqlParser.KW_DEBUG: - case HiveSqlParser.KW_DEFAULT: - case HiveSqlParser.KW_DEFERRED: - case HiveSqlParser.KW_DEFINED: - case HiveSqlParser.KW_DELIMITED: - case HiveSqlParser.KW_DEPENDENCY: - case HiveSqlParser.KW_DESC: - case HiveSqlParser.KW_DETAIL: - case HiveSqlParser.KW_DIRECTORIES: - case HiveSqlParser.KW_DIRECTORY: - case HiveSqlParser.KW_DISABLE: - case HiveSqlParser.KW_DISABLED: - case HiveSqlParser.KW_DISTRIBUTE: - case HiveSqlParser.KW_DISTRIBUTED: - case HiveSqlParser.KW_DO: - case HiveSqlParser.KW_DUMP: - case HiveSqlParser.KW_ELEM_TYPE: - case HiveSqlParser.KW_ENABLE: - case HiveSqlParser.KW_ENABLED: - case HiveSqlParser.KW_ENFORCED: - case HiveSqlParser.KW_ESCAPED: - case HiveSqlParser.KW_EVERY: - case HiveSqlParser.KW_EXCLUSIVE: - case HiveSqlParser.KW_EXECUTE: - case HiveSqlParser.KW_EXECUTED: - case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: - case HiveSqlParser.KW_EXPLAIN: - case HiveSqlParser.KW_EXPORT: - case HiveSqlParser.KW_EXPRESSION: - case HiveSqlParser.KW_FIELDS: - case HiveSqlParser.KW_FILE: - case HiveSqlParser.KW_FILEFORMAT: - case HiveSqlParser.KW_FIRST: - case HiveSqlParser.KW_FORMAT: - case HiveSqlParser.KW_FORMATTED: - case HiveSqlParser.KW_FUNCTIONS: - case HiveSqlParser.KW_HOLD_DDLTIME: - case HiveSqlParser.KW_HOUR: - case HiveSqlParser.KW_HOURS: - case HiveSqlParser.KW_IDXPROPERTIES: - case HiveSqlParser.KW_IGNORE: - case HiveSqlParser.KW_INDEX: - case HiveSqlParser.KW_INDEXES: - case HiveSqlParser.KW_INPATH: - case HiveSqlParser.KW_INPUTDRIVER: - case HiveSqlParser.KW_INPUTFORMAT: - case HiveSqlParser.KW_ISOLATION: - case HiveSqlParser.KW_ITEMS: - case HiveSqlParser.KW_JAR: - case HiveSqlParser.KW_JOINCOST: - case HiveSqlParser.KW_KEY: - case HiveSqlParser.KW_KEYS: - case HiveSqlParser.KW_KEY_TYPE: - case HiveSqlParser.KW_KILL: - case HiveSqlParser.KW_LAST: - case HiveSqlParser.KW_LEVEL: - case HiveSqlParser.KW_LIMIT: - case HiveSqlParser.KW_LINES: - case HiveSqlParser.KW_LOAD: - case HiveSqlParser.KW_LOCATION: - case HiveSqlParser.KW_LOCK: - case HiveSqlParser.KW_LOCKS: - case HiveSqlParser.KW_LOGICAL: - case HiveSqlParser.KW_LONG: - case HiveSqlParser.KW_MANAGED: - case HiveSqlParser.KW_MANAGEDLOCATION: - case HiveSqlParser.KW_MANAGEMENT: - case HiveSqlParser.KW_MAPJOIN: - case HiveSqlParser.KW_MAPPING: - case HiveSqlParser.KW_MATCHED: - case HiveSqlParser.KW_MATERIALIZED: - case HiveSqlParser.KW_METADATA: - case HiveSqlParser.KW_MINUTE: - case HiveSqlParser.KW_MINUTES: - case HiveSqlParser.KW_MONTH: - case HiveSqlParser.KW_MONTHS: - case HiveSqlParser.KW_MOVE: - case HiveSqlParser.KW_MSCK: - case HiveSqlParser.KW_NORELY: - case HiveSqlParser.KW_NOSCAN: - case HiveSqlParser.KW_NOVALIDATE: - case HiveSqlParser.KW_NO_DROP: - case HiveSqlParser.KW_NULLS: - case HiveSqlParser.KW_OFFLINE: - case HiveSqlParser.KW_OFFSET: - case HiveSqlParser.KW_OPERATOR: - case HiveSqlParser.KW_OPTION: - case HiveSqlParser.KW_OUTPUTDRIVER: - case HiveSqlParser.KW_OUTPUTFORMAT: - case HiveSqlParser.KW_OVERWRITE: - case HiveSqlParser.KW_OWNER: - case HiveSqlParser.KW_PARTITIONED: - case HiveSqlParser.KW_PARTITIONS: - case HiveSqlParser.KW_PATH: - case HiveSqlParser.KW_PLAN: - case HiveSqlParser.KW_PLANS: - case HiveSqlParser.KW_PLUS: - case HiveSqlParser.KW_POOL: - case HiveSqlParser.KW_PRINCIPALS: - case HiveSqlParser.KW_PROTECTION: - case HiveSqlParser.KW_PURGE: - case HiveSqlParser.KW_QUARTER: - case HiveSqlParser.KW_QUERY: - case HiveSqlParser.KW_QUERY_PARALLELISM: - case HiveSqlParser.KW_READ: - case HiveSqlParser.KW_READONLY: - case HiveSqlParser.KW_REBUILD: - case HiveSqlParser.KW_RECORDREADER: - case HiveSqlParser.KW_RECORDWRITER: - case HiveSqlParser.KW_RELOAD: - case HiveSqlParser.KW_RELY: - case HiveSqlParser.KW_REMOTE: - case HiveSqlParser.KW_RENAME: - case HiveSqlParser.KW_REOPTIMIZATION: - case HiveSqlParser.KW_REPAIR: - case HiveSqlParser.KW_REPL: - case HiveSqlParser.KW_REPLACE: - case HiveSqlParser.KW_REPLICATION: - case HiveSqlParser.KW_RESOURCE: - case HiveSqlParser.KW_RESPECT: - case HiveSqlParser.KW_RESTRICT: - case HiveSqlParser.KW_REWRITE: - case HiveSqlParser.KW_ROLE: - case HiveSqlParser.KW_ROLES: - case HiveSqlParser.KW_SCHEDULED: - case HiveSqlParser.KW_SCHEDULING_POLICY: - case HiveSqlParser.KW_SCHEMA: - case HiveSqlParser.KW_SCHEMAS: - case HiveSqlParser.KW_SECOND: - case HiveSqlParser.KW_SECONDS: - case HiveSqlParser.KW_SEMI: - case HiveSqlParser.KW_SERDE: - case HiveSqlParser.KW_SERDEPROPERTIES: - case HiveSqlParser.KW_SERVER: - case HiveSqlParser.KW_SETS: - case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: - case HiveSqlParser.KW_SHARED: - case HiveSqlParser.KW_SHOW: - case HiveSqlParser.KW_SHOW_DATABASE: - case HiveSqlParser.KW_SKEWED: - case HiveSqlParser.KW_SNAPSHOT: - case HiveSqlParser.KW_SORT: - case HiveSqlParser.KW_SORTED: - case HiveSqlParser.KW_SPEC: - case HiveSqlParser.KW_SSL: - case HiveSqlParser.KW_STATISTICS: - case HiveSqlParser.KW_STATUS: - case HiveSqlParser.KW_STORED: - case HiveSqlParser.KW_STREAMTABLE: - case HiveSqlParser.KW_STRING: - case HiveSqlParser.KW_STRUCT: - case HiveSqlParser.KW_SUMMARY: - case HiveSqlParser.KW_SYSTEM_TIME: - case HiveSqlParser.KW_SYSTEM_VERSION: - case HiveSqlParser.KW_TABLES: - case HiveSqlParser.KW_TBLPROPERTIES: - case HiveSqlParser.KW_TEMPORARY: - case HiveSqlParser.KW_TERMINATED: - case HiveSqlParser.KW_TIMESTAMPTZ: - case HiveSqlParser.KW_TINYINT: - case HiveSqlParser.KW_TOUCH: - case HiveSqlParser.KW_TRANSACTION: - case HiveSqlParser.KW_TRANSACTIONAL: - case HiveSqlParser.KW_TRANSACTIONS: - case HiveSqlParser.KW_TRIM: - case HiveSqlParser.KW_TYPE: - case HiveSqlParser.KW_UNARCHIVE: - case HiveSqlParser.KW_UNDO: - case HiveSqlParser.KW_UNIONTYPE: - case HiveSqlParser.KW_UNKNOWN: - case HiveSqlParser.KW_UNLOCK: - case HiveSqlParser.KW_UNMANAGED: - case HiveSqlParser.KW_UNSET: - case HiveSqlParser.KW_UNSIGNED: - case HiveSqlParser.KW_URI: - case HiveSqlParser.KW_URL: - case HiveSqlParser.KW_USE: - case HiveSqlParser.KW_UTC: - case HiveSqlParser.KW_UTCTIMESTAMP: - case HiveSqlParser.KW_VALIDATE: - case HiveSqlParser.KW_VALUE_TYPE: - case HiveSqlParser.KW_VECTORIZATION: - case HiveSqlParser.KW_VIEW: - case HiveSqlParser.KW_VIEWS: - case HiveSqlParser.KW_WAIT: - case HiveSqlParser.KW_WEEK: - case HiveSqlParser.KW_WEEKS: - case HiveSqlParser.KW_WHILE: - case HiveSqlParser.KW_WITHIN: - case HiveSqlParser.KW_WORK: - case HiveSqlParser.KW_WORKLOAD: - case HiveSqlParser.KW_WRITE: - case HiveSqlParser.KW_YEAR: - case HiveSqlParser.KW_YEARS: - case HiveSqlParser.KW_ZONE: - case HiveSqlParser.Identifier: - this.enterOuterAlt(localContext, 2); { - this.state = 3866; - this.tableOrView(); - this.state = 3867; + this.state = 3862; + this.id_(); + this.state = 3863; this.match(HiveSqlParser.DOT); - this.state = 3868; - this.match(HiveSqlParser.STAR); } - break; - default: - throw new antlr.NoViableAltException(this); + } + this.state = 3869; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 3870; + this.match(HiveSqlParser.STAR); } } catch (re) { @@ -18225,7 +17959,7 @@ export class HiveSqlParser extends antlr.Parser { } public defaultValue(): DefaultValueContext { let localContext = new DefaultValueContext(this.context, this.state); - this.enterRule(localContext, 614, HiveSqlParser.RULE_defaultValue); + this.enterRule(localContext, 612, HiveSqlParser.RULE_defaultValue); try { this.enterOuterAlt(localContext, 1); { @@ -18249,7 +17983,7 @@ export class HiveSqlParser extends antlr.Parser { } public expressionList(): ExpressionListContext { let localContext = new ExpressionListContext(this.context, this.state); - this.enterRule(localContext, 616, HiveSqlParser.RULE_expressionList); + this.enterRule(localContext, 614, HiveSqlParser.RULE_expressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -18290,7 +18024,7 @@ export class HiveSqlParser extends antlr.Parser { } public aliasList(): AliasListContext { let localContext = new AliasListContext(this.context, this.state); - this.enterRule(localContext, 618, HiveSqlParser.RULE_aliasList); + this.enterRule(localContext, 616, HiveSqlParser.RULE_aliasList); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -18331,7 +18065,7 @@ export class HiveSqlParser extends antlr.Parser { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 620, HiveSqlParser.RULE_fromClause); + this.enterRule(localContext, 618, HiveSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { @@ -18357,7 +18091,7 @@ export class HiveSqlParser extends antlr.Parser { } public fromSource(): FromSourceContext { let localContext = new FromSourceContext(this.context, this.state); - this.enterRule(localContext, 622, HiveSqlParser.RULE_fromSource); + this.enterRule(localContext, 620, HiveSqlParser.RULE_fromSource); let _la: number; try { this.state = 3902; @@ -18655,7 +18389,7 @@ export class HiveSqlParser extends antlr.Parser { } public atomjoinSource(): AtomjoinSourceContext { let localContext = new AtomjoinSourceContext(this.context, this.state); - this.enterRule(localContext, 624, HiveSqlParser.RULE_atomjoinSource); + this.enterRule(localContext, 622, HiveSqlParser.RULE_atomjoinSource); try { let alternative: number; this.state = 3936; @@ -18782,7 +18516,7 @@ export class HiveSqlParser extends antlr.Parser { } public joinSource(): JoinSourceContext { let localContext = new JoinSourceContext(this.context, this.state); - this.enterRule(localContext, 626, HiveSqlParser.RULE_joinSource); + this.enterRule(localContext, 624, HiveSqlParser.RULE_joinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -18914,7 +18648,7 @@ export class HiveSqlParser extends antlr.Parser { } public joinSourcePart(): JoinSourcePartContext { let localContext = new JoinSourcePartContext(this.context, this.state); - this.enterRule(localContext, 628, HiveSqlParser.RULE_joinSourcePart); + this.enterRule(localContext, 626, HiveSqlParser.RULE_joinSourcePart); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -18981,7 +18715,7 @@ export class HiveSqlParser extends antlr.Parser { } public uniqueJoinSource(): UniqueJoinSourceContext { let localContext = new UniqueJoinSourceContext(this.context, this.state); - this.enterRule(localContext, 630, HiveSqlParser.RULE_uniqueJoinSource); + this.enterRule(localContext, 628, HiveSqlParser.RULE_uniqueJoinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -19018,7 +18752,7 @@ export class HiveSqlParser extends antlr.Parser { } public uniqueJoinExpr(): UniqueJoinExprContext { let localContext = new UniqueJoinExprContext(this.context, this.state); - this.enterRule(localContext, 632, HiveSqlParser.RULE_uniqueJoinExpr); + this.enterRule(localContext, 630, HiveSqlParser.RULE_uniqueJoinExpr); try { this.enterOuterAlt(localContext, 1); { @@ -19046,7 +18780,7 @@ export class HiveSqlParser extends antlr.Parser { } public uniqueJoinToken(): UniqueJoinTokenContext { let localContext = new UniqueJoinTokenContext(this.context, this.state); - this.enterRule(localContext, 634, HiveSqlParser.RULE_uniqueJoinToken); + this.enterRule(localContext, 632, HiveSqlParser.RULE_uniqueJoinToken); try { this.enterOuterAlt(localContext, 1); { @@ -19070,7 +18804,7 @@ export class HiveSqlParser extends antlr.Parser { } public joinToken(): JoinTokenContext { let localContext = new JoinTokenContext(this.context, this.state); - this.enterRule(localContext, 636, HiveSqlParser.RULE_joinToken); + this.enterRule(localContext, 634, HiveSqlParser.RULE_joinToken); let _la: number; try { this.state = 3990; @@ -19182,7 +18916,7 @@ export class HiveSqlParser extends antlr.Parser { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 638, HiveSqlParser.RULE_lateralView); + this.enterRule(localContext, 636, HiveSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; @@ -19369,7 +19103,7 @@ export class HiveSqlParser extends antlr.Parser { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 640, HiveSqlParser.RULE_tableAlias); + this.enterRule(localContext, 638, HiveSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { @@ -19393,7 +19127,7 @@ export class HiveSqlParser extends antlr.Parser { } public tableBucketSample(): TableBucketSampleContext { let localContext = new TableBucketSampleContext(this.context, this.state); - this.enterRule(localContext, 642, HiveSqlParser.RULE_tableBucketSample); + this.enterRule(localContext, 640, HiveSqlParser.RULE_tableBucketSample); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -19462,7 +19196,7 @@ export class HiveSqlParser extends antlr.Parser { } public splitSample(): SplitSampleContext { let localContext = new SplitSampleContext(this.context, this.state); - this.enterRule(localContext, 644, HiveSqlParser.RULE_splitSample); + this.enterRule(localContext, 642, HiveSqlParser.RULE_splitSample); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -19518,7 +19252,7 @@ export class HiveSqlParser extends antlr.Parser { } public tableSample(): TableSampleContext { let localContext = new TableSampleContext(this.context, this.state); - this.enterRule(localContext, 646, HiveSqlParser.RULE_tableSample); + this.enterRule(localContext, 644, HiveSqlParser.RULE_tableSample); try { this.state = 4084; this.errorHandler.sync(this); @@ -19555,7 +19289,7 @@ export class HiveSqlParser extends antlr.Parser { } public tableSource(): TableSourceContext { let localContext = new TableSourceContext(this.context, this.state); - this.enterRule(localContext, 648, HiveSqlParser.RULE_tableSource); + this.enterRule(localContext, 646, HiveSqlParser.RULE_tableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -19630,7 +19364,7 @@ export class HiveSqlParser extends antlr.Parser { } public asOfClause(): AsOfClauseContext { let localContext = new AsOfClauseContext(this.context, this.state); - this.enterRule(localContext, 650, HiveSqlParser.RULE_asOfClause); + this.enterRule(localContext, 648, HiveSqlParser.RULE_asOfClause); try { this.enterOuterAlt(localContext, 1); { @@ -19686,7 +19420,7 @@ export class HiveSqlParser extends antlr.Parser { } public uniqueJoinTableSource(): UniqueJoinTableSourceContext { let localContext = new UniqueJoinTableSourceContext(this.context, this.state); - this.enterRule(localContext, 652, HiveSqlParser.RULE_uniqueJoinTableSource); + this.enterRule(localContext, 650, HiveSqlParser.RULE_uniqueJoinTableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -19741,7 +19475,7 @@ export class HiveSqlParser extends antlr.Parser { } public dbSchemaName(): DbSchemaNameContext { let localContext = new DbSchemaNameContext(this.context, this.state); - this.enterRule(localContext, 654, HiveSqlParser.RULE_dbSchemaName); + this.enterRule(localContext, 652, HiveSqlParser.RULE_dbSchemaName); try { this.enterOuterAlt(localContext, 1); { @@ -19765,7 +19499,7 @@ export class HiveSqlParser extends antlr.Parser { } public dbSchemaNameCreate(): DbSchemaNameCreateContext { let localContext = new DbSchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 656, HiveSqlParser.RULE_dbSchemaNameCreate); + this.enterRule(localContext, 654, HiveSqlParser.RULE_dbSchemaNameCreate); try { this.enterOuterAlt(localContext, 1); { @@ -19789,7 +19523,7 @@ export class HiveSqlParser extends antlr.Parser { } public tableOrView(): TableOrViewContext { let localContext = new TableOrViewContext(this.context, this.state); - this.enterRule(localContext, 658, HiveSqlParser.RULE_tableOrView); + this.enterRule(localContext, 656, HiveSqlParser.RULE_tableOrView); try { this.state = 4130; this.errorHandler.sync(this); @@ -19826,7 +19560,7 @@ export class HiveSqlParser extends antlr.Parser { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 660, HiveSqlParser.RULE_tableName); + this.enterRule(localContext, 658, HiveSqlParser.RULE_tableName); try { this.state = 4140; this.errorHandler.sync(this); @@ -19879,7 +19613,7 @@ export class HiveSqlParser extends antlr.Parser { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 662, HiveSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 660, HiveSqlParser.RULE_tableNameCreate); let _la: number; try { this.state = 4150; @@ -19933,7 +19667,7 @@ export class HiveSqlParser extends antlr.Parser { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 664, HiveSqlParser.RULE_viewName); + this.enterRule(localContext, 662, HiveSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { @@ -19969,7 +19703,7 @@ export class HiveSqlParser extends antlr.Parser { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 666, HiveSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 664, HiveSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { @@ -20005,7 +19739,7 @@ export class HiveSqlParser extends antlr.Parser { } public subQuerySource(): SubQuerySourceContext { let localContext = new SubQuerySourceContext(this.context, this.state); - this.enterRule(localContext, 668, HiveSqlParser.RULE_subQuerySource); + this.enterRule(localContext, 666, HiveSqlParser.RULE_subQuerySource); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -20046,7 +19780,7 @@ export class HiveSqlParser extends antlr.Parser { } public partitioningSpec(): PartitioningSpecContext { let localContext = new PartitioningSpecContext(this.context, this.state); - this.enterRule(localContext, 670, HiveSqlParser.RULE_partitioningSpec); + this.enterRule(localContext, 668, HiveSqlParser.RULE_partitioningSpec); let _la: number; try { this.state = 4185; @@ -20127,7 +19861,7 @@ export class HiveSqlParser extends antlr.Parser { } public partitionTableFunctionSource(): PartitionTableFunctionSourceContext { let localContext = new PartitionTableFunctionSourceContext(this.context, this.state); - this.enterRule(localContext, 672, HiveSqlParser.RULE_partitionTableFunctionSource); + this.enterRule(localContext, 670, HiveSqlParser.RULE_partitionTableFunctionSource); try { this.state = 4190; this.errorHandler.sync(this); @@ -20171,7 +19905,7 @@ export class HiveSqlParser extends antlr.Parser { } public partitionedTableFunction(): PartitionedTableFunctionContext { let localContext = new PartitionedTableFunctionContext(this.context, this.state); - this.enterRule(localContext, 674, HiveSqlParser.RULE_partitionedTableFunction); + this.enterRule(localContext, 672, HiveSqlParser.RULE_partitionedTableFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -20262,7 +19996,7 @@ export class HiveSqlParser extends antlr.Parser { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 676, HiveSqlParser.RULE_whereClause); + this.enterRule(localContext, 674, HiveSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { @@ -20288,7 +20022,7 @@ export class HiveSqlParser extends antlr.Parser { } public searchCondition(): SearchConditionContext { let localContext = new SearchConditionContext(this.context, this.state); - this.enterRule(localContext, 678, HiveSqlParser.RULE_searchCondition); + this.enterRule(localContext, 676, HiveSqlParser.RULE_searchCondition); try { this.enterOuterAlt(localContext, 1); { @@ -20312,7 +20046,7 @@ export class HiveSqlParser extends antlr.Parser { } public valuesSource(): ValuesSourceContext { let localContext = new ValuesSourceContext(this.context, this.state); - this.enterRule(localContext, 680, HiveSqlParser.RULE_valuesSource); + this.enterRule(localContext, 678, HiveSqlParser.RULE_valuesSource); try { this.enterOuterAlt(localContext, 1); { @@ -20336,7 +20070,7 @@ export class HiveSqlParser extends antlr.Parser { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 682, HiveSqlParser.RULE_valuesClause); + this.enterRule(localContext, 680, HiveSqlParser.RULE_valuesClause); try { this.enterOuterAlt(localContext, 1); { @@ -20362,7 +20096,7 @@ export class HiveSqlParser extends antlr.Parser { } public valuesTableConstructor(): ValuesTableConstructorContext { let localContext = new ValuesTableConstructorContext(this.context, this.state); - this.enterRule(localContext, 684, HiveSqlParser.RULE_valuesTableConstructor); + this.enterRule(localContext, 682, HiveSqlParser.RULE_valuesTableConstructor); let _la: number; try { this.state = 4246; @@ -20432,7 +20166,7 @@ export class HiveSqlParser extends antlr.Parser { } public valueRowConstructor(): ValueRowConstructorContext { let localContext = new ValueRowConstructorContext(this.context, this.state); - this.enterRule(localContext, 686, HiveSqlParser.RULE_valueRowConstructor); + this.enterRule(localContext, 684, HiveSqlParser.RULE_valueRowConstructor); try { this.enterOuterAlt(localContext, 1); { @@ -20456,7 +20190,7 @@ export class HiveSqlParser extends antlr.Parser { } public firstValueRowConstructor(): FirstValueRowConstructorContext { let localContext = new FirstValueRowConstructorContext(this.context, this.state); - this.enterRule(localContext, 688, HiveSqlParser.RULE_firstValueRowConstructor); + this.enterRule(localContext, 686, HiveSqlParser.RULE_firstValueRowConstructor); try { this.enterOuterAlt(localContext, 1); { @@ -20484,7 +20218,7 @@ export class HiveSqlParser extends antlr.Parser { } public virtualTableSource(): VirtualTableSourceContext { let localContext = new VirtualTableSourceContext(this.context, this.state); - this.enterRule(localContext, 690, HiveSqlParser.RULE_virtualTableSource); + this.enterRule(localContext, 688, HiveSqlParser.RULE_virtualTableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -20557,8 +20291,7 @@ export class HiveSqlParser extends antlr.Parser { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 692, HiveSqlParser.RULE_selectClause); - let _la: number; + this.enterRule(localContext, 690, HiveSqlParser.RULE_selectClause); try { this.state = 4288; this.errorHandler.sync(this); @@ -20570,335 +20303,34 @@ export class HiveSqlParser extends antlr.Parser { this.match(HiveSqlParser.KW_SELECT); this.state = 4277; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 435) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { + case 1: { this.state = 4276; this.match(HiveSqlParser.QUERY_HINT); } + break; } - this.state = 4285; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case HiveSqlParser.KW_ABORT: - case HiveSqlParser.KW_ACTIVATE: - case HiveSqlParser.KW_ACTIVE: - case HiveSqlParser.KW_ADD: - case HiveSqlParser.KW_ADMIN: - case HiveSqlParser.KW_AFTER: - case HiveSqlParser.KW_ALL: - case HiveSqlParser.KW_ALLOC_FRACTION: - case HiveSqlParser.KW_ANALYZE: - case HiveSqlParser.KW_AND: - case HiveSqlParser.KW_ARCHIVE: - case HiveSqlParser.KW_ARRAY: - case HiveSqlParser.KW_ASC: - case HiveSqlParser.KW_AST: - case HiveSqlParser.KW_AT: - case HiveSqlParser.KW_AUTOCOMMIT: - case HiveSqlParser.KW_BATCH: - case HiveSqlParser.KW_BEFORE: - case HiveSqlParser.KW_BETWEEN: - case HiveSqlParser.KW_BIGINT: - case HiveSqlParser.KW_BINARY: - case HiveSqlParser.KW_BOOLEAN: - case HiveSqlParser.KW_BUCKET: - case HiveSqlParser.KW_BUCKETS: - case HiveSqlParser.KW_CACHE: - case HiveSqlParser.KW_CASCADE: - case HiveSqlParser.KW_CASE: - case HiveSqlParser.KW_CAST: - case HiveSqlParser.KW_CBO: - case HiveSqlParser.KW_CHANGE: - case HiveSqlParser.KW_CHECK: - case HiveSqlParser.KW_CLUSTER: - case HiveSqlParser.KW_CLUSTERED: - case HiveSqlParser.KW_CLUSTERSTATUS: - case HiveSqlParser.KW_COLLECTION: - case HiveSqlParser.KW_COLUMNS: - case HiveSqlParser.KW_COMMENT: - case HiveSqlParser.KW_COMPACT: - case HiveSqlParser.KW_COMPACTIONS: - case HiveSqlParser.KW_COMPUTE: - case HiveSqlParser.KW_CONCATENATE: - case HiveSqlParser.KW_CONTINUE: - case HiveSqlParser.KW_COST: - case HiveSqlParser.KW_CRON: - case HiveSqlParser.KW_CURRENT_DATE: - case HiveSqlParser.KW_CURRENT_TIMESTAMP: - case HiveSqlParser.KW_DATA: - case HiveSqlParser.KW_DATABASES: - case HiveSqlParser.KW_DATE: - case HiveSqlParser.KW_DATETIME: - case HiveSqlParser.KW_DAY: - case HiveSqlParser.KW_DAYS: - case HiveSqlParser.KW_DAYOFWEEK: - case HiveSqlParser.KW_DBPROPERTIES: - case HiveSqlParser.KW_DCPROPERTIES: - case HiveSqlParser.KW_DEBUG: - case HiveSqlParser.KW_DEFAULT: - case HiveSqlParser.KW_DEFERRED: - case HiveSqlParser.KW_DEFINED: - case HiveSqlParser.KW_DELIMITED: - case HiveSqlParser.KW_DEPENDENCY: - case HiveSqlParser.KW_DESC: - case HiveSqlParser.KW_DETAIL: - case HiveSqlParser.KW_DIRECTORIES: - case HiveSqlParser.KW_DIRECTORY: - case HiveSqlParser.KW_DISABLE: - case HiveSqlParser.KW_DISABLED: - case HiveSqlParser.KW_DISTINCT: - case HiveSqlParser.KW_DISTRIBUTE: - case HiveSqlParser.KW_DISTRIBUTED: - case HiveSqlParser.KW_DO: - case HiveSqlParser.KW_DOUBLE: - case HiveSqlParser.KW_DUMP: - case HiveSqlParser.KW_ELEM_TYPE: - case HiveSqlParser.KW_ENABLE: - case HiveSqlParser.KW_ENABLED: - case HiveSqlParser.KW_ENFORCED: - case HiveSqlParser.KW_ESCAPED: - case HiveSqlParser.KW_EVERY: - case HiveSqlParser.KW_EXCLUSIVE: - case HiveSqlParser.KW_EXECUTE: - case HiveSqlParser.KW_EXECUTED: - case HiveSqlParser.KW_EXISTS: - case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: - case HiveSqlParser.KW_EXPLAIN: - case HiveSqlParser.KW_EXPORT: - case HiveSqlParser.KW_EXPRESSION: - case HiveSqlParser.KW_EXTRACT: - case HiveSqlParser.KW_FALSE: - case HiveSqlParser.KW_FIELDS: - case HiveSqlParser.KW_FILE: - case HiveSqlParser.KW_FILEFORMAT: - case HiveSqlParser.KW_FIRST: - case HiveSqlParser.KW_FLOAT: - case HiveSqlParser.KW_FLOOR: - case HiveSqlParser.KW_FORMAT: - case HiveSqlParser.KW_FORMATTED: - case HiveSqlParser.KW_FUNCTIONS: - case HiveSqlParser.KW_GROUPING: - case HiveSqlParser.KW_HOLD_DDLTIME: - case HiveSqlParser.KW_HOUR: - case HiveSqlParser.KW_HOURS: - case HiveSqlParser.KW_IDXPROPERTIES: - case HiveSqlParser.KW_IF: - case HiveSqlParser.KW_IGNORE: - case HiveSqlParser.KW_IN: - case HiveSqlParser.KW_INDEX: - case HiveSqlParser.KW_INDEXES: - case HiveSqlParser.KW_INPATH: - case HiveSqlParser.KW_INPUTDRIVER: - case HiveSqlParser.KW_INPUTFORMAT: - case HiveSqlParser.KW_INT: - case HiveSqlParser.KW_INTEGER: - case HiveSqlParser.KW_INTERVAL: - case HiveSqlParser.KW_ISOLATION: - case HiveSqlParser.KW_ITEMS: - case HiveSqlParser.KW_JAR: - case HiveSqlParser.KW_JOINCOST: - case HiveSqlParser.KW_KEY: - case HiveSqlParser.KW_KEYS: - case HiveSqlParser.KW_KEY_TYPE: - case HiveSqlParser.KW_KILL: - case HiveSqlParser.KW_LAST: - case HiveSqlParser.KW_LEVEL: - case HiveSqlParser.KW_LIKE: - case HiveSqlParser.KW_LIMIT: - case HiveSqlParser.KW_LINES: - case HiveSqlParser.KW_LOAD: - case HiveSqlParser.KW_LOCATION: - case HiveSqlParser.KW_LOCK: - case HiveSqlParser.KW_LOCKS: - case HiveSqlParser.KW_LOGICAL: - case HiveSqlParser.KW_LONG: - case HiveSqlParser.KW_MANAGED: - case HiveSqlParser.KW_MANAGEDLOCATION: - case HiveSqlParser.KW_MANAGEMENT: - case HiveSqlParser.KW_MAP: - case HiveSqlParser.KW_MAPJOIN: - case HiveSqlParser.KW_MAPPING: - case HiveSqlParser.KW_MATCHED: - case HiveSqlParser.KW_MATERIALIZED: - case HiveSqlParser.KW_METADATA: - case HiveSqlParser.KW_MINUTE: - case HiveSqlParser.KW_MINUTES: - case HiveSqlParser.KW_MONTH: - case HiveSqlParser.KW_MONTHS: - case HiveSqlParser.KW_MOVE: - case HiveSqlParser.KW_MSCK: - case HiveSqlParser.KW_NORELY: - case HiveSqlParser.KW_NOSCAN: - case HiveSqlParser.KW_NOT: - case HiveSqlParser.KW_NOVALIDATE: - case HiveSqlParser.KW_NO_DROP: - case HiveSqlParser.KW_NULL: - case HiveSqlParser.KW_NULLS: - case HiveSqlParser.KW_OFFLINE: - case HiveSqlParser.KW_OFFSET: - case HiveSqlParser.KW_OPERATOR: - case HiveSqlParser.KW_OPTION: - case HiveSqlParser.KW_OR: - case HiveSqlParser.KW_OUTPUTDRIVER: - case HiveSqlParser.KW_OUTPUTFORMAT: - case HiveSqlParser.KW_OVERWRITE: - case HiveSqlParser.KW_OWNER: - case HiveSqlParser.KW_PARTITIONED: - case HiveSqlParser.KW_PARTITIONS: - case HiveSqlParser.KW_PATH: - case HiveSqlParser.KW_PLAN: - case HiveSqlParser.KW_PLANS: - case HiveSqlParser.KW_PLUS: - case HiveSqlParser.KW_POOL: - case HiveSqlParser.KW_PRINCIPALS: - case HiveSqlParser.KW_PROTECTION: - case HiveSqlParser.KW_PURGE: - case HiveSqlParser.KW_QUARTER: - case HiveSqlParser.KW_QUERY: - case HiveSqlParser.KW_QUERY_PARALLELISM: - case HiveSqlParser.KW_READ: - case HiveSqlParser.KW_READONLY: - case HiveSqlParser.KW_REAL: - case HiveSqlParser.KW_REBUILD: - case HiveSqlParser.KW_RECORDREADER: - case HiveSqlParser.KW_RECORDWRITER: - case HiveSqlParser.KW_REGEXP: - case HiveSqlParser.KW_RELOAD: - case HiveSqlParser.KW_RELY: - case HiveSqlParser.KW_REMOTE: - case HiveSqlParser.KW_RENAME: - case HiveSqlParser.KW_REOPTIMIZATION: - case HiveSqlParser.KW_REPAIR: - case HiveSqlParser.KW_REPL: - case HiveSqlParser.KW_REPLACE: - case HiveSqlParser.KW_REPLICATION: - case HiveSqlParser.KW_RESOURCE: - case HiveSqlParser.KW_RESPECT: - case HiveSqlParser.KW_RESTRICT: - case HiveSqlParser.KW_REWRITE: - case HiveSqlParser.KW_RLIKE: - case HiveSqlParser.KW_ROLE: - case HiveSqlParser.KW_ROLES: - case HiveSqlParser.KW_SCHEDULED: - case HiveSqlParser.KW_SCHEDULING_POLICY: - case HiveSqlParser.KW_SCHEMA: - case HiveSqlParser.KW_SCHEMAS: - case HiveSqlParser.KW_SECOND: - case HiveSqlParser.KW_SECONDS: - case HiveSqlParser.KW_SEMI: - case HiveSqlParser.KW_SERDE: - case HiveSqlParser.KW_SERDEPROPERTIES: - case HiveSqlParser.KW_SERVER: - case HiveSqlParser.KW_SETS: - case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: - case HiveSqlParser.KW_SHARED: - case HiveSqlParser.KW_SHOW: - case HiveSqlParser.KW_SHOW_DATABASE: - case HiveSqlParser.KW_SKEWED: - case HiveSqlParser.KW_SMALLINT: - case HiveSqlParser.KW_SNAPSHOT: - case HiveSqlParser.KW_SORT: - case HiveSqlParser.KW_SORTED: - case HiveSqlParser.KW_SPEC: - case HiveSqlParser.KW_SSL: - case HiveSqlParser.KW_STATISTICS: - case HiveSqlParser.KW_STATUS: - case HiveSqlParser.KW_STORED: - case HiveSqlParser.KW_STREAMTABLE: - case HiveSqlParser.KW_STRING: - case HiveSqlParser.KW_STRUCT: - case HiveSqlParser.KW_SUMMARY: - case HiveSqlParser.KW_SYSTEM_TIME: - case HiveSqlParser.KW_SYSTEM_VERSION: - case HiveSqlParser.KW_TABLES: - case HiveSqlParser.KW_TBLPROPERTIES: - case HiveSqlParser.KW_TEMPORARY: - case HiveSqlParser.KW_TERMINATED: - case HiveSqlParser.KW_TIMESTAMP: - case HiveSqlParser.KW_TIMESTAMPLOCALTZ: - case HiveSqlParser.KW_TIMESTAMPTZ: - case HiveSqlParser.KW_TINYINT: - case HiveSqlParser.KW_TOUCH: - case HiveSqlParser.KW_TRANSACTION: - case HiveSqlParser.KW_TRANSACTIONAL: - case HiveSqlParser.KW_TRANSACTIONS: - case HiveSqlParser.KW_TRIM: - case HiveSqlParser.KW_TRUE: - case HiveSqlParser.KW_TYPE: - case HiveSqlParser.KW_UNARCHIVE: - case HiveSqlParser.KW_UNDO: - case HiveSqlParser.KW_UNIONTYPE: - case HiveSqlParser.KW_UNKNOWN: - case HiveSqlParser.KW_UNLOCK: - case HiveSqlParser.KW_UNMANAGED: - case HiveSqlParser.KW_UNSET: - case HiveSqlParser.KW_UNSIGNED: - case HiveSqlParser.KW_URI: - case HiveSqlParser.KW_URL: - case HiveSqlParser.KW_USE: - case HiveSqlParser.KW_UTC: - case HiveSqlParser.KW_UTCTIMESTAMP: - case HiveSqlParser.KW_VALIDATE: - case HiveSqlParser.KW_VALUE_TYPE: - case HiveSqlParser.KW_VECTORIZATION: - case HiveSqlParser.KW_VIEW: - case HiveSqlParser.KW_VIEWS: - case HiveSqlParser.KW_WAIT: - case HiveSqlParser.KW_WEEK: - case HiveSqlParser.KW_WEEKS: - case HiveSqlParser.KW_WHEN: - case HiveSqlParser.KW_WHILE: - case HiveSqlParser.KW_WITHIN: - case HiveSqlParser.KW_WORK: - case HiveSqlParser.KW_WORKLOAD: - case HiveSqlParser.KW_WRITE: - case HiveSqlParser.KW_YEAR: - case HiveSqlParser.KW_YEARS: - case HiveSqlParser.KW_ZONE: - case HiveSqlParser.LPAREN: - case HiveSqlParser.EQUAL: - case HiveSqlParser.EQUAL_NS: - case HiveSqlParser.NOTEQUAL: - case HiveSqlParser.LESSTHANOREQUALTO: - case HiveSqlParser.LESSTHAN: - case HiveSqlParser.GREATERTHANOREQUALTO: - case HiveSqlParser.GREATERTHAN: - case HiveSqlParser.DIVIDE: - case HiveSqlParser.PLUS: - case HiveSqlParser.MINUS: - case HiveSqlParser.STAR: - case HiveSqlParser.MOD: - case HiveSqlParser.DIV: - case HiveSqlParser.BITWISENOT: - case HiveSqlParser.AMPERSAND: - case HiveSqlParser.TILDE: - case HiveSqlParser.BITWISEOR: - case HiveSqlParser.BITWISEXOR: - case HiveSqlParser.QUESTION: - case HiveSqlParser.StringLiteral: - case HiveSqlParser.IntegralLiteral: - case HiveSqlParser.NumberLiteral: - case HiveSqlParser.Number: - case HiveSqlParser.Identifier: - case HiveSqlParser.CharSetName: + switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { + case 1: { this.state = 4280; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 7 || _la === 96) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { + case 1: { this.state = 4279; this.all_distinct(); } + break; } - this.state = 4282; this.selectList(); } break; - case HiveSqlParser.KW_TRANSFORM: + case 2: { this.state = 4283; this.match(HiveSqlParser.KW_TRANSFORM); @@ -20906,8 +20338,6 @@ export class HiveSqlParser extends antlr.Parser { this.selectTrfmClause(); } break; - default: - throw new antlr.NoViableAltException(this); } } break; @@ -20939,7 +20369,7 @@ export class HiveSqlParser extends antlr.Parser { } public all_distinct(): All_distinctContext { let localContext = new All_distinctContext(this.context, this.state); - this.enterRule(localContext, 694, HiveSqlParser.RULE_all_distinct); + this.enterRule(localContext, 692, HiveSqlParser.RULE_all_distinct); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -20971,7 +20401,7 @@ export class HiveSqlParser extends antlr.Parser { } public selectList(): SelectListContext { let localContext = new SelectListContext(this.context, this.state); - this.enterRule(localContext, 696, HiveSqlParser.RULE_selectList); + this.enterRule(localContext, 694, HiveSqlParser.RULE_selectList); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -21014,7 +20444,7 @@ export class HiveSqlParser extends antlr.Parser { } public selectTrfmClause(): SelectTrfmClauseContext { let localContext = new SelectTrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 698, HiveSqlParser.RULE_selectTrfmClause); + this.enterRule(localContext, 696, HiveSqlParser.RULE_selectTrfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -21105,7 +20535,7 @@ export class HiveSqlParser extends antlr.Parser { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 700, HiveSqlParser.RULE_selectItem); + this.enterRule(localContext, 698, HiveSqlParser.RULE_selectItem); let _la: number; try { this.state = 4347; @@ -21207,7 +20637,7 @@ export class HiveSqlParser extends antlr.Parser { } public trfmClause(): TrfmClauseContext { let localContext = new TrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 702, HiveSqlParser.RULE_trfmClause); + this.enterRule(localContext, 700, HiveSqlParser.RULE_trfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -21303,7 +20733,7 @@ export class HiveSqlParser extends antlr.Parser { } public selectExpression(): SelectExpressionContext { let localContext = new SelectExpressionContext(this.context, this.state); - this.enterRule(localContext, 704, HiveSqlParser.RULE_selectExpression); + this.enterRule(localContext, 702, HiveSqlParser.RULE_selectExpression); try { this.state = 4374; this.errorHandler.sync(this); @@ -21340,7 +20770,7 @@ export class HiveSqlParser extends antlr.Parser { } public selectExpressionList(): SelectExpressionListContext { let localContext = new SelectExpressionListContext(this.context, this.state); - this.enterRule(localContext, 706, HiveSqlParser.RULE_selectExpressionList); + this.enterRule(localContext, 704, HiveSqlParser.RULE_selectExpressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -21381,7 +20811,7 @@ export class HiveSqlParser extends antlr.Parser { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 708, HiveSqlParser.RULE_window_clause); + this.enterRule(localContext, 706, HiveSqlParser.RULE_window_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -21424,7 +20854,7 @@ export class HiveSqlParser extends antlr.Parser { } public window_defn(): Window_defnContext { let localContext = new Window_defnContext(this.context, this.state); - this.enterRule(localContext, 710, HiveSqlParser.RULE_window_defn); + this.enterRule(localContext, 708, HiveSqlParser.RULE_window_defn); try { this.enterOuterAlt(localContext, 1); { @@ -21452,7 +20882,7 @@ export class HiveSqlParser extends antlr.Parser { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 712, HiveSqlParser.RULE_window_specification); + this.enterRule(localContext, 710, HiveSqlParser.RULE_window_specification); let _la: number; try { this.state = 4409; @@ -21762,7 +21192,7 @@ export class HiveSqlParser extends antlr.Parser { } public window_frame(): Window_frameContext { let localContext = new Window_frameContext(this.context, this.state); - this.enterRule(localContext, 714, HiveSqlParser.RULE_window_frame); + this.enterRule(localContext, 712, HiveSqlParser.RULE_window_frame); try { this.state = 4413; this.errorHandler.sync(this); @@ -21801,7 +21231,7 @@ export class HiveSqlParser extends antlr.Parser { } public window_range_expression(): Window_range_expressionContext { let localContext = new Window_range_expressionContext(this.context, this.state); - this.enterRule(localContext, 716, HiveSqlParser.RULE_window_range_expression); + this.enterRule(localContext, 714, HiveSqlParser.RULE_window_range_expression); try { this.enterOuterAlt(localContext, 1); { @@ -21851,7 +21281,7 @@ export class HiveSqlParser extends antlr.Parser { } public window_value_expression(): Window_value_expressionContext { let localContext = new Window_value_expressionContext(this.context, this.state); - this.enterRule(localContext, 718, HiveSqlParser.RULE_window_value_expression); + this.enterRule(localContext, 716, HiveSqlParser.RULE_window_value_expression); try { this.enterOuterAlt(localContext, 1); { @@ -21901,7 +21331,7 @@ export class HiveSqlParser extends antlr.Parser { } public window_frame_start_boundary(): Window_frame_start_boundaryContext { let localContext = new Window_frame_start_boundaryContext(this.context, this.state); - this.enterRule(localContext, 720, HiveSqlParser.RULE_window_frame_start_boundary); + this.enterRule(localContext, 718, HiveSqlParser.RULE_window_frame_start_boundary); try { this.state = 4439; this.errorHandler.sync(this); @@ -21953,7 +21383,7 @@ export class HiveSqlParser extends antlr.Parser { } public window_frame_boundary(): Window_frame_boundaryContext { let localContext = new Window_frame_boundaryContext(this.context, this.state); - this.enterRule(localContext, 722, HiveSqlParser.RULE_window_frame_boundary); + this.enterRule(localContext, 720, HiveSqlParser.RULE_window_frame_boundary); let _la: number; try { this.state = 4445; @@ -22012,7 +21442,7 @@ export class HiveSqlParser extends antlr.Parser { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 724, HiveSqlParser.RULE_groupByClause); + this.enterRule(localContext, 722, HiveSqlParser.RULE_groupByClause); try { this.enterOuterAlt(localContext, 1); { @@ -22040,7 +21470,7 @@ export class HiveSqlParser extends antlr.Parser { } public groupby_expression(): Groupby_expressionContext { let localContext = new Groupby_expressionContext(this.context, this.state); - this.enterRule(localContext, 726, HiveSqlParser.RULE_groupby_expression); + this.enterRule(localContext, 724, HiveSqlParser.RULE_groupby_expression); try { this.state = 4455; this.errorHandler.sync(this); @@ -22091,7 +21521,7 @@ export class HiveSqlParser extends antlr.Parser { } public groupByEmpty(): GroupByEmptyContext { let localContext = new GroupByEmptyContext(this.context, this.state); - this.enterRule(localContext, 728, HiveSqlParser.RULE_groupByEmpty); + this.enterRule(localContext, 726, HiveSqlParser.RULE_groupByEmpty); try { this.enterOuterAlt(localContext, 1); { @@ -22117,7 +21547,7 @@ export class HiveSqlParser extends antlr.Parser { } public rollupStandard(): RollupStandardContext { let localContext = new RollupStandardContext(this.context, this.state); - this.enterRule(localContext, 730, HiveSqlParser.RULE_rollupStandard); + this.enterRule(localContext, 728, HiveSqlParser.RULE_rollupStandard); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -22180,7 +21610,7 @@ export class HiveSqlParser extends antlr.Parser { } public rollupOldSyntax(): RollupOldSyntaxContext { let localContext = new RollupOldSyntaxContext(this.context, this.state); - this.enterRule(localContext, 732, HiveSqlParser.RULE_rollupOldSyntax); + this.enterRule(localContext, 730, HiveSqlParser.RULE_rollupOldSyntax); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -22259,7 +21689,7 @@ export class HiveSqlParser extends antlr.Parser { } public groupingSetExpression(): GroupingSetExpressionContext { let localContext = new GroupingSetExpressionContext(this.context, this.state); - this.enterRule(localContext, 734, HiveSqlParser.RULE_groupingSetExpression); + this.enterRule(localContext, 732, HiveSqlParser.RULE_groupingSetExpression); try { this.state = 4499; this.errorHandler.sync(this); @@ -22296,7 +21726,7 @@ export class HiveSqlParser extends antlr.Parser { } public groupingSetExpressionMultiple(): GroupingSetExpressionMultipleContext { let localContext = new GroupingSetExpressionMultipleContext(this.context, this.state); - this.enterRule(localContext, 736, HiveSqlParser.RULE_groupingSetExpressionMultiple); + this.enterRule(localContext, 734, HiveSqlParser.RULE_groupingSetExpressionMultiple); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -22349,7 +21779,7 @@ export class HiveSqlParser extends antlr.Parser { } public groupingExpressionSingle(): GroupingExpressionSingleContext { let localContext = new GroupingExpressionSingleContext(this.context, this.state); - this.enterRule(localContext, 738, HiveSqlParser.RULE_groupingExpressionSingle); + this.enterRule(localContext, 736, HiveSqlParser.RULE_groupingExpressionSingle); try { this.enterOuterAlt(localContext, 1); { @@ -22373,7 +21803,7 @@ export class HiveSqlParser extends antlr.Parser { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 740, HiveSqlParser.RULE_havingClause); + this.enterRule(localContext, 738, HiveSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { @@ -22399,7 +21829,7 @@ export class HiveSqlParser extends antlr.Parser { } public qualifyClause(): QualifyClauseContext { let localContext = new QualifyClauseContext(this.context, this.state); - this.enterRule(localContext, 742, HiveSqlParser.RULE_qualifyClause); + this.enterRule(localContext, 740, HiveSqlParser.RULE_qualifyClause); try { this.enterOuterAlt(localContext, 1); { @@ -22425,7 +21855,7 @@ export class HiveSqlParser extends antlr.Parser { } public havingCondition(): HavingConditionContext { let localContext = new HavingConditionContext(this.context, this.state); - this.enterRule(localContext, 744, HiveSqlParser.RULE_havingCondition); + this.enterRule(localContext, 742, HiveSqlParser.RULE_havingCondition); try { this.enterOuterAlt(localContext, 1); { @@ -22449,7 +21879,7 @@ export class HiveSqlParser extends antlr.Parser { } public expressionsInParenthesis(): ExpressionsInParenthesisContext { let localContext = new ExpressionsInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 746, HiveSqlParser.RULE_expressionsInParenthesis); + this.enterRule(localContext, 744, HiveSqlParser.RULE_expressionsInParenthesis); try { this.enterOuterAlt(localContext, 1); { @@ -22477,7 +21907,7 @@ export class HiveSqlParser extends antlr.Parser { } public expressionsNotInParenthesis(): ExpressionsNotInParenthesisContext { let localContext = new ExpressionsNotInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 748, HiveSqlParser.RULE_expressionsNotInParenthesis); + this.enterRule(localContext, 746, HiveSqlParser.RULE_expressionsNotInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -22512,7 +21942,7 @@ export class HiveSqlParser extends antlr.Parser { } public expressionPart(): ExpressionPartContext { let localContext = new ExpressionPartContext(this.context, this.state); - this.enterRule(localContext, 750, HiveSqlParser.RULE_expressionPart); + this.enterRule(localContext, 748, HiveSqlParser.RULE_expressionPart); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -22551,7 +21981,7 @@ export class HiveSqlParser extends antlr.Parser { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 752, HiveSqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 750, HiveSqlParser.RULE_expressionOrDefault); try { this.state = 4540; this.errorHandler.sync(this); @@ -22588,7 +22018,7 @@ export class HiveSqlParser extends antlr.Parser { } public firstExpressionsWithAlias(): FirstExpressionsWithAliasContext { let localContext = new FirstExpressionsWithAliasContext(this.context, this.state); - this.enterRule(localContext, 754, HiveSqlParser.RULE_firstExpressionsWithAlias); + this.enterRule(localContext, 752, HiveSqlParser.RULE_firstExpressionsWithAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -22649,7 +22079,7 @@ export class HiveSqlParser extends antlr.Parser { } public expressionWithAlias(): ExpressionWithAliasContext { let localContext = new ExpressionWithAliasContext(this.context, this.state); - this.enterRule(localContext, 756, HiveSqlParser.RULE_expressionWithAlias); + this.enterRule(localContext, 754, HiveSqlParser.RULE_expressionWithAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -22694,7 +22124,7 @@ export class HiveSqlParser extends antlr.Parser { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 758, HiveSqlParser.RULE_expressions); + this.enterRule(localContext, 756, HiveSqlParser.RULE_expressions); try { this.state = 4565; this.errorHandler.sync(this); @@ -22731,7 +22161,7 @@ export class HiveSqlParser extends antlr.Parser { } public columnRefOrderInParenthesis(): ColumnRefOrderInParenthesisContext { let localContext = new ColumnRefOrderInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 760, HiveSqlParser.RULE_columnRefOrderInParenthesis); + this.enterRule(localContext, 758, HiveSqlParser.RULE_columnRefOrderInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -22776,7 +22206,7 @@ export class HiveSqlParser extends antlr.Parser { } public columnRefOrderNotInParenthesis(): ColumnRefOrderNotInParenthesisContext { let localContext = new ColumnRefOrderNotInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 762, HiveSqlParser.RULE_columnRefOrderNotInParenthesis); + this.enterRule(localContext, 760, HiveSqlParser.RULE_columnRefOrderNotInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -22817,7 +22247,7 @@ export class HiveSqlParser extends antlr.Parser { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 764, HiveSqlParser.RULE_orderByClause); + this.enterRule(localContext, 762, HiveSqlParser.RULE_orderByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -22862,7 +22292,7 @@ export class HiveSqlParser extends antlr.Parser { } public clusterByClause(): ClusterByClauseContext { let localContext = new ClusterByClauseContext(this.context, this.state); - this.enterRule(localContext, 766, HiveSqlParser.RULE_clusterByClause); + this.enterRule(localContext, 764, HiveSqlParser.RULE_clusterByClause); try { this.enterOuterAlt(localContext, 1); { @@ -22890,7 +22320,7 @@ export class HiveSqlParser extends antlr.Parser { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 768, HiveSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 766, HiveSqlParser.RULE_partitionByClause); try { this.enterOuterAlt(localContext, 1); { @@ -22918,7 +22348,7 @@ export class HiveSqlParser extends antlr.Parser { } public distributeByClause(): DistributeByClauseContext { let localContext = new DistributeByClauseContext(this.context, this.state); - this.enterRule(localContext, 770, HiveSqlParser.RULE_distributeByClause); + this.enterRule(localContext, 768, HiveSqlParser.RULE_distributeByClause); try { this.enterOuterAlt(localContext, 1); { @@ -22946,7 +22376,7 @@ export class HiveSqlParser extends antlr.Parser { } public sortByClause(): SortByClauseContext { let localContext = new SortByClauseContext(this.context, this.state); - this.enterRule(localContext, 772, HiveSqlParser.RULE_sortByClause); + this.enterRule(localContext, 770, HiveSqlParser.RULE_sortByClause); try { this.enterOuterAlt(localContext, 1); { @@ -22988,7 +22418,7 @@ export class HiveSqlParser extends antlr.Parser { } public trimFunction(): TrimFunctionContext { let localContext = new TrimFunctionContext(this.context, this.state); - this.enterRule(localContext, 774, HiveSqlParser.RULE_trimFunction); + this.enterRule(localContext, 772, HiveSqlParser.RULE_trimFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -23357,7 +22787,7 @@ export class HiveSqlParser extends antlr.Parser { } public function_(): Function_Context { let localContext = new Function_Context(this.context, this.state); - this.enterRule(localContext, 776, HiveSqlParser.RULE_function_); + this.enterRule(localContext, 774, HiveSqlParser.RULE_function_); let _la: number; try { this.state = 4668; @@ -23505,7 +22935,7 @@ export class HiveSqlParser extends antlr.Parser { } public null_treatment(): Null_treatmentContext { let localContext = new Null_treatmentContext(this.context, this.state); - this.enterRule(localContext, 778, HiveSqlParser.RULE_null_treatment); + this.enterRule(localContext, 776, HiveSqlParser.RULE_null_treatment); try { this.state = 4674; this.errorHandler.sync(this); @@ -23548,7 +22978,7 @@ export class HiveSqlParser extends antlr.Parser { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 780, HiveSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 778, HiveSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { @@ -23572,7 +23002,7 @@ export class HiveSqlParser extends antlr.Parser { } public functionNameForDDL(): FunctionNameForDDLContext { let localContext = new FunctionNameForDDLContext(this.context, this.state); - this.enterRule(localContext, 782, HiveSqlParser.RULE_functionNameForDDL); + this.enterRule(localContext, 780, HiveSqlParser.RULE_functionNameForDDL); try { this.state = 4680; this.errorHandler.sync(this); @@ -23849,7 +23279,7 @@ export class HiveSqlParser extends antlr.Parser { } public functionNameForInvoke(): FunctionNameForInvokeContext { let localContext = new FunctionNameForInvokeContext(this.context, this.state); - this.enterRule(localContext, 784, HiveSqlParser.RULE_functionNameForInvoke); + this.enterRule(localContext, 782, HiveSqlParser.RULE_functionNameForInvoke); try { this.state = 4684; this.errorHandler.sync(this); @@ -23886,7 +23316,7 @@ export class HiveSqlParser extends antlr.Parser { } public userDefinedFuncName(): UserDefinedFuncNameContext { let localContext = new UserDefinedFuncNameContext(this.context, this.state); - this.enterRule(localContext, 786, HiveSqlParser.RULE_userDefinedFuncName); + this.enterRule(localContext, 784, HiveSqlParser.RULE_userDefinedFuncName); try { this.enterOuterAlt(localContext, 1); { @@ -23910,7 +23340,7 @@ export class HiveSqlParser extends antlr.Parser { } public internalFunctionName(): InternalFunctionNameContext { let localContext = new InternalFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 788, HiveSqlParser.RULE_internalFunctionName); + this.enterRule(localContext, 786, HiveSqlParser.RULE_internalFunctionName); try { this.state = 4690; this.errorHandler.sync(this); @@ -23947,7 +23377,7 @@ export class HiveSqlParser extends antlr.Parser { } public castExpression(): CastExpressionContext { let localContext = new CastExpressionContext(this.context, this.state); - this.enterRule(localContext, 790, HiveSqlParser.RULE_castExpression); + this.enterRule(localContext, 788, HiveSqlParser.RULE_castExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -23994,7 +23424,7 @@ export class HiveSqlParser extends antlr.Parser { } public caseExpression(): CaseExpressionContext { let localContext = new CaseExpressionContext(this.context, this.state); - this.enterRule(localContext, 792, HiveSqlParser.RULE_caseExpression); + this.enterRule(localContext, 790, HiveSqlParser.RULE_caseExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -24055,7 +23485,7 @@ export class HiveSqlParser extends antlr.Parser { } public whenExpression(): WhenExpressionContext { let localContext = new WhenExpressionContext(this.context, this.state); - this.enterRule(localContext, 794, HiveSqlParser.RULE_whenExpression); + this.enterRule(localContext, 792, HiveSqlParser.RULE_whenExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -24114,7 +23544,7 @@ export class HiveSqlParser extends antlr.Parser { } public floorExpression(): FloorExpressionContext { let localContext = new FloorExpressionContext(this.context, this.state); - this.enterRule(localContext, 796, HiveSqlParser.RULE_floorExpression); + this.enterRule(localContext, 794, HiveSqlParser.RULE_floorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -24157,7 +23587,7 @@ export class HiveSqlParser extends antlr.Parser { } public floorDateQualifiers(): FloorDateQualifiersContext { let localContext = new FloorDateQualifiersContext(this.context, this.state); - this.enterRule(localContext, 798, HiveSqlParser.RULE_floorDateQualifiers); + this.enterRule(localContext, 796, HiveSqlParser.RULE_floorDateQualifiers); try { this.state = 4753; this.errorHandler.sync(this); @@ -24245,7 +23675,7 @@ export class HiveSqlParser extends antlr.Parser { } public extractExpression(): ExtractExpressionContext { let localContext = new ExtractExpressionContext(this.context, this.state); - this.enterRule(localContext, 800, HiveSqlParser.RULE_extractExpression); + this.enterRule(localContext, 798, HiveSqlParser.RULE_extractExpression); try { this.enterOuterAlt(localContext, 1); { @@ -24279,7 +23709,7 @@ export class HiveSqlParser extends antlr.Parser { } public timeQualifiers(): TimeQualifiersContext { let localContext = new TimeQualifiersContext(this.context, this.state); - this.enterRule(localContext, 802, HiveSqlParser.RULE_timeQualifiers); + this.enterRule(localContext, 800, HiveSqlParser.RULE_timeQualifiers); try { this.state = 4770; this.errorHandler.sync(this); @@ -24367,7 +23797,7 @@ export class HiveSqlParser extends antlr.Parser { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 804, HiveSqlParser.RULE_constant); + this.enterRule(localContext, 802, HiveSqlParser.RULE_constant); try { this.state = 4785; this.errorHandler.sync(this); @@ -24481,7 +23911,7 @@ export class HiveSqlParser extends antlr.Parser { } public prepareStmtParam(): PrepareStmtParamContext { let localContext = new PrepareStmtParamContext(this.context, this.state); - this.enterRule(localContext, 806, HiveSqlParser.RULE_prepareStmtParam); + this.enterRule(localContext, 804, HiveSqlParser.RULE_prepareStmtParam); try { this.enterOuterAlt(localContext, 1); { @@ -24505,7 +23935,7 @@ export class HiveSqlParser extends antlr.Parser { } public parameterIdx(): ParameterIdxContext { let localContext = new ParameterIdxContext(this.context, this.state); - this.enterRule(localContext, 808, HiveSqlParser.RULE_parameterIdx); + this.enterRule(localContext, 806, HiveSqlParser.RULE_parameterIdx); try { this.enterOuterAlt(localContext, 1); { @@ -24529,7 +23959,7 @@ export class HiveSqlParser extends antlr.Parser { } public stringLiteralSequence(): StringLiteralSequenceContext { let localContext = new StringLiteralSequenceContext(this.context, this.state); - this.enterRule(localContext, 810, HiveSqlParser.RULE_stringLiteralSequence); + this.enterRule(localContext, 808, HiveSqlParser.RULE_stringLiteralSequence); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -24568,7 +23998,7 @@ export class HiveSqlParser extends antlr.Parser { } public charSetStringLiteral(): CharSetStringLiteralContext { let localContext = new CharSetStringLiteralContext(this.context, this.state); - this.enterRule(localContext, 812, HiveSqlParser.RULE_charSetStringLiteral); + this.enterRule(localContext, 810, HiveSqlParser.RULE_charSetStringLiteral); try { this.enterOuterAlt(localContext, 1); { @@ -24594,7 +24024,7 @@ export class HiveSqlParser extends antlr.Parser { } public dateLiteral(): DateLiteralContext { let localContext = new DateLiteralContext(this.context, this.state); - this.enterRule(localContext, 814, HiveSqlParser.RULE_dateLiteral); + this.enterRule(localContext, 812, HiveSqlParser.RULE_dateLiteral); try { this.state = 4803; this.errorHandler.sync(this); @@ -24635,7 +24065,7 @@ export class HiveSqlParser extends antlr.Parser { } public timestampLiteral(): TimestampLiteralContext { let localContext = new TimestampLiteralContext(this.context, this.state); - this.enterRule(localContext, 816, HiveSqlParser.RULE_timestampLiteral); + this.enterRule(localContext, 814, HiveSqlParser.RULE_timestampLiteral); try { this.state = 4808; this.errorHandler.sync(this); @@ -24676,7 +24106,7 @@ export class HiveSqlParser extends antlr.Parser { } public timestampLocalTZLiteral(): TimestampLocalTZLiteralContext { let localContext = new TimestampLocalTZLiteralContext(this.context, this.state); - this.enterRule(localContext, 818, HiveSqlParser.RULE_timestampLocalTZLiteral); + this.enterRule(localContext, 816, HiveSqlParser.RULE_timestampLocalTZLiteral); try { this.enterOuterAlt(localContext, 1); { @@ -24702,7 +24132,7 @@ export class HiveSqlParser extends antlr.Parser { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 820, HiveSqlParser.RULE_intervalValue); + this.enterRule(localContext, 818, HiveSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -24734,7 +24164,7 @@ export class HiveSqlParser extends antlr.Parser { } public intervalLiteral(): IntervalLiteralContext { let localContext = new IntervalLiteralContext(this.context, this.state); - this.enterRule(localContext, 822, HiveSqlParser.RULE_intervalLiteral); + this.enterRule(localContext, 820, HiveSqlParser.RULE_intervalLiteral); try { this.enterOuterAlt(localContext, 1); { @@ -24760,7 +24190,7 @@ export class HiveSqlParser extends antlr.Parser { } public intervalExpression(): IntervalExpressionContext { let localContext = new IntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 824, HiveSqlParser.RULE_intervalExpression); + this.enterRule(localContext, 822, HiveSqlParser.RULE_intervalExpression); try { this.state = 4833; this.errorHandler.sync(this); @@ -24830,7 +24260,7 @@ export class HiveSqlParser extends antlr.Parser { } public intervalQualifiers(): IntervalQualifiersContext { let localContext = new IntervalQualifiersContext(this.context, this.state); - this.enterRule(localContext, 826, HiveSqlParser.RULE_intervalQualifiers); + this.enterRule(localContext, 824, HiveSqlParser.RULE_intervalQualifiers); try { this.state = 4849; this.errorHandler.sync(this); @@ -24917,7 +24347,7 @@ export class HiveSqlParser extends antlr.Parser { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 828, HiveSqlParser.RULE_expression); + this.enterRule(localContext, 826, HiveSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { @@ -24941,7 +24371,7 @@ export class HiveSqlParser extends antlr.Parser { } public atomExpression(): AtomExpressionContext { let localContext = new AtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 830, HiveSqlParser.RULE_atomExpression); + this.enterRule(localContext, 828, HiveSqlParser.RULE_atomExpression); try { this.state = 4864; this.errorHandler.sync(this); @@ -25041,7 +24471,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceFieldExpression(): PrecedenceFieldExpressionContext { let localContext = new PrecedenceFieldExpressionContext(this.context, this.state); - this.enterRule(localContext, 832, HiveSqlParser.RULE_precedenceFieldExpression); + this.enterRule(localContext, 830, HiveSqlParser.RULE_precedenceFieldExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25100,7 +24530,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceUnaryOperator(): PrecedenceUnaryOperatorContext { let localContext = new PrecedenceUnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 834, HiveSqlParser.RULE_precedenceUnaryOperator); + this.enterRule(localContext, 832, HiveSqlParser.RULE_precedenceUnaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25132,7 +24562,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceUnaryPrefixExpression(): PrecedenceUnaryPrefixExpressionContext { let localContext = new PrecedenceUnaryPrefixExpressionContext(this.context, this.state); - this.enterRule(localContext, 836, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); + this.enterRule(localContext, 834, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -25173,7 +24603,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceBitwiseXorOperator(): PrecedenceBitwiseXorOperatorContext { let localContext = new PrecedenceBitwiseXorOperatorContext(this.context, this.state); - this.enterRule(localContext, 838, HiveSqlParser.RULE_precedenceBitwiseXorOperator); + this.enterRule(localContext, 836, HiveSqlParser.RULE_precedenceBitwiseXorOperator); try { this.enterOuterAlt(localContext, 1); { @@ -25197,7 +24627,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceBitwiseXorExpression(): PrecedenceBitwiseXorExpressionContext { let localContext = new PrecedenceBitwiseXorExpressionContext(this.context, this.state); - this.enterRule(localContext, 840, HiveSqlParser.RULE_precedenceBitwiseXorExpression); + this.enterRule(localContext, 838, HiveSqlParser.RULE_precedenceBitwiseXorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25238,7 +24668,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceStarOperator(): PrecedenceStarOperatorContext { let localContext = new PrecedenceStarOperatorContext(this.context, this.state); - this.enterRule(localContext, 842, HiveSqlParser.RULE_precedenceStarOperator); + this.enterRule(localContext, 840, HiveSqlParser.RULE_precedenceStarOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25270,7 +24700,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceStarExpression(): PrecedenceStarExpressionContext { let localContext = new PrecedenceStarExpressionContext(this.context, this.state); - this.enterRule(localContext, 844, HiveSqlParser.RULE_precedenceStarExpression); + this.enterRule(localContext, 842, HiveSqlParser.RULE_precedenceStarExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25311,7 +24741,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedencePlusOperator(): PrecedencePlusOperatorContext { let localContext = new PrecedencePlusOperatorContext(this.context, this.state); - this.enterRule(localContext, 846, HiveSqlParser.RULE_precedencePlusOperator); + this.enterRule(localContext, 844, HiveSqlParser.RULE_precedencePlusOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25343,7 +24773,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedencePlusExpression(): PrecedencePlusExpressionContext { let localContext = new PrecedencePlusExpressionContext(this.context, this.state); - this.enterRule(localContext, 848, HiveSqlParser.RULE_precedencePlusExpression); + this.enterRule(localContext, 846, HiveSqlParser.RULE_precedencePlusExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25384,7 +24814,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceConcatenateOperator(): PrecedenceConcatenateOperatorContext { let localContext = new PrecedenceConcatenateOperatorContext(this.context, this.state); - this.enterRule(localContext, 850, HiveSqlParser.RULE_precedenceConcatenateOperator); + this.enterRule(localContext, 848, HiveSqlParser.RULE_precedenceConcatenateOperator); try { this.enterOuterAlt(localContext, 1); { @@ -25408,7 +24838,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceConcatenateExpression(): PrecedenceConcatenateExpressionContext { let localContext = new PrecedenceConcatenateExpressionContext(this.context, this.state); - this.enterRule(localContext, 852, HiveSqlParser.RULE_precedenceConcatenateExpression); + this.enterRule(localContext, 850, HiveSqlParser.RULE_precedenceConcatenateExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25449,7 +24879,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceAmpersandOperator(): PrecedenceAmpersandOperatorContext { let localContext = new PrecedenceAmpersandOperatorContext(this.context, this.state); - this.enterRule(localContext, 854, HiveSqlParser.RULE_precedenceAmpersandOperator); + this.enterRule(localContext, 852, HiveSqlParser.RULE_precedenceAmpersandOperator); try { this.enterOuterAlt(localContext, 1); { @@ -25473,7 +24903,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceAmpersandExpression(): PrecedenceAmpersandExpressionContext { let localContext = new PrecedenceAmpersandExpressionContext(this.context, this.state); - this.enterRule(localContext, 856, HiveSqlParser.RULE_precedenceAmpersandExpression); + this.enterRule(localContext, 854, HiveSqlParser.RULE_precedenceAmpersandExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25514,7 +24944,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceBitwiseOrOperator(): PrecedenceBitwiseOrOperatorContext { let localContext = new PrecedenceBitwiseOrOperatorContext(this.context, this.state); - this.enterRule(localContext, 858, HiveSqlParser.RULE_precedenceBitwiseOrOperator); + this.enterRule(localContext, 856, HiveSqlParser.RULE_precedenceBitwiseOrOperator); try { this.enterOuterAlt(localContext, 1); { @@ -25538,7 +24968,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext { let localContext = new PrecedenceBitwiseOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 860, HiveSqlParser.RULE_precedenceBitwiseOrExpression); + this.enterRule(localContext, 858, HiveSqlParser.RULE_precedenceBitwiseOrExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25579,7 +25009,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceRegexpOperator(): PrecedenceRegexpOperatorContext { let localContext = new PrecedenceRegexpOperatorContext(this.context, this.state); - this.enterRule(localContext, 862, HiveSqlParser.RULE_precedenceRegexpOperator); + this.enterRule(localContext, 860, HiveSqlParser.RULE_precedenceRegexpOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -25611,7 +25041,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceSimilarOperator(): PrecedenceSimilarOperatorContext { let localContext = new PrecedenceSimilarOperatorContext(this.context, this.state); - this.enterRule(localContext, 864, HiveSqlParser.RULE_precedenceSimilarOperator); + this.enterRule(localContext, 862, HiveSqlParser.RULE_precedenceSimilarOperator); try { this.state = 4961; this.errorHandler.sync(this); @@ -25673,7 +25103,7 @@ export class HiveSqlParser extends antlr.Parser { } public subQueryExpression(): SubQueryExpressionContext { let localContext = new SubQueryExpressionContext(this.context, this.state); - this.enterRule(localContext, 866, HiveSqlParser.RULE_subQueryExpression); + this.enterRule(localContext, 864, HiveSqlParser.RULE_subQueryExpression); try { this.enterOuterAlt(localContext, 1); { @@ -25701,7 +25131,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceSimilarExpression(): PrecedenceSimilarExpressionContext { let localContext = new PrecedenceSimilarExpressionContext(this.context, this.state); - this.enterRule(localContext, 868, HiveSqlParser.RULE_precedenceSimilarExpression); + this.enterRule(localContext, 866, HiveSqlParser.RULE_precedenceSimilarExpression); try { this.state = 4970; this.errorHandler.sync(this); @@ -26040,7 +25470,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceSimilarExpressionMain(): PrecedenceSimilarExpressionMainContext { let localContext = new PrecedenceSimilarExpressionMainContext(this.context, this.state); - this.enterRule(localContext, 870, HiveSqlParser.RULE_precedenceSimilarExpressionMain); + this.enterRule(localContext, 868, HiveSqlParser.RULE_precedenceSimilarExpressionMain); try { this.enterOuterAlt(localContext, 1); { @@ -26074,7 +25504,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceSimilarExpressionPart(): PrecedenceSimilarExpressionPartContext { let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); - this.enterRule(localContext, 872, HiveSqlParser.RULE_precedenceSimilarExpressionPart); + this.enterRule(localContext, 870, HiveSqlParser.RULE_precedenceSimilarExpressionPart); try { this.state = 4982; this.errorHandler.sync(this); @@ -26122,7 +25552,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext { let localContext = new PrecedenceSimilarExpressionAtomContext(this.context, this.state); - this.enterRule(localContext, 874, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); + this.enterRule(localContext, 872, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); let _la: number; try { this.state = 4995; @@ -26200,7 +25630,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceSimilarExpressionQuantifierPredicate(): PrecedenceSimilarExpressionQuantifierPredicateContext { let localContext = new PrecedenceSimilarExpressionQuantifierPredicateContext(this.context, this.state); - this.enterRule(localContext, 876, HiveSqlParser.RULE_precedenceSimilarExpressionQuantifierPredicate); + this.enterRule(localContext, 874, HiveSqlParser.RULE_precedenceSimilarExpressionQuantifierPredicate); try { this.enterOuterAlt(localContext, 1); { @@ -26228,7 +25658,7 @@ export class HiveSqlParser extends antlr.Parser { } public quantifierType(): QuantifierTypeContext { let localContext = new QuantifierTypeContext(this.context, this.state); - this.enterRule(localContext, 878, HiveSqlParser.RULE_quantifierType); + this.enterRule(localContext, 876, HiveSqlParser.RULE_quantifierType); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -26260,7 +25690,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceSimilarExpressionIn(): PrecedenceSimilarExpressionInContext { let localContext = new PrecedenceSimilarExpressionInContext(this.context, this.state); - this.enterRule(localContext, 880, HiveSqlParser.RULE_precedenceSimilarExpressionIn); + this.enterRule(localContext, 878, HiveSqlParser.RULE_precedenceSimilarExpressionIn); try { this.state = 5005; this.errorHandler.sync(this); @@ -26297,7 +25727,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceSimilarExpressionPartNot(): PrecedenceSimilarExpressionPartNotContext { let localContext = new PrecedenceSimilarExpressionPartNotContext(this.context, this.state); - this.enterRule(localContext, 882, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); + this.enterRule(localContext, 880, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); try { this.state = 5011; this.errorHandler.sync(this); @@ -26336,7 +25766,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceDistinctOperator(): PrecedenceDistinctOperatorContext { let localContext = new PrecedenceDistinctOperatorContext(this.context, this.state); - this.enterRule(localContext, 884, HiveSqlParser.RULE_precedenceDistinctOperator); + this.enterRule(localContext, 882, HiveSqlParser.RULE_precedenceDistinctOperator); try { this.enterOuterAlt(localContext, 1); { @@ -26364,7 +25794,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceEqualOperator(): PrecedenceEqualOperatorContext { let localContext = new PrecedenceEqualOperatorContext(this.context, this.state); - this.enterRule(localContext, 886, HiveSqlParser.RULE_precedenceEqualOperator); + this.enterRule(localContext, 884, HiveSqlParser.RULE_precedenceEqualOperator); try { this.state = 5024; this.errorHandler.sync(this); @@ -26423,7 +25853,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceEqualExpression(): PrecedenceEqualExpressionContext { let localContext = new PrecedenceEqualExpressionContext(this.context, this.state); - this.enterRule(localContext, 888, HiveSqlParser.RULE_precedenceEqualExpression); + this.enterRule(localContext, 886, HiveSqlParser.RULE_precedenceEqualExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -26484,7 +25914,7 @@ export class HiveSqlParser extends antlr.Parser { } public isCondition(): IsConditionContext { let localContext = new IsConditionContext(this.context, this.state); - this.enterRule(localContext, 890, HiveSqlParser.RULE_isCondition); + this.enterRule(localContext, 888, HiveSqlParser.RULE_isCondition); try { this.state = 5050; this.errorHandler.sync(this); @@ -26571,7 +26001,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceUnarySuffixExpression(): PrecedenceUnarySuffixExpressionContext { let localContext = new PrecedenceUnarySuffixExpressionContext(this.context, this.state); - this.enterRule(localContext, 892, HiveSqlParser.RULE_precedenceUnarySuffixExpression); + this.enterRule(localContext, 890, HiveSqlParser.RULE_precedenceUnarySuffixExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -26608,7 +26038,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceNotOperator(): PrecedenceNotOperatorContext { let localContext = new PrecedenceNotOperatorContext(this.context, this.state); - this.enterRule(localContext, 894, HiveSqlParser.RULE_precedenceNotOperator); + this.enterRule(localContext, 892, HiveSqlParser.RULE_precedenceNotOperator); try { this.enterOuterAlt(localContext, 1); { @@ -26632,7 +26062,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceNotExpression(): PrecedenceNotExpressionContext { let localContext = new PrecedenceNotExpressionContext(this.context, this.state); - this.enterRule(localContext, 896, HiveSqlParser.RULE_precedenceNotExpression); + this.enterRule(localContext, 894, HiveSqlParser.RULE_precedenceNotExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -26673,7 +26103,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceAndOperator(): PrecedenceAndOperatorContext { let localContext = new PrecedenceAndOperatorContext(this.context, this.state); - this.enterRule(localContext, 898, HiveSqlParser.RULE_precedenceAndOperator); + this.enterRule(localContext, 896, HiveSqlParser.RULE_precedenceAndOperator); try { this.enterOuterAlt(localContext, 1); { @@ -26697,7 +26127,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceAndExpression(): PrecedenceAndExpressionContext { let localContext = new PrecedenceAndExpressionContext(this.context, this.state); - this.enterRule(localContext, 900, HiveSqlParser.RULE_precedenceAndExpression); + this.enterRule(localContext, 898, HiveSqlParser.RULE_precedenceAndExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -26738,7 +26168,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceOrOperator(): PrecedenceOrOperatorContext { let localContext = new PrecedenceOrOperatorContext(this.context, this.state); - this.enterRule(localContext, 902, HiveSqlParser.RULE_precedenceOrOperator); + this.enterRule(localContext, 900, HiveSqlParser.RULE_precedenceOrOperator); try { this.enterOuterAlt(localContext, 1); { @@ -26762,7 +26192,7 @@ export class HiveSqlParser extends antlr.Parser { } public precedenceOrExpression(): PrecedenceOrExpressionContext { let localContext = new PrecedenceOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 904, HiveSqlParser.RULE_precedenceOrExpression); + this.enterRule(localContext, 902, HiveSqlParser.RULE_precedenceOrExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -26803,7 +26233,7 @@ export class HiveSqlParser extends antlr.Parser { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 906, HiveSqlParser.RULE_booleanValue); + this.enterRule(localContext, 904, HiveSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -26835,7 +26265,7 @@ export class HiveSqlParser extends antlr.Parser { } public booleanValueTok(): BooleanValueTokContext { let localContext = new BooleanValueTokContext(this.context, this.state); - this.enterRule(localContext, 908, HiveSqlParser.RULE_booleanValueTok); + this.enterRule(localContext, 906, HiveSqlParser.RULE_booleanValueTok); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -26867,7 +26297,7 @@ export class HiveSqlParser extends antlr.Parser { } public tableOrPartition(): TableOrPartitionContext { let localContext = new TableOrPartitionContext(this.context, this.state); - this.enterRule(localContext, 910, HiveSqlParser.RULE_tableOrPartition); + this.enterRule(localContext, 908, HiveSqlParser.RULE_tableOrPartition); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -26902,7 +26332,7 @@ export class HiveSqlParser extends antlr.Parser { } public partitionSpec(): PartitionSpecContext { let localContext = new PartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 912, HiveSqlParser.RULE_partitionSpec); + this.enterRule(localContext, 910, HiveSqlParser.RULE_partitionSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -26949,7 +26379,7 @@ export class HiveSqlParser extends antlr.Parser { } public partitionVal(): PartitionValContext { let localContext = new PartitionValContext(this.context, this.state); - this.enterRule(localContext, 914, HiveSqlParser.RULE_partitionVal); + this.enterRule(localContext, 912, HiveSqlParser.RULE_partitionVal); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -26986,7 +26416,7 @@ export class HiveSqlParser extends antlr.Parser { } public partitionSelectorSpec(): PartitionSelectorSpecContext { let localContext = new PartitionSelectorSpecContext(this.context, this.state); - this.enterRule(localContext, 916, HiveSqlParser.RULE_partitionSelectorSpec); + this.enterRule(localContext, 914, HiveSqlParser.RULE_partitionSelectorSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27031,7 +26461,7 @@ export class HiveSqlParser extends antlr.Parser { } public partitionSelectorVal(): PartitionSelectorValContext { let localContext = new PartitionSelectorValContext(this.context, this.state); - this.enterRule(localContext, 918, HiveSqlParser.RULE_partitionSelectorVal); + this.enterRule(localContext, 916, HiveSqlParser.RULE_partitionSelectorVal); try { this.enterOuterAlt(localContext, 1); { @@ -27059,7 +26489,7 @@ export class HiveSqlParser extends antlr.Parser { } public partitionSelectorOperator(): PartitionSelectorOperatorContext { let localContext = new PartitionSelectorOperatorContext(this.context, this.state); - this.enterRule(localContext, 920, HiveSqlParser.RULE_partitionSelectorOperator); + this.enterRule(localContext, 918, HiveSqlParser.RULE_partitionSelectorOperator); try { this.state = 5131; this.errorHandler.sync(this); @@ -27103,7 +26533,7 @@ export class HiveSqlParser extends antlr.Parser { } public subQuerySelectorOperator(): SubQuerySelectorOperatorContext { let localContext = new SubQuerySelectorOperatorContext(this.context, this.state); - this.enterRule(localContext, 922, HiveSqlParser.RULE_subQuerySelectorOperator); + this.enterRule(localContext, 920, HiveSqlParser.RULE_subQuerySelectorOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27135,7 +26565,7 @@ export class HiveSqlParser extends antlr.Parser { } public sysFuncNames(): SysFuncNamesContext { let localContext = new SysFuncNamesContext(this.context, this.state); - this.enterRule(localContext, 924, HiveSqlParser.RULE_sysFuncNames); + this.enterRule(localContext, 922, HiveSqlParser.RULE_sysFuncNames); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27167,7 +26597,7 @@ export class HiveSqlParser extends antlr.Parser { } public id_(): Id_Context { let localContext = new Id_Context(this.context, this.state); - this.enterRule(localContext, 926, HiveSqlParser.RULE_id_); + this.enterRule(localContext, 924, HiveSqlParser.RULE_id_); try { this.state = 5139; this.errorHandler.sync(this); @@ -27443,7 +26873,7 @@ export class HiveSqlParser extends antlr.Parser { } public functionIdentifier(): FunctionIdentifierContext { let localContext = new FunctionIdentifierContext(this.context, this.state); - this.enterRule(localContext, 928, HiveSqlParser.RULE_functionIdentifier); + this.enterRule(localContext, 926, HiveSqlParser.RULE_functionIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27480,7 +26910,7 @@ export class HiveSqlParser extends antlr.Parser { } public principalIdentifier(): PrincipalIdentifierContext { let localContext = new PrincipalIdentifierContext(this.context, this.state); - this.enterRule(localContext, 930, HiveSqlParser.RULE_principalIdentifier); + this.enterRule(localContext, 928, HiveSqlParser.RULE_principalIdentifier); try { this.enterOuterAlt(localContext, 1); { @@ -27504,7 +26934,7 @@ export class HiveSqlParser extends antlr.Parser { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 932, HiveSqlParser.RULE_nonReserved); + this.enterRule(localContext, 930, HiveSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27536,7 +26966,7 @@ export class HiveSqlParser extends antlr.Parser { } public sql11ReservedKeywordsUsedAsFunctionName(): Sql11ReservedKeywordsUsedAsFunctionNameContext { let localContext = new Sql11ReservedKeywordsUsedAsFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 934, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); + this.enterRule(localContext, 932, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27568,7 +26998,7 @@ export class HiveSqlParser extends antlr.Parser { } public hint(): HintContext { let localContext = new HintContext(this.context, this.state); - this.enterRule(localContext, 936, HiveSqlParser.RULE_hint); + this.enterRule(localContext, 934, HiveSqlParser.RULE_hint); try { this.enterOuterAlt(localContext, 1); { @@ -27594,7 +27024,7 @@ export class HiveSqlParser extends antlr.Parser { } public hintList(): HintListContext { let localContext = new HintListContext(this.context, this.state); - this.enterRule(localContext, 938, HiveSqlParser.RULE_hintList); + this.enterRule(localContext, 936, HiveSqlParser.RULE_hintList); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27635,7 +27065,7 @@ export class HiveSqlParser extends antlr.Parser { } public hintItem(): HintItemContext { let localContext = new HintItemContext(this.context, this.state); - this.enterRule(localContext, 940, HiveSqlParser.RULE_hintItem); + this.enterRule(localContext, 938, HiveSqlParser.RULE_hintItem); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27674,7 +27104,7 @@ export class HiveSqlParser extends antlr.Parser { } public hintName(): HintNameContext { let localContext = new HintNameContext(this.context, this.state); - this.enterRule(localContext, 942, HiveSqlParser.RULE_hintName); + this.enterRule(localContext, 940, HiveSqlParser.RULE_hintName); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27706,7 +27136,7 @@ export class HiveSqlParser extends antlr.Parser { } public hintArgs(): HintArgsContext { let localContext = new HintArgsContext(this.context, this.state); - this.enterRule(localContext, 944, HiveSqlParser.RULE_hintArgs); + this.enterRule(localContext, 942, HiveSqlParser.RULE_hintArgs); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27747,7 +27177,7 @@ export class HiveSqlParser extends antlr.Parser { } public hintArgName(): HintArgNameContext { let localContext = new HintArgNameContext(this.context, this.state); - this.enterRule(localContext, 946, HiveSqlParser.RULE_hintArgName); + this.enterRule(localContext, 944, HiveSqlParser.RULE_hintArgName); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27779,7 +27209,7 @@ export class HiveSqlParser extends antlr.Parser { } public prepareStatement(): PrepareStatementContext { let localContext = new PrepareStatementContext(this.context, this.state); - this.enterRule(localContext, 948, HiveSqlParser.RULE_prepareStatement); + this.enterRule(localContext, 946, HiveSqlParser.RULE_prepareStatement); try { this.enterOuterAlt(localContext, 1); { @@ -27809,7 +27239,7 @@ export class HiveSqlParser extends antlr.Parser { } public executeStatement(): ExecuteStatementContext { let localContext = new ExecuteStatementContext(this.context, this.state); - this.enterRule(localContext, 950, HiveSqlParser.RULE_executeStatement); + this.enterRule(localContext, 948, HiveSqlParser.RULE_executeStatement); try { this.enterOuterAlt(localContext, 1); { @@ -27839,7 +27269,7 @@ export class HiveSqlParser extends antlr.Parser { } public executeParamList(): ExecuteParamListContext { let localContext = new ExecuteParamListContext(this.context, this.state); - this.enterRule(localContext, 952, HiveSqlParser.RULE_executeParamList); + this.enterRule(localContext, 950, HiveSqlParser.RULE_executeParamList); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -27880,7 +27310,7 @@ export class HiveSqlParser extends antlr.Parser { } public resourcePlanDdlStatements(): ResourcePlanDdlStatementsContext { let localContext = new ResourcePlanDdlStatementsContext(this.context, this.state); - this.enterRule(localContext, 954, HiveSqlParser.RULE_resourcePlanDdlStatements); + this.enterRule(localContext, 952, HiveSqlParser.RULE_resourcePlanDdlStatements); try { this.state = 5214; this.errorHandler.sync(this); @@ -28001,7 +27431,7 @@ export class HiveSqlParser extends antlr.Parser { } public rpAssign(): RpAssignContext { let localContext = new RpAssignContext(this.context, this.state); - this.enterRule(localContext, 956, HiveSqlParser.RULE_rpAssign); + this.enterRule(localContext, 954, HiveSqlParser.RULE_rpAssign); try { this.state = 5223; this.errorHandler.sync(this); @@ -28050,7 +27480,7 @@ export class HiveSqlParser extends antlr.Parser { } public rpAssignList(): RpAssignListContext { let localContext = new RpAssignListContext(this.context, this.state); - this.enterRule(localContext, 958, HiveSqlParser.RULE_rpAssignList); + this.enterRule(localContext, 956, HiveSqlParser.RULE_rpAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28091,7 +27521,7 @@ export class HiveSqlParser extends antlr.Parser { } public rpUnassign(): RpUnassignContext { let localContext = new RpUnassignContext(this.context, this.state); - this.enterRule(localContext, 960, HiveSqlParser.RULE_rpUnassign); + this.enterRule(localContext, 958, HiveSqlParser.RULE_rpUnassign); try { this.state = 5236; this.errorHandler.sync(this); @@ -28132,7 +27562,7 @@ export class HiveSqlParser extends antlr.Parser { } public rpUnassignList(): RpUnassignListContext { let localContext = new RpUnassignListContext(this.context, this.state); - this.enterRule(localContext, 962, HiveSqlParser.RULE_rpUnassignList); + this.enterRule(localContext, 960, HiveSqlParser.RULE_rpUnassignList); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28173,7 +27603,7 @@ export class HiveSqlParser extends antlr.Parser { } public createResourcePlanStatement(): CreateResourcePlanStatementContext { let localContext = new CreateResourcePlanStatementContext(this.context, this.state); - this.enterRule(localContext, 964, HiveSqlParser.RULE_createResourcePlanStatement); + this.enterRule(localContext, 962, HiveSqlParser.RULE_createResourcePlanStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28244,7 +27674,7 @@ export class HiveSqlParser extends antlr.Parser { } public withReplace(): WithReplaceContext { let localContext = new WithReplaceContext(this.context, this.state); - this.enterRule(localContext, 966, HiveSqlParser.RULE_withReplace); + this.enterRule(localContext, 964, HiveSqlParser.RULE_withReplace); try { this.enterOuterAlt(localContext, 1); { @@ -28270,7 +27700,7 @@ export class HiveSqlParser extends antlr.Parser { } public activate(): ActivateContext { let localContext = new ActivateContext(this.context, this.state); - this.enterRule(localContext, 968, HiveSqlParser.RULE_activate); + this.enterRule(localContext, 966, HiveSqlParser.RULE_activate); try { this.enterOuterAlt(localContext, 1); { @@ -28304,7 +27734,7 @@ export class HiveSqlParser extends antlr.Parser { } public enable(): EnableContext { let localContext = new EnableContext(this.context, this.state); - this.enterRule(localContext, 970, HiveSqlParser.RULE_enable); + this.enterRule(localContext, 968, HiveSqlParser.RULE_enable); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28336,7 +27766,7 @@ export class HiveSqlParser extends antlr.Parser { } public disable(): DisableContext { let localContext = new DisableContext(this.context, this.state); - this.enterRule(localContext, 972, HiveSqlParser.RULE_disable); + this.enterRule(localContext, 970, HiveSqlParser.RULE_disable); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28368,7 +27798,7 @@ export class HiveSqlParser extends antlr.Parser { } public unmanaged(): UnmanagedContext { let localContext = new UnmanagedContext(this.context, this.state); - this.enterRule(localContext, 974, HiveSqlParser.RULE_unmanaged); + this.enterRule(localContext, 972, HiveSqlParser.RULE_unmanaged); try { this.enterOuterAlt(localContext, 1); { @@ -28392,7 +27822,7 @@ export class HiveSqlParser extends antlr.Parser { } public year(): YearContext { let localContext = new YearContext(this.context, this.state); - this.enterRule(localContext, 976, HiveSqlParser.RULE_year); + this.enterRule(localContext, 974, HiveSqlParser.RULE_year); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28424,7 +27854,7 @@ export class HiveSqlParser extends antlr.Parser { } public month(): MonthContext { let localContext = new MonthContext(this.context, this.state); - this.enterRule(localContext, 978, HiveSqlParser.RULE_month); + this.enterRule(localContext, 976, HiveSqlParser.RULE_month); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28456,7 +27886,7 @@ export class HiveSqlParser extends antlr.Parser { } public week(): WeekContext { let localContext = new WeekContext(this.context, this.state); - this.enterRule(localContext, 980, HiveSqlParser.RULE_week); + this.enterRule(localContext, 978, HiveSqlParser.RULE_week); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28488,7 +27918,7 @@ export class HiveSqlParser extends antlr.Parser { } public day(): DayContext { let localContext = new DayContext(this.context, this.state); - this.enterRule(localContext, 982, HiveSqlParser.RULE_day); + this.enterRule(localContext, 980, HiveSqlParser.RULE_day); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28520,7 +27950,7 @@ export class HiveSqlParser extends antlr.Parser { } public hour(): HourContext { let localContext = new HourContext(this.context, this.state); - this.enterRule(localContext, 984, HiveSqlParser.RULE_hour); + this.enterRule(localContext, 982, HiveSqlParser.RULE_hour); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28552,7 +27982,7 @@ export class HiveSqlParser extends antlr.Parser { } public minute(): MinuteContext { let localContext = new MinuteContext(this.context, this.state); - this.enterRule(localContext, 986, HiveSqlParser.RULE_minute); + this.enterRule(localContext, 984, HiveSqlParser.RULE_minute); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28584,7 +28014,7 @@ export class HiveSqlParser extends antlr.Parser { } public second(): SecondContext { let localContext = new SecondContext(this.context, this.state); - this.enterRule(localContext, 988, HiveSqlParser.RULE_second); + this.enterRule(localContext, 986, HiveSqlParser.RULE_second); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28616,7 +28046,7 @@ export class HiveSqlParser extends antlr.Parser { } public decimal(): DecimalContext { let localContext = new DecimalContext(this.context, this.state); - this.enterRule(localContext, 990, HiveSqlParser.RULE_decimal); + this.enterRule(localContext, 988, HiveSqlParser.RULE_decimal); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28648,7 +28078,7 @@ export class HiveSqlParser extends antlr.Parser { } public alterResourcePlanStatement(): AlterResourcePlanStatementContext { let localContext = new AlterResourcePlanStatementContext(this.context, this.state); - this.enterRule(localContext, 992, HiveSqlParser.RULE_alterResourcePlanStatement); + this.enterRule(localContext, 990, HiveSqlParser.RULE_alterResourcePlanStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28757,7 +28187,7 @@ export class HiveSqlParser extends antlr.Parser { } public globalWmStatement(): GlobalWmStatementContext { let localContext = new GlobalWmStatementContext(this.context, this.state); - this.enterRule(localContext, 994, HiveSqlParser.RULE_globalWmStatement); + this.enterRule(localContext, 992, HiveSqlParser.RULE_globalWmStatement); try { this.enterOuterAlt(localContext, 1); { @@ -28803,7 +28233,7 @@ export class HiveSqlParser extends antlr.Parser { } public replaceResourcePlanStatement(): ReplaceResourcePlanStatementContext { let localContext = new ReplaceResourcePlanStatementContext(this.context, this.state); - this.enterRule(localContext, 996, HiveSqlParser.RULE_replaceResourcePlanStatement); + this.enterRule(localContext, 994, HiveSqlParser.RULE_replaceResourcePlanStatement); try { this.enterOuterAlt(localContext, 1); { @@ -28861,7 +28291,7 @@ export class HiveSqlParser extends antlr.Parser { } public dropResourcePlanStatement(): DropResourcePlanStatementContext { let localContext = new DropResourcePlanStatementContext(this.context, this.state); - this.enterRule(localContext, 998, HiveSqlParser.RULE_dropResourcePlanStatement); + this.enterRule(localContext, 996, HiveSqlParser.RULE_dropResourcePlanStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28902,7 +28332,7 @@ export class HiveSqlParser extends antlr.Parser { } public poolPath(): PoolPathContext { let localContext = new PoolPathContext(this.context, this.state); - this.enterRule(localContext, 1000, HiveSqlParser.RULE_poolPath); + this.enterRule(localContext, 998, HiveSqlParser.RULE_poolPath); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -28943,7 +28373,7 @@ export class HiveSqlParser extends antlr.Parser { } public triggerExpression(): TriggerExpressionContext { let localContext = new TriggerExpressionContext(this.context, this.state); - this.enterRule(localContext, 1002, HiveSqlParser.RULE_triggerExpression); + this.enterRule(localContext, 1000, HiveSqlParser.RULE_triggerExpression); try { this.enterOuterAlt(localContext, 1); { @@ -28967,7 +28397,7 @@ export class HiveSqlParser extends antlr.Parser { } public triggerExpressionStandalone(): TriggerExpressionStandaloneContext { let localContext = new TriggerExpressionStandaloneContext(this.context, this.state); - this.enterRule(localContext, 1004, HiveSqlParser.RULE_triggerExpressionStandalone); + this.enterRule(localContext, 1002, HiveSqlParser.RULE_triggerExpressionStandalone); try { this.enterOuterAlt(localContext, 1); { @@ -28993,7 +28423,7 @@ export class HiveSqlParser extends antlr.Parser { } public triggerOrExpression(): TriggerOrExpressionContext { let localContext = new TriggerOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 1006, HiveSqlParser.RULE_triggerOrExpression); + this.enterRule(localContext, 1004, HiveSqlParser.RULE_triggerOrExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -29034,7 +28464,7 @@ export class HiveSqlParser extends antlr.Parser { } public triggerAndExpression(): TriggerAndExpressionContext { let localContext = new TriggerAndExpressionContext(this.context, this.state); - this.enterRule(localContext, 1008, HiveSqlParser.RULE_triggerAndExpression); + this.enterRule(localContext, 1006, HiveSqlParser.RULE_triggerAndExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -29075,7 +28505,7 @@ export class HiveSqlParser extends antlr.Parser { } public triggerAtomExpression(): TriggerAtomExpressionContext { let localContext = new TriggerAtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 1010, HiveSqlParser.RULE_triggerAtomExpression); + this.enterRule(localContext, 1008, HiveSqlParser.RULE_triggerAtomExpression); try { this.enterOuterAlt(localContext, 1); { @@ -29103,7 +28533,7 @@ export class HiveSqlParser extends antlr.Parser { } public triggerLiteral(): TriggerLiteralContext { let localContext = new TriggerLiteralContext(this.context, this.state); - this.enterRule(localContext, 1012, HiveSqlParser.RULE_triggerLiteral); + this.enterRule(localContext, 1010, HiveSqlParser.RULE_triggerLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -29135,7 +28565,7 @@ export class HiveSqlParser extends antlr.Parser { } public comparisionOperator(): ComparisionOperatorContext { let localContext = new ComparisionOperatorContext(this.context, this.state); - this.enterRule(localContext, 1014, HiveSqlParser.RULE_comparisionOperator); + this.enterRule(localContext, 1012, HiveSqlParser.RULE_comparisionOperator); try { this.enterOuterAlt(localContext, 1); { @@ -29159,7 +28589,7 @@ export class HiveSqlParser extends antlr.Parser { } public triggerActionExpression(): TriggerActionExpressionContext { let localContext = new TriggerActionExpressionContext(this.context, this.state); - this.enterRule(localContext, 1016, HiveSqlParser.RULE_triggerActionExpression); + this.enterRule(localContext, 1014, HiveSqlParser.RULE_triggerActionExpression); try { this.state = 5385; this.errorHandler.sync(this); @@ -29202,7 +28632,7 @@ export class HiveSqlParser extends antlr.Parser { } public triggerActionExpressionStandalone(): TriggerActionExpressionStandaloneContext { let localContext = new TriggerActionExpressionStandaloneContext(this.context, this.state); - this.enterRule(localContext, 1018, HiveSqlParser.RULE_triggerActionExpressionStandalone); + this.enterRule(localContext, 1016, HiveSqlParser.RULE_triggerActionExpressionStandalone); try { this.enterOuterAlt(localContext, 1); { @@ -29228,7 +28658,7 @@ export class HiveSqlParser extends antlr.Parser { } public createTriggerStatement(): CreateTriggerStatementContext { let localContext = new CreateTriggerStatementContext(this.context, this.state); - this.enterRule(localContext, 1020, HiveSqlParser.RULE_createTriggerStatement); + this.enterRule(localContext, 1018, HiveSqlParser.RULE_createTriggerStatement); try { this.enterOuterAlt(localContext, 1); { @@ -29268,7 +28698,7 @@ export class HiveSqlParser extends antlr.Parser { } public alterTriggerStatement(): AlterTriggerStatementContext { let localContext = new AlterTriggerStatementContext(this.context, this.state); - this.enterRule(localContext, 1022, HiveSqlParser.RULE_alterTriggerStatement); + this.enterRule(localContext, 1020, HiveSqlParser.RULE_alterTriggerStatement); try { this.enterOuterAlt(localContext, 1); { @@ -29365,7 +28795,7 @@ export class HiveSqlParser extends antlr.Parser { } public dropTriggerStatement(): DropTriggerStatementContext { let localContext = new DropTriggerStatementContext(this.context, this.state); - this.enterRule(localContext, 1024, HiveSqlParser.RULE_dropTriggerStatement); + this.enterRule(localContext, 1022, HiveSqlParser.RULE_dropTriggerStatement); try { this.enterOuterAlt(localContext, 1); { @@ -29397,7 +28827,7 @@ export class HiveSqlParser extends antlr.Parser { } public poolAssign(): PoolAssignContext { let localContext = new PoolAssignContext(this.context, this.state); - this.enterRule(localContext, 1026, HiveSqlParser.RULE_poolAssign); + this.enterRule(localContext, 1024, HiveSqlParser.RULE_poolAssign); try { this.enterOuterAlt(localContext, 1); { @@ -29465,7 +28895,7 @@ export class HiveSqlParser extends antlr.Parser { } public poolAssignList(): PoolAssignListContext { let localContext = new PoolAssignListContext(this.context, this.state); - this.enterRule(localContext, 1028, HiveSqlParser.RULE_poolAssignList); + this.enterRule(localContext, 1026, HiveSqlParser.RULE_poolAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -29506,7 +28936,7 @@ export class HiveSqlParser extends antlr.Parser { } public createPoolStatement(): CreatePoolStatementContext { let localContext = new CreatePoolStatementContext(this.context, this.state); - this.enterRule(localContext, 1030, HiveSqlParser.RULE_createPoolStatement); + this.enterRule(localContext, 1028, HiveSqlParser.RULE_createPoolStatement); try { this.enterOuterAlt(localContext, 1); { @@ -29542,7 +28972,7 @@ export class HiveSqlParser extends antlr.Parser { } public alterPoolStatement(): AlterPoolStatementContext { let localContext = new AlterPoolStatementContext(this.context, this.state); - this.enterRule(localContext, 1032, HiveSqlParser.RULE_alterPoolStatement); + this.enterRule(localContext, 1030, HiveSqlParser.RULE_alterPoolStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -29615,7 +29045,7 @@ export class HiveSqlParser extends antlr.Parser { } public dropPoolStatement(): DropPoolStatementContext { let localContext = new DropPoolStatementContext(this.context, this.state); - this.enterRule(localContext, 1034, HiveSqlParser.RULE_dropPoolStatement); + this.enterRule(localContext, 1032, HiveSqlParser.RULE_dropPoolStatement); try { this.enterOuterAlt(localContext, 1); { @@ -29647,7 +29077,7 @@ export class HiveSqlParser extends antlr.Parser { } public createMappingStatement(): CreateMappingStatementContext { let localContext = new CreateMappingStatementContext(this.context, this.state); - this.enterRule(localContext, 1036, HiveSqlParser.RULE_createMappingStatement); + this.enterRule(localContext, 1034, HiveSqlParser.RULE_createMappingStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -29724,7 +29154,7 @@ export class HiveSqlParser extends antlr.Parser { } public alterMappingStatement(): AlterMappingStatementContext { let localContext = new AlterMappingStatementContext(this.context, this.state); - this.enterRule(localContext, 1038, HiveSqlParser.RULE_alterMappingStatement); + this.enterRule(localContext, 1036, HiveSqlParser.RULE_alterMappingStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -29801,7 +29231,7 @@ export class HiveSqlParser extends antlr.Parser { } public dropMappingStatement(): DropMappingStatementContext { let localContext = new DropMappingStatementContext(this.context, this.state); - this.enterRule(localContext, 1040, HiveSqlParser.RULE_dropMappingStatement); + this.enterRule(localContext, 1038, HiveSqlParser.RULE_dropMappingStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -29843,6 +29273,21 @@ export class HiveSqlParser extends antlr.Parser { return localContext; } + public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { + switch (ruleIndex) { + case 141: + return this.columnName_sempred(localContext as ColumnNameContext, predIndex); + } + return true; + } + private columnName_sempred(localContext: ColumnNameContext | null, predIndex: number): boolean { + switch (predIndex) { + case 0: + return this.shouldMatchEmpty(); + } + return true; + } + public static readonly _serializedATN: number[] = [ 4,1,437,5519,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, @@ -29935,2275 +29380,2275 @@ export class HiveSqlParser extends antlr.Parser { 2,500,7,500,2,501,7,501,2,502,7,502,2,503,7,503,2,504,7,504,2,505, 7,505,2,506,7,506,2,507,7,507,2,508,7,508,2,509,7,509,2,510,7,510, 2,511,7,511,2,512,7,512,2,513,7,513,2,514,7,514,2,515,7,515,2,516, - 7,516,2,517,7,517,2,518,7,518,2,519,7,519,2,520,7,520,1,0,5,0,1044, - 8,0,10,0,12,0,1047,9,0,1,0,1,0,1,1,1,1,3,1,1053,8,1,1,1,3,1,1056, - 8,1,1,2,1,2,5,2,1060,8,2,10,2,12,2,1063,9,2,1,2,1,2,1,2,3,2,1068, - 8,2,1,3,1,3,1,3,1,3,1,3,3,3,1075,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, - 1,3,3,3,1085,8,3,1,3,3,3,1088,8,3,1,3,1,3,3,3,1092,8,3,1,4,1,4,1, - 5,1,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3, - 6,1112,8,6,1,7,1,7,1,7,3,7,1117,8,7,1,7,1,7,1,7,3,7,1122,8,7,1,7, - 1,7,1,7,1,7,3,7,1128,8,7,1,8,1,8,1,8,1,9,1,9,3,9,1135,8,9,1,9,1, - 9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1148,8,10,1,11, - 1,11,3,11,1152,8,11,1,11,1,11,3,11,1156,8,11,1,11,1,11,1,11,3,11, - 1161,8,11,1,12,1,12,1,12,1,12,1,12,3,12,1168,8,12,1,12,1,12,3,12, - 1172,8,12,1,13,1,13,1,13,3,13,1177,8,13,1,14,1,14,1,14,1,14,1,14, - 3,14,1184,8,14,1,14,1,14,3,14,1188,8,14,1,15,1,15,1,15,1,15,1,16, - 1,16,1,16,5,16,1197,8,16,10,16,12,16,1200,9,16,1,17,1,17,1,17,3, - 17,1205,8,17,1,18,1,18,1,18,1,18,1,18,3,18,1212,8,18,1,19,1,19,1, + 7,516,2,517,7,517,2,518,7,518,2,519,7,519,1,0,5,0,1042,8,0,10,0, + 12,0,1045,9,0,1,0,1,0,1,1,1,1,3,1,1051,8,1,1,1,3,1,1054,8,1,1,2, + 1,2,5,2,1058,8,2,10,2,12,2,1061,9,2,1,2,1,2,1,2,3,2,1066,8,2,1,3, + 1,3,1,3,1,3,1,3,3,3,1073,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3, + 1083,8,3,1,3,3,3,1086,8,3,1,3,1,3,3,3,1090,8,3,1,4,1,4,1,5,1,5,1, + 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1110,8, + 6,1,7,1,7,1,7,3,7,1115,8,7,1,7,1,7,1,7,3,7,1120,8,7,1,7,1,7,1,7, + 1,7,3,7,1126,8,7,1,8,1,8,1,8,1,9,1,9,3,9,1133,8,9,1,9,1,9,1,9,1, + 9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1146,8,10,1,11,1,11,3,11, + 1150,8,11,1,11,1,11,3,11,1154,8,11,1,11,1,11,1,11,3,11,1159,8,11, + 1,12,1,12,1,12,1,12,1,12,3,12,1166,8,12,1,12,1,12,3,12,1170,8,12, + 1,13,1,13,1,13,3,13,1175,8,13,1,14,1,14,1,14,1,14,1,14,3,14,1182, + 8,14,1,14,1,14,3,14,1186,8,14,1,15,1,15,1,15,1,15,1,16,1,16,1,16, + 5,16,1195,8,16,10,16,12,16,1198,9,16,1,17,1,17,1,17,3,17,1203,8, + 17,1,18,1,18,1,18,1,18,1,18,3,18,1210,8,18,1,19,1,19,1,19,1,19,1, 19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, 19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, 19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, - 19,1,19,1,19,1,19,1,19,1,19,3,19,1261,8,19,1,20,1,20,1,20,1,21,1, - 21,1,22,1,22,1,22,1,22,1,23,1,23,1,24,1,24,1,24,1,25,1,25,1,25,1, - 26,1,26,1,26,1,26,1,27,1,27,1,27,1,28,1,28,3,28,1289,8,28,1,28,1, - 28,3,28,1293,8,28,1,28,1,28,3,28,1297,8,28,1,28,3,28,1300,8,28,1, - 28,3,28,1303,8,28,1,28,1,28,1,28,3,28,1308,8,28,1,28,1,28,1,28,1, - 28,3,28,1314,8,28,1,28,1,28,3,28,1318,8,28,1,28,1,28,1,28,1,28,3, - 28,1324,8,28,3,28,1326,8,28,1,29,1,29,1,29,1,30,1,30,1,30,1,31,1, - 31,1,31,1,31,1,32,1,32,1,32,5,32,1341,8,32,10,32,12,32,1344,9,32, - 1,33,1,33,1,33,1,34,1,34,1,34,1,35,1,35,1,35,3,35,1355,8,35,1,35, - 1,35,3,35,1359,8,35,1,36,1,36,1,36,1,37,1,37,3,37,1366,8,37,1,37, - 1,37,1,37,1,37,1,37,1,37,3,37,1374,8,37,1,37,3,37,1377,8,37,1,38, - 1,38,1,38,3,38,1382,8,38,1,38,1,38,3,38,1386,8,38,1,38,3,38,1389, - 8,38,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,40,3,40,1399,8,40,1,40, - 1,40,1,40,1,40,1,40,1,40,3,40,1407,8,40,5,40,1409,8,40,10,40,12, - 40,1412,9,40,3,40,1414,8,40,1,41,1,41,3,41,1418,8,41,1,42,1,42,3, - 42,1422,8,42,1,42,3,42,1425,8,42,1,43,1,43,1,43,3,43,1430,8,43,1, - 43,1,43,1,43,1,43,3,43,1436,8,43,1,43,1,43,1,43,3,43,1441,8,43,1, - 43,1,43,1,43,3,43,1446,8,43,1,43,1,43,3,43,1450,8,43,1,44,1,44,1, - 44,1,44,1,44,1,44,1,44,1,44,1,44,3,44,1461,8,44,3,44,1463,8,44,1, - 44,1,44,3,44,1467,8,44,1,45,1,45,1,46,1,46,1,47,1,47,1,47,1,47,3, - 47,1477,8,47,1,47,1,47,3,47,1481,8,47,1,47,1,47,1,47,1,47,3,47,1487, - 8,47,1,47,3,47,1490,8,47,1,47,1,47,1,47,1,47,1,47,3,47,1497,8,47, - 1,47,1,47,1,47,3,47,1502,8,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47, - 1510,8,47,1,47,1,47,1,47,3,47,1515,8,47,1,47,1,47,3,47,1519,8,47, - 1,47,1,47,1,47,1,47,1,47,1,47,3,47,1527,8,47,1,47,1,47,1,47,3,47, - 1532,8,47,1,47,1,47,1,47,1,47,3,47,1538,8,47,1,47,1,47,1,47,1,47, - 3,47,1544,8,47,1,47,3,47,1547,8,47,1,47,3,47,1550,8,47,1,47,3,47, - 1553,8,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1562,8,47,1,47, - 1,47,1,47,1,47,1,47,1,47,3,47,1570,8,47,1,47,1,47,1,47,3,47,1575, - 8,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1583,8,47,1,47,1,47,1,47, - 1,47,1,47,3,47,1590,8,47,1,47,3,47,1593,8,47,1,47,3,47,1596,8,47, - 3,47,1598,8,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1606,8,47,1,47, - 3,47,1609,8,47,1,47,3,47,1612,8,47,1,47,3,47,1615,8,47,1,47,3,47, - 1618,8,47,1,47,3,47,1621,8,47,1,47,3,47,1624,8,47,1,47,3,47,1627, - 8,47,1,47,3,47,1630,8,47,1,47,3,47,1633,8,47,1,47,3,47,1636,8,47, - 3,47,1638,8,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, - 3,47,1650,8,47,1,47,1,47,1,47,1,47,3,47,1656,8,47,1,47,1,47,1,47, - 1,47,1,47,1,47,3,47,1664,8,47,3,47,1666,8,47,1,48,1,48,1,48,1,48, - 1,48,1,48,1,48,1,48,3,48,1676,8,48,1,49,1,49,1,49,1,49,3,49,1682, - 8,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,52,1,52,1,52, - 1,52,3,52,1697,8,52,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,55, - 1,55,1,55,1,55,1,56,1,56,1,56,3,56,1714,8,56,1,56,1,56,1,56,3,56, - 1719,8,56,1,57,1,57,3,57,1723,8,57,1,57,1,57,3,57,1727,8,57,1,57, - 1,57,1,57,1,58,1,58,3,58,1734,8,58,1,58,1,58,1,58,5,58,1739,8,58, - 10,58,12,58,1742,9,58,1,58,1,58,1,58,3,58,1747,8,58,1,59,1,59,3, - 59,1751,8,59,1,59,3,59,1754,8,59,1,59,1,59,1,59,5,59,1759,8,59,10, - 59,12,59,1762,9,59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,61, - 1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,3,63,1784, - 8,63,1,64,1,64,1,64,3,64,1789,8,64,1,64,1,64,3,64,1793,8,64,1,65, - 1,65,1,65,1,65,1,66,1,66,3,66,1801,8,66,1,67,1,67,1,67,1,68,1,68, - 1,68,1,68,3,68,1810,8,68,1,68,1,68,3,68,1814,8,68,1,68,1,68,1,68, - 1,68,3,68,1820,8,68,1,69,1,69,1,69,1,69,3,69,1826,8,69,1,69,1,69, - 1,69,1,69,1,69,3,69,1833,8,69,1,69,3,69,1836,8,69,1,69,1,69,1,69, - 1,69,3,69,1842,8,69,1,70,1,70,1,70,5,70,1847,8,70,10,70,12,70,1850, - 9,70,1,71,1,71,1,71,1,71,1,71,3,71,1857,8,71,1,72,1,72,1,73,1,73, - 1,73,5,73,1864,8,73,10,73,12,73,1867,9,73,1,74,1,74,1,74,1,74,1, - 74,1,74,3,74,1875,8,74,1,75,1,75,1,75,1,75,1,75,3,75,1882,8,75,1, - 76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,79,1, - 79,1,79,1,79,1,80,1,80,3,80,1902,8,80,1,80,1,80,1,80,1,80,1,80,3, - 80,1909,8,80,3,80,1911,8,80,1,81,1,81,1,81,5,81,1916,8,81,10,81, - 12,81,1919,9,81,1,82,1,82,1,82,1,83,1,83,1,84,1,84,3,84,1928,8,84, - 1,84,1,84,1,84,1,84,1,84,1,84,3,84,1936,8,84,1,85,1,85,3,85,1940, - 8,85,1,85,1,85,3,85,1944,8,85,1,85,1,85,1,86,1,86,1,86,1,87,1,87, - 1,87,1,87,1,87,1,87,3,87,1957,8,87,1,87,1,87,1,87,1,88,1,88,1,88, - 1,88,3,88,1966,8,88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,1,89,1,89, - 1,89,1,89,1,89,1,89,1,89,3,89,1982,8,89,1,89,1,89,3,89,1986,8,89, - 1,89,1,89,1,89,3,89,1991,8,89,1,89,1,89,1,89,3,89,1996,8,89,1,89, - 3,89,1999,8,89,1,89,3,89,2002,8,89,1,89,1,89,3,89,2006,8,89,1,89, - 3,89,2009,8,89,1,89,3,89,2012,8,89,1,90,1,90,1,90,3,90,2017,8,90, - 1,90,1,90,1,90,1,90,1,91,1,91,3,91,2025,8,91,1,91,1,91,3,91,2029, - 8,91,1,91,1,91,1,91,1,91,1,91,3,91,2036,8,91,1,91,3,91,2039,8,91, - 1,91,3,91,2042,8,91,1,91,3,91,2045,8,91,1,91,1,91,1,91,1,92,1,92, - 1,92,1,92,1,92,1,92,1,92,3,92,2057,8,92,1,92,1,92,1,93,1,93,3,93, - 2063,8,93,1,94,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,96,1,96, - 1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98, - 3,98,2089,8,98,1,98,1,98,1,99,1,99,1,99,1,99,3,99,2097,8,99,1,99, - 1,99,3,99,2101,8,99,1,99,3,99,2104,8,99,1,99,3,99,2107,8,99,1,99, - 3,99,2110,8,99,1,99,3,99,2113,8,99,1,99,3,99,2116,8,99,1,99,3,99, - 2119,8,99,1,99,3,99,2122,8,99,1,99,1,99,1,99,1,100,1,100,1,100,1, - 100,3,100,2131,8,100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1, - 101,3,101,2141,8,101,1,101,3,101,2144,8,101,1,101,1,101,1,102,1, - 102,1,102,1,102,1,102,1,103,1,103,1,103,1,103,1,103,1,103,1,104, - 1,104,1,104,1,104,1,104,3,104,2164,8,104,1,105,1,105,1,105,1,105, - 3,105,2170,8,105,1,105,1,105,1,105,1,105,3,105,2176,8,105,1,105, - 3,105,2179,8,105,3,105,2181,8,105,1,106,1,106,1,106,1,106,1,107, - 3,107,2188,8,107,1,107,1,107,1,107,1,108,1,108,3,108,2195,8,108, - 1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110,3,110,2205,8,110, - 1,110,1,110,1,110,3,110,2210,8,110,1,110,1,110,1,111,1,111,1,111, - 5,111,2217,8,111,10,111,12,111,2220,9,111,1,112,1,112,1,112,5,112, - 2225,8,112,10,112,12,112,2228,9,112,1,113,1,113,1,113,5,113,2233, - 8,113,10,113,12,113,2236,9,113,1,114,1,114,1,115,1,115,1,115,1,115, - 1,115,3,115,2245,8,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115, - 1,115,1,115,1,115,1,115,3,115,2258,8,115,1,116,1,116,1,116,1,116, - 1,116,1,116,1,116,1,116,1,116,1,116,1,116,3,116,2271,8,116,1,116, - 1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118,2292,8,118,1,119, - 1,119,3,119,2296,8,119,1,120,1,120,1,120,1,121,1,121,1,121,1,122, - 1,122,1,122,1,122,1,122,1,122,1,122,3,122,2311,8,122,1,123,1,123, - 1,123,1,123,3,123,2317,8,123,1,123,3,123,2320,8,123,1,123,3,123, - 2323,8,123,1,123,3,123,2326,8,123,1,123,3,123,2329,8,123,1,124,1, - 124,3,124,2333,8,124,1,125,1,125,1,125,1,126,1,126,1,126,1,126,1, - 127,1,127,1,127,5,127,2345,8,127,10,127,12,127,2348,9,127,1,127, - 1,127,1,127,5,127,2353,8,127,10,127,12,127,2356,9,127,3,127,2358, - 8,127,1,128,1,128,1,128,1,128,1,129,1,129,1,130,1,130,1,130,1,130, - 1,130,1,130,1,130,3,130,2373,8,130,1,131,1,131,1,131,1,131,1,131, - 1,131,1,132,1,132,1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133, - 1,133,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,3,135,2407,8,135,1,135,1,135,1,135, - 1,135,1,135,1,135,3,135,2415,8,135,1,135,1,135,1,135,3,135,2420, - 8,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,2428,8,135,1,135, - 1,135,1,135,3,135,2433,8,135,1,135,1,135,1,135,3,135,2438,8,135, - 1,136,1,136,1,136,1,137,1,137,1,137,5,137,2446,8,137,10,137,12,137, - 2449,9,137,1,138,1,138,1,138,5,138,2454,8,138,10,138,12,138,2457, - 9,138,1,139,1,139,1,139,5,139,2462,8,139,10,139,12,139,2465,9,139, - 1,140,1,140,1,140,5,140,2470,8,140,10,140,12,140,2473,9,140,1,141, - 1,141,1,141,5,141,2478,8,141,10,141,12,141,2481,9,141,1,142,1,142, - 1,143,1,143,1,143,1,143,1,143,1,143,3,143,2491,8,143,5,143,2493, - 8,143,10,143,12,143,2496,9,143,1,144,1,144,1,144,5,144,2501,8,144, - 10,144,12,144,2504,9,144,1,145,1,145,1,145,1,145,1,146,1,146,3,146, - 2512,8,146,1,146,3,146,2515,8,146,1,147,1,147,3,147,2519,8,147,1, - 148,1,148,1,149,1,149,1,149,3,149,2526,8,149,1,150,1,150,1,151,1, - 151,3,151,2532,8,151,1,151,1,151,3,151,2536,8,151,1,152,1,152,1, - 152,1,152,3,152,2542,8,152,1,153,1,153,3,153,2546,8,153,1,154,1, - 154,1,154,1,155,1,155,1,155,1,155,1,155,1,156,1,156,3,156,2558,8, - 156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156,2567,8,156,1, - 157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157,2578,8, - 157,1,158,1,158,3,158,2582,8,158,1,159,1,159,1,159,5,159,2587,8, - 159,10,159,12,159,2590,9,159,1,160,1,160,1,160,1,160,1,161,1,161, - 1,161,5,161,2599,8,161,10,161,12,161,2602,9,161,1,162,1,162,1,163, - 1,163,3,163,2608,8,163,1,164,1,164,1,165,1,165,1,165,1,166,1,166, - 3,166,2617,8,166,1,166,3,166,2620,8,166,1,167,1,167,1,167,5,167, - 2625,8,167,10,167,12,167,2628,9,167,1,168,1,168,1,168,3,168,2633, - 8,168,1,169,1,169,1,170,1,170,3,170,2639,8,170,1,170,3,170,2642, - 8,170,1,170,3,170,2645,8,170,1,171,1,171,1,171,1,171,3,171,2651, - 8,171,1,172,1,172,3,172,2655,8,172,1,173,1,173,3,173,2659,8,173, - 1,174,1,174,1,174,3,174,2664,8,174,1,174,1,174,3,174,2668,8,174, - 1,175,1,175,3,175,2672,8,175,1,176,1,176,3,176,2676,8,176,1,176, - 1,176,1,176,1,176,1,176,1,176,3,176,2684,8,176,1,177,1,177,3,177, - 2688,8,177,1,177,1,177,3,177,2692,8,177,1,178,1,178,3,178,2696,8, - 178,1,179,1,179,3,179,2700,8,179,1,179,1,179,1,179,1,179,1,179,1, - 179,3,179,2708,8,179,1,180,1,180,3,180,2712,8,180,1,180,1,180,3, - 180,2716,8,180,1,181,1,181,1,181,1,181,1,181,1,181,3,181,2724,8, - 181,1,182,1,182,1,182,3,182,2729,8,182,1,183,1,183,1,183,3,183,2734, - 8,183,1,184,1,184,3,184,2738,8,184,1,185,1,185,3,185,2742,8,185, - 1,186,1,186,1,186,1,186,1,186,3,186,2749,8,186,1,187,1,187,1,188, - 1,188,1,188,5,188,2756,8,188,10,188,12,188,2759,9,188,1,189,1,189, - 1,189,1,189,1,189,3,189,2766,8,189,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,1,190,1,190,1,190,3,190,2778,8,190,1,190,1,190,1,190, + 19,1,19,1,19,1,19,3,19,1259,8,19,1,20,1,20,1,20,1,21,1,21,1,22,1, + 22,1,22,1,22,1,23,1,23,1,24,1,24,1,24,1,25,1,25,1,25,1,26,1,26,1, + 26,1,26,1,27,1,27,1,27,1,28,1,28,3,28,1287,8,28,1,28,1,28,3,28,1291, + 8,28,1,28,1,28,3,28,1295,8,28,1,28,3,28,1298,8,28,1,28,3,28,1301, + 8,28,1,28,1,28,1,28,3,28,1306,8,28,1,28,1,28,1,28,1,28,3,28,1312, + 8,28,1,28,1,28,3,28,1316,8,28,1,28,1,28,1,28,1,28,3,28,1322,8,28, + 3,28,1324,8,28,1,29,1,29,1,29,1,30,1,30,1,30,1,31,1,31,1,31,1,31, + 1,32,1,32,1,32,5,32,1339,8,32,10,32,12,32,1342,9,32,1,33,1,33,1, + 33,1,34,1,34,1,34,1,35,1,35,1,35,3,35,1353,8,35,1,35,1,35,3,35,1357, + 8,35,1,36,1,36,1,36,1,37,1,37,3,37,1364,8,37,1,37,1,37,1,37,1,37, + 1,37,1,37,3,37,1372,8,37,1,37,3,37,1375,8,37,1,38,1,38,1,38,3,38, + 1380,8,38,1,38,1,38,3,38,1384,8,38,1,38,3,38,1387,8,38,1,39,1,39, + 1,39,1,39,1,39,1,40,1,40,1,40,3,40,1397,8,40,1,40,1,40,1,40,1,40, + 1,40,1,40,3,40,1405,8,40,5,40,1407,8,40,10,40,12,40,1410,9,40,3, + 40,1412,8,40,1,41,1,41,3,41,1416,8,41,1,42,1,42,3,42,1420,8,42,1, + 42,3,42,1423,8,42,1,43,1,43,1,43,3,43,1428,8,43,1,43,1,43,1,43,1, + 43,3,43,1434,8,43,1,43,1,43,1,43,3,43,1439,8,43,1,43,1,43,1,43,3, + 43,1444,8,43,1,43,1,43,3,43,1448,8,43,1,44,1,44,1,44,1,44,1,44,1, + 44,1,44,1,44,1,44,3,44,1459,8,44,3,44,1461,8,44,1,44,1,44,3,44,1465, + 8,44,1,45,1,45,1,46,1,46,1,47,1,47,1,47,1,47,3,47,1475,8,47,1,47, + 1,47,3,47,1479,8,47,1,47,1,47,1,47,1,47,3,47,1485,8,47,1,47,3,47, + 1488,8,47,1,47,1,47,1,47,1,47,1,47,3,47,1495,8,47,1,47,1,47,1,47, + 3,47,1500,8,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1508,8,47,1,47, + 1,47,1,47,3,47,1513,8,47,1,47,1,47,3,47,1517,8,47,1,47,1,47,1,47, + 1,47,1,47,1,47,3,47,1525,8,47,1,47,1,47,1,47,3,47,1530,8,47,1,47, + 1,47,1,47,1,47,3,47,1536,8,47,1,47,1,47,1,47,1,47,3,47,1542,8,47, + 1,47,3,47,1545,8,47,1,47,3,47,1548,8,47,1,47,3,47,1551,8,47,1,47, + 1,47,1,47,1,47,1,47,1,47,1,47,3,47,1560,8,47,1,47,1,47,1,47,1,47, + 1,47,1,47,3,47,1568,8,47,1,47,1,47,1,47,3,47,1573,8,47,1,47,1,47, + 1,47,1,47,1,47,1,47,3,47,1581,8,47,1,47,1,47,1,47,1,47,1,47,3,47, + 1588,8,47,1,47,3,47,1591,8,47,1,47,3,47,1594,8,47,3,47,1596,8,47, + 1,47,1,47,1,47,1,47,1,47,1,47,3,47,1604,8,47,1,47,3,47,1607,8,47, + 1,47,3,47,1610,8,47,1,47,3,47,1613,8,47,1,47,3,47,1616,8,47,1,47, + 3,47,1619,8,47,1,47,3,47,1622,8,47,1,47,3,47,1625,8,47,1,47,3,47, + 1628,8,47,1,47,3,47,1631,8,47,1,47,3,47,1634,8,47,3,47,1636,8,47, + 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1648,8,47, + 1,47,1,47,1,47,1,47,3,47,1654,8,47,1,47,1,47,1,47,1,47,1,47,1,47, + 3,47,1662,8,47,3,47,1664,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48, + 1,48,3,48,1674,8,48,1,49,1,49,1,49,1,49,3,49,1680,8,49,1,49,1,49, + 1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,52,1,52,1,52,1,52,3,52,1695, + 8,52,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,55,1,55,1,55,1,55, + 1,56,1,56,1,56,3,56,1712,8,56,1,56,1,56,1,56,3,56,1717,8,56,1,57, + 1,57,3,57,1721,8,57,1,57,1,57,3,57,1725,8,57,1,57,1,57,1,57,1,58, + 1,58,3,58,1732,8,58,1,58,1,58,1,58,5,58,1737,8,58,10,58,12,58,1740, + 9,58,1,58,1,58,1,58,3,58,1745,8,58,1,59,1,59,3,59,1749,8,59,1,59, + 3,59,1752,8,59,1,59,1,59,1,59,5,59,1757,8,59,10,59,12,59,1760,9, + 59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,62,1, + 62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,3,63,1782,8,63,1,64,1,64,1, + 64,3,64,1787,8,64,1,64,1,64,3,64,1791,8,64,1,65,1,65,1,65,1,65,1, + 66,1,66,3,66,1799,8,66,1,67,1,67,1,67,1,68,1,68,1,68,1,68,3,68,1808, + 8,68,1,68,1,68,3,68,1812,8,68,1,68,1,68,1,68,1,68,3,68,1818,8,68, + 1,69,1,69,1,69,1,69,3,69,1824,8,69,1,69,1,69,1,69,1,69,1,69,3,69, + 1831,8,69,1,69,3,69,1834,8,69,1,69,1,69,1,69,1,69,3,69,1840,8,69, + 1,70,1,70,1,70,5,70,1845,8,70,10,70,12,70,1848,9,70,1,71,1,71,1, + 71,1,71,1,71,3,71,1855,8,71,1,72,1,72,1,73,1,73,1,73,5,73,1862,8, + 73,10,73,12,73,1865,9,73,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1873, + 8,74,1,75,1,75,1,75,1,75,1,75,3,75,1880,8,75,1,76,1,76,1,76,1,76, + 1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,79,1,79,1,79,1,79,1,80, + 1,80,3,80,1900,8,80,1,80,1,80,1,80,1,80,1,80,3,80,1907,8,80,3,80, + 1909,8,80,1,81,1,81,1,81,5,81,1914,8,81,10,81,12,81,1917,9,81,1, + 82,1,82,1,82,1,83,1,83,1,84,1,84,3,84,1926,8,84,1,84,1,84,1,84,1, + 84,1,84,1,84,3,84,1934,8,84,1,85,1,85,3,85,1938,8,85,1,85,1,85,3, + 85,1942,8,85,1,85,1,85,1,86,1,86,1,86,1,87,1,87,1,87,1,87,1,87,1, + 87,3,87,1955,8,87,1,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88,1964,8, + 88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1, + 89,1,89,3,89,1980,8,89,1,89,1,89,3,89,1984,8,89,1,89,1,89,1,89,3, + 89,1989,8,89,1,89,1,89,1,89,3,89,1994,8,89,1,89,3,89,1997,8,89,1, + 89,3,89,2000,8,89,1,89,1,89,3,89,2004,8,89,1,89,3,89,2007,8,89,1, + 89,3,89,2010,8,89,1,90,1,90,1,90,3,90,2015,8,90,1,90,1,90,1,90,1, + 90,1,91,1,91,3,91,2023,8,91,1,91,1,91,3,91,2027,8,91,1,91,1,91,1, + 91,1,91,1,91,3,91,2034,8,91,1,91,3,91,2037,8,91,1,91,3,91,2040,8, + 91,1,91,3,91,2043,8,91,1,91,1,91,1,91,1,92,1,92,1,92,1,92,1,92,1, + 92,1,92,3,92,2055,8,92,1,92,1,92,1,93,1,93,3,93,2061,8,93,1,94,1, + 94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96,1, + 96,1,97,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98,3,98,2087,8,98,1, + 98,1,98,1,99,1,99,1,99,1,99,3,99,2095,8,99,1,99,1,99,3,99,2099,8, + 99,1,99,3,99,2102,8,99,1,99,3,99,2105,8,99,1,99,3,99,2108,8,99,1, + 99,3,99,2111,8,99,1,99,3,99,2114,8,99,1,99,3,99,2117,8,99,1,99,3, + 99,2120,8,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,3,100,2129,8, + 100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,101,3,101,2139,8, + 101,1,101,3,101,2142,8,101,1,101,1,101,1,102,1,102,1,102,1,102,1, + 102,1,103,1,103,1,103,1,103,1,103,1,103,1,104,1,104,1,104,1,104, + 1,104,3,104,2162,8,104,1,105,1,105,1,105,1,105,3,105,2168,8,105, + 1,105,1,105,1,105,1,105,3,105,2174,8,105,1,105,3,105,2177,8,105, + 3,105,2179,8,105,1,106,1,106,1,106,1,106,1,107,3,107,2186,8,107, + 1,107,1,107,1,107,1,108,1,108,3,108,2193,8,108,1,109,1,109,1,109, + 1,110,1,110,1,110,1,110,1,110,3,110,2203,8,110,1,110,1,110,1,110, + 3,110,2208,8,110,1,110,1,110,1,111,1,111,1,111,5,111,2215,8,111, + 10,111,12,111,2218,9,111,1,112,1,112,1,112,5,112,2223,8,112,10,112, + 12,112,2226,9,112,1,113,1,113,1,113,5,113,2231,8,113,10,113,12,113, + 2234,9,113,1,114,1,114,1,115,1,115,1,115,1,115,1,115,3,115,2243, + 8,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115, + 1,115,3,115,2256,8,115,1,116,1,116,1,116,1,116,1,116,1,116,1,116, + 1,116,1,116,1,116,1,116,3,116,2269,8,116,1,116,1,116,1,116,1,116, + 1,117,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,1,118,1,118,3,118,2290,8,118,1,119,1,119,3,119,2294, + 8,119,1,120,1,120,1,120,1,121,1,121,1,121,1,122,1,122,1,122,1,122, + 1,122,1,122,1,122,3,122,2309,8,122,1,123,1,123,1,123,1,123,3,123, + 2315,8,123,1,123,3,123,2318,8,123,1,123,3,123,2321,8,123,1,123,3, + 123,2324,8,123,1,123,3,123,2327,8,123,1,124,1,124,3,124,2331,8,124, + 1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,127,1,127,1,127,5,127, + 2343,8,127,10,127,12,127,2346,9,127,1,127,1,127,1,127,5,127,2351, + 8,127,10,127,12,127,2354,9,127,3,127,2356,8,127,1,128,1,128,1,128, + 1,128,1,129,1,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130, + 2371,8,130,1,131,1,131,1,131,1,131,1,131,1,131,1,132,1,132,1,132, + 1,132,1,132,1,132,1,133,1,133,1,133,1,133,1,133,1,134,1,134,1,134, + 1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,3,135,2405,8,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135, + 2413,8,135,1,135,1,135,1,135,3,135,2418,8,135,1,135,1,135,1,135, + 1,135,1,135,1,135,3,135,2426,8,135,1,135,1,135,1,135,3,135,2431, + 8,135,1,135,1,135,1,135,3,135,2436,8,135,1,136,1,136,1,136,1,137, + 1,137,1,137,5,137,2444,8,137,10,137,12,137,2447,9,137,1,138,1,138, + 1,138,5,138,2452,8,138,10,138,12,138,2455,9,138,1,139,1,139,1,139, + 5,139,2460,8,139,10,139,12,139,2463,9,139,1,140,1,140,1,140,5,140, + 2468,8,140,10,140,12,140,2471,9,140,1,141,1,141,1,141,5,141,2476, + 8,141,10,141,12,141,2479,9,141,1,141,3,141,2482,8,141,1,142,1,142, + 1,143,1,143,1,143,1,143,1,143,1,143,3,143,2492,8,143,5,143,2494, + 8,143,10,143,12,143,2497,9,143,1,144,1,144,1,144,5,144,2502,8,144, + 10,144,12,144,2505,9,144,1,145,1,145,1,145,1,145,1,146,1,146,3,146, + 2513,8,146,1,146,3,146,2516,8,146,1,147,1,147,3,147,2520,8,147,1, + 148,1,148,1,149,1,149,1,149,3,149,2527,8,149,1,150,1,150,1,151,1, + 151,3,151,2533,8,151,1,151,1,151,3,151,2537,8,151,1,152,1,152,1, + 152,1,152,3,152,2543,8,152,1,153,1,153,3,153,2547,8,153,1,154,1, + 154,1,154,1,155,1,155,1,155,1,155,1,155,1,156,1,156,3,156,2559,8, + 156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156,2568,8,156,1, + 157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157,2579,8, + 157,1,158,1,158,3,158,2583,8,158,1,159,1,159,1,159,5,159,2588,8, + 159,10,159,12,159,2591,9,159,1,160,1,160,1,160,1,160,1,161,1,161, + 1,161,5,161,2600,8,161,10,161,12,161,2603,9,161,1,162,1,162,1,163, + 1,163,3,163,2609,8,163,1,164,1,164,1,165,1,165,1,165,1,166,1,166, + 3,166,2618,8,166,1,166,3,166,2621,8,166,1,167,1,167,1,167,5,167, + 2626,8,167,10,167,12,167,2629,9,167,1,168,1,168,1,168,3,168,2634, + 8,168,1,169,1,169,1,170,1,170,3,170,2640,8,170,1,170,3,170,2643, + 8,170,1,170,3,170,2646,8,170,1,171,1,171,1,171,1,171,3,171,2652, + 8,171,1,172,1,172,3,172,2656,8,172,1,173,1,173,3,173,2660,8,173, + 1,174,1,174,1,174,3,174,2665,8,174,1,174,1,174,3,174,2669,8,174, + 1,175,1,175,3,175,2673,8,175,1,176,1,176,3,176,2677,8,176,1,176, + 1,176,1,176,1,176,1,176,1,176,3,176,2685,8,176,1,177,1,177,3,177, + 2689,8,177,1,177,1,177,3,177,2693,8,177,1,178,1,178,3,178,2697,8, + 178,1,179,1,179,3,179,2701,8,179,1,179,1,179,1,179,1,179,1,179,1, + 179,3,179,2709,8,179,1,180,1,180,3,180,2713,8,180,1,180,1,180,3, + 180,2717,8,180,1,181,1,181,1,181,1,181,1,181,1,181,3,181,2725,8, + 181,1,182,1,182,1,182,3,182,2730,8,182,1,183,1,183,1,183,3,183,2735, + 8,183,1,184,1,184,3,184,2739,8,184,1,185,1,185,3,185,2743,8,185, + 1,186,1,186,1,186,1,186,1,186,3,186,2750,8,186,1,187,1,187,1,188, + 1,188,1,188,5,188,2757,8,188,10,188,12,188,2760,9,188,1,189,1,189, + 1,189,1,189,1,189,3,189,2767,8,189,1,190,1,190,1,190,1,190,1,190, + 1,190,1,190,1,190,1,190,1,190,3,190,2779,8,190,1,190,1,190,1,190, 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,3,190,2796,8,190,1,190,3,190,2799,8,190,1,190,1,190, - 1,190,1,190,3,190,2805,8,190,1,191,1,191,1,191,1,191,1,191,1,192, + 1,190,1,190,3,190,2797,8,190,1,190,3,190,2800,8,190,1,190,1,190, + 1,190,1,190,3,190,2806,8,190,1,191,1,191,1,191,1,191,1,191,1,192, 1,192,1,192,1,192,1,192,1,193,1,193,1,193,1,193,1,193,1,193,1,193, - 1,194,1,194,1,194,1,194,1,194,1,195,1,195,3,195,2831,8,195,1,196, - 3,196,2834,8,196,1,196,1,196,1,197,1,197,3,197,2840,8,197,1,198, - 1,198,1,198,1,198,5,198,2846,8,198,10,198,12,198,2849,9,198,1,199, - 1,199,1,199,1,199,1,199,3,199,2856,8,199,1,199,1,199,1,199,1,199, - 1,199,1,200,1,200,1,200,1,200,5,200,2867,8,200,10,200,12,200,2870, - 9,200,1,201,1,201,4,201,2874,8,201,11,201,12,201,2875,1,202,1,202, - 1,202,1,202,3,202,2882,8,202,1,203,1,203,3,203,2886,8,203,1,203, - 3,203,2889,8,203,1,203,3,203,2892,8,203,1,203,3,203,2895,8,203,1, - 203,3,203,2898,8,203,1,203,3,203,2901,8,203,1,203,1,203,1,203,1, - 203,1,203,3,203,2908,8,203,1,204,1,204,3,204,2912,8,204,1,204,3, - 204,2915,8,204,1,204,3,204,2918,8,204,1,204,3,204,2921,8,204,1,204, - 3,204,2924,8,204,1,204,3,204,2927,8,204,1,205,1,205,1,205,4,205, - 2932,8,205,11,205,12,205,2933,1,206,3,206,2937,8,206,1,206,1,206, - 1,207,1,207,1,207,3,207,2944,8,207,1,207,3,207,2947,8,207,1,207, - 3,207,2950,8,207,1,207,3,207,2953,8,207,1,207,3,207,2956,8,207,1, - 207,3,207,2959,8,207,1,207,3,207,2962,8,207,1,207,3,207,2965,8,207, - 1,207,3,207,2968,8,207,1,207,3,207,2971,8,207,1,207,3,207,2974,8, - 207,1,207,1,207,3,207,2978,8,207,1,207,3,207,2981,8,207,1,207,3, - 207,2984,8,207,1,207,3,207,2987,8,207,1,207,3,207,2990,8,207,1,207, - 3,207,2993,8,207,1,207,3,207,2996,8,207,1,207,3,207,2999,8,207,1, - 207,3,207,3002,8,207,1,207,3,207,3005,8,207,1,207,3,207,3008,8,207, - 3,207,3010,8,207,1,208,1,208,1,208,1,208,3,208,3016,8,208,1,208, - 1,208,3,208,3020,8,208,1,208,1,208,1,208,1,208,1,208,3,208,3027, - 8,208,3,208,3029,8,208,1,209,3,209,3032,8,209,1,209,1,209,1,209, - 3,209,3037,8,209,1,209,3,209,3040,8,209,1,209,1,209,3,209,3044,8, - 209,1,210,1,210,1,210,3,210,3049,8,210,1,210,1,210,1,210,1,210,3, - 210,3055,8,210,1,211,1,211,1,211,1,211,3,211,3061,8,211,1,212,1, - 212,1,212,1,212,1,213,1,213,3,213,3069,8,213,1,214,1,214,1,214,1, - 214,5,214,3075,8,214,10,214,12,214,3078,9,214,1,215,1,215,1,215, - 1,215,3,215,3084,8,215,1,216,1,216,1,216,1,216,3,216,3090,8,216, - 1,217,1,217,1,217,1,217,1,217,5,217,3097,8,217,10,217,12,217,3100, - 9,217,3,217,3102,8,217,1,218,1,218,3,218,3106,8,218,1,219,1,219, - 1,219,1,220,1,220,1,220,1,220,1,221,1,221,1,222,1,222,3,222,3119, - 8,222,1,223,1,223,3,223,3123,8,223,1,224,1,224,1,224,1,224,1,225, - 1,225,1,225,4,225,3132,8,225,11,225,12,225,3133,1,226,1,226,1,226, - 4,226,3139,8,226,11,226,12,226,3140,1,227,1,227,3,227,3145,8,227, - 1,227,1,227,1,227,3,227,3150,8,227,1,227,3,227,3153,8,227,1,227, - 1,227,1,227,1,227,1,227,1,227,1,228,1,228,5,228,3163,8,228,10,228, - 12,228,3166,9,228,1,228,3,228,3169,8,228,1,229,1,229,1,229,1,229, - 1,229,3,229,3176,8,229,1,229,1,229,1,229,3,229,3181,8,229,1,229, - 1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,230,1,230,1,231,1,231, - 1,231,1,231,1,231,1,232,1,232,1,232,3,232,3201,8,232,1,233,1,233, - 1,233,4,233,3206,8,233,11,233,12,233,3207,1,234,1,234,1,234,1,234, - 1,235,1,235,1,235,1,236,1,236,1,236,1,237,1,237,1,237,1,238,1,238, - 1,238,1,238,1,238,1,238,1,238,1,238,3,238,3231,8,238,1,238,1,238, + 1,194,1,194,1,194,1,194,1,194,1,195,1,195,3,195,2832,8,195,1,196, + 3,196,2835,8,196,1,196,1,196,1,197,1,197,3,197,2841,8,197,1,198, + 1,198,1,198,1,198,5,198,2847,8,198,10,198,12,198,2850,9,198,1,199, + 1,199,1,199,1,199,1,199,3,199,2857,8,199,1,199,1,199,1,199,1,199, + 1,199,1,200,1,200,1,200,1,200,5,200,2868,8,200,10,200,12,200,2871, + 9,200,1,201,1,201,1,201,1,201,3,201,2877,8,201,1,201,3,201,2880, + 8,201,1,201,3,201,2883,8,201,1,201,3,201,2886,8,201,1,201,3,201, + 2889,8,201,1,201,3,201,2892,8,201,1,201,3,201,2895,8,201,1,201,3, + 201,2898,8,201,1,201,3,201,2901,8,201,1,201,3,201,2904,8,201,1,201, + 3,201,2907,8,201,1,201,1,201,1,201,3,201,2912,8,201,1,201,3,201, + 2915,8,201,1,201,3,201,2918,8,201,1,201,3,201,2921,8,201,1,201,3, + 201,2924,8,201,1,201,3,201,2927,8,201,1,201,3,201,2930,8,201,1,201, + 3,201,2933,8,201,1,201,3,201,2936,8,201,1,201,3,201,2939,8,201,1, + 201,3,201,2942,8,201,3,201,2944,8,201,1,202,1,202,1,202,1,202,3, + 202,2950,8,202,1,203,1,203,3,203,2954,8,203,1,203,3,203,2957,8,203, + 1,203,3,203,2960,8,203,1,203,3,203,2963,8,203,1,203,3,203,2966,8, + 203,1,203,3,203,2969,8,203,1,203,1,203,1,203,1,203,1,203,3,203,2976, + 8,203,1,204,1,204,3,204,2980,8,204,1,204,3,204,2983,8,204,1,204, + 3,204,2986,8,204,1,204,3,204,2989,8,204,1,204,3,204,2992,8,204,1, + 204,3,204,2995,8,204,1,205,1,205,1,205,4,205,3000,8,205,11,205,12, + 205,3001,1,206,3,206,3005,8,206,1,206,1,206,1,207,1,207,1,207,1, + 207,3,207,3013,8,207,1,207,1,207,3,207,3017,8,207,1,207,1,207,1, + 207,1,207,1,207,3,207,3024,8,207,3,207,3026,8,207,1,208,3,208,3029, + 8,208,1,208,1,208,1,208,3,208,3034,8,208,1,208,3,208,3037,8,208, + 1,208,1,208,3,208,3041,8,208,1,209,1,209,1,209,3,209,3046,8,209, + 1,209,1,209,1,209,1,209,3,209,3052,8,209,1,210,1,210,1,210,1,210, + 3,210,3058,8,210,1,211,1,211,1,211,1,211,1,212,1,212,3,212,3066, + 8,212,1,213,1,213,1,213,1,213,5,213,3072,8,213,10,213,12,213,3075, + 9,213,1,214,1,214,1,214,1,214,3,214,3081,8,214,1,215,1,215,1,215, + 1,215,3,215,3087,8,215,1,216,1,216,1,216,1,216,1,216,5,216,3094, + 8,216,10,216,12,216,3097,9,216,3,216,3099,8,216,1,217,1,217,3,217, + 3103,8,217,1,218,1,218,1,218,1,219,1,219,1,219,1,219,1,220,1,220, + 1,221,1,221,3,221,3116,8,221,1,222,1,222,3,222,3120,8,222,1,223, + 1,223,1,223,1,223,1,224,1,224,1,224,4,224,3129,8,224,11,224,12,224, + 3130,1,225,1,225,1,225,4,225,3136,8,225,11,225,12,225,3137,1,226, + 1,226,3,226,3142,8,226,1,226,1,226,1,226,3,226,3147,8,226,1,226, + 3,226,3150,8,226,1,226,1,226,1,226,1,226,1,226,1,226,1,227,1,227, + 5,227,3160,8,227,10,227,12,227,3163,9,227,1,227,3,227,3166,8,227, + 1,228,1,228,1,228,1,228,1,228,3,228,3173,8,228,1,228,1,228,1,228, + 3,228,3178,8,228,1,228,1,228,1,228,1,229,1,229,1,229,1,229,1,229, + 1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,231,1,231,1,231,3,231, + 3198,8,231,1,232,1,232,1,232,4,232,3203,8,232,11,232,12,232,3204, + 1,233,1,233,1,233,1,233,1,234,1,234,1,234,1,235,1,235,1,235,1,236, + 1,236,1,236,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,3,237, + 3228,8,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237, + 1,237,1,237,1,237,1,237,1,237,3,237,3244,8,237,1,238,1,238,1,238, 1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238, - 1,238,3,238,3247,8,238,1,239,1,239,1,239,1,239,1,239,1,239,1,239, - 1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,3,239,3264,8,239, - 1,239,1,239,1,239,1,239,3,239,3270,8,239,1,240,1,240,1,240,1,240, - 1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240, - 3,240,3287,8,240,1,241,1,241,1,241,1,241,1,241,1,241,1,242,1,242, - 1,242,1,242,1,242,3,242,3300,8,242,1,243,1,243,3,243,3304,8,243, - 1,244,1,244,3,244,3308,8,244,1,245,1,245,1,246,1,246,1,246,3,246, - 3315,8,246,1,247,1,247,1,247,1,247,1,247,1,248,1,248,1,248,1,248, - 1,248,1,249,1,249,1,249,1,249,1,249,1,250,1,250,1,250,1,250,1,250, - 1,251,1,251,1,251,1,251,1,252,1,252,3,252,3343,8,252,1,252,1,252, - 1,252,1,252,1,252,3,252,3350,8,252,1,253,1,253,1,253,3,253,3355, - 8,253,1,254,1,254,1,254,3,254,3360,8,254,1,255,1,255,1,255,3,255, - 3365,8,255,1,255,1,255,1,255,3,255,3370,8,255,1,256,1,256,1,256, - 1,256,1,257,1,257,3,257,3378,8,257,1,257,1,257,1,257,1,257,3,257, - 3384,8,257,1,257,1,257,3,257,3388,8,257,1,257,3,257,3391,8,257,1, - 257,3,257,3394,8,257,1,258,1,258,1,258,1,258,3,258,3400,8,258,1, - 258,1,258,1,258,1,258,1,258,3,258,3407,8,258,1,259,1,259,1,259,1, - 259,1,259,1,260,1,260,1,260,3,260,3417,8,260,1,261,1,261,3,261,3421, - 8,261,1,261,4,261,3424,8,261,11,261,12,261,3425,1,262,1,262,3,262, - 3430,8,262,1,263,1,263,5,263,3434,8,263,10,263,12,263,3437,9,263, - 1,264,1,264,5,264,3441,8,264,10,264,12,264,3444,9,264,1,265,1,265, - 5,265,3448,8,265,10,265,12,265,3451,9,265,1,266,1,266,1,266,1,267, - 1,267,1,267,1,268,1,268,3,268,3461,8,268,1,268,1,268,1,268,1,268, - 1,268,5,268,3468,8,268,10,268,12,268,3471,9,268,1,268,3,268,3474, - 8,268,1,268,3,268,3477,8,268,1,268,3,268,3480,8,268,1,269,1,269, - 1,269,1,269,1,269,1,269,3,269,3488,8,269,1,269,3,269,3491,8,269, - 1,270,1,270,1,270,1,270,1,270,1,270,3,270,3499,8,270,1,270,3,270, - 3502,8,270,1,271,1,271,1,271,1,271,1,271,1,271,3,271,3510,8,271, - 1,271,1,271,3,271,3514,8,271,1,271,1,271,1,271,3,271,3519,8,271, - 1,272,1,272,3,272,3523,8,272,1,273,1,273,1,273,1,273,1,274,1,274, - 1,274,3,274,3532,8,274,1,275,1,275,1,275,1,275,1,275,1,276,1,276, - 1,276,1,276,1,277,1,277,1,277,5,277,3546,8,277,10,277,12,277,3549, - 9,277,1,278,1,278,1,278,1,278,1,279,1,279,1,279,1,279,1,280,1,280, - 1,280,1,280,3,280,3563,8,280,3,280,3565,8,280,1,281,1,281,1,281, - 1,281,1,281,1,281,1,282,1,282,1,282,1,282,1,283,1,283,1,283,1,283, - 3,283,3581,8,283,1,283,1,283,1,283,1,283,1,283,3,283,3588,8,283, - 1,284,1,284,1,285,1,285,1,285,1,285,1,286,1,286,1,286,1,287,1,287, - 1,287,1,288,1,288,1,288,3,288,3605,8,288,1,288,3,288,3608,8,288, - 1,288,3,288,3611,8,288,1,288,3,288,3614,8,288,1,288,1,288,1,288, - 1,288,3,288,3620,8,288,1,289,1,289,1,289,1,289,1,290,1,290,1,290, - 1,290,1,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,1,291,1,291, - 1,291,1,291,1,291,3,291,3643,8,291,1,291,1,291,1,292,1,292,1,292, - 1,292,3,292,3651,8,292,1,292,1,292,1,293,1,293,1,293,1,293,1,293, - 1,293,1,293,1,293,1,293,1,293,3,293,3665,8,293,1,293,3,293,3668, - 8,293,1,294,1,294,1,294,3,294,3673,8,294,1,295,1,295,1,295,1,295, - 1,295,1,296,1,296,1,296,1,296,1,296,1,297,1,297,1,297,1,297,1,297, - 1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,3,298,3699, - 8,298,1,299,1,299,3,299,3703,8,299,1,299,3,299,3706,8,299,1,299, - 3,299,3709,8,299,1,299,1,299,3,299,3713,8,299,1,299,1,299,1,299, - 3,299,3718,8,299,1,299,3,299,3721,8,299,1,299,3,299,3724,8,299,1, - 299,3,299,3727,8,299,1,299,3,299,3730,8,299,1,299,1,299,1,299,1, - 299,3,299,3736,8,299,1,299,3,299,3739,8,299,1,299,3,299,3742,8,299, - 1,299,3,299,3745,8,299,1,299,3,299,3748,8,299,1,299,3,299,3751,8, - 299,1,299,3,299,3754,8,299,1,299,3,299,3757,8,299,1,299,3,299,3760, - 8,299,1,299,1,299,3,299,3764,8,299,3,299,3766,8,299,1,299,1,299, - 1,299,1,299,3,299,3772,8,299,1,299,1,299,1,299,3,299,3777,8,299, - 1,299,3,299,3780,8,299,1,299,3,299,3783,8,299,1,299,3,299,3786,8, - 299,1,299,1,299,1,299,1,299,3,299,3792,8,299,1,299,3,299,3795,8, - 299,1,299,3,299,3798,8,299,1,299,3,299,3801,8,299,1,299,3,299,3804, - 8,299,1,299,3,299,3807,8,299,1,299,3,299,3810,8,299,1,299,3,299, - 3813,8,299,1,299,3,299,3816,8,299,1,299,1,299,3,299,3820,8,299,3, - 299,3822,8,299,3,299,3824,8,299,1,300,1,300,1,300,3,300,3829,8,300, - 1,300,1,300,3,300,3833,8,300,1,300,3,300,3836,8,300,1,300,3,300, - 3839,8,300,1,300,1,300,1,300,3,300,3844,8,300,1,301,1,301,1,301, - 1,302,1,302,1,302,1,303,1,303,1,303,1,304,1,304,1,304,1,304,1,305, - 1,305,1,305,3,305,3862,8,305,1,305,1,305,1,306,1,306,1,306,1,306, - 1,306,3,306,3871,8,306,1,307,1,307,1,308,1,308,1,308,5,308,3878, - 8,308,10,308,12,308,3881,9,308,1,309,1,309,1,309,5,309,3886,8,309, - 10,309,12,309,3889,9,309,1,310,1,310,1,310,1,311,1,311,1,311,1,311, - 4,311,3898,8,311,11,311,12,311,3899,1,311,3,311,3903,8,311,1,312, - 1,312,5,312,3907,8,312,10,312,12,312,3910,9,312,1,312,1,312,5,312, - 3914,8,312,10,312,12,312,3917,9,312,1,312,1,312,5,312,3921,8,312, - 10,312,12,312,3924,9,312,1,312,1,312,5,312,3928,8,312,10,312,12, - 312,3931,9,312,1,312,1,312,1,312,1,312,3,312,3937,8,312,1,313,1, - 313,1,313,1,313,1,313,1,313,1,313,3,313,3946,8,313,5,313,3948,8, - 313,10,313,12,313,3951,9,313,1,314,1,314,1,314,1,314,3,314,3957, - 8,314,1,314,5,314,3960,8,314,10,314,12,314,3963,9,314,1,315,3,315, - 3966,8,315,1,315,1,315,1,315,1,316,1,316,1,316,1,316,1,317,1,317, - 1,318,1,318,1,318,1,318,1,318,3,318,3982,8,318,1,318,1,318,3,318, - 3986,8,318,3,318,3988,8,318,1,318,3,318,3991,8,318,1,319,1,319,1, - 319,1,319,1,319,1,319,1,319,1,319,1,319,5,319,4002,8,319,10,319, - 12,319,4005,9,319,3,319,4007,8,319,1,319,3,319,4010,8,319,1,319, - 1,319,1,319,1,319,1,319,1,319,1,319,1,319,5,319,4020,8,319,10,319, - 12,319,4023,9,319,3,319,4025,8,319,1,319,1,319,1,319,1,319,1,319, - 3,319,4032,8,319,1,319,1,319,1,319,1,319,1,319,5,319,4039,8,319, - 10,319,12,319,4042,9,319,1,319,1,319,3,319,4046,8,319,3,319,4048, - 8,319,3,319,4050,8,319,1,320,1,320,1,321,1,321,1,321,1,321,1,321, - 1,321,1,321,1,321,1,321,1,321,1,321,5,321,4065,8,321,10,321,12,321, - 4068,9,321,3,321,4070,8,321,1,321,1,321,1,322,1,322,1,322,1,322, - 1,322,3,322,4079,8,322,1,322,1,322,1,323,1,323,3,323,4085,8,323, - 1,324,1,324,3,324,4089,8,324,1,324,3,324,4092,8,324,1,324,3,324, - 4095,8,324,1,324,3,324,4098,8,324,1,324,3,324,4101,8,324,1,325,1, - 325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,4113,8, - 325,1,326,1,326,3,326,4117,8,326,1,326,3,326,4120,8,326,1,326,3, - 326,4123,8,326,1,327,1,327,1,328,1,328,1,329,1,329,3,329,4131,8, - 329,1,330,1,330,1,330,1,330,1,330,3,330,4138,8,330,1,330,3,330,4141, - 8,330,1,331,1,331,1,331,1,331,1,331,3,331,4148,8,331,1,331,3,331, - 4151,8,331,1,332,1,332,1,332,3,332,4156,8,332,1,332,1,332,1,333, - 1,333,1,333,3,333,4163,8,333,1,333,1,333,1,334,1,334,1,334,1,334, - 3,334,4171,8,334,1,334,1,334,1,335,1,335,3,335,4177,8,335,1,335, - 1,335,1,335,3,335,4182,8,335,1,335,1,335,3,335,4186,8,335,1,336, - 1,336,1,336,3,336,4191,8,336,1,337,1,337,1,337,1,337,1,337,3,337, - 4198,8,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337, - 1,337,5,337,4210,8,337,10,337,12,337,4213,9,337,3,337,4215,8,337, - 1,337,1,337,3,337,4219,8,337,1,338,1,338,1,338,1,339,1,339,1,340, - 1,340,1,341,1,341,1,341,1,342,1,342,1,342,5,342,4234,8,342,10,342, - 12,342,4237,9,342,1,342,1,342,1,342,5,342,4242,8,342,10,342,12,342, - 4245,9,342,3,342,4247,8,342,1,343,1,343,1,344,1,344,1,344,1,344, - 1,345,1,345,1,345,1,345,1,345,3,345,4260,8,345,1,345,1,345,1,345, - 1,345,1,345,5,345,4267,8,345,10,345,12,345,4270,9,345,3,345,4272, - 8,345,1,345,1,345,1,346,1,346,3,346,4278,8,346,1,346,3,346,4281, - 8,346,1,346,1,346,1,346,3,346,4286,8,346,1,346,3,346,4289,8,346, - 1,347,1,347,1,348,1,348,1,348,5,348,4296,8,348,10,348,12,348,4299, - 9,348,1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,349, - 1,349,3,349,4312,8,349,1,349,1,349,1,349,1,349,3,349,4318,8,349, - 3,349,4320,8,349,1,349,1,349,1,349,1,350,1,350,1,350,3,350,4328, - 8,350,1,350,3,350,4331,8,350,1,350,1,350,1,350,1,350,1,350,1,350, - 5,350,4339,8,350,10,350,12,350,4342,9,350,1,350,1,350,3,350,4346, - 8,350,3,350,4348,8,350,1,351,1,351,1,351,1,351,1,351,1,351,1,351, - 1,351,1,351,1,351,3,351,4360,8,351,1,351,1,351,1,351,1,351,3,351, - 4366,8,351,3,351,4368,8,351,1,351,1,351,1,351,1,352,1,352,3,352, - 4375,8,352,1,353,1,353,1,353,5,353,4380,8,353,10,353,12,353,4383, - 9,353,1,354,1,354,1,354,1,354,5,354,4389,8,354,10,354,12,354,4392, - 9,354,1,355,1,355,1,355,1,355,1,356,1,356,1,356,3,356,4401,8,356, - 1,356,3,356,4404,8,356,1,356,3,356,4407,8,356,1,356,3,356,4410,8, - 356,1,357,1,357,3,357,4414,8,357,1,358,1,358,1,358,1,358,1,358,1, - 358,1,358,3,358,4423,8,358,1,359,1,359,1,359,1,359,1,359,1,359,1, - 359,3,359,4432,8,359,1,360,1,360,1,360,1,360,1,360,1,360,3,360,4440, - 8,360,1,361,1,361,1,361,1,361,3,361,4446,8,361,1,362,1,362,1,362, - 1,362,1,363,1,363,1,363,1,363,3,363,4456,8,363,1,364,1,364,1,364, - 1,365,1,365,3,365,4463,8,365,1,365,1,365,1,365,1,365,5,365,4469, - 8,365,10,365,12,365,4472,9,365,1,365,1,365,1,366,1,366,1,366,1,366, - 1,366,3,366,4481,8,366,1,366,1,366,1,366,1,366,1,366,1,366,5,366, - 4489,8,366,10,366,12,366,4492,9,366,1,366,1,366,3,366,4496,8,366, - 1,367,1,367,3,367,4500,8,367,1,368,1,368,3,368,4504,8,368,1,368, - 1,368,5,368,4508,8,368,10,368,12,368,4511,9,368,1,368,1,368,1,369, - 1,369,1,370,1,370,1,370,1,371,1,371,1,371,1,372,1,372,1,373,1,373, - 1,373,1,373,1,374,1,374,3,374,4531,8,374,1,375,1,375,4,375,4535, - 8,375,11,375,12,375,4536,1,376,1,376,3,376,4541,8,376,1,377,1,377, - 3,377,4545,8,377,1,377,3,377,4548,8,377,1,377,1,377,5,377,4552,8, - 377,10,377,12,377,4555,9,377,1,378,1,378,3,378,4559,8,378,1,378, - 3,378,4562,8,378,1,379,1,379,3,379,4566,8,379,1,380,1,380,1,380, - 1,380,5,380,4572,8,380,10,380,12,380,4575,9,380,1,380,1,380,1,381, - 1,381,1,381,5,381,4582,8,381,10,381,12,381,4585,9,381,1,382,1,382, - 1,382,1,382,1,382,5,382,4592,8,382,10,382,12,382,4595,9,382,1,383, - 1,383,1,383,1,383,1,384,1,384,1,384,1,384,1,385,1,385,1,385,1,385, - 1,386,1,386,1,386,1,386,3,386,4613,8,386,1,387,1,387,1,387,1,387, - 1,387,3,387,4620,8,387,1,387,3,387,4623,8,387,1,387,1,387,1,387, - 1,387,1,388,1,388,1,388,1,388,1,388,3,388,4634,8,388,1,388,1,388, - 1,388,5,388,4639,8,388,10,388,12,388,4642,9,388,3,388,4644,8,388, - 3,388,4646,8,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,3,388,4657,8,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,3,388,4667,8,388,3,388,4669,8,388,1,389,1,389,1,389,1,389, - 3,389,4675,8,389,1,390,1,390,1,391,1,391,3,391,4681,8,391,1,392, - 1,392,3,392,4685,8,392,1,393,1,393,1,394,1,394,3,394,4691,8,394, - 1,395,1,395,1,395,1,395,1,395,1,395,1,395,3,395,4700,8,395,1,395, - 1,395,1,396,1,396,1,396,1,396,1,396,1,396,1,396,4,396,4711,8,396, - 11,396,12,396,4712,1,396,1,396,3,396,4717,8,396,1,396,1,396,1,397, - 1,397,1,397,1,397,1,397,1,397,4,397,4727,8,397,11,397,12,397,4728, - 1,397,1,397,3,397,4733,8,397,1,397,1,397,1,398,1,398,1,398,1,398, - 1,398,3,398,4742,8,398,1,398,1,398,1,399,1,399,1,399,1,399,1,399, - 1,399,1,399,1,399,3,399,4754,8,399,1,400,1,400,1,400,1,400,1,400, - 1,400,1,400,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,3,401, - 4771,8,401,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, - 1,402,1,402,1,402,1,402,3,402,4786,8,402,1,403,1,403,1,404,1,404, - 1,405,1,405,4,405,4794,8,405,11,405,12,405,4795,1,406,1,406,1,406, - 1,407,1,407,1,407,3,407,4804,8,407,1,408,1,408,1,408,3,408,4809, - 8,408,1,409,1,409,1,409,1,410,1,410,1,411,1,411,1,411,1,412,1,412, - 1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,3,412,4830, - 8,412,1,412,1,412,3,412,4834,8,412,1,413,1,413,1,413,1,413,1,413, - 1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,3,413,4850, - 8,413,1,414,1,414,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415, - 1,415,1,415,1,415,3,415,4865,8,415,1,416,1,416,1,416,1,416,1,416, - 1,416,1,416,5,416,4874,8,416,10,416,12,416,4877,9,416,1,417,1,417, - 1,418,5,418,4882,8,418,10,418,12,418,4885,9,418,1,418,1,418,1,419, - 1,419,1,420,1,420,1,420,1,420,5,420,4895,8,420,10,420,12,420,4898, - 9,420,1,421,1,421,1,422,1,422,1,422,1,422,5,422,4906,8,422,10,422, - 12,422,4909,9,422,1,423,1,423,1,424,1,424,1,424,1,424,5,424,4917, - 8,424,10,424,12,424,4920,9,424,1,425,1,425,1,426,1,426,1,426,1,426, - 5,426,4928,8,426,10,426,12,426,4931,9,426,1,427,1,427,1,428,1,428, - 1,428,1,428,5,428,4939,8,428,10,428,12,428,4942,9,428,1,429,1,429, - 1,430,1,430,1,430,1,430,5,430,4950,8,430,10,430,12,430,4953,9,430, - 1,431,1,431,1,432,1,432,1,432,1,432,1,432,3,432,4962,8,432,1,433, - 1,433,1,433,1,433,1,434,1,434,1,434,3,434,4971,8,434,1,435,1,435, - 3,435,4975,8,435,1,436,1,436,1,436,1,436,1,436,1,436,3,436,4983, - 8,436,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, - 1,437,3,437,4996,8,437,1,438,1,438,1,438,1,438,1,439,1,439,1,440, - 1,440,3,440,5006,8,440,1,441,1,441,1,441,1,441,3,441,5012,8,441, - 1,442,1,442,1,442,1,442,1,443,1,443,1,443,1,443,1,443,1,443,1,443, - 3,443,5025,8,443,1,444,1,444,1,444,1,444,1,444,1,444,1,444,5,444, - 5034,8,444,10,444,12,444,5037,9,444,1,445,1,445,1,445,1,445,1,445, - 1,445,1,445,1,445,1,445,1,445,1,445,1,445,3,445,5051,8,445,1,446, - 1,446,1,446,3,446,5056,8,446,1,447,1,447,1,448,5,448,5061,8,448, - 10,448,12,448,5064,9,448,1,448,1,448,1,449,1,449,1,450,1,450,1,450, - 1,450,5,450,5074,8,450,10,450,12,450,5077,9,450,1,451,1,451,1,452, - 1,452,1,452,1,452,5,452,5085,8,452,10,452,12,452,5088,9,452,1,453, - 1,453,1,454,1,454,1,455,1,455,3,455,5096,8,455,1,456,1,456,1,456, - 1,456,1,456,5,456,5103,8,456,10,456,12,456,5106,9,456,1,456,1,456, - 1,457,1,457,1,457,3,457,5113,8,457,1,458,1,458,1,458,1,458,5,458, - 5119,8,458,10,458,12,458,5122,9,458,1,458,1,458,1,459,1,459,1,459, - 1,459,1,460,1,460,3,460,5132,8,460,1,461,1,461,1,462,1,462,1,463, - 1,463,3,463,5140,8,463,1,464,1,464,1,464,3,464,5145,8,464,1,465, - 1,465,1,466,1,466,1,467,1,467,1,468,1,468,1,468,1,469,1,469,1,469, - 5,469,5159,8,469,10,469,12,469,5162,9,469,1,470,1,470,1,470,1,470, - 1,470,3,470,5169,8,470,1,471,1,471,1,472,1,472,1,472,5,472,5176, - 8,472,10,472,12,472,5179,9,472,1,473,1,473,1,474,1,474,1,474,1,474, - 1,474,1,475,1,475,1,475,1,475,1,475,1,476,1,476,1,476,5,476,5196, - 8,476,10,476,12,476,5199,9,476,1,477,1,477,1,477,1,477,1,477,1,477, - 1,477,1,477,1,477,1,477,1,477,1,477,1,477,1,477,3,477,5215,8,477, - 1,478,1,478,1,478,1,478,1,478,1,478,1,478,3,478,5224,8,478,1,479, - 1,479,1,479,5,479,5229,8,479,10,479,12,479,5232,9,479,1,480,1,480, - 1,480,3,480,5237,8,480,1,481,1,481,1,481,5,481,5242,8,481,10,481, - 12,481,5245,9,481,1,482,1,482,1,482,1,482,3,482,5251,8,482,1,482, - 1,482,1,482,1,482,1,482,1,482,1,482,3,482,5260,8,482,3,482,5262, - 8,482,1,483,1,483,1,483,1,484,1,484,3,484,5269,8,484,1,485,1,485, - 1,486,1,486,1,487,1,487,1,488,1,488,1,489,1,489,1,490,1,490,1,491, - 1,491,1,492,1,492,1,493,1,493,1,494,1,494,1,495,1,495,1,496,1,496, - 1,496,1,496,1,496,1,496,1,496,1,496,1,496,1,496,1,496,1,496,1,496, - 1,496,1,496,3,496,5308,8,496,1,496,1,496,3,496,5312,8,496,3,496, - 5314,8,496,1,497,1,497,3,497,5318,8,497,1,497,1,497,1,497,1,498, - 1,498,1,498,1,498,1,498,1,498,1,498,1,498,1,498,1,498,1,498,1,498, - 3,498,5335,8,498,1,499,1,499,1,499,1,499,3,499,5341,8,499,1,499, - 1,499,1,500,1,500,1,500,5,500,5348,8,500,10,500,12,500,5351,9,500, - 1,501,1,501,1,502,1,502,1,502,1,503,1,503,1,503,5,503,5361,8,503, - 10,503,12,503,5364,9,503,1,504,1,504,1,504,5,504,5369,8,504,10,504, - 12,504,5372,9,504,1,505,1,505,1,505,1,505,1,506,1,506,1,507,1,507, - 1,508,1,508,1,508,1,508,3,508,5386,8,508,1,509,1,509,1,509,1,510, - 1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,511,1,511, - 1,511,1,511,1,511,1,511,1,511,1,511,1,511,1,511,1,511,1,511,1,511, - 1,511,3,511,5415,8,511,1,511,1,511,1,511,3,511,5420,8,511,3,511, - 5422,8,511,1,512,1,512,1,512,1,512,1,512,1,512,1,513,1,513,1,513, - 1,513,1,513,1,513,1,513,1,513,1,513,1,513,1,513,1,513,3,513,5442, - 8,513,1,514,1,514,1,514,5,514,5447,8,514,10,514,12,514,5450,9,514, - 1,515,1,515,1,515,1,515,1,515,1,515,1,515,1,515,1,516,1,516,1,516, - 1,516,1,516,1,516,1,516,1,516,1,516,1,516,1,516,1,516,3,516,5472, - 8,516,1,517,1,517,1,517,1,517,1,517,1,517,1,518,1,518,1,518,1,518, - 1,518,1,518,1,518,1,518,1,518,3,518,5489,8,518,1,518,1,518,1,518, - 3,518,5494,8,518,1,519,1,519,1,519,1,519,1,519,1,519,1,519,1,519, - 1,519,3,519,5505,8,519,1,519,1,519,1,519,3,519,5510,8,519,1,520, - 1,520,1,520,1,520,1,520,1,520,1,520,1,520,0,0,521,0,2,4,6,8,10,12, - 14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56, - 58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100, - 102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132, - 134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164, - 166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196, - 198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228, - 230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260, - 262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292, - 294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324, - 326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356, - 358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388, - 390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420, - 422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452, - 454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484, - 486,488,490,492,494,496,498,500,502,504,506,508,510,512,514,516, - 518,520,522,524,526,528,530,532,534,536,538,540,542,544,546,548, - 550,552,554,556,558,560,562,564,566,568,570,572,574,576,578,580, - 582,584,586,588,590,592,594,596,598,600,602,604,606,608,610,612, - 614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644, - 646,648,650,652,654,656,658,660,662,664,666,668,670,672,674,676, - 678,680,682,684,686,688,690,692,694,696,698,700,702,704,706,708, - 710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740, - 742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772, - 774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804, - 806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836, - 838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868, - 870,872,874,876,878,880,882,884,886,888,890,892,894,896,898,900, - 902,904,906,908,910,912,914,916,918,920,922,924,926,928,930,932, - 934,936,938,940,942,944,946,948,950,952,954,956,958,960,962,964, - 966,968,970,972,974,976,978,980,982,984,986,988,990,992,994,996, - 998,1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022, - 1024,1026,1028,1030,1032,1034,1036,1038,1040,0,56,2,0,57,57,172, - 172,4,0,91,91,121,121,225,225,324,324,2,0,34,34,281,281,1,0,89,90, - 2,0,139,139,154,154,2,0,67,67,294,294,2,0,68,68,295,295,1,0,155, - 156,2,0,114,114,306,306,11,0,7,7,9,9,58,58,86,86,101,101,155,155, - 161,161,189,189,298,298,308,308,364,364,3,0,4,4,101,101,325,325, - 3,0,15,15,128,128,170,170,1,0,141,142,2,0,30,30,350,350,2,0,216, - 216,372,372,2,0,213,213,271,271,2,0,18,18,89,89,2,0,130,130,177, - 177,2,0,39,39,375,375,4,0,112,112,164,164,204,204,355,355,2,0,7, - 7,96,96,2,0,224,224,390,390,2,0,188,188,195,195,2,0,42,42,314,314, - 2,0,425,425,430,430,2,0,140,140,284,284,3,0,12,12,230,230,299,299, - 2,0,240,240,291,291,2,0,197,197,267,267,2,0,353,353,430,430,2,0, - 133,133,246,246,3,0,412,413,417,417,419,419,2,0,411,411,414,416, - 1,0,412,413,3,0,183,183,269,269,285,285,2,0,7,7,13,13,3,0,7,7,13, - 13,312,312,2,0,125,125,349,349,2,0,404,404,406,410,24,0,11,11,16, - 16,25,28,35,35,100,100,131,132,151,151,154,154,162,163,183,183,197, - 197,215,215,227,227,263,263,269,269,285,285,310,310,322,323,339, - 339,356,356,382,382,404,416,418,420,422,422,85,0,1,6,8,8,10,10,15, - 15,18,20,22,24,30,31,33,34,37,38,40,44,46,47,49,50,52,53,56,57,59, - 59,66,66,68,68,72,77,79,79,83,85,87,89,91,95,97,99,103,104,106,107, - 109,111,114,116,118,121,127,130,137,138,142,142,147,150,152,152, - 155,156,158,160,168,170,172,177,182,182,184,186,188,192,194,196, - 198,201,203,203,205,208,210,211,213,214,216,217,219,219,221,222, - 225,226,231,232,234,235,237,239,242,245,251,251,253,254,256,258, - 260,261,264,266,270,281,283,283,286,287,292,297,299,302,304,309, - 311,311,313,316,318,324,326,327,329,329,331,333,338,339,341,341, - 343,345,348,348,351,352,354,354,356,356,359,363,365,367,370,372, - 374,374,376,381,384,384,387,393,13,0,16,16,26,28,63,64,71,71,100, - 100,131,131,145,145,151,151,162,163,197,197,263,263,310,310,336, - 336,4,0,198,198,241,241,299,299,321,321,2,0,212,212,430,431,1,0, - 106,107,1,0,94,95,1,0,391,392,1,0,207,208,1,0,380,381,1,0,73,74, - 1,0,148,149,1,0,205,206,1,0,296,297,1,0,80,82,2,0,4,4,101,101,3, - 0,14,14,144,144,368,368,5918,0,1045,1,0,0,0,2,1052,1,0,0,0,4,1057, - 1,0,0,0,6,1091,1,0,0,0,8,1093,1,0,0,0,10,1095,1,0,0,0,12,1111,1, - 0,0,0,14,1113,1,0,0,0,16,1129,1,0,0,0,18,1132,1,0,0,0,20,1141,1, - 0,0,0,22,1149,1,0,0,0,24,1162,1,0,0,0,26,1173,1,0,0,0,28,1178,1, - 0,0,0,30,1189,1,0,0,0,32,1193,1,0,0,0,34,1201,1,0,0,0,36,1206,1, - 0,0,0,38,1260,1,0,0,0,40,1262,1,0,0,0,42,1265,1,0,0,0,44,1267,1, - 0,0,0,46,1271,1,0,0,0,48,1273,1,0,0,0,50,1276,1,0,0,0,52,1279,1, - 0,0,0,54,1283,1,0,0,0,56,1325,1,0,0,0,58,1327,1,0,0,0,60,1330,1, - 0,0,0,62,1333,1,0,0,0,64,1337,1,0,0,0,66,1345,1,0,0,0,68,1348,1, - 0,0,0,70,1351,1,0,0,0,72,1360,1,0,0,0,74,1363,1,0,0,0,76,1378,1, - 0,0,0,78,1390,1,0,0,0,80,1395,1,0,0,0,82,1415,1,0,0,0,84,1419,1, - 0,0,0,86,1426,1,0,0,0,88,1451,1,0,0,0,90,1468,1,0,0,0,92,1470,1, - 0,0,0,94,1665,1,0,0,0,96,1675,1,0,0,0,98,1677,1,0,0,0,100,1685,1, - 0,0,0,102,1690,1,0,0,0,104,1692,1,0,0,0,106,1698,1,0,0,0,108,1702, - 1,0,0,0,110,1706,1,0,0,0,112,1710,1,0,0,0,114,1720,1,0,0,0,116,1731, - 1,0,0,0,118,1748,1,0,0,0,120,1766,1,0,0,0,122,1771,1,0,0,0,124,1774, - 1,0,0,0,126,1778,1,0,0,0,128,1785,1,0,0,0,130,1794,1,0,0,0,132,1800, - 1,0,0,0,134,1802,1,0,0,0,136,1819,1,0,0,0,138,1841,1,0,0,0,140,1843, - 1,0,0,0,142,1851,1,0,0,0,144,1858,1,0,0,0,146,1860,1,0,0,0,148,1874, - 1,0,0,0,150,1881,1,0,0,0,152,1883,1,0,0,0,154,1887,1,0,0,0,156,1891, - 1,0,0,0,158,1895,1,0,0,0,160,1899,1,0,0,0,162,1912,1,0,0,0,164,1920, - 1,0,0,0,166,1923,1,0,0,0,168,1925,1,0,0,0,170,1937,1,0,0,0,172,1947, - 1,0,0,0,174,1950,1,0,0,0,176,1961,1,0,0,0,178,1969,1,0,0,0,180,2013, - 1,0,0,0,182,2022,1,0,0,0,184,2049,1,0,0,0,186,2062,1,0,0,0,188,2064, - 1,0,0,0,190,2070,1,0,0,0,192,2073,1,0,0,0,194,2079,1,0,0,0,196,2085, - 1,0,0,0,198,2092,1,0,0,0,200,2126,1,0,0,0,202,2134,1,0,0,0,204,2147, - 1,0,0,0,206,2152,1,0,0,0,208,2163,1,0,0,0,210,2180,1,0,0,0,212,2182, - 1,0,0,0,214,2187,1,0,0,0,216,2194,1,0,0,0,218,2196,1,0,0,0,220,2199, - 1,0,0,0,222,2213,1,0,0,0,224,2221,1,0,0,0,226,2229,1,0,0,0,228,2237, - 1,0,0,0,230,2257,1,0,0,0,232,2259,1,0,0,0,234,2276,1,0,0,0,236,2281, - 1,0,0,0,238,2295,1,0,0,0,240,2297,1,0,0,0,242,2300,1,0,0,0,244,2303, - 1,0,0,0,246,2312,1,0,0,0,248,2332,1,0,0,0,250,2334,1,0,0,0,252,2337, - 1,0,0,0,254,2357,1,0,0,0,256,2359,1,0,0,0,258,2363,1,0,0,0,260,2365, - 1,0,0,0,262,2374,1,0,0,0,264,2380,1,0,0,0,266,2386,1,0,0,0,268,2391, - 1,0,0,0,270,2437,1,0,0,0,272,2439,1,0,0,0,274,2442,1,0,0,0,276,2450, - 1,0,0,0,278,2458,1,0,0,0,280,2466,1,0,0,0,282,2474,1,0,0,0,284,2482, - 1,0,0,0,286,2484,1,0,0,0,288,2497,1,0,0,0,290,2505,1,0,0,0,292,2514, - 1,0,0,0,294,2518,1,0,0,0,296,2520,1,0,0,0,298,2525,1,0,0,0,300,2527, - 1,0,0,0,302,2531,1,0,0,0,304,2537,1,0,0,0,306,2545,1,0,0,0,308,2547, - 1,0,0,0,310,2550,1,0,0,0,312,2557,1,0,0,0,314,2568,1,0,0,0,316,2581, - 1,0,0,0,318,2583,1,0,0,0,320,2591,1,0,0,0,322,2595,1,0,0,0,324,2603, - 1,0,0,0,326,2607,1,0,0,0,328,2609,1,0,0,0,330,2611,1,0,0,0,332,2614, - 1,0,0,0,334,2621,1,0,0,0,336,2629,1,0,0,0,338,2634,1,0,0,0,340,2638, - 1,0,0,0,342,2646,1,0,0,0,344,2654,1,0,0,0,346,2658,1,0,0,0,348,2660, - 1,0,0,0,350,2671,1,0,0,0,352,2675,1,0,0,0,354,2687,1,0,0,0,356,2695, - 1,0,0,0,358,2699,1,0,0,0,360,2711,1,0,0,0,362,2723,1,0,0,0,364,2728, - 1,0,0,0,366,2733,1,0,0,0,368,2735,1,0,0,0,370,2739,1,0,0,0,372,2743, - 1,0,0,0,374,2750,1,0,0,0,376,2752,1,0,0,0,378,2765,1,0,0,0,380,2804, - 1,0,0,0,382,2806,1,0,0,0,384,2811,1,0,0,0,386,2816,1,0,0,0,388,2823, - 1,0,0,0,390,2828,1,0,0,0,392,2833,1,0,0,0,394,2839,1,0,0,0,396,2841, - 1,0,0,0,398,2850,1,0,0,0,400,2862,1,0,0,0,402,2871,1,0,0,0,404,2881, - 1,0,0,0,406,2907,1,0,0,0,408,2909,1,0,0,0,410,2931,1,0,0,0,412,2936, - 1,0,0,0,414,3009,1,0,0,0,416,3011,1,0,0,0,418,3043,1,0,0,0,420,3045, - 1,0,0,0,422,3056,1,0,0,0,424,3062,1,0,0,0,426,3068,1,0,0,0,428,3070, - 1,0,0,0,430,3079,1,0,0,0,432,3089,1,0,0,0,434,3091,1,0,0,0,436,3105, - 1,0,0,0,438,3107,1,0,0,0,440,3110,1,0,0,0,442,3114,1,0,0,0,444,3116, - 1,0,0,0,446,3120,1,0,0,0,448,3124,1,0,0,0,450,3128,1,0,0,0,452,3135, - 1,0,0,0,454,3142,1,0,0,0,456,3164,1,0,0,0,458,3170,1,0,0,0,460,3185, - 1,0,0,0,462,3192,1,0,0,0,464,3200,1,0,0,0,466,3202,1,0,0,0,468,3209, - 1,0,0,0,470,3213,1,0,0,0,472,3216,1,0,0,0,474,3219,1,0,0,0,476,3222, - 1,0,0,0,478,3269,1,0,0,0,480,3286,1,0,0,0,482,3288,1,0,0,0,484,3299, - 1,0,0,0,486,3303,1,0,0,0,488,3307,1,0,0,0,490,3309,1,0,0,0,492,3314, - 1,0,0,0,494,3316,1,0,0,0,496,3321,1,0,0,0,498,3326,1,0,0,0,500,3331, - 1,0,0,0,502,3336,1,0,0,0,504,3342,1,0,0,0,506,3351,1,0,0,0,508,3356, - 1,0,0,0,510,3369,1,0,0,0,512,3371,1,0,0,0,514,3375,1,0,0,0,516,3395, - 1,0,0,0,518,3408,1,0,0,0,520,3416,1,0,0,0,522,3418,1,0,0,0,524,3427, - 1,0,0,0,526,3431,1,0,0,0,528,3438,1,0,0,0,530,3445,1,0,0,0,532,3452, - 1,0,0,0,534,3455,1,0,0,0,536,3458,1,0,0,0,538,3490,1,0,0,0,540,3501, - 1,0,0,0,542,3518,1,0,0,0,544,3520,1,0,0,0,546,3524,1,0,0,0,548,3531, - 1,0,0,0,550,3533,1,0,0,0,552,3538,1,0,0,0,554,3542,1,0,0,0,556,3550, - 1,0,0,0,558,3554,1,0,0,0,560,3564,1,0,0,0,562,3566,1,0,0,0,564,3572, - 1,0,0,0,566,3576,1,0,0,0,568,3589,1,0,0,0,570,3591,1,0,0,0,572,3595, - 1,0,0,0,574,3598,1,0,0,0,576,3601,1,0,0,0,578,3621,1,0,0,0,580,3625, - 1,0,0,0,582,3632,1,0,0,0,584,3646,1,0,0,0,586,3667,1,0,0,0,588,3672, - 1,0,0,0,590,3674,1,0,0,0,592,3679,1,0,0,0,594,3684,1,0,0,0,596,3698, - 1,0,0,0,598,3823,1,0,0,0,600,3825,1,0,0,0,602,3845,1,0,0,0,604,3848, - 1,0,0,0,606,3851,1,0,0,0,608,3854,1,0,0,0,610,3858,1,0,0,0,612,3870, - 1,0,0,0,614,3872,1,0,0,0,616,3874,1,0,0,0,618,3882,1,0,0,0,620,3890, - 1,0,0,0,622,3902,1,0,0,0,624,3936,1,0,0,0,626,3938,1,0,0,0,628,3956, - 1,0,0,0,630,3965,1,0,0,0,632,3970,1,0,0,0,634,3974,1,0,0,0,636,3990, - 1,0,0,0,638,4049,1,0,0,0,640,4051,1,0,0,0,642,4053,1,0,0,0,644,4073, - 1,0,0,0,646,4084,1,0,0,0,648,4086,1,0,0,0,650,4102,1,0,0,0,652,4114, - 1,0,0,0,654,4124,1,0,0,0,656,4126,1,0,0,0,658,4130,1,0,0,0,660,4140, - 1,0,0,0,662,4150,1,0,0,0,664,4155,1,0,0,0,666,4162,1,0,0,0,668,4166, - 1,0,0,0,670,4185,1,0,0,0,672,4190,1,0,0,0,674,4192,1,0,0,0,676,4220, - 1,0,0,0,678,4223,1,0,0,0,680,4225,1,0,0,0,682,4227,1,0,0,0,684,4246, - 1,0,0,0,686,4248,1,0,0,0,688,4250,1,0,0,0,690,4254,1,0,0,0,692,4288, - 1,0,0,0,694,4290,1,0,0,0,696,4292,1,0,0,0,698,4300,1,0,0,0,700,4347, - 1,0,0,0,702,4349,1,0,0,0,704,4374,1,0,0,0,706,4376,1,0,0,0,708,4384, - 1,0,0,0,710,4393,1,0,0,0,712,4409,1,0,0,0,714,4413,1,0,0,0,716,4415, - 1,0,0,0,718,4424,1,0,0,0,720,4439,1,0,0,0,722,4445,1,0,0,0,724,4447, - 1,0,0,0,726,4455,1,0,0,0,728,4457,1,0,0,0,730,4462,1,0,0,0,732,4475, - 1,0,0,0,734,4499,1,0,0,0,736,4501,1,0,0,0,738,4514,1,0,0,0,740,4516, - 1,0,0,0,742,4519,1,0,0,0,744,4522,1,0,0,0,746,4524,1,0,0,0,748,4528, - 1,0,0,0,750,4534,1,0,0,0,752,4540,1,0,0,0,754,4542,1,0,0,0,756,4556, - 1,0,0,0,758,4565,1,0,0,0,760,4567,1,0,0,0,762,4578,1,0,0,0,764,4586, - 1,0,0,0,766,4596,1,0,0,0,768,4600,1,0,0,0,770,4604,1,0,0,0,772,4608, - 1,0,0,0,774,4614,1,0,0,0,776,4668,1,0,0,0,778,4674,1,0,0,0,780,4676, - 1,0,0,0,782,4680,1,0,0,0,784,4684,1,0,0,0,786,4686,1,0,0,0,788,4690, - 1,0,0,0,790,4692,1,0,0,0,792,4703,1,0,0,0,794,4720,1,0,0,0,796,4736, - 1,0,0,0,798,4753,1,0,0,0,800,4755,1,0,0,0,802,4770,1,0,0,0,804,4785, - 1,0,0,0,806,4787,1,0,0,0,808,4789,1,0,0,0,810,4791,1,0,0,0,812,4797, - 1,0,0,0,814,4803,1,0,0,0,816,4808,1,0,0,0,818,4810,1,0,0,0,820,4813, - 1,0,0,0,822,4815,1,0,0,0,824,4833,1,0,0,0,826,4849,1,0,0,0,828,4851, - 1,0,0,0,830,4864,1,0,0,0,832,4866,1,0,0,0,834,4878,1,0,0,0,836,4883, - 1,0,0,0,838,4888,1,0,0,0,840,4890,1,0,0,0,842,4899,1,0,0,0,844,4901, - 1,0,0,0,846,4910,1,0,0,0,848,4912,1,0,0,0,850,4921,1,0,0,0,852,4923, - 1,0,0,0,854,4932,1,0,0,0,856,4934,1,0,0,0,858,4943,1,0,0,0,860,4945, - 1,0,0,0,862,4954,1,0,0,0,864,4961,1,0,0,0,866,4963,1,0,0,0,868,4970, - 1,0,0,0,870,4972,1,0,0,0,872,4982,1,0,0,0,874,4995,1,0,0,0,876,4997, - 1,0,0,0,878,5001,1,0,0,0,880,5005,1,0,0,0,882,5011,1,0,0,0,884,5013, - 1,0,0,0,886,5024,1,0,0,0,888,5026,1,0,0,0,890,5050,1,0,0,0,892,5052, - 1,0,0,0,894,5057,1,0,0,0,896,5062,1,0,0,0,898,5067,1,0,0,0,900,5069, - 1,0,0,0,902,5078,1,0,0,0,904,5080,1,0,0,0,906,5089,1,0,0,0,908,5091, - 1,0,0,0,910,5093,1,0,0,0,912,5097,1,0,0,0,914,5109,1,0,0,0,916,5114, - 1,0,0,0,918,5125,1,0,0,0,920,5131,1,0,0,0,922,5133,1,0,0,0,924,5135, - 1,0,0,0,926,5139,1,0,0,0,928,5141,1,0,0,0,930,5146,1,0,0,0,932,5148, - 1,0,0,0,934,5150,1,0,0,0,936,5152,1,0,0,0,938,5155,1,0,0,0,940,5163, - 1,0,0,0,942,5170,1,0,0,0,944,5172,1,0,0,0,946,5180,1,0,0,0,948,5182, - 1,0,0,0,950,5187,1,0,0,0,952,5192,1,0,0,0,954,5214,1,0,0,0,956,5223, - 1,0,0,0,958,5225,1,0,0,0,960,5236,1,0,0,0,962,5238,1,0,0,0,964,5246, - 1,0,0,0,966,5263,1,0,0,0,968,5266,1,0,0,0,970,5270,1,0,0,0,972,5272, - 1,0,0,0,974,5274,1,0,0,0,976,5276,1,0,0,0,978,5278,1,0,0,0,980,5280, - 1,0,0,0,982,5282,1,0,0,0,984,5284,1,0,0,0,986,5286,1,0,0,0,988,5288, - 1,0,0,0,990,5290,1,0,0,0,992,5292,1,0,0,0,994,5317,1,0,0,0,996,5322, - 1,0,0,0,998,5336,1,0,0,0,1000,5344,1,0,0,0,1002,5352,1,0,0,0,1004, - 5354,1,0,0,0,1006,5357,1,0,0,0,1008,5365,1,0,0,0,1010,5373,1,0,0, - 0,1012,5377,1,0,0,0,1014,5379,1,0,0,0,1016,5385,1,0,0,0,1018,5387, - 1,0,0,0,1020,5390,1,0,0,0,1022,5400,1,0,0,0,1024,5423,1,0,0,0,1026, - 5441,1,0,0,0,1028,5443,1,0,0,0,1030,5451,1,0,0,0,1032,5459,1,0,0, - 0,1034,5473,1,0,0,0,1036,5479,1,0,0,0,1038,5495,1,0,0,0,1040,5511, - 1,0,0,0,1042,1044,3,2,1,0,1043,1042,1,0,0,0,1044,1047,1,0,0,0,1045, - 1043,1,0,0,0,1045,1046,1,0,0,0,1046,1048,1,0,0,0,1047,1045,1,0,0, - 0,1048,1049,5,0,0,1,1049,1,1,0,0,0,1050,1053,3,4,2,0,1051,1053,3, - 12,6,0,1052,1050,1,0,0,0,1052,1051,1,0,0,0,1053,1055,1,0,0,0,1054, - 1056,5,397,0,0,1055,1054,1,0,0,0,1055,1056,1,0,0,0,1056,3,1,0,0, - 0,1057,1067,5,119,0,0,1058,1060,3,6,3,0,1059,1058,1,0,0,0,1060,1063, - 1,0,0,0,1061,1059,1,0,0,0,1061,1062,1,0,0,0,1062,1064,1,0,0,0,1063, - 1061,1,0,0,0,1064,1068,3,12,6,0,1065,1066,5,283,0,0,1066,1068,3, - 392,196,0,1067,1061,1,0,0,0,1067,1065,1,0,0,0,1068,5,1,0,0,0,1069, - 1092,5,122,0,0,1070,1092,5,138,0,0,1071,1092,5,88,0,0,1072,1074, - 5,37,0,0,1073,1075,7,0,0,0,1074,1073,1,0,0,0,1074,1075,1,0,0,0,1075, - 1092,1,0,0,0,1076,1092,5,191,0,0,1077,1092,5,21,0,0,1078,1092,5, - 10,0,0,1079,1092,5,274,0,0,1080,1092,5,190,0,0,1081,1092,5,19,0, - 0,1082,1084,5,376,0,0,1083,1085,3,8,4,0,1084,1083,1,0,0,0,1084,1085, - 1,0,0,0,1085,1087,1,0,0,0,1086,1088,3,10,5,0,1087,1086,1,0,0,0,1087, - 1088,1,0,0,0,1088,1092,1,0,0,0,1089,1092,5,79,0,0,1090,1092,5,78, - 0,0,1091,1069,1,0,0,0,1091,1070,1,0,0,0,1091,1071,1,0,0,0,1091,1072, - 1,0,0,0,1091,1076,1,0,0,0,1091,1077,1,0,0,0,1091,1078,1,0,0,0,1091, - 1079,1,0,0,0,1091,1080,1,0,0,0,1091,1081,1,0,0,0,1091,1082,1,0,0, - 0,1091,1089,1,0,0,0,1091,1090,1,0,0,0,1092,7,1,0,0,0,1093,1094,5, - 224,0,0,1094,9,1,0,0,0,1095,1096,7,1,0,0,1096,11,1,0,0,0,1097,1112, - 3,392,196,0,1098,1112,3,14,7,0,1099,1112,3,20,10,0,1100,1112,3,22, - 11,0,1101,1112,3,24,12,0,1102,1112,3,28,14,0,1103,1112,3,36,18,0, - 1104,1112,3,38,19,0,1105,1112,3,422,211,0,1106,1112,3,430,215,0, - 1107,1112,3,432,216,0,1108,1112,3,454,227,0,1109,1112,3,948,474, - 0,1110,1112,3,950,475,0,1111,1097,1,0,0,0,1111,1098,1,0,0,0,1111, - 1099,1,0,0,0,1111,1100,1,0,0,0,1111,1101,1,0,0,0,1111,1102,1,0,0, - 0,1111,1103,1,0,0,0,1111,1104,1,0,0,0,1111,1105,1,0,0,0,1111,1106, - 1,0,0,0,1111,1107,1,0,0,0,1111,1108,1,0,0,0,1111,1109,1,0,0,0,1111, - 1110,1,0,0,0,1112,13,1,0,0,0,1113,1114,5,186,0,0,1114,1116,5,66, - 0,0,1115,1117,5,187,0,0,1116,1115,1,0,0,0,1116,1117,1,0,0,0,1117, - 1118,1,0,0,0,1118,1119,5,158,0,0,1119,1121,5,425,0,0,1120,1122,5, - 234,0,0,1121,1120,1,0,0,0,1121,1122,1,0,0,0,1122,1123,1,0,0,0,1123, - 1124,5,166,0,0,1124,1125,5,328,0,0,1125,1127,3,910,455,0,1126,1128, - 3,78,39,0,1127,1126,1,0,0,0,1127,1128,1,0,0,0,1128,15,1,0,0,0,1129, - 1130,5,152,0,0,1130,1131,5,253,0,0,1131,17,1,0,0,0,1132,1134,5,134, - 0,0,1133,1135,5,203,0,0,1134,1133,1,0,0,0,1134,1135,1,0,0,0,1135, - 1136,1,0,0,0,1136,1137,5,278,0,0,1137,1138,5,398,0,0,1138,1139,5, - 425,0,0,1139,1140,5,399,0,0,1140,19,1,0,0,0,1141,1142,5,120,0,0, - 1142,1143,5,328,0,0,1143,1144,3,910,455,0,1144,1145,5,340,0,0,1145, - 1147,5,425,0,0,1146,1148,3,18,9,0,1147,1146,1,0,0,0,1147,1148,1, - 0,0,0,1148,21,1,0,0,0,1149,1155,5,153,0,0,1150,1152,5,123,0,0,1151, - 1150,1,0,0,0,1151,1152,1,0,0,0,1152,1153,1,0,0,0,1153,1154,5,328, - 0,0,1154,1156,3,910,455,0,1155,1151,1,0,0,0,1155,1156,1,0,0,0,1156, - 1157,1,0,0,0,1157,1158,5,139,0,0,1158,1160,5,425,0,0,1159,1161,3, - 272,136,0,1160,1159,1,0,0,0,1160,1161,1,0,0,0,1161,23,1,0,0,0,1162, - 1163,5,276,0,0,1163,1164,5,103,0,0,1164,1167,3,26,13,0,1165,1166, - 5,277,0,0,1166,1168,3,26,13,0,1167,1165,1,0,0,0,1167,1168,1,0,0, - 0,1168,1171,1,0,0,0,1169,1170,5,386,0,0,1170,1172,3,30,15,0,1171, - 1169,1,0,0,0,1171,1172,1,0,0,0,1172,25,1,0,0,0,1173,1176,3,654,327, - 0,1174,1175,5,394,0,0,1175,1177,3,34,17,0,1176,1174,1,0,0,0,1176, - 1177,1,0,0,0,1177,27,1,0,0,0,1178,1179,5,276,0,0,1179,1180,5,186, - 0,0,1180,1183,3,26,13,0,1181,1182,5,166,0,0,1182,1184,3,654,327, - 0,1183,1181,1,0,0,0,1183,1184,1,0,0,0,1184,1187,1,0,0,0,1185,1186, - 5,386,0,0,1186,1188,3,30,15,0,1187,1185,1,0,0,0,1187,1188,1,0,0, - 0,1188,29,1,0,0,0,1189,1190,5,398,0,0,1190,1191,3,32,16,0,1191,1192, - 5,399,0,0,1192,31,1,0,0,0,1193,1198,3,256,128,0,1194,1195,5,396, - 0,0,1195,1197,3,256,128,0,1196,1194,1,0,0,0,1197,1200,1,0,0,0,1198, - 1196,1,0,0,0,1198,1199,1,0,0,0,1199,33,1,0,0,0,1200,1198,1,0,0,0, - 1201,1204,5,425,0,0,1202,1203,5,394,0,0,1203,1205,5,425,0,0,1204, - 1202,1,0,0,0,1204,1205,1,0,0,0,1205,35,1,0,0,0,1206,1207,5,276,0, - 0,1207,1208,5,319,0,0,1208,1211,3,654,327,0,1209,1210,5,386,0,0, - 1210,1212,3,30,15,0,1211,1209,1,0,0,0,1211,1212,1,0,0,0,1212,37, - 1,0,0,0,1213,1261,3,56,28,0,1214,1261,3,68,34,0,1215,1261,3,70,35, - 0,1216,1261,3,598,299,0,1217,1261,3,76,38,0,1218,1261,3,74,37,0, - 1219,1261,3,476,238,0,1220,1261,3,86,43,0,1221,1261,3,94,47,0,1222, - 1261,3,160,80,0,1223,1261,3,182,91,0,1224,1261,3,198,99,0,1225,1261, - 3,202,101,0,1226,1261,3,206,103,0,1227,1261,3,204,102,0,1228,1261, - 3,196,98,0,1229,1261,3,200,100,0,1230,1261,3,168,84,0,1231,1261, - 3,174,87,0,1232,1261,3,170,85,0,1233,1261,3,172,86,0,1234,1261,3, - 176,88,0,1235,1261,3,178,89,0,1236,1261,3,180,90,0,1237,1261,3,88, - 44,0,1238,1261,3,98,49,0,1239,1261,3,104,52,0,1240,1261,3,100,50, - 0,1241,1261,3,106,53,0,1242,1261,3,108,54,0,1243,1261,3,110,55,0, - 1244,1261,3,112,56,0,1245,1261,3,114,57,0,1246,1261,3,128,64,0,1247, - 1261,3,120,60,0,1248,1261,3,130,65,0,1249,1261,3,122,61,0,1250,1261, - 3,116,58,0,1251,1261,3,118,59,0,1252,1261,3,126,63,0,1253,1261,3, - 124,62,0,1254,1261,3,450,225,0,1255,1261,3,452,226,0,1256,1261,3, - 466,233,0,1257,1261,3,954,477,0,1258,1261,3,600,300,0,1259,1261, - 3,610,305,0,1260,1213,1,0,0,0,1260,1214,1,0,0,0,1260,1215,1,0,0, - 0,1260,1216,1,0,0,0,1260,1217,1,0,0,0,1260,1218,1,0,0,0,1260,1219, - 1,0,0,0,1260,1220,1,0,0,0,1260,1221,1,0,0,0,1260,1222,1,0,0,0,1260, - 1223,1,0,0,0,1260,1224,1,0,0,0,1260,1225,1,0,0,0,1260,1226,1,0,0, - 0,1260,1227,1,0,0,0,1260,1228,1,0,0,0,1260,1229,1,0,0,0,1260,1230, - 1,0,0,0,1260,1231,1,0,0,0,1260,1232,1,0,0,0,1260,1233,1,0,0,0,1260, - 1234,1,0,0,0,1260,1235,1,0,0,0,1260,1236,1,0,0,0,1260,1237,1,0,0, - 0,1260,1238,1,0,0,0,1260,1239,1,0,0,0,1260,1240,1,0,0,0,1260,1241, - 1,0,0,0,1260,1242,1,0,0,0,1260,1243,1,0,0,0,1260,1244,1,0,0,0,1260, - 1245,1,0,0,0,1260,1246,1,0,0,0,1260,1247,1,0,0,0,1260,1248,1,0,0, - 0,1260,1249,1,0,0,0,1260,1250,1,0,0,0,1260,1251,1,0,0,0,1260,1252, - 1,0,0,0,1260,1253,1,0,0,0,1260,1254,1,0,0,0,1260,1255,1,0,0,0,1260, - 1256,1,0,0,0,1260,1257,1,0,0,0,1260,1258,1,0,0,0,1260,1259,1,0,0, - 0,1261,39,1,0,0,0,1262,1263,5,151,0,0,1263,1264,5,117,0,0,1264,41, - 1,0,0,0,1265,1266,7,2,0,0,1266,43,1,0,0,0,1267,1268,5,151,0,0,1268, - 1269,5,215,0,0,1269,1270,5,117,0,0,1270,45,1,0,0,0,1271,1272,5,135, - 0,0,1272,47,1,0,0,0,1273,1274,3,970,485,0,1274,1275,5,283,0,0,1275, - 49,1,0,0,0,1276,1277,3,972,486,0,1277,1278,5,283,0,0,1278,51,1,0, - 0,0,1279,1280,5,320,0,0,1280,1281,5,17,0,0,1281,1282,5,92,0,0,1282, - 53,1,0,0,0,1283,1284,5,227,0,0,1284,1285,5,277,0,0,1285,55,1,0,0, - 0,1286,1288,5,58,0,0,1287,1289,5,272,0,0,1288,1287,1,0,0,0,1288, - 1289,1,0,0,0,1289,1290,1,0,0,0,1290,1292,3,92,46,0,1291,1293,3,44, - 22,0,1292,1291,1,0,0,0,1292,1293,1,0,0,0,1293,1294,1,0,0,0,1294, - 1296,3,656,328,0,1295,1297,3,72,36,0,1296,1295,1,0,0,0,1296,1297, - 1,0,0,0,1297,1299,1,0,0,0,1298,1300,3,58,29,0,1299,1298,1,0,0,0, - 1299,1300,1,0,0,0,1300,1302,1,0,0,0,1301,1303,3,60,30,0,1302,1301, - 1,0,0,0,1302,1303,1,0,0,0,1303,1307,1,0,0,0,1304,1305,5,386,0,0, - 1305,1306,5,76,0,0,1306,1308,3,62,31,0,1307,1304,1,0,0,0,1307,1308, - 1,0,0,0,1308,1326,1,0,0,0,1309,1310,5,58,0,0,1310,1311,5,272,0,0, - 1311,1313,3,92,46,0,1312,1314,3,44,22,0,1313,1312,1,0,0,0,1313,1314, - 1,0,0,0,1314,1315,1,0,0,0,1315,1317,3,656,328,0,1316,1318,3,72,36, - 0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318,1319,1,0,0,0,1319,1323, - 3,66,33,0,1320,1321,5,386,0,0,1321,1322,5,76,0,0,1322,1324,3,62, - 31,0,1323,1320,1,0,0,0,1323,1324,1,0,0,0,1324,1326,1,0,0,0,1325, - 1286,1,0,0,0,1325,1309,1,0,0,0,1326,57,1,0,0,0,1327,1328,5,188,0, - 0,1328,1329,5,425,0,0,1329,59,1,0,0,0,1330,1331,5,195,0,0,1331,1332, - 5,425,0,0,1332,61,1,0,0,0,1333,1334,5,398,0,0,1334,1335,3,64,32, - 0,1335,1336,5,399,0,0,1336,63,1,0,0,0,1337,1342,3,256,128,0,1338, - 1339,5,396,0,0,1339,1341,3,256,128,0,1340,1338,1,0,0,0,1341,1344, - 1,0,0,0,1342,1340,1,0,0,0,1342,1343,1,0,0,0,1343,65,1,0,0,0,1344, - 1342,1,0,0,0,1345,1346,5,369,0,0,1346,1347,3,654,327,0,1347,67,1, - 0,0,0,1348,1349,5,367,0,0,1349,1350,3,654,327,0,1350,69,1,0,0,0, - 1351,1352,5,101,0,0,1352,1354,3,92,46,0,1353,1355,3,40,20,0,1354, - 1353,1,0,0,0,1354,1355,1,0,0,0,1355,1356,1,0,0,0,1356,1358,3,654, - 327,0,1357,1359,3,42,21,0,1358,1357,1,0,0,0,1358,1359,1,0,0,0,1359, - 71,1,0,0,0,1360,1361,5,47,0,0,1361,1362,5,425,0,0,1362,73,1,0,0, - 0,1363,1365,5,350,0,0,1364,1366,5,328,0,0,1365,1364,1,0,0,0,1365, - 1366,1,0,0,0,1366,1367,1,0,0,0,1367,1373,3,544,272,0,1368,1369,5, - 46,0,0,1369,1370,5,398,0,0,1370,1371,3,280,140,0,1371,1372,5,399, - 0,0,1372,1374,1,0,0,0,1373,1368,1,0,0,0,1373,1374,1,0,0,0,1374,1376, - 1,0,0,0,1375,1377,3,46,23,0,1376,1375,1,0,0,0,1376,1377,1,0,0,0, - 1377,75,1,0,0,0,1378,1379,5,101,0,0,1379,1381,5,328,0,0,1380,1382, - 3,40,20,0,1381,1380,1,0,0,0,1381,1382,1,0,0,0,1382,1383,1,0,0,0, - 1383,1385,3,660,330,0,1384,1386,5,254,0,0,1385,1384,1,0,0,0,1385, - 1386,1,0,0,0,1386,1388,1,0,0,0,1387,1389,3,18,9,0,1388,1387,1,0, - 0,0,1388,1389,1,0,0,0,1389,77,1,0,0,0,1390,1391,5,160,0,0,1391,1392, - 5,425,0,0,1392,1393,5,300,0,0,1393,1394,5,425,0,0,1394,79,1,0,0, - 0,1395,1398,3,926,463,0,1396,1397,5,394,0,0,1397,1399,3,926,463, - 0,1398,1396,1,0,0,0,1398,1399,1,0,0,0,1399,1413,1,0,0,0,1400,1410, - 3,926,463,0,1401,1406,5,394,0,0,1402,1407,5,104,0,0,1403,1407,5, - 175,0,0,1404,1407,5,374,0,0,1405,1407,3,926,463,0,1406,1402,1,0, - 0,0,1406,1403,1,0,0,0,1406,1404,1,0,0,0,1406,1405,1,0,0,0,1407,1409, - 1,0,0,0,1408,1401,1,0,0,0,1409,1412,1,0,0,0,1410,1408,1,0,0,0,1410, - 1411,1,0,0,0,1411,1414,1,0,0,0,1412,1410,1,0,0,0,1413,1400,1,0,0, - 0,1413,1414,1,0,0,0,1414,81,1,0,0,0,1415,1417,3,80,40,0,1416,1418, - 3,912,456,0,1417,1416,1,0,0,0,1417,1418,1,0,0,0,1418,83,1,0,0,0, - 1419,1421,3,658,329,0,1420,1422,3,912,456,0,1421,1420,1,0,0,0,1421, - 1422,1,0,0,0,1422,1424,1,0,0,0,1423,1425,3,286,143,0,1424,1423,1, - 0,0,0,1424,1425,1,0,0,0,1425,85,1,0,0,0,1426,1449,7,3,0,0,1427,1429, - 3,92,46,0,1428,1430,5,122,0,0,1429,1428,1,0,0,0,1429,1430,1,0,0, - 0,1430,1431,1,0,0,0,1431,1432,3,654,327,0,1432,1450,1,0,0,0,1433, - 1435,5,69,0,0,1434,1436,5,122,0,0,1435,1434,1,0,0,0,1435,1436,1, - 0,0,0,1436,1437,1,0,0,0,1437,1450,3,654,327,0,1438,1440,5,141,0, - 0,1439,1441,5,122,0,0,1440,1439,1,0,0,0,1440,1441,1,0,0,0,1441,1442, - 1,0,0,0,1442,1450,3,782,391,0,1443,1446,5,138,0,0,1444,1446,5,122, - 0,0,1445,1443,1,0,0,0,1445,1444,1,0,0,0,1446,1447,1,0,0,0,1447,1450, - 3,84,42,0,1448,1450,3,84,42,0,1449,1427,1,0,0,0,1449,1433,1,0,0, - 0,1449,1438,1,0,0,0,1449,1445,1,0,0,0,1449,1448,1,0,0,0,1450,87, - 1,0,0,0,1451,1452,5,10,0,0,1452,1453,5,328,0,0,1453,1466,3,910,455, - 0,1454,1455,5,52,0,0,1455,1462,5,318,0,0,1456,1463,5,214,0,0,1457, - 1458,5,134,0,0,1458,1460,5,46,0,0,1459,1461,3,280,140,0,1460,1459, - 1,0,0,0,1460,1461,1,0,0,0,1461,1463,1,0,0,0,1462,1456,1,0,0,0,1462, - 1457,1,0,0,0,1462,1463,1,0,0,0,1463,1467,1,0,0,0,1464,1465,5,33, - 0,0,1465,1467,5,203,0,0,1466,1454,1,0,0,0,1466,1464,1,0,0,0,1467, - 89,1,0,0,0,1468,1469,7,4,0,0,1469,91,1,0,0,0,1470,1471,7,5,0,0,1471, - 93,1,0,0,0,1472,1473,5,307,0,0,1473,1476,7,6,0,0,1474,1475,5,183, - 0,0,1475,1477,3,216,108,0,1476,1474,1,0,0,0,1476,1477,1,0,0,0,1477, - 1666,1,0,0,0,1478,1480,5,307,0,0,1479,1481,5,122,0,0,1480,1479,1, - 0,0,0,1480,1481,1,0,0,0,1481,1482,1,0,0,0,1482,1486,5,329,0,0,1483, - 1484,3,90,45,0,1484,1485,3,654,327,0,1485,1487,1,0,0,0,1486,1483, - 1,0,0,0,1486,1487,1,0,0,0,1487,1489,1,0,0,0,1488,1490,3,96,48,0, - 1489,1488,1,0,0,0,1489,1490,1,0,0,0,1490,1666,1,0,0,0,1491,1492, - 5,307,0,0,1492,1496,5,378,0,0,1493,1494,3,90,45,0,1494,1495,3,654, - 327,0,1495,1497,1,0,0,0,1496,1493,1,0,0,0,1496,1497,1,0,0,0,1497, - 1501,1,0,0,0,1498,1499,5,183,0,0,1499,1502,3,216,108,0,1500,1502, - 3,216,108,0,1501,1498,1,0,0,0,1501,1500,1,0,0,0,1501,1502,1,0,0, - 0,1502,1666,1,0,0,0,1503,1504,5,307,0,0,1504,1505,5,201,0,0,1505, - 1509,5,378,0,0,1506,1507,3,90,45,0,1507,1508,3,654,327,0,1508,1510, - 1,0,0,0,1509,1506,1,0,0,0,1509,1510,1,0,0,0,1510,1514,1,0,0,0,1511, - 1512,5,183,0,0,1512,1515,3,216,108,0,1513,1515,3,216,108,0,1514, - 1511,1,0,0,0,1514,1513,1,0,0,0,1514,1515,1,0,0,0,1515,1666,1,0,0, - 0,1516,1518,5,307,0,0,1517,1519,5,314,0,0,1518,1517,1,0,0,0,1518, - 1519,1,0,0,0,1519,1520,1,0,0,0,1520,1521,5,46,0,0,1521,1522,3,90, - 45,0,1522,1526,3,658,329,0,1523,1524,3,90,45,0,1524,1525,3,654,327, - 0,1525,1527,1,0,0,0,1526,1523,1,0,0,0,1526,1527,1,0,0,0,1527,1531, - 1,0,0,0,1528,1529,5,183,0,0,1529,1532,3,216,108,0,1530,1532,3,216, - 108,0,1531,1528,1,0,0,0,1531,1530,1,0,0,0,1531,1532,1,0,0,0,1532, - 1666,1,0,0,0,1533,1534,5,307,0,0,1534,1537,5,142,0,0,1535,1536,5, - 183,0,0,1536,1538,3,782,391,0,1537,1535,1,0,0,0,1537,1538,1,0,0, - 0,1538,1666,1,0,0,0,1539,1540,5,307,0,0,1540,1541,5,238,0,0,1541, - 1543,3,658,329,0,1542,1544,3,912,456,0,1543,1542,1,0,0,0,1543,1544, - 1,0,0,0,1544,1546,1,0,0,0,1545,1547,3,676,338,0,1546,1545,1,0,0, - 0,1546,1547,1,0,0,0,1547,1549,1,0,0,0,1548,1550,3,764,382,0,1549, - 1548,1,0,0,0,1549,1550,1,0,0,0,1550,1552,1,0,0,0,1551,1553,3,420, - 210,0,1552,1551,1,0,0,0,1552,1553,1,0,0,0,1553,1666,1,0,0,0,1554, - 1555,5,307,0,0,1555,1561,5,58,0,0,1556,1557,3,92,46,0,1557,1558, - 3,654,327,0,1558,1562,1,0,0,0,1559,1560,5,328,0,0,1560,1562,3,660, - 330,0,1561,1556,1,0,0,0,1561,1559,1,0,0,0,1562,1666,1,0,0,0,1563, - 1564,5,307,0,0,1564,1565,5,328,0,0,1565,1569,5,122,0,0,1566,1567, - 3,90,45,0,1567,1568,3,654,327,0,1568,1570,1,0,0,0,1569,1566,1,0, - 0,0,1569,1570,1,0,0,0,1570,1571,1,0,0,0,1571,1572,5,183,0,0,1572, - 1574,3,216,108,0,1573,1575,3,912,456,0,1574,1573,1,0,0,0,1574,1575, - 1,0,0,0,1575,1666,1,0,0,0,1576,1577,5,307,0,0,1577,1578,5,331,0, - 0,1578,1582,3,660,330,0,1579,1580,5,398,0,0,1580,1581,5,425,0,0, - 1581,1583,5,399,0,0,1582,1579,1,0,0,0,1582,1583,1,0,0,0,1583,1666, - 1,0,0,0,1584,1585,5,307,0,0,1585,1597,5,190,0,0,1586,1587,3,92,46, - 0,1587,1589,3,654,327,0,1588,1590,5,122,0,0,1589,1588,1,0,0,0,1589, - 1590,1,0,0,0,1590,1598,1,0,0,0,1591,1593,3,82,41,0,1592,1591,1,0, - 0,0,1592,1593,1,0,0,0,1593,1595,1,0,0,0,1594,1596,5,122,0,0,1595, - 1594,1,0,0,0,1595,1596,1,0,0,0,1596,1598,1,0,0,0,1597,1586,1,0,0, - 0,1597,1592,1,0,0,0,1598,1666,1,0,0,0,1599,1600,5,307,0,0,1600,1637, - 5,50,0,0,1601,1638,3,468,234,0,1602,1603,3,92,46,0,1603,1605,3,654, - 327,0,1604,1606,3,470,235,0,1605,1604,1,0,0,0,1605,1606,1,0,0,0, - 1606,1608,1,0,0,0,1607,1609,3,472,236,0,1608,1607,1,0,0,0,1608,1609, - 1,0,0,0,1609,1611,1,0,0,0,1610,1612,3,474,237,0,1611,1610,1,0,0, - 0,1611,1612,1,0,0,0,1612,1614,1,0,0,0,1613,1615,3,764,382,0,1614, - 1613,1,0,0,0,1614,1615,1,0,0,0,1615,1617,1,0,0,0,1616,1618,3,420, - 210,0,1617,1616,1,0,0,0,1617,1618,1,0,0,0,1618,1638,1,0,0,0,1619, - 1621,3,82,41,0,1620,1619,1,0,0,0,1620,1621,1,0,0,0,1621,1623,1,0, - 0,0,1622,1624,3,470,235,0,1623,1622,1,0,0,0,1623,1624,1,0,0,0,1624, - 1626,1,0,0,0,1625,1627,3,472,236,0,1626,1625,1,0,0,0,1626,1627,1, - 0,0,0,1627,1629,1,0,0,0,1628,1630,3,474,237,0,1629,1628,1,0,0,0, - 1629,1630,1,0,0,0,1630,1632,1,0,0,0,1631,1633,3,764,382,0,1632,1631, - 1,0,0,0,1632,1633,1,0,0,0,1633,1635,1,0,0,0,1634,1636,3,420,210, - 0,1635,1634,1,0,0,0,1635,1636,1,0,0,0,1636,1638,1,0,0,0,1637,1601, - 1,0,0,0,1637,1602,1,0,0,0,1637,1620,1,0,0,0,1638,1666,1,0,0,0,1639, - 1640,5,307,0,0,1640,1666,5,345,0,0,1641,1642,5,307,0,0,1642,1643, - 5,54,0,0,1643,1666,5,425,0,0,1644,1645,5,307,0,0,1645,1649,5,279, - 0,0,1646,1647,5,242,0,0,1647,1650,3,926,463,0,1648,1650,5,243,0, - 0,1649,1646,1,0,0,0,1649,1648,1,0,0,0,1650,1666,1,0,0,0,1651,1652, - 5,307,0,0,1652,1666,5,70,0,0,1653,1655,5,307,0,0,1654,1656,5,138, - 0,0,1655,1654,1,0,0,0,1655,1656,1,0,0,0,1656,1657,1,0,0,0,1657,1658, - 7,7,0,0,1658,1659,5,223,0,0,1659,1663,3,660,330,0,1660,1661,3,90, - 45,0,1661,1662,3,654,327,0,1662,1664,1,0,0,0,1663,1660,1,0,0,0,1663, - 1664,1,0,0,0,1664,1666,1,0,0,0,1665,1472,1,0,0,0,1665,1478,1,0,0, - 0,1665,1491,1,0,0,0,1665,1503,1,0,0,0,1665,1516,1,0,0,0,1665,1533, - 1,0,0,0,1665,1539,1,0,0,0,1665,1554,1,0,0,0,1665,1563,1,0,0,0,1665, - 1576,1,0,0,0,1665,1584,1,0,0,0,1665,1599,1,0,0,0,1665,1639,1,0,0, - 0,1665,1641,1,0,0,0,1665,1644,1,0,0,0,1665,1651,1,0,0,0,1665,1653, - 1,0,0,0,1666,95,1,0,0,0,1667,1668,5,383,0,0,1668,1669,3,926,463, - 0,1669,1670,5,404,0,0,1670,1671,5,425,0,0,1671,1676,1,0,0,0,1672, - 1673,5,183,0,0,1673,1676,3,216,108,0,1674,1676,3,216,108,0,1675, - 1667,1,0,0,0,1675,1672,1,0,0,0,1675,1674,1,0,0,0,1676,97,1,0,0,0, - 1677,1678,5,189,0,0,1678,1679,5,328,0,0,1679,1681,3,660,330,0,1680, - 1682,3,912,456,0,1681,1680,1,0,0,0,1681,1682,1,0,0,0,1682,1683,1, - 0,0,0,1683,1684,3,102,51,0,1684,99,1,0,0,0,1685,1686,5,189,0,0,1686, - 1687,3,92,46,0,1687,1688,3,654,327,0,1688,1689,3,102,51,0,1689,101, - 1,0,0,0,1690,1691,7,8,0,0,1691,103,1,0,0,0,1692,1693,5,360,0,0,1693, - 1694,5,328,0,0,1694,1696,3,660,330,0,1695,1697,3,912,456,0,1696, - 1695,1,0,0,0,1696,1697,1,0,0,0,1697,105,1,0,0,0,1698,1699,5,360, - 0,0,1699,1700,3,92,46,0,1700,1701,3,654,327,0,1701,107,1,0,0,0,1702, - 1703,5,58,0,0,1703,1704,5,286,0,0,1704,1705,3,926,463,0,1705,109, - 1,0,0,0,1706,1707,5,101,0,0,1707,1708,5,286,0,0,1708,1709,3,926, - 463,0,1709,111,1,0,0,0,1710,1711,5,143,0,0,1711,1713,3,140,70,0, - 1712,1714,3,134,67,0,1713,1712,1,0,0,0,1713,1714,1,0,0,0,1714,1715, - 1,0,0,0,1715,1716,5,340,0,0,1716,1718,3,146,73,0,1717,1719,3,152, - 76,0,1718,1717,1,0,0,0,1718,1719,1,0,0,0,1719,113,1,0,0,0,1720,1722, - 5,282,0,0,1721,1723,3,154,77,0,1722,1721,1,0,0,0,1722,1723,1,0,0, - 0,1723,1724,1,0,0,0,1724,1726,3,140,70,0,1725,1727,3,134,67,0,1726, - 1725,1,0,0,0,1726,1727,1,0,0,0,1727,1728,1,0,0,0,1728,1729,5,139, - 0,0,1729,1730,3,146,73,0,1730,115,1,0,0,0,1731,1733,5,143,0,0,1732, - 1734,5,286,0,0,1733,1732,1,0,0,0,1733,1734,1,0,0,0,1734,1735,1,0, - 0,0,1735,1740,3,926,463,0,1736,1737,5,396,0,0,1737,1739,3,926,463, - 0,1738,1736,1,0,0,0,1739,1742,1,0,0,0,1740,1738,1,0,0,0,1740,1741, - 1,0,0,0,1741,1743,1,0,0,0,1742,1740,1,0,0,0,1743,1744,5,340,0,0, - 1744,1746,3,146,73,0,1745,1747,3,158,79,0,1746,1745,1,0,0,0,1746, - 1747,1,0,0,0,1747,117,1,0,0,0,1748,1750,5,282,0,0,1749,1751,3,156, - 78,0,1750,1749,1,0,0,0,1750,1751,1,0,0,0,1751,1753,1,0,0,0,1752, - 1754,5,286,0,0,1753,1752,1,0,0,0,1753,1754,1,0,0,0,1754,1755,1,0, - 0,0,1755,1760,3,926,463,0,1756,1757,5,396,0,0,1757,1759,3,926,463, - 0,1758,1756,1,0,0,0,1759,1762,1,0,0,0,1760,1758,1,0,0,0,1760,1761, - 1,0,0,0,1761,1763,1,0,0,0,1762,1760,1,0,0,0,1763,1764,5,139,0,0, - 1764,1765,3,146,73,0,1765,119,1,0,0,0,1766,1767,5,307,0,0,1767,1768, - 5,286,0,0,1768,1769,5,143,0,0,1769,1770,3,148,74,0,1770,121,1,0, - 0,0,1771,1772,5,307,0,0,1772,1773,5,287,0,0,1773,123,1,0,0,0,1774, - 1775,5,307,0,0,1775,1776,5,62,0,0,1776,1777,5,287,0,0,1777,125,1, - 0,0,0,1778,1779,5,303,0,0,1779,1783,5,286,0,0,1780,1784,5,7,0,0, - 1781,1784,5,212,0,0,1782,1784,3,926,463,0,1783,1780,1,0,0,0,1783, - 1781,1,0,0,0,1783,1782,1,0,0,0,1784,127,1,0,0,0,1785,1786,5,307, - 0,0,1786,1788,5,143,0,0,1787,1789,3,148,74,0,1788,1787,1,0,0,0,1788, - 1789,1,0,0,0,1789,1792,1,0,0,0,1790,1791,5,223,0,0,1791,1793,3,132, - 66,0,1792,1790,1,0,0,0,1792,1793,1,0,0,0,1793,129,1,0,0,0,1794,1795, - 5,307,0,0,1795,1796,5,251,0,0,1796,1797,3,926,463,0,1797,131,1,0, - 0,0,1798,1801,5,7,0,0,1799,1801,3,138,69,0,1800,1798,1,0,0,0,1800, - 1799,1,0,0,0,1801,133,1,0,0,0,1802,1803,5,223,0,0,1803,1804,3,136, - 68,0,1804,135,1,0,0,0,1805,1806,3,92,46,0,1806,1807,3,654,327,0, - 1807,1820,1,0,0,0,1808,1810,5,328,0,0,1809,1808,1,0,0,0,1809,1810, - 1,0,0,0,1810,1811,1,0,0,0,1811,1813,3,660,330,0,1812,1814,3,912, - 456,0,1813,1812,1,0,0,0,1813,1814,1,0,0,0,1814,1820,1,0,0,0,1815, - 1816,5,365,0,0,1816,1820,5,425,0,0,1817,1818,5,302,0,0,1818,1820, - 3,926,463,0,1819,1805,1,0,0,0,1819,1809,1,0,0,0,1819,1815,1,0,0, - 0,1819,1817,1,0,0,0,1820,137,1,0,0,0,1821,1822,3,92,46,0,1822,1823, - 3,654,327,0,1823,1842,1,0,0,0,1824,1826,5,328,0,0,1825,1824,1,0, - 0,0,1825,1826,1,0,0,0,1826,1827,1,0,0,0,1827,1832,3,660,330,0,1828, - 1829,5,398,0,0,1829,1830,3,280,140,0,1830,1831,5,399,0,0,1831,1833, - 1,0,0,0,1832,1828,1,0,0,0,1832,1833,1,0,0,0,1833,1835,1,0,0,0,1834, - 1836,3,912,456,0,1835,1834,1,0,0,0,1835,1836,1,0,0,0,1836,1842,1, - 0,0,0,1837,1838,5,365,0,0,1838,1842,5,425,0,0,1839,1840,5,302,0, - 0,1840,1842,3,926,463,0,1841,1821,1,0,0,0,1841,1825,1,0,0,0,1841, - 1837,1,0,0,0,1841,1839,1,0,0,0,1842,139,1,0,0,0,1843,1848,3,142, - 71,0,1844,1845,5,396,0,0,1845,1847,3,142,71,0,1846,1844,1,0,0,0, - 1847,1850,1,0,0,0,1848,1846,1,0,0,0,1848,1849,1,0,0,0,1849,141,1, - 0,0,0,1850,1848,1,0,0,0,1851,1856,3,144,72,0,1852,1853,5,398,0,0, - 1853,1854,3,280,140,0,1854,1855,5,399,0,0,1855,1857,1,0,0,0,1856, - 1852,1,0,0,0,1856,1857,1,0,0,0,1857,143,1,0,0,0,1858,1859,7,9,0, - 0,1859,145,1,0,0,0,1860,1865,3,148,74,0,1861,1862,5,396,0,0,1862, - 1864,3,148,74,0,1863,1861,1,0,0,0,1864,1867,1,0,0,0,1865,1863,1, - 0,0,0,1865,1866,1,0,0,0,1866,147,1,0,0,0,1867,1865,1,0,0,0,1868, - 1869,5,368,0,0,1869,1875,3,930,465,0,1870,1871,5,144,0,0,1871,1875, - 3,930,465,0,1872,1873,5,286,0,0,1873,1875,3,926,463,0,1874,1868, - 1,0,0,0,1874,1870,1,0,0,0,1874,1872,1,0,0,0,1875,149,1,0,0,0,1876, - 1877,5,368,0,0,1877,1882,3,930,465,0,1878,1879,5,286,0,0,1879,1882, - 3,926,463,0,1880,1882,3,926,463,0,1881,1876,1,0,0,0,1881,1878,1, - 0,0,0,1881,1880,1,0,0,0,1882,151,1,0,0,0,1883,1884,5,386,0,0,1884, - 1885,5,143,0,0,1885,1886,5,226,0,0,1886,153,1,0,0,0,1887,1888,5, - 143,0,0,1888,1889,5,226,0,0,1889,1890,5,134,0,0,1890,155,1,0,0,0, - 1891,1892,5,5,0,0,1892,1893,5,226,0,0,1893,1894,5,134,0,0,1894,157, - 1,0,0,0,1895,1896,5,386,0,0,1896,1897,5,5,0,0,1897,1898,5,226,0, - 0,1898,159,1,0,0,0,1899,1901,5,211,0,0,1900,1902,5,275,0,0,1901, - 1900,1,0,0,0,1901,1902,1,0,0,0,1902,1903,1,0,0,0,1903,1904,5,328, - 0,0,1904,1910,3,660,330,0,1905,1906,7,10,0,0,1906,1908,5,238,0,0, - 1907,1909,3,916,458,0,1908,1907,1,0,0,0,1908,1909,1,0,0,0,1909,1911, - 1,0,0,0,1910,1905,1,0,0,0,1910,1911,1,0,0,0,1911,161,1,0,0,0,1912, - 1917,3,164,82,0,1913,1914,5,396,0,0,1914,1916,3,164,82,0,1915,1913, - 1,0,0,0,1916,1919,1,0,0,0,1917,1915,1,0,0,0,1917,1918,1,0,0,0,1918, - 163,1,0,0,0,1919,1917,1,0,0,0,1920,1921,3,166,83,0,1921,1922,5,425, - 0,0,1922,165,1,0,0,0,1923,1924,7,11,0,0,1924,167,1,0,0,0,1925,1927, - 5,58,0,0,1926,1928,5,332,0,0,1927,1926,1,0,0,0,1927,1928,1,0,0,0, - 1928,1929,1,0,0,0,1929,1930,5,141,0,0,1930,1931,3,780,390,0,1931, - 1932,5,17,0,0,1932,1935,5,425,0,0,1933,1934,5,369,0,0,1934,1936, - 3,162,81,0,1935,1933,1,0,0,0,1935,1936,1,0,0,0,1936,169,1,0,0,0, - 1937,1939,5,101,0,0,1938,1940,5,332,0,0,1939,1938,1,0,0,0,1939,1940, - 1,0,0,0,1940,1941,1,0,0,0,1941,1943,5,141,0,0,1942,1944,3,40,20, - 0,1943,1942,1,0,0,0,1943,1944,1,0,0,0,1944,1945,1,0,0,0,1945,1946, - 3,782,391,0,1946,171,1,0,0,0,1947,1948,5,270,0,0,1948,1949,7,12, - 0,0,1949,173,1,0,0,0,1950,1951,5,58,0,0,1951,1952,5,332,0,0,1952, - 1953,5,193,0,0,1953,1954,5,431,0,0,1954,1956,5,398,0,0,1955,1957, - 3,274,137,0,1956,1955,1,0,0,0,1956,1957,1,0,0,0,1957,1958,1,0,0, - 0,1958,1959,5,399,0,0,1959,1960,3,828,414,0,1960,175,1,0,0,0,1961, - 1962,5,101,0,0,1962,1963,5,332,0,0,1963,1965,5,193,0,0,1964,1966, - 3,40,20,0,1965,1964,1,0,0,0,1965,1966,1,0,0,0,1966,1967,1,0,0,0, - 1967,1968,5,431,0,0,1968,177,1,0,0,0,1969,1970,5,58,0,0,1970,1971, - 5,155,0,0,1971,1972,3,926,463,0,1972,1973,5,223,0,0,1973,1974,5, - 328,0,0,1974,1975,3,660,330,0,1975,1976,3,290,145,0,1976,1977,5, - 17,0,0,1977,1981,5,425,0,0,1978,1979,5,386,0,0,1979,1980,5,84,0, - 0,1980,1982,5,264,0,0,1981,1978,1,0,0,0,1981,1982,1,0,0,0,1982,1985, - 1,0,0,0,1983,1984,5,150,0,0,1984,1986,3,252,126,0,1985,1983,1,0, - 0,0,1985,1986,1,0,0,0,1986,1990,1,0,0,0,1987,1988,5,154,0,0,1988, - 1989,5,328,0,0,1989,1991,3,660,330,0,1990,1987,1,0,0,0,1990,1991, - 1,0,0,0,1991,1995,1,0,0,0,1992,1993,5,237,0,0,1993,1994,5,32,0,0, - 1994,1996,3,290,145,0,1995,1992,1,0,0,0,1995,1996,1,0,0,0,1996,2001, - 1,0,0,0,1997,1999,3,248,124,0,1998,1997,1,0,0,0,1998,1999,1,0,0, - 0,1999,2000,1,0,0,0,2000,2002,3,270,135,0,2001,1998,1,0,0,0,2001, - 2002,1,0,0,0,2002,2005,1,0,0,0,2003,2004,5,188,0,0,2004,2006,5,425, - 0,0,2005,2003,1,0,0,0,2005,2006,1,0,0,0,2006,2008,1,0,0,0,2007,2009, - 3,250,125,0,2008,2007,1,0,0,0,2008,2009,1,0,0,0,2009,2011,1,0,0, - 0,2010,2012,3,218,109,0,2011,2010,1,0,0,0,2011,2012,1,0,0,0,2012, - 179,1,0,0,0,2013,2014,5,101,0,0,2014,2016,5,155,0,0,2015,2017,3, - 40,20,0,2016,2015,1,0,0,0,2016,2017,1,0,0,0,2017,2018,1,0,0,0,2018, - 2019,3,926,463,0,2019,2020,5,223,0,0,2020,2021,3,660,330,0,2021, - 181,1,0,0,0,2022,2024,5,58,0,0,2023,2025,3,54,27,0,2024,2023,1,0, - 0,0,2024,2025,1,0,0,0,2025,2026,1,0,0,0,2026,2028,5,377,0,0,2027, - 2029,3,44,22,0,2028,2027,1,0,0,0,2028,2029,1,0,0,0,2029,2030,1,0, - 0,0,2030,2035,3,666,333,0,2031,2032,5,398,0,0,2032,2033,3,334,167, - 0,2033,2034,5,399,0,0,2034,2036,1,0,0,0,2035,2031,1,0,0,0,2035,2036, - 1,0,0,0,2036,2038,1,0,0,0,2037,2039,3,218,109,0,2038,2037,1,0,0, - 0,2038,2039,1,0,0,0,2039,2041,1,0,0,0,2040,2042,3,184,92,0,2041, - 2040,1,0,0,0,2041,2042,1,0,0,0,2042,2044,1,0,0,0,2043,2045,3,250, - 125,0,2044,2043,1,0,0,0,2044,2045,1,0,0,0,2045,2046,1,0,0,0,2046, - 2047,5,17,0,0,2047,2048,3,412,206,0,2048,183,1,0,0,0,2049,2050,5, - 237,0,0,2050,2056,5,223,0,0,2051,2052,5,398,0,0,2052,2057,3,280, - 140,0,2053,2054,5,315,0,0,2054,2055,5,398,0,0,2055,2057,3,226,113, - 0,2056,2051,1,0,0,0,2056,2053,1,0,0,0,2057,2058,1,0,0,0,2058,2059, - 5,399,0,0,2059,185,1,0,0,0,2060,2063,3,188,94,0,2061,2063,3,190, - 95,0,2062,2060,1,0,0,0,2062,2061,1,0,0,0,2063,187,1,0,0,0,2064,2065, - 5,42,0,0,2065,2066,5,223,0,0,2066,2067,5,398,0,0,2067,2068,3,280, - 140,0,2068,2069,5,399,0,0,2069,189,1,0,0,0,2070,2071,3,192,96,0, - 2071,2072,3,194,97,0,2072,191,1,0,0,0,2073,2074,5,98,0,0,2074,2075, - 5,223,0,0,2075,2076,5,398,0,0,2076,2077,3,280,140,0,2077,2078,5, - 399,0,0,2078,193,1,0,0,0,2079,2080,5,314,0,0,2080,2081,5,223,0,0, - 2081,2082,5,398,0,0,2082,2083,3,280,140,0,2083,2084,5,399,0,0,2084, - 195,1,0,0,0,2085,2086,5,101,0,0,2086,2088,5,377,0,0,2087,2089,3, - 40,20,0,2088,2087,1,0,0,0,2088,2089,1,0,0,0,2089,2090,1,0,0,0,2090, - 2091,3,664,332,0,2091,197,1,0,0,0,2092,2093,5,58,0,0,2093,2094,5, - 201,0,0,2094,2096,5,377,0,0,2095,2097,3,44,22,0,2096,2095,1,0,0, - 0,2096,2097,1,0,0,0,2097,2098,1,0,0,0,2098,2100,3,666,333,0,2099, - 2101,3,50,25,0,2100,2099,1,0,0,0,2100,2101,1,0,0,0,2101,2103,1,0, - 0,0,2102,2104,3,218,109,0,2103,2102,1,0,0,0,2103,2104,1,0,0,0,2104, - 2106,1,0,0,0,2105,2107,3,184,92,0,2106,2105,1,0,0,0,2106,2107,1, - 0,0,0,2107,2109,1,0,0,0,2108,2110,3,186,93,0,2109,2108,1,0,0,0,2109, - 2110,1,0,0,0,2110,2112,1,0,0,0,2111,2113,3,248,124,0,2112,2111,1, - 0,0,0,2112,2113,1,0,0,0,2113,2115,1,0,0,0,2114,2116,3,270,135,0, - 2115,2114,1,0,0,0,2115,2116,1,0,0,0,2116,2118,1,0,0,0,2117,2119, - 3,272,136,0,2118,2117,1,0,0,0,2118,2119,1,0,0,0,2119,2121,1,0,0, - 0,2120,2122,3,250,125,0,2121,2120,1,0,0,0,2121,2122,1,0,0,0,2122, - 2123,1,0,0,0,2123,2124,5,17,0,0,2124,2125,3,412,206,0,2125,199,1, - 0,0,0,2126,2127,5,101,0,0,2127,2128,5,201,0,0,2128,2130,5,377,0, - 0,2129,2131,3,40,20,0,2130,2129,1,0,0,0,2130,2131,1,0,0,0,2131,2132, - 1,0,0,0,2132,2133,3,664,332,0,2133,201,1,0,0,0,2134,2135,5,58,0, - 0,2135,2136,5,292,0,0,2136,2137,5,257,0,0,2137,2138,3,926,463,0, - 2138,2140,3,210,105,0,2139,2141,3,212,106,0,2140,2139,1,0,0,0,2140, - 2141,1,0,0,0,2141,2143,1,0,0,0,2142,2144,3,294,147,0,2143,2142,1, - 0,0,0,2143,2144,1,0,0,0,2144,2145,1,0,0,0,2145,2146,3,214,107,0, - 2146,203,1,0,0,0,2147,2148,5,101,0,0,2148,2149,5,292,0,0,2149,2150, - 5,257,0,0,2150,2151,3,926,463,0,2151,205,1,0,0,0,2152,2153,5,9,0, - 0,2153,2154,5,292,0,0,2154,2155,5,257,0,0,2155,2156,3,926,463,0, - 2156,2157,3,208,104,0,2157,207,1,0,0,0,2158,2164,3,210,105,0,2159, - 2164,3,212,106,0,2160,2164,3,294,147,0,2161,2164,3,214,107,0,2162, - 2164,5,115,0,0,2163,2158,1,0,0,0,2163,2159,1,0,0,0,2163,2160,1,0, - 0,0,2163,2161,1,0,0,0,2163,2162,1,0,0,0,2164,209,1,0,0,0,2165,2166, - 5,59,0,0,2166,2181,5,425,0,0,2167,2169,5,111,0,0,2168,2170,5,430, - 0,0,2169,2168,1,0,0,0,2169,2170,1,0,0,0,2170,2171,1,0,0,0,2171,2178, - 3,826,413,0,2172,2176,5,20,0,0,2173,2174,5,222,0,0,2174,2176,5,32, - 0,0,2175,2172,1,0,0,0,2175,2173,1,0,0,0,2176,2177,1,0,0,0,2177,2179, - 5,425,0,0,2178,2175,1,0,0,0,2178,2179,1,0,0,0,2179,2181,1,0,0,0, - 2180,2165,1,0,0,0,2180,2167,1,0,0,0,2181,211,1,0,0,0,2182,2183,5, - 116,0,0,2183,2184,5,17,0,0,2184,2185,5,425,0,0,2185,213,1,0,0,0, - 2186,2188,5,85,0,0,2187,2186,1,0,0,0,2187,2188,1,0,0,0,2188,2189, - 1,0,0,0,2189,2190,5,17,0,0,2190,2191,3,2,1,0,2191,215,1,0,0,0,2192, - 2195,3,926,463,0,2193,2195,5,425,0,0,2194,2192,1,0,0,0,2194,2193, - 1,0,0,0,2195,217,1,0,0,0,2196,2197,5,47,0,0,2197,2198,5,425,0,0, - 2198,219,1,0,0,0,2199,2200,5,237,0,0,2200,2209,5,32,0,0,2201,2204, - 5,398,0,0,2202,2205,3,222,111,0,2203,2205,3,224,112,0,2204,2202, - 1,0,0,0,2204,2203,1,0,0,0,2205,2210,1,0,0,0,2206,2207,5,315,0,0, - 2207,2208,5,398,0,0,2208,2210,3,226,113,0,2209,2201,1,0,0,0,2209, - 2206,1,0,0,0,2210,2211,1,0,0,0,2211,2212,5,399,0,0,2212,221,1,0, - 0,0,2213,2218,3,348,174,0,2214,2215,5,396,0,0,2215,2217,3,348,174, - 0,2216,2214,1,0,0,0,2217,2220,1,0,0,0,2218,2216,1,0,0,0,2218,2219, - 1,0,0,0,2219,223,1,0,0,0,2220,2218,1,0,0,0,2221,2226,3,282,141,0, - 2222,2223,5,396,0,0,2223,2225,3,282,141,0,2224,2222,1,0,0,0,2225, - 2228,1,0,0,0,2226,2224,1,0,0,0,2226,2227,1,0,0,0,2227,225,1,0,0, - 0,2228,2226,1,0,0,0,2229,2234,3,228,114,0,2230,2231,5,396,0,0,2231, - 2233,3,228,114,0,2232,2230,1,0,0,0,2233,2236,1,0,0,0,2234,2232,1, - 0,0,0,2234,2235,1,0,0,0,2235,227,1,0,0,0,2236,2234,1,0,0,0,2237, - 2238,3,230,115,0,2238,229,1,0,0,0,2239,2258,3,282,141,0,2240,2245, - 3,976,488,0,2241,2245,3,978,489,0,2242,2245,3,982,491,0,2243,2245, - 3,984,492,0,2244,2240,1,0,0,0,2244,2241,1,0,0,0,2244,2242,1,0,0, - 0,2244,2243,1,0,0,0,2245,2246,1,0,0,0,2246,2247,5,398,0,0,2247,2248, - 3,282,141,0,2248,2249,5,399,0,0,2249,2258,1,0,0,0,2250,2251,7,13, - 0,0,2251,2252,5,398,0,0,2252,2253,5,430,0,0,2253,2254,5,396,0,0, - 2254,2255,3,282,141,0,2255,2256,5,399,0,0,2256,2258,1,0,0,0,2257, - 2239,1,0,0,0,2257,2244,1,0,0,0,2257,2250,1,0,0,0,2258,231,1,0,0, - 0,2259,2260,5,42,0,0,2260,2261,5,32,0,0,2261,2262,5,398,0,0,2262, - 2263,3,280,140,0,2263,2270,5,399,0,0,2264,2265,5,314,0,0,2265,2266, - 5,32,0,0,2266,2267,5,398,0,0,2267,2268,3,288,144,0,2268,2269,5,399, - 0,0,2269,2271,1,0,0,0,2270,2264,1,0,0,0,2270,2271,1,0,0,0,2271,2272, - 1,0,0,0,2272,2273,5,166,0,0,2273,2274,5,430,0,0,2274,2275,5,31,0, - 0,2275,233,1,0,0,0,2276,2277,5,42,0,0,2277,2278,5,166,0,0,2278,2279, - 5,430,0,0,2279,2280,5,31,0,0,2280,235,1,0,0,0,2281,2282,5,309,0, - 0,2282,2283,5,32,0,0,2283,2284,5,398,0,0,2284,2285,3,280,140,0,2285, - 2286,5,399,0,0,2286,2287,5,223,0,0,2287,2288,5,398,0,0,2288,2289, - 3,316,158,0,2289,2291,5,399,0,0,2290,2292,3,52,26,0,2291,2290,1, - 0,0,0,2291,2292,1,0,0,0,2292,237,1,0,0,0,2293,2296,3,244,122,0,2294, - 2296,3,246,123,0,2295,2293,1,0,0,0,2295,2294,1,0,0,0,2296,239,1, - 0,0,0,2297,2298,5,265,0,0,2298,2299,5,425,0,0,2299,241,1,0,0,0,2300, - 2301,5,266,0,0,2301,2302,5,425,0,0,2302,243,1,0,0,0,2303,2304,5, - 290,0,0,2304,2305,5,137,0,0,2305,2306,5,300,0,0,2306,2310,5,425, - 0,0,2307,2308,5,386,0,0,2308,2309,5,301,0,0,2309,2311,3,252,126, - 0,2310,2307,1,0,0,0,2310,2311,1,0,0,0,2311,245,1,0,0,0,2312,2313, - 5,290,0,0,2313,2314,5,137,0,0,2314,2316,5,87,0,0,2315,2317,3,260, - 130,0,2316,2315,1,0,0,0,2316,2317,1,0,0,0,2317,2319,1,0,0,0,2318, - 2320,3,262,131,0,2319,2318,1,0,0,0,2319,2320,1,0,0,0,2320,2322,1, - 0,0,0,2321,2323,3,264,132,0,2322,2321,1,0,0,0,2322,2323,1,0,0,0, - 2323,2325,1,0,0,0,2324,2326,3,266,133,0,2325,2324,1,0,0,0,2325,2326, - 1,0,0,0,2326,2328,1,0,0,0,2327,2329,3,268,134,0,2328,2327,1,0,0, - 0,2328,2329,1,0,0,0,2329,247,1,0,0,0,2330,2333,3,246,123,0,2331, - 2333,3,244,122,0,2332,2330,1,0,0,0,2332,2331,1,0,0,0,2333,249,1, - 0,0,0,2334,2335,5,331,0,0,2335,2336,3,252,126,0,2336,251,1,0,0,0, - 2337,2338,5,398,0,0,2338,2339,3,254,127,0,2339,2340,5,399,0,0,2340, - 253,1,0,0,0,2341,2346,3,256,128,0,2342,2343,5,396,0,0,2343,2345, - 3,256,128,0,2344,2342,1,0,0,0,2345,2348,1,0,0,0,2346,2344,1,0,0, - 0,2346,2347,1,0,0,0,2347,2358,1,0,0,0,2348,2346,1,0,0,0,2349,2354, - 3,258,129,0,2350,2351,5,396,0,0,2351,2353,3,258,129,0,2352,2350, - 1,0,0,0,2353,2356,1,0,0,0,2354,2352,1,0,0,0,2354,2355,1,0,0,0,2355, - 2358,1,0,0,0,2356,2354,1,0,0,0,2357,2341,1,0,0,0,2357,2349,1,0,0, - 0,2358,255,1,0,0,0,2359,2360,5,425,0,0,2360,2361,5,404,0,0,2361, - 2362,5,425,0,0,2362,257,1,0,0,0,2363,2364,5,425,0,0,2364,259,1,0, - 0,0,2365,2366,5,127,0,0,2366,2367,5,333,0,0,2367,2368,5,32,0,0,2368, - 2372,5,425,0,0,2369,2370,5,110,0,0,2370,2371,5,32,0,0,2371,2373, - 5,425,0,0,2372,2369,1,0,0,0,2372,2373,1,0,0,0,2373,261,1,0,0,0,2374, - 2375,5,44,0,0,2375,2376,5,169,0,0,2376,2377,5,333,0,0,2377,2378, - 5,32,0,0,2378,2379,5,425,0,0,2379,263,1,0,0,0,2380,2381,5,197,0, - 0,2381,2382,5,174,0,0,2382,2383,5,333,0,0,2383,2384,5,32,0,0,2384, - 2385,5,425,0,0,2385,265,1,0,0,0,2386,2387,5,185,0,0,2387,2388,5, - 333,0,0,2388,2389,5,32,0,0,2389,2390,5,425,0,0,2390,267,1,0,0,0, - 2391,2392,5,218,0,0,2392,2393,5,85,0,0,2393,2394,5,17,0,0,2394,2395, - 5,425,0,0,2395,269,1,0,0,0,2396,2397,5,320,0,0,2397,2398,5,17,0, - 0,2398,2399,5,160,0,0,2399,2400,5,425,0,0,2400,2401,5,232,0,0,2401, - 2406,5,425,0,0,2402,2403,5,159,0,0,2403,2404,5,425,0,0,2404,2405, - 5,231,0,0,2405,2407,5,425,0,0,2406,2402,1,0,0,0,2406,2407,1,0,0, - 0,2407,2438,1,0,0,0,2408,2409,5,320,0,0,2409,2410,5,32,0,0,2410, - 2414,5,425,0,0,2411,2412,5,386,0,0,2412,2413,5,301,0,0,2413,2415, - 3,252,126,0,2414,2411,1,0,0,0,2414,2415,1,0,0,0,2415,2419,1,0,0, - 0,2416,2417,5,320,0,0,2417,2418,5,17,0,0,2418,2420,3,926,463,0,2419, - 2416,1,0,0,0,2419,2420,1,0,0,0,2420,2438,1,0,0,0,2421,2422,5,320, - 0,0,2422,2423,5,32,0,0,2423,2427,3,926,463,0,2424,2425,5,386,0,0, - 2425,2426,5,301,0,0,2426,2428,3,252,126,0,2427,2424,1,0,0,0,2427, - 2428,1,0,0,0,2428,2432,1,0,0,0,2429,2430,5,320,0,0,2430,2431,5,17, - 0,0,2431,2433,3,926,463,0,2432,2429,1,0,0,0,2432,2433,1,0,0,0,2433, - 2438,1,0,0,0,2434,2435,5,320,0,0,2435,2436,5,17,0,0,2436,2438,3, - 926,463,0,2437,2396,1,0,0,0,2437,2408,1,0,0,0,2437,2421,1,0,0,0, - 2437,2434,1,0,0,0,2438,271,1,0,0,0,2439,2440,5,188,0,0,2440,2441, - 5,425,0,0,2441,273,1,0,0,0,2442,2447,3,342,171,0,2443,2444,5,396, - 0,0,2444,2446,3,342,171,0,2445,2443,1,0,0,0,2446,2449,1,0,0,0,2447, - 2445,1,0,0,0,2447,2448,1,0,0,0,2448,275,1,0,0,0,2449,2447,1,0,0, - 0,2450,2455,3,344,172,0,2451,2452,5,396,0,0,2452,2454,3,344,172, - 0,2453,2451,1,0,0,0,2454,2457,1,0,0,0,2455,2453,1,0,0,0,2455,2456, - 1,0,0,0,2456,277,1,0,0,0,2457,2455,1,0,0,0,2458,2463,3,372,186,0, - 2459,2460,5,396,0,0,2460,2462,3,372,186,0,2461,2459,1,0,0,0,2462, - 2465,1,0,0,0,2463,2461,1,0,0,0,2463,2464,1,0,0,0,2464,279,1,0,0, - 0,2465,2463,1,0,0,0,2466,2471,3,282,141,0,2467,2468,5,396,0,0,2468, - 2470,3,282,141,0,2469,2467,1,0,0,0,2470,2473,1,0,0,0,2471,2469,1, - 0,0,0,2471,2472,1,0,0,0,2472,281,1,0,0,0,2473,2471,1,0,0,0,2474, - 2479,3,926,463,0,2475,2476,5,394,0,0,2476,2478,3,926,463,0,2477, - 2475,1,0,0,0,2478,2481,1,0,0,0,2479,2477,1,0,0,0,2479,2480,1,0,0, - 0,2480,283,1,0,0,0,2481,2479,1,0,0,0,2482,2483,3,926,463,0,2483, - 285,1,0,0,0,2484,2494,3,282,141,0,2485,2490,5,394,0,0,2486,2491, - 5,104,0,0,2487,2491,5,175,0,0,2488,2491,5,374,0,0,2489,2491,3,926, - 463,0,2490,2486,1,0,0,0,2490,2487,1,0,0,0,2490,2488,1,0,0,0,2490, - 2489,1,0,0,0,2491,2493,1,0,0,0,2492,2485,1,0,0,0,2493,2496,1,0,0, - 0,2494,2492,1,0,0,0,2494,2495,1,0,0,0,2495,287,1,0,0,0,2496,2494, - 1,0,0,0,2497,2502,3,332,166,0,2498,2499,5,396,0,0,2499,2501,3,332, - 166,0,2500,2498,1,0,0,0,2501,2504,1,0,0,0,2502,2500,1,0,0,0,2502, - 2503,1,0,0,0,2503,289,1,0,0,0,2504,2502,1,0,0,0,2505,2506,5,398, - 0,0,2506,2507,3,280,140,0,2507,2508,5,399,0,0,2508,291,1,0,0,0,2509, - 2511,3,294,147,0,2510,2512,3,296,148,0,2511,2510,1,0,0,0,2511,2512, - 1,0,0,0,2512,2515,1,0,0,0,2513,2515,3,298,149,0,2514,2509,1,0,0, - 0,2514,2513,1,0,0,0,2515,293,1,0,0,0,2516,2519,3,970,485,0,2517, - 2519,3,972,486,0,2518,2516,1,0,0,0,2518,2517,1,0,0,0,2519,295,1, - 0,0,0,2520,2521,7,14,0,0,2521,297,1,0,0,0,2522,2526,5,109,0,0,2523, - 2524,5,215,0,0,2524,2526,5,109,0,0,2525,2522,1,0,0,0,2525,2523,1, - 0,0,0,2526,299,1,0,0,0,2527,2528,7,15,0,0,2528,301,1,0,0,0,2529, - 2530,5,55,0,0,2530,2532,3,926,463,0,2531,2529,1,0,0,0,2531,2532, - 1,0,0,0,2532,2533,1,0,0,0,2533,2535,3,306,153,0,2534,2536,3,368, - 184,0,2535,2534,1,0,0,0,2535,2536,1,0,0,0,2536,303,1,0,0,0,2537, - 2538,5,55,0,0,2538,2539,3,926,463,0,2539,2541,3,306,153,0,2540,2542, - 3,370,185,0,2541,2540,1,0,0,0,2541,2542,1,0,0,0,2542,305,1,0,0,0, - 2543,2546,3,308,154,0,2544,2546,3,310,155,0,2545,2543,1,0,0,0,2545, - 2544,1,0,0,0,2546,307,1,0,0,0,2547,2548,3,366,183,0,2548,2549,3, - 290,145,0,2549,309,1,0,0,0,2550,2551,5,40,0,0,2551,2552,5,398,0, - 0,2552,2553,3,828,414,0,2553,2554,5,399,0,0,2554,311,1,0,0,0,2555, - 2556,5,55,0,0,2556,2558,3,926,463,0,2557,2555,1,0,0,0,2557,2558, - 1,0,0,0,2558,2559,1,0,0,0,2559,2560,5,136,0,0,2560,2561,5,173,0, - 0,2561,2562,3,290,145,0,2562,2563,5,268,0,0,2563,2564,3,660,330, - 0,2564,2566,3,290,145,0,2565,2567,3,368,184,0,2566,2565,1,0,0,0, - 2566,2567,1,0,0,0,2567,313,1,0,0,0,2568,2569,5,55,0,0,2569,2570, - 3,926,463,0,2570,2571,5,136,0,0,2571,2572,5,173,0,0,2572,2573,3, - 290,145,0,2573,2574,5,268,0,0,2574,2575,3,660,330,0,2575,2577,3, - 290,145,0,2576,2578,3,370,185,0,2577,2576,1,0,0,0,2577,2578,1,0, - 0,0,2578,315,1,0,0,0,2579,2582,3,322,161,0,2580,2582,3,318,159,0, - 2581,2579,1,0,0,0,2581,2580,1,0,0,0,2582,317,1,0,0,0,2583,2588,3, - 320,160,0,2584,2585,5,396,0,0,2585,2587,3,320,160,0,2586,2584,1, - 0,0,0,2587,2590,1,0,0,0,2588,2586,1,0,0,0,2588,2589,1,0,0,0,2589, - 319,1,0,0,0,2590,2588,1,0,0,0,2591,2592,5,398,0,0,2592,2593,3,322, - 161,0,2593,2594,5,399,0,0,2594,321,1,0,0,0,2595,2600,3,324,162,0, - 2596,2597,5,396,0,0,2597,2599,3,324,162,0,2598,2596,1,0,0,0,2599, - 2602,1,0,0,0,2600,2598,1,0,0,0,2600,2601,1,0,0,0,2601,323,1,0,0, - 0,2602,2600,1,0,0,0,2603,2604,3,804,402,0,2604,325,1,0,0,0,2605, - 2608,3,324,162,0,2606,2608,3,320,160,0,2607,2605,1,0,0,0,2607,2606, - 1,0,0,0,2608,327,1,0,0,0,2609,2610,7,16,0,0,2610,329,1,0,0,0,2611, - 2612,5,219,0,0,2612,2613,7,17,0,0,2613,331,1,0,0,0,2614,2616,3,282, - 141,0,2615,2617,3,328,164,0,2616,2615,1,0,0,0,2616,2617,1,0,0,0, - 2617,2619,1,0,0,0,2618,2620,3,330,165,0,2619,2618,1,0,0,0,2619,2620, - 1,0,0,0,2620,333,1,0,0,0,2621,2626,3,336,168,0,2622,2623,5,396,0, - 0,2623,2625,3,336,168,0,2624,2622,1,0,0,0,2625,2628,1,0,0,0,2626, - 2624,1,0,0,0,2626,2627,1,0,0,0,2627,335,1,0,0,0,2628,2626,1,0,0, - 0,2629,2632,3,284,142,0,2630,2631,5,47,0,0,2631,2633,5,425,0,0,2632, - 2630,1,0,0,0,2632,2633,1,0,0,0,2633,337,1,0,0,0,2634,2635,7,16,0, - 0,2635,339,1,0,0,0,2636,2639,3,282,141,0,2637,2639,3,828,414,0,2638, - 2636,1,0,0,0,2638,2637,1,0,0,0,2639,2641,1,0,0,0,2640,2642,3,338, - 169,0,2641,2640,1,0,0,0,2641,2642,1,0,0,0,2642,2644,1,0,0,0,2643, - 2645,3,330,165,0,2644,2643,1,0,0,0,2644,2645,1,0,0,0,2645,341,1, - 0,0,0,2646,2647,3,284,142,0,2647,2650,3,374,187,0,2648,2649,5,47, - 0,0,2649,2651,5,425,0,0,2650,2648,1,0,0,0,2650,2651,1,0,0,0,2651, - 343,1,0,0,0,2652,2655,3,346,173,0,2653,2655,3,348,174,0,2654,2652, - 1,0,0,0,2654,2653,1,0,0,0,2655,345,1,0,0,0,2656,2659,3,312,156,0, - 2657,2659,3,302,151,0,2658,2656,1,0,0,0,2658,2657,1,0,0,0,2659,347, - 1,0,0,0,2660,2661,3,284,142,0,2661,2663,3,374,187,0,2662,2664,3, - 350,175,0,2663,2662,1,0,0,0,2663,2664,1,0,0,0,2664,2667,1,0,0,0, - 2665,2666,5,47,0,0,2666,2668,5,425,0,0,2667,2665,1,0,0,0,2667,2668, - 1,0,0,0,2668,349,1,0,0,0,2669,2672,3,352,176,0,2670,2672,3,354,177, - 0,2671,2669,1,0,0,0,2671,2670,1,0,0,0,2672,351,1,0,0,0,2673,2674, - 5,55,0,0,2674,2676,3,926,463,0,2675,2673,1,0,0,0,2675,2676,1,0,0, - 0,2676,2677,1,0,0,0,2677,2678,5,268,0,0,2678,2679,3,660,330,0,2679, - 2680,5,398,0,0,2680,2681,3,282,141,0,2681,2683,5,399,0,0,2682,2684, - 3,368,184,0,2683,2682,1,0,0,0,2683,2684,1,0,0,0,2684,353,1,0,0,0, - 2685,2686,5,55,0,0,2686,2688,3,926,463,0,2687,2685,1,0,0,0,2687, - 2688,1,0,0,0,2688,2689,1,0,0,0,2689,2691,3,362,181,0,2690,2692,3, - 368,184,0,2691,2690,1,0,0,0,2691,2692,1,0,0,0,2692,355,1,0,0,0,2693, - 2696,3,358,179,0,2694,2696,3,360,180,0,2695,2693,1,0,0,0,2695,2694, - 1,0,0,0,2696,357,1,0,0,0,2697,2698,5,55,0,0,2698,2700,3,926,463, - 0,2699,2697,1,0,0,0,2699,2700,1,0,0,0,2700,2701,1,0,0,0,2701,2702, - 5,268,0,0,2702,2703,3,660,330,0,2703,2704,5,398,0,0,2704,2705,3, - 282,141,0,2705,2707,5,399,0,0,2706,2708,3,370,185,0,2707,2706,1, - 0,0,0,2707,2708,1,0,0,0,2708,359,1,0,0,0,2709,2710,5,55,0,0,2710, - 2712,3,926,463,0,2711,2709,1,0,0,0,2711,2712,1,0,0,0,2712,2713,1, - 0,0,0,2713,2715,3,362,181,0,2714,2716,3,370,185,0,2715,2714,1,0, - 0,0,2715,2716,1,0,0,0,2716,361,1,0,0,0,2717,2718,5,215,0,0,2718, - 2724,5,218,0,0,2719,2720,5,83,0,0,2720,2724,3,364,182,0,2721,2724, - 3,310,155,0,2722,2724,3,366,183,0,2723,2717,1,0,0,0,2723,2719,1, - 0,0,0,2723,2721,1,0,0,0,2723,2722,1,0,0,0,2724,363,1,0,0,0,2725, - 2729,3,804,402,0,2726,2729,3,776,388,0,2727,2729,3,790,395,0,2728, - 2725,1,0,0,0,2728,2726,1,0,0,0,2728,2727,1,0,0,0,2729,365,1,0,0, - 0,2730,2731,5,250,0,0,2731,2734,5,173,0,0,2732,2734,5,357,0,0,2733, - 2730,1,0,0,0,2733,2732,1,0,0,0,2734,367,1,0,0,0,2735,2737,3,292, - 146,0,2736,2738,3,300,150,0,2737,2736,1,0,0,0,2737,2738,1,0,0,0, - 2738,369,1,0,0,0,2739,2741,3,292,146,0,2740,2742,3,300,150,0,2741, - 2740,1,0,0,0,2741,2742,1,0,0,0,2742,371,1,0,0,0,2743,2744,3,284, - 142,0,2744,2745,5,395,0,0,2745,2748,3,374,187,0,2746,2747,5,47,0, - 0,2747,2749,5,425,0,0,2748,2746,1,0,0,0,2748,2749,1,0,0,0,2749,373, - 1,0,0,0,2750,2751,3,378,189,0,2751,375,1,0,0,0,2752,2757,3,374,187, - 0,2753,2754,5,396,0,0,2754,2756,3,374,187,0,2755,2753,1,0,0,0,2756, - 2759,1,0,0,0,2757,2755,1,0,0,0,2757,2758,1,0,0,0,2758,377,1,0,0, - 0,2759,2757,1,0,0,0,2760,2766,3,380,190,0,2761,2766,3,382,191,0, - 2762,2766,3,384,192,0,2763,2766,3,386,193,0,2764,2766,3,388,194, - 0,2765,2760,1,0,0,0,2765,2761,1,0,0,0,2765,2762,1,0,0,0,2765,2763, - 1,0,0,0,2765,2764,1,0,0,0,2766,379,1,0,0,0,2767,2805,5,339,0,0,2768, - 2805,5,310,0,0,2769,2805,5,162,0,0,2770,2805,5,163,0,0,2771,2805, - 5,26,0,0,2772,2805,5,28,0,0,2773,2805,5,131,0,0,2774,2805,5,263, - 0,0,2775,2777,5,100,0,0,2776,2778,5,247,0,0,2777,2776,1,0,0,0,2777, - 2778,1,0,0,0,2778,2805,1,0,0,0,2779,2805,5,71,0,0,2780,2805,5,72, - 0,0,2781,2805,5,336,0,0,2782,2805,5,337,0,0,2783,2784,5,336,0,0, - 2784,2785,5,386,0,0,2785,2786,5,187,0,0,2786,2787,5,335,0,0,2787, - 2805,5,393,0,0,2788,2805,5,322,0,0,2789,2805,5,27,0,0,2790,2798, - 3,990,495,0,2791,2792,5,398,0,0,2792,2795,5,430,0,0,2793,2794,5, - 396,0,0,2794,2796,5,430,0,0,2795,2793,1,0,0,0,2795,2796,1,0,0,0, - 2796,2797,1,0,0,0,2797,2799,5,399,0,0,2798,2791,1,0,0,0,2798,2799, - 1,0,0,0,2799,2805,1,0,0,0,2800,2801,7,18,0,0,2801,2802,5,398,0,0, - 2802,2803,5,430,0,0,2803,2805,5,399,0,0,2804,2767,1,0,0,0,2804,2768, - 1,0,0,0,2804,2769,1,0,0,0,2804,2770,1,0,0,0,2804,2771,1,0,0,0,2804, - 2772,1,0,0,0,2804,2773,1,0,0,0,2804,2774,1,0,0,0,2804,2775,1,0,0, - 0,2804,2779,1,0,0,0,2804,2780,1,0,0,0,2804,2781,1,0,0,0,2804,2782, - 1,0,0,0,2804,2783,1,0,0,0,2804,2788,1,0,0,0,2804,2789,1,0,0,0,2804, - 2790,1,0,0,0,2804,2800,1,0,0,0,2805,381,1,0,0,0,2806,2807,5,16,0, - 0,2807,2808,5,408,0,0,2808,2809,3,378,189,0,2809,2810,5,410,0,0, - 2810,383,1,0,0,0,2811,2812,5,323,0,0,2812,2813,5,408,0,0,2813,2814, - 3,278,139,0,2814,2815,5,410,0,0,2815,385,1,0,0,0,2816,2817,5,197, - 0,0,2817,2818,5,408,0,0,2818,2819,3,380,190,0,2819,2820,5,396,0, - 0,2820,2821,3,378,189,0,2821,2822,5,410,0,0,2822,387,1,0,0,0,2823, - 2824,5,356,0,0,2824,2825,5,408,0,0,2825,2826,3,376,188,0,2826,2827, - 5,410,0,0,2827,389,1,0,0,0,2828,2830,7,19,0,0,2829,2831,7,20,0,0, - 2830,2829,1,0,0,0,2830,2831,1,0,0,0,2831,391,1,0,0,0,2832,2834,3, - 396,198,0,2833,2832,1,0,0,0,2833,2834,1,0,0,0,2834,2835,1,0,0,0, - 2835,2836,3,394,197,0,2836,393,1,0,0,0,2837,2840,3,400,200,0,2838, - 2840,3,404,202,0,2839,2837,1,0,0,0,2839,2838,1,0,0,0,2840,395,1, - 0,0,0,2841,2842,5,386,0,0,2842,2847,3,398,199,0,2843,2844,5,396, - 0,0,2844,2846,3,398,199,0,2845,2843,1,0,0,0,2846,2849,1,0,0,0,2847, - 2845,1,0,0,0,2847,2848,1,0,0,0,2848,397,1,0,0,0,2849,2847,1,0,0, - 0,2850,2855,3,926,463,0,2851,2852,5,398,0,0,2852,2853,3,280,140, - 0,2853,2854,5,399,0,0,2854,2856,1,0,0,0,2855,2851,1,0,0,0,2855,2856, - 1,0,0,0,2856,2857,1,0,0,0,2857,2858,5,17,0,0,2858,2859,5,398,0,0, - 2859,2860,3,392,196,0,2860,2861,5,399,0,0,2861,399,1,0,0,0,2862, - 2868,3,402,201,0,2863,2864,3,390,195,0,2864,2865,3,402,201,0,2865, - 2867,1,0,0,0,2866,2863,1,0,0,0,2867,2870,1,0,0,0,2868,2866,1,0,0, - 0,2868,2869,1,0,0,0,2869,401,1,0,0,0,2870,2868,1,0,0,0,2871,2873, - 3,620,310,0,2872,2874,3,414,207,0,2873,2872,1,0,0,0,2874,2875,1, - 0,0,0,2875,2873,1,0,0,0,2875,2876,1,0,0,0,2876,403,1,0,0,0,2877, - 2878,3,416,208,0,2878,2879,3,408,204,0,2879,2882,1,0,0,0,2880,2882, - 3,408,204,0,2881,2877,1,0,0,0,2881,2880,1,0,0,0,2882,405,1,0,0,0, - 2883,2885,3,692,346,0,2884,2886,3,620,310,0,2885,2884,1,0,0,0,2885, - 2886,1,0,0,0,2886,2888,1,0,0,0,2887,2889,3,676,338,0,2888,2887,1, - 0,0,0,2888,2889,1,0,0,0,2889,2891,1,0,0,0,2890,2892,3,724,362,0, - 2891,2890,1,0,0,0,2891,2892,1,0,0,0,2892,2894,1,0,0,0,2893,2895, - 3,740,370,0,2894,2893,1,0,0,0,2894,2895,1,0,0,0,2895,2897,1,0,0, - 0,2896,2898,3,708,354,0,2897,2896,1,0,0,0,2897,2898,1,0,0,0,2898, - 2900,1,0,0,0,2899,2901,3,742,371,0,2900,2899,1,0,0,0,2900,2901,1, - 0,0,0,2901,2908,1,0,0,0,2902,2903,5,398,0,0,2903,2904,3,408,204, - 0,2904,2905,5,399,0,0,2905,2908,1,0,0,0,2906,2908,3,680,340,0,2907, - 2883,1,0,0,0,2907,2902,1,0,0,0,2907,2906,1,0,0,0,2908,407,1,0,0, - 0,2909,2911,3,406,203,0,2910,2912,3,410,205,0,2911,2910,1,0,0,0, - 2911,2912,1,0,0,0,2912,2914,1,0,0,0,2913,2915,3,764,382,0,2914,2913, - 1,0,0,0,2914,2915,1,0,0,0,2915,2917,1,0,0,0,2916,2918,3,766,383, + 1,238,3,238,3261,8,238,1,238,1,238,1,238,1,238,3,238,3267,8,238, + 1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239, + 1,239,1,239,1,239,1,239,3,239,3284,8,239,1,240,1,240,1,240,1,240, + 1,240,1,240,1,241,1,241,1,241,1,241,1,241,3,241,3297,8,241,1,242, + 1,242,3,242,3301,8,242,1,243,1,243,3,243,3305,8,243,1,244,1,244, + 1,245,1,245,1,245,3,245,3312,8,245,1,246,1,246,1,246,1,246,1,246, + 1,247,1,247,1,247,1,247,1,247,1,248,1,248,1,248,1,248,1,248,1,249, + 1,249,1,249,1,249,1,249,1,250,1,250,1,250,1,250,1,251,1,251,3,251, + 3340,8,251,1,251,1,251,1,251,1,251,1,251,3,251,3347,8,251,1,252, + 1,252,1,252,3,252,3352,8,252,1,253,1,253,1,253,3,253,3357,8,253, + 1,254,1,254,1,254,3,254,3362,8,254,1,254,1,254,1,254,3,254,3367, + 8,254,1,255,1,255,1,255,1,255,1,256,1,256,3,256,3375,8,256,1,256, + 1,256,1,256,1,256,3,256,3381,8,256,1,256,1,256,3,256,3385,8,256, + 1,256,3,256,3388,8,256,1,256,3,256,3391,8,256,1,257,1,257,1,257, + 1,257,3,257,3397,8,257,1,257,1,257,1,257,1,257,1,257,3,257,3404, + 8,257,1,258,1,258,1,258,1,258,1,258,1,259,1,259,1,259,3,259,3414, + 8,259,1,260,1,260,3,260,3418,8,260,1,260,4,260,3421,8,260,11,260, + 12,260,3422,1,261,1,261,3,261,3427,8,261,1,262,1,262,5,262,3431, + 8,262,10,262,12,262,3434,9,262,1,263,1,263,5,263,3438,8,263,10,263, + 12,263,3441,9,263,1,264,1,264,5,264,3445,8,264,10,264,12,264,3448, + 9,264,1,265,1,265,1,265,1,266,1,266,1,266,1,267,1,267,3,267,3458, + 8,267,1,267,1,267,1,267,1,267,1,267,5,267,3465,8,267,10,267,12,267, + 3468,9,267,1,267,3,267,3471,8,267,1,267,3,267,3474,8,267,1,267,3, + 267,3477,8,267,1,268,1,268,1,268,1,268,1,268,1,268,3,268,3485,8, + 268,1,268,3,268,3488,8,268,1,269,1,269,1,269,1,269,1,269,1,269,3, + 269,3496,8,269,1,269,3,269,3499,8,269,1,270,1,270,1,270,1,270,1, + 270,1,270,3,270,3507,8,270,1,270,1,270,3,270,3511,8,270,1,270,1, + 270,1,270,3,270,3516,8,270,1,271,1,271,3,271,3520,8,271,1,272,1, + 272,1,272,1,272,1,273,1,273,1,273,3,273,3529,8,273,1,274,1,274,1, + 274,1,274,1,274,1,275,1,275,1,275,1,275,1,276,1,276,1,276,5,276, + 3543,8,276,10,276,12,276,3546,9,276,1,277,1,277,1,277,1,277,1,278, + 1,278,1,278,1,278,1,279,1,279,1,279,1,279,3,279,3560,8,279,3,279, + 3562,8,279,1,280,1,280,1,280,1,280,1,280,1,280,1,281,1,281,1,281, + 1,281,1,282,1,282,1,282,1,282,3,282,3578,8,282,1,282,1,282,1,282, + 1,282,1,282,3,282,3585,8,282,1,283,1,283,1,284,1,284,1,284,1,284, + 1,285,1,285,1,285,1,286,1,286,1,286,1,287,1,287,1,287,3,287,3602, + 8,287,1,287,3,287,3605,8,287,1,287,3,287,3608,8,287,1,287,3,287, + 3611,8,287,1,287,1,287,1,287,1,287,3,287,3617,8,287,1,288,1,288, + 1,288,1,288,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,290,1,290, + 1,290,1,290,1,290,1,290,1,290,1,290,1,290,1,290,3,290,3640,8,290, + 1,290,1,290,1,291,1,291,1,291,1,291,3,291,3648,8,291,1,291,1,291, + 1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,3,292, + 3662,8,292,1,292,3,292,3665,8,292,1,293,1,293,1,293,3,293,3670,8, + 293,1,294,1,294,1,294,1,294,1,294,1,295,1,295,1,295,1,295,1,295, + 1,296,1,296,1,296,1,296,1,296,1,297,1,297,1,297,1,297,1,297,1,297, + 1,297,1,297,1,297,3,297,3696,8,297,1,298,1,298,3,298,3700,8,298, + 1,298,3,298,3703,8,298,1,298,3,298,3706,8,298,1,298,1,298,3,298, + 3710,8,298,1,298,1,298,1,298,3,298,3715,8,298,1,298,3,298,3718,8, + 298,1,298,3,298,3721,8,298,1,298,3,298,3724,8,298,1,298,3,298,3727, + 8,298,1,298,1,298,1,298,1,298,3,298,3733,8,298,1,298,3,298,3736, + 8,298,1,298,3,298,3739,8,298,1,298,3,298,3742,8,298,1,298,3,298, + 3745,8,298,1,298,3,298,3748,8,298,1,298,3,298,3751,8,298,1,298,3, + 298,3754,8,298,1,298,3,298,3757,8,298,1,298,1,298,3,298,3761,8,298, + 3,298,3763,8,298,1,298,1,298,1,298,1,298,3,298,3769,8,298,1,298, + 1,298,1,298,3,298,3774,8,298,1,298,3,298,3777,8,298,1,298,3,298, + 3780,8,298,1,298,3,298,3783,8,298,1,298,1,298,1,298,1,298,3,298, + 3789,8,298,1,298,3,298,3792,8,298,1,298,3,298,3795,8,298,1,298,3, + 298,3798,8,298,1,298,3,298,3801,8,298,1,298,3,298,3804,8,298,1,298, + 3,298,3807,8,298,1,298,3,298,3810,8,298,1,298,3,298,3813,8,298,1, + 298,1,298,3,298,3817,8,298,3,298,3819,8,298,3,298,3821,8,298,1,299, + 1,299,1,299,3,299,3826,8,299,1,299,1,299,3,299,3830,8,299,1,299, + 3,299,3833,8,299,1,299,3,299,3836,8,299,1,299,1,299,1,299,3,299, + 3841,8,299,1,300,1,300,1,300,1,301,1,301,1,301,1,302,1,302,1,302, + 1,303,1,303,1,303,1,303,1,304,1,304,1,304,3,304,3859,8,304,1,304, + 1,304,1,305,1,305,1,305,5,305,3866,8,305,10,305,12,305,3869,9,305, + 1,305,1,305,1,306,1,306,1,307,1,307,1,307,5,307,3878,8,307,10,307, + 12,307,3881,9,307,1,308,1,308,1,308,5,308,3886,8,308,10,308,12,308, + 3889,9,308,1,309,1,309,1,309,1,310,1,310,1,310,1,310,4,310,3898, + 8,310,11,310,12,310,3899,1,310,3,310,3903,8,310,1,311,1,311,5,311, + 3907,8,311,10,311,12,311,3910,9,311,1,311,1,311,5,311,3914,8,311, + 10,311,12,311,3917,9,311,1,311,1,311,5,311,3921,8,311,10,311,12, + 311,3924,9,311,1,311,1,311,5,311,3928,8,311,10,311,12,311,3931,9, + 311,1,311,1,311,1,311,1,311,3,311,3937,8,311,1,312,1,312,1,312,1, + 312,1,312,1,312,1,312,3,312,3946,8,312,5,312,3948,8,312,10,312,12, + 312,3951,9,312,1,313,1,313,1,313,1,313,3,313,3957,8,313,1,313,5, + 313,3960,8,313,10,313,12,313,3963,9,313,1,314,3,314,3966,8,314,1, + 314,1,314,1,314,1,315,1,315,1,315,1,315,1,316,1,316,1,317,1,317, + 1,317,1,317,1,317,3,317,3982,8,317,1,317,1,317,3,317,3986,8,317, + 3,317,3988,8,317,1,317,3,317,3991,8,317,1,318,1,318,1,318,1,318, + 1,318,1,318,1,318,1,318,1,318,5,318,4002,8,318,10,318,12,318,4005, + 9,318,3,318,4007,8,318,1,318,3,318,4010,8,318,1,318,1,318,1,318, + 1,318,1,318,1,318,1,318,1,318,5,318,4020,8,318,10,318,12,318,4023, + 9,318,3,318,4025,8,318,1,318,1,318,1,318,1,318,1,318,3,318,4032, + 8,318,1,318,1,318,1,318,1,318,1,318,5,318,4039,8,318,10,318,12,318, + 4042,9,318,1,318,1,318,3,318,4046,8,318,3,318,4048,8,318,3,318,4050, + 8,318,1,319,1,319,1,320,1,320,1,320,1,320,1,320,1,320,1,320,1,320, + 1,320,1,320,1,320,5,320,4065,8,320,10,320,12,320,4068,9,320,3,320, + 4070,8,320,1,320,1,320,1,321,1,321,1,321,1,321,1,321,3,321,4079, + 8,321,1,321,1,321,1,322,1,322,3,322,4085,8,322,1,323,1,323,3,323, + 4089,8,323,1,323,3,323,4092,8,323,1,323,3,323,4095,8,323,1,323,3, + 323,4098,8,323,1,323,3,323,4101,8,323,1,324,1,324,1,324,1,324,1, + 324,1,324,1,324,1,324,1,324,1,324,3,324,4113,8,324,1,325,1,325,3, + 325,4117,8,325,1,325,3,325,4120,8,325,1,325,3,325,4123,8,325,1,326, + 1,326,1,327,1,327,1,328,1,328,3,328,4131,8,328,1,329,1,329,1,329, + 1,329,1,329,3,329,4138,8,329,1,329,3,329,4141,8,329,1,330,1,330, + 1,330,1,330,1,330,3,330,4148,8,330,1,330,3,330,4151,8,330,1,331, + 1,331,1,331,3,331,4156,8,331,1,331,1,331,1,332,1,332,1,332,3,332, + 4163,8,332,1,332,1,332,1,333,1,333,1,333,1,333,3,333,4171,8,333, + 1,333,1,333,1,334,1,334,3,334,4177,8,334,1,334,1,334,1,334,3,334, + 4182,8,334,1,334,1,334,3,334,4186,8,334,1,335,1,335,1,335,3,335, + 4191,8,335,1,336,1,336,1,336,1,336,1,336,3,336,4198,8,336,1,336, + 1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336,5,336,4210, + 8,336,10,336,12,336,4213,9,336,3,336,4215,8,336,1,336,1,336,3,336, + 4219,8,336,1,337,1,337,1,337,1,338,1,338,1,339,1,339,1,340,1,340, + 1,340,1,341,1,341,1,341,5,341,4234,8,341,10,341,12,341,4237,9,341, + 1,341,1,341,1,341,5,341,4242,8,341,10,341,12,341,4245,9,341,3,341, + 4247,8,341,1,342,1,342,1,343,1,343,1,343,1,343,1,344,1,344,1,344, + 1,344,1,344,3,344,4260,8,344,1,344,1,344,1,344,1,344,1,344,5,344, + 4267,8,344,10,344,12,344,4270,9,344,3,344,4272,8,344,1,344,1,344, + 1,345,1,345,3,345,4278,8,345,1,345,3,345,4281,8,345,1,345,1,345, + 1,345,3,345,4286,8,345,1,345,3,345,4289,8,345,1,346,1,346,1,347, + 1,347,1,347,5,347,4296,8,347,10,347,12,347,4299,9,347,1,348,1,348, + 1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,3,348,4312, + 8,348,1,348,1,348,1,348,1,348,3,348,4318,8,348,3,348,4320,8,348, + 1,348,1,348,1,348,1,349,1,349,1,349,3,349,4328,8,349,1,349,3,349, + 4331,8,349,1,349,1,349,1,349,1,349,1,349,1,349,5,349,4339,8,349, + 10,349,12,349,4342,9,349,1,349,1,349,3,349,4346,8,349,3,349,4348, + 8,349,1,350,1,350,1,350,1,350,1,350,1,350,1,350,1,350,1,350,1,350, + 3,350,4360,8,350,1,350,1,350,1,350,1,350,3,350,4366,8,350,3,350, + 4368,8,350,1,350,1,350,1,350,1,351,1,351,3,351,4375,8,351,1,352, + 1,352,1,352,5,352,4380,8,352,10,352,12,352,4383,9,352,1,353,1,353, + 1,353,1,353,5,353,4389,8,353,10,353,12,353,4392,9,353,1,354,1,354, + 1,354,1,354,1,355,1,355,1,355,3,355,4401,8,355,1,355,3,355,4404, + 8,355,1,355,3,355,4407,8,355,1,355,3,355,4410,8,355,1,356,1,356, + 3,356,4414,8,356,1,357,1,357,1,357,1,357,1,357,1,357,1,357,3,357, + 4423,8,357,1,358,1,358,1,358,1,358,1,358,1,358,1,358,3,358,4432, + 8,358,1,359,1,359,1,359,1,359,1,359,1,359,3,359,4440,8,359,1,360, + 1,360,1,360,1,360,3,360,4446,8,360,1,361,1,361,1,361,1,361,1,362, + 1,362,1,362,1,362,3,362,4456,8,362,1,363,1,363,1,363,1,364,1,364, + 3,364,4463,8,364,1,364,1,364,1,364,1,364,5,364,4469,8,364,10,364, + 12,364,4472,9,364,1,364,1,364,1,365,1,365,1,365,1,365,1,365,3,365, + 4481,8,365,1,365,1,365,1,365,1,365,1,365,1,365,5,365,4489,8,365, + 10,365,12,365,4492,9,365,1,365,1,365,3,365,4496,8,365,1,366,1,366, + 3,366,4500,8,366,1,367,1,367,3,367,4504,8,367,1,367,1,367,5,367, + 4508,8,367,10,367,12,367,4511,9,367,1,367,1,367,1,368,1,368,1,369, + 1,369,1,369,1,370,1,370,1,370,1,371,1,371,1,372,1,372,1,372,1,372, + 1,373,1,373,3,373,4531,8,373,1,374,1,374,4,374,4535,8,374,11,374, + 12,374,4536,1,375,1,375,3,375,4541,8,375,1,376,1,376,3,376,4545, + 8,376,1,376,3,376,4548,8,376,1,376,1,376,5,376,4552,8,376,10,376, + 12,376,4555,9,376,1,377,1,377,3,377,4559,8,377,1,377,3,377,4562, + 8,377,1,378,1,378,3,378,4566,8,378,1,379,1,379,1,379,1,379,5,379, + 4572,8,379,10,379,12,379,4575,9,379,1,379,1,379,1,380,1,380,1,380, + 5,380,4582,8,380,10,380,12,380,4585,9,380,1,381,1,381,1,381,1,381, + 1,381,5,381,4592,8,381,10,381,12,381,4595,9,381,1,382,1,382,1,382, + 1,382,1,383,1,383,1,383,1,383,1,384,1,384,1,384,1,384,1,385,1,385, + 1,385,1,385,3,385,4613,8,385,1,386,1,386,1,386,1,386,1,386,3,386, + 4620,8,386,1,386,3,386,4623,8,386,1,386,1,386,1,386,1,386,1,387, + 1,387,1,387,1,387,1,387,3,387,4634,8,387,1,387,1,387,1,387,5,387, + 4639,8,387,10,387,12,387,4642,9,387,3,387,4644,8,387,3,387,4646, + 8,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,3,387, + 4657,8,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,3,387, + 4667,8,387,3,387,4669,8,387,1,388,1,388,1,388,1,388,3,388,4675,8, + 388,1,389,1,389,1,390,1,390,3,390,4681,8,390,1,391,1,391,3,391,4685, + 8,391,1,392,1,392,1,393,1,393,3,393,4691,8,393,1,394,1,394,1,394, + 1,394,1,394,1,394,1,394,3,394,4700,8,394,1,394,1,394,1,395,1,395, + 1,395,1,395,1,395,1,395,1,395,4,395,4711,8,395,11,395,12,395,4712, + 1,395,1,395,3,395,4717,8,395,1,395,1,395,1,396,1,396,1,396,1,396, + 1,396,1,396,4,396,4727,8,396,11,396,12,396,4728,1,396,1,396,3,396, + 4733,8,396,1,396,1,396,1,397,1,397,1,397,1,397,1,397,3,397,4742, + 8,397,1,397,1,397,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398, + 3,398,4754,8,398,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,400, + 1,400,1,400,1,400,1,400,1,400,1,400,1,400,3,400,4771,8,400,1,401, + 1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401, + 1,401,3,401,4786,8,401,1,402,1,402,1,403,1,403,1,404,1,404,4,404, + 4794,8,404,11,404,12,404,4795,1,405,1,405,1,405,1,406,1,406,1,406, + 3,406,4804,8,406,1,407,1,407,1,407,3,407,4809,8,407,1,408,1,408, + 1,408,1,409,1,409,1,410,1,410,1,410,1,411,1,411,1,411,1,411,1,411, + 1,411,1,411,1,411,1,411,1,411,1,411,3,411,4830,8,411,1,411,1,411, + 3,411,4834,8,411,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412, + 1,412,1,412,1,412,1,412,1,412,1,412,3,412,4850,8,412,1,413,1,413, + 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, + 3,414,4865,8,414,1,415,1,415,1,415,1,415,1,415,1,415,1,415,5,415, + 4874,8,415,10,415,12,415,4877,9,415,1,416,1,416,1,417,5,417,4882, + 8,417,10,417,12,417,4885,9,417,1,417,1,417,1,418,1,418,1,419,1,419, + 1,419,1,419,5,419,4895,8,419,10,419,12,419,4898,9,419,1,420,1,420, + 1,421,1,421,1,421,1,421,5,421,4906,8,421,10,421,12,421,4909,9,421, + 1,422,1,422,1,423,1,423,1,423,1,423,5,423,4917,8,423,10,423,12,423, + 4920,9,423,1,424,1,424,1,425,1,425,1,425,1,425,5,425,4928,8,425, + 10,425,12,425,4931,9,425,1,426,1,426,1,427,1,427,1,427,1,427,5,427, + 4939,8,427,10,427,12,427,4942,9,427,1,428,1,428,1,429,1,429,1,429, + 1,429,5,429,4950,8,429,10,429,12,429,4953,9,429,1,430,1,430,1,431, + 1,431,1,431,1,431,1,431,3,431,4962,8,431,1,432,1,432,1,432,1,432, + 1,433,1,433,1,433,3,433,4971,8,433,1,434,1,434,3,434,4975,8,434, + 1,435,1,435,1,435,1,435,1,435,1,435,3,435,4983,8,435,1,436,1,436, + 1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,3,436,4996, + 8,436,1,437,1,437,1,437,1,437,1,438,1,438,1,439,1,439,3,439,5006, + 8,439,1,440,1,440,1,440,1,440,3,440,5012,8,440,1,441,1,441,1,441, + 1,441,1,442,1,442,1,442,1,442,1,442,1,442,1,442,3,442,5025,8,442, + 1,443,1,443,1,443,1,443,1,443,1,443,1,443,5,443,5034,8,443,10,443, + 12,443,5037,9,443,1,444,1,444,1,444,1,444,1,444,1,444,1,444,1,444, + 1,444,1,444,1,444,1,444,3,444,5051,8,444,1,445,1,445,1,445,3,445, + 5056,8,445,1,446,1,446,1,447,5,447,5061,8,447,10,447,12,447,5064, + 9,447,1,447,1,447,1,448,1,448,1,449,1,449,1,449,1,449,5,449,5074, + 8,449,10,449,12,449,5077,9,449,1,450,1,450,1,451,1,451,1,451,1,451, + 5,451,5085,8,451,10,451,12,451,5088,9,451,1,452,1,452,1,453,1,453, + 1,454,1,454,3,454,5096,8,454,1,455,1,455,1,455,1,455,1,455,5,455, + 5103,8,455,10,455,12,455,5106,9,455,1,455,1,455,1,456,1,456,1,456, + 3,456,5113,8,456,1,457,1,457,1,457,1,457,5,457,5119,8,457,10,457, + 12,457,5122,9,457,1,457,1,457,1,458,1,458,1,458,1,458,1,459,1,459, + 3,459,5132,8,459,1,460,1,460,1,461,1,461,1,462,1,462,3,462,5140, + 8,462,1,463,1,463,1,463,3,463,5145,8,463,1,464,1,464,1,465,1,465, + 1,466,1,466,1,467,1,467,1,467,1,468,1,468,1,468,5,468,5159,8,468, + 10,468,12,468,5162,9,468,1,469,1,469,1,469,1,469,1,469,3,469,5169, + 8,469,1,470,1,470,1,471,1,471,1,471,5,471,5176,8,471,10,471,12,471, + 5179,9,471,1,472,1,472,1,473,1,473,1,473,1,473,1,473,1,474,1,474, + 1,474,1,474,1,474,1,475,1,475,1,475,5,475,5196,8,475,10,475,12,475, + 5199,9,475,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476, + 1,476,1,476,1,476,1,476,1,476,3,476,5215,8,476,1,477,1,477,1,477, + 1,477,1,477,1,477,1,477,3,477,5224,8,477,1,478,1,478,1,478,5,478, + 5229,8,478,10,478,12,478,5232,9,478,1,479,1,479,1,479,3,479,5237, + 8,479,1,480,1,480,1,480,5,480,5242,8,480,10,480,12,480,5245,9,480, + 1,481,1,481,1,481,1,481,3,481,5251,8,481,1,481,1,481,1,481,1,481, + 1,481,1,481,1,481,3,481,5260,8,481,3,481,5262,8,481,1,482,1,482, + 1,482,1,483,1,483,3,483,5269,8,483,1,484,1,484,1,485,1,485,1,486, + 1,486,1,487,1,487,1,488,1,488,1,489,1,489,1,490,1,490,1,491,1,491, + 1,492,1,492,1,493,1,493,1,494,1,494,1,495,1,495,1,495,1,495,1,495, + 1,495,1,495,1,495,1,495,1,495,1,495,1,495,1,495,1,495,1,495,3,495, + 5308,8,495,1,495,1,495,3,495,5312,8,495,3,495,5314,8,495,1,496,1, + 496,3,496,5318,8,496,1,496,1,496,1,496,1,497,1,497,1,497,1,497,1, + 497,1,497,1,497,1,497,1,497,1,497,1,497,1,497,3,497,5335,8,497,1, + 498,1,498,1,498,1,498,3,498,5341,8,498,1,498,1,498,1,499,1,499,1, + 499,5,499,5348,8,499,10,499,12,499,5351,9,499,1,500,1,500,1,501, + 1,501,1,501,1,502,1,502,1,502,5,502,5361,8,502,10,502,12,502,5364, + 9,502,1,503,1,503,1,503,5,503,5369,8,503,10,503,12,503,5372,9,503, + 1,504,1,504,1,504,1,504,1,505,1,505,1,506,1,506,1,507,1,507,1,507, + 1,507,3,507,5386,8,507,1,508,1,508,1,508,1,509,1,509,1,509,1,509, + 1,509,1,509,1,509,1,509,1,509,1,509,1,510,1,510,1,510,1,510,1,510, + 1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,510,3,510,5415, + 8,510,1,510,1,510,1,510,3,510,5420,8,510,3,510,5422,8,510,1,511, + 1,511,1,511,1,511,1,511,1,511,1,512,1,512,1,512,1,512,1,512,1,512, + 1,512,1,512,1,512,1,512,1,512,1,512,3,512,5442,8,512,1,513,1,513, + 1,513,5,513,5447,8,513,10,513,12,513,5450,9,513,1,514,1,514,1,514, + 1,514,1,514,1,514,1,514,1,514,1,515,1,515,1,515,1,515,1,515,1,515, + 1,515,1,515,1,515,1,515,1,515,1,515,3,515,5472,8,515,1,516,1,516, + 1,516,1,516,1,516,1,516,1,517,1,517,1,517,1,517,1,517,1,517,1,517, + 1,517,1,517,3,517,5489,8,517,1,517,1,517,1,517,3,517,5494,8,517, + 1,518,1,518,1,518,1,518,1,518,1,518,1,518,1,518,1,518,3,518,5505, + 8,518,1,518,1,518,1,518,3,518,5510,8,518,1,519,1,519,1,519,1,519, + 1,519,1,519,1,519,1,519,0,0,520,0,2,4,6,8,10,12,14,16,18,20,22,24, + 26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68, + 70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108, + 110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140, + 142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172, + 174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204, + 206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236, + 238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268, + 270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300, + 302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332, + 334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364, + 366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396, + 398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428, + 430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460, + 462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492, + 494,496,498,500,502,504,506,508,510,512,514,516,518,520,522,524, + 526,528,530,532,534,536,538,540,542,544,546,548,550,552,554,556, + 558,560,562,564,566,568,570,572,574,576,578,580,582,584,586,588, + 590,592,594,596,598,600,602,604,606,608,610,612,614,616,618,620, + 622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652, + 654,656,658,660,662,664,666,668,670,672,674,676,678,680,682,684, + 686,688,690,692,694,696,698,700,702,704,706,708,710,712,714,716, + 718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748, + 750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780, + 782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812, + 814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844, + 846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876, + 878,880,882,884,886,888,890,892,894,896,898,900,902,904,906,908, + 910,912,914,916,918,920,922,924,926,928,930,932,934,936,938,940, + 942,944,946,948,950,952,954,956,958,960,962,964,966,968,970,972, + 974,976,978,980,982,984,986,988,990,992,994,996,998,1000,1002,1004, + 1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030, + 1032,1034,1036,1038,0,56,2,0,57,57,172,172,4,0,91,91,121,121,225, + 225,324,324,2,0,34,34,281,281,1,0,89,90,2,0,139,139,154,154,2,0, + 67,67,294,294,2,0,68,68,295,295,1,0,155,156,2,0,114,114,306,306, + 11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161,189,189,298,298, + 308,308,364,364,3,0,4,4,101,101,325,325,3,0,15,15,128,128,170,170, + 1,0,141,142,2,0,30,30,350,350,2,0,216,216,372,372,2,0,213,213,271, + 271,2,0,18,18,89,89,2,0,130,130,177,177,2,0,39,39,375,375,4,0,112, + 112,164,164,204,204,355,355,2,0,7,7,96,96,2,0,224,224,390,390,2, + 0,188,188,195,195,2,0,42,42,314,314,2,0,425,425,430,430,2,0,140, + 140,284,284,3,0,12,12,230,230,299,299,2,0,240,240,291,291,2,0,197, + 197,267,267,2,0,353,353,430,430,2,0,133,133,246,246,3,0,412,413, + 417,417,419,419,2,0,411,411,414,416,1,0,412,413,3,0,183,183,269, + 269,285,285,2,0,7,7,13,13,3,0,7,7,13,13,312,312,2,0,125,125,349, + 349,2,0,404,404,406,410,24,0,11,11,16,16,25,28,35,35,100,100,131, + 132,151,151,154,154,162,163,183,183,197,197,215,215,227,227,263, + 263,269,269,285,285,310,310,322,323,339,339,356,356,382,382,404, + 416,418,420,422,422,85,0,1,6,8,8,10,10,15,15,18,20,22,24,30,31,33, + 34,37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68,68,72,77,79, + 79,83,85,87,89,91,95,97,99,103,104,106,107,109,111,114,116,118,121, + 127,130,137,138,142,142,147,150,152,152,155,156,158,160,168,170, + 172,177,182,182,184,186,188,192,194,196,198,201,203,203,205,208, + 210,211,213,214,216,217,219,219,221,222,225,226,231,232,234,235, + 237,239,242,245,251,251,253,254,256,258,260,261,264,266,270,281, + 283,283,286,287,292,297,299,302,304,309,311,311,313,316,318,324, + 326,327,329,329,331,333,338,339,341,341,343,345,348,348,351,352, + 354,354,356,356,359,363,365,367,370,372,374,374,376,381,384,384, + 387,393,13,0,16,16,26,28,63,64,71,71,100,100,131,131,145,145,151, + 151,162,163,197,197,263,263,310,310,336,336,4,0,198,198,241,241, + 299,299,321,321,2,0,212,212,430,431,1,0,106,107,1,0,94,95,1,0,391, + 392,1,0,207,208,1,0,380,381,1,0,73,74,1,0,148,149,1,0,205,206,1, + 0,296,297,1,0,80,82,2,0,4,4,101,101,3,0,14,14,144,144,368,368,5919, + 0,1043,1,0,0,0,2,1050,1,0,0,0,4,1055,1,0,0,0,6,1089,1,0,0,0,8,1091, + 1,0,0,0,10,1093,1,0,0,0,12,1109,1,0,0,0,14,1111,1,0,0,0,16,1127, + 1,0,0,0,18,1130,1,0,0,0,20,1139,1,0,0,0,22,1147,1,0,0,0,24,1160, + 1,0,0,0,26,1171,1,0,0,0,28,1176,1,0,0,0,30,1187,1,0,0,0,32,1191, + 1,0,0,0,34,1199,1,0,0,0,36,1204,1,0,0,0,38,1258,1,0,0,0,40,1260, + 1,0,0,0,42,1263,1,0,0,0,44,1265,1,0,0,0,46,1269,1,0,0,0,48,1271, + 1,0,0,0,50,1274,1,0,0,0,52,1277,1,0,0,0,54,1281,1,0,0,0,56,1323, + 1,0,0,0,58,1325,1,0,0,0,60,1328,1,0,0,0,62,1331,1,0,0,0,64,1335, + 1,0,0,0,66,1343,1,0,0,0,68,1346,1,0,0,0,70,1349,1,0,0,0,72,1358, + 1,0,0,0,74,1361,1,0,0,0,76,1376,1,0,0,0,78,1388,1,0,0,0,80,1393, + 1,0,0,0,82,1413,1,0,0,0,84,1417,1,0,0,0,86,1424,1,0,0,0,88,1449, + 1,0,0,0,90,1466,1,0,0,0,92,1468,1,0,0,0,94,1663,1,0,0,0,96,1673, + 1,0,0,0,98,1675,1,0,0,0,100,1683,1,0,0,0,102,1688,1,0,0,0,104,1690, + 1,0,0,0,106,1696,1,0,0,0,108,1700,1,0,0,0,110,1704,1,0,0,0,112,1708, + 1,0,0,0,114,1718,1,0,0,0,116,1729,1,0,0,0,118,1746,1,0,0,0,120,1764, + 1,0,0,0,122,1769,1,0,0,0,124,1772,1,0,0,0,126,1776,1,0,0,0,128,1783, + 1,0,0,0,130,1792,1,0,0,0,132,1798,1,0,0,0,134,1800,1,0,0,0,136,1817, + 1,0,0,0,138,1839,1,0,0,0,140,1841,1,0,0,0,142,1849,1,0,0,0,144,1856, + 1,0,0,0,146,1858,1,0,0,0,148,1872,1,0,0,0,150,1879,1,0,0,0,152,1881, + 1,0,0,0,154,1885,1,0,0,0,156,1889,1,0,0,0,158,1893,1,0,0,0,160,1897, + 1,0,0,0,162,1910,1,0,0,0,164,1918,1,0,0,0,166,1921,1,0,0,0,168,1923, + 1,0,0,0,170,1935,1,0,0,0,172,1945,1,0,0,0,174,1948,1,0,0,0,176,1959, + 1,0,0,0,178,1967,1,0,0,0,180,2011,1,0,0,0,182,2020,1,0,0,0,184,2047, + 1,0,0,0,186,2060,1,0,0,0,188,2062,1,0,0,0,190,2068,1,0,0,0,192,2071, + 1,0,0,0,194,2077,1,0,0,0,196,2083,1,0,0,0,198,2090,1,0,0,0,200,2124, + 1,0,0,0,202,2132,1,0,0,0,204,2145,1,0,0,0,206,2150,1,0,0,0,208,2161, + 1,0,0,0,210,2178,1,0,0,0,212,2180,1,0,0,0,214,2185,1,0,0,0,216,2192, + 1,0,0,0,218,2194,1,0,0,0,220,2197,1,0,0,0,222,2211,1,0,0,0,224,2219, + 1,0,0,0,226,2227,1,0,0,0,228,2235,1,0,0,0,230,2255,1,0,0,0,232,2257, + 1,0,0,0,234,2274,1,0,0,0,236,2279,1,0,0,0,238,2293,1,0,0,0,240,2295, + 1,0,0,0,242,2298,1,0,0,0,244,2301,1,0,0,0,246,2310,1,0,0,0,248,2330, + 1,0,0,0,250,2332,1,0,0,0,252,2335,1,0,0,0,254,2355,1,0,0,0,256,2357, + 1,0,0,0,258,2361,1,0,0,0,260,2363,1,0,0,0,262,2372,1,0,0,0,264,2378, + 1,0,0,0,266,2384,1,0,0,0,268,2389,1,0,0,0,270,2435,1,0,0,0,272,2437, + 1,0,0,0,274,2440,1,0,0,0,276,2448,1,0,0,0,278,2456,1,0,0,0,280,2464, + 1,0,0,0,282,2481,1,0,0,0,284,2483,1,0,0,0,286,2485,1,0,0,0,288,2498, + 1,0,0,0,290,2506,1,0,0,0,292,2515,1,0,0,0,294,2519,1,0,0,0,296,2521, + 1,0,0,0,298,2526,1,0,0,0,300,2528,1,0,0,0,302,2532,1,0,0,0,304,2538, + 1,0,0,0,306,2546,1,0,0,0,308,2548,1,0,0,0,310,2551,1,0,0,0,312,2558, + 1,0,0,0,314,2569,1,0,0,0,316,2582,1,0,0,0,318,2584,1,0,0,0,320,2592, + 1,0,0,0,322,2596,1,0,0,0,324,2604,1,0,0,0,326,2608,1,0,0,0,328,2610, + 1,0,0,0,330,2612,1,0,0,0,332,2615,1,0,0,0,334,2622,1,0,0,0,336,2630, + 1,0,0,0,338,2635,1,0,0,0,340,2639,1,0,0,0,342,2647,1,0,0,0,344,2655, + 1,0,0,0,346,2659,1,0,0,0,348,2661,1,0,0,0,350,2672,1,0,0,0,352,2676, + 1,0,0,0,354,2688,1,0,0,0,356,2696,1,0,0,0,358,2700,1,0,0,0,360,2712, + 1,0,0,0,362,2724,1,0,0,0,364,2729,1,0,0,0,366,2734,1,0,0,0,368,2736, + 1,0,0,0,370,2740,1,0,0,0,372,2744,1,0,0,0,374,2751,1,0,0,0,376,2753, + 1,0,0,0,378,2766,1,0,0,0,380,2805,1,0,0,0,382,2807,1,0,0,0,384,2812, + 1,0,0,0,386,2817,1,0,0,0,388,2824,1,0,0,0,390,2829,1,0,0,0,392,2834, + 1,0,0,0,394,2840,1,0,0,0,396,2842,1,0,0,0,398,2851,1,0,0,0,400,2863, + 1,0,0,0,402,2943,1,0,0,0,404,2949,1,0,0,0,406,2975,1,0,0,0,408,2977, + 1,0,0,0,410,2999,1,0,0,0,412,3004,1,0,0,0,414,3008,1,0,0,0,416,3040, + 1,0,0,0,418,3042,1,0,0,0,420,3053,1,0,0,0,422,3059,1,0,0,0,424,3065, + 1,0,0,0,426,3067,1,0,0,0,428,3076,1,0,0,0,430,3086,1,0,0,0,432,3088, + 1,0,0,0,434,3102,1,0,0,0,436,3104,1,0,0,0,438,3107,1,0,0,0,440,3111, + 1,0,0,0,442,3113,1,0,0,0,444,3117,1,0,0,0,446,3121,1,0,0,0,448,3125, + 1,0,0,0,450,3132,1,0,0,0,452,3139,1,0,0,0,454,3161,1,0,0,0,456,3167, + 1,0,0,0,458,3182,1,0,0,0,460,3189,1,0,0,0,462,3197,1,0,0,0,464,3199, + 1,0,0,0,466,3206,1,0,0,0,468,3210,1,0,0,0,470,3213,1,0,0,0,472,3216, + 1,0,0,0,474,3219,1,0,0,0,476,3266,1,0,0,0,478,3283,1,0,0,0,480,3285, + 1,0,0,0,482,3296,1,0,0,0,484,3300,1,0,0,0,486,3304,1,0,0,0,488,3306, + 1,0,0,0,490,3311,1,0,0,0,492,3313,1,0,0,0,494,3318,1,0,0,0,496,3323, + 1,0,0,0,498,3328,1,0,0,0,500,3333,1,0,0,0,502,3339,1,0,0,0,504,3348, + 1,0,0,0,506,3353,1,0,0,0,508,3366,1,0,0,0,510,3368,1,0,0,0,512,3372, + 1,0,0,0,514,3392,1,0,0,0,516,3405,1,0,0,0,518,3413,1,0,0,0,520,3415, + 1,0,0,0,522,3424,1,0,0,0,524,3428,1,0,0,0,526,3435,1,0,0,0,528,3442, + 1,0,0,0,530,3449,1,0,0,0,532,3452,1,0,0,0,534,3455,1,0,0,0,536,3487, + 1,0,0,0,538,3498,1,0,0,0,540,3515,1,0,0,0,542,3517,1,0,0,0,544,3521, + 1,0,0,0,546,3528,1,0,0,0,548,3530,1,0,0,0,550,3535,1,0,0,0,552,3539, + 1,0,0,0,554,3547,1,0,0,0,556,3551,1,0,0,0,558,3561,1,0,0,0,560,3563, + 1,0,0,0,562,3569,1,0,0,0,564,3573,1,0,0,0,566,3586,1,0,0,0,568,3588, + 1,0,0,0,570,3592,1,0,0,0,572,3595,1,0,0,0,574,3598,1,0,0,0,576,3618, + 1,0,0,0,578,3622,1,0,0,0,580,3629,1,0,0,0,582,3643,1,0,0,0,584,3664, + 1,0,0,0,586,3669,1,0,0,0,588,3671,1,0,0,0,590,3676,1,0,0,0,592,3681, + 1,0,0,0,594,3695,1,0,0,0,596,3820,1,0,0,0,598,3822,1,0,0,0,600,3842, + 1,0,0,0,602,3845,1,0,0,0,604,3848,1,0,0,0,606,3851,1,0,0,0,608,3855, + 1,0,0,0,610,3867,1,0,0,0,612,3872,1,0,0,0,614,3874,1,0,0,0,616,3882, + 1,0,0,0,618,3890,1,0,0,0,620,3902,1,0,0,0,622,3936,1,0,0,0,624,3938, + 1,0,0,0,626,3956,1,0,0,0,628,3965,1,0,0,0,630,3970,1,0,0,0,632,3974, + 1,0,0,0,634,3990,1,0,0,0,636,4049,1,0,0,0,638,4051,1,0,0,0,640,4053, + 1,0,0,0,642,4073,1,0,0,0,644,4084,1,0,0,0,646,4086,1,0,0,0,648,4102, + 1,0,0,0,650,4114,1,0,0,0,652,4124,1,0,0,0,654,4126,1,0,0,0,656,4130, + 1,0,0,0,658,4140,1,0,0,0,660,4150,1,0,0,0,662,4155,1,0,0,0,664,4162, + 1,0,0,0,666,4166,1,0,0,0,668,4185,1,0,0,0,670,4190,1,0,0,0,672,4192, + 1,0,0,0,674,4220,1,0,0,0,676,4223,1,0,0,0,678,4225,1,0,0,0,680,4227, + 1,0,0,0,682,4246,1,0,0,0,684,4248,1,0,0,0,686,4250,1,0,0,0,688,4254, + 1,0,0,0,690,4288,1,0,0,0,692,4290,1,0,0,0,694,4292,1,0,0,0,696,4300, + 1,0,0,0,698,4347,1,0,0,0,700,4349,1,0,0,0,702,4374,1,0,0,0,704,4376, + 1,0,0,0,706,4384,1,0,0,0,708,4393,1,0,0,0,710,4409,1,0,0,0,712,4413, + 1,0,0,0,714,4415,1,0,0,0,716,4424,1,0,0,0,718,4439,1,0,0,0,720,4445, + 1,0,0,0,722,4447,1,0,0,0,724,4455,1,0,0,0,726,4457,1,0,0,0,728,4462, + 1,0,0,0,730,4475,1,0,0,0,732,4499,1,0,0,0,734,4501,1,0,0,0,736,4514, + 1,0,0,0,738,4516,1,0,0,0,740,4519,1,0,0,0,742,4522,1,0,0,0,744,4524, + 1,0,0,0,746,4528,1,0,0,0,748,4534,1,0,0,0,750,4540,1,0,0,0,752,4542, + 1,0,0,0,754,4556,1,0,0,0,756,4565,1,0,0,0,758,4567,1,0,0,0,760,4578, + 1,0,0,0,762,4586,1,0,0,0,764,4596,1,0,0,0,766,4600,1,0,0,0,768,4604, + 1,0,0,0,770,4608,1,0,0,0,772,4614,1,0,0,0,774,4668,1,0,0,0,776,4674, + 1,0,0,0,778,4676,1,0,0,0,780,4680,1,0,0,0,782,4684,1,0,0,0,784,4686, + 1,0,0,0,786,4690,1,0,0,0,788,4692,1,0,0,0,790,4703,1,0,0,0,792,4720, + 1,0,0,0,794,4736,1,0,0,0,796,4753,1,0,0,0,798,4755,1,0,0,0,800,4770, + 1,0,0,0,802,4785,1,0,0,0,804,4787,1,0,0,0,806,4789,1,0,0,0,808,4791, + 1,0,0,0,810,4797,1,0,0,0,812,4803,1,0,0,0,814,4808,1,0,0,0,816,4810, + 1,0,0,0,818,4813,1,0,0,0,820,4815,1,0,0,0,822,4833,1,0,0,0,824,4849, + 1,0,0,0,826,4851,1,0,0,0,828,4864,1,0,0,0,830,4866,1,0,0,0,832,4878, + 1,0,0,0,834,4883,1,0,0,0,836,4888,1,0,0,0,838,4890,1,0,0,0,840,4899, + 1,0,0,0,842,4901,1,0,0,0,844,4910,1,0,0,0,846,4912,1,0,0,0,848,4921, + 1,0,0,0,850,4923,1,0,0,0,852,4932,1,0,0,0,854,4934,1,0,0,0,856,4943, + 1,0,0,0,858,4945,1,0,0,0,860,4954,1,0,0,0,862,4961,1,0,0,0,864,4963, + 1,0,0,0,866,4970,1,0,0,0,868,4972,1,0,0,0,870,4982,1,0,0,0,872,4995, + 1,0,0,0,874,4997,1,0,0,0,876,5001,1,0,0,0,878,5005,1,0,0,0,880,5011, + 1,0,0,0,882,5013,1,0,0,0,884,5024,1,0,0,0,886,5026,1,0,0,0,888,5050, + 1,0,0,0,890,5052,1,0,0,0,892,5057,1,0,0,0,894,5062,1,0,0,0,896,5067, + 1,0,0,0,898,5069,1,0,0,0,900,5078,1,0,0,0,902,5080,1,0,0,0,904,5089, + 1,0,0,0,906,5091,1,0,0,0,908,5093,1,0,0,0,910,5097,1,0,0,0,912,5109, + 1,0,0,0,914,5114,1,0,0,0,916,5125,1,0,0,0,918,5131,1,0,0,0,920,5133, + 1,0,0,0,922,5135,1,0,0,0,924,5139,1,0,0,0,926,5141,1,0,0,0,928,5146, + 1,0,0,0,930,5148,1,0,0,0,932,5150,1,0,0,0,934,5152,1,0,0,0,936,5155, + 1,0,0,0,938,5163,1,0,0,0,940,5170,1,0,0,0,942,5172,1,0,0,0,944,5180, + 1,0,0,0,946,5182,1,0,0,0,948,5187,1,0,0,0,950,5192,1,0,0,0,952,5214, + 1,0,0,0,954,5223,1,0,0,0,956,5225,1,0,0,0,958,5236,1,0,0,0,960,5238, + 1,0,0,0,962,5246,1,0,0,0,964,5263,1,0,0,0,966,5266,1,0,0,0,968,5270, + 1,0,0,0,970,5272,1,0,0,0,972,5274,1,0,0,0,974,5276,1,0,0,0,976,5278, + 1,0,0,0,978,5280,1,0,0,0,980,5282,1,0,0,0,982,5284,1,0,0,0,984,5286, + 1,0,0,0,986,5288,1,0,0,0,988,5290,1,0,0,0,990,5292,1,0,0,0,992,5317, + 1,0,0,0,994,5322,1,0,0,0,996,5336,1,0,0,0,998,5344,1,0,0,0,1000, + 5352,1,0,0,0,1002,5354,1,0,0,0,1004,5357,1,0,0,0,1006,5365,1,0,0, + 0,1008,5373,1,0,0,0,1010,5377,1,0,0,0,1012,5379,1,0,0,0,1014,5385, + 1,0,0,0,1016,5387,1,0,0,0,1018,5390,1,0,0,0,1020,5400,1,0,0,0,1022, + 5423,1,0,0,0,1024,5441,1,0,0,0,1026,5443,1,0,0,0,1028,5451,1,0,0, + 0,1030,5459,1,0,0,0,1032,5473,1,0,0,0,1034,5479,1,0,0,0,1036,5495, + 1,0,0,0,1038,5511,1,0,0,0,1040,1042,3,2,1,0,1041,1040,1,0,0,0,1042, + 1045,1,0,0,0,1043,1041,1,0,0,0,1043,1044,1,0,0,0,1044,1046,1,0,0, + 0,1045,1043,1,0,0,0,1046,1047,5,0,0,1,1047,1,1,0,0,0,1048,1051,3, + 4,2,0,1049,1051,3,12,6,0,1050,1048,1,0,0,0,1050,1049,1,0,0,0,1051, + 1053,1,0,0,0,1052,1054,5,397,0,0,1053,1052,1,0,0,0,1053,1054,1,0, + 0,0,1054,3,1,0,0,0,1055,1065,5,119,0,0,1056,1058,3,6,3,0,1057,1056, + 1,0,0,0,1058,1061,1,0,0,0,1059,1057,1,0,0,0,1059,1060,1,0,0,0,1060, + 1062,1,0,0,0,1061,1059,1,0,0,0,1062,1066,3,12,6,0,1063,1064,5,283, + 0,0,1064,1066,3,392,196,0,1065,1059,1,0,0,0,1065,1063,1,0,0,0,1066, + 5,1,0,0,0,1067,1090,5,122,0,0,1068,1090,5,138,0,0,1069,1090,5,88, + 0,0,1070,1072,5,37,0,0,1071,1073,7,0,0,0,1072,1071,1,0,0,0,1072, + 1073,1,0,0,0,1073,1090,1,0,0,0,1074,1090,5,191,0,0,1075,1090,5,21, + 0,0,1076,1090,5,10,0,0,1077,1090,5,274,0,0,1078,1090,5,190,0,0,1079, + 1090,5,19,0,0,1080,1082,5,376,0,0,1081,1083,3,8,4,0,1082,1081,1, + 0,0,0,1082,1083,1,0,0,0,1083,1085,1,0,0,0,1084,1086,3,10,5,0,1085, + 1084,1,0,0,0,1085,1086,1,0,0,0,1086,1090,1,0,0,0,1087,1090,5,79, + 0,0,1088,1090,5,78,0,0,1089,1067,1,0,0,0,1089,1068,1,0,0,0,1089, + 1069,1,0,0,0,1089,1070,1,0,0,0,1089,1074,1,0,0,0,1089,1075,1,0,0, + 0,1089,1076,1,0,0,0,1089,1077,1,0,0,0,1089,1078,1,0,0,0,1089,1079, + 1,0,0,0,1089,1080,1,0,0,0,1089,1087,1,0,0,0,1089,1088,1,0,0,0,1090, + 7,1,0,0,0,1091,1092,5,224,0,0,1092,9,1,0,0,0,1093,1094,7,1,0,0,1094, + 11,1,0,0,0,1095,1110,3,392,196,0,1096,1110,3,14,7,0,1097,1110,3, + 20,10,0,1098,1110,3,22,11,0,1099,1110,3,24,12,0,1100,1110,3,28,14, + 0,1101,1110,3,36,18,0,1102,1110,3,38,19,0,1103,1110,3,420,210,0, + 1104,1110,3,428,214,0,1105,1110,3,430,215,0,1106,1110,3,452,226, + 0,1107,1110,3,946,473,0,1108,1110,3,948,474,0,1109,1095,1,0,0,0, + 1109,1096,1,0,0,0,1109,1097,1,0,0,0,1109,1098,1,0,0,0,1109,1099, + 1,0,0,0,1109,1100,1,0,0,0,1109,1101,1,0,0,0,1109,1102,1,0,0,0,1109, + 1103,1,0,0,0,1109,1104,1,0,0,0,1109,1105,1,0,0,0,1109,1106,1,0,0, + 0,1109,1107,1,0,0,0,1109,1108,1,0,0,0,1110,13,1,0,0,0,1111,1112, + 5,186,0,0,1112,1114,5,66,0,0,1113,1115,5,187,0,0,1114,1113,1,0,0, + 0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116,1117,5,158,0,0,1117,1119, + 5,425,0,0,1118,1120,5,234,0,0,1119,1118,1,0,0,0,1119,1120,1,0,0, + 0,1120,1121,1,0,0,0,1121,1122,5,166,0,0,1122,1123,5,328,0,0,1123, + 1125,3,908,454,0,1124,1126,3,78,39,0,1125,1124,1,0,0,0,1125,1126, + 1,0,0,0,1126,15,1,0,0,0,1127,1128,5,152,0,0,1128,1129,5,253,0,0, + 1129,17,1,0,0,0,1130,1132,5,134,0,0,1131,1133,5,203,0,0,1132,1131, + 1,0,0,0,1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1135,5,278,0,0, + 1135,1136,5,398,0,0,1136,1137,5,425,0,0,1137,1138,5,399,0,0,1138, + 19,1,0,0,0,1139,1140,5,120,0,0,1140,1141,5,328,0,0,1141,1142,3,908, + 454,0,1142,1143,5,340,0,0,1143,1145,5,425,0,0,1144,1146,3,18,9,0, + 1145,1144,1,0,0,0,1145,1146,1,0,0,0,1146,21,1,0,0,0,1147,1153,5, + 153,0,0,1148,1150,5,123,0,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0, + 1150,1151,1,0,0,0,1151,1152,5,328,0,0,1152,1154,3,908,454,0,1153, + 1149,1,0,0,0,1153,1154,1,0,0,0,1154,1155,1,0,0,0,1155,1156,5,139, + 0,0,1156,1158,5,425,0,0,1157,1159,3,272,136,0,1158,1157,1,0,0,0, + 1158,1159,1,0,0,0,1159,23,1,0,0,0,1160,1161,5,276,0,0,1161,1162, + 5,103,0,0,1162,1165,3,26,13,0,1163,1164,5,277,0,0,1164,1166,3,26, + 13,0,1165,1163,1,0,0,0,1165,1166,1,0,0,0,1166,1169,1,0,0,0,1167, + 1168,5,386,0,0,1168,1170,3,30,15,0,1169,1167,1,0,0,0,1169,1170,1, + 0,0,0,1170,25,1,0,0,0,1171,1174,3,652,326,0,1172,1173,5,394,0,0, + 1173,1175,3,34,17,0,1174,1172,1,0,0,0,1174,1175,1,0,0,0,1175,27, + 1,0,0,0,1176,1177,5,276,0,0,1177,1178,5,186,0,0,1178,1181,3,26,13, + 0,1179,1180,5,166,0,0,1180,1182,3,652,326,0,1181,1179,1,0,0,0,1181, + 1182,1,0,0,0,1182,1185,1,0,0,0,1183,1184,5,386,0,0,1184,1186,3,30, + 15,0,1185,1183,1,0,0,0,1185,1186,1,0,0,0,1186,29,1,0,0,0,1187,1188, + 5,398,0,0,1188,1189,3,32,16,0,1189,1190,5,399,0,0,1190,31,1,0,0, + 0,1191,1196,3,256,128,0,1192,1193,5,396,0,0,1193,1195,3,256,128, + 0,1194,1192,1,0,0,0,1195,1198,1,0,0,0,1196,1194,1,0,0,0,1196,1197, + 1,0,0,0,1197,33,1,0,0,0,1198,1196,1,0,0,0,1199,1202,5,425,0,0,1200, + 1201,5,394,0,0,1201,1203,5,425,0,0,1202,1200,1,0,0,0,1202,1203,1, + 0,0,0,1203,35,1,0,0,0,1204,1205,5,276,0,0,1205,1206,5,319,0,0,1206, + 1209,3,652,326,0,1207,1208,5,386,0,0,1208,1210,3,30,15,0,1209,1207, + 1,0,0,0,1209,1210,1,0,0,0,1210,37,1,0,0,0,1211,1259,3,56,28,0,1212, + 1259,3,68,34,0,1213,1259,3,70,35,0,1214,1259,3,596,298,0,1215,1259, + 3,76,38,0,1216,1259,3,74,37,0,1217,1259,3,474,237,0,1218,1259,3, + 86,43,0,1219,1259,3,94,47,0,1220,1259,3,160,80,0,1221,1259,3,182, + 91,0,1222,1259,3,198,99,0,1223,1259,3,202,101,0,1224,1259,3,206, + 103,0,1225,1259,3,204,102,0,1226,1259,3,196,98,0,1227,1259,3,200, + 100,0,1228,1259,3,168,84,0,1229,1259,3,174,87,0,1230,1259,3,170, + 85,0,1231,1259,3,172,86,0,1232,1259,3,176,88,0,1233,1259,3,178,89, + 0,1234,1259,3,180,90,0,1235,1259,3,88,44,0,1236,1259,3,98,49,0,1237, + 1259,3,104,52,0,1238,1259,3,100,50,0,1239,1259,3,106,53,0,1240,1259, + 3,108,54,0,1241,1259,3,110,55,0,1242,1259,3,112,56,0,1243,1259,3, + 114,57,0,1244,1259,3,128,64,0,1245,1259,3,120,60,0,1246,1259,3,130, + 65,0,1247,1259,3,122,61,0,1248,1259,3,116,58,0,1249,1259,3,118,59, + 0,1250,1259,3,126,63,0,1251,1259,3,124,62,0,1252,1259,3,448,224, + 0,1253,1259,3,450,225,0,1254,1259,3,464,232,0,1255,1259,3,952,476, + 0,1256,1259,3,598,299,0,1257,1259,3,608,304,0,1258,1211,1,0,0,0, + 1258,1212,1,0,0,0,1258,1213,1,0,0,0,1258,1214,1,0,0,0,1258,1215, + 1,0,0,0,1258,1216,1,0,0,0,1258,1217,1,0,0,0,1258,1218,1,0,0,0,1258, + 1219,1,0,0,0,1258,1220,1,0,0,0,1258,1221,1,0,0,0,1258,1222,1,0,0, + 0,1258,1223,1,0,0,0,1258,1224,1,0,0,0,1258,1225,1,0,0,0,1258,1226, + 1,0,0,0,1258,1227,1,0,0,0,1258,1228,1,0,0,0,1258,1229,1,0,0,0,1258, + 1230,1,0,0,0,1258,1231,1,0,0,0,1258,1232,1,0,0,0,1258,1233,1,0,0, + 0,1258,1234,1,0,0,0,1258,1235,1,0,0,0,1258,1236,1,0,0,0,1258,1237, + 1,0,0,0,1258,1238,1,0,0,0,1258,1239,1,0,0,0,1258,1240,1,0,0,0,1258, + 1241,1,0,0,0,1258,1242,1,0,0,0,1258,1243,1,0,0,0,1258,1244,1,0,0, + 0,1258,1245,1,0,0,0,1258,1246,1,0,0,0,1258,1247,1,0,0,0,1258,1248, + 1,0,0,0,1258,1249,1,0,0,0,1258,1250,1,0,0,0,1258,1251,1,0,0,0,1258, + 1252,1,0,0,0,1258,1253,1,0,0,0,1258,1254,1,0,0,0,1258,1255,1,0,0, + 0,1258,1256,1,0,0,0,1258,1257,1,0,0,0,1259,39,1,0,0,0,1260,1261, + 5,151,0,0,1261,1262,5,117,0,0,1262,41,1,0,0,0,1263,1264,7,2,0,0, + 1264,43,1,0,0,0,1265,1266,5,151,0,0,1266,1267,5,215,0,0,1267,1268, + 5,117,0,0,1268,45,1,0,0,0,1269,1270,5,135,0,0,1270,47,1,0,0,0,1271, + 1272,3,968,484,0,1272,1273,5,283,0,0,1273,49,1,0,0,0,1274,1275,3, + 970,485,0,1275,1276,5,283,0,0,1276,51,1,0,0,0,1277,1278,5,320,0, + 0,1278,1279,5,17,0,0,1279,1280,5,92,0,0,1280,53,1,0,0,0,1281,1282, + 5,227,0,0,1282,1283,5,277,0,0,1283,55,1,0,0,0,1284,1286,5,58,0,0, + 1285,1287,5,272,0,0,1286,1285,1,0,0,0,1286,1287,1,0,0,0,1287,1288, + 1,0,0,0,1288,1290,3,92,46,0,1289,1291,3,44,22,0,1290,1289,1,0,0, + 0,1290,1291,1,0,0,0,1291,1292,1,0,0,0,1292,1294,3,654,327,0,1293, + 1295,3,72,36,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295,1297,1,0, + 0,0,1296,1298,3,58,29,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298, + 1300,1,0,0,0,1299,1301,3,60,30,0,1300,1299,1,0,0,0,1300,1301,1,0, + 0,0,1301,1305,1,0,0,0,1302,1303,5,386,0,0,1303,1304,5,76,0,0,1304, + 1306,3,62,31,0,1305,1302,1,0,0,0,1305,1306,1,0,0,0,1306,1324,1,0, + 0,0,1307,1308,5,58,0,0,1308,1309,5,272,0,0,1309,1311,3,92,46,0,1310, + 1312,3,44,22,0,1311,1310,1,0,0,0,1311,1312,1,0,0,0,1312,1313,1,0, + 0,0,1313,1315,3,654,327,0,1314,1316,3,72,36,0,1315,1314,1,0,0,0, + 1315,1316,1,0,0,0,1316,1317,1,0,0,0,1317,1321,3,66,33,0,1318,1319, + 5,386,0,0,1319,1320,5,76,0,0,1320,1322,3,62,31,0,1321,1318,1,0,0, + 0,1321,1322,1,0,0,0,1322,1324,1,0,0,0,1323,1284,1,0,0,0,1323,1307, + 1,0,0,0,1324,57,1,0,0,0,1325,1326,5,188,0,0,1326,1327,5,425,0,0, + 1327,59,1,0,0,0,1328,1329,5,195,0,0,1329,1330,5,425,0,0,1330,61, + 1,0,0,0,1331,1332,5,398,0,0,1332,1333,3,64,32,0,1333,1334,5,399, + 0,0,1334,63,1,0,0,0,1335,1340,3,256,128,0,1336,1337,5,396,0,0,1337, + 1339,3,256,128,0,1338,1336,1,0,0,0,1339,1342,1,0,0,0,1340,1338,1, + 0,0,0,1340,1341,1,0,0,0,1341,65,1,0,0,0,1342,1340,1,0,0,0,1343,1344, + 5,369,0,0,1344,1345,3,652,326,0,1345,67,1,0,0,0,1346,1347,5,367, + 0,0,1347,1348,3,652,326,0,1348,69,1,0,0,0,1349,1350,5,101,0,0,1350, + 1352,3,92,46,0,1351,1353,3,40,20,0,1352,1351,1,0,0,0,1352,1353,1, + 0,0,0,1353,1354,1,0,0,0,1354,1356,3,652,326,0,1355,1357,3,42,21, + 0,1356,1355,1,0,0,0,1356,1357,1,0,0,0,1357,71,1,0,0,0,1358,1359, + 5,47,0,0,1359,1360,5,425,0,0,1360,73,1,0,0,0,1361,1363,5,350,0,0, + 1362,1364,5,328,0,0,1363,1362,1,0,0,0,1363,1364,1,0,0,0,1364,1365, + 1,0,0,0,1365,1371,3,542,271,0,1366,1367,5,46,0,0,1367,1368,5,398, + 0,0,1368,1369,3,280,140,0,1369,1370,5,399,0,0,1370,1372,1,0,0,0, + 1371,1366,1,0,0,0,1371,1372,1,0,0,0,1372,1374,1,0,0,0,1373,1375, + 3,46,23,0,1374,1373,1,0,0,0,1374,1375,1,0,0,0,1375,75,1,0,0,0,1376, + 1377,5,101,0,0,1377,1379,5,328,0,0,1378,1380,3,40,20,0,1379,1378, + 1,0,0,0,1379,1380,1,0,0,0,1380,1381,1,0,0,0,1381,1383,3,658,329, + 0,1382,1384,5,254,0,0,1383,1382,1,0,0,0,1383,1384,1,0,0,0,1384,1386, + 1,0,0,0,1385,1387,3,18,9,0,1386,1385,1,0,0,0,1386,1387,1,0,0,0,1387, + 77,1,0,0,0,1388,1389,5,160,0,0,1389,1390,5,425,0,0,1390,1391,5,300, + 0,0,1391,1392,5,425,0,0,1392,79,1,0,0,0,1393,1396,3,924,462,0,1394, + 1395,5,394,0,0,1395,1397,3,924,462,0,1396,1394,1,0,0,0,1396,1397, + 1,0,0,0,1397,1411,1,0,0,0,1398,1408,3,924,462,0,1399,1404,5,394, + 0,0,1400,1405,5,104,0,0,1401,1405,5,175,0,0,1402,1405,5,374,0,0, + 1403,1405,3,924,462,0,1404,1400,1,0,0,0,1404,1401,1,0,0,0,1404,1402, + 1,0,0,0,1404,1403,1,0,0,0,1405,1407,1,0,0,0,1406,1399,1,0,0,0,1407, + 1410,1,0,0,0,1408,1406,1,0,0,0,1408,1409,1,0,0,0,1409,1412,1,0,0, + 0,1410,1408,1,0,0,0,1411,1398,1,0,0,0,1411,1412,1,0,0,0,1412,81, + 1,0,0,0,1413,1415,3,80,40,0,1414,1416,3,910,455,0,1415,1414,1,0, + 0,0,1415,1416,1,0,0,0,1416,83,1,0,0,0,1417,1419,3,656,328,0,1418, + 1420,3,910,455,0,1419,1418,1,0,0,0,1419,1420,1,0,0,0,1420,1422,1, + 0,0,0,1421,1423,3,286,143,0,1422,1421,1,0,0,0,1422,1423,1,0,0,0, + 1423,85,1,0,0,0,1424,1447,7,3,0,0,1425,1427,3,92,46,0,1426,1428, + 5,122,0,0,1427,1426,1,0,0,0,1427,1428,1,0,0,0,1428,1429,1,0,0,0, + 1429,1430,3,652,326,0,1430,1448,1,0,0,0,1431,1433,5,69,0,0,1432, + 1434,5,122,0,0,1433,1432,1,0,0,0,1433,1434,1,0,0,0,1434,1435,1,0, + 0,0,1435,1448,3,652,326,0,1436,1438,5,141,0,0,1437,1439,5,122,0, + 0,1438,1437,1,0,0,0,1438,1439,1,0,0,0,1439,1440,1,0,0,0,1440,1448, + 3,780,390,0,1441,1444,5,138,0,0,1442,1444,5,122,0,0,1443,1441,1, + 0,0,0,1443,1442,1,0,0,0,1444,1445,1,0,0,0,1445,1448,3,84,42,0,1446, + 1448,3,84,42,0,1447,1425,1,0,0,0,1447,1431,1,0,0,0,1447,1436,1,0, + 0,0,1447,1443,1,0,0,0,1447,1446,1,0,0,0,1448,87,1,0,0,0,1449,1450, + 5,10,0,0,1450,1451,5,328,0,0,1451,1464,3,908,454,0,1452,1453,5,52, + 0,0,1453,1460,5,318,0,0,1454,1461,5,214,0,0,1455,1456,5,134,0,0, + 1456,1458,5,46,0,0,1457,1459,3,280,140,0,1458,1457,1,0,0,0,1458, + 1459,1,0,0,0,1459,1461,1,0,0,0,1460,1454,1,0,0,0,1460,1455,1,0,0, + 0,1460,1461,1,0,0,0,1461,1465,1,0,0,0,1462,1463,5,33,0,0,1463,1465, + 5,203,0,0,1464,1452,1,0,0,0,1464,1462,1,0,0,0,1465,89,1,0,0,0,1466, + 1467,7,4,0,0,1467,91,1,0,0,0,1468,1469,7,5,0,0,1469,93,1,0,0,0,1470, + 1471,5,307,0,0,1471,1474,7,6,0,0,1472,1473,5,183,0,0,1473,1475,3, + 216,108,0,1474,1472,1,0,0,0,1474,1475,1,0,0,0,1475,1664,1,0,0,0, + 1476,1478,5,307,0,0,1477,1479,5,122,0,0,1478,1477,1,0,0,0,1478,1479, + 1,0,0,0,1479,1480,1,0,0,0,1480,1484,5,329,0,0,1481,1482,3,90,45, + 0,1482,1483,3,652,326,0,1483,1485,1,0,0,0,1484,1481,1,0,0,0,1484, + 1485,1,0,0,0,1485,1487,1,0,0,0,1486,1488,3,96,48,0,1487,1486,1,0, + 0,0,1487,1488,1,0,0,0,1488,1664,1,0,0,0,1489,1490,5,307,0,0,1490, + 1494,5,378,0,0,1491,1492,3,90,45,0,1492,1493,3,652,326,0,1493,1495, + 1,0,0,0,1494,1491,1,0,0,0,1494,1495,1,0,0,0,1495,1499,1,0,0,0,1496, + 1497,5,183,0,0,1497,1500,3,216,108,0,1498,1500,3,216,108,0,1499, + 1496,1,0,0,0,1499,1498,1,0,0,0,1499,1500,1,0,0,0,1500,1664,1,0,0, + 0,1501,1502,5,307,0,0,1502,1503,5,201,0,0,1503,1507,5,378,0,0,1504, + 1505,3,90,45,0,1505,1506,3,652,326,0,1506,1508,1,0,0,0,1507,1504, + 1,0,0,0,1507,1508,1,0,0,0,1508,1512,1,0,0,0,1509,1510,5,183,0,0, + 1510,1513,3,216,108,0,1511,1513,3,216,108,0,1512,1509,1,0,0,0,1512, + 1511,1,0,0,0,1512,1513,1,0,0,0,1513,1664,1,0,0,0,1514,1516,5,307, + 0,0,1515,1517,5,314,0,0,1516,1515,1,0,0,0,1516,1517,1,0,0,0,1517, + 1518,1,0,0,0,1518,1519,5,46,0,0,1519,1520,3,90,45,0,1520,1524,3, + 656,328,0,1521,1522,3,90,45,0,1522,1523,3,652,326,0,1523,1525,1, + 0,0,0,1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525,1529,1,0,0,0,1526, + 1527,5,183,0,0,1527,1530,3,216,108,0,1528,1530,3,216,108,0,1529, + 1526,1,0,0,0,1529,1528,1,0,0,0,1529,1530,1,0,0,0,1530,1664,1,0,0, + 0,1531,1532,5,307,0,0,1532,1535,5,142,0,0,1533,1534,5,183,0,0,1534, + 1536,3,780,390,0,1535,1533,1,0,0,0,1535,1536,1,0,0,0,1536,1664,1, + 0,0,0,1537,1538,5,307,0,0,1538,1539,5,238,0,0,1539,1541,3,656,328, + 0,1540,1542,3,910,455,0,1541,1540,1,0,0,0,1541,1542,1,0,0,0,1542, + 1544,1,0,0,0,1543,1545,3,674,337,0,1544,1543,1,0,0,0,1544,1545,1, + 0,0,0,1545,1547,1,0,0,0,1546,1548,3,762,381,0,1547,1546,1,0,0,0, + 1547,1548,1,0,0,0,1548,1550,1,0,0,0,1549,1551,3,418,209,0,1550,1549, + 1,0,0,0,1550,1551,1,0,0,0,1551,1664,1,0,0,0,1552,1553,5,307,0,0, + 1553,1559,5,58,0,0,1554,1555,3,92,46,0,1555,1556,3,652,326,0,1556, + 1560,1,0,0,0,1557,1558,5,328,0,0,1558,1560,3,658,329,0,1559,1554, + 1,0,0,0,1559,1557,1,0,0,0,1560,1664,1,0,0,0,1561,1562,5,307,0,0, + 1562,1563,5,328,0,0,1563,1567,5,122,0,0,1564,1565,3,90,45,0,1565, + 1566,3,652,326,0,1566,1568,1,0,0,0,1567,1564,1,0,0,0,1567,1568,1, + 0,0,0,1568,1569,1,0,0,0,1569,1570,5,183,0,0,1570,1572,3,216,108, + 0,1571,1573,3,910,455,0,1572,1571,1,0,0,0,1572,1573,1,0,0,0,1573, + 1664,1,0,0,0,1574,1575,5,307,0,0,1575,1576,5,331,0,0,1576,1580,3, + 658,329,0,1577,1578,5,398,0,0,1578,1579,5,425,0,0,1579,1581,5,399, + 0,0,1580,1577,1,0,0,0,1580,1581,1,0,0,0,1581,1664,1,0,0,0,1582,1583, + 5,307,0,0,1583,1595,5,190,0,0,1584,1585,3,92,46,0,1585,1587,3,652, + 326,0,1586,1588,5,122,0,0,1587,1586,1,0,0,0,1587,1588,1,0,0,0,1588, + 1596,1,0,0,0,1589,1591,3,82,41,0,1590,1589,1,0,0,0,1590,1591,1,0, + 0,0,1591,1593,1,0,0,0,1592,1594,5,122,0,0,1593,1592,1,0,0,0,1593, + 1594,1,0,0,0,1594,1596,1,0,0,0,1595,1584,1,0,0,0,1595,1590,1,0,0, + 0,1596,1664,1,0,0,0,1597,1598,5,307,0,0,1598,1635,5,50,0,0,1599, + 1636,3,466,233,0,1600,1601,3,92,46,0,1601,1603,3,652,326,0,1602, + 1604,3,468,234,0,1603,1602,1,0,0,0,1603,1604,1,0,0,0,1604,1606,1, + 0,0,0,1605,1607,3,470,235,0,1606,1605,1,0,0,0,1606,1607,1,0,0,0, + 1607,1609,1,0,0,0,1608,1610,3,472,236,0,1609,1608,1,0,0,0,1609,1610, + 1,0,0,0,1610,1612,1,0,0,0,1611,1613,3,762,381,0,1612,1611,1,0,0, + 0,1612,1613,1,0,0,0,1613,1615,1,0,0,0,1614,1616,3,418,209,0,1615, + 1614,1,0,0,0,1615,1616,1,0,0,0,1616,1636,1,0,0,0,1617,1619,3,82, + 41,0,1618,1617,1,0,0,0,1618,1619,1,0,0,0,1619,1621,1,0,0,0,1620, + 1622,3,468,234,0,1621,1620,1,0,0,0,1621,1622,1,0,0,0,1622,1624,1, + 0,0,0,1623,1625,3,470,235,0,1624,1623,1,0,0,0,1624,1625,1,0,0,0, + 1625,1627,1,0,0,0,1626,1628,3,472,236,0,1627,1626,1,0,0,0,1627,1628, + 1,0,0,0,1628,1630,1,0,0,0,1629,1631,3,762,381,0,1630,1629,1,0,0, + 0,1630,1631,1,0,0,0,1631,1633,1,0,0,0,1632,1634,3,418,209,0,1633, + 1632,1,0,0,0,1633,1634,1,0,0,0,1634,1636,1,0,0,0,1635,1599,1,0,0, + 0,1635,1600,1,0,0,0,1635,1618,1,0,0,0,1636,1664,1,0,0,0,1637,1638, + 5,307,0,0,1638,1664,5,345,0,0,1639,1640,5,307,0,0,1640,1641,5,54, + 0,0,1641,1664,5,425,0,0,1642,1643,5,307,0,0,1643,1647,5,279,0,0, + 1644,1645,5,242,0,0,1645,1648,3,924,462,0,1646,1648,5,243,0,0,1647, + 1644,1,0,0,0,1647,1646,1,0,0,0,1648,1664,1,0,0,0,1649,1650,5,307, + 0,0,1650,1664,5,70,0,0,1651,1653,5,307,0,0,1652,1654,5,138,0,0,1653, + 1652,1,0,0,0,1653,1654,1,0,0,0,1654,1655,1,0,0,0,1655,1656,7,7,0, + 0,1656,1657,5,223,0,0,1657,1661,3,658,329,0,1658,1659,3,90,45,0, + 1659,1660,3,652,326,0,1660,1662,1,0,0,0,1661,1658,1,0,0,0,1661,1662, + 1,0,0,0,1662,1664,1,0,0,0,1663,1470,1,0,0,0,1663,1476,1,0,0,0,1663, + 1489,1,0,0,0,1663,1501,1,0,0,0,1663,1514,1,0,0,0,1663,1531,1,0,0, + 0,1663,1537,1,0,0,0,1663,1552,1,0,0,0,1663,1561,1,0,0,0,1663,1574, + 1,0,0,0,1663,1582,1,0,0,0,1663,1597,1,0,0,0,1663,1637,1,0,0,0,1663, + 1639,1,0,0,0,1663,1642,1,0,0,0,1663,1649,1,0,0,0,1663,1651,1,0,0, + 0,1664,95,1,0,0,0,1665,1666,5,383,0,0,1666,1667,3,924,462,0,1667, + 1668,5,404,0,0,1668,1669,5,425,0,0,1669,1674,1,0,0,0,1670,1671,5, + 183,0,0,1671,1674,3,216,108,0,1672,1674,3,216,108,0,1673,1665,1, + 0,0,0,1673,1670,1,0,0,0,1673,1672,1,0,0,0,1674,97,1,0,0,0,1675,1676, + 5,189,0,0,1676,1677,5,328,0,0,1677,1679,3,658,329,0,1678,1680,3, + 910,455,0,1679,1678,1,0,0,0,1679,1680,1,0,0,0,1680,1681,1,0,0,0, + 1681,1682,3,102,51,0,1682,99,1,0,0,0,1683,1684,5,189,0,0,1684,1685, + 3,92,46,0,1685,1686,3,652,326,0,1686,1687,3,102,51,0,1687,101,1, + 0,0,0,1688,1689,7,8,0,0,1689,103,1,0,0,0,1690,1691,5,360,0,0,1691, + 1692,5,328,0,0,1692,1694,3,658,329,0,1693,1695,3,910,455,0,1694, + 1693,1,0,0,0,1694,1695,1,0,0,0,1695,105,1,0,0,0,1696,1697,5,360, + 0,0,1697,1698,3,92,46,0,1698,1699,3,652,326,0,1699,107,1,0,0,0,1700, + 1701,5,58,0,0,1701,1702,5,286,0,0,1702,1703,3,924,462,0,1703,109, + 1,0,0,0,1704,1705,5,101,0,0,1705,1706,5,286,0,0,1706,1707,3,924, + 462,0,1707,111,1,0,0,0,1708,1709,5,143,0,0,1709,1711,3,140,70,0, + 1710,1712,3,134,67,0,1711,1710,1,0,0,0,1711,1712,1,0,0,0,1712,1713, + 1,0,0,0,1713,1714,5,340,0,0,1714,1716,3,146,73,0,1715,1717,3,152, + 76,0,1716,1715,1,0,0,0,1716,1717,1,0,0,0,1717,113,1,0,0,0,1718,1720, + 5,282,0,0,1719,1721,3,154,77,0,1720,1719,1,0,0,0,1720,1721,1,0,0, + 0,1721,1722,1,0,0,0,1722,1724,3,140,70,0,1723,1725,3,134,67,0,1724, + 1723,1,0,0,0,1724,1725,1,0,0,0,1725,1726,1,0,0,0,1726,1727,5,139, + 0,0,1727,1728,3,146,73,0,1728,115,1,0,0,0,1729,1731,5,143,0,0,1730, + 1732,5,286,0,0,1731,1730,1,0,0,0,1731,1732,1,0,0,0,1732,1733,1,0, + 0,0,1733,1738,3,924,462,0,1734,1735,5,396,0,0,1735,1737,3,924,462, + 0,1736,1734,1,0,0,0,1737,1740,1,0,0,0,1738,1736,1,0,0,0,1738,1739, + 1,0,0,0,1739,1741,1,0,0,0,1740,1738,1,0,0,0,1741,1742,5,340,0,0, + 1742,1744,3,146,73,0,1743,1745,3,158,79,0,1744,1743,1,0,0,0,1744, + 1745,1,0,0,0,1745,117,1,0,0,0,1746,1748,5,282,0,0,1747,1749,3,156, + 78,0,1748,1747,1,0,0,0,1748,1749,1,0,0,0,1749,1751,1,0,0,0,1750, + 1752,5,286,0,0,1751,1750,1,0,0,0,1751,1752,1,0,0,0,1752,1753,1,0, + 0,0,1753,1758,3,924,462,0,1754,1755,5,396,0,0,1755,1757,3,924,462, + 0,1756,1754,1,0,0,0,1757,1760,1,0,0,0,1758,1756,1,0,0,0,1758,1759, + 1,0,0,0,1759,1761,1,0,0,0,1760,1758,1,0,0,0,1761,1762,5,139,0,0, + 1762,1763,3,146,73,0,1763,119,1,0,0,0,1764,1765,5,307,0,0,1765,1766, + 5,286,0,0,1766,1767,5,143,0,0,1767,1768,3,148,74,0,1768,121,1,0, + 0,0,1769,1770,5,307,0,0,1770,1771,5,287,0,0,1771,123,1,0,0,0,1772, + 1773,5,307,0,0,1773,1774,5,62,0,0,1774,1775,5,287,0,0,1775,125,1, + 0,0,0,1776,1777,5,303,0,0,1777,1781,5,286,0,0,1778,1782,5,7,0,0, + 1779,1782,5,212,0,0,1780,1782,3,924,462,0,1781,1778,1,0,0,0,1781, + 1779,1,0,0,0,1781,1780,1,0,0,0,1782,127,1,0,0,0,1783,1784,5,307, + 0,0,1784,1786,5,143,0,0,1785,1787,3,148,74,0,1786,1785,1,0,0,0,1786, + 1787,1,0,0,0,1787,1790,1,0,0,0,1788,1789,5,223,0,0,1789,1791,3,132, + 66,0,1790,1788,1,0,0,0,1790,1791,1,0,0,0,1791,129,1,0,0,0,1792,1793, + 5,307,0,0,1793,1794,5,251,0,0,1794,1795,3,924,462,0,1795,131,1,0, + 0,0,1796,1799,5,7,0,0,1797,1799,3,138,69,0,1798,1796,1,0,0,0,1798, + 1797,1,0,0,0,1799,133,1,0,0,0,1800,1801,5,223,0,0,1801,1802,3,136, + 68,0,1802,135,1,0,0,0,1803,1804,3,92,46,0,1804,1805,3,652,326,0, + 1805,1818,1,0,0,0,1806,1808,5,328,0,0,1807,1806,1,0,0,0,1807,1808, + 1,0,0,0,1808,1809,1,0,0,0,1809,1811,3,658,329,0,1810,1812,3,910, + 455,0,1811,1810,1,0,0,0,1811,1812,1,0,0,0,1812,1818,1,0,0,0,1813, + 1814,5,365,0,0,1814,1818,5,425,0,0,1815,1816,5,302,0,0,1816,1818, + 3,924,462,0,1817,1803,1,0,0,0,1817,1807,1,0,0,0,1817,1813,1,0,0, + 0,1817,1815,1,0,0,0,1818,137,1,0,0,0,1819,1820,3,92,46,0,1820,1821, + 3,652,326,0,1821,1840,1,0,0,0,1822,1824,5,328,0,0,1823,1822,1,0, + 0,0,1823,1824,1,0,0,0,1824,1825,1,0,0,0,1825,1830,3,658,329,0,1826, + 1827,5,398,0,0,1827,1828,3,280,140,0,1828,1829,5,399,0,0,1829,1831, + 1,0,0,0,1830,1826,1,0,0,0,1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832, + 1834,3,910,455,0,1833,1832,1,0,0,0,1833,1834,1,0,0,0,1834,1840,1, + 0,0,0,1835,1836,5,365,0,0,1836,1840,5,425,0,0,1837,1838,5,302,0, + 0,1838,1840,3,924,462,0,1839,1819,1,0,0,0,1839,1823,1,0,0,0,1839, + 1835,1,0,0,0,1839,1837,1,0,0,0,1840,139,1,0,0,0,1841,1846,3,142, + 71,0,1842,1843,5,396,0,0,1843,1845,3,142,71,0,1844,1842,1,0,0,0, + 1845,1848,1,0,0,0,1846,1844,1,0,0,0,1846,1847,1,0,0,0,1847,141,1, + 0,0,0,1848,1846,1,0,0,0,1849,1854,3,144,72,0,1850,1851,5,398,0,0, + 1851,1852,3,280,140,0,1852,1853,5,399,0,0,1853,1855,1,0,0,0,1854, + 1850,1,0,0,0,1854,1855,1,0,0,0,1855,143,1,0,0,0,1856,1857,7,9,0, + 0,1857,145,1,0,0,0,1858,1863,3,148,74,0,1859,1860,5,396,0,0,1860, + 1862,3,148,74,0,1861,1859,1,0,0,0,1862,1865,1,0,0,0,1863,1861,1, + 0,0,0,1863,1864,1,0,0,0,1864,147,1,0,0,0,1865,1863,1,0,0,0,1866, + 1867,5,368,0,0,1867,1873,3,928,464,0,1868,1869,5,144,0,0,1869,1873, + 3,928,464,0,1870,1871,5,286,0,0,1871,1873,3,924,462,0,1872,1866, + 1,0,0,0,1872,1868,1,0,0,0,1872,1870,1,0,0,0,1873,149,1,0,0,0,1874, + 1875,5,368,0,0,1875,1880,3,928,464,0,1876,1877,5,286,0,0,1877,1880, + 3,924,462,0,1878,1880,3,924,462,0,1879,1874,1,0,0,0,1879,1876,1, + 0,0,0,1879,1878,1,0,0,0,1880,151,1,0,0,0,1881,1882,5,386,0,0,1882, + 1883,5,143,0,0,1883,1884,5,226,0,0,1884,153,1,0,0,0,1885,1886,5, + 143,0,0,1886,1887,5,226,0,0,1887,1888,5,134,0,0,1888,155,1,0,0,0, + 1889,1890,5,5,0,0,1890,1891,5,226,0,0,1891,1892,5,134,0,0,1892,157, + 1,0,0,0,1893,1894,5,386,0,0,1894,1895,5,5,0,0,1895,1896,5,226,0, + 0,1896,159,1,0,0,0,1897,1899,5,211,0,0,1898,1900,5,275,0,0,1899, + 1898,1,0,0,0,1899,1900,1,0,0,0,1900,1901,1,0,0,0,1901,1902,5,328, + 0,0,1902,1908,3,658,329,0,1903,1904,7,10,0,0,1904,1906,5,238,0,0, + 1905,1907,3,914,457,0,1906,1905,1,0,0,0,1906,1907,1,0,0,0,1907,1909, + 1,0,0,0,1908,1903,1,0,0,0,1908,1909,1,0,0,0,1909,161,1,0,0,0,1910, + 1915,3,164,82,0,1911,1912,5,396,0,0,1912,1914,3,164,82,0,1913,1911, + 1,0,0,0,1914,1917,1,0,0,0,1915,1913,1,0,0,0,1915,1916,1,0,0,0,1916, + 163,1,0,0,0,1917,1915,1,0,0,0,1918,1919,3,166,83,0,1919,1920,5,425, + 0,0,1920,165,1,0,0,0,1921,1922,7,11,0,0,1922,167,1,0,0,0,1923,1925, + 5,58,0,0,1924,1926,5,332,0,0,1925,1924,1,0,0,0,1925,1926,1,0,0,0, + 1926,1927,1,0,0,0,1927,1928,5,141,0,0,1928,1929,3,778,389,0,1929, + 1930,5,17,0,0,1930,1933,5,425,0,0,1931,1932,5,369,0,0,1932,1934, + 3,162,81,0,1933,1931,1,0,0,0,1933,1934,1,0,0,0,1934,169,1,0,0,0, + 1935,1937,5,101,0,0,1936,1938,5,332,0,0,1937,1936,1,0,0,0,1937,1938, + 1,0,0,0,1938,1939,1,0,0,0,1939,1941,5,141,0,0,1940,1942,3,40,20, + 0,1941,1940,1,0,0,0,1941,1942,1,0,0,0,1942,1943,1,0,0,0,1943,1944, + 3,780,390,0,1944,171,1,0,0,0,1945,1946,5,270,0,0,1946,1947,7,12, + 0,0,1947,173,1,0,0,0,1948,1949,5,58,0,0,1949,1950,5,332,0,0,1950, + 1951,5,193,0,0,1951,1952,5,431,0,0,1952,1954,5,398,0,0,1953,1955, + 3,274,137,0,1954,1953,1,0,0,0,1954,1955,1,0,0,0,1955,1956,1,0,0, + 0,1956,1957,5,399,0,0,1957,1958,3,826,413,0,1958,175,1,0,0,0,1959, + 1960,5,101,0,0,1960,1961,5,332,0,0,1961,1963,5,193,0,0,1962,1964, + 3,40,20,0,1963,1962,1,0,0,0,1963,1964,1,0,0,0,1964,1965,1,0,0,0, + 1965,1966,5,431,0,0,1966,177,1,0,0,0,1967,1968,5,58,0,0,1968,1969, + 5,155,0,0,1969,1970,3,924,462,0,1970,1971,5,223,0,0,1971,1972,5, + 328,0,0,1972,1973,3,658,329,0,1973,1974,3,290,145,0,1974,1975,5, + 17,0,0,1975,1979,5,425,0,0,1976,1977,5,386,0,0,1977,1978,5,84,0, + 0,1978,1980,5,264,0,0,1979,1976,1,0,0,0,1979,1980,1,0,0,0,1980,1983, + 1,0,0,0,1981,1982,5,150,0,0,1982,1984,3,252,126,0,1983,1981,1,0, + 0,0,1983,1984,1,0,0,0,1984,1988,1,0,0,0,1985,1986,5,154,0,0,1986, + 1987,5,328,0,0,1987,1989,3,658,329,0,1988,1985,1,0,0,0,1988,1989, + 1,0,0,0,1989,1993,1,0,0,0,1990,1991,5,237,0,0,1991,1992,5,32,0,0, + 1992,1994,3,290,145,0,1993,1990,1,0,0,0,1993,1994,1,0,0,0,1994,1999, + 1,0,0,0,1995,1997,3,248,124,0,1996,1995,1,0,0,0,1996,1997,1,0,0, + 0,1997,1998,1,0,0,0,1998,2000,3,270,135,0,1999,1996,1,0,0,0,1999, + 2000,1,0,0,0,2000,2003,1,0,0,0,2001,2002,5,188,0,0,2002,2004,5,425, + 0,0,2003,2001,1,0,0,0,2003,2004,1,0,0,0,2004,2006,1,0,0,0,2005,2007, + 3,250,125,0,2006,2005,1,0,0,0,2006,2007,1,0,0,0,2007,2009,1,0,0, + 0,2008,2010,3,218,109,0,2009,2008,1,0,0,0,2009,2010,1,0,0,0,2010, + 179,1,0,0,0,2011,2012,5,101,0,0,2012,2014,5,155,0,0,2013,2015,3, + 40,20,0,2014,2013,1,0,0,0,2014,2015,1,0,0,0,2015,2016,1,0,0,0,2016, + 2017,3,924,462,0,2017,2018,5,223,0,0,2018,2019,3,658,329,0,2019, + 181,1,0,0,0,2020,2022,5,58,0,0,2021,2023,3,54,27,0,2022,2021,1,0, + 0,0,2022,2023,1,0,0,0,2023,2024,1,0,0,0,2024,2026,5,377,0,0,2025, + 2027,3,44,22,0,2026,2025,1,0,0,0,2026,2027,1,0,0,0,2027,2028,1,0, + 0,0,2028,2033,3,664,332,0,2029,2030,5,398,0,0,2030,2031,3,334,167, + 0,2031,2032,5,399,0,0,2032,2034,1,0,0,0,2033,2029,1,0,0,0,2033,2034, + 1,0,0,0,2034,2036,1,0,0,0,2035,2037,3,218,109,0,2036,2035,1,0,0, + 0,2036,2037,1,0,0,0,2037,2039,1,0,0,0,2038,2040,3,184,92,0,2039, + 2038,1,0,0,0,2039,2040,1,0,0,0,2040,2042,1,0,0,0,2041,2043,3,250, + 125,0,2042,2041,1,0,0,0,2042,2043,1,0,0,0,2043,2044,1,0,0,0,2044, + 2045,5,17,0,0,2045,2046,3,412,206,0,2046,183,1,0,0,0,2047,2048,5, + 237,0,0,2048,2054,5,223,0,0,2049,2050,5,398,0,0,2050,2055,3,280, + 140,0,2051,2052,5,315,0,0,2052,2053,5,398,0,0,2053,2055,3,226,113, + 0,2054,2049,1,0,0,0,2054,2051,1,0,0,0,2055,2056,1,0,0,0,2056,2057, + 5,399,0,0,2057,185,1,0,0,0,2058,2061,3,188,94,0,2059,2061,3,190, + 95,0,2060,2058,1,0,0,0,2060,2059,1,0,0,0,2061,187,1,0,0,0,2062,2063, + 5,42,0,0,2063,2064,5,223,0,0,2064,2065,5,398,0,0,2065,2066,3,280, + 140,0,2066,2067,5,399,0,0,2067,189,1,0,0,0,2068,2069,3,192,96,0, + 2069,2070,3,194,97,0,2070,191,1,0,0,0,2071,2072,5,98,0,0,2072,2073, + 5,223,0,0,2073,2074,5,398,0,0,2074,2075,3,280,140,0,2075,2076,5, + 399,0,0,2076,193,1,0,0,0,2077,2078,5,314,0,0,2078,2079,5,223,0,0, + 2079,2080,5,398,0,0,2080,2081,3,280,140,0,2081,2082,5,399,0,0,2082, + 195,1,0,0,0,2083,2084,5,101,0,0,2084,2086,5,377,0,0,2085,2087,3, + 40,20,0,2086,2085,1,0,0,0,2086,2087,1,0,0,0,2087,2088,1,0,0,0,2088, + 2089,3,662,331,0,2089,197,1,0,0,0,2090,2091,5,58,0,0,2091,2092,5, + 201,0,0,2092,2094,5,377,0,0,2093,2095,3,44,22,0,2094,2093,1,0,0, + 0,2094,2095,1,0,0,0,2095,2096,1,0,0,0,2096,2098,3,664,332,0,2097, + 2099,3,50,25,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,2101,1,0, + 0,0,2100,2102,3,218,109,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102, + 2104,1,0,0,0,2103,2105,3,184,92,0,2104,2103,1,0,0,0,2104,2105,1, + 0,0,0,2105,2107,1,0,0,0,2106,2108,3,186,93,0,2107,2106,1,0,0,0,2107, + 2108,1,0,0,0,2108,2110,1,0,0,0,2109,2111,3,248,124,0,2110,2109,1, + 0,0,0,2110,2111,1,0,0,0,2111,2113,1,0,0,0,2112,2114,3,270,135,0, + 2113,2112,1,0,0,0,2113,2114,1,0,0,0,2114,2116,1,0,0,0,2115,2117, + 3,272,136,0,2116,2115,1,0,0,0,2116,2117,1,0,0,0,2117,2119,1,0,0, + 0,2118,2120,3,250,125,0,2119,2118,1,0,0,0,2119,2120,1,0,0,0,2120, + 2121,1,0,0,0,2121,2122,5,17,0,0,2122,2123,3,412,206,0,2123,199,1, + 0,0,0,2124,2125,5,101,0,0,2125,2126,5,201,0,0,2126,2128,5,377,0, + 0,2127,2129,3,40,20,0,2128,2127,1,0,0,0,2128,2129,1,0,0,0,2129,2130, + 1,0,0,0,2130,2131,3,662,331,0,2131,201,1,0,0,0,2132,2133,5,58,0, + 0,2133,2134,5,292,0,0,2134,2135,5,257,0,0,2135,2136,3,924,462,0, + 2136,2138,3,210,105,0,2137,2139,3,212,106,0,2138,2137,1,0,0,0,2138, + 2139,1,0,0,0,2139,2141,1,0,0,0,2140,2142,3,294,147,0,2141,2140,1, + 0,0,0,2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2144,3,214,107,0, + 2144,203,1,0,0,0,2145,2146,5,101,0,0,2146,2147,5,292,0,0,2147,2148, + 5,257,0,0,2148,2149,3,924,462,0,2149,205,1,0,0,0,2150,2151,5,9,0, + 0,2151,2152,5,292,0,0,2152,2153,5,257,0,0,2153,2154,3,924,462,0, + 2154,2155,3,208,104,0,2155,207,1,0,0,0,2156,2162,3,210,105,0,2157, + 2162,3,212,106,0,2158,2162,3,294,147,0,2159,2162,3,214,107,0,2160, + 2162,5,115,0,0,2161,2156,1,0,0,0,2161,2157,1,0,0,0,2161,2158,1,0, + 0,0,2161,2159,1,0,0,0,2161,2160,1,0,0,0,2162,209,1,0,0,0,2163,2164, + 5,59,0,0,2164,2179,5,425,0,0,2165,2167,5,111,0,0,2166,2168,5,430, + 0,0,2167,2166,1,0,0,0,2167,2168,1,0,0,0,2168,2169,1,0,0,0,2169,2176, + 3,824,412,0,2170,2174,5,20,0,0,2171,2172,5,222,0,0,2172,2174,5,32, + 0,0,2173,2170,1,0,0,0,2173,2171,1,0,0,0,2174,2175,1,0,0,0,2175,2177, + 5,425,0,0,2176,2173,1,0,0,0,2176,2177,1,0,0,0,2177,2179,1,0,0,0, + 2178,2163,1,0,0,0,2178,2165,1,0,0,0,2179,211,1,0,0,0,2180,2181,5, + 116,0,0,2181,2182,5,17,0,0,2182,2183,5,425,0,0,2183,213,1,0,0,0, + 2184,2186,5,85,0,0,2185,2184,1,0,0,0,2185,2186,1,0,0,0,2186,2187, + 1,0,0,0,2187,2188,5,17,0,0,2188,2189,3,2,1,0,2189,215,1,0,0,0,2190, + 2193,3,924,462,0,2191,2193,5,425,0,0,2192,2190,1,0,0,0,2192,2191, + 1,0,0,0,2193,217,1,0,0,0,2194,2195,5,47,0,0,2195,2196,5,425,0,0, + 2196,219,1,0,0,0,2197,2198,5,237,0,0,2198,2207,5,32,0,0,2199,2202, + 5,398,0,0,2200,2203,3,222,111,0,2201,2203,3,224,112,0,2202,2200, + 1,0,0,0,2202,2201,1,0,0,0,2203,2208,1,0,0,0,2204,2205,5,315,0,0, + 2205,2206,5,398,0,0,2206,2208,3,226,113,0,2207,2199,1,0,0,0,2207, + 2204,1,0,0,0,2208,2209,1,0,0,0,2209,2210,5,399,0,0,2210,221,1,0, + 0,0,2211,2216,3,348,174,0,2212,2213,5,396,0,0,2213,2215,3,348,174, + 0,2214,2212,1,0,0,0,2215,2218,1,0,0,0,2216,2214,1,0,0,0,2216,2217, + 1,0,0,0,2217,223,1,0,0,0,2218,2216,1,0,0,0,2219,2224,3,282,141,0, + 2220,2221,5,396,0,0,2221,2223,3,282,141,0,2222,2220,1,0,0,0,2223, + 2226,1,0,0,0,2224,2222,1,0,0,0,2224,2225,1,0,0,0,2225,225,1,0,0, + 0,2226,2224,1,0,0,0,2227,2232,3,228,114,0,2228,2229,5,396,0,0,2229, + 2231,3,228,114,0,2230,2228,1,0,0,0,2231,2234,1,0,0,0,2232,2230,1, + 0,0,0,2232,2233,1,0,0,0,2233,227,1,0,0,0,2234,2232,1,0,0,0,2235, + 2236,3,230,115,0,2236,229,1,0,0,0,2237,2256,3,282,141,0,2238,2243, + 3,974,487,0,2239,2243,3,976,488,0,2240,2243,3,980,490,0,2241,2243, + 3,982,491,0,2242,2238,1,0,0,0,2242,2239,1,0,0,0,2242,2240,1,0,0, + 0,2242,2241,1,0,0,0,2243,2244,1,0,0,0,2244,2245,5,398,0,0,2245,2246, + 3,282,141,0,2246,2247,5,399,0,0,2247,2256,1,0,0,0,2248,2249,7,13, + 0,0,2249,2250,5,398,0,0,2250,2251,5,430,0,0,2251,2252,5,396,0,0, + 2252,2253,3,282,141,0,2253,2254,5,399,0,0,2254,2256,1,0,0,0,2255, + 2237,1,0,0,0,2255,2242,1,0,0,0,2255,2248,1,0,0,0,2256,231,1,0,0, + 0,2257,2258,5,42,0,0,2258,2259,5,32,0,0,2259,2260,5,398,0,0,2260, + 2261,3,280,140,0,2261,2268,5,399,0,0,2262,2263,5,314,0,0,2263,2264, + 5,32,0,0,2264,2265,5,398,0,0,2265,2266,3,288,144,0,2266,2267,5,399, + 0,0,2267,2269,1,0,0,0,2268,2262,1,0,0,0,2268,2269,1,0,0,0,2269,2270, + 1,0,0,0,2270,2271,5,166,0,0,2271,2272,5,430,0,0,2272,2273,5,31,0, + 0,2273,233,1,0,0,0,2274,2275,5,42,0,0,2275,2276,5,166,0,0,2276,2277, + 5,430,0,0,2277,2278,5,31,0,0,2278,235,1,0,0,0,2279,2280,5,309,0, + 0,2280,2281,5,32,0,0,2281,2282,5,398,0,0,2282,2283,3,280,140,0,2283, + 2284,5,399,0,0,2284,2285,5,223,0,0,2285,2286,5,398,0,0,2286,2287, + 3,316,158,0,2287,2289,5,399,0,0,2288,2290,3,52,26,0,2289,2288,1, + 0,0,0,2289,2290,1,0,0,0,2290,237,1,0,0,0,2291,2294,3,244,122,0,2292, + 2294,3,246,123,0,2293,2291,1,0,0,0,2293,2292,1,0,0,0,2294,239,1, + 0,0,0,2295,2296,5,265,0,0,2296,2297,5,425,0,0,2297,241,1,0,0,0,2298, + 2299,5,266,0,0,2299,2300,5,425,0,0,2300,243,1,0,0,0,2301,2302,5, + 290,0,0,2302,2303,5,137,0,0,2303,2304,5,300,0,0,2304,2308,5,425, + 0,0,2305,2306,5,386,0,0,2306,2307,5,301,0,0,2307,2309,3,252,126, + 0,2308,2305,1,0,0,0,2308,2309,1,0,0,0,2309,245,1,0,0,0,2310,2311, + 5,290,0,0,2311,2312,5,137,0,0,2312,2314,5,87,0,0,2313,2315,3,260, + 130,0,2314,2313,1,0,0,0,2314,2315,1,0,0,0,2315,2317,1,0,0,0,2316, + 2318,3,262,131,0,2317,2316,1,0,0,0,2317,2318,1,0,0,0,2318,2320,1, + 0,0,0,2319,2321,3,264,132,0,2320,2319,1,0,0,0,2320,2321,1,0,0,0, + 2321,2323,1,0,0,0,2322,2324,3,266,133,0,2323,2322,1,0,0,0,2323,2324, + 1,0,0,0,2324,2326,1,0,0,0,2325,2327,3,268,134,0,2326,2325,1,0,0, + 0,2326,2327,1,0,0,0,2327,247,1,0,0,0,2328,2331,3,246,123,0,2329, + 2331,3,244,122,0,2330,2328,1,0,0,0,2330,2329,1,0,0,0,2331,249,1, + 0,0,0,2332,2333,5,331,0,0,2333,2334,3,252,126,0,2334,251,1,0,0,0, + 2335,2336,5,398,0,0,2336,2337,3,254,127,0,2337,2338,5,399,0,0,2338, + 253,1,0,0,0,2339,2344,3,256,128,0,2340,2341,5,396,0,0,2341,2343, + 3,256,128,0,2342,2340,1,0,0,0,2343,2346,1,0,0,0,2344,2342,1,0,0, + 0,2344,2345,1,0,0,0,2345,2356,1,0,0,0,2346,2344,1,0,0,0,2347,2352, + 3,258,129,0,2348,2349,5,396,0,0,2349,2351,3,258,129,0,2350,2348, + 1,0,0,0,2351,2354,1,0,0,0,2352,2350,1,0,0,0,2352,2353,1,0,0,0,2353, + 2356,1,0,0,0,2354,2352,1,0,0,0,2355,2339,1,0,0,0,2355,2347,1,0,0, + 0,2356,255,1,0,0,0,2357,2358,5,425,0,0,2358,2359,5,404,0,0,2359, + 2360,5,425,0,0,2360,257,1,0,0,0,2361,2362,5,425,0,0,2362,259,1,0, + 0,0,2363,2364,5,127,0,0,2364,2365,5,333,0,0,2365,2366,5,32,0,0,2366, + 2370,5,425,0,0,2367,2368,5,110,0,0,2368,2369,5,32,0,0,2369,2371, + 5,425,0,0,2370,2367,1,0,0,0,2370,2371,1,0,0,0,2371,261,1,0,0,0,2372, + 2373,5,44,0,0,2373,2374,5,169,0,0,2374,2375,5,333,0,0,2375,2376, + 5,32,0,0,2376,2377,5,425,0,0,2377,263,1,0,0,0,2378,2379,5,197,0, + 0,2379,2380,5,174,0,0,2380,2381,5,333,0,0,2381,2382,5,32,0,0,2382, + 2383,5,425,0,0,2383,265,1,0,0,0,2384,2385,5,185,0,0,2385,2386,5, + 333,0,0,2386,2387,5,32,0,0,2387,2388,5,425,0,0,2388,267,1,0,0,0, + 2389,2390,5,218,0,0,2390,2391,5,85,0,0,2391,2392,5,17,0,0,2392,2393, + 5,425,0,0,2393,269,1,0,0,0,2394,2395,5,320,0,0,2395,2396,5,17,0, + 0,2396,2397,5,160,0,0,2397,2398,5,425,0,0,2398,2399,5,232,0,0,2399, + 2404,5,425,0,0,2400,2401,5,159,0,0,2401,2402,5,425,0,0,2402,2403, + 5,231,0,0,2403,2405,5,425,0,0,2404,2400,1,0,0,0,2404,2405,1,0,0, + 0,2405,2436,1,0,0,0,2406,2407,5,320,0,0,2407,2408,5,32,0,0,2408, + 2412,5,425,0,0,2409,2410,5,386,0,0,2410,2411,5,301,0,0,2411,2413, + 3,252,126,0,2412,2409,1,0,0,0,2412,2413,1,0,0,0,2413,2417,1,0,0, + 0,2414,2415,5,320,0,0,2415,2416,5,17,0,0,2416,2418,3,924,462,0,2417, + 2414,1,0,0,0,2417,2418,1,0,0,0,2418,2436,1,0,0,0,2419,2420,5,320, + 0,0,2420,2421,5,32,0,0,2421,2425,3,924,462,0,2422,2423,5,386,0,0, + 2423,2424,5,301,0,0,2424,2426,3,252,126,0,2425,2422,1,0,0,0,2425, + 2426,1,0,0,0,2426,2430,1,0,0,0,2427,2428,5,320,0,0,2428,2429,5,17, + 0,0,2429,2431,3,924,462,0,2430,2427,1,0,0,0,2430,2431,1,0,0,0,2431, + 2436,1,0,0,0,2432,2433,5,320,0,0,2433,2434,5,17,0,0,2434,2436,3, + 924,462,0,2435,2394,1,0,0,0,2435,2406,1,0,0,0,2435,2419,1,0,0,0, + 2435,2432,1,0,0,0,2436,271,1,0,0,0,2437,2438,5,188,0,0,2438,2439, + 5,425,0,0,2439,273,1,0,0,0,2440,2445,3,342,171,0,2441,2442,5,396, + 0,0,2442,2444,3,342,171,0,2443,2441,1,0,0,0,2444,2447,1,0,0,0,2445, + 2443,1,0,0,0,2445,2446,1,0,0,0,2446,275,1,0,0,0,2447,2445,1,0,0, + 0,2448,2453,3,344,172,0,2449,2450,5,396,0,0,2450,2452,3,344,172, + 0,2451,2449,1,0,0,0,2452,2455,1,0,0,0,2453,2451,1,0,0,0,2453,2454, + 1,0,0,0,2454,277,1,0,0,0,2455,2453,1,0,0,0,2456,2461,3,372,186,0, + 2457,2458,5,396,0,0,2458,2460,3,372,186,0,2459,2457,1,0,0,0,2460, + 2463,1,0,0,0,2461,2459,1,0,0,0,2461,2462,1,0,0,0,2462,279,1,0,0, + 0,2463,2461,1,0,0,0,2464,2469,3,282,141,0,2465,2466,5,396,0,0,2466, + 2468,3,282,141,0,2467,2465,1,0,0,0,2468,2471,1,0,0,0,2469,2467,1, + 0,0,0,2469,2470,1,0,0,0,2470,281,1,0,0,0,2471,2469,1,0,0,0,2472, + 2477,3,924,462,0,2473,2474,5,394,0,0,2474,2476,3,924,462,0,2475, + 2473,1,0,0,0,2476,2479,1,0,0,0,2477,2475,1,0,0,0,2477,2478,1,0,0, + 0,2478,2482,1,0,0,0,2479,2477,1,0,0,0,2480,2482,4,141,0,0,2481,2472, + 1,0,0,0,2481,2480,1,0,0,0,2482,283,1,0,0,0,2483,2484,3,924,462,0, + 2484,285,1,0,0,0,2485,2495,3,282,141,0,2486,2491,5,394,0,0,2487, + 2492,5,104,0,0,2488,2492,5,175,0,0,2489,2492,5,374,0,0,2490,2492, + 3,924,462,0,2491,2487,1,0,0,0,2491,2488,1,0,0,0,2491,2489,1,0,0, + 0,2491,2490,1,0,0,0,2492,2494,1,0,0,0,2493,2486,1,0,0,0,2494,2497, + 1,0,0,0,2495,2493,1,0,0,0,2495,2496,1,0,0,0,2496,287,1,0,0,0,2497, + 2495,1,0,0,0,2498,2503,3,332,166,0,2499,2500,5,396,0,0,2500,2502, + 3,332,166,0,2501,2499,1,0,0,0,2502,2505,1,0,0,0,2503,2501,1,0,0, + 0,2503,2504,1,0,0,0,2504,289,1,0,0,0,2505,2503,1,0,0,0,2506,2507, + 5,398,0,0,2507,2508,3,280,140,0,2508,2509,5,399,0,0,2509,291,1,0, + 0,0,2510,2512,3,294,147,0,2511,2513,3,296,148,0,2512,2511,1,0,0, + 0,2512,2513,1,0,0,0,2513,2516,1,0,0,0,2514,2516,3,298,149,0,2515, + 2510,1,0,0,0,2515,2514,1,0,0,0,2516,293,1,0,0,0,2517,2520,3,968, + 484,0,2518,2520,3,970,485,0,2519,2517,1,0,0,0,2519,2518,1,0,0,0, + 2520,295,1,0,0,0,2521,2522,7,14,0,0,2522,297,1,0,0,0,2523,2527,5, + 109,0,0,2524,2525,5,215,0,0,2525,2527,5,109,0,0,2526,2523,1,0,0, + 0,2526,2524,1,0,0,0,2527,299,1,0,0,0,2528,2529,7,15,0,0,2529,301, + 1,0,0,0,2530,2531,5,55,0,0,2531,2533,3,924,462,0,2532,2530,1,0,0, + 0,2532,2533,1,0,0,0,2533,2534,1,0,0,0,2534,2536,3,306,153,0,2535, + 2537,3,368,184,0,2536,2535,1,0,0,0,2536,2537,1,0,0,0,2537,303,1, + 0,0,0,2538,2539,5,55,0,0,2539,2540,3,924,462,0,2540,2542,3,306,153, + 0,2541,2543,3,370,185,0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543, + 305,1,0,0,0,2544,2547,3,308,154,0,2545,2547,3,310,155,0,2546,2544, + 1,0,0,0,2546,2545,1,0,0,0,2547,307,1,0,0,0,2548,2549,3,366,183,0, + 2549,2550,3,290,145,0,2550,309,1,0,0,0,2551,2552,5,40,0,0,2552,2553, + 5,398,0,0,2553,2554,3,826,413,0,2554,2555,5,399,0,0,2555,311,1,0, + 0,0,2556,2557,5,55,0,0,2557,2559,3,924,462,0,2558,2556,1,0,0,0,2558, + 2559,1,0,0,0,2559,2560,1,0,0,0,2560,2561,5,136,0,0,2561,2562,5,173, + 0,0,2562,2563,3,290,145,0,2563,2564,5,268,0,0,2564,2565,3,658,329, + 0,2565,2567,3,290,145,0,2566,2568,3,368,184,0,2567,2566,1,0,0,0, + 2567,2568,1,0,0,0,2568,313,1,0,0,0,2569,2570,5,55,0,0,2570,2571, + 3,924,462,0,2571,2572,5,136,0,0,2572,2573,5,173,0,0,2573,2574,3, + 290,145,0,2574,2575,5,268,0,0,2575,2576,3,658,329,0,2576,2578,3, + 290,145,0,2577,2579,3,370,185,0,2578,2577,1,0,0,0,2578,2579,1,0, + 0,0,2579,315,1,0,0,0,2580,2583,3,322,161,0,2581,2583,3,318,159,0, + 2582,2580,1,0,0,0,2582,2581,1,0,0,0,2583,317,1,0,0,0,2584,2589,3, + 320,160,0,2585,2586,5,396,0,0,2586,2588,3,320,160,0,2587,2585,1, + 0,0,0,2588,2591,1,0,0,0,2589,2587,1,0,0,0,2589,2590,1,0,0,0,2590, + 319,1,0,0,0,2591,2589,1,0,0,0,2592,2593,5,398,0,0,2593,2594,3,322, + 161,0,2594,2595,5,399,0,0,2595,321,1,0,0,0,2596,2601,3,324,162,0, + 2597,2598,5,396,0,0,2598,2600,3,324,162,0,2599,2597,1,0,0,0,2600, + 2603,1,0,0,0,2601,2599,1,0,0,0,2601,2602,1,0,0,0,2602,323,1,0,0, + 0,2603,2601,1,0,0,0,2604,2605,3,802,401,0,2605,325,1,0,0,0,2606, + 2609,3,324,162,0,2607,2609,3,320,160,0,2608,2606,1,0,0,0,2608,2607, + 1,0,0,0,2609,327,1,0,0,0,2610,2611,7,16,0,0,2611,329,1,0,0,0,2612, + 2613,5,219,0,0,2613,2614,7,17,0,0,2614,331,1,0,0,0,2615,2617,3,282, + 141,0,2616,2618,3,328,164,0,2617,2616,1,0,0,0,2617,2618,1,0,0,0, + 2618,2620,1,0,0,0,2619,2621,3,330,165,0,2620,2619,1,0,0,0,2620,2621, + 1,0,0,0,2621,333,1,0,0,0,2622,2627,3,336,168,0,2623,2624,5,396,0, + 0,2624,2626,3,336,168,0,2625,2623,1,0,0,0,2626,2629,1,0,0,0,2627, + 2625,1,0,0,0,2627,2628,1,0,0,0,2628,335,1,0,0,0,2629,2627,1,0,0, + 0,2630,2633,3,284,142,0,2631,2632,5,47,0,0,2632,2634,5,425,0,0,2633, + 2631,1,0,0,0,2633,2634,1,0,0,0,2634,337,1,0,0,0,2635,2636,7,16,0, + 0,2636,339,1,0,0,0,2637,2640,3,282,141,0,2638,2640,3,826,413,0,2639, + 2637,1,0,0,0,2639,2638,1,0,0,0,2640,2642,1,0,0,0,2641,2643,3,338, + 169,0,2642,2641,1,0,0,0,2642,2643,1,0,0,0,2643,2645,1,0,0,0,2644, + 2646,3,330,165,0,2645,2644,1,0,0,0,2645,2646,1,0,0,0,2646,341,1, + 0,0,0,2647,2648,3,284,142,0,2648,2651,3,374,187,0,2649,2650,5,47, + 0,0,2650,2652,5,425,0,0,2651,2649,1,0,0,0,2651,2652,1,0,0,0,2652, + 343,1,0,0,0,2653,2656,3,346,173,0,2654,2656,3,348,174,0,2655,2653, + 1,0,0,0,2655,2654,1,0,0,0,2656,345,1,0,0,0,2657,2660,3,312,156,0, + 2658,2660,3,302,151,0,2659,2657,1,0,0,0,2659,2658,1,0,0,0,2660,347, + 1,0,0,0,2661,2662,3,284,142,0,2662,2664,3,374,187,0,2663,2665,3, + 350,175,0,2664,2663,1,0,0,0,2664,2665,1,0,0,0,2665,2668,1,0,0,0, + 2666,2667,5,47,0,0,2667,2669,5,425,0,0,2668,2666,1,0,0,0,2668,2669, + 1,0,0,0,2669,349,1,0,0,0,2670,2673,3,352,176,0,2671,2673,3,354,177, + 0,2672,2670,1,0,0,0,2672,2671,1,0,0,0,2673,351,1,0,0,0,2674,2675, + 5,55,0,0,2675,2677,3,924,462,0,2676,2674,1,0,0,0,2676,2677,1,0,0, + 0,2677,2678,1,0,0,0,2678,2679,5,268,0,0,2679,2680,3,658,329,0,2680, + 2681,5,398,0,0,2681,2682,3,282,141,0,2682,2684,5,399,0,0,2683,2685, + 3,368,184,0,2684,2683,1,0,0,0,2684,2685,1,0,0,0,2685,353,1,0,0,0, + 2686,2687,5,55,0,0,2687,2689,3,924,462,0,2688,2686,1,0,0,0,2688, + 2689,1,0,0,0,2689,2690,1,0,0,0,2690,2692,3,362,181,0,2691,2693,3, + 368,184,0,2692,2691,1,0,0,0,2692,2693,1,0,0,0,2693,355,1,0,0,0,2694, + 2697,3,358,179,0,2695,2697,3,360,180,0,2696,2694,1,0,0,0,2696,2695, + 1,0,0,0,2697,357,1,0,0,0,2698,2699,5,55,0,0,2699,2701,3,924,462, + 0,2700,2698,1,0,0,0,2700,2701,1,0,0,0,2701,2702,1,0,0,0,2702,2703, + 5,268,0,0,2703,2704,3,658,329,0,2704,2705,5,398,0,0,2705,2706,3, + 282,141,0,2706,2708,5,399,0,0,2707,2709,3,370,185,0,2708,2707,1, + 0,0,0,2708,2709,1,0,0,0,2709,359,1,0,0,0,2710,2711,5,55,0,0,2711, + 2713,3,924,462,0,2712,2710,1,0,0,0,2712,2713,1,0,0,0,2713,2714,1, + 0,0,0,2714,2716,3,362,181,0,2715,2717,3,370,185,0,2716,2715,1,0, + 0,0,2716,2717,1,0,0,0,2717,361,1,0,0,0,2718,2719,5,215,0,0,2719, + 2725,5,218,0,0,2720,2721,5,83,0,0,2721,2725,3,364,182,0,2722,2725, + 3,310,155,0,2723,2725,3,366,183,0,2724,2718,1,0,0,0,2724,2720,1, + 0,0,0,2724,2722,1,0,0,0,2724,2723,1,0,0,0,2725,363,1,0,0,0,2726, + 2730,3,802,401,0,2727,2730,3,774,387,0,2728,2730,3,788,394,0,2729, + 2726,1,0,0,0,2729,2727,1,0,0,0,2729,2728,1,0,0,0,2730,365,1,0,0, + 0,2731,2732,5,250,0,0,2732,2735,5,173,0,0,2733,2735,5,357,0,0,2734, + 2731,1,0,0,0,2734,2733,1,0,0,0,2735,367,1,0,0,0,2736,2738,3,292, + 146,0,2737,2739,3,300,150,0,2738,2737,1,0,0,0,2738,2739,1,0,0,0, + 2739,369,1,0,0,0,2740,2742,3,292,146,0,2741,2743,3,300,150,0,2742, + 2741,1,0,0,0,2742,2743,1,0,0,0,2743,371,1,0,0,0,2744,2745,3,284, + 142,0,2745,2746,5,395,0,0,2746,2749,3,374,187,0,2747,2748,5,47,0, + 0,2748,2750,5,425,0,0,2749,2747,1,0,0,0,2749,2750,1,0,0,0,2750,373, + 1,0,0,0,2751,2752,3,378,189,0,2752,375,1,0,0,0,2753,2758,3,374,187, + 0,2754,2755,5,396,0,0,2755,2757,3,374,187,0,2756,2754,1,0,0,0,2757, + 2760,1,0,0,0,2758,2756,1,0,0,0,2758,2759,1,0,0,0,2759,377,1,0,0, + 0,2760,2758,1,0,0,0,2761,2767,3,380,190,0,2762,2767,3,382,191,0, + 2763,2767,3,384,192,0,2764,2767,3,386,193,0,2765,2767,3,388,194, + 0,2766,2761,1,0,0,0,2766,2762,1,0,0,0,2766,2763,1,0,0,0,2766,2764, + 1,0,0,0,2766,2765,1,0,0,0,2767,379,1,0,0,0,2768,2806,5,339,0,0,2769, + 2806,5,310,0,0,2770,2806,5,162,0,0,2771,2806,5,163,0,0,2772,2806, + 5,26,0,0,2773,2806,5,28,0,0,2774,2806,5,131,0,0,2775,2806,5,263, + 0,0,2776,2778,5,100,0,0,2777,2779,5,247,0,0,2778,2777,1,0,0,0,2778, + 2779,1,0,0,0,2779,2806,1,0,0,0,2780,2806,5,71,0,0,2781,2806,5,72, + 0,0,2782,2806,5,336,0,0,2783,2806,5,337,0,0,2784,2785,5,336,0,0, + 2785,2786,5,386,0,0,2786,2787,5,187,0,0,2787,2788,5,335,0,0,2788, + 2806,5,393,0,0,2789,2806,5,322,0,0,2790,2806,5,27,0,0,2791,2799, + 3,988,494,0,2792,2793,5,398,0,0,2793,2796,5,430,0,0,2794,2795,5, + 396,0,0,2795,2797,5,430,0,0,2796,2794,1,0,0,0,2796,2797,1,0,0,0, + 2797,2798,1,0,0,0,2798,2800,5,399,0,0,2799,2792,1,0,0,0,2799,2800, + 1,0,0,0,2800,2806,1,0,0,0,2801,2802,7,18,0,0,2802,2803,5,398,0,0, + 2803,2804,5,430,0,0,2804,2806,5,399,0,0,2805,2768,1,0,0,0,2805,2769, + 1,0,0,0,2805,2770,1,0,0,0,2805,2771,1,0,0,0,2805,2772,1,0,0,0,2805, + 2773,1,0,0,0,2805,2774,1,0,0,0,2805,2775,1,0,0,0,2805,2776,1,0,0, + 0,2805,2780,1,0,0,0,2805,2781,1,0,0,0,2805,2782,1,0,0,0,2805,2783, + 1,0,0,0,2805,2784,1,0,0,0,2805,2789,1,0,0,0,2805,2790,1,0,0,0,2805, + 2791,1,0,0,0,2805,2801,1,0,0,0,2806,381,1,0,0,0,2807,2808,5,16,0, + 0,2808,2809,5,408,0,0,2809,2810,3,378,189,0,2810,2811,5,410,0,0, + 2811,383,1,0,0,0,2812,2813,5,323,0,0,2813,2814,5,408,0,0,2814,2815, + 3,278,139,0,2815,2816,5,410,0,0,2816,385,1,0,0,0,2817,2818,5,197, + 0,0,2818,2819,5,408,0,0,2819,2820,3,380,190,0,2820,2821,5,396,0, + 0,2821,2822,3,378,189,0,2822,2823,5,410,0,0,2823,387,1,0,0,0,2824, + 2825,5,356,0,0,2825,2826,5,408,0,0,2826,2827,3,376,188,0,2827,2828, + 5,410,0,0,2828,389,1,0,0,0,2829,2831,7,19,0,0,2830,2832,7,20,0,0, + 2831,2830,1,0,0,0,2831,2832,1,0,0,0,2832,391,1,0,0,0,2833,2835,3, + 396,198,0,2834,2833,1,0,0,0,2834,2835,1,0,0,0,2835,2836,1,0,0,0, + 2836,2837,3,394,197,0,2837,393,1,0,0,0,2838,2841,3,400,200,0,2839, + 2841,3,404,202,0,2840,2838,1,0,0,0,2840,2839,1,0,0,0,2841,395,1, + 0,0,0,2842,2843,5,386,0,0,2843,2848,3,398,199,0,2844,2845,5,396, + 0,0,2845,2847,3,398,199,0,2846,2844,1,0,0,0,2847,2850,1,0,0,0,2848, + 2846,1,0,0,0,2848,2849,1,0,0,0,2849,397,1,0,0,0,2850,2848,1,0,0, + 0,2851,2856,3,924,462,0,2852,2853,5,398,0,0,2853,2854,3,280,140, + 0,2854,2855,5,399,0,0,2855,2857,1,0,0,0,2856,2852,1,0,0,0,2856,2857, + 1,0,0,0,2857,2858,1,0,0,0,2858,2859,5,17,0,0,2859,2860,5,398,0,0, + 2860,2861,3,392,196,0,2861,2862,5,399,0,0,2862,399,1,0,0,0,2863, + 2869,3,402,201,0,2864,2865,3,390,195,0,2865,2866,3,402,201,0,2866, + 2868,1,0,0,0,2867,2864,1,0,0,0,2868,2871,1,0,0,0,2869,2867,1,0,0, + 0,2869,2870,1,0,0,0,2870,401,1,0,0,0,2871,2869,1,0,0,0,2872,2873, + 3,618,309,0,2873,2874,3,414,207,0,2874,2876,3,690,345,0,2875,2877, + 3,636,318,0,2876,2875,1,0,0,0,2876,2877,1,0,0,0,2877,2879,1,0,0, + 0,2878,2880,3,674,337,0,2879,2878,1,0,0,0,2879,2880,1,0,0,0,2880, + 2882,1,0,0,0,2881,2883,3,722,361,0,2882,2881,1,0,0,0,2882,2883,1, + 0,0,0,2883,2885,1,0,0,0,2884,2886,3,738,369,0,2885,2884,1,0,0,0, + 2885,2886,1,0,0,0,2886,2888,1,0,0,0,2887,2889,3,706,353,0,2888,2887, + 1,0,0,0,2888,2889,1,0,0,0,2889,2891,1,0,0,0,2890,2892,3,740,370, + 0,2891,2890,1,0,0,0,2891,2892,1,0,0,0,2892,2894,1,0,0,0,2893,2895, + 3,762,381,0,2894,2893,1,0,0,0,2894,2895,1,0,0,0,2895,2897,1,0,0, + 0,2896,2898,3,764,382,0,2897,2896,1,0,0,0,2897,2898,1,0,0,0,2898, + 2900,1,0,0,0,2899,2901,3,768,384,0,2900,2899,1,0,0,0,2900,2901,1, + 0,0,0,2901,2903,1,0,0,0,2902,2904,3,770,385,0,2903,2902,1,0,0,0, + 2903,2904,1,0,0,0,2904,2906,1,0,0,0,2905,2907,3,418,209,0,2906,2905, + 1,0,0,0,2906,2907,1,0,0,0,2907,2944,1,0,0,0,2908,2909,3,618,309, + 0,2909,2911,3,690,345,0,2910,2912,3,636,318,0,2911,2910,1,0,0,0, + 2911,2912,1,0,0,0,2912,2914,1,0,0,0,2913,2915,3,674,337,0,2914,2913, + 1,0,0,0,2914,2915,1,0,0,0,2915,2917,1,0,0,0,2916,2918,3,722,361, 0,2917,2916,1,0,0,0,2917,2918,1,0,0,0,2918,2920,1,0,0,0,2919,2921, - 3,770,385,0,2920,2919,1,0,0,0,2920,2921,1,0,0,0,2921,2923,1,0,0, - 0,2922,2924,3,772,386,0,2923,2922,1,0,0,0,2923,2924,1,0,0,0,2924, - 2926,1,0,0,0,2925,2927,3,420,210,0,2926,2925,1,0,0,0,2926,2927,1, - 0,0,0,2927,409,1,0,0,0,2928,2929,3,390,195,0,2929,2930,3,406,203, - 0,2930,2932,1,0,0,0,2931,2928,1,0,0,0,2932,2933,1,0,0,0,2933,2931, - 1,0,0,0,2933,2934,1,0,0,0,2934,411,1,0,0,0,2935,2937,3,396,198,0, - 2936,2935,1,0,0,0,2936,2937,1,0,0,0,2937,2938,1,0,0,0,2938,2939, - 3,408,204,0,2939,413,1,0,0,0,2940,2941,3,416,208,0,2941,2943,3,692, - 346,0,2942,2944,3,638,319,0,2943,2942,1,0,0,0,2943,2944,1,0,0,0, - 2944,2946,1,0,0,0,2945,2947,3,676,338,0,2946,2945,1,0,0,0,2946,2947, - 1,0,0,0,2947,2949,1,0,0,0,2948,2950,3,724,362,0,2949,2948,1,0,0, - 0,2949,2950,1,0,0,0,2950,2952,1,0,0,0,2951,2953,3,740,370,0,2952, - 2951,1,0,0,0,2952,2953,1,0,0,0,2953,2955,1,0,0,0,2954,2956,3,708, - 354,0,2955,2954,1,0,0,0,2955,2956,1,0,0,0,2956,2958,1,0,0,0,2957, - 2959,3,742,371,0,2958,2957,1,0,0,0,2958,2959,1,0,0,0,2959,2961,1, - 0,0,0,2960,2962,3,764,382,0,2961,2960,1,0,0,0,2961,2962,1,0,0,0, - 2962,2964,1,0,0,0,2963,2965,3,766,383,0,2964,2963,1,0,0,0,2964,2965, - 1,0,0,0,2965,2967,1,0,0,0,2966,2968,3,770,385,0,2967,2966,1,0,0, - 0,2967,2968,1,0,0,0,2968,2970,1,0,0,0,2969,2971,3,772,386,0,2970, - 2969,1,0,0,0,2970,2971,1,0,0,0,2971,2973,1,0,0,0,2972,2974,3,420, - 210,0,2973,2972,1,0,0,0,2973,2974,1,0,0,0,2974,3010,1,0,0,0,2975, - 2977,3,692,346,0,2976,2978,3,638,319,0,2977,2976,1,0,0,0,2977,2978, - 1,0,0,0,2978,2980,1,0,0,0,2979,2981,3,676,338,0,2980,2979,1,0,0, - 0,2980,2981,1,0,0,0,2981,2983,1,0,0,0,2982,2984,3,724,362,0,2983, - 2982,1,0,0,0,2983,2984,1,0,0,0,2984,2986,1,0,0,0,2985,2987,3,740, - 370,0,2986,2985,1,0,0,0,2986,2987,1,0,0,0,2987,2989,1,0,0,0,2988, - 2990,3,708,354,0,2989,2988,1,0,0,0,2989,2990,1,0,0,0,2990,2992,1, - 0,0,0,2991,2993,3,742,371,0,2992,2991,1,0,0,0,2992,2993,1,0,0,0, - 2993,2995,1,0,0,0,2994,2996,3,764,382,0,2995,2994,1,0,0,0,2995,2996, - 1,0,0,0,2996,2998,1,0,0,0,2997,2999,3,766,383,0,2998,2997,1,0,0, - 0,2998,2999,1,0,0,0,2999,3001,1,0,0,0,3000,3002,3,770,385,0,3001, - 3000,1,0,0,0,3001,3002,1,0,0,0,3002,3004,1,0,0,0,3003,3005,3,772, - 386,0,3004,3003,1,0,0,0,3004,3005,1,0,0,0,3005,3007,1,0,0,0,3006, - 3008,3,420,210,0,3007,3006,1,0,0,0,3007,3008,1,0,0,0,3008,3010,1, - 0,0,0,3009,2940,1,0,0,0,3009,2975,1,0,0,0,3010,415,1,0,0,0,3011, - 3028,5,161,0,0,3012,3013,5,234,0,0,3013,3015,3,418,209,0,3014,3016, - 3,44,22,0,3015,3014,1,0,0,0,3015,3016,1,0,0,0,3016,3029,1,0,0,0, - 3017,3019,5,166,0,0,3018,3020,5,328,0,0,3019,3018,1,0,0,0,3019,3020, - 1,0,0,0,3020,3021,1,0,0,0,3021,3026,3,910,455,0,3022,3023,5,398, - 0,0,3023,3024,3,280,140,0,3024,3025,5,399,0,0,3025,3027,1,0,0,0, - 3026,3022,1,0,0,0,3026,3027,1,0,0,0,3027,3029,1,0,0,0,3028,3012, - 1,0,0,0,3028,3017,1,0,0,0,3029,417,1,0,0,0,3030,3032,5,187,0,0,3031, - 3030,1,0,0,0,3031,3032,1,0,0,0,3032,3033,1,0,0,0,3033,3034,5,93, - 0,0,3034,3036,5,425,0,0,3035,3037,3,248,124,0,3036,3035,1,0,0,0, - 3036,3037,1,0,0,0,3037,3039,1,0,0,0,3038,3040,3,270,135,0,3039,3038, - 1,0,0,0,3039,3040,1,0,0,0,3040,3044,1,0,0,0,3041,3042,5,328,0,0, - 3042,3044,3,910,455,0,3043,3031,1,0,0,0,3043,3041,1,0,0,0,3044,419, - 1,0,0,0,3045,3054,5,184,0,0,3046,3047,5,430,0,0,3047,3049,5,396, - 0,0,3048,3046,1,0,0,0,3048,3049,1,0,0,0,3049,3050,1,0,0,0,3050,3055, - 5,430,0,0,3051,3052,5,430,0,0,3052,3053,5,222,0,0,3053,3055,5,430, - 0,0,3054,3048,1,0,0,0,3054,3051,1,0,0,0,3055,421,1,0,0,0,3056,3057, - 5,86,0,0,3057,3058,5,139,0,0,3058,3060,3,660,330,0,3059,3061,3,676, - 338,0,3060,3059,1,0,0,0,3060,3061,1,0,0,0,3061,423,1,0,0,0,3062, - 3063,3,282,141,0,3063,3064,5,404,0,0,3064,3065,3,426,213,0,3065, - 425,1,0,0,0,3066,3069,3,614,307,0,3067,3069,3,848,424,0,3068,3066, - 1,0,0,0,3068,3067,1,0,0,0,3069,427,1,0,0,0,3070,3071,5,303,0,0,3071, - 3076,3,424,212,0,3072,3073,5,396,0,0,3073,3075,3,424,212,0,3074, - 3072,1,0,0,0,3075,3078,1,0,0,0,3076,3074,1,0,0,0,3076,3077,1,0,0, - 0,3077,429,1,0,0,0,3078,3076,1,0,0,0,3079,3080,5,364,0,0,3080,3081, - 3,660,330,0,3081,3083,3,428,214,0,3082,3084,3,676,338,0,3083,3082, - 1,0,0,0,3083,3084,1,0,0,0,3084,431,1,0,0,0,3085,3090,3,434,217,0, - 3086,3090,3,444,222,0,3087,3090,3,446,223,0,3088,3090,3,448,224, - 0,3089,3085,1,0,0,0,3089,3086,1,0,0,0,3089,3087,1,0,0,0,3089,3088, - 1,0,0,0,3090,433,1,0,0,0,3091,3092,5,317,0,0,3092,3101,5,343,0,0, - 3093,3098,3,436,218,0,3094,3095,5,396,0,0,3095,3097,3,436,218,0, - 3096,3094,1,0,0,0,3097,3100,1,0,0,0,3098,3096,1,0,0,0,3098,3099, - 1,0,0,0,3099,3102,1,0,0,0,3100,3098,1,0,0,0,3101,3093,1,0,0,0,3101, - 3102,1,0,0,0,3102,435,1,0,0,0,3103,3106,3,440,220,0,3104,3106,3, - 438,219,0,3105,3103,1,0,0,0,3105,3104,1,0,0,0,3106,437,1,0,0,0,3107, - 3108,5,260,0,0,3108,3109,7,21,0,0,3109,439,1,0,0,0,3110,3111,5,168, - 0,0,3111,3112,5,182,0,0,3112,3113,3,442,221,0,3113,441,1,0,0,0,3114, - 3115,5,311,0,0,3115,443,1,0,0,0,3116,3118,5,48,0,0,3117,3119,5,388, - 0,0,3118,3117,1,0,0,0,3118,3119,1,0,0,0,3119,445,1,0,0,0,3120,3122, - 5,288,0,0,3121,3123,5,388,0,0,3122,3121,1,0,0,0,3122,3123,1,0,0, - 0,3123,447,1,0,0,0,3124,3125,5,303,0,0,3125,3126,5,22,0,0,3126,3127, - 3,908,454,0,3127,449,1,0,0,0,3128,3129,5,1,0,0,3129,3131,5,345,0, - 0,3130,3132,5,430,0,0,3131,3130,1,0,0,0,3132,3133,1,0,0,0,3133,3131, - 1,0,0,0,3133,3134,1,0,0,0,3134,451,1,0,0,0,3135,3136,5,1,0,0,3136, - 3138,5,50,0,0,3137,3139,5,430,0,0,3138,3137,1,0,0,0,3139,3140,1, - 0,0,0,3140,3138,1,0,0,0,3140,3141,1,0,0,0,3141,453,1,0,0,0,3142, - 3144,5,202,0,0,3143,3145,5,435,0,0,3144,3143,1,0,0,0,3144,3145,1, - 0,0,0,3145,3146,1,0,0,0,3146,3147,5,166,0,0,3147,3152,3,660,330, - 0,3148,3150,5,17,0,0,3149,3148,1,0,0,0,3149,3150,1,0,0,0,3150,3151, - 1,0,0,0,3151,3153,3,926,463,0,3152,3149,1,0,0,0,3152,3153,1,0,0, - 0,3153,3154,1,0,0,0,3154,3155,5,369,0,0,3155,3156,3,628,314,0,3156, - 3157,5,223,0,0,3157,3158,3,828,414,0,3158,3159,3,456,228,0,3159, - 455,1,0,0,0,3160,3163,3,460,230,0,3161,3163,3,462,231,0,3162,3160, - 1,0,0,0,3162,3161,1,0,0,0,3163,3166,1,0,0,0,3164,3162,1,0,0,0,3164, - 3165,1,0,0,0,3165,3168,1,0,0,0,3166,3164,1,0,0,0,3167,3169,3,458, - 229,0,3168,3167,1,0,0,0,3168,3169,1,0,0,0,3169,457,1,0,0,0,3170, - 3171,5,382,0,0,3171,3172,5,215,0,0,3172,3175,5,200,0,0,3173,3174, - 5,11,0,0,3174,3176,3,828,414,0,3175,3173,1,0,0,0,3175,3176,1,0,0, - 0,3176,3177,1,0,0,0,3177,3178,5,334,0,0,3178,3180,5,161,0,0,3179, - 3181,3,290,145,0,3180,3179,1,0,0,0,3180,3181,1,0,0,0,3181,3182,1, - 0,0,0,3182,3183,5,373,0,0,3183,3184,3,686,343,0,3184,459,1,0,0,0, - 3185,3186,5,382,0,0,3186,3187,5,200,0,0,3187,3188,5,11,0,0,3188, - 3189,3,828,414,0,3189,3190,5,334,0,0,3190,3191,3,464,232,0,3191, - 461,1,0,0,0,3192,3193,5,382,0,0,3193,3194,5,200,0,0,3194,3195,5, - 334,0,0,3195,3196,3,464,232,0,3196,463,1,0,0,0,3197,3198,5,364,0, - 0,3198,3201,3,428,214,0,3199,3201,5,86,0,0,3200,3197,1,0,0,0,3200, - 3199,1,0,0,0,3201,465,1,0,0,0,3202,3203,5,176,0,0,3203,3205,5,257, - 0,0,3204,3206,5,425,0,0,3205,3204,1,0,0,0,3206,3207,1,0,0,0,3207, - 3205,1,0,0,0,3207,3208,1,0,0,0,3208,467,1,0,0,0,3209,3210,5,51,0, - 0,3210,3211,5,404,0,0,3211,3212,5,430,0,0,3212,469,1,0,0,0,3213, - 3214,5,245,0,0,3214,3215,5,425,0,0,3215,471,1,0,0,0,3216,3217,5, - 351,0,0,3217,3218,5,425,0,0,3218,473,1,0,0,0,3219,3220,5,319,0,0, - 3220,3221,5,425,0,0,3221,475,1,0,0,0,3222,3246,5,9,0,0,3223,3224, - 5,328,0,0,3224,3225,3,660,330,0,3225,3226,3,478,239,0,3226,3247, - 1,0,0,0,3227,3228,5,377,0,0,3228,3230,3,664,332,0,3229,3231,5,17, - 0,0,3230,3229,1,0,0,0,3230,3231,1,0,0,0,3231,3232,1,0,0,0,3232,3233, - 3,484,242,0,3233,3247,1,0,0,0,3234,3235,5,201,0,0,3235,3236,5,377, - 0,0,3236,3237,3,664,332,0,3237,3238,3,486,243,0,3238,3247,1,0,0, - 0,3239,3240,3,92,46,0,3240,3241,3,492,246,0,3241,3247,1,0,0,0,3242, - 3243,5,69,0,0,3243,3247,3,588,294,0,3244,3245,5,155,0,0,3245,3247, - 3,584,292,0,3246,3223,1,0,0,0,3246,3227,1,0,0,0,3246,3234,1,0,0, - 0,3246,3239,1,0,0,0,3246,3242,1,0,0,0,3246,3244,1,0,0,0,3247,477, - 1,0,0,0,3248,3270,3,502,251,0,3249,3270,3,534,267,0,3250,3270,3, - 536,268,0,3251,3270,3,522,261,0,3252,3270,3,526,263,0,3253,3270, - 3,528,264,0,3254,3270,3,530,265,0,3255,3270,3,538,269,0,3256,3270, - 3,560,280,0,3257,3270,3,562,281,0,3258,3270,3,482,241,0,3259,3270, - 3,512,256,0,3260,3270,3,506,253,0,3261,3270,3,480,240,0,3262,3264, - 3,912,456,0,3263,3262,1,0,0,0,3263,3264,1,0,0,0,3264,3265,1,0,0, - 0,3265,3270,3,480,240,0,3266,3270,3,578,289,0,3267,3270,3,580,290, - 0,3268,3270,3,582,291,0,3269,3248,1,0,0,0,3269,3249,1,0,0,0,3269, - 3250,1,0,0,0,3269,3251,1,0,0,0,3269,3252,1,0,0,0,3269,3253,1,0,0, - 0,3269,3254,1,0,0,0,3269,3255,1,0,0,0,3269,3256,1,0,0,0,3269,3257, - 1,0,0,0,3269,3258,1,0,0,0,3269,3259,1,0,0,0,3269,3260,1,0,0,0,3269, - 3261,1,0,0,0,3269,3263,1,0,0,0,3269,3266,1,0,0,0,3269,3267,1,0,0, - 0,3269,3268,1,0,0,0,3270,479,1,0,0,0,3271,3287,3,546,273,0,3272, - 3287,3,558,279,0,3273,3287,3,568,284,0,3274,3287,3,542,271,0,3275, - 3287,3,564,282,0,3276,3287,3,570,285,0,3277,3287,3,550,275,0,3278, - 3287,3,548,274,0,3279,3287,3,576,288,0,3280,3287,3,516,258,0,3281, - 3287,3,518,259,0,3282,3287,3,514,257,0,3283,3287,3,504,252,0,3284, - 3287,3,508,254,0,3285,3287,3,510,255,0,3286,3271,1,0,0,0,3286,3272, - 1,0,0,0,3286,3273,1,0,0,0,3286,3274,1,0,0,0,3286,3275,1,0,0,0,3286, - 3276,1,0,0,0,3286,3277,1,0,0,0,3286,3278,1,0,0,0,3286,3279,1,0,0, - 0,3286,3280,1,0,0,0,3286,3281,1,0,0,0,3286,3282,1,0,0,0,3286,3283, - 1,0,0,0,3286,3284,1,0,0,0,3286,3285,1,0,0,0,3287,481,1,0,0,0,3288, - 3289,5,236,0,0,3289,3290,5,45,0,0,3290,3291,5,398,0,0,3291,3292, - 3,342,171,0,3292,3293,5,399,0,0,3293,483,1,0,0,0,3294,3300,3,540, - 270,0,3295,3300,3,502,251,0,3296,3300,3,522,261,0,3297,3300,3,536, - 268,0,3298,3300,3,412,206,0,3299,3294,1,0,0,0,3299,3295,1,0,0,0, - 3299,3296,1,0,0,0,3299,3297,1,0,0,0,3299,3298,1,0,0,0,3300,485,1, - 0,0,0,3301,3304,3,488,244,0,3302,3304,3,490,245,0,3303,3301,1,0, - 0,0,3303,3302,1,0,0,0,3304,487,1,0,0,0,3305,3308,3,48,24,0,3306, - 3308,3,50,25,0,3307,3305,1,0,0,0,3307,3306,1,0,0,0,3308,489,1,0, - 0,0,3309,3310,5,264,0,0,3310,491,1,0,0,0,3311,3315,3,494,247,0,3312, - 3315,3,496,248,0,3313,3315,3,498,249,0,3314,3311,1,0,0,0,3314,3312, - 1,0,0,0,3314,3313,1,0,0,0,3315,493,1,0,0,0,3316,3317,3,654,327,0, - 3317,3318,5,303,0,0,3318,3319,5,76,0,0,3319,3320,3,62,31,0,3320, - 495,1,0,0,0,3321,3322,3,654,327,0,3322,3323,5,303,0,0,3323,3324, - 5,235,0,0,3324,3325,3,150,75,0,3325,497,1,0,0,0,3326,3327,3,654, - 327,0,3327,3328,5,303,0,0,3328,3329,7,22,0,0,3329,3330,5,425,0,0, - 3330,499,1,0,0,0,3331,3332,3,654,327,0,3332,3333,5,303,0,0,3333, - 3334,5,195,0,0,3334,3335,5,425,0,0,3335,501,1,0,0,0,3336,3337,5, - 273,0,0,3337,3338,5,340,0,0,3338,3339,3,662,331,0,3339,503,1,0,0, - 0,3340,3343,5,4,0,0,3341,3343,5,277,0,0,3342,3340,1,0,0,0,3342,3341, - 1,0,0,0,3343,3344,1,0,0,0,3344,3345,5,46,0,0,3345,3346,5,398,0,0, - 3346,3347,3,274,137,0,3347,3349,5,399,0,0,3348,3350,3,42,21,0,3349, - 3348,1,0,0,0,3349,3350,1,0,0,0,3350,505,1,0,0,0,3351,3354,5,4,0, - 0,3352,3355,3,314,157,0,3353,3355,3,304,152,0,3354,3352,1,0,0,0, - 3354,3353,1,0,0,0,3355,507,1,0,0,0,3356,3357,5,364,0,0,3357,3359, - 5,46,0,0,3358,3360,3,42,21,0,3359,3358,1,0,0,0,3359,3360,1,0,0,0, - 3360,509,1,0,0,0,3361,3362,3,294,147,0,3362,3364,5,217,0,0,3363, - 3365,5,34,0,0,3364,3363,1,0,0,0,3364,3365,1,0,0,0,3365,3370,1,0, - 0,0,3366,3367,3,294,147,0,3367,3368,5,221,0,0,3368,3370,1,0,0,0, - 3369,3361,1,0,0,0,3369,3366,1,0,0,0,3370,511,1,0,0,0,3371,3372,5, - 101,0,0,3372,3373,5,55,0,0,3373,3374,3,926,463,0,3374,513,1,0,0, - 0,3375,3377,5,38,0,0,3376,3378,5,45,0,0,3377,3376,1,0,0,0,3377,3378, - 1,0,0,0,3378,3379,1,0,0,0,3379,3380,3,282,141,0,3380,3381,3,284, - 142,0,3381,3383,3,374,187,0,3382,3384,3,356,178,0,3383,3382,1,0, - 0,0,3383,3384,1,0,0,0,3384,3387,1,0,0,0,3385,3386,5,47,0,0,3386, - 3388,5,425,0,0,3387,3385,1,0,0,0,3387,3388,1,0,0,0,3388,3390,1,0, - 0,0,3389,3391,3,520,260,0,3390,3389,1,0,0,0,3390,3391,1,0,0,0,3391, - 3393,1,0,0,0,3392,3394,3,42,21,0,3393,3392,1,0,0,0,3393,3394,1,0, - 0,0,3394,515,1,0,0,0,3395,3396,5,364,0,0,3396,3397,5,318,0,0,3397, - 3399,5,134,0,0,3398,3400,5,45,0,0,3399,3398,1,0,0,0,3399,3400,1, - 0,0,0,3400,3401,1,0,0,0,3401,3402,3,282,141,0,3402,3403,5,303,0, - 0,3403,3406,3,252,126,0,3404,3405,5,47,0,0,3405,3407,5,425,0,0,3406, - 3404,1,0,0,0,3406,3407,1,0,0,0,3407,517,1,0,0,0,3408,3409,5,364, - 0,0,3409,3410,5,318,0,0,3410,3411,5,303,0,0,3411,3412,3,252,126, - 0,3412,519,1,0,0,0,3413,3417,5,130,0,0,3414,3415,5,6,0,0,3415,3417, - 3,926,463,0,3416,3413,1,0,0,0,3416,3414,1,0,0,0,3417,521,1,0,0,0, - 3418,3420,5,4,0,0,3419,3421,3,44,22,0,3420,3419,1,0,0,0,3420,3421, - 1,0,0,0,3421,3423,1,0,0,0,3422,3424,3,524,262,0,3423,3422,1,0,0, - 0,3424,3425,1,0,0,0,3425,3423,1,0,0,0,3425,3426,1,0,0,0,3426,523, - 1,0,0,0,3427,3429,3,912,456,0,3428,3430,3,532,266,0,3429,3428,1, - 0,0,0,3429,3430,1,0,0,0,3430,525,1,0,0,0,3431,3435,5,341,0,0,3432, - 3434,3,912,456,0,3433,3432,1,0,0,0,3434,3437,1,0,0,0,3435,3433,1, - 0,0,0,3435,3436,1,0,0,0,3436,527,1,0,0,0,3437,3435,1,0,0,0,3438, - 3442,5,15,0,0,3439,3441,3,912,456,0,3440,3439,1,0,0,0,3441,3444, - 1,0,0,0,3442,3440,1,0,0,0,3442,3443,1,0,0,0,3443,529,1,0,0,0,3444, - 3442,1,0,0,0,3445,3449,5,352,0,0,3446,3448,3,912,456,0,3447,3446, - 1,0,0,0,3448,3451,1,0,0,0,3449,3447,1,0,0,0,3449,3450,1,0,0,0,3450, - 531,1,0,0,0,3451,3449,1,0,0,0,3452,3453,5,188,0,0,3453,3454,5,425, - 0,0,3454,533,1,0,0,0,3455,3456,5,102,0,0,3456,3457,5,238,0,0,3457, - 535,1,0,0,0,3458,3460,5,101,0,0,3459,3461,3,40,20,0,3460,3459,1, - 0,0,0,3460,3461,1,0,0,0,3461,3462,1,0,0,0,3462,3463,5,236,0,0,3463, - 3469,3,916,458,0,3464,3465,5,396,0,0,3465,3466,5,236,0,0,3466,3468, - 3,916,458,0,3467,3464,1,0,0,0,3468,3471,1,0,0,0,3469,3467,1,0,0, - 0,3469,3470,1,0,0,0,3470,3473,1,0,0,0,3471,3469,1,0,0,0,3472,3474, - 3,16,8,0,3473,3472,1,0,0,0,3473,3474,1,0,0,0,3474,3476,1,0,0,0,3475, - 3477,5,254,0,0,3476,3475,1,0,0,0,3476,3477,1,0,0,0,3477,3479,1,0, - 0,0,3478,3480,3,18,9,0,3479,3478,1,0,0,0,3479,3480,1,0,0,0,3480, - 537,1,0,0,0,3481,3482,5,303,0,0,3482,3483,5,331,0,0,3483,3491,3, - 252,126,0,3484,3485,5,362,0,0,3485,3487,5,331,0,0,3486,3488,3,40, - 20,0,3487,3486,1,0,0,0,3487,3488,1,0,0,0,3488,3489,1,0,0,0,3489, - 3491,3,252,126,0,3490,3481,1,0,0,0,3490,3484,1,0,0,0,3491,539,1, - 0,0,0,3492,3493,5,303,0,0,3493,3494,5,331,0,0,3494,3502,3,252,126, - 0,3495,3496,5,362,0,0,3496,3498,5,331,0,0,3497,3499,3,40,20,0,3498, - 3497,1,0,0,0,3498,3499,1,0,0,0,3499,3500,1,0,0,0,3500,3502,3,252, - 126,0,3501,3492,1,0,0,0,3501,3495,1,0,0,0,3502,541,1,0,0,0,3503, - 3513,5,303,0,0,3504,3505,5,300,0,0,3505,3509,5,425,0,0,3506,3507, - 5,386,0,0,3507,3508,5,301,0,0,3508,3510,3,252,126,0,3509,3506,1, - 0,0,0,3509,3510,1,0,0,0,3510,3514,1,0,0,0,3511,3512,5,301,0,0,3512, - 3514,3,252,126,0,3513,3504,1,0,0,0,3513,3511,1,0,0,0,3514,3519,1, - 0,0,0,3515,3516,5,362,0,0,3516,3517,5,301,0,0,3517,3519,3,252,126, - 0,3518,3503,1,0,0,0,3518,3515,1,0,0,0,3519,543,1,0,0,0,3520,3522, - 3,660,330,0,3521,3523,3,912,456,0,3522,3521,1,0,0,0,3522,3523,1, - 0,0,0,3523,545,1,0,0,0,3524,3525,5,303,0,0,3525,3526,5,129,0,0,3526, - 3527,3,586,293,0,3527,547,1,0,0,0,3528,3529,5,215,0,0,3529,3532, - 7,23,0,0,3530,3532,3,232,116,0,3531,3528,1,0,0,0,3531,3530,1,0,0, - 0,3532,549,1,0,0,0,3533,3534,5,303,0,0,3534,3535,5,309,0,0,3535, - 3536,5,188,0,0,3536,3537,3,552,276,0,3537,551,1,0,0,0,3538,3539, - 5,398,0,0,3539,3540,3,554,277,0,3540,3541,5,399,0,0,3541,553,1,0, - 0,0,3542,3547,3,556,278,0,3543,3544,5,396,0,0,3544,3546,3,556,278, - 0,3545,3543,1,0,0,0,3546,3549,1,0,0,0,3547,3545,1,0,0,0,3547,3548, - 1,0,0,0,3548,555,1,0,0,0,3549,3547,1,0,0,0,3550,3551,3,326,163,0, - 3551,3552,5,404,0,0,3552,3553,5,425,0,0,3553,557,1,0,0,0,3554,3555, - 5,303,0,0,3555,3556,5,188,0,0,3556,3557,5,425,0,0,3557,559,1,0,0, - 0,3558,3565,3,236,118,0,3559,3562,5,215,0,0,3560,3563,5,309,0,0, - 3561,3563,3,52,26,0,3562,3560,1,0,0,0,3562,3561,1,0,0,0,3563,3565, - 1,0,0,0,3564,3558,1,0,0,0,3564,3559,1,0,0,0,3565,561,1,0,0,0,3566, - 3567,5,113,0,0,3567,3568,3,912,456,0,3568,3569,5,386,0,0,3569,3570, - 5,328,0,0,3570,3571,3,660,330,0,3571,563,1,0,0,0,3572,3573,5,273, - 0,0,3573,3574,5,340,0,0,3574,3575,3,912,456,0,3575,565,1,0,0,0,3576, - 3577,5,364,0,0,3577,3578,5,318,0,0,3578,3580,5,134,0,0,3579,3581, - 5,45,0,0,3580,3579,1,0,0,0,3580,3581,1,0,0,0,3581,3582,1,0,0,0,3582, - 3583,3,282,141,0,3583,3584,5,303,0,0,3584,3587,3,252,126,0,3585, - 3586,5,47,0,0,3586,3588,5,425,0,0,3587,3585,1,0,0,0,3587,3588,1, - 0,0,0,3588,567,1,0,0,0,3589,3590,5,53,0,0,3590,569,1,0,0,0,3591, - 3592,5,166,0,0,3592,3593,5,430,0,0,3593,3594,5,31,0,0,3594,571,1, - 0,0,0,3595,3596,5,11,0,0,3596,3597,5,379,0,0,3597,573,1,0,0,0,3598, - 3599,5,245,0,0,3599,3600,5,425,0,0,3600,575,1,0,0,0,3601,3602,5, - 49,0,0,3602,3604,5,425,0,0,3603,3605,3,572,286,0,3604,3603,1,0,0, - 0,3604,3605,1,0,0,0,3605,3607,1,0,0,0,3606,3608,3,234,117,0,3607, - 3606,1,0,0,0,3607,3608,1,0,0,0,3608,3610,1,0,0,0,3609,3611,3,764, - 382,0,3610,3609,1,0,0,0,3610,3611,1,0,0,0,3611,3613,1,0,0,0,3612, - 3614,3,574,287,0,3613,3612,1,0,0,0,3613,3614,1,0,0,0,3614,3619,1, - 0,0,0,3615,3616,5,386,0,0,3616,3617,5,234,0,0,3617,3618,5,331,0, - 0,3618,3620,3,252,126,0,3619,3615,1,0,0,0,3619,3620,1,0,0,0,3620, - 577,1,0,0,0,3621,3622,5,303,0,0,3622,3623,5,235,0,0,3623,3624,3, - 148,74,0,3624,579,1,0,0,0,3625,3626,5,303,0,0,3626,3627,5,236,0, - 0,3627,3628,5,315,0,0,3628,3629,5,398,0,0,3629,3630,3,226,113,0, - 3630,3631,5,399,0,0,3631,581,1,0,0,0,3632,3642,5,115,0,0,3633,3634, - 5,288,0,0,3634,3635,5,398,0,0,3635,3643,7,24,0,0,3636,3637,5,118, - 0,0,3637,3638,5,398,0,0,3638,3643,5,425,0,0,3639,3640,5,305,0,0, - 3640,3641,5,398,0,0,3641,3643,5,430,0,0,3642,3633,1,0,0,0,3642,3636, - 1,0,0,0,3642,3639,1,0,0,0,3643,3644,1,0,0,0,3644,3645,5,399,0,0, - 3645,583,1,0,0,0,3646,3647,3,926,463,0,3647,3648,5,223,0,0,3648, - 3650,3,660,330,0,3649,3651,3,912,456,0,3650,3649,1,0,0,0,3650,3651, - 1,0,0,0,3651,3652,1,0,0,0,3652,3653,5,264,0,0,3653,585,1,0,0,0,3654, - 3655,5,160,0,0,3655,3656,5,425,0,0,3656,3657,5,232,0,0,3657,3658, - 5,425,0,0,3658,3659,5,300,0,0,3659,3664,5,425,0,0,3660,3661,5,159, - 0,0,3661,3662,5,425,0,0,3662,3663,5,231,0,0,3663,3665,5,425,0,0, - 3664,3660,1,0,0,0,3664,3665,1,0,0,0,3665,3668,1,0,0,0,3666,3668, - 3,926,463,0,3667,3654,1,0,0,0,3667,3666,1,0,0,0,3668,587,1,0,0,0, - 3669,3673,3,590,295,0,3670,3673,3,592,296,0,3671,3673,3,594,297, - 0,3672,3669,1,0,0,0,3672,3670,1,0,0,0,3672,3671,1,0,0,0,3673,589, - 1,0,0,0,3674,3675,3,654,327,0,3675,3676,5,303,0,0,3676,3677,5,77, - 0,0,3677,3678,3,608,304,0,3678,591,1,0,0,0,3679,3680,3,654,327,0, - 3680,3681,5,303,0,0,3681,3682,5,235,0,0,3682,3683,3,150,75,0,3683, - 593,1,0,0,0,3684,3685,3,654,327,0,3685,3686,5,303,0,0,3686,3687, - 5,366,0,0,3687,3688,5,425,0,0,3688,595,1,0,0,0,3689,3690,5,183,0, - 0,3690,3699,5,128,0,0,3691,3692,5,183,0,0,3692,3693,5,128,0,0,3693, - 3694,3,926,463,0,3694,3695,5,425,0,0,3695,3699,1,0,0,0,3696,3697, - 5,183,0,0,3697,3699,3,660,330,0,3698,3689,1,0,0,0,3698,3691,1,0, - 0,0,3698,3696,1,0,0,0,3699,597,1,0,0,0,3700,3702,5,58,0,0,3701,3703, - 5,332,0,0,3702,3701,1,0,0,0,3702,3703,1,0,0,0,3703,3705,1,0,0,0, - 3704,3706,5,344,0,0,3705,3704,1,0,0,0,3705,3706,1,0,0,0,3706,3708, - 1,0,0,0,3707,3709,5,123,0,0,3708,3707,1,0,0,0,3708,3709,1,0,0,0, - 3709,3710,1,0,0,0,3710,3712,5,328,0,0,3711,3713,3,44,22,0,3712,3711, - 1,0,0,0,3712,3713,1,0,0,0,3713,3714,1,0,0,0,3714,3765,3,662,331, - 0,3715,3717,3,596,298,0,3716,3718,3,220,110,0,3717,3716,1,0,0,0, - 3717,3718,1,0,0,0,3718,3720,1,0,0,0,3719,3721,3,248,124,0,3720,3719, - 1,0,0,0,3720,3721,1,0,0,0,3721,3723,1,0,0,0,3722,3724,3,270,135, - 0,3723,3722,1,0,0,0,3723,3724,1,0,0,0,3724,3726,1,0,0,0,3725,3727, - 3,272,136,0,3726,3725,1,0,0,0,3726,3727,1,0,0,0,3727,3729,1,0,0, - 0,3728,3730,3,250,125,0,3729,3728,1,0,0,0,3729,3730,1,0,0,0,3730, - 3766,1,0,0,0,3731,3732,5,398,0,0,3732,3733,3,276,138,0,3733,3734, - 5,399,0,0,3734,3736,1,0,0,0,3735,3731,1,0,0,0,3735,3736,1,0,0,0, - 3736,3738,1,0,0,0,3737,3739,3,218,109,0,3738,3737,1,0,0,0,3738,3739, - 1,0,0,0,3739,3741,1,0,0,0,3740,3742,3,220,110,0,3741,3740,1,0,0, - 0,3741,3742,1,0,0,0,3742,3744,1,0,0,0,3743,3745,3,232,116,0,3744, - 3743,1,0,0,0,3744,3745,1,0,0,0,3745,3747,1,0,0,0,3746,3748,3,236, - 118,0,3747,3746,1,0,0,0,3747,3748,1,0,0,0,3748,3750,1,0,0,0,3749, - 3751,3,248,124,0,3750,3749,1,0,0,0,3750,3751,1,0,0,0,3751,3753,1, - 0,0,0,3752,3754,3,270,135,0,3753,3752,1,0,0,0,3753,3754,1,0,0,0, - 3754,3756,1,0,0,0,3755,3757,3,272,136,0,3756,3755,1,0,0,0,3756,3757, - 1,0,0,0,3757,3759,1,0,0,0,3758,3760,3,250,125,0,3759,3758,1,0,0, - 0,3759,3760,1,0,0,0,3760,3763,1,0,0,0,3761,3762,5,17,0,0,3762,3764, - 3,412,206,0,3763,3761,1,0,0,0,3763,3764,1,0,0,0,3764,3766,1,0,0, - 0,3765,3715,1,0,0,0,3765,3735,1,0,0,0,3766,3824,1,0,0,0,3767,3768, - 5,58,0,0,3768,3769,5,194,0,0,3769,3771,5,328,0,0,3770,3772,3,44, - 22,0,3771,3770,1,0,0,0,3771,3772,1,0,0,0,3772,3773,1,0,0,0,3773, - 3821,3,662,331,0,3774,3776,3,596,298,0,3775,3777,3,248,124,0,3776, - 3775,1,0,0,0,3776,3777,1,0,0,0,3777,3779,1,0,0,0,3778,3780,3,270, - 135,0,3779,3778,1,0,0,0,3779,3780,1,0,0,0,3780,3782,1,0,0,0,3781, - 3783,3,272,136,0,3782,3781,1,0,0,0,3782,3783,1,0,0,0,3783,3785,1, - 0,0,0,3784,3786,3,250,125,0,3785,3784,1,0,0,0,3785,3786,1,0,0,0, - 3786,3822,1,0,0,0,3787,3788,5,398,0,0,3788,3789,3,276,138,0,3789, - 3790,5,399,0,0,3790,3792,1,0,0,0,3791,3787,1,0,0,0,3791,3792,1,0, - 0,0,3792,3794,1,0,0,0,3793,3795,3,218,109,0,3794,3793,1,0,0,0,3794, - 3795,1,0,0,0,3795,3797,1,0,0,0,3796,3798,3,220,110,0,3797,3796,1, - 0,0,0,3797,3798,1,0,0,0,3798,3800,1,0,0,0,3799,3801,3,232,116,0, - 3800,3799,1,0,0,0,3800,3801,1,0,0,0,3801,3803,1,0,0,0,3802,3804, - 3,236,118,0,3803,3802,1,0,0,0,3803,3804,1,0,0,0,3804,3806,1,0,0, - 0,3805,3807,3,248,124,0,3806,3805,1,0,0,0,3806,3807,1,0,0,0,3807, - 3809,1,0,0,0,3808,3810,3,270,135,0,3809,3808,1,0,0,0,3809,3810,1, - 0,0,0,3810,3812,1,0,0,0,3811,3813,3,272,136,0,3812,3811,1,0,0,0, - 3812,3813,1,0,0,0,3813,3815,1,0,0,0,3814,3816,3,250,125,0,3815,3814, - 1,0,0,0,3815,3816,1,0,0,0,3816,3819,1,0,0,0,3817,3818,5,17,0,0,3818, - 3820,3,412,206,0,3819,3817,1,0,0,0,3819,3820,1,0,0,0,3820,3822,1, - 0,0,0,3821,3774,1,0,0,0,3821,3791,1,0,0,0,3822,3824,1,0,0,0,3823, - 3700,1,0,0,0,3823,3767,1,0,0,0,3824,599,1,0,0,0,3825,3826,5,58,0, - 0,3826,3828,5,69,0,0,3827,3829,3,44,22,0,3828,3827,1,0,0,0,3828, - 3829,1,0,0,0,3829,3830,1,0,0,0,3830,3832,3,926,463,0,3831,3833,3, - 606,303,0,3832,3831,1,0,0,0,3832,3833,1,0,0,0,3833,3835,1,0,0,0, - 3834,3836,3,604,302,0,3835,3834,1,0,0,0,3835,3836,1,0,0,0,3836,3838, - 1,0,0,0,3837,3839,3,602,301,0,3838,3837,1,0,0,0,3838,3839,1,0,0, - 0,3839,3843,1,0,0,0,3840,3841,5,386,0,0,3841,3842,5,77,0,0,3842, - 3844,3,608,304,0,3843,3840,1,0,0,0,3843,3844,1,0,0,0,3844,601,1, - 0,0,0,3845,3846,5,47,0,0,3846,3847,5,425,0,0,3847,603,1,0,0,0,3848, - 3849,5,366,0,0,3849,3850,5,425,0,0,3850,605,1,0,0,0,3851,3852,5, - 351,0,0,3852,3853,5,425,0,0,3853,607,1,0,0,0,3854,3855,5,398,0,0, - 3855,3856,3,64,32,0,3856,3857,5,399,0,0,3857,609,1,0,0,0,3858,3859, - 5,101,0,0,3859,3861,5,69,0,0,3860,3862,3,40,20,0,3861,3860,1,0,0, - 0,3861,3862,1,0,0,0,3862,3863,1,0,0,0,3863,3864,3,926,463,0,3864, - 611,1,0,0,0,3865,3871,5,414,0,0,3866,3867,3,658,329,0,3867,3868, - 5,394,0,0,3868,3869,5,414,0,0,3869,3871,1,0,0,0,3870,3865,1,0,0, - 0,3870,3866,1,0,0,0,3871,613,1,0,0,0,3872,3873,5,83,0,0,3873,615, - 1,0,0,0,3874,3879,3,828,414,0,3875,3876,5,396,0,0,3876,3878,3,828, - 414,0,3877,3875,1,0,0,0,3878,3881,1,0,0,0,3879,3877,1,0,0,0,3879, - 3880,1,0,0,0,3880,617,1,0,0,0,3881,3879,1,0,0,0,3882,3887,3,926, - 463,0,3883,3884,5,396,0,0,3884,3886,3,926,463,0,3885,3883,1,0,0, - 0,3886,3889,1,0,0,0,3887,3885,1,0,0,0,3887,3888,1,0,0,0,3888,619, - 1,0,0,0,3889,3887,1,0,0,0,3890,3891,5,139,0,0,3891,3892,3,622,311, - 0,3892,621,1,0,0,0,3893,3894,3,634,317,0,3894,3897,3,630,315,0,3895, - 3896,5,396,0,0,3896,3898,3,630,315,0,3897,3895,1,0,0,0,3898,3899, - 1,0,0,0,3899,3897,1,0,0,0,3899,3900,1,0,0,0,3900,3903,1,0,0,0,3901, - 3903,3,626,313,0,3902,3893,1,0,0,0,3902,3901,1,0,0,0,3903,623,1, - 0,0,0,3904,3908,3,648,324,0,3905,3907,3,638,319,0,3906,3905,1,0, - 0,0,3907,3910,1,0,0,0,3908,3906,1,0,0,0,3908,3909,1,0,0,0,3909,3937, - 1,0,0,0,3910,3908,1,0,0,0,3911,3915,3,690,345,0,3912,3914,3,638, - 319,0,3913,3912,1,0,0,0,3914,3917,1,0,0,0,3915,3913,1,0,0,0,3915, - 3916,1,0,0,0,3916,3937,1,0,0,0,3917,3915,1,0,0,0,3918,3922,3,668, - 334,0,3919,3921,3,638,319,0,3920,3919,1,0,0,0,3921,3924,1,0,0,0, - 3922,3920,1,0,0,0,3922,3923,1,0,0,0,3923,3937,1,0,0,0,3924,3922, - 1,0,0,0,3925,3929,3,674,337,0,3926,3928,3,638,319,0,3927,3926,1, - 0,0,0,3928,3931,1,0,0,0,3929,3927,1,0,0,0,3929,3930,1,0,0,0,3930, - 3937,1,0,0,0,3931,3929,1,0,0,0,3932,3933,5,398,0,0,3933,3934,3,626, - 313,0,3934,3935,5,399,0,0,3935,3937,1,0,0,0,3936,3904,1,0,0,0,3936, - 3911,1,0,0,0,3936,3918,1,0,0,0,3936,3925,1,0,0,0,3936,3932,1,0,0, - 0,3937,625,1,0,0,0,3938,3949,3,624,312,0,3939,3940,3,636,318,0,3940, - 3945,3,628,314,0,3941,3942,5,223,0,0,3942,3946,3,828,414,0,3943, - 3944,5,369,0,0,3944,3946,3,290,145,0,3945,3941,1,0,0,0,3945,3943, - 1,0,0,0,3945,3946,1,0,0,0,3946,3948,1,0,0,0,3947,3939,1,0,0,0,3948, - 3951,1,0,0,0,3949,3947,1,0,0,0,3949,3950,1,0,0,0,3950,627,1,0,0, - 0,3951,3949,1,0,0,0,3952,3957,3,648,324,0,3953,3957,3,690,345,0, - 3954,3957,3,668,334,0,3955,3957,3,674,337,0,3956,3952,1,0,0,0,3956, - 3953,1,0,0,0,3956,3954,1,0,0,0,3956,3955,1,0,0,0,3957,3961,1,0,0, - 0,3958,3960,3,638,319,0,3959,3958,1,0,0,0,3960,3963,1,0,0,0,3961, - 3959,1,0,0,0,3961,3962,1,0,0,0,3962,629,1,0,0,0,3963,3961,1,0,0, - 0,3964,3966,5,249,0,0,3965,3964,1,0,0,0,3965,3966,1,0,0,0,3966,3967, - 1,0,0,0,3967,3968,3,652,326,0,3968,3969,3,632,316,0,3969,631,1,0, - 0,0,3970,3971,5,398,0,0,3971,3972,3,616,308,0,3972,3973,5,399,0, - 0,3973,633,1,0,0,0,3974,3975,5,358,0,0,3975,635,1,0,0,0,3976,3991, - 5,396,0,0,3977,3988,5,157,0,0,3978,3988,5,60,0,0,3979,3981,7,25, - 0,0,3980,3982,5,230,0,0,3981,3980,1,0,0,0,3981,3982,1,0,0,0,3982, - 3988,1,0,0,0,3983,3985,5,180,0,0,3984,3986,7,26,0,0,3985,3984,1, - 0,0,0,3985,3986,1,0,0,0,3986,3988,1,0,0,0,3987,3977,1,0,0,0,3987, - 3978,1,0,0,0,3987,3979,1,0,0,0,3987,3983,1,0,0,0,3987,3988,1,0,0, - 0,3988,3989,1,0,0,0,3989,3991,5,171,0,0,3990,3976,1,0,0,0,3990,3987, - 1,0,0,0,3991,637,1,0,0,0,3992,3993,5,178,0,0,3993,3994,5,377,0,0, - 3994,3995,5,230,0,0,3995,3996,3,776,388,0,3996,4006,3,640,320,0, - 3997,3998,5,17,0,0,3998,4003,3,926,463,0,3999,4000,5,396,0,0,4000, - 4002,3,926,463,0,4001,3999,1,0,0,0,4002,4005,1,0,0,0,4003,4001,1, - 0,0,0,4003,4004,1,0,0,0,4004,4007,1,0,0,0,4005,4003,1,0,0,0,4006, - 3997,1,0,0,0,4006,4007,1,0,0,0,4007,4050,1,0,0,0,4008,4010,5,396, - 0,0,4009,4008,1,0,0,0,4009,4010,1,0,0,0,4010,4011,1,0,0,0,4011,4047, - 5,178,0,0,4012,4013,5,377,0,0,4013,4014,3,776,388,0,4014,4024,3, - 640,320,0,4015,4016,5,17,0,0,4016,4021,3,926,463,0,4017,4018,5,396, - 0,0,4018,4020,3,926,463,0,4019,4017,1,0,0,0,4020,4023,1,0,0,0,4021, - 4019,1,0,0,0,4021,4022,1,0,0,0,4022,4025,1,0,0,0,4023,4021,1,0,0, - 0,4024,4015,1,0,0,0,4024,4025,1,0,0,0,4025,4048,1,0,0,0,4026,4027, - 5,328,0,0,4027,4028,5,398,0,0,4028,4029,3,682,341,0,4029,4031,5, - 399,0,0,4030,4032,5,17,0,0,4031,4030,1,0,0,0,4031,4032,1,0,0,0,4032, - 4033,1,0,0,0,4033,4045,3,640,320,0,4034,4035,5,398,0,0,4035,4040, - 3,926,463,0,4036,4037,5,396,0,0,4037,4039,3,926,463,0,4038,4036, - 1,0,0,0,4039,4042,1,0,0,0,4040,4038,1,0,0,0,4040,4041,1,0,0,0,4041, - 4043,1,0,0,0,4042,4040,1,0,0,0,4043,4044,5,399,0,0,4044,4046,1,0, - 0,0,4045,4034,1,0,0,0,4045,4046,1,0,0,0,4046,4048,1,0,0,0,4047,4012, + 3,738,369,0,2920,2919,1,0,0,0,2920,2921,1,0,0,0,2921,2923,1,0,0, + 0,2922,2924,3,706,353,0,2923,2922,1,0,0,0,2923,2924,1,0,0,0,2924, + 2926,1,0,0,0,2925,2927,3,740,370,0,2926,2925,1,0,0,0,2926,2927,1, + 0,0,0,2927,2929,1,0,0,0,2928,2930,3,762,381,0,2929,2928,1,0,0,0, + 2929,2930,1,0,0,0,2930,2932,1,0,0,0,2931,2933,3,764,382,0,2932,2931, + 1,0,0,0,2932,2933,1,0,0,0,2933,2935,1,0,0,0,2934,2936,3,768,384, + 0,2935,2934,1,0,0,0,2935,2936,1,0,0,0,2936,2938,1,0,0,0,2937,2939, + 3,770,385,0,2938,2937,1,0,0,0,2938,2939,1,0,0,0,2939,2941,1,0,0, + 0,2940,2942,3,418,209,0,2941,2940,1,0,0,0,2941,2942,1,0,0,0,2942, + 2944,1,0,0,0,2943,2872,1,0,0,0,2943,2908,1,0,0,0,2944,403,1,0,0, + 0,2945,2946,3,414,207,0,2946,2947,3,408,204,0,2947,2950,1,0,0,0, + 2948,2950,3,408,204,0,2949,2945,1,0,0,0,2949,2948,1,0,0,0,2950,405, + 1,0,0,0,2951,2953,3,690,345,0,2952,2954,3,618,309,0,2953,2952,1, + 0,0,0,2953,2954,1,0,0,0,2954,2956,1,0,0,0,2955,2957,3,674,337,0, + 2956,2955,1,0,0,0,2956,2957,1,0,0,0,2957,2959,1,0,0,0,2958,2960, + 3,722,361,0,2959,2958,1,0,0,0,2959,2960,1,0,0,0,2960,2962,1,0,0, + 0,2961,2963,3,738,369,0,2962,2961,1,0,0,0,2962,2963,1,0,0,0,2963, + 2965,1,0,0,0,2964,2966,3,706,353,0,2965,2964,1,0,0,0,2965,2966,1, + 0,0,0,2966,2968,1,0,0,0,2967,2969,3,740,370,0,2968,2967,1,0,0,0, + 2968,2969,1,0,0,0,2969,2976,1,0,0,0,2970,2971,5,398,0,0,2971,2972, + 3,408,204,0,2972,2973,5,399,0,0,2973,2976,1,0,0,0,2974,2976,3,678, + 339,0,2975,2951,1,0,0,0,2975,2970,1,0,0,0,2975,2974,1,0,0,0,2976, + 407,1,0,0,0,2977,2979,3,406,203,0,2978,2980,3,410,205,0,2979,2978, + 1,0,0,0,2979,2980,1,0,0,0,2980,2982,1,0,0,0,2981,2983,3,762,381, + 0,2982,2981,1,0,0,0,2982,2983,1,0,0,0,2983,2985,1,0,0,0,2984,2986, + 3,764,382,0,2985,2984,1,0,0,0,2985,2986,1,0,0,0,2986,2988,1,0,0, + 0,2987,2989,3,768,384,0,2988,2987,1,0,0,0,2988,2989,1,0,0,0,2989, + 2991,1,0,0,0,2990,2992,3,770,385,0,2991,2990,1,0,0,0,2991,2992,1, + 0,0,0,2992,2994,1,0,0,0,2993,2995,3,418,209,0,2994,2993,1,0,0,0, + 2994,2995,1,0,0,0,2995,409,1,0,0,0,2996,2997,3,390,195,0,2997,2998, + 3,406,203,0,2998,3000,1,0,0,0,2999,2996,1,0,0,0,3000,3001,1,0,0, + 0,3001,2999,1,0,0,0,3001,3002,1,0,0,0,3002,411,1,0,0,0,3003,3005, + 3,396,198,0,3004,3003,1,0,0,0,3004,3005,1,0,0,0,3005,3006,1,0,0, + 0,3006,3007,3,408,204,0,3007,413,1,0,0,0,3008,3025,5,161,0,0,3009, + 3010,5,234,0,0,3010,3012,3,416,208,0,3011,3013,3,44,22,0,3012,3011, + 1,0,0,0,3012,3013,1,0,0,0,3013,3026,1,0,0,0,3014,3016,5,166,0,0, + 3015,3017,5,328,0,0,3016,3015,1,0,0,0,3016,3017,1,0,0,0,3017,3018, + 1,0,0,0,3018,3023,3,908,454,0,3019,3020,5,398,0,0,3020,3021,3,280, + 140,0,3021,3022,5,399,0,0,3022,3024,1,0,0,0,3023,3019,1,0,0,0,3023, + 3024,1,0,0,0,3024,3026,1,0,0,0,3025,3009,1,0,0,0,3025,3014,1,0,0, + 0,3026,415,1,0,0,0,3027,3029,5,187,0,0,3028,3027,1,0,0,0,3028,3029, + 1,0,0,0,3029,3030,1,0,0,0,3030,3031,5,93,0,0,3031,3033,5,425,0,0, + 3032,3034,3,248,124,0,3033,3032,1,0,0,0,3033,3034,1,0,0,0,3034,3036, + 1,0,0,0,3035,3037,3,270,135,0,3036,3035,1,0,0,0,3036,3037,1,0,0, + 0,3037,3041,1,0,0,0,3038,3039,5,328,0,0,3039,3041,3,908,454,0,3040, + 3028,1,0,0,0,3040,3038,1,0,0,0,3041,417,1,0,0,0,3042,3051,5,184, + 0,0,3043,3044,5,430,0,0,3044,3046,5,396,0,0,3045,3043,1,0,0,0,3045, + 3046,1,0,0,0,3046,3047,1,0,0,0,3047,3052,5,430,0,0,3048,3049,5,430, + 0,0,3049,3050,5,222,0,0,3050,3052,5,430,0,0,3051,3045,1,0,0,0,3051, + 3048,1,0,0,0,3052,419,1,0,0,0,3053,3054,5,86,0,0,3054,3055,5,139, + 0,0,3055,3057,3,658,329,0,3056,3058,3,674,337,0,3057,3056,1,0,0, + 0,3057,3058,1,0,0,0,3058,421,1,0,0,0,3059,3060,3,282,141,0,3060, + 3061,5,404,0,0,3061,3062,3,424,212,0,3062,423,1,0,0,0,3063,3066, + 3,612,306,0,3064,3066,3,846,423,0,3065,3063,1,0,0,0,3065,3064,1, + 0,0,0,3066,425,1,0,0,0,3067,3068,5,303,0,0,3068,3073,3,422,211,0, + 3069,3070,5,396,0,0,3070,3072,3,422,211,0,3071,3069,1,0,0,0,3072, + 3075,1,0,0,0,3073,3071,1,0,0,0,3073,3074,1,0,0,0,3074,427,1,0,0, + 0,3075,3073,1,0,0,0,3076,3077,5,364,0,0,3077,3078,3,658,329,0,3078, + 3080,3,426,213,0,3079,3081,3,674,337,0,3080,3079,1,0,0,0,3080,3081, + 1,0,0,0,3081,429,1,0,0,0,3082,3087,3,432,216,0,3083,3087,3,442,221, + 0,3084,3087,3,444,222,0,3085,3087,3,446,223,0,3086,3082,1,0,0,0, + 3086,3083,1,0,0,0,3086,3084,1,0,0,0,3086,3085,1,0,0,0,3087,431,1, + 0,0,0,3088,3089,5,317,0,0,3089,3098,5,343,0,0,3090,3095,3,434,217, + 0,3091,3092,5,396,0,0,3092,3094,3,434,217,0,3093,3091,1,0,0,0,3094, + 3097,1,0,0,0,3095,3093,1,0,0,0,3095,3096,1,0,0,0,3096,3099,1,0,0, + 0,3097,3095,1,0,0,0,3098,3090,1,0,0,0,3098,3099,1,0,0,0,3099,433, + 1,0,0,0,3100,3103,3,438,219,0,3101,3103,3,436,218,0,3102,3100,1, + 0,0,0,3102,3101,1,0,0,0,3103,435,1,0,0,0,3104,3105,5,260,0,0,3105, + 3106,7,21,0,0,3106,437,1,0,0,0,3107,3108,5,168,0,0,3108,3109,5,182, + 0,0,3109,3110,3,440,220,0,3110,439,1,0,0,0,3111,3112,5,311,0,0,3112, + 441,1,0,0,0,3113,3115,5,48,0,0,3114,3116,5,388,0,0,3115,3114,1,0, + 0,0,3115,3116,1,0,0,0,3116,443,1,0,0,0,3117,3119,5,288,0,0,3118, + 3120,5,388,0,0,3119,3118,1,0,0,0,3119,3120,1,0,0,0,3120,445,1,0, + 0,0,3121,3122,5,303,0,0,3122,3123,5,22,0,0,3123,3124,3,906,453,0, + 3124,447,1,0,0,0,3125,3126,5,1,0,0,3126,3128,5,345,0,0,3127,3129, + 5,430,0,0,3128,3127,1,0,0,0,3129,3130,1,0,0,0,3130,3128,1,0,0,0, + 3130,3131,1,0,0,0,3131,449,1,0,0,0,3132,3133,5,1,0,0,3133,3135,5, + 50,0,0,3134,3136,5,430,0,0,3135,3134,1,0,0,0,3136,3137,1,0,0,0,3137, + 3135,1,0,0,0,3137,3138,1,0,0,0,3138,451,1,0,0,0,3139,3141,5,202, + 0,0,3140,3142,5,435,0,0,3141,3140,1,0,0,0,3141,3142,1,0,0,0,3142, + 3143,1,0,0,0,3143,3144,5,166,0,0,3144,3149,3,658,329,0,3145,3147, + 5,17,0,0,3146,3145,1,0,0,0,3146,3147,1,0,0,0,3147,3148,1,0,0,0,3148, + 3150,3,924,462,0,3149,3146,1,0,0,0,3149,3150,1,0,0,0,3150,3151,1, + 0,0,0,3151,3152,5,369,0,0,3152,3153,3,626,313,0,3153,3154,5,223, + 0,0,3154,3155,3,826,413,0,3155,3156,3,454,227,0,3156,453,1,0,0,0, + 3157,3160,3,458,229,0,3158,3160,3,460,230,0,3159,3157,1,0,0,0,3159, + 3158,1,0,0,0,3160,3163,1,0,0,0,3161,3159,1,0,0,0,3161,3162,1,0,0, + 0,3162,3165,1,0,0,0,3163,3161,1,0,0,0,3164,3166,3,456,228,0,3165, + 3164,1,0,0,0,3165,3166,1,0,0,0,3166,455,1,0,0,0,3167,3168,5,382, + 0,0,3168,3169,5,215,0,0,3169,3172,5,200,0,0,3170,3171,5,11,0,0,3171, + 3173,3,826,413,0,3172,3170,1,0,0,0,3172,3173,1,0,0,0,3173,3174,1, + 0,0,0,3174,3175,5,334,0,0,3175,3177,5,161,0,0,3176,3178,3,290,145, + 0,3177,3176,1,0,0,0,3177,3178,1,0,0,0,3178,3179,1,0,0,0,3179,3180, + 5,373,0,0,3180,3181,3,684,342,0,3181,457,1,0,0,0,3182,3183,5,382, + 0,0,3183,3184,5,200,0,0,3184,3185,5,11,0,0,3185,3186,3,826,413,0, + 3186,3187,5,334,0,0,3187,3188,3,462,231,0,3188,459,1,0,0,0,3189, + 3190,5,382,0,0,3190,3191,5,200,0,0,3191,3192,5,334,0,0,3192,3193, + 3,462,231,0,3193,461,1,0,0,0,3194,3195,5,364,0,0,3195,3198,3,426, + 213,0,3196,3198,5,86,0,0,3197,3194,1,0,0,0,3197,3196,1,0,0,0,3198, + 463,1,0,0,0,3199,3200,5,176,0,0,3200,3202,5,257,0,0,3201,3203,5, + 425,0,0,3202,3201,1,0,0,0,3203,3204,1,0,0,0,3204,3202,1,0,0,0,3204, + 3205,1,0,0,0,3205,465,1,0,0,0,3206,3207,5,51,0,0,3207,3208,5,404, + 0,0,3208,3209,5,430,0,0,3209,467,1,0,0,0,3210,3211,5,245,0,0,3211, + 3212,5,425,0,0,3212,469,1,0,0,0,3213,3214,5,351,0,0,3214,3215,5, + 425,0,0,3215,471,1,0,0,0,3216,3217,5,319,0,0,3217,3218,5,425,0,0, + 3218,473,1,0,0,0,3219,3243,5,9,0,0,3220,3221,5,328,0,0,3221,3222, + 3,658,329,0,3222,3223,3,476,238,0,3223,3244,1,0,0,0,3224,3225,5, + 377,0,0,3225,3227,3,662,331,0,3226,3228,5,17,0,0,3227,3226,1,0,0, + 0,3227,3228,1,0,0,0,3228,3229,1,0,0,0,3229,3230,3,482,241,0,3230, + 3244,1,0,0,0,3231,3232,5,201,0,0,3232,3233,5,377,0,0,3233,3234,3, + 662,331,0,3234,3235,3,484,242,0,3235,3244,1,0,0,0,3236,3237,3,92, + 46,0,3237,3238,3,490,245,0,3238,3244,1,0,0,0,3239,3240,5,69,0,0, + 3240,3244,3,586,293,0,3241,3242,5,155,0,0,3242,3244,3,582,291,0, + 3243,3220,1,0,0,0,3243,3224,1,0,0,0,3243,3231,1,0,0,0,3243,3236, + 1,0,0,0,3243,3239,1,0,0,0,3243,3241,1,0,0,0,3244,475,1,0,0,0,3245, + 3267,3,500,250,0,3246,3267,3,532,266,0,3247,3267,3,534,267,0,3248, + 3267,3,520,260,0,3249,3267,3,524,262,0,3250,3267,3,526,263,0,3251, + 3267,3,528,264,0,3252,3267,3,536,268,0,3253,3267,3,558,279,0,3254, + 3267,3,560,280,0,3255,3267,3,480,240,0,3256,3267,3,510,255,0,3257, + 3267,3,504,252,0,3258,3267,3,478,239,0,3259,3261,3,910,455,0,3260, + 3259,1,0,0,0,3260,3261,1,0,0,0,3261,3262,1,0,0,0,3262,3267,3,478, + 239,0,3263,3267,3,576,288,0,3264,3267,3,578,289,0,3265,3267,3,580, + 290,0,3266,3245,1,0,0,0,3266,3246,1,0,0,0,3266,3247,1,0,0,0,3266, + 3248,1,0,0,0,3266,3249,1,0,0,0,3266,3250,1,0,0,0,3266,3251,1,0,0, + 0,3266,3252,1,0,0,0,3266,3253,1,0,0,0,3266,3254,1,0,0,0,3266,3255, + 1,0,0,0,3266,3256,1,0,0,0,3266,3257,1,0,0,0,3266,3258,1,0,0,0,3266, + 3260,1,0,0,0,3266,3263,1,0,0,0,3266,3264,1,0,0,0,3266,3265,1,0,0, + 0,3267,477,1,0,0,0,3268,3284,3,544,272,0,3269,3284,3,556,278,0,3270, + 3284,3,566,283,0,3271,3284,3,540,270,0,3272,3284,3,562,281,0,3273, + 3284,3,568,284,0,3274,3284,3,548,274,0,3275,3284,3,546,273,0,3276, + 3284,3,574,287,0,3277,3284,3,514,257,0,3278,3284,3,516,258,0,3279, + 3284,3,512,256,0,3280,3284,3,502,251,0,3281,3284,3,506,253,0,3282, + 3284,3,508,254,0,3283,3268,1,0,0,0,3283,3269,1,0,0,0,3283,3270,1, + 0,0,0,3283,3271,1,0,0,0,3283,3272,1,0,0,0,3283,3273,1,0,0,0,3283, + 3274,1,0,0,0,3283,3275,1,0,0,0,3283,3276,1,0,0,0,3283,3277,1,0,0, + 0,3283,3278,1,0,0,0,3283,3279,1,0,0,0,3283,3280,1,0,0,0,3283,3281, + 1,0,0,0,3283,3282,1,0,0,0,3284,479,1,0,0,0,3285,3286,5,236,0,0,3286, + 3287,5,45,0,0,3287,3288,5,398,0,0,3288,3289,3,342,171,0,3289,3290, + 5,399,0,0,3290,481,1,0,0,0,3291,3297,3,538,269,0,3292,3297,3,500, + 250,0,3293,3297,3,520,260,0,3294,3297,3,534,267,0,3295,3297,3,412, + 206,0,3296,3291,1,0,0,0,3296,3292,1,0,0,0,3296,3293,1,0,0,0,3296, + 3294,1,0,0,0,3296,3295,1,0,0,0,3297,483,1,0,0,0,3298,3301,3,486, + 243,0,3299,3301,3,488,244,0,3300,3298,1,0,0,0,3300,3299,1,0,0,0, + 3301,485,1,0,0,0,3302,3305,3,48,24,0,3303,3305,3,50,25,0,3304,3302, + 1,0,0,0,3304,3303,1,0,0,0,3305,487,1,0,0,0,3306,3307,5,264,0,0,3307, + 489,1,0,0,0,3308,3312,3,492,246,0,3309,3312,3,494,247,0,3310,3312, + 3,496,248,0,3311,3308,1,0,0,0,3311,3309,1,0,0,0,3311,3310,1,0,0, + 0,3312,491,1,0,0,0,3313,3314,3,652,326,0,3314,3315,5,303,0,0,3315, + 3316,5,76,0,0,3316,3317,3,62,31,0,3317,493,1,0,0,0,3318,3319,3,652, + 326,0,3319,3320,5,303,0,0,3320,3321,5,235,0,0,3321,3322,3,150,75, + 0,3322,495,1,0,0,0,3323,3324,3,652,326,0,3324,3325,5,303,0,0,3325, + 3326,7,22,0,0,3326,3327,5,425,0,0,3327,497,1,0,0,0,3328,3329,3,652, + 326,0,3329,3330,5,303,0,0,3330,3331,5,195,0,0,3331,3332,5,425,0, + 0,3332,499,1,0,0,0,3333,3334,5,273,0,0,3334,3335,5,340,0,0,3335, + 3336,3,660,330,0,3336,501,1,0,0,0,3337,3340,5,4,0,0,3338,3340,5, + 277,0,0,3339,3337,1,0,0,0,3339,3338,1,0,0,0,3340,3341,1,0,0,0,3341, + 3342,5,46,0,0,3342,3343,5,398,0,0,3343,3344,3,274,137,0,3344,3346, + 5,399,0,0,3345,3347,3,42,21,0,3346,3345,1,0,0,0,3346,3347,1,0,0, + 0,3347,503,1,0,0,0,3348,3351,5,4,0,0,3349,3352,3,314,157,0,3350, + 3352,3,304,152,0,3351,3349,1,0,0,0,3351,3350,1,0,0,0,3352,505,1, + 0,0,0,3353,3354,5,364,0,0,3354,3356,5,46,0,0,3355,3357,3,42,21,0, + 3356,3355,1,0,0,0,3356,3357,1,0,0,0,3357,507,1,0,0,0,3358,3359,3, + 294,147,0,3359,3361,5,217,0,0,3360,3362,5,34,0,0,3361,3360,1,0,0, + 0,3361,3362,1,0,0,0,3362,3367,1,0,0,0,3363,3364,3,294,147,0,3364, + 3365,5,221,0,0,3365,3367,1,0,0,0,3366,3358,1,0,0,0,3366,3363,1,0, + 0,0,3367,509,1,0,0,0,3368,3369,5,101,0,0,3369,3370,5,55,0,0,3370, + 3371,3,924,462,0,3371,511,1,0,0,0,3372,3374,5,38,0,0,3373,3375,5, + 45,0,0,3374,3373,1,0,0,0,3374,3375,1,0,0,0,3375,3376,1,0,0,0,3376, + 3377,3,282,141,0,3377,3378,3,284,142,0,3378,3380,3,374,187,0,3379, + 3381,3,356,178,0,3380,3379,1,0,0,0,3380,3381,1,0,0,0,3381,3384,1, + 0,0,0,3382,3383,5,47,0,0,3383,3385,5,425,0,0,3384,3382,1,0,0,0,3384, + 3385,1,0,0,0,3385,3387,1,0,0,0,3386,3388,3,518,259,0,3387,3386,1, + 0,0,0,3387,3388,1,0,0,0,3388,3390,1,0,0,0,3389,3391,3,42,21,0,3390, + 3389,1,0,0,0,3390,3391,1,0,0,0,3391,513,1,0,0,0,3392,3393,5,364, + 0,0,3393,3394,5,318,0,0,3394,3396,5,134,0,0,3395,3397,5,45,0,0,3396, + 3395,1,0,0,0,3396,3397,1,0,0,0,3397,3398,1,0,0,0,3398,3399,3,282, + 141,0,3399,3400,5,303,0,0,3400,3403,3,252,126,0,3401,3402,5,47,0, + 0,3402,3404,5,425,0,0,3403,3401,1,0,0,0,3403,3404,1,0,0,0,3404,515, + 1,0,0,0,3405,3406,5,364,0,0,3406,3407,5,318,0,0,3407,3408,5,303, + 0,0,3408,3409,3,252,126,0,3409,517,1,0,0,0,3410,3414,5,130,0,0,3411, + 3412,5,6,0,0,3412,3414,3,924,462,0,3413,3410,1,0,0,0,3413,3411,1, + 0,0,0,3414,519,1,0,0,0,3415,3417,5,4,0,0,3416,3418,3,44,22,0,3417, + 3416,1,0,0,0,3417,3418,1,0,0,0,3418,3420,1,0,0,0,3419,3421,3,522, + 261,0,3420,3419,1,0,0,0,3421,3422,1,0,0,0,3422,3420,1,0,0,0,3422, + 3423,1,0,0,0,3423,521,1,0,0,0,3424,3426,3,910,455,0,3425,3427,3, + 530,265,0,3426,3425,1,0,0,0,3426,3427,1,0,0,0,3427,523,1,0,0,0,3428, + 3432,5,341,0,0,3429,3431,3,910,455,0,3430,3429,1,0,0,0,3431,3434, + 1,0,0,0,3432,3430,1,0,0,0,3432,3433,1,0,0,0,3433,525,1,0,0,0,3434, + 3432,1,0,0,0,3435,3439,5,15,0,0,3436,3438,3,910,455,0,3437,3436, + 1,0,0,0,3438,3441,1,0,0,0,3439,3437,1,0,0,0,3439,3440,1,0,0,0,3440, + 527,1,0,0,0,3441,3439,1,0,0,0,3442,3446,5,352,0,0,3443,3445,3,910, + 455,0,3444,3443,1,0,0,0,3445,3448,1,0,0,0,3446,3444,1,0,0,0,3446, + 3447,1,0,0,0,3447,529,1,0,0,0,3448,3446,1,0,0,0,3449,3450,5,188, + 0,0,3450,3451,5,425,0,0,3451,531,1,0,0,0,3452,3453,5,102,0,0,3453, + 3454,5,238,0,0,3454,533,1,0,0,0,3455,3457,5,101,0,0,3456,3458,3, + 40,20,0,3457,3456,1,0,0,0,3457,3458,1,0,0,0,3458,3459,1,0,0,0,3459, + 3460,5,236,0,0,3460,3466,3,914,457,0,3461,3462,5,396,0,0,3462,3463, + 5,236,0,0,3463,3465,3,914,457,0,3464,3461,1,0,0,0,3465,3468,1,0, + 0,0,3466,3464,1,0,0,0,3466,3467,1,0,0,0,3467,3470,1,0,0,0,3468,3466, + 1,0,0,0,3469,3471,3,16,8,0,3470,3469,1,0,0,0,3470,3471,1,0,0,0,3471, + 3473,1,0,0,0,3472,3474,5,254,0,0,3473,3472,1,0,0,0,3473,3474,1,0, + 0,0,3474,3476,1,0,0,0,3475,3477,3,18,9,0,3476,3475,1,0,0,0,3476, + 3477,1,0,0,0,3477,535,1,0,0,0,3478,3479,5,303,0,0,3479,3480,5,331, + 0,0,3480,3488,3,252,126,0,3481,3482,5,362,0,0,3482,3484,5,331,0, + 0,3483,3485,3,40,20,0,3484,3483,1,0,0,0,3484,3485,1,0,0,0,3485,3486, + 1,0,0,0,3486,3488,3,252,126,0,3487,3478,1,0,0,0,3487,3481,1,0,0, + 0,3488,537,1,0,0,0,3489,3490,5,303,0,0,3490,3491,5,331,0,0,3491, + 3499,3,252,126,0,3492,3493,5,362,0,0,3493,3495,5,331,0,0,3494,3496, + 3,40,20,0,3495,3494,1,0,0,0,3495,3496,1,0,0,0,3496,3497,1,0,0,0, + 3497,3499,3,252,126,0,3498,3489,1,0,0,0,3498,3492,1,0,0,0,3499,539, + 1,0,0,0,3500,3510,5,303,0,0,3501,3502,5,300,0,0,3502,3506,5,425, + 0,0,3503,3504,5,386,0,0,3504,3505,5,301,0,0,3505,3507,3,252,126, + 0,3506,3503,1,0,0,0,3506,3507,1,0,0,0,3507,3511,1,0,0,0,3508,3509, + 5,301,0,0,3509,3511,3,252,126,0,3510,3501,1,0,0,0,3510,3508,1,0, + 0,0,3511,3516,1,0,0,0,3512,3513,5,362,0,0,3513,3514,5,301,0,0,3514, + 3516,3,252,126,0,3515,3500,1,0,0,0,3515,3512,1,0,0,0,3516,541,1, + 0,0,0,3517,3519,3,658,329,0,3518,3520,3,910,455,0,3519,3518,1,0, + 0,0,3519,3520,1,0,0,0,3520,543,1,0,0,0,3521,3522,5,303,0,0,3522, + 3523,5,129,0,0,3523,3524,3,584,292,0,3524,545,1,0,0,0,3525,3526, + 5,215,0,0,3526,3529,7,23,0,0,3527,3529,3,232,116,0,3528,3525,1,0, + 0,0,3528,3527,1,0,0,0,3529,547,1,0,0,0,3530,3531,5,303,0,0,3531, + 3532,5,309,0,0,3532,3533,5,188,0,0,3533,3534,3,550,275,0,3534,549, + 1,0,0,0,3535,3536,5,398,0,0,3536,3537,3,552,276,0,3537,3538,5,399, + 0,0,3538,551,1,0,0,0,3539,3544,3,554,277,0,3540,3541,5,396,0,0,3541, + 3543,3,554,277,0,3542,3540,1,0,0,0,3543,3546,1,0,0,0,3544,3542,1, + 0,0,0,3544,3545,1,0,0,0,3545,553,1,0,0,0,3546,3544,1,0,0,0,3547, + 3548,3,326,163,0,3548,3549,5,404,0,0,3549,3550,5,425,0,0,3550,555, + 1,0,0,0,3551,3552,5,303,0,0,3552,3553,5,188,0,0,3553,3554,5,425, + 0,0,3554,557,1,0,0,0,3555,3562,3,236,118,0,3556,3559,5,215,0,0,3557, + 3560,5,309,0,0,3558,3560,3,52,26,0,3559,3557,1,0,0,0,3559,3558,1, + 0,0,0,3560,3562,1,0,0,0,3561,3555,1,0,0,0,3561,3556,1,0,0,0,3562, + 559,1,0,0,0,3563,3564,5,113,0,0,3564,3565,3,910,455,0,3565,3566, + 5,386,0,0,3566,3567,5,328,0,0,3567,3568,3,658,329,0,3568,561,1,0, + 0,0,3569,3570,5,273,0,0,3570,3571,5,340,0,0,3571,3572,3,910,455, + 0,3572,563,1,0,0,0,3573,3574,5,364,0,0,3574,3575,5,318,0,0,3575, + 3577,5,134,0,0,3576,3578,5,45,0,0,3577,3576,1,0,0,0,3577,3578,1, + 0,0,0,3578,3579,1,0,0,0,3579,3580,3,282,141,0,3580,3581,5,303,0, + 0,3581,3584,3,252,126,0,3582,3583,5,47,0,0,3583,3585,5,425,0,0,3584, + 3582,1,0,0,0,3584,3585,1,0,0,0,3585,565,1,0,0,0,3586,3587,5,53,0, + 0,3587,567,1,0,0,0,3588,3589,5,166,0,0,3589,3590,5,430,0,0,3590, + 3591,5,31,0,0,3591,569,1,0,0,0,3592,3593,5,11,0,0,3593,3594,5,379, + 0,0,3594,571,1,0,0,0,3595,3596,5,245,0,0,3596,3597,5,425,0,0,3597, + 573,1,0,0,0,3598,3599,5,49,0,0,3599,3601,5,425,0,0,3600,3602,3,570, + 285,0,3601,3600,1,0,0,0,3601,3602,1,0,0,0,3602,3604,1,0,0,0,3603, + 3605,3,234,117,0,3604,3603,1,0,0,0,3604,3605,1,0,0,0,3605,3607,1, + 0,0,0,3606,3608,3,762,381,0,3607,3606,1,0,0,0,3607,3608,1,0,0,0, + 3608,3610,1,0,0,0,3609,3611,3,572,286,0,3610,3609,1,0,0,0,3610,3611, + 1,0,0,0,3611,3616,1,0,0,0,3612,3613,5,386,0,0,3613,3614,5,234,0, + 0,3614,3615,5,331,0,0,3615,3617,3,252,126,0,3616,3612,1,0,0,0,3616, + 3617,1,0,0,0,3617,575,1,0,0,0,3618,3619,5,303,0,0,3619,3620,5,235, + 0,0,3620,3621,3,148,74,0,3621,577,1,0,0,0,3622,3623,5,303,0,0,3623, + 3624,5,236,0,0,3624,3625,5,315,0,0,3625,3626,5,398,0,0,3626,3627, + 3,226,113,0,3627,3628,5,399,0,0,3628,579,1,0,0,0,3629,3639,5,115, + 0,0,3630,3631,5,288,0,0,3631,3632,5,398,0,0,3632,3640,7,24,0,0,3633, + 3634,5,118,0,0,3634,3635,5,398,0,0,3635,3640,5,425,0,0,3636,3637, + 5,305,0,0,3637,3638,5,398,0,0,3638,3640,5,430,0,0,3639,3630,1,0, + 0,0,3639,3633,1,0,0,0,3639,3636,1,0,0,0,3640,3641,1,0,0,0,3641,3642, + 5,399,0,0,3642,581,1,0,0,0,3643,3644,3,924,462,0,3644,3645,5,223, + 0,0,3645,3647,3,658,329,0,3646,3648,3,910,455,0,3647,3646,1,0,0, + 0,3647,3648,1,0,0,0,3648,3649,1,0,0,0,3649,3650,5,264,0,0,3650,583, + 1,0,0,0,3651,3652,5,160,0,0,3652,3653,5,425,0,0,3653,3654,5,232, + 0,0,3654,3655,5,425,0,0,3655,3656,5,300,0,0,3656,3661,5,425,0,0, + 3657,3658,5,159,0,0,3658,3659,5,425,0,0,3659,3660,5,231,0,0,3660, + 3662,5,425,0,0,3661,3657,1,0,0,0,3661,3662,1,0,0,0,3662,3665,1,0, + 0,0,3663,3665,3,924,462,0,3664,3651,1,0,0,0,3664,3663,1,0,0,0,3665, + 585,1,0,0,0,3666,3670,3,588,294,0,3667,3670,3,590,295,0,3668,3670, + 3,592,296,0,3669,3666,1,0,0,0,3669,3667,1,0,0,0,3669,3668,1,0,0, + 0,3670,587,1,0,0,0,3671,3672,3,652,326,0,3672,3673,5,303,0,0,3673, + 3674,5,77,0,0,3674,3675,3,606,303,0,3675,589,1,0,0,0,3676,3677,3, + 652,326,0,3677,3678,5,303,0,0,3678,3679,5,235,0,0,3679,3680,3,150, + 75,0,3680,591,1,0,0,0,3681,3682,3,652,326,0,3682,3683,5,303,0,0, + 3683,3684,5,366,0,0,3684,3685,5,425,0,0,3685,593,1,0,0,0,3686,3687, + 5,183,0,0,3687,3696,5,128,0,0,3688,3689,5,183,0,0,3689,3690,5,128, + 0,0,3690,3691,3,924,462,0,3691,3692,5,425,0,0,3692,3696,1,0,0,0, + 3693,3694,5,183,0,0,3694,3696,3,658,329,0,3695,3686,1,0,0,0,3695, + 3688,1,0,0,0,3695,3693,1,0,0,0,3696,595,1,0,0,0,3697,3699,5,58,0, + 0,3698,3700,5,332,0,0,3699,3698,1,0,0,0,3699,3700,1,0,0,0,3700,3702, + 1,0,0,0,3701,3703,5,344,0,0,3702,3701,1,0,0,0,3702,3703,1,0,0,0, + 3703,3705,1,0,0,0,3704,3706,5,123,0,0,3705,3704,1,0,0,0,3705,3706, + 1,0,0,0,3706,3707,1,0,0,0,3707,3709,5,328,0,0,3708,3710,3,44,22, + 0,3709,3708,1,0,0,0,3709,3710,1,0,0,0,3710,3711,1,0,0,0,3711,3762, + 3,660,330,0,3712,3714,3,594,297,0,3713,3715,3,220,110,0,3714,3713, + 1,0,0,0,3714,3715,1,0,0,0,3715,3717,1,0,0,0,3716,3718,3,248,124, + 0,3717,3716,1,0,0,0,3717,3718,1,0,0,0,3718,3720,1,0,0,0,3719,3721, + 3,270,135,0,3720,3719,1,0,0,0,3720,3721,1,0,0,0,3721,3723,1,0,0, + 0,3722,3724,3,272,136,0,3723,3722,1,0,0,0,3723,3724,1,0,0,0,3724, + 3726,1,0,0,0,3725,3727,3,250,125,0,3726,3725,1,0,0,0,3726,3727,1, + 0,0,0,3727,3763,1,0,0,0,3728,3729,5,398,0,0,3729,3730,3,276,138, + 0,3730,3731,5,399,0,0,3731,3733,1,0,0,0,3732,3728,1,0,0,0,3732,3733, + 1,0,0,0,3733,3735,1,0,0,0,3734,3736,3,218,109,0,3735,3734,1,0,0, + 0,3735,3736,1,0,0,0,3736,3738,1,0,0,0,3737,3739,3,220,110,0,3738, + 3737,1,0,0,0,3738,3739,1,0,0,0,3739,3741,1,0,0,0,3740,3742,3,232, + 116,0,3741,3740,1,0,0,0,3741,3742,1,0,0,0,3742,3744,1,0,0,0,3743, + 3745,3,236,118,0,3744,3743,1,0,0,0,3744,3745,1,0,0,0,3745,3747,1, + 0,0,0,3746,3748,3,248,124,0,3747,3746,1,0,0,0,3747,3748,1,0,0,0, + 3748,3750,1,0,0,0,3749,3751,3,270,135,0,3750,3749,1,0,0,0,3750,3751, + 1,0,0,0,3751,3753,1,0,0,0,3752,3754,3,272,136,0,3753,3752,1,0,0, + 0,3753,3754,1,0,0,0,3754,3756,1,0,0,0,3755,3757,3,250,125,0,3756, + 3755,1,0,0,0,3756,3757,1,0,0,0,3757,3760,1,0,0,0,3758,3759,5,17, + 0,0,3759,3761,3,412,206,0,3760,3758,1,0,0,0,3760,3761,1,0,0,0,3761, + 3763,1,0,0,0,3762,3712,1,0,0,0,3762,3732,1,0,0,0,3763,3821,1,0,0, + 0,3764,3765,5,58,0,0,3765,3766,5,194,0,0,3766,3768,5,328,0,0,3767, + 3769,3,44,22,0,3768,3767,1,0,0,0,3768,3769,1,0,0,0,3769,3770,1,0, + 0,0,3770,3818,3,660,330,0,3771,3773,3,594,297,0,3772,3774,3,248, + 124,0,3773,3772,1,0,0,0,3773,3774,1,0,0,0,3774,3776,1,0,0,0,3775, + 3777,3,270,135,0,3776,3775,1,0,0,0,3776,3777,1,0,0,0,3777,3779,1, + 0,0,0,3778,3780,3,272,136,0,3779,3778,1,0,0,0,3779,3780,1,0,0,0, + 3780,3782,1,0,0,0,3781,3783,3,250,125,0,3782,3781,1,0,0,0,3782,3783, + 1,0,0,0,3783,3819,1,0,0,0,3784,3785,5,398,0,0,3785,3786,3,276,138, + 0,3786,3787,5,399,0,0,3787,3789,1,0,0,0,3788,3784,1,0,0,0,3788,3789, + 1,0,0,0,3789,3791,1,0,0,0,3790,3792,3,218,109,0,3791,3790,1,0,0, + 0,3791,3792,1,0,0,0,3792,3794,1,0,0,0,3793,3795,3,220,110,0,3794, + 3793,1,0,0,0,3794,3795,1,0,0,0,3795,3797,1,0,0,0,3796,3798,3,232, + 116,0,3797,3796,1,0,0,0,3797,3798,1,0,0,0,3798,3800,1,0,0,0,3799, + 3801,3,236,118,0,3800,3799,1,0,0,0,3800,3801,1,0,0,0,3801,3803,1, + 0,0,0,3802,3804,3,248,124,0,3803,3802,1,0,0,0,3803,3804,1,0,0,0, + 3804,3806,1,0,0,0,3805,3807,3,270,135,0,3806,3805,1,0,0,0,3806,3807, + 1,0,0,0,3807,3809,1,0,0,0,3808,3810,3,272,136,0,3809,3808,1,0,0, + 0,3809,3810,1,0,0,0,3810,3812,1,0,0,0,3811,3813,3,250,125,0,3812, + 3811,1,0,0,0,3812,3813,1,0,0,0,3813,3816,1,0,0,0,3814,3815,5,17, + 0,0,3815,3817,3,412,206,0,3816,3814,1,0,0,0,3816,3817,1,0,0,0,3817, + 3819,1,0,0,0,3818,3771,1,0,0,0,3818,3788,1,0,0,0,3819,3821,1,0,0, + 0,3820,3697,1,0,0,0,3820,3764,1,0,0,0,3821,597,1,0,0,0,3822,3823, + 5,58,0,0,3823,3825,5,69,0,0,3824,3826,3,44,22,0,3825,3824,1,0,0, + 0,3825,3826,1,0,0,0,3826,3827,1,0,0,0,3827,3829,3,924,462,0,3828, + 3830,3,604,302,0,3829,3828,1,0,0,0,3829,3830,1,0,0,0,3830,3832,1, + 0,0,0,3831,3833,3,602,301,0,3832,3831,1,0,0,0,3832,3833,1,0,0,0, + 3833,3835,1,0,0,0,3834,3836,3,600,300,0,3835,3834,1,0,0,0,3835,3836, + 1,0,0,0,3836,3840,1,0,0,0,3837,3838,5,386,0,0,3838,3839,5,77,0,0, + 3839,3841,3,606,303,0,3840,3837,1,0,0,0,3840,3841,1,0,0,0,3841,599, + 1,0,0,0,3842,3843,5,47,0,0,3843,3844,5,425,0,0,3844,601,1,0,0,0, + 3845,3846,5,366,0,0,3846,3847,5,425,0,0,3847,603,1,0,0,0,3848,3849, + 5,351,0,0,3849,3850,5,425,0,0,3850,605,1,0,0,0,3851,3852,5,398,0, + 0,3852,3853,3,64,32,0,3853,3854,5,399,0,0,3854,607,1,0,0,0,3855, + 3856,5,101,0,0,3856,3858,5,69,0,0,3857,3859,3,40,20,0,3858,3857, + 1,0,0,0,3858,3859,1,0,0,0,3859,3860,1,0,0,0,3860,3861,3,924,462, + 0,3861,609,1,0,0,0,3862,3863,3,924,462,0,3863,3864,5,394,0,0,3864, + 3866,1,0,0,0,3865,3862,1,0,0,0,3866,3869,1,0,0,0,3867,3865,1,0,0, + 0,3867,3868,1,0,0,0,3868,3870,1,0,0,0,3869,3867,1,0,0,0,3870,3871, + 5,414,0,0,3871,611,1,0,0,0,3872,3873,5,83,0,0,3873,613,1,0,0,0,3874, + 3879,3,826,413,0,3875,3876,5,396,0,0,3876,3878,3,826,413,0,3877, + 3875,1,0,0,0,3878,3881,1,0,0,0,3879,3877,1,0,0,0,3879,3880,1,0,0, + 0,3880,615,1,0,0,0,3881,3879,1,0,0,0,3882,3887,3,924,462,0,3883, + 3884,5,396,0,0,3884,3886,3,924,462,0,3885,3883,1,0,0,0,3886,3889, + 1,0,0,0,3887,3885,1,0,0,0,3887,3888,1,0,0,0,3888,617,1,0,0,0,3889, + 3887,1,0,0,0,3890,3891,5,139,0,0,3891,3892,3,620,310,0,3892,619, + 1,0,0,0,3893,3894,3,632,316,0,3894,3897,3,628,314,0,3895,3896,5, + 396,0,0,3896,3898,3,628,314,0,3897,3895,1,0,0,0,3898,3899,1,0,0, + 0,3899,3897,1,0,0,0,3899,3900,1,0,0,0,3900,3903,1,0,0,0,3901,3903, + 3,624,312,0,3902,3893,1,0,0,0,3902,3901,1,0,0,0,3903,621,1,0,0,0, + 3904,3908,3,646,323,0,3905,3907,3,636,318,0,3906,3905,1,0,0,0,3907, + 3910,1,0,0,0,3908,3906,1,0,0,0,3908,3909,1,0,0,0,3909,3937,1,0,0, + 0,3910,3908,1,0,0,0,3911,3915,3,688,344,0,3912,3914,3,636,318,0, + 3913,3912,1,0,0,0,3914,3917,1,0,0,0,3915,3913,1,0,0,0,3915,3916, + 1,0,0,0,3916,3937,1,0,0,0,3917,3915,1,0,0,0,3918,3922,3,666,333, + 0,3919,3921,3,636,318,0,3920,3919,1,0,0,0,3921,3924,1,0,0,0,3922, + 3920,1,0,0,0,3922,3923,1,0,0,0,3923,3937,1,0,0,0,3924,3922,1,0,0, + 0,3925,3929,3,672,336,0,3926,3928,3,636,318,0,3927,3926,1,0,0,0, + 3928,3931,1,0,0,0,3929,3927,1,0,0,0,3929,3930,1,0,0,0,3930,3937, + 1,0,0,0,3931,3929,1,0,0,0,3932,3933,5,398,0,0,3933,3934,3,624,312, + 0,3934,3935,5,399,0,0,3935,3937,1,0,0,0,3936,3904,1,0,0,0,3936,3911, + 1,0,0,0,3936,3918,1,0,0,0,3936,3925,1,0,0,0,3936,3932,1,0,0,0,3937, + 623,1,0,0,0,3938,3949,3,622,311,0,3939,3940,3,634,317,0,3940,3945, + 3,626,313,0,3941,3942,5,223,0,0,3942,3946,3,826,413,0,3943,3944, + 5,369,0,0,3944,3946,3,290,145,0,3945,3941,1,0,0,0,3945,3943,1,0, + 0,0,3945,3946,1,0,0,0,3946,3948,1,0,0,0,3947,3939,1,0,0,0,3948,3951, + 1,0,0,0,3949,3947,1,0,0,0,3949,3950,1,0,0,0,3950,625,1,0,0,0,3951, + 3949,1,0,0,0,3952,3957,3,646,323,0,3953,3957,3,688,344,0,3954,3957, + 3,666,333,0,3955,3957,3,672,336,0,3956,3952,1,0,0,0,3956,3953,1, + 0,0,0,3956,3954,1,0,0,0,3956,3955,1,0,0,0,3957,3961,1,0,0,0,3958, + 3960,3,636,318,0,3959,3958,1,0,0,0,3960,3963,1,0,0,0,3961,3959,1, + 0,0,0,3961,3962,1,0,0,0,3962,627,1,0,0,0,3963,3961,1,0,0,0,3964, + 3966,5,249,0,0,3965,3964,1,0,0,0,3965,3966,1,0,0,0,3966,3967,1,0, + 0,0,3967,3968,3,650,325,0,3968,3969,3,630,315,0,3969,629,1,0,0,0, + 3970,3971,5,398,0,0,3971,3972,3,614,307,0,3972,3973,5,399,0,0,3973, + 631,1,0,0,0,3974,3975,5,358,0,0,3975,633,1,0,0,0,3976,3991,5,396, + 0,0,3977,3988,5,157,0,0,3978,3988,5,60,0,0,3979,3981,7,25,0,0,3980, + 3982,5,230,0,0,3981,3980,1,0,0,0,3981,3982,1,0,0,0,3982,3988,1,0, + 0,0,3983,3985,5,180,0,0,3984,3986,7,26,0,0,3985,3984,1,0,0,0,3985, + 3986,1,0,0,0,3986,3988,1,0,0,0,3987,3977,1,0,0,0,3987,3978,1,0,0, + 0,3987,3979,1,0,0,0,3987,3983,1,0,0,0,3987,3988,1,0,0,0,3988,3989, + 1,0,0,0,3989,3991,5,171,0,0,3990,3976,1,0,0,0,3990,3987,1,0,0,0, + 3991,635,1,0,0,0,3992,3993,5,178,0,0,3993,3994,5,377,0,0,3994,3995, + 5,230,0,0,3995,3996,3,774,387,0,3996,4006,3,638,319,0,3997,3998, + 5,17,0,0,3998,4003,3,924,462,0,3999,4000,5,396,0,0,4000,4002,3,924, + 462,0,4001,3999,1,0,0,0,4002,4005,1,0,0,0,4003,4001,1,0,0,0,4003, + 4004,1,0,0,0,4004,4007,1,0,0,0,4005,4003,1,0,0,0,4006,3997,1,0,0, + 0,4006,4007,1,0,0,0,4007,4050,1,0,0,0,4008,4010,5,396,0,0,4009,4008, + 1,0,0,0,4009,4010,1,0,0,0,4010,4011,1,0,0,0,4011,4047,5,178,0,0, + 4012,4013,5,377,0,0,4013,4014,3,774,387,0,4014,4024,3,638,319,0, + 4015,4016,5,17,0,0,4016,4021,3,924,462,0,4017,4018,5,396,0,0,4018, + 4020,3,924,462,0,4019,4017,1,0,0,0,4020,4023,1,0,0,0,4021,4019,1, + 0,0,0,4021,4022,1,0,0,0,4022,4025,1,0,0,0,4023,4021,1,0,0,0,4024, + 4015,1,0,0,0,4024,4025,1,0,0,0,4025,4048,1,0,0,0,4026,4027,5,328, + 0,0,4027,4028,5,398,0,0,4028,4029,3,680,340,0,4029,4031,5,399,0, + 0,4030,4032,5,17,0,0,4031,4030,1,0,0,0,4031,4032,1,0,0,0,4032,4033, + 1,0,0,0,4033,4045,3,638,319,0,4034,4035,5,398,0,0,4035,4040,3,924, + 462,0,4036,4037,5,396,0,0,4037,4039,3,924,462,0,4038,4036,1,0,0, + 0,4039,4042,1,0,0,0,4040,4038,1,0,0,0,4040,4041,1,0,0,0,4041,4043, + 1,0,0,0,4042,4040,1,0,0,0,4043,4044,5,399,0,0,4044,4046,1,0,0,0, + 4045,4034,1,0,0,0,4045,4046,1,0,0,0,4046,4048,1,0,0,0,4047,4012, 1,0,0,0,4047,4026,1,0,0,0,4048,4050,1,0,0,0,4049,3992,1,0,0,0,4049, - 4009,1,0,0,0,4050,639,1,0,0,0,4051,4052,3,926,463,0,4052,641,1,0, + 4009,1,0,0,0,4050,637,1,0,0,0,4051,4052,3,924,462,0,4052,639,1,0, 0,0,4053,4054,5,330,0,0,4054,4055,5,398,0,0,4055,4056,5,30,0,0,4056, 4057,5,430,0,0,4057,4058,5,229,0,0,4058,4059,5,220,0,0,4059,4069, - 5,430,0,0,4060,4061,5,223,0,0,4061,4066,3,828,414,0,4062,4063,5, - 396,0,0,4063,4065,3,828,414,0,4064,4062,1,0,0,0,4065,4068,1,0,0, + 5,430,0,0,4060,4061,5,223,0,0,4061,4066,3,826,413,0,4062,4063,5, + 396,0,0,4063,4065,3,826,413,0,4064,4062,1,0,0,0,4065,4068,1,0,0, 0,4066,4064,1,0,0,0,4066,4067,1,0,0,0,4067,4070,1,0,0,0,4068,4066, 1,0,0,0,4069,4060,1,0,0,0,4069,4070,1,0,0,0,4070,4071,1,0,0,0,4071, - 4072,5,399,0,0,4072,643,1,0,0,0,4073,4074,5,330,0,0,4074,4078,5, + 4072,5,399,0,0,4072,641,1,0,0,0,4073,4074,5,330,0,0,4074,4078,5, 398,0,0,4075,4076,5,430,0,0,4076,4079,7,27,0,0,4077,4079,5,429,0, 0,4078,4075,1,0,0,0,4078,4077,1,0,0,0,4079,4080,1,0,0,0,4080,4081, - 5,399,0,0,4081,645,1,0,0,0,4082,4085,3,642,321,0,4083,4085,3,644, - 322,0,4084,4082,1,0,0,0,4084,4083,1,0,0,0,4085,647,1,0,0,0,4086, - 4088,3,658,329,0,4087,4089,3,252,126,0,4088,4087,1,0,0,0,4088,4089, - 1,0,0,0,4089,4091,1,0,0,0,4090,4092,3,646,323,0,4091,4090,1,0,0, - 0,4091,4092,1,0,0,0,4092,4094,1,0,0,0,4093,4095,3,650,325,0,4094, + 5,399,0,0,4081,643,1,0,0,0,4082,4085,3,640,320,0,4083,4085,3,642, + 321,0,4084,4082,1,0,0,0,4084,4083,1,0,0,0,4085,645,1,0,0,0,4086, + 4088,3,656,328,0,4087,4089,3,252,126,0,4088,4087,1,0,0,0,4088,4089, + 1,0,0,0,4089,4091,1,0,0,0,4090,4092,3,644,322,0,4091,4090,1,0,0, + 0,4091,4092,1,0,0,0,4092,4094,1,0,0,0,4093,4095,3,648,324,0,4094, 4093,1,0,0,0,4094,4095,1,0,0,0,4095,4100,1,0,0,0,4096,4098,5,17, 0,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0,4098,4099,1,0,0,0,4099,4101, - 3,926,463,0,4100,4097,1,0,0,0,4100,4101,1,0,0,0,4101,649,1,0,0,0, + 3,924,462,0,4100,4097,1,0,0,0,4100,4101,1,0,0,0,4101,647,1,0,0,0, 4102,4112,5,134,0,0,4103,4104,5,326,0,0,4104,4105,5,17,0,0,4105, - 4106,5,220,0,0,4106,4113,3,828,414,0,4107,4108,5,134,0,0,4108,4109, + 4106,5,220,0,0,4106,4113,3,826,413,0,4107,4108,5,134,0,0,4108,4109, 5,327,0,0,4109,4110,5,17,0,0,4110,4111,5,220,0,0,4111,4113,5,430, - 0,0,4112,4103,1,0,0,0,4112,4107,1,0,0,0,4113,651,1,0,0,0,4114,4116, - 3,658,329,0,4115,4117,3,646,323,0,4116,4115,1,0,0,0,4116,4117,1, + 0,0,4112,4103,1,0,0,0,4112,4107,1,0,0,0,4113,649,1,0,0,0,4114,4116, + 3,656,328,0,4115,4117,3,644,322,0,4116,4115,1,0,0,0,4116,4117,1, 0,0,0,4117,4122,1,0,0,0,4118,4120,5,17,0,0,4119,4118,1,0,0,0,4119, - 4120,1,0,0,0,4120,4121,1,0,0,0,4121,4123,3,926,463,0,4122,4119,1, - 0,0,0,4122,4123,1,0,0,0,4123,653,1,0,0,0,4124,4125,3,926,463,0,4125, - 655,1,0,0,0,4126,4127,3,926,463,0,4127,657,1,0,0,0,4128,4131,3,660, - 330,0,4129,4131,3,664,332,0,4130,4128,1,0,0,0,4130,4129,1,0,0,0, - 4131,659,1,0,0,0,4132,4133,3,926,463,0,4133,4134,5,394,0,0,4134, - 4137,3,926,463,0,4135,4136,5,394,0,0,4136,4138,3,926,463,0,4137, - 4135,1,0,0,0,4137,4138,1,0,0,0,4138,4141,1,0,0,0,4139,4141,3,926, - 463,0,4140,4132,1,0,0,0,4140,4139,1,0,0,0,4141,661,1,0,0,0,4142, - 4143,3,926,463,0,4143,4144,5,394,0,0,4144,4147,3,926,463,0,4145, - 4146,5,394,0,0,4146,4148,3,926,463,0,4147,4145,1,0,0,0,4147,4148, - 1,0,0,0,4148,4151,1,0,0,0,4149,4151,3,926,463,0,4150,4142,1,0,0, - 0,4150,4149,1,0,0,0,4151,663,1,0,0,0,4152,4153,3,926,463,0,4153, + 4120,1,0,0,0,4120,4121,1,0,0,0,4121,4123,3,924,462,0,4122,4119,1, + 0,0,0,4122,4123,1,0,0,0,4123,651,1,0,0,0,4124,4125,3,924,462,0,4125, + 653,1,0,0,0,4126,4127,3,924,462,0,4127,655,1,0,0,0,4128,4131,3,658, + 329,0,4129,4131,3,662,331,0,4130,4128,1,0,0,0,4130,4129,1,0,0,0, + 4131,657,1,0,0,0,4132,4133,3,924,462,0,4133,4134,5,394,0,0,4134, + 4137,3,924,462,0,4135,4136,5,394,0,0,4136,4138,3,924,462,0,4137, + 4135,1,0,0,0,4137,4138,1,0,0,0,4138,4141,1,0,0,0,4139,4141,3,924, + 462,0,4140,4132,1,0,0,0,4140,4139,1,0,0,0,4141,659,1,0,0,0,4142, + 4143,3,924,462,0,4143,4144,5,394,0,0,4144,4147,3,924,462,0,4145, + 4146,5,394,0,0,4146,4148,3,924,462,0,4147,4145,1,0,0,0,4147,4148, + 1,0,0,0,4148,4151,1,0,0,0,4149,4151,3,924,462,0,4150,4142,1,0,0, + 0,4150,4149,1,0,0,0,4151,661,1,0,0,0,4152,4153,3,924,462,0,4153, 4154,5,394,0,0,4154,4156,1,0,0,0,4155,4152,1,0,0,0,4155,4156,1,0, - 0,0,4156,4157,1,0,0,0,4157,4158,3,926,463,0,4158,665,1,0,0,0,4159, - 4160,3,926,463,0,4160,4161,5,394,0,0,4161,4163,1,0,0,0,4162,4159, - 1,0,0,0,4162,4163,1,0,0,0,4163,4164,1,0,0,0,4164,4165,3,926,463, - 0,4165,667,1,0,0,0,4166,4167,5,398,0,0,4167,4168,3,392,196,0,4168, + 0,0,4156,4157,1,0,0,0,4157,4158,3,924,462,0,4158,663,1,0,0,0,4159, + 4160,3,924,462,0,4160,4161,5,394,0,0,4161,4163,1,0,0,0,4162,4159, + 1,0,0,0,4162,4163,1,0,0,0,4163,4164,1,0,0,0,4164,4165,3,924,462, + 0,4165,665,1,0,0,0,4166,4167,5,398,0,0,4167,4168,3,392,196,0,4168, 4170,5,399,0,0,4169,4171,5,17,0,0,4170,4169,1,0,0,0,4170,4171,1, - 0,0,0,4171,4172,1,0,0,0,4172,4173,3,926,463,0,4173,669,1,0,0,0,4174, - 4176,3,768,384,0,4175,4177,3,764,382,0,4176,4175,1,0,0,0,4176,4177, - 1,0,0,0,4177,4186,1,0,0,0,4178,4186,3,764,382,0,4179,4181,3,770, - 385,0,4180,4182,3,772,386,0,4181,4180,1,0,0,0,4181,4182,1,0,0,0, - 4182,4186,1,0,0,0,4183,4186,3,772,386,0,4184,4186,3,766,383,0,4185, + 0,0,0,4171,4172,1,0,0,0,4172,4173,3,924,462,0,4173,667,1,0,0,0,4174, + 4176,3,766,383,0,4175,4177,3,762,381,0,4176,4175,1,0,0,0,4176,4177, + 1,0,0,0,4177,4186,1,0,0,0,4178,4186,3,762,381,0,4179,4181,3,768, + 384,0,4180,4182,3,770,385,0,4181,4180,1,0,0,0,4181,4182,1,0,0,0, + 4182,4186,1,0,0,0,4183,4186,3,770,385,0,4184,4186,3,764,382,0,4185, 4174,1,0,0,0,4185,4178,1,0,0,0,4185,4179,1,0,0,0,4185,4183,1,0,0, - 0,4185,4184,1,0,0,0,4186,671,1,0,0,0,4187,4191,3,668,334,0,4188, - 4191,3,648,324,0,4189,4191,3,674,337,0,4190,4187,1,0,0,0,4190,4188, - 1,0,0,0,4190,4189,1,0,0,0,4191,673,1,0,0,0,4192,4193,3,926,463,0, - 4193,4194,5,398,0,0,4194,4195,5,223,0,0,4195,4197,3,672,336,0,4196, - 4198,3,670,335,0,4197,4196,1,0,0,0,4197,4198,1,0,0,0,4198,4214,1, - 0,0,0,4199,4200,5,431,0,0,4200,4201,5,398,0,0,4201,4202,3,828,414, + 0,4185,4184,1,0,0,0,4186,669,1,0,0,0,4187,4191,3,666,333,0,4188, + 4191,3,646,323,0,4189,4191,3,672,336,0,4190,4187,1,0,0,0,4190,4188, + 1,0,0,0,4190,4189,1,0,0,0,4191,671,1,0,0,0,4192,4193,3,924,462,0, + 4193,4194,5,398,0,0,4194,4195,5,223,0,0,4195,4197,3,670,335,0,4196, + 4198,3,668,334,0,4197,4196,1,0,0,0,4197,4198,1,0,0,0,4198,4214,1, + 0,0,0,4199,4200,5,431,0,0,4200,4201,5,398,0,0,4201,4202,3,826,413, 0,4202,4211,5,399,0,0,4203,4204,5,396,0,0,4204,4205,5,431,0,0,4205, - 4206,5,398,0,0,4206,4207,3,828,414,0,4207,4208,5,399,0,0,4208,4210, + 4206,5,398,0,0,4206,4207,3,826,413,0,4207,4208,5,399,0,0,4208,4210, 1,0,0,0,4209,4203,1,0,0,0,4210,4213,1,0,0,0,4211,4209,1,0,0,0,4211, 4212,1,0,0,0,4212,4215,1,0,0,0,4213,4211,1,0,0,0,4214,4199,1,0,0, 0,4214,4215,1,0,0,0,4215,4216,1,0,0,0,4216,4218,5,399,0,0,4217,4219, - 3,926,463,0,4218,4217,1,0,0,0,4218,4219,1,0,0,0,4219,675,1,0,0,0, - 4220,4221,5,383,0,0,4221,4222,3,678,339,0,4222,677,1,0,0,0,4223, - 4224,3,828,414,0,4224,679,1,0,0,0,4225,4226,3,682,341,0,4226,681, - 1,0,0,0,4227,4228,5,373,0,0,4228,4229,3,684,342,0,4229,683,1,0,0, - 0,4230,4235,3,686,343,0,4231,4232,5,396,0,0,4232,4234,3,686,343, + 3,924,462,0,4218,4217,1,0,0,0,4218,4219,1,0,0,0,4219,673,1,0,0,0, + 4220,4221,5,383,0,0,4221,4222,3,676,338,0,4222,675,1,0,0,0,4223, + 4224,3,826,413,0,4224,677,1,0,0,0,4225,4226,3,680,340,0,4226,679, + 1,0,0,0,4227,4228,5,373,0,0,4228,4229,3,682,341,0,4229,681,1,0,0, + 0,4230,4235,3,684,342,0,4231,4232,5,396,0,0,4232,4234,3,684,342, 0,4233,4231,1,0,0,0,4234,4237,1,0,0,0,4235,4233,1,0,0,0,4235,4236, - 1,0,0,0,4236,4247,1,0,0,0,4237,4235,1,0,0,0,4238,4243,3,688,344, - 0,4239,4240,5,396,0,0,4240,4242,3,686,343,0,4241,4239,1,0,0,0,4242, + 1,0,0,0,4236,4247,1,0,0,0,4237,4235,1,0,0,0,4238,4243,3,686,343, + 0,4239,4240,5,396,0,0,4240,4242,3,684,342,0,4241,4239,1,0,0,0,4242, 4245,1,0,0,0,4243,4241,1,0,0,0,4243,4244,1,0,0,0,4244,4247,1,0,0, - 0,4245,4243,1,0,0,0,4246,4230,1,0,0,0,4246,4238,1,0,0,0,4247,685, - 1,0,0,0,4248,4249,3,746,373,0,4249,687,1,0,0,0,4250,4251,5,398,0, - 0,4251,4252,3,754,377,0,4252,4253,5,399,0,0,4253,689,1,0,0,0,4254, - 4255,5,328,0,0,4255,4256,5,398,0,0,4256,4257,3,682,341,0,4257,4259, + 0,4245,4243,1,0,0,0,4246,4230,1,0,0,0,4246,4238,1,0,0,0,4247,683, + 1,0,0,0,4248,4249,3,744,372,0,4249,685,1,0,0,0,4250,4251,5,398,0, + 0,4251,4252,3,752,376,0,4252,4253,5,399,0,0,4253,687,1,0,0,0,4254, + 4255,5,328,0,0,4255,4256,5,398,0,0,4256,4257,3,680,340,0,4257,4259, 5,399,0,0,4258,4260,5,17,0,0,4259,4258,1,0,0,0,4259,4260,1,0,0,0, - 4260,4261,1,0,0,0,4261,4271,3,640,320,0,4262,4263,5,398,0,0,4263, - 4268,3,926,463,0,4264,4265,5,396,0,0,4265,4267,3,926,463,0,4266, + 4260,4261,1,0,0,0,4261,4271,3,638,319,0,4262,4263,5,398,0,0,4263, + 4268,3,924,462,0,4264,4265,5,396,0,0,4265,4267,3,924,462,0,4266, 4264,1,0,0,0,4267,4270,1,0,0,0,4268,4266,1,0,0,0,4268,4269,1,0,0, 0,4269,4272,1,0,0,0,4270,4268,1,0,0,0,4271,4262,1,0,0,0,4271,4272, - 1,0,0,0,4272,4273,1,0,0,0,4273,4274,5,399,0,0,4274,691,1,0,0,0,4275, + 1,0,0,0,4272,4273,1,0,0,0,4273,4274,5,399,0,0,4274,689,1,0,0,0,4275, 4277,5,298,0,0,4276,4278,5,435,0,0,4277,4276,1,0,0,0,4277,4278,1, - 0,0,0,4278,4285,1,0,0,0,4279,4281,3,694,347,0,4280,4279,1,0,0,0, - 4280,4281,1,0,0,0,4281,4282,1,0,0,0,4282,4286,3,696,348,0,4283,4284, - 5,346,0,0,4284,4286,3,698,349,0,4285,4280,1,0,0,0,4285,4283,1,0, - 0,0,4286,4289,1,0,0,0,4287,4289,3,702,351,0,4288,4275,1,0,0,0,4288, - 4287,1,0,0,0,4289,693,1,0,0,0,4290,4291,7,20,0,0,4291,695,1,0,0, - 0,4292,4297,3,700,350,0,4293,4294,5,396,0,0,4294,4296,3,700,350, + 0,0,0,4278,4285,1,0,0,0,4279,4281,3,692,346,0,4280,4279,1,0,0,0, + 4280,4281,1,0,0,0,4281,4282,1,0,0,0,4282,4286,3,694,347,0,4283,4284, + 5,346,0,0,4284,4286,3,696,348,0,4285,4280,1,0,0,0,4285,4283,1,0, + 0,0,4286,4289,1,0,0,0,4287,4289,3,700,350,0,4288,4275,1,0,0,0,4288, + 4287,1,0,0,0,4289,691,1,0,0,0,4290,4291,7,20,0,0,4291,693,1,0,0, + 0,4292,4297,3,698,349,0,4293,4294,5,396,0,0,4294,4296,3,698,349, 0,4295,4293,1,0,0,0,4296,4299,1,0,0,0,4297,4295,1,0,0,0,4297,4298, - 1,0,0,0,4298,697,1,0,0,0,4299,4297,1,0,0,0,4300,4301,5,398,0,0,4301, - 4302,3,706,353,0,4302,4303,5,399,0,0,4303,4304,3,238,119,0,4304, + 1,0,0,0,4298,695,1,0,0,0,4299,4297,1,0,0,0,4300,4301,5,398,0,0,4301, + 4302,3,704,352,0,4302,4303,5,399,0,0,4303,4304,3,238,119,0,4304, 4305,3,242,121,0,4305,4306,5,369,0,0,4306,4319,5,425,0,0,4307,4317, - 5,17,0,0,4308,4311,5,398,0,0,4309,4312,3,618,309,0,4310,4312,3,274, + 5,17,0,0,4308,4311,5,398,0,0,4309,4312,3,616,308,0,4310,4312,3,274, 137,0,4311,4309,1,0,0,0,4311,4310,1,0,0,0,4312,4313,1,0,0,0,4313, - 4314,5,399,0,0,4314,4318,1,0,0,0,4315,4318,3,618,309,0,4316,4318, + 4314,5,399,0,0,4314,4318,1,0,0,0,4315,4318,3,616,308,0,4316,4318, 3,274,137,0,4317,4308,1,0,0,0,4317,4315,1,0,0,0,4317,4316,1,0,0, 0,4318,4320,1,0,0,0,4319,4307,1,0,0,0,4319,4320,1,0,0,0,4320,4321, - 1,0,0,0,4321,4322,3,238,119,0,4322,4323,3,240,120,0,4323,699,1,0, - 0,0,4324,4348,3,612,306,0,4325,4328,3,282,141,0,4326,4328,3,828, - 414,0,4327,4325,1,0,0,0,4327,4326,1,0,0,0,4328,4345,1,0,0,0,4329, + 1,0,0,0,4321,4322,3,238,119,0,4322,4323,3,240,120,0,4323,697,1,0, + 0,0,4324,4348,3,610,305,0,4325,4328,3,282,141,0,4326,4328,3,826, + 413,0,4327,4325,1,0,0,0,4327,4326,1,0,0,0,4328,4345,1,0,0,0,4329, 4331,5,17,0,0,4330,4329,1,0,0,0,4330,4331,1,0,0,0,4331,4332,1,0, - 0,0,4332,4346,3,926,463,0,4333,4334,5,17,0,0,4334,4335,5,398,0,0, - 4335,4340,3,926,463,0,4336,4337,5,396,0,0,4337,4339,3,926,463,0, + 0,0,4332,4346,3,924,462,0,4333,4334,5,17,0,0,4334,4335,5,398,0,0, + 4335,4340,3,924,462,0,4336,4337,5,396,0,0,4337,4339,3,924,462,0, 4338,4336,1,0,0,0,4339,4342,1,0,0,0,4340,4338,1,0,0,0,4340,4341, 1,0,0,0,4341,4343,1,0,0,0,4342,4340,1,0,0,0,4343,4344,5,399,0,0, 4344,4346,1,0,0,0,4345,4330,1,0,0,0,4345,4333,1,0,0,0,4345,4346, 1,0,0,0,4346,4348,1,0,0,0,4347,4324,1,0,0,0,4347,4327,1,0,0,0,4348, - 701,1,0,0,0,4349,4350,7,28,0,0,4350,4351,3,706,353,0,4351,4352,3, + 699,1,0,0,0,4349,4350,7,28,0,0,4350,4351,3,704,352,0,4351,4352,3, 238,119,0,4352,4353,3,242,121,0,4353,4354,5,369,0,0,4354,4367,5, - 425,0,0,4355,4365,5,17,0,0,4356,4359,5,398,0,0,4357,4360,3,618,309, + 425,0,0,4355,4365,5,17,0,0,4356,4359,5,398,0,0,4357,4360,3,616,308, 0,4358,4360,3,274,137,0,4359,4357,1,0,0,0,4359,4358,1,0,0,0,4360, - 4361,1,0,0,0,4361,4362,5,399,0,0,4362,4366,1,0,0,0,4363,4366,3,618, - 309,0,4364,4366,3,274,137,0,4365,4356,1,0,0,0,4365,4363,1,0,0,0, + 4361,1,0,0,0,4361,4362,5,399,0,0,4362,4366,1,0,0,0,4363,4366,3,616, + 308,0,4364,4366,3,274,137,0,4365,4356,1,0,0,0,4365,4363,1,0,0,0, 4365,4364,1,0,0,0,4366,4368,1,0,0,0,4367,4355,1,0,0,0,4367,4368, 1,0,0,0,4368,4369,1,0,0,0,4369,4370,3,238,119,0,4370,4371,3,240, - 120,0,4371,703,1,0,0,0,4372,4375,3,612,306,0,4373,4375,3,828,414, - 0,4374,4372,1,0,0,0,4374,4373,1,0,0,0,4375,705,1,0,0,0,4376,4381, - 3,704,352,0,4377,4378,5,396,0,0,4378,4380,3,704,352,0,4379,4377, + 120,0,4371,701,1,0,0,0,4372,4375,3,610,305,0,4373,4375,3,826,413, + 0,4374,4372,1,0,0,0,4374,4373,1,0,0,0,4375,703,1,0,0,0,4376,4381, + 3,702,351,0,4377,4378,5,396,0,0,4378,4380,3,702,351,0,4379,4377, 1,0,0,0,4380,4383,1,0,0,0,4381,4379,1,0,0,0,4381,4382,1,0,0,0,4382, - 707,1,0,0,0,4383,4381,1,0,0,0,4384,4385,5,385,0,0,4385,4390,3,710, - 355,0,4386,4387,5,396,0,0,4387,4389,3,710,355,0,4388,4386,1,0,0, - 0,4389,4392,1,0,0,0,4390,4388,1,0,0,0,4390,4391,1,0,0,0,4391,709, - 1,0,0,0,4392,4390,1,0,0,0,4393,4394,3,926,463,0,4394,4395,5,17,0, - 0,4395,4396,3,712,356,0,4396,711,1,0,0,0,4397,4410,3,926,463,0,4398, - 4400,5,398,0,0,4399,4401,3,926,463,0,4400,4399,1,0,0,0,4400,4401, - 1,0,0,0,4401,4403,1,0,0,0,4402,4404,3,670,335,0,4403,4402,1,0,0, - 0,4403,4404,1,0,0,0,4404,4406,1,0,0,0,4405,4407,3,714,357,0,4406, + 705,1,0,0,0,4383,4381,1,0,0,0,4384,4385,5,385,0,0,4385,4390,3,708, + 354,0,4386,4387,5,396,0,0,4387,4389,3,708,354,0,4388,4386,1,0,0, + 0,4389,4392,1,0,0,0,4390,4388,1,0,0,0,4390,4391,1,0,0,0,4391,707, + 1,0,0,0,4392,4390,1,0,0,0,4393,4394,3,924,462,0,4394,4395,5,17,0, + 0,4395,4396,3,710,355,0,4396,709,1,0,0,0,4397,4410,3,924,462,0,4398, + 4400,5,398,0,0,4399,4401,3,924,462,0,4400,4399,1,0,0,0,4400,4401, + 1,0,0,0,4401,4403,1,0,0,0,4402,4404,3,668,334,0,4403,4402,1,0,0, + 0,4403,4404,1,0,0,0,4404,4406,1,0,0,0,4405,4407,3,712,356,0,4406, 4405,1,0,0,0,4406,4407,1,0,0,0,4407,4408,1,0,0,0,4408,4410,5,399, - 0,0,4409,4397,1,0,0,0,4409,4398,1,0,0,0,4410,713,1,0,0,0,4411,4414, - 3,716,358,0,4412,4414,3,718,359,0,4413,4411,1,0,0,0,4413,4412,1, - 0,0,0,4414,715,1,0,0,0,4415,4422,5,291,0,0,4416,4423,3,720,360,0, - 4417,4418,5,25,0,0,4418,4419,3,722,361,0,4419,4420,5,11,0,0,4420, - 4421,3,722,361,0,4421,4423,1,0,0,0,4422,4416,1,0,0,0,4422,4417,1, - 0,0,0,4423,717,1,0,0,0,4424,4431,5,259,0,0,4425,4432,3,720,360,0, - 4426,4427,5,25,0,0,4427,4428,3,722,361,0,4428,4429,5,11,0,0,4429, - 4430,3,722,361,0,4430,4432,1,0,0,0,4431,4425,1,0,0,0,4431,4426,1, - 0,0,0,4432,719,1,0,0,0,4433,4434,5,353,0,0,4434,4440,5,246,0,0,4435, + 0,0,4409,4397,1,0,0,0,4409,4398,1,0,0,0,4410,711,1,0,0,0,4411,4414, + 3,714,357,0,4412,4414,3,716,358,0,4413,4411,1,0,0,0,4413,4412,1, + 0,0,0,4414,713,1,0,0,0,4415,4422,5,291,0,0,4416,4423,3,718,359,0, + 4417,4418,5,25,0,0,4418,4419,3,720,360,0,4419,4420,5,11,0,0,4420, + 4421,3,720,360,0,4421,4423,1,0,0,0,4422,4416,1,0,0,0,4422,4417,1, + 0,0,0,4423,715,1,0,0,0,4424,4431,5,259,0,0,4425,4432,3,718,359,0, + 4426,4427,5,25,0,0,4427,4428,3,720,360,0,4428,4429,5,11,0,0,4429, + 4430,3,720,360,0,4430,4432,1,0,0,0,4431,4425,1,0,0,0,4431,4426,1, + 0,0,0,4432,717,1,0,0,0,4433,4434,5,353,0,0,4434,4440,5,246,0,0,4435, 4436,5,62,0,0,4436,4440,5,290,0,0,4437,4438,5,430,0,0,4438,4440, 5,246,0,0,4439,4433,1,0,0,0,4439,4435,1,0,0,0,4439,4437,1,0,0,0, - 4440,721,1,0,0,0,4441,4442,7,29,0,0,4442,4446,7,30,0,0,4443,4444, + 4440,719,1,0,0,0,4441,4442,7,29,0,0,4442,4446,7,30,0,0,4443,4444, 5,62,0,0,4444,4446,5,290,0,0,4445,4441,1,0,0,0,4445,4443,1,0,0,0, - 4446,723,1,0,0,0,4447,4448,5,144,0,0,4448,4449,5,32,0,0,4449,4450, - 3,726,363,0,4450,725,1,0,0,0,4451,4456,3,282,141,0,4452,4456,3,730, - 365,0,4453,4456,3,732,366,0,4454,4456,3,728,364,0,4455,4451,1,0, - 0,0,4455,4452,1,0,0,0,4455,4453,1,0,0,0,4455,4454,1,0,0,0,4456,727, - 1,0,0,0,4457,4458,5,398,0,0,4458,4459,5,399,0,0,4459,729,1,0,0,0, + 4446,721,1,0,0,0,4447,4448,5,144,0,0,4448,4449,5,32,0,0,4449,4450, + 3,724,362,0,4450,723,1,0,0,0,4451,4456,3,282,141,0,4452,4456,3,728, + 364,0,4453,4456,3,730,365,0,4454,4456,3,726,363,0,4455,4451,1,0, + 0,0,4455,4452,1,0,0,0,4455,4453,1,0,0,0,4455,4454,1,0,0,0,4456,725, + 1,0,0,0,4457,4458,5,398,0,0,4458,4459,5,399,0,0,4459,727,1,0,0,0, 4460,4463,5,289,0,0,4461,4463,5,61,0,0,4462,4460,1,0,0,0,4462,4461, - 1,0,0,0,4463,4464,1,0,0,0,4464,4465,5,398,0,0,4465,4470,3,828,414, - 0,4466,4467,5,396,0,0,4467,4469,3,828,414,0,4468,4466,1,0,0,0,4469, + 1,0,0,0,4463,4464,1,0,0,0,4464,4465,5,398,0,0,4465,4470,3,826,413, + 0,4466,4467,5,396,0,0,4467,4469,3,826,413,0,4468,4466,1,0,0,0,4469, 4472,1,0,0,0,4470,4468,1,0,0,0,4470,4471,1,0,0,0,4471,4473,1,0,0, - 0,4472,4470,1,0,0,0,4473,4474,5,399,0,0,4474,731,1,0,0,0,4475,4480, - 3,748,374,0,4476,4477,5,386,0,0,4477,4481,5,289,0,0,4478,4479,5, + 0,4472,4470,1,0,0,0,4473,4474,5,399,0,0,4474,729,1,0,0,0,4475,4480, + 3,746,373,0,4476,4477,5,386,0,0,4477,4481,5,289,0,0,4478,4479,5, 386,0,0,4479,4481,5,61,0,0,4480,4476,1,0,0,0,4480,4478,1,0,0,0,4480, 4481,1,0,0,0,4481,4495,1,0,0,0,4482,4483,5,145,0,0,4483,4484,5,304, - 0,0,4484,4485,5,398,0,0,4485,4490,3,734,367,0,4486,4487,5,396,0, - 0,4487,4489,3,734,367,0,4488,4486,1,0,0,0,4489,4492,1,0,0,0,4490, + 0,0,4484,4485,5,398,0,0,4485,4490,3,732,366,0,4486,4487,5,396,0, + 0,4487,4489,3,732,366,0,4488,4486,1,0,0,0,4489,4492,1,0,0,0,4490, 4488,1,0,0,0,4490,4491,1,0,0,0,4491,4493,1,0,0,0,4492,4490,1,0,0, 0,4493,4494,5,399,0,0,4494,4496,1,0,0,0,4495,4482,1,0,0,0,4495,4496, - 1,0,0,0,4496,733,1,0,0,0,4497,4500,3,736,368,0,4498,4500,3,738,369, - 0,4499,4497,1,0,0,0,4499,4498,1,0,0,0,4500,735,1,0,0,0,4501,4503, - 5,398,0,0,4502,4504,3,828,414,0,4503,4502,1,0,0,0,4503,4504,1,0, - 0,0,4504,4509,1,0,0,0,4505,4506,5,396,0,0,4506,4508,3,828,414,0, + 1,0,0,0,4496,731,1,0,0,0,4497,4500,3,734,367,0,4498,4500,3,736,368, + 0,4499,4497,1,0,0,0,4499,4498,1,0,0,0,4500,733,1,0,0,0,4501,4503, + 5,398,0,0,4502,4504,3,826,413,0,4503,4502,1,0,0,0,4503,4504,1,0, + 0,0,4504,4509,1,0,0,0,4505,4506,5,396,0,0,4506,4508,3,826,413,0, 4507,4505,1,0,0,0,4508,4511,1,0,0,0,4509,4507,1,0,0,0,4509,4510, 1,0,0,0,4510,4512,1,0,0,0,4511,4509,1,0,0,0,4512,4513,5,399,0,0, - 4513,737,1,0,0,0,4514,4515,3,828,414,0,4515,739,1,0,0,0,4516,4517, - 5,146,0,0,4517,4518,3,744,372,0,4518,741,1,0,0,0,4519,4520,5,255, - 0,0,4520,4521,3,828,414,0,4521,743,1,0,0,0,4522,4523,3,828,414,0, - 4523,745,1,0,0,0,4524,4525,5,398,0,0,4525,4526,3,748,374,0,4526, - 4527,5,399,0,0,4527,747,1,0,0,0,4528,4530,3,752,376,0,4529,4531, - 3,750,375,0,4530,4529,1,0,0,0,4530,4531,1,0,0,0,4531,749,1,0,0,0, - 4532,4533,5,396,0,0,4533,4535,3,752,376,0,4534,4532,1,0,0,0,4535, - 4536,1,0,0,0,4536,4534,1,0,0,0,4536,4537,1,0,0,0,4537,751,1,0,0, - 0,4538,4541,3,614,307,0,4539,4541,3,828,414,0,4540,4538,1,0,0,0, - 4540,4539,1,0,0,0,4541,753,1,0,0,0,4542,4544,3,828,414,0,4543,4545, + 4513,735,1,0,0,0,4514,4515,3,826,413,0,4515,737,1,0,0,0,4516,4517, + 5,146,0,0,4517,4518,3,742,371,0,4518,739,1,0,0,0,4519,4520,5,255, + 0,0,4520,4521,3,826,413,0,4521,741,1,0,0,0,4522,4523,3,826,413,0, + 4523,743,1,0,0,0,4524,4525,5,398,0,0,4525,4526,3,746,373,0,4526, + 4527,5,399,0,0,4527,745,1,0,0,0,4528,4530,3,750,375,0,4529,4531, + 3,748,374,0,4530,4529,1,0,0,0,4530,4531,1,0,0,0,4531,747,1,0,0,0, + 4532,4533,5,396,0,0,4533,4535,3,750,375,0,4534,4532,1,0,0,0,4535, + 4536,1,0,0,0,4536,4534,1,0,0,0,4536,4537,1,0,0,0,4537,749,1,0,0, + 0,4538,4541,3,612,306,0,4539,4541,3,826,413,0,4540,4538,1,0,0,0, + 4540,4539,1,0,0,0,4541,751,1,0,0,0,4542,4544,3,826,413,0,4543,4545, 5,17,0,0,4544,4543,1,0,0,0,4544,4545,1,0,0,0,4545,4547,1,0,0,0,4546, - 4548,3,926,463,0,4547,4546,1,0,0,0,4547,4548,1,0,0,0,4548,4553,1, - 0,0,0,4549,4550,5,396,0,0,4550,4552,3,756,378,0,4551,4549,1,0,0, - 0,4552,4555,1,0,0,0,4553,4551,1,0,0,0,4553,4554,1,0,0,0,4554,755, - 1,0,0,0,4555,4553,1,0,0,0,4556,4558,3,828,414,0,4557,4559,5,17,0, + 4548,3,924,462,0,4547,4546,1,0,0,0,4547,4548,1,0,0,0,4548,4553,1, + 0,0,0,4549,4550,5,396,0,0,4550,4552,3,754,377,0,4551,4549,1,0,0, + 0,4552,4555,1,0,0,0,4553,4551,1,0,0,0,4553,4554,1,0,0,0,4554,753, + 1,0,0,0,4555,4553,1,0,0,0,4556,4558,3,826,413,0,4557,4559,5,17,0, 0,4558,4557,1,0,0,0,4558,4559,1,0,0,0,4559,4561,1,0,0,0,4560,4562, - 3,926,463,0,4561,4560,1,0,0,0,4561,4562,1,0,0,0,4562,757,1,0,0,0, - 4563,4566,3,746,373,0,4564,4566,3,748,374,0,4565,4563,1,0,0,0,4565, - 4564,1,0,0,0,4566,759,1,0,0,0,4567,4568,5,398,0,0,4568,4573,3,340, + 3,924,462,0,4561,4560,1,0,0,0,4561,4562,1,0,0,0,4562,755,1,0,0,0, + 4563,4566,3,744,372,0,4564,4566,3,746,373,0,4565,4563,1,0,0,0,4565, + 4564,1,0,0,0,4566,757,1,0,0,0,4567,4568,5,398,0,0,4568,4573,3,340, 170,0,4569,4570,5,396,0,0,4570,4572,3,340,170,0,4571,4569,1,0,0, 0,4572,4575,1,0,0,0,4573,4571,1,0,0,0,4573,4574,1,0,0,0,4574,4576, - 1,0,0,0,4575,4573,1,0,0,0,4576,4577,5,399,0,0,4577,761,1,0,0,0,4578, + 1,0,0,0,4575,4573,1,0,0,0,4576,4577,5,399,0,0,4577,759,1,0,0,0,4578, 4583,3,340,170,0,4579,4580,5,396,0,0,4580,4582,3,340,170,0,4581, 4579,1,0,0,0,4582,4585,1,0,0,0,4583,4581,1,0,0,0,4583,4584,1,0,0, - 0,4584,763,1,0,0,0,4585,4583,1,0,0,0,4586,4587,5,228,0,0,4587,4588, + 0,4584,761,1,0,0,0,4585,4583,1,0,0,0,4586,4587,5,228,0,0,4587,4588, 5,32,0,0,4588,4593,3,340,170,0,4589,4590,5,396,0,0,4590,4592,3,340, 170,0,4591,4589,1,0,0,0,4592,4595,1,0,0,0,4593,4591,1,0,0,0,4593, - 4594,1,0,0,0,4594,765,1,0,0,0,4595,4593,1,0,0,0,4596,4597,5,41,0, - 0,4597,4598,5,32,0,0,4598,4599,3,758,379,0,4599,767,1,0,0,0,4600, - 4601,5,236,0,0,4601,4602,5,32,0,0,4602,4603,3,758,379,0,4603,769, - 1,0,0,0,4604,4605,5,97,0,0,4605,4606,5,32,0,0,4606,4607,3,758,379, - 0,4607,771,1,0,0,0,4608,4609,5,313,0,0,4609,4612,5,32,0,0,4610,4613, - 3,760,380,0,4611,4613,3,762,381,0,4612,4610,1,0,0,0,4612,4611,1, - 0,0,0,4613,773,1,0,0,0,4614,4615,5,348,0,0,4615,4619,5,398,0,0,4616, + 4594,1,0,0,0,4594,763,1,0,0,0,4595,4593,1,0,0,0,4596,4597,5,41,0, + 0,4597,4598,5,32,0,0,4598,4599,3,756,378,0,4599,765,1,0,0,0,4600, + 4601,5,236,0,0,4601,4602,5,32,0,0,4602,4603,3,756,378,0,4603,767, + 1,0,0,0,4604,4605,5,97,0,0,4605,4606,5,32,0,0,4606,4607,3,756,378, + 0,4607,769,1,0,0,0,4608,4609,5,313,0,0,4609,4612,5,32,0,0,4610,4613, + 3,758,379,0,4611,4613,3,760,380,0,4612,4610,1,0,0,0,4612,4611,1, + 0,0,0,4613,771,1,0,0,0,4614,4615,5,348,0,0,4615,4619,5,398,0,0,4616, 4620,5,179,0,0,4617,4620,5,342,0,0,4618,4620,5,29,0,0,4619,4616, 1,0,0,0,4619,4617,1,0,0,0,4619,4618,1,0,0,0,4619,4620,1,0,0,0,4620, - 4622,1,0,0,0,4621,4623,3,704,352,0,4622,4621,1,0,0,0,4622,4623,1, - 0,0,0,4623,4624,1,0,0,0,4624,4625,5,139,0,0,4625,4626,3,704,352, - 0,4626,4627,5,399,0,0,4627,775,1,0,0,0,4628,4669,3,774,387,0,4629, - 4630,3,784,392,0,4630,4645,5,398,0,0,4631,4646,5,414,0,0,4632,4634, - 3,694,347,0,4633,4632,1,0,0,0,4633,4634,1,0,0,0,4634,4643,1,0,0, - 0,4635,4640,3,704,352,0,4636,4637,5,396,0,0,4637,4639,3,704,352, + 4622,1,0,0,0,4621,4623,3,702,351,0,4622,4621,1,0,0,0,4622,4623,1, + 0,0,0,4623,4624,1,0,0,0,4624,4625,5,139,0,0,4625,4626,3,702,351, + 0,4626,4627,5,399,0,0,4627,773,1,0,0,0,4628,4669,3,772,386,0,4629, + 4630,3,782,391,0,4630,4645,5,398,0,0,4631,4646,5,414,0,0,4632,4634, + 3,692,346,0,4633,4632,1,0,0,0,4633,4634,1,0,0,0,4634,4643,1,0,0, + 0,4635,4640,3,702,351,0,4636,4637,5,396,0,0,4637,4639,3,702,351, 0,4638,4636,1,0,0,0,4639,4642,1,0,0,0,4640,4638,1,0,0,0,4640,4641, 1,0,0,0,4641,4644,1,0,0,0,4642,4640,1,0,0,0,4643,4635,1,0,0,0,4643, 4644,1,0,0,0,4644,4646,1,0,0,0,4645,4631,1,0,0,0,4645,4633,1,0,0, 0,4646,4666,1,0,0,0,4647,4648,5,399,0,0,4648,4649,5,387,0,0,4649, - 4650,5,144,0,0,4650,4651,5,398,0,0,4651,4652,3,764,382,0,4652,4653, - 5,399,0,0,4653,4667,1,0,0,0,4654,4656,5,399,0,0,4655,4657,3,778, - 389,0,4656,4655,1,0,0,0,4656,4657,1,0,0,0,4657,4658,1,0,0,0,4658, - 4659,5,233,0,0,4659,4667,3,712,356,0,4660,4661,3,778,389,0,4661, - 4662,5,399,0,0,4662,4663,5,233,0,0,4663,4664,3,712,356,0,4664,4667, + 4650,5,144,0,0,4650,4651,5,398,0,0,4651,4652,3,762,381,0,4652,4653, + 5,399,0,0,4653,4667,1,0,0,0,4654,4656,5,399,0,0,4655,4657,3,776, + 388,0,4656,4655,1,0,0,0,4656,4657,1,0,0,0,4657,4658,1,0,0,0,4658, + 4659,5,233,0,0,4659,4667,3,710,355,0,4660,4661,3,776,388,0,4661, + 4662,5,399,0,0,4662,4663,5,233,0,0,4663,4664,3,710,355,0,4664,4667, 1,0,0,0,4665,4667,5,399,0,0,4666,4647,1,0,0,0,4666,4654,1,0,0,0, 4666,4660,1,0,0,0,4666,4665,1,0,0,0,4667,4669,1,0,0,0,4668,4628, - 1,0,0,0,4668,4629,1,0,0,0,4669,777,1,0,0,0,4670,4671,5,280,0,0,4671, + 1,0,0,0,4668,4629,1,0,0,0,4669,775,1,0,0,0,4670,4671,5,280,0,0,4671, 4675,5,219,0,0,4672,4673,5,152,0,0,4673,4675,5,219,0,0,4674,4670, - 1,0,0,0,4674,4672,1,0,0,0,4675,779,1,0,0,0,4676,4677,3,928,464,0, - 4677,781,1,0,0,0,4678,4681,3,786,393,0,4679,4681,5,425,0,0,4680, - 4678,1,0,0,0,4680,4679,1,0,0,0,4681,783,1,0,0,0,4682,4685,3,786, - 393,0,4683,4685,3,788,394,0,4684,4682,1,0,0,0,4684,4683,1,0,0,0, - 4685,785,1,0,0,0,4686,4687,3,928,464,0,4687,787,1,0,0,0,4688,4691, - 3,934,467,0,4689,4691,3,924,462,0,4690,4688,1,0,0,0,4690,4689,1, - 0,0,0,4691,789,1,0,0,0,4692,4693,5,36,0,0,4693,4694,5,398,0,0,4694, - 4695,3,828,414,0,4695,4696,5,17,0,0,4696,4699,3,380,190,0,4697,4698, + 1,0,0,0,4674,4672,1,0,0,0,4675,777,1,0,0,0,4676,4677,3,926,463,0, + 4677,779,1,0,0,0,4678,4681,3,784,392,0,4679,4681,5,425,0,0,4680, + 4678,1,0,0,0,4680,4679,1,0,0,0,4681,781,1,0,0,0,4682,4685,3,784, + 392,0,4683,4685,3,786,393,0,4684,4682,1,0,0,0,4684,4683,1,0,0,0, + 4685,783,1,0,0,0,4686,4687,3,926,463,0,4687,785,1,0,0,0,4688,4691, + 3,932,466,0,4689,4691,3,922,461,0,4690,4688,1,0,0,0,4690,4689,1, + 0,0,0,4691,787,1,0,0,0,4692,4693,5,36,0,0,4693,4694,5,398,0,0,4694, + 4695,3,826,413,0,4695,4696,5,17,0,0,4696,4699,3,380,190,0,4697,4698, 5,137,0,0,4698,4700,5,425,0,0,4699,4697,1,0,0,0,4699,4700,1,0,0, - 0,4700,4701,1,0,0,0,4701,4702,5,399,0,0,4702,791,1,0,0,0,4703,4704, - 5,35,0,0,4704,4710,3,828,414,0,4705,4706,5,382,0,0,4706,4707,3,828, - 414,0,4707,4708,5,334,0,0,4708,4709,3,828,414,0,4709,4711,1,0,0, + 0,4700,4701,1,0,0,0,4701,4702,5,399,0,0,4702,789,1,0,0,0,4703,4704, + 5,35,0,0,4704,4710,3,826,413,0,4705,4706,5,382,0,0,4706,4707,3,826, + 413,0,4707,4708,5,334,0,0,4708,4709,3,826,413,0,4709,4711,1,0,0, 0,4710,4705,1,0,0,0,4711,4712,1,0,0,0,4712,4710,1,0,0,0,4712,4713, - 1,0,0,0,4713,4716,1,0,0,0,4714,4715,5,105,0,0,4715,4717,3,828,414, + 1,0,0,0,4713,4716,1,0,0,0,4714,4715,5,105,0,0,4715,4717,3,826,413, 0,4716,4714,1,0,0,0,4716,4717,1,0,0,0,4717,4718,1,0,0,0,4718,4719, - 5,108,0,0,4719,793,1,0,0,0,4720,4726,5,35,0,0,4721,4722,5,382,0, - 0,4722,4723,3,828,414,0,4723,4724,5,334,0,0,4724,4725,3,828,414, + 5,108,0,0,4719,791,1,0,0,0,4720,4726,5,35,0,0,4721,4722,5,382,0, + 0,4722,4723,3,826,413,0,4723,4724,5,334,0,0,4724,4725,3,826,413, 0,4725,4727,1,0,0,0,4726,4721,1,0,0,0,4727,4728,1,0,0,0,4728,4726, 1,0,0,0,4728,4729,1,0,0,0,4729,4732,1,0,0,0,4730,4731,5,105,0,0, - 4731,4733,3,828,414,0,4732,4730,1,0,0,0,4732,4733,1,0,0,0,4733,4734, - 1,0,0,0,4734,4735,5,108,0,0,4735,795,1,0,0,0,4736,4737,5,132,0,0, - 4737,4738,5,398,0,0,4738,4741,3,828,414,0,4739,4740,5,340,0,0,4740, - 4742,3,798,399,0,4741,4739,1,0,0,0,4741,4742,1,0,0,0,4742,4743,1, - 0,0,0,4743,4744,5,399,0,0,4744,797,1,0,0,0,4745,4754,3,976,488,0, - 4746,4754,5,256,0,0,4747,4754,3,978,489,0,4748,4754,3,980,490,0, - 4749,4754,3,982,491,0,4750,4754,3,984,492,0,4751,4754,3,986,493, - 0,4752,4754,3,988,494,0,4753,4745,1,0,0,0,4753,4746,1,0,0,0,4753, + 4731,4733,3,826,413,0,4732,4730,1,0,0,0,4732,4733,1,0,0,0,4733,4734, + 1,0,0,0,4734,4735,5,108,0,0,4735,793,1,0,0,0,4736,4737,5,132,0,0, + 4737,4738,5,398,0,0,4738,4741,3,826,413,0,4739,4740,5,340,0,0,4740, + 4742,3,796,398,0,4741,4739,1,0,0,0,4741,4742,1,0,0,0,4742,4743,1, + 0,0,0,4743,4744,5,399,0,0,4744,795,1,0,0,0,4745,4754,3,974,487,0, + 4746,4754,5,256,0,0,4747,4754,3,976,488,0,4748,4754,3,978,489,0, + 4749,4754,3,980,490,0,4750,4754,3,982,491,0,4751,4754,3,984,492, + 0,4752,4754,3,986,493,0,4753,4745,1,0,0,0,4753,4746,1,0,0,0,4753, 4747,1,0,0,0,4753,4748,1,0,0,0,4753,4749,1,0,0,0,4753,4750,1,0,0, - 0,4753,4751,1,0,0,0,4753,4752,1,0,0,0,4754,799,1,0,0,0,4755,4756, - 5,124,0,0,4756,4757,5,398,0,0,4757,4758,3,802,401,0,4758,4759,5, - 139,0,0,4759,4760,3,828,414,0,4760,4761,5,399,0,0,4761,801,1,0,0, - 0,4762,4771,3,976,488,0,4763,4771,5,256,0,0,4764,4771,3,978,489, - 0,4765,4771,3,980,490,0,4766,4771,3,982,491,0,4767,4771,3,984,492, - 0,4768,4771,3,986,493,0,4769,4771,3,988,494,0,4770,4762,1,0,0,0, + 0,4753,4751,1,0,0,0,4753,4752,1,0,0,0,4754,797,1,0,0,0,4755,4756, + 5,124,0,0,4756,4757,5,398,0,0,4757,4758,3,800,400,0,4758,4759,5, + 139,0,0,4759,4760,3,826,413,0,4760,4761,5,399,0,0,4761,799,1,0,0, + 0,4762,4771,3,974,487,0,4763,4771,5,256,0,0,4764,4771,3,976,488, + 0,4765,4771,3,978,489,0,4766,4771,3,980,490,0,4767,4771,3,982,491, + 0,4768,4771,3,984,492,0,4769,4771,3,986,493,0,4770,4762,1,0,0,0, 4770,4763,1,0,0,0,4770,4764,1,0,0,0,4770,4765,1,0,0,0,4770,4766, 1,0,0,0,4770,4767,1,0,0,0,4770,4768,1,0,0,0,4770,4769,1,0,0,0,4771, - 803,1,0,0,0,4772,4786,3,822,411,0,4773,4786,5,430,0,0,4774,4786, - 3,814,407,0,4775,4786,3,816,408,0,4776,4786,3,818,409,0,4777,4786, - 5,425,0,0,4778,4786,3,810,405,0,4779,4786,5,427,0,0,4780,4786,5, - 428,0,0,4781,4786,3,812,406,0,4782,4786,3,906,453,0,4783,4786,5, - 218,0,0,4784,4786,3,806,403,0,4785,4772,1,0,0,0,4785,4773,1,0,0, + 801,1,0,0,0,4772,4786,3,820,410,0,4773,4786,5,430,0,0,4774,4786, + 3,812,406,0,4775,4786,3,814,407,0,4776,4786,3,816,408,0,4777,4786, + 5,425,0,0,4778,4786,3,808,404,0,4779,4786,5,427,0,0,4780,4786,5, + 428,0,0,4781,4786,3,810,405,0,4782,4786,3,904,452,0,4783,4786,5, + 218,0,0,4784,4786,3,804,402,0,4785,4772,1,0,0,0,4785,4773,1,0,0, 0,4785,4774,1,0,0,0,4785,4775,1,0,0,0,4785,4776,1,0,0,0,4785,4777, 1,0,0,0,4785,4778,1,0,0,0,4785,4779,1,0,0,0,4785,4780,1,0,0,0,4785, 4781,1,0,0,0,4785,4782,1,0,0,0,4785,4783,1,0,0,0,4785,4784,1,0,0, - 0,4786,805,1,0,0,0,4787,4788,3,808,404,0,4788,807,1,0,0,0,4789,4790, - 5,423,0,0,4790,809,1,0,0,0,4791,4793,5,425,0,0,4792,4794,5,425,0, + 0,4786,803,1,0,0,0,4787,4788,3,806,403,0,4788,805,1,0,0,0,4789,4790, + 5,423,0,0,4790,807,1,0,0,0,4791,4793,5,425,0,0,4792,4794,5,425,0, 0,4793,4792,1,0,0,0,4794,4795,1,0,0,0,4795,4793,1,0,0,0,4795,4796, - 1,0,0,0,4796,811,1,0,0,0,4797,4798,5,432,0,0,4798,4799,5,426,0,0, - 4799,813,1,0,0,0,4800,4801,5,71,0,0,4801,4804,5,425,0,0,4802,4804, - 5,63,0,0,4803,4800,1,0,0,0,4803,4802,1,0,0,0,4804,815,1,0,0,0,4805, + 1,0,0,0,4796,809,1,0,0,0,4797,4798,5,432,0,0,4798,4799,5,426,0,0, + 4799,811,1,0,0,0,4800,4801,5,71,0,0,4801,4804,5,425,0,0,4802,4804, + 5,63,0,0,4803,4800,1,0,0,0,4803,4802,1,0,0,0,4804,813,1,0,0,0,4805, 4806,5,336,0,0,4806,4809,5,425,0,0,4807,4809,5,64,0,0,4808,4805, - 1,0,0,0,4808,4807,1,0,0,0,4809,817,1,0,0,0,4810,4811,5,337,0,0,4811, - 4812,5,425,0,0,4812,819,1,0,0,0,4813,4814,7,24,0,0,4814,821,1,0, - 0,0,4815,4816,3,820,410,0,4816,4817,3,826,413,0,4817,823,1,0,0,0, - 4818,4819,5,398,0,0,4819,4820,3,820,410,0,4820,4821,5,399,0,0,4821, - 4822,3,826,413,0,4822,4834,1,0,0,0,4823,4829,5,165,0,0,4824,4830, - 3,820,410,0,4825,4826,5,398,0,0,4826,4827,3,828,414,0,4827,4828, + 1,0,0,0,4808,4807,1,0,0,0,4809,815,1,0,0,0,4810,4811,5,337,0,0,4811, + 4812,5,425,0,0,4812,817,1,0,0,0,4813,4814,7,24,0,0,4814,819,1,0, + 0,0,4815,4816,3,818,409,0,4816,4817,3,824,412,0,4817,821,1,0,0,0, + 4818,4819,5,398,0,0,4819,4820,3,818,409,0,4820,4821,5,399,0,0,4821, + 4822,3,824,412,0,4822,4834,1,0,0,0,4823,4829,5,165,0,0,4824,4830, + 3,818,409,0,4825,4826,5,398,0,0,4826,4827,3,826,413,0,4827,4828, 5,399,0,0,4828,4830,1,0,0,0,4829,4824,1,0,0,0,4829,4825,1,0,0,0, - 4830,4831,1,0,0,0,4831,4832,3,826,413,0,4832,4834,1,0,0,0,4833,4818, - 1,0,0,0,4833,4823,1,0,0,0,4834,825,1,0,0,0,4835,4836,3,976,488,0, - 4836,4837,5,340,0,0,4837,4838,3,978,489,0,4838,4850,1,0,0,0,4839, - 4840,3,982,491,0,4840,4841,5,340,0,0,4841,4842,3,988,494,0,4842, - 4850,1,0,0,0,4843,4850,3,976,488,0,4844,4850,3,978,489,0,4845,4850, - 3,982,491,0,4846,4850,3,984,492,0,4847,4850,3,986,493,0,4848,4850, - 3,988,494,0,4849,4835,1,0,0,0,4849,4839,1,0,0,0,4849,4843,1,0,0, + 4830,4831,1,0,0,0,4831,4832,3,824,412,0,4832,4834,1,0,0,0,4833,4818, + 1,0,0,0,4833,4823,1,0,0,0,4834,823,1,0,0,0,4835,4836,3,974,487,0, + 4836,4837,5,340,0,0,4837,4838,3,976,488,0,4838,4850,1,0,0,0,4839, + 4840,3,980,490,0,4840,4841,5,340,0,0,4841,4842,3,986,493,0,4842, + 4850,1,0,0,0,4843,4850,3,974,487,0,4844,4850,3,976,488,0,4845,4850, + 3,980,490,0,4846,4850,3,982,491,0,4847,4850,3,984,492,0,4848,4850, + 3,986,493,0,4849,4835,1,0,0,0,4849,4839,1,0,0,0,4849,4843,1,0,0, 0,4849,4844,1,0,0,0,4849,4845,1,0,0,0,4849,4846,1,0,0,0,4849,4847, - 1,0,0,0,4849,4848,1,0,0,0,4850,827,1,0,0,0,4851,4852,3,904,452,0, - 4852,829,1,0,0,0,4853,4865,3,804,402,0,4854,4865,3,824,412,0,4855, - 4865,3,790,395,0,4856,4865,3,800,400,0,4857,4865,3,796,398,0,4858, - 4865,3,792,396,0,4859,4865,3,794,397,0,4860,4865,3,866,433,0,4861, - 4865,3,776,388,0,4862,4865,3,746,373,0,4863,4865,3,926,463,0,4864, + 1,0,0,0,4849,4848,1,0,0,0,4850,825,1,0,0,0,4851,4852,3,902,451,0, + 4852,827,1,0,0,0,4853,4865,3,802,401,0,4854,4865,3,822,411,0,4855, + 4865,3,788,394,0,4856,4865,3,798,399,0,4857,4865,3,794,397,0,4858, + 4865,3,790,395,0,4859,4865,3,792,396,0,4860,4865,3,864,432,0,4861, + 4865,3,774,387,0,4862,4865,3,744,372,0,4863,4865,3,924,462,0,4864, 4853,1,0,0,0,4864,4854,1,0,0,0,4864,4855,1,0,0,0,4864,4856,1,0,0, 0,4864,4857,1,0,0,0,4864,4858,1,0,0,0,4864,4859,1,0,0,0,4864,4860, 1,0,0,0,4864,4861,1,0,0,0,4864,4862,1,0,0,0,4864,4863,1,0,0,0,4865, - 831,1,0,0,0,4866,4875,3,830,415,0,4867,4868,5,400,0,0,4868,4869, - 3,828,414,0,4869,4870,5,401,0,0,4870,4874,1,0,0,0,4871,4872,5,394, - 0,0,4872,4874,3,926,463,0,4873,4867,1,0,0,0,4873,4871,1,0,0,0,4874, - 4877,1,0,0,0,4875,4873,1,0,0,0,4875,4876,1,0,0,0,4876,833,1,0,0, - 0,4877,4875,1,0,0,0,4878,4879,7,31,0,0,4879,835,1,0,0,0,4880,4882, - 3,834,417,0,4881,4880,1,0,0,0,4882,4885,1,0,0,0,4883,4881,1,0,0, + 829,1,0,0,0,4866,4875,3,828,414,0,4867,4868,5,400,0,0,4868,4869, + 3,826,413,0,4869,4870,5,401,0,0,4870,4874,1,0,0,0,4871,4872,5,394, + 0,0,4872,4874,3,924,462,0,4873,4867,1,0,0,0,4873,4871,1,0,0,0,4874, + 4877,1,0,0,0,4875,4873,1,0,0,0,4875,4876,1,0,0,0,4876,831,1,0,0, + 0,4877,4875,1,0,0,0,4878,4879,7,31,0,0,4879,833,1,0,0,0,4880,4882, + 3,832,416,0,4881,4880,1,0,0,0,4882,4885,1,0,0,0,4883,4881,1,0,0, 0,4883,4884,1,0,0,0,4884,4886,1,0,0,0,4885,4883,1,0,0,0,4886,4887, - 3,832,416,0,4887,837,1,0,0,0,4888,4889,5,422,0,0,4889,839,1,0,0, - 0,4890,4896,3,836,418,0,4891,4892,3,838,419,0,4892,4893,3,836,418, + 3,830,415,0,4887,835,1,0,0,0,4888,4889,5,422,0,0,4889,837,1,0,0, + 0,4890,4896,3,834,417,0,4891,4892,3,836,418,0,4892,4893,3,834,417, 0,4893,4895,1,0,0,0,4894,4891,1,0,0,0,4895,4898,1,0,0,0,4896,4894, - 1,0,0,0,4896,4897,1,0,0,0,4897,841,1,0,0,0,4898,4896,1,0,0,0,4899, - 4900,7,32,0,0,4900,843,1,0,0,0,4901,4907,3,840,420,0,4902,4903,3, - 842,421,0,4903,4904,3,840,420,0,4904,4906,1,0,0,0,4905,4902,1,0, - 0,0,4906,4909,1,0,0,0,4907,4905,1,0,0,0,4907,4908,1,0,0,0,4908,845, - 1,0,0,0,4909,4907,1,0,0,0,4910,4911,7,33,0,0,4911,847,1,0,0,0,4912, - 4918,3,844,422,0,4913,4914,3,846,423,0,4914,4915,3,844,422,0,4915, + 1,0,0,0,4896,4897,1,0,0,0,4897,839,1,0,0,0,4898,4896,1,0,0,0,4899, + 4900,7,32,0,0,4900,841,1,0,0,0,4901,4907,3,838,419,0,4902,4903,3, + 840,420,0,4903,4904,3,838,419,0,4904,4906,1,0,0,0,4905,4902,1,0, + 0,0,4906,4909,1,0,0,0,4907,4905,1,0,0,0,4907,4908,1,0,0,0,4908,843, + 1,0,0,0,4909,4907,1,0,0,0,4910,4911,7,33,0,0,4911,845,1,0,0,0,4912, + 4918,3,842,421,0,4913,4914,3,844,422,0,4914,4915,3,842,421,0,4915, 4917,1,0,0,0,4916,4913,1,0,0,0,4917,4920,1,0,0,0,4918,4916,1,0,0, - 0,4918,4919,1,0,0,0,4919,849,1,0,0,0,4920,4918,1,0,0,0,4921,4922, - 5,421,0,0,4922,851,1,0,0,0,4923,4929,3,848,424,0,4924,4925,3,850, - 425,0,4925,4926,3,848,424,0,4926,4928,1,0,0,0,4927,4924,1,0,0,0, - 4928,4931,1,0,0,0,4929,4927,1,0,0,0,4929,4930,1,0,0,0,4930,853,1, - 0,0,0,4931,4929,1,0,0,0,4932,4933,5,418,0,0,4933,855,1,0,0,0,4934, - 4940,3,852,426,0,4935,4936,3,854,427,0,4936,4937,3,852,426,0,4937, + 0,4918,4919,1,0,0,0,4919,847,1,0,0,0,4920,4918,1,0,0,0,4921,4922, + 5,421,0,0,4922,849,1,0,0,0,4923,4929,3,846,423,0,4924,4925,3,848, + 424,0,4925,4926,3,846,423,0,4926,4928,1,0,0,0,4927,4924,1,0,0,0, + 4928,4931,1,0,0,0,4929,4927,1,0,0,0,4929,4930,1,0,0,0,4930,851,1, + 0,0,0,4931,4929,1,0,0,0,4932,4933,5,418,0,0,4933,853,1,0,0,0,4934, + 4940,3,850,425,0,4935,4936,3,852,426,0,4936,4937,3,850,425,0,4937, 4939,1,0,0,0,4938,4935,1,0,0,0,4939,4942,1,0,0,0,4940,4938,1,0,0, - 0,4940,4941,1,0,0,0,4941,857,1,0,0,0,4942,4940,1,0,0,0,4943,4944, - 5,420,0,0,4944,859,1,0,0,0,4945,4951,3,856,428,0,4946,4947,3,858, - 429,0,4947,4948,3,856,428,0,4948,4950,1,0,0,0,4949,4946,1,0,0,0, - 4950,4953,1,0,0,0,4951,4949,1,0,0,0,4951,4952,1,0,0,0,4952,861,1, - 0,0,0,4953,4951,1,0,0,0,4954,4955,7,34,0,0,4955,863,1,0,0,0,4956, - 4962,3,862,431,0,4957,4962,5,407,0,0,4958,4962,5,408,0,0,4959,4962, + 0,4940,4941,1,0,0,0,4941,855,1,0,0,0,4942,4940,1,0,0,0,4943,4944, + 5,420,0,0,4944,857,1,0,0,0,4945,4951,3,854,427,0,4946,4947,3,856, + 428,0,4947,4948,3,854,427,0,4948,4950,1,0,0,0,4949,4946,1,0,0,0, + 4950,4953,1,0,0,0,4951,4949,1,0,0,0,4951,4952,1,0,0,0,4952,859,1, + 0,0,0,4953,4951,1,0,0,0,4954,4955,7,34,0,0,4955,861,1,0,0,0,4956, + 4962,3,860,430,0,4957,4962,5,407,0,0,4958,4962,5,408,0,0,4959,4962, 5,409,0,0,4960,4962,5,410,0,0,4961,4956,1,0,0,0,4961,4957,1,0,0, - 0,4961,4958,1,0,0,0,4961,4959,1,0,0,0,4961,4960,1,0,0,0,4962,865, + 0,4961,4958,1,0,0,0,4961,4959,1,0,0,0,4961,4960,1,0,0,0,4962,863, 1,0,0,0,4963,4964,5,398,0,0,4964,4965,3,408,204,0,4965,4966,5,399, - 0,0,4966,867,1,0,0,0,4967,4971,3,870,435,0,4968,4969,5,117,0,0,4969, - 4971,3,866,433,0,4970,4967,1,0,0,0,4970,4968,1,0,0,0,4971,869,1, - 0,0,0,4972,4974,3,860,430,0,4973,4975,3,872,436,0,4974,4973,1,0, - 0,0,4974,4975,1,0,0,0,4975,871,1,0,0,0,4976,4977,3,864,432,0,4977, - 4978,3,860,430,0,4978,4983,1,0,0,0,4979,4983,3,874,437,0,4980,4981, - 5,215,0,0,4981,4983,3,882,441,0,4982,4976,1,0,0,0,4982,4979,1,0, - 0,0,4982,4980,1,0,0,0,4983,873,1,0,0,0,4984,4985,5,154,0,0,4985, - 4996,3,880,440,0,4986,4987,5,25,0,0,4987,4988,3,860,430,0,4988,4989, - 5,11,0,0,4989,4990,3,860,430,0,4990,4996,1,0,0,0,4991,4992,5,183, - 0,0,4992,4993,7,35,0,0,4993,4996,3,746,373,0,4994,4996,3,876,438, + 0,0,4966,865,1,0,0,0,4967,4971,3,868,434,0,4968,4969,5,117,0,0,4969, + 4971,3,864,432,0,4970,4967,1,0,0,0,4970,4968,1,0,0,0,4971,867,1, + 0,0,0,4972,4974,3,858,429,0,4973,4975,3,870,435,0,4974,4973,1,0, + 0,0,4974,4975,1,0,0,0,4975,869,1,0,0,0,4976,4977,3,862,431,0,4977, + 4978,3,858,429,0,4978,4983,1,0,0,0,4979,4983,3,872,436,0,4980,4981, + 5,215,0,0,4981,4983,3,880,440,0,4982,4976,1,0,0,0,4982,4979,1,0, + 0,0,4982,4980,1,0,0,0,4983,871,1,0,0,0,4984,4985,5,154,0,0,4985, + 4996,3,878,439,0,4986,4987,5,25,0,0,4987,4988,3,858,429,0,4988,4989, + 5,11,0,0,4989,4990,3,858,429,0,4990,4996,1,0,0,0,4991,4992,5,183, + 0,0,4992,4993,7,35,0,0,4993,4996,3,744,372,0,4994,4996,3,874,437, 0,4995,4984,1,0,0,0,4995,4986,1,0,0,0,4995,4991,1,0,0,0,4995,4994, - 1,0,0,0,4996,875,1,0,0,0,4997,4998,3,922,461,0,4998,4999,3,878,439, - 0,4999,5000,3,866,433,0,5000,877,1,0,0,0,5001,5002,7,36,0,0,5002, - 879,1,0,0,0,5003,5006,3,866,433,0,5004,5006,3,746,373,0,5005,5003, - 1,0,0,0,5005,5004,1,0,0,0,5006,881,1,0,0,0,5007,5008,3,862,431,0, - 5008,5009,3,860,430,0,5009,5012,1,0,0,0,5010,5012,3,874,437,0,5011, - 5007,1,0,0,0,5011,5010,1,0,0,0,5012,883,1,0,0,0,5013,5014,5,167, - 0,0,5014,5015,5,96,0,0,5015,5016,5,139,0,0,5016,885,1,0,0,0,5017, + 1,0,0,0,4996,873,1,0,0,0,4997,4998,3,920,460,0,4998,4999,3,876,438, + 0,4999,5000,3,864,432,0,5000,875,1,0,0,0,5001,5002,7,36,0,0,5002, + 877,1,0,0,0,5003,5006,3,864,432,0,5004,5006,3,744,372,0,5005,5003, + 1,0,0,0,5005,5004,1,0,0,0,5006,879,1,0,0,0,5007,5008,3,860,430,0, + 5008,5009,3,858,429,0,5009,5012,1,0,0,0,5010,5012,3,872,436,0,5011, + 5007,1,0,0,0,5011,5010,1,0,0,0,5012,881,1,0,0,0,5013,5014,5,167, + 0,0,5014,5015,5,96,0,0,5015,5016,5,139,0,0,5016,883,1,0,0,0,5017, 5025,5,404,0,0,5018,5025,5,405,0,0,5019,5025,5,406,0,0,5020,5021, 5,167,0,0,5021,5022,5,215,0,0,5022,5023,5,96,0,0,5023,5025,5,139, 0,0,5024,5017,1,0,0,0,5024,5018,1,0,0,0,5024,5019,1,0,0,0,5024,5020, - 1,0,0,0,5025,887,1,0,0,0,5026,5035,3,868,434,0,5027,5028,3,886,443, - 0,5028,5029,3,868,434,0,5029,5034,1,0,0,0,5030,5031,3,884,442,0, - 5031,5032,3,868,434,0,5032,5034,1,0,0,0,5033,5027,1,0,0,0,5033,5030, + 1,0,0,0,5025,885,1,0,0,0,5026,5035,3,866,433,0,5027,5028,3,884,442, + 0,5028,5029,3,866,433,0,5029,5034,1,0,0,0,5030,5031,3,882,441,0, + 5031,5032,3,866,433,0,5032,5034,1,0,0,0,5033,5027,1,0,0,0,5033,5030, 1,0,0,0,5034,5037,1,0,0,0,5035,5033,1,0,0,0,5035,5036,1,0,0,0,5036, - 889,1,0,0,0,5037,5035,1,0,0,0,5038,5051,5,218,0,0,5039,5051,5,349, + 887,1,0,0,0,5037,5035,1,0,0,0,5038,5051,5,218,0,0,5039,5051,5,349, 0,0,5040,5051,5,125,0,0,5041,5051,5,359,0,0,5042,5043,5,215,0,0, 5043,5051,5,218,0,0,5044,5045,5,215,0,0,5045,5051,5,349,0,0,5046, 5047,5,215,0,0,5047,5051,5,125,0,0,5048,5049,5,215,0,0,5049,5051, 5,359,0,0,5050,5038,1,0,0,0,5050,5039,1,0,0,0,5050,5040,1,0,0,0, 5050,5041,1,0,0,0,5050,5042,1,0,0,0,5050,5044,1,0,0,0,5050,5046, - 1,0,0,0,5050,5048,1,0,0,0,5051,891,1,0,0,0,5052,5055,3,888,444,0, - 5053,5054,5,167,0,0,5054,5056,3,890,445,0,5055,5053,1,0,0,0,5055, - 5056,1,0,0,0,5056,893,1,0,0,0,5057,5058,5,215,0,0,5058,895,1,0,0, - 0,5059,5061,3,894,447,0,5060,5059,1,0,0,0,5061,5064,1,0,0,0,5062, + 1,0,0,0,5050,5048,1,0,0,0,5051,889,1,0,0,0,5052,5055,3,886,443,0, + 5053,5054,5,167,0,0,5054,5056,3,888,444,0,5055,5053,1,0,0,0,5055, + 5056,1,0,0,0,5056,891,1,0,0,0,5057,5058,5,215,0,0,5058,893,1,0,0, + 0,5059,5061,3,892,446,0,5060,5059,1,0,0,0,5061,5064,1,0,0,0,5062, 5060,1,0,0,0,5062,5063,1,0,0,0,5063,5065,1,0,0,0,5064,5062,1,0,0, - 0,5065,5066,3,892,446,0,5066,897,1,0,0,0,5067,5068,5,11,0,0,5068, - 899,1,0,0,0,5069,5075,3,896,448,0,5070,5071,3,898,449,0,5071,5072, - 3,896,448,0,5072,5074,1,0,0,0,5073,5070,1,0,0,0,5074,5077,1,0,0, - 0,5075,5073,1,0,0,0,5075,5076,1,0,0,0,5076,901,1,0,0,0,5077,5075, - 1,0,0,0,5078,5079,5,227,0,0,5079,903,1,0,0,0,5080,5086,3,900,450, - 0,5081,5082,3,902,451,0,5082,5083,3,900,450,0,5083,5085,1,0,0,0, + 0,5065,5066,3,890,445,0,5066,895,1,0,0,0,5067,5068,5,11,0,0,5068, + 897,1,0,0,0,5069,5075,3,894,447,0,5070,5071,3,896,448,0,5071,5072, + 3,894,447,0,5072,5074,1,0,0,0,5073,5070,1,0,0,0,5074,5077,1,0,0, + 0,5075,5073,1,0,0,0,5075,5076,1,0,0,0,5076,899,1,0,0,0,5077,5075, + 1,0,0,0,5078,5079,5,227,0,0,5079,901,1,0,0,0,5080,5086,3,898,449, + 0,5081,5082,3,900,450,0,5082,5083,3,898,449,0,5083,5085,1,0,0,0, 5084,5081,1,0,0,0,5085,5088,1,0,0,0,5086,5084,1,0,0,0,5086,5087, - 1,0,0,0,5087,905,1,0,0,0,5088,5086,1,0,0,0,5089,5090,7,37,0,0,5090, - 907,1,0,0,0,5091,5092,7,37,0,0,5092,909,1,0,0,0,5093,5095,3,660, - 330,0,5094,5096,3,912,456,0,5095,5094,1,0,0,0,5095,5096,1,0,0,0, - 5096,911,1,0,0,0,5097,5098,5,236,0,0,5098,5099,5,398,0,0,5099,5104, - 3,914,457,0,5100,5101,5,396,0,0,5101,5103,3,914,457,0,5102,5100, + 1,0,0,0,5087,903,1,0,0,0,5088,5086,1,0,0,0,5089,5090,7,37,0,0,5090, + 905,1,0,0,0,5091,5092,7,37,0,0,5092,907,1,0,0,0,5093,5095,3,658, + 329,0,5094,5096,3,910,455,0,5095,5094,1,0,0,0,5095,5096,1,0,0,0, + 5096,909,1,0,0,0,5097,5098,5,236,0,0,5098,5099,5,398,0,0,5099,5104, + 3,912,456,0,5100,5101,5,396,0,0,5101,5103,3,912,456,0,5102,5100, 1,0,0,0,5103,5106,1,0,0,0,5104,5102,1,0,0,0,5104,5105,1,0,0,0,5105, - 5107,1,0,0,0,5106,5104,1,0,0,0,5107,5108,5,399,0,0,5108,913,1,0, - 0,0,5109,5112,3,926,463,0,5110,5111,5,404,0,0,5111,5113,3,804,402, - 0,5112,5110,1,0,0,0,5112,5113,1,0,0,0,5113,915,1,0,0,0,5114,5115, - 5,398,0,0,5115,5120,3,918,459,0,5116,5117,5,396,0,0,5117,5119,3, - 918,459,0,5118,5116,1,0,0,0,5119,5122,1,0,0,0,5120,5118,1,0,0,0, + 5107,1,0,0,0,5106,5104,1,0,0,0,5107,5108,5,399,0,0,5108,911,1,0, + 0,0,5109,5112,3,924,462,0,5110,5111,5,404,0,0,5111,5113,3,802,401, + 0,5112,5110,1,0,0,0,5112,5113,1,0,0,0,5113,913,1,0,0,0,5114,5115, + 5,398,0,0,5115,5120,3,916,458,0,5116,5117,5,396,0,0,5117,5119,3, + 916,458,0,5118,5116,1,0,0,0,5119,5122,1,0,0,0,5120,5118,1,0,0,0, 5120,5121,1,0,0,0,5121,5123,1,0,0,0,5122,5120,1,0,0,0,5123,5124, - 5,399,0,0,5124,917,1,0,0,0,5125,5126,3,926,463,0,5126,5127,3,920, - 460,0,5127,5128,3,804,402,0,5128,919,1,0,0,0,5129,5132,5,183,0,0, - 5130,5132,3,922,461,0,5131,5129,1,0,0,0,5131,5130,1,0,0,0,5132,921, - 1,0,0,0,5133,5134,7,38,0,0,5134,923,1,0,0,0,5135,5136,7,39,0,0,5136, - 925,1,0,0,0,5137,5140,5,431,0,0,5138,5140,3,932,466,0,5139,5137, - 1,0,0,0,5139,5138,1,0,0,0,5140,927,1,0,0,0,5141,5144,3,926,463,0, - 5142,5143,5,394,0,0,5143,5145,3,926,463,0,5144,5142,1,0,0,0,5144, - 5145,1,0,0,0,5145,929,1,0,0,0,5146,5147,3,926,463,0,5147,931,1,0, - 0,0,5148,5149,7,40,0,0,5149,933,1,0,0,0,5150,5151,7,41,0,0,5151, - 935,1,0,0,0,5152,5153,3,938,469,0,5153,5154,5,0,0,1,5154,937,1,0, - 0,0,5155,5160,3,940,470,0,5156,5157,5,396,0,0,5157,5159,3,940,470, + 5,399,0,0,5124,915,1,0,0,0,5125,5126,3,924,462,0,5126,5127,3,918, + 459,0,5127,5128,3,802,401,0,5128,917,1,0,0,0,5129,5132,5,183,0,0, + 5130,5132,3,920,460,0,5131,5129,1,0,0,0,5131,5130,1,0,0,0,5132,919, + 1,0,0,0,5133,5134,7,38,0,0,5134,921,1,0,0,0,5135,5136,7,39,0,0,5136, + 923,1,0,0,0,5137,5140,5,431,0,0,5138,5140,3,930,465,0,5139,5137, + 1,0,0,0,5139,5138,1,0,0,0,5140,925,1,0,0,0,5141,5144,3,924,462,0, + 5142,5143,5,394,0,0,5143,5145,3,924,462,0,5144,5142,1,0,0,0,5144, + 5145,1,0,0,0,5145,927,1,0,0,0,5146,5147,3,924,462,0,5147,929,1,0, + 0,0,5148,5149,7,40,0,0,5149,931,1,0,0,0,5150,5151,7,41,0,0,5151, + 933,1,0,0,0,5152,5153,3,936,468,0,5153,5154,5,0,0,1,5154,935,1,0, + 0,0,5155,5160,3,938,469,0,5156,5157,5,396,0,0,5157,5159,3,938,469, 0,5158,5156,1,0,0,0,5159,5162,1,0,0,0,5160,5158,1,0,0,0,5160,5161, - 1,0,0,0,5161,939,1,0,0,0,5162,5160,1,0,0,0,5163,5168,3,942,471,0, - 5164,5165,5,398,0,0,5165,5166,3,944,472,0,5166,5167,5,399,0,0,5167, - 5169,1,0,0,0,5168,5164,1,0,0,0,5168,5169,1,0,0,0,5169,941,1,0,0, - 0,5170,5171,7,42,0,0,5171,943,1,0,0,0,5172,5177,3,946,473,0,5173, - 5174,5,396,0,0,5174,5176,3,946,473,0,5175,5173,1,0,0,0,5176,5179, - 1,0,0,0,5177,5175,1,0,0,0,5177,5178,1,0,0,0,5178,945,1,0,0,0,5179, - 5177,1,0,0,0,5180,5181,7,43,0,0,5181,947,1,0,0,0,5182,5183,5,248, - 0,0,5183,5184,3,926,463,0,5184,5185,5,139,0,0,5185,5186,3,392,196, - 0,5186,949,1,0,0,0,5187,5188,5,115,0,0,5188,5189,3,926,463,0,5189, - 5190,5,369,0,0,5190,5191,3,952,476,0,5191,951,1,0,0,0,5192,5197, - 3,804,402,0,5193,5194,5,396,0,0,5194,5196,3,804,402,0,5195,5193, + 1,0,0,0,5161,937,1,0,0,0,5162,5160,1,0,0,0,5163,5168,3,940,470,0, + 5164,5165,5,398,0,0,5165,5166,3,942,471,0,5166,5167,5,399,0,0,5167, + 5169,1,0,0,0,5168,5164,1,0,0,0,5168,5169,1,0,0,0,5169,939,1,0,0, + 0,5170,5171,7,42,0,0,5171,941,1,0,0,0,5172,5177,3,944,472,0,5173, + 5174,5,396,0,0,5174,5176,3,944,472,0,5175,5173,1,0,0,0,5176,5179, + 1,0,0,0,5177,5175,1,0,0,0,5177,5178,1,0,0,0,5178,943,1,0,0,0,5179, + 5177,1,0,0,0,5180,5181,7,43,0,0,5181,945,1,0,0,0,5182,5183,5,248, + 0,0,5183,5184,3,924,462,0,5184,5185,5,139,0,0,5185,5186,3,392,196, + 0,5186,947,1,0,0,0,5187,5188,5,115,0,0,5188,5189,3,924,462,0,5189, + 5190,5,369,0,0,5190,5191,3,950,475,0,5191,949,1,0,0,0,5192,5197, + 3,802,401,0,5193,5194,5,396,0,0,5194,5196,3,802,401,0,5195,5193, 1,0,0,0,5196,5199,1,0,0,0,5197,5195,1,0,0,0,5197,5198,1,0,0,0,5198, - 953,1,0,0,0,5199,5197,1,0,0,0,5200,5215,3,964,482,0,5201,5215,3, - 992,496,0,5202,5215,3,998,499,0,5203,5215,3,994,497,0,5204,5215, - 3,996,498,0,5205,5215,3,1020,510,0,5206,5215,3,1022,511,0,5207,5215, - 3,1024,512,0,5208,5215,3,1030,515,0,5209,5215,3,1032,516,0,5210, - 5215,3,1034,517,0,5211,5215,3,1036,518,0,5212,5215,3,1038,519,0, - 5213,5215,3,1040,520,0,5214,5200,1,0,0,0,5214,5201,1,0,0,0,5214, + 951,1,0,0,0,5199,5197,1,0,0,0,5200,5215,3,962,481,0,5201,5215,3, + 990,495,0,5202,5215,3,996,498,0,5203,5215,3,992,496,0,5204,5215, + 3,994,497,0,5205,5215,3,1018,509,0,5206,5215,3,1020,510,0,5207,5215, + 3,1022,511,0,5208,5215,3,1028,514,0,5209,5215,3,1030,515,0,5210, + 5215,3,1032,516,0,5211,5215,3,1034,517,0,5212,5215,3,1036,518,0, + 5213,5215,3,1038,519,0,5214,5200,1,0,0,0,5214,5201,1,0,0,0,5214, 5202,1,0,0,0,5214,5203,1,0,0,0,5214,5204,1,0,0,0,5214,5205,1,0,0, 0,5214,5206,1,0,0,0,5214,5207,1,0,0,0,5214,5208,1,0,0,0,5214,5209, 1,0,0,0,5214,5210,1,0,0,0,5214,5211,1,0,0,0,5214,5212,1,0,0,0,5214, - 5213,1,0,0,0,5215,955,1,0,0,0,5216,5217,5,258,0,0,5217,5218,5,404, + 5213,1,0,0,0,5215,953,1,0,0,0,5216,5217,5,258,0,0,5217,5218,5,404, 0,0,5218,5224,5,430,0,0,5219,5220,5,83,0,0,5220,5221,5,245,0,0,5221, - 5222,5,404,0,0,5222,5224,3,1000,500,0,5223,5216,1,0,0,0,5223,5219, - 1,0,0,0,5224,957,1,0,0,0,5225,5230,3,956,478,0,5226,5227,5,396,0, - 0,5227,5229,3,956,478,0,5228,5226,1,0,0,0,5229,5232,1,0,0,0,5230, - 5228,1,0,0,0,5230,5231,1,0,0,0,5231,959,1,0,0,0,5232,5230,1,0,0, + 5222,5,404,0,0,5222,5224,3,998,499,0,5223,5216,1,0,0,0,5223,5219, + 1,0,0,0,5224,955,1,0,0,0,5225,5230,3,954,477,0,5226,5227,5,396,0, + 0,5227,5229,3,954,477,0,5228,5226,1,0,0,0,5229,5232,1,0,0,0,5230, + 5228,1,0,0,0,5230,5231,1,0,0,0,5231,957,1,0,0,0,5232,5230,1,0,0, 0,5233,5237,5,258,0,0,5234,5235,5,83,0,0,5235,5237,5,245,0,0,5236, - 5233,1,0,0,0,5236,5234,1,0,0,0,5237,961,1,0,0,0,5238,5243,3,960, - 480,0,5239,5240,5,396,0,0,5240,5242,3,960,480,0,5241,5239,1,0,0, - 0,5242,5245,1,0,0,0,5243,5241,1,0,0,0,5243,5244,1,0,0,0,5244,963, + 5233,1,0,0,0,5236,5234,1,0,0,0,5237,959,1,0,0,0,5238,5243,3,958, + 479,0,5239,5240,5,396,0,0,5240,5242,3,958,479,0,5241,5239,1,0,0, + 0,5242,5245,1,0,0,0,5243,5241,1,0,0,0,5243,5244,1,0,0,0,5244,961, 1,0,0,0,5245,5243,1,0,0,0,5246,5247,5,58,0,0,5247,5248,5,279,0,0, 5248,5250,5,242,0,0,5249,5251,3,44,22,0,5250,5249,1,0,0,0,5250,5251, - 1,0,0,0,5251,5261,1,0,0,0,5252,5253,3,926,463,0,5253,5254,5,183, - 0,0,5254,5255,3,926,463,0,5255,5262,1,0,0,0,5256,5259,3,926,463, - 0,5257,5258,5,386,0,0,5258,5260,3,958,479,0,5259,5257,1,0,0,0,5259, + 1,0,0,0,5251,5261,1,0,0,0,5252,5253,3,924,462,0,5253,5254,5,183, + 0,0,5254,5255,3,924,462,0,5255,5262,1,0,0,0,5256,5259,3,924,462, + 0,5257,5258,5,386,0,0,5258,5260,3,956,478,0,5259,5257,1,0,0,0,5259, 5260,1,0,0,0,5260,5262,1,0,0,0,5261,5252,1,0,0,0,5261,5256,1,0,0, - 0,5262,965,1,0,0,0,5263,5264,5,386,0,0,5264,5265,5,277,0,0,5265, - 967,1,0,0,0,5266,5268,5,2,0,0,5267,5269,3,966,483,0,5268,5267,1, - 0,0,0,5268,5269,1,0,0,0,5269,969,1,0,0,0,5270,5271,7,44,0,0,5271, - 971,1,0,0,0,5272,5273,7,45,0,0,5273,973,1,0,0,0,5274,5275,5,361, - 0,0,5275,975,1,0,0,0,5276,5277,7,46,0,0,5277,977,1,0,0,0,5278,5279, - 7,47,0,0,5279,979,1,0,0,0,5280,5281,7,48,0,0,5281,981,1,0,0,0,5282, - 5283,7,49,0,0,5283,983,1,0,0,0,5284,5285,7,50,0,0,5285,985,1,0,0, - 0,5286,5287,7,51,0,0,5287,987,1,0,0,0,5288,5289,7,52,0,0,5289,989, - 1,0,0,0,5290,5291,7,53,0,0,5291,991,1,0,0,0,5292,5293,5,9,0,0,5293, - 5294,5,279,0,0,5294,5295,5,242,0,0,5295,5313,3,926,463,0,5296,5314, - 5,372,0,0,5297,5314,3,972,486,0,5298,5299,5,303,0,0,5299,5314,3, - 958,479,0,5300,5301,5,362,0,0,5301,5314,3,962,481,0,5302,5303,5, - 273,0,0,5303,5304,5,340,0,0,5304,5314,3,926,463,0,5305,5307,3,968, - 484,0,5306,5308,3,970,485,0,5307,5306,1,0,0,0,5307,5308,1,0,0,0, - 5308,5314,1,0,0,0,5309,5311,3,970,485,0,5310,5312,3,968,484,0,5311, + 0,5262,963,1,0,0,0,5263,5264,5,386,0,0,5264,5265,5,277,0,0,5265, + 965,1,0,0,0,5266,5268,5,2,0,0,5267,5269,3,964,482,0,5268,5267,1, + 0,0,0,5268,5269,1,0,0,0,5269,967,1,0,0,0,5270,5271,7,44,0,0,5271, + 969,1,0,0,0,5272,5273,7,45,0,0,5273,971,1,0,0,0,5274,5275,5,361, + 0,0,5275,973,1,0,0,0,5276,5277,7,46,0,0,5277,975,1,0,0,0,5278,5279, + 7,47,0,0,5279,977,1,0,0,0,5280,5281,7,48,0,0,5281,979,1,0,0,0,5282, + 5283,7,49,0,0,5283,981,1,0,0,0,5284,5285,7,50,0,0,5285,983,1,0,0, + 0,5286,5287,7,51,0,0,5287,985,1,0,0,0,5288,5289,7,52,0,0,5289,987, + 1,0,0,0,5290,5291,7,53,0,0,5291,989,1,0,0,0,5292,5293,5,9,0,0,5293, + 5294,5,279,0,0,5294,5295,5,242,0,0,5295,5313,3,924,462,0,5296,5314, + 5,372,0,0,5297,5314,3,970,485,0,5298,5299,5,303,0,0,5299,5314,3, + 956,478,0,5300,5301,5,362,0,0,5301,5314,3,960,480,0,5302,5303,5, + 273,0,0,5303,5304,5,340,0,0,5304,5314,3,924,462,0,5305,5307,3,966, + 483,0,5306,5308,3,968,484,0,5307,5306,1,0,0,0,5307,5308,1,0,0,0, + 5308,5314,1,0,0,0,5309,5311,3,968,484,0,5310,5312,3,966,483,0,5311, 5310,1,0,0,0,5311,5312,1,0,0,0,5312,5314,1,0,0,0,5313,5296,1,0,0, 0,5313,5297,1,0,0,0,5313,5298,1,0,0,0,5313,5300,1,0,0,0,5313,5302, - 1,0,0,0,5313,5305,1,0,0,0,5313,5309,1,0,0,0,5314,993,1,0,0,0,5315, - 5318,3,970,485,0,5316,5318,3,972,486,0,5317,5315,1,0,0,0,5317,5316, + 1,0,0,0,5313,5305,1,0,0,0,5313,5309,1,0,0,0,5314,991,1,0,0,0,5315, + 5318,3,968,484,0,5316,5318,3,970,485,0,5317,5315,1,0,0,0,5317,5316, 1,0,0,0,5318,5319,1,0,0,0,5319,5320,5,389,0,0,5320,5321,5,196,0, - 0,5321,995,1,0,0,0,5322,5334,5,277,0,0,5323,5324,5,3,0,0,5324,5325, - 5,279,0,0,5325,5326,5,242,0,0,5326,5327,5,386,0,0,5327,5335,3,926, - 463,0,5328,5329,5,279,0,0,5329,5330,5,242,0,0,5330,5331,3,926,463, - 0,5331,5332,5,386,0,0,5332,5333,3,926,463,0,5333,5335,1,0,0,0,5334, - 5323,1,0,0,0,5334,5328,1,0,0,0,5335,997,1,0,0,0,5336,5337,5,101, + 0,5321,993,1,0,0,0,5322,5334,5,277,0,0,5323,5324,5,3,0,0,5324,5325, + 5,279,0,0,5325,5326,5,242,0,0,5326,5327,5,386,0,0,5327,5335,3,924, + 462,0,5328,5329,5,279,0,0,5329,5330,5,242,0,0,5330,5331,3,924,462, + 0,5331,5332,5,386,0,0,5332,5333,3,924,462,0,5333,5335,1,0,0,0,5334, + 5323,1,0,0,0,5334,5328,1,0,0,0,5335,995,1,0,0,0,5336,5337,5,101, 0,0,5337,5338,5,279,0,0,5338,5340,5,242,0,0,5339,5341,3,40,20,0, 5340,5339,1,0,0,0,5340,5341,1,0,0,0,5341,5342,1,0,0,0,5342,5343, - 3,926,463,0,5343,999,1,0,0,0,5344,5349,3,926,463,0,5345,5346,5,394, - 0,0,5346,5348,3,926,463,0,5347,5345,1,0,0,0,5348,5351,1,0,0,0,5349, - 5347,1,0,0,0,5349,5350,1,0,0,0,5350,1001,1,0,0,0,5351,5349,1,0,0, - 0,5352,5353,3,1010,505,0,5353,1003,1,0,0,0,5354,5355,3,1002,501, - 0,5355,5356,5,0,0,1,5356,1005,1,0,0,0,5357,5362,3,1008,504,0,5358, - 5359,5,227,0,0,5359,5361,3,1008,504,0,5360,5358,1,0,0,0,5361,5364, - 1,0,0,0,5362,5360,1,0,0,0,5362,5363,1,0,0,0,5363,1007,1,0,0,0,5364, - 5362,1,0,0,0,5365,5370,3,1010,505,0,5366,5367,5,11,0,0,5367,5369, - 3,1010,505,0,5368,5366,1,0,0,0,5369,5372,1,0,0,0,5370,5368,1,0,0, - 0,5370,5371,1,0,0,0,5371,1009,1,0,0,0,5372,5370,1,0,0,0,5373,5374, - 3,926,463,0,5374,5375,3,1014,507,0,5375,5376,3,1012,506,0,5376,1011, - 1,0,0,0,5377,5378,7,24,0,0,5378,1013,1,0,0,0,5379,5380,5,410,0,0, - 5380,1015,1,0,0,0,5381,5386,5,176,0,0,5382,5383,5,210,0,0,5383,5384, - 5,340,0,0,5384,5386,3,1000,500,0,5385,5381,1,0,0,0,5385,5382,1,0, - 0,0,5386,1017,1,0,0,0,5387,5388,3,1016,508,0,5388,5389,5,0,0,1,5389, - 1019,1,0,0,0,5390,5391,5,58,0,0,5391,5392,5,347,0,0,5392,5393,3, - 926,463,0,5393,5394,5,394,0,0,5394,5395,3,926,463,0,5395,5396,5, - 382,0,0,5396,5397,3,1002,501,0,5397,5398,5,99,0,0,5398,5399,3,1016, - 508,0,5399,1021,1,0,0,0,5400,5401,5,9,0,0,5401,5402,5,347,0,0,5402, - 5403,3,926,463,0,5403,5404,5,394,0,0,5404,5421,3,926,463,0,5405, - 5406,5,382,0,0,5406,5407,3,1002,501,0,5407,5408,5,99,0,0,5408,5409, - 3,1016,508,0,5409,5422,1,0,0,0,5410,5411,5,4,0,0,5411,5415,5,340, + 3,924,462,0,5343,997,1,0,0,0,5344,5349,3,924,462,0,5345,5346,5,394, + 0,0,5346,5348,3,924,462,0,5347,5345,1,0,0,0,5348,5351,1,0,0,0,5349, + 5347,1,0,0,0,5349,5350,1,0,0,0,5350,999,1,0,0,0,5351,5349,1,0,0, + 0,5352,5353,3,1008,504,0,5353,1001,1,0,0,0,5354,5355,3,1000,500, + 0,5355,5356,5,0,0,1,5356,1003,1,0,0,0,5357,5362,3,1006,503,0,5358, + 5359,5,227,0,0,5359,5361,3,1006,503,0,5360,5358,1,0,0,0,5361,5364, + 1,0,0,0,5362,5360,1,0,0,0,5362,5363,1,0,0,0,5363,1005,1,0,0,0,5364, + 5362,1,0,0,0,5365,5370,3,1008,504,0,5366,5367,5,11,0,0,5367,5369, + 3,1008,504,0,5368,5366,1,0,0,0,5369,5372,1,0,0,0,5370,5368,1,0,0, + 0,5370,5371,1,0,0,0,5371,1007,1,0,0,0,5372,5370,1,0,0,0,5373,5374, + 3,924,462,0,5374,5375,3,1012,506,0,5375,5376,3,1010,505,0,5376,1009, + 1,0,0,0,5377,5378,7,24,0,0,5378,1011,1,0,0,0,5379,5380,5,410,0,0, + 5380,1013,1,0,0,0,5381,5386,5,176,0,0,5382,5383,5,210,0,0,5383,5384, + 5,340,0,0,5384,5386,3,998,499,0,5385,5381,1,0,0,0,5385,5382,1,0, + 0,0,5386,1015,1,0,0,0,5387,5388,3,1014,507,0,5388,5389,5,0,0,1,5389, + 1017,1,0,0,0,5390,5391,5,58,0,0,5391,5392,5,347,0,0,5392,5393,3, + 924,462,0,5393,5394,5,394,0,0,5394,5395,3,924,462,0,5395,5396,5, + 382,0,0,5396,5397,3,1000,500,0,5397,5398,5,99,0,0,5398,5399,3,1014, + 507,0,5399,1019,1,0,0,0,5400,5401,5,9,0,0,5401,5402,5,347,0,0,5402, + 5403,3,924,462,0,5403,5404,5,394,0,0,5404,5421,3,924,462,0,5405, + 5406,5,382,0,0,5406,5407,3,1000,500,0,5407,5408,5,99,0,0,5408,5409, + 3,1014,507,0,5409,5422,1,0,0,0,5410,5411,5,4,0,0,5411,5415,5,340, 0,0,5412,5413,5,101,0,0,5413,5415,5,139,0,0,5414,5410,1,0,0,0,5414, - 5412,1,0,0,0,5415,5419,1,0,0,0,5416,5417,5,245,0,0,5417,5420,3,1000, - 500,0,5418,5420,5,361,0,0,5419,5416,1,0,0,0,5419,5418,1,0,0,0,5420, - 5422,1,0,0,0,5421,5405,1,0,0,0,5421,5414,1,0,0,0,5422,1023,1,0,0, - 0,5423,5424,5,101,0,0,5424,5425,5,347,0,0,5425,5426,3,926,463,0, - 5426,5427,5,394,0,0,5427,5428,3,926,463,0,5428,1025,1,0,0,0,5429, + 5412,1,0,0,0,5415,5419,1,0,0,0,5416,5417,5,245,0,0,5417,5420,3,998, + 499,0,5418,5420,5,361,0,0,5419,5416,1,0,0,0,5419,5418,1,0,0,0,5420, + 5422,1,0,0,0,5421,5405,1,0,0,0,5421,5414,1,0,0,0,5422,1021,1,0,0, + 0,5423,5424,5,101,0,0,5424,5425,5,347,0,0,5425,5426,3,924,462,0, + 5426,5427,5,394,0,0,5427,5428,3,924,462,0,5428,1023,1,0,0,0,5429, 5430,5,8,0,0,5430,5431,5,404,0,0,5431,5442,5,430,0,0,5432,5433,5, 258,0,0,5433,5434,5,404,0,0,5434,5442,5,430,0,0,5435,5436,5,293, 0,0,5436,5437,5,404,0,0,5437,5442,5,425,0,0,5438,5439,5,239,0,0, - 5439,5440,5,404,0,0,5440,5442,3,1000,500,0,5441,5429,1,0,0,0,5441, - 5432,1,0,0,0,5441,5435,1,0,0,0,5441,5438,1,0,0,0,5442,1027,1,0,0, - 0,5443,5448,3,1026,513,0,5444,5445,5,396,0,0,5445,5447,3,1026,513, + 5439,5440,5,404,0,0,5440,5442,3,998,499,0,5441,5429,1,0,0,0,5441, + 5432,1,0,0,0,5441,5435,1,0,0,0,5441,5438,1,0,0,0,5442,1025,1,0,0, + 0,5443,5448,3,1024,512,0,5444,5445,5,396,0,0,5445,5447,3,1024,512, 0,5446,5444,1,0,0,0,5447,5450,1,0,0,0,5448,5446,1,0,0,0,5448,5449, - 1,0,0,0,5449,1029,1,0,0,0,5450,5448,1,0,0,0,5451,5452,5,58,0,0,5452, - 5453,5,245,0,0,5453,5454,3,926,463,0,5454,5455,5,394,0,0,5455,5456, - 3,1000,500,0,5456,5457,5,386,0,0,5457,5458,3,1028,514,0,5458,1031, - 1,0,0,0,5459,5460,5,9,0,0,5460,5461,5,245,0,0,5461,5462,3,926,463, - 0,5462,5463,5,394,0,0,5463,5471,3,1000,500,0,5464,5465,5,303,0,0, - 5465,5472,3,1028,514,0,5466,5467,5,362,0,0,5467,5472,5,293,0,0,5468, - 5469,7,54,0,0,5469,5470,5,347,0,0,5470,5472,3,926,463,0,5471,5464, - 1,0,0,0,5471,5466,1,0,0,0,5471,5468,1,0,0,0,5472,1033,1,0,0,0,5473, - 5474,5,101,0,0,5474,5475,5,245,0,0,5475,5476,3,926,463,0,5476,5477, - 5,394,0,0,5477,5478,3,1000,500,0,5478,1035,1,0,0,0,5479,5480,5,58, + 1,0,0,0,5449,1027,1,0,0,0,5450,5448,1,0,0,0,5451,5452,5,58,0,0,5452, + 5453,5,245,0,0,5453,5454,3,924,462,0,5454,5455,5,394,0,0,5455,5456, + 3,998,499,0,5456,5457,5,386,0,0,5457,5458,3,1026,513,0,5458,1029, + 1,0,0,0,5459,5460,5,9,0,0,5460,5461,5,245,0,0,5461,5462,3,924,462, + 0,5462,5463,5,394,0,0,5463,5471,3,998,499,0,5464,5465,5,303,0,0, + 5465,5472,3,1026,513,0,5466,5467,5,362,0,0,5467,5472,5,293,0,0,5468, + 5469,7,54,0,0,5469,5470,5,347,0,0,5470,5472,3,924,462,0,5471,5464, + 1,0,0,0,5471,5466,1,0,0,0,5471,5468,1,0,0,0,5472,1031,1,0,0,0,5473, + 5474,5,101,0,0,5474,5475,5,245,0,0,5475,5476,3,924,462,0,5476,5477, + 5,394,0,0,5477,5478,3,998,499,0,5478,1033,1,0,0,0,5479,5480,5,58, 0,0,5480,5481,7,55,0,0,5481,5482,5,199,0,0,5482,5483,5,425,0,0,5483, - 5484,5,154,0,0,5484,5488,3,926,463,0,5485,5486,5,340,0,0,5486,5489, - 3,1000,500,0,5487,5489,3,974,487,0,5488,5485,1,0,0,0,5488,5487,1, + 5484,5,154,0,0,5484,5488,3,924,462,0,5485,5486,5,340,0,0,5486,5489, + 3,998,499,0,5487,5489,3,972,486,0,5488,5485,1,0,0,0,5488,5487,1, 0,0,0,5489,5493,1,0,0,0,5490,5491,5,386,0,0,5491,5492,5,228,0,0, - 5492,5494,5,430,0,0,5493,5490,1,0,0,0,5493,5494,1,0,0,0,5494,1037, + 5492,5494,5,430,0,0,5493,5490,1,0,0,0,5493,5494,1,0,0,0,5494,1035, 1,0,0,0,5495,5496,5,9,0,0,5496,5497,7,55,0,0,5497,5498,5,199,0,0, - 5498,5499,5,425,0,0,5499,5500,5,154,0,0,5500,5504,3,926,463,0,5501, - 5502,5,340,0,0,5502,5505,3,1000,500,0,5503,5505,3,974,487,0,5504, + 5498,5499,5,425,0,0,5499,5500,5,154,0,0,5500,5504,3,924,462,0,5501, + 5502,5,340,0,0,5502,5505,3,998,499,0,5503,5505,3,972,486,0,5504, 5501,1,0,0,0,5504,5503,1,0,0,0,5505,5509,1,0,0,0,5506,5507,5,386, 0,0,5507,5508,5,228,0,0,5508,5510,5,430,0,0,5509,5506,1,0,0,0,5509, - 5510,1,0,0,0,5510,1039,1,0,0,0,5511,5512,5,101,0,0,5512,5513,7,55, + 5510,1,0,0,0,5510,1037,1,0,0,0,5511,5512,5,101,0,0,5512,5513,7,55, 0,0,5513,5514,5,199,0,0,5514,5515,5,425,0,0,5515,5516,5,154,0,0, - 5516,5517,3,926,463,0,5517,1041,1,0,0,0,649,1045,1052,1055,1061, - 1067,1074,1084,1087,1091,1111,1116,1121,1127,1134,1147,1151,1155, - 1160,1167,1171,1176,1183,1187,1198,1204,1211,1260,1288,1292,1296, - 1299,1302,1307,1313,1317,1323,1325,1342,1354,1358,1365,1373,1376, - 1381,1385,1388,1398,1406,1410,1413,1417,1421,1424,1429,1435,1440, - 1445,1449,1460,1462,1466,1476,1480,1486,1489,1496,1501,1509,1514, - 1518,1526,1531,1537,1543,1546,1549,1552,1561,1569,1574,1582,1589, - 1592,1595,1597,1605,1608,1611,1614,1617,1620,1623,1626,1629,1632, - 1635,1637,1649,1655,1663,1665,1675,1681,1696,1713,1718,1722,1726, - 1733,1740,1746,1750,1753,1760,1783,1788,1792,1800,1809,1813,1819, - 1825,1832,1835,1841,1848,1856,1865,1874,1881,1901,1908,1910,1917, - 1927,1935,1939,1943,1956,1965,1981,1985,1990,1995,1998,2001,2005, - 2008,2011,2016,2024,2028,2035,2038,2041,2044,2056,2062,2088,2096, - 2100,2103,2106,2109,2112,2115,2118,2121,2130,2140,2143,2163,2169, - 2175,2178,2180,2187,2194,2204,2209,2218,2226,2234,2244,2257,2270, - 2291,2295,2310,2316,2319,2322,2325,2328,2332,2346,2354,2357,2372, - 2406,2414,2419,2427,2432,2437,2447,2455,2463,2471,2479,2490,2494, - 2502,2511,2514,2518,2525,2531,2535,2541,2545,2557,2566,2577,2581, - 2588,2600,2607,2616,2619,2626,2632,2638,2641,2644,2650,2654,2658, - 2663,2667,2671,2675,2683,2687,2691,2695,2699,2707,2711,2715,2723, - 2728,2733,2737,2741,2748,2757,2765,2777,2795,2798,2804,2830,2833, - 2839,2847,2855,2868,2875,2881,2885,2888,2891,2894,2897,2900,2907, - 2911,2914,2917,2920,2923,2926,2933,2936,2943,2946,2949,2952,2955, - 2958,2961,2964,2967,2970,2973,2977,2980,2983,2986,2989,2992,2995, - 2998,3001,3004,3007,3009,3015,3019,3026,3028,3031,3036,3039,3043, - 3048,3054,3060,3068,3076,3083,3089,3098,3101,3105,3118,3122,3133, - 3140,3144,3149,3152,3162,3164,3168,3175,3180,3200,3207,3230,3246, - 3263,3269,3286,3299,3303,3307,3314,3342,3349,3354,3359,3364,3369, - 3377,3383,3387,3390,3393,3399,3406,3416,3420,3425,3429,3435,3442, - 3449,3460,3469,3473,3476,3479,3487,3490,3498,3501,3509,3513,3518, - 3522,3531,3547,3562,3564,3580,3587,3604,3607,3610,3613,3619,3642, - 3650,3664,3667,3672,3698,3702,3705,3708,3712,3717,3720,3723,3726, - 3729,3735,3738,3741,3744,3747,3750,3753,3756,3759,3763,3765,3771, - 3776,3779,3782,3785,3791,3794,3797,3800,3803,3806,3809,3812,3815, - 3819,3821,3823,3828,3832,3835,3838,3843,3861,3870,3879,3887,3899, + 5516,5517,3,924,462,0,5517,1039,1,0,0,0,649,1043,1050,1053,1059, + 1065,1072,1082,1085,1089,1109,1114,1119,1125,1132,1145,1149,1153, + 1158,1165,1169,1174,1181,1185,1196,1202,1209,1258,1286,1290,1294, + 1297,1300,1305,1311,1315,1321,1323,1340,1352,1356,1363,1371,1374, + 1379,1383,1386,1396,1404,1408,1411,1415,1419,1422,1427,1433,1438, + 1443,1447,1458,1460,1464,1474,1478,1484,1487,1494,1499,1507,1512, + 1516,1524,1529,1535,1541,1544,1547,1550,1559,1567,1572,1580,1587, + 1590,1593,1595,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630, + 1633,1635,1647,1653,1661,1663,1673,1679,1694,1711,1716,1720,1724, + 1731,1738,1744,1748,1751,1758,1781,1786,1790,1798,1807,1811,1817, + 1823,1830,1833,1839,1846,1854,1863,1872,1879,1899,1906,1908,1915, + 1925,1933,1937,1941,1954,1963,1979,1983,1988,1993,1996,1999,2003, + 2006,2009,2014,2022,2026,2033,2036,2039,2042,2054,2060,2086,2094, + 2098,2101,2104,2107,2110,2113,2116,2119,2128,2138,2141,2161,2167, + 2173,2176,2178,2185,2192,2202,2207,2216,2224,2232,2242,2255,2268, + 2289,2293,2308,2314,2317,2320,2323,2326,2330,2344,2352,2355,2370, + 2404,2412,2417,2425,2430,2435,2445,2453,2461,2469,2477,2481,2491, + 2495,2503,2512,2515,2519,2526,2532,2536,2542,2546,2558,2567,2578, + 2582,2589,2601,2608,2617,2620,2627,2633,2639,2642,2645,2651,2655, + 2659,2664,2668,2672,2676,2684,2688,2692,2696,2700,2708,2712,2716, + 2724,2729,2734,2738,2742,2749,2758,2766,2778,2796,2799,2805,2831, + 2834,2840,2848,2856,2869,2876,2879,2882,2885,2888,2891,2894,2897, + 2900,2903,2906,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938, + 2941,2943,2949,2953,2956,2959,2962,2965,2968,2975,2979,2982,2985, + 2988,2991,2994,3001,3004,3012,3016,3023,3025,3028,3033,3036,3040, + 3045,3051,3057,3065,3073,3080,3086,3095,3098,3102,3115,3119,3130, + 3137,3141,3146,3149,3159,3161,3165,3172,3177,3197,3204,3227,3243, + 3260,3266,3283,3296,3300,3304,3311,3339,3346,3351,3356,3361,3366, + 3374,3380,3384,3387,3390,3396,3403,3413,3417,3422,3426,3432,3439, + 3446,3457,3466,3470,3473,3476,3484,3487,3495,3498,3506,3510,3515, + 3519,3528,3544,3559,3561,3577,3584,3601,3604,3607,3610,3616,3639, + 3647,3661,3664,3669,3695,3699,3702,3705,3709,3714,3717,3720,3723, + 3726,3732,3735,3738,3741,3744,3747,3750,3753,3756,3760,3762,3768, + 3773,3776,3779,3782,3788,3791,3794,3797,3800,3803,3806,3809,3812, + 3816,3818,3820,3825,3829,3832,3835,3840,3858,3867,3879,3887,3899, 3902,3908,3915,3922,3929,3936,3945,3949,3956,3961,3965,3981,3985, 3987,3990,4003,4006,4009,4021,4024,4031,4040,4045,4047,4049,4066, 4069,4078,4084,4088,4091,4094,4097,4100,4112,4116,4119,4122,4130, @@ -41226,39 +40671,138 @@ export class FromStatementContext extends antlr.ParserRuleContext { export class SingleFromStatementContext extends antlr.ParserRuleContext { - public _body?: BodyContext; - public _b: BodyContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext)!; - } - public body(): BodyContext[]; - public body(i: number): BodyContext | null; - public body(i?: number): BodyContext[] | BodyContext | null { - if (i === undefined) { - return this.getRuleContexts(BodyContext); - } - - return this.getRuleContext(i, BodyContext); - } public override get ruleIndex(): number { return HiveSqlParser.RULE_singleFromStatement; } + public override copyFrom(ctx: SingleFromStatementContext): void { + super.copyFrom(ctx); + } +} +export class FromSelectStmtContext extends SingleFromStatementContext { + public constructor(ctx: SingleFromStatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext)!; + } + public selectClause(): SelectClauseContext { + return this.getRuleContext(0, SelectClauseContext)!; + } + public lateralView(): LateralViewContext | null { + return this.getRuleContext(0, LateralViewContext); + } + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); + } + public groupByClause(): GroupByClauseContext | null { + return this.getRuleContext(0, GroupByClauseContext); + } + public havingClause(): HavingClauseContext | null { + return this.getRuleContext(0, HavingClauseContext); + } + public window_clause(): Window_clauseContext | null { + return this.getRuleContext(0, Window_clauseContext); + } + public qualifyClause(): QualifyClauseContext | null { + return this.getRuleContext(0, QualifyClauseContext); + } + public orderByClause(): OrderByClauseContext | null { + return this.getRuleContext(0, OrderByClauseContext); + } + public clusterByClause(): ClusterByClauseContext | null { + return this.getRuleContext(0, ClusterByClauseContext); + } + public distributeByClause(): DistributeByClauseContext | null { + return this.getRuleContext(0, DistributeByClauseContext); + } + public sortByClause(): SortByClauseContext | null { + return this.getRuleContext(0, SortByClauseContext); + } + public limitClause(): LimitClauseContext | null { + return this.getRuleContext(0, LimitClauseContext); + } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterSingleFromStatement) { - listener.enterSingleFromStatement(this); + if(listener.enterFromSelectStmt) { + listener.enterFromSelectStmt(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitSingleFromStatement) { - listener.exitSingleFromStatement(this); + if(listener.exitFromSelectStmt) { + listener.exitFromSelectStmt(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitSingleFromStatement) { - return visitor.visitSingleFromStatement(this); + if (visitor.visitFromSelectStmt) { + return visitor.visitFromSelectStmt(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class FromInsertStmtContext extends SingleFromStatementContext { + public constructor(ctx: SingleFromStatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext)!; + } + public insertClause(): InsertClauseContext { + return this.getRuleContext(0, InsertClauseContext)!; + } + public selectClause(): SelectClauseContext { + return this.getRuleContext(0, SelectClauseContext)!; + } + public lateralView(): LateralViewContext | null { + return this.getRuleContext(0, LateralViewContext); + } + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); + } + public groupByClause(): GroupByClauseContext | null { + return this.getRuleContext(0, GroupByClauseContext); + } + public havingClause(): HavingClauseContext | null { + return this.getRuleContext(0, HavingClauseContext); + } + public window_clause(): Window_clauseContext | null { + return this.getRuleContext(0, Window_clauseContext); + } + public qualifyClause(): QualifyClauseContext | null { + return this.getRuleContext(0, QualifyClauseContext); + } + public orderByClause(): OrderByClauseContext | null { + return this.getRuleContext(0, OrderByClauseContext); + } + public clusterByClause(): ClusterByClauseContext | null { + return this.getRuleContext(0, ClusterByClauseContext); + } + public distributeByClause(): DistributeByClauseContext | null { + return this.getRuleContext(0, DistributeByClauseContext); + } + public sortByClause(): SortByClauseContext | null { + return this.getRuleContext(0, SortByClauseContext); + } + public limitClause(): LimitClauseContext | null { + return this.getRuleContext(0, LimitClauseContext); + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterFromInsertStmt) { + listener.enterFromInsertStmt(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitFromInsertStmt) { + listener.exitFromInsertStmt(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitFromInsertStmt) { + return visitor.visitFromInsertStmt(this); } else { return visitor.visitChildren(this); } @@ -41267,33 +40811,68 @@ export class SingleFromStatementContext extends antlr.ParserRuleContext { export class RegularBodyContext extends antlr.ParserRuleContext { - public _i?: InsertClauseContext; - public _s?: SelectStatementContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public insertClause(): InsertClauseContext | null { - return this.getRuleContext(0, InsertClauseContext); - } - public selectStatement(): SelectStatementContext { - return this.getRuleContext(0, SelectStatementContext)!; - } public override get ruleIndex(): number { return HiveSqlParser.RULE_regularBody; } + public override copyFrom(ctx: RegularBodyContext): void { + super.copyFrom(ctx); + } +} +export class InsertStmtContext extends RegularBodyContext { + public _i?: InsertClauseContext; + public _s?: SelectStatementContext; + public constructor(ctx: RegularBodyContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public insertClause(): InsertClauseContext { + return this.getRuleContext(0, InsertClauseContext)!; + } + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; + } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterRegularBody) { - listener.enterRegularBody(this); + if(listener.enterInsertStmt) { + listener.enterInsertStmt(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitRegularBody) { - listener.exitRegularBody(this); + if(listener.exitInsertStmt) { + listener.exitInsertStmt(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitRegularBody) { - return visitor.visitRegularBody(this); + if (visitor.visitInsertStmt) { + return visitor.visitInsertStmt(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SelectStmtContext extends RegularBodyContext { + public constructor(ctx: RegularBodyContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterSelectStmt) { + listener.enterSelectStmt(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitSelectStmt) { + listener.exitSelectStmt(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitSelectStmt) { + return visitor.visitSelectStmt(this); } else { return visitor.visitChildren(this); } @@ -41504,72 +41083,6 @@ export class SelectStatementWithCTEContext extends antlr.ParserRuleContext { } -export class BodyContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public insertClause(): InsertClauseContext | null { - return this.getRuleContext(0, InsertClauseContext); - } - public selectClause(): SelectClauseContext { - return this.getRuleContext(0, SelectClauseContext)!; - } - public lateralView(): LateralViewContext | null { - return this.getRuleContext(0, LateralViewContext); - } - public whereClause(): WhereClauseContext | null { - return this.getRuleContext(0, WhereClauseContext); - } - public groupByClause(): GroupByClauseContext | null { - return this.getRuleContext(0, GroupByClauseContext); - } - public havingClause(): HavingClauseContext | null { - return this.getRuleContext(0, HavingClauseContext); - } - public window_clause(): Window_clauseContext | null { - return this.getRuleContext(0, Window_clauseContext); - } - public qualifyClause(): QualifyClauseContext | null { - return this.getRuleContext(0, QualifyClauseContext); - } - public orderByClause(): OrderByClauseContext | null { - return this.getRuleContext(0, OrderByClauseContext); - } - public clusterByClause(): ClusterByClauseContext | null { - return this.getRuleContext(0, ClusterByClauseContext); - } - public distributeByClause(): DistributeByClauseContext | null { - return this.getRuleContext(0, DistributeByClauseContext); - } - public sortByClause(): SortByClauseContext | null { - return this.getRuleContext(0, SortByClauseContext); - } - public limitClause(): LimitClauseContext | null { - return this.getRuleContext(0, LimitClauseContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_body; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterBody) { - listener.enterBody(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitBody) { - listener.exitBody(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitBody) { - return visitor.visitBody(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class InsertClauseContext extends antlr.ParserRuleContext { public _targetCols?: ColumnNameListContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -45748,11 +45261,23 @@ export class TableAllColumnsContext extends antlr.ParserRuleContext { public STAR(): antlr.TerminalNode { return this.getToken(HiveSqlParser.STAR, 0)!; } - public tableOrView(): TableOrViewContext | null { - return this.getRuleContext(0, TableOrViewContext); + public id_(): Id_Context[]; + public id_(i: number): Id_Context | null; + public id_(i?: number): Id_Context[] | Id_Context | null { + if (i === undefined) { + return this.getRuleContexts(Id_Context); + } + + return this.getRuleContext(i, Id_Context); } - public DOT(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.DOT, 0); + public DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.DOT); + } else { + return this.getToken(HiveSqlParser.DOT, i); + } } public override get ruleIndex(): number { return HiveSqlParser.RULE_tableAllColumns; diff --git a/src/lib/hive/HiveSqlParserListener.ts b/src/lib/hive/HiveSqlParserListener.ts index 6078c7b..845b64f 100644 --- a/src/lib/hive/HiveSqlParserListener.ts +++ b/src/lib/hive/HiveSqlParserListener.ts @@ -3,6 +3,9 @@ import { ErrorNode, ParseTreeListener, ParserRuleContext, TerminalNode } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./HiveSqlParser.js"; import { StatementContext } from "./HiveSqlParser.js"; import { ExplainStatementContext } from "./HiveSqlParser.js"; @@ -204,13 +207,14 @@ import { QueryStatementExpressionBodyContext } from "./HiveSqlParser.js"; import { WithClauseContext } from "./HiveSqlParser.js"; import { CteStatementContext } from "./HiveSqlParser.js"; import { FromStatementContext } from "./HiveSqlParser.js"; -import { SingleFromStatementContext } from "./HiveSqlParser.js"; -import { RegularBodyContext } from "./HiveSqlParser.js"; +import { FromInsertStmtContext } from "./HiveSqlParser.js"; +import { FromSelectStmtContext } from "./HiveSqlParser.js"; +import { InsertStmtContext } from "./HiveSqlParser.js"; +import { SelectStmtContext } from "./HiveSqlParser.js"; import { AtomSelectStatementContext } from "./HiveSqlParser.js"; import { SelectStatementContext } from "./HiveSqlParser.js"; import { SetOpSelectStatementContext } from "./HiveSqlParser.js"; import { SelectStatementWithCTEContext } from "./HiveSqlParser.js"; -import { BodyContext } from "./HiveSqlParser.js"; import { InsertClauseContext } from "./HiveSqlParser.js"; import { DestinationContext } from "./HiveSqlParser.js"; import { LimitClauseContext } from "./HiveSqlParser.js"; @@ -2542,25 +2546,53 @@ export class HiveSqlParserListener implements ParseTreeListener { */ exitFromStatement?: (ctx: FromStatementContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.singleFromStatement`. + * Enter a parse tree produced by the `fromInsertStmt` + * labeled alternative in `HiveSqlParser.singleFromStatement`. * @param ctx the parse tree */ - enterSingleFromStatement?: (ctx: SingleFromStatementContext) => void; + enterFromInsertStmt?: (ctx: FromInsertStmtContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.singleFromStatement`. + * Exit a parse tree produced by the `fromInsertStmt` + * labeled alternative in `HiveSqlParser.singleFromStatement`. * @param ctx the parse tree */ - exitSingleFromStatement?: (ctx: SingleFromStatementContext) => void; + exitFromInsertStmt?: (ctx: FromInsertStmtContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.regularBody`. + * Enter a parse tree produced by the `fromSelectStmt` + * labeled alternative in `HiveSqlParser.singleFromStatement`. * @param ctx the parse tree */ - enterRegularBody?: (ctx: RegularBodyContext) => void; + enterFromSelectStmt?: (ctx: FromSelectStmtContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.regularBody`. + * Exit a parse tree produced by the `fromSelectStmt` + * labeled alternative in `HiveSqlParser.singleFromStatement`. * @param ctx the parse tree */ - exitRegularBody?: (ctx: RegularBodyContext) => void; + exitFromSelectStmt?: (ctx: FromSelectStmtContext) => void; + /** + * Enter a parse tree produced by the `insertStmt` + * labeled alternative in `HiveSqlParser.regularBody`. + * @param ctx the parse tree + */ + enterInsertStmt?: (ctx: InsertStmtContext) => void; + /** + * Exit a parse tree produced by the `insertStmt` + * labeled alternative in `HiveSqlParser.regularBody`. + * @param ctx the parse tree + */ + exitInsertStmt?: (ctx: InsertStmtContext) => void; + /** + * Enter a parse tree produced by the `selectStmt` + * labeled alternative in `HiveSqlParser.regularBody`. + * @param ctx the parse tree + */ + enterSelectStmt?: (ctx: SelectStmtContext) => void; + /** + * Exit a parse tree produced by the `selectStmt` + * labeled alternative in `HiveSqlParser.regularBody`. + * @param ctx the parse tree + */ + exitSelectStmt?: (ctx: SelectStmtContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.atomSelectStatement`. * @param ctx the parse tree @@ -2601,16 +2633,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSelectStatementWithCTE?: (ctx: SelectStatementWithCTEContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.body`. - * @param ctx the parse tree - */ - enterBody?: (ctx: BodyContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.body`. - * @param ctx the parse tree - */ - exitBody?: (ctx: BodyContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.insertClause`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParserVisitor.ts b/src/lib/hive/HiveSqlParserVisitor.ts index 74648ab..5eb8302 100644 --- a/src/lib/hive/HiveSqlParserVisitor.ts +++ b/src/lib/hive/HiveSqlParserVisitor.ts @@ -3,6 +3,9 @@ import { AbstractParseTreeVisitor } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./HiveSqlParser.js"; import { StatementContext } from "./HiveSqlParser.js"; import { ExplainStatementContext } from "./HiveSqlParser.js"; @@ -204,13 +207,14 @@ import { QueryStatementExpressionBodyContext } from "./HiveSqlParser.js"; import { WithClauseContext } from "./HiveSqlParser.js"; import { CteStatementContext } from "./HiveSqlParser.js"; import { FromStatementContext } from "./HiveSqlParser.js"; -import { SingleFromStatementContext } from "./HiveSqlParser.js"; -import { RegularBodyContext } from "./HiveSqlParser.js"; +import { FromInsertStmtContext } from "./HiveSqlParser.js"; +import { FromSelectStmtContext } from "./HiveSqlParser.js"; +import { InsertStmtContext } from "./HiveSqlParser.js"; +import { SelectStmtContext } from "./HiveSqlParser.js"; import { AtomSelectStatementContext } from "./HiveSqlParser.js"; import { SelectStatementContext } from "./HiveSqlParser.js"; import { SetOpSelectStatementContext } from "./HiveSqlParser.js"; import { SelectStatementWithCTEContext } from "./HiveSqlParser.js"; -import { BodyContext } from "./HiveSqlParser.js"; import { InsertClauseContext } from "./HiveSqlParser.js"; import { DestinationContext } from "./HiveSqlParser.js"; import { LimitClauseContext } from "./HiveSqlParser.js"; @@ -1741,17 +1745,33 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.singleFromStatement`. + * Visit a parse tree produced by the `fromInsertStmt` + * labeled alternative in `HiveSqlParser.singleFromStatement`. * @param ctx the parse tree * @return the visitor result */ - visitSingleFromStatement?: (ctx: SingleFromStatementContext) => Result; + visitFromInsertStmt?: (ctx: FromInsertStmtContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.regularBody`. + * Visit a parse tree produced by the `fromSelectStmt` + * labeled alternative in `HiveSqlParser.singleFromStatement`. * @param ctx the parse tree * @return the visitor result */ - visitRegularBody?: (ctx: RegularBodyContext) => Result; + visitFromSelectStmt?: (ctx: FromSelectStmtContext) => Result; + /** + * Visit a parse tree produced by the `insertStmt` + * labeled alternative in `HiveSqlParser.regularBody`. + * @param ctx the parse tree + * @return the visitor result + */ + visitInsertStmt?: (ctx: InsertStmtContext) => Result; + /** + * Visit a parse tree produced by the `selectStmt` + * labeled alternative in `HiveSqlParser.regularBody`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectStmt?: (ctx: SelectStmtContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.atomSelectStatement`. * @param ctx the parse tree @@ -1776,12 +1796,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.body`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBody?: (ctx: BodyContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.insertClause`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlParser.interp b/src/lib/impala/ImpalaSqlParser.interp index 8f2f074..20fbe20 100644 --- a/src/lib/impala/ImpalaSqlParser.interp +++ b/src/lib/impala/ImpalaSqlParser.interp @@ -657,6 +657,7 @@ queryStatement with constraintSpecification foreignKeySpecification +columnSpec columnDefinition kuduTableElement kuduColumnDefinition @@ -697,7 +698,6 @@ sampledRelation sampleType aliasedRelation columnAliases -createColumnAliases relationPrimary subQueryRelation unnest @@ -736,4 +736,4 @@ nonReserved atn: -[4, 1, 273, 2771, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 1, 0, 5, 0, 366, 8, 0, 10, 0, 12, 0, 369, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 375, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 399, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 412, 8, 4, 1, 5, 1, 5, 3, 5, 416, 8, 5, 1, 5, 1, 5, 3, 5, 420, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 427, 8, 5, 10, 5, 12, 5, 430, 9, 5, 1, 5, 1, 5, 3, 5, 434, 8, 5, 1, 5, 1, 5, 3, 5, 438, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 444, 8, 5, 3, 5, 446, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 451, 8, 5, 1, 6, 1, 6, 3, 6, 455, 8, 6, 1, 6, 1, 6, 3, 6, 459, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 466, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 471, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 477, 8, 7, 1, 7, 1, 7, 3, 7, 481, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 488, 8, 7, 10, 7, 12, 7, 491, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 497, 8, 7, 1, 7, 1, 7, 3, 7, 501, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 506, 8, 7, 3, 7, 508, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 513, 8, 7, 1, 7, 1, 7, 3, 7, 517, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 524, 8, 7, 1, 7, 1, 7, 3, 7, 528, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 533, 8, 8, 1, 8, 1, 8, 3, 8, 537, 8, 8, 1, 8, 1, 8, 3, 8, 541, 8, 8, 1, 8, 1, 8, 3, 8, 545, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 553, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 558, 8, 9, 1, 9, 1, 9, 3, 9, 562, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 570, 8, 11, 1, 11, 1, 11, 3, 11, 574, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 581, 8, 11, 10, 11, 12, 11, 584, 9, 11, 3, 11, 586, 8, 11, 1, 11, 3, 11, 589, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 595, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 602, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 613, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 618, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 623, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 628, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 633, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 640, 8, 12, 10, 12, 12, 12, 643, 9, 12, 3, 12, 645, 8, 12, 1, 12, 3, 12, 648, 8, 12, 1, 12, 1, 12, 3, 12, 652, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 678, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 704, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 713, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 723, 8, 16, 1, 16, 3, 16, 726, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 740, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 758, 8, 20, 3, 20, 760, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 767, 8, 20, 10, 20, 12, 20, 770, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 780, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 789, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 796, 8, 22, 1, 22, 1, 22, 3, 22, 800, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 807, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 813, 8, 23, 1, 23, 3, 23, 816, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 821, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 828, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 842, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 855, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 860, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 865, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 871, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 907, 8, 32, 1, 32, 3, 32, 910, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 916, 8, 33, 1, 33, 3, 33, 919, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 925, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 931, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 943, 8, 35, 3, 35, 945, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 953, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 961, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 966, 8, 38, 1, 38, 1, 38, 3, 38, 970, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 975, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 982, 8, 40, 1, 40, 1, 40, 3, 40, 986, 8, 40, 1, 41, 1, 41, 3, 41, 990, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 996, 8, 41, 1, 42, 1, 42, 3, 42, 1000, 8, 42, 1, 42, 1, 42, 3, 42, 1004, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1011, 8, 42, 10, 42, 12, 42, 1014, 9, 42, 3, 42, 1016, 8, 42, 1, 42, 3, 42, 1019, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1027, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1041, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1048, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1061, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1067, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1072, 8, 49, 1, 49, 3, 49, 1075, 8, 49, 1, 50, 3, 50, 1078, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1083, 8, 50, 1, 50, 1, 50, 3, 50, 1087, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1094, 8, 50, 10, 50, 12, 50, 1097, 9, 50, 1, 50, 1, 50, 3, 50, 1101, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1107, 8, 51, 1, 52, 1, 52, 3, 52, 1111, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1116, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1121, 8, 53, 1, 53, 3, 53, 1124, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1130, 8, 53, 10, 53, 12, 53, 1133, 9, 53, 3, 53, 1135, 8, 53, 1, 53, 1, 53, 3, 53, 1139, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1149, 8, 54, 10, 54, 12, 54, 1152, 9, 54, 3, 54, 1154, 8, 54, 1, 54, 1, 54, 3, 54, 1158, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1163, 8, 55, 1, 55, 1, 55, 3, 55, 1167, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1183, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1188, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1193, 8, 57, 10, 57, 12, 57, 1196, 9, 57, 3, 57, 1198, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1204, 8, 58, 1, 58, 3, 58, 1207, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1212, 8, 58, 10, 58, 12, 58, 1215, 9, 58, 3, 58, 1217, 8, 58, 1, 59, 1, 59, 3, 59, 1221, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1226, 8, 59, 1, 59, 3, 59, 1229, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1234, 8, 59, 10, 59, 12, 59, 1237, 9, 59, 3, 59, 1239, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1263, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1277, 8, 65, 1, 65, 1, 65, 3, 65, 1281, 8, 65, 1, 66, 1, 66, 3, 66, 1285, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1305, 8, 68, 3, 68, 1307, 8, 68, 3, 68, 1309, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1318, 8, 69, 3, 69, 1320, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1329, 8, 70, 3, 70, 1331, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1340, 8, 71, 3, 71, 1342, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1347, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1356, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1365, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1374, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1385, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1391, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1396, 8, 78, 1, 78, 3, 78, 1399, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1412, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1422, 8, 80, 1, 80, 1, 80, 3, 80, 1426, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1431, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1440, 8, 82, 10, 82, 12, 82, 1443, 9, 82, 1, 82, 1, 82, 3, 82, 1447, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1478, 8, 93, 10, 93, 12, 93, 1481, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1486, 8, 94, 10, 94, 12, 94, 1489, 9, 94, 1, 95, 1, 95, 3, 95, 1493, 8, 95, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1499, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 1504, 8, 98, 1, 98, 1, 98, 3, 98, 1508, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1513, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1518, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1523, 8, 98, 1, 98, 1, 98, 3, 98, 1527, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1536, 8, 98, 1, 98, 3, 98, 1539, 8, 98, 1, 98, 1, 98, 3, 98, 1543, 8, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1548, 8, 99, 10, 99, 12, 99, 1551, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1561, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1567, 8, 101, 5, 101, 1569, 8, 101, 10, 101, 12, 101, 1572, 9, 101, 1, 101, 1, 101, 1, 102, 3, 102, 1577, 8, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1585, 8, 103, 10, 103, 12, 103, 1588, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1594, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1599, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1604, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1609, 8, 104, 1, 104, 1, 104, 5, 104, 1613, 8, 104, 10, 104, 12, 104, 1616, 9, 104, 3, 104, 1618, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1627, 8, 105, 1, 105, 3, 105, 1630, 8, 105, 1, 105, 3, 105, 1633, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1639, 8, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 1647, 8, 108, 10, 108, 12, 108, 1650, 9, 108, 3, 108, 1652, 8, 108, 1, 108, 1, 108, 3, 108, 1656, 8, 108, 1, 108, 1, 108, 3, 108, 1660, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1666, 8, 109, 1, 109, 1, 109, 5, 109, 1670, 8, 109, 10, 109, 12, 109, 1673, 9, 109, 3, 109, 1675, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1681, 8, 110, 1, 110, 1, 110, 5, 110, 1685, 8, 110, 10, 110, 12, 110, 1688, 9, 110, 3, 110, 1690, 8, 110, 1, 111, 3, 111, 1693, 8, 111, 1, 111, 1, 111, 3, 111, 1697, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 1707, 8, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 5, 115, 1716, 8, 115, 10, 115, 12, 115, 1719, 9, 115, 1, 115, 1, 115, 3, 115, 1723, 8, 115, 1, 115, 3, 115, 1726, 8, 115, 1, 116, 1, 116, 3, 116, 1730, 8, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 3, 117, 1737, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 5, 117, 1745, 8, 117, 10, 117, 12, 117, 1748, 9, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1759, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1765, 8, 118, 3, 118, 1767, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1776, 8, 119, 1, 119, 3, 119, 1779, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1786, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1796, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1802, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 1808, 8, 123, 10, 123, 12, 123, 1811, 9, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1819, 8, 124, 10, 124, 12, 124, 1822, 9, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 5, 125, 1829, 8, 125, 10, 125, 12, 125, 1832, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1842, 8, 126, 3, 126, 1844, 8, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1850, 8, 126, 1, 127, 1, 127, 1, 127, 3, 127, 1855, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 1863, 8, 128, 10, 128, 12, 128, 1866, 9, 128, 3, 128, 1868, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1874, 8, 128, 3, 128, 1876, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1884, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1890, 8, 129, 1, 129, 5, 129, 1893, 8, 129, 10, 129, 12, 129, 1896, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1905, 8, 130, 10, 130, 12, 130, 1908, 9, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1914, 8, 130, 1, 131, 1, 131, 3, 131, 1918, 8, 131, 1, 131, 1, 131, 3, 131, 1922, 8, 131, 1, 132, 1, 132, 3, 132, 1926, 8, 132, 1, 132, 3, 132, 1929, 8, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1934, 8, 132, 10, 132, 12, 132, 1937, 9, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1943, 8, 132, 10, 132, 12, 132, 1946, 9, 132, 3, 132, 1948, 8, 132, 1, 132, 1, 132, 3, 132, 1952, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1957, 8, 132, 1, 132, 1, 132, 3, 132, 1961, 8, 132, 1, 133, 3, 133, 1964, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1969, 8, 133, 10, 133, 12, 133, 1972, 9, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1980, 8, 135, 10, 135, 12, 135, 1983, 9, 135, 3, 135, 1985, 8, 135, 1, 135, 1, 135, 3, 135, 1989, 8, 135, 1, 136, 1, 136, 3, 136, 1993, 8, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 138, 1, 138, 3, 138, 2002, 8, 138, 1, 138, 3, 138, 2005, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 2012, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2026, 8, 139, 5, 139, 2028, 8, 139, 10, 139, 12, 139, 2031, 9, 139, 1, 140, 3, 140, 2034, 8, 140, 1, 140, 1, 140, 3, 140, 2038, 8, 140, 1, 140, 1, 140, 3, 140, 2042, 8, 140, 1, 140, 1, 140, 3, 140, 2046, 8, 140, 1, 140, 1, 140, 3, 140, 2050, 8, 140, 1, 140, 1, 140, 3, 140, 2054, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2064, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 2073, 8, 141, 10, 141, 12, 141, 2076, 9, 141, 1, 141, 1, 141, 3, 141, 2080, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2093, 8, 142, 3, 142, 2095, 8, 142, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2101, 8, 144, 1, 144, 1, 144, 3, 144, 2105, 8, 144, 3, 144, 2107, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 2113, 8, 145, 10, 145, 12, 145, 2116, 9, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 5, 146, 2124, 8, 146, 10, 146, 12, 146, 2127, 9, 146, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2133, 8, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2138, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 2149, 8, 149, 10, 149, 12, 149, 2152, 9, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2157, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2165, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2172, 8, 153, 1, 153, 1, 153, 3, 153, 2176, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 5, 153, 2184, 8, 153, 10, 153, 12, 153, 2187, 9, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2197, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2205, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2212, 8, 154, 10, 154, 12, 154, 2215, 9, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2220, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2225, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2231, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2237, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2242, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2247, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2253, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 2264, 8, 155, 10, 155, 12, 155, 2267, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2293, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2299, 8, 156, 5, 156, 2301, 8, 156, 10, 156, 12, 156, 2304, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2313, 8, 156, 10, 156, 12, 156, 2316, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2325, 8, 156, 1, 156, 3, 156, 2328, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2333, 8, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2338, 8, 156, 10, 156, 12, 156, 2341, 9, 156, 3, 156, 2343, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2350, 8, 156, 10, 156, 12, 156, 2353, 9, 156, 3, 156, 2355, 8, 156, 1, 156, 1, 156, 3, 156, 2359, 8, 156, 1, 156, 3, 156, 2362, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2372, 8, 156, 10, 156, 12, 156, 2375, 9, 156, 3, 156, 2377, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 4, 156, 2394, 8, 156, 11, 156, 12, 156, 2395, 1, 156, 1, 156, 3, 156, 2400, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 4, 156, 2406, 8, 156, 11, 156, 12, 156, 2407, 1, 156, 1, 156, 3, 156, 2412, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2435, 8, 156, 10, 156, 12, 156, 2438, 9, 156, 3, 156, 2440, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2449, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2455, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2461, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2467, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2478, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2487, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2507, 8, 156, 10, 156, 12, 156, 2510, 9, 156, 3, 156, 2512, 8, 156, 1, 156, 3, 156, 2515, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2525, 8, 156, 10, 156, 12, 156, 2528, 9, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2534, 8, 157, 3, 157, 2536, 8, 157, 1, 158, 1, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2558, 8, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2587, 8, 164, 10, 164, 12, 164, 2590, 9, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2599, 8, 164, 10, 164, 12, 164, 2602, 9, 164, 1, 164, 1, 164, 3, 164, 2606, 8, 164, 3, 164, 2608, 8, 164, 1, 164, 1, 164, 5, 164, 2612, 8, 164, 10, 164, 12, 164, 2615, 9, 164, 1, 165, 1, 165, 3, 165, 2619, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2625, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2645, 8, 169, 10, 169, 12, 169, 2648, 9, 169, 3, 169, 2650, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2657, 8, 169, 10, 169, 12, 169, 2660, 9, 169, 3, 169, 2662, 8, 169, 1, 169, 3, 169, 2665, 8, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2685, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2696, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2703, 8, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2708, 8, 173, 10, 173, 12, 173, 2711, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2724, 8, 174, 3, 174, 2726, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 5, 176, 2733, 8, 176, 10, 176, 12, 176, 2736, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2744, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2751, 8, 178, 1, 179, 3, 179, 2754, 8, 179, 1, 179, 1, 179, 3, 179, 2758, 8, 179, 1, 179, 1, 179, 3, 179, 2762, 8, 179, 1, 179, 3, 179, 2765, 8, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 10, 768, 1441, 1614, 1648, 1671, 1686, 1717, 1746, 1820, 2302, 6, 258, 278, 306, 310, 312, 328, 182, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 0, 32, 2, 0, 46, 46, 171, 171, 2, 0, 167, 167, 206, 206, 2, 0, 177, 177, 204, 204, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 160, 160, 2, 0, 103, 103, 145, 145, 2, 0, 47, 47, 172, 172, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 167, 167, 206, 206, 2, 0, 179, 179, 211, 211, 1, 0, 229, 232, 2, 0, 148, 148, 221, 225, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 202, 202, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 187, 187, 3, 0, 106, 106, 115, 115, 165, 165, 2, 0, 105, 105, 164, 164, 4, 0, 70, 70, 134, 134, 196, 196, 210, 210, 1, 0, 239, 240, 1, 0, 241, 243, 1, 0, 233, 238, 3, 0, 2, 2, 6, 6, 182, 182, 2, 0, 70, 70, 196, 196, 5, 0, 48, 49, 91, 92, 123, 126, 173, 174, 219, 220, 1, 0, 128, 131, 2, 0, 77, 77, 150, 150, 4, 0, 46, 46, 179, 179, 190, 190, 211, 211, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 123, 123, 125, 125, 159, 159, 166, 166, 173, 173, 186, 186, 198, 198, 206, 206, 219, 219, 22, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 123, 126, 128, 131, 138, 138, 141, 141, 153, 154, 173, 174, 181, 181, 186, 187, 197, 197, 206, 206, 215, 215, 219, 219, 222, 222, 3093, 0, 367, 1, 0, 0, 0, 2, 372, 1, 0, 0, 0, 4, 398, 1, 0, 0, 0, 6, 400, 1, 0, 0, 0, 8, 411, 1, 0, 0, 0, 10, 413, 1, 0, 0, 0, 12, 452, 1, 0, 0, 0, 14, 474, 1, 0, 0, 0, 16, 529, 1, 0, 0, 0, 18, 549, 1, 0, 0, 0, 20, 563, 1, 0, 0, 0, 22, 567, 1, 0, 0, 0, 24, 629, 1, 0, 0, 0, 26, 677, 1, 0, 0, 0, 28, 679, 1, 0, 0, 0, 30, 687, 1, 0, 0, 0, 32, 707, 1, 0, 0, 0, 34, 727, 1, 0, 0, 0, 36, 734, 1, 0, 0, 0, 38, 743, 1, 0, 0, 0, 40, 751, 1, 0, 0, 0, 42, 773, 1, 0, 0, 0, 44, 783, 1, 0, 0, 0, 46, 801, 1, 0, 0, 0, 48, 822, 1, 0, 0, 0, 50, 843, 1, 0, 0, 0, 52, 849, 1, 0, 0, 0, 54, 866, 1, 0, 0, 0, 56, 875, 1, 0, 0, 0, 58, 882, 1, 0, 0, 0, 60, 890, 1, 0, 0, 0, 62, 897, 1, 0, 0, 0, 64, 904, 1, 0, 0, 0, 66, 913, 1, 0, 0, 0, 68, 924, 1, 0, 0, 0, 70, 926, 1, 0, 0, 0, 72, 946, 1, 0, 0, 0, 74, 960, 1, 0, 0, 0, 76, 962, 1, 0, 0, 0, 78, 971, 1, 0, 0, 0, 80, 978, 1, 0, 0, 0, 82, 987, 1, 0, 0, 0, 84, 997, 1, 0, 0, 0, 86, 1020, 1, 0, 0, 0, 88, 1026, 1, 0, 0, 0, 90, 1028, 1, 0, 0, 0, 92, 1035, 1, 0, 0, 0, 94, 1047, 1, 0, 0, 0, 96, 1049, 1, 0, 0, 0, 98, 1056, 1, 0, 0, 0, 100, 1077, 1, 0, 0, 0, 102, 1106, 1, 0, 0, 0, 104, 1108, 1, 0, 0, 0, 106, 1117, 1, 0, 0, 0, 108, 1140, 1, 0, 0, 0, 110, 1159, 1, 0, 0, 0, 112, 1182, 1, 0, 0, 0, 114, 1184, 1, 0, 0, 0, 116, 1199, 1, 0, 0, 0, 118, 1218, 1, 0, 0, 0, 120, 1240, 1, 0, 0, 0, 122, 1245, 1, 0, 0, 0, 124, 1250, 1, 0, 0, 0, 126, 1255, 1, 0, 0, 0, 128, 1260, 1, 0, 0, 0, 130, 1267, 1, 0, 0, 0, 132, 1282, 1, 0, 0, 0, 134, 1288, 1, 0, 0, 0, 136, 1308, 1, 0, 0, 0, 138, 1310, 1, 0, 0, 0, 140, 1321, 1, 0, 0, 0, 142, 1332, 1, 0, 0, 0, 144, 1346, 1, 0, 0, 0, 146, 1348, 1, 0, 0, 0, 148, 1357, 1, 0, 0, 0, 150, 1366, 1, 0, 0, 0, 152, 1375, 1, 0, 0, 0, 154, 1378, 1, 0, 0, 0, 156, 1386, 1, 0, 0, 0, 158, 1402, 1, 0, 0, 0, 160, 1406, 1, 0, 0, 0, 162, 1430, 1, 0, 0, 0, 164, 1432, 1, 0, 0, 0, 166, 1448, 1, 0, 0, 0, 168, 1451, 1, 0, 0, 0, 170, 1455, 1, 0, 0, 0, 172, 1458, 1, 0, 0, 0, 174, 1462, 1, 0, 0, 0, 176, 1464, 1, 0, 0, 0, 178, 1466, 1, 0, 0, 0, 180, 1468, 1, 0, 0, 0, 182, 1470, 1, 0, 0, 0, 184, 1472, 1, 0, 0, 0, 186, 1474, 1, 0, 0, 0, 188, 1482, 1, 0, 0, 0, 190, 1492, 1, 0, 0, 0, 192, 1494, 1, 0, 0, 0, 194, 1498, 1, 0, 0, 0, 196, 1503, 1, 0, 0, 0, 198, 1544, 1, 0, 0, 0, 200, 1552, 1, 0, 0, 0, 202, 1556, 1, 0, 0, 0, 204, 1576, 1, 0, 0, 0, 206, 1580, 1, 0, 0, 0, 208, 1589, 1, 0, 0, 0, 210, 1619, 1, 0, 0, 0, 212, 1634, 1, 0, 0, 0, 214, 1640, 1, 0, 0, 0, 216, 1642, 1, 0, 0, 0, 218, 1661, 1, 0, 0, 0, 220, 1676, 1, 0, 0, 0, 222, 1696, 1, 0, 0, 0, 224, 1706, 1, 0, 0, 0, 226, 1708, 1, 0, 0, 0, 228, 1710, 1, 0, 0, 0, 230, 1725, 1, 0, 0, 0, 232, 1727, 1, 0, 0, 0, 234, 1734, 1, 0, 0, 0, 236, 1766, 1, 0, 0, 0, 238, 1778, 1, 0, 0, 0, 240, 1785, 1, 0, 0, 0, 242, 1795, 1, 0, 0, 0, 244, 1797, 1, 0, 0, 0, 246, 1803, 1, 0, 0, 0, 248, 1814, 1, 0, 0, 0, 250, 1825, 1, 0, 0, 0, 252, 1833, 1, 0, 0, 0, 254, 1851, 1, 0, 0, 0, 256, 1856, 1, 0, 0, 0, 258, 1877, 1, 0, 0, 0, 260, 1913, 1, 0, 0, 0, 262, 1915, 1, 0, 0, 0, 264, 1923, 1, 0, 0, 0, 266, 1963, 1, 0, 0, 0, 268, 1973, 1, 0, 0, 0, 270, 1988, 1, 0, 0, 0, 272, 1990, 1, 0, 0, 0, 274, 1997, 1, 0, 0, 0, 276, 2011, 1, 0, 0, 0, 278, 2013, 1, 0, 0, 0, 280, 2063, 1, 0, 0, 0, 282, 2079, 1, 0, 0, 0, 284, 2081, 1, 0, 0, 0, 286, 2096, 1, 0, 0, 0, 288, 2098, 1, 0, 0, 0, 290, 2108, 1, 0, 0, 0, 292, 2119, 1, 0, 0, 0, 294, 2137, 1, 0, 0, 0, 296, 2139, 1, 0, 0, 0, 298, 2143, 1, 0, 0, 0, 300, 2158, 1, 0, 0, 0, 302, 2164, 1, 0, 0, 0, 304, 2166, 1, 0, 0, 0, 306, 2175, 1, 0, 0, 0, 308, 2246, 1, 0, 0, 0, 310, 2252, 1, 0, 0, 0, 312, 2514, 1, 0, 0, 0, 314, 2535, 1, 0, 0, 0, 316, 2537, 1, 0, 0, 0, 318, 2539, 1, 0, 0, 0, 320, 2541, 1, 0, 0, 0, 322, 2557, 1, 0, 0, 0, 324, 2559, 1, 0, 0, 0, 326, 2561, 1, 0, 0, 0, 328, 2607, 1, 0, 0, 0, 330, 2618, 1, 0, 0, 0, 332, 2624, 1, 0, 0, 0, 334, 2626, 1, 0, 0, 0, 336, 2631, 1, 0, 0, 0, 338, 2637, 1, 0, 0, 0, 340, 2684, 1, 0, 0, 0, 342, 2695, 1, 0, 0, 0, 344, 2702, 1, 0, 0, 0, 346, 2704, 1, 0, 0, 0, 348, 2725, 1, 0, 0, 0, 350, 2727, 1, 0, 0, 0, 352, 2729, 1, 0, 0, 0, 354, 2743, 1, 0, 0, 0, 356, 2750, 1, 0, 0, 0, 358, 2764, 1, 0, 0, 0, 360, 2766, 1, 0, 0, 0, 362, 2768, 1, 0, 0, 0, 364, 366, 3, 2, 1, 0, 365, 364, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 370, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 370, 371, 5, 0, 0, 1, 371, 1, 1, 0, 0, 0, 372, 374, 3, 4, 2, 0, 373, 375, 5, 246, 0, 0, 374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 3, 1, 0, 0, 0, 376, 399, 3, 204, 102, 0, 377, 399, 3, 6, 3, 0, 378, 399, 3, 8, 4, 0, 379, 399, 3, 26, 13, 0, 380, 399, 3, 64, 32, 0, 381, 399, 3, 66, 33, 0, 382, 399, 3, 68, 34, 0, 383, 399, 3, 74, 37, 0, 384, 399, 3, 88, 44, 0, 385, 399, 3, 94, 47, 0, 386, 399, 3, 100, 50, 0, 387, 399, 3, 102, 51, 0, 388, 399, 3, 108, 54, 0, 389, 399, 3, 110, 55, 0, 390, 399, 3, 112, 56, 0, 391, 399, 3, 144, 72, 0, 392, 399, 3, 152, 76, 0, 393, 399, 3, 154, 77, 0, 394, 399, 3, 156, 78, 0, 395, 399, 3, 158, 79, 0, 396, 399, 3, 160, 80, 0, 397, 399, 3, 162, 81, 0, 398, 376, 1, 0, 0, 0, 398, 377, 1, 0, 0, 0, 398, 378, 1, 0, 0, 0, 398, 379, 1, 0, 0, 0, 398, 380, 1, 0, 0, 0, 398, 381, 1, 0, 0, 0, 398, 382, 1, 0, 0, 0, 398, 383, 1, 0, 0, 0, 398, 384, 1, 0, 0, 0, 398, 385, 1, 0, 0, 0, 398, 386, 1, 0, 0, 0, 398, 387, 1, 0, 0, 0, 398, 388, 1, 0, 0, 0, 398, 389, 1, 0, 0, 0, 398, 390, 1, 0, 0, 0, 398, 391, 1, 0, 0, 0, 398, 392, 1, 0, 0, 0, 398, 393, 1, 0, 0, 0, 398, 394, 1, 0, 0, 0, 398, 395, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 398, 397, 1, 0, 0, 0, 399, 5, 1, 0, 0, 0, 400, 401, 5, 205, 0, 0, 401, 402, 3, 184, 92, 0, 402, 7, 1, 0, 0, 0, 403, 412, 3, 18, 9, 0, 404, 412, 3, 20, 10, 0, 405, 412, 3, 22, 11, 0, 406, 412, 3, 24, 12, 0, 407, 412, 3, 16, 8, 0, 408, 412, 3, 14, 7, 0, 409, 412, 3, 12, 6, 0, 410, 412, 3, 10, 5, 0, 411, 403, 1, 0, 0, 0, 411, 404, 1, 0, 0, 0, 411, 405, 1, 0, 0, 0, 411, 406, 1, 0, 0, 0, 411, 407, 1, 0, 0, 0, 411, 408, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 9, 1, 0, 0, 0, 413, 415, 5, 37, 0, 0, 414, 416, 5, 19, 0, 0, 415, 414, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 419, 5, 190, 0, 0, 418, 420, 3, 172, 86, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 437, 3, 174, 87, 0, 422, 423, 5, 249, 0, 0, 423, 428, 3, 212, 106, 0, 424, 425, 5, 247, 0, 0, 425, 427, 3, 212, 106, 0, 426, 424, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 433, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 431, 432, 5, 247, 0, 0, 432, 434, 3, 208, 104, 0, 433, 431, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 5, 250, 0, 0, 436, 438, 1, 0, 0, 0, 437, 422, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 445, 1, 0, 0, 0, 439, 440, 5, 17, 0, 0, 440, 443, 5, 26, 0, 0, 441, 444, 3, 248, 124, 0, 442, 444, 3, 292, 146, 0, 443, 441, 1, 0, 0, 0, 443, 442, 1, 0, 0, 0, 444, 446, 1, 0, 0, 0, 445, 439, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 450, 3, 196, 98, 0, 448, 449, 5, 9, 0, 0, 449, 451, 3, 204, 102, 0, 450, 448, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 11, 1, 0, 0, 0, 452, 454, 5, 37, 0, 0, 453, 455, 5, 19, 0, 0, 454, 453, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 458, 5, 190, 0, 0, 457, 459, 3, 172, 86, 0, 458, 457, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 3, 174, 87, 0, 461, 465, 5, 115, 0, 0, 462, 466, 3, 186, 93, 0, 463, 464, 5, 148, 0, 0, 464, 466, 3, 314, 157, 0, 465, 462, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 470, 1, 0, 0, 0, 467, 468, 5, 17, 0, 0, 468, 469, 5, 26, 0, 0, 469, 471, 3, 248, 124, 0, 470, 467, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 473, 3, 196, 98, 0, 473, 13, 1, 0, 0, 0, 474, 476, 5, 37, 0, 0, 475, 477, 5, 19, 0, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 480, 5, 190, 0, 0, 479, 481, 3, 172, 86, 0, 480, 479, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 500, 3, 174, 87, 0, 483, 484, 5, 249, 0, 0, 484, 489, 3, 214, 107, 0, 485, 486, 5, 247, 0, 0, 486, 488, 3, 214, 107, 0, 487, 485, 1, 0, 0, 0, 488, 491, 1, 0, 0, 0, 489, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 496, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 492, 493, 5, 247, 0, 0, 493, 494, 5, 151, 0, 0, 494, 495, 5, 110, 0, 0, 495, 497, 3, 290, 145, 0, 496, 492, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 5, 250, 0, 0, 499, 501, 1, 0, 0, 0, 500, 483, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 507, 1, 0, 0, 0, 502, 503, 5, 151, 0, 0, 503, 505, 5, 110, 0, 0, 504, 506, 3, 290, 145, 0, 505, 504, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 508, 1, 0, 0, 0, 507, 502, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 512, 1, 0, 0, 0, 509, 510, 5, 146, 0, 0, 510, 511, 5, 26, 0, 0, 511, 513, 3, 230, 115, 0, 512, 509, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 515, 5, 34, 0, 0, 515, 517, 3, 314, 157, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 5, 23, 0, 0, 519, 520, 5, 9, 0, 0, 520, 523, 5, 111, 0, 0, 521, 522, 5, 25, 0, 0, 522, 524, 3, 246, 123, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 527, 1, 0, 0, 0, 525, 526, 5, 9, 0, 0, 526, 528, 3, 204, 102, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 15, 1, 0, 0, 0, 529, 530, 5, 37, 0, 0, 530, 532, 5, 214, 0, 0, 531, 533, 3, 172, 86, 0, 532, 531, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 3, 178, 89, 0, 535, 537, 3, 202, 101, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 539, 5, 34, 0, 0, 539, 541, 3, 314, 157, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 543, 5, 25, 0, 0, 543, 545, 3, 246, 123, 0, 544, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 5, 9, 0, 0, 547, 548, 3, 204, 102, 0, 548, 17, 1, 0, 0, 0, 549, 550, 5, 37, 0, 0, 550, 552, 7, 0, 0, 0, 551, 553, 3, 172, 86, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 557, 3, 176, 88, 0, 555, 556, 5, 34, 0, 0, 556, 558, 3, 314, 157, 0, 557, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 561, 1, 0, 0, 0, 559, 560, 5, 24, 0, 0, 560, 562, 3, 314, 157, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 19, 1, 0, 0, 0, 563, 564, 5, 37, 0, 0, 564, 565, 5, 167, 0, 0, 565, 566, 3, 356, 178, 0, 566, 21, 1, 0, 0, 0, 567, 569, 5, 37, 0, 0, 568, 570, 5, 12, 0, 0, 569, 568, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 573, 5, 84, 0, 0, 572, 574, 3, 172, 86, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 588, 3, 180, 90, 0, 576, 585, 5, 249, 0, 0, 577, 582, 3, 328, 164, 0, 578, 579, 5, 247, 0, 0, 579, 581, 3, 328, 164, 0, 580, 578, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 585, 577, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 589, 5, 250, 0, 0, 588, 576, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 5, 161, 0, 0, 591, 594, 3, 328, 164, 0, 592, 593, 5, 102, 0, 0, 593, 595, 3, 328, 164, 0, 594, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 24, 0, 0, 597, 601, 5, 258, 0, 0, 598, 599, 5, 104, 0, 0, 599, 600, 5, 233, 0, 0, 600, 602, 5, 258, 0, 0, 601, 598, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 5, 208, 0, 0, 604, 605, 5, 233, 0, 0, 605, 606, 5, 258, 0, 0, 606, 607, 5, 127, 0, 0, 607, 608, 5, 233, 0, 0, 608, 612, 5, 258, 0, 0, 609, 610, 5, 18, 0, 0, 610, 611, 5, 233, 0, 0, 611, 613, 5, 258, 0, 0, 612, 609, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 617, 1, 0, 0, 0, 614, 615, 5, 20, 0, 0, 615, 616, 5, 233, 0, 0, 616, 618, 5, 258, 0, 0, 617, 614, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 622, 1, 0, 0, 0, 619, 620, 5, 189, 0, 0, 620, 621, 5, 233, 0, 0, 621, 623, 5, 258, 0, 0, 622, 619, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 627, 1, 0, 0, 0, 624, 625, 5, 76, 0, 0, 625, 626, 5, 233, 0, 0, 626, 628, 5, 258, 0, 0, 627, 624, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 23, 1, 0, 0, 0, 629, 630, 5, 37, 0, 0, 630, 632, 5, 84, 0, 0, 631, 633, 3, 172, 86, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 647, 3, 180, 90, 0, 635, 644, 5, 249, 0, 0, 636, 641, 3, 328, 164, 0, 637, 638, 5, 247, 0, 0, 638, 640, 3, 328, 164, 0, 639, 637, 1, 0, 0, 0, 640, 643, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 644, 636, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 648, 5, 250, 0, 0, 647, 635, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 651, 1, 0, 0, 0, 649, 650, 5, 161, 0, 0, 650, 652, 3, 328, 164, 0, 651, 649, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 5, 24, 0, 0, 654, 655, 5, 258, 0, 0, 655, 656, 5, 188, 0, 0, 656, 657, 5, 233, 0, 0, 657, 658, 3, 314, 157, 0, 658, 25, 1, 0, 0, 0, 659, 678, 3, 28, 14, 0, 660, 678, 3, 62, 31, 0, 661, 678, 3, 60, 30, 0, 662, 678, 3, 58, 29, 0, 663, 678, 3, 54, 27, 0, 664, 678, 3, 56, 28, 0, 665, 678, 3, 52, 26, 0, 666, 678, 3, 48, 24, 0, 667, 678, 3, 50, 25, 0, 668, 678, 3, 46, 23, 0, 669, 678, 3, 44, 22, 0, 670, 678, 3, 42, 21, 0, 671, 678, 3, 40, 20, 0, 672, 678, 3, 34, 17, 0, 673, 678, 3, 30, 15, 0, 674, 678, 3, 32, 16, 0, 675, 678, 3, 36, 18, 0, 676, 678, 3, 38, 19, 0, 677, 659, 1, 0, 0, 0, 677, 660, 1, 0, 0, 0, 677, 661, 1, 0, 0, 0, 677, 662, 1, 0, 0, 0, 677, 663, 1, 0, 0, 0, 677, 664, 1, 0, 0, 0, 677, 665, 1, 0, 0, 0, 677, 666, 1, 0, 0, 0, 677, 667, 1, 0, 0, 0, 677, 668, 1, 0, 0, 0, 677, 669, 1, 0, 0, 0, 677, 670, 1, 0, 0, 0, 677, 671, 1, 0, 0, 0, 677, 672, 1, 0, 0, 0, 677, 673, 1, 0, 0, 0, 677, 674, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, 676, 1, 0, 0, 0, 678, 27, 1, 0, 0, 0, 679, 680, 5, 4, 0, 0, 680, 681, 5, 46, 0, 0, 681, 682, 3, 184, 92, 0, 682, 683, 5, 177, 0, 0, 683, 684, 5, 143, 0, 0, 684, 685, 7, 1, 0, 0, 685, 686, 3, 356, 178, 0, 686, 29, 1, 0, 0, 0, 687, 688, 5, 4, 0, 0, 688, 689, 5, 190, 0, 0, 689, 690, 3, 186, 93, 0, 690, 691, 5, 177, 0, 0, 691, 692, 5, 32, 0, 0, 692, 693, 5, 183, 0, 0, 693, 694, 3, 192, 96, 0, 694, 695, 5, 249, 0, 0, 695, 696, 3, 226, 113, 0, 696, 697, 5, 233, 0, 0, 697, 703, 3, 314, 157, 0, 698, 699, 5, 247, 0, 0, 699, 700, 3, 226, 113, 0, 700, 701, 5, 233, 0, 0, 701, 702, 3, 314, 157, 0, 702, 704, 1, 0, 0, 0, 703, 698, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 5, 250, 0, 0, 706, 31, 1, 0, 0, 0, 707, 708, 5, 4, 0, 0, 708, 709, 5, 190, 0, 0, 709, 712, 3, 186, 93, 0, 710, 711, 5, 146, 0, 0, 711, 713, 3, 304, 152, 0, 712, 710, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 725, 5, 177, 0, 0, 715, 716, 5, 30, 0, 0, 716, 717, 5, 94, 0, 0, 717, 722, 3, 314, 157, 0, 718, 719, 5, 218, 0, 0, 719, 720, 5, 152, 0, 0, 720, 721, 5, 233, 0, 0, 721, 723, 3, 358, 179, 0, 722, 718, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 726, 5, 199, 0, 0, 725, 715, 1, 0, 0, 0, 725, 724, 1, 0, 0, 0, 726, 33, 1, 0, 0, 0, 727, 728, 5, 4, 0, 0, 728, 729, 5, 190, 0, 0, 729, 730, 3, 186, 93, 0, 730, 731, 5, 31, 0, 0, 731, 732, 5, 32, 0, 0, 732, 733, 3, 218, 109, 0, 733, 35, 1, 0, 0, 0, 734, 735, 5, 4, 0, 0, 735, 736, 5, 190, 0, 0, 736, 737, 3, 186, 93, 0, 737, 739, 5, 58, 0, 0, 738, 740, 5, 32, 0, 0, 739, 738, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 3, 192, 96, 0, 742, 37, 1, 0, 0, 0, 743, 744, 5, 4, 0, 0, 744, 745, 5, 190, 0, 0, 745, 746, 3, 186, 93, 0, 746, 747, 5, 177, 0, 0, 747, 748, 5, 143, 0, 0, 748, 749, 7, 1, 0, 0, 749, 750, 3, 356, 178, 0, 750, 39, 1, 0, 0, 0, 751, 752, 5, 4, 0, 0, 752, 753, 5, 190, 0, 0, 753, 759, 3, 186, 93, 0, 754, 760, 5, 159, 0, 0, 755, 757, 5, 1, 0, 0, 756, 758, 3, 172, 86, 0, 757, 756, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 760, 1, 0, 0, 0, 759, 754, 1, 0, 0, 0, 759, 755, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 5, 33, 0, 0, 762, 763, 5, 249, 0, 0, 763, 768, 3, 218, 109, 0, 764, 765, 5, 247, 0, 0, 765, 767, 3, 218, 109, 0, 766, 764, 1, 0, 0, 0, 767, 770, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 769, 771, 1, 0, 0, 0, 770, 768, 1, 0, 0, 0, 771, 772, 5, 250, 0, 0, 772, 41, 1, 0, 0, 0, 773, 774, 5, 4, 0, 0, 774, 775, 5, 190, 0, 0, 775, 776, 3, 186, 93, 0, 776, 777, 5, 1, 0, 0, 777, 779, 5, 32, 0, 0, 778, 780, 3, 172, 86, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 3, 220, 110, 0, 782, 43, 1, 0, 0, 0, 783, 784, 5, 4, 0, 0, 784, 785, 5, 190, 0, 0, 785, 786, 3, 186, 93, 0, 786, 788, 5, 4, 0, 0, 787, 789, 5, 32, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 799, 3, 192, 96, 0, 791, 795, 5, 177, 0, 0, 792, 796, 3, 224, 112, 0, 793, 794, 5, 34, 0, 0, 794, 796, 3, 314, 157, 0, 795, 792, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 800, 1, 0, 0, 0, 797, 798, 5, 58, 0, 0, 798, 800, 5, 51, 0, 0, 799, 791, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 45, 1, 0, 0, 0, 801, 802, 5, 4, 0, 0, 802, 803, 5, 190, 0, 0, 803, 804, 3, 186, 93, 0, 804, 806, 5, 1, 0, 0, 805, 807, 3, 172, 86, 0, 806, 805, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 820, 1, 0, 0, 0, 808, 809, 5, 146, 0, 0, 809, 812, 3, 304, 152, 0, 810, 811, 5, 24, 0, 0, 811, 813, 3, 314, 157, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 1, 0, 0, 0, 814, 816, 3, 238, 119, 0, 815, 814, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 821, 1, 0, 0, 0, 817, 818, 5, 155, 0, 0, 818, 819, 5, 146, 0, 0, 819, 821, 3, 236, 118, 0, 820, 808, 1, 0, 0, 0, 820, 817, 1, 0, 0, 0, 821, 47, 1, 0, 0, 0, 822, 823, 5, 4, 0, 0, 823, 824, 5, 190, 0, 0, 824, 827, 3, 186, 93, 0, 825, 826, 5, 146, 0, 0, 826, 828, 3, 304, 152, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 841, 5, 177, 0, 0, 830, 831, 5, 72, 0, 0, 831, 842, 3, 228, 114, 0, 832, 833, 5, 169, 0, 0, 833, 834, 5, 79, 0, 0, 834, 842, 3, 252, 126, 0, 835, 836, 5, 24, 0, 0, 836, 842, 3, 314, 157, 0, 837, 838, 5, 25, 0, 0, 838, 842, 3, 246, 123, 0, 839, 840, 5, 176, 0, 0, 840, 842, 3, 246, 123, 0, 841, 830, 1, 0, 0, 0, 841, 832, 1, 0, 0, 0, 841, 835, 1, 0, 0, 0, 841, 837, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 842, 49, 1, 0, 0, 0, 843, 844, 5, 4, 0, 0, 844, 845, 5, 190, 0, 0, 845, 846, 3, 186, 93, 0, 846, 847, 5, 156, 0, 0, 847, 848, 5, 147, 0, 0, 848, 51, 1, 0, 0, 0, 849, 850, 5, 4, 0, 0, 850, 851, 5, 190, 0, 0, 851, 852, 3, 186, 93, 0, 852, 854, 5, 58, 0, 0, 853, 855, 3, 170, 85, 0, 854, 853, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 864, 1, 0, 0, 0, 856, 857, 5, 146, 0, 0, 857, 859, 3, 304, 152, 0, 858, 860, 5, 22, 0, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 865, 1, 0, 0, 0, 861, 862, 5, 155, 0, 0, 862, 863, 5, 146, 0, 0, 863, 865, 3, 236, 118, 0, 864, 856, 1, 0, 0, 0, 864, 861, 1, 0, 0, 0, 865, 53, 1, 0, 0, 0, 866, 867, 5, 4, 0, 0, 867, 868, 5, 214, 0, 0, 868, 870, 3, 188, 94, 0, 869, 871, 3, 202, 101, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 5, 9, 0, 0, 873, 874, 3, 204, 102, 0, 874, 55, 1, 0, 0, 0, 875, 876, 5, 4, 0, 0, 876, 877, 5, 214, 0, 0, 877, 878, 3, 188, 94, 0, 878, 879, 5, 157, 0, 0, 879, 880, 5, 195, 0, 0, 880, 881, 3, 188, 94, 0, 881, 57, 1, 0, 0, 0, 882, 883, 5, 4, 0, 0, 883, 884, 5, 214, 0, 0, 884, 885, 3, 188, 94, 0, 885, 886, 5, 177, 0, 0, 886, 887, 5, 143, 0, 0, 887, 888, 7, 1, 0, 0, 888, 889, 3, 352, 176, 0, 889, 59, 1, 0, 0, 0, 890, 891, 5, 4, 0, 0, 891, 892, 5, 190, 0, 0, 892, 893, 3, 186, 93, 0, 893, 894, 5, 157, 0, 0, 894, 895, 5, 195, 0, 0, 895, 896, 3, 186, 93, 0, 896, 61, 1, 0, 0, 0, 897, 898, 5, 4, 0, 0, 898, 899, 5, 214, 0, 0, 899, 900, 3, 188, 94, 0, 900, 901, 7, 2, 0, 0, 901, 902, 5, 25, 0, 0, 902, 903, 3, 246, 123, 0, 903, 63, 1, 0, 0, 0, 904, 906, 5, 198, 0, 0, 905, 907, 5, 190, 0, 0, 906, 905, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 909, 1, 0, 0, 0, 908, 910, 3, 170, 85, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 3, 186, 93, 0, 912, 65, 1, 0, 0, 0, 913, 915, 5, 56, 0, 0, 914, 916, 5, 46, 0, 0, 915, 914, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 918, 1, 0, 0, 0, 917, 919, 7, 3, 0, 0, 918, 917, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 921, 3, 352, 176, 0, 921, 67, 1, 0, 0, 0, 922, 925, 3, 70, 35, 0, 923, 925, 3, 72, 36, 0, 924, 922, 1, 0, 0, 0, 924, 923, 1, 0, 0, 0, 925, 69, 1, 0, 0, 0, 926, 927, 5, 36, 0, 0, 927, 928, 5, 183, 0, 0, 928, 930, 3, 186, 93, 0, 929, 931, 3, 290, 145, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 944, 1, 0, 0, 0, 932, 933, 5, 192, 0, 0, 933, 934, 5, 187, 0, 0, 934, 935, 5, 249, 0, 0, 935, 936, 3, 358, 179, 0, 936, 942, 5, 250, 0, 0, 937, 938, 5, 158, 0, 0, 938, 939, 5, 249, 0, 0, 939, 940, 3, 358, 179, 0, 940, 941, 5, 250, 0, 0, 941, 943, 1, 0, 0, 0, 942, 937, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 945, 1, 0, 0, 0, 944, 932, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 71, 1, 0, 0, 0, 946, 947, 5, 36, 0, 0, 947, 948, 5, 96, 0, 0, 948, 949, 5, 183, 0, 0, 949, 952, 3, 186, 93, 0, 950, 951, 5, 146, 0, 0, 951, 953, 3, 304, 152, 0, 952, 950, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 73, 1, 0, 0, 0, 954, 961, 3, 86, 43, 0, 955, 961, 3, 84, 42, 0, 956, 961, 3, 82, 41, 0, 957, 961, 3, 78, 39, 0, 958, 961, 3, 80, 40, 0, 959, 961, 3, 76, 38, 0, 960, 954, 1, 0, 0, 0, 960, 955, 1, 0, 0, 0, 960, 956, 1, 0, 0, 0, 960, 957, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 960, 959, 1, 0, 0, 0, 961, 75, 1, 0, 0, 0, 962, 963, 5, 58, 0, 0, 963, 965, 7, 0, 0, 0, 964, 966, 3, 170, 85, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 969, 3, 184, 92, 0, 968, 970, 7, 4, 0, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 77, 1, 0, 0, 0, 971, 972, 5, 58, 0, 0, 972, 974, 5, 214, 0, 0, 973, 975, 3, 170, 85, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 977, 3, 188, 94, 0, 977, 79, 1, 0, 0, 0, 978, 979, 5, 58, 0, 0, 979, 981, 5, 190, 0, 0, 980, 982, 3, 170, 85, 0, 981, 980, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 985, 3, 186, 93, 0, 984, 986, 5, 22, 0, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 81, 1, 0, 0, 0, 987, 989, 5, 58, 0, 0, 988, 990, 5, 96, 0, 0, 989, 988, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 992, 5, 183, 0, 0, 992, 995, 3, 186, 93, 0, 993, 994, 5, 146, 0, 0, 994, 996, 3, 304, 152, 0, 995, 993, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 83, 1, 0, 0, 0, 997, 999, 5, 58, 0, 0, 998, 1000, 5, 12, 0, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1003, 5, 84, 0, 0, 1002, 1004, 3, 170, 85, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1018, 3, 190, 95, 0, 1006, 1015, 5, 249, 0, 0, 1007, 1012, 3, 328, 164, 0, 1008, 1009, 5, 247, 0, 0, 1009, 1011, 3, 328, 164, 0, 1010, 1008, 1, 0, 0, 0, 1011, 1014, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1016, 1, 0, 0, 0, 1014, 1012, 1, 0, 0, 0, 1015, 1007, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1019, 5, 250, 0, 0, 1018, 1006, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 85, 1, 0, 0, 0, 1020, 1021, 5, 58, 0, 0, 1021, 1022, 5, 167, 0, 0, 1022, 1023, 3, 356, 178, 0, 1023, 87, 1, 0, 0, 0, 1024, 1027, 3, 90, 45, 0, 1025, 1027, 3, 92, 46, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1025, 1, 0, 0, 0, 1027, 89, 1, 0, 0, 0, 1028, 1029, 5, 86, 0, 0, 1029, 1030, 5, 167, 0, 0, 1030, 1031, 3, 356, 178, 0, 1031, 1032, 5, 195, 0, 0, 1032, 1033, 5, 87, 0, 0, 1033, 1034, 3, 356, 178, 0, 1034, 91, 1, 0, 0, 0, 1035, 1036, 5, 86, 0, 0, 1036, 1037, 3, 348, 174, 0, 1037, 1038, 5, 137, 0, 0, 1038, 1040, 3, 350, 175, 0, 1039, 1041, 3, 352, 176, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 5, 195, 0, 0, 1043, 1044, 3, 354, 177, 0, 1044, 93, 1, 0, 0, 0, 1045, 1048, 3, 96, 48, 0, 1046, 1048, 3, 98, 49, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1046, 1, 0, 0, 0, 1048, 95, 1, 0, 0, 0, 1049, 1050, 5, 162, 0, 0, 1050, 1051, 5, 167, 0, 0, 1051, 1052, 3, 356, 178, 0, 1052, 1053, 5, 82, 0, 0, 1053, 1054, 5, 87, 0, 0, 1054, 1055, 3, 356, 178, 0, 1055, 97, 1, 0, 0, 0, 1056, 1060, 5, 162, 0, 0, 1057, 1058, 5, 86, 0, 0, 1058, 1059, 5, 138, 0, 0, 1059, 1061, 5, 78, 0, 0, 1060, 1057, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 3, 348, 174, 0, 1063, 1064, 5, 137, 0, 0, 1064, 1066, 3, 350, 175, 0, 1065, 1067, 3, 352, 176, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1074, 5, 82, 0, 0, 1069, 1075, 3, 354, 177, 0, 1070, 1072, 5, 167, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 3, 356, 178, 0, 1074, 1069, 1, 0, 0, 0, 1074, 1071, 1, 0, 0, 0, 1075, 99, 1, 0, 0, 0, 1076, 1078, 3, 206, 103, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 5, 99, 0, 0, 1080, 1082, 7, 5, 0, 0, 1081, 1083, 5, 190, 0, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1086, 3, 186, 93, 0, 1085, 1087, 3, 290, 145, 0, 1086, 1085, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1100, 1, 0, 0, 0, 1088, 1089, 5, 146, 0, 0, 1089, 1090, 5, 249, 0, 0, 1090, 1095, 3, 304, 152, 0, 1091, 1092, 5, 247, 0, 0, 1092, 1094, 3, 304, 152, 0, 1093, 1091, 1, 0, 0, 0, 1094, 1097, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1098, 1099, 5, 250, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1088, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 3, 204, 102, 0, 1103, 101, 1, 0, 0, 0, 1104, 1107, 3, 104, 52, 0, 1105, 1107, 3, 106, 53, 0, 1106, 1104, 1, 0, 0, 0, 1106, 1105, 1, 0, 0, 0, 1107, 103, 1, 0, 0, 0, 1108, 1110, 5, 50, 0, 0, 1109, 1111, 5, 82, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1115, 3, 186, 93, 0, 1113, 1114, 5, 217, 0, 0, 1114, 1116, 3, 306, 153, 0, 1115, 1113, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 105, 1, 0, 0, 0, 1117, 1118, 5, 50, 0, 0, 1118, 1123, 3, 186, 93, 0, 1119, 1121, 5, 9, 0, 0, 1120, 1119, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1124, 3, 356, 178, 0, 1123, 1120, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1134, 5, 82, 0, 0, 1126, 1131, 3, 278, 139, 0, 1127, 1128, 5, 247, 0, 0, 1128, 1130, 3, 278, 139, 0, 1129, 1127, 1, 0, 0, 0, 1130, 1133, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1134, 1126, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1137, 5, 217, 0, 0, 1137, 1139, 3, 306, 153, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 107, 1, 0, 0, 0, 1140, 1141, 5, 54, 0, 0, 1141, 1142, 3, 186, 93, 0, 1142, 1143, 5, 177, 0, 0, 1143, 1153, 3, 198, 99, 0, 1144, 1145, 5, 82, 0, 0, 1145, 1150, 3, 278, 139, 0, 1146, 1147, 5, 247, 0, 0, 1147, 1149, 3, 278, 139, 0, 1148, 1146, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1154, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1144, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1156, 5, 217, 0, 0, 1156, 1158, 3, 306, 153, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 109, 1, 0, 0, 0, 1159, 1160, 5, 209, 0, 0, 1160, 1162, 5, 103, 0, 0, 1161, 1163, 5, 190, 0, 0, 1162, 1161, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1166, 3, 186, 93, 0, 1165, 1167, 3, 290, 145, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1169, 3, 204, 102, 0, 1169, 111, 1, 0, 0, 0, 1170, 1183, 3, 132, 66, 0, 1171, 1183, 3, 134, 67, 0, 1172, 1183, 3, 136, 68, 0, 1173, 1183, 3, 130, 65, 0, 1174, 1183, 3, 128, 64, 0, 1175, 1183, 3, 126, 63, 0, 1176, 1183, 3, 124, 62, 0, 1177, 1183, 3, 122, 61, 0, 1178, 1183, 3, 120, 60, 0, 1179, 1183, 3, 118, 59, 0, 1180, 1183, 3, 116, 58, 0, 1181, 1183, 3, 114, 57, 0, 1182, 1170, 1, 0, 0, 0, 1182, 1171, 1, 0, 0, 0, 1182, 1172, 1, 0, 0, 0, 1182, 1173, 1, 0, 0, 0, 1182, 1174, 1, 0, 0, 0, 1182, 1175, 1, 0, 0, 0, 1182, 1176, 1, 0, 0, 0, 1182, 1177, 1, 0, 0, 0, 1182, 1178, 1, 0, 0, 0, 1182, 1179, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1181, 1, 0, 0, 0, 1183, 113, 1, 0, 0, 0, 1184, 1185, 5, 180, 0, 0, 1185, 1197, 7, 6, 0, 0, 1186, 1188, 5, 115, 0, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1194, 3, 314, 157, 0, 1190, 1191, 5, 255, 0, 0, 1191, 1193, 3, 314, 157, 0, 1192, 1190, 1, 0, 0, 0, 1193, 1196, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1198, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1187, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 115, 1, 0, 0, 0, 1199, 1200, 5, 180, 0, 0, 1200, 1203, 5, 191, 0, 0, 1201, 1202, 5, 94, 0, 0, 1202, 1204, 3, 186, 93, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1216, 1, 0, 0, 0, 1205, 1207, 5, 115, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1213, 3, 314, 157, 0, 1209, 1210, 5, 255, 0, 0, 1210, 1212, 3, 314, 157, 0, 1211, 1209, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1217, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1206, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 117, 1, 0, 0, 0, 1218, 1220, 5, 180, 0, 0, 1219, 1221, 7, 7, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1225, 5, 85, 0, 0, 1223, 1224, 5, 94, 0, 0, 1224, 1226, 3, 184, 92, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1238, 1, 0, 0, 0, 1227, 1229, 5, 115, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1235, 3, 314, 157, 0, 1231, 1232, 5, 255, 0, 0, 1232, 1234, 3, 314, 157, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1237, 1, 0, 0, 0, 1235, 1233, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1239, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1228, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 119, 1, 0, 0, 0, 1240, 1241, 5, 180, 0, 0, 1241, 1242, 5, 37, 0, 0, 1242, 1243, 5, 190, 0, 0, 1243, 1244, 3, 186, 93, 0, 1244, 121, 1, 0, 0, 0, 1245, 1246, 5, 180, 0, 0, 1246, 1247, 5, 37, 0, 0, 1247, 1248, 5, 214, 0, 0, 1248, 1249, 3, 188, 94, 0, 1249, 123, 1, 0, 0, 0, 1250, 1251, 5, 180, 0, 0, 1251, 1252, 5, 190, 0, 0, 1252, 1253, 5, 183, 0, 0, 1253, 1254, 3, 186, 93, 0, 1254, 125, 1, 0, 0, 0, 1255, 1256, 5, 180, 0, 0, 1256, 1257, 5, 32, 0, 0, 1257, 1258, 5, 183, 0, 0, 1258, 1259, 3, 186, 93, 0, 1259, 127, 1, 0, 0, 0, 1260, 1262, 5, 180, 0, 0, 1261, 1263, 5, 155, 0, 0, 1262, 1261, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1265, 5, 147, 0, 0, 1265, 1266, 3, 186, 93, 0, 1266, 129, 1, 0, 0, 0, 1267, 1268, 5, 180, 0, 0, 1268, 1269, 5, 73, 0, 0, 1269, 1270, 5, 94, 0, 0, 1270, 1280, 3, 186, 93, 0, 1271, 1272, 5, 146, 0, 0, 1272, 1273, 5, 249, 0, 0, 1273, 1276, 3, 304, 152, 0, 1274, 1275, 5, 247, 0, 0, 1275, 1277, 3, 304, 152, 0, 1276, 1274, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 5, 250, 0, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1271, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 131, 1, 0, 0, 0, 1282, 1284, 5, 180, 0, 0, 1283, 1285, 5, 39, 0, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 5, 168, 0, 0, 1287, 133, 1, 0, 0, 0, 1288, 1289, 5, 180, 0, 0, 1289, 1290, 5, 167, 0, 0, 1290, 1291, 5, 86, 0, 0, 1291, 1292, 5, 87, 0, 0, 1292, 1293, 3, 356, 178, 0, 1293, 135, 1, 0, 0, 0, 1294, 1309, 3, 138, 69, 0, 1295, 1309, 3, 140, 70, 0, 1296, 1309, 3, 142, 71, 0, 1297, 1298, 5, 180, 0, 0, 1298, 1299, 5, 86, 0, 0, 1299, 1300, 7, 8, 0, 0, 1300, 1306, 3, 356, 178, 0, 1301, 1302, 5, 137, 0, 0, 1302, 1304, 7, 9, 0, 0, 1303, 1305, 3, 352, 176, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1307, 1, 0, 0, 0, 1306, 1301, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1309, 1, 0, 0, 0, 1308, 1294, 1, 0, 0, 0, 1308, 1295, 1, 0, 0, 0, 1308, 1296, 1, 0, 0, 0, 1308, 1297, 1, 0, 0, 0, 1309, 137, 1, 0, 0, 0, 1310, 1311, 5, 180, 0, 0, 1311, 1312, 5, 86, 0, 0, 1312, 1313, 7, 8, 0, 0, 1313, 1319, 3, 356, 178, 0, 1314, 1315, 5, 137, 0, 0, 1315, 1317, 5, 46, 0, 0, 1316, 1318, 3, 184, 92, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1314, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 139, 1, 0, 0, 0, 1321, 1322, 5, 180, 0, 0, 1322, 1323, 5, 86, 0, 0, 1323, 1324, 7, 8, 0, 0, 1324, 1330, 3, 356, 178, 0, 1325, 1326, 5, 137, 0, 0, 1326, 1328, 5, 190, 0, 0, 1327, 1329, 3, 186, 93, 0, 1328, 1327, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 1, 0, 0, 0, 1330, 1325, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 141, 1, 0, 0, 0, 1332, 1333, 5, 180, 0, 0, 1333, 1334, 5, 86, 0, 0, 1334, 1335, 7, 8, 0, 0, 1335, 1341, 3, 356, 178, 0, 1336, 1337, 5, 137, 0, 0, 1337, 1339, 5, 32, 0, 0, 1338, 1340, 3, 192, 96, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1336, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 143, 1, 0, 0, 0, 1343, 1347, 3, 146, 73, 0, 1344, 1347, 3, 148, 74, 0, 1345, 1347, 3, 150, 75, 0, 1346, 1343, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1346, 1345, 1, 0, 0, 0, 1347, 145, 1, 0, 0, 0, 1348, 1349, 5, 34, 0, 0, 1349, 1350, 5, 137, 0, 0, 1350, 1351, 5, 46, 0, 0, 1351, 1352, 3, 184, 92, 0, 1352, 1355, 5, 108, 0, 0, 1353, 1356, 3, 314, 157, 0, 1354, 1356, 5, 134, 0, 0, 1355, 1353, 1, 0, 0, 0, 1355, 1354, 1, 0, 0, 0, 1356, 147, 1, 0, 0, 0, 1357, 1358, 5, 34, 0, 0, 1358, 1359, 5, 137, 0, 0, 1359, 1360, 5, 190, 0, 0, 1360, 1361, 3, 186, 93, 0, 1361, 1364, 5, 108, 0, 0, 1362, 1365, 3, 314, 157, 0, 1363, 1365, 5, 134, 0, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1363, 1, 0, 0, 0, 1365, 149, 1, 0, 0, 0, 1366, 1367, 5, 34, 0, 0, 1367, 1368, 5, 137, 0, 0, 1368, 1369, 5, 32, 0, 0, 1369, 1370, 3, 192, 96, 0, 1370, 1373, 5, 108, 0, 0, 1371, 1374, 3, 314, 157, 0, 1372, 1374, 5, 134, 0, 0, 1373, 1371, 1, 0, 0, 0, 1373, 1372, 1, 0, 0, 0, 1374, 151, 1, 0, 0, 0, 1375, 1376, 5, 67, 0, 0, 1376, 1377, 3, 4, 2, 0, 1377, 153, 1, 0, 0, 0, 1378, 1384, 5, 177, 0, 0, 1379, 1385, 5, 2, 0, 0, 1380, 1381, 3, 356, 178, 0, 1381, 1382, 5, 233, 0, 0, 1382, 1383, 3, 304, 152, 0, 1383, 1385, 1, 0, 0, 0, 1384, 1379, 1, 0, 0, 0, 1384, 1380, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 155, 1, 0, 0, 0, 1386, 1387, 5, 248, 0, 0, 1387, 1388, 5, 181, 0, 0, 1388, 1398, 5, 249, 0, 0, 1389, 1391, 3, 314, 157, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1399, 1, 0, 0, 0, 1392, 1395, 3, 314, 157, 0, 1393, 1394, 5, 247, 0, 0, 1394, 1396, 3, 304, 152, 0, 1395, 1393, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1399, 3, 304, 152, 0, 1398, 1390, 1, 0, 0, 0, 1398, 1392, 1, 0, 0, 0, 1398, 1397, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 5, 250, 0, 0, 1401, 157, 1, 0, 0, 0, 1402, 1403, 5, 107, 0, 0, 1403, 1404, 5, 121, 0, 0, 1404, 1405, 3, 186, 93, 0, 1405, 159, 1, 0, 0, 0, 1406, 1407, 5, 118, 0, 0, 1407, 1408, 5, 45, 0, 0, 1408, 1409, 5, 98, 0, 0, 1409, 1411, 5, 258, 0, 0, 1410, 1412, 5, 145, 0, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1414, 5, 103, 0, 0, 1414, 1415, 5, 190, 0, 0, 1415, 1425, 3, 186, 93, 0, 1416, 1417, 5, 146, 0, 0, 1417, 1418, 5, 249, 0, 0, 1418, 1421, 3, 304, 152, 0, 1419, 1420, 5, 247, 0, 0, 1420, 1422, 3, 304, 152, 0, 1421, 1419, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 5, 250, 0, 0, 1424, 1426, 1, 0, 0, 0, 1425, 1416, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 161, 1, 0, 0, 0, 1427, 1431, 3, 164, 82, 0, 1428, 1431, 3, 166, 83, 0, 1429, 1431, 3, 168, 84, 0, 1430, 1427, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1430, 1429, 1, 0, 0, 0, 1431, 163, 1, 0, 0, 0, 1432, 1433, 5, 163, 0, 0, 1433, 1446, 3, 186, 93, 0, 1434, 1435, 5, 146, 0, 0, 1435, 1436, 5, 249, 0, 0, 1436, 1441, 3, 304, 152, 0, 1437, 1438, 5, 247, 0, 0, 1438, 1440, 3, 304, 152, 0, 1439, 1437, 1, 0, 0, 0, 1440, 1443, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1442, 1444, 1, 0, 0, 0, 1443, 1441, 1, 0, 0, 0, 1444, 1445, 5, 250, 0, 0, 1445, 1447, 1, 0, 0, 0, 1446, 1434, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 165, 1, 0, 0, 0, 1448, 1449, 5, 163, 0, 0, 1449, 1450, 5, 13, 0, 0, 1450, 167, 1, 0, 0, 0, 1451, 1452, 5, 163, 0, 0, 1452, 1453, 5, 85, 0, 0, 1453, 1454, 3, 190, 95, 0, 1454, 169, 1, 0, 0, 0, 1455, 1456, 5, 93, 0, 0, 1456, 1457, 5, 66, 0, 0, 1457, 171, 1, 0, 0, 0, 1458, 1459, 5, 93, 0, 0, 1459, 1460, 5, 133, 0, 0, 1460, 1461, 5, 66, 0, 0, 1461, 173, 1, 0, 0, 0, 1462, 1463, 3, 352, 176, 0, 1463, 175, 1, 0, 0, 0, 1464, 1465, 3, 352, 176, 0, 1465, 177, 1, 0, 0, 0, 1466, 1467, 3, 352, 176, 0, 1467, 179, 1, 0, 0, 0, 1468, 1469, 3, 352, 176, 0, 1469, 181, 1, 0, 0, 0, 1470, 1471, 3, 352, 176, 0, 1471, 183, 1, 0, 0, 0, 1472, 1473, 3, 352, 176, 0, 1473, 185, 1, 0, 0, 0, 1474, 1479, 3, 356, 178, 0, 1475, 1476, 5, 245, 0, 0, 1476, 1478, 3, 356, 178, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1481, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 187, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1487, 3, 356, 178, 0, 1483, 1484, 5, 245, 0, 0, 1484, 1486, 3, 356, 178, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1489, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 189, 1, 0, 0, 0, 1489, 1487, 1, 0, 0, 0, 1490, 1493, 3, 360, 180, 0, 1491, 1493, 3, 352, 176, 0, 1492, 1490, 1, 0, 0, 0, 1492, 1491, 1, 0, 0, 0, 1493, 191, 1, 0, 0, 0, 1494, 1495, 3, 352, 176, 0, 1495, 193, 1, 0, 0, 0, 1496, 1499, 3, 186, 93, 0, 1497, 1499, 3, 188, 94, 0, 1498, 1496, 1, 0, 0, 0, 1498, 1497, 1, 0, 0, 0, 1499, 195, 1, 0, 0, 0, 1500, 1501, 5, 21, 0, 0, 1501, 1502, 5, 26, 0, 0, 1502, 1504, 3, 290, 145, 0, 1503, 1500, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1507, 1, 0, 0, 0, 1505, 1506, 5, 34, 0, 0, 1506, 1508, 3, 314, 157, 0, 1507, 1505, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1512, 1, 0, 0, 0, 1509, 1510, 5, 169, 0, 0, 1510, 1511, 5, 79, 0, 0, 1511, 1513, 3, 252, 126, 0, 1512, 1509, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1517, 1, 0, 0, 0, 1514, 1515, 5, 218, 0, 0, 1515, 1516, 5, 176, 0, 0, 1516, 1518, 3, 246, 123, 0, 1517, 1514, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1522, 1, 0, 0, 0, 1519, 1520, 5, 23, 0, 0, 1520, 1521, 5, 9, 0, 0, 1521, 1523, 3, 228, 114, 0, 1522, 1519, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1526, 1, 0, 0, 0, 1524, 1525, 5, 24, 0, 0, 1525, 1527, 3, 314, 157, 0, 1526, 1524, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1538, 1, 0, 0, 0, 1528, 1529, 5, 30, 0, 0, 1529, 1530, 5, 94, 0, 0, 1530, 1535, 3, 352, 176, 0, 1531, 1532, 5, 218, 0, 0, 1532, 1533, 5, 152, 0, 0, 1533, 1534, 5, 233, 0, 0, 1534, 1536, 5, 261, 0, 0, 1535, 1531, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1539, 1, 0, 0, 0, 1537, 1539, 5, 199, 0, 0, 1538, 1528, 1, 0, 0, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1542, 1, 0, 0, 0, 1540, 1541, 5, 25, 0, 0, 1541, 1543, 3, 246, 123, 0, 1542, 1540, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 197, 1, 0, 0, 0, 1544, 1549, 3, 200, 100, 0, 1545, 1546, 5, 247, 0, 0, 1546, 1548, 3, 200, 100, 0, 1547, 1545, 1, 0, 0, 0, 1548, 1551, 1, 0, 0, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 199, 1, 0, 0, 0, 1551, 1549, 1, 0, 0, 0, 1552, 1553, 3, 352, 176, 0, 1553, 1554, 5, 233, 0, 0, 1554, 1555, 3, 304, 152, 0, 1555, 201, 1, 0, 0, 0, 1556, 1557, 5, 249, 0, 0, 1557, 1560, 3, 192, 96, 0, 1558, 1559, 5, 34, 0, 0, 1559, 1561, 3, 314, 157, 0, 1560, 1558, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1570, 1, 0, 0, 0, 1562, 1563, 5, 247, 0, 0, 1563, 1566, 3, 356, 178, 0, 1564, 1565, 5, 34, 0, 0, 1565, 1567, 3, 314, 157, 0, 1566, 1564, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1569, 1, 0, 0, 0, 1568, 1562, 1, 0, 0, 0, 1569, 1572, 1, 0, 0, 0, 1570, 1568, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1573, 1, 0, 0, 0, 1572, 1570, 1, 0, 0, 0, 1573, 1574, 5, 250, 0, 0, 1574, 203, 1, 0, 0, 0, 1575, 1577, 3, 206, 103, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1579, 3, 256, 128, 0, 1579, 205, 1, 0, 0, 0, 1580, 1581, 5, 218, 0, 0, 1581, 1586, 3, 272, 136, 0, 1582, 1583, 5, 247, 0, 0, 1583, 1585, 3, 272, 136, 0, 1584, 1582, 1, 0, 0, 0, 1585, 1588, 1, 0, 0, 0, 1586, 1584, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 207, 1, 0, 0, 0, 1588, 1586, 1, 0, 0, 0, 1589, 1590, 5, 151, 0, 0, 1590, 1591, 5, 110, 0, 0, 1591, 1593, 3, 290, 145, 0, 1592, 1594, 5, 53, 0, 0, 1593, 1592, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1598, 1, 0, 0, 0, 1595, 1599, 5, 227, 0, 0, 1596, 1597, 5, 247, 0, 0, 1597, 1599, 5, 227, 0, 0, 1598, 1595, 1, 0, 0, 0, 1598, 1596, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1603, 1, 0, 0, 0, 1600, 1604, 5, 228, 0, 0, 1601, 1602, 5, 247, 0, 0, 1602, 1604, 5, 228, 0, 0, 1603, 1600, 1, 0, 0, 0, 1603, 1601, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1617, 1, 0, 0, 0, 1605, 1606, 5, 247, 0, 0, 1606, 1609, 3, 210, 105, 0, 1607, 1609, 3, 210, 105, 0, 1608, 1605, 1, 0, 0, 0, 1608, 1607, 1, 0, 0, 0, 1609, 1614, 1, 0, 0, 0, 1610, 1611, 5, 247, 0, 0, 1611, 1613, 3, 210, 105, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1616, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1614, 1612, 1, 0, 0, 0, 1615, 1618, 1, 0, 0, 0, 1616, 1614, 1, 0, 0, 0, 1617, 1608, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 209, 1, 0, 0, 0, 1619, 1620, 5, 81, 0, 0, 1620, 1621, 5, 110, 0, 0, 1621, 1622, 3, 290, 145, 0, 1622, 1623, 5, 226, 0, 0, 1623, 1624, 3, 186, 93, 0, 1624, 1626, 3, 290, 145, 0, 1625, 1627, 5, 53, 0, 0, 1626, 1625, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1629, 1, 0, 0, 0, 1628, 1630, 5, 227, 0, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1632, 1, 0, 0, 0, 1631, 1633, 5, 228, 0, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 211, 1, 0, 0, 0, 1634, 1635, 3, 182, 91, 0, 1635, 1638, 3, 328, 164, 0, 1636, 1637, 5, 34, 0, 0, 1637, 1639, 3, 314, 157, 0, 1638, 1636, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 213, 1, 0, 0, 0, 1640, 1641, 3, 216, 108, 0, 1641, 215, 1, 0, 0, 0, 1642, 1643, 3, 182, 91, 0, 1643, 1651, 3, 328, 164, 0, 1644, 1648, 3, 222, 111, 0, 1645, 1647, 3, 222, 111, 0, 1646, 1645, 1, 0, 0, 0, 1647, 1650, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1649, 1652, 1, 0, 0, 0, 1650, 1648, 1, 0, 0, 0, 1651, 1644, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1655, 1, 0, 0, 0, 1653, 1654, 5, 34, 0, 0, 1654, 1656, 3, 314, 157, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1659, 1, 0, 0, 0, 1657, 1658, 5, 151, 0, 0, 1658, 1660, 5, 110, 0, 0, 1659, 1657, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 217, 1, 0, 0, 0, 1661, 1662, 3, 192, 96, 0, 1662, 1665, 3, 328, 164, 0, 1663, 1664, 5, 34, 0, 0, 1664, 1666, 3, 314, 157, 0, 1665, 1663, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1674, 1, 0, 0, 0, 1667, 1671, 3, 222, 111, 0, 1668, 1670, 3, 222, 111, 0, 1669, 1668, 1, 0, 0, 0, 1670, 1673, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1671, 1669, 1, 0, 0, 0, 1672, 1675, 1, 0, 0, 0, 1673, 1671, 1, 0, 0, 0, 1674, 1667, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 219, 1, 0, 0, 0, 1676, 1677, 3, 182, 91, 0, 1677, 1680, 3, 328, 164, 0, 1678, 1679, 5, 34, 0, 0, 1679, 1681, 3, 314, 157, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1689, 1, 0, 0, 0, 1682, 1686, 3, 222, 111, 0, 1683, 1685, 3, 222, 111, 0, 1684, 1683, 1, 0, 0, 0, 1685, 1688, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1686, 1684, 1, 0, 0, 0, 1687, 1690, 1, 0, 0, 0, 1688, 1686, 1, 0, 0, 0, 1689, 1682, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 221, 1, 0, 0, 0, 1691, 1693, 5, 133, 0, 0, 1692, 1691, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1697, 5, 134, 0, 0, 1695, 1697, 3, 224, 112, 0, 1696, 1692, 1, 0, 0, 0, 1696, 1695, 1, 0, 0, 0, 1697, 223, 1, 0, 0, 0, 1698, 1699, 5, 60, 0, 0, 1699, 1707, 3, 304, 152, 0, 1700, 1701, 5, 35, 0, 0, 1701, 1707, 3, 304, 152, 0, 1702, 1703, 5, 51, 0, 0, 1703, 1707, 3, 304, 152, 0, 1704, 1705, 5, 16, 0, 0, 1705, 1707, 3, 358, 179, 0, 1706, 1698, 1, 0, 0, 0, 1706, 1700, 1, 0, 0, 0, 1706, 1702, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1707, 225, 1, 0, 0, 0, 1708, 1709, 7, 10, 0, 0, 1709, 227, 1, 0, 0, 0, 1710, 1711, 7, 11, 0, 0, 1711, 229, 1, 0, 0, 0, 1712, 1717, 3, 232, 116, 0, 1713, 1714, 5, 247, 0, 0, 1714, 1716, 3, 232, 116, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1719, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1722, 1, 0, 0, 0, 1719, 1717, 1, 0, 0, 0, 1720, 1721, 5, 247, 0, 0, 1721, 1723, 3, 234, 117, 0, 1722, 1720, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1726, 1, 0, 0, 0, 1724, 1726, 3, 234, 117, 0, 1725, 1712, 1, 0, 0, 0, 1725, 1724, 1, 0, 0, 0, 1726, 231, 1, 0, 0, 0, 1727, 1729, 5, 89, 0, 0, 1728, 1730, 3, 290, 145, 0, 1729, 1728, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 5, 147, 0, 0, 1732, 1733, 3, 358, 179, 0, 1733, 233, 1, 0, 0, 0, 1734, 1736, 5, 155, 0, 0, 1735, 1737, 3, 290, 145, 0, 1736, 1735, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1739, 5, 249, 0, 0, 1739, 1740, 5, 146, 0, 0, 1740, 1746, 3, 236, 118, 0, 1741, 1742, 5, 247, 0, 0, 1742, 1743, 5, 146, 0, 0, 1743, 1745, 3, 236, 118, 0, 1744, 1741, 1, 0, 0, 0, 1745, 1748, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 1749, 1, 0, 0, 0, 1748, 1746, 1, 0, 0, 0, 1749, 1750, 5, 250, 0, 0, 1750, 235, 1, 0, 0, 0, 1751, 1752, 5, 212, 0, 0, 1752, 1753, 3, 242, 121, 0, 1753, 1754, 3, 304, 152, 0, 1754, 1767, 1, 0, 0, 0, 1755, 1756, 3, 304, 152, 0, 1756, 1757, 3, 240, 120, 0, 1757, 1759, 1, 0, 0, 0, 1758, 1755, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1764, 5, 213, 0, 0, 1761, 1762, 3, 240, 120, 0, 1762, 1763, 3, 304, 152, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1761, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 1, 0, 0, 0, 1766, 1751, 1, 0, 0, 0, 1766, 1758, 1, 0, 0, 0, 1767, 237, 1, 0, 0, 0, 1768, 1769, 5, 30, 0, 0, 1769, 1770, 5, 94, 0, 0, 1770, 1775, 3, 356, 178, 0, 1771, 1772, 5, 218, 0, 0, 1772, 1773, 5, 152, 0, 0, 1773, 1774, 5, 233, 0, 0, 1774, 1776, 3, 358, 179, 0, 1775, 1771, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1779, 1, 0, 0, 0, 1777, 1779, 5, 199, 0, 0, 1778, 1768, 1, 0, 0, 0, 1778, 1777, 1, 0, 0, 0, 1779, 239, 1, 0, 0, 0, 1780, 1786, 1, 0, 0, 0, 1781, 1786, 5, 235, 0, 0, 1782, 1786, 5, 236, 0, 0, 1783, 1786, 5, 237, 0, 0, 1784, 1786, 5, 238, 0, 0, 1785, 1780, 1, 0, 0, 0, 1785, 1781, 1, 0, 0, 0, 1785, 1782, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1784, 1, 0, 0, 0, 1786, 241, 1, 0, 0, 0, 1787, 1796, 5, 233, 0, 0, 1788, 1796, 5, 234, 0, 0, 1789, 1796, 5, 115, 0, 0, 1790, 1796, 5, 165, 0, 0, 1791, 1796, 5, 164, 0, 0, 1792, 1796, 5, 15, 0, 0, 1793, 1796, 5, 94, 0, 0, 1794, 1796, 3, 240, 120, 0, 1795, 1787, 1, 0, 0, 0, 1795, 1788, 1, 0, 0, 0, 1795, 1789, 1, 0, 0, 0, 1795, 1790, 1, 0, 0, 0, 1795, 1791, 1, 0, 0, 0, 1795, 1792, 1, 0, 0, 0, 1795, 1793, 1, 0, 0, 0, 1795, 1794, 1, 0, 0, 0, 1796, 243, 1, 0, 0, 0, 1797, 1798, 5, 115, 0, 0, 1798, 1801, 3, 352, 176, 0, 1799, 1800, 7, 12, 0, 0, 1800, 1802, 5, 154, 0, 0, 1801, 1799, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 245, 1, 0, 0, 0, 1803, 1804, 5, 249, 0, 0, 1804, 1809, 3, 254, 127, 0, 1805, 1806, 5, 247, 0, 0, 1806, 1808, 3, 254, 127, 0, 1807, 1805, 1, 0, 0, 0, 1808, 1811, 1, 0, 0, 0, 1809, 1807, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1812, 1, 0, 0, 0, 1811, 1809, 1, 0, 0, 0, 1812, 1813, 5, 250, 0, 0, 1813, 247, 1, 0, 0, 0, 1814, 1815, 5, 249, 0, 0, 1815, 1820, 3, 212, 106, 0, 1816, 1817, 5, 247, 0, 0, 1817, 1819, 3, 212, 106, 0, 1818, 1816, 1, 0, 0, 0, 1819, 1822, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1820, 1818, 1, 0, 0, 0, 1821, 1823, 1, 0, 0, 0, 1822, 1820, 1, 0, 0, 0, 1823, 1824, 5, 250, 0, 0, 1824, 249, 1, 0, 0, 0, 1825, 1830, 3, 304, 152, 0, 1826, 1827, 5, 247, 0, 0, 1827, 1829, 3, 304, 152, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 251, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1833, 1843, 5, 52, 0, 0, 1834, 1835, 5, 71, 0, 0, 1835, 1836, 5, 193, 0, 0, 1836, 1837, 5, 26, 0, 0, 1837, 1841, 3, 314, 157, 0, 1838, 1839, 5, 63, 0, 0, 1839, 1840, 5, 26, 0, 0, 1840, 1842, 3, 314, 157, 0, 1841, 1838, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1844, 1, 0, 0, 0, 1843, 1834, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1849, 1, 0, 0, 0, 1845, 1846, 5, 117, 0, 0, 1846, 1847, 5, 193, 0, 0, 1847, 1848, 5, 26, 0, 0, 1848, 1850, 3, 314, 157, 0, 1849, 1845, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 253, 1, 0, 0, 0, 1851, 1854, 3, 356, 178, 0, 1852, 1853, 5, 233, 0, 0, 1853, 1855, 3, 304, 152, 0, 1854, 1852, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 255, 1, 0, 0, 0, 1856, 1867, 3, 258, 129, 0, 1857, 1858, 5, 140, 0, 0, 1858, 1859, 5, 26, 0, 0, 1859, 1864, 3, 262, 131, 0, 1860, 1861, 5, 247, 0, 0, 1861, 1863, 3, 262, 131, 0, 1862, 1860, 1, 0, 0, 0, 1863, 1866, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1868, 1, 0, 0, 0, 1866, 1864, 1, 0, 0, 0, 1867, 1857, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1875, 1, 0, 0, 0, 1869, 1870, 5, 116, 0, 0, 1870, 1873, 3, 304, 152, 0, 1871, 1872, 5, 136, 0, 0, 1872, 1874, 5, 261, 0, 0, 1873, 1871, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1876, 1, 0, 0, 0, 1875, 1869, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 257, 1, 0, 0, 0, 1877, 1878, 6, 129, -1, 0, 1878, 1879, 3, 260, 130, 0, 1879, 1894, 1, 0, 0, 0, 1880, 1881, 10, 2, 0, 0, 1881, 1883, 5, 100, 0, 0, 1882, 1884, 3, 274, 137, 0, 1883, 1882, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1893, 3, 258, 129, 3, 1886, 1887, 10, 1, 0, 0, 1887, 1889, 7, 13, 0, 0, 1888, 1890, 3, 274, 137, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1893, 3, 258, 129, 2, 1892, 1880, 1, 0, 0, 0, 1892, 1886, 1, 0, 0, 0, 1893, 1896, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 259, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1897, 1914, 3, 264, 132, 0, 1898, 1899, 5, 190, 0, 0, 1899, 1914, 3, 186, 93, 0, 1900, 1901, 5, 213, 0, 0, 1901, 1906, 3, 304, 152, 0, 1902, 1903, 5, 247, 0, 0, 1903, 1905, 3, 304, 152, 0, 1904, 1902, 1, 0, 0, 0, 1905, 1908, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1914, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1909, 1910, 5, 249, 0, 0, 1910, 1911, 3, 256, 128, 0, 1911, 1912, 5, 250, 0, 0, 1912, 1914, 1, 0, 0, 0, 1913, 1897, 1, 0, 0, 0, 1913, 1898, 1, 0, 0, 0, 1913, 1900, 1, 0, 0, 0, 1913, 1909, 1, 0, 0, 0, 1914, 261, 1, 0, 0, 0, 1915, 1917, 3, 302, 151, 0, 1916, 1918, 7, 14, 0, 0, 1917, 1916, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1921, 1, 0, 0, 0, 1919, 1920, 5, 135, 0, 0, 1920, 1922, 7, 15, 0, 0, 1921, 1919, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 263, 1, 0, 0, 0, 1923, 1925, 5, 175, 0, 0, 1924, 1926, 3, 274, 137, 0, 1925, 1924, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1928, 1, 0, 0, 0, 1927, 1929, 5, 185, 0, 0, 1928, 1927, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1935, 3, 276, 138, 0, 1931, 1932, 5, 247, 0, 0, 1932, 1934, 3, 276, 138, 0, 1933, 1931, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1947, 1, 0, 0, 0, 1937, 1935, 1, 0, 0, 0, 1938, 1939, 5, 82, 0, 0, 1939, 1944, 3, 278, 139, 0, 1940, 1941, 5, 247, 0, 0, 1941, 1943, 3, 278, 139, 0, 1942, 1940, 1, 0, 0, 0, 1943, 1946, 1, 0, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1948, 1, 0, 0, 0, 1946, 1944, 1, 0, 0, 0, 1947, 1938, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1950, 5, 217, 0, 0, 1950, 1952, 3, 306, 153, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1956, 1, 0, 0, 0, 1953, 1954, 5, 87, 0, 0, 1954, 1955, 5, 26, 0, 0, 1955, 1957, 3, 266, 133, 0, 1956, 1953, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, 1959, 5, 90, 0, 0, 1959, 1961, 3, 306, 153, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 265, 1, 0, 0, 0, 1962, 1964, 3, 274, 137, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1970, 3, 268, 134, 0, 1966, 1967, 5, 247, 0, 0, 1967, 1969, 3, 268, 134, 0, 1968, 1966, 1, 0, 0, 0, 1969, 1972, 1, 0, 0, 0, 1970, 1968, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 267, 1, 0, 0, 0, 1972, 1970, 1, 0, 0, 0, 1973, 1974, 3, 270, 135, 0, 1974, 269, 1, 0, 0, 0, 1975, 1984, 5, 249, 0, 0, 1976, 1981, 3, 302, 151, 0, 1977, 1978, 5, 247, 0, 0, 1978, 1980, 3, 302, 151, 0, 1979, 1977, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1985, 1, 0, 0, 0, 1983, 1981, 1, 0, 0, 0, 1984, 1976, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1989, 5, 250, 0, 0, 1987, 1989, 3, 302, 151, 0, 1988, 1975, 1, 0, 0, 0, 1988, 1987, 1, 0, 0, 0, 1989, 271, 1, 0, 0, 0, 1990, 1992, 3, 356, 178, 0, 1991, 1993, 3, 290, 145, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 5, 9, 0, 0, 1995, 1996, 3, 296, 148, 0, 1996, 273, 1, 0, 0, 0, 1997, 1998, 7, 16, 0, 0, 1998, 275, 1, 0, 0, 0, 1999, 2004, 3, 302, 151, 0, 2000, 2002, 5, 9, 0, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2005, 3, 356, 178, 0, 2004, 2001, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2012, 1, 0, 0, 0, 2006, 2007, 3, 352, 176, 0, 2007, 2008, 5, 245, 0, 0, 2008, 2009, 5, 241, 0, 0, 2009, 2012, 1, 0, 0, 0, 2010, 2012, 5, 241, 0, 0, 2011, 1999, 1, 0, 0, 0, 2011, 2006, 1, 0, 0, 0, 2011, 2010, 1, 0, 0, 0, 2012, 277, 1, 0, 0, 0, 2013, 2014, 6, 139, -1, 0, 2014, 2015, 3, 284, 142, 0, 2015, 2029, 1, 0, 0, 0, 2016, 2025, 10, 2, 0, 0, 2017, 2018, 5, 38, 0, 0, 2018, 2019, 5, 109, 0, 0, 2019, 2026, 3, 284, 142, 0, 2020, 2021, 3, 280, 140, 0, 2021, 2022, 5, 109, 0, 0, 2022, 2023, 3, 278, 139, 0, 2023, 2024, 3, 282, 141, 0, 2024, 2026, 1, 0, 0, 0, 2025, 2017, 1, 0, 0, 0, 2025, 2020, 1, 0, 0, 0, 2026, 2028, 1, 0, 0, 0, 2027, 2016, 1, 0, 0, 0, 2028, 2031, 1, 0, 0, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 279, 1, 0, 0, 0, 2031, 2029, 1, 0, 0, 0, 2032, 2034, 5, 97, 0, 0, 2033, 2032, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2064, 1, 0, 0, 0, 2035, 2037, 5, 114, 0, 0, 2036, 2038, 5, 97, 0, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2064, 1, 0, 0, 0, 2039, 2041, 5, 166, 0, 0, 2040, 2042, 5, 97, 0, 0, 2041, 2040, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2064, 1, 0, 0, 0, 2043, 2045, 5, 114, 0, 0, 2044, 2046, 5, 142, 0, 0, 2045, 2044, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2064, 1, 0, 0, 0, 2047, 2049, 5, 166, 0, 0, 2048, 2050, 5, 142, 0, 0, 2049, 2048, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2064, 1, 0, 0, 0, 2051, 2053, 5, 83, 0, 0, 2052, 2054, 5, 142, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2064, 1, 0, 0, 0, 2055, 2056, 5, 114, 0, 0, 2056, 2064, 5, 178, 0, 0, 2057, 2058, 5, 166, 0, 0, 2058, 2064, 5, 178, 0, 0, 2059, 2060, 5, 114, 0, 0, 2060, 2064, 5, 7, 0, 0, 2061, 2062, 5, 166, 0, 0, 2062, 2064, 5, 7, 0, 0, 2063, 2033, 1, 0, 0, 0, 2063, 2035, 1, 0, 0, 0, 2063, 2039, 1, 0, 0, 0, 2063, 2043, 1, 0, 0, 0, 2063, 2047, 1, 0, 0, 0, 2063, 2051, 1, 0, 0, 0, 2063, 2055, 1, 0, 0, 0, 2063, 2057, 1, 0, 0, 0, 2063, 2059, 1, 0, 0, 0, 2063, 2061, 1, 0, 0, 0, 2064, 281, 1, 0, 0, 0, 2065, 2066, 5, 137, 0, 0, 2066, 2080, 3, 306, 153, 0, 2067, 2068, 5, 207, 0, 0, 2068, 2069, 5, 249, 0, 0, 2069, 2074, 3, 356, 178, 0, 2070, 2071, 5, 247, 0, 0, 2071, 2073, 3, 356, 178, 0, 2072, 2070, 1, 0, 0, 0, 2073, 2076, 1, 0, 0, 0, 2074, 2072, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2077, 1, 0, 0, 0, 2076, 2074, 1, 0, 0, 0, 2077, 2078, 5, 250, 0, 0, 2078, 2080, 1, 0, 0, 0, 2079, 2065, 1, 0, 0, 0, 2079, 2067, 1, 0, 0, 0, 2080, 283, 1, 0, 0, 0, 2081, 2094, 3, 288, 144, 0, 2082, 2083, 5, 192, 0, 0, 2083, 2084, 3, 286, 143, 0, 2084, 2085, 5, 249, 0, 0, 2085, 2086, 3, 304, 152, 0, 2086, 2092, 5, 250, 0, 0, 2087, 2088, 5, 158, 0, 0, 2088, 2089, 5, 249, 0, 0, 2089, 2090, 3, 304, 152, 0, 2090, 2091, 5, 250, 0, 0, 2091, 2093, 1, 0, 0, 0, 2092, 2087, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2095, 1, 0, 0, 0, 2094, 2082, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 285, 1, 0, 0, 0, 2096, 2097, 7, 17, 0, 0, 2097, 287, 1, 0, 0, 0, 2098, 2106, 3, 294, 147, 0, 2099, 2101, 5, 9, 0, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 3, 356, 178, 0, 2103, 2105, 3, 290, 145, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2107, 1, 0, 0, 0, 2106, 2100, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 289, 1, 0, 0, 0, 2108, 2109, 5, 249, 0, 0, 2109, 2114, 3, 192, 96, 0, 2110, 2111, 5, 247, 0, 0, 2111, 2113, 3, 192, 96, 0, 2112, 2110, 1, 0, 0, 0, 2113, 2116, 1, 0, 0, 0, 2114, 2112, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2117, 1, 0, 0, 0, 2116, 2114, 1, 0, 0, 0, 2117, 2118, 5, 250, 0, 0, 2118, 291, 1, 0, 0, 0, 2119, 2120, 5, 249, 0, 0, 2120, 2125, 3, 182, 91, 0, 2121, 2122, 5, 247, 0, 0, 2122, 2124, 3, 182, 91, 0, 2123, 2121, 1, 0, 0, 0, 2124, 2127, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2128, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2128, 2129, 5, 250, 0, 0, 2129, 293, 1, 0, 0, 0, 2130, 2138, 3, 194, 97, 0, 2131, 2133, 5, 113, 0, 0, 2132, 2131, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2138, 3, 296, 148, 0, 2135, 2138, 3, 298, 149, 0, 2136, 2138, 3, 300, 150, 0, 2137, 2130, 1, 0, 0, 0, 2137, 2132, 1, 0, 0, 0, 2137, 2135, 1, 0, 0, 0, 2137, 2136, 1, 0, 0, 0, 2138, 295, 1, 0, 0, 0, 2139, 2140, 5, 249, 0, 0, 2140, 2141, 3, 204, 102, 0, 2141, 2142, 5, 250, 0, 0, 2142, 297, 1, 0, 0, 0, 2143, 2144, 5, 203, 0, 0, 2144, 2145, 5, 249, 0, 0, 2145, 2150, 3, 304, 152, 0, 2146, 2147, 5, 247, 0, 0, 2147, 2149, 3, 304, 152, 0, 2148, 2146, 1, 0, 0, 0, 2149, 2152, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2153, 1, 0, 0, 0, 2152, 2150, 1, 0, 0, 0, 2153, 2156, 5, 250, 0, 0, 2154, 2155, 5, 218, 0, 0, 2155, 2157, 5, 141, 0, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 299, 1, 0, 0, 0, 2158, 2159, 5, 249, 0, 0, 2159, 2160, 3, 278, 139, 0, 2160, 2161, 5, 250, 0, 0, 2161, 301, 1, 0, 0, 0, 2162, 2165, 3, 192, 96, 0, 2163, 2165, 3, 304, 152, 0, 2164, 2162, 1, 0, 0, 0, 2164, 2163, 1, 0, 0, 0, 2165, 303, 1, 0, 0, 0, 2166, 2167, 3, 306, 153, 0, 2167, 305, 1, 0, 0, 0, 2168, 2169, 6, 153, -1, 0, 2169, 2171, 3, 310, 155, 0, 2170, 2172, 3, 308, 154, 0, 2171, 2170, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2176, 1, 0, 0, 0, 2173, 2174, 5, 133, 0, 0, 2174, 2176, 3, 306, 153, 3, 2175, 2168, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2185, 1, 0, 0, 0, 2177, 2178, 10, 2, 0, 0, 2178, 2179, 5, 5, 0, 0, 2179, 2184, 3, 306, 153, 3, 2180, 2181, 10, 1, 0, 0, 2181, 2182, 5, 139, 0, 0, 2182, 2184, 3, 306, 153, 2, 2183, 2177, 1, 0, 0, 0, 2183, 2180, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 307, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2189, 3, 316, 158, 0, 2189, 2190, 3, 310, 155, 0, 2190, 2247, 1, 0, 0, 0, 2191, 2192, 3, 316, 158, 0, 2192, 2193, 3, 318, 159, 0, 2193, 2194, 3, 296, 148, 0, 2194, 2247, 1, 0, 0, 0, 2195, 2197, 5, 133, 0, 0, 2196, 2195, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 5, 15, 0, 0, 2199, 2200, 3, 310, 155, 0, 2200, 2201, 5, 5, 0, 0, 2201, 2202, 3, 310, 155, 0, 2202, 2247, 1, 0, 0, 0, 2203, 2205, 5, 133, 0, 0, 2204, 2203, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2207, 5, 94, 0, 0, 2207, 2208, 5, 249, 0, 0, 2208, 2213, 3, 304, 152, 0, 2209, 2210, 5, 247, 0, 0, 2210, 2212, 3, 304, 152, 0, 2211, 2209, 1, 0, 0, 0, 2212, 2215, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2216, 1, 0, 0, 0, 2215, 2213, 1, 0, 0, 0, 2216, 2217, 5, 250, 0, 0, 2217, 2247, 1, 0, 0, 0, 2218, 2220, 5, 133, 0, 0, 2219, 2218, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 2222, 5, 94, 0, 0, 2222, 2247, 3, 296, 148, 0, 2223, 2225, 5, 133, 0, 0, 2224, 2223, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2227, 7, 18, 0, 0, 2227, 2230, 3, 310, 155, 0, 2228, 2229, 5, 62, 0, 0, 2229, 2231, 3, 310, 155, 0, 2230, 2228, 1, 0, 0, 0, 2230, 2231, 1, 0, 0, 0, 2231, 2247, 1, 0, 0, 0, 2232, 2233, 7, 19, 0, 0, 2233, 2247, 3, 310, 155, 0, 2234, 2236, 5, 108, 0, 0, 2235, 2237, 5, 133, 0, 0, 2236, 2235, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2247, 7, 20, 0, 0, 2239, 2241, 5, 108, 0, 0, 2240, 2242, 5, 133, 0, 0, 2241, 2240, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 2244, 5, 57, 0, 0, 2244, 2245, 5, 82, 0, 0, 2245, 2247, 3, 310, 155, 0, 2246, 2188, 1, 0, 0, 0, 2246, 2191, 1, 0, 0, 0, 2246, 2196, 1, 0, 0, 0, 2246, 2204, 1, 0, 0, 0, 2246, 2219, 1, 0, 0, 0, 2246, 2224, 1, 0, 0, 0, 2246, 2232, 1, 0, 0, 0, 2246, 2234, 1, 0, 0, 0, 2246, 2239, 1, 0, 0, 0, 2247, 309, 1, 0, 0, 0, 2248, 2249, 6, 155, -1, 0, 2249, 2253, 3, 312, 156, 0, 2250, 2251, 7, 21, 0, 0, 2251, 2253, 3, 310, 155, 4, 2252, 2248, 1, 0, 0, 0, 2252, 2250, 1, 0, 0, 0, 2253, 2265, 1, 0, 0, 0, 2254, 2255, 10, 3, 0, 0, 2255, 2256, 7, 22, 0, 0, 2256, 2264, 3, 310, 155, 4, 2257, 2258, 10, 2, 0, 0, 2258, 2259, 7, 21, 0, 0, 2259, 2264, 3, 310, 155, 3, 2260, 2261, 10, 1, 0, 0, 2261, 2262, 5, 244, 0, 0, 2262, 2264, 3, 310, 155, 2, 2263, 2254, 1, 0, 0, 0, 2263, 2257, 1, 0, 0, 0, 2263, 2260, 1, 0, 0, 0, 2264, 2267, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 311, 1, 0, 0, 0, 2267, 2265, 1, 0, 0, 0, 2268, 2269, 6, 156, -1, 0, 2269, 2515, 5, 134, 0, 0, 2270, 2515, 3, 322, 161, 0, 2271, 2272, 3, 356, 178, 0, 2272, 2273, 3, 314, 157, 0, 2273, 2515, 1, 0, 0, 0, 2274, 2275, 5, 270, 0, 0, 2275, 2515, 3, 314, 157, 0, 2276, 2515, 3, 358, 179, 0, 2277, 2515, 3, 320, 160, 0, 2278, 2515, 3, 314, 157, 0, 2279, 2515, 5, 260, 0, 0, 2280, 2515, 5, 256, 0, 0, 2281, 2282, 5, 149, 0, 0, 2282, 2283, 5, 249, 0, 0, 2283, 2284, 3, 310, 155, 0, 2284, 2285, 5, 94, 0, 0, 2285, 2286, 3, 310, 155, 0, 2286, 2287, 5, 250, 0, 0, 2287, 2515, 1, 0, 0, 0, 2288, 2289, 5, 249, 0, 0, 2289, 2292, 3, 304, 152, 0, 2290, 2291, 5, 9, 0, 0, 2291, 2293, 3, 328, 164, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2302, 1, 0, 0, 0, 2294, 2295, 5, 247, 0, 0, 2295, 2298, 3, 304, 152, 0, 2296, 2297, 5, 9, 0, 0, 2297, 2299, 3, 328, 164, 0, 2298, 2296, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2301, 1, 0, 0, 0, 2300, 2294, 1, 0, 0, 0, 2301, 2304, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2305, 1, 0, 0, 0, 2304, 2302, 1, 0, 0, 0, 2305, 2306, 5, 250, 0, 0, 2306, 2515, 1, 0, 0, 0, 2307, 2308, 5, 169, 0, 0, 2308, 2309, 5, 249, 0, 0, 2309, 2314, 3, 304, 152, 0, 2310, 2311, 5, 247, 0, 0, 2311, 2313, 3, 304, 152, 0, 2312, 2310, 1, 0, 0, 0, 2313, 2316, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2318, 5, 250, 0, 0, 2318, 2515, 1, 0, 0, 0, 2319, 2320, 3, 190, 95, 0, 2320, 2321, 5, 249, 0, 0, 2321, 2322, 5, 241, 0, 0, 2322, 2324, 5, 250, 0, 0, 2323, 2325, 3, 336, 168, 0, 2324, 2323, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2327, 1, 0, 0, 0, 2326, 2328, 3, 338, 169, 0, 2327, 2326, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2515, 1, 0, 0, 0, 2329, 2330, 3, 190, 95, 0, 2330, 2342, 5, 249, 0, 0, 2331, 2333, 3, 274, 137, 0, 2332, 2331, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2339, 3, 304, 152, 0, 2335, 2336, 5, 247, 0, 0, 2336, 2338, 3, 304, 152, 0, 2337, 2335, 1, 0, 0, 0, 2338, 2341, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 2343, 1, 0, 0, 0, 2341, 2339, 1, 0, 0, 0, 2342, 2332, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2354, 1, 0, 0, 0, 2344, 2345, 5, 140, 0, 0, 2345, 2346, 5, 26, 0, 0, 2346, 2351, 3, 262, 131, 0, 2347, 2348, 5, 247, 0, 0, 2348, 2350, 3, 262, 131, 0, 2349, 2347, 1, 0, 0, 0, 2350, 2353, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2355, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2354, 2344, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2358, 5, 250, 0, 0, 2357, 2359, 3, 336, 168, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2361, 1, 0, 0, 0, 2360, 2362, 3, 338, 169, 0, 2361, 2360, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2515, 1, 0, 0, 0, 2363, 2364, 3, 356, 178, 0, 2364, 2365, 5, 257, 0, 0, 2365, 2366, 3, 304, 152, 0, 2366, 2515, 1, 0, 0, 0, 2367, 2376, 5, 249, 0, 0, 2368, 2373, 3, 356, 178, 0, 2369, 2370, 5, 247, 0, 0, 2370, 2372, 3, 356, 178, 0, 2371, 2369, 1, 0, 0, 0, 2372, 2375, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2377, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2376, 2368, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 2379, 5, 250, 0, 0, 2379, 2380, 5, 257, 0, 0, 2380, 2515, 3, 304, 152, 0, 2381, 2382, 5, 249, 0, 0, 2382, 2383, 3, 204, 102, 0, 2383, 2384, 5, 250, 0, 0, 2384, 2515, 1, 0, 0, 0, 2385, 2386, 5, 66, 0, 0, 2386, 2387, 5, 249, 0, 0, 2387, 2388, 3, 204, 102, 0, 2388, 2389, 5, 250, 0, 0, 2389, 2515, 1, 0, 0, 0, 2390, 2391, 5, 28, 0, 0, 2391, 2393, 3, 310, 155, 0, 2392, 2394, 3, 334, 167, 0, 2393, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2399, 1, 0, 0, 0, 2397, 2398, 5, 59, 0, 0, 2398, 2400, 3, 304, 152, 0, 2399, 2397, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2402, 5, 61, 0, 0, 2402, 2515, 1, 0, 0, 0, 2403, 2405, 5, 28, 0, 0, 2404, 2406, 3, 334, 167, 0, 2405, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2405, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2411, 1, 0, 0, 0, 2409, 2410, 5, 59, 0, 0, 2410, 2412, 3, 304, 152, 0, 2411, 2409, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 2414, 5, 61, 0, 0, 2414, 2515, 1, 0, 0, 0, 2415, 2416, 5, 29, 0, 0, 2416, 2417, 5, 249, 0, 0, 2417, 2418, 3, 304, 152, 0, 2418, 2419, 5, 9, 0, 0, 2419, 2420, 3, 328, 164, 0, 2420, 2421, 5, 250, 0, 0, 2421, 2515, 1, 0, 0, 0, 2422, 2423, 5, 197, 0, 0, 2423, 2424, 5, 249, 0, 0, 2424, 2425, 3, 304, 152, 0, 2425, 2426, 5, 9, 0, 0, 2426, 2427, 3, 328, 164, 0, 2427, 2428, 5, 250, 0, 0, 2428, 2515, 1, 0, 0, 0, 2429, 2430, 5, 8, 0, 0, 2430, 2439, 5, 251, 0, 0, 2431, 2436, 3, 304, 152, 0, 2432, 2433, 5, 247, 0, 0, 2433, 2435, 3, 304, 152, 0, 2434, 2432, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2440, 1, 0, 0, 0, 2438, 2436, 1, 0, 0, 0, 2439, 2431, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2515, 5, 252, 0, 0, 2442, 2515, 3, 356, 178, 0, 2443, 2515, 5, 40, 0, 0, 2444, 2448, 5, 42, 0, 0, 2445, 2446, 5, 249, 0, 0, 2446, 2447, 5, 261, 0, 0, 2447, 2449, 5, 250, 0, 0, 2448, 2445, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2515, 1, 0, 0, 0, 2450, 2454, 5, 43, 0, 0, 2451, 2452, 5, 249, 0, 0, 2452, 2453, 5, 261, 0, 0, 2453, 2455, 5, 250, 0, 0, 2454, 2451, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2515, 1, 0, 0, 0, 2456, 2460, 5, 119, 0, 0, 2457, 2458, 5, 249, 0, 0, 2458, 2459, 5, 261, 0, 0, 2459, 2461, 5, 250, 0, 0, 2460, 2457, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2515, 1, 0, 0, 0, 2462, 2466, 5, 120, 0, 0, 2463, 2464, 5, 249, 0, 0, 2464, 2465, 5, 261, 0, 0, 2465, 2467, 5, 250, 0, 0, 2466, 2463, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2515, 1, 0, 0, 0, 2468, 2515, 5, 44, 0, 0, 2469, 2515, 5, 41, 0, 0, 2470, 2471, 5, 186, 0, 0, 2471, 2472, 5, 249, 0, 0, 2472, 2473, 3, 310, 155, 0, 2473, 2474, 5, 82, 0, 0, 2474, 2477, 3, 310, 155, 0, 2475, 2476, 5, 78, 0, 0, 2476, 2478, 3, 310, 155, 0, 2477, 2475, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2480, 5, 250, 0, 0, 2480, 2515, 1, 0, 0, 0, 2481, 2482, 5, 132, 0, 0, 2482, 2483, 5, 249, 0, 0, 2483, 2486, 3, 310, 155, 0, 2484, 2485, 5, 247, 0, 0, 2485, 2487, 3, 326, 163, 0, 2486, 2484, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2489, 5, 250, 0, 0, 2489, 2515, 1, 0, 0, 0, 2490, 2491, 5, 68, 0, 0, 2491, 2492, 5, 249, 0, 0, 2492, 2493, 3, 356, 178, 0, 2493, 2494, 5, 82, 0, 0, 2494, 2495, 3, 310, 155, 0, 2495, 2496, 5, 250, 0, 0, 2496, 2515, 1, 0, 0, 0, 2497, 2498, 5, 249, 0, 0, 2498, 2499, 3, 304, 152, 0, 2499, 2500, 5, 250, 0, 0, 2500, 2515, 1, 0, 0, 0, 2501, 2502, 5, 88, 0, 0, 2502, 2511, 5, 249, 0, 0, 2503, 2508, 3, 352, 176, 0, 2504, 2505, 5, 247, 0, 0, 2505, 2507, 3, 352, 176, 0, 2506, 2504, 1, 0, 0, 0, 2507, 2510, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2512, 1, 0, 0, 0, 2510, 2508, 1, 0, 0, 0, 2511, 2503, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2515, 5, 250, 0, 0, 2514, 2268, 1, 0, 0, 0, 2514, 2270, 1, 0, 0, 0, 2514, 2271, 1, 0, 0, 0, 2514, 2274, 1, 0, 0, 0, 2514, 2276, 1, 0, 0, 0, 2514, 2277, 1, 0, 0, 0, 2514, 2278, 1, 0, 0, 0, 2514, 2279, 1, 0, 0, 0, 2514, 2280, 1, 0, 0, 0, 2514, 2281, 1, 0, 0, 0, 2514, 2288, 1, 0, 0, 0, 2514, 2307, 1, 0, 0, 0, 2514, 2319, 1, 0, 0, 0, 2514, 2329, 1, 0, 0, 0, 2514, 2363, 1, 0, 0, 0, 2514, 2367, 1, 0, 0, 0, 2514, 2381, 1, 0, 0, 0, 2514, 2385, 1, 0, 0, 0, 2514, 2390, 1, 0, 0, 0, 2514, 2403, 1, 0, 0, 0, 2514, 2415, 1, 0, 0, 0, 2514, 2422, 1, 0, 0, 0, 2514, 2429, 1, 0, 0, 0, 2514, 2442, 1, 0, 0, 0, 2514, 2443, 1, 0, 0, 0, 2514, 2444, 1, 0, 0, 0, 2514, 2450, 1, 0, 0, 0, 2514, 2456, 1, 0, 0, 0, 2514, 2462, 1, 0, 0, 0, 2514, 2468, 1, 0, 0, 0, 2514, 2469, 1, 0, 0, 0, 2514, 2470, 1, 0, 0, 0, 2514, 2481, 1, 0, 0, 0, 2514, 2490, 1, 0, 0, 0, 2514, 2497, 1, 0, 0, 0, 2514, 2501, 1, 0, 0, 0, 2515, 2526, 1, 0, 0, 0, 2516, 2517, 10, 15, 0, 0, 2517, 2518, 5, 251, 0, 0, 2518, 2519, 3, 310, 155, 0, 2519, 2520, 5, 252, 0, 0, 2520, 2525, 1, 0, 0, 0, 2521, 2522, 10, 13, 0, 0, 2522, 2523, 5, 245, 0, 0, 2523, 2525, 3, 356, 178, 0, 2524, 2516, 1, 0, 0, 0, 2524, 2521, 1, 0, 0, 0, 2525, 2528, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 313, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2536, 5, 258, 0, 0, 2530, 2533, 5, 259, 0, 0, 2531, 2532, 5, 200, 0, 0, 2532, 2534, 5, 258, 0, 0, 2533, 2531, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2529, 1, 0, 0, 0, 2535, 2530, 1, 0, 0, 0, 2536, 315, 1, 0, 0, 0, 2537, 2538, 7, 23, 0, 0, 2538, 317, 1, 0, 0, 0, 2539, 2540, 7, 24, 0, 0, 2540, 319, 1, 0, 0, 0, 2541, 2542, 7, 25, 0, 0, 2542, 321, 1, 0, 0, 0, 2543, 2544, 5, 261, 0, 0, 2544, 2558, 3, 324, 162, 0, 2545, 2546, 5, 249, 0, 0, 2546, 2547, 5, 261, 0, 0, 2547, 2548, 5, 250, 0, 0, 2548, 2558, 3, 324, 162, 0, 2549, 2550, 5, 101, 0, 0, 2550, 2551, 5, 261, 0, 0, 2551, 2558, 3, 324, 162, 0, 2552, 2553, 5, 101, 0, 0, 2553, 2554, 5, 249, 0, 0, 2554, 2555, 5, 261, 0, 0, 2555, 2556, 5, 250, 0, 0, 2556, 2558, 3, 324, 162, 0, 2557, 2543, 1, 0, 0, 0, 2557, 2545, 1, 0, 0, 0, 2557, 2549, 1, 0, 0, 0, 2557, 2552, 1, 0, 0, 0, 2558, 323, 1, 0, 0, 0, 2559, 2560, 7, 26, 0, 0, 2560, 325, 1, 0, 0, 0, 2561, 2562, 7, 27, 0, 0, 2562, 327, 1, 0, 0, 0, 2563, 2564, 6, 164, -1, 0, 2564, 2565, 5, 8, 0, 0, 2565, 2566, 5, 235, 0, 0, 2566, 2567, 3, 328, 164, 0, 2567, 2568, 5, 237, 0, 0, 2568, 2608, 1, 0, 0, 0, 2569, 2570, 5, 122, 0, 0, 2570, 2571, 5, 235, 0, 0, 2571, 2572, 3, 328, 164, 0, 2572, 2573, 5, 247, 0, 0, 2573, 2574, 3, 328, 164, 0, 2574, 2575, 5, 237, 0, 0, 2575, 2608, 1, 0, 0, 0, 2576, 2577, 5, 184, 0, 0, 2577, 2578, 5, 235, 0, 0, 2578, 2579, 3, 356, 178, 0, 2579, 2580, 5, 248, 0, 0, 2580, 2588, 3, 328, 164, 0, 2581, 2582, 5, 247, 0, 0, 2582, 2583, 3, 356, 178, 0, 2583, 2584, 5, 248, 0, 0, 2584, 2585, 3, 328, 164, 0, 2585, 2587, 1, 0, 0, 0, 2586, 2581, 1, 0, 0, 0, 2587, 2590, 1, 0, 0, 0, 2588, 2586, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2588, 1, 0, 0, 0, 2591, 2592, 5, 237, 0, 0, 2592, 2608, 1, 0, 0, 0, 2593, 2605, 3, 332, 166, 0, 2594, 2595, 5, 249, 0, 0, 2595, 2600, 3, 330, 165, 0, 2596, 2597, 5, 247, 0, 0, 2597, 2599, 3, 330, 165, 0, 2598, 2596, 1, 0, 0, 0, 2599, 2602, 1, 0, 0, 0, 2600, 2598, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2603, 1, 0, 0, 0, 2602, 2600, 1, 0, 0, 0, 2603, 2604, 5, 250, 0, 0, 2604, 2606, 1, 0, 0, 0, 2605, 2594, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2608, 1, 0, 0, 0, 2607, 2563, 1, 0, 0, 0, 2607, 2569, 1, 0, 0, 0, 2607, 2576, 1, 0, 0, 0, 2607, 2593, 1, 0, 0, 0, 2608, 2613, 1, 0, 0, 0, 2609, 2610, 10, 5, 0, 0, 2610, 2612, 5, 8, 0, 0, 2611, 2609, 1, 0, 0, 0, 2612, 2615, 1, 0, 0, 0, 2613, 2611, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 329, 1, 0, 0, 0, 2615, 2613, 1, 0, 0, 0, 2616, 2619, 5, 261, 0, 0, 2617, 2619, 3, 328, 164, 0, 2618, 2616, 1, 0, 0, 0, 2618, 2617, 1, 0, 0, 0, 2619, 331, 1, 0, 0, 0, 2620, 2625, 5, 268, 0, 0, 2621, 2625, 5, 269, 0, 0, 2622, 2625, 5, 270, 0, 0, 2623, 2625, 3, 356, 178, 0, 2624, 2620, 1, 0, 0, 0, 2624, 2621, 1, 0, 0, 0, 2624, 2622, 1, 0, 0, 0, 2624, 2623, 1, 0, 0, 0, 2625, 333, 1, 0, 0, 0, 2626, 2627, 5, 216, 0, 0, 2627, 2628, 3, 304, 152, 0, 2628, 2629, 5, 194, 0, 0, 2629, 2630, 3, 304, 152, 0, 2630, 335, 1, 0, 0, 0, 2631, 2632, 5, 74, 0, 0, 2632, 2633, 5, 249, 0, 0, 2633, 2634, 5, 217, 0, 0, 2634, 2635, 3, 306, 153, 0, 2635, 2636, 5, 250, 0, 0, 2636, 337, 1, 0, 0, 0, 2637, 2638, 5, 144, 0, 0, 2638, 2649, 5, 249, 0, 0, 2639, 2640, 5, 146, 0, 0, 2640, 2641, 5, 26, 0, 0, 2641, 2646, 3, 304, 152, 0, 2642, 2643, 5, 247, 0, 0, 2643, 2645, 3, 304, 152, 0, 2644, 2642, 1, 0, 0, 0, 2645, 2648, 1, 0, 0, 0, 2646, 2644, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2650, 1, 0, 0, 0, 2648, 2646, 1, 0, 0, 0, 2649, 2639, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2661, 1, 0, 0, 0, 2651, 2652, 5, 140, 0, 0, 2652, 2653, 5, 26, 0, 0, 2653, 2658, 3, 262, 131, 0, 2654, 2655, 5, 247, 0, 0, 2655, 2657, 3, 262, 131, 0, 2656, 2654, 1, 0, 0, 0, 2657, 2660, 1, 0, 0, 0, 2658, 2656, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2662, 1, 0, 0, 0, 2660, 2658, 1, 0, 0, 0, 2661, 2651, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2664, 1, 0, 0, 0, 2663, 2665, 3, 340, 170, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 5, 250, 0, 0, 2667, 339, 1, 0, 0, 0, 2668, 2669, 5, 155, 0, 0, 2669, 2685, 3, 342, 171, 0, 2670, 2671, 5, 170, 0, 0, 2671, 2685, 3, 342, 171, 0, 2672, 2673, 5, 155, 0, 0, 2673, 2674, 5, 15, 0, 0, 2674, 2675, 3, 342, 171, 0, 2675, 2676, 5, 5, 0, 0, 2676, 2677, 3, 342, 171, 0, 2677, 2685, 1, 0, 0, 0, 2678, 2679, 5, 170, 0, 0, 2679, 2680, 5, 15, 0, 0, 2680, 2681, 3, 342, 171, 0, 2681, 2682, 5, 5, 0, 0, 2682, 2683, 3, 342, 171, 0, 2683, 2685, 1, 0, 0, 0, 2684, 2668, 1, 0, 0, 0, 2684, 2670, 1, 0, 0, 0, 2684, 2672, 1, 0, 0, 0, 2684, 2678, 1, 0, 0, 0, 2685, 341, 1, 0, 0, 0, 2686, 2687, 5, 201, 0, 0, 2687, 2696, 5, 150, 0, 0, 2688, 2689, 5, 201, 0, 0, 2689, 2696, 5, 77, 0, 0, 2690, 2691, 5, 39, 0, 0, 2691, 2696, 5, 169, 0, 0, 2692, 2693, 3, 304, 152, 0, 2693, 2694, 7, 28, 0, 0, 2694, 2696, 1, 0, 0, 0, 2695, 2686, 1, 0, 0, 0, 2695, 2688, 1, 0, 0, 0, 2695, 2690, 1, 0, 0, 0, 2695, 2692, 1, 0, 0, 0, 2696, 343, 1, 0, 0, 0, 2697, 2698, 3, 356, 178, 0, 2698, 2699, 5, 245, 0, 0, 2699, 2700, 3, 356, 178, 0, 2700, 2703, 1, 0, 0, 0, 2701, 2703, 3, 356, 178, 0, 2702, 2697, 1, 0, 0, 0, 2702, 2701, 1, 0, 0, 0, 2703, 345, 1, 0, 0, 0, 2704, 2709, 3, 344, 172, 0, 2705, 2706, 5, 247, 0, 0, 2706, 2708, 3, 344, 172, 0, 2707, 2705, 1, 0, 0, 0, 2708, 2711, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 347, 1, 0, 0, 0, 2711, 2709, 1, 0, 0, 0, 2712, 2726, 5, 2, 0, 0, 2713, 2726, 5, 4, 0, 0, 2714, 2726, 5, 58, 0, 0, 2715, 2726, 5, 37, 0, 0, 2716, 2726, 5, 99, 0, 0, 2717, 2726, 5, 163, 0, 0, 2718, 2723, 5, 175, 0, 0, 2719, 2720, 5, 249, 0, 0, 2720, 2721, 3, 356, 178, 0, 2721, 2722, 5, 250, 0, 0, 2722, 2724, 1, 0, 0, 0, 2723, 2719, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2726, 1, 0, 0, 0, 2725, 2712, 1, 0, 0, 0, 2725, 2713, 1, 0, 0, 0, 2725, 2714, 1, 0, 0, 0, 2725, 2715, 1, 0, 0, 0, 2725, 2716, 1, 0, 0, 0, 2725, 2717, 1, 0, 0, 0, 2725, 2718, 1, 0, 0, 0, 2726, 349, 1, 0, 0, 0, 2727, 2728, 7, 29, 0, 0, 2728, 351, 1, 0, 0, 0, 2729, 2734, 3, 356, 178, 0, 2730, 2731, 5, 245, 0, 0, 2731, 2733, 3, 356, 178, 0, 2732, 2730, 1, 0, 0, 0, 2733, 2736, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 353, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2738, 5, 167, 0, 0, 2738, 2744, 3, 356, 178, 0, 2739, 2740, 5, 206, 0, 0, 2740, 2744, 3, 356, 178, 0, 2741, 2742, 5, 87, 0, 0, 2742, 2744, 3, 356, 178, 0, 2743, 2737, 1, 0, 0, 0, 2743, 2739, 1, 0, 0, 0, 2743, 2741, 1, 0, 0, 0, 2744, 355, 1, 0, 0, 0, 2745, 2751, 5, 264, 0, 0, 2746, 2751, 5, 258, 0, 0, 2747, 2751, 3, 362, 181, 0, 2748, 2751, 5, 267, 0, 0, 2749, 2751, 5, 265, 0, 0, 2750, 2745, 1, 0, 0, 0, 2750, 2746, 1, 0, 0, 0, 2750, 2747, 1, 0, 0, 0, 2750, 2748, 1, 0, 0, 0, 2750, 2749, 1, 0, 0, 0, 2751, 357, 1, 0, 0, 0, 2752, 2754, 5, 240, 0, 0, 2753, 2752, 1, 0, 0, 0, 2753, 2754, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2765, 5, 262, 0, 0, 2756, 2758, 5, 240, 0, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2765, 5, 263, 0, 0, 2760, 2762, 5, 240, 0, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2765, 5, 261, 0, 0, 2764, 2753, 1, 0, 0, 0, 2764, 2757, 1, 0, 0, 0, 2764, 2761, 1, 0, 0, 0, 2765, 359, 1, 0, 0, 0, 2766, 2767, 7, 30, 0, 0, 2767, 361, 1, 0, 0, 0, 2768, 2769, 7, 31, 0, 0, 2769, 363, 1, 0, 0, 0, 351, 367, 374, 398, 411, 415, 419, 428, 433, 437, 443, 445, 450, 454, 458, 465, 470, 476, 480, 489, 496, 500, 505, 507, 512, 516, 523, 527, 532, 536, 540, 544, 552, 557, 561, 569, 573, 582, 585, 588, 594, 601, 612, 617, 622, 627, 632, 641, 644, 647, 651, 677, 703, 712, 722, 725, 739, 757, 759, 768, 779, 788, 795, 799, 806, 812, 815, 820, 827, 841, 854, 859, 864, 870, 906, 909, 915, 918, 924, 930, 942, 944, 952, 960, 965, 969, 974, 981, 985, 989, 995, 999, 1003, 1012, 1015, 1018, 1026, 1040, 1047, 1060, 1066, 1071, 1074, 1077, 1082, 1086, 1095, 1100, 1106, 1110, 1115, 1120, 1123, 1131, 1134, 1138, 1150, 1153, 1157, 1162, 1166, 1182, 1187, 1194, 1197, 1203, 1206, 1213, 1216, 1220, 1225, 1228, 1235, 1238, 1262, 1276, 1280, 1284, 1304, 1306, 1308, 1317, 1319, 1328, 1330, 1339, 1341, 1346, 1355, 1364, 1373, 1384, 1390, 1395, 1398, 1411, 1421, 1425, 1430, 1441, 1446, 1479, 1487, 1492, 1498, 1503, 1507, 1512, 1517, 1522, 1526, 1535, 1538, 1542, 1549, 1560, 1566, 1570, 1576, 1586, 1593, 1598, 1603, 1608, 1614, 1617, 1626, 1629, 1632, 1638, 1648, 1651, 1655, 1659, 1665, 1671, 1674, 1680, 1686, 1689, 1692, 1696, 1706, 1717, 1722, 1725, 1729, 1736, 1746, 1758, 1764, 1766, 1775, 1778, 1785, 1795, 1801, 1809, 1820, 1830, 1841, 1843, 1849, 1854, 1864, 1867, 1873, 1875, 1883, 1889, 1892, 1894, 1906, 1913, 1917, 1921, 1925, 1928, 1935, 1944, 1947, 1951, 1956, 1960, 1963, 1970, 1981, 1984, 1988, 1992, 2001, 2004, 2011, 2025, 2029, 2033, 2037, 2041, 2045, 2049, 2053, 2063, 2074, 2079, 2092, 2094, 2100, 2104, 2106, 2114, 2125, 2132, 2137, 2150, 2156, 2164, 2171, 2175, 2183, 2185, 2196, 2204, 2213, 2219, 2224, 2230, 2236, 2241, 2246, 2252, 2263, 2265, 2292, 2298, 2302, 2314, 2324, 2327, 2332, 2339, 2342, 2351, 2354, 2358, 2361, 2373, 2376, 2395, 2399, 2407, 2411, 2436, 2439, 2448, 2454, 2460, 2466, 2477, 2486, 2508, 2511, 2514, 2524, 2526, 2533, 2535, 2557, 2588, 2600, 2605, 2607, 2613, 2618, 2624, 2646, 2649, 2658, 2661, 2664, 2684, 2695, 2702, 2709, 2723, 2725, 2734, 2743, 2750, 2753, 2757, 2761, 2764] \ No newline at end of file +[4, 1, 273, 2765, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 1, 0, 5, 0, 366, 8, 0, 10, 0, 12, 0, 369, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 375, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 399, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 412, 8, 4, 1, 5, 1, 5, 3, 5, 416, 8, 5, 1, 5, 1, 5, 3, 5, 420, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 427, 8, 5, 10, 5, 12, 5, 430, 9, 5, 1, 5, 1, 5, 3, 5, 434, 8, 5, 1, 5, 1, 5, 3, 5, 438, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 444, 8, 5, 3, 5, 446, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 451, 8, 5, 1, 6, 1, 6, 3, 6, 455, 8, 6, 1, 6, 1, 6, 3, 6, 459, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 466, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 471, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 477, 8, 7, 1, 7, 1, 7, 3, 7, 481, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 488, 8, 7, 10, 7, 12, 7, 491, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 497, 8, 7, 1, 7, 1, 7, 3, 7, 501, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 506, 8, 7, 3, 7, 508, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 513, 8, 7, 1, 7, 1, 7, 3, 7, 517, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 524, 8, 7, 1, 7, 1, 7, 3, 7, 528, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 533, 8, 8, 1, 8, 1, 8, 3, 8, 537, 8, 8, 1, 8, 1, 8, 3, 8, 541, 8, 8, 1, 8, 1, 8, 3, 8, 545, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 553, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 558, 8, 9, 1, 9, 1, 9, 3, 9, 562, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 570, 8, 11, 1, 11, 1, 11, 3, 11, 574, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 581, 8, 11, 10, 11, 12, 11, 584, 9, 11, 3, 11, 586, 8, 11, 1, 11, 3, 11, 589, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 595, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 602, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 613, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 618, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 623, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 628, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 633, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 640, 8, 12, 10, 12, 12, 12, 643, 9, 12, 3, 12, 645, 8, 12, 1, 12, 3, 12, 648, 8, 12, 1, 12, 1, 12, 3, 12, 652, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 678, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 704, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 713, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 723, 8, 16, 1, 16, 3, 16, 726, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 740, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 758, 8, 20, 3, 20, 760, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 767, 8, 20, 10, 20, 12, 20, 770, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 780, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 789, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 796, 8, 22, 1, 22, 1, 22, 3, 22, 800, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 807, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 813, 8, 23, 1, 23, 3, 23, 816, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 821, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 828, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 842, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 855, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 860, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 865, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 871, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 907, 8, 32, 1, 32, 3, 32, 910, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 916, 8, 33, 1, 33, 3, 33, 919, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 925, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 931, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 943, 8, 35, 3, 35, 945, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 953, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 961, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 966, 8, 38, 1, 38, 1, 38, 3, 38, 970, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 975, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 982, 8, 40, 1, 40, 1, 40, 3, 40, 986, 8, 40, 1, 41, 1, 41, 3, 41, 990, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 996, 8, 41, 1, 42, 1, 42, 3, 42, 1000, 8, 42, 1, 42, 1, 42, 3, 42, 1004, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1011, 8, 42, 10, 42, 12, 42, 1014, 9, 42, 3, 42, 1016, 8, 42, 1, 42, 3, 42, 1019, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1027, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1041, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1048, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1061, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1067, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1072, 8, 49, 1, 49, 3, 49, 1075, 8, 49, 1, 50, 3, 50, 1078, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1083, 8, 50, 1, 50, 1, 50, 3, 50, 1087, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1094, 8, 50, 10, 50, 12, 50, 1097, 9, 50, 1, 50, 1, 50, 3, 50, 1101, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1107, 8, 51, 1, 52, 1, 52, 3, 52, 1111, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1116, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1121, 8, 53, 1, 53, 3, 53, 1124, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1130, 8, 53, 10, 53, 12, 53, 1133, 9, 53, 3, 53, 1135, 8, 53, 1, 53, 1, 53, 3, 53, 1139, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1149, 8, 54, 10, 54, 12, 54, 1152, 9, 54, 3, 54, 1154, 8, 54, 1, 54, 1, 54, 3, 54, 1158, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1163, 8, 55, 1, 55, 1, 55, 3, 55, 1167, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1183, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1188, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1193, 8, 57, 10, 57, 12, 57, 1196, 9, 57, 3, 57, 1198, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1204, 8, 58, 1, 58, 3, 58, 1207, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1212, 8, 58, 10, 58, 12, 58, 1215, 9, 58, 3, 58, 1217, 8, 58, 1, 59, 1, 59, 3, 59, 1221, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1226, 8, 59, 1, 59, 3, 59, 1229, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1234, 8, 59, 10, 59, 12, 59, 1237, 9, 59, 3, 59, 1239, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1263, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1277, 8, 65, 1, 65, 1, 65, 3, 65, 1281, 8, 65, 1, 66, 1, 66, 3, 66, 1285, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1305, 8, 68, 3, 68, 1307, 8, 68, 3, 68, 1309, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1318, 8, 69, 3, 69, 1320, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1329, 8, 70, 3, 70, 1331, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1340, 8, 71, 3, 71, 1342, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1347, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1356, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1365, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1374, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1385, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1391, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1396, 8, 78, 1, 78, 3, 78, 1399, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1412, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1422, 8, 80, 1, 80, 1, 80, 3, 80, 1426, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1431, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1440, 8, 82, 10, 82, 12, 82, 1443, 9, 82, 1, 82, 1, 82, 3, 82, 1447, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1478, 8, 93, 10, 93, 12, 93, 1481, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1486, 8, 94, 10, 94, 12, 94, 1489, 9, 94, 1, 95, 1, 95, 3, 95, 1493, 8, 95, 1, 96, 1, 96, 3, 96, 1497, 8, 96, 1, 97, 1, 97, 3, 97, 1501, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 1506, 8, 98, 1, 98, 1, 98, 3, 98, 1510, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1515, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1520, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1525, 8, 98, 1, 98, 1, 98, 3, 98, 1529, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1538, 8, 98, 1, 98, 3, 98, 1541, 8, 98, 1, 98, 1, 98, 3, 98, 1545, 8, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1550, 8, 99, 10, 99, 12, 99, 1553, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1563, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1569, 8, 101, 5, 101, 1571, 8, 101, 10, 101, 12, 101, 1574, 9, 101, 1, 101, 1, 101, 1, 102, 3, 102, 1579, 8, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1587, 8, 103, 10, 103, 12, 103, 1590, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1596, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1601, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1606, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1611, 8, 104, 1, 104, 1, 104, 5, 104, 1615, 8, 104, 10, 104, 12, 104, 1618, 9, 104, 3, 104, 1620, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1629, 8, 105, 1, 105, 3, 105, 1632, 8, 105, 1, 105, 3, 105, 1635, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1641, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1647, 8, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 1655, 8, 109, 10, 109, 12, 109, 1658, 9, 109, 3, 109, 1660, 8, 109, 1, 109, 1, 109, 3, 109, 1664, 8, 109, 1, 109, 1, 109, 3, 109, 1668, 8, 109, 1, 110, 3, 110, 1671, 8, 110, 1, 110, 1, 110, 5, 110, 1675, 8, 110, 10, 110, 12, 110, 1678, 9, 110, 3, 110, 1680, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 1686, 8, 111, 1, 111, 1, 111, 5, 111, 1690, 8, 111, 10, 111, 12, 111, 1693, 9, 111, 3, 111, 1695, 8, 111, 1, 112, 3, 112, 1698, 8, 112, 1, 112, 1, 112, 3, 112, 1702, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1712, 8, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 1721, 8, 116, 10, 116, 12, 116, 1724, 9, 116, 1, 116, 1, 116, 3, 116, 1728, 8, 116, 1, 116, 3, 116, 1731, 8, 116, 1, 117, 1, 117, 3, 117, 1735, 8, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 1742, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 1750, 8, 118, 10, 118, 12, 118, 1753, 9, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1764, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1770, 8, 119, 3, 119, 1772, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1781, 8, 120, 1, 120, 3, 120, 1784, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1791, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1801, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1807, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1813, 8, 124, 10, 124, 12, 124, 1816, 9, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1824, 8, 125, 10, 125, 12, 125, 1827, 9, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 5, 126, 1834, 8, 126, 10, 126, 12, 126, 1837, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1847, 8, 127, 3, 127, 1849, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1855, 8, 127, 1, 128, 1, 128, 1, 128, 3, 128, 1860, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 1868, 8, 129, 10, 129, 12, 129, 1871, 9, 129, 3, 129, 1873, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1879, 8, 129, 3, 129, 1881, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1889, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1895, 8, 130, 1, 130, 5, 130, 1898, 8, 130, 10, 130, 12, 130, 1901, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1910, 8, 131, 10, 131, 12, 131, 1913, 9, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1919, 8, 131, 1, 132, 1, 132, 3, 132, 1923, 8, 132, 1, 132, 1, 132, 3, 132, 1927, 8, 132, 1, 133, 1, 133, 3, 133, 1931, 8, 133, 1, 133, 3, 133, 1934, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1939, 8, 133, 10, 133, 12, 133, 1942, 9, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1948, 8, 133, 10, 133, 12, 133, 1951, 9, 133, 3, 133, 1953, 8, 133, 1, 133, 1, 133, 3, 133, 1957, 8, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1962, 8, 133, 1, 133, 1, 133, 3, 133, 1966, 8, 133, 1, 134, 3, 134, 1969, 8, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1974, 8, 134, 10, 134, 12, 134, 1977, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1985, 8, 136, 10, 136, 12, 136, 1988, 9, 136, 3, 136, 1990, 8, 136, 1, 136, 1, 136, 3, 136, 1994, 8, 136, 1, 137, 1, 137, 3, 137, 1998, 8, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 2007, 8, 139, 1, 139, 3, 139, 2010, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2017, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2031, 8, 140, 5, 140, 2033, 8, 140, 10, 140, 12, 140, 2036, 9, 140, 1, 141, 3, 141, 2039, 8, 141, 1, 141, 1, 141, 3, 141, 2043, 8, 141, 1, 141, 1, 141, 3, 141, 2047, 8, 141, 1, 141, 1, 141, 3, 141, 2051, 8, 141, 1, 141, 1, 141, 3, 141, 2055, 8, 141, 1, 141, 1, 141, 3, 141, 2059, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2069, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2078, 8, 142, 10, 142, 12, 142, 2081, 9, 142, 1, 142, 1, 142, 3, 142, 2085, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2098, 8, 143, 3, 143, 2100, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2106, 8, 145, 1, 145, 1, 145, 3, 145, 2110, 8, 145, 3, 145, 2112, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 5, 146, 2118, 8, 146, 10, 146, 12, 146, 2121, 9, 146, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2127, 8, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2132, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 2143, 8, 149, 10, 149, 12, 149, 2146, 9, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2151, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2159, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2166, 8, 153, 1, 153, 1, 153, 3, 153, 2170, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 5, 153, 2178, 8, 153, 10, 153, 12, 153, 2181, 9, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2191, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2199, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2206, 8, 154, 10, 154, 12, 154, 2209, 9, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2214, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2219, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2225, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2231, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2236, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2241, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2247, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 2258, 8, 155, 10, 155, 12, 155, 2261, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2287, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2293, 8, 156, 5, 156, 2295, 8, 156, 10, 156, 12, 156, 2298, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2307, 8, 156, 10, 156, 12, 156, 2310, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2319, 8, 156, 1, 156, 3, 156, 2322, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2327, 8, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2332, 8, 156, 10, 156, 12, 156, 2335, 9, 156, 3, 156, 2337, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2344, 8, 156, 10, 156, 12, 156, 2347, 9, 156, 3, 156, 2349, 8, 156, 1, 156, 1, 156, 3, 156, 2353, 8, 156, 1, 156, 3, 156, 2356, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2366, 8, 156, 10, 156, 12, 156, 2369, 9, 156, 3, 156, 2371, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 4, 156, 2388, 8, 156, 11, 156, 12, 156, 2389, 1, 156, 1, 156, 3, 156, 2394, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 4, 156, 2400, 8, 156, 11, 156, 12, 156, 2401, 1, 156, 1, 156, 3, 156, 2406, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2429, 8, 156, 10, 156, 12, 156, 2432, 9, 156, 3, 156, 2434, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2443, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2449, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2455, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2461, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2472, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2481, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2501, 8, 156, 10, 156, 12, 156, 2504, 9, 156, 3, 156, 2506, 8, 156, 1, 156, 3, 156, 2509, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2519, 8, 156, 10, 156, 12, 156, 2522, 9, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2528, 8, 157, 3, 157, 2530, 8, 157, 1, 158, 1, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2552, 8, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2581, 8, 164, 10, 164, 12, 164, 2584, 9, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2593, 8, 164, 10, 164, 12, 164, 2596, 9, 164, 1, 164, 1, 164, 3, 164, 2600, 8, 164, 3, 164, 2602, 8, 164, 1, 164, 1, 164, 5, 164, 2606, 8, 164, 10, 164, 12, 164, 2609, 9, 164, 1, 165, 1, 165, 3, 165, 2613, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2619, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2639, 8, 169, 10, 169, 12, 169, 2642, 9, 169, 3, 169, 2644, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2651, 8, 169, 10, 169, 12, 169, 2654, 9, 169, 3, 169, 2656, 8, 169, 1, 169, 3, 169, 2659, 8, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2679, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2690, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2697, 8, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2702, 8, 173, 10, 173, 12, 173, 2705, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2718, 8, 174, 3, 174, 2720, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 5, 176, 2727, 8, 176, 10, 176, 12, 176, 2730, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2738, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2745, 8, 178, 1, 179, 3, 179, 2748, 8, 179, 1, 179, 1, 179, 3, 179, 2752, 8, 179, 1, 179, 1, 179, 3, 179, 2756, 8, 179, 1, 179, 3, 179, 2759, 8, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 10, 768, 1441, 1616, 1656, 1676, 1691, 1722, 1751, 1825, 2296, 6, 260, 280, 306, 310, 312, 328, 182, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 0, 32, 2, 0, 46, 46, 171, 171, 2, 0, 167, 167, 206, 206, 2, 0, 177, 177, 204, 204, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 160, 160, 2, 0, 103, 103, 145, 145, 2, 0, 47, 47, 172, 172, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 167, 167, 206, 206, 2, 0, 179, 179, 211, 211, 1, 0, 229, 232, 2, 0, 148, 148, 221, 225, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 202, 202, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 187, 187, 3, 0, 106, 106, 115, 115, 165, 165, 2, 0, 105, 105, 164, 164, 4, 0, 70, 70, 134, 134, 196, 196, 210, 210, 1, 0, 239, 240, 1, 0, 241, 243, 1, 0, 233, 238, 3, 0, 2, 2, 6, 6, 182, 182, 2, 0, 70, 70, 196, 196, 5, 0, 48, 49, 91, 92, 123, 126, 173, 174, 219, 220, 1, 0, 128, 131, 2, 0, 77, 77, 150, 150, 4, 0, 46, 46, 179, 179, 190, 190, 211, 211, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 123, 123, 125, 125, 159, 159, 166, 166, 173, 173, 186, 186, 198, 198, 206, 206, 219, 219, 22, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 123, 126, 128, 131, 138, 138, 141, 141, 153, 154, 173, 174, 181, 181, 186, 187, 197, 197, 206, 206, 215, 215, 219, 219, 222, 222, 3088, 0, 367, 1, 0, 0, 0, 2, 372, 1, 0, 0, 0, 4, 398, 1, 0, 0, 0, 6, 400, 1, 0, 0, 0, 8, 411, 1, 0, 0, 0, 10, 413, 1, 0, 0, 0, 12, 452, 1, 0, 0, 0, 14, 474, 1, 0, 0, 0, 16, 529, 1, 0, 0, 0, 18, 549, 1, 0, 0, 0, 20, 563, 1, 0, 0, 0, 22, 567, 1, 0, 0, 0, 24, 629, 1, 0, 0, 0, 26, 677, 1, 0, 0, 0, 28, 679, 1, 0, 0, 0, 30, 687, 1, 0, 0, 0, 32, 707, 1, 0, 0, 0, 34, 727, 1, 0, 0, 0, 36, 734, 1, 0, 0, 0, 38, 743, 1, 0, 0, 0, 40, 751, 1, 0, 0, 0, 42, 773, 1, 0, 0, 0, 44, 783, 1, 0, 0, 0, 46, 801, 1, 0, 0, 0, 48, 822, 1, 0, 0, 0, 50, 843, 1, 0, 0, 0, 52, 849, 1, 0, 0, 0, 54, 866, 1, 0, 0, 0, 56, 875, 1, 0, 0, 0, 58, 882, 1, 0, 0, 0, 60, 890, 1, 0, 0, 0, 62, 897, 1, 0, 0, 0, 64, 904, 1, 0, 0, 0, 66, 913, 1, 0, 0, 0, 68, 924, 1, 0, 0, 0, 70, 926, 1, 0, 0, 0, 72, 946, 1, 0, 0, 0, 74, 960, 1, 0, 0, 0, 76, 962, 1, 0, 0, 0, 78, 971, 1, 0, 0, 0, 80, 978, 1, 0, 0, 0, 82, 987, 1, 0, 0, 0, 84, 997, 1, 0, 0, 0, 86, 1020, 1, 0, 0, 0, 88, 1026, 1, 0, 0, 0, 90, 1028, 1, 0, 0, 0, 92, 1035, 1, 0, 0, 0, 94, 1047, 1, 0, 0, 0, 96, 1049, 1, 0, 0, 0, 98, 1056, 1, 0, 0, 0, 100, 1077, 1, 0, 0, 0, 102, 1106, 1, 0, 0, 0, 104, 1108, 1, 0, 0, 0, 106, 1117, 1, 0, 0, 0, 108, 1140, 1, 0, 0, 0, 110, 1159, 1, 0, 0, 0, 112, 1182, 1, 0, 0, 0, 114, 1184, 1, 0, 0, 0, 116, 1199, 1, 0, 0, 0, 118, 1218, 1, 0, 0, 0, 120, 1240, 1, 0, 0, 0, 122, 1245, 1, 0, 0, 0, 124, 1250, 1, 0, 0, 0, 126, 1255, 1, 0, 0, 0, 128, 1260, 1, 0, 0, 0, 130, 1267, 1, 0, 0, 0, 132, 1282, 1, 0, 0, 0, 134, 1288, 1, 0, 0, 0, 136, 1308, 1, 0, 0, 0, 138, 1310, 1, 0, 0, 0, 140, 1321, 1, 0, 0, 0, 142, 1332, 1, 0, 0, 0, 144, 1346, 1, 0, 0, 0, 146, 1348, 1, 0, 0, 0, 148, 1357, 1, 0, 0, 0, 150, 1366, 1, 0, 0, 0, 152, 1375, 1, 0, 0, 0, 154, 1378, 1, 0, 0, 0, 156, 1386, 1, 0, 0, 0, 158, 1402, 1, 0, 0, 0, 160, 1406, 1, 0, 0, 0, 162, 1430, 1, 0, 0, 0, 164, 1432, 1, 0, 0, 0, 166, 1448, 1, 0, 0, 0, 168, 1451, 1, 0, 0, 0, 170, 1455, 1, 0, 0, 0, 172, 1458, 1, 0, 0, 0, 174, 1462, 1, 0, 0, 0, 176, 1464, 1, 0, 0, 0, 178, 1466, 1, 0, 0, 0, 180, 1468, 1, 0, 0, 0, 182, 1470, 1, 0, 0, 0, 184, 1472, 1, 0, 0, 0, 186, 1474, 1, 0, 0, 0, 188, 1482, 1, 0, 0, 0, 190, 1492, 1, 0, 0, 0, 192, 1496, 1, 0, 0, 0, 194, 1500, 1, 0, 0, 0, 196, 1505, 1, 0, 0, 0, 198, 1546, 1, 0, 0, 0, 200, 1554, 1, 0, 0, 0, 202, 1558, 1, 0, 0, 0, 204, 1578, 1, 0, 0, 0, 206, 1582, 1, 0, 0, 0, 208, 1591, 1, 0, 0, 0, 210, 1621, 1, 0, 0, 0, 212, 1636, 1, 0, 0, 0, 214, 1642, 1, 0, 0, 0, 216, 1648, 1, 0, 0, 0, 218, 1650, 1, 0, 0, 0, 220, 1670, 1, 0, 0, 0, 222, 1681, 1, 0, 0, 0, 224, 1701, 1, 0, 0, 0, 226, 1711, 1, 0, 0, 0, 228, 1713, 1, 0, 0, 0, 230, 1715, 1, 0, 0, 0, 232, 1730, 1, 0, 0, 0, 234, 1732, 1, 0, 0, 0, 236, 1739, 1, 0, 0, 0, 238, 1771, 1, 0, 0, 0, 240, 1783, 1, 0, 0, 0, 242, 1790, 1, 0, 0, 0, 244, 1800, 1, 0, 0, 0, 246, 1802, 1, 0, 0, 0, 248, 1808, 1, 0, 0, 0, 250, 1819, 1, 0, 0, 0, 252, 1830, 1, 0, 0, 0, 254, 1838, 1, 0, 0, 0, 256, 1856, 1, 0, 0, 0, 258, 1861, 1, 0, 0, 0, 260, 1882, 1, 0, 0, 0, 262, 1918, 1, 0, 0, 0, 264, 1920, 1, 0, 0, 0, 266, 1928, 1, 0, 0, 0, 268, 1968, 1, 0, 0, 0, 270, 1978, 1, 0, 0, 0, 272, 1993, 1, 0, 0, 0, 274, 1995, 1, 0, 0, 0, 276, 2002, 1, 0, 0, 0, 278, 2016, 1, 0, 0, 0, 280, 2018, 1, 0, 0, 0, 282, 2068, 1, 0, 0, 0, 284, 2084, 1, 0, 0, 0, 286, 2086, 1, 0, 0, 0, 288, 2101, 1, 0, 0, 0, 290, 2103, 1, 0, 0, 0, 292, 2113, 1, 0, 0, 0, 294, 2131, 1, 0, 0, 0, 296, 2133, 1, 0, 0, 0, 298, 2137, 1, 0, 0, 0, 300, 2152, 1, 0, 0, 0, 302, 2158, 1, 0, 0, 0, 304, 2160, 1, 0, 0, 0, 306, 2169, 1, 0, 0, 0, 308, 2240, 1, 0, 0, 0, 310, 2246, 1, 0, 0, 0, 312, 2508, 1, 0, 0, 0, 314, 2529, 1, 0, 0, 0, 316, 2531, 1, 0, 0, 0, 318, 2533, 1, 0, 0, 0, 320, 2535, 1, 0, 0, 0, 322, 2551, 1, 0, 0, 0, 324, 2553, 1, 0, 0, 0, 326, 2555, 1, 0, 0, 0, 328, 2601, 1, 0, 0, 0, 330, 2612, 1, 0, 0, 0, 332, 2618, 1, 0, 0, 0, 334, 2620, 1, 0, 0, 0, 336, 2625, 1, 0, 0, 0, 338, 2631, 1, 0, 0, 0, 340, 2678, 1, 0, 0, 0, 342, 2689, 1, 0, 0, 0, 344, 2696, 1, 0, 0, 0, 346, 2698, 1, 0, 0, 0, 348, 2719, 1, 0, 0, 0, 350, 2721, 1, 0, 0, 0, 352, 2723, 1, 0, 0, 0, 354, 2737, 1, 0, 0, 0, 356, 2744, 1, 0, 0, 0, 358, 2758, 1, 0, 0, 0, 360, 2760, 1, 0, 0, 0, 362, 2762, 1, 0, 0, 0, 364, 366, 3, 2, 1, 0, 365, 364, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 370, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 370, 371, 5, 0, 0, 1, 371, 1, 1, 0, 0, 0, 372, 374, 3, 4, 2, 0, 373, 375, 5, 246, 0, 0, 374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 3, 1, 0, 0, 0, 376, 399, 3, 204, 102, 0, 377, 399, 3, 6, 3, 0, 378, 399, 3, 8, 4, 0, 379, 399, 3, 26, 13, 0, 380, 399, 3, 64, 32, 0, 381, 399, 3, 66, 33, 0, 382, 399, 3, 68, 34, 0, 383, 399, 3, 74, 37, 0, 384, 399, 3, 88, 44, 0, 385, 399, 3, 94, 47, 0, 386, 399, 3, 100, 50, 0, 387, 399, 3, 102, 51, 0, 388, 399, 3, 108, 54, 0, 389, 399, 3, 110, 55, 0, 390, 399, 3, 112, 56, 0, 391, 399, 3, 144, 72, 0, 392, 399, 3, 152, 76, 0, 393, 399, 3, 154, 77, 0, 394, 399, 3, 156, 78, 0, 395, 399, 3, 158, 79, 0, 396, 399, 3, 160, 80, 0, 397, 399, 3, 162, 81, 0, 398, 376, 1, 0, 0, 0, 398, 377, 1, 0, 0, 0, 398, 378, 1, 0, 0, 0, 398, 379, 1, 0, 0, 0, 398, 380, 1, 0, 0, 0, 398, 381, 1, 0, 0, 0, 398, 382, 1, 0, 0, 0, 398, 383, 1, 0, 0, 0, 398, 384, 1, 0, 0, 0, 398, 385, 1, 0, 0, 0, 398, 386, 1, 0, 0, 0, 398, 387, 1, 0, 0, 0, 398, 388, 1, 0, 0, 0, 398, 389, 1, 0, 0, 0, 398, 390, 1, 0, 0, 0, 398, 391, 1, 0, 0, 0, 398, 392, 1, 0, 0, 0, 398, 393, 1, 0, 0, 0, 398, 394, 1, 0, 0, 0, 398, 395, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 398, 397, 1, 0, 0, 0, 399, 5, 1, 0, 0, 0, 400, 401, 5, 205, 0, 0, 401, 402, 3, 184, 92, 0, 402, 7, 1, 0, 0, 0, 403, 412, 3, 18, 9, 0, 404, 412, 3, 20, 10, 0, 405, 412, 3, 22, 11, 0, 406, 412, 3, 24, 12, 0, 407, 412, 3, 16, 8, 0, 408, 412, 3, 14, 7, 0, 409, 412, 3, 12, 6, 0, 410, 412, 3, 10, 5, 0, 411, 403, 1, 0, 0, 0, 411, 404, 1, 0, 0, 0, 411, 405, 1, 0, 0, 0, 411, 406, 1, 0, 0, 0, 411, 407, 1, 0, 0, 0, 411, 408, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 9, 1, 0, 0, 0, 413, 415, 5, 37, 0, 0, 414, 416, 5, 19, 0, 0, 415, 414, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 419, 5, 190, 0, 0, 418, 420, 3, 172, 86, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 437, 3, 174, 87, 0, 422, 423, 5, 249, 0, 0, 423, 428, 3, 214, 107, 0, 424, 425, 5, 247, 0, 0, 425, 427, 3, 214, 107, 0, 426, 424, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 433, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 431, 432, 5, 247, 0, 0, 432, 434, 3, 208, 104, 0, 433, 431, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 5, 250, 0, 0, 436, 438, 1, 0, 0, 0, 437, 422, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 445, 1, 0, 0, 0, 439, 440, 5, 17, 0, 0, 440, 443, 5, 26, 0, 0, 441, 444, 3, 292, 146, 0, 442, 444, 3, 250, 125, 0, 443, 441, 1, 0, 0, 0, 443, 442, 1, 0, 0, 0, 444, 446, 1, 0, 0, 0, 445, 439, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 450, 3, 196, 98, 0, 448, 449, 5, 9, 0, 0, 449, 451, 3, 204, 102, 0, 450, 448, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 11, 1, 0, 0, 0, 452, 454, 5, 37, 0, 0, 453, 455, 5, 19, 0, 0, 454, 453, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 458, 5, 190, 0, 0, 457, 459, 3, 172, 86, 0, 458, 457, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 3, 174, 87, 0, 461, 465, 5, 115, 0, 0, 462, 466, 3, 186, 93, 0, 463, 464, 5, 148, 0, 0, 464, 466, 3, 314, 157, 0, 465, 462, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 470, 1, 0, 0, 0, 467, 468, 5, 17, 0, 0, 468, 469, 5, 26, 0, 0, 469, 471, 3, 250, 125, 0, 470, 467, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 473, 3, 196, 98, 0, 473, 13, 1, 0, 0, 0, 474, 476, 5, 37, 0, 0, 475, 477, 5, 19, 0, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 480, 5, 190, 0, 0, 479, 481, 3, 172, 86, 0, 480, 479, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 500, 3, 174, 87, 0, 483, 484, 5, 249, 0, 0, 484, 489, 3, 216, 108, 0, 485, 486, 5, 247, 0, 0, 486, 488, 3, 216, 108, 0, 487, 485, 1, 0, 0, 0, 488, 491, 1, 0, 0, 0, 489, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 496, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 492, 493, 5, 247, 0, 0, 493, 494, 5, 151, 0, 0, 494, 495, 5, 110, 0, 0, 495, 497, 3, 292, 146, 0, 496, 492, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 5, 250, 0, 0, 499, 501, 1, 0, 0, 0, 500, 483, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 507, 1, 0, 0, 0, 502, 503, 5, 151, 0, 0, 503, 505, 5, 110, 0, 0, 504, 506, 3, 292, 146, 0, 505, 504, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 508, 1, 0, 0, 0, 507, 502, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 512, 1, 0, 0, 0, 509, 510, 5, 146, 0, 0, 510, 511, 5, 26, 0, 0, 511, 513, 3, 232, 116, 0, 512, 509, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 515, 5, 34, 0, 0, 515, 517, 3, 314, 157, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 5, 23, 0, 0, 519, 520, 5, 9, 0, 0, 520, 523, 5, 111, 0, 0, 521, 522, 5, 25, 0, 0, 522, 524, 3, 248, 124, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 527, 1, 0, 0, 0, 525, 526, 5, 9, 0, 0, 526, 528, 3, 204, 102, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 15, 1, 0, 0, 0, 529, 530, 5, 37, 0, 0, 530, 532, 5, 214, 0, 0, 531, 533, 3, 172, 86, 0, 532, 531, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 3, 178, 89, 0, 535, 537, 3, 202, 101, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 539, 5, 34, 0, 0, 539, 541, 3, 314, 157, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 543, 5, 25, 0, 0, 543, 545, 3, 248, 124, 0, 544, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 5, 9, 0, 0, 547, 548, 3, 204, 102, 0, 548, 17, 1, 0, 0, 0, 549, 550, 5, 37, 0, 0, 550, 552, 7, 0, 0, 0, 551, 553, 3, 172, 86, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 557, 3, 176, 88, 0, 555, 556, 5, 34, 0, 0, 556, 558, 3, 314, 157, 0, 557, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 561, 1, 0, 0, 0, 559, 560, 5, 24, 0, 0, 560, 562, 3, 314, 157, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 19, 1, 0, 0, 0, 563, 564, 5, 37, 0, 0, 564, 565, 5, 167, 0, 0, 565, 566, 3, 356, 178, 0, 566, 21, 1, 0, 0, 0, 567, 569, 5, 37, 0, 0, 568, 570, 5, 12, 0, 0, 569, 568, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 573, 5, 84, 0, 0, 572, 574, 3, 172, 86, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 588, 3, 180, 90, 0, 576, 585, 5, 249, 0, 0, 577, 582, 3, 328, 164, 0, 578, 579, 5, 247, 0, 0, 579, 581, 3, 328, 164, 0, 580, 578, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 585, 577, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 589, 5, 250, 0, 0, 588, 576, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 5, 161, 0, 0, 591, 594, 3, 328, 164, 0, 592, 593, 5, 102, 0, 0, 593, 595, 3, 328, 164, 0, 594, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 24, 0, 0, 597, 601, 5, 258, 0, 0, 598, 599, 5, 104, 0, 0, 599, 600, 5, 233, 0, 0, 600, 602, 5, 258, 0, 0, 601, 598, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 5, 208, 0, 0, 604, 605, 5, 233, 0, 0, 605, 606, 5, 258, 0, 0, 606, 607, 5, 127, 0, 0, 607, 608, 5, 233, 0, 0, 608, 612, 5, 258, 0, 0, 609, 610, 5, 18, 0, 0, 610, 611, 5, 233, 0, 0, 611, 613, 5, 258, 0, 0, 612, 609, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 617, 1, 0, 0, 0, 614, 615, 5, 20, 0, 0, 615, 616, 5, 233, 0, 0, 616, 618, 5, 258, 0, 0, 617, 614, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 622, 1, 0, 0, 0, 619, 620, 5, 189, 0, 0, 620, 621, 5, 233, 0, 0, 621, 623, 5, 258, 0, 0, 622, 619, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 627, 1, 0, 0, 0, 624, 625, 5, 76, 0, 0, 625, 626, 5, 233, 0, 0, 626, 628, 5, 258, 0, 0, 627, 624, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 23, 1, 0, 0, 0, 629, 630, 5, 37, 0, 0, 630, 632, 5, 84, 0, 0, 631, 633, 3, 172, 86, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 647, 3, 180, 90, 0, 635, 644, 5, 249, 0, 0, 636, 641, 3, 328, 164, 0, 637, 638, 5, 247, 0, 0, 638, 640, 3, 328, 164, 0, 639, 637, 1, 0, 0, 0, 640, 643, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 644, 636, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 648, 5, 250, 0, 0, 647, 635, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 651, 1, 0, 0, 0, 649, 650, 5, 161, 0, 0, 650, 652, 3, 328, 164, 0, 651, 649, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 5, 24, 0, 0, 654, 655, 5, 258, 0, 0, 655, 656, 5, 188, 0, 0, 656, 657, 5, 233, 0, 0, 657, 658, 3, 314, 157, 0, 658, 25, 1, 0, 0, 0, 659, 678, 3, 28, 14, 0, 660, 678, 3, 62, 31, 0, 661, 678, 3, 60, 30, 0, 662, 678, 3, 58, 29, 0, 663, 678, 3, 54, 27, 0, 664, 678, 3, 56, 28, 0, 665, 678, 3, 52, 26, 0, 666, 678, 3, 48, 24, 0, 667, 678, 3, 50, 25, 0, 668, 678, 3, 46, 23, 0, 669, 678, 3, 44, 22, 0, 670, 678, 3, 42, 21, 0, 671, 678, 3, 40, 20, 0, 672, 678, 3, 34, 17, 0, 673, 678, 3, 30, 15, 0, 674, 678, 3, 32, 16, 0, 675, 678, 3, 36, 18, 0, 676, 678, 3, 38, 19, 0, 677, 659, 1, 0, 0, 0, 677, 660, 1, 0, 0, 0, 677, 661, 1, 0, 0, 0, 677, 662, 1, 0, 0, 0, 677, 663, 1, 0, 0, 0, 677, 664, 1, 0, 0, 0, 677, 665, 1, 0, 0, 0, 677, 666, 1, 0, 0, 0, 677, 667, 1, 0, 0, 0, 677, 668, 1, 0, 0, 0, 677, 669, 1, 0, 0, 0, 677, 670, 1, 0, 0, 0, 677, 671, 1, 0, 0, 0, 677, 672, 1, 0, 0, 0, 677, 673, 1, 0, 0, 0, 677, 674, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, 676, 1, 0, 0, 0, 678, 27, 1, 0, 0, 0, 679, 680, 5, 4, 0, 0, 680, 681, 5, 46, 0, 0, 681, 682, 3, 184, 92, 0, 682, 683, 5, 177, 0, 0, 683, 684, 5, 143, 0, 0, 684, 685, 7, 1, 0, 0, 685, 686, 3, 356, 178, 0, 686, 29, 1, 0, 0, 0, 687, 688, 5, 4, 0, 0, 688, 689, 5, 190, 0, 0, 689, 690, 3, 186, 93, 0, 690, 691, 5, 177, 0, 0, 691, 692, 5, 32, 0, 0, 692, 693, 5, 183, 0, 0, 693, 694, 3, 192, 96, 0, 694, 695, 5, 249, 0, 0, 695, 696, 3, 228, 114, 0, 696, 697, 5, 233, 0, 0, 697, 703, 3, 314, 157, 0, 698, 699, 5, 247, 0, 0, 699, 700, 3, 228, 114, 0, 700, 701, 5, 233, 0, 0, 701, 702, 3, 314, 157, 0, 702, 704, 1, 0, 0, 0, 703, 698, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 5, 250, 0, 0, 706, 31, 1, 0, 0, 0, 707, 708, 5, 4, 0, 0, 708, 709, 5, 190, 0, 0, 709, 712, 3, 186, 93, 0, 710, 711, 5, 146, 0, 0, 711, 713, 3, 304, 152, 0, 712, 710, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 725, 5, 177, 0, 0, 715, 716, 5, 30, 0, 0, 716, 717, 5, 94, 0, 0, 717, 722, 3, 314, 157, 0, 718, 719, 5, 218, 0, 0, 719, 720, 5, 152, 0, 0, 720, 721, 5, 233, 0, 0, 721, 723, 3, 358, 179, 0, 722, 718, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 726, 5, 199, 0, 0, 725, 715, 1, 0, 0, 0, 725, 724, 1, 0, 0, 0, 726, 33, 1, 0, 0, 0, 727, 728, 5, 4, 0, 0, 728, 729, 5, 190, 0, 0, 729, 730, 3, 186, 93, 0, 730, 731, 5, 31, 0, 0, 731, 732, 5, 32, 0, 0, 732, 733, 3, 220, 110, 0, 733, 35, 1, 0, 0, 0, 734, 735, 5, 4, 0, 0, 735, 736, 5, 190, 0, 0, 736, 737, 3, 186, 93, 0, 737, 739, 5, 58, 0, 0, 738, 740, 5, 32, 0, 0, 739, 738, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 3, 192, 96, 0, 742, 37, 1, 0, 0, 0, 743, 744, 5, 4, 0, 0, 744, 745, 5, 190, 0, 0, 745, 746, 3, 186, 93, 0, 746, 747, 5, 177, 0, 0, 747, 748, 5, 143, 0, 0, 748, 749, 7, 1, 0, 0, 749, 750, 3, 356, 178, 0, 750, 39, 1, 0, 0, 0, 751, 752, 5, 4, 0, 0, 752, 753, 5, 190, 0, 0, 753, 759, 3, 186, 93, 0, 754, 760, 5, 159, 0, 0, 755, 757, 5, 1, 0, 0, 756, 758, 3, 172, 86, 0, 757, 756, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 760, 1, 0, 0, 0, 759, 754, 1, 0, 0, 0, 759, 755, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 5, 33, 0, 0, 762, 763, 5, 249, 0, 0, 763, 768, 3, 220, 110, 0, 764, 765, 5, 247, 0, 0, 765, 767, 3, 220, 110, 0, 766, 764, 1, 0, 0, 0, 767, 770, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 769, 771, 1, 0, 0, 0, 770, 768, 1, 0, 0, 0, 771, 772, 5, 250, 0, 0, 772, 41, 1, 0, 0, 0, 773, 774, 5, 4, 0, 0, 774, 775, 5, 190, 0, 0, 775, 776, 3, 186, 93, 0, 776, 777, 5, 1, 0, 0, 777, 779, 5, 32, 0, 0, 778, 780, 3, 172, 86, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 3, 222, 111, 0, 782, 43, 1, 0, 0, 0, 783, 784, 5, 4, 0, 0, 784, 785, 5, 190, 0, 0, 785, 786, 3, 186, 93, 0, 786, 788, 5, 4, 0, 0, 787, 789, 5, 32, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 799, 3, 192, 96, 0, 791, 795, 5, 177, 0, 0, 792, 796, 3, 226, 113, 0, 793, 794, 5, 34, 0, 0, 794, 796, 3, 314, 157, 0, 795, 792, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 800, 1, 0, 0, 0, 797, 798, 5, 58, 0, 0, 798, 800, 5, 51, 0, 0, 799, 791, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 45, 1, 0, 0, 0, 801, 802, 5, 4, 0, 0, 802, 803, 5, 190, 0, 0, 803, 804, 3, 186, 93, 0, 804, 806, 5, 1, 0, 0, 805, 807, 3, 172, 86, 0, 806, 805, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 820, 1, 0, 0, 0, 808, 809, 5, 146, 0, 0, 809, 812, 3, 304, 152, 0, 810, 811, 5, 24, 0, 0, 811, 813, 3, 314, 157, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 1, 0, 0, 0, 814, 816, 3, 240, 120, 0, 815, 814, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 821, 1, 0, 0, 0, 817, 818, 5, 155, 0, 0, 818, 819, 5, 146, 0, 0, 819, 821, 3, 238, 119, 0, 820, 808, 1, 0, 0, 0, 820, 817, 1, 0, 0, 0, 821, 47, 1, 0, 0, 0, 822, 823, 5, 4, 0, 0, 823, 824, 5, 190, 0, 0, 824, 827, 3, 186, 93, 0, 825, 826, 5, 146, 0, 0, 826, 828, 3, 304, 152, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 841, 5, 177, 0, 0, 830, 831, 5, 72, 0, 0, 831, 842, 3, 230, 115, 0, 832, 833, 5, 169, 0, 0, 833, 834, 5, 79, 0, 0, 834, 842, 3, 254, 127, 0, 835, 836, 5, 24, 0, 0, 836, 842, 3, 314, 157, 0, 837, 838, 5, 25, 0, 0, 838, 842, 3, 248, 124, 0, 839, 840, 5, 176, 0, 0, 840, 842, 3, 248, 124, 0, 841, 830, 1, 0, 0, 0, 841, 832, 1, 0, 0, 0, 841, 835, 1, 0, 0, 0, 841, 837, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 842, 49, 1, 0, 0, 0, 843, 844, 5, 4, 0, 0, 844, 845, 5, 190, 0, 0, 845, 846, 3, 186, 93, 0, 846, 847, 5, 156, 0, 0, 847, 848, 5, 147, 0, 0, 848, 51, 1, 0, 0, 0, 849, 850, 5, 4, 0, 0, 850, 851, 5, 190, 0, 0, 851, 852, 3, 186, 93, 0, 852, 854, 5, 58, 0, 0, 853, 855, 3, 170, 85, 0, 854, 853, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 864, 1, 0, 0, 0, 856, 857, 5, 146, 0, 0, 857, 859, 3, 304, 152, 0, 858, 860, 5, 22, 0, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 865, 1, 0, 0, 0, 861, 862, 5, 155, 0, 0, 862, 863, 5, 146, 0, 0, 863, 865, 3, 238, 119, 0, 864, 856, 1, 0, 0, 0, 864, 861, 1, 0, 0, 0, 865, 53, 1, 0, 0, 0, 866, 867, 5, 4, 0, 0, 867, 868, 5, 214, 0, 0, 868, 870, 3, 188, 94, 0, 869, 871, 3, 202, 101, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 5, 9, 0, 0, 873, 874, 3, 204, 102, 0, 874, 55, 1, 0, 0, 0, 875, 876, 5, 4, 0, 0, 876, 877, 5, 214, 0, 0, 877, 878, 3, 188, 94, 0, 878, 879, 5, 157, 0, 0, 879, 880, 5, 195, 0, 0, 880, 881, 3, 188, 94, 0, 881, 57, 1, 0, 0, 0, 882, 883, 5, 4, 0, 0, 883, 884, 5, 214, 0, 0, 884, 885, 3, 188, 94, 0, 885, 886, 5, 177, 0, 0, 886, 887, 5, 143, 0, 0, 887, 888, 7, 1, 0, 0, 888, 889, 3, 352, 176, 0, 889, 59, 1, 0, 0, 0, 890, 891, 5, 4, 0, 0, 891, 892, 5, 190, 0, 0, 892, 893, 3, 186, 93, 0, 893, 894, 5, 157, 0, 0, 894, 895, 5, 195, 0, 0, 895, 896, 3, 186, 93, 0, 896, 61, 1, 0, 0, 0, 897, 898, 5, 4, 0, 0, 898, 899, 5, 214, 0, 0, 899, 900, 3, 188, 94, 0, 900, 901, 7, 2, 0, 0, 901, 902, 5, 25, 0, 0, 902, 903, 3, 248, 124, 0, 903, 63, 1, 0, 0, 0, 904, 906, 5, 198, 0, 0, 905, 907, 5, 190, 0, 0, 906, 905, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 909, 1, 0, 0, 0, 908, 910, 3, 170, 85, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 3, 186, 93, 0, 912, 65, 1, 0, 0, 0, 913, 915, 5, 56, 0, 0, 914, 916, 5, 46, 0, 0, 915, 914, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 918, 1, 0, 0, 0, 917, 919, 7, 3, 0, 0, 918, 917, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 921, 3, 352, 176, 0, 921, 67, 1, 0, 0, 0, 922, 925, 3, 70, 35, 0, 923, 925, 3, 72, 36, 0, 924, 922, 1, 0, 0, 0, 924, 923, 1, 0, 0, 0, 925, 69, 1, 0, 0, 0, 926, 927, 5, 36, 0, 0, 927, 928, 5, 183, 0, 0, 928, 930, 3, 186, 93, 0, 929, 931, 3, 292, 146, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 944, 1, 0, 0, 0, 932, 933, 5, 192, 0, 0, 933, 934, 5, 187, 0, 0, 934, 935, 5, 249, 0, 0, 935, 936, 3, 358, 179, 0, 936, 942, 5, 250, 0, 0, 937, 938, 5, 158, 0, 0, 938, 939, 5, 249, 0, 0, 939, 940, 3, 358, 179, 0, 940, 941, 5, 250, 0, 0, 941, 943, 1, 0, 0, 0, 942, 937, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 945, 1, 0, 0, 0, 944, 932, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 71, 1, 0, 0, 0, 946, 947, 5, 36, 0, 0, 947, 948, 5, 96, 0, 0, 948, 949, 5, 183, 0, 0, 949, 952, 3, 186, 93, 0, 950, 951, 5, 146, 0, 0, 951, 953, 3, 304, 152, 0, 952, 950, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 73, 1, 0, 0, 0, 954, 961, 3, 86, 43, 0, 955, 961, 3, 84, 42, 0, 956, 961, 3, 82, 41, 0, 957, 961, 3, 78, 39, 0, 958, 961, 3, 80, 40, 0, 959, 961, 3, 76, 38, 0, 960, 954, 1, 0, 0, 0, 960, 955, 1, 0, 0, 0, 960, 956, 1, 0, 0, 0, 960, 957, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 960, 959, 1, 0, 0, 0, 961, 75, 1, 0, 0, 0, 962, 963, 5, 58, 0, 0, 963, 965, 7, 0, 0, 0, 964, 966, 3, 170, 85, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 969, 3, 184, 92, 0, 968, 970, 7, 4, 0, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 77, 1, 0, 0, 0, 971, 972, 5, 58, 0, 0, 972, 974, 5, 214, 0, 0, 973, 975, 3, 170, 85, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 977, 3, 188, 94, 0, 977, 79, 1, 0, 0, 0, 978, 979, 5, 58, 0, 0, 979, 981, 5, 190, 0, 0, 980, 982, 3, 170, 85, 0, 981, 980, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 985, 3, 186, 93, 0, 984, 986, 5, 22, 0, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 81, 1, 0, 0, 0, 987, 989, 5, 58, 0, 0, 988, 990, 5, 96, 0, 0, 989, 988, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 992, 5, 183, 0, 0, 992, 995, 3, 186, 93, 0, 993, 994, 5, 146, 0, 0, 994, 996, 3, 304, 152, 0, 995, 993, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 83, 1, 0, 0, 0, 997, 999, 5, 58, 0, 0, 998, 1000, 5, 12, 0, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1003, 5, 84, 0, 0, 1002, 1004, 3, 170, 85, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1018, 3, 190, 95, 0, 1006, 1015, 5, 249, 0, 0, 1007, 1012, 3, 328, 164, 0, 1008, 1009, 5, 247, 0, 0, 1009, 1011, 3, 328, 164, 0, 1010, 1008, 1, 0, 0, 0, 1011, 1014, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1016, 1, 0, 0, 0, 1014, 1012, 1, 0, 0, 0, 1015, 1007, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1019, 5, 250, 0, 0, 1018, 1006, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 85, 1, 0, 0, 0, 1020, 1021, 5, 58, 0, 0, 1021, 1022, 5, 167, 0, 0, 1022, 1023, 3, 356, 178, 0, 1023, 87, 1, 0, 0, 0, 1024, 1027, 3, 90, 45, 0, 1025, 1027, 3, 92, 46, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1025, 1, 0, 0, 0, 1027, 89, 1, 0, 0, 0, 1028, 1029, 5, 86, 0, 0, 1029, 1030, 5, 167, 0, 0, 1030, 1031, 3, 356, 178, 0, 1031, 1032, 5, 195, 0, 0, 1032, 1033, 5, 87, 0, 0, 1033, 1034, 3, 356, 178, 0, 1034, 91, 1, 0, 0, 0, 1035, 1036, 5, 86, 0, 0, 1036, 1037, 3, 348, 174, 0, 1037, 1038, 5, 137, 0, 0, 1038, 1040, 3, 350, 175, 0, 1039, 1041, 3, 352, 176, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 5, 195, 0, 0, 1043, 1044, 3, 354, 177, 0, 1044, 93, 1, 0, 0, 0, 1045, 1048, 3, 96, 48, 0, 1046, 1048, 3, 98, 49, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1046, 1, 0, 0, 0, 1048, 95, 1, 0, 0, 0, 1049, 1050, 5, 162, 0, 0, 1050, 1051, 5, 167, 0, 0, 1051, 1052, 3, 356, 178, 0, 1052, 1053, 5, 82, 0, 0, 1053, 1054, 5, 87, 0, 0, 1054, 1055, 3, 356, 178, 0, 1055, 97, 1, 0, 0, 0, 1056, 1060, 5, 162, 0, 0, 1057, 1058, 5, 86, 0, 0, 1058, 1059, 5, 138, 0, 0, 1059, 1061, 5, 78, 0, 0, 1060, 1057, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 3, 348, 174, 0, 1063, 1064, 5, 137, 0, 0, 1064, 1066, 3, 350, 175, 0, 1065, 1067, 3, 352, 176, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1074, 5, 82, 0, 0, 1069, 1075, 3, 354, 177, 0, 1070, 1072, 5, 167, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 3, 356, 178, 0, 1074, 1069, 1, 0, 0, 0, 1074, 1071, 1, 0, 0, 0, 1075, 99, 1, 0, 0, 0, 1076, 1078, 3, 206, 103, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 5, 99, 0, 0, 1080, 1082, 7, 5, 0, 0, 1081, 1083, 5, 190, 0, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1086, 3, 186, 93, 0, 1085, 1087, 3, 292, 146, 0, 1086, 1085, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1100, 1, 0, 0, 0, 1088, 1089, 5, 146, 0, 0, 1089, 1090, 5, 249, 0, 0, 1090, 1095, 3, 304, 152, 0, 1091, 1092, 5, 247, 0, 0, 1092, 1094, 3, 304, 152, 0, 1093, 1091, 1, 0, 0, 0, 1094, 1097, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1098, 1099, 5, 250, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1088, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 3, 204, 102, 0, 1103, 101, 1, 0, 0, 0, 1104, 1107, 3, 104, 52, 0, 1105, 1107, 3, 106, 53, 0, 1106, 1104, 1, 0, 0, 0, 1106, 1105, 1, 0, 0, 0, 1107, 103, 1, 0, 0, 0, 1108, 1110, 5, 50, 0, 0, 1109, 1111, 5, 82, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1115, 3, 186, 93, 0, 1113, 1114, 5, 217, 0, 0, 1114, 1116, 3, 306, 153, 0, 1115, 1113, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 105, 1, 0, 0, 0, 1117, 1118, 5, 50, 0, 0, 1118, 1123, 3, 186, 93, 0, 1119, 1121, 5, 9, 0, 0, 1120, 1119, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1124, 3, 356, 178, 0, 1123, 1120, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1134, 5, 82, 0, 0, 1126, 1131, 3, 280, 140, 0, 1127, 1128, 5, 247, 0, 0, 1128, 1130, 3, 280, 140, 0, 1129, 1127, 1, 0, 0, 0, 1130, 1133, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1134, 1126, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1137, 5, 217, 0, 0, 1137, 1139, 3, 306, 153, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 107, 1, 0, 0, 0, 1140, 1141, 5, 54, 0, 0, 1141, 1142, 3, 186, 93, 0, 1142, 1143, 5, 177, 0, 0, 1143, 1153, 3, 198, 99, 0, 1144, 1145, 5, 82, 0, 0, 1145, 1150, 3, 280, 140, 0, 1146, 1147, 5, 247, 0, 0, 1147, 1149, 3, 280, 140, 0, 1148, 1146, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1154, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1144, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1156, 5, 217, 0, 0, 1156, 1158, 3, 306, 153, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 109, 1, 0, 0, 0, 1159, 1160, 5, 209, 0, 0, 1160, 1162, 5, 103, 0, 0, 1161, 1163, 5, 190, 0, 0, 1162, 1161, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1166, 3, 186, 93, 0, 1165, 1167, 3, 292, 146, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1169, 3, 204, 102, 0, 1169, 111, 1, 0, 0, 0, 1170, 1183, 3, 132, 66, 0, 1171, 1183, 3, 134, 67, 0, 1172, 1183, 3, 136, 68, 0, 1173, 1183, 3, 130, 65, 0, 1174, 1183, 3, 128, 64, 0, 1175, 1183, 3, 126, 63, 0, 1176, 1183, 3, 124, 62, 0, 1177, 1183, 3, 122, 61, 0, 1178, 1183, 3, 120, 60, 0, 1179, 1183, 3, 118, 59, 0, 1180, 1183, 3, 116, 58, 0, 1181, 1183, 3, 114, 57, 0, 1182, 1170, 1, 0, 0, 0, 1182, 1171, 1, 0, 0, 0, 1182, 1172, 1, 0, 0, 0, 1182, 1173, 1, 0, 0, 0, 1182, 1174, 1, 0, 0, 0, 1182, 1175, 1, 0, 0, 0, 1182, 1176, 1, 0, 0, 0, 1182, 1177, 1, 0, 0, 0, 1182, 1178, 1, 0, 0, 0, 1182, 1179, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1181, 1, 0, 0, 0, 1183, 113, 1, 0, 0, 0, 1184, 1185, 5, 180, 0, 0, 1185, 1197, 7, 6, 0, 0, 1186, 1188, 5, 115, 0, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1194, 3, 314, 157, 0, 1190, 1191, 5, 255, 0, 0, 1191, 1193, 3, 314, 157, 0, 1192, 1190, 1, 0, 0, 0, 1193, 1196, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1198, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1187, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 115, 1, 0, 0, 0, 1199, 1200, 5, 180, 0, 0, 1200, 1203, 5, 191, 0, 0, 1201, 1202, 5, 94, 0, 0, 1202, 1204, 3, 186, 93, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1216, 1, 0, 0, 0, 1205, 1207, 5, 115, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1213, 3, 314, 157, 0, 1209, 1210, 5, 255, 0, 0, 1210, 1212, 3, 314, 157, 0, 1211, 1209, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1217, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1206, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 117, 1, 0, 0, 0, 1218, 1220, 5, 180, 0, 0, 1219, 1221, 7, 7, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1225, 5, 85, 0, 0, 1223, 1224, 5, 94, 0, 0, 1224, 1226, 3, 184, 92, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1238, 1, 0, 0, 0, 1227, 1229, 5, 115, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1235, 3, 314, 157, 0, 1231, 1232, 5, 255, 0, 0, 1232, 1234, 3, 314, 157, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1237, 1, 0, 0, 0, 1235, 1233, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1239, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1228, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 119, 1, 0, 0, 0, 1240, 1241, 5, 180, 0, 0, 1241, 1242, 5, 37, 0, 0, 1242, 1243, 5, 190, 0, 0, 1243, 1244, 3, 186, 93, 0, 1244, 121, 1, 0, 0, 0, 1245, 1246, 5, 180, 0, 0, 1246, 1247, 5, 37, 0, 0, 1247, 1248, 5, 214, 0, 0, 1248, 1249, 3, 188, 94, 0, 1249, 123, 1, 0, 0, 0, 1250, 1251, 5, 180, 0, 0, 1251, 1252, 5, 190, 0, 0, 1252, 1253, 5, 183, 0, 0, 1253, 1254, 3, 186, 93, 0, 1254, 125, 1, 0, 0, 0, 1255, 1256, 5, 180, 0, 0, 1256, 1257, 5, 32, 0, 0, 1257, 1258, 5, 183, 0, 0, 1258, 1259, 3, 186, 93, 0, 1259, 127, 1, 0, 0, 0, 1260, 1262, 5, 180, 0, 0, 1261, 1263, 5, 155, 0, 0, 1262, 1261, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1265, 5, 147, 0, 0, 1265, 1266, 3, 186, 93, 0, 1266, 129, 1, 0, 0, 0, 1267, 1268, 5, 180, 0, 0, 1268, 1269, 5, 73, 0, 0, 1269, 1270, 5, 94, 0, 0, 1270, 1280, 3, 186, 93, 0, 1271, 1272, 5, 146, 0, 0, 1272, 1273, 5, 249, 0, 0, 1273, 1276, 3, 304, 152, 0, 1274, 1275, 5, 247, 0, 0, 1275, 1277, 3, 304, 152, 0, 1276, 1274, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 5, 250, 0, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1271, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 131, 1, 0, 0, 0, 1282, 1284, 5, 180, 0, 0, 1283, 1285, 5, 39, 0, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 5, 168, 0, 0, 1287, 133, 1, 0, 0, 0, 1288, 1289, 5, 180, 0, 0, 1289, 1290, 5, 167, 0, 0, 1290, 1291, 5, 86, 0, 0, 1291, 1292, 5, 87, 0, 0, 1292, 1293, 3, 356, 178, 0, 1293, 135, 1, 0, 0, 0, 1294, 1309, 3, 138, 69, 0, 1295, 1309, 3, 140, 70, 0, 1296, 1309, 3, 142, 71, 0, 1297, 1298, 5, 180, 0, 0, 1298, 1299, 5, 86, 0, 0, 1299, 1300, 7, 8, 0, 0, 1300, 1306, 3, 356, 178, 0, 1301, 1302, 5, 137, 0, 0, 1302, 1304, 7, 9, 0, 0, 1303, 1305, 3, 352, 176, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1307, 1, 0, 0, 0, 1306, 1301, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1309, 1, 0, 0, 0, 1308, 1294, 1, 0, 0, 0, 1308, 1295, 1, 0, 0, 0, 1308, 1296, 1, 0, 0, 0, 1308, 1297, 1, 0, 0, 0, 1309, 137, 1, 0, 0, 0, 1310, 1311, 5, 180, 0, 0, 1311, 1312, 5, 86, 0, 0, 1312, 1313, 7, 8, 0, 0, 1313, 1319, 3, 356, 178, 0, 1314, 1315, 5, 137, 0, 0, 1315, 1317, 5, 46, 0, 0, 1316, 1318, 3, 184, 92, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1314, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 139, 1, 0, 0, 0, 1321, 1322, 5, 180, 0, 0, 1322, 1323, 5, 86, 0, 0, 1323, 1324, 7, 8, 0, 0, 1324, 1330, 3, 356, 178, 0, 1325, 1326, 5, 137, 0, 0, 1326, 1328, 5, 190, 0, 0, 1327, 1329, 3, 186, 93, 0, 1328, 1327, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 1, 0, 0, 0, 1330, 1325, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 141, 1, 0, 0, 0, 1332, 1333, 5, 180, 0, 0, 1333, 1334, 5, 86, 0, 0, 1334, 1335, 7, 8, 0, 0, 1335, 1341, 3, 356, 178, 0, 1336, 1337, 5, 137, 0, 0, 1337, 1339, 5, 32, 0, 0, 1338, 1340, 3, 192, 96, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1336, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 143, 1, 0, 0, 0, 1343, 1347, 3, 146, 73, 0, 1344, 1347, 3, 148, 74, 0, 1345, 1347, 3, 150, 75, 0, 1346, 1343, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1346, 1345, 1, 0, 0, 0, 1347, 145, 1, 0, 0, 0, 1348, 1349, 5, 34, 0, 0, 1349, 1350, 5, 137, 0, 0, 1350, 1351, 5, 46, 0, 0, 1351, 1352, 3, 184, 92, 0, 1352, 1355, 5, 108, 0, 0, 1353, 1356, 3, 314, 157, 0, 1354, 1356, 5, 134, 0, 0, 1355, 1353, 1, 0, 0, 0, 1355, 1354, 1, 0, 0, 0, 1356, 147, 1, 0, 0, 0, 1357, 1358, 5, 34, 0, 0, 1358, 1359, 5, 137, 0, 0, 1359, 1360, 5, 190, 0, 0, 1360, 1361, 3, 186, 93, 0, 1361, 1364, 5, 108, 0, 0, 1362, 1365, 3, 314, 157, 0, 1363, 1365, 5, 134, 0, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1363, 1, 0, 0, 0, 1365, 149, 1, 0, 0, 0, 1366, 1367, 5, 34, 0, 0, 1367, 1368, 5, 137, 0, 0, 1368, 1369, 5, 32, 0, 0, 1369, 1370, 3, 192, 96, 0, 1370, 1373, 5, 108, 0, 0, 1371, 1374, 3, 314, 157, 0, 1372, 1374, 5, 134, 0, 0, 1373, 1371, 1, 0, 0, 0, 1373, 1372, 1, 0, 0, 0, 1374, 151, 1, 0, 0, 0, 1375, 1376, 5, 67, 0, 0, 1376, 1377, 3, 4, 2, 0, 1377, 153, 1, 0, 0, 0, 1378, 1384, 5, 177, 0, 0, 1379, 1385, 5, 2, 0, 0, 1380, 1381, 3, 356, 178, 0, 1381, 1382, 5, 233, 0, 0, 1382, 1383, 3, 304, 152, 0, 1383, 1385, 1, 0, 0, 0, 1384, 1379, 1, 0, 0, 0, 1384, 1380, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 155, 1, 0, 0, 0, 1386, 1387, 5, 248, 0, 0, 1387, 1388, 5, 181, 0, 0, 1388, 1398, 5, 249, 0, 0, 1389, 1391, 3, 314, 157, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1399, 1, 0, 0, 0, 1392, 1395, 3, 314, 157, 0, 1393, 1394, 5, 247, 0, 0, 1394, 1396, 3, 304, 152, 0, 1395, 1393, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1399, 3, 304, 152, 0, 1398, 1390, 1, 0, 0, 0, 1398, 1392, 1, 0, 0, 0, 1398, 1397, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 5, 250, 0, 0, 1401, 157, 1, 0, 0, 0, 1402, 1403, 5, 107, 0, 0, 1403, 1404, 5, 121, 0, 0, 1404, 1405, 3, 186, 93, 0, 1405, 159, 1, 0, 0, 0, 1406, 1407, 5, 118, 0, 0, 1407, 1408, 5, 45, 0, 0, 1408, 1409, 5, 98, 0, 0, 1409, 1411, 5, 258, 0, 0, 1410, 1412, 5, 145, 0, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1414, 5, 103, 0, 0, 1414, 1415, 5, 190, 0, 0, 1415, 1425, 3, 186, 93, 0, 1416, 1417, 5, 146, 0, 0, 1417, 1418, 5, 249, 0, 0, 1418, 1421, 3, 304, 152, 0, 1419, 1420, 5, 247, 0, 0, 1420, 1422, 3, 304, 152, 0, 1421, 1419, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 5, 250, 0, 0, 1424, 1426, 1, 0, 0, 0, 1425, 1416, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 161, 1, 0, 0, 0, 1427, 1431, 3, 164, 82, 0, 1428, 1431, 3, 166, 83, 0, 1429, 1431, 3, 168, 84, 0, 1430, 1427, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1430, 1429, 1, 0, 0, 0, 1431, 163, 1, 0, 0, 0, 1432, 1433, 5, 163, 0, 0, 1433, 1446, 3, 186, 93, 0, 1434, 1435, 5, 146, 0, 0, 1435, 1436, 5, 249, 0, 0, 1436, 1441, 3, 304, 152, 0, 1437, 1438, 5, 247, 0, 0, 1438, 1440, 3, 304, 152, 0, 1439, 1437, 1, 0, 0, 0, 1440, 1443, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1442, 1444, 1, 0, 0, 0, 1443, 1441, 1, 0, 0, 0, 1444, 1445, 5, 250, 0, 0, 1445, 1447, 1, 0, 0, 0, 1446, 1434, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 165, 1, 0, 0, 0, 1448, 1449, 5, 163, 0, 0, 1449, 1450, 5, 13, 0, 0, 1450, 167, 1, 0, 0, 0, 1451, 1452, 5, 163, 0, 0, 1452, 1453, 5, 85, 0, 0, 1453, 1454, 3, 190, 95, 0, 1454, 169, 1, 0, 0, 0, 1455, 1456, 5, 93, 0, 0, 1456, 1457, 5, 66, 0, 0, 1457, 171, 1, 0, 0, 0, 1458, 1459, 5, 93, 0, 0, 1459, 1460, 5, 133, 0, 0, 1460, 1461, 5, 66, 0, 0, 1461, 173, 1, 0, 0, 0, 1462, 1463, 3, 352, 176, 0, 1463, 175, 1, 0, 0, 0, 1464, 1465, 3, 352, 176, 0, 1465, 177, 1, 0, 0, 0, 1466, 1467, 3, 352, 176, 0, 1467, 179, 1, 0, 0, 0, 1468, 1469, 3, 352, 176, 0, 1469, 181, 1, 0, 0, 0, 1470, 1471, 3, 352, 176, 0, 1471, 183, 1, 0, 0, 0, 1472, 1473, 3, 352, 176, 0, 1473, 185, 1, 0, 0, 0, 1474, 1479, 3, 356, 178, 0, 1475, 1476, 5, 245, 0, 0, 1476, 1478, 3, 356, 178, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1481, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 187, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1487, 3, 356, 178, 0, 1483, 1484, 5, 245, 0, 0, 1484, 1486, 3, 356, 178, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1489, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 189, 1, 0, 0, 0, 1489, 1487, 1, 0, 0, 0, 1490, 1493, 3, 360, 180, 0, 1491, 1493, 3, 352, 176, 0, 1492, 1490, 1, 0, 0, 0, 1492, 1491, 1, 0, 0, 0, 1493, 191, 1, 0, 0, 0, 1494, 1497, 3, 352, 176, 0, 1495, 1497, 4, 96, 0, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1495, 1, 0, 0, 0, 1497, 193, 1, 0, 0, 0, 1498, 1501, 3, 186, 93, 0, 1499, 1501, 3, 188, 94, 0, 1500, 1498, 1, 0, 0, 0, 1500, 1499, 1, 0, 0, 0, 1501, 195, 1, 0, 0, 0, 1502, 1503, 5, 21, 0, 0, 1503, 1504, 5, 26, 0, 0, 1504, 1506, 3, 292, 146, 0, 1505, 1502, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1509, 1, 0, 0, 0, 1507, 1508, 5, 34, 0, 0, 1508, 1510, 3, 314, 157, 0, 1509, 1507, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1514, 1, 0, 0, 0, 1511, 1512, 5, 169, 0, 0, 1512, 1513, 5, 79, 0, 0, 1513, 1515, 3, 254, 127, 0, 1514, 1511, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1519, 1, 0, 0, 0, 1516, 1517, 5, 218, 0, 0, 1517, 1518, 5, 176, 0, 0, 1518, 1520, 3, 248, 124, 0, 1519, 1516, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1524, 1, 0, 0, 0, 1521, 1522, 5, 23, 0, 0, 1522, 1523, 5, 9, 0, 0, 1523, 1525, 3, 230, 115, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1528, 1, 0, 0, 0, 1526, 1527, 5, 24, 0, 0, 1527, 1529, 3, 314, 157, 0, 1528, 1526, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1540, 1, 0, 0, 0, 1530, 1531, 5, 30, 0, 0, 1531, 1532, 5, 94, 0, 0, 1532, 1537, 3, 352, 176, 0, 1533, 1534, 5, 218, 0, 0, 1534, 1535, 5, 152, 0, 0, 1535, 1536, 5, 233, 0, 0, 1536, 1538, 5, 261, 0, 0, 1537, 1533, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1541, 1, 0, 0, 0, 1539, 1541, 5, 199, 0, 0, 1540, 1530, 1, 0, 0, 0, 1540, 1539, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1544, 1, 0, 0, 0, 1542, 1543, 5, 25, 0, 0, 1543, 1545, 3, 248, 124, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 197, 1, 0, 0, 0, 1546, 1551, 3, 200, 100, 0, 1547, 1548, 5, 247, 0, 0, 1548, 1550, 3, 200, 100, 0, 1549, 1547, 1, 0, 0, 0, 1550, 1553, 1, 0, 0, 0, 1551, 1549, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 199, 1, 0, 0, 0, 1553, 1551, 1, 0, 0, 0, 1554, 1555, 3, 352, 176, 0, 1555, 1556, 5, 233, 0, 0, 1556, 1557, 3, 304, 152, 0, 1557, 201, 1, 0, 0, 0, 1558, 1559, 5, 249, 0, 0, 1559, 1562, 3, 182, 91, 0, 1560, 1561, 5, 34, 0, 0, 1561, 1563, 3, 314, 157, 0, 1562, 1560, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1572, 1, 0, 0, 0, 1564, 1565, 5, 247, 0, 0, 1565, 1568, 3, 182, 91, 0, 1566, 1567, 5, 34, 0, 0, 1567, 1569, 3, 314, 157, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1571, 1, 0, 0, 0, 1570, 1564, 1, 0, 0, 0, 1571, 1574, 1, 0, 0, 0, 1572, 1570, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1575, 1, 0, 0, 0, 1574, 1572, 1, 0, 0, 0, 1575, 1576, 5, 250, 0, 0, 1576, 203, 1, 0, 0, 0, 1577, 1579, 3, 206, 103, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 3, 258, 129, 0, 1581, 205, 1, 0, 0, 0, 1582, 1583, 5, 218, 0, 0, 1583, 1588, 3, 274, 137, 0, 1584, 1585, 5, 247, 0, 0, 1585, 1587, 3, 274, 137, 0, 1586, 1584, 1, 0, 0, 0, 1587, 1590, 1, 0, 0, 0, 1588, 1586, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 207, 1, 0, 0, 0, 1590, 1588, 1, 0, 0, 0, 1591, 1592, 5, 151, 0, 0, 1592, 1593, 5, 110, 0, 0, 1593, 1595, 3, 292, 146, 0, 1594, 1596, 5, 53, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1600, 1, 0, 0, 0, 1597, 1601, 5, 227, 0, 0, 1598, 1599, 5, 247, 0, 0, 1599, 1601, 5, 227, 0, 0, 1600, 1597, 1, 0, 0, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1605, 1, 0, 0, 0, 1602, 1606, 5, 228, 0, 0, 1603, 1604, 5, 247, 0, 0, 1604, 1606, 5, 228, 0, 0, 1605, 1602, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1619, 1, 0, 0, 0, 1607, 1608, 5, 247, 0, 0, 1608, 1611, 3, 210, 105, 0, 1609, 1611, 3, 210, 105, 0, 1610, 1607, 1, 0, 0, 0, 1610, 1609, 1, 0, 0, 0, 1611, 1616, 1, 0, 0, 0, 1612, 1613, 5, 247, 0, 0, 1613, 1615, 3, 210, 105, 0, 1614, 1612, 1, 0, 0, 0, 1615, 1618, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1616, 1614, 1, 0, 0, 0, 1617, 1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1619, 1610, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 209, 1, 0, 0, 0, 1621, 1622, 5, 81, 0, 0, 1622, 1623, 5, 110, 0, 0, 1623, 1624, 3, 292, 146, 0, 1624, 1625, 5, 226, 0, 0, 1625, 1626, 3, 186, 93, 0, 1626, 1628, 3, 292, 146, 0, 1627, 1629, 5, 53, 0, 0, 1628, 1627, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1631, 1, 0, 0, 0, 1630, 1632, 5, 227, 0, 0, 1631, 1630, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1634, 1, 0, 0, 0, 1633, 1635, 5, 228, 0, 0, 1634, 1633, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 211, 1, 0, 0, 0, 1636, 1637, 3, 192, 96, 0, 1637, 1640, 3, 328, 164, 0, 1638, 1639, 5, 34, 0, 0, 1639, 1641, 3, 314, 157, 0, 1640, 1638, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 213, 1, 0, 0, 0, 1642, 1643, 3, 182, 91, 0, 1643, 1646, 3, 328, 164, 0, 1644, 1645, 5, 34, 0, 0, 1645, 1647, 3, 314, 157, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 215, 1, 0, 0, 0, 1648, 1649, 3, 218, 109, 0, 1649, 217, 1, 0, 0, 0, 1650, 1651, 3, 182, 91, 0, 1651, 1659, 3, 328, 164, 0, 1652, 1656, 3, 224, 112, 0, 1653, 1655, 3, 224, 112, 0, 1654, 1653, 1, 0, 0, 0, 1655, 1658, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1656, 1654, 1, 0, 0, 0, 1657, 1660, 1, 0, 0, 0, 1658, 1656, 1, 0, 0, 0, 1659, 1652, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1663, 1, 0, 0, 0, 1661, 1662, 5, 34, 0, 0, 1662, 1664, 3, 314, 157, 0, 1663, 1661, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1667, 1, 0, 0, 0, 1665, 1666, 5, 151, 0, 0, 1666, 1668, 5, 110, 0, 0, 1667, 1665, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 219, 1, 0, 0, 0, 1669, 1671, 3, 212, 106, 0, 1670, 1669, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1679, 1, 0, 0, 0, 1672, 1676, 3, 224, 112, 0, 1673, 1675, 3, 224, 112, 0, 1674, 1673, 1, 0, 0, 0, 1675, 1678, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1676, 1674, 1, 0, 0, 0, 1677, 1680, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1672, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 221, 1, 0, 0, 0, 1681, 1682, 3, 182, 91, 0, 1682, 1685, 3, 328, 164, 0, 1683, 1684, 5, 34, 0, 0, 1684, 1686, 3, 314, 157, 0, 1685, 1683, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1694, 1, 0, 0, 0, 1687, 1691, 3, 224, 112, 0, 1688, 1690, 3, 224, 112, 0, 1689, 1688, 1, 0, 0, 0, 1690, 1693, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1687, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 223, 1, 0, 0, 0, 1696, 1698, 5, 133, 0, 0, 1697, 1696, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1702, 5, 134, 0, 0, 1700, 1702, 3, 226, 113, 0, 1701, 1697, 1, 0, 0, 0, 1701, 1700, 1, 0, 0, 0, 1702, 225, 1, 0, 0, 0, 1703, 1704, 5, 60, 0, 0, 1704, 1712, 3, 304, 152, 0, 1705, 1706, 5, 35, 0, 0, 1706, 1712, 3, 304, 152, 0, 1707, 1708, 5, 51, 0, 0, 1708, 1712, 3, 304, 152, 0, 1709, 1710, 5, 16, 0, 0, 1710, 1712, 3, 358, 179, 0, 1711, 1703, 1, 0, 0, 0, 1711, 1705, 1, 0, 0, 0, 1711, 1707, 1, 0, 0, 0, 1711, 1709, 1, 0, 0, 0, 1712, 227, 1, 0, 0, 0, 1713, 1714, 7, 10, 0, 0, 1714, 229, 1, 0, 0, 0, 1715, 1716, 7, 11, 0, 0, 1716, 231, 1, 0, 0, 0, 1717, 1722, 3, 234, 117, 0, 1718, 1719, 5, 247, 0, 0, 1719, 1721, 3, 234, 117, 0, 1720, 1718, 1, 0, 0, 0, 1721, 1724, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1722, 1720, 1, 0, 0, 0, 1723, 1727, 1, 0, 0, 0, 1724, 1722, 1, 0, 0, 0, 1725, 1726, 5, 247, 0, 0, 1726, 1728, 3, 236, 118, 0, 1727, 1725, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1731, 1, 0, 0, 0, 1729, 1731, 3, 236, 118, 0, 1730, 1717, 1, 0, 0, 0, 1730, 1729, 1, 0, 0, 0, 1731, 233, 1, 0, 0, 0, 1732, 1734, 5, 89, 0, 0, 1733, 1735, 3, 292, 146, 0, 1734, 1733, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 5, 147, 0, 0, 1737, 1738, 3, 358, 179, 0, 1738, 235, 1, 0, 0, 0, 1739, 1741, 5, 155, 0, 0, 1740, 1742, 3, 292, 146, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 5, 249, 0, 0, 1744, 1745, 5, 146, 0, 0, 1745, 1751, 3, 238, 119, 0, 1746, 1747, 5, 247, 0, 0, 1747, 1748, 5, 146, 0, 0, 1748, 1750, 3, 238, 119, 0, 1749, 1746, 1, 0, 0, 0, 1750, 1753, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1751, 1749, 1, 0, 0, 0, 1752, 1754, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1754, 1755, 5, 250, 0, 0, 1755, 237, 1, 0, 0, 0, 1756, 1757, 5, 212, 0, 0, 1757, 1758, 3, 244, 122, 0, 1758, 1759, 3, 304, 152, 0, 1759, 1772, 1, 0, 0, 0, 1760, 1761, 3, 304, 152, 0, 1761, 1762, 3, 242, 121, 0, 1762, 1764, 1, 0, 0, 0, 1763, 1760, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1769, 5, 213, 0, 0, 1766, 1767, 3, 242, 121, 0, 1767, 1768, 3, 304, 152, 0, 1768, 1770, 1, 0, 0, 0, 1769, 1766, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1772, 1, 0, 0, 0, 1771, 1756, 1, 0, 0, 0, 1771, 1763, 1, 0, 0, 0, 1772, 239, 1, 0, 0, 0, 1773, 1774, 5, 30, 0, 0, 1774, 1775, 5, 94, 0, 0, 1775, 1780, 3, 356, 178, 0, 1776, 1777, 5, 218, 0, 0, 1777, 1778, 5, 152, 0, 0, 1778, 1779, 5, 233, 0, 0, 1779, 1781, 3, 358, 179, 0, 1780, 1776, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1784, 1, 0, 0, 0, 1782, 1784, 5, 199, 0, 0, 1783, 1773, 1, 0, 0, 0, 1783, 1782, 1, 0, 0, 0, 1784, 241, 1, 0, 0, 0, 1785, 1791, 1, 0, 0, 0, 1786, 1791, 5, 235, 0, 0, 1787, 1791, 5, 236, 0, 0, 1788, 1791, 5, 237, 0, 0, 1789, 1791, 5, 238, 0, 0, 1790, 1785, 1, 0, 0, 0, 1790, 1786, 1, 0, 0, 0, 1790, 1787, 1, 0, 0, 0, 1790, 1788, 1, 0, 0, 0, 1790, 1789, 1, 0, 0, 0, 1791, 243, 1, 0, 0, 0, 1792, 1801, 5, 233, 0, 0, 1793, 1801, 5, 234, 0, 0, 1794, 1801, 5, 115, 0, 0, 1795, 1801, 5, 165, 0, 0, 1796, 1801, 5, 164, 0, 0, 1797, 1801, 5, 15, 0, 0, 1798, 1801, 5, 94, 0, 0, 1799, 1801, 3, 242, 121, 0, 1800, 1792, 1, 0, 0, 0, 1800, 1793, 1, 0, 0, 0, 1800, 1794, 1, 0, 0, 0, 1800, 1795, 1, 0, 0, 0, 1800, 1796, 1, 0, 0, 0, 1800, 1797, 1, 0, 0, 0, 1800, 1798, 1, 0, 0, 0, 1800, 1799, 1, 0, 0, 0, 1801, 245, 1, 0, 0, 0, 1802, 1803, 5, 115, 0, 0, 1803, 1806, 3, 352, 176, 0, 1804, 1805, 7, 12, 0, 0, 1805, 1807, 5, 154, 0, 0, 1806, 1804, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 247, 1, 0, 0, 0, 1808, 1809, 5, 249, 0, 0, 1809, 1814, 3, 256, 128, 0, 1810, 1811, 5, 247, 0, 0, 1811, 1813, 3, 256, 128, 0, 1812, 1810, 1, 0, 0, 0, 1813, 1816, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1818, 5, 250, 0, 0, 1818, 249, 1, 0, 0, 0, 1819, 1820, 5, 249, 0, 0, 1820, 1825, 3, 212, 106, 0, 1821, 1822, 5, 247, 0, 0, 1822, 1824, 3, 212, 106, 0, 1823, 1821, 1, 0, 0, 0, 1824, 1827, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1825, 1823, 1, 0, 0, 0, 1826, 1828, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, 0, 1828, 1829, 5, 250, 0, 0, 1829, 251, 1, 0, 0, 0, 1830, 1835, 3, 304, 152, 0, 1831, 1832, 5, 247, 0, 0, 1832, 1834, 3, 304, 152, 0, 1833, 1831, 1, 0, 0, 0, 1834, 1837, 1, 0, 0, 0, 1835, 1833, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 253, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1848, 5, 52, 0, 0, 1839, 1840, 5, 71, 0, 0, 1840, 1841, 5, 193, 0, 0, 1841, 1842, 5, 26, 0, 0, 1842, 1846, 3, 314, 157, 0, 1843, 1844, 5, 63, 0, 0, 1844, 1845, 5, 26, 0, 0, 1845, 1847, 3, 314, 157, 0, 1846, 1843, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1849, 1, 0, 0, 0, 1848, 1839, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1854, 1, 0, 0, 0, 1850, 1851, 5, 117, 0, 0, 1851, 1852, 5, 193, 0, 0, 1852, 1853, 5, 26, 0, 0, 1853, 1855, 3, 314, 157, 0, 1854, 1850, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 255, 1, 0, 0, 0, 1856, 1859, 3, 356, 178, 0, 1857, 1858, 5, 233, 0, 0, 1858, 1860, 3, 304, 152, 0, 1859, 1857, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 257, 1, 0, 0, 0, 1861, 1872, 3, 260, 130, 0, 1862, 1863, 5, 140, 0, 0, 1863, 1864, 5, 26, 0, 0, 1864, 1869, 3, 264, 132, 0, 1865, 1866, 5, 247, 0, 0, 1866, 1868, 3, 264, 132, 0, 1867, 1865, 1, 0, 0, 0, 1868, 1871, 1, 0, 0, 0, 1869, 1867, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1873, 1, 0, 0, 0, 1871, 1869, 1, 0, 0, 0, 1872, 1862, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1880, 1, 0, 0, 0, 1874, 1875, 5, 116, 0, 0, 1875, 1878, 3, 304, 152, 0, 1876, 1877, 5, 136, 0, 0, 1877, 1879, 5, 261, 0, 0, 1878, 1876, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1881, 1, 0, 0, 0, 1880, 1874, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 259, 1, 0, 0, 0, 1882, 1883, 6, 130, -1, 0, 1883, 1884, 3, 262, 131, 0, 1884, 1899, 1, 0, 0, 0, 1885, 1886, 10, 2, 0, 0, 1886, 1888, 5, 100, 0, 0, 1887, 1889, 3, 276, 138, 0, 1888, 1887, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1898, 3, 260, 130, 3, 1891, 1892, 10, 1, 0, 0, 1892, 1894, 7, 13, 0, 0, 1893, 1895, 3, 276, 138, 0, 1894, 1893, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1898, 3, 260, 130, 2, 1897, 1885, 1, 0, 0, 0, 1897, 1891, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 261, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1919, 3, 266, 133, 0, 1903, 1904, 5, 190, 0, 0, 1904, 1919, 3, 186, 93, 0, 1905, 1906, 5, 213, 0, 0, 1906, 1911, 3, 304, 152, 0, 1907, 1908, 5, 247, 0, 0, 1908, 1910, 3, 304, 152, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1919, 1, 0, 0, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1915, 5, 249, 0, 0, 1915, 1916, 3, 258, 129, 0, 1916, 1917, 5, 250, 0, 0, 1917, 1919, 1, 0, 0, 0, 1918, 1902, 1, 0, 0, 0, 1918, 1903, 1, 0, 0, 0, 1918, 1905, 1, 0, 0, 0, 1918, 1914, 1, 0, 0, 0, 1919, 263, 1, 0, 0, 0, 1920, 1922, 3, 302, 151, 0, 1921, 1923, 7, 14, 0, 0, 1922, 1921, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1926, 1, 0, 0, 0, 1924, 1925, 5, 135, 0, 0, 1925, 1927, 7, 15, 0, 0, 1926, 1924, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 265, 1, 0, 0, 0, 1928, 1930, 5, 175, 0, 0, 1929, 1931, 3, 276, 138, 0, 1930, 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1933, 1, 0, 0, 0, 1932, 1934, 5, 185, 0, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1940, 3, 278, 139, 0, 1936, 1937, 5, 247, 0, 0, 1937, 1939, 3, 278, 139, 0, 1938, 1936, 1, 0, 0, 0, 1939, 1942, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1952, 1, 0, 0, 0, 1942, 1940, 1, 0, 0, 0, 1943, 1944, 5, 82, 0, 0, 1944, 1949, 3, 280, 140, 0, 1945, 1946, 5, 247, 0, 0, 1946, 1948, 3, 280, 140, 0, 1947, 1945, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1953, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1952, 1943, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1956, 1, 0, 0, 0, 1954, 1955, 5, 217, 0, 0, 1955, 1957, 3, 306, 153, 0, 1956, 1954, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1961, 1, 0, 0, 0, 1958, 1959, 5, 87, 0, 0, 1959, 1960, 5, 26, 0, 0, 1960, 1962, 3, 268, 134, 0, 1961, 1958, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1965, 1, 0, 0, 0, 1963, 1964, 5, 90, 0, 0, 1964, 1966, 3, 306, 153, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 267, 1, 0, 0, 0, 1967, 1969, 3, 276, 138, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1975, 3, 270, 135, 0, 1971, 1972, 5, 247, 0, 0, 1972, 1974, 3, 270, 135, 0, 1973, 1971, 1, 0, 0, 0, 1974, 1977, 1, 0, 0, 0, 1975, 1973, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 269, 1, 0, 0, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1979, 3, 272, 136, 0, 1979, 271, 1, 0, 0, 0, 1980, 1989, 5, 249, 0, 0, 1981, 1986, 3, 302, 151, 0, 1982, 1983, 5, 247, 0, 0, 1983, 1985, 3, 302, 151, 0, 1984, 1982, 1, 0, 0, 0, 1985, 1988, 1, 0, 0, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1990, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1981, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1994, 5, 250, 0, 0, 1992, 1994, 3, 302, 151, 0, 1993, 1980, 1, 0, 0, 0, 1993, 1992, 1, 0, 0, 0, 1994, 273, 1, 0, 0, 0, 1995, 1997, 3, 356, 178, 0, 1996, 1998, 3, 292, 146, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 5, 9, 0, 0, 2000, 2001, 3, 296, 148, 0, 2001, 275, 1, 0, 0, 0, 2002, 2003, 7, 16, 0, 0, 2003, 277, 1, 0, 0, 0, 2004, 2009, 3, 302, 151, 0, 2005, 2007, 5, 9, 0, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2010, 3, 356, 178, 0, 2009, 2006, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2017, 1, 0, 0, 0, 2011, 2012, 3, 352, 176, 0, 2012, 2013, 5, 245, 0, 0, 2013, 2014, 5, 241, 0, 0, 2014, 2017, 1, 0, 0, 0, 2015, 2017, 5, 241, 0, 0, 2016, 2004, 1, 0, 0, 0, 2016, 2011, 1, 0, 0, 0, 2016, 2015, 1, 0, 0, 0, 2017, 279, 1, 0, 0, 0, 2018, 2019, 6, 140, -1, 0, 2019, 2020, 3, 286, 143, 0, 2020, 2034, 1, 0, 0, 0, 2021, 2030, 10, 2, 0, 0, 2022, 2023, 5, 38, 0, 0, 2023, 2024, 5, 109, 0, 0, 2024, 2031, 3, 286, 143, 0, 2025, 2026, 3, 282, 141, 0, 2026, 2027, 5, 109, 0, 0, 2027, 2028, 3, 280, 140, 0, 2028, 2029, 3, 284, 142, 0, 2029, 2031, 1, 0, 0, 0, 2030, 2022, 1, 0, 0, 0, 2030, 2025, 1, 0, 0, 0, 2031, 2033, 1, 0, 0, 0, 2032, 2021, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 281, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2039, 5, 97, 0, 0, 2038, 2037, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2069, 1, 0, 0, 0, 2040, 2042, 5, 114, 0, 0, 2041, 2043, 5, 97, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2069, 1, 0, 0, 0, 2044, 2046, 5, 166, 0, 0, 2045, 2047, 5, 97, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2069, 1, 0, 0, 0, 2048, 2050, 5, 114, 0, 0, 2049, 2051, 5, 142, 0, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2069, 1, 0, 0, 0, 2052, 2054, 5, 166, 0, 0, 2053, 2055, 5, 142, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2069, 1, 0, 0, 0, 2056, 2058, 5, 83, 0, 0, 2057, 2059, 5, 142, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2069, 1, 0, 0, 0, 2060, 2061, 5, 114, 0, 0, 2061, 2069, 5, 178, 0, 0, 2062, 2063, 5, 166, 0, 0, 2063, 2069, 5, 178, 0, 0, 2064, 2065, 5, 114, 0, 0, 2065, 2069, 5, 7, 0, 0, 2066, 2067, 5, 166, 0, 0, 2067, 2069, 5, 7, 0, 0, 2068, 2038, 1, 0, 0, 0, 2068, 2040, 1, 0, 0, 0, 2068, 2044, 1, 0, 0, 0, 2068, 2048, 1, 0, 0, 0, 2068, 2052, 1, 0, 0, 0, 2068, 2056, 1, 0, 0, 0, 2068, 2060, 1, 0, 0, 0, 2068, 2062, 1, 0, 0, 0, 2068, 2064, 1, 0, 0, 0, 2068, 2066, 1, 0, 0, 0, 2069, 283, 1, 0, 0, 0, 2070, 2071, 5, 137, 0, 0, 2071, 2085, 3, 306, 153, 0, 2072, 2073, 5, 207, 0, 0, 2073, 2074, 5, 249, 0, 0, 2074, 2079, 3, 356, 178, 0, 2075, 2076, 5, 247, 0, 0, 2076, 2078, 3, 356, 178, 0, 2077, 2075, 1, 0, 0, 0, 2078, 2081, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2082, 1, 0, 0, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2083, 5, 250, 0, 0, 2083, 2085, 1, 0, 0, 0, 2084, 2070, 1, 0, 0, 0, 2084, 2072, 1, 0, 0, 0, 2085, 285, 1, 0, 0, 0, 2086, 2099, 3, 290, 145, 0, 2087, 2088, 5, 192, 0, 0, 2088, 2089, 3, 288, 144, 0, 2089, 2090, 5, 249, 0, 0, 2090, 2091, 3, 304, 152, 0, 2091, 2097, 5, 250, 0, 0, 2092, 2093, 5, 158, 0, 0, 2093, 2094, 5, 249, 0, 0, 2094, 2095, 3, 304, 152, 0, 2095, 2096, 5, 250, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2092, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2087, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 287, 1, 0, 0, 0, 2101, 2102, 7, 17, 0, 0, 2102, 289, 1, 0, 0, 0, 2103, 2111, 3, 294, 147, 0, 2104, 2106, 5, 9, 0, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2109, 3, 356, 178, 0, 2108, 2110, 3, 292, 146, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2105, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 291, 1, 0, 0, 0, 2113, 2114, 5, 249, 0, 0, 2114, 2119, 3, 192, 96, 0, 2115, 2116, 5, 247, 0, 0, 2116, 2118, 3, 192, 96, 0, 2117, 2115, 1, 0, 0, 0, 2118, 2121, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2123, 5, 250, 0, 0, 2123, 293, 1, 0, 0, 0, 2124, 2132, 3, 194, 97, 0, 2125, 2127, 5, 113, 0, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2132, 3, 296, 148, 0, 2129, 2132, 3, 298, 149, 0, 2130, 2132, 3, 300, 150, 0, 2131, 2124, 1, 0, 0, 0, 2131, 2126, 1, 0, 0, 0, 2131, 2129, 1, 0, 0, 0, 2131, 2130, 1, 0, 0, 0, 2132, 295, 1, 0, 0, 0, 2133, 2134, 5, 249, 0, 0, 2134, 2135, 3, 204, 102, 0, 2135, 2136, 5, 250, 0, 0, 2136, 297, 1, 0, 0, 0, 2137, 2138, 5, 203, 0, 0, 2138, 2139, 5, 249, 0, 0, 2139, 2144, 3, 304, 152, 0, 2140, 2141, 5, 247, 0, 0, 2141, 2143, 3, 304, 152, 0, 2142, 2140, 1, 0, 0, 0, 2143, 2146, 1, 0, 0, 0, 2144, 2142, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2147, 2150, 5, 250, 0, 0, 2148, 2149, 5, 218, 0, 0, 2149, 2151, 5, 141, 0, 0, 2150, 2148, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 299, 1, 0, 0, 0, 2152, 2153, 5, 249, 0, 0, 2153, 2154, 3, 280, 140, 0, 2154, 2155, 5, 250, 0, 0, 2155, 301, 1, 0, 0, 0, 2156, 2159, 3, 192, 96, 0, 2157, 2159, 3, 304, 152, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 303, 1, 0, 0, 0, 2160, 2161, 3, 306, 153, 0, 2161, 305, 1, 0, 0, 0, 2162, 2163, 6, 153, -1, 0, 2163, 2165, 3, 310, 155, 0, 2164, 2166, 3, 308, 154, 0, 2165, 2164, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2170, 1, 0, 0, 0, 2167, 2168, 5, 133, 0, 0, 2168, 2170, 3, 306, 153, 3, 2169, 2162, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2170, 2179, 1, 0, 0, 0, 2171, 2172, 10, 2, 0, 0, 2172, 2173, 5, 5, 0, 0, 2173, 2178, 3, 306, 153, 3, 2174, 2175, 10, 1, 0, 0, 2175, 2176, 5, 139, 0, 0, 2176, 2178, 3, 306, 153, 2, 2177, 2171, 1, 0, 0, 0, 2177, 2174, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 307, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2183, 3, 316, 158, 0, 2183, 2184, 3, 310, 155, 0, 2184, 2241, 1, 0, 0, 0, 2185, 2186, 3, 316, 158, 0, 2186, 2187, 3, 318, 159, 0, 2187, 2188, 3, 296, 148, 0, 2188, 2241, 1, 0, 0, 0, 2189, 2191, 5, 133, 0, 0, 2190, 2189, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 2193, 5, 15, 0, 0, 2193, 2194, 3, 310, 155, 0, 2194, 2195, 5, 5, 0, 0, 2195, 2196, 3, 310, 155, 0, 2196, 2241, 1, 0, 0, 0, 2197, 2199, 5, 133, 0, 0, 2198, 2197, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2201, 5, 94, 0, 0, 2201, 2202, 5, 249, 0, 0, 2202, 2207, 3, 304, 152, 0, 2203, 2204, 5, 247, 0, 0, 2204, 2206, 3, 304, 152, 0, 2205, 2203, 1, 0, 0, 0, 2206, 2209, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2210, 1, 0, 0, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2211, 5, 250, 0, 0, 2211, 2241, 1, 0, 0, 0, 2212, 2214, 5, 133, 0, 0, 2213, 2212, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 5, 94, 0, 0, 2216, 2241, 3, 296, 148, 0, 2217, 2219, 5, 133, 0, 0, 2218, 2217, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2221, 7, 18, 0, 0, 2221, 2224, 3, 310, 155, 0, 2222, 2223, 5, 62, 0, 0, 2223, 2225, 3, 310, 155, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2241, 1, 0, 0, 0, 2226, 2227, 7, 19, 0, 0, 2227, 2241, 3, 310, 155, 0, 2228, 2230, 5, 108, 0, 0, 2229, 2231, 5, 133, 0, 0, 2230, 2229, 1, 0, 0, 0, 2230, 2231, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2241, 7, 20, 0, 0, 2233, 2235, 5, 108, 0, 0, 2234, 2236, 5, 133, 0, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 5, 57, 0, 0, 2238, 2239, 5, 82, 0, 0, 2239, 2241, 3, 310, 155, 0, 2240, 2182, 1, 0, 0, 0, 2240, 2185, 1, 0, 0, 0, 2240, 2190, 1, 0, 0, 0, 2240, 2198, 1, 0, 0, 0, 2240, 2213, 1, 0, 0, 0, 2240, 2218, 1, 0, 0, 0, 2240, 2226, 1, 0, 0, 0, 2240, 2228, 1, 0, 0, 0, 2240, 2233, 1, 0, 0, 0, 2241, 309, 1, 0, 0, 0, 2242, 2243, 6, 155, -1, 0, 2243, 2247, 3, 312, 156, 0, 2244, 2245, 7, 21, 0, 0, 2245, 2247, 3, 310, 155, 4, 2246, 2242, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2247, 2259, 1, 0, 0, 0, 2248, 2249, 10, 3, 0, 0, 2249, 2250, 7, 22, 0, 0, 2250, 2258, 3, 310, 155, 4, 2251, 2252, 10, 2, 0, 0, 2252, 2253, 7, 21, 0, 0, 2253, 2258, 3, 310, 155, 3, 2254, 2255, 10, 1, 0, 0, 2255, 2256, 5, 244, 0, 0, 2256, 2258, 3, 310, 155, 2, 2257, 2248, 1, 0, 0, 0, 2257, 2251, 1, 0, 0, 0, 2257, 2254, 1, 0, 0, 0, 2258, 2261, 1, 0, 0, 0, 2259, 2257, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 311, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2263, 6, 156, -1, 0, 2263, 2509, 5, 134, 0, 0, 2264, 2509, 3, 322, 161, 0, 2265, 2266, 3, 356, 178, 0, 2266, 2267, 3, 314, 157, 0, 2267, 2509, 1, 0, 0, 0, 2268, 2269, 5, 270, 0, 0, 2269, 2509, 3, 314, 157, 0, 2270, 2509, 3, 358, 179, 0, 2271, 2509, 3, 320, 160, 0, 2272, 2509, 3, 314, 157, 0, 2273, 2509, 5, 260, 0, 0, 2274, 2509, 5, 256, 0, 0, 2275, 2276, 5, 149, 0, 0, 2276, 2277, 5, 249, 0, 0, 2277, 2278, 3, 310, 155, 0, 2278, 2279, 5, 94, 0, 0, 2279, 2280, 3, 310, 155, 0, 2280, 2281, 5, 250, 0, 0, 2281, 2509, 1, 0, 0, 0, 2282, 2283, 5, 249, 0, 0, 2283, 2286, 3, 304, 152, 0, 2284, 2285, 5, 9, 0, 0, 2285, 2287, 3, 328, 164, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2296, 1, 0, 0, 0, 2288, 2289, 5, 247, 0, 0, 2289, 2292, 3, 304, 152, 0, 2290, 2291, 5, 9, 0, 0, 2291, 2293, 3, 328, 164, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 1, 0, 0, 0, 2294, 2288, 1, 0, 0, 0, 2295, 2298, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2296, 2294, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2296, 1, 0, 0, 0, 2299, 2300, 5, 250, 0, 0, 2300, 2509, 1, 0, 0, 0, 2301, 2302, 5, 169, 0, 0, 2302, 2303, 5, 249, 0, 0, 2303, 2308, 3, 304, 152, 0, 2304, 2305, 5, 247, 0, 0, 2305, 2307, 3, 304, 152, 0, 2306, 2304, 1, 0, 0, 0, 2307, 2310, 1, 0, 0, 0, 2308, 2306, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2311, 1, 0, 0, 0, 2310, 2308, 1, 0, 0, 0, 2311, 2312, 5, 250, 0, 0, 2312, 2509, 1, 0, 0, 0, 2313, 2314, 3, 190, 95, 0, 2314, 2315, 5, 249, 0, 0, 2315, 2316, 5, 241, 0, 0, 2316, 2318, 5, 250, 0, 0, 2317, 2319, 3, 336, 168, 0, 2318, 2317, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2321, 1, 0, 0, 0, 2320, 2322, 3, 338, 169, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2509, 1, 0, 0, 0, 2323, 2324, 3, 190, 95, 0, 2324, 2336, 5, 249, 0, 0, 2325, 2327, 3, 276, 138, 0, 2326, 2325, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2333, 3, 304, 152, 0, 2329, 2330, 5, 247, 0, 0, 2330, 2332, 3, 304, 152, 0, 2331, 2329, 1, 0, 0, 0, 2332, 2335, 1, 0, 0, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2337, 1, 0, 0, 0, 2335, 2333, 1, 0, 0, 0, 2336, 2326, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2348, 1, 0, 0, 0, 2338, 2339, 5, 140, 0, 0, 2339, 2340, 5, 26, 0, 0, 2340, 2345, 3, 264, 132, 0, 2341, 2342, 5, 247, 0, 0, 2342, 2344, 3, 264, 132, 0, 2343, 2341, 1, 0, 0, 0, 2344, 2347, 1, 0, 0, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2349, 1, 0, 0, 0, 2347, 2345, 1, 0, 0, 0, 2348, 2338, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2352, 5, 250, 0, 0, 2351, 2353, 3, 336, 168, 0, 2352, 2351, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2355, 1, 0, 0, 0, 2354, 2356, 3, 338, 169, 0, 2355, 2354, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2509, 1, 0, 0, 0, 2357, 2358, 3, 356, 178, 0, 2358, 2359, 5, 257, 0, 0, 2359, 2360, 3, 304, 152, 0, 2360, 2509, 1, 0, 0, 0, 2361, 2370, 5, 249, 0, 0, 2362, 2367, 3, 356, 178, 0, 2363, 2364, 5, 247, 0, 0, 2364, 2366, 3, 356, 178, 0, 2365, 2363, 1, 0, 0, 0, 2366, 2369, 1, 0, 0, 0, 2367, 2365, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2371, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2362, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2373, 5, 250, 0, 0, 2373, 2374, 5, 257, 0, 0, 2374, 2509, 3, 304, 152, 0, 2375, 2376, 5, 249, 0, 0, 2376, 2377, 3, 204, 102, 0, 2377, 2378, 5, 250, 0, 0, 2378, 2509, 1, 0, 0, 0, 2379, 2380, 5, 66, 0, 0, 2380, 2381, 5, 249, 0, 0, 2381, 2382, 3, 204, 102, 0, 2382, 2383, 5, 250, 0, 0, 2383, 2509, 1, 0, 0, 0, 2384, 2385, 5, 28, 0, 0, 2385, 2387, 3, 310, 155, 0, 2386, 2388, 3, 334, 167, 0, 2387, 2386, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2387, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2393, 1, 0, 0, 0, 2391, 2392, 5, 59, 0, 0, 2392, 2394, 3, 304, 152, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2396, 5, 61, 0, 0, 2396, 2509, 1, 0, 0, 0, 2397, 2399, 5, 28, 0, 0, 2398, 2400, 3, 334, 167, 0, 2399, 2398, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2405, 1, 0, 0, 0, 2403, 2404, 5, 59, 0, 0, 2404, 2406, 3, 304, 152, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2408, 5, 61, 0, 0, 2408, 2509, 1, 0, 0, 0, 2409, 2410, 5, 29, 0, 0, 2410, 2411, 5, 249, 0, 0, 2411, 2412, 3, 304, 152, 0, 2412, 2413, 5, 9, 0, 0, 2413, 2414, 3, 328, 164, 0, 2414, 2415, 5, 250, 0, 0, 2415, 2509, 1, 0, 0, 0, 2416, 2417, 5, 197, 0, 0, 2417, 2418, 5, 249, 0, 0, 2418, 2419, 3, 304, 152, 0, 2419, 2420, 5, 9, 0, 0, 2420, 2421, 3, 328, 164, 0, 2421, 2422, 5, 250, 0, 0, 2422, 2509, 1, 0, 0, 0, 2423, 2424, 5, 8, 0, 0, 2424, 2433, 5, 251, 0, 0, 2425, 2430, 3, 304, 152, 0, 2426, 2427, 5, 247, 0, 0, 2427, 2429, 3, 304, 152, 0, 2428, 2426, 1, 0, 0, 0, 2429, 2432, 1, 0, 0, 0, 2430, 2428, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2434, 1, 0, 0, 0, 2432, 2430, 1, 0, 0, 0, 2433, 2425, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2509, 5, 252, 0, 0, 2436, 2509, 3, 356, 178, 0, 2437, 2509, 5, 40, 0, 0, 2438, 2442, 5, 42, 0, 0, 2439, 2440, 5, 249, 0, 0, 2440, 2441, 5, 261, 0, 0, 2441, 2443, 5, 250, 0, 0, 2442, 2439, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2509, 1, 0, 0, 0, 2444, 2448, 5, 43, 0, 0, 2445, 2446, 5, 249, 0, 0, 2446, 2447, 5, 261, 0, 0, 2447, 2449, 5, 250, 0, 0, 2448, 2445, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2509, 1, 0, 0, 0, 2450, 2454, 5, 119, 0, 0, 2451, 2452, 5, 249, 0, 0, 2452, 2453, 5, 261, 0, 0, 2453, 2455, 5, 250, 0, 0, 2454, 2451, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2509, 1, 0, 0, 0, 2456, 2460, 5, 120, 0, 0, 2457, 2458, 5, 249, 0, 0, 2458, 2459, 5, 261, 0, 0, 2459, 2461, 5, 250, 0, 0, 2460, 2457, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2509, 1, 0, 0, 0, 2462, 2509, 5, 44, 0, 0, 2463, 2509, 5, 41, 0, 0, 2464, 2465, 5, 186, 0, 0, 2465, 2466, 5, 249, 0, 0, 2466, 2467, 3, 310, 155, 0, 2467, 2468, 5, 82, 0, 0, 2468, 2471, 3, 310, 155, 0, 2469, 2470, 5, 78, 0, 0, 2470, 2472, 3, 310, 155, 0, 2471, 2469, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, 2473, 1, 0, 0, 0, 2473, 2474, 5, 250, 0, 0, 2474, 2509, 1, 0, 0, 0, 2475, 2476, 5, 132, 0, 0, 2476, 2477, 5, 249, 0, 0, 2477, 2480, 3, 310, 155, 0, 2478, 2479, 5, 247, 0, 0, 2479, 2481, 3, 326, 163, 0, 2480, 2478, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2483, 5, 250, 0, 0, 2483, 2509, 1, 0, 0, 0, 2484, 2485, 5, 68, 0, 0, 2485, 2486, 5, 249, 0, 0, 2486, 2487, 3, 356, 178, 0, 2487, 2488, 5, 82, 0, 0, 2488, 2489, 3, 310, 155, 0, 2489, 2490, 5, 250, 0, 0, 2490, 2509, 1, 0, 0, 0, 2491, 2492, 5, 249, 0, 0, 2492, 2493, 3, 304, 152, 0, 2493, 2494, 5, 250, 0, 0, 2494, 2509, 1, 0, 0, 0, 2495, 2496, 5, 88, 0, 0, 2496, 2505, 5, 249, 0, 0, 2497, 2502, 3, 352, 176, 0, 2498, 2499, 5, 247, 0, 0, 2499, 2501, 3, 352, 176, 0, 2500, 2498, 1, 0, 0, 0, 2501, 2504, 1, 0, 0, 0, 2502, 2500, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2506, 1, 0, 0, 0, 2504, 2502, 1, 0, 0, 0, 2505, 2497, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2509, 5, 250, 0, 0, 2508, 2262, 1, 0, 0, 0, 2508, 2264, 1, 0, 0, 0, 2508, 2265, 1, 0, 0, 0, 2508, 2268, 1, 0, 0, 0, 2508, 2270, 1, 0, 0, 0, 2508, 2271, 1, 0, 0, 0, 2508, 2272, 1, 0, 0, 0, 2508, 2273, 1, 0, 0, 0, 2508, 2274, 1, 0, 0, 0, 2508, 2275, 1, 0, 0, 0, 2508, 2282, 1, 0, 0, 0, 2508, 2301, 1, 0, 0, 0, 2508, 2313, 1, 0, 0, 0, 2508, 2323, 1, 0, 0, 0, 2508, 2357, 1, 0, 0, 0, 2508, 2361, 1, 0, 0, 0, 2508, 2375, 1, 0, 0, 0, 2508, 2379, 1, 0, 0, 0, 2508, 2384, 1, 0, 0, 0, 2508, 2397, 1, 0, 0, 0, 2508, 2409, 1, 0, 0, 0, 2508, 2416, 1, 0, 0, 0, 2508, 2423, 1, 0, 0, 0, 2508, 2436, 1, 0, 0, 0, 2508, 2437, 1, 0, 0, 0, 2508, 2438, 1, 0, 0, 0, 2508, 2444, 1, 0, 0, 0, 2508, 2450, 1, 0, 0, 0, 2508, 2456, 1, 0, 0, 0, 2508, 2462, 1, 0, 0, 0, 2508, 2463, 1, 0, 0, 0, 2508, 2464, 1, 0, 0, 0, 2508, 2475, 1, 0, 0, 0, 2508, 2484, 1, 0, 0, 0, 2508, 2491, 1, 0, 0, 0, 2508, 2495, 1, 0, 0, 0, 2509, 2520, 1, 0, 0, 0, 2510, 2511, 10, 15, 0, 0, 2511, 2512, 5, 251, 0, 0, 2512, 2513, 3, 310, 155, 0, 2513, 2514, 5, 252, 0, 0, 2514, 2519, 1, 0, 0, 0, 2515, 2516, 10, 13, 0, 0, 2516, 2517, 5, 245, 0, 0, 2517, 2519, 3, 356, 178, 0, 2518, 2510, 1, 0, 0, 0, 2518, 2515, 1, 0, 0, 0, 2519, 2522, 1, 0, 0, 0, 2520, 2518, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 313, 1, 0, 0, 0, 2522, 2520, 1, 0, 0, 0, 2523, 2530, 5, 258, 0, 0, 2524, 2527, 5, 259, 0, 0, 2525, 2526, 5, 200, 0, 0, 2526, 2528, 5, 258, 0, 0, 2527, 2525, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2530, 1, 0, 0, 0, 2529, 2523, 1, 0, 0, 0, 2529, 2524, 1, 0, 0, 0, 2530, 315, 1, 0, 0, 0, 2531, 2532, 7, 23, 0, 0, 2532, 317, 1, 0, 0, 0, 2533, 2534, 7, 24, 0, 0, 2534, 319, 1, 0, 0, 0, 2535, 2536, 7, 25, 0, 0, 2536, 321, 1, 0, 0, 0, 2537, 2538, 5, 261, 0, 0, 2538, 2552, 3, 324, 162, 0, 2539, 2540, 5, 249, 0, 0, 2540, 2541, 5, 261, 0, 0, 2541, 2542, 5, 250, 0, 0, 2542, 2552, 3, 324, 162, 0, 2543, 2544, 5, 101, 0, 0, 2544, 2545, 5, 261, 0, 0, 2545, 2552, 3, 324, 162, 0, 2546, 2547, 5, 101, 0, 0, 2547, 2548, 5, 249, 0, 0, 2548, 2549, 5, 261, 0, 0, 2549, 2550, 5, 250, 0, 0, 2550, 2552, 3, 324, 162, 0, 2551, 2537, 1, 0, 0, 0, 2551, 2539, 1, 0, 0, 0, 2551, 2543, 1, 0, 0, 0, 2551, 2546, 1, 0, 0, 0, 2552, 323, 1, 0, 0, 0, 2553, 2554, 7, 26, 0, 0, 2554, 325, 1, 0, 0, 0, 2555, 2556, 7, 27, 0, 0, 2556, 327, 1, 0, 0, 0, 2557, 2558, 6, 164, -1, 0, 2558, 2559, 5, 8, 0, 0, 2559, 2560, 5, 235, 0, 0, 2560, 2561, 3, 328, 164, 0, 2561, 2562, 5, 237, 0, 0, 2562, 2602, 1, 0, 0, 0, 2563, 2564, 5, 122, 0, 0, 2564, 2565, 5, 235, 0, 0, 2565, 2566, 3, 328, 164, 0, 2566, 2567, 5, 247, 0, 0, 2567, 2568, 3, 328, 164, 0, 2568, 2569, 5, 237, 0, 0, 2569, 2602, 1, 0, 0, 0, 2570, 2571, 5, 184, 0, 0, 2571, 2572, 5, 235, 0, 0, 2572, 2573, 3, 356, 178, 0, 2573, 2574, 5, 248, 0, 0, 2574, 2582, 3, 328, 164, 0, 2575, 2576, 5, 247, 0, 0, 2576, 2577, 3, 356, 178, 0, 2577, 2578, 5, 248, 0, 0, 2578, 2579, 3, 328, 164, 0, 2579, 2581, 1, 0, 0, 0, 2580, 2575, 1, 0, 0, 0, 2581, 2584, 1, 0, 0, 0, 2582, 2580, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2585, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2585, 2586, 5, 237, 0, 0, 2586, 2602, 1, 0, 0, 0, 2587, 2599, 3, 332, 166, 0, 2588, 2589, 5, 249, 0, 0, 2589, 2594, 3, 330, 165, 0, 2590, 2591, 5, 247, 0, 0, 2591, 2593, 3, 330, 165, 0, 2592, 2590, 1, 0, 0, 0, 2593, 2596, 1, 0, 0, 0, 2594, 2592, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2594, 1, 0, 0, 0, 2597, 2598, 5, 250, 0, 0, 2598, 2600, 1, 0, 0, 0, 2599, 2588, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2602, 1, 0, 0, 0, 2601, 2557, 1, 0, 0, 0, 2601, 2563, 1, 0, 0, 0, 2601, 2570, 1, 0, 0, 0, 2601, 2587, 1, 0, 0, 0, 2602, 2607, 1, 0, 0, 0, 2603, 2604, 10, 5, 0, 0, 2604, 2606, 5, 8, 0, 0, 2605, 2603, 1, 0, 0, 0, 2606, 2609, 1, 0, 0, 0, 2607, 2605, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 329, 1, 0, 0, 0, 2609, 2607, 1, 0, 0, 0, 2610, 2613, 5, 261, 0, 0, 2611, 2613, 3, 328, 164, 0, 2612, 2610, 1, 0, 0, 0, 2612, 2611, 1, 0, 0, 0, 2613, 331, 1, 0, 0, 0, 2614, 2619, 5, 268, 0, 0, 2615, 2619, 5, 269, 0, 0, 2616, 2619, 5, 270, 0, 0, 2617, 2619, 3, 356, 178, 0, 2618, 2614, 1, 0, 0, 0, 2618, 2615, 1, 0, 0, 0, 2618, 2616, 1, 0, 0, 0, 2618, 2617, 1, 0, 0, 0, 2619, 333, 1, 0, 0, 0, 2620, 2621, 5, 216, 0, 0, 2621, 2622, 3, 304, 152, 0, 2622, 2623, 5, 194, 0, 0, 2623, 2624, 3, 304, 152, 0, 2624, 335, 1, 0, 0, 0, 2625, 2626, 5, 74, 0, 0, 2626, 2627, 5, 249, 0, 0, 2627, 2628, 5, 217, 0, 0, 2628, 2629, 3, 306, 153, 0, 2629, 2630, 5, 250, 0, 0, 2630, 337, 1, 0, 0, 0, 2631, 2632, 5, 144, 0, 0, 2632, 2643, 5, 249, 0, 0, 2633, 2634, 5, 146, 0, 0, 2634, 2635, 5, 26, 0, 0, 2635, 2640, 3, 304, 152, 0, 2636, 2637, 5, 247, 0, 0, 2637, 2639, 3, 304, 152, 0, 2638, 2636, 1, 0, 0, 0, 2639, 2642, 1, 0, 0, 0, 2640, 2638, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2644, 1, 0, 0, 0, 2642, 2640, 1, 0, 0, 0, 2643, 2633, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2655, 1, 0, 0, 0, 2645, 2646, 5, 140, 0, 0, 2646, 2647, 5, 26, 0, 0, 2647, 2652, 3, 264, 132, 0, 2648, 2649, 5, 247, 0, 0, 2649, 2651, 3, 264, 132, 0, 2650, 2648, 1, 0, 0, 0, 2651, 2654, 1, 0, 0, 0, 2652, 2650, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2656, 1, 0, 0, 0, 2654, 2652, 1, 0, 0, 0, 2655, 2645, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2658, 1, 0, 0, 0, 2657, 2659, 3, 340, 170, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 5, 250, 0, 0, 2661, 339, 1, 0, 0, 0, 2662, 2663, 5, 155, 0, 0, 2663, 2679, 3, 342, 171, 0, 2664, 2665, 5, 170, 0, 0, 2665, 2679, 3, 342, 171, 0, 2666, 2667, 5, 155, 0, 0, 2667, 2668, 5, 15, 0, 0, 2668, 2669, 3, 342, 171, 0, 2669, 2670, 5, 5, 0, 0, 2670, 2671, 3, 342, 171, 0, 2671, 2679, 1, 0, 0, 0, 2672, 2673, 5, 170, 0, 0, 2673, 2674, 5, 15, 0, 0, 2674, 2675, 3, 342, 171, 0, 2675, 2676, 5, 5, 0, 0, 2676, 2677, 3, 342, 171, 0, 2677, 2679, 1, 0, 0, 0, 2678, 2662, 1, 0, 0, 0, 2678, 2664, 1, 0, 0, 0, 2678, 2666, 1, 0, 0, 0, 2678, 2672, 1, 0, 0, 0, 2679, 341, 1, 0, 0, 0, 2680, 2681, 5, 201, 0, 0, 2681, 2690, 5, 150, 0, 0, 2682, 2683, 5, 201, 0, 0, 2683, 2690, 5, 77, 0, 0, 2684, 2685, 5, 39, 0, 0, 2685, 2690, 5, 169, 0, 0, 2686, 2687, 3, 304, 152, 0, 2687, 2688, 7, 28, 0, 0, 2688, 2690, 1, 0, 0, 0, 2689, 2680, 1, 0, 0, 0, 2689, 2682, 1, 0, 0, 0, 2689, 2684, 1, 0, 0, 0, 2689, 2686, 1, 0, 0, 0, 2690, 343, 1, 0, 0, 0, 2691, 2692, 3, 356, 178, 0, 2692, 2693, 5, 245, 0, 0, 2693, 2694, 3, 356, 178, 0, 2694, 2697, 1, 0, 0, 0, 2695, 2697, 3, 356, 178, 0, 2696, 2691, 1, 0, 0, 0, 2696, 2695, 1, 0, 0, 0, 2697, 345, 1, 0, 0, 0, 2698, 2703, 3, 344, 172, 0, 2699, 2700, 5, 247, 0, 0, 2700, 2702, 3, 344, 172, 0, 2701, 2699, 1, 0, 0, 0, 2702, 2705, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 347, 1, 0, 0, 0, 2705, 2703, 1, 0, 0, 0, 2706, 2720, 5, 2, 0, 0, 2707, 2720, 5, 4, 0, 0, 2708, 2720, 5, 58, 0, 0, 2709, 2720, 5, 37, 0, 0, 2710, 2720, 5, 99, 0, 0, 2711, 2720, 5, 163, 0, 0, 2712, 2717, 5, 175, 0, 0, 2713, 2714, 5, 249, 0, 0, 2714, 2715, 3, 356, 178, 0, 2715, 2716, 5, 250, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2713, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2706, 1, 0, 0, 0, 2719, 2707, 1, 0, 0, 0, 2719, 2708, 1, 0, 0, 0, 2719, 2709, 1, 0, 0, 0, 2719, 2710, 1, 0, 0, 0, 2719, 2711, 1, 0, 0, 0, 2719, 2712, 1, 0, 0, 0, 2720, 349, 1, 0, 0, 0, 2721, 2722, 7, 29, 0, 0, 2722, 351, 1, 0, 0, 0, 2723, 2728, 3, 356, 178, 0, 2724, 2725, 5, 245, 0, 0, 2725, 2727, 3, 356, 178, 0, 2726, 2724, 1, 0, 0, 0, 2727, 2730, 1, 0, 0, 0, 2728, 2726, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 353, 1, 0, 0, 0, 2730, 2728, 1, 0, 0, 0, 2731, 2732, 5, 167, 0, 0, 2732, 2738, 3, 356, 178, 0, 2733, 2734, 5, 206, 0, 0, 2734, 2738, 3, 356, 178, 0, 2735, 2736, 5, 87, 0, 0, 2736, 2738, 3, 356, 178, 0, 2737, 2731, 1, 0, 0, 0, 2737, 2733, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 355, 1, 0, 0, 0, 2739, 2745, 5, 264, 0, 0, 2740, 2745, 5, 258, 0, 0, 2741, 2745, 3, 362, 181, 0, 2742, 2745, 5, 267, 0, 0, 2743, 2745, 5, 265, 0, 0, 2744, 2739, 1, 0, 0, 0, 2744, 2740, 1, 0, 0, 0, 2744, 2741, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2744, 2743, 1, 0, 0, 0, 2745, 357, 1, 0, 0, 0, 2746, 2748, 5, 240, 0, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2759, 5, 262, 0, 0, 2750, 2752, 5, 240, 0, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2759, 5, 263, 0, 0, 2754, 2756, 5, 240, 0, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2759, 5, 261, 0, 0, 2758, 2747, 1, 0, 0, 0, 2758, 2751, 1, 0, 0, 0, 2758, 2755, 1, 0, 0, 0, 2759, 359, 1, 0, 0, 0, 2760, 2761, 7, 30, 0, 0, 2761, 361, 1, 0, 0, 0, 2762, 2763, 7, 31, 0, 0, 2763, 363, 1, 0, 0, 0, 352, 367, 374, 398, 411, 415, 419, 428, 433, 437, 443, 445, 450, 454, 458, 465, 470, 476, 480, 489, 496, 500, 505, 507, 512, 516, 523, 527, 532, 536, 540, 544, 552, 557, 561, 569, 573, 582, 585, 588, 594, 601, 612, 617, 622, 627, 632, 641, 644, 647, 651, 677, 703, 712, 722, 725, 739, 757, 759, 768, 779, 788, 795, 799, 806, 812, 815, 820, 827, 841, 854, 859, 864, 870, 906, 909, 915, 918, 924, 930, 942, 944, 952, 960, 965, 969, 974, 981, 985, 989, 995, 999, 1003, 1012, 1015, 1018, 1026, 1040, 1047, 1060, 1066, 1071, 1074, 1077, 1082, 1086, 1095, 1100, 1106, 1110, 1115, 1120, 1123, 1131, 1134, 1138, 1150, 1153, 1157, 1162, 1166, 1182, 1187, 1194, 1197, 1203, 1206, 1213, 1216, 1220, 1225, 1228, 1235, 1238, 1262, 1276, 1280, 1284, 1304, 1306, 1308, 1317, 1319, 1328, 1330, 1339, 1341, 1346, 1355, 1364, 1373, 1384, 1390, 1395, 1398, 1411, 1421, 1425, 1430, 1441, 1446, 1479, 1487, 1492, 1496, 1500, 1505, 1509, 1514, 1519, 1524, 1528, 1537, 1540, 1544, 1551, 1562, 1568, 1572, 1578, 1588, 1595, 1600, 1605, 1610, 1616, 1619, 1628, 1631, 1634, 1640, 1646, 1656, 1659, 1663, 1667, 1670, 1676, 1679, 1685, 1691, 1694, 1697, 1701, 1711, 1722, 1727, 1730, 1734, 1741, 1751, 1763, 1769, 1771, 1780, 1783, 1790, 1800, 1806, 1814, 1825, 1835, 1846, 1848, 1854, 1859, 1869, 1872, 1878, 1880, 1888, 1894, 1897, 1899, 1911, 1918, 1922, 1926, 1930, 1933, 1940, 1949, 1952, 1956, 1961, 1965, 1968, 1975, 1986, 1989, 1993, 1997, 2006, 2009, 2016, 2030, 2034, 2038, 2042, 2046, 2050, 2054, 2058, 2068, 2079, 2084, 2097, 2099, 2105, 2109, 2111, 2119, 2126, 2131, 2144, 2150, 2158, 2165, 2169, 2177, 2179, 2190, 2198, 2207, 2213, 2218, 2224, 2230, 2235, 2240, 2246, 2257, 2259, 2286, 2292, 2296, 2308, 2318, 2321, 2326, 2333, 2336, 2345, 2348, 2352, 2355, 2367, 2370, 2389, 2393, 2401, 2405, 2430, 2433, 2442, 2448, 2454, 2460, 2471, 2480, 2502, 2505, 2508, 2518, 2520, 2527, 2529, 2551, 2582, 2594, 2599, 2601, 2607, 2612, 2618, 2640, 2643, 2652, 2655, 2658, 2678, 2689, 2696, 2703, 2717, 2719, 2728, 2737, 2744, 2747, 2751, 2755, 2758] \ No newline at end of file diff --git a/src/lib/impala/ImpalaSqlParser.ts b/src/lib/impala/ImpalaSqlParser.ts index 7752b85..b60e7e7 100644 --- a/src/lib/impala/ImpalaSqlParser.ts +++ b/src/lib/impala/ImpalaSqlParser.ts @@ -11,7 +11,10 @@ import { ImpalaSqlParserVisitor } from "./ImpalaSqlParserVisitor.js"; type int = number; -export class ImpalaSqlParser extends antlr.Parser { +import SQLParserBase from '../SQLParserBase'; + + +export class ImpalaSqlParser extends SQLParserBase { public static readonly KW_ADD = 1; public static readonly KW_ALL = 2; public static readonly KW_ANALYTIC = 3; @@ -391,47 +394,47 @@ export class ImpalaSqlParser extends antlr.Parser { public static readonly RULE_with = 103; public static readonly RULE_constraintSpecification = 104; public static readonly RULE_foreignKeySpecification = 105; - public static readonly RULE_columnDefinition = 106; - public static readonly RULE_kuduTableElement = 107; - public static readonly RULE_kuduColumnDefinition = 108; - public static readonly RULE_columnSpecWithKudu = 109; - public static readonly RULE_createColumnSpecWithKudu = 110; - public static readonly RULE_kuduAttributes = 111; - public static readonly RULE_kuduStorageAttr = 112; - public static readonly RULE_statsKey = 113; - public static readonly RULE_fileFormat = 114; - public static readonly RULE_kuduPartitionClause = 115; - public static readonly RULE_hashClause = 116; - public static readonly RULE_rangeClause = 117; - public static readonly RULE_kuduPartitionSpec = 118; - public static readonly RULE_cacheSpec = 119; - public static readonly RULE_rangeOperator = 120; - public static readonly RULE_partitionCol = 121; - public static readonly RULE_likeClause = 122; - public static readonly RULE_properties = 123; - public static readonly RULE_partitionedBy = 124; - public static readonly RULE_sortedBy = 125; - public static readonly RULE_rowFormat = 126; - public static readonly RULE_property = 127; - public static readonly RULE_queryNoWith = 128; - public static readonly RULE_queryTerm = 129; - public static readonly RULE_queryPrimary = 130; - public static readonly RULE_sortItem = 131; - public static readonly RULE_querySpecification = 132; - public static readonly RULE_groupBy = 133; - public static readonly RULE_groupingElement = 134; - public static readonly RULE_groupingSet = 135; - public static readonly RULE_namedQuery = 136; - public static readonly RULE_setQuantifier = 137; - public static readonly RULE_selectItem = 138; - public static readonly RULE_relation = 139; - public static readonly RULE_joinType = 140; - public static readonly RULE_joinCriteria = 141; - public static readonly RULE_sampledRelation = 142; - public static readonly RULE_sampleType = 143; - public static readonly RULE_aliasedRelation = 144; - public static readonly RULE_columnAliases = 145; - public static readonly RULE_createColumnAliases = 146; + public static readonly RULE_columnSpec = 106; + public static readonly RULE_columnDefinition = 107; + public static readonly RULE_kuduTableElement = 108; + public static readonly RULE_kuduColumnDefinition = 109; + public static readonly RULE_columnSpecWithKudu = 110; + public static readonly RULE_createColumnSpecWithKudu = 111; + public static readonly RULE_kuduAttributes = 112; + public static readonly RULE_kuduStorageAttr = 113; + public static readonly RULE_statsKey = 114; + public static readonly RULE_fileFormat = 115; + public static readonly RULE_kuduPartitionClause = 116; + public static readonly RULE_hashClause = 117; + public static readonly RULE_rangeClause = 118; + public static readonly RULE_kuduPartitionSpec = 119; + public static readonly RULE_cacheSpec = 120; + public static readonly RULE_rangeOperator = 121; + public static readonly RULE_partitionCol = 122; + public static readonly RULE_likeClause = 123; + public static readonly RULE_properties = 124; + public static readonly RULE_partitionedBy = 125; + public static readonly RULE_sortedBy = 126; + public static readonly RULE_rowFormat = 127; + public static readonly RULE_property = 128; + public static readonly RULE_queryNoWith = 129; + public static readonly RULE_queryTerm = 130; + public static readonly RULE_queryPrimary = 131; + public static readonly RULE_sortItem = 132; + public static readonly RULE_querySpecification = 133; + public static readonly RULE_groupBy = 134; + public static readonly RULE_groupingElement = 135; + public static readonly RULE_groupingSet = 136; + public static readonly RULE_namedQuery = 137; + public static readonly RULE_setQuantifier = 138; + public static readonly RULE_selectItem = 139; + public static readonly RULE_relation = 140; + public static readonly RULE_joinType = 141; + public static readonly RULE_joinCriteria = 142; + public static readonly RULE_sampledRelation = 143; + public static readonly RULE_sampleType = 144; + public static readonly RULE_aliasedRelation = 145; + public static readonly RULE_columnAliases = 146; public static readonly RULE_relationPrimary = 147; public static readonly RULE_subQueryRelation = 148; public static readonly RULE_unnest = 149; @@ -598,7 +601,7 @@ export class ImpalaSqlParser extends antlr.Parser { "databaseNamePath", "tableNamePath", "viewNamePath", "functionNamePath", "columnNamePath", "tableOrViewPath", "createCommonItem", "assignmentList", "assignmentItem", "viewColumns", "queryStatement", "with", "constraintSpecification", - "foreignKeySpecification", "columnDefinition", "kuduTableElement", + "foreignKeySpecification", "columnSpec", "columnDefinition", "kuduTableElement", "kuduColumnDefinition", "columnSpecWithKudu", "createColumnSpecWithKudu", "kuduAttributes", "kuduStorageAttr", "statsKey", "fileFormat", "kuduPartitionClause", "hashClause", "rangeClause", "kuduPartitionSpec", "cacheSpec", "rangeOperator", @@ -607,8 +610,8 @@ export class ImpalaSqlParser extends antlr.Parser { "sortItem", "querySpecification", "groupBy", "groupingElement", "groupingSet", "namedQuery", "setQuantifier", "selectItem", "relation", "joinType", "joinCriteria", "sampledRelation", "sampleType", "aliasedRelation", - "columnAliases", "createColumnAliases", "relationPrimary", "subQueryRelation", - "unnest", "parenthesizedRelation", "columnItem", "expression", "booleanExpression", + "columnAliases", "relationPrimary", "subQueryRelation", "unnest", + "parenthesizedRelation", "columnItem", "expression", "booleanExpression", "predicate", "valueExpression", "primaryExpression", "stringLiteral", "comparisonOperator", "comparisonQuantifier", "booleanValue", "interval", "intervalField", "normalForm", "type", "typeParameter", "baseType", @@ -1081,13 +1084,13 @@ export class ImpalaSqlParser extends antlr.Parser { case 1: { this.state = 441; - this.partitionedBy(); + this.columnAliases(); } break; case 2: { this.state = 442; - this.createColumnAliases(); + this.partitionedBy(); } break; } @@ -2262,7 +2265,6 @@ export class ImpalaSqlParser extends antlr.Parser { public alterDropSingleColumn(): AlterDropSingleColumnContext { let localContext = new AlterDropSingleColumnContext(this.context, this.state); this.enterRule(localContext, 36, ImpalaSqlParser.RULE_alterDropSingleColumn); - let _la: number; try { this.enterOuterAlt(localContext, 1); { @@ -2276,14 +2278,14 @@ export class ImpalaSqlParser extends antlr.Parser { this.match(ImpalaSqlParser.KW_DROP); this.state = 739; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 32) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { + case 1: { this.state = 738; this.match(ImpalaSqlParser.KW_COLUMN); } + break; } - this.state = 741; this.columnNamePath(); } @@ -2478,7 +2480,6 @@ export class ImpalaSqlParser extends antlr.Parser { public alterTableNonKuduOrKuduOnly(): AlterTableNonKuduOrKuduOnlyContext { let localContext = new AlterTableNonKuduOrKuduOnlyContext(this.context, this.state); this.enterRule(localContext, 44, ImpalaSqlParser.RULE_alterTableNonKuduOrKuduOnly); - let _la: number; try { this.enterOuterAlt(localContext, 1); { @@ -2492,14 +2493,14 @@ export class ImpalaSqlParser extends antlr.Parser { this.match(ImpalaSqlParser.KW_ALTER); this.state = 788; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 32) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { + case 1: { this.state = 787; this.match(ImpalaSqlParser.KW_COLUMN); } + break; } - this.state = 790; this.columnNamePath(); this.state = 799; @@ -5232,14 +5233,14 @@ export class ImpalaSqlParser extends antlr.Parser { this.match(ImpalaSqlParser.KW_COLUMN); this.state = 1339; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { + case 1: { this.state = 1338; this.columnNamePath(); } + break; } - } } @@ -6254,10 +6255,25 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 192, ImpalaSqlParser.RULE_columnNamePath); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1494; - this.qualifiedName(); + this.state = 1496; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1494; + this.qualifiedName(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1495; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + } + break; } } catch (re) { @@ -6278,20 +6294,20 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new TableOrViewPathContext(this.context, this.state); this.enterRule(localContext, 194, ImpalaSqlParser.RULE_tableOrViewPath); try { - this.state = 1498; + this.state = 1500; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1496; + this.state = 1498; this.tableNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1497; + this.state = 1499; this.viewNamePath(); } break; @@ -6318,109 +6334,109 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1503; + this.state = 1505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1500; - this.match(ImpalaSqlParser.KW_SORT); - this.state = 1501; - this.match(ImpalaSqlParser.KW_BY); this.state = 1502; + this.match(ImpalaSqlParser.KW_SORT); + this.state = 1503; + this.match(ImpalaSqlParser.KW_BY); + this.state = 1504; this.columnAliases(); } } - this.state = 1507; + this.state = 1509; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 1505; + this.state = 1507; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1506; + this.state = 1508; localContext._comment = this.stringLiteral(); } break; } - this.state = 1512; + this.state = 1514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1509; - this.match(ImpalaSqlParser.KW_ROW); - this.state = 1510; - this.match(ImpalaSqlParser.KW_FORMAT); this.state = 1511; + this.match(ImpalaSqlParser.KW_ROW); + this.state = 1512; + this.match(ImpalaSqlParser.KW_FORMAT); + this.state = 1513; this.rowFormat(); } } - this.state = 1517; + this.state = 1519; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1514; - this.match(ImpalaSqlParser.KW_WITH); - this.state = 1515; - this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); this.state = 1516; + this.match(ImpalaSqlParser.KW_WITH); + this.state = 1517; + this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); + this.state = 1518; localContext._serdProp = this.properties(); } break; } - this.state = 1522; + this.state = 1524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 23) { { - this.state = 1519; - this.match(ImpalaSqlParser.KW_STORED); - this.state = 1520; - this.match(ImpalaSqlParser.KW_AS); this.state = 1521; + this.match(ImpalaSqlParser.KW_STORED); + this.state = 1522; + this.match(ImpalaSqlParser.KW_AS); + this.state = 1523; this.fileFormat(); } } - this.state = 1526; + this.state = 1528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 1524; + this.state = 1526; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 1525; + this.state = 1527; localContext._location = this.stringLiteral(); } } - this.state = 1538; + this.state = 1540; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { - this.state = 1528; - this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1529; - this.match(ImpalaSqlParser.KW_IN); this.state = 1530; + this.match(ImpalaSqlParser.KW_CACHED); + this.state = 1531; + this.match(ImpalaSqlParser.KW_IN); + this.state = 1532; localContext._cacheName = this.qualifiedName(); - this.state = 1535; + this.state = 1537; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1531; - this.match(ImpalaSqlParser.KW_WITH); - this.state = 1532; - this.match(ImpalaSqlParser.KW_REPLICATION); this.state = 1533; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_WITH); this.state = 1534; + this.match(ImpalaSqlParser.KW_REPLICATION); + this.state = 1535; + this.match(ImpalaSqlParser.EQ); + this.state = 1536; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -6429,7 +6445,7 @@ export class ImpalaSqlParser extends antlr.Parser { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 1537; + this.state = 1539; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -6467,14 +6483,14 @@ export class ImpalaSqlParser extends antlr.Parser { default: break; } - this.state = 1542; + this.state = 1544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 1540; + this.state = 1542; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 1541; + this.state = 1543; localContext._tblProp = this.properties(); } } @@ -6502,21 +6518,21 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1544; + this.state = 1546; this.assignmentItem(); - this.state = 1549; + this.state = 1551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 1545; + this.state = 1547; this.match(ImpalaSqlParser.COMMA); - this.state = 1546; + this.state = 1548; this.assignmentItem(); } } - this.state = 1551; + this.state = 1553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6542,11 +6558,11 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1552; - this.qualifiedName(); - this.state = 1553; - this.match(ImpalaSqlParser.EQ); this.state = 1554; + this.qualifiedName(); + this.state = 1555; + this.match(ImpalaSqlParser.EQ); + this.state = 1556; this.expression(); } } @@ -6571,51 +6587,51 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1556; + this.state = 1558; this.match(ImpalaSqlParser.LPAREN); - this.state = 1557; - this.columnNamePath(); - this.state = 1560; + this.state = 1559; + this.columnNamePathCreate(); + this.state = 1562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1558; + this.state = 1560; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1559; + this.state = 1561; this.stringLiteral(); } } - this.state = 1570; + this.state = 1572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 1562; + this.state = 1564; this.match(ImpalaSqlParser.COMMA); - this.state = 1563; - this.identifier(); - this.state = 1566; + this.state = 1565; + this.columnNamePathCreate(); + this.state = 1568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1564; + this.state = 1566; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1565; + this.state = 1567; this.stringLiteral(); } } } } - this.state = 1572; + this.state = 1574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1573; + this.state = 1575; this.match(ImpalaSqlParser.RPAREN); } } @@ -6640,17 +6656,17 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1576; + this.state = 1578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 218) { { - this.state = 1575; + this.state = 1577; this.with_(); } } - this.state = 1578; + this.state = 1580; this.queryNoWith(); } } @@ -6675,23 +6691,23 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1580; + this.state = 1582; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1581; + this.state = 1583; this.namedQuery(); - this.state = 1586; + this.state = 1588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 1582; + this.state = 1584; this.match(ImpalaSqlParser.COMMA); - this.state = 1583; + this.state = 1585; this.namedQuery(); } } - this.state = 1588; + this.state = 1590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6719,100 +6735,100 @@ export class ImpalaSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1589; - this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1590; - this.match(ImpalaSqlParser.KW_KEY); this.state = 1591; - this.columnAliases(); + this.match(ImpalaSqlParser.KW_PRIMARY); + this.state = 1592; + this.match(ImpalaSqlParser.KW_KEY); this.state = 1593; + this.columnAliases(); + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1592; + this.state = 1594; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1598; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { - case 1: - { - this.state = 1595; - this.match(ImpalaSqlParser.KW_NOVALIDATE); - } - break; - case 2: - { - this.state = 1596; - this.match(ImpalaSqlParser.COMMA); - this.state = 1597; - this.match(ImpalaSqlParser.KW_NOVALIDATE); - } - break; - } - this.state = 1603; + this.state = 1600; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1600; + this.state = 1597; + this.match(ImpalaSqlParser.KW_NOVALIDATE); + } + break; + case 2: + { + this.state = 1598; + this.match(ImpalaSqlParser.COMMA); + this.state = 1599; + this.match(ImpalaSqlParser.KW_NOVALIDATE); + } + break; + } + this.state = 1605; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { + case 1: + { + this.state = 1602; this.match(ImpalaSqlParser.KW_RELY); } break; case 2: { - this.state = 1601; + this.state = 1603; this.match(ImpalaSqlParser.COMMA); - this.state = 1602; + this.state = 1604; this.match(ImpalaSqlParser.KW_RELY); } break; } - this.state = 1617; + this.state = 1619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 247) { { - this.state = 1608; + this.state = 1610; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.COMMA: { - this.state = 1605; + this.state = 1607; this.match(ImpalaSqlParser.COMMA); - this.state = 1606; + this.state = 1608; this.foreignKeySpecification(); } break; case ImpalaSqlParser.KW_FOREIGN: { - this.state = 1607; + this.state = 1609; this.foreignKeySpecification(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1614; + this.state = 1616; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 183, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 184, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1610; + this.state = 1612; this.match(ImpalaSqlParser.COMMA); - this.state = 1611; + this.state = 1613; this.foreignKeySpecification(); } } } - this.state = 1616; + this.state = 1618; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 183, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 184, this.context); } } } @@ -6840,44 +6856,44 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1619; - this.match(ImpalaSqlParser.KW_FOREIGN); - this.state = 1620; - this.match(ImpalaSqlParser.KW_KEY); this.state = 1621; - this.columnAliases(); + this.match(ImpalaSqlParser.KW_FOREIGN); this.state = 1622; - this.match(ImpalaSqlParser.KW_REFERENCES); + this.match(ImpalaSqlParser.KW_KEY); this.state = 1623; - this.tableNamePath(); - this.state = 1624; this.columnAliases(); + this.state = 1624; + this.match(ImpalaSqlParser.KW_REFERENCES); + this.state = 1625; + this.tableNamePath(); this.state = 1626; + this.columnAliases(); + this.state = 1628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1625; + this.state = 1627; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1629; + this.state = 1631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 227) { { - this.state = 1628; + this.state = 1630; this.match(ImpalaSqlParser.KW_NOVALIDATE); } } - this.state = 1632; + this.state = 1634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1631; + this.state = 1633; this.match(ImpalaSqlParser.KW_RELY); } } @@ -6898,25 +6914,63 @@ export class ImpalaSqlParser extends antlr.Parser { } return localContext; } + public columnSpec(): ColumnSpecContext { + let localContext = new ColumnSpecContext(this.context, this.state); + this.enterRule(localContext, 212, ImpalaSqlParser.RULE_columnSpec); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1636; + this.columnNamePath(); + this.state = 1637; + this.type_(0); + this.state = 1640; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { + case 1: + { + this.state = 1638; + this.match(ImpalaSqlParser.KW_COMMENT); + this.state = 1639; + this.stringLiteral(); + } + break; + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnDefinition(): ColumnDefinitionContext { let localContext = new ColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 212, ImpalaSqlParser.RULE_columnDefinition); + this.enterRule(localContext, 214, ImpalaSqlParser.RULE_columnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1634; + this.state = 1642; this.columnNamePathCreate(); - this.state = 1635; + this.state = 1643; this.type_(0); - this.state = 1638; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1636; + this.state = 1644; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1637; + this.state = 1645; this.stringLiteral(); } } @@ -6939,11 +6993,11 @@ export class ImpalaSqlParser extends antlr.Parser { } public kuduTableElement(): KuduTableElementContext { let localContext = new KuduTableElementContext(this.context, this.state); - this.enterRule(localContext, 214, ImpalaSqlParser.RULE_kuduTableElement); + this.enterRule(localContext, 216, ImpalaSqlParser.RULE_kuduTableElement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1640; + this.state = 1648; this.kuduColumnDefinition(); } } @@ -6963,62 +7017,62 @@ export class ImpalaSqlParser extends antlr.Parser { } public kuduColumnDefinition(): KuduColumnDefinitionContext { let localContext = new KuduColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 216, ImpalaSqlParser.RULE_kuduColumnDefinition); + this.enterRule(localContext, 218, ImpalaSqlParser.RULE_kuduColumnDefinition); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1642; + this.state = 1650; this.columnNamePathCreate(); - this.state = 1643; - this.type_(0); this.state = 1651; + this.type_(0); + this.state = 1659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 133 || _la === 134) { { - this.state = 1644; + this.state = 1652; this.kuduAttributes(); - this.state = 1648; + this.state = 1656; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 191, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1645; + this.state = 1653; this.kuduAttributes(); } } } - this.state = 1650; + this.state = 1658; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 191, this.context); } } } - this.state = 1655; + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1653; + this.state = 1661; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1654; + this.state = 1662; this.stringLiteral(); } } - this.state = 1659; + this.state = 1667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1657; + this.state = 1665; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1658; + this.state = 1666; this.match(ImpalaSqlParser.KW_KEY); } } @@ -7041,50 +7095,44 @@ export class ImpalaSqlParser extends antlr.Parser { } public columnSpecWithKudu(): ColumnSpecWithKuduContext { let localContext = new ColumnSpecWithKuduContext(this.context, this.state); - this.enterRule(localContext, 218, ImpalaSqlParser.RULE_columnSpecWithKudu); + this.enterRule(localContext, 220, ImpalaSqlParser.RULE_columnSpecWithKudu); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1661; - this.columnNamePath(); - this.state = 1662; - this.type_(0); - this.state = 1665; + this.state = 1670; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 1663; - this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1664; - this.stringLiteral(); + this.state = 1669; + this.columnSpec(); } break; } - this.state = 1674; + this.state = 1679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 133 || _la === 134) { { - this.state = 1667; + this.state = 1672; this.kuduAttributes(); - this.state = 1671; + this.state = 1676; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 194, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1668; + this.state = 1673; this.kuduAttributes(); } } } - this.state = 1673; + this.state = 1678; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 194, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); } } } @@ -7107,50 +7155,50 @@ export class ImpalaSqlParser extends antlr.Parser { } public createColumnSpecWithKudu(): CreateColumnSpecWithKuduContext { let localContext = new CreateColumnSpecWithKuduContext(this.context, this.state); - this.enterRule(localContext, 220, ImpalaSqlParser.RULE_createColumnSpecWithKudu); + this.enterRule(localContext, 222, ImpalaSqlParser.RULE_createColumnSpecWithKudu); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1676; + this.state = 1681; this.columnNamePathCreate(); - this.state = 1677; + this.state = 1682; this.type_(0); - this.state = 1680; + this.state = 1685; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 1678; + this.state = 1683; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1679; + this.state = 1684; this.stringLiteral(); } break; } - this.state = 1689; + this.state = 1694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 133 || _la === 134) { { - this.state = 1682; + this.state = 1687; this.kuduAttributes(); - this.state = 1686; + this.state = 1691; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1683; + this.state = 1688; this.kuduAttributes(); } } } - this.state = 1688; + this.state = 1693; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); } } } @@ -7173,28 +7221,28 @@ export class ImpalaSqlParser extends antlr.Parser { } public kuduAttributes(): KuduAttributesContext { let localContext = new KuduAttributesContext(this.context, this.state); - this.enterRule(localContext, 222, ImpalaSqlParser.RULE_kuduAttributes); + this.enterRule(localContext, 224, ImpalaSqlParser.RULE_kuduAttributes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1696; + this.state = 1701; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_NOT: case ImpalaSqlParser.KW_NULL: { - this.state = 1692; + this.state = 1697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 133) { { - this.state = 1691; + this.state = 1696; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 1694; + this.state = 1699; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -7203,7 +7251,7 @@ export class ImpalaSqlParser extends antlr.Parser { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 1695; + this.state = 1700; this.kuduStorageAttr(); } break; @@ -7228,44 +7276,44 @@ export class ImpalaSqlParser extends antlr.Parser { } public kuduStorageAttr(): KuduStorageAttrContext { let localContext = new KuduStorageAttrContext(this.context, this.state); - this.enterRule(localContext, 224, ImpalaSqlParser.RULE_kuduStorageAttr); + this.enterRule(localContext, 226, ImpalaSqlParser.RULE_kuduStorageAttr); try { - this.state = 1706; + this.state = 1711; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ENCODING: this.enterOuterAlt(localContext, 1); { - this.state = 1698; + this.state = 1703; this.match(ImpalaSqlParser.KW_ENCODING); - this.state = 1699; + this.state = 1704; this.expression(); } break; case ImpalaSqlParser.KW_COMPRESSION: this.enterOuterAlt(localContext, 2); { - this.state = 1700; + this.state = 1705; this.match(ImpalaSqlParser.KW_COMPRESSION); - this.state = 1701; + this.state = 1706; this.expression(); } break; case ImpalaSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 1702; + this.state = 1707; this.match(ImpalaSqlParser.KW_DEFAULT); - this.state = 1703; + this.state = 1708; this.expression(); } break; case ImpalaSqlParser.KW_BLOCK_SIZE: this.enterOuterAlt(localContext, 4); { - this.state = 1704; + this.state = 1709; this.match(ImpalaSqlParser.KW_BLOCK_SIZE); - this.state = 1705; + this.state = 1710; this.number_(); } break; @@ -7289,12 +7337,12 @@ export class ImpalaSqlParser extends antlr.Parser { } public statsKey(): StatsKeyContext { let localContext = new StatsKeyContext(this.context, this.state); - this.enterRule(localContext, 226, ImpalaSqlParser.RULE_statsKey); + this.enterRule(localContext, 228, ImpalaSqlParser.RULE_statsKey); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1708; + this.state = 1713; _la = this.tokenStream.LA(1); if(!(((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -7321,12 +7369,12 @@ export class ImpalaSqlParser extends antlr.Parser { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 228, ImpalaSqlParser.RULE_fileFormat); + this.enterRule(localContext, 230, ImpalaSqlParser.RULE_fileFormat); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1710; + this.state = 1715; _la = this.tokenStream.LA(1); if(!(_la === 148 || ((((_la - 221)) & ~0x1F) === 0 && ((1 << (_la - 221)) & 31) !== 0))) { this.errorHandler.recoverInline(this); @@ -7353,45 +7401,45 @@ export class ImpalaSqlParser extends antlr.Parser { } public kuduPartitionClause(): KuduPartitionClauseContext { let localContext = new KuduPartitionClauseContext(this.context, this.state); - this.enterRule(localContext, 230, ImpalaSqlParser.RULE_kuduPartitionClause); + this.enterRule(localContext, 232, ImpalaSqlParser.RULE_kuduPartitionClause); let _la: number; try { let alternative: number; - this.state = 1725; + this.state = 1730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_HASH: this.enterOuterAlt(localContext, 1); { { - this.state = 1712; - this.hashClause(); this.state = 1717; + this.hashClause(); + this.state = 1722; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 202, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1713; + this.state = 1718; this.match(ImpalaSqlParser.COMMA); - this.state = 1714; + this.state = 1719; this.hashClause(); } } } - this.state = 1719; + this.state = 1724; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 202, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); } - this.state = 1722; + this.state = 1727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 247) { { - this.state = 1720; + this.state = 1725; this.match(ImpalaSqlParser.COMMA); - this.state = 1721; + this.state = 1726; this.rangeClause(); } } @@ -7402,7 +7450,7 @@ export class ImpalaSqlParser extends antlr.Parser { case ImpalaSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 2); { - this.state = 1724; + this.state = 1729; this.rangeClause(); } break; @@ -7426,26 +7474,26 @@ export class ImpalaSqlParser extends antlr.Parser { } public hashClause(): HashClauseContext { let localContext = new HashClauseContext(this.context, this.state); - this.enterRule(localContext, 232, ImpalaSqlParser.RULE_hashClause); + this.enterRule(localContext, 234, ImpalaSqlParser.RULE_hashClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1727; + this.state = 1732; this.match(ImpalaSqlParser.KW_HASH); - this.state = 1729; + this.state = 1734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 249) { { - this.state = 1728; + this.state = 1733; this.columnAliases(); } } - this.state = 1731; + this.state = 1736; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1732; + this.state = 1737; this.number_(); } } @@ -7465,52 +7513,52 @@ export class ImpalaSqlParser extends antlr.Parser { } public rangeClause(): RangeClauseContext { let localContext = new RangeClauseContext(this.context, this.state); - this.enterRule(localContext, 234, ImpalaSqlParser.RULE_rangeClause); + this.enterRule(localContext, 236, ImpalaSqlParser.RULE_rangeClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1734; + this.state = 1739; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 1736; + this.state = 1741; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: { - this.state = 1735; + this.state = 1740; this.columnAliases(); } break; } - this.state = 1738; + this.state = 1743; this.match(ImpalaSqlParser.LPAREN); { - this.state = 1739; + this.state = 1744; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1740; + this.state = 1745; this.kuduPartitionSpec(); - this.state = 1746; + this.state = 1751; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1741; + this.state = 1746; this.match(ImpalaSqlParser.COMMA); - this.state = 1742; + this.state = 1747; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1743; + this.state = 1748; this.kuduPartitionSpec(); } } } - this.state = 1748; + this.state = 1753; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); } } - this.state = 1749; + this.state = 1754; this.match(ImpalaSqlParser.RPAREN); } } @@ -7530,20 +7578,20 @@ export class ImpalaSqlParser extends antlr.Parser { } public kuduPartitionSpec(): KuduPartitionSpecContext { let localContext = new KuduPartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 236, ImpalaSqlParser.RULE_kuduPartitionSpec); + this.enterRule(localContext, 238, ImpalaSqlParser.RULE_kuduPartitionSpec); let _la: number; try { - this.state = 1766; + this.state = 1771; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1751; + this.state = 1756; this.match(ImpalaSqlParser.KW_VALUE); - this.state = 1752; + this.state = 1757; this.partitionCol(); - this.state = 1753; + this.state = 1758; this.expression(); } break; @@ -7618,28 +7666,28 @@ export class ImpalaSqlParser extends antlr.Parser { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 1758; + this.state = 1763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 539262841) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 271654979) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & 537926659) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1076887561) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 19453) !== 0)) { { - this.state = 1755; + this.state = 1760; this.expression(); - this.state = 1756; + this.state = 1761; this.rangeOperator(); } } - this.state = 1760; + this.state = 1765; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1764; + this.state = 1769; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 1761; + this.state = 1766; this.rangeOperator(); - this.state = 1762; + this.state = 1767; this.expression(); } break; @@ -7666,32 +7714,32 @@ export class ImpalaSqlParser extends antlr.Parser { } public cacheSpec(): CacheSpecContext { let localContext = new CacheSpecContext(this.context, this.state); - this.enterRule(localContext, 238, ImpalaSqlParser.RULE_cacheSpec); + this.enterRule(localContext, 240, ImpalaSqlParser.RULE_cacheSpec); try { - this.state = 1778; + this.state = 1783; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: this.enterOuterAlt(localContext, 1); { - this.state = 1768; + this.state = 1773; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1769; + this.state = 1774; this.match(ImpalaSqlParser.KW_IN); - this.state = 1770; - this.identifier(); this.state = 1775; + this.identifier(); + this.state = 1780; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1771; + this.state = 1776; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1772; + this.state = 1777; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1773; + this.state = 1778; this.match(ImpalaSqlParser.EQ); - this.state = 1774; + this.state = 1779; this.number_(); } break; @@ -7701,7 +7749,7 @@ export class ImpalaSqlParser extends antlr.Parser { case ImpalaSqlParser.KW_UNCACHED: this.enterOuterAlt(localContext, 2); { - this.state = 1777; + this.state = 1782; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -7725,9 +7773,9 @@ export class ImpalaSqlParser extends antlr.Parser { } public rangeOperator(): RangeOperatorContext { let localContext = new RangeOperatorContext(this.context, this.state); - this.enterRule(localContext, 240, ImpalaSqlParser.RULE_rangeOperator); + this.enterRule(localContext, 242, ImpalaSqlParser.RULE_rangeOperator); try { - this.state = 1785; + this.state = 1790; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -7807,28 +7855,28 @@ export class ImpalaSqlParser extends antlr.Parser { case ImpalaSqlParser.LT: this.enterOuterAlt(localContext, 2); { - this.state = 1781; + this.state = 1786; this.match(ImpalaSqlParser.LT); } break; case ImpalaSqlParser.LTE: this.enterOuterAlt(localContext, 3); { - this.state = 1782; + this.state = 1787; this.match(ImpalaSqlParser.LTE); } break; case ImpalaSqlParser.GT: this.enterOuterAlt(localContext, 4); { - this.state = 1783; + this.state = 1788; this.match(ImpalaSqlParser.GT); } break; case ImpalaSqlParser.GTE: this.enterOuterAlt(localContext, 5); { - this.state = 1784; + this.state = 1789; this.match(ImpalaSqlParser.GTE); } break; @@ -7852,57 +7900,57 @@ export class ImpalaSqlParser extends antlr.Parser { } public partitionCol(): PartitionColContext { let localContext = new PartitionColContext(this.context, this.state); - this.enterRule(localContext, 242, ImpalaSqlParser.RULE_partitionCol); + this.enterRule(localContext, 244, ImpalaSqlParser.RULE_partitionCol); try { - this.state = 1795; + this.state = 1800; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.EQ: this.enterOuterAlt(localContext, 1); { - this.state = 1787; + this.state = 1792; this.match(ImpalaSqlParser.EQ); } break; case ImpalaSqlParser.NEQ: this.enterOuterAlt(localContext, 2); { - this.state = 1788; + this.state = 1793; this.match(ImpalaSqlParser.NEQ); } break; case ImpalaSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 1789; + this.state = 1794; this.match(ImpalaSqlParser.KW_LIKE); } break; case ImpalaSqlParser.KW_RLIKE: this.enterOuterAlt(localContext, 4); { - this.state = 1790; + this.state = 1795; this.match(ImpalaSqlParser.KW_RLIKE); } break; case ImpalaSqlParser.KW_REGEXP: this.enterOuterAlt(localContext, 5); { - this.state = 1791; + this.state = 1796; this.match(ImpalaSqlParser.KW_REGEXP); } break; case ImpalaSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 6); { - this.state = 1792; + this.state = 1797; this.match(ImpalaSqlParser.KW_BETWEEN); } break; case ImpalaSqlParser.KW_IN: this.enterOuterAlt(localContext, 7); { - this.state = 1793; + this.state = 1798; this.match(ImpalaSqlParser.KW_IN); } break; @@ -7980,7 +8028,7 @@ export class ImpalaSqlParser extends antlr.Parser { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 8); { - this.state = 1794; + this.state = 1799; this.rangeOperator(); } break; @@ -8004,21 +8052,21 @@ export class ImpalaSqlParser extends antlr.Parser { } public likeClause(): LikeClauseContext { let localContext = new LikeClauseContext(this.context, this.state); - this.enterRule(localContext, 244, ImpalaSqlParser.RULE_likeClause); + this.enterRule(localContext, 246, ImpalaSqlParser.RULE_likeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1797; + this.state = 1802; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 1798; + this.state = 1803; this.qualifiedName(); - this.state = 1801; + this.state = 1806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 95) { { - this.state = 1799; + this.state = 1804; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 95)) { @@ -8028,7 +8076,7 @@ export class ImpalaSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1800; + this.state = 1805; this.match(ImpalaSqlParser.KW_PROPERTIES); } } @@ -8051,32 +8099,32 @@ export class ImpalaSqlParser extends antlr.Parser { } public properties(): PropertiesContext { let localContext = new PropertiesContext(this.context, this.state); - this.enterRule(localContext, 246, ImpalaSqlParser.RULE_properties); + this.enterRule(localContext, 248, ImpalaSqlParser.RULE_properties); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1803; + this.state = 1808; this.match(ImpalaSqlParser.LPAREN); - this.state = 1804; - this.property(); this.state = 1809; + this.property(); + this.state = 1814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 1805; + this.state = 1810; this.match(ImpalaSqlParser.COMMA); - this.state = 1806; + this.state = 1811; this.property(); } } - this.state = 1811; + this.state = 1816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1812; + this.state = 1817; this.match(ImpalaSqlParser.RPAREN); } } @@ -8096,34 +8144,34 @@ export class ImpalaSqlParser extends antlr.Parser { } public partitionedBy(): PartitionedByContext { let localContext = new PartitionedByContext(this.context, this.state); - this.enterRule(localContext, 248, ImpalaSqlParser.RULE_partitionedBy); + this.enterRule(localContext, 250, ImpalaSqlParser.RULE_partitionedBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1814; + this.state = 1819; this.match(ImpalaSqlParser.LPAREN); - this.state = 1815; - this.columnDefinition(); this.state = 1820; + this.columnSpec(); + this.state = 1825; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1816; + this.state = 1821; this.match(ImpalaSqlParser.COMMA); - this.state = 1817; - this.columnDefinition(); + this.state = 1822; + this.columnSpec(); } } } - this.state = 1822; + this.state = 1827; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); } - this.state = 1823; + this.state = 1828; this.match(ImpalaSqlParser.RPAREN); } } @@ -8143,26 +8191,26 @@ export class ImpalaSqlParser extends antlr.Parser { } public sortedBy(): SortedByContext { let localContext = new SortedByContext(this.context, this.state); - this.enterRule(localContext, 250, ImpalaSqlParser.RULE_sortedBy); + this.enterRule(localContext, 252, ImpalaSqlParser.RULE_sortedBy); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1825; - this.expression(); this.state = 1830; + this.expression(); + this.state = 1835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 1826; + this.state = 1831; this.match(ImpalaSqlParser.COMMA); - this.state = 1827; + this.state = 1832; this.expression(); } } - this.state = 1832; + this.state = 1837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8184,36 +8232,36 @@ export class ImpalaSqlParser extends antlr.Parser { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 252, ImpalaSqlParser.RULE_rowFormat); + this.enterRule(localContext, 254, ImpalaSqlParser.RULE_rowFormat); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1833; + this.state = 1838; this.match(ImpalaSqlParser.KW_DELIMITED); - this.state = 1843; + this.state = 1848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1834; + this.state = 1839; this.match(ImpalaSqlParser.KW_FIELDS); - this.state = 1835; + this.state = 1840; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1836; - this.match(ImpalaSqlParser.KW_BY); - this.state = 1837; - this.stringLiteral(); this.state = 1841; + this.match(ImpalaSqlParser.KW_BY); + this.state = 1842; + this.stringLiteral(); + this.state = 1846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 1838; + this.state = 1843; this.match(ImpalaSqlParser.KW_ESCAPED); - this.state = 1839; + this.state = 1844; this.match(ImpalaSqlParser.KW_BY); - this.state = 1840; + this.state = 1845; this.stringLiteral(); } } @@ -8221,18 +8269,18 @@ export class ImpalaSqlParser extends antlr.Parser { } } - this.state = 1849; + this.state = 1854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 117) { { - this.state = 1845; + this.state = 1850; this.match(ImpalaSqlParser.KW_LINES); - this.state = 1846; + this.state = 1851; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1847; + this.state = 1852; this.match(ImpalaSqlParser.KW_BY); - this.state = 1848; + this.state = 1853; this.stringLiteral(); } } @@ -8255,21 +8303,21 @@ export class ImpalaSqlParser extends antlr.Parser { } public property(): PropertyContext { let localContext = new PropertyContext(this.context, this.state); - this.enterRule(localContext, 254, ImpalaSqlParser.RULE_property); + this.enterRule(localContext, 256, ImpalaSqlParser.RULE_property); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1851; + this.state = 1856; this.identifier(); - this.state = 1854; + this.state = 1859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233) { { - this.state = 1852; + this.state = 1857; this.match(ImpalaSqlParser.EQ); - this.state = 1853; + this.state = 1858; this.expression(); } } @@ -8292,60 +8340,60 @@ export class ImpalaSqlParser extends antlr.Parser { } public queryNoWith(): QueryNoWithContext { let localContext = new QueryNoWithContext(this.context, this.state); - this.enterRule(localContext, 256, ImpalaSqlParser.RULE_queryNoWith); + this.enterRule(localContext, 258, ImpalaSqlParser.RULE_queryNoWith); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1856; + this.state = 1861; this.queryTerm(0); - this.state = 1867; + this.state = 1872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140) { { - this.state = 1857; + this.state = 1862; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 1858; + this.state = 1863; this.match(ImpalaSqlParser.KW_BY); - this.state = 1859; - this.sortItem(); this.state = 1864; + this.sortItem(); + this.state = 1869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 1860; + this.state = 1865; this.match(ImpalaSqlParser.COMMA); - this.state = 1861; + this.state = 1866; this.sortItem(); } } - this.state = 1866; + this.state = 1871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1875; + this.state = 1880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1869; + this.state = 1874; this.match(ImpalaSqlParser.KW_LIMIT); - this.state = 1870; + this.state = 1875; localContext._rows = this.expression(); - this.state = 1873; + this.state = 1878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1871; + this.state = 1876; this.match(ImpalaSqlParser.KW_OFFSET); - this.state = 1872; + this.state = 1877; localContext._offset = this.match(ImpalaSqlParser.INTEGER_VALUE); } } @@ -8381,8 +8429,8 @@ export class ImpalaSqlParser extends antlr.Parser { let parentState = this.state; let localContext = new QueryTermContext(this.context, parentState); let previousContext = localContext; - let _startState = 258; - this.enterRecursionRule(localContext, 258, ImpalaSqlParser.RULE_queryTerm, _p); + let _startState = 260; + this.enterRecursionRule(localContext, 260, ImpalaSqlParser.RULE_queryTerm, _p); let _la: number; try { let alternative: number; @@ -8393,13 +8441,13 @@ export class ImpalaSqlParser extends antlr.Parser { this.context = localContext; previousContext = localContext; - this.state = 1878; + this.state = 1883; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1894; + this.state = 1899; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8407,31 +8455,31 @@ export class ImpalaSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 1892; + this.state = 1897; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1880; + this.state = 1885; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1881; + this.state = 1886; (localContext as SetOperationContext)._operator = this.match(ImpalaSqlParser.KW_INTERSECT); - this.state = 1883; + this.state = 1888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1882; + this.state = 1887; this.setQuantifier(); } } - this.state = 1885; + this.state = 1890; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -8440,11 +8488,11 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1886; + this.state = 1891; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1887; + this.state = 1892; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 202)) { @@ -8454,26 +8502,26 @@ export class ImpalaSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1889; + this.state = 1894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1888; + this.state = 1893; this.setQuantifier(); } } - this.state = 1891; + this.state = 1896; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1896; + this.state = 1901; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); } } } @@ -8493,17 +8541,17 @@ export class ImpalaSqlParser extends antlr.Parser { } public queryPrimary(): QueryPrimaryContext { let localContext = new QueryPrimaryContext(this.context, this.state); - this.enterRule(localContext, 260, ImpalaSqlParser.RULE_queryPrimary); + this.enterRule(localContext, 262, ImpalaSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1913; + this.state = 1918; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1897; + this.state = 1902; this.querySpecification(); } break; @@ -8511,9 +8559,9 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1898; + this.state = 1903; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1899; + this.state = 1904; this.tableNamePath(); } break; @@ -8521,27 +8569,27 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1900; + this.state = 1905; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1901; - this.expression(); this.state = 1906; + this.expression(); + this.state = 1911; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1902; + this.state = 1907; this.match(ImpalaSqlParser.COMMA); - this.state = 1903; + this.state = 1908; this.expression(); } } } - this.state = 1908; + this.state = 1913; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); } } break; @@ -8549,11 +8597,11 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1909; + this.state = 1914; this.match(ImpalaSqlParser.LPAREN); - this.state = 1910; + this.state = 1915; this.queryNoWith(); - this.state = 1911; + this.state = 1916; this.match(ImpalaSqlParser.RPAREN); } break; @@ -8577,19 +8625,19 @@ export class ImpalaSqlParser extends antlr.Parser { } public sortItem(): SortItemContext { let localContext = new SortItemContext(this.context, this.state); - this.enterRule(localContext, 262, ImpalaSqlParser.RULE_sortItem); + this.enterRule(localContext, 264, ImpalaSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1915; + this.state = 1920; this.columnItem(); - this.state = 1917; + this.state = 1922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 55) { { - this.state = 1916; + this.state = 1921; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 55)) { @@ -8602,14 +8650,14 @@ export class ImpalaSqlParser extends antlr.Parser { } } - this.state = 1921; + this.state = 1926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1919; + this.state = 1924; this.match(ImpalaSqlParser.KW_NULLS); - this.state = 1920; + this.state = 1925; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 75 || _la === 112)) { @@ -8640,118 +8688,117 @@ export class ImpalaSqlParser extends antlr.Parser { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 264, ImpalaSqlParser.RULE_querySpecification); - let _la: number; + this.enterRule(localContext, 266, ImpalaSqlParser.RULE_querySpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1923; + this.state = 1928; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 1925; + this.state = 1930; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2 || _la === 57) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { + case 1: { - this.state = 1924; + this.state = 1929; this.setQuantifier(); } + break; } - - this.state = 1928; + this.state = 1933; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 185) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + case 1: { - this.state = 1927; + this.state = 1932; this.match(ImpalaSqlParser.KW_STRAIGHT_JOIN); } + break; } - - this.state = 1930; - this.selectItem(); this.state = 1935; + this.selectItem(); + this.state = 1940; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1931; + this.state = 1936; this.match(ImpalaSqlParser.COMMA); - this.state = 1932; + this.state = 1937; this.selectItem(); } } } - this.state = 1937; + this.state = 1942; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); } - this.state = 1947; + this.state = 1952; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 1938; + this.state = 1943; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1939; - this.relation(0); this.state = 1944; + this.relation(0); + this.state = 1949; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1940; + this.state = 1945; this.match(ImpalaSqlParser.COMMA); - this.state = 1941; + this.state = 1946; this.relation(0); } } } - this.state = 1946; + this.state = 1951; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); } } break; } - this.state = 1951; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { - case 1: - { - this.state = 1949; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1950; - localContext._where = this.booleanExpression(0); - } - break; - } this.state = 1956; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1953; - this.match(ImpalaSqlParser.KW_GROUP); this.state = 1954; - this.match(ImpalaSqlParser.KW_BY); + this.match(ImpalaSqlParser.KW_WHERE); this.state = 1955; + localContext._where = this.booleanExpression(0); + } + break; + } + this.state = 1961; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + case 1: + { + this.state = 1958; + this.match(ImpalaSqlParser.KW_GROUP); + this.state = 1959; + this.match(ImpalaSqlParser.KW_BY); + this.state = 1960; this.groupBy(); } break; } - this.state = 1960; + this.state = 1965; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 1958; + this.state = 1963; this.match(ImpalaSqlParser.KW_HAVING); - this.state = 1959; + this.state = 1964; localContext._having = this.booleanExpression(0); } break; @@ -8774,41 +8821,40 @@ export class ImpalaSqlParser extends antlr.Parser { } public groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 266, ImpalaSqlParser.RULE_groupBy); - let _la: number; + this.enterRule(localContext, 268, ImpalaSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1963; + this.state = 1968; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2 || _la === 57) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + case 1: { - this.state = 1962; + this.state = 1967; this.setQuantifier(); } + break; } - - this.state = 1965; - this.groupingElement(); this.state = 1970; + this.groupingElement(); + this.state = 1975; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1966; + this.state = 1971; this.match(ImpalaSqlParser.COMMA); - this.state = 1967; + this.state = 1972; this.groupingElement(); } } } - this.state = 1972; + this.state = 1977; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); } } } @@ -8828,12 +8874,12 @@ export class ImpalaSqlParser extends antlr.Parser { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 268, ImpalaSqlParser.RULE_groupingElement); + this.enterRule(localContext, 270, ImpalaSqlParser.RULE_groupingElement); try { localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1973; + this.state = 1978; this.groupingSet(); } } @@ -8853,51 +8899,51 @@ export class ImpalaSqlParser extends antlr.Parser { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 270, ImpalaSqlParser.RULE_groupingSet); + this.enterRule(localContext, 272, ImpalaSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1988; + this.state = 1993; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1975; + this.state = 1980; this.match(ImpalaSqlParser.LPAREN); - this.state = 1984; + this.state = 1989; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 539262841) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 271654979) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & 537926659) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1076887561) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 19453) !== 0)) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + case 1: { - this.state = 1976; - this.columnItem(); this.state = 1981; + this.columnItem(); + this.state = 1986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 1977; + this.state = 1982; this.match(ImpalaSqlParser.COMMA); - this.state = 1978; + this.state = 1983; this.columnItem(); } } - this.state = 1983; + this.state = 1988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } + break; } - - this.state = 1986; + this.state = 1991; this.match(ImpalaSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1987; + this.state = 1992; this.columnItem(); } break; @@ -8919,26 +8965,26 @@ export class ImpalaSqlParser extends antlr.Parser { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 272, ImpalaSqlParser.RULE_namedQuery); + this.enterRule(localContext, 274, ImpalaSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1990; + this.state = 1995; localContext._name = this.identifier(); - this.state = 1992; + this.state = 1997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 249) { { - this.state = 1991; + this.state = 1996; this.columnAliases(); } } - this.state = 1994; + this.state = 1999; this.match(ImpalaSqlParser.KW_AS); - this.state = 1995; + this.state = 2000; this.subQueryRelation(); } } @@ -8958,12 +9004,12 @@ export class ImpalaSqlParser extends antlr.Parser { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 274, ImpalaSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 276, ImpalaSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1997; + this.state = 2002; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 57)) { this.errorHandler.recoverInline(this); @@ -8990,34 +9036,34 @@ export class ImpalaSqlParser extends antlr.Parser { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 276, ImpalaSqlParser.RULE_selectItem); + this.enterRule(localContext, 278, ImpalaSqlParser.RULE_selectItem); let _la: number; try { - this.state = 2011; + this.state = 2016; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1999; - this.columnItem(); this.state = 2004; + this.columnItem(); + this.state = 2009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2001; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2000; + this.state = 2005; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2003; + this.state = 2008; this.identifier(); } break; @@ -9028,11 +9074,11 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2006; + this.state = 2011; this.qualifiedName(); - this.state = 2007; + this.state = 2012; this.match(ImpalaSqlParser.DOT); - this.state = 2008; + this.state = 2013; this.match(ImpalaSqlParser.ASTERISK); } break; @@ -9040,7 +9086,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2010; + this.state = 2015; this.match(ImpalaSqlParser.ASTERISK); } break; @@ -9072,8 +9118,8 @@ export class ImpalaSqlParser extends antlr.Parser { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 278; - this.enterRecursionRule(localContext, 278, ImpalaSqlParser.RULE_relation, _p); + let _startState = 280; + this.enterRecursionRule(localContext, 280, ImpalaSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -9083,13 +9129,13 @@ export class ImpalaSqlParser extends antlr.Parser { this.context = localContext; previousContext = localContext; - this.state = 2014; + this.state = 2019; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2029; + this.state = 2034; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 253, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9101,20 +9147,20 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_relation); - this.state = 2016; + this.state = 2021; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2025; + this.state = 2030; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CROSS: { - this.state = 2017; + this.state = 2022; this.match(ImpalaSqlParser.KW_CROSS); - this.state = 2018; + this.state = 2023; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2019; + this.state = 2024; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -9124,13 +9170,13 @@ export class ImpalaSqlParser extends antlr.Parser { case ImpalaSqlParser.KW_LEFT: case ImpalaSqlParser.KW_RIGHT: { - this.state = 2020; + this.state = 2025; this.joinType(); - this.state = 2021; + this.state = 2026; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2022; + this.state = 2027; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 2023; + this.state = 2028; this.joinCriteria(); } break; @@ -9140,9 +9186,9 @@ export class ImpalaSqlParser extends antlr.Parser { } } } - this.state = 2031; + this.state = 2036; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 253, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); } } } @@ -9162,21 +9208,21 @@ export class ImpalaSqlParser extends antlr.Parser { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 280, ImpalaSqlParser.RULE_joinType); + this.enterRule(localContext, 282, ImpalaSqlParser.RULE_joinType); let _la: number; try { - this.state = 2063; + this.state = 2068; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2033; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2032; + this.state = 2037; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9186,14 +9232,14 @@ export class ImpalaSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2035; + this.state = 2040; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2037; + this.state = 2042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2036; + this.state = 2041; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9203,14 +9249,14 @@ export class ImpalaSqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2039; + this.state = 2044; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2041; + this.state = 2046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2040; + this.state = 2045; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9220,14 +9266,14 @@ export class ImpalaSqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2043; + this.state = 2048; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2045; + this.state = 2050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 142) { { - this.state = 2044; + this.state = 2049; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9237,14 +9283,14 @@ export class ImpalaSqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2047; + this.state = 2052; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2049; + this.state = 2054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 142) { { - this.state = 2048; + this.state = 2053; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9254,14 +9300,14 @@ export class ImpalaSqlParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2051; + this.state = 2056; this.match(ImpalaSqlParser.KW_FULL); - this.state = 2053; + this.state = 2058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 142) { { - this.state = 2052; + this.state = 2057; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9271,36 +9317,36 @@ export class ImpalaSqlParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2055; + this.state = 2060; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2056; + this.state = 2061; this.match(ImpalaSqlParser.KW_SEMI); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2057; + this.state = 2062; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2058; + this.state = 2063; this.match(ImpalaSqlParser.KW_SEMI); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2059; + this.state = 2064; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2060; + this.state = 2065; this.match(ImpalaSqlParser.KW_ANTI); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2061; + this.state = 2066; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2062; + this.state = 2067; this.match(ImpalaSqlParser.KW_ANTI); } break; @@ -9322,47 +9368,47 @@ export class ImpalaSqlParser extends antlr.Parser { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 282, ImpalaSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 284, ImpalaSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 2079; + this.state = 2084; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2065; + this.state = 2070; this.match(ImpalaSqlParser.KW_ON); - this.state = 2066; + this.state = 2071; this.booleanExpression(0); } break; case ImpalaSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2067; + this.state = 2072; this.match(ImpalaSqlParser.KW_USING); - this.state = 2068; + this.state = 2073; this.match(ImpalaSqlParser.LPAREN); - this.state = 2069; - this.identifier(); this.state = 2074; + this.identifier(); + this.state = 2079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2070; + this.state = 2075; this.match(ImpalaSqlParser.COMMA); - this.state = 2071; + this.state = 2076; this.identifier(); } } - this.state = 2076; + this.state = 2081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2077; + this.state = 2082; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9386,39 +9432,39 @@ export class ImpalaSqlParser extends antlr.Parser { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 284, ImpalaSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 286, ImpalaSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2081; + this.state = 2086; this.aliasedRelation(); - this.state = 2094; + this.state = 2099; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2082; + this.state = 2087; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 2083; + this.state = 2088; this.sampleType(); - this.state = 2084; + this.state = 2089; this.match(ImpalaSqlParser.LPAREN); - this.state = 2085; + this.state = 2090; localContext._percentage = this.expression(); - this.state = 2086; + this.state = 2091; this.match(ImpalaSqlParser.RPAREN); - this.state = 2092; + this.state = 2097; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2087; + this.state = 2092; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 2088; + this.state = 2093; this.match(ImpalaSqlParser.LPAREN); - this.state = 2089; + this.state = 2094; localContext._seed = this.expression(); - this.state = 2090; + this.state = 2095; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9444,12 +9490,12 @@ export class ImpalaSqlParser extends antlr.Parser { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 286, ImpalaSqlParser.RULE_sampleType); + this.enterRule(localContext, 288, ImpalaSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2096; + this.state = 2101; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 187)) { this.errorHandler.recoverInline(this); @@ -9476,36 +9522,36 @@ export class ImpalaSqlParser extends antlr.Parser { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 288, ImpalaSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 290, ImpalaSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2098; + this.state = 2103; this.relationPrimary(); - this.state = 2106; + this.state = 2111; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2100; + this.state = 2105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2099; + this.state = 2104; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2102; + this.state = 2107; this.identifier(); - this.state = 2104; + this.state = 2109; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2103; + this.state = 2108; this.columnAliases(); } break; @@ -9531,77 +9577,32 @@ export class ImpalaSqlParser extends antlr.Parser { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 290, ImpalaSqlParser.RULE_columnAliases); + this.enterRule(localContext, 292, ImpalaSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2108; + this.state = 2113; this.match(ImpalaSqlParser.LPAREN); - this.state = 2109; - this.columnNamePath(); this.state = 2114; + this.columnNamePath(); + this.state = 2119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2110; + this.state = 2115; this.match(ImpalaSqlParser.COMMA); - this.state = 2111; + this.state = 2116; this.columnNamePath(); } } - this.state = 2116; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 2117; - this.match(ImpalaSqlParser.RPAREN); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public createColumnAliases(): CreateColumnAliasesContext { - let localContext = new CreateColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 292, ImpalaSqlParser.RULE_createColumnAliases); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2119; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2120; - this.columnNamePathCreate(); - this.state = 2125; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 247) { - { - { this.state = 2121; - this.match(ImpalaSqlParser.COMMA); - this.state = 2122; - this.columnNamePathCreate(); - } - } - this.state = 2127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2128; + this.state = 2122; this.match(ImpalaSqlParser.RPAREN); } } @@ -9624,44 +9625,44 @@ export class ImpalaSqlParser extends antlr.Parser { this.enterRule(localContext, 294, ImpalaSqlParser.RULE_relationPrimary); let _la: number; try { - this.state = 2137; + this.state = 2131; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2130; + this.state = 2124; this.tableOrViewPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2132; + this.state = 2126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 2131; + this.state = 2125; this.match(ImpalaSqlParser.KW_LATERAL); } } - this.state = 2134; + this.state = 2128; this.subQueryRelation(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2135; + this.state = 2129; this.unnest(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2136; + this.state = 2130; this.parenthesizedRelation(); } break; @@ -9687,11 +9688,11 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2139; + this.state = 2133; this.match(ImpalaSqlParser.LPAREN); - this.state = 2140; + this.state = 2134; this.queryStatement(); - this.state = 2141; + this.state = 2135; this.match(ImpalaSqlParser.RPAREN); } } @@ -9716,38 +9717,38 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2143; + this.state = 2137; this.match(ImpalaSqlParser.KW_UNNEST); - this.state = 2144; + this.state = 2138; this.match(ImpalaSqlParser.LPAREN); - this.state = 2145; + this.state = 2139; this.expression(); - this.state = 2150; + this.state = 2144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2146; + this.state = 2140; this.match(ImpalaSqlParser.COMMA); - this.state = 2147; + this.state = 2141; this.expression(); } } - this.state = 2152; + this.state = 2146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2153; + this.state = 2147; this.match(ImpalaSqlParser.RPAREN); - this.state = 2156; + this.state = 2150; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: { - this.state = 2154; + this.state = 2148; this.match(ImpalaSqlParser.KW_WITH); - this.state = 2155; + this.state = 2149; this.match(ImpalaSqlParser.KW_ORDINALITY); } break; @@ -9774,11 +9775,11 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2158; + this.state = 2152; this.match(ImpalaSqlParser.LPAREN); - this.state = 2159; + this.state = 2153; this.relation(0); - this.state = 2160; + this.state = 2154; this.match(ImpalaSqlParser.RPAREN); } } @@ -9800,20 +9801,20 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new ColumnItemContext(this.context, this.state); this.enterRule(localContext, 302, ImpalaSqlParser.RULE_columnItem); try { - this.state = 2164; + this.state = 2158; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2162; + this.state = 2156; this.columnNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2163; + this.state = 2157; this.expression(); } break; @@ -9839,7 +9840,7 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2166; + this.state = 2160; this.booleanExpression(0); } } @@ -9875,7 +9876,7 @@ export class ImpalaSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2175; + this.state = 2169; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -9950,14 +9951,14 @@ export class ImpalaSqlParser extends antlr.Parser { this.context = localContext; previousContext = localContext; - this.state = 2169; + this.state = 2163; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2171; + this.state = 2165; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: { - this.state = 2170; + this.state = 2164; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -9969,9 +9970,9 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2173; + this.state = 2167; this.match(ImpalaSqlParser.KW_NOT); - this.state = 2174; + this.state = 2168; this.booleanExpression(3); } break; @@ -9979,9 +9980,9 @@ export class ImpalaSqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2185; + this.state = 2179; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 278, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9989,21 +9990,21 @@ export class ImpalaSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 2183; + this.state = 2177; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2177; + this.state = 2171; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2178; + this.state = 2172; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_AND); - this.state = 2179; + this.state = 2173; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -10012,22 +10013,22 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2180; + this.state = 2174; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2181; + this.state = 2175; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_OR); - this.state = 2182; + this.state = 2176; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 2187; + this.state = 2181; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 278, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); } } } @@ -10050,16 +10051,16 @@ export class ImpalaSqlParser extends antlr.Parser { this.enterRule(localContext, 308, ImpalaSqlParser.RULE_predicate); let _la: number; try { - this.state = 2246; + this.state = 2240; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2188; + this.state = 2182; this.comparisonOperator(); - this.state = 2189; + this.state = 2183; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -10067,11 +10068,11 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2191; + this.state = 2185; this.comparisonOperator(); - this.state = 2192; + this.state = 2186; this.comparisonQuantifier(); - this.state = 2193; + this.state = 2187; this.subQueryRelation(); } break; @@ -10079,23 +10080,23 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2196; + this.state = 2190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 133) { { - this.state = 2195; + this.state = 2189; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2198; + this.state = 2192; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2199; + this.state = 2193; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2200; + this.state = 2194; this.match(ImpalaSqlParser.KW_AND); - this.state = 2201; + this.state = 2195; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -10103,39 +10104,39 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2204; + this.state = 2198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 133) { { - this.state = 2203; + this.state = 2197; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2206; + this.state = 2200; this.match(ImpalaSqlParser.KW_IN); - this.state = 2207; + this.state = 2201; this.match(ImpalaSqlParser.LPAREN); - this.state = 2208; + this.state = 2202; this.expression(); - this.state = 2213; + this.state = 2207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2209; + this.state = 2203; this.match(ImpalaSqlParser.COMMA); - this.state = 2210; + this.state = 2204; this.expression(); } } - this.state = 2215; + this.state = 2209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2216; + this.state = 2210; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10143,19 +10144,19 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2219; + this.state = 2213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 133) { { - this.state = 2218; + this.state = 2212; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2221; + this.state = 2215; this.match(ImpalaSqlParser.KW_IN); - this.state = 2222; + this.state = 2216; this.subQueryRelation(); } break; @@ -10163,17 +10164,17 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2224; + this.state = 2218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 133) { { - this.state = 2223; + this.state = 2217; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2226; + this.state = 2220; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 115 || _la === 165)) { this.errorHandler.recoverInline(this); @@ -10182,16 +10183,16 @@ export class ImpalaSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2227; + this.state = 2221; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2230; + this.state = 2224; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2228; + this.state = 2222; this.match(ImpalaSqlParser.KW_ESCAPE); - this.state = 2229; + this.state = 2223; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -10202,7 +10203,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new REGEXPContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2232; + this.state = 2226; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 164)) { this.errorHandler.recoverInline(this); @@ -10211,7 +10212,7 @@ export class ImpalaSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2233; + this.state = 2227; (localContext as REGEXPContext)._pattern = this.valueExpression(0); } break; @@ -10219,19 +10220,19 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new NullOrUnKnownOrBooleanPredicateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2234; + this.state = 2228; this.match(ImpalaSqlParser.KW_IS); - this.state = 2236; + this.state = 2230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 133) { { - this.state = 2235; + this.state = 2229; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2238; + this.state = 2232; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 134 || _la === 196 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -10246,23 +10247,23 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2239; + this.state = 2233; this.match(ImpalaSqlParser.KW_IS); - this.state = 2241; + this.state = 2235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 133) { { - this.state = 2240; + this.state = 2234; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2243; + this.state = 2237; this.match(ImpalaSqlParser.KW_DISTINCT); - this.state = 2244; + this.state = 2238; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2245; + this.state = 2239; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -10301,16 +10302,16 @@ export class ImpalaSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2252; + this.state = 2246; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2249; + this.state = 2243; this.primaryExpression(0); } break; @@ -10319,7 +10320,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2250; + this.state = 2244; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { @@ -10329,15 +10330,15 @@ export class ImpalaSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2251; + this.state = 2245; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2265; + this.state = 2259; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10345,19 +10346,19 @@ export class ImpalaSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 2263; + this.state = 2257; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2254; + this.state = 2248; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2255; + this.state = 2249; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 7) !== 0))) { @@ -10367,7 +10368,7 @@ export class ImpalaSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2256; + this.state = 2250; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -10376,11 +10377,11 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2257; + this.state = 2251; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2258; + this.state = 2252; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { @@ -10390,7 +10391,7 @@ export class ImpalaSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2259; + this.state = 2253; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -10399,22 +10400,22 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2260; + this.state = 2254; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2261; + this.state = 2255; this.match(ImpalaSqlParser.CONCAT); - this.state = 2262; + this.state = 2256; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; } } } - this.state = 2267; + this.state = 2261; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); } } } @@ -10451,16 +10452,16 @@ export class ImpalaSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2514; + this.state = 2508; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: { localContext = new NullLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2269; + this.state = 2263; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -10469,7 +10470,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2270; + this.state = 2264; this.interval(); } break; @@ -10478,9 +10479,9 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2271; + this.state = 2265; this.identifier(); - this.state = 2272; + this.state = 2266; this.stringLiteral(); } break; @@ -10489,9 +10490,9 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2274; + this.state = 2268; this.match(ImpalaSqlParser.DOUBLE_PRECISION); - this.state = 2275; + this.state = 2269; this.stringLiteral(); } break; @@ -10500,7 +10501,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2276; + this.state = 2270; this.number_(); } break; @@ -10509,7 +10510,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2277; + this.state = 2271; this.booleanValue(); } break; @@ -10518,7 +10519,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new StringLiteralValuesContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2278; + this.state = 2272; this.stringLiteral(); } break; @@ -10527,7 +10528,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2279; + this.state = 2273; this.match(ImpalaSqlParser.BINARY_LITERAL); } break; @@ -10536,7 +10537,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2280; + this.state = 2274; this.match(ImpalaSqlParser.QUESTION); } break; @@ -10545,17 +10546,17 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2281; + this.state = 2275; this.match(ImpalaSqlParser.KW_POSITION); - this.state = 2282; + this.state = 2276; this.match(ImpalaSqlParser.LPAREN); - this.state = 2283; + this.state = 2277; this.valueExpression(0); - this.state = 2284; + this.state = 2278; this.match(ImpalaSqlParser.KW_IN); - this.state = 2285; + this.state = 2279; this.valueExpression(0); - this.state = 2286; + this.state = 2280; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10564,41 +10565,41 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2288; + this.state = 2282; this.match(ImpalaSqlParser.LPAREN); - this.state = 2289; + this.state = 2283; this.expression(); - this.state = 2292; + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2290; + this.state = 2284; this.match(ImpalaSqlParser.KW_AS); - this.state = 2291; + this.state = 2285; this.type_(0); } } - this.state = 2302; + this.state = 2296; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2294; + this.state = 2288; this.match(ImpalaSqlParser.COMMA); - this.state = 2295; + this.state = 2289; this.expression(); - this.state = 2298; + this.state = 2292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2296; + this.state = 2290; this.match(ImpalaSqlParser.KW_AS); - this.state = 2297; + this.state = 2291; this.type_(0); } } @@ -10606,11 +10607,11 @@ export class ImpalaSqlParser extends antlr.Parser { } } } - this.state = 2304; + this.state = 2298; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); } - this.state = 2305; + this.state = 2299; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10619,29 +10620,29 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2307; + this.state = 2301; this.match(ImpalaSqlParser.KW_ROW); - this.state = 2308; + this.state = 2302; this.match(ImpalaSqlParser.LPAREN); - this.state = 2309; + this.state = 2303; this.expression(); - this.state = 2314; + this.state = 2308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2310; + this.state = 2304; this.match(ImpalaSqlParser.COMMA); - this.state = 2311; + this.state = 2305; this.expression(); } } - this.state = 2316; + this.state = 2310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2317; + this.state = 2311; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10650,30 +10651,30 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2319; + this.state = 2313; this.functionNamePath(); - this.state = 2320; + this.state = 2314; this.match(ImpalaSqlParser.LPAREN); - this.state = 2321; + this.state = 2315; this.match(ImpalaSqlParser.ASTERISK); - this.state = 2322; + this.state = 2316; this.match(ImpalaSqlParser.RPAREN); - this.state = 2324; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { - case 1: - { - this.state = 2323; - this.filter(); - } - break; - } - this.state = 2327; + this.state = 2318; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2326; + this.state = 2317; + this.filter(); + } + break; + } + this.state = 2321; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { + case 1: + { + this.state = 2320; this.over(); } break; @@ -10685,94 +10686,94 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2329; + this.state = 2323; this.functionNamePath(); - this.state = 2330; + this.state = 2324; this.match(ImpalaSqlParser.LPAREN); - this.state = 2342; + this.state = 2336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323012) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442972447) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 539262841) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 271654979) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & 537926659) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1076887561) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 19453) !== 0)) { { - this.state = 2332; + this.state = 2326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 2331; + this.state = 2325; this.setQuantifier(); } } - this.state = 2334; + this.state = 2328; this.expression(); - this.state = 2339; + this.state = 2333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2335; + this.state = 2329; this.match(ImpalaSqlParser.COMMA); - this.state = 2336; + this.state = 2330; this.expression(); } } - this.state = 2341; + this.state = 2335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2354; + this.state = 2348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140) { { - this.state = 2344; + this.state = 2338; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2345; + this.state = 2339; this.match(ImpalaSqlParser.KW_BY); - this.state = 2346; + this.state = 2340; this.sortItem(); - this.state = 2351; + this.state = 2345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2347; + this.state = 2341; this.match(ImpalaSqlParser.COMMA); - this.state = 2348; + this.state = 2342; this.sortItem(); } } - this.state = 2353; + this.state = 2347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2356; + this.state = 2350; this.match(ImpalaSqlParser.RPAREN); - this.state = 2358; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { - case 1: - { - this.state = 2357; - this.filter(); - } - break; - } - this.state = 2361; + this.state = 2352; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2360; + this.state = 2351; + this.filter(); + } + break; + } + this.state = 2355; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { + case 1: + { + this.state = 2354; this.over(); } break; @@ -10784,11 +10785,11 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2363; + this.state = 2357; this.identifier(); - this.state = 2364; + this.state = 2358; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2365; + this.state = 2359; this.expression(); } break; @@ -10797,39 +10798,39 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2367; + this.state = 2361; this.match(ImpalaSqlParser.LPAREN); - this.state = 2376; + this.state = 2370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { { - this.state = 2368; + this.state = 2362; this.identifier(); - this.state = 2373; + this.state = 2367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2369; + this.state = 2363; this.match(ImpalaSqlParser.COMMA); - this.state = 2370; + this.state = 2364; this.identifier(); } } - this.state = 2375; + this.state = 2369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2378; + this.state = 2372; this.match(ImpalaSqlParser.RPAREN); - this.state = 2379; + this.state = 2373; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2380; + this.state = 2374; this.expression(); } break; @@ -10838,11 +10839,11 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2381; + this.state = 2375; this.match(ImpalaSqlParser.LPAREN); - this.state = 2382; + this.state = 2376; this.queryStatement(); - this.state = 2383; + this.state = 2377; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10851,13 +10852,13 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2385; + this.state = 2379; this.match(ImpalaSqlParser.KW_EXISTS); - this.state = 2386; + this.state = 2380; this.match(ImpalaSqlParser.LPAREN); - this.state = 2387; + this.state = 2381; this.queryStatement(); - this.state = 2388; + this.state = 2382; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10866,37 +10867,37 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2390; + this.state = 2384; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2391; + this.state = 2385; this.valueExpression(0); - this.state = 2393; + this.state = 2387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2392; + this.state = 2386; this.whenClause(); } } - this.state = 2395; + this.state = 2389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 216); - this.state = 2399; + this.state = 2393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2397; + this.state = 2391; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2398; + this.state = 2392; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2401; + this.state = 2395; this.match(ImpalaSqlParser.KW_END); } break; @@ -10905,35 +10906,35 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2403; + this.state = 2397; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2405; + this.state = 2399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2404; + this.state = 2398; this.whenClause(); } } - this.state = 2407; + this.state = 2401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 216); - this.state = 2411; + this.state = 2405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2409; + this.state = 2403; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2410; + this.state = 2404; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2413; + this.state = 2407; this.match(ImpalaSqlParser.KW_END); } break; @@ -10942,17 +10943,17 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2415; + this.state = 2409; this.match(ImpalaSqlParser.KW_CAST); - this.state = 2416; + this.state = 2410; this.match(ImpalaSqlParser.LPAREN); - this.state = 2417; + this.state = 2411; this.expression(); - this.state = 2418; + this.state = 2412; this.match(ImpalaSqlParser.KW_AS); - this.state = 2419; + this.state = 2413; this.type_(0); - this.state = 2420; + this.state = 2414; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10961,17 +10962,17 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2422; + this.state = 2416; this.match(ImpalaSqlParser.KW_TRY_CAST); - this.state = 2423; + this.state = 2417; this.match(ImpalaSqlParser.LPAREN); - this.state = 2424; + this.state = 2418; this.expression(); - this.state = 2425; + this.state = 2419; this.match(ImpalaSqlParser.KW_AS); - this.state = 2426; + this.state = 2420; this.type_(0); - this.state = 2427; + this.state = 2421; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10980,37 +10981,37 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2429; + this.state = 2423; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2430; + this.state = 2424; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2439; + this.state = 2433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 539262841) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 271654979) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & 537926659) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1076887561) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 19453) !== 0)) { { - this.state = 2431; + this.state = 2425; this.expression(); - this.state = 2436; + this.state = 2430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2432; + this.state = 2426; this.match(ImpalaSqlParser.COMMA); - this.state = 2433; + this.state = 2427; this.expression(); } } - this.state = 2438; + this.state = 2432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2441; + this.state = 2435; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11019,7 +11020,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2442; + this.state = 2436; this.identifier(); } break; @@ -11028,7 +11029,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2443; + this.state = 2437; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_DATE); } break; @@ -11037,11 +11038,34 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2444; + this.state = 2438; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIME); + this.state = 2442; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + case 1: + { + this.state = 2439; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2440; + (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); + this.state = 2441; + this.match(ImpalaSqlParser.RPAREN); + } + break; + } + } + break; + case 27: + { + localContext = new SpecialDateTimeFunctionContext(localContext); + this.context = localContext; + previousContext = localContext; + this.state = 2444; + (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIMESTAMP); this.state = 2448; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 312, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { this.state = 2445; @@ -11055,16 +11079,16 @@ export class ImpalaSqlParser extends antlr.Parser { } } break; - case 27: + case 28: { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; this.state = 2450; - (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIMESTAMP); + (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIME); this.state = 2454; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: { this.state = 2451; @@ -11078,16 +11102,16 @@ export class ImpalaSqlParser extends antlr.Parser { } } break; - case 28: + case 29: { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; this.state = 2456; - (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIME); + (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIMESTAMP); this.state = 2460; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { this.state = 2457; @@ -11101,35 +11125,12 @@ export class ImpalaSqlParser extends antlr.Parser { } } break; - case 29: - { - localContext = new SpecialDateTimeFunctionContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 2462; - (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIMESTAMP); - this.state = 2466; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { - case 1: - { - this.state = 2463; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2464; - (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2465; - this.match(ImpalaSqlParser.RPAREN); - } - break; - } - } - break; case 30: { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2468; + this.state = 2462; (localContext as CurrentUserContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_USER); } break; @@ -11138,7 +11139,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2469; + this.state = 2463; (localContext as CurrentPathContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_PATH); } break; @@ -11147,29 +11148,29 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2470; + this.state = 2464; this.match(ImpalaSqlParser.KW_SUBSTRING); - this.state = 2471; + this.state = 2465; this.match(ImpalaSqlParser.LPAREN); - this.state = 2472; + this.state = 2466; this.valueExpression(0); - this.state = 2473; + this.state = 2467; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2474; + this.state = 2468; this.valueExpression(0); - this.state = 2477; + this.state = 2471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 2475; + this.state = 2469; this.match(ImpalaSqlParser.KW_FOR); - this.state = 2476; + this.state = 2470; this.valueExpression(0); } } - this.state = 2479; + this.state = 2473; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11178,25 +11179,25 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2481; + this.state = 2475; this.match(ImpalaSqlParser.KW_NORMALIZE); - this.state = 2482; + this.state = 2476; this.match(ImpalaSqlParser.LPAREN); - this.state = 2483; + this.state = 2477; this.valueExpression(0); - this.state = 2486; + this.state = 2480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 247) { { - this.state = 2484; + this.state = 2478; this.match(ImpalaSqlParser.COMMA); - this.state = 2485; + this.state = 2479; this.normalForm(); } } - this.state = 2488; + this.state = 2482; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11205,17 +11206,17 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2490; + this.state = 2484; this.match(ImpalaSqlParser.KW_EXTRACT); - this.state = 2491; + this.state = 2485; this.match(ImpalaSqlParser.LPAREN); - this.state = 2492; + this.state = 2486; this.identifier(); - this.state = 2493; + this.state = 2487; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2494; + this.state = 2488; this.valueExpression(0); - this.state = 2495; + this.state = 2489; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11224,11 +11225,11 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2497; + this.state = 2491; this.match(ImpalaSqlParser.LPAREN); - this.state = 2498; + this.state = 2492; this.expression(); - this.state = 2499; + this.state = 2493; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11237,45 +11238,45 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2501; + this.state = 2495; this.match(ImpalaSqlParser.KW_GROUPING); - this.state = 2502; + this.state = 2496; this.match(ImpalaSqlParser.LPAREN); - this.state = 2511; + this.state = 2505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { { - this.state = 2503; + this.state = 2497; this.qualifiedName(); - this.state = 2508; + this.state = 2502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2504; + this.state = 2498; this.match(ImpalaSqlParser.COMMA); - this.state = 2505; + this.state = 2499; this.qualifiedName(); } } - this.state = 2510; + this.state = 2504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2513; + this.state = 2507; this.match(ImpalaSqlParser.RPAREN); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2526; + this.state = 2520; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 322, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11283,23 +11284,23 @@ export class ImpalaSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 2524; + this.state = 2518; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2516; + this.state = 2510; if (!(this.precpred(this.context, 15))) { throw this.createFailedPredicateException("this.precpred(this.context, 15)"); } - this.state = 2517; + this.state = 2511; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2518; + this.state = 2512; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2519; + this.state = 2513; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11308,22 +11309,22 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2521; + this.state = 2515; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); } - this.state = 2522; + this.state = 2516; this.match(ImpalaSqlParser.DOT); - this.state = 2523; + this.state = 2517; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2528; + this.state = 2522; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 322, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); } } } @@ -11345,14 +11346,14 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new StringLiteralContext(this.context, this.state); this.enterRule(localContext, 314, ImpalaSqlParser.RULE_stringLiteral); try { - this.state = 2535; + this.state = 2529; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2529; + this.state = 2523; this.match(ImpalaSqlParser.STRING); } break; @@ -11360,16 +11361,16 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2530; + this.state = 2524; this.match(ImpalaSqlParser.UNICODE_STRING); - this.state = 2533; + this.state = 2527; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2531; + this.state = 2525; this.match(ImpalaSqlParser.KW_UESCAPE); - this.state = 2532; + this.state = 2526; this.match(ImpalaSqlParser.STRING); } break; @@ -11401,7 +11402,7 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2537; + this.state = 2531; _la = this.tokenStream.LA(1); if(!(((((_la - 233)) & ~0x1F) === 0 && ((1 << (_la - 233)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11433,7 +11434,7 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2539; + this.state = 2533; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 6 || _la === 182)) { this.errorHandler.recoverInline(this); @@ -11465,7 +11466,7 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2541; + this.state = 2535; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 196)) { this.errorHandler.recoverInline(this); @@ -11494,54 +11495,54 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new IntervalContext(this.context, this.state); this.enterRule(localContext, 322, ImpalaSqlParser.RULE_interval); try { - this.state = 2557; + this.state = 2551; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2543; + this.state = 2537; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2544; + this.state = 2538; this.intervalField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2545; + this.state = 2539; this.match(ImpalaSqlParser.LPAREN); - this.state = 2546; + this.state = 2540; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2547; + this.state = 2541; this.match(ImpalaSqlParser.RPAREN); - this.state = 2548; + this.state = 2542; this.intervalField(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2549; + this.state = 2543; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2550; + this.state = 2544; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2551; + this.state = 2545; this.intervalField(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2552; + this.state = 2546; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2553; + this.state = 2547; this.match(ImpalaSqlParser.LPAREN); - this.state = 2554; + this.state = 2548; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2555; + this.state = 2549; this.match(ImpalaSqlParser.RPAREN); - this.state = 2556; + this.state = 2550; this.intervalField(); } break; @@ -11568,7 +11569,7 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2559; + this.state = 2553; _la = this.tokenStream.LA(1); if(!(_la === 48 || _la === 49 || _la === 91 || _la === 92 || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 15) !== 0) || _la === 173 || _la === 174 || _la === 219 || _la === 220)) { this.errorHandler.recoverInline(this); @@ -11600,7 +11601,7 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2561; + this.state = 2555; _la = this.tokenStream.LA(1); if(!(((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11644,70 +11645,70 @@ export class ImpalaSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2607; + this.state = 2601; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: { - this.state = 2564; + this.state = 2558; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2565; + this.state = 2559; this.match(ImpalaSqlParser.LT); - this.state = 2566; + this.state = 2560; this.type_(0); - this.state = 2567; + this.state = 2561; this.match(ImpalaSqlParser.GT); } break; case ImpalaSqlParser.KW_MAP: { - this.state = 2569; + this.state = 2563; this.match(ImpalaSqlParser.KW_MAP); - this.state = 2570; + this.state = 2564; this.match(ImpalaSqlParser.LT); - this.state = 2571; + this.state = 2565; this.type_(0); - this.state = 2572; + this.state = 2566; this.match(ImpalaSqlParser.COMMA); - this.state = 2573; + this.state = 2567; this.type_(0); - this.state = 2574; + this.state = 2568; this.match(ImpalaSqlParser.GT); } break; case ImpalaSqlParser.KW_STRUCT: { - this.state = 2576; + this.state = 2570; this.match(ImpalaSqlParser.KW_STRUCT); - this.state = 2577; + this.state = 2571; this.match(ImpalaSqlParser.LT); - this.state = 2578; + this.state = 2572; this.identifier(); - this.state = 2579; + this.state = 2573; this.match(ImpalaSqlParser.COLON); - this.state = 2580; + this.state = 2574; this.type_(0); - this.state = 2588; + this.state = 2582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2581; + this.state = 2575; this.match(ImpalaSqlParser.COMMA); - this.state = 2582; + this.state = 2576; this.identifier(); - this.state = 2583; + this.state = 2577; this.match(ImpalaSqlParser.COLON); - this.state = 2584; + this.state = 2578; this.type_(0); } } - this.state = 2590; + this.state = 2584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2591; + this.state = 2585; this.match(ImpalaSqlParser.GT); } break; @@ -11752,34 +11753,34 @@ export class ImpalaSqlParser extends antlr.Parser { case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: case ImpalaSqlParser.DOUBLE_PRECISION: { - this.state = 2593; + this.state = 2587; this.baseType(); - this.state = 2605; + this.state = 2599; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: { - this.state = 2594; + this.state = 2588; this.match(ImpalaSqlParser.LPAREN); - this.state = 2595; + this.state = 2589; this.typeParameter(); - this.state = 2600; + this.state = 2594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2596; + this.state = 2590; this.match(ImpalaSqlParser.COMMA); - this.state = 2597; + this.state = 2591; this.typeParameter(); } } - this.state = 2602; + this.state = 2596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2603; + this.state = 2597; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11790,9 +11791,9 @@ export class ImpalaSqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2613; + this.state = 2607; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11803,18 +11804,18 @@ export class ImpalaSqlParser extends antlr.Parser { { localContext = new TypeContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_type); - this.state = 2609; + this.state = 2603; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2610; + this.state = 2604; this.match(ImpalaSqlParser.KW_ARRAY); } } } - this.state = 2615; + this.state = 2609; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); } } } @@ -11836,13 +11837,13 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new TypeParameterContext(this.context, this.state); this.enterRule(localContext, 330, ImpalaSqlParser.RULE_typeParameter); try { - this.state = 2618; + this.state = 2612; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2616; + this.state = 2610; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -11891,7 +11892,7 @@ export class ImpalaSqlParser extends antlr.Parser { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 2617; + this.state = 2611; this.type_(0); } break; @@ -11917,27 +11918,27 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new BaseTypeContext(this.context, this.state); this.enterRule(localContext, 332, ImpalaSqlParser.RULE_baseType); try { - this.state = 2624; + this.state = 2618; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.TIME_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 1); { - this.state = 2620; + this.state = 2614; this.match(ImpalaSqlParser.TIME_WITH_TIME_ZONE); } break; case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 2621; + this.state = 2615; this.match(ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE); } break; case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 3); { - this.state = 2622; + this.state = 2616; this.match(ImpalaSqlParser.DOUBLE_PRECISION); } break; @@ -11980,7 +11981,7 @@ export class ImpalaSqlParser extends antlr.Parser { case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 2623; + this.state = 2617; this.identifier(); } break; @@ -12008,13 +12009,13 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2626; + this.state = 2620; this.match(ImpalaSqlParser.KW_WHEN); - this.state = 2627; + this.state = 2621; localContext._condition = this.expression(); - this.state = 2628; + this.state = 2622; this.match(ImpalaSqlParser.KW_THEN); - this.state = 2629; + this.state = 2623; localContext._result = this.expression(); } } @@ -12038,15 +12039,15 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2631; + this.state = 2625; this.match(ImpalaSqlParser.KW_FILTER); - this.state = 2632; + this.state = 2626; this.match(ImpalaSqlParser.LPAREN); - this.state = 2633; + this.state = 2627; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 2634; + this.state = 2628; this.booleanExpression(0); - this.state = 2635; + this.state = 2629; this.match(ImpalaSqlParser.RPAREN); } } @@ -12071,83 +12072,83 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2637; + this.state = 2631; this.match(ImpalaSqlParser.KW_OVER); - this.state = 2638; + this.state = 2632; this.match(ImpalaSqlParser.LPAREN); - this.state = 2649; + this.state = 2643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2639; + this.state = 2633; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 2640; + this.state = 2634; this.match(ImpalaSqlParser.KW_BY); - this.state = 2641; + this.state = 2635; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2646; + this.state = 2640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2642; + this.state = 2636; this.match(ImpalaSqlParser.COMMA); - this.state = 2643; + this.state = 2637; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2648; + this.state = 2642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2661; + this.state = 2655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140) { { - this.state = 2651; + this.state = 2645; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2652; + this.state = 2646; this.match(ImpalaSqlParser.KW_BY); - this.state = 2653; + this.state = 2647; this.sortItem(); - this.state = 2658; + this.state = 2652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2654; + this.state = 2648; this.match(ImpalaSqlParser.COMMA); - this.state = 2655; + this.state = 2649; this.sortItem(); } } - this.state = 2660; + this.state = 2654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2664; + this.state = 2658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 155 || _la === 170) { { - this.state = 2663; + this.state = 2657; this.windowFrame(); } } - this.state = 2666; + this.state = 2660; this.match(ImpalaSqlParser.RPAREN); } } @@ -12169,32 +12170,47 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new WindowFrameContext(this.context, this.state); this.enterRule(localContext, 340, ImpalaSqlParser.RULE_windowFrame); try { - this.state = 2684; + this.state = 2678; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2668; + this.state = 2662; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2669; + this.state = 2663; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2670; + this.state = 2664; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2671; + this.state = 2665; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2672; + this.state = 2666; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); + this.state = 2667; + this.match(ImpalaSqlParser.KW_BETWEEN); + this.state = 2668; + localContext._start_ = this.frameBound(); + this.state = 2669; + this.match(ImpalaSqlParser.KW_AND); + this.state = 2670; + localContext._end = this.frameBound(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 2672; + localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); this.state = 2673; this.match(ImpalaSqlParser.KW_BETWEEN); this.state = 2674; @@ -12205,21 +12221,6 @@ export class ImpalaSqlParser extends antlr.Parser { localContext._end = this.frameBound(); } break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 2678; - localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2679; - this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2680; - localContext._start_ = this.frameBound(); - this.state = 2681; - this.match(ImpalaSqlParser.KW_AND); - this.state = 2682; - localContext._end = this.frameBound(); - } - break; } } catch (re) { @@ -12241,16 +12242,16 @@ export class ImpalaSqlParser extends antlr.Parser { this.enterRule(localContext, 342, ImpalaSqlParser.RULE_frameBound); let _la: number; try { - this.state = 2695; + this.state = 2689; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2686; + this.state = 2680; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2687; + this.state = 2681; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_PRECEDING); } break; @@ -12258,9 +12259,9 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2688; + this.state = 2682; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2689; + this.state = 2683; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_FOLLOWING); } break; @@ -12268,9 +12269,9 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2690; + this.state = 2684; this.match(ImpalaSqlParser.KW_CURRENT); - this.state = 2691; + this.state = 2685; this.match(ImpalaSqlParser.KW_ROW); } break; @@ -12278,9 +12279,9 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2692; + this.state = 2686; this.expression(); - this.state = 2693; + this.state = 2687; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 77 || _la === 150)) { @@ -12312,18 +12313,18 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new PathElementContext(this.context, this.state); this.enterRule(localContext, 344, ImpalaSqlParser.RULE_pathElement); try { - this.state = 2702; + this.state = 2696; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2697; + this.state = 2691; this.identifier(); - this.state = 2698; + this.state = 2692; this.match(ImpalaSqlParser.DOT); - this.state = 2699; + this.state = 2693; this.identifier(); } break; @@ -12331,7 +12332,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2701; + this.state = 2695; this.identifier(); } break; @@ -12358,21 +12359,21 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2704; + this.state = 2698; this.pathElement(); - this.state = 2709; + this.state = 2703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 247) { { { - this.state = 2705; + this.state = 2699; this.match(ImpalaSqlParser.COMMA); - this.state = 2706; + this.state = 2700; this.pathElement(); } } - this.state = 2711; + this.state = 2705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12397,66 +12398,66 @@ export class ImpalaSqlParser extends antlr.Parser { this.enterRule(localContext, 348, ImpalaSqlParser.RULE_privilege); let _la: number; try { - this.state = 2725; + this.state = 2719; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2712; + this.state = 2706; this.match(ImpalaSqlParser.KW_ALL); } break; case ImpalaSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 2); { - this.state = 2713; + this.state = 2707; this.match(ImpalaSqlParser.KW_ALTER); } break; case ImpalaSqlParser.KW_DROP: this.enterOuterAlt(localContext, 3); { - this.state = 2714; + this.state = 2708; this.match(ImpalaSqlParser.KW_DROP); } break; case ImpalaSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 4); { - this.state = 2715; + this.state = 2709; this.match(ImpalaSqlParser.KW_CREATE); } break; case ImpalaSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 5); { - this.state = 2716; + this.state = 2710; this.match(ImpalaSqlParser.KW_INSERT); } break; case ImpalaSqlParser.KW_REFRESH: this.enterOuterAlt(localContext, 6); { - this.state = 2717; + this.state = 2711; this.match(ImpalaSqlParser.KW_REFRESH); } break; case ImpalaSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 7); { - this.state = 2718; + this.state = 2712; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 2723; + this.state = 2717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 249) { { - this.state = 2719; + this.state = 2713; this.match(ImpalaSqlParser.LPAREN); - this.state = 2720; + this.state = 2714; localContext._columnName = this.identifier(); - this.state = 2721; + this.state = 2715; this.match(ImpalaSqlParser.RPAREN); } } @@ -12488,7 +12489,7 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2727; + this.state = 2721; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 179 || _la === 190 || _la === 211)) { this.errorHandler.recoverInline(this); @@ -12520,25 +12521,25 @@ export class ImpalaSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2729; + this.state = 2723; this.identifier(); - this.state = 2734; + this.state = 2728; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 344, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2730; + this.state = 2724; this.match(ImpalaSqlParser.DOT); - this.state = 2731; + this.state = 2725; this.identifier(); } } } - this.state = 2736; + this.state = 2730; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 344, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); } } } @@ -12560,16 +12561,16 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new PrincipalContext(this.context, this.state); this.enterRule(localContext, 354, ImpalaSqlParser.RULE_principal); try { - this.state = 2743; + this.state = 2737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ROLE: localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2737; + this.state = 2731; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 2738; + this.state = 2732; this.identifier(); } break; @@ -12577,9 +12578,9 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2739; + this.state = 2733; this.match(ImpalaSqlParser.KW_USER); - this.state = 2740; + this.state = 2734; this.identifier(); } break; @@ -12587,9 +12588,9 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new GroupPrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2741; + this.state = 2735; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 2742; + this.state = 2736; this.identifier(); } break; @@ -12615,14 +12616,14 @@ export class ImpalaSqlParser extends antlr.Parser { let localContext = new IdentifierContext(this.context, this.state); this.enterRule(localContext, 356, ImpalaSqlParser.RULE_identifier); try { - this.state = 2750; + this.state = 2744; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2745; + this.state = 2739; this.match(ImpalaSqlParser.IDENTIFIER); } break; @@ -12630,7 +12631,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2746; + this.state = 2740; this.match(ImpalaSqlParser.STRING); } break; @@ -12670,7 +12671,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2747; + this.state = 2741; this.nonReserved(); } break; @@ -12678,7 +12679,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2748; + this.state = 2742; this.match(ImpalaSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -12686,7 +12687,7 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2749; + this.state = 2743; this.match(ImpalaSqlParser.DIGIT_IDENTIFIER); } break; @@ -12713,24 +12714,24 @@ export class ImpalaSqlParser extends antlr.Parser { this.enterRule(localContext, 358, ImpalaSqlParser.RULE_number); let _la: number; try { - this.state = 2764; + this.state = 2758; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 350, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2753; + this.state = 2747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240) { { - this.state = 2752; + this.state = 2746; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2755; + this.state = 2749; this.match(ImpalaSqlParser.DECIMAL_VALUE); } break; @@ -12738,17 +12739,17 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2757; + this.state = 2751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240) { { - this.state = 2756; + this.state = 2750; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2759; + this.state = 2753; this.match(ImpalaSqlParser.DOUBLE_VALUE); } break; @@ -12756,17 +12757,17 @@ export class ImpalaSqlParser extends antlr.Parser { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2761; + this.state = 2755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240) { { - this.state = 2760; + this.state = 2754; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2763; + this.state = 2757; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -12793,7 +12794,7 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2766; + this.state = 2760; _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 1085443) !== 0) || _la === 68 || _la === 91 || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 2561) !== 0) || ((((_la - 159)) & ~0x1F) === 0 && ((1 << (_la - 159)) & 134234241) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 2097409) !== 0))) { this.errorHandler.recoverInline(this); @@ -12825,7 +12826,7 @@ export class ImpalaSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2768; + this.state = 2762; _la = this.tokenStream.LA(1); if(!(_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0))) { this.errorHandler.recoverInline(this); @@ -12853,9 +12854,11 @@ export class ImpalaSqlParser extends antlr.Parser { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 129: + case 96: + return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); + case 130: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 139: + case 140: return this.relation_sempred(localContext as RelationContext, predIndex); case 153: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); @@ -12868,61 +12871,68 @@ export class ImpalaSqlParser extends antlr.Parser { } return true; } - private queryTerm_sempred(localContext: QueryTermContext | null, predIndex: number): boolean { + private columnNamePath_sempred(localContext: ColumnNamePathContext | null, predIndex: number): boolean { switch (predIndex) { case 0: - return this.precpred(this.context, 2); + return this.shouldMatchEmpty(); + } + return true; + } + private queryTerm_sempred(localContext: QueryTermContext | null, predIndex: number): boolean { + switch (predIndex) { case 1: + return this.precpred(this.context, 2); + case 2: return this.precpred(this.context, 1); } return true; } private relation_sempred(localContext: RelationContext | null, predIndex: number): boolean { switch (predIndex) { - case 2: + case 3: return this.precpred(this.context, 2); } return true; } private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 3: - return this.precpred(this.context, 2); case 4: + return this.precpred(this.context, 2); + case 5: return this.precpred(this.context, 1); } return true; } private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 5: - return this.precpred(this.context, 3); case 6: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 7: + return this.precpred(this.context, 2); + case 8: return this.precpred(this.context, 1); } return true; } private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 8: - return this.precpred(this.context, 15); case 9: + return this.precpred(this.context, 15); + case 10: return this.precpred(this.context, 13); } return true; } private type_sempred(localContext: TypeContext | null, predIndex: number): boolean { switch (predIndex) { - case 10: + case 11: return this.precpred(this.context, 5); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,273,2771,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,273,2765,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -13049,168 +13059,167 @@ export class ImpalaSqlParser extends antlr.Parser { 86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92,1, 92,1,93,1,93,1,93,5,93,1478,8,93,10,93,12,93,1481,9,93,1,94,1,94, 1,94,5,94,1486,8,94,10,94,12,94,1489,9,94,1,95,1,95,3,95,1493,8, - 95,1,96,1,96,1,97,1,97,3,97,1499,8,97,1,98,1,98,1,98,3,98,1504,8, - 98,1,98,1,98,3,98,1508,8,98,1,98,1,98,1,98,3,98,1513,8,98,1,98,1, - 98,1,98,3,98,1518,8,98,1,98,1,98,1,98,3,98,1523,8,98,1,98,1,98,3, - 98,1527,8,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,3,98,1536,8,98,1, - 98,3,98,1539,8,98,1,98,1,98,3,98,1543,8,98,1,99,1,99,1,99,5,99,1548, - 8,99,10,99,12,99,1551,9,99,1,100,1,100,1,100,1,100,1,101,1,101,1, - 101,1,101,3,101,1561,8,101,1,101,1,101,1,101,1,101,3,101,1567,8, - 101,5,101,1569,8,101,10,101,12,101,1572,9,101,1,101,1,101,1,102, - 3,102,1577,8,102,1,102,1,102,1,103,1,103,1,103,1,103,5,103,1585, - 8,103,10,103,12,103,1588,9,103,1,104,1,104,1,104,1,104,3,104,1594, - 8,104,1,104,1,104,1,104,3,104,1599,8,104,1,104,1,104,1,104,3,104, - 1604,8,104,1,104,1,104,1,104,3,104,1609,8,104,1,104,1,104,5,104, - 1613,8,104,10,104,12,104,1616,9,104,3,104,1618,8,104,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,3,105,1627,8,105,1,105,3,105,1630, - 8,105,1,105,3,105,1633,8,105,1,106,1,106,1,106,1,106,3,106,1639, - 8,106,1,107,1,107,1,108,1,108,1,108,1,108,5,108,1647,8,108,10,108, - 12,108,1650,9,108,3,108,1652,8,108,1,108,1,108,3,108,1656,8,108, - 1,108,1,108,3,108,1660,8,108,1,109,1,109,1,109,1,109,3,109,1666, - 8,109,1,109,1,109,5,109,1670,8,109,10,109,12,109,1673,9,109,3,109, - 1675,8,109,1,110,1,110,1,110,1,110,3,110,1681,8,110,1,110,1,110, - 5,110,1685,8,110,10,110,12,110,1688,9,110,3,110,1690,8,110,1,111, - 3,111,1693,8,111,1,111,1,111,3,111,1697,8,111,1,112,1,112,1,112, - 1,112,1,112,1,112,1,112,1,112,3,112,1707,8,112,1,113,1,113,1,114, - 1,114,1,115,1,115,1,115,5,115,1716,8,115,10,115,12,115,1719,9,115, - 1,115,1,115,3,115,1723,8,115,1,115,3,115,1726,8,115,1,116,1,116, - 3,116,1730,8,116,1,116,1,116,1,116,1,117,1,117,3,117,1737,8,117, - 1,117,1,117,1,117,1,117,1,117,1,117,5,117,1745,8,117,10,117,12,117, - 1748,9,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 3,118,1759,8,118,1,118,1,118,1,118,1,118,3,118,1765,8,118,3,118, - 1767,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,1776, - 8,119,1,119,3,119,1779,8,119,1,120,1,120,1,120,1,120,1,120,3,120, - 1786,8,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121, - 1796,8,121,1,122,1,122,1,122,1,122,3,122,1802,8,122,1,123,1,123, - 1,123,1,123,5,123,1808,8,123,10,123,12,123,1811,9,123,1,123,1,123, - 1,124,1,124,1,124,1,124,5,124,1819,8,124,10,124,12,124,1822,9,124, - 1,124,1,124,1,125,1,125,1,125,5,125,1829,8,125,10,125,12,125,1832, - 9,125,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,3,126,1842, - 8,126,3,126,1844,8,126,1,126,1,126,1,126,1,126,3,126,1850,8,126, - 1,127,1,127,1,127,3,127,1855,8,127,1,128,1,128,1,128,1,128,1,128, - 1,128,5,128,1863,8,128,10,128,12,128,1866,9,128,3,128,1868,8,128, - 1,128,1,128,1,128,1,128,3,128,1874,8,128,3,128,1876,8,128,1,129, - 1,129,1,129,1,129,1,129,1,129,3,129,1884,8,129,1,129,1,129,1,129, - 1,129,3,129,1890,8,129,1,129,5,129,1893,8,129,10,129,12,129,1896, - 9,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,5,130,1905,8,130, - 10,130,12,130,1908,9,130,1,130,1,130,1,130,1,130,3,130,1914,8,130, - 1,131,1,131,3,131,1918,8,131,1,131,1,131,3,131,1922,8,131,1,132, - 1,132,3,132,1926,8,132,1,132,3,132,1929,8,132,1,132,1,132,1,132, - 5,132,1934,8,132,10,132,12,132,1937,9,132,1,132,1,132,1,132,1,132, - 5,132,1943,8,132,10,132,12,132,1946,9,132,3,132,1948,8,132,1,132, - 1,132,3,132,1952,8,132,1,132,1,132,1,132,3,132,1957,8,132,1,132, - 1,132,3,132,1961,8,132,1,133,3,133,1964,8,133,1,133,1,133,1,133, - 5,133,1969,8,133,10,133,12,133,1972,9,133,1,134,1,134,1,135,1,135, - 1,135,1,135,5,135,1980,8,135,10,135,12,135,1983,9,135,3,135,1985, - 8,135,1,135,1,135,3,135,1989,8,135,1,136,1,136,3,136,1993,8,136, - 1,136,1,136,1,136,1,137,1,137,1,138,1,138,3,138,2002,8,138,1,138, - 3,138,2005,8,138,1,138,1,138,1,138,1,138,1,138,3,138,2012,8,138, - 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, - 1,139,3,139,2026,8,139,5,139,2028,8,139,10,139,12,139,2031,9,139, - 1,140,3,140,2034,8,140,1,140,1,140,3,140,2038,8,140,1,140,1,140, - 3,140,2042,8,140,1,140,1,140,3,140,2046,8,140,1,140,1,140,3,140, - 2050,8,140,1,140,1,140,3,140,2054,8,140,1,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,3,140,2064,8,140,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,5,141,2073,8,141,10,141,12,141,2076,9,141,1,141, - 1,141,3,141,2080,8,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,3,142,2093,8,142,3,142,2095,8,142,1,143, - 1,143,1,144,1,144,3,144,2101,8,144,1,144,1,144,3,144,2105,8,144, - 3,144,2107,8,144,1,145,1,145,1,145,1,145,5,145,2113,8,145,10,145, - 12,145,2116,9,145,1,145,1,145,1,146,1,146,1,146,1,146,5,146,2124, - 8,146,10,146,12,146,2127,9,146,1,146,1,146,1,147,1,147,3,147,2133, - 8,147,1,147,1,147,1,147,3,147,2138,8,147,1,148,1,148,1,148,1,148, - 1,149,1,149,1,149,1,149,1,149,5,149,2149,8,149,10,149,12,149,2152, - 9,149,1,149,1,149,1,149,3,149,2157,8,149,1,150,1,150,1,150,1,150, - 1,151,1,151,3,151,2165,8,151,1,152,1,152,1,153,1,153,1,153,3,153, - 2172,8,153,1,153,1,153,3,153,2176,8,153,1,153,1,153,1,153,1,153, - 1,153,1,153,5,153,2184,8,153,10,153,12,153,2187,9,153,1,154,1,154, - 1,154,1,154,1,154,1,154,1,154,1,154,3,154,2197,8,154,1,154,1,154, - 1,154,1,154,1,154,1,154,3,154,2205,8,154,1,154,1,154,1,154,1,154, - 1,154,5,154,2212,8,154,10,154,12,154,2215,9,154,1,154,1,154,1,154, - 3,154,2220,8,154,1,154,1,154,1,154,3,154,2225,8,154,1,154,1,154, - 1,154,1,154,3,154,2231,8,154,1,154,1,154,1,154,1,154,3,154,2237, - 8,154,1,154,1,154,1,154,3,154,2242,8,154,1,154,1,154,1,154,3,154, - 2247,8,154,1,155,1,155,1,155,1,155,3,155,2253,8,155,1,155,1,155, - 1,155,1,155,1,155,1,155,1,155,1,155,1,155,5,155,2264,8,155,10,155, - 12,155,2267,9,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, + 95,1,96,1,96,3,96,1497,8,96,1,97,1,97,3,97,1501,8,97,1,98,1,98,1, + 98,3,98,1506,8,98,1,98,1,98,3,98,1510,8,98,1,98,1,98,1,98,3,98,1515, + 8,98,1,98,1,98,1,98,3,98,1520,8,98,1,98,1,98,1,98,3,98,1525,8,98, + 1,98,1,98,3,98,1529,8,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,3,98, + 1538,8,98,1,98,3,98,1541,8,98,1,98,1,98,3,98,1545,8,98,1,99,1,99, + 1,99,5,99,1550,8,99,10,99,12,99,1553,9,99,1,100,1,100,1,100,1,100, + 1,101,1,101,1,101,1,101,3,101,1563,8,101,1,101,1,101,1,101,1,101, + 3,101,1569,8,101,5,101,1571,8,101,10,101,12,101,1574,9,101,1,101, + 1,101,1,102,3,102,1579,8,102,1,102,1,102,1,103,1,103,1,103,1,103, + 5,103,1587,8,103,10,103,12,103,1590,9,103,1,104,1,104,1,104,1,104, + 3,104,1596,8,104,1,104,1,104,1,104,3,104,1601,8,104,1,104,1,104, + 1,104,3,104,1606,8,104,1,104,1,104,1,104,3,104,1611,8,104,1,104, + 1,104,5,104,1615,8,104,10,104,12,104,1618,9,104,3,104,1620,8,104, + 1,105,1,105,1,105,1,105,1,105,1,105,1,105,3,105,1629,8,105,1,105, + 3,105,1632,8,105,1,105,3,105,1635,8,105,1,106,1,106,1,106,1,106, + 3,106,1641,8,106,1,107,1,107,1,107,1,107,3,107,1647,8,107,1,108, + 1,108,1,109,1,109,1,109,1,109,5,109,1655,8,109,10,109,12,109,1658, + 9,109,3,109,1660,8,109,1,109,1,109,3,109,1664,8,109,1,109,1,109, + 3,109,1668,8,109,1,110,3,110,1671,8,110,1,110,1,110,5,110,1675,8, + 110,10,110,12,110,1678,9,110,3,110,1680,8,110,1,111,1,111,1,111, + 1,111,3,111,1686,8,111,1,111,1,111,5,111,1690,8,111,10,111,12,111, + 1693,9,111,3,111,1695,8,111,1,112,3,112,1698,8,112,1,112,1,112,3, + 112,1702,8,112,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,3, + 113,1712,8,113,1,114,1,114,1,115,1,115,1,116,1,116,1,116,5,116,1721, + 8,116,10,116,12,116,1724,9,116,1,116,1,116,3,116,1728,8,116,1,116, + 3,116,1731,8,116,1,117,1,117,3,117,1735,8,117,1,117,1,117,1,117, + 1,118,1,118,3,118,1742,8,118,1,118,1,118,1,118,1,118,1,118,1,118, + 5,118,1750,8,118,10,118,12,118,1753,9,118,1,118,1,118,1,119,1,119, + 1,119,1,119,1,119,1,119,1,119,3,119,1764,8,119,1,119,1,119,1,119, + 1,119,3,119,1770,8,119,3,119,1772,8,119,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,3,120,1781,8,120,1,120,3,120,1784,8,120,1,121, + 1,121,1,121,1,121,1,121,3,121,1791,8,121,1,122,1,122,1,122,1,122, + 1,122,1,122,1,122,1,122,3,122,1801,8,122,1,123,1,123,1,123,1,123, + 3,123,1807,8,123,1,124,1,124,1,124,1,124,5,124,1813,8,124,10,124, + 12,124,1816,9,124,1,124,1,124,1,125,1,125,1,125,1,125,5,125,1824, + 8,125,10,125,12,125,1827,9,125,1,125,1,125,1,126,1,126,1,126,5,126, + 1834,8,126,10,126,12,126,1837,9,126,1,127,1,127,1,127,1,127,1,127, + 1,127,1,127,1,127,3,127,1847,8,127,3,127,1849,8,127,1,127,1,127, + 1,127,1,127,3,127,1855,8,127,1,128,1,128,1,128,3,128,1860,8,128, + 1,129,1,129,1,129,1,129,1,129,1,129,5,129,1868,8,129,10,129,12,129, + 1871,9,129,3,129,1873,8,129,1,129,1,129,1,129,1,129,3,129,1879,8, + 129,3,129,1881,8,129,1,130,1,130,1,130,1,130,1,130,1,130,3,130,1889, + 8,130,1,130,1,130,1,130,1,130,3,130,1895,8,130,1,130,5,130,1898, + 8,130,10,130,12,130,1901,9,130,1,131,1,131,1,131,1,131,1,131,1,131, + 1,131,5,131,1910,8,131,10,131,12,131,1913,9,131,1,131,1,131,1,131, + 1,131,3,131,1919,8,131,1,132,1,132,3,132,1923,8,132,1,132,1,132, + 3,132,1927,8,132,1,133,1,133,3,133,1931,8,133,1,133,3,133,1934,8, + 133,1,133,1,133,1,133,5,133,1939,8,133,10,133,12,133,1942,9,133, + 1,133,1,133,1,133,1,133,5,133,1948,8,133,10,133,12,133,1951,9,133, + 3,133,1953,8,133,1,133,1,133,3,133,1957,8,133,1,133,1,133,1,133, + 3,133,1962,8,133,1,133,1,133,3,133,1966,8,133,1,134,3,134,1969,8, + 134,1,134,1,134,1,134,5,134,1974,8,134,10,134,12,134,1977,9,134, + 1,135,1,135,1,136,1,136,1,136,1,136,5,136,1985,8,136,10,136,12,136, + 1988,9,136,3,136,1990,8,136,1,136,1,136,3,136,1994,8,136,1,137,1, + 137,3,137,1998,8,137,1,137,1,137,1,137,1,138,1,138,1,139,1,139,3, + 139,2007,8,139,1,139,3,139,2010,8,139,1,139,1,139,1,139,1,139,1, + 139,3,139,2017,8,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1, + 140,1,140,1,140,1,140,1,140,3,140,2031,8,140,5,140,2033,8,140,10, + 140,12,140,2036,9,140,1,141,3,141,2039,8,141,1,141,1,141,3,141,2043, + 8,141,1,141,1,141,3,141,2047,8,141,1,141,1,141,3,141,2051,8,141, + 1,141,1,141,3,141,2055,8,141,1,141,1,141,3,141,2059,8,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,2069,8,141,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,5,142,2078,8,142,10,142,12,142, + 2081,9,142,1,142,1,142,3,142,2085,8,142,1,143,1,143,1,143,1,143, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,2098,8,143,3,143, + 2100,8,143,1,144,1,144,1,145,1,145,3,145,2106,8,145,1,145,1,145, + 3,145,2110,8,145,3,145,2112,8,145,1,146,1,146,1,146,1,146,5,146, + 2118,8,146,10,146,12,146,2121,9,146,1,146,1,146,1,147,1,147,3,147, + 2127,8,147,1,147,1,147,1,147,3,147,2132,8,147,1,148,1,148,1,148, + 1,148,1,149,1,149,1,149,1,149,1,149,5,149,2143,8,149,10,149,12,149, + 2146,9,149,1,149,1,149,1,149,3,149,2151,8,149,1,150,1,150,1,150, + 1,150,1,151,1,151,3,151,2159,8,151,1,152,1,152,1,153,1,153,1,153, + 3,153,2166,8,153,1,153,1,153,3,153,2170,8,153,1,153,1,153,1,153, + 1,153,1,153,1,153,5,153,2178,8,153,10,153,12,153,2181,9,153,1,154, + 1,154,1,154,1,154,1,154,1,154,1,154,1,154,3,154,2191,8,154,1,154, + 1,154,1,154,1,154,1,154,1,154,3,154,2199,8,154,1,154,1,154,1,154, + 1,154,1,154,5,154,2206,8,154,10,154,12,154,2209,9,154,1,154,1,154, + 1,154,3,154,2214,8,154,1,154,1,154,1,154,3,154,2219,8,154,1,154, + 1,154,1,154,1,154,3,154,2225,8,154,1,154,1,154,1,154,1,154,3,154, + 2231,8,154,1,154,1,154,1,154,3,154,2236,8,154,1,154,1,154,1,154, + 3,154,2241,8,154,1,155,1,155,1,155,1,155,3,155,2247,8,155,1,155, + 1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,5,155,2258,8,155, + 10,155,12,155,2261,9,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156, 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,3,156,2293,8,156,1,156,1,156,1,156, - 1,156,3,156,2299,8,156,5,156,2301,8,156,10,156,12,156,2304,9,156, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2313,8,156,10,156, - 12,156,2316,9,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156, - 2325,8,156,1,156,3,156,2328,8,156,1,156,1,156,1,156,3,156,2333,8, - 156,1,156,1,156,1,156,5,156,2338,8,156,10,156,12,156,2341,9,156, - 3,156,2343,8,156,1,156,1,156,1,156,1,156,1,156,5,156,2350,8,156, - 10,156,12,156,2353,9,156,3,156,2355,8,156,1,156,1,156,3,156,2359, - 8,156,1,156,3,156,2362,8,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,5,156,2372,8,156,10,156,12,156,2375,9,156,3,156,2377, - 8,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,4,156,2394,8,156,11,156,12,156,2395, - 1,156,1,156,3,156,2400,8,156,1,156,1,156,1,156,1,156,4,156,2406, - 8,156,11,156,12,156,2407,1,156,1,156,3,156,2412,8,156,1,156,1,156, + 1,156,1,156,1,156,1,156,1,156,1,156,3,156,2287,8,156,1,156,1,156, + 1,156,1,156,3,156,2293,8,156,5,156,2295,8,156,10,156,12,156,2298, + 9,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2307,8,156, + 10,156,12,156,2310,9,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, + 3,156,2319,8,156,1,156,3,156,2322,8,156,1,156,1,156,1,156,3,156, + 2327,8,156,1,156,1,156,1,156,5,156,2332,8,156,10,156,12,156,2335, + 9,156,3,156,2337,8,156,1,156,1,156,1,156,1,156,1,156,5,156,2344, + 8,156,10,156,12,156,2347,9,156,3,156,2349,8,156,1,156,1,156,3,156, + 2353,8,156,1,156,3,156,2356,8,156,1,156,1,156,1,156,1,156,1,156, + 1,156,1,156,1,156,5,156,2366,8,156,10,156,12,156,2369,9,156,3,156, + 2371,8,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, + 1,156,1,156,1,156,1,156,1,156,1,156,4,156,2388,8,156,11,156,12,156, + 2389,1,156,1,156,3,156,2394,8,156,1,156,1,156,1,156,1,156,4,156, + 2400,8,156,11,156,12,156,2401,1,156,1,156,3,156,2406,8,156,1,156, 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2435,8,156, - 10,156,12,156,2438,9,156,3,156,2440,8,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,3,156,2449,8,156,1,156,1,156,1,156,1,156,3,156, - 2455,8,156,1,156,1,156,1,156,1,156,3,156,2461,8,156,1,156,1,156, - 1,156,1,156,3,156,2467,8,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,3,156,2478,8,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,3,156,2487,8,156,1,156,1,156,1,156,1,156,1,156,1,156, + 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2429, + 8,156,10,156,12,156,2432,9,156,3,156,2434,8,156,1,156,1,156,1,156, + 1,156,1,156,1,156,1,156,3,156,2443,8,156,1,156,1,156,1,156,1,156, + 3,156,2449,8,156,1,156,1,156,1,156,1,156,3,156,2455,8,156,1,156, + 1,156,1,156,1,156,3,156,2461,8,156,1,156,1,156,1,156,1,156,1,156, + 1,156,1,156,1,156,1,156,3,156,2472,8,156,1,156,1,156,1,156,1,156, + 1,156,1,156,1,156,3,156,2481,8,156,1,156,1,156,1,156,1,156,1,156, 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,5,156,2507,8,156,10,156,12,156,2510,9,156,3,156,2512,8,156, - 1,156,3,156,2515,8,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,5,156,2525,8,156,10,156,12,156,2528,9,156,1,157,1,157,1,157, - 1,157,3,157,2534,8,157,3,157,2536,8,157,1,158,1,158,1,159,1,159, - 1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,3,161,2558,8,161,1,162,1,162,1,163, - 1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 1,156,1,156,5,156,2501,8,156,10,156,12,156,2504,9,156,3,156,2506, + 8,156,1,156,3,156,2509,8,156,1,156,1,156,1,156,1,156,1,156,1,156, + 1,156,1,156,5,156,2519,8,156,10,156,12,156,2522,9,156,1,157,1,157, + 1,157,1,157,3,157,2528,8,157,3,157,2530,8,157,1,158,1,158,1,159, + 1,159,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, + 1,161,1,161,1,161,1,161,1,161,1,161,3,161,2552,8,161,1,162,1,162, + 1,163,1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, - 1,164,1,164,5,164,2587,8,164,10,164,12,164,2590,9,164,1,164,1,164, - 1,164,1,164,1,164,1,164,1,164,5,164,2599,8,164,10,164,12,164,2602, - 9,164,1,164,1,164,3,164,2606,8,164,3,164,2608,8,164,1,164,1,164, - 5,164,2612,8,164,10,164,12,164,2615,9,164,1,165,1,165,3,165,2619, - 8,165,1,166,1,166,1,166,1,166,3,166,2625,8,166,1,167,1,167,1,167, - 1,167,1,167,1,168,1,168,1,168,1,168,1,168,1,168,1,169,1,169,1,169, - 1,169,1,169,1,169,1,169,5,169,2645,8,169,10,169,12,169,2648,9,169, - 3,169,2650,8,169,1,169,1,169,1,169,1,169,1,169,5,169,2657,8,169, - 10,169,12,169,2660,9,169,3,169,2662,8,169,1,169,3,169,2665,8,169, - 1,169,1,169,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 1,170,1,170,1,170,1,170,1,170,1,170,1,170,3,170,2685,8,170,1,171, - 1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,3,171,2696,8,171, - 1,172,1,172,1,172,1,172,1,172,3,172,2703,8,172,1,173,1,173,1,173, - 5,173,2708,8,173,10,173,12,173,2711,9,173,1,174,1,174,1,174,1,174, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,2724,8,174,3,174, - 2726,8,174,1,175,1,175,1,176,1,176,1,176,5,176,2733,8,176,10,176, - 12,176,2736,9,176,1,177,1,177,1,177,1,177,1,177,1,177,3,177,2744, - 8,177,1,178,1,178,1,178,1,178,1,178,3,178,2751,8,178,1,179,3,179, - 2754,8,179,1,179,1,179,3,179,2758,8,179,1,179,1,179,3,179,2762,8, - 179,1,179,3,179,2765,8,179,1,180,1,180,1,181,1,181,1,181,10,768, - 1441,1614,1648,1671,1686,1717,1746,1820,2302,6,258,278,306,310,312, - 328,182,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40, - 42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84, - 86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120, - 122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152, - 154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184, - 186,188,190,192,194,196,198,200,202,204,206,208,210,212,214,216, - 218,220,222,224,226,228,230,232,234,236,238,240,242,244,246,248, - 250,252,254,256,258,260,262,264,266,268,270,272,274,276,278,280, - 282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312, - 314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344, - 346,348,350,352,354,356,358,360,362,0,32,2,0,46,46,171,171,2,0,167, - 167,206,206,2,0,177,177,204,204,2,0,69,69,80,80,2,0,27,27,160,160, - 2,0,103,103,145,145,2,0,47,47,172,172,2,0,3,3,12,12,3,0,87,87,167, - 167,206,206,2,0,179,179,211,211,1,0,229,232,2,0,148,148,221,225, - 2,0,65,65,95,95,2,0,64,64,202,202,2,0,10,10,55,55,2,0,75,75,112, - 112,2,0,2,2,57,57,2,0,14,14,187,187,3,0,106,106,115,115,165,165, - 2,0,105,105,164,164,4,0,70,70,134,134,196,196,210,210,1,0,239,240, - 1,0,241,243,1,0,233,238,3,0,2,2,6,6,182,182,2,0,70,70,196,196,5, - 0,48,49,91,92,123,126,173,174,219,220,1,0,128,131,2,0,77,77,150, + 1,164,1,164,1,164,5,164,2581,8,164,10,164,12,164,2584,9,164,1,164, + 1,164,1,164,1,164,1,164,1,164,1,164,5,164,2593,8,164,10,164,12,164, + 2596,9,164,1,164,1,164,3,164,2600,8,164,3,164,2602,8,164,1,164,1, + 164,5,164,2606,8,164,10,164,12,164,2609,9,164,1,165,1,165,3,165, + 2613,8,165,1,166,1,166,1,166,1,166,3,166,2619,8,166,1,167,1,167, + 1,167,1,167,1,167,1,168,1,168,1,168,1,168,1,168,1,168,1,169,1,169, + 1,169,1,169,1,169,1,169,1,169,5,169,2639,8,169,10,169,12,169,2642, + 9,169,3,169,2644,8,169,1,169,1,169,1,169,1,169,1,169,5,169,2651, + 8,169,10,169,12,169,2654,9,169,3,169,2656,8,169,1,169,3,169,2659, + 8,169,1,169,1,169,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,3,170,2679,8,170, + 1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,3,171,2690, + 8,171,1,172,1,172,1,172,1,172,1,172,3,172,2697,8,172,1,173,1,173, + 1,173,5,173,2702,8,173,10,173,12,173,2705,9,173,1,174,1,174,1,174, + 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,2718,8,174, + 3,174,2720,8,174,1,175,1,175,1,176,1,176,1,176,5,176,2727,8,176, + 10,176,12,176,2730,9,176,1,177,1,177,1,177,1,177,1,177,1,177,3,177, + 2738,8,177,1,178,1,178,1,178,1,178,1,178,3,178,2745,8,178,1,179, + 3,179,2748,8,179,1,179,1,179,3,179,2752,8,179,1,179,1,179,3,179, + 2756,8,179,1,179,3,179,2759,8,179,1,180,1,180,1,181,1,181,1,181, + 10,768,1441,1616,1656,1676,1691,1722,1751,1825,2296,6,260,280,306, + 310,312,328,182,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34, + 36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78, + 80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116, + 118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148, + 150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180, + 182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212, + 214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244, + 246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276, + 278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308, + 310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340, + 342,344,346,348,350,352,354,356,358,360,362,0,32,2,0,46,46,171,171, + 2,0,167,167,206,206,2,0,177,177,204,204,2,0,69,69,80,80,2,0,27,27, + 160,160,2,0,103,103,145,145,2,0,47,47,172,172,2,0,3,3,12,12,3,0, + 87,87,167,167,206,206,2,0,179,179,211,211,1,0,229,232,2,0,148,148, + 221,225,2,0,65,65,95,95,2,0,64,64,202,202,2,0,10,10,55,55,2,0,75, + 75,112,112,2,0,2,2,57,57,2,0,14,14,187,187,3,0,106,106,115,115,165, + 165,2,0,105,105,164,164,4,0,70,70,134,134,196,196,210,210,1,0,239, + 240,1,0,241,243,1,0,233,238,3,0,2,2,6,6,182,182,2,0,70,70,196,196, + 5,0,48,49,91,92,123,126,173,174,219,220,1,0,128,131,2,0,77,77,150, 150,4,0,46,46,179,179,190,190,211,211,16,0,28,29,40,40,43,43,48, 48,68,68,91,91,114,114,123,123,125,125,159,159,166,166,173,173,186, 186,198,198,206,206,219,219,22,0,14,14,43,44,48,49,65,65,68,68,91, 91,95,95,110,110,119,119,123,126,128,131,138,138,141,141,153,154, 173,174,181,181,186,187,197,197,206,206,215,215,219,219,222,222, - 3093,0,367,1,0,0,0,2,372,1,0,0,0,4,398,1,0,0,0,6,400,1,0,0,0,8,411, + 3088,0,367,1,0,0,0,2,372,1,0,0,0,4,398,1,0,0,0,6,400,1,0,0,0,8,411, 1,0,0,0,10,413,1,0,0,0,12,452,1,0,0,0,14,474,1,0,0,0,16,529,1,0, 0,0,18,549,1,0,0,0,20,563,1,0,0,0,22,567,1,0,0,0,24,629,1,0,0,0, 26,677,1,0,0,0,28,679,1,0,0,0,30,687,1,0,0,0,32,707,1,0,0,0,34,727, @@ -13233,28 +13242,28 @@ export class ImpalaSqlParser extends antlr.Parser { 1,0,0,0,168,1451,1,0,0,0,170,1455,1,0,0,0,172,1458,1,0,0,0,174,1462, 1,0,0,0,176,1464,1,0,0,0,178,1466,1,0,0,0,180,1468,1,0,0,0,182,1470, 1,0,0,0,184,1472,1,0,0,0,186,1474,1,0,0,0,188,1482,1,0,0,0,190,1492, - 1,0,0,0,192,1494,1,0,0,0,194,1498,1,0,0,0,196,1503,1,0,0,0,198,1544, - 1,0,0,0,200,1552,1,0,0,0,202,1556,1,0,0,0,204,1576,1,0,0,0,206,1580, - 1,0,0,0,208,1589,1,0,0,0,210,1619,1,0,0,0,212,1634,1,0,0,0,214,1640, - 1,0,0,0,216,1642,1,0,0,0,218,1661,1,0,0,0,220,1676,1,0,0,0,222,1696, - 1,0,0,0,224,1706,1,0,0,0,226,1708,1,0,0,0,228,1710,1,0,0,0,230,1725, - 1,0,0,0,232,1727,1,0,0,0,234,1734,1,0,0,0,236,1766,1,0,0,0,238,1778, - 1,0,0,0,240,1785,1,0,0,0,242,1795,1,0,0,0,244,1797,1,0,0,0,246,1803, - 1,0,0,0,248,1814,1,0,0,0,250,1825,1,0,0,0,252,1833,1,0,0,0,254,1851, - 1,0,0,0,256,1856,1,0,0,0,258,1877,1,0,0,0,260,1913,1,0,0,0,262,1915, - 1,0,0,0,264,1923,1,0,0,0,266,1963,1,0,0,0,268,1973,1,0,0,0,270,1988, - 1,0,0,0,272,1990,1,0,0,0,274,1997,1,0,0,0,276,2011,1,0,0,0,278,2013, - 1,0,0,0,280,2063,1,0,0,0,282,2079,1,0,0,0,284,2081,1,0,0,0,286,2096, - 1,0,0,0,288,2098,1,0,0,0,290,2108,1,0,0,0,292,2119,1,0,0,0,294,2137, - 1,0,0,0,296,2139,1,0,0,0,298,2143,1,0,0,0,300,2158,1,0,0,0,302,2164, - 1,0,0,0,304,2166,1,0,0,0,306,2175,1,0,0,0,308,2246,1,0,0,0,310,2252, - 1,0,0,0,312,2514,1,0,0,0,314,2535,1,0,0,0,316,2537,1,0,0,0,318,2539, - 1,0,0,0,320,2541,1,0,0,0,322,2557,1,0,0,0,324,2559,1,0,0,0,326,2561, - 1,0,0,0,328,2607,1,0,0,0,330,2618,1,0,0,0,332,2624,1,0,0,0,334,2626, - 1,0,0,0,336,2631,1,0,0,0,338,2637,1,0,0,0,340,2684,1,0,0,0,342,2695, - 1,0,0,0,344,2702,1,0,0,0,346,2704,1,0,0,0,348,2725,1,0,0,0,350,2727, - 1,0,0,0,352,2729,1,0,0,0,354,2743,1,0,0,0,356,2750,1,0,0,0,358,2764, - 1,0,0,0,360,2766,1,0,0,0,362,2768,1,0,0,0,364,366,3,2,1,0,365,364, + 1,0,0,0,192,1496,1,0,0,0,194,1500,1,0,0,0,196,1505,1,0,0,0,198,1546, + 1,0,0,0,200,1554,1,0,0,0,202,1558,1,0,0,0,204,1578,1,0,0,0,206,1582, + 1,0,0,0,208,1591,1,0,0,0,210,1621,1,0,0,0,212,1636,1,0,0,0,214,1642, + 1,0,0,0,216,1648,1,0,0,0,218,1650,1,0,0,0,220,1670,1,0,0,0,222,1681, + 1,0,0,0,224,1701,1,0,0,0,226,1711,1,0,0,0,228,1713,1,0,0,0,230,1715, + 1,0,0,0,232,1730,1,0,0,0,234,1732,1,0,0,0,236,1739,1,0,0,0,238,1771, + 1,0,0,0,240,1783,1,0,0,0,242,1790,1,0,0,0,244,1800,1,0,0,0,246,1802, + 1,0,0,0,248,1808,1,0,0,0,250,1819,1,0,0,0,252,1830,1,0,0,0,254,1838, + 1,0,0,0,256,1856,1,0,0,0,258,1861,1,0,0,0,260,1882,1,0,0,0,262,1918, + 1,0,0,0,264,1920,1,0,0,0,266,1928,1,0,0,0,268,1968,1,0,0,0,270,1978, + 1,0,0,0,272,1993,1,0,0,0,274,1995,1,0,0,0,276,2002,1,0,0,0,278,2016, + 1,0,0,0,280,2018,1,0,0,0,282,2068,1,0,0,0,284,2084,1,0,0,0,286,2086, + 1,0,0,0,288,2101,1,0,0,0,290,2103,1,0,0,0,292,2113,1,0,0,0,294,2131, + 1,0,0,0,296,2133,1,0,0,0,298,2137,1,0,0,0,300,2152,1,0,0,0,302,2158, + 1,0,0,0,304,2160,1,0,0,0,306,2169,1,0,0,0,308,2240,1,0,0,0,310,2246, + 1,0,0,0,312,2508,1,0,0,0,314,2529,1,0,0,0,316,2531,1,0,0,0,318,2533, + 1,0,0,0,320,2535,1,0,0,0,322,2551,1,0,0,0,324,2553,1,0,0,0,326,2555, + 1,0,0,0,328,2601,1,0,0,0,330,2612,1,0,0,0,332,2618,1,0,0,0,334,2620, + 1,0,0,0,336,2625,1,0,0,0,338,2631,1,0,0,0,340,2678,1,0,0,0,342,2689, + 1,0,0,0,344,2696,1,0,0,0,346,2698,1,0,0,0,348,2719,1,0,0,0,350,2721, + 1,0,0,0,352,2723,1,0,0,0,354,2737,1,0,0,0,356,2744,1,0,0,0,358,2758, + 1,0,0,0,360,2760,1,0,0,0,362,2762,1,0,0,0,364,366,3,2,1,0,365,364, 1,0,0,0,366,369,1,0,0,0,367,365,1,0,0,0,367,368,1,0,0,0,368,370, 1,0,0,0,369,367,1,0,0,0,370,371,5,0,0,1,371,1,1,0,0,0,372,374,3, 4,2,0,373,375,5,246,0,0,374,373,1,0,0,0,374,375,1,0,0,0,375,3,1, @@ -13278,13 +13287,13 @@ export class ImpalaSqlParser extends antlr.Parser { 9,1,0,0,0,413,415,5,37,0,0,414,416,5,19,0,0,415,414,1,0,0,0,415, 416,1,0,0,0,416,417,1,0,0,0,417,419,5,190,0,0,418,420,3,172,86,0, 419,418,1,0,0,0,419,420,1,0,0,0,420,421,1,0,0,0,421,437,3,174,87, - 0,422,423,5,249,0,0,423,428,3,212,106,0,424,425,5,247,0,0,425,427, - 3,212,106,0,426,424,1,0,0,0,427,430,1,0,0,0,428,426,1,0,0,0,428, + 0,422,423,5,249,0,0,423,428,3,214,107,0,424,425,5,247,0,0,425,427, + 3,214,107,0,426,424,1,0,0,0,427,430,1,0,0,0,428,426,1,0,0,0,428, 429,1,0,0,0,429,433,1,0,0,0,430,428,1,0,0,0,431,432,5,247,0,0,432, 434,3,208,104,0,433,431,1,0,0,0,433,434,1,0,0,0,434,435,1,0,0,0, 435,436,5,250,0,0,436,438,1,0,0,0,437,422,1,0,0,0,437,438,1,0,0, - 0,438,445,1,0,0,0,439,440,5,17,0,0,440,443,5,26,0,0,441,444,3,248, - 124,0,442,444,3,292,146,0,443,441,1,0,0,0,443,442,1,0,0,0,444,446, + 0,438,445,1,0,0,0,439,440,5,17,0,0,440,443,5,26,0,0,441,444,3,292, + 146,0,442,444,3,250,125,0,443,441,1,0,0,0,443,442,1,0,0,0,444,446, 1,0,0,0,445,439,1,0,0,0,445,446,1,0,0,0,446,447,1,0,0,0,447,450, 3,196,98,0,448,449,5,9,0,0,449,451,3,204,102,0,450,448,1,0,0,0,450, 451,1,0,0,0,451,11,1,0,0,0,452,454,5,37,0,0,453,455,5,19,0,0,454, @@ -13292,31 +13301,31 @@ export class ImpalaSqlParser extends antlr.Parser { 459,3,172,86,0,458,457,1,0,0,0,458,459,1,0,0,0,459,460,1,0,0,0,460, 461,3,174,87,0,461,465,5,115,0,0,462,466,3,186,93,0,463,464,5,148, 0,0,464,466,3,314,157,0,465,462,1,0,0,0,465,463,1,0,0,0,466,470, - 1,0,0,0,467,468,5,17,0,0,468,469,5,26,0,0,469,471,3,248,124,0,470, + 1,0,0,0,467,468,5,17,0,0,468,469,5,26,0,0,469,471,3,250,125,0,470, 467,1,0,0,0,470,471,1,0,0,0,471,472,1,0,0,0,472,473,3,196,98,0,473, 13,1,0,0,0,474,476,5,37,0,0,475,477,5,19,0,0,476,475,1,0,0,0,476, 477,1,0,0,0,477,478,1,0,0,0,478,480,5,190,0,0,479,481,3,172,86,0, 480,479,1,0,0,0,480,481,1,0,0,0,481,482,1,0,0,0,482,500,3,174,87, - 0,483,484,5,249,0,0,484,489,3,214,107,0,485,486,5,247,0,0,486,488, - 3,214,107,0,487,485,1,0,0,0,488,491,1,0,0,0,489,487,1,0,0,0,489, + 0,483,484,5,249,0,0,484,489,3,216,108,0,485,486,5,247,0,0,486,488, + 3,216,108,0,487,485,1,0,0,0,488,491,1,0,0,0,489,487,1,0,0,0,489, 490,1,0,0,0,490,496,1,0,0,0,491,489,1,0,0,0,492,493,5,247,0,0,493, - 494,5,151,0,0,494,495,5,110,0,0,495,497,3,290,145,0,496,492,1,0, + 494,5,151,0,0,494,495,5,110,0,0,495,497,3,292,146,0,496,492,1,0, 0,0,496,497,1,0,0,0,497,498,1,0,0,0,498,499,5,250,0,0,499,501,1, 0,0,0,500,483,1,0,0,0,500,501,1,0,0,0,501,507,1,0,0,0,502,503,5, - 151,0,0,503,505,5,110,0,0,504,506,3,290,145,0,505,504,1,0,0,0,505, + 151,0,0,503,505,5,110,0,0,504,506,3,292,146,0,505,504,1,0,0,0,505, 506,1,0,0,0,506,508,1,0,0,0,507,502,1,0,0,0,507,508,1,0,0,0,508, - 512,1,0,0,0,509,510,5,146,0,0,510,511,5,26,0,0,511,513,3,230,115, + 512,1,0,0,0,509,510,5,146,0,0,510,511,5,26,0,0,511,513,3,232,116, 0,512,509,1,0,0,0,512,513,1,0,0,0,513,516,1,0,0,0,514,515,5,34,0, 0,515,517,3,314,157,0,516,514,1,0,0,0,516,517,1,0,0,0,517,518,1, 0,0,0,518,519,5,23,0,0,519,520,5,9,0,0,520,523,5,111,0,0,521,522, - 5,25,0,0,522,524,3,246,123,0,523,521,1,0,0,0,523,524,1,0,0,0,524, + 5,25,0,0,522,524,3,248,124,0,523,521,1,0,0,0,523,524,1,0,0,0,524, 527,1,0,0,0,525,526,5,9,0,0,526,528,3,204,102,0,527,525,1,0,0,0, 527,528,1,0,0,0,528,15,1,0,0,0,529,530,5,37,0,0,530,532,5,214,0, 0,531,533,3,172,86,0,532,531,1,0,0,0,532,533,1,0,0,0,533,534,1,0, 0,0,534,536,3,178,89,0,535,537,3,202,101,0,536,535,1,0,0,0,536,537, 1,0,0,0,537,540,1,0,0,0,538,539,5,34,0,0,539,541,3,314,157,0,540, 538,1,0,0,0,540,541,1,0,0,0,541,544,1,0,0,0,542,543,5,25,0,0,543, - 545,3,246,123,0,544,542,1,0,0,0,544,545,1,0,0,0,545,546,1,0,0,0, + 545,3,248,124,0,544,542,1,0,0,0,544,545,1,0,0,0,545,546,1,0,0,0, 546,547,5,9,0,0,547,548,3,204,102,0,548,17,1,0,0,0,549,550,5,37, 0,0,550,552,7,0,0,0,551,553,3,172,86,0,552,551,1,0,0,0,552,553,1, 0,0,0,553,554,1,0,0,0,554,557,3,176,88,0,555,556,5,34,0,0,556,558, @@ -13365,9 +13374,9 @@ export class ImpalaSqlParser extends antlr.Parser { 184,92,0,682,683,5,177,0,0,683,684,5,143,0,0,684,685,7,1,0,0,685, 686,3,356,178,0,686,29,1,0,0,0,687,688,5,4,0,0,688,689,5,190,0,0, 689,690,3,186,93,0,690,691,5,177,0,0,691,692,5,32,0,0,692,693,5, - 183,0,0,693,694,3,192,96,0,694,695,5,249,0,0,695,696,3,226,113,0, + 183,0,0,693,694,3,192,96,0,694,695,5,249,0,0,695,696,3,228,114,0, 696,697,5,233,0,0,697,703,3,314,157,0,698,699,5,247,0,0,699,700, - 3,226,113,0,700,701,5,233,0,0,701,702,3,314,157,0,702,704,1,0,0, + 3,228,114,0,700,701,5,233,0,0,701,702,3,314,157,0,702,704,1,0,0, 0,703,698,1,0,0,0,703,704,1,0,0,0,704,705,1,0,0,0,705,706,5,250, 0,0,706,31,1,0,0,0,707,708,5,4,0,0,708,709,5,190,0,0,709,712,3,186, 93,0,710,711,5,146,0,0,711,713,3,304,152,0,712,710,1,0,0,0,712,713, @@ -13376,7 +13385,7 @@ export class ImpalaSqlParser extends antlr.Parser { 720,721,5,233,0,0,721,723,3,358,179,0,722,718,1,0,0,0,722,723,1, 0,0,0,723,726,1,0,0,0,724,726,5,199,0,0,725,715,1,0,0,0,725,724, 1,0,0,0,726,33,1,0,0,0,727,728,5,4,0,0,728,729,5,190,0,0,729,730, - 3,186,93,0,730,731,5,31,0,0,731,732,5,32,0,0,732,733,3,218,109,0, + 3,186,93,0,730,731,5,31,0,0,731,732,5,32,0,0,732,733,3,220,110,0, 733,35,1,0,0,0,734,735,5,4,0,0,735,736,5,190,0,0,736,737,3,186,93, 0,737,739,5,58,0,0,738,740,5,32,0,0,739,738,1,0,0,0,739,740,1,0, 0,0,740,741,1,0,0,0,741,742,3,192,96,0,742,37,1,0,0,0,743,744,5, @@ -13385,38 +13394,38 @@ export class ImpalaSqlParser extends antlr.Parser { 751,752,5,4,0,0,752,753,5,190,0,0,753,759,3,186,93,0,754,760,5,159, 0,0,755,757,5,1,0,0,756,758,3,172,86,0,757,756,1,0,0,0,757,758,1, 0,0,0,758,760,1,0,0,0,759,754,1,0,0,0,759,755,1,0,0,0,760,761,1, - 0,0,0,761,762,5,33,0,0,762,763,5,249,0,0,763,768,3,218,109,0,764, - 765,5,247,0,0,765,767,3,218,109,0,766,764,1,0,0,0,767,770,1,0,0, + 0,0,0,761,762,5,33,0,0,762,763,5,249,0,0,763,768,3,220,110,0,764, + 765,5,247,0,0,765,767,3,220,110,0,766,764,1,0,0,0,767,770,1,0,0, 0,768,769,1,0,0,0,768,766,1,0,0,0,769,771,1,0,0,0,770,768,1,0,0, 0,771,772,5,250,0,0,772,41,1,0,0,0,773,774,5,4,0,0,774,775,5,190, 0,0,775,776,3,186,93,0,776,777,5,1,0,0,777,779,5,32,0,0,778,780, 3,172,86,0,779,778,1,0,0,0,779,780,1,0,0,0,780,781,1,0,0,0,781,782, - 3,220,110,0,782,43,1,0,0,0,783,784,5,4,0,0,784,785,5,190,0,0,785, + 3,222,111,0,782,43,1,0,0,0,783,784,5,4,0,0,784,785,5,190,0,0,785, 786,3,186,93,0,786,788,5,4,0,0,787,789,5,32,0,0,788,787,1,0,0,0, 788,789,1,0,0,0,789,790,1,0,0,0,790,799,3,192,96,0,791,795,5,177, - 0,0,792,796,3,224,112,0,793,794,5,34,0,0,794,796,3,314,157,0,795, + 0,0,792,796,3,226,113,0,793,794,5,34,0,0,794,796,3,314,157,0,795, 792,1,0,0,0,795,793,1,0,0,0,796,800,1,0,0,0,797,798,5,58,0,0,798, 800,5,51,0,0,799,791,1,0,0,0,799,797,1,0,0,0,800,45,1,0,0,0,801, 802,5,4,0,0,802,803,5,190,0,0,803,804,3,186,93,0,804,806,5,1,0,0, 805,807,3,172,86,0,806,805,1,0,0,0,806,807,1,0,0,0,807,820,1,0,0, 0,808,809,5,146,0,0,809,812,3,304,152,0,810,811,5,24,0,0,811,813, 3,314,157,0,812,810,1,0,0,0,812,813,1,0,0,0,813,815,1,0,0,0,814, - 816,3,238,119,0,815,814,1,0,0,0,815,816,1,0,0,0,816,821,1,0,0,0, - 817,818,5,155,0,0,818,819,5,146,0,0,819,821,3,236,118,0,820,808, + 816,3,240,120,0,815,814,1,0,0,0,815,816,1,0,0,0,816,821,1,0,0,0, + 817,818,5,155,0,0,818,819,5,146,0,0,819,821,3,238,119,0,820,808, 1,0,0,0,820,817,1,0,0,0,821,47,1,0,0,0,822,823,5,4,0,0,823,824,5, 190,0,0,824,827,3,186,93,0,825,826,5,146,0,0,826,828,3,304,152,0, 827,825,1,0,0,0,827,828,1,0,0,0,828,829,1,0,0,0,829,841,5,177,0, - 0,830,831,5,72,0,0,831,842,3,228,114,0,832,833,5,169,0,0,833,834, - 5,79,0,0,834,842,3,252,126,0,835,836,5,24,0,0,836,842,3,314,157, - 0,837,838,5,25,0,0,838,842,3,246,123,0,839,840,5,176,0,0,840,842, - 3,246,123,0,841,830,1,0,0,0,841,832,1,0,0,0,841,835,1,0,0,0,841, + 0,830,831,5,72,0,0,831,842,3,230,115,0,832,833,5,169,0,0,833,834, + 5,79,0,0,834,842,3,254,127,0,835,836,5,24,0,0,836,842,3,314,157, + 0,837,838,5,25,0,0,838,842,3,248,124,0,839,840,5,176,0,0,840,842, + 3,248,124,0,841,830,1,0,0,0,841,832,1,0,0,0,841,835,1,0,0,0,841, 837,1,0,0,0,841,839,1,0,0,0,842,49,1,0,0,0,843,844,5,4,0,0,844,845, 5,190,0,0,845,846,3,186,93,0,846,847,5,156,0,0,847,848,5,147,0,0, 848,51,1,0,0,0,849,850,5,4,0,0,850,851,5,190,0,0,851,852,3,186,93, 0,852,854,5,58,0,0,853,855,3,170,85,0,854,853,1,0,0,0,854,855,1, 0,0,0,855,864,1,0,0,0,856,857,5,146,0,0,857,859,3,304,152,0,858, 860,5,22,0,0,859,858,1,0,0,0,859,860,1,0,0,0,860,865,1,0,0,0,861, - 862,5,155,0,0,862,863,5,146,0,0,863,865,3,236,118,0,864,856,1,0, + 862,5,155,0,0,862,863,5,146,0,0,863,865,3,238,119,0,864,856,1,0, 0,0,864,861,1,0,0,0,865,53,1,0,0,0,866,867,5,4,0,0,867,868,5,214, 0,0,868,870,3,188,94,0,869,871,3,202,101,0,870,869,1,0,0,0,870,871, 1,0,0,0,871,872,1,0,0,0,872,873,5,9,0,0,873,874,3,204,102,0,874, @@ -13427,7 +13436,7 @@ export class ImpalaSqlParser extends antlr.Parser { 889,59,1,0,0,0,890,891,5,4,0,0,891,892,5,190,0,0,892,893,3,186,93, 0,893,894,5,157,0,0,894,895,5,195,0,0,895,896,3,186,93,0,896,61, 1,0,0,0,897,898,5,4,0,0,898,899,5,214,0,0,899,900,3,188,94,0,900, - 901,7,2,0,0,901,902,5,25,0,0,902,903,3,246,123,0,903,63,1,0,0,0, + 901,7,2,0,0,901,902,5,25,0,0,902,903,3,248,124,0,903,63,1,0,0,0, 904,906,5,198,0,0,905,907,5,190,0,0,906,905,1,0,0,0,906,907,1,0, 0,0,907,909,1,0,0,0,908,910,3,170,85,0,909,908,1,0,0,0,909,910,1, 0,0,0,910,911,1,0,0,0,911,912,3,186,93,0,912,65,1,0,0,0,913,915, @@ -13435,8 +13444,8 @@ export class ImpalaSqlParser extends antlr.Parser { 1,0,0,0,917,919,7,3,0,0,918,917,1,0,0,0,918,919,1,0,0,0,919,920, 1,0,0,0,920,921,3,352,176,0,921,67,1,0,0,0,922,925,3,70,35,0,923, 925,3,72,36,0,924,922,1,0,0,0,924,923,1,0,0,0,925,69,1,0,0,0,926, - 927,5,36,0,0,927,928,5,183,0,0,928,930,3,186,93,0,929,931,3,290, - 145,0,930,929,1,0,0,0,930,931,1,0,0,0,931,944,1,0,0,0,932,933,5, + 927,5,36,0,0,927,928,5,183,0,0,928,930,3,186,93,0,929,931,3,292, + 146,0,930,929,1,0,0,0,930,931,1,0,0,0,931,944,1,0,0,0,932,933,5, 192,0,0,933,934,5,187,0,0,934,935,5,249,0,0,935,936,3,358,179,0, 936,942,5,250,0,0,937,938,5,158,0,0,938,939,5,249,0,0,939,940,3, 358,179,0,940,941,5,250,0,0,941,943,1,0,0,0,942,937,1,0,0,0,942, @@ -13487,7 +13496,7 @@ export class ImpalaSqlParser extends antlr.Parser { 1,0,0,0,1076,1078,3,206,103,0,1077,1076,1,0,0,0,1077,1078,1,0,0, 0,1078,1079,1,0,0,0,1079,1080,5,99,0,0,1080,1082,7,5,0,0,1081,1083, 5,190,0,0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084,1,0,0,0, - 1084,1086,3,186,93,0,1085,1087,3,290,145,0,1086,1085,1,0,0,0,1086, + 1084,1086,3,186,93,0,1085,1087,3,292,146,0,1086,1085,1,0,0,0,1086, 1087,1,0,0,0,1087,1100,1,0,0,0,1088,1089,5,146,0,0,1089,1090,5,249, 0,0,1090,1095,3,304,152,0,1091,1092,5,247,0,0,1092,1094,3,304,152, 0,1093,1091,1,0,0,0,1094,1097,1,0,0,0,1095,1093,1,0,0,0,1095,1096, @@ -13501,21 +13510,21 @@ export class ImpalaSqlParser extends antlr.Parser { 1,0,0,0,1116,105,1,0,0,0,1117,1118,5,50,0,0,1118,1123,3,186,93,0, 1119,1121,5,9,0,0,1120,1119,1,0,0,0,1120,1121,1,0,0,0,1121,1122, 1,0,0,0,1122,1124,3,356,178,0,1123,1120,1,0,0,0,1123,1124,1,0,0, - 0,1124,1125,1,0,0,0,1125,1134,5,82,0,0,1126,1131,3,278,139,0,1127, - 1128,5,247,0,0,1128,1130,3,278,139,0,1129,1127,1,0,0,0,1130,1133, + 0,1124,1125,1,0,0,0,1125,1134,5,82,0,0,1126,1131,3,280,140,0,1127, + 1128,5,247,0,0,1128,1130,3,280,140,0,1129,1127,1,0,0,0,1130,1133, 1,0,0,0,1131,1129,1,0,0,0,1131,1132,1,0,0,0,1132,1135,1,0,0,0,1133, 1131,1,0,0,0,1134,1126,1,0,0,0,1134,1135,1,0,0,0,1135,1138,1,0,0, 0,1136,1137,5,217,0,0,1137,1139,3,306,153,0,1138,1136,1,0,0,0,1138, 1139,1,0,0,0,1139,107,1,0,0,0,1140,1141,5,54,0,0,1141,1142,3,186, 93,0,1142,1143,5,177,0,0,1143,1153,3,198,99,0,1144,1145,5,82,0,0, - 1145,1150,3,278,139,0,1146,1147,5,247,0,0,1147,1149,3,278,139,0, + 1145,1150,3,280,140,0,1146,1147,5,247,0,0,1147,1149,3,280,140,0, 1148,1146,1,0,0,0,1149,1152,1,0,0,0,1150,1148,1,0,0,0,1150,1151, 1,0,0,0,1151,1154,1,0,0,0,1152,1150,1,0,0,0,1153,1144,1,0,0,0,1153, 1154,1,0,0,0,1154,1157,1,0,0,0,1155,1156,5,217,0,0,1156,1158,3,306, 153,0,1157,1155,1,0,0,0,1157,1158,1,0,0,0,1158,109,1,0,0,0,1159, 1160,5,209,0,0,1160,1162,5,103,0,0,1161,1163,5,190,0,0,1162,1161, 1,0,0,0,1162,1163,1,0,0,0,1163,1164,1,0,0,0,1164,1166,3,186,93,0, - 1165,1167,3,290,145,0,1166,1165,1,0,0,0,1166,1167,1,0,0,0,1167,1168, + 1165,1167,3,292,146,0,1166,1165,1,0,0,0,1166,1167,1,0,0,0,1167,1168, 1,0,0,0,1168,1169,3,204,102,0,1169,111,1,0,0,0,1170,1183,3,132,66, 0,1171,1183,3,134,67,0,1172,1183,3,136,68,0,1173,1183,3,130,65,0, 1174,1183,3,128,64,0,1175,1183,3,126,63,0,1176,1183,3,124,62,0,1177, @@ -13628,461 +13637,460 @@ export class ImpalaSqlParser extends antlr.Parser { 1486,3,356,178,0,1485,1483,1,0,0,0,1486,1489,1,0,0,0,1487,1485,1, 0,0,0,1487,1488,1,0,0,0,1488,189,1,0,0,0,1489,1487,1,0,0,0,1490, 1493,3,360,180,0,1491,1493,3,352,176,0,1492,1490,1,0,0,0,1492,1491, - 1,0,0,0,1493,191,1,0,0,0,1494,1495,3,352,176,0,1495,193,1,0,0,0, - 1496,1499,3,186,93,0,1497,1499,3,188,94,0,1498,1496,1,0,0,0,1498, - 1497,1,0,0,0,1499,195,1,0,0,0,1500,1501,5,21,0,0,1501,1502,5,26, - 0,0,1502,1504,3,290,145,0,1503,1500,1,0,0,0,1503,1504,1,0,0,0,1504, - 1507,1,0,0,0,1505,1506,5,34,0,0,1506,1508,3,314,157,0,1507,1505, - 1,0,0,0,1507,1508,1,0,0,0,1508,1512,1,0,0,0,1509,1510,5,169,0,0, - 1510,1511,5,79,0,0,1511,1513,3,252,126,0,1512,1509,1,0,0,0,1512, - 1513,1,0,0,0,1513,1517,1,0,0,0,1514,1515,5,218,0,0,1515,1516,5,176, - 0,0,1516,1518,3,246,123,0,1517,1514,1,0,0,0,1517,1518,1,0,0,0,1518, - 1522,1,0,0,0,1519,1520,5,23,0,0,1520,1521,5,9,0,0,1521,1523,3,228, - 114,0,1522,1519,1,0,0,0,1522,1523,1,0,0,0,1523,1526,1,0,0,0,1524, - 1525,5,24,0,0,1525,1527,3,314,157,0,1526,1524,1,0,0,0,1526,1527, - 1,0,0,0,1527,1538,1,0,0,0,1528,1529,5,30,0,0,1529,1530,5,94,0,0, - 1530,1535,3,352,176,0,1531,1532,5,218,0,0,1532,1533,5,152,0,0,1533, - 1534,5,233,0,0,1534,1536,5,261,0,0,1535,1531,1,0,0,0,1535,1536,1, - 0,0,0,1536,1539,1,0,0,0,1537,1539,5,199,0,0,1538,1528,1,0,0,0,1538, - 1537,1,0,0,0,1538,1539,1,0,0,0,1539,1542,1,0,0,0,1540,1541,5,25, - 0,0,1541,1543,3,246,123,0,1542,1540,1,0,0,0,1542,1543,1,0,0,0,1543, - 197,1,0,0,0,1544,1549,3,200,100,0,1545,1546,5,247,0,0,1546,1548, - 3,200,100,0,1547,1545,1,0,0,0,1548,1551,1,0,0,0,1549,1547,1,0,0, - 0,1549,1550,1,0,0,0,1550,199,1,0,0,0,1551,1549,1,0,0,0,1552,1553, - 3,352,176,0,1553,1554,5,233,0,0,1554,1555,3,304,152,0,1555,201,1, - 0,0,0,1556,1557,5,249,0,0,1557,1560,3,192,96,0,1558,1559,5,34,0, - 0,1559,1561,3,314,157,0,1560,1558,1,0,0,0,1560,1561,1,0,0,0,1561, - 1570,1,0,0,0,1562,1563,5,247,0,0,1563,1566,3,356,178,0,1564,1565, - 5,34,0,0,1565,1567,3,314,157,0,1566,1564,1,0,0,0,1566,1567,1,0,0, - 0,1567,1569,1,0,0,0,1568,1562,1,0,0,0,1569,1572,1,0,0,0,1570,1568, - 1,0,0,0,1570,1571,1,0,0,0,1571,1573,1,0,0,0,1572,1570,1,0,0,0,1573, - 1574,5,250,0,0,1574,203,1,0,0,0,1575,1577,3,206,103,0,1576,1575, - 1,0,0,0,1576,1577,1,0,0,0,1577,1578,1,0,0,0,1578,1579,3,256,128, - 0,1579,205,1,0,0,0,1580,1581,5,218,0,0,1581,1586,3,272,136,0,1582, - 1583,5,247,0,0,1583,1585,3,272,136,0,1584,1582,1,0,0,0,1585,1588, - 1,0,0,0,1586,1584,1,0,0,0,1586,1587,1,0,0,0,1587,207,1,0,0,0,1588, - 1586,1,0,0,0,1589,1590,5,151,0,0,1590,1591,5,110,0,0,1591,1593,3, - 290,145,0,1592,1594,5,53,0,0,1593,1592,1,0,0,0,1593,1594,1,0,0,0, - 1594,1598,1,0,0,0,1595,1599,5,227,0,0,1596,1597,5,247,0,0,1597,1599, - 5,227,0,0,1598,1595,1,0,0,0,1598,1596,1,0,0,0,1598,1599,1,0,0,0, - 1599,1603,1,0,0,0,1600,1604,5,228,0,0,1601,1602,5,247,0,0,1602,1604, - 5,228,0,0,1603,1600,1,0,0,0,1603,1601,1,0,0,0,1603,1604,1,0,0,0, - 1604,1617,1,0,0,0,1605,1606,5,247,0,0,1606,1609,3,210,105,0,1607, - 1609,3,210,105,0,1608,1605,1,0,0,0,1608,1607,1,0,0,0,1609,1614,1, - 0,0,0,1610,1611,5,247,0,0,1611,1613,3,210,105,0,1612,1610,1,0,0, - 0,1613,1616,1,0,0,0,1614,1615,1,0,0,0,1614,1612,1,0,0,0,1615,1618, - 1,0,0,0,1616,1614,1,0,0,0,1617,1608,1,0,0,0,1617,1618,1,0,0,0,1618, - 209,1,0,0,0,1619,1620,5,81,0,0,1620,1621,5,110,0,0,1621,1622,3,290, - 145,0,1622,1623,5,226,0,0,1623,1624,3,186,93,0,1624,1626,3,290,145, - 0,1625,1627,5,53,0,0,1626,1625,1,0,0,0,1626,1627,1,0,0,0,1627,1629, - 1,0,0,0,1628,1630,5,227,0,0,1629,1628,1,0,0,0,1629,1630,1,0,0,0, - 1630,1632,1,0,0,0,1631,1633,5,228,0,0,1632,1631,1,0,0,0,1632,1633, - 1,0,0,0,1633,211,1,0,0,0,1634,1635,3,182,91,0,1635,1638,3,328,164, - 0,1636,1637,5,34,0,0,1637,1639,3,314,157,0,1638,1636,1,0,0,0,1638, - 1639,1,0,0,0,1639,213,1,0,0,0,1640,1641,3,216,108,0,1641,215,1,0, - 0,0,1642,1643,3,182,91,0,1643,1651,3,328,164,0,1644,1648,3,222,111, - 0,1645,1647,3,222,111,0,1646,1645,1,0,0,0,1647,1650,1,0,0,0,1648, - 1649,1,0,0,0,1648,1646,1,0,0,0,1649,1652,1,0,0,0,1650,1648,1,0,0, - 0,1651,1644,1,0,0,0,1651,1652,1,0,0,0,1652,1655,1,0,0,0,1653,1654, - 5,34,0,0,1654,1656,3,314,157,0,1655,1653,1,0,0,0,1655,1656,1,0,0, - 0,1656,1659,1,0,0,0,1657,1658,5,151,0,0,1658,1660,5,110,0,0,1659, - 1657,1,0,0,0,1659,1660,1,0,0,0,1660,217,1,0,0,0,1661,1662,3,192, - 96,0,1662,1665,3,328,164,0,1663,1664,5,34,0,0,1664,1666,3,314,157, - 0,1665,1663,1,0,0,0,1665,1666,1,0,0,0,1666,1674,1,0,0,0,1667,1671, - 3,222,111,0,1668,1670,3,222,111,0,1669,1668,1,0,0,0,1670,1673,1, - 0,0,0,1671,1672,1,0,0,0,1671,1669,1,0,0,0,1672,1675,1,0,0,0,1673, - 1671,1,0,0,0,1674,1667,1,0,0,0,1674,1675,1,0,0,0,1675,219,1,0,0, - 0,1676,1677,3,182,91,0,1677,1680,3,328,164,0,1678,1679,5,34,0,0, - 1679,1681,3,314,157,0,1680,1678,1,0,0,0,1680,1681,1,0,0,0,1681,1689, - 1,0,0,0,1682,1686,3,222,111,0,1683,1685,3,222,111,0,1684,1683,1, - 0,0,0,1685,1688,1,0,0,0,1686,1687,1,0,0,0,1686,1684,1,0,0,0,1687, - 1690,1,0,0,0,1688,1686,1,0,0,0,1689,1682,1,0,0,0,1689,1690,1,0,0, - 0,1690,221,1,0,0,0,1691,1693,5,133,0,0,1692,1691,1,0,0,0,1692,1693, - 1,0,0,0,1693,1694,1,0,0,0,1694,1697,5,134,0,0,1695,1697,3,224,112, - 0,1696,1692,1,0,0,0,1696,1695,1,0,0,0,1697,223,1,0,0,0,1698,1699, - 5,60,0,0,1699,1707,3,304,152,0,1700,1701,5,35,0,0,1701,1707,3,304, - 152,0,1702,1703,5,51,0,0,1703,1707,3,304,152,0,1704,1705,5,16,0, - 0,1705,1707,3,358,179,0,1706,1698,1,0,0,0,1706,1700,1,0,0,0,1706, - 1702,1,0,0,0,1706,1704,1,0,0,0,1707,225,1,0,0,0,1708,1709,7,10,0, - 0,1709,227,1,0,0,0,1710,1711,7,11,0,0,1711,229,1,0,0,0,1712,1717, - 3,232,116,0,1713,1714,5,247,0,0,1714,1716,3,232,116,0,1715,1713, - 1,0,0,0,1716,1719,1,0,0,0,1717,1718,1,0,0,0,1717,1715,1,0,0,0,1718, - 1722,1,0,0,0,1719,1717,1,0,0,0,1720,1721,5,247,0,0,1721,1723,3,234, - 117,0,1722,1720,1,0,0,0,1722,1723,1,0,0,0,1723,1726,1,0,0,0,1724, - 1726,3,234,117,0,1725,1712,1,0,0,0,1725,1724,1,0,0,0,1726,231,1, - 0,0,0,1727,1729,5,89,0,0,1728,1730,3,290,145,0,1729,1728,1,0,0,0, - 1729,1730,1,0,0,0,1730,1731,1,0,0,0,1731,1732,5,147,0,0,1732,1733, - 3,358,179,0,1733,233,1,0,0,0,1734,1736,5,155,0,0,1735,1737,3,290, - 145,0,1736,1735,1,0,0,0,1736,1737,1,0,0,0,1737,1738,1,0,0,0,1738, - 1739,5,249,0,0,1739,1740,5,146,0,0,1740,1746,3,236,118,0,1741,1742, - 5,247,0,0,1742,1743,5,146,0,0,1743,1745,3,236,118,0,1744,1741,1, - 0,0,0,1745,1748,1,0,0,0,1746,1747,1,0,0,0,1746,1744,1,0,0,0,1747, - 1749,1,0,0,0,1748,1746,1,0,0,0,1749,1750,5,250,0,0,1750,235,1,0, - 0,0,1751,1752,5,212,0,0,1752,1753,3,242,121,0,1753,1754,3,304,152, - 0,1754,1767,1,0,0,0,1755,1756,3,304,152,0,1756,1757,3,240,120,0, - 1757,1759,1,0,0,0,1758,1755,1,0,0,0,1758,1759,1,0,0,0,1759,1760, - 1,0,0,0,1760,1764,5,213,0,0,1761,1762,3,240,120,0,1762,1763,3,304, - 152,0,1763,1765,1,0,0,0,1764,1761,1,0,0,0,1764,1765,1,0,0,0,1765, - 1767,1,0,0,0,1766,1751,1,0,0,0,1766,1758,1,0,0,0,1767,237,1,0,0, - 0,1768,1769,5,30,0,0,1769,1770,5,94,0,0,1770,1775,3,356,178,0,1771, - 1772,5,218,0,0,1772,1773,5,152,0,0,1773,1774,5,233,0,0,1774,1776, - 3,358,179,0,1775,1771,1,0,0,0,1775,1776,1,0,0,0,1776,1779,1,0,0, - 0,1777,1779,5,199,0,0,1778,1768,1,0,0,0,1778,1777,1,0,0,0,1779,239, - 1,0,0,0,1780,1786,1,0,0,0,1781,1786,5,235,0,0,1782,1786,5,236,0, - 0,1783,1786,5,237,0,0,1784,1786,5,238,0,0,1785,1780,1,0,0,0,1785, - 1781,1,0,0,0,1785,1782,1,0,0,0,1785,1783,1,0,0,0,1785,1784,1,0,0, - 0,1786,241,1,0,0,0,1787,1796,5,233,0,0,1788,1796,5,234,0,0,1789, - 1796,5,115,0,0,1790,1796,5,165,0,0,1791,1796,5,164,0,0,1792,1796, - 5,15,0,0,1793,1796,5,94,0,0,1794,1796,3,240,120,0,1795,1787,1,0, - 0,0,1795,1788,1,0,0,0,1795,1789,1,0,0,0,1795,1790,1,0,0,0,1795,1791, - 1,0,0,0,1795,1792,1,0,0,0,1795,1793,1,0,0,0,1795,1794,1,0,0,0,1796, - 243,1,0,0,0,1797,1798,5,115,0,0,1798,1801,3,352,176,0,1799,1800, - 7,12,0,0,1800,1802,5,154,0,0,1801,1799,1,0,0,0,1801,1802,1,0,0,0, - 1802,245,1,0,0,0,1803,1804,5,249,0,0,1804,1809,3,254,127,0,1805, - 1806,5,247,0,0,1806,1808,3,254,127,0,1807,1805,1,0,0,0,1808,1811, - 1,0,0,0,1809,1807,1,0,0,0,1809,1810,1,0,0,0,1810,1812,1,0,0,0,1811, - 1809,1,0,0,0,1812,1813,5,250,0,0,1813,247,1,0,0,0,1814,1815,5,249, - 0,0,1815,1820,3,212,106,0,1816,1817,5,247,0,0,1817,1819,3,212,106, - 0,1818,1816,1,0,0,0,1819,1822,1,0,0,0,1820,1821,1,0,0,0,1820,1818, - 1,0,0,0,1821,1823,1,0,0,0,1822,1820,1,0,0,0,1823,1824,5,250,0,0, - 1824,249,1,0,0,0,1825,1830,3,304,152,0,1826,1827,5,247,0,0,1827, - 1829,3,304,152,0,1828,1826,1,0,0,0,1829,1832,1,0,0,0,1830,1828,1, - 0,0,0,1830,1831,1,0,0,0,1831,251,1,0,0,0,1832,1830,1,0,0,0,1833, - 1843,5,52,0,0,1834,1835,5,71,0,0,1835,1836,5,193,0,0,1836,1837,5, - 26,0,0,1837,1841,3,314,157,0,1838,1839,5,63,0,0,1839,1840,5,26,0, - 0,1840,1842,3,314,157,0,1841,1838,1,0,0,0,1841,1842,1,0,0,0,1842, - 1844,1,0,0,0,1843,1834,1,0,0,0,1843,1844,1,0,0,0,1844,1849,1,0,0, - 0,1845,1846,5,117,0,0,1846,1847,5,193,0,0,1847,1848,5,26,0,0,1848, - 1850,3,314,157,0,1849,1845,1,0,0,0,1849,1850,1,0,0,0,1850,253,1, - 0,0,0,1851,1854,3,356,178,0,1852,1853,5,233,0,0,1853,1855,3,304, - 152,0,1854,1852,1,0,0,0,1854,1855,1,0,0,0,1855,255,1,0,0,0,1856, - 1867,3,258,129,0,1857,1858,5,140,0,0,1858,1859,5,26,0,0,1859,1864, - 3,262,131,0,1860,1861,5,247,0,0,1861,1863,3,262,131,0,1862,1860, - 1,0,0,0,1863,1866,1,0,0,0,1864,1862,1,0,0,0,1864,1865,1,0,0,0,1865, - 1868,1,0,0,0,1866,1864,1,0,0,0,1867,1857,1,0,0,0,1867,1868,1,0,0, - 0,1868,1875,1,0,0,0,1869,1870,5,116,0,0,1870,1873,3,304,152,0,1871, - 1872,5,136,0,0,1872,1874,5,261,0,0,1873,1871,1,0,0,0,1873,1874,1, - 0,0,0,1874,1876,1,0,0,0,1875,1869,1,0,0,0,1875,1876,1,0,0,0,1876, - 257,1,0,0,0,1877,1878,6,129,-1,0,1878,1879,3,260,130,0,1879,1894, - 1,0,0,0,1880,1881,10,2,0,0,1881,1883,5,100,0,0,1882,1884,3,274,137, - 0,1883,1882,1,0,0,0,1883,1884,1,0,0,0,1884,1885,1,0,0,0,1885,1893, - 3,258,129,3,1886,1887,10,1,0,0,1887,1889,7,13,0,0,1888,1890,3,274, - 137,0,1889,1888,1,0,0,0,1889,1890,1,0,0,0,1890,1891,1,0,0,0,1891, - 1893,3,258,129,2,1892,1880,1,0,0,0,1892,1886,1,0,0,0,1893,1896,1, - 0,0,0,1894,1892,1,0,0,0,1894,1895,1,0,0,0,1895,259,1,0,0,0,1896, - 1894,1,0,0,0,1897,1914,3,264,132,0,1898,1899,5,190,0,0,1899,1914, - 3,186,93,0,1900,1901,5,213,0,0,1901,1906,3,304,152,0,1902,1903,5, - 247,0,0,1903,1905,3,304,152,0,1904,1902,1,0,0,0,1905,1908,1,0,0, - 0,1906,1904,1,0,0,0,1906,1907,1,0,0,0,1907,1914,1,0,0,0,1908,1906, - 1,0,0,0,1909,1910,5,249,0,0,1910,1911,3,256,128,0,1911,1912,5,250, - 0,0,1912,1914,1,0,0,0,1913,1897,1,0,0,0,1913,1898,1,0,0,0,1913,1900, - 1,0,0,0,1913,1909,1,0,0,0,1914,261,1,0,0,0,1915,1917,3,302,151,0, - 1916,1918,7,14,0,0,1917,1916,1,0,0,0,1917,1918,1,0,0,0,1918,1921, - 1,0,0,0,1919,1920,5,135,0,0,1920,1922,7,15,0,0,1921,1919,1,0,0,0, - 1921,1922,1,0,0,0,1922,263,1,0,0,0,1923,1925,5,175,0,0,1924,1926, - 3,274,137,0,1925,1924,1,0,0,0,1925,1926,1,0,0,0,1926,1928,1,0,0, - 0,1927,1929,5,185,0,0,1928,1927,1,0,0,0,1928,1929,1,0,0,0,1929,1930, - 1,0,0,0,1930,1935,3,276,138,0,1931,1932,5,247,0,0,1932,1934,3,276, - 138,0,1933,1931,1,0,0,0,1934,1937,1,0,0,0,1935,1933,1,0,0,0,1935, - 1936,1,0,0,0,1936,1947,1,0,0,0,1937,1935,1,0,0,0,1938,1939,5,82, - 0,0,1939,1944,3,278,139,0,1940,1941,5,247,0,0,1941,1943,3,278,139, - 0,1942,1940,1,0,0,0,1943,1946,1,0,0,0,1944,1942,1,0,0,0,1944,1945, - 1,0,0,0,1945,1948,1,0,0,0,1946,1944,1,0,0,0,1947,1938,1,0,0,0,1947, - 1948,1,0,0,0,1948,1951,1,0,0,0,1949,1950,5,217,0,0,1950,1952,3,306, - 153,0,1951,1949,1,0,0,0,1951,1952,1,0,0,0,1952,1956,1,0,0,0,1953, - 1954,5,87,0,0,1954,1955,5,26,0,0,1955,1957,3,266,133,0,1956,1953, - 1,0,0,0,1956,1957,1,0,0,0,1957,1960,1,0,0,0,1958,1959,5,90,0,0,1959, - 1961,3,306,153,0,1960,1958,1,0,0,0,1960,1961,1,0,0,0,1961,265,1, - 0,0,0,1962,1964,3,274,137,0,1963,1962,1,0,0,0,1963,1964,1,0,0,0, - 1964,1965,1,0,0,0,1965,1970,3,268,134,0,1966,1967,5,247,0,0,1967, - 1969,3,268,134,0,1968,1966,1,0,0,0,1969,1972,1,0,0,0,1970,1968,1, - 0,0,0,1970,1971,1,0,0,0,1971,267,1,0,0,0,1972,1970,1,0,0,0,1973, - 1974,3,270,135,0,1974,269,1,0,0,0,1975,1984,5,249,0,0,1976,1981, - 3,302,151,0,1977,1978,5,247,0,0,1978,1980,3,302,151,0,1979,1977, - 1,0,0,0,1980,1983,1,0,0,0,1981,1979,1,0,0,0,1981,1982,1,0,0,0,1982, - 1985,1,0,0,0,1983,1981,1,0,0,0,1984,1976,1,0,0,0,1984,1985,1,0,0, - 0,1985,1986,1,0,0,0,1986,1989,5,250,0,0,1987,1989,3,302,151,0,1988, - 1975,1,0,0,0,1988,1987,1,0,0,0,1989,271,1,0,0,0,1990,1992,3,356, - 178,0,1991,1993,3,290,145,0,1992,1991,1,0,0,0,1992,1993,1,0,0,0, - 1993,1994,1,0,0,0,1994,1995,5,9,0,0,1995,1996,3,296,148,0,1996,273, - 1,0,0,0,1997,1998,7,16,0,0,1998,275,1,0,0,0,1999,2004,3,302,151, - 0,2000,2002,5,9,0,0,2001,2000,1,0,0,0,2001,2002,1,0,0,0,2002,2003, - 1,0,0,0,2003,2005,3,356,178,0,2004,2001,1,0,0,0,2004,2005,1,0,0, - 0,2005,2012,1,0,0,0,2006,2007,3,352,176,0,2007,2008,5,245,0,0,2008, - 2009,5,241,0,0,2009,2012,1,0,0,0,2010,2012,5,241,0,0,2011,1999,1, - 0,0,0,2011,2006,1,0,0,0,2011,2010,1,0,0,0,2012,277,1,0,0,0,2013, - 2014,6,139,-1,0,2014,2015,3,284,142,0,2015,2029,1,0,0,0,2016,2025, - 10,2,0,0,2017,2018,5,38,0,0,2018,2019,5,109,0,0,2019,2026,3,284, - 142,0,2020,2021,3,280,140,0,2021,2022,5,109,0,0,2022,2023,3,278, - 139,0,2023,2024,3,282,141,0,2024,2026,1,0,0,0,2025,2017,1,0,0,0, - 2025,2020,1,0,0,0,2026,2028,1,0,0,0,2027,2016,1,0,0,0,2028,2031, - 1,0,0,0,2029,2027,1,0,0,0,2029,2030,1,0,0,0,2030,279,1,0,0,0,2031, - 2029,1,0,0,0,2032,2034,5,97,0,0,2033,2032,1,0,0,0,2033,2034,1,0, - 0,0,2034,2064,1,0,0,0,2035,2037,5,114,0,0,2036,2038,5,97,0,0,2037, - 2036,1,0,0,0,2037,2038,1,0,0,0,2038,2064,1,0,0,0,2039,2041,5,166, - 0,0,2040,2042,5,97,0,0,2041,2040,1,0,0,0,2041,2042,1,0,0,0,2042, - 2064,1,0,0,0,2043,2045,5,114,0,0,2044,2046,5,142,0,0,2045,2044,1, - 0,0,0,2045,2046,1,0,0,0,2046,2064,1,0,0,0,2047,2049,5,166,0,0,2048, - 2050,5,142,0,0,2049,2048,1,0,0,0,2049,2050,1,0,0,0,2050,2064,1,0, - 0,0,2051,2053,5,83,0,0,2052,2054,5,142,0,0,2053,2052,1,0,0,0,2053, - 2054,1,0,0,0,2054,2064,1,0,0,0,2055,2056,5,114,0,0,2056,2064,5,178, - 0,0,2057,2058,5,166,0,0,2058,2064,5,178,0,0,2059,2060,5,114,0,0, - 2060,2064,5,7,0,0,2061,2062,5,166,0,0,2062,2064,5,7,0,0,2063,2033, - 1,0,0,0,2063,2035,1,0,0,0,2063,2039,1,0,0,0,2063,2043,1,0,0,0,2063, - 2047,1,0,0,0,2063,2051,1,0,0,0,2063,2055,1,0,0,0,2063,2057,1,0,0, - 0,2063,2059,1,0,0,0,2063,2061,1,0,0,0,2064,281,1,0,0,0,2065,2066, - 5,137,0,0,2066,2080,3,306,153,0,2067,2068,5,207,0,0,2068,2069,5, - 249,0,0,2069,2074,3,356,178,0,2070,2071,5,247,0,0,2071,2073,3,356, - 178,0,2072,2070,1,0,0,0,2073,2076,1,0,0,0,2074,2072,1,0,0,0,2074, - 2075,1,0,0,0,2075,2077,1,0,0,0,2076,2074,1,0,0,0,2077,2078,5,250, - 0,0,2078,2080,1,0,0,0,2079,2065,1,0,0,0,2079,2067,1,0,0,0,2080,283, - 1,0,0,0,2081,2094,3,288,144,0,2082,2083,5,192,0,0,2083,2084,3,286, - 143,0,2084,2085,5,249,0,0,2085,2086,3,304,152,0,2086,2092,5,250, - 0,0,2087,2088,5,158,0,0,2088,2089,5,249,0,0,2089,2090,3,304,152, - 0,2090,2091,5,250,0,0,2091,2093,1,0,0,0,2092,2087,1,0,0,0,2092,2093, - 1,0,0,0,2093,2095,1,0,0,0,2094,2082,1,0,0,0,2094,2095,1,0,0,0,2095, - 285,1,0,0,0,2096,2097,7,17,0,0,2097,287,1,0,0,0,2098,2106,3,294, - 147,0,2099,2101,5,9,0,0,2100,2099,1,0,0,0,2100,2101,1,0,0,0,2101, - 2102,1,0,0,0,2102,2104,3,356,178,0,2103,2105,3,290,145,0,2104,2103, - 1,0,0,0,2104,2105,1,0,0,0,2105,2107,1,0,0,0,2106,2100,1,0,0,0,2106, - 2107,1,0,0,0,2107,289,1,0,0,0,2108,2109,5,249,0,0,2109,2114,3,192, - 96,0,2110,2111,5,247,0,0,2111,2113,3,192,96,0,2112,2110,1,0,0,0, - 2113,2116,1,0,0,0,2114,2112,1,0,0,0,2114,2115,1,0,0,0,2115,2117, - 1,0,0,0,2116,2114,1,0,0,0,2117,2118,5,250,0,0,2118,291,1,0,0,0,2119, - 2120,5,249,0,0,2120,2125,3,182,91,0,2121,2122,5,247,0,0,2122,2124, - 3,182,91,0,2123,2121,1,0,0,0,2124,2127,1,0,0,0,2125,2123,1,0,0,0, - 2125,2126,1,0,0,0,2126,2128,1,0,0,0,2127,2125,1,0,0,0,2128,2129, - 5,250,0,0,2129,293,1,0,0,0,2130,2138,3,194,97,0,2131,2133,5,113, - 0,0,2132,2131,1,0,0,0,2132,2133,1,0,0,0,2133,2134,1,0,0,0,2134,2138, - 3,296,148,0,2135,2138,3,298,149,0,2136,2138,3,300,150,0,2137,2130, - 1,0,0,0,2137,2132,1,0,0,0,2137,2135,1,0,0,0,2137,2136,1,0,0,0,2138, - 295,1,0,0,0,2139,2140,5,249,0,0,2140,2141,3,204,102,0,2141,2142, - 5,250,0,0,2142,297,1,0,0,0,2143,2144,5,203,0,0,2144,2145,5,249,0, - 0,2145,2150,3,304,152,0,2146,2147,5,247,0,0,2147,2149,3,304,152, - 0,2148,2146,1,0,0,0,2149,2152,1,0,0,0,2150,2148,1,0,0,0,2150,2151, - 1,0,0,0,2151,2153,1,0,0,0,2152,2150,1,0,0,0,2153,2156,5,250,0,0, - 2154,2155,5,218,0,0,2155,2157,5,141,0,0,2156,2154,1,0,0,0,2156,2157, - 1,0,0,0,2157,299,1,0,0,0,2158,2159,5,249,0,0,2159,2160,3,278,139, - 0,2160,2161,5,250,0,0,2161,301,1,0,0,0,2162,2165,3,192,96,0,2163, - 2165,3,304,152,0,2164,2162,1,0,0,0,2164,2163,1,0,0,0,2165,303,1, - 0,0,0,2166,2167,3,306,153,0,2167,305,1,0,0,0,2168,2169,6,153,-1, - 0,2169,2171,3,310,155,0,2170,2172,3,308,154,0,2171,2170,1,0,0,0, - 2171,2172,1,0,0,0,2172,2176,1,0,0,0,2173,2174,5,133,0,0,2174,2176, - 3,306,153,3,2175,2168,1,0,0,0,2175,2173,1,0,0,0,2176,2185,1,0,0, - 0,2177,2178,10,2,0,0,2178,2179,5,5,0,0,2179,2184,3,306,153,3,2180, - 2181,10,1,0,0,2181,2182,5,139,0,0,2182,2184,3,306,153,2,2183,2177, - 1,0,0,0,2183,2180,1,0,0,0,2184,2187,1,0,0,0,2185,2183,1,0,0,0,2185, - 2186,1,0,0,0,2186,307,1,0,0,0,2187,2185,1,0,0,0,2188,2189,3,316, - 158,0,2189,2190,3,310,155,0,2190,2247,1,0,0,0,2191,2192,3,316,158, - 0,2192,2193,3,318,159,0,2193,2194,3,296,148,0,2194,2247,1,0,0,0, - 2195,2197,5,133,0,0,2196,2195,1,0,0,0,2196,2197,1,0,0,0,2197,2198, - 1,0,0,0,2198,2199,5,15,0,0,2199,2200,3,310,155,0,2200,2201,5,5,0, - 0,2201,2202,3,310,155,0,2202,2247,1,0,0,0,2203,2205,5,133,0,0,2204, - 2203,1,0,0,0,2204,2205,1,0,0,0,2205,2206,1,0,0,0,2206,2207,5,94, - 0,0,2207,2208,5,249,0,0,2208,2213,3,304,152,0,2209,2210,5,247,0, - 0,2210,2212,3,304,152,0,2211,2209,1,0,0,0,2212,2215,1,0,0,0,2213, - 2211,1,0,0,0,2213,2214,1,0,0,0,2214,2216,1,0,0,0,2215,2213,1,0,0, - 0,2216,2217,5,250,0,0,2217,2247,1,0,0,0,2218,2220,5,133,0,0,2219, - 2218,1,0,0,0,2219,2220,1,0,0,0,2220,2221,1,0,0,0,2221,2222,5,94, - 0,0,2222,2247,3,296,148,0,2223,2225,5,133,0,0,2224,2223,1,0,0,0, - 2224,2225,1,0,0,0,2225,2226,1,0,0,0,2226,2227,7,18,0,0,2227,2230, - 3,310,155,0,2228,2229,5,62,0,0,2229,2231,3,310,155,0,2230,2228,1, - 0,0,0,2230,2231,1,0,0,0,2231,2247,1,0,0,0,2232,2233,7,19,0,0,2233, - 2247,3,310,155,0,2234,2236,5,108,0,0,2235,2237,5,133,0,0,2236,2235, - 1,0,0,0,2236,2237,1,0,0,0,2237,2238,1,0,0,0,2238,2247,7,20,0,0,2239, - 2241,5,108,0,0,2240,2242,5,133,0,0,2241,2240,1,0,0,0,2241,2242,1, - 0,0,0,2242,2243,1,0,0,0,2243,2244,5,57,0,0,2244,2245,5,82,0,0,2245, - 2247,3,310,155,0,2246,2188,1,0,0,0,2246,2191,1,0,0,0,2246,2196,1, - 0,0,0,2246,2204,1,0,0,0,2246,2219,1,0,0,0,2246,2224,1,0,0,0,2246, - 2232,1,0,0,0,2246,2234,1,0,0,0,2246,2239,1,0,0,0,2247,309,1,0,0, - 0,2248,2249,6,155,-1,0,2249,2253,3,312,156,0,2250,2251,7,21,0,0, - 2251,2253,3,310,155,4,2252,2248,1,0,0,0,2252,2250,1,0,0,0,2253,2265, - 1,0,0,0,2254,2255,10,3,0,0,2255,2256,7,22,0,0,2256,2264,3,310,155, - 4,2257,2258,10,2,0,0,2258,2259,7,21,0,0,2259,2264,3,310,155,3,2260, - 2261,10,1,0,0,2261,2262,5,244,0,0,2262,2264,3,310,155,2,2263,2254, - 1,0,0,0,2263,2257,1,0,0,0,2263,2260,1,0,0,0,2264,2267,1,0,0,0,2265, - 2263,1,0,0,0,2265,2266,1,0,0,0,2266,311,1,0,0,0,2267,2265,1,0,0, - 0,2268,2269,6,156,-1,0,2269,2515,5,134,0,0,2270,2515,3,322,161,0, - 2271,2272,3,356,178,0,2272,2273,3,314,157,0,2273,2515,1,0,0,0,2274, - 2275,5,270,0,0,2275,2515,3,314,157,0,2276,2515,3,358,179,0,2277, - 2515,3,320,160,0,2278,2515,3,314,157,0,2279,2515,5,260,0,0,2280, - 2515,5,256,0,0,2281,2282,5,149,0,0,2282,2283,5,249,0,0,2283,2284, - 3,310,155,0,2284,2285,5,94,0,0,2285,2286,3,310,155,0,2286,2287,5, - 250,0,0,2287,2515,1,0,0,0,2288,2289,5,249,0,0,2289,2292,3,304,152, - 0,2290,2291,5,9,0,0,2291,2293,3,328,164,0,2292,2290,1,0,0,0,2292, - 2293,1,0,0,0,2293,2302,1,0,0,0,2294,2295,5,247,0,0,2295,2298,3,304, - 152,0,2296,2297,5,9,0,0,2297,2299,3,328,164,0,2298,2296,1,0,0,0, - 2298,2299,1,0,0,0,2299,2301,1,0,0,0,2300,2294,1,0,0,0,2301,2304, - 1,0,0,0,2302,2303,1,0,0,0,2302,2300,1,0,0,0,2303,2305,1,0,0,0,2304, - 2302,1,0,0,0,2305,2306,5,250,0,0,2306,2515,1,0,0,0,2307,2308,5,169, - 0,0,2308,2309,5,249,0,0,2309,2314,3,304,152,0,2310,2311,5,247,0, - 0,2311,2313,3,304,152,0,2312,2310,1,0,0,0,2313,2316,1,0,0,0,2314, - 2312,1,0,0,0,2314,2315,1,0,0,0,2315,2317,1,0,0,0,2316,2314,1,0,0, - 0,2317,2318,5,250,0,0,2318,2515,1,0,0,0,2319,2320,3,190,95,0,2320, - 2321,5,249,0,0,2321,2322,5,241,0,0,2322,2324,5,250,0,0,2323,2325, - 3,336,168,0,2324,2323,1,0,0,0,2324,2325,1,0,0,0,2325,2327,1,0,0, - 0,2326,2328,3,338,169,0,2327,2326,1,0,0,0,2327,2328,1,0,0,0,2328, - 2515,1,0,0,0,2329,2330,3,190,95,0,2330,2342,5,249,0,0,2331,2333, - 3,274,137,0,2332,2331,1,0,0,0,2332,2333,1,0,0,0,2333,2334,1,0,0, - 0,2334,2339,3,304,152,0,2335,2336,5,247,0,0,2336,2338,3,304,152, - 0,2337,2335,1,0,0,0,2338,2341,1,0,0,0,2339,2337,1,0,0,0,2339,2340, - 1,0,0,0,2340,2343,1,0,0,0,2341,2339,1,0,0,0,2342,2332,1,0,0,0,2342, - 2343,1,0,0,0,2343,2354,1,0,0,0,2344,2345,5,140,0,0,2345,2346,5,26, - 0,0,2346,2351,3,262,131,0,2347,2348,5,247,0,0,2348,2350,3,262,131, - 0,2349,2347,1,0,0,0,2350,2353,1,0,0,0,2351,2349,1,0,0,0,2351,2352, - 1,0,0,0,2352,2355,1,0,0,0,2353,2351,1,0,0,0,2354,2344,1,0,0,0,2354, - 2355,1,0,0,0,2355,2356,1,0,0,0,2356,2358,5,250,0,0,2357,2359,3,336, - 168,0,2358,2357,1,0,0,0,2358,2359,1,0,0,0,2359,2361,1,0,0,0,2360, - 2362,3,338,169,0,2361,2360,1,0,0,0,2361,2362,1,0,0,0,2362,2515,1, - 0,0,0,2363,2364,3,356,178,0,2364,2365,5,257,0,0,2365,2366,3,304, - 152,0,2366,2515,1,0,0,0,2367,2376,5,249,0,0,2368,2373,3,356,178, - 0,2369,2370,5,247,0,0,2370,2372,3,356,178,0,2371,2369,1,0,0,0,2372, - 2375,1,0,0,0,2373,2371,1,0,0,0,2373,2374,1,0,0,0,2374,2377,1,0,0, - 0,2375,2373,1,0,0,0,2376,2368,1,0,0,0,2376,2377,1,0,0,0,2377,2378, - 1,0,0,0,2378,2379,5,250,0,0,2379,2380,5,257,0,0,2380,2515,3,304, - 152,0,2381,2382,5,249,0,0,2382,2383,3,204,102,0,2383,2384,5,250, - 0,0,2384,2515,1,0,0,0,2385,2386,5,66,0,0,2386,2387,5,249,0,0,2387, - 2388,3,204,102,0,2388,2389,5,250,0,0,2389,2515,1,0,0,0,2390,2391, - 5,28,0,0,2391,2393,3,310,155,0,2392,2394,3,334,167,0,2393,2392,1, - 0,0,0,2394,2395,1,0,0,0,2395,2393,1,0,0,0,2395,2396,1,0,0,0,2396, - 2399,1,0,0,0,2397,2398,5,59,0,0,2398,2400,3,304,152,0,2399,2397, - 1,0,0,0,2399,2400,1,0,0,0,2400,2401,1,0,0,0,2401,2402,5,61,0,0,2402, - 2515,1,0,0,0,2403,2405,5,28,0,0,2404,2406,3,334,167,0,2405,2404, - 1,0,0,0,2406,2407,1,0,0,0,2407,2405,1,0,0,0,2407,2408,1,0,0,0,2408, - 2411,1,0,0,0,2409,2410,5,59,0,0,2410,2412,3,304,152,0,2411,2409, - 1,0,0,0,2411,2412,1,0,0,0,2412,2413,1,0,0,0,2413,2414,5,61,0,0,2414, - 2515,1,0,0,0,2415,2416,5,29,0,0,2416,2417,5,249,0,0,2417,2418,3, - 304,152,0,2418,2419,5,9,0,0,2419,2420,3,328,164,0,2420,2421,5,250, - 0,0,2421,2515,1,0,0,0,2422,2423,5,197,0,0,2423,2424,5,249,0,0,2424, - 2425,3,304,152,0,2425,2426,5,9,0,0,2426,2427,3,328,164,0,2427,2428, - 5,250,0,0,2428,2515,1,0,0,0,2429,2430,5,8,0,0,2430,2439,5,251,0, - 0,2431,2436,3,304,152,0,2432,2433,5,247,0,0,2433,2435,3,304,152, - 0,2434,2432,1,0,0,0,2435,2438,1,0,0,0,2436,2434,1,0,0,0,2436,2437, - 1,0,0,0,2437,2440,1,0,0,0,2438,2436,1,0,0,0,2439,2431,1,0,0,0,2439, - 2440,1,0,0,0,2440,2441,1,0,0,0,2441,2515,5,252,0,0,2442,2515,3,356, - 178,0,2443,2515,5,40,0,0,2444,2448,5,42,0,0,2445,2446,5,249,0,0, - 2446,2447,5,261,0,0,2447,2449,5,250,0,0,2448,2445,1,0,0,0,2448,2449, - 1,0,0,0,2449,2515,1,0,0,0,2450,2454,5,43,0,0,2451,2452,5,249,0,0, + 1,0,0,0,1493,191,1,0,0,0,1494,1497,3,352,176,0,1495,1497,4,96,0, + 0,1496,1494,1,0,0,0,1496,1495,1,0,0,0,1497,193,1,0,0,0,1498,1501, + 3,186,93,0,1499,1501,3,188,94,0,1500,1498,1,0,0,0,1500,1499,1,0, + 0,0,1501,195,1,0,0,0,1502,1503,5,21,0,0,1503,1504,5,26,0,0,1504, + 1506,3,292,146,0,1505,1502,1,0,0,0,1505,1506,1,0,0,0,1506,1509,1, + 0,0,0,1507,1508,5,34,0,0,1508,1510,3,314,157,0,1509,1507,1,0,0,0, + 1509,1510,1,0,0,0,1510,1514,1,0,0,0,1511,1512,5,169,0,0,1512,1513, + 5,79,0,0,1513,1515,3,254,127,0,1514,1511,1,0,0,0,1514,1515,1,0,0, + 0,1515,1519,1,0,0,0,1516,1517,5,218,0,0,1517,1518,5,176,0,0,1518, + 1520,3,248,124,0,1519,1516,1,0,0,0,1519,1520,1,0,0,0,1520,1524,1, + 0,0,0,1521,1522,5,23,0,0,1522,1523,5,9,0,0,1523,1525,3,230,115,0, + 1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525,1528,1,0,0,0,1526,1527, + 5,24,0,0,1527,1529,3,314,157,0,1528,1526,1,0,0,0,1528,1529,1,0,0, + 0,1529,1540,1,0,0,0,1530,1531,5,30,0,0,1531,1532,5,94,0,0,1532,1537, + 3,352,176,0,1533,1534,5,218,0,0,1534,1535,5,152,0,0,1535,1536,5, + 233,0,0,1536,1538,5,261,0,0,1537,1533,1,0,0,0,1537,1538,1,0,0,0, + 1538,1541,1,0,0,0,1539,1541,5,199,0,0,1540,1530,1,0,0,0,1540,1539, + 1,0,0,0,1540,1541,1,0,0,0,1541,1544,1,0,0,0,1542,1543,5,25,0,0,1543, + 1545,3,248,124,0,1544,1542,1,0,0,0,1544,1545,1,0,0,0,1545,197,1, + 0,0,0,1546,1551,3,200,100,0,1547,1548,5,247,0,0,1548,1550,3,200, + 100,0,1549,1547,1,0,0,0,1550,1553,1,0,0,0,1551,1549,1,0,0,0,1551, + 1552,1,0,0,0,1552,199,1,0,0,0,1553,1551,1,0,0,0,1554,1555,3,352, + 176,0,1555,1556,5,233,0,0,1556,1557,3,304,152,0,1557,201,1,0,0,0, + 1558,1559,5,249,0,0,1559,1562,3,182,91,0,1560,1561,5,34,0,0,1561, + 1563,3,314,157,0,1562,1560,1,0,0,0,1562,1563,1,0,0,0,1563,1572,1, + 0,0,0,1564,1565,5,247,0,0,1565,1568,3,182,91,0,1566,1567,5,34,0, + 0,1567,1569,3,314,157,0,1568,1566,1,0,0,0,1568,1569,1,0,0,0,1569, + 1571,1,0,0,0,1570,1564,1,0,0,0,1571,1574,1,0,0,0,1572,1570,1,0,0, + 0,1572,1573,1,0,0,0,1573,1575,1,0,0,0,1574,1572,1,0,0,0,1575,1576, + 5,250,0,0,1576,203,1,0,0,0,1577,1579,3,206,103,0,1578,1577,1,0,0, + 0,1578,1579,1,0,0,0,1579,1580,1,0,0,0,1580,1581,3,258,129,0,1581, + 205,1,0,0,0,1582,1583,5,218,0,0,1583,1588,3,274,137,0,1584,1585, + 5,247,0,0,1585,1587,3,274,137,0,1586,1584,1,0,0,0,1587,1590,1,0, + 0,0,1588,1586,1,0,0,0,1588,1589,1,0,0,0,1589,207,1,0,0,0,1590,1588, + 1,0,0,0,1591,1592,5,151,0,0,1592,1593,5,110,0,0,1593,1595,3,292, + 146,0,1594,1596,5,53,0,0,1595,1594,1,0,0,0,1595,1596,1,0,0,0,1596, + 1600,1,0,0,0,1597,1601,5,227,0,0,1598,1599,5,247,0,0,1599,1601,5, + 227,0,0,1600,1597,1,0,0,0,1600,1598,1,0,0,0,1600,1601,1,0,0,0,1601, + 1605,1,0,0,0,1602,1606,5,228,0,0,1603,1604,5,247,0,0,1604,1606,5, + 228,0,0,1605,1602,1,0,0,0,1605,1603,1,0,0,0,1605,1606,1,0,0,0,1606, + 1619,1,0,0,0,1607,1608,5,247,0,0,1608,1611,3,210,105,0,1609,1611, + 3,210,105,0,1610,1607,1,0,0,0,1610,1609,1,0,0,0,1611,1616,1,0,0, + 0,1612,1613,5,247,0,0,1613,1615,3,210,105,0,1614,1612,1,0,0,0,1615, + 1618,1,0,0,0,1616,1617,1,0,0,0,1616,1614,1,0,0,0,1617,1620,1,0,0, + 0,1618,1616,1,0,0,0,1619,1610,1,0,0,0,1619,1620,1,0,0,0,1620,209, + 1,0,0,0,1621,1622,5,81,0,0,1622,1623,5,110,0,0,1623,1624,3,292,146, + 0,1624,1625,5,226,0,0,1625,1626,3,186,93,0,1626,1628,3,292,146,0, + 1627,1629,5,53,0,0,1628,1627,1,0,0,0,1628,1629,1,0,0,0,1629,1631, + 1,0,0,0,1630,1632,5,227,0,0,1631,1630,1,0,0,0,1631,1632,1,0,0,0, + 1632,1634,1,0,0,0,1633,1635,5,228,0,0,1634,1633,1,0,0,0,1634,1635, + 1,0,0,0,1635,211,1,0,0,0,1636,1637,3,192,96,0,1637,1640,3,328,164, + 0,1638,1639,5,34,0,0,1639,1641,3,314,157,0,1640,1638,1,0,0,0,1640, + 1641,1,0,0,0,1641,213,1,0,0,0,1642,1643,3,182,91,0,1643,1646,3,328, + 164,0,1644,1645,5,34,0,0,1645,1647,3,314,157,0,1646,1644,1,0,0,0, + 1646,1647,1,0,0,0,1647,215,1,0,0,0,1648,1649,3,218,109,0,1649,217, + 1,0,0,0,1650,1651,3,182,91,0,1651,1659,3,328,164,0,1652,1656,3,224, + 112,0,1653,1655,3,224,112,0,1654,1653,1,0,0,0,1655,1658,1,0,0,0, + 1656,1657,1,0,0,0,1656,1654,1,0,0,0,1657,1660,1,0,0,0,1658,1656, + 1,0,0,0,1659,1652,1,0,0,0,1659,1660,1,0,0,0,1660,1663,1,0,0,0,1661, + 1662,5,34,0,0,1662,1664,3,314,157,0,1663,1661,1,0,0,0,1663,1664, + 1,0,0,0,1664,1667,1,0,0,0,1665,1666,5,151,0,0,1666,1668,5,110,0, + 0,1667,1665,1,0,0,0,1667,1668,1,0,0,0,1668,219,1,0,0,0,1669,1671, + 3,212,106,0,1670,1669,1,0,0,0,1670,1671,1,0,0,0,1671,1679,1,0,0, + 0,1672,1676,3,224,112,0,1673,1675,3,224,112,0,1674,1673,1,0,0,0, + 1675,1678,1,0,0,0,1676,1677,1,0,0,0,1676,1674,1,0,0,0,1677,1680, + 1,0,0,0,1678,1676,1,0,0,0,1679,1672,1,0,0,0,1679,1680,1,0,0,0,1680, + 221,1,0,0,0,1681,1682,3,182,91,0,1682,1685,3,328,164,0,1683,1684, + 5,34,0,0,1684,1686,3,314,157,0,1685,1683,1,0,0,0,1685,1686,1,0,0, + 0,1686,1694,1,0,0,0,1687,1691,3,224,112,0,1688,1690,3,224,112,0, + 1689,1688,1,0,0,0,1690,1693,1,0,0,0,1691,1692,1,0,0,0,1691,1689, + 1,0,0,0,1692,1695,1,0,0,0,1693,1691,1,0,0,0,1694,1687,1,0,0,0,1694, + 1695,1,0,0,0,1695,223,1,0,0,0,1696,1698,5,133,0,0,1697,1696,1,0, + 0,0,1697,1698,1,0,0,0,1698,1699,1,0,0,0,1699,1702,5,134,0,0,1700, + 1702,3,226,113,0,1701,1697,1,0,0,0,1701,1700,1,0,0,0,1702,225,1, + 0,0,0,1703,1704,5,60,0,0,1704,1712,3,304,152,0,1705,1706,5,35,0, + 0,1706,1712,3,304,152,0,1707,1708,5,51,0,0,1708,1712,3,304,152,0, + 1709,1710,5,16,0,0,1710,1712,3,358,179,0,1711,1703,1,0,0,0,1711, + 1705,1,0,0,0,1711,1707,1,0,0,0,1711,1709,1,0,0,0,1712,227,1,0,0, + 0,1713,1714,7,10,0,0,1714,229,1,0,0,0,1715,1716,7,11,0,0,1716,231, + 1,0,0,0,1717,1722,3,234,117,0,1718,1719,5,247,0,0,1719,1721,3,234, + 117,0,1720,1718,1,0,0,0,1721,1724,1,0,0,0,1722,1723,1,0,0,0,1722, + 1720,1,0,0,0,1723,1727,1,0,0,0,1724,1722,1,0,0,0,1725,1726,5,247, + 0,0,1726,1728,3,236,118,0,1727,1725,1,0,0,0,1727,1728,1,0,0,0,1728, + 1731,1,0,0,0,1729,1731,3,236,118,0,1730,1717,1,0,0,0,1730,1729,1, + 0,0,0,1731,233,1,0,0,0,1732,1734,5,89,0,0,1733,1735,3,292,146,0, + 1734,1733,1,0,0,0,1734,1735,1,0,0,0,1735,1736,1,0,0,0,1736,1737, + 5,147,0,0,1737,1738,3,358,179,0,1738,235,1,0,0,0,1739,1741,5,155, + 0,0,1740,1742,3,292,146,0,1741,1740,1,0,0,0,1741,1742,1,0,0,0,1742, + 1743,1,0,0,0,1743,1744,5,249,0,0,1744,1745,5,146,0,0,1745,1751,3, + 238,119,0,1746,1747,5,247,0,0,1747,1748,5,146,0,0,1748,1750,3,238, + 119,0,1749,1746,1,0,0,0,1750,1753,1,0,0,0,1751,1752,1,0,0,0,1751, + 1749,1,0,0,0,1752,1754,1,0,0,0,1753,1751,1,0,0,0,1754,1755,5,250, + 0,0,1755,237,1,0,0,0,1756,1757,5,212,0,0,1757,1758,3,244,122,0,1758, + 1759,3,304,152,0,1759,1772,1,0,0,0,1760,1761,3,304,152,0,1761,1762, + 3,242,121,0,1762,1764,1,0,0,0,1763,1760,1,0,0,0,1763,1764,1,0,0, + 0,1764,1765,1,0,0,0,1765,1769,5,213,0,0,1766,1767,3,242,121,0,1767, + 1768,3,304,152,0,1768,1770,1,0,0,0,1769,1766,1,0,0,0,1769,1770,1, + 0,0,0,1770,1772,1,0,0,0,1771,1756,1,0,0,0,1771,1763,1,0,0,0,1772, + 239,1,0,0,0,1773,1774,5,30,0,0,1774,1775,5,94,0,0,1775,1780,3,356, + 178,0,1776,1777,5,218,0,0,1777,1778,5,152,0,0,1778,1779,5,233,0, + 0,1779,1781,3,358,179,0,1780,1776,1,0,0,0,1780,1781,1,0,0,0,1781, + 1784,1,0,0,0,1782,1784,5,199,0,0,1783,1773,1,0,0,0,1783,1782,1,0, + 0,0,1784,241,1,0,0,0,1785,1791,1,0,0,0,1786,1791,5,235,0,0,1787, + 1791,5,236,0,0,1788,1791,5,237,0,0,1789,1791,5,238,0,0,1790,1785, + 1,0,0,0,1790,1786,1,0,0,0,1790,1787,1,0,0,0,1790,1788,1,0,0,0,1790, + 1789,1,0,0,0,1791,243,1,0,0,0,1792,1801,5,233,0,0,1793,1801,5,234, + 0,0,1794,1801,5,115,0,0,1795,1801,5,165,0,0,1796,1801,5,164,0,0, + 1797,1801,5,15,0,0,1798,1801,5,94,0,0,1799,1801,3,242,121,0,1800, + 1792,1,0,0,0,1800,1793,1,0,0,0,1800,1794,1,0,0,0,1800,1795,1,0,0, + 0,1800,1796,1,0,0,0,1800,1797,1,0,0,0,1800,1798,1,0,0,0,1800,1799, + 1,0,0,0,1801,245,1,0,0,0,1802,1803,5,115,0,0,1803,1806,3,352,176, + 0,1804,1805,7,12,0,0,1805,1807,5,154,0,0,1806,1804,1,0,0,0,1806, + 1807,1,0,0,0,1807,247,1,0,0,0,1808,1809,5,249,0,0,1809,1814,3,256, + 128,0,1810,1811,5,247,0,0,1811,1813,3,256,128,0,1812,1810,1,0,0, + 0,1813,1816,1,0,0,0,1814,1812,1,0,0,0,1814,1815,1,0,0,0,1815,1817, + 1,0,0,0,1816,1814,1,0,0,0,1817,1818,5,250,0,0,1818,249,1,0,0,0,1819, + 1820,5,249,0,0,1820,1825,3,212,106,0,1821,1822,5,247,0,0,1822,1824, + 3,212,106,0,1823,1821,1,0,0,0,1824,1827,1,0,0,0,1825,1826,1,0,0, + 0,1825,1823,1,0,0,0,1826,1828,1,0,0,0,1827,1825,1,0,0,0,1828,1829, + 5,250,0,0,1829,251,1,0,0,0,1830,1835,3,304,152,0,1831,1832,5,247, + 0,0,1832,1834,3,304,152,0,1833,1831,1,0,0,0,1834,1837,1,0,0,0,1835, + 1833,1,0,0,0,1835,1836,1,0,0,0,1836,253,1,0,0,0,1837,1835,1,0,0, + 0,1838,1848,5,52,0,0,1839,1840,5,71,0,0,1840,1841,5,193,0,0,1841, + 1842,5,26,0,0,1842,1846,3,314,157,0,1843,1844,5,63,0,0,1844,1845, + 5,26,0,0,1845,1847,3,314,157,0,1846,1843,1,0,0,0,1846,1847,1,0,0, + 0,1847,1849,1,0,0,0,1848,1839,1,0,0,0,1848,1849,1,0,0,0,1849,1854, + 1,0,0,0,1850,1851,5,117,0,0,1851,1852,5,193,0,0,1852,1853,5,26,0, + 0,1853,1855,3,314,157,0,1854,1850,1,0,0,0,1854,1855,1,0,0,0,1855, + 255,1,0,0,0,1856,1859,3,356,178,0,1857,1858,5,233,0,0,1858,1860, + 3,304,152,0,1859,1857,1,0,0,0,1859,1860,1,0,0,0,1860,257,1,0,0,0, + 1861,1872,3,260,130,0,1862,1863,5,140,0,0,1863,1864,5,26,0,0,1864, + 1869,3,264,132,0,1865,1866,5,247,0,0,1866,1868,3,264,132,0,1867, + 1865,1,0,0,0,1868,1871,1,0,0,0,1869,1867,1,0,0,0,1869,1870,1,0,0, + 0,1870,1873,1,0,0,0,1871,1869,1,0,0,0,1872,1862,1,0,0,0,1872,1873, + 1,0,0,0,1873,1880,1,0,0,0,1874,1875,5,116,0,0,1875,1878,3,304,152, + 0,1876,1877,5,136,0,0,1877,1879,5,261,0,0,1878,1876,1,0,0,0,1878, + 1879,1,0,0,0,1879,1881,1,0,0,0,1880,1874,1,0,0,0,1880,1881,1,0,0, + 0,1881,259,1,0,0,0,1882,1883,6,130,-1,0,1883,1884,3,262,131,0,1884, + 1899,1,0,0,0,1885,1886,10,2,0,0,1886,1888,5,100,0,0,1887,1889,3, + 276,138,0,1888,1887,1,0,0,0,1888,1889,1,0,0,0,1889,1890,1,0,0,0, + 1890,1898,3,260,130,3,1891,1892,10,1,0,0,1892,1894,7,13,0,0,1893, + 1895,3,276,138,0,1894,1893,1,0,0,0,1894,1895,1,0,0,0,1895,1896,1, + 0,0,0,1896,1898,3,260,130,2,1897,1885,1,0,0,0,1897,1891,1,0,0,0, + 1898,1901,1,0,0,0,1899,1897,1,0,0,0,1899,1900,1,0,0,0,1900,261,1, + 0,0,0,1901,1899,1,0,0,0,1902,1919,3,266,133,0,1903,1904,5,190,0, + 0,1904,1919,3,186,93,0,1905,1906,5,213,0,0,1906,1911,3,304,152,0, + 1907,1908,5,247,0,0,1908,1910,3,304,152,0,1909,1907,1,0,0,0,1910, + 1913,1,0,0,0,1911,1909,1,0,0,0,1911,1912,1,0,0,0,1912,1919,1,0,0, + 0,1913,1911,1,0,0,0,1914,1915,5,249,0,0,1915,1916,3,258,129,0,1916, + 1917,5,250,0,0,1917,1919,1,0,0,0,1918,1902,1,0,0,0,1918,1903,1,0, + 0,0,1918,1905,1,0,0,0,1918,1914,1,0,0,0,1919,263,1,0,0,0,1920,1922, + 3,302,151,0,1921,1923,7,14,0,0,1922,1921,1,0,0,0,1922,1923,1,0,0, + 0,1923,1926,1,0,0,0,1924,1925,5,135,0,0,1925,1927,7,15,0,0,1926, + 1924,1,0,0,0,1926,1927,1,0,0,0,1927,265,1,0,0,0,1928,1930,5,175, + 0,0,1929,1931,3,276,138,0,1930,1929,1,0,0,0,1930,1931,1,0,0,0,1931, + 1933,1,0,0,0,1932,1934,5,185,0,0,1933,1932,1,0,0,0,1933,1934,1,0, + 0,0,1934,1935,1,0,0,0,1935,1940,3,278,139,0,1936,1937,5,247,0,0, + 1937,1939,3,278,139,0,1938,1936,1,0,0,0,1939,1942,1,0,0,0,1940,1938, + 1,0,0,0,1940,1941,1,0,0,0,1941,1952,1,0,0,0,1942,1940,1,0,0,0,1943, + 1944,5,82,0,0,1944,1949,3,280,140,0,1945,1946,5,247,0,0,1946,1948, + 3,280,140,0,1947,1945,1,0,0,0,1948,1951,1,0,0,0,1949,1947,1,0,0, + 0,1949,1950,1,0,0,0,1950,1953,1,0,0,0,1951,1949,1,0,0,0,1952,1943, + 1,0,0,0,1952,1953,1,0,0,0,1953,1956,1,0,0,0,1954,1955,5,217,0,0, + 1955,1957,3,306,153,0,1956,1954,1,0,0,0,1956,1957,1,0,0,0,1957,1961, + 1,0,0,0,1958,1959,5,87,0,0,1959,1960,5,26,0,0,1960,1962,3,268,134, + 0,1961,1958,1,0,0,0,1961,1962,1,0,0,0,1962,1965,1,0,0,0,1963,1964, + 5,90,0,0,1964,1966,3,306,153,0,1965,1963,1,0,0,0,1965,1966,1,0,0, + 0,1966,267,1,0,0,0,1967,1969,3,276,138,0,1968,1967,1,0,0,0,1968, + 1969,1,0,0,0,1969,1970,1,0,0,0,1970,1975,3,270,135,0,1971,1972,5, + 247,0,0,1972,1974,3,270,135,0,1973,1971,1,0,0,0,1974,1977,1,0,0, + 0,1975,1973,1,0,0,0,1975,1976,1,0,0,0,1976,269,1,0,0,0,1977,1975, + 1,0,0,0,1978,1979,3,272,136,0,1979,271,1,0,0,0,1980,1989,5,249,0, + 0,1981,1986,3,302,151,0,1982,1983,5,247,0,0,1983,1985,3,302,151, + 0,1984,1982,1,0,0,0,1985,1988,1,0,0,0,1986,1984,1,0,0,0,1986,1987, + 1,0,0,0,1987,1990,1,0,0,0,1988,1986,1,0,0,0,1989,1981,1,0,0,0,1989, + 1990,1,0,0,0,1990,1991,1,0,0,0,1991,1994,5,250,0,0,1992,1994,3,302, + 151,0,1993,1980,1,0,0,0,1993,1992,1,0,0,0,1994,273,1,0,0,0,1995, + 1997,3,356,178,0,1996,1998,3,292,146,0,1997,1996,1,0,0,0,1997,1998, + 1,0,0,0,1998,1999,1,0,0,0,1999,2000,5,9,0,0,2000,2001,3,296,148, + 0,2001,275,1,0,0,0,2002,2003,7,16,0,0,2003,277,1,0,0,0,2004,2009, + 3,302,151,0,2005,2007,5,9,0,0,2006,2005,1,0,0,0,2006,2007,1,0,0, + 0,2007,2008,1,0,0,0,2008,2010,3,356,178,0,2009,2006,1,0,0,0,2009, + 2010,1,0,0,0,2010,2017,1,0,0,0,2011,2012,3,352,176,0,2012,2013,5, + 245,0,0,2013,2014,5,241,0,0,2014,2017,1,0,0,0,2015,2017,5,241,0, + 0,2016,2004,1,0,0,0,2016,2011,1,0,0,0,2016,2015,1,0,0,0,2017,279, + 1,0,0,0,2018,2019,6,140,-1,0,2019,2020,3,286,143,0,2020,2034,1,0, + 0,0,2021,2030,10,2,0,0,2022,2023,5,38,0,0,2023,2024,5,109,0,0,2024, + 2031,3,286,143,0,2025,2026,3,282,141,0,2026,2027,5,109,0,0,2027, + 2028,3,280,140,0,2028,2029,3,284,142,0,2029,2031,1,0,0,0,2030,2022, + 1,0,0,0,2030,2025,1,0,0,0,2031,2033,1,0,0,0,2032,2021,1,0,0,0,2033, + 2036,1,0,0,0,2034,2032,1,0,0,0,2034,2035,1,0,0,0,2035,281,1,0,0, + 0,2036,2034,1,0,0,0,2037,2039,5,97,0,0,2038,2037,1,0,0,0,2038,2039, + 1,0,0,0,2039,2069,1,0,0,0,2040,2042,5,114,0,0,2041,2043,5,97,0,0, + 2042,2041,1,0,0,0,2042,2043,1,0,0,0,2043,2069,1,0,0,0,2044,2046, + 5,166,0,0,2045,2047,5,97,0,0,2046,2045,1,0,0,0,2046,2047,1,0,0,0, + 2047,2069,1,0,0,0,2048,2050,5,114,0,0,2049,2051,5,142,0,0,2050,2049, + 1,0,0,0,2050,2051,1,0,0,0,2051,2069,1,0,0,0,2052,2054,5,166,0,0, + 2053,2055,5,142,0,0,2054,2053,1,0,0,0,2054,2055,1,0,0,0,2055,2069, + 1,0,0,0,2056,2058,5,83,0,0,2057,2059,5,142,0,0,2058,2057,1,0,0,0, + 2058,2059,1,0,0,0,2059,2069,1,0,0,0,2060,2061,5,114,0,0,2061,2069, + 5,178,0,0,2062,2063,5,166,0,0,2063,2069,5,178,0,0,2064,2065,5,114, + 0,0,2065,2069,5,7,0,0,2066,2067,5,166,0,0,2067,2069,5,7,0,0,2068, + 2038,1,0,0,0,2068,2040,1,0,0,0,2068,2044,1,0,0,0,2068,2048,1,0,0, + 0,2068,2052,1,0,0,0,2068,2056,1,0,0,0,2068,2060,1,0,0,0,2068,2062, + 1,0,0,0,2068,2064,1,0,0,0,2068,2066,1,0,0,0,2069,283,1,0,0,0,2070, + 2071,5,137,0,0,2071,2085,3,306,153,0,2072,2073,5,207,0,0,2073,2074, + 5,249,0,0,2074,2079,3,356,178,0,2075,2076,5,247,0,0,2076,2078,3, + 356,178,0,2077,2075,1,0,0,0,2078,2081,1,0,0,0,2079,2077,1,0,0,0, + 2079,2080,1,0,0,0,2080,2082,1,0,0,0,2081,2079,1,0,0,0,2082,2083, + 5,250,0,0,2083,2085,1,0,0,0,2084,2070,1,0,0,0,2084,2072,1,0,0,0, + 2085,285,1,0,0,0,2086,2099,3,290,145,0,2087,2088,5,192,0,0,2088, + 2089,3,288,144,0,2089,2090,5,249,0,0,2090,2091,3,304,152,0,2091, + 2097,5,250,0,0,2092,2093,5,158,0,0,2093,2094,5,249,0,0,2094,2095, + 3,304,152,0,2095,2096,5,250,0,0,2096,2098,1,0,0,0,2097,2092,1,0, + 0,0,2097,2098,1,0,0,0,2098,2100,1,0,0,0,2099,2087,1,0,0,0,2099,2100, + 1,0,0,0,2100,287,1,0,0,0,2101,2102,7,17,0,0,2102,289,1,0,0,0,2103, + 2111,3,294,147,0,2104,2106,5,9,0,0,2105,2104,1,0,0,0,2105,2106,1, + 0,0,0,2106,2107,1,0,0,0,2107,2109,3,356,178,0,2108,2110,3,292,146, + 0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110,2112,1,0,0,0,2111,2105, + 1,0,0,0,2111,2112,1,0,0,0,2112,291,1,0,0,0,2113,2114,5,249,0,0,2114, + 2119,3,192,96,0,2115,2116,5,247,0,0,2116,2118,3,192,96,0,2117,2115, + 1,0,0,0,2118,2121,1,0,0,0,2119,2117,1,0,0,0,2119,2120,1,0,0,0,2120, + 2122,1,0,0,0,2121,2119,1,0,0,0,2122,2123,5,250,0,0,2123,293,1,0, + 0,0,2124,2132,3,194,97,0,2125,2127,5,113,0,0,2126,2125,1,0,0,0,2126, + 2127,1,0,0,0,2127,2128,1,0,0,0,2128,2132,3,296,148,0,2129,2132,3, + 298,149,0,2130,2132,3,300,150,0,2131,2124,1,0,0,0,2131,2126,1,0, + 0,0,2131,2129,1,0,0,0,2131,2130,1,0,0,0,2132,295,1,0,0,0,2133,2134, + 5,249,0,0,2134,2135,3,204,102,0,2135,2136,5,250,0,0,2136,297,1,0, + 0,0,2137,2138,5,203,0,0,2138,2139,5,249,0,0,2139,2144,3,304,152, + 0,2140,2141,5,247,0,0,2141,2143,3,304,152,0,2142,2140,1,0,0,0,2143, + 2146,1,0,0,0,2144,2142,1,0,0,0,2144,2145,1,0,0,0,2145,2147,1,0,0, + 0,2146,2144,1,0,0,0,2147,2150,5,250,0,0,2148,2149,5,218,0,0,2149, + 2151,5,141,0,0,2150,2148,1,0,0,0,2150,2151,1,0,0,0,2151,299,1,0, + 0,0,2152,2153,5,249,0,0,2153,2154,3,280,140,0,2154,2155,5,250,0, + 0,2155,301,1,0,0,0,2156,2159,3,192,96,0,2157,2159,3,304,152,0,2158, + 2156,1,0,0,0,2158,2157,1,0,0,0,2159,303,1,0,0,0,2160,2161,3,306, + 153,0,2161,305,1,0,0,0,2162,2163,6,153,-1,0,2163,2165,3,310,155, + 0,2164,2166,3,308,154,0,2165,2164,1,0,0,0,2165,2166,1,0,0,0,2166, + 2170,1,0,0,0,2167,2168,5,133,0,0,2168,2170,3,306,153,3,2169,2162, + 1,0,0,0,2169,2167,1,0,0,0,2170,2179,1,0,0,0,2171,2172,10,2,0,0,2172, + 2173,5,5,0,0,2173,2178,3,306,153,3,2174,2175,10,1,0,0,2175,2176, + 5,139,0,0,2176,2178,3,306,153,2,2177,2171,1,0,0,0,2177,2174,1,0, + 0,0,2178,2181,1,0,0,0,2179,2177,1,0,0,0,2179,2180,1,0,0,0,2180,307, + 1,0,0,0,2181,2179,1,0,0,0,2182,2183,3,316,158,0,2183,2184,3,310, + 155,0,2184,2241,1,0,0,0,2185,2186,3,316,158,0,2186,2187,3,318,159, + 0,2187,2188,3,296,148,0,2188,2241,1,0,0,0,2189,2191,5,133,0,0,2190, + 2189,1,0,0,0,2190,2191,1,0,0,0,2191,2192,1,0,0,0,2192,2193,5,15, + 0,0,2193,2194,3,310,155,0,2194,2195,5,5,0,0,2195,2196,3,310,155, + 0,2196,2241,1,0,0,0,2197,2199,5,133,0,0,2198,2197,1,0,0,0,2198,2199, + 1,0,0,0,2199,2200,1,0,0,0,2200,2201,5,94,0,0,2201,2202,5,249,0,0, + 2202,2207,3,304,152,0,2203,2204,5,247,0,0,2204,2206,3,304,152,0, + 2205,2203,1,0,0,0,2206,2209,1,0,0,0,2207,2205,1,0,0,0,2207,2208, + 1,0,0,0,2208,2210,1,0,0,0,2209,2207,1,0,0,0,2210,2211,5,250,0,0, + 2211,2241,1,0,0,0,2212,2214,5,133,0,0,2213,2212,1,0,0,0,2213,2214, + 1,0,0,0,2214,2215,1,0,0,0,2215,2216,5,94,0,0,2216,2241,3,296,148, + 0,2217,2219,5,133,0,0,2218,2217,1,0,0,0,2218,2219,1,0,0,0,2219,2220, + 1,0,0,0,2220,2221,7,18,0,0,2221,2224,3,310,155,0,2222,2223,5,62, + 0,0,2223,2225,3,310,155,0,2224,2222,1,0,0,0,2224,2225,1,0,0,0,2225, + 2241,1,0,0,0,2226,2227,7,19,0,0,2227,2241,3,310,155,0,2228,2230, + 5,108,0,0,2229,2231,5,133,0,0,2230,2229,1,0,0,0,2230,2231,1,0,0, + 0,2231,2232,1,0,0,0,2232,2241,7,20,0,0,2233,2235,5,108,0,0,2234, + 2236,5,133,0,0,2235,2234,1,0,0,0,2235,2236,1,0,0,0,2236,2237,1,0, + 0,0,2237,2238,5,57,0,0,2238,2239,5,82,0,0,2239,2241,3,310,155,0, + 2240,2182,1,0,0,0,2240,2185,1,0,0,0,2240,2190,1,0,0,0,2240,2198, + 1,0,0,0,2240,2213,1,0,0,0,2240,2218,1,0,0,0,2240,2226,1,0,0,0,2240, + 2228,1,0,0,0,2240,2233,1,0,0,0,2241,309,1,0,0,0,2242,2243,6,155, + -1,0,2243,2247,3,312,156,0,2244,2245,7,21,0,0,2245,2247,3,310,155, + 4,2246,2242,1,0,0,0,2246,2244,1,0,0,0,2247,2259,1,0,0,0,2248,2249, + 10,3,0,0,2249,2250,7,22,0,0,2250,2258,3,310,155,4,2251,2252,10,2, + 0,0,2252,2253,7,21,0,0,2253,2258,3,310,155,3,2254,2255,10,1,0,0, + 2255,2256,5,244,0,0,2256,2258,3,310,155,2,2257,2248,1,0,0,0,2257, + 2251,1,0,0,0,2257,2254,1,0,0,0,2258,2261,1,0,0,0,2259,2257,1,0,0, + 0,2259,2260,1,0,0,0,2260,311,1,0,0,0,2261,2259,1,0,0,0,2262,2263, + 6,156,-1,0,2263,2509,5,134,0,0,2264,2509,3,322,161,0,2265,2266,3, + 356,178,0,2266,2267,3,314,157,0,2267,2509,1,0,0,0,2268,2269,5,270, + 0,0,2269,2509,3,314,157,0,2270,2509,3,358,179,0,2271,2509,3,320, + 160,0,2272,2509,3,314,157,0,2273,2509,5,260,0,0,2274,2509,5,256, + 0,0,2275,2276,5,149,0,0,2276,2277,5,249,0,0,2277,2278,3,310,155, + 0,2278,2279,5,94,0,0,2279,2280,3,310,155,0,2280,2281,5,250,0,0,2281, + 2509,1,0,0,0,2282,2283,5,249,0,0,2283,2286,3,304,152,0,2284,2285, + 5,9,0,0,2285,2287,3,328,164,0,2286,2284,1,0,0,0,2286,2287,1,0,0, + 0,2287,2296,1,0,0,0,2288,2289,5,247,0,0,2289,2292,3,304,152,0,2290, + 2291,5,9,0,0,2291,2293,3,328,164,0,2292,2290,1,0,0,0,2292,2293,1, + 0,0,0,2293,2295,1,0,0,0,2294,2288,1,0,0,0,2295,2298,1,0,0,0,2296, + 2297,1,0,0,0,2296,2294,1,0,0,0,2297,2299,1,0,0,0,2298,2296,1,0,0, + 0,2299,2300,5,250,0,0,2300,2509,1,0,0,0,2301,2302,5,169,0,0,2302, + 2303,5,249,0,0,2303,2308,3,304,152,0,2304,2305,5,247,0,0,2305,2307, + 3,304,152,0,2306,2304,1,0,0,0,2307,2310,1,0,0,0,2308,2306,1,0,0, + 0,2308,2309,1,0,0,0,2309,2311,1,0,0,0,2310,2308,1,0,0,0,2311,2312, + 5,250,0,0,2312,2509,1,0,0,0,2313,2314,3,190,95,0,2314,2315,5,249, + 0,0,2315,2316,5,241,0,0,2316,2318,5,250,0,0,2317,2319,3,336,168, + 0,2318,2317,1,0,0,0,2318,2319,1,0,0,0,2319,2321,1,0,0,0,2320,2322, + 3,338,169,0,2321,2320,1,0,0,0,2321,2322,1,0,0,0,2322,2509,1,0,0, + 0,2323,2324,3,190,95,0,2324,2336,5,249,0,0,2325,2327,3,276,138,0, + 2326,2325,1,0,0,0,2326,2327,1,0,0,0,2327,2328,1,0,0,0,2328,2333, + 3,304,152,0,2329,2330,5,247,0,0,2330,2332,3,304,152,0,2331,2329, + 1,0,0,0,2332,2335,1,0,0,0,2333,2331,1,0,0,0,2333,2334,1,0,0,0,2334, + 2337,1,0,0,0,2335,2333,1,0,0,0,2336,2326,1,0,0,0,2336,2337,1,0,0, + 0,2337,2348,1,0,0,0,2338,2339,5,140,0,0,2339,2340,5,26,0,0,2340, + 2345,3,264,132,0,2341,2342,5,247,0,0,2342,2344,3,264,132,0,2343, + 2341,1,0,0,0,2344,2347,1,0,0,0,2345,2343,1,0,0,0,2345,2346,1,0,0, + 0,2346,2349,1,0,0,0,2347,2345,1,0,0,0,2348,2338,1,0,0,0,2348,2349, + 1,0,0,0,2349,2350,1,0,0,0,2350,2352,5,250,0,0,2351,2353,3,336,168, + 0,2352,2351,1,0,0,0,2352,2353,1,0,0,0,2353,2355,1,0,0,0,2354,2356, + 3,338,169,0,2355,2354,1,0,0,0,2355,2356,1,0,0,0,2356,2509,1,0,0, + 0,2357,2358,3,356,178,0,2358,2359,5,257,0,0,2359,2360,3,304,152, + 0,2360,2509,1,0,0,0,2361,2370,5,249,0,0,2362,2367,3,356,178,0,2363, + 2364,5,247,0,0,2364,2366,3,356,178,0,2365,2363,1,0,0,0,2366,2369, + 1,0,0,0,2367,2365,1,0,0,0,2367,2368,1,0,0,0,2368,2371,1,0,0,0,2369, + 2367,1,0,0,0,2370,2362,1,0,0,0,2370,2371,1,0,0,0,2371,2372,1,0,0, + 0,2372,2373,5,250,0,0,2373,2374,5,257,0,0,2374,2509,3,304,152,0, + 2375,2376,5,249,0,0,2376,2377,3,204,102,0,2377,2378,5,250,0,0,2378, + 2509,1,0,0,0,2379,2380,5,66,0,0,2380,2381,5,249,0,0,2381,2382,3, + 204,102,0,2382,2383,5,250,0,0,2383,2509,1,0,0,0,2384,2385,5,28,0, + 0,2385,2387,3,310,155,0,2386,2388,3,334,167,0,2387,2386,1,0,0,0, + 2388,2389,1,0,0,0,2389,2387,1,0,0,0,2389,2390,1,0,0,0,2390,2393, + 1,0,0,0,2391,2392,5,59,0,0,2392,2394,3,304,152,0,2393,2391,1,0,0, + 0,2393,2394,1,0,0,0,2394,2395,1,0,0,0,2395,2396,5,61,0,0,2396,2509, + 1,0,0,0,2397,2399,5,28,0,0,2398,2400,3,334,167,0,2399,2398,1,0,0, + 0,2400,2401,1,0,0,0,2401,2399,1,0,0,0,2401,2402,1,0,0,0,2402,2405, + 1,0,0,0,2403,2404,5,59,0,0,2404,2406,3,304,152,0,2405,2403,1,0,0, + 0,2405,2406,1,0,0,0,2406,2407,1,0,0,0,2407,2408,5,61,0,0,2408,2509, + 1,0,0,0,2409,2410,5,29,0,0,2410,2411,5,249,0,0,2411,2412,3,304,152, + 0,2412,2413,5,9,0,0,2413,2414,3,328,164,0,2414,2415,5,250,0,0,2415, + 2509,1,0,0,0,2416,2417,5,197,0,0,2417,2418,5,249,0,0,2418,2419,3, + 304,152,0,2419,2420,5,9,0,0,2420,2421,3,328,164,0,2421,2422,5,250, + 0,0,2422,2509,1,0,0,0,2423,2424,5,8,0,0,2424,2433,5,251,0,0,2425, + 2430,3,304,152,0,2426,2427,5,247,0,0,2427,2429,3,304,152,0,2428, + 2426,1,0,0,0,2429,2432,1,0,0,0,2430,2428,1,0,0,0,2430,2431,1,0,0, + 0,2431,2434,1,0,0,0,2432,2430,1,0,0,0,2433,2425,1,0,0,0,2433,2434, + 1,0,0,0,2434,2435,1,0,0,0,2435,2509,5,252,0,0,2436,2509,3,356,178, + 0,2437,2509,5,40,0,0,2438,2442,5,42,0,0,2439,2440,5,249,0,0,2440, + 2441,5,261,0,0,2441,2443,5,250,0,0,2442,2439,1,0,0,0,2442,2443,1, + 0,0,0,2443,2509,1,0,0,0,2444,2448,5,43,0,0,2445,2446,5,249,0,0,2446, + 2447,5,261,0,0,2447,2449,5,250,0,0,2448,2445,1,0,0,0,2448,2449,1, + 0,0,0,2449,2509,1,0,0,0,2450,2454,5,119,0,0,2451,2452,5,249,0,0, 2452,2453,5,261,0,0,2453,2455,5,250,0,0,2454,2451,1,0,0,0,2454,2455, - 1,0,0,0,2455,2515,1,0,0,0,2456,2460,5,119,0,0,2457,2458,5,249,0, + 1,0,0,0,2455,2509,1,0,0,0,2456,2460,5,120,0,0,2457,2458,5,249,0, 0,2458,2459,5,261,0,0,2459,2461,5,250,0,0,2460,2457,1,0,0,0,2460, - 2461,1,0,0,0,2461,2515,1,0,0,0,2462,2466,5,120,0,0,2463,2464,5,249, - 0,0,2464,2465,5,261,0,0,2465,2467,5,250,0,0,2466,2463,1,0,0,0,2466, - 2467,1,0,0,0,2467,2515,1,0,0,0,2468,2515,5,44,0,0,2469,2515,5,41, - 0,0,2470,2471,5,186,0,0,2471,2472,5,249,0,0,2472,2473,3,310,155, - 0,2473,2474,5,82,0,0,2474,2477,3,310,155,0,2475,2476,5,78,0,0,2476, - 2478,3,310,155,0,2477,2475,1,0,0,0,2477,2478,1,0,0,0,2478,2479,1, - 0,0,0,2479,2480,5,250,0,0,2480,2515,1,0,0,0,2481,2482,5,132,0,0, - 2482,2483,5,249,0,0,2483,2486,3,310,155,0,2484,2485,5,247,0,0,2485, - 2487,3,326,163,0,2486,2484,1,0,0,0,2486,2487,1,0,0,0,2487,2488,1, - 0,0,0,2488,2489,5,250,0,0,2489,2515,1,0,0,0,2490,2491,5,68,0,0,2491, - 2492,5,249,0,0,2492,2493,3,356,178,0,2493,2494,5,82,0,0,2494,2495, - 3,310,155,0,2495,2496,5,250,0,0,2496,2515,1,0,0,0,2497,2498,5,249, - 0,0,2498,2499,3,304,152,0,2499,2500,5,250,0,0,2500,2515,1,0,0,0, - 2501,2502,5,88,0,0,2502,2511,5,249,0,0,2503,2508,3,352,176,0,2504, - 2505,5,247,0,0,2505,2507,3,352,176,0,2506,2504,1,0,0,0,2507,2510, - 1,0,0,0,2508,2506,1,0,0,0,2508,2509,1,0,0,0,2509,2512,1,0,0,0,2510, - 2508,1,0,0,0,2511,2503,1,0,0,0,2511,2512,1,0,0,0,2512,2513,1,0,0, - 0,2513,2515,5,250,0,0,2514,2268,1,0,0,0,2514,2270,1,0,0,0,2514,2271, - 1,0,0,0,2514,2274,1,0,0,0,2514,2276,1,0,0,0,2514,2277,1,0,0,0,2514, - 2278,1,0,0,0,2514,2279,1,0,0,0,2514,2280,1,0,0,0,2514,2281,1,0,0, - 0,2514,2288,1,0,0,0,2514,2307,1,0,0,0,2514,2319,1,0,0,0,2514,2329, - 1,0,0,0,2514,2363,1,0,0,0,2514,2367,1,0,0,0,2514,2381,1,0,0,0,2514, - 2385,1,0,0,0,2514,2390,1,0,0,0,2514,2403,1,0,0,0,2514,2415,1,0,0, - 0,2514,2422,1,0,0,0,2514,2429,1,0,0,0,2514,2442,1,0,0,0,2514,2443, - 1,0,0,0,2514,2444,1,0,0,0,2514,2450,1,0,0,0,2514,2456,1,0,0,0,2514, - 2462,1,0,0,0,2514,2468,1,0,0,0,2514,2469,1,0,0,0,2514,2470,1,0,0, - 0,2514,2481,1,0,0,0,2514,2490,1,0,0,0,2514,2497,1,0,0,0,2514,2501, - 1,0,0,0,2515,2526,1,0,0,0,2516,2517,10,15,0,0,2517,2518,5,251,0, - 0,2518,2519,3,310,155,0,2519,2520,5,252,0,0,2520,2525,1,0,0,0,2521, - 2522,10,13,0,0,2522,2523,5,245,0,0,2523,2525,3,356,178,0,2524,2516, - 1,0,0,0,2524,2521,1,0,0,0,2525,2528,1,0,0,0,2526,2524,1,0,0,0,2526, - 2527,1,0,0,0,2527,313,1,0,0,0,2528,2526,1,0,0,0,2529,2536,5,258, - 0,0,2530,2533,5,259,0,0,2531,2532,5,200,0,0,2532,2534,5,258,0,0, - 2533,2531,1,0,0,0,2533,2534,1,0,0,0,2534,2536,1,0,0,0,2535,2529, - 1,0,0,0,2535,2530,1,0,0,0,2536,315,1,0,0,0,2537,2538,7,23,0,0,2538, - 317,1,0,0,0,2539,2540,7,24,0,0,2540,319,1,0,0,0,2541,2542,7,25,0, - 0,2542,321,1,0,0,0,2543,2544,5,261,0,0,2544,2558,3,324,162,0,2545, - 2546,5,249,0,0,2546,2547,5,261,0,0,2547,2548,5,250,0,0,2548,2558, - 3,324,162,0,2549,2550,5,101,0,0,2550,2551,5,261,0,0,2551,2558,3, - 324,162,0,2552,2553,5,101,0,0,2553,2554,5,249,0,0,2554,2555,5,261, - 0,0,2555,2556,5,250,0,0,2556,2558,3,324,162,0,2557,2543,1,0,0,0, - 2557,2545,1,0,0,0,2557,2549,1,0,0,0,2557,2552,1,0,0,0,2558,323,1, - 0,0,0,2559,2560,7,26,0,0,2560,325,1,0,0,0,2561,2562,7,27,0,0,2562, - 327,1,0,0,0,2563,2564,6,164,-1,0,2564,2565,5,8,0,0,2565,2566,5,235, - 0,0,2566,2567,3,328,164,0,2567,2568,5,237,0,0,2568,2608,1,0,0,0, - 2569,2570,5,122,0,0,2570,2571,5,235,0,0,2571,2572,3,328,164,0,2572, - 2573,5,247,0,0,2573,2574,3,328,164,0,2574,2575,5,237,0,0,2575,2608, - 1,0,0,0,2576,2577,5,184,0,0,2577,2578,5,235,0,0,2578,2579,3,356, - 178,0,2579,2580,5,248,0,0,2580,2588,3,328,164,0,2581,2582,5,247, - 0,0,2582,2583,3,356,178,0,2583,2584,5,248,0,0,2584,2585,3,328,164, - 0,2585,2587,1,0,0,0,2586,2581,1,0,0,0,2587,2590,1,0,0,0,2588,2586, - 1,0,0,0,2588,2589,1,0,0,0,2589,2591,1,0,0,0,2590,2588,1,0,0,0,2591, - 2592,5,237,0,0,2592,2608,1,0,0,0,2593,2605,3,332,166,0,2594,2595, - 5,249,0,0,2595,2600,3,330,165,0,2596,2597,5,247,0,0,2597,2599,3, - 330,165,0,2598,2596,1,0,0,0,2599,2602,1,0,0,0,2600,2598,1,0,0,0, - 2600,2601,1,0,0,0,2601,2603,1,0,0,0,2602,2600,1,0,0,0,2603,2604, - 5,250,0,0,2604,2606,1,0,0,0,2605,2594,1,0,0,0,2605,2606,1,0,0,0, - 2606,2608,1,0,0,0,2607,2563,1,0,0,0,2607,2569,1,0,0,0,2607,2576, - 1,0,0,0,2607,2593,1,0,0,0,2608,2613,1,0,0,0,2609,2610,10,5,0,0,2610, - 2612,5,8,0,0,2611,2609,1,0,0,0,2612,2615,1,0,0,0,2613,2611,1,0,0, - 0,2613,2614,1,0,0,0,2614,329,1,0,0,0,2615,2613,1,0,0,0,2616,2619, - 5,261,0,0,2617,2619,3,328,164,0,2618,2616,1,0,0,0,2618,2617,1,0, - 0,0,2619,331,1,0,0,0,2620,2625,5,268,0,0,2621,2625,5,269,0,0,2622, - 2625,5,270,0,0,2623,2625,3,356,178,0,2624,2620,1,0,0,0,2624,2621, - 1,0,0,0,2624,2622,1,0,0,0,2624,2623,1,0,0,0,2625,333,1,0,0,0,2626, - 2627,5,216,0,0,2627,2628,3,304,152,0,2628,2629,5,194,0,0,2629,2630, - 3,304,152,0,2630,335,1,0,0,0,2631,2632,5,74,0,0,2632,2633,5,249, - 0,0,2633,2634,5,217,0,0,2634,2635,3,306,153,0,2635,2636,5,250,0, - 0,2636,337,1,0,0,0,2637,2638,5,144,0,0,2638,2649,5,249,0,0,2639, - 2640,5,146,0,0,2640,2641,5,26,0,0,2641,2646,3,304,152,0,2642,2643, - 5,247,0,0,2643,2645,3,304,152,0,2644,2642,1,0,0,0,2645,2648,1,0, - 0,0,2646,2644,1,0,0,0,2646,2647,1,0,0,0,2647,2650,1,0,0,0,2648,2646, - 1,0,0,0,2649,2639,1,0,0,0,2649,2650,1,0,0,0,2650,2661,1,0,0,0,2651, - 2652,5,140,0,0,2652,2653,5,26,0,0,2653,2658,3,262,131,0,2654,2655, - 5,247,0,0,2655,2657,3,262,131,0,2656,2654,1,0,0,0,2657,2660,1,0, - 0,0,2658,2656,1,0,0,0,2658,2659,1,0,0,0,2659,2662,1,0,0,0,2660,2658, - 1,0,0,0,2661,2651,1,0,0,0,2661,2662,1,0,0,0,2662,2664,1,0,0,0,2663, - 2665,3,340,170,0,2664,2663,1,0,0,0,2664,2665,1,0,0,0,2665,2666,1, - 0,0,0,2666,2667,5,250,0,0,2667,339,1,0,0,0,2668,2669,5,155,0,0,2669, - 2685,3,342,171,0,2670,2671,5,170,0,0,2671,2685,3,342,171,0,2672, - 2673,5,155,0,0,2673,2674,5,15,0,0,2674,2675,3,342,171,0,2675,2676, - 5,5,0,0,2676,2677,3,342,171,0,2677,2685,1,0,0,0,2678,2679,5,170, - 0,0,2679,2680,5,15,0,0,2680,2681,3,342,171,0,2681,2682,5,5,0,0,2682, - 2683,3,342,171,0,2683,2685,1,0,0,0,2684,2668,1,0,0,0,2684,2670,1, - 0,0,0,2684,2672,1,0,0,0,2684,2678,1,0,0,0,2685,341,1,0,0,0,2686, - 2687,5,201,0,0,2687,2696,5,150,0,0,2688,2689,5,201,0,0,2689,2696, - 5,77,0,0,2690,2691,5,39,0,0,2691,2696,5,169,0,0,2692,2693,3,304, - 152,0,2693,2694,7,28,0,0,2694,2696,1,0,0,0,2695,2686,1,0,0,0,2695, - 2688,1,0,0,0,2695,2690,1,0,0,0,2695,2692,1,0,0,0,2696,343,1,0,0, - 0,2697,2698,3,356,178,0,2698,2699,5,245,0,0,2699,2700,3,356,178, - 0,2700,2703,1,0,0,0,2701,2703,3,356,178,0,2702,2697,1,0,0,0,2702, - 2701,1,0,0,0,2703,345,1,0,0,0,2704,2709,3,344,172,0,2705,2706,5, - 247,0,0,2706,2708,3,344,172,0,2707,2705,1,0,0,0,2708,2711,1,0,0, - 0,2709,2707,1,0,0,0,2709,2710,1,0,0,0,2710,347,1,0,0,0,2711,2709, - 1,0,0,0,2712,2726,5,2,0,0,2713,2726,5,4,0,0,2714,2726,5,58,0,0,2715, - 2726,5,37,0,0,2716,2726,5,99,0,0,2717,2726,5,163,0,0,2718,2723,5, - 175,0,0,2719,2720,5,249,0,0,2720,2721,3,356,178,0,2721,2722,5,250, - 0,0,2722,2724,1,0,0,0,2723,2719,1,0,0,0,2723,2724,1,0,0,0,2724,2726, - 1,0,0,0,2725,2712,1,0,0,0,2725,2713,1,0,0,0,2725,2714,1,0,0,0,2725, - 2715,1,0,0,0,2725,2716,1,0,0,0,2725,2717,1,0,0,0,2725,2718,1,0,0, - 0,2726,349,1,0,0,0,2727,2728,7,29,0,0,2728,351,1,0,0,0,2729,2734, - 3,356,178,0,2730,2731,5,245,0,0,2731,2733,3,356,178,0,2732,2730, - 1,0,0,0,2733,2736,1,0,0,0,2734,2732,1,0,0,0,2734,2735,1,0,0,0,2735, - 353,1,0,0,0,2736,2734,1,0,0,0,2737,2738,5,167,0,0,2738,2744,3,356, - 178,0,2739,2740,5,206,0,0,2740,2744,3,356,178,0,2741,2742,5,87,0, - 0,2742,2744,3,356,178,0,2743,2737,1,0,0,0,2743,2739,1,0,0,0,2743, - 2741,1,0,0,0,2744,355,1,0,0,0,2745,2751,5,264,0,0,2746,2751,5,258, - 0,0,2747,2751,3,362,181,0,2748,2751,5,267,0,0,2749,2751,5,265,0, - 0,2750,2745,1,0,0,0,2750,2746,1,0,0,0,2750,2747,1,0,0,0,2750,2748, - 1,0,0,0,2750,2749,1,0,0,0,2751,357,1,0,0,0,2752,2754,5,240,0,0,2753, - 2752,1,0,0,0,2753,2754,1,0,0,0,2754,2755,1,0,0,0,2755,2765,5,262, - 0,0,2756,2758,5,240,0,0,2757,2756,1,0,0,0,2757,2758,1,0,0,0,2758, - 2759,1,0,0,0,2759,2765,5,263,0,0,2760,2762,5,240,0,0,2761,2760,1, - 0,0,0,2761,2762,1,0,0,0,2762,2763,1,0,0,0,2763,2765,5,261,0,0,2764, - 2753,1,0,0,0,2764,2757,1,0,0,0,2764,2761,1,0,0,0,2765,359,1,0,0, - 0,2766,2767,7,30,0,0,2767,361,1,0,0,0,2768,2769,7,31,0,0,2769,363, - 1,0,0,0,351,367,374,398,411,415,419,428,433,437,443,445,450,454, + 2461,1,0,0,0,2461,2509,1,0,0,0,2462,2509,5,44,0,0,2463,2509,5,41, + 0,0,2464,2465,5,186,0,0,2465,2466,5,249,0,0,2466,2467,3,310,155, + 0,2467,2468,5,82,0,0,2468,2471,3,310,155,0,2469,2470,5,78,0,0,2470, + 2472,3,310,155,0,2471,2469,1,0,0,0,2471,2472,1,0,0,0,2472,2473,1, + 0,0,0,2473,2474,5,250,0,0,2474,2509,1,0,0,0,2475,2476,5,132,0,0, + 2476,2477,5,249,0,0,2477,2480,3,310,155,0,2478,2479,5,247,0,0,2479, + 2481,3,326,163,0,2480,2478,1,0,0,0,2480,2481,1,0,0,0,2481,2482,1, + 0,0,0,2482,2483,5,250,0,0,2483,2509,1,0,0,0,2484,2485,5,68,0,0,2485, + 2486,5,249,0,0,2486,2487,3,356,178,0,2487,2488,5,82,0,0,2488,2489, + 3,310,155,0,2489,2490,5,250,0,0,2490,2509,1,0,0,0,2491,2492,5,249, + 0,0,2492,2493,3,304,152,0,2493,2494,5,250,0,0,2494,2509,1,0,0,0, + 2495,2496,5,88,0,0,2496,2505,5,249,0,0,2497,2502,3,352,176,0,2498, + 2499,5,247,0,0,2499,2501,3,352,176,0,2500,2498,1,0,0,0,2501,2504, + 1,0,0,0,2502,2500,1,0,0,0,2502,2503,1,0,0,0,2503,2506,1,0,0,0,2504, + 2502,1,0,0,0,2505,2497,1,0,0,0,2505,2506,1,0,0,0,2506,2507,1,0,0, + 0,2507,2509,5,250,0,0,2508,2262,1,0,0,0,2508,2264,1,0,0,0,2508,2265, + 1,0,0,0,2508,2268,1,0,0,0,2508,2270,1,0,0,0,2508,2271,1,0,0,0,2508, + 2272,1,0,0,0,2508,2273,1,0,0,0,2508,2274,1,0,0,0,2508,2275,1,0,0, + 0,2508,2282,1,0,0,0,2508,2301,1,0,0,0,2508,2313,1,0,0,0,2508,2323, + 1,0,0,0,2508,2357,1,0,0,0,2508,2361,1,0,0,0,2508,2375,1,0,0,0,2508, + 2379,1,0,0,0,2508,2384,1,0,0,0,2508,2397,1,0,0,0,2508,2409,1,0,0, + 0,2508,2416,1,0,0,0,2508,2423,1,0,0,0,2508,2436,1,0,0,0,2508,2437, + 1,0,0,0,2508,2438,1,0,0,0,2508,2444,1,0,0,0,2508,2450,1,0,0,0,2508, + 2456,1,0,0,0,2508,2462,1,0,0,0,2508,2463,1,0,0,0,2508,2464,1,0,0, + 0,2508,2475,1,0,0,0,2508,2484,1,0,0,0,2508,2491,1,0,0,0,2508,2495, + 1,0,0,0,2509,2520,1,0,0,0,2510,2511,10,15,0,0,2511,2512,5,251,0, + 0,2512,2513,3,310,155,0,2513,2514,5,252,0,0,2514,2519,1,0,0,0,2515, + 2516,10,13,0,0,2516,2517,5,245,0,0,2517,2519,3,356,178,0,2518,2510, + 1,0,0,0,2518,2515,1,0,0,0,2519,2522,1,0,0,0,2520,2518,1,0,0,0,2520, + 2521,1,0,0,0,2521,313,1,0,0,0,2522,2520,1,0,0,0,2523,2530,5,258, + 0,0,2524,2527,5,259,0,0,2525,2526,5,200,0,0,2526,2528,5,258,0,0, + 2527,2525,1,0,0,0,2527,2528,1,0,0,0,2528,2530,1,0,0,0,2529,2523, + 1,0,0,0,2529,2524,1,0,0,0,2530,315,1,0,0,0,2531,2532,7,23,0,0,2532, + 317,1,0,0,0,2533,2534,7,24,0,0,2534,319,1,0,0,0,2535,2536,7,25,0, + 0,2536,321,1,0,0,0,2537,2538,5,261,0,0,2538,2552,3,324,162,0,2539, + 2540,5,249,0,0,2540,2541,5,261,0,0,2541,2542,5,250,0,0,2542,2552, + 3,324,162,0,2543,2544,5,101,0,0,2544,2545,5,261,0,0,2545,2552,3, + 324,162,0,2546,2547,5,101,0,0,2547,2548,5,249,0,0,2548,2549,5,261, + 0,0,2549,2550,5,250,0,0,2550,2552,3,324,162,0,2551,2537,1,0,0,0, + 2551,2539,1,0,0,0,2551,2543,1,0,0,0,2551,2546,1,0,0,0,2552,323,1, + 0,0,0,2553,2554,7,26,0,0,2554,325,1,0,0,0,2555,2556,7,27,0,0,2556, + 327,1,0,0,0,2557,2558,6,164,-1,0,2558,2559,5,8,0,0,2559,2560,5,235, + 0,0,2560,2561,3,328,164,0,2561,2562,5,237,0,0,2562,2602,1,0,0,0, + 2563,2564,5,122,0,0,2564,2565,5,235,0,0,2565,2566,3,328,164,0,2566, + 2567,5,247,0,0,2567,2568,3,328,164,0,2568,2569,5,237,0,0,2569,2602, + 1,0,0,0,2570,2571,5,184,0,0,2571,2572,5,235,0,0,2572,2573,3,356, + 178,0,2573,2574,5,248,0,0,2574,2582,3,328,164,0,2575,2576,5,247, + 0,0,2576,2577,3,356,178,0,2577,2578,5,248,0,0,2578,2579,3,328,164, + 0,2579,2581,1,0,0,0,2580,2575,1,0,0,0,2581,2584,1,0,0,0,2582,2580, + 1,0,0,0,2582,2583,1,0,0,0,2583,2585,1,0,0,0,2584,2582,1,0,0,0,2585, + 2586,5,237,0,0,2586,2602,1,0,0,0,2587,2599,3,332,166,0,2588,2589, + 5,249,0,0,2589,2594,3,330,165,0,2590,2591,5,247,0,0,2591,2593,3, + 330,165,0,2592,2590,1,0,0,0,2593,2596,1,0,0,0,2594,2592,1,0,0,0, + 2594,2595,1,0,0,0,2595,2597,1,0,0,0,2596,2594,1,0,0,0,2597,2598, + 5,250,0,0,2598,2600,1,0,0,0,2599,2588,1,0,0,0,2599,2600,1,0,0,0, + 2600,2602,1,0,0,0,2601,2557,1,0,0,0,2601,2563,1,0,0,0,2601,2570, + 1,0,0,0,2601,2587,1,0,0,0,2602,2607,1,0,0,0,2603,2604,10,5,0,0,2604, + 2606,5,8,0,0,2605,2603,1,0,0,0,2606,2609,1,0,0,0,2607,2605,1,0,0, + 0,2607,2608,1,0,0,0,2608,329,1,0,0,0,2609,2607,1,0,0,0,2610,2613, + 5,261,0,0,2611,2613,3,328,164,0,2612,2610,1,0,0,0,2612,2611,1,0, + 0,0,2613,331,1,0,0,0,2614,2619,5,268,0,0,2615,2619,5,269,0,0,2616, + 2619,5,270,0,0,2617,2619,3,356,178,0,2618,2614,1,0,0,0,2618,2615, + 1,0,0,0,2618,2616,1,0,0,0,2618,2617,1,0,0,0,2619,333,1,0,0,0,2620, + 2621,5,216,0,0,2621,2622,3,304,152,0,2622,2623,5,194,0,0,2623,2624, + 3,304,152,0,2624,335,1,0,0,0,2625,2626,5,74,0,0,2626,2627,5,249, + 0,0,2627,2628,5,217,0,0,2628,2629,3,306,153,0,2629,2630,5,250,0, + 0,2630,337,1,0,0,0,2631,2632,5,144,0,0,2632,2643,5,249,0,0,2633, + 2634,5,146,0,0,2634,2635,5,26,0,0,2635,2640,3,304,152,0,2636,2637, + 5,247,0,0,2637,2639,3,304,152,0,2638,2636,1,0,0,0,2639,2642,1,0, + 0,0,2640,2638,1,0,0,0,2640,2641,1,0,0,0,2641,2644,1,0,0,0,2642,2640, + 1,0,0,0,2643,2633,1,0,0,0,2643,2644,1,0,0,0,2644,2655,1,0,0,0,2645, + 2646,5,140,0,0,2646,2647,5,26,0,0,2647,2652,3,264,132,0,2648,2649, + 5,247,0,0,2649,2651,3,264,132,0,2650,2648,1,0,0,0,2651,2654,1,0, + 0,0,2652,2650,1,0,0,0,2652,2653,1,0,0,0,2653,2656,1,0,0,0,2654,2652, + 1,0,0,0,2655,2645,1,0,0,0,2655,2656,1,0,0,0,2656,2658,1,0,0,0,2657, + 2659,3,340,170,0,2658,2657,1,0,0,0,2658,2659,1,0,0,0,2659,2660,1, + 0,0,0,2660,2661,5,250,0,0,2661,339,1,0,0,0,2662,2663,5,155,0,0,2663, + 2679,3,342,171,0,2664,2665,5,170,0,0,2665,2679,3,342,171,0,2666, + 2667,5,155,0,0,2667,2668,5,15,0,0,2668,2669,3,342,171,0,2669,2670, + 5,5,0,0,2670,2671,3,342,171,0,2671,2679,1,0,0,0,2672,2673,5,170, + 0,0,2673,2674,5,15,0,0,2674,2675,3,342,171,0,2675,2676,5,5,0,0,2676, + 2677,3,342,171,0,2677,2679,1,0,0,0,2678,2662,1,0,0,0,2678,2664,1, + 0,0,0,2678,2666,1,0,0,0,2678,2672,1,0,0,0,2679,341,1,0,0,0,2680, + 2681,5,201,0,0,2681,2690,5,150,0,0,2682,2683,5,201,0,0,2683,2690, + 5,77,0,0,2684,2685,5,39,0,0,2685,2690,5,169,0,0,2686,2687,3,304, + 152,0,2687,2688,7,28,0,0,2688,2690,1,0,0,0,2689,2680,1,0,0,0,2689, + 2682,1,0,0,0,2689,2684,1,0,0,0,2689,2686,1,0,0,0,2690,343,1,0,0, + 0,2691,2692,3,356,178,0,2692,2693,5,245,0,0,2693,2694,3,356,178, + 0,2694,2697,1,0,0,0,2695,2697,3,356,178,0,2696,2691,1,0,0,0,2696, + 2695,1,0,0,0,2697,345,1,0,0,0,2698,2703,3,344,172,0,2699,2700,5, + 247,0,0,2700,2702,3,344,172,0,2701,2699,1,0,0,0,2702,2705,1,0,0, + 0,2703,2701,1,0,0,0,2703,2704,1,0,0,0,2704,347,1,0,0,0,2705,2703, + 1,0,0,0,2706,2720,5,2,0,0,2707,2720,5,4,0,0,2708,2720,5,58,0,0,2709, + 2720,5,37,0,0,2710,2720,5,99,0,0,2711,2720,5,163,0,0,2712,2717,5, + 175,0,0,2713,2714,5,249,0,0,2714,2715,3,356,178,0,2715,2716,5,250, + 0,0,2716,2718,1,0,0,0,2717,2713,1,0,0,0,2717,2718,1,0,0,0,2718,2720, + 1,0,0,0,2719,2706,1,0,0,0,2719,2707,1,0,0,0,2719,2708,1,0,0,0,2719, + 2709,1,0,0,0,2719,2710,1,0,0,0,2719,2711,1,0,0,0,2719,2712,1,0,0, + 0,2720,349,1,0,0,0,2721,2722,7,29,0,0,2722,351,1,0,0,0,2723,2728, + 3,356,178,0,2724,2725,5,245,0,0,2725,2727,3,356,178,0,2726,2724, + 1,0,0,0,2727,2730,1,0,0,0,2728,2726,1,0,0,0,2728,2729,1,0,0,0,2729, + 353,1,0,0,0,2730,2728,1,0,0,0,2731,2732,5,167,0,0,2732,2738,3,356, + 178,0,2733,2734,5,206,0,0,2734,2738,3,356,178,0,2735,2736,5,87,0, + 0,2736,2738,3,356,178,0,2737,2731,1,0,0,0,2737,2733,1,0,0,0,2737, + 2735,1,0,0,0,2738,355,1,0,0,0,2739,2745,5,264,0,0,2740,2745,5,258, + 0,0,2741,2745,3,362,181,0,2742,2745,5,267,0,0,2743,2745,5,265,0, + 0,2744,2739,1,0,0,0,2744,2740,1,0,0,0,2744,2741,1,0,0,0,2744,2742, + 1,0,0,0,2744,2743,1,0,0,0,2745,357,1,0,0,0,2746,2748,5,240,0,0,2747, + 2746,1,0,0,0,2747,2748,1,0,0,0,2748,2749,1,0,0,0,2749,2759,5,262, + 0,0,2750,2752,5,240,0,0,2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752, + 2753,1,0,0,0,2753,2759,5,263,0,0,2754,2756,5,240,0,0,2755,2754,1, + 0,0,0,2755,2756,1,0,0,0,2756,2757,1,0,0,0,2757,2759,5,261,0,0,2758, + 2747,1,0,0,0,2758,2751,1,0,0,0,2758,2755,1,0,0,0,2759,359,1,0,0, + 0,2760,2761,7,30,0,0,2761,361,1,0,0,0,2762,2763,7,31,0,0,2763,363, + 1,0,0,0,352,367,374,398,411,415,419,428,433,437,443,445,450,454, 458,465,470,476,480,489,496,500,505,507,512,516,523,527,532,536, 540,544,552,557,561,569,573,582,585,588,594,601,612,617,622,627, 632,641,644,647,651,677,703,712,722,725,739,757,759,768,779,788, @@ -14093,21 +14101,21 @@ export class ImpalaSqlParser extends antlr.Parser { 1166,1182,1187,1194,1197,1203,1206,1213,1216,1220,1225,1228,1235, 1238,1262,1276,1280,1284,1304,1306,1308,1317,1319,1328,1330,1339, 1341,1346,1355,1364,1373,1384,1390,1395,1398,1411,1421,1425,1430, - 1441,1446,1479,1487,1492,1498,1503,1507,1512,1517,1522,1526,1535, - 1538,1542,1549,1560,1566,1570,1576,1586,1593,1598,1603,1608,1614, - 1617,1626,1629,1632,1638,1648,1651,1655,1659,1665,1671,1674,1680, - 1686,1689,1692,1696,1706,1717,1722,1725,1729,1736,1746,1758,1764, - 1766,1775,1778,1785,1795,1801,1809,1820,1830,1841,1843,1849,1854, - 1864,1867,1873,1875,1883,1889,1892,1894,1906,1913,1917,1921,1925, - 1928,1935,1944,1947,1951,1956,1960,1963,1970,1981,1984,1988,1992, - 2001,2004,2011,2025,2029,2033,2037,2041,2045,2049,2053,2063,2074, - 2079,2092,2094,2100,2104,2106,2114,2125,2132,2137,2150,2156,2164, - 2171,2175,2183,2185,2196,2204,2213,2219,2224,2230,2236,2241,2246, - 2252,2263,2265,2292,2298,2302,2314,2324,2327,2332,2339,2342,2351, - 2354,2358,2361,2373,2376,2395,2399,2407,2411,2436,2439,2448,2454, - 2460,2466,2477,2486,2508,2511,2514,2524,2526,2533,2535,2557,2588, - 2600,2605,2607,2613,2618,2624,2646,2649,2658,2661,2664,2684,2695, - 2702,2709,2723,2725,2734,2743,2750,2753,2757,2761,2764 + 1441,1446,1479,1487,1492,1496,1500,1505,1509,1514,1519,1524,1528, + 1537,1540,1544,1551,1562,1568,1572,1578,1588,1595,1600,1605,1610, + 1616,1619,1628,1631,1634,1640,1646,1656,1659,1663,1667,1670,1676, + 1679,1685,1691,1694,1697,1701,1711,1722,1727,1730,1734,1741,1751, + 1763,1769,1771,1780,1783,1790,1800,1806,1814,1825,1835,1846,1848, + 1854,1859,1869,1872,1878,1880,1888,1894,1897,1899,1911,1918,1922, + 1926,1930,1933,1940,1949,1952,1956,1961,1965,1968,1975,1986,1989, + 1993,1997,2006,2009,2016,2030,2034,2038,2042,2046,2050,2054,2058, + 2068,2079,2084,2097,2099,2105,2109,2111,2119,2126,2131,2144,2150, + 2158,2165,2169,2177,2179,2190,2198,2207,2213,2218,2224,2230,2235, + 2240,2246,2257,2259,2286,2292,2296,2308,2318,2321,2326,2333,2336, + 2345,2348,2352,2355,2367,2370,2389,2393,2401,2405,2430,2433,2442, + 2448,2454,2460,2471,2480,2502,2505,2508,2518,2520,2527,2529,2551, + 2582,2594,2599,2601,2607,2612,2618,2640,2643,2652,2655,2658,2678, + 2689,2696,2703,2717,2719,2728,2737,2744,2747,2751,2755,2758 ]; private static __ATN: antlr.ATN; @@ -14427,12 +14435,12 @@ export class CreateTableSelectContext extends antlr.ParserRuleContext { public queryStatement(): QueryStatementContext | null { return this.getRuleContext(0, QueryStatementContext); } + public columnAliases(): ColumnAliasesContext | null { + return this.getRuleContext(0, ColumnAliasesContext); + } public partitionedBy(): PartitionedByContext | null { return this.getRuleContext(0, PartitionedByContext); } - public createColumnAliases(): CreateColumnAliasesContext | null { - return this.getRuleContext(0, CreateColumnAliasesContext); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -19035,8 +19043,8 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public qualifiedName(): QualifiedNameContext { - return this.getRuleContext(0, QualifiedNameContext)!; + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_columnNamePath; @@ -19301,8 +19309,14 @@ export class ViewColumnsContext extends antlr.ParserRuleContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.LPAREN, 0)!; } - public columnNamePath(): ColumnNamePathContext { - return this.getRuleContext(0, ColumnNamePathContext)!; + public columnNamePathCreate(): ColumnNamePathCreateContext[]; + public columnNamePathCreate(i: number): ColumnNamePathCreateContext | null; + public columnNamePathCreate(i?: number): ColumnNamePathCreateContext[] | ColumnNamePathCreateContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnNamePathCreateContext); + } + + return this.getRuleContext(i, ColumnNamePathCreateContext); } public RPAREN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.RPAREN, 0)!; @@ -19334,15 +19348,6 @@ export class ViewColumnsContext extends antlr.ParserRuleContext { return this.getToken(ImpalaSqlParser.COMMA, i); } } - public identifier(): IdentifierContext[]; - public identifier(i: number): IdentifierContext | null; - public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { - if (i === undefined) { - return this.getRuleContexts(IdentifierContext); - } - - return this.getRuleContext(i, IdentifierContext); - } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_viewColumns; } @@ -19567,6 +19572,45 @@ export class ForeignKeySpecificationContext extends antlr.ParserRuleContext { } +export class ColumnSpecContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnNamePath(): ColumnNamePathContext { + return this.getRuleContext(0, ColumnNamePathContext)!; + } + public type(): TypeContext { + return this.getRuleContext(0, TypeContext)!; + } + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_COMMENT, 0); + } + public stringLiteral(): StringLiteralContext | null { + return this.getRuleContext(0, StringLiteralContext); + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_columnSpec; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterColumnSpec) { + listener.enterColumnSpec(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitColumnSpec) { + listener.exitColumnSpec(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitColumnSpec) { + return visitor.visitColumnSpec(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -19694,17 +19738,8 @@ export class ColumnSpecWithKuduContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnNamePath(): ColumnNamePathContext { - return this.getRuleContext(0, ColumnNamePathContext)!; - } - public type(): TypeContext { - return this.getRuleContext(0, TypeContext)!; - } - public KW_COMMENT(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_COMMENT, 0); - } - public stringLiteral(): StringLiteralContext | null { - return this.getRuleContext(0, StringLiteralContext); + public columnSpec(): ColumnSpecContext | null { + return this.getRuleContext(0, ColumnSpecContext); } public kuduAttributes(): KuduAttributesContext[]; public kuduAttributes(i: number): KuduAttributesContext | null; @@ -20400,14 +20435,14 @@ export class PartitionedByContext extends antlr.ParserRuleContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.LPAREN, 0)!; } - public columnDefinition(): ColumnDefinitionContext[]; - public columnDefinition(i: number): ColumnDefinitionContext | null; - public columnDefinition(i?: number): ColumnDefinitionContext[] | ColumnDefinitionContext | null { + public columnSpec(): ColumnSpecContext[]; + public columnSpec(i: number): ColumnSpecContext | null; + public columnSpec(i?: number): ColumnSpecContext[] | ColumnSpecContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnDefinitionContext); + return this.getRuleContexts(ColumnSpecContext); } - return this.getRuleContext(i, ColumnDefinitionContext); + return this.getRuleContext(i, ColumnSpecContext); } public RPAREN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.RPAREN, 0)!; @@ -21704,57 +21739,6 @@ export class ColumnAliasesContext extends antlr.ParserRuleContext { } -export class CreateColumnAliasesContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public LPAREN(): antlr.TerminalNode { - return this.getToken(ImpalaSqlParser.LPAREN, 0)!; - } - public columnNamePathCreate(): ColumnNamePathCreateContext[]; - public columnNamePathCreate(i: number): ColumnNamePathCreateContext | null; - public columnNamePathCreate(i?: number): ColumnNamePathCreateContext[] | ColumnNamePathCreateContext | null { - if (i === undefined) { - return this.getRuleContexts(ColumnNamePathCreateContext); - } - - return this.getRuleContext(i, ColumnNamePathCreateContext); - } - public RPAREN(): antlr.TerminalNode { - return this.getToken(ImpalaSqlParser.RPAREN, 0)!; - } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ImpalaSqlParser.COMMA); - } else { - return this.getToken(ImpalaSqlParser.COMMA, i); - } - } - public override get ruleIndex(): number { - return ImpalaSqlParser.RULE_createColumnAliases; - } - public override enterRule(listener: ImpalaSqlParserListener): void { - if(listener.enterCreateColumnAliases) { - listener.enterCreateColumnAliases(this); - } - } - public override exitRule(listener: ImpalaSqlParserListener): void { - if(listener.exitCreateColumnAliases) { - listener.exitCreateColumnAliases(this); - } - } - public override accept(visitor: ImpalaSqlParserVisitor): Result | null { - if (visitor.visitCreateColumnAliases) { - return visitor.visitCreateColumnAliases(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class RelationPrimaryContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/impala/ImpalaSqlParserListener.ts b/src/lib/impala/ImpalaSqlParserListener.ts index 4a4e967..348b4d0 100644 --- a/src/lib/impala/ImpalaSqlParserListener.ts +++ b/src/lib/impala/ImpalaSqlParserListener.ts @@ -3,6 +3,9 @@ import { ErrorNode, ParseTreeListener, ParserRuleContext, TerminalNode } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./ImpalaSqlParser.js"; import { SingleStatementContext } from "./ImpalaSqlParser.js"; import { SqlStatementContext } from "./ImpalaSqlParser.js"; @@ -109,6 +112,7 @@ import { QueryStatementContext } from "./ImpalaSqlParser.js"; import { WithContext } from "./ImpalaSqlParser.js"; import { ConstraintSpecificationContext } from "./ImpalaSqlParser.js"; import { ForeignKeySpecificationContext } from "./ImpalaSqlParser.js"; +import { ColumnSpecContext } from "./ImpalaSqlParser.js"; import { ColumnDefinitionContext } from "./ImpalaSqlParser.js"; import { KuduTableElementContext } from "./ImpalaSqlParser.js"; import { KuduColumnDefinitionContext } from "./ImpalaSqlParser.js"; @@ -155,7 +159,6 @@ import { SampledRelationContext } from "./ImpalaSqlParser.js"; import { SampleTypeContext } from "./ImpalaSqlParser.js"; import { AliasedRelationContext } from "./ImpalaSqlParser.js"; import { ColumnAliasesContext } from "./ImpalaSqlParser.js"; -import { CreateColumnAliasesContext } from "./ImpalaSqlParser.js"; import { RelationPrimaryContext } from "./ImpalaSqlParser.js"; import { SubQueryRelationContext } from "./ImpalaSqlParser.js"; import { UnnestContext } from "./ImpalaSqlParser.js"; @@ -1310,6 +1313,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitForeignKeySpecification?: (ctx: ForeignKeySpecificationContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.columnSpec`. + * @param ctx the parse tree + */ + enterColumnSpec?: (ctx: ColumnSpecContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.columnSpec`. + * @param ctx the parse tree + */ + exitColumnSpec?: (ctx: ColumnSpecContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.columnDefinition`. * @param ctx the parse tree @@ -1792,16 +1805,6 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnAliases?: (ctx: ColumnAliasesContext) => void; - /** - * Enter a parse tree produced by `ImpalaSqlParser.createColumnAliases`. - * @param ctx the parse tree - */ - enterCreateColumnAliases?: (ctx: CreateColumnAliasesContext) => void; - /** - * Exit a parse tree produced by `ImpalaSqlParser.createColumnAliases`. - * @param ctx the parse tree - */ - exitCreateColumnAliases?: (ctx: CreateColumnAliasesContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.relationPrimary`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlParserVisitor.ts b/src/lib/impala/ImpalaSqlParserVisitor.ts index b4d0629..2f989b1 100644 --- a/src/lib/impala/ImpalaSqlParserVisitor.ts +++ b/src/lib/impala/ImpalaSqlParserVisitor.ts @@ -3,6 +3,9 @@ import { AbstractParseTreeVisitor } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./ImpalaSqlParser.js"; import { SingleStatementContext } from "./ImpalaSqlParser.js"; import { SqlStatementContext } from "./ImpalaSqlParser.js"; @@ -109,6 +112,7 @@ import { QueryStatementContext } from "./ImpalaSqlParser.js"; import { WithContext } from "./ImpalaSqlParser.js"; import { ConstraintSpecificationContext } from "./ImpalaSqlParser.js"; import { ForeignKeySpecificationContext } from "./ImpalaSqlParser.js"; +import { ColumnSpecContext } from "./ImpalaSqlParser.js"; import { ColumnDefinitionContext } from "./ImpalaSqlParser.js"; import { KuduTableElementContext } from "./ImpalaSqlParser.js"; import { KuduColumnDefinitionContext } from "./ImpalaSqlParser.js"; @@ -155,7 +159,6 @@ import { SampledRelationContext } from "./ImpalaSqlParser.js"; import { SampleTypeContext } from "./ImpalaSqlParser.js"; import { AliasedRelationContext } from "./ImpalaSqlParser.js"; import { ColumnAliasesContext } from "./ImpalaSqlParser.js"; -import { CreateColumnAliasesContext } from "./ImpalaSqlParser.js"; import { RelationPrimaryContext } from "./ImpalaSqlParser.js"; import { SubQueryRelationContext } from "./ImpalaSqlParser.js"; import { UnnestContext } from "./ImpalaSqlParser.js"; @@ -889,6 +892,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.columnSpec`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnSpec?: (ctx: ColumnSpecContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.columnDefinition`. * @param ctx the parse tree @@ -1176,12 +1185,6 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `ImpalaSqlParser.createColumnAliases`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCreateColumnAliases?: (ctx: CreateColumnAliasesContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.relationPrimary`. * @param ctx the parse tree diff --git a/src/lib/mysql/MySqlParser.interp b/src/lib/mysql/MySqlParser.interp index 5c3b243..c2dbf3c 100644 --- a/src/lib/mysql/MySqlParser.interp +++ b/src/lib/mysql/MySqlParser.interp @@ -2215,4 +2215,4 @@ functionNameBase atn: -[4, 1, 895, 8012, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 1, 0, 5, 0, 836, 8, 0, 10, 0, 12, 0, 839, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 845, 8, 1, 1, 1, 3, 1, 848, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 857, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 900, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 919, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 930, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 946, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 963, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 998, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1008, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1013, 8, 12, 1, 12, 1, 12, 5, 12, 1017, 8, 12, 10, 12, 12, 12, 1020, 9, 12, 1, 13, 1, 13, 3, 13, 1024, 8, 13, 1, 13, 1, 13, 3, 13, 1028, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1037, 8, 13, 1, 13, 3, 13, 1040, 8, 13, 1, 13, 3, 13, 1043, 8, 13, 1, 13, 1, 13, 3, 13, 1047, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1054, 8, 14, 1, 14, 3, 14, 1057, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1062, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1068, 8, 14, 10, 14, 12, 14, 1071, 9, 14, 1, 14, 1, 14, 3, 14, 1075, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1080, 8, 14, 1, 14, 5, 14, 1083, 8, 14, 10, 14, 12, 14, 1086, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1097, 8, 15, 1, 15, 3, 15, 1100, 8, 15, 1, 15, 1, 15, 3, 15, 1104, 8, 15, 1, 15, 3, 15, 1107, 8, 15, 1, 15, 1, 15, 3, 15, 1111, 8, 15, 1, 15, 3, 15, 1114, 8, 15, 1, 15, 1, 15, 3, 15, 1118, 8, 15, 1, 15, 3, 15, 1121, 8, 15, 1, 15, 3, 15, 1124, 8, 15, 1, 15, 1, 15, 3, 15, 1128, 8, 15, 1, 15, 3, 15, 1131, 8, 15, 1, 15, 1, 15, 3, 15, 1135, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1141, 8, 16, 1, 16, 1, 16, 3, 16, 1145, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1150, 8, 16, 1, 16, 1, 16, 5, 16, 1154, 8, 16, 10, 16, 12, 16, 1157, 9, 16, 1, 16, 1, 16, 5, 16, 1161, 8, 16, 10, 16, 12, 16, 1164, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1171, 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 1187, 8, 18, 10, 18, 12, 18, 1190, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1196, 8, 19, 1, 19, 1, 19, 3, 19, 1200, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1206, 8, 19, 1, 19, 5, 19, 1209, 8, 19, 10, 19, 12, 19, 1212, 9, 19, 3, 19, 1214, 8, 19, 1, 19, 3, 19, 1217, 8, 19, 1, 19, 1, 19, 3, 19, 1221, 8, 19, 1, 19, 1, 19, 3, 19, 1225, 8, 19, 1, 19, 1, 19, 3, 19, 1229, 8, 19, 1, 19, 1, 19, 3, 19, 1233, 8, 19, 1, 19, 5, 19, 1236, 8, 19, 10, 19, 12, 19, 1239, 9, 19, 3, 19, 1241, 8, 19, 1, 19, 3, 19, 1244, 8, 19, 1, 19, 3, 19, 1247, 8, 19, 1, 19, 3, 19, 1250, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1256, 8, 19, 1, 19, 1, 19, 3, 19, 1260, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1270, 8, 19, 3, 19, 1272, 8, 19, 1, 20, 1, 20, 3, 20, 1276, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1283, 8, 20, 1, 20, 1, 20, 3, 20, 1287, 8, 20, 1, 20, 3, 20, 1290, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1295, 8, 20, 1, 20, 1, 20, 3, 20, 1299, 8, 20, 1, 20, 3, 20, 1302, 8, 20, 1, 20, 1, 20, 3, 20, 1306, 8, 20, 1, 20, 3, 20, 1309, 8, 20, 1, 21, 1, 21, 3, 21, 1313, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1326, 8, 21, 1, 21, 3, 21, 1329, 8, 21, 1, 21, 1, 21, 3, 21, 1333, 8, 21, 1, 21, 3, 21, 1336, 8, 21, 1, 21, 1, 21, 3, 21, 1340, 8, 21, 1, 21, 3, 21, 1343, 8, 21, 1, 21, 1, 21, 3, 21, 1347, 8, 21, 1, 21, 3, 21, 1350, 8, 21, 1, 21, 1, 21, 3, 21, 1354, 8, 21, 1, 21, 3, 21, 1357, 8, 21, 1, 21, 3, 21, 1360, 8, 21, 1, 21, 1, 21, 3, 21, 1364, 8, 21, 1, 21, 3, 21, 1367, 8, 21, 1, 21, 1, 21, 3, 21, 1371, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1377, 8, 22, 1, 22, 1, 22, 3, 22, 1381, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1393, 8, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 1399, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1408, 8, 24, 10, 24, 12, 24, 1411, 9, 24, 1, 24, 1, 24, 3, 24, 1415, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1423, 8, 24, 1, 25, 1, 25, 3, 25, 1427, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1432, 8, 25, 1, 25, 3, 25, 1435, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1440, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1448, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1453, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1459, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1464, 8, 25, 1, 25, 1, 25, 3, 25, 1468, 8, 25, 3, 25, 1470, 8, 25, 1, 26, 3, 26, 1473, 8, 26, 1, 26, 1, 26, 3, 26, 1477, 8, 26, 1, 26, 1, 26, 3, 26, 1481, 8, 26, 1, 26, 3, 26, 1484, 8, 26, 1, 26, 1, 26, 3, 26, 1488, 8, 26, 1, 26, 1, 26, 3, 26, 1492, 8, 26, 1, 26, 1, 26, 3, 26, 1496, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1502, 8, 26, 1, 26, 3, 26, 1505, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1512, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 1517, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1523, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 1528, 8, 30, 10, 30, 12, 30, 1531, 9, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1536, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1542, 8, 30, 10, 30, 12, 30, 1545, 9, 30, 3, 30, 1547, 8, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1552, 8, 30, 10, 30, 12, 30, 1555, 9, 30, 3, 30, 1557, 8, 30, 3, 30, 1559, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1565, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1571, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1588, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1595, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 1602, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1614, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1619, 8, 36, 1, 36, 3, 36, 1622, 8, 36, 1, 37, 3, 37, 1625, 8, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1635, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1648, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1653, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1669, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 1675, 8, 40, 10, 40, 12, 40, 1678, 9, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1687, 8, 41, 1, 41, 3, 41, 1690, 8, 41, 1, 41, 1, 41, 5, 41, 1694, 8, 41, 10, 41, 12, 41, 1697, 9, 41, 1, 41, 1, 41, 3, 41, 1701, 8, 41, 1, 41, 3, 41, 1704, 8, 41, 1, 41, 1, 41, 5, 41, 1708, 8, 41, 10, 41, 12, 41, 1711, 9, 41, 1, 41, 3, 41, 1714, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1719, 8, 41, 1, 41, 1, 41, 5, 41, 1723, 8, 41, 10, 41, 12, 41, 1726, 9, 41, 1, 41, 3, 41, 1729, 8, 41, 1, 41, 1, 41, 3, 41, 1733, 8, 41, 1, 41, 3, 41, 1736, 8, 41, 1, 41, 3, 41, 1739, 8, 41, 1, 41, 1, 41, 5, 41, 1743, 8, 41, 10, 41, 12, 41, 1746, 9, 41, 1, 41, 3, 41, 1749, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1754, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1765, 8, 41, 1, 42, 3, 42, 1768, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1775, 8, 42, 1, 42, 3, 42, 1778, 8, 42, 1, 43, 1, 43, 3, 43, 1782, 8, 43, 1, 44, 1, 44, 5, 44, 1786, 8, 44, 10, 44, 12, 44, 1789, 9, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1800, 8, 45, 1, 45, 3, 45, 1803, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1808, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1821, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1828, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1834, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1839, 8, 46, 1, 46, 1, 46, 3, 46, 1843, 8, 46, 1, 46, 3, 46, 1846, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1854, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1862, 8, 47, 3, 47, 1864, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1874, 8, 48, 1, 49, 1, 49, 3, 49, 1878, 8, 49, 1, 49, 3, 49, 1881, 8, 49, 1, 49, 1, 49, 3, 49, 1885, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1890, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1895, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1900, 8, 49, 1, 49, 1, 49, 3, 49, 1904, 8, 49, 1, 49, 1, 49, 3, 49, 1908, 8, 49, 1, 49, 1, 49, 3, 49, 1912, 8, 49, 1, 49, 1, 49, 3, 49, 1916, 8, 49, 1, 49, 1, 49, 3, 49, 1920, 8, 49, 1, 49, 1, 49, 3, 49, 1924, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1929, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1934, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1939, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1945, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1950, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1955, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1960, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1965, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1970, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1976, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1981, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1986, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1991, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1996, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2001, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2006, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2011, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2018, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2023, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2028, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2033, 8, 49, 1, 49, 1, 49, 3, 49, 2037, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2042, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2050, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2055, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2061, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2073, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2080, 8, 52, 3, 52, 2082, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 2088, 8, 52, 10, 52, 12, 52, 2091, 9, 52, 1, 52, 1, 52, 3, 52, 2095, 8, 52, 1, 53, 3, 53, 2098, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2106, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2112, 8, 53, 1, 53, 1, 53, 3, 53, 2116, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2129, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2141, 8, 53, 3, 53, 2143, 8, 53, 1, 54, 3, 54, 2146, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2154, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2160, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2166, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2177, 8, 55, 10, 55, 12, 55, 2180, 9, 55, 1, 55, 1, 55, 5, 55, 2184, 8, 55, 10, 55, 12, 55, 2187, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2193, 8, 55, 10, 55, 12, 55, 2196, 9, 55, 1, 55, 1, 55, 3, 55, 2200, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2209, 8, 55, 10, 55, 12, 55, 2212, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2218, 8, 55, 10, 55, 12, 55, 2221, 9, 55, 1, 55, 1, 55, 3, 55, 2225, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2235, 8, 55, 10, 55, 12, 55, 2238, 9, 55, 1, 55, 1, 55, 5, 55, 2242, 8, 55, 10, 55, 12, 55, 2245, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2251, 8, 55, 10, 55, 12, 55, 2254, 9, 55, 1, 55, 1, 55, 3, 55, 2258, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2268, 8, 55, 10, 55, 12, 55, 2271, 9, 55, 1, 55, 1, 55, 5, 55, 2275, 8, 55, 10, 55, 12, 55, 2278, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2284, 8, 55, 10, 55, 12, 55, 2287, 9, 55, 1, 55, 1, 55, 3, 55, 2291, 8, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2296, 8, 55, 10, 55, 12, 55, 2299, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2305, 8, 55, 10, 55, 12, 55, 2308, 9, 55, 1, 55, 1, 55, 3, 55, 2312, 8, 55, 3, 55, 2314, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 2319, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 4, 57, 2325, 8, 57, 11, 57, 12, 57, 2326, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 5, 58, 2334, 8, 58, 10, 58, 12, 58, 2337, 9, 58, 1, 59, 3, 59, 2340, 8, 59, 1, 59, 3, 59, 2343, 8, 59, 1, 59, 1, 59, 3, 59, 2347, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2352, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2358, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2364, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2369, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2374, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2379, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2384, 8, 59, 1, 59, 3, 59, 2387, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 2392, 8, 60, 1, 60, 4, 60, 2395, 8, 60, 11, 60, 12, 60, 2396, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2407, 8, 60, 1, 61, 1, 61, 3, 61, 2411, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2418, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2423, 8, 61, 1, 61, 3, 61, 2426, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2431, 8, 61, 1, 61, 3, 61, 2434, 8, 61, 1, 61, 1, 61, 3, 61, 2438, 8, 61, 1, 61, 1, 61, 3, 61, 2442, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2448, 8, 62, 10, 62, 12, 62, 2451, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2469, 8, 64, 1, 64, 3, 64, 2472, 8, 64, 1, 64, 3, 64, 2475, 8, 64, 1, 64, 1, 64, 3, 64, 2479, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2487, 8, 65, 10, 65, 12, 65, 2490, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2500, 8, 66, 10, 66, 12, 66, 2503, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2513, 8, 67, 10, 67, 12, 67, 2516, 9, 67, 3, 67, 2518, 8, 67, 1, 67, 1, 67, 5, 67, 2522, 8, 67, 10, 67, 12, 67, 2525, 9, 67, 3, 67, 2527, 8, 67, 1, 68, 1, 68, 3, 68, 2531, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2540, 8, 68, 1, 68, 3, 68, 2543, 8, 68, 1, 68, 3, 68, 2546, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2551, 8, 68, 1, 68, 1, 68, 3, 68, 2555, 8, 68, 1, 68, 3, 68, 2558, 8, 68, 1, 68, 1, 68, 3, 68, 2562, 8, 68, 1, 68, 1, 68, 3, 68, 2566, 8, 68, 1, 68, 3, 68, 2569, 8, 68, 1, 68, 1, 68, 3, 68, 2573, 8, 68, 1, 68, 3, 68, 2576, 8, 68, 1, 68, 1, 68, 3, 68, 2580, 8, 68, 1, 68, 3, 68, 2583, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2589, 8, 69, 1, 69, 3, 69, 2592, 8, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2597, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2605, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2611, 8, 69, 1, 69, 1, 69, 3, 69, 2615, 8, 69, 1, 70, 1, 70, 3, 70, 2619, 8, 70, 1, 70, 5, 70, 2622, 8, 70, 10, 70, 12, 70, 2625, 9, 70, 1, 70, 1, 70, 3, 70, 2629, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2636, 8, 70, 1, 70, 1, 70, 3, 70, 2640, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2649, 8, 70, 10, 70, 12, 70, 2652, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2659, 8, 70, 1, 70, 3, 70, 2662, 8, 70, 1, 70, 1, 70, 5, 70, 2666, 8, 70, 10, 70, 12, 70, 2669, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2674, 8, 70, 1, 70, 3, 70, 2677, 8, 70, 1, 70, 1, 70, 5, 70, 2681, 8, 70, 10, 70, 12, 70, 2684, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2689, 8, 70, 3, 70, 2691, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2696, 8, 70, 1, 70, 1, 70, 5, 70, 2700, 8, 70, 10, 70, 12, 70, 2703, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2708, 8, 70, 3, 70, 2710, 8, 70, 1, 70, 1, 70, 3, 70, 2714, 8, 70, 1, 70, 3, 70, 2717, 8, 70, 1, 70, 3, 70, 2720, 8, 70, 1, 70, 1, 70, 5, 70, 2724, 8, 70, 10, 70, 12, 70, 2727, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2732, 8, 70, 3, 70, 2734, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2739, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2746, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2755, 8, 70, 1, 70, 3, 70, 2758, 8, 70, 1, 70, 1, 70, 3, 70, 2762, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2767, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2777, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2786, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2794, 8, 70, 1, 70, 3, 70, 2797, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2805, 8, 70, 1, 70, 3, 70, 2808, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2815, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2820, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2828, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2844, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2849, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2856, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2875, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2881, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2889, 8, 71, 10, 71, 12, 71, 2892, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2903, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2910, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2917, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2930, 8, 71, 10, 71, 12, 71, 2933, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2945, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2951, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2957, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2963, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2969, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2975, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2981, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 2986, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 3, 73, 2993, 8, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 3, 74, 3000, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3007, 8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3012, 8, 74, 1, 74, 5, 74, 3015, 8, 74, 10, 74, 12, 74, 3018, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 3026, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3033, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3040, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 3, 78, 3047, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 3056, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 3062, 8, 80, 1, 80, 1, 80, 3, 80, 3066, 8, 80, 1, 80, 1, 80, 3, 80, 3070, 8, 80, 1, 81, 1, 81, 3, 81, 3074, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 3080, 8, 81, 1, 81, 3, 81, 3083, 8, 81, 1, 82, 1, 82, 1, 82, 3, 82, 3088, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 3, 83, 3095, 8, 83, 1, 83, 1, 83, 1, 83, 5, 83, 3100, 8, 83, 10, 83, 12, 83, 3103, 9, 83, 1, 83, 3, 83, 3106, 8, 83, 1, 84, 1, 84, 1, 84, 3, 84, 3111, 8, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 3121, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 3127, 8, 85, 10, 85, 12, 85, 3130, 9, 85, 1, 85, 1, 85, 1, 85, 3, 85, 3135, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3142, 8, 86, 10, 86, 12, 86, 3145, 9, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 3, 88, 3153, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 3162, 8, 89, 1, 89, 3, 89, 3165, 8, 89, 1, 90, 1, 90, 3, 90, 3169, 8, 90, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3178, 8, 92, 1, 93, 1, 93, 3, 93, 3182, 8, 93, 1, 93, 3, 93, 3185, 8, 93, 1, 93, 3, 93, 3188, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 3194, 8, 93, 1, 93, 3, 93, 3197, 8, 93, 1, 93, 3, 93, 3200, 8, 93, 1, 93, 1, 93, 3, 93, 3204, 8, 93, 1, 93, 3, 93, 3207, 8, 93, 1, 93, 3, 93, 3210, 8, 93, 1, 93, 3, 93, 3213, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 3222, 8, 93, 10, 93, 12, 93, 3225, 9, 93, 3, 93, 3227, 8, 93, 1, 94, 1, 94, 1, 94, 3, 94, 3232, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3238, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 3243, 8, 96, 1, 96, 4, 96, 3246, 8, 96, 11, 96, 12, 96, 3247, 1, 97, 3, 97, 3251, 8, 97, 1, 97, 1, 97, 3, 97, 3255, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 3260, 8, 98, 1, 98, 3, 98, 3263, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3268, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3278, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3283, 8, 98, 1, 98, 1, 98, 4, 98, 3287, 8, 98, 11, 98, 12, 98, 3288, 3, 98, 3291, 8, 98, 1, 98, 1, 98, 4, 98, 3295, 8, 98, 11, 98, 12, 98, 3296, 3, 98, 3299, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3305, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3311, 8, 98, 10, 98, 12, 98, 3314, 9, 98, 1, 98, 1, 98, 3, 98, 3318, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3324, 8, 98, 10, 98, 12, 98, 3327, 9, 98, 3, 98, 3329, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3334, 8, 99, 1, 99, 3, 99, 3337, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3342, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3350, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3356, 8, 99, 1, 99, 1, 99, 3, 99, 3360, 8, 99, 3, 99, 3362, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3368, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3374, 8, 99, 10, 99, 12, 99, 3377, 9, 99, 1, 99, 1, 99, 3, 99, 3381, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3387, 8, 99, 10, 99, 12, 99, 3390, 9, 99, 3, 99, 3392, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 3397, 8, 100, 1, 100, 3, 100, 3400, 8, 100, 1, 100, 1, 100, 3, 100, 3404, 8, 100, 1, 100, 3, 100, 3407, 8, 100, 1, 100, 3, 100, 3410, 8, 100, 1, 101, 1, 101, 3, 101, 3414, 8, 101, 1, 101, 3, 101, 3417, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3425, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3431, 8, 101, 1, 101, 1, 101, 3, 101, 3435, 8, 101, 1, 102, 1, 102, 5, 102, 3439, 8, 102, 10, 102, 12, 102, 3442, 9, 102, 1, 102, 1, 102, 3, 102, 3446, 8, 102, 1, 102, 1, 102, 3, 102, 3450, 8, 102, 3, 102, 3452, 8, 102, 1, 102, 1, 102, 5, 102, 3456, 8, 102, 10, 102, 12, 102, 3459, 9, 102, 1, 102, 3, 102, 3462, 8, 102, 1, 102, 3, 102, 3465, 8, 102, 1, 102, 3, 102, 3468, 8, 102, 1, 102, 3, 102, 3471, 8, 102, 1, 102, 1, 102, 5, 102, 3475, 8, 102, 10, 102, 12, 102, 3478, 9, 102, 1, 102, 1, 102, 3, 102, 3482, 8, 102, 1, 102, 3, 102, 3485, 8, 102, 1, 102, 3, 102, 3488, 8, 102, 1, 102, 3, 102, 3491, 8, 102, 1, 102, 3, 102, 3494, 8, 102, 3, 102, 3496, 8, 102, 1, 103, 3, 103, 3499, 8, 103, 1, 103, 1, 103, 3, 103, 3503, 8, 103, 1, 103, 3, 103, 3506, 8, 103, 1, 103, 3, 103, 3509, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3517, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3523, 8, 104, 1, 104, 5, 104, 3526, 8, 104, 10, 104, 12, 104, 3529, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3537, 8, 105, 1, 105, 5, 105, 3540, 8, 105, 10, 105, 12, 105, 3543, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3549, 8, 106, 1, 106, 3, 106, 3552, 8, 106, 1, 106, 3, 106, 3555, 8, 106, 1, 106, 1, 106, 3, 106, 3559, 8, 106, 1, 107, 1, 107, 3, 107, 3563, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3569, 8, 108, 1, 108, 1, 108, 3, 108, 3573, 8, 108, 1, 109, 1, 109, 1, 109, 5, 109, 3578, 8, 109, 10, 109, 12, 109, 3581, 9, 109, 1, 109, 3, 109, 3584, 8, 109, 1, 109, 3, 109, 3587, 8, 109, 1, 109, 3, 109, 3590, 8, 109, 1, 110, 1, 110, 1, 110, 3, 110, 3595, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3602, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3610, 8, 112, 10, 112, 12, 112, 3613, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3619, 8, 113, 10, 113, 12, 113, 3622, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 3, 115, 3630, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3638, 8, 116, 10, 116, 12, 116, 3641, 9, 116, 3, 116, 3643, 8, 116, 1, 116, 1, 116, 3, 116, 3647, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3653, 8, 116, 1, 117, 1, 117, 3, 117, 3657, 8, 117, 1, 117, 3, 117, 3660, 8, 117, 1, 117, 3, 117, 3663, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3668, 8, 117, 1, 117, 3, 117, 3671, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3678, 8, 117, 1, 117, 1, 117, 3, 117, 3682, 8, 117, 1, 117, 3, 117, 3685, 8, 117, 1, 117, 1, 117, 3, 117, 3689, 8, 117, 1, 118, 1, 118, 3, 118, 3693, 8, 118, 1, 118, 3, 118, 3696, 8, 118, 1, 118, 3, 118, 3699, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3704, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3710, 8, 118, 5, 118, 3712, 8, 118, 10, 118, 12, 118, 3715, 9, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3724, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3730, 8, 118, 5, 118, 3732, 8, 118, 10, 118, 12, 118, 3735, 9, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3740, 8, 118, 1, 118, 1, 118, 3, 118, 3744, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3750, 8, 119, 1, 119, 3, 119, 3753, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3765, 8, 120, 1, 120, 1, 120, 3, 120, 3769, 8, 120, 1, 120, 1, 120, 3, 120, 3773, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3781, 8, 121, 1, 121, 1, 121, 3, 121, 3785, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 3797, 8, 123, 10, 123, 12, 123, 3800, 9, 123, 1, 124, 1, 124, 3, 124, 3804, 8, 124, 1, 124, 3, 124, 3807, 8, 124, 1, 124, 1, 124, 3, 124, 3811, 8, 124, 1, 124, 3, 124, 3814, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3820, 8, 124, 10, 124, 12, 124, 3823, 9, 124, 1, 124, 1, 124, 3, 124, 3827, 8, 124, 1, 124, 3, 124, 3830, 8, 124, 1, 124, 3, 124, 3833, 8, 124, 1, 125, 1, 125, 3, 125, 3837, 8, 125, 1, 125, 3, 125, 3840, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 3847, 8, 125, 10, 125, 12, 125, 3850, 9, 125, 1, 125, 1, 125, 3, 125, 3854, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3861, 8, 126, 10, 126, 12, 126, 3864, 9, 126, 1, 127, 1, 127, 3, 127, 3868, 8, 127, 1, 128, 1, 128, 1, 128, 5, 128, 3873, 8, 128, 10, 128, 12, 128, 3876, 9, 128, 1, 129, 1, 129, 5, 129, 3880, 8, 129, 10, 129, 12, 129, 3883, 9, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3888, 8, 129, 10, 129, 12, 129, 3891, 9, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3896, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3904, 8, 130, 1, 130, 3, 130, 3907, 8, 130, 1, 130, 3, 130, 3910, 8, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3915, 8, 130, 10, 130, 12, 130, 3918, 9, 130, 3, 130, 3920, 8, 130, 1, 130, 3, 130, 3923, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3930, 8, 130, 1, 130, 3, 130, 3933, 8, 130, 1, 130, 1, 130, 3, 130, 3937, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3943, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3953, 8, 132, 1, 132, 1, 132, 3, 132, 3957, 8, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3966, 8, 133, 1, 134, 3, 134, 3969, 8, 134, 1, 134, 1, 134, 3, 134, 3973, 8, 134, 1, 134, 1, 134, 5, 134, 3977, 8, 134, 10, 134, 12, 134, 3980, 9, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3985, 8, 134, 10, 134, 12, 134, 3988, 9, 134, 1, 134, 1, 134, 3, 134, 3992, 8, 134, 1, 134, 1, 134, 3, 134, 3996, 8, 134, 1, 134, 1, 134, 5, 134, 4000, 8, 134, 10, 134, 12, 134, 4003, 9, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4008, 8, 134, 1, 134, 3, 134, 4011, 8, 134, 3, 134, 4013, 8, 134, 1, 134, 1, 134, 3, 134, 4017, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 4026, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4036, 8, 136, 1, 137, 1, 137, 5, 137, 4040, 8, 137, 10, 137, 12, 137, 4043, 9, 137, 1, 137, 1, 137, 3, 137, 4047, 8, 137, 1, 137, 1, 137, 3, 137, 4051, 8, 137, 1, 137, 3, 137, 4054, 8, 137, 1, 137, 3, 137, 4057, 8, 137, 1, 137, 3, 137, 4060, 8, 137, 1, 137, 3, 137, 4063, 8, 137, 1, 137, 3, 137, 4066, 8, 137, 1, 138, 1, 138, 3, 138, 4070, 8, 138, 1, 138, 1, 138, 3, 138, 4074, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4082, 8, 139, 1, 139, 1, 139, 3, 139, 4086, 8, 139, 1, 139, 3, 139, 4089, 8, 139, 3, 139, 4091, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4104, 8, 140, 1, 140, 3, 140, 4107, 8, 140, 1, 141, 1, 141, 1, 141, 5, 141, 4112, 8, 141, 10, 141, 12, 141, 4115, 9, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4124, 8, 142, 1, 142, 3, 142, 4127, 8, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4132, 8, 142, 3, 142, 4134, 8, 142, 1, 142, 1, 142, 3, 142, 4138, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4146, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4152, 8, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 4161, 8, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4174, 8, 145, 1, 146, 1, 146, 3, 146, 4178, 8, 146, 1, 146, 1, 146, 5, 146, 4182, 8, 146, 10, 146, 12, 146, 4185, 9, 146, 1, 147, 1, 147, 3, 147, 4189, 8, 147, 1, 147, 1, 147, 3, 147, 4193, 8, 147, 1, 147, 3, 147, 4196, 8, 147, 1, 147, 1, 147, 3, 147, 4200, 8, 147, 1, 147, 3, 147, 4203, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4211, 8, 147, 1, 147, 3, 147, 4214, 8, 147, 3, 147, 4216, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 4222, 8, 148, 10, 148, 12, 148, 4225, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4236, 8, 148, 1, 148, 1, 148, 4, 148, 4240, 8, 148, 11, 148, 12, 148, 4241, 3, 148, 4244, 8, 148, 1, 148, 1, 148, 4, 148, 4248, 8, 148, 11, 148, 12, 148, 4249, 3, 148, 4252, 8, 148, 3, 148, 4254, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4260, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4268, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 4276, 8, 150, 1, 151, 1, 151, 3, 151, 4280, 8, 151, 1, 151, 1, 151, 3, 151, 4284, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 4291, 8, 152, 10, 152, 12, 152, 4294, 9, 152, 1, 152, 1, 152, 3, 152, 4298, 8, 152, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 4316, 8, 154, 10, 154, 12, 154, 4319, 9, 154, 1, 155, 1, 155, 3, 155, 4323, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4329, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4336, 8, 156, 1, 157, 1, 157, 1, 157, 3, 157, 4341, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 4348, 8, 158, 10, 158, 12, 158, 4351, 9, 158, 3, 158, 4353, 8, 158, 1, 159, 1, 159, 3, 159, 4357, 8, 159, 1, 160, 1, 160, 3, 160, 4361, 8, 160, 1, 160, 1, 160, 3, 160, 4365, 8, 160, 1, 160, 3, 160, 4368, 8, 160, 1, 160, 3, 160, 4371, 8, 160, 1, 160, 3, 160, 4374, 8, 160, 1, 161, 1, 161, 3, 161, 4378, 8, 161, 1, 161, 1, 161, 3, 161, 4382, 8, 161, 1, 161, 3, 161, 4385, 8, 161, 1, 161, 3, 161, 4388, 8, 161, 1, 161, 3, 161, 4391, 8, 161, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 3, 163, 4398, 8, 163, 1, 163, 1, 163, 3, 163, 4402, 8, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 4415, 8, 165, 10, 165, 12, 165, 4418, 9, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 3, 168, 4430, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 4436, 8, 168, 10, 168, 12, 168, 4439, 9, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4448, 8, 169, 1, 170, 1, 170, 3, 170, 4452, 8, 170, 1, 170, 3, 170, 4455, 8, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4461, 8, 171, 1, 171, 3, 171, 4464, 8, 171, 1, 171, 3, 171, 4467, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4476, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 4485, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 5, 174, 4493, 8, 174, 10, 174, 12, 174, 4496, 9, 174, 1, 174, 3, 174, 4499, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 5, 175, 4507, 8, 175, 10, 175, 12, 175, 4510, 9, 175, 1, 175, 3, 175, 4513, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4522, 8, 176, 10, 176, 12, 176, 4525, 9, 176, 1, 176, 3, 176, 4528, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4537, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 4544, 8, 178, 10, 178, 12, 178, 4547, 9, 178, 3, 178, 4549, 8, 178, 1, 178, 1, 178, 3, 178, 4553, 8, 178, 1, 178, 5, 178, 4556, 8, 178, 10, 178, 12, 178, 4559, 9, 178, 1, 178, 3, 178, 4562, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4569, 8, 179, 10, 179, 12, 179, 4572, 9, 179, 3, 179, 4574, 8, 179, 1, 179, 3, 179, 4577, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4584, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4590, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4596, 8, 180, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4620, 8, 182, 10, 182, 12, 182, 4623, 9, 182, 3, 182, 4625, 8, 182, 1, 182, 3, 182, 4628, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4647, 8, 186, 3, 186, 4649, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 4670, 8, 187, 10, 187, 12, 187, 4673, 9, 187, 3, 187, 4675, 8, 187, 1, 187, 3, 187, 4678, 8, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4697, 8, 191, 3, 191, 4699, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 4711, 8, 193, 10, 193, 12, 193, 4714, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 4724, 8, 193, 10, 193, 12, 193, 4727, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 4761, 8, 193, 10, 193, 12, 193, 4764, 9, 193, 1, 193, 1, 193, 3, 193, 4768, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4803, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4817, 8, 197, 1, 198, 1, 198, 1, 198, 5, 198, 4822, 8, 198, 10, 198, 12, 198, 4825, 9, 198, 1, 198, 3, 198, 4828, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4834, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4842, 8, 200, 3, 200, 4844, 8, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 4855, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4865, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4872, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4878, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 3, 208, 4886, 8, 208, 1, 209, 1, 209, 1, 209, 3, 209, 4891, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4897, 8, 209, 10, 209, 12, 209, 4900, 9, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4905, 8, 209, 10, 209, 12, 209, 4908, 9, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4913, 8, 209, 10, 209, 12, 209, 4916, 9, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4921, 8, 209, 10, 209, 12, 209, 4924, 9, 209, 1, 209, 5, 209, 4927, 8, 209, 10, 209, 12, 209, 4930, 9, 209, 1, 209, 1, 209, 3, 209, 4934, 8, 209, 1, 210, 1, 210, 1, 210, 3, 210, 4939, 8, 210, 1, 210, 4, 210, 4942, 8, 210, 11, 210, 12, 210, 4943, 1, 210, 1, 210, 4, 210, 4948, 8, 210, 11, 210, 12, 210, 4949, 3, 210, 4952, 8, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 4, 211, 4961, 8, 211, 11, 211, 12, 211, 4962, 1, 211, 5, 211, 4966, 8, 211, 10, 211, 12, 211, 4969, 9, 211, 1, 211, 1, 211, 4, 211, 4973, 8, 211, 11, 211, 12, 211, 4974, 3, 211, 4977, 8, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 3, 214, 4991, 8, 214, 1, 214, 1, 214, 4, 214, 4995, 8, 214, 11, 214, 12, 214, 4996, 1, 214, 1, 214, 1, 214, 3, 214, 5002, 8, 214, 1, 215, 1, 215, 1, 215, 3, 215, 5007, 8, 215, 1, 215, 1, 215, 4, 215, 5011, 8, 215, 11, 215, 12, 215, 5012, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5020, 8, 215, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 3, 217, 5028, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 4, 217, 5034, 8, 217, 11, 217, 12, 217, 5035, 1, 217, 1, 217, 1, 217, 3, 217, 5041, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5047, 8, 218, 1, 218, 3, 218, 5050, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5058, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5065, 8, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5074, 8, 220, 1, 220, 3, 220, 5077, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5092, 8, 222, 10, 222, 12, 222, 5095, 9, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 3, 223, 5102, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5110, 8, 223, 1, 224, 1, 224, 3, 224, 5114, 8, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 3, 225, 5121, 8, 225, 1, 225, 1, 225, 4, 225, 5125, 8, 225, 11, 225, 12, 225, 5126, 1, 226, 1, 226, 1, 226, 1, 226, 4, 226, 5133, 8, 226, 11, 226, 12, 226, 5134, 1, 227, 1, 227, 1, 227, 3, 227, 5140, 8, 227, 1, 227, 1, 227, 1, 227, 5, 227, 5145, 8, 227, 10, 227, 12, 227, 5148, 9, 227, 1, 227, 1, 227, 1, 227, 5, 227, 5153, 8, 227, 10, 227, 12, 227, 5156, 9, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5162, 8, 227, 1, 227, 5, 227, 5165, 8, 227, 10, 227, 12, 227, 5168, 9, 227, 3, 227, 5170, 8, 227, 3, 227, 5172, 8, 227, 1, 227, 1, 227, 4, 227, 5176, 8, 227, 11, 227, 12, 227, 5177, 3, 227, 5180, 8, 227, 1, 227, 1, 227, 5, 227, 5184, 8, 227, 10, 227, 12, 227, 5187, 9, 227, 1, 227, 1, 227, 3, 227, 5191, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5198, 8, 227, 1, 228, 1, 228, 1, 228, 3, 228, 5203, 8, 228, 1, 228, 1, 228, 3, 228, 5207, 8, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5212, 8, 228, 5, 228, 5214, 8, 228, 10, 228, 12, 228, 5217, 9, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5222, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5228, 8, 228, 1, 228, 5, 228, 5231, 8, 228, 10, 228, 12, 228, 5234, 9, 228, 3, 228, 5236, 8, 228, 3, 228, 5238, 8, 228, 1, 228, 1, 228, 4, 228, 5242, 8, 228, 11, 228, 12, 228, 5243, 3, 228, 5246, 8, 228, 1, 228, 1, 228, 5, 228, 5250, 8, 228, 10, 228, 12, 228, 5253, 9, 228, 1, 228, 1, 228, 3, 228, 5257, 8, 228, 1, 229, 1, 229, 1, 229, 3, 229, 5262, 8, 229, 1, 229, 1, 229, 1, 229, 5, 229, 5267, 8, 229, 10, 229, 12, 229, 5270, 9, 229, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5276, 8, 230, 10, 230, 12, 230, 5279, 9, 230, 1, 230, 1, 230, 3, 230, 5283, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5290, 8, 230, 10, 230, 12, 230, 5293, 9, 230, 1, 230, 3, 230, 5296, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5302, 8, 230, 1, 230, 5, 230, 5305, 8, 230, 10, 230, 12, 230, 5308, 9, 230, 3, 230, 5310, 8, 230, 3, 230, 5312, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5318, 8, 230, 10, 230, 12, 230, 5321, 9, 230, 3, 230, 5323, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5330, 8, 230, 3, 230, 5332, 8, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5337, 8, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5342, 8, 230, 10, 230, 12, 230, 5345, 9, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5351, 8, 230, 10, 230, 12, 230, 5354, 9, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5359, 8, 230, 3, 230, 5361, 8, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5368, 8, 231, 1, 231, 3, 231, 5371, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 5381, 8, 232, 10, 232, 12, 232, 5384, 9, 232, 1, 232, 1, 232, 1, 232, 3, 232, 5389, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5397, 8, 233, 1, 233, 3, 233, 5400, 8, 233, 1, 233, 1, 233, 3, 233, 5404, 8, 233, 1, 233, 3, 233, 5407, 8, 233, 1, 233, 1, 233, 3, 233, 5411, 8, 233, 3, 233, 5413, 8, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5424, 8, 234, 1, 234, 3, 234, 5427, 8, 234, 1, 234, 1, 234, 3, 234, 5431, 8, 234, 1, 234, 3, 234, 5434, 8, 234, 1, 234, 3, 234, 5437, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5444, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 5, 236, 5454, 8, 236, 10, 236, 12, 236, 5457, 9, 236, 3, 236, 5459, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5466, 8, 237, 1, 237, 1, 237, 5, 237, 5470, 8, 237, 10, 237, 12, 237, 5473, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5480, 8, 238, 10, 238, 12, 238, 5483, 9, 238, 1, 239, 1, 239, 3, 239, 5487, 8, 239, 1, 239, 1, 239, 1, 239, 5, 239, 5492, 8, 239, 10, 239, 12, 239, 5495, 9, 239, 1, 239, 1, 239, 3, 239, 5499, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5505, 8, 239, 1, 239, 1, 239, 3, 239, 5509, 8, 239, 1, 239, 1, 239, 3, 239, 5513, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5521, 8, 239, 1, 239, 1, 239, 3, 239, 5525, 8, 239, 1, 239, 1, 239, 3, 239, 5529, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5535, 8, 239, 3, 239, 5537, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5549, 8, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5554, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5560, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5566, 8, 242, 1, 242, 1, 242, 3, 242, 5570, 8, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5575, 8, 242, 3, 242, 5577, 8, 242, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5601, 8, 244, 4, 244, 5603, 8, 244, 11, 244, 12, 244, 5604, 1, 244, 3, 244, 5608, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5617, 8, 245, 1, 245, 1, 245, 3, 245, 5621, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5630, 8, 245, 1, 245, 1, 245, 3, 245, 5634, 8, 245, 1, 245, 1, 245, 3, 245, 5638, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5644, 8, 245, 3, 245, 5646, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5655, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5665, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5692, 8, 247, 1, 248, 1, 248, 3, 248, 5696, 8, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5701, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5708, 8, 249, 1, 249, 3, 249, 5711, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5717, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5727, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 5737, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5747, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5753, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5762, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5768, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5775, 8, 252, 3, 252, 5777, 8, 252, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 3, 254, 5785, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5791, 8, 254, 1, 254, 1, 254, 3, 254, 5795, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5812, 8, 255, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5822, 8, 257, 1, 258, 1, 258, 3, 258, 5826, 8, 258, 1, 258, 1, 258, 3, 258, 5830, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5840, 8, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5845, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5917, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 5935, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 3, 261, 5943, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5949, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5961, 8, 261, 1, 261, 1, 261, 3, 261, 5965, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5976, 8, 261, 1, 261, 1, 261, 3, 261, 5980, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5989, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 5995, 8, 262, 10, 262, 12, 262, 5998, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 6004, 8, 263, 1, 264, 1, 264, 3, 264, 6008, 8, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 6015, 8, 265, 1, 265, 1, 265, 1, 265, 3, 265, 6020, 8, 265, 1, 265, 3, 265, 6023, 8, 265, 1, 265, 3, 265, 6026, 8, 265, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6037, 8, 267, 1, 268, 1, 268, 3, 268, 6041, 8, 268, 1, 268, 1, 268, 3, 268, 6045, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 6058, 8, 269, 10, 269, 12, 269, 6061, 9, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 6067, 8, 269, 10, 269, 12, 269, 6070, 9, 269, 3, 269, 6072, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6084, 8, 271, 10, 271, 12, 271, 6087, 9, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 6104, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 6117, 8, 274, 1, 274, 3, 274, 6120, 8, 274, 1, 274, 1, 274, 3, 274, 6124, 8, 274, 1, 274, 3, 274, 6127, 8, 274, 3, 274, 6129, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6136, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6143, 8, 275, 5, 275, 6145, 8, 275, 10, 275, 12, 275, 6148, 9, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6154, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6161, 8, 275, 1, 275, 3, 275, 6164, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 5, 275, 6178, 8, 275, 10, 275, 12, 275, 6181, 9, 275, 3, 275, 6183, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6193, 8, 276, 1, 276, 1, 276, 3, 276, 6197, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6203, 8, 276, 1, 276, 3, 276, 6206, 8, 276, 1, 276, 3, 276, 6209, 8, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6214, 8, 276, 1, 276, 1, 276, 3, 276, 6218, 8, 276, 1, 276, 3, 276, 6221, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6228, 8, 276, 1, 276, 3, 276, 6231, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6237, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6273, 8, 276, 1, 276, 3, 276, 6276, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6288, 8, 276, 1, 276, 3, 276, 6291, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6307, 8, 276, 3, 276, 6309, 8, 276, 1, 276, 1, 276, 3, 276, 6313, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6320, 8, 276, 1, 276, 1, 276, 3, 276, 6324, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6331, 8, 276, 1, 276, 3, 276, 6334, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6341, 8, 276, 10, 276, 12, 276, 6344, 9, 276, 3, 276, 6346, 8, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6351, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6357, 8, 276, 3, 276, 6359, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6365, 8, 276, 1, 276, 1, 276, 3, 276, 6369, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6375, 8, 277, 1, 277, 3, 277, 6378, 8, 277, 1, 277, 3, 277, 6381, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6394, 8, 278, 1, 278, 3, 278, 6397, 8, 278, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6403, 8, 279, 1, 280, 3, 280, 6406, 8, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6414, 8, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6422, 8, 280, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6428, 8, 281, 1, 281, 3, 281, 6431, 8, 281, 1, 281, 1, 281, 3, 281, 6435, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6449, 8, 282, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 5, 284, 6459, 8, 284, 10, 284, 12, 284, 6462, 9, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6469, 8, 284, 1, 284, 1, 284, 3, 284, 6473, 8, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 3, 285, 6480, 8, 285, 1, 285, 1, 285, 1, 285, 5, 285, 6485, 8, 285, 10, 285, 12, 285, 6488, 9, 285, 1, 286, 1, 286, 3, 286, 6492, 8, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 5, 287, 6503, 8, 287, 10, 287, 12, 287, 6506, 9, 287, 1, 288, 1, 288, 1, 288, 1, 288, 5, 288, 6512, 8, 288, 10, 288, 12, 288, 6515, 9, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6522, 8, 289, 1, 290, 1, 290, 1, 290, 3, 290, 6527, 8, 290, 1, 290, 3, 290, 6530, 8, 290, 1, 291, 1, 291, 1, 291, 3, 291, 6535, 8, 291, 1, 291, 3, 291, 6538, 8, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6550, 8, 294, 1, 295, 1, 295, 1, 295, 3, 295, 6555, 8, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6568, 8, 295, 3, 295, 6570, 8, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6575, 8, 295, 1, 295, 1, 295, 3, 295, 6579, 8, 295, 1, 295, 3, 295, 6582, 8, 295, 3, 295, 6584, 8, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6591, 8, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6598, 8, 297, 1, 297, 3, 297, 6601, 8, 297, 1, 297, 3, 297, 6604, 8, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6610, 8, 297, 1, 297, 1, 297, 3, 297, 6614, 8, 297, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6620, 8, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6628, 8, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6637, 8, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 3, 303, 6650, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6655, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 5, 303, 6661, 8, 303, 10, 303, 12, 303, 6664, 9, 303, 3, 303, 6666, 8, 303, 1, 304, 1, 304, 1, 304, 3, 304, 6671, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6676, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6682, 8, 304, 10, 304, 12, 304, 6685, 9, 304, 3, 304, 6687, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6695, 8, 305, 1, 306, 1, 306, 3, 306, 6699, 8, 306, 1, 306, 1, 306, 1, 306, 5, 306, 6704, 8, 306, 10, 306, 12, 306, 6707, 9, 306, 1, 307, 1, 307, 1, 307, 3, 307, 6712, 8, 307, 1, 307, 3, 307, 6715, 8, 307, 1, 308, 1, 308, 3, 308, 6719, 8, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 5, 308, 6730, 8, 308, 10, 308, 12, 308, 6733, 9, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6738, 8, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 5, 308, 6748, 8, 308, 10, 308, 12, 308, 6751, 9, 308, 3, 308, 6753, 8, 308, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6762, 8, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6767, 8, 310, 1, 311, 1, 311, 1, 312, 1, 312, 1, 313, 1, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 5, 318, 6786, 8, 318, 10, 318, 12, 318, 6789, 9, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 5, 323, 6802, 8, 323, 10, 323, 12, 323, 6805, 9, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6812, 8, 325, 10, 325, 12, 325, 6815, 9, 325, 1, 326, 1, 326, 3, 326, 6819, 8, 326, 1, 327, 1, 327, 1, 327, 3, 327, 6824, 8, 327, 3, 327, 6826, 8, 327, 1, 327, 3, 327, 6829, 8, 327, 1, 327, 1, 327, 3, 327, 6833, 8, 327, 3, 327, 6835, 8, 327, 1, 328, 1, 328, 1, 328, 5, 328, 6840, 8, 328, 10, 328, 12, 328, 6843, 9, 328, 1, 329, 1, 329, 1, 329, 3, 329, 6848, 8, 329, 3, 329, 6850, 8, 329, 1, 329, 3, 329, 6853, 8, 329, 1, 329, 1, 329, 3, 329, 6857, 8, 329, 3, 329, 6859, 8, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 5, 333, 6870, 8, 333, 10, 333, 12, 333, 6873, 9, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 6882, 8, 335, 1, 335, 3, 335, 6885, 8, 335, 1, 335, 3, 335, 6888, 8, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6901, 8, 338, 1, 339, 1, 339, 1, 340, 1, 340, 3, 340, 6907, 8, 340, 1, 340, 3, 340, 6910, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6918, 8, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 3, 344, 6925, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 4, 346, 6943, 8, 346, 11, 346, 12, 346, 6944, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 3, 347, 6952, 8, 347, 3, 347, 6954, 8, 347, 1, 348, 1, 348, 1, 348, 4, 348, 6959, 8, 348, 11, 348, 12, 348, 6960, 3, 348, 6963, 8, 348, 1, 349, 1, 349, 3, 349, 6967, 8, 349, 1, 350, 1, 350, 1, 350, 5, 350, 6972, 8, 350, 10, 350, 12, 350, 6975, 9, 350, 1, 351, 1, 351, 1, 351, 3, 351, 6980, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 6991, 8, 352, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 6997, 8, 353, 1, 354, 1, 354, 1, 355, 1, 355, 3, 355, 7003, 8, 355, 1, 356, 3, 356, 7006, 8, 356, 1, 356, 1, 356, 3, 356, 7010, 8, 356, 1, 356, 4, 356, 7013, 8, 356, 11, 356, 12, 356, 7014, 1, 356, 3, 356, 7018, 8, 356, 1, 356, 1, 356, 3, 356, 7022, 8, 356, 1, 356, 1, 356, 3, 356, 7026, 8, 356, 3, 356, 7028, 8, 356, 1, 357, 1, 357, 1, 358, 3, 358, 7033, 8, 358, 1, 358, 1, 358, 1, 359, 3, 359, 7038, 8, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7051, 8, 360, 1, 360, 3, 360, 7054, 8, 360, 1, 361, 1, 361, 3, 361, 7058, 8, 361, 1, 361, 3, 361, 7061, 8, 361, 1, 361, 3, 361, 7064, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7069, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7074, 8, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7080, 8, 361, 1, 361, 3, 361, 7083, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7088, 8, 361, 1, 361, 3, 361, 7091, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7096, 8, 361, 1, 361, 3, 361, 7099, 8, 361, 1, 361, 1, 361, 3, 361, 7103, 8, 361, 1, 361, 5, 361, 7106, 8, 361, 10, 361, 12, 361, 7109, 9, 361, 1, 361, 1, 361, 3, 361, 7113, 8, 361, 1, 361, 5, 361, 7116, 8, 361, 10, 361, 12, 361, 7119, 9, 361, 1, 361, 1, 361, 3, 361, 7123, 8, 361, 1, 361, 3, 361, 7126, 8, 361, 1, 361, 5, 361, 7129, 8, 361, 10, 361, 12, 361, 7132, 9, 361, 1, 361, 1, 361, 3, 361, 7136, 8, 361, 1, 361, 5, 361, 7139, 8, 361, 10, 361, 12, 361, 7142, 9, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7147, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7152, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7157, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7162, 8, 361, 1, 361, 1, 361, 3, 361, 7166, 8, 361, 1, 361, 3, 361, 7169, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7174, 8, 361, 1, 361, 1, 361, 3, 361, 7178, 8, 361, 1, 361, 1, 361, 3, 361, 7182, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 5, 362, 7188, 8, 362, 10, 362, 12, 362, 7191, 9, 362, 1, 362, 1, 362, 1, 363, 1, 363, 3, 363, 7197, 8, 363, 1, 363, 1, 363, 3, 363, 7201, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7206, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7211, 8, 363, 1, 363, 1, 363, 3, 363, 7215, 8, 363, 3, 363, 7217, 8, 363, 1, 363, 3, 363, 7220, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 3, 366, 7236, 8, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 5, 367, 7244, 8, 367, 10, 367, 12, 367, 7247, 9, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 5, 368, 7254, 8, 368, 10, 368, 12, 368, 7257, 9, 368, 1, 369, 1, 369, 1, 369, 1, 369, 5, 369, 7263, 8, 369, 10, 369, 12, 369, 7266, 9, 369, 1, 370, 1, 370, 1, 370, 1, 370, 5, 370, 7272, 8, 370, 10, 370, 12, 370, 7275, 9, 370, 1, 370, 1, 370, 1, 371, 1, 371, 3, 371, 7281, 8, 371, 1, 372, 1, 372, 1, 372, 5, 372, 7286, 8, 372, 10, 372, 12, 372, 7289, 9, 372, 1, 373, 1, 373, 1, 373, 5, 373, 7294, 8, 373, 10, 373, 12, 373, 7297, 9, 373, 1, 374, 1, 374, 1, 374, 5, 374, 7302, 8, 374, 10, 374, 12, 374, 7305, 9, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7316, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7323, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7333, 8, 375, 1, 376, 1, 376, 1, 376, 3, 376, 7338, 8, 376, 1, 376, 3, 376, 7341, 8, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7346, 8, 376, 1, 376, 3, 376, 7349, 8, 376, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7367, 8, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7374, 8, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7379, 8, 380, 1, 381, 1, 381, 1, 381, 3, 381, 7384, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 4, 381, 7416, 8, 381, 11, 381, 12, 381, 7417, 1, 381, 1, 381, 3, 381, 7422, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 4, 381, 7428, 8, 381, 11, 381, 12, 381, 7429, 1, 381, 1, 381, 3, 381, 7434, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7443, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7451, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7456, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7464, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7469, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7474, 8, 381, 3, 381, 7476, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7485, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7490, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7498, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7503, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7511, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7519, 8, 381, 1, 381, 3, 381, 7522, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7532, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7550, 8, 381, 1, 381, 3, 381, 7553, 8, 381, 1, 381, 3, 381, 7556, 8, 381, 1, 381, 1, 381, 3, 381, 7560, 8, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 5, 383, 7571, 8, 383, 10, 383, 12, 383, 7574, 9, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7581, 8, 383, 1, 384, 1, 384, 3, 384, 7585, 8, 384, 1, 385, 1, 385, 1, 385, 3, 385, 7590, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7595, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7601, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7606, 8, 385, 1, 385, 1, 385, 3, 385, 7610, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7615, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7620, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7625, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 5, 385, 7633, 8, 385, 10, 385, 12, 385, 7636, 9, 385, 3, 385, 7638, 8, 385, 1, 385, 1, 385, 3, 385, 7642, 8, 385, 1, 385, 1, 385, 3, 385, 7646, 8, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7653, 8, 386, 1, 386, 1, 386, 3, 386, 7657, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7686, 8, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7694, 8, 387, 1, 388, 3, 388, 7697, 8, 388, 1, 388, 3, 388, 7700, 8, 388, 1, 388, 3, 388, 7703, 8, 388, 1, 388, 3, 388, 7706, 8, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 3, 392, 7717, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7731, 8, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 5, 395, 7738, 8, 395, 10, 395, 12, 395, 7741, 9, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7767, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 5, 398, 7777, 8, 398, 10, 398, 12, 398, 7780, 9, 398, 1, 399, 1, 399, 1, 399, 1, 399, 3, 399, 7786, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7794, 8, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7799, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 5, 400, 7805, 8, 400, 10, 400, 12, 400, 7808, 9, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7819, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7832, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7838, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7844, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7860, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7866, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 5, 401, 7875, 8, 401, 10, 401, 12, 401, 7878, 9, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7897, 8, 402, 10, 402, 12, 402, 7900, 9, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 4, 402, 7909, 8, 402, 11, 402, 12, 402, 7910, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7928, 8, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7945, 8, 402, 10, 402, 12, 402, 7948, 9, 402, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7960, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7969, 8, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7978, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7987, 8, 407, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 7996, 8, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 412, 1, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 0, 5, 208, 210, 800, 802, 804, 417, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 76, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 578, 580, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9371, 0, 837, 1, 0, 0, 0, 2, 847, 1, 0, 0, 0, 4, 856, 1, 0, 0, 0, 6, 858, 1, 0, 0, 0, 8, 899, 1, 0, 0, 0, 10, 918, 1, 0, 0, 0, 12, 929, 1, 0, 0, 0, 14, 945, 1, 0, 0, 0, 16, 950, 1, 0, 0, 0, 18, 962, 1, 0, 0, 0, 20, 997, 1, 0, 0, 0, 22, 1007, 1, 0, 0, 0, 24, 1009, 1, 0, 0, 0, 26, 1021, 1, 0, 0, 0, 28, 1051, 1, 0, 0, 0, 30, 1087, 1, 0, 0, 0, 32, 1138, 1, 0, 0, 0, 34, 1167, 1, 0, 0, 0, 36, 1174, 1, 0, 0, 0, 38, 1271, 1, 0, 0, 0, 40, 1273, 1, 0, 0, 0, 42, 1310, 1, 0, 0, 0, 44, 1374, 1, 0, 0, 0, 46, 1396, 1, 0, 0, 0, 48, 1402, 1, 0, 0, 0, 50, 1424, 1, 0, 0, 0, 52, 1504, 1, 0, 0, 0, 54, 1511, 1, 0, 0, 0, 56, 1513, 1, 0, 0, 0, 58, 1518, 1, 0, 0, 0, 60, 1558, 1, 0, 0, 0, 62, 1564, 1, 0, 0, 0, 64, 1566, 1, 0, 0, 0, 66, 1587, 1, 0, 0, 0, 68, 1594, 1, 0, 0, 0, 70, 1596, 1, 0, 0, 0, 72, 1621, 1, 0, 0, 0, 74, 1624, 1, 0, 0, 0, 76, 1652, 1, 0, 0, 0, 78, 1668, 1, 0, 0, 0, 80, 1670, 1, 0, 0, 0, 82, 1764, 1, 0, 0, 0, 84, 1767, 1, 0, 0, 0, 86, 1779, 1, 0, 0, 0, 88, 1783, 1, 0, 0, 0, 90, 1833, 1, 0, 0, 0, 92, 1835, 1, 0, 0, 0, 94, 1863, 1, 0, 0, 0, 96, 1873, 1, 0, 0, 0, 98, 2060, 1, 0, 0, 0, 100, 2062, 1, 0, 0, 0, 102, 2064, 1, 0, 0, 0, 104, 2067, 1, 0, 0, 0, 106, 2142, 1, 0, 0, 0, 108, 2165, 1, 0, 0, 0, 110, 2313, 1, 0, 0, 0, 112, 2318, 1, 0, 0, 0, 114, 2320, 1, 0, 0, 0, 116, 2330, 1, 0, 0, 0, 118, 2386, 1, 0, 0, 0, 120, 2406, 1, 0, 0, 0, 122, 2408, 1, 0, 0, 0, 124, 2443, 1, 0, 0, 0, 126, 2452, 1, 0, 0, 0, 128, 2459, 1, 0, 0, 0, 130, 2482, 1, 0, 0, 0, 132, 2491, 1, 0, 0, 0, 134, 2506, 1, 0, 0, 0, 136, 2528, 1, 0, 0, 0, 138, 2584, 1, 0, 0, 0, 140, 2880, 1, 0, 0, 0, 142, 2980, 1, 0, 0, 0, 144, 2982, 1, 0, 0, 0, 146, 2989, 1, 0, 0, 0, 148, 2996, 1, 0, 0, 0, 150, 3019, 1, 0, 0, 0, 152, 3029, 1, 0, 0, 0, 154, 3036, 1, 0, 0, 0, 156, 3043, 1, 0, 0, 0, 158, 3050, 1, 0, 0, 0, 160, 3059, 1, 0, 0, 0, 162, 3071, 1, 0, 0, 0, 164, 3084, 1, 0, 0, 0, 166, 3091, 1, 0, 0, 0, 168, 3107, 1, 0, 0, 0, 170, 3134, 1, 0, 0, 0, 172, 3136, 1, 0, 0, 0, 174, 3146, 1, 0, 0, 0, 176, 3150, 1, 0, 0, 0, 178, 3156, 1, 0, 0, 0, 180, 3168, 1, 0, 0, 0, 182, 3170, 1, 0, 0, 0, 184, 3177, 1, 0, 0, 0, 186, 3179, 1, 0, 0, 0, 188, 3228, 1, 0, 0, 0, 190, 3237, 1, 0, 0, 0, 192, 3239, 1, 0, 0, 0, 194, 3250, 1, 0, 0, 0, 196, 3256, 1, 0, 0, 0, 198, 3330, 1, 0, 0, 0, 200, 3393, 1, 0, 0, 0, 202, 3411, 1, 0, 0, 0, 204, 3495, 1, 0, 0, 0, 206, 3498, 1, 0, 0, 0, 208, 3510, 1, 0, 0, 0, 210, 3530, 1, 0, 0, 0, 212, 3558, 1, 0, 0, 0, 214, 3562, 1, 0, 0, 0, 216, 3564, 1, 0, 0, 0, 218, 3574, 1, 0, 0, 0, 220, 3594, 1, 0, 0, 0, 222, 3601, 1, 0, 0, 0, 224, 3603, 1, 0, 0, 0, 226, 3614, 1, 0, 0, 0, 228, 3623, 1, 0, 0, 0, 230, 3629, 1, 0, 0, 0, 232, 3652, 1, 0, 0, 0, 234, 3654, 1, 0, 0, 0, 236, 3690, 1, 0, 0, 0, 238, 3745, 1, 0, 0, 0, 240, 3754, 1, 0, 0, 0, 242, 3774, 1, 0, 0, 0, 244, 3786, 1, 0, 0, 0, 246, 3790, 1, 0, 0, 0, 248, 3801, 1, 0, 0, 0, 250, 3834, 1, 0, 0, 0, 252, 3855, 1, 0, 0, 0, 254, 3865, 1, 0, 0, 0, 256, 3869, 1, 0, 0, 0, 258, 3895, 1, 0, 0, 0, 260, 3942, 1, 0, 0, 0, 262, 3944, 1, 0, 0, 0, 264, 3948, 1, 0, 0, 0, 266, 3965, 1, 0, 0, 0, 268, 4016, 1, 0, 0, 0, 270, 4025, 1, 0, 0, 0, 272, 4035, 1, 0, 0, 0, 274, 4037, 1, 0, 0, 0, 276, 4067, 1, 0, 0, 0, 278, 4075, 1, 0, 0, 0, 280, 4092, 1, 0, 0, 0, 282, 4108, 1, 0, 0, 0, 284, 4145, 1, 0, 0, 0, 286, 4151, 1, 0, 0, 0, 288, 4160, 1, 0, 0, 0, 290, 4173, 1, 0, 0, 0, 292, 4177, 1, 0, 0, 0, 294, 4215, 1, 0, 0, 0, 296, 4253, 1, 0, 0, 0, 298, 4267, 1, 0, 0, 0, 300, 4275, 1, 0, 0, 0, 302, 4279, 1, 0, 0, 0, 304, 4285, 1, 0, 0, 0, 306, 4299, 1, 0, 0, 0, 308, 4302, 1, 0, 0, 0, 310, 4320, 1, 0, 0, 0, 312, 4324, 1, 0, 0, 0, 314, 4340, 1, 0, 0, 0, 316, 4342, 1, 0, 0, 0, 318, 4354, 1, 0, 0, 0, 320, 4358, 1, 0, 0, 0, 322, 4375, 1, 0, 0, 0, 324, 4392, 1, 0, 0, 0, 326, 4395, 1, 0, 0, 0, 328, 4405, 1, 0, 0, 0, 330, 4409, 1, 0, 0, 0, 332, 4419, 1, 0, 0, 0, 334, 4422, 1, 0, 0, 0, 336, 4427, 1, 0, 0, 0, 338, 4447, 1, 0, 0, 0, 340, 4449, 1, 0, 0, 0, 342, 4466, 1, 0, 0, 0, 344, 4475, 1, 0, 0, 0, 346, 4484, 1, 0, 0, 0, 348, 4486, 1, 0, 0, 0, 350, 4500, 1, 0, 0, 0, 352, 4514, 1, 0, 0, 0, 354, 4529, 1, 0, 0, 0, 356, 4538, 1, 0, 0, 0, 358, 4563, 1, 0, 0, 0, 360, 4578, 1, 0, 0, 0, 362, 4597, 1, 0, 0, 0, 364, 4627, 1, 0, 0, 0, 366, 4629, 1, 0, 0, 0, 368, 4631, 1, 0, 0, 0, 370, 4633, 1, 0, 0, 0, 372, 4648, 1, 0, 0, 0, 374, 4677, 1, 0, 0, 0, 376, 4679, 1, 0, 0, 0, 378, 4681, 1, 0, 0, 0, 380, 4683, 1, 0, 0, 0, 382, 4698, 1, 0, 0, 0, 384, 4700, 1, 0, 0, 0, 386, 4767, 1, 0, 0, 0, 388, 4769, 1, 0, 0, 0, 390, 4775, 1, 0, 0, 0, 392, 4802, 1, 0, 0, 0, 394, 4816, 1, 0, 0, 0, 396, 4827, 1, 0, 0, 0, 398, 4829, 1, 0, 0, 0, 400, 4835, 1, 0, 0, 0, 402, 4845, 1, 0, 0, 0, 404, 4849, 1, 0, 0, 0, 406, 4856, 1, 0, 0, 0, 408, 4860, 1, 0, 0, 0, 410, 4866, 1, 0, 0, 0, 412, 4873, 1, 0, 0, 0, 414, 4879, 1, 0, 0, 0, 416, 4885, 1, 0, 0, 0, 418, 4890, 1, 0, 0, 0, 420, 4935, 1, 0, 0, 0, 422, 4956, 1, 0, 0, 0, 424, 4981, 1, 0, 0, 0, 426, 4984, 1, 0, 0, 0, 428, 4990, 1, 0, 0, 0, 430, 5006, 1, 0, 0, 0, 432, 5021, 1, 0, 0, 0, 434, 5027, 1, 0, 0, 0, 436, 5057, 1, 0, 0, 0, 438, 5059, 1, 0, 0, 0, 440, 5066, 1, 0, 0, 0, 442, 5078, 1, 0, 0, 0, 444, 5084, 1, 0, 0, 0, 446, 5109, 1, 0, 0, 0, 448, 5113, 1, 0, 0, 0, 450, 5117, 1, 0, 0, 0, 452, 5128, 1, 0, 0, 0, 454, 5136, 1, 0, 0, 0, 456, 5199, 1, 0, 0, 0, 458, 5258, 1, 0, 0, 0, 460, 5360, 1, 0, 0, 0, 462, 5370, 1, 0, 0, 0, 464, 5372, 1, 0, 0, 0, 466, 5390, 1, 0, 0, 0, 468, 5414, 1, 0, 0, 0, 470, 5438, 1, 0, 0, 0, 472, 5445, 1, 0, 0, 0, 474, 5465, 1, 0, 0, 0, 476, 5474, 1, 0, 0, 0, 478, 5536, 1, 0, 0, 0, 480, 5538, 1, 0, 0, 0, 482, 5542, 1, 0, 0, 0, 484, 5576, 1, 0, 0, 0, 486, 5578, 1, 0, 0, 0, 488, 5581, 1, 0, 0, 0, 490, 5645, 1, 0, 0, 0, 492, 5664, 1, 0, 0, 0, 494, 5691, 1, 0, 0, 0, 496, 5695, 1, 0, 0, 0, 498, 5716, 1, 0, 0, 0, 500, 5726, 1, 0, 0, 0, 502, 5736, 1, 0, 0, 0, 504, 5776, 1, 0, 0, 0, 506, 5778, 1, 0, 0, 0, 508, 5781, 1, 0, 0, 0, 510, 5811, 1, 0, 0, 0, 512, 5813, 1, 0, 0, 0, 514, 5816, 1, 0, 0, 0, 516, 5916, 1, 0, 0, 0, 518, 5934, 1, 0, 0, 0, 520, 5936, 1, 0, 0, 0, 522, 5988, 1, 0, 0, 0, 524, 5990, 1, 0, 0, 0, 526, 5999, 1, 0, 0, 0, 528, 6005, 1, 0, 0, 0, 530, 6012, 1, 0, 0, 0, 532, 6027, 1, 0, 0, 0, 534, 6036, 1, 0, 0, 0, 536, 6038, 1, 0, 0, 0, 538, 6052, 1, 0, 0, 0, 540, 6073, 1, 0, 0, 0, 542, 6078, 1, 0, 0, 0, 544, 6088, 1, 0, 0, 0, 546, 6094, 1, 0, 0, 0, 548, 6128, 1, 0, 0, 0, 550, 6182, 1, 0, 0, 0, 552, 6368, 1, 0, 0, 0, 554, 6380, 1, 0, 0, 0, 556, 6396, 1, 0, 0, 0, 558, 6402, 1, 0, 0, 0, 560, 6421, 1, 0, 0, 0, 562, 6434, 1, 0, 0, 0, 564, 6448, 1, 0, 0, 0, 566, 6450, 1, 0, 0, 0, 568, 6453, 1, 0, 0, 0, 570, 6477, 1, 0, 0, 0, 572, 6489, 1, 0, 0, 0, 574, 6495, 1, 0, 0, 0, 576, 6507, 1, 0, 0, 0, 578, 6521, 1, 0, 0, 0, 580, 6523, 1, 0, 0, 0, 582, 6531, 1, 0, 0, 0, 584, 6539, 1, 0, 0, 0, 586, 6541, 1, 0, 0, 0, 588, 6543, 1, 0, 0, 0, 590, 6583, 1, 0, 0, 0, 592, 6590, 1, 0, 0, 0, 594, 6592, 1, 0, 0, 0, 596, 6615, 1, 0, 0, 0, 598, 6621, 1, 0, 0, 0, 600, 6631, 1, 0, 0, 0, 602, 6640, 1, 0, 0, 0, 604, 6643, 1, 0, 0, 0, 606, 6646, 1, 0, 0, 0, 608, 6667, 1, 0, 0, 0, 610, 6688, 1, 0, 0, 0, 612, 6696, 1, 0, 0, 0, 614, 6708, 1, 0, 0, 0, 616, 6716, 1, 0, 0, 0, 618, 6754, 1, 0, 0, 0, 620, 6766, 1, 0, 0, 0, 622, 6768, 1, 0, 0, 0, 624, 6770, 1, 0, 0, 0, 626, 6772, 1, 0, 0, 0, 628, 6774, 1, 0, 0, 0, 630, 6776, 1, 0, 0, 0, 632, 6778, 1, 0, 0, 0, 634, 6780, 1, 0, 0, 0, 636, 6782, 1, 0, 0, 0, 638, 6790, 1, 0, 0, 0, 640, 6792, 1, 0, 0, 0, 642, 6794, 1, 0, 0, 0, 644, 6796, 1, 0, 0, 0, 646, 6798, 1, 0, 0, 0, 648, 6806, 1, 0, 0, 0, 650, 6808, 1, 0, 0, 0, 652, 6818, 1, 0, 0, 0, 654, 6834, 1, 0, 0, 0, 656, 6836, 1, 0, 0, 0, 658, 6858, 1, 0, 0, 0, 660, 6860, 1, 0, 0, 0, 662, 6862, 1, 0, 0, 0, 664, 6864, 1, 0, 0, 0, 666, 6866, 1, 0, 0, 0, 668, 6874, 1, 0, 0, 0, 670, 6884, 1, 0, 0, 0, 672, 6889, 1, 0, 0, 0, 674, 6893, 1, 0, 0, 0, 676, 6900, 1, 0, 0, 0, 678, 6902, 1, 0, 0, 0, 680, 6909, 1, 0, 0, 0, 682, 6911, 1, 0, 0, 0, 684, 6917, 1, 0, 0, 0, 686, 6919, 1, 0, 0, 0, 688, 6924, 1, 0, 0, 0, 690, 6926, 1, 0, 0, 0, 692, 6928, 1, 0, 0, 0, 694, 6946, 1, 0, 0, 0, 696, 6962, 1, 0, 0, 0, 698, 6964, 1, 0, 0, 0, 700, 6968, 1, 0, 0, 0, 702, 6979, 1, 0, 0, 0, 704, 6990, 1, 0, 0, 0, 706, 6996, 1, 0, 0, 0, 708, 6998, 1, 0, 0, 0, 710, 7002, 1, 0, 0, 0, 712, 7027, 1, 0, 0, 0, 714, 7029, 1, 0, 0, 0, 716, 7032, 1, 0, 0, 0, 718, 7037, 1, 0, 0, 0, 720, 7053, 1, 0, 0, 0, 722, 7181, 1, 0, 0, 0, 724, 7183, 1, 0, 0, 0, 726, 7216, 1, 0, 0, 0, 728, 7221, 1, 0, 0, 0, 730, 7225, 1, 0, 0, 0, 732, 7231, 1, 0, 0, 0, 734, 7239, 1, 0, 0, 0, 736, 7250, 1, 0, 0, 0, 738, 7258, 1, 0, 0, 0, 740, 7267, 1, 0, 0, 0, 742, 7280, 1, 0, 0, 0, 744, 7282, 1, 0, 0, 0, 746, 7290, 1, 0, 0, 0, 748, 7298, 1, 0, 0, 0, 750, 7332, 1, 0, 0, 0, 752, 7348, 1, 0, 0, 0, 754, 7350, 1, 0, 0, 0, 756, 7353, 1, 0, 0, 0, 758, 7357, 1, 0, 0, 0, 760, 7378, 1, 0, 0, 0, 762, 7559, 1, 0, 0, 0, 764, 7561, 1, 0, 0, 0, 766, 7580, 1, 0, 0, 0, 768, 7582, 1, 0, 0, 0, 770, 7645, 1, 0, 0, 0, 772, 7685, 1, 0, 0, 0, 774, 7687, 1, 0, 0, 0, 776, 7696, 1, 0, 0, 0, 778, 7707, 1, 0, 0, 0, 780, 7709, 1, 0, 0, 0, 782, 7712, 1, 0, 0, 0, 784, 7716, 1, 0, 0, 0, 786, 7718, 1, 0, 0, 0, 788, 7730, 1, 0, 0, 0, 790, 7732, 1, 0, 0, 0, 792, 7766, 1, 0, 0, 0, 794, 7768, 1, 0, 0, 0, 796, 7773, 1, 0, 0, 0, 798, 7785, 1, 0, 0, 0, 800, 7798, 1, 0, 0, 0, 802, 7809, 1, 0, 0, 0, 804, 7927, 1, 0, 0, 0, 806, 7949, 1, 0, 0, 0, 808, 7959, 1, 0, 0, 0, 810, 7968, 1, 0, 0, 0, 812, 7977, 1, 0, 0, 0, 814, 7986, 1, 0, 0, 0, 816, 7988, 1, 0, 0, 0, 818, 7995, 1, 0, 0, 0, 820, 7997, 1, 0, 0, 0, 822, 7999, 1, 0, 0, 0, 824, 8001, 1, 0, 0, 0, 826, 8003, 1, 0, 0, 0, 828, 8005, 1, 0, 0, 0, 830, 8007, 1, 0, 0, 0, 832, 8009, 1, 0, 0, 0, 834, 836, 3, 2, 1, 0, 835, 834, 1, 0, 0, 0, 836, 839, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 840, 841, 5, 0, 0, 1, 841, 1, 1, 0, 0, 0, 842, 844, 3, 4, 2, 0, 843, 845, 5, 869, 0, 0, 844, 843, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 848, 3, 6, 3, 0, 847, 842, 1, 0, 0, 0, 847, 846, 1, 0, 0, 0, 848, 3, 1, 0, 0, 0, 849, 857, 3, 8, 4, 0, 850, 857, 3, 10, 5, 0, 851, 857, 3, 12, 6, 0, 852, 857, 3, 14, 7, 0, 853, 857, 3, 16, 8, 0, 854, 857, 3, 20, 10, 0, 855, 857, 3, 22, 11, 0, 856, 849, 1, 0, 0, 0, 856, 850, 1, 0, 0, 0, 856, 851, 1, 0, 0, 0, 856, 852, 1, 0, 0, 0, 856, 853, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 856, 855, 1, 0, 0, 0, 857, 5, 1, 0, 0, 0, 858, 859, 5, 869, 0, 0, 859, 7, 1, 0, 0, 0, 860, 900, 3, 24, 12, 0, 861, 900, 3, 26, 13, 0, 862, 900, 3, 28, 14, 0, 863, 900, 3, 30, 15, 0, 864, 900, 3, 32, 16, 0, 865, 900, 3, 536, 268, 0, 866, 900, 3, 36, 18, 0, 867, 900, 3, 38, 19, 0, 868, 900, 3, 40, 20, 0, 869, 900, 3, 42, 21, 0, 870, 900, 3, 44, 22, 0, 871, 900, 3, 50, 25, 0, 872, 900, 3, 34, 17, 0, 873, 900, 3, 120, 60, 0, 874, 900, 3, 122, 61, 0, 875, 900, 3, 124, 62, 0, 876, 900, 3, 126, 63, 0, 877, 900, 3, 128, 64, 0, 878, 900, 3, 130, 65, 0, 879, 900, 3, 132, 66, 0, 880, 900, 3, 134, 67, 0, 881, 900, 3, 136, 68, 0, 882, 900, 3, 138, 69, 0, 883, 900, 3, 144, 72, 0, 884, 900, 3, 146, 73, 0, 885, 900, 3, 148, 74, 0, 886, 900, 3, 150, 75, 0, 887, 900, 3, 152, 76, 0, 888, 900, 3, 154, 77, 0, 889, 900, 3, 156, 78, 0, 890, 900, 3, 158, 79, 0, 891, 900, 3, 160, 80, 0, 892, 900, 3, 162, 81, 0, 893, 900, 3, 164, 82, 0, 894, 900, 3, 166, 83, 0, 895, 900, 3, 168, 84, 0, 896, 900, 3, 170, 85, 0, 897, 900, 3, 172, 86, 0, 898, 900, 3, 176, 88, 0, 899, 860, 1, 0, 0, 0, 899, 861, 1, 0, 0, 0, 899, 862, 1, 0, 0, 0, 899, 863, 1, 0, 0, 0, 899, 864, 1, 0, 0, 0, 899, 865, 1, 0, 0, 0, 899, 866, 1, 0, 0, 0, 899, 867, 1, 0, 0, 0, 899, 868, 1, 0, 0, 0, 899, 869, 1, 0, 0, 0, 899, 870, 1, 0, 0, 0, 899, 871, 1, 0, 0, 0, 899, 872, 1, 0, 0, 0, 899, 873, 1, 0, 0, 0, 899, 874, 1, 0, 0, 0, 899, 875, 1, 0, 0, 0, 899, 876, 1, 0, 0, 0, 899, 877, 1, 0, 0, 0, 899, 878, 1, 0, 0, 0, 899, 879, 1, 0, 0, 0, 899, 880, 1, 0, 0, 0, 899, 881, 1, 0, 0, 0, 899, 882, 1, 0, 0, 0, 899, 883, 1, 0, 0, 0, 899, 884, 1, 0, 0, 0, 899, 885, 1, 0, 0, 0, 899, 886, 1, 0, 0, 0, 899, 887, 1, 0, 0, 0, 899, 888, 1, 0, 0, 0, 899, 889, 1, 0, 0, 0, 899, 890, 1, 0, 0, 0, 899, 891, 1, 0, 0, 0, 899, 892, 1, 0, 0, 0, 899, 893, 1, 0, 0, 0, 899, 894, 1, 0, 0, 0, 899, 895, 1, 0, 0, 0, 899, 896, 1, 0, 0, 0, 899, 897, 1, 0, 0, 0, 899, 898, 1, 0, 0, 0, 900, 9, 1, 0, 0, 0, 901, 919, 3, 204, 102, 0, 902, 919, 3, 206, 103, 0, 903, 919, 3, 186, 93, 0, 904, 919, 3, 214, 107, 0, 905, 919, 3, 180, 90, 0, 906, 919, 3, 202, 101, 0, 907, 919, 3, 178, 89, 0, 908, 919, 3, 192, 96, 0, 909, 919, 3, 196, 98, 0, 910, 919, 3, 198, 99, 0, 911, 919, 3, 200, 100, 0, 912, 919, 3, 182, 91, 0, 913, 919, 3, 184, 92, 0, 914, 919, 3, 246, 123, 0, 915, 919, 3, 216, 108, 0, 916, 919, 3, 612, 306, 0, 917, 919, 3, 614, 307, 0, 918, 901, 1, 0, 0, 0, 918, 902, 1, 0, 0, 0, 918, 903, 1, 0, 0, 0, 918, 904, 1, 0, 0, 0, 918, 905, 1, 0, 0, 0, 918, 906, 1, 0, 0, 0, 918, 907, 1, 0, 0, 0, 918, 908, 1, 0, 0, 0, 918, 909, 1, 0, 0, 0, 918, 910, 1, 0, 0, 0, 918, 911, 1, 0, 0, 0, 918, 912, 1, 0, 0, 0, 918, 913, 1, 0, 0, 0, 918, 914, 1, 0, 0, 0, 918, 915, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 917, 1, 0, 0, 0, 919, 11, 1, 0, 0, 0, 920, 930, 3, 316, 158, 0, 921, 930, 3, 318, 159, 0, 922, 930, 3, 320, 160, 0, 923, 930, 3, 322, 161, 0, 924, 930, 3, 324, 162, 0, 925, 930, 3, 326, 163, 0, 926, 930, 3, 328, 164, 0, 927, 930, 3, 330, 165, 0, 928, 930, 3, 332, 166, 0, 929, 920, 1, 0, 0, 0, 929, 921, 1, 0, 0, 0, 929, 922, 1, 0, 0, 0, 929, 923, 1, 0, 0, 0, 929, 924, 1, 0, 0, 0, 929, 925, 1, 0, 0, 0, 929, 926, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 929, 928, 1, 0, 0, 0, 930, 13, 1, 0, 0, 0, 931, 946, 3, 348, 174, 0, 932, 946, 3, 350, 175, 0, 933, 946, 3, 352, 176, 0, 934, 946, 3, 354, 177, 0, 935, 946, 3, 356, 178, 0, 936, 946, 3, 358, 179, 0, 937, 946, 3, 360, 180, 0, 938, 946, 3, 362, 181, 0, 939, 946, 3, 398, 199, 0, 940, 946, 3, 400, 200, 0, 941, 946, 3, 402, 201, 0, 942, 946, 3, 404, 202, 0, 943, 946, 3, 406, 203, 0, 944, 946, 3, 408, 204, 0, 945, 931, 1, 0, 0, 0, 945, 932, 1, 0, 0, 0, 945, 933, 1, 0, 0, 0, 945, 934, 1, 0, 0, 0, 945, 935, 1, 0, 0, 0, 945, 936, 1, 0, 0, 0, 945, 937, 1, 0, 0, 0, 945, 938, 1, 0, 0, 0, 945, 939, 1, 0, 0, 0, 945, 940, 1, 0, 0, 0, 945, 941, 1, 0, 0, 0, 945, 942, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 944, 1, 0, 0, 0, 946, 15, 1, 0, 0, 0, 947, 951, 3, 410, 205, 0, 948, 951, 3, 412, 206, 0, 949, 951, 3, 414, 207, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 949, 1, 0, 0, 0, 951, 17, 1, 0, 0, 0, 952, 963, 3, 418, 209, 0, 953, 963, 3, 420, 210, 0, 954, 963, 3, 422, 211, 0, 955, 963, 3, 426, 213, 0, 956, 963, 3, 428, 214, 0, 957, 963, 3, 430, 215, 0, 958, 963, 3, 434, 217, 0, 959, 963, 3, 424, 212, 0, 960, 963, 3, 432, 216, 0, 961, 963, 3, 436, 218, 0, 962, 952, 1, 0, 0, 0, 962, 953, 1, 0, 0, 0, 962, 954, 1, 0, 0, 0, 962, 955, 1, 0, 0, 0, 962, 956, 1, 0, 0, 0, 962, 957, 1, 0, 0, 0, 962, 958, 1, 0, 0, 0, 962, 959, 1, 0, 0, 0, 962, 960, 1, 0, 0, 0, 962, 961, 1, 0, 0, 0, 963, 19, 1, 0, 0, 0, 964, 998, 3, 454, 227, 0, 965, 998, 3, 456, 228, 0, 966, 998, 3, 458, 229, 0, 967, 998, 3, 460, 230, 0, 968, 998, 3, 464, 232, 0, 969, 998, 3, 476, 238, 0, 970, 998, 3, 478, 239, 0, 971, 998, 3, 466, 233, 0, 972, 998, 3, 468, 234, 0, 973, 998, 3, 470, 235, 0, 974, 998, 3, 472, 236, 0, 975, 998, 3, 522, 261, 0, 976, 998, 3, 524, 262, 0, 977, 998, 3, 526, 263, 0, 978, 998, 3, 528, 264, 0, 979, 998, 3, 530, 265, 0, 980, 998, 3, 538, 269, 0, 981, 998, 3, 542, 271, 0, 982, 998, 3, 544, 272, 0, 983, 998, 3, 546, 273, 0, 984, 998, 3, 548, 274, 0, 985, 998, 3, 550, 275, 0, 986, 998, 3, 552, 276, 0, 987, 998, 3, 566, 283, 0, 988, 998, 3, 568, 284, 0, 989, 998, 3, 570, 285, 0, 990, 998, 3, 572, 286, 0, 991, 998, 3, 574, 287, 0, 992, 998, 3, 576, 288, 0, 993, 998, 3, 580, 290, 0, 994, 998, 3, 582, 291, 0, 995, 998, 3, 584, 292, 0, 996, 998, 3, 586, 293, 0, 997, 964, 1, 0, 0, 0, 997, 965, 1, 0, 0, 0, 997, 966, 1, 0, 0, 0, 997, 967, 1, 0, 0, 0, 997, 968, 1, 0, 0, 0, 997, 969, 1, 0, 0, 0, 997, 970, 1, 0, 0, 0, 997, 971, 1, 0, 0, 0, 997, 972, 1, 0, 0, 0, 997, 973, 1, 0, 0, 0, 997, 974, 1, 0, 0, 0, 997, 975, 1, 0, 0, 0, 997, 976, 1, 0, 0, 0, 997, 977, 1, 0, 0, 0, 997, 978, 1, 0, 0, 0, 997, 979, 1, 0, 0, 0, 997, 980, 1, 0, 0, 0, 997, 981, 1, 0, 0, 0, 997, 982, 1, 0, 0, 0, 997, 983, 1, 0, 0, 0, 997, 984, 1, 0, 0, 0, 997, 985, 1, 0, 0, 0, 997, 986, 1, 0, 0, 0, 997, 987, 1, 0, 0, 0, 997, 988, 1, 0, 0, 0, 997, 989, 1, 0, 0, 0, 997, 990, 1, 0, 0, 0, 997, 991, 1, 0, 0, 0, 997, 992, 1, 0, 0, 0, 997, 993, 1, 0, 0, 0, 997, 994, 1, 0, 0, 0, 997, 995, 1, 0, 0, 0, 997, 996, 1, 0, 0, 0, 998, 21, 1, 0, 0, 0, 999, 1008, 3, 596, 298, 0, 1000, 1008, 3, 598, 299, 0, 1001, 1008, 3, 600, 300, 0, 1002, 1008, 3, 602, 301, 0, 1003, 1008, 3, 604, 302, 0, 1004, 1008, 3, 606, 303, 0, 1005, 1008, 3, 608, 304, 0, 1006, 1008, 3, 616, 308, 0, 1007, 999, 1, 0, 0, 0, 1007, 1000, 1, 0, 0, 0, 1007, 1001, 1, 0, 0, 0, 1007, 1002, 1, 0, 0, 0, 1007, 1003, 1, 0, 0, 0, 1007, 1004, 1, 0, 0, 0, 1007, 1005, 1, 0, 0, 0, 1007, 1006, 1, 0, 0, 0, 1008, 23, 1, 0, 0, 0, 1009, 1010, 5, 34, 0, 0, 1010, 1012, 7, 0, 0, 0, 1011, 1013, 3, 756, 378, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1018, 3, 622, 311, 0, 1015, 1017, 3, 52, 26, 0, 1016, 1015, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 25, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1021, 1023, 5, 34, 0, 0, 1022, 1024, 3, 58, 29, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 5, 385, 0, 0, 1026, 1028, 3, 756, 378, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 3, 698, 349, 0, 1030, 1031, 5, 119, 0, 0, 1031, 1032, 5, 590, 0, 0, 1032, 1039, 3, 60, 30, 0, 1033, 1034, 5, 119, 0, 0, 1034, 1036, 5, 343, 0, 0, 1035, 1037, 5, 114, 0, 0, 1036, 1035, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1040, 5, 541, 0, 0, 1039, 1033, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1042, 1, 0, 0, 0, 1041, 1043, 3, 68, 34, 0, 1042, 1041, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1045, 5, 340, 0, 0, 1045, 1047, 5, 882, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 5, 371, 0, 0, 1049, 1050, 3, 416, 208, 0, 1050, 27, 1, 0, 0, 0, 1051, 1053, 5, 34, 0, 0, 1052, 1054, 7, 1, 0, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1056, 1, 0, 0, 0, 1055, 1057, 7, 2, 0, 0, 1056, 1055, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 5, 82, 0, 0, 1059, 1061, 3, 634, 317, 0, 1060, 1062, 3, 70, 35, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 5, 119, 0, 0, 1064, 1065, 3, 648, 324, 0, 1065, 1069, 3, 734, 367, 0, 1066, 1068, 3, 72, 36, 0, 1067, 1066, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1084, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1072, 1074, 5, 308, 0, 0, 1073, 1075, 5, 857, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1083, 7, 3, 0, 0, 1077, 1079, 5, 104, 0, 0, 1078, 1080, 5, 857, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1083, 7, 4, 0, 0, 1082, 1072, 1, 0, 0, 0, 1082, 1077, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 29, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1088, 5, 34, 0, 0, 1088, 1089, 5, 451, 0, 0, 1089, 1090, 5, 74, 0, 0, 1090, 1091, 3, 702, 351, 0, 1091, 1092, 5, 6, 0, 0, 1092, 1093, 5, 671, 0, 0, 1093, 1099, 5, 882, 0, 0, 1094, 1096, 5, 428, 0, 0, 1095, 1097, 5, 857, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 3, 710, 355, 0, 1099, 1094, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1106, 1, 0, 0, 0, 1101, 1103, 5, 672, 0, 0, 1102, 1104, 5, 857, 0, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1107, 3, 710, 355, 0, 1106, 1101, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1113, 1, 0, 0, 0, 1108, 1110, 5, 553, 0, 0, 1109, 1111, 5, 857, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 3, 710, 355, 0, 1113, 1108, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1120, 1, 0, 0, 0, 1115, 1117, 5, 504, 0, 0, 1116, 1118, 5, 857, 0, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1121, 3, 702, 351, 0, 1120, 1115, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1123, 1, 0, 0, 0, 1122, 1124, 5, 687, 0, 0, 1123, 1122, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1130, 1, 0, 0, 0, 1125, 1127, 5, 340, 0, 0, 1126, 1128, 5, 857, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1131, 5, 882, 0, 0, 1130, 1125, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1134, 5, 380, 0, 0, 1133, 1135, 5, 857, 0, 0, 1134, 1133, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 3, 688, 344, 0, 1137, 31, 1, 0, 0, 0, 1138, 1140, 5, 34, 0, 0, 1139, 1141, 3, 58, 29, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1144, 5, 132, 0, 0, 1143, 1145, 3, 756, 378, 0, 1144, 1143, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 3, 698, 349, 0, 1147, 1149, 5, 866, 0, 0, 1148, 1150, 3, 74, 37, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1155, 1, 0, 0, 0, 1151, 1152, 5, 868, 0, 0, 1152, 1154, 3, 74, 37, 0, 1153, 1151, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1158, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1162, 5, 867, 0, 0, 1159, 1161, 3, 76, 38, 0, 1160, 1159, 1, 0, 0, 0, 1161, 1164, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1165, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1166, 3, 416, 208, 0, 1166, 33, 1, 0, 0, 0, 1167, 1168, 5, 34, 0, 0, 1168, 1170, 5, 582, 0, 0, 1169, 1171, 3, 756, 378, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 3, 650, 325, 0, 1173, 35, 1, 0, 0, 0, 1174, 1175, 5, 34, 0, 0, 1175, 1176, 5, 592, 0, 0, 1176, 1177, 3, 702, 351, 0, 1177, 1178, 5, 67, 0, 0, 1178, 1179, 5, 360, 0, 0, 1179, 1180, 5, 692, 0, 0, 1180, 1181, 7, 5, 0, 0, 1181, 1182, 5, 518, 0, 0, 1182, 1183, 5, 866, 0, 0, 1183, 1188, 3, 78, 39, 0, 1184, 1185, 5, 868, 0, 0, 1185, 1187, 3, 78, 39, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1191, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1192, 5, 867, 0, 0, 1192, 37, 1, 0, 0, 0, 1193, 1195, 5, 34, 0, 0, 1194, 1196, 5, 660, 0, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1199, 5, 173, 0, 0, 1198, 1200, 3, 756, 378, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 3, 644, 322, 0, 1202, 1213, 3, 80, 40, 0, 1203, 1210, 3, 98, 49, 0, 1204, 1206, 5, 868, 0, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 3, 98, 49, 0, 1208, 1205, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1203, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1216, 1, 0, 0, 0, 1215, 1217, 3, 104, 52, 0, 1216, 1215, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1272, 1, 0, 0, 0, 1218, 1220, 5, 34, 0, 0, 1219, 1221, 5, 660, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 5, 173, 0, 0, 1223, 1225, 3, 756, 378, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1228, 3, 644, 322, 0, 1227, 1229, 3, 80, 40, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1240, 1, 0, 0, 0, 1230, 1237, 3, 98, 49, 0, 1231, 1233, 5, 868, 0, 0, 1232, 1231, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1236, 3, 98, 49, 0, 1235, 1232, 1, 0, 0, 0, 1236, 1239, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1241, 1, 0, 0, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1230, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1243, 1, 0, 0, 0, 1242, 1244, 3, 104, 52, 0, 1243, 1242, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1246, 1, 0, 0, 0, 1245, 1247, 7, 6, 0, 0, 1246, 1245, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1249, 1, 0, 0, 0, 1248, 1250, 5, 13, 0, 0, 1249, 1248, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 3, 204, 102, 0, 1252, 1272, 1, 0, 0, 0, 1253, 1255, 5, 34, 0, 0, 1254, 1256, 5, 660, 0, 0, 1255, 1254, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1259, 5, 173, 0, 0, 1258, 1260, 3, 756, 378, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1269, 3, 644, 322, 0, 1262, 1263, 5, 99, 0, 0, 1263, 1270, 3, 648, 324, 0, 1264, 1265, 5, 866, 0, 0, 1265, 1266, 5, 99, 0, 0, 1266, 1267, 3, 648, 324, 0, 1267, 1268, 5, 867, 0, 0, 1268, 1270, 1, 0, 0, 0, 1269, 1262, 1, 0, 0, 0, 1269, 1264, 1, 0, 0, 0, 1270, 1272, 1, 0, 0, 0, 1271, 1193, 1, 0, 0, 0, 1271, 1218, 1, 0, 0, 0, 1271, 1253, 1, 0, 0, 0, 1272, 39, 1, 0, 0, 0, 1273, 1275, 5, 34, 0, 0, 1274, 1276, 5, 180, 0, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1278, 5, 658, 0, 0, 1278, 1282, 3, 660, 330, 0, 1279, 1280, 5, 6, 0, 0, 1280, 1281, 5, 361, 0, 0, 1281, 1283, 5, 882, 0, 0, 1282, 1279, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1289, 1, 0, 0, 0, 1284, 1286, 5, 314, 0, 0, 1285, 1287, 5, 857, 0, 0, 1286, 1285, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 3, 710, 355, 0, 1289, 1284, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1294, 1, 0, 0, 0, 1291, 1292, 5, 399, 0, 0, 1292, 1293, 5, 857, 0, 0, 1293, 1295, 3, 710, 355, 0, 1294, 1291, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1301, 1, 0, 0, 0, 1296, 1298, 5, 380, 0, 0, 1297, 1299, 5, 857, 0, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 3, 688, 344, 0, 1301, 1296, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1308, 1, 0, 0, 0, 1303, 1305, 5, 825, 0, 0, 1304, 1306, 5, 857, 0, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1309, 5, 882, 0, 0, 1308, 1303, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 41, 1, 0, 0, 0, 1310, 1312, 5, 34, 0, 0, 1311, 1313, 5, 180, 0, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 5, 658, 0, 0, 1315, 1316, 3, 660, 330, 0, 1316, 1317, 5, 6, 0, 0, 1317, 1318, 5, 361, 0, 0, 1318, 1319, 5, 882, 0, 0, 1319, 1320, 5, 187, 0, 0, 1320, 1321, 5, 451, 0, 0, 1321, 1322, 5, 74, 0, 0, 1322, 1328, 3, 702, 351, 0, 1323, 1325, 5, 393, 0, 0, 1324, 1326, 5, 857, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1329, 3, 710, 355, 0, 1328, 1323, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1335, 1, 0, 0, 0, 1330, 1332, 5, 428, 0, 0, 1331, 1333, 5, 857, 0, 0, 1332, 1331, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1336, 3, 710, 355, 0, 1335, 1330, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1342, 1, 0, 0, 0, 1337, 1339, 5, 314, 0, 0, 1338, 1340, 5, 857, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1343, 3, 710, 355, 0, 1342, 1337, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1349, 1, 0, 0, 0, 1344, 1346, 5, 481, 0, 0, 1345, 1347, 5, 857, 0, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1350, 3, 710, 355, 0, 1349, 1344, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1356, 1, 0, 0, 0, 1351, 1353, 5, 504, 0, 0, 1352, 1354, 5, 857, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1357, 3, 702, 351, 0, 1356, 1351, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1359, 1, 0, 0, 0, 1358, 1360, 5, 687, 0, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1366, 1, 0, 0, 0, 1361, 1363, 5, 340, 0, 0, 1362, 1364, 5, 857, 0, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 5, 882, 0, 0, 1366, 1361, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1370, 5, 380, 0, 0, 1369, 1371, 5, 857, 0, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 3, 688, 344, 0, 1373, 43, 1, 0, 0, 0, 1374, 1376, 5, 34, 0, 0, 1375, 1377, 3, 58, 29, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1380, 5, 178, 0, 0, 1379, 1381, 3, 756, 378, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1383, 3, 698, 349, 0, 1383, 1384, 7, 7, 0, 0, 1384, 1385, 7, 8, 0, 0, 1385, 1386, 5, 119, 0, 0, 1386, 1387, 3, 648, 324, 0, 1387, 1388, 5, 65, 0, 0, 1388, 1389, 5, 52, 0, 0, 1389, 1392, 5, 586, 0, 0, 1390, 1391, 7, 9, 0, 0, 1391, 1393, 3, 698, 349, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1395, 3, 416, 208, 0, 1395, 45, 1, 0, 0, 0, 1396, 1398, 5, 194, 0, 0, 1397, 1399, 5, 552, 0, 0, 1398, 1397, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 3, 48, 24, 0, 1401, 47, 1, 0, 0, 0, 1402, 1414, 3, 702, 351, 0, 1403, 1404, 5, 866, 0, 0, 1404, 1409, 3, 702, 351, 0, 1405, 1406, 5, 868, 0, 0, 1406, 1408, 3, 702, 351, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1411, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1412, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1413, 5, 867, 0, 0, 1413, 1415, 1, 0, 0, 0, 1414, 1403, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1417, 5, 13, 0, 0, 1417, 1418, 5, 866, 0, 0, 1418, 1419, 3, 10, 5, 0, 1419, 1422, 5, 867, 0, 0, 1420, 1421, 5, 868, 0, 0, 1421, 1423, 3, 48, 24, 0, 1422, 1420, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 49, 1, 0, 0, 0, 1424, 1426, 5, 34, 0, 0, 1425, 1427, 3, 758, 379, 0, 1426, 1425, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1431, 1, 0, 0, 0, 1428, 1429, 5, 308, 0, 0, 1429, 1430, 5, 857, 0, 0, 1430, 1432, 7, 10, 0, 0, 1431, 1428, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1434, 1, 0, 0, 0, 1433, 1435, 3, 58, 29, 0, 1434, 1433, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1439, 1, 0, 0, 0, 1436, 1437, 5, 162, 0, 0, 1437, 1438, 5, 591, 0, 0, 1438, 1440, 7, 11, 0, 0, 1439, 1436, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 5, 684, 0, 0, 1442, 1447, 3, 630, 315, 0, 1443, 1444, 5, 866, 0, 0, 1444, 1445, 3, 656, 328, 0, 1445, 1446, 5, 867, 0, 0, 1446, 1448, 1, 0, 0, 0, 1447, 1443, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1469, 5, 13, 0, 0, 1450, 1452, 5, 866, 0, 0, 1451, 1453, 3, 46, 23, 0, 1452, 1451, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 3, 204, 102, 0, 1455, 1456, 5, 867, 0, 0, 1456, 1470, 1, 0, 0, 0, 1457, 1459, 3, 46, 23, 0, 1458, 1457, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1467, 3, 204, 102, 0, 1461, 1463, 5, 194, 0, 0, 1462, 1464, 7, 12, 0, 0, 1463, 1462, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 5, 27, 0, 0, 1466, 1468, 5, 121, 0, 0, 1467, 1461, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1470, 1, 0, 0, 0, 1469, 1450, 1, 0, 0, 0, 1469, 1458, 1, 0, 0, 0, 1470, 51, 1, 0, 0, 0, 1471, 1473, 5, 42, 0, 0, 1472, 1471, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1476, 3, 54, 27, 0, 1475, 1477, 5, 857, 0, 0, 1476, 1475, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1480, 1, 0, 0, 0, 1478, 1481, 3, 684, 342, 0, 1479, 1481, 5, 42, 0, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1479, 1, 0, 0, 0, 1481, 1505, 1, 0, 0, 0, 1482, 1484, 5, 42, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1487, 5, 28, 0, 0, 1486, 1488, 5, 857, 0, 0, 1487, 1486, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1505, 3, 686, 343, 0, 1490, 1492, 5, 42, 0, 0, 1491, 1490, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1495, 5, 376, 0, 0, 1494, 1496, 5, 857, 0, 0, 1495, 1494, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1505, 5, 882, 0, 0, 1498, 1499, 5, 135, 0, 0, 1499, 1501, 5, 515, 0, 0, 1500, 1502, 5, 857, 0, 0, 1501, 1500, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1505, 7, 13, 0, 0, 1504, 1472, 1, 0, 0, 0, 1504, 1483, 1, 0, 0, 0, 1504, 1491, 1, 0, 0, 0, 1504, 1498, 1, 0, 0, 0, 1505, 53, 1, 0, 0, 0, 1506, 1507, 5, 26, 0, 0, 1507, 1512, 5, 155, 0, 0, 1508, 1512, 5, 823, 0, 0, 1509, 1510, 5, 224, 0, 0, 1510, 1512, 5, 155, 0, 0, 1511, 1506, 1, 0, 0, 0, 1511, 1508, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1512, 55, 1, 0, 0, 0, 1513, 1516, 7, 14, 0, 0, 1514, 1515, 5, 866, 0, 0, 1515, 1517, 5, 867, 0, 0, 1516, 1514, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 57, 1, 0, 0, 0, 1518, 1519, 5, 364, 0, 0, 1519, 1522, 5, 857, 0, 0, 1520, 1523, 3, 680, 340, 0, 1521, 1523, 3, 56, 28, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1521, 1, 0, 0, 0, 1523, 59, 1, 0, 0, 0, 1524, 1525, 5, 311, 0, 0, 1525, 1529, 3, 62, 31, 0, 1526, 1528, 3, 64, 32, 0, 1527, 1526, 1, 0, 0, 0, 1528, 1531, 1, 0, 0, 0, 1529, 1527, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1559, 1, 0, 0, 0, 1531, 1529, 1, 0, 0, 0, 1532, 1535, 5, 387, 0, 0, 1533, 1536, 3, 708, 354, 0, 1534, 1536, 3, 800, 400, 0, 1535, 1533, 1, 0, 0, 0, 1535, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1546, 3, 66, 33, 0, 1538, 1539, 5, 641, 0, 0, 1539, 1543, 3, 62, 31, 0, 1540, 1542, 3, 64, 32, 0, 1541, 1540, 1, 0, 0, 0, 1542, 1545, 1, 0, 0, 0, 1543, 1541, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1547, 1, 0, 0, 0, 1545, 1543, 1, 0, 0, 0, 1546, 1538, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1556, 1, 0, 0, 0, 1548, 1549, 5, 379, 0, 0, 1549, 1553, 3, 62, 31, 0, 1550, 1552, 3, 64, 32, 0, 1551, 1550, 1, 0, 0, 0, 1552, 1555, 1, 0, 0, 0, 1553, 1551, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1557, 1, 0, 0, 0, 1555, 1553, 1, 0, 0, 0, 1556, 1548, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1559, 1, 0, 0, 0, 1558, 1524, 1, 0, 0, 0, 1558, 1532, 1, 0, 0, 0, 1559, 61, 1, 0, 0, 0, 1560, 1565, 5, 287, 0, 0, 1561, 1565, 3, 712, 356, 0, 1562, 1565, 3, 708, 354, 0, 1563, 1565, 3, 800, 400, 0, 1564, 1560, 1, 0, 0, 0, 1564, 1561, 1, 0, 0, 0, 1564, 1562, 1, 0, 0, 0, 1564, 1563, 1, 0, 0, 0, 1565, 63, 1, 0, 0, 0, 1566, 1567, 5, 853, 0, 0, 1567, 1570, 5, 87, 0, 0, 1568, 1571, 3, 708, 354, 0, 1569, 1571, 3, 800, 400, 0, 1570, 1568, 1, 0, 0, 0, 1570, 1569, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 66, 33, 0, 1573, 65, 1, 0, 0, 0, 1574, 1588, 3, 826, 413, 0, 1575, 1588, 5, 223, 0, 0, 1576, 1588, 5, 242, 0, 0, 1577, 1588, 5, 243, 0, 0, 1578, 1588, 5, 244, 0, 0, 1579, 1588, 5, 245, 0, 0, 1580, 1588, 5, 246, 0, 0, 1581, 1588, 5, 247, 0, 0, 1582, 1588, 5, 248, 0, 0, 1583, 1588, 5, 249, 0, 0, 1584, 1588, 5, 250, 0, 0, 1585, 1588, 5, 251, 0, 0, 1586, 1588, 5, 252, 0, 0, 1587, 1574, 1, 0, 0, 0, 1587, 1575, 1, 0, 0, 0, 1587, 1576, 1, 0, 0, 0, 1587, 1577, 1, 0, 0, 0, 1587, 1578, 1, 0, 0, 0, 1587, 1579, 1, 0, 0, 0, 1587, 1580, 1, 0, 0, 0, 1587, 1581, 1, 0, 0, 0, 1587, 1582, 1, 0, 0, 0, 1587, 1583, 1, 0, 0, 0, 1587, 1584, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1586, 1, 0, 0, 0, 1588, 67, 1, 0, 0, 0, 1589, 1595, 5, 375, 0, 0, 1590, 1595, 5, 368, 0, 0, 1591, 1592, 5, 368, 0, 0, 1592, 1593, 5, 119, 0, 0, 1593, 1595, 5, 598, 0, 0, 1594, 1589, 1, 0, 0, 0, 1594, 1590, 1, 0, 0, 0, 1594, 1591, 1, 0, 0, 0, 1595, 69, 1, 0, 0, 0, 1596, 1597, 5, 188, 0, 0, 1597, 1598, 7, 15, 0, 0, 1598, 71, 1, 0, 0, 0, 1599, 1601, 5, 443, 0, 0, 1600, 1602, 5, 857, 0, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1622, 3, 710, 355, 0, 1604, 1622, 3, 70, 35, 0, 1605, 1606, 5, 194, 0, 0, 1606, 1607, 5, 525, 0, 0, 1607, 1622, 3, 702, 351, 0, 1608, 1609, 5, 340, 0, 0, 1609, 1622, 5, 882, 0, 0, 1610, 1622, 7, 16, 0, 0, 1611, 1613, 5, 825, 0, 0, 1612, 1614, 5, 857, 0, 0, 1613, 1612, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1622, 5, 882, 0, 0, 1616, 1618, 5, 833, 0, 0, 1617, 1619, 5, 857, 0, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1622, 5, 882, 0, 0, 1621, 1599, 1, 0, 0, 0, 1621, 1604, 1, 0, 0, 0, 1621, 1605, 1, 0, 0, 0, 1621, 1608, 1, 0, 0, 0, 1621, 1610, 1, 0, 0, 0, 1621, 1611, 1, 0, 0, 0, 1621, 1616, 1, 0, 0, 0, 1622, 73, 1, 0, 0, 0, 1623, 1625, 7, 17, 0, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 3, 702, 351, 0, 1627, 1628, 3, 722, 361, 0, 1628, 75, 1, 0, 0, 0, 1629, 1630, 5, 340, 0, 0, 1630, 1653, 5, 882, 0, 0, 1631, 1632, 5, 444, 0, 0, 1632, 1653, 5, 162, 0, 0, 1633, 1635, 5, 114, 0, 0, 1634, 1633, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1653, 5, 47, 0, 0, 1637, 1638, 5, 354, 0, 0, 1638, 1648, 5, 162, 0, 0, 1639, 1640, 5, 502, 0, 0, 1640, 1648, 5, 162, 0, 0, 1641, 1642, 5, 136, 0, 0, 1642, 1643, 5, 162, 0, 0, 1643, 1648, 5, 360, 0, 0, 1644, 1645, 5, 112, 0, 0, 1645, 1646, 5, 162, 0, 0, 1646, 1648, 5, 360, 0, 0, 1647, 1637, 1, 0, 0, 0, 1647, 1639, 1, 0, 0, 0, 1647, 1641, 1, 0, 0, 0, 1647, 1644, 1, 0, 0, 0, 1648, 1653, 1, 0, 0, 0, 1649, 1650, 5, 162, 0, 0, 1650, 1651, 5, 591, 0, 0, 1651, 1653, 7, 11, 0, 0, 1652, 1629, 1, 0, 0, 0, 1652, 1631, 1, 0, 0, 0, 1652, 1634, 1, 0, 0, 0, 1652, 1647, 1, 0, 0, 0, 1652, 1649, 1, 0, 0, 0, 1653, 77, 1, 0, 0, 0, 1654, 1655, 5, 421, 0, 0, 1655, 1669, 5, 882, 0, 0, 1656, 1657, 5, 39, 0, 0, 1657, 1669, 5, 882, 0, 0, 1658, 1659, 5, 678, 0, 0, 1659, 1669, 5, 882, 0, 0, 1660, 1661, 5, 529, 0, 0, 1661, 1669, 5, 882, 0, 0, 1662, 1663, 5, 601, 0, 0, 1663, 1669, 5, 882, 0, 0, 1664, 1665, 5, 519, 0, 0, 1665, 1669, 5, 882, 0, 0, 1666, 1667, 5, 537, 0, 0, 1667, 1669, 3, 708, 354, 0, 1668, 1654, 1, 0, 0, 0, 1668, 1656, 1, 0, 0, 0, 1668, 1658, 1, 0, 0, 0, 1668, 1660, 1, 0, 0, 0, 1668, 1662, 1, 0, 0, 0, 1668, 1664, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1669, 79, 1, 0, 0, 0, 1670, 1671, 5, 866, 0, 0, 1671, 1676, 3, 82, 41, 0, 1672, 1673, 5, 868, 0, 0, 1673, 1675, 3, 82, 41, 0, 1674, 1672, 1, 0, 0, 0, 1675, 1678, 1, 0, 0, 0, 1676, 1674, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1680, 5, 867, 0, 0, 1680, 81, 1, 0, 0, 0, 1681, 1682, 3, 658, 329, 0, 1682, 1683, 3, 88, 44, 0, 1683, 1765, 1, 0, 0, 0, 1684, 1686, 7, 18, 0, 0, 1685, 1687, 3, 638, 319, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1689, 1, 0, 0, 0, 1688, 1690, 3, 70, 35, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1695, 3, 734, 367, 0, 1692, 1694, 3, 72, 36, 0, 1693, 1692, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1765, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1700, 7, 19, 0, 0, 1699, 1701, 7, 18, 0, 0, 1700, 1699, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1703, 1, 0, 0, 0, 1702, 1704, 3, 638, 319, 0, 1703, 1702, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1709, 3, 734, 367, 0, 1706, 1708, 3, 72, 36, 0, 1707, 1706, 1, 0, 0, 0, 1708, 1711, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1765, 1, 0, 0, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1714, 3, 86, 43, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 5, 131, 0, 0, 1716, 1718, 5, 92, 0, 0, 1717, 1719, 3, 70, 35, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1724, 3, 734, 367, 0, 1721, 1723, 3, 72, 36, 0, 1722, 1721, 1, 0, 0, 0, 1723, 1726, 1, 0, 0, 0, 1724, 1722, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1765, 1, 0, 0, 0, 1726, 1724, 1, 0, 0, 0, 1727, 1729, 3, 86, 43, 0, 1728, 1727, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1732, 5, 182, 0, 0, 1731, 1733, 7, 18, 0, 0, 1732, 1731, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1735, 1, 0, 0, 0, 1734, 1736, 3, 638, 319, 0, 1735, 1734, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1738, 1, 0, 0, 0, 1737, 1739, 3, 70, 35, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1744, 3, 734, 367, 0, 1741, 1743, 3, 72, 36, 0, 1742, 1741, 1, 0, 0, 0, 1743, 1746, 1, 0, 0, 0, 1744, 1742, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1765, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 1749, 3, 86, 43, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 5, 67, 0, 0, 1751, 1753, 5, 92, 0, 0, 1752, 1754, 3, 638, 319, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 3, 734, 367, 0, 1756, 1757, 3, 92, 46, 0, 1757, 1765, 1, 0, 0, 0, 1758, 1759, 5, 27, 0, 0, 1759, 1760, 5, 866, 0, 0, 1760, 1761, 3, 800, 400, 0, 1761, 1762, 5, 867, 0, 0, 1762, 1765, 1, 0, 0, 0, 1763, 1765, 3, 84, 42, 0, 1764, 1681, 1, 0, 0, 0, 1764, 1684, 1, 0, 0, 0, 1764, 1698, 1, 0, 0, 0, 1764, 1713, 1, 0, 0, 0, 1764, 1728, 1, 0, 0, 0, 1764, 1748, 1, 0, 0, 0, 1764, 1758, 1, 0, 0, 0, 1764, 1763, 1, 0, 0, 0, 1765, 83, 1, 0, 0, 0, 1766, 1768, 3, 86, 43, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 5, 27, 0, 0, 1770, 1771, 5, 866, 0, 0, 1771, 1772, 3, 800, 400, 0, 1772, 1777, 5, 867, 0, 0, 1773, 1775, 5, 114, 0, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1778, 5, 57, 0, 0, 1777, 1774, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 85, 1, 0, 0, 0, 1779, 1781, 5, 31, 0, 0, 1780, 1782, 3, 702, 351, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 87, 1, 0, 0, 0, 1783, 1787, 3, 722, 361, 0, 1784, 1786, 3, 90, 45, 0, 1785, 1784, 1, 0, 0, 0, 1786, 1789, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 89, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1790, 1834, 3, 718, 359, 0, 1791, 1792, 5, 42, 0, 0, 1792, 1834, 3, 750, 375, 0, 1793, 1834, 5, 686, 0, 0, 1794, 1834, 5, 435, 0, 0, 1795, 1800, 5, 315, 0, 0, 1796, 1797, 5, 119, 0, 0, 1797, 1798, 5, 185, 0, 0, 1798, 1800, 3, 752, 376, 0, 1799, 1795, 1, 0, 0, 0, 1799, 1796, 1, 0, 0, 0, 1800, 1834, 1, 0, 0, 0, 1801, 1803, 5, 131, 0, 0, 1802, 1801, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1834, 5, 92, 0, 0, 1805, 1807, 5, 182, 0, 0, 1806, 1808, 5, 92, 0, 0, 1807, 1806, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1834, 1, 0, 0, 0, 1809, 1810, 5, 340, 0, 0, 1810, 1834, 5, 882, 0, 0, 1811, 1812, 5, 338, 0, 0, 1812, 1834, 7, 20, 0, 0, 1813, 1814, 5, 647, 0, 0, 1814, 1834, 7, 21, 0, 0, 1815, 1834, 3, 92, 46, 0, 1816, 1817, 5, 28, 0, 0, 1817, 1834, 3, 686, 343, 0, 1818, 1819, 5, 71, 0, 0, 1819, 1821, 5, 9, 0, 0, 1820, 1818, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 5, 13, 0, 0, 1823, 1824, 5, 866, 0, 0, 1824, 1825, 3, 800, 400, 0, 1825, 1827, 5, 867, 0, 0, 1826, 1828, 7, 22, 0, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1834, 1, 0, 0, 0, 1829, 1830, 5, 241, 0, 0, 1830, 1831, 5, 42, 0, 0, 1831, 1834, 5, 682, 0, 0, 1832, 1834, 3, 84, 42, 0, 1833, 1790, 1, 0, 0, 0, 1833, 1791, 1, 0, 0, 0, 1833, 1793, 1, 0, 0, 0, 1833, 1794, 1, 0, 0, 0, 1833, 1799, 1, 0, 0, 0, 1833, 1802, 1, 0, 0, 0, 1833, 1805, 1, 0, 0, 0, 1833, 1809, 1, 0, 0, 0, 1833, 1811, 1, 0, 0, 0, 1833, 1813, 1, 0, 0, 0, 1833, 1815, 1, 0, 0, 0, 1833, 1816, 1, 0, 0, 0, 1833, 1820, 1, 0, 0, 0, 1833, 1829, 1, 0, 0, 0, 1833, 1832, 1, 0, 0, 0, 1834, 91, 1, 0, 0, 0, 1835, 1836, 5, 138, 0, 0, 1836, 1838, 3, 648, 324, 0, 1837, 1839, 3, 734, 367, 0, 1838, 1837, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1841, 5, 110, 0, 0, 1841, 1843, 7, 23, 0, 0, 1842, 1840, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1845, 1, 0, 0, 0, 1844, 1846, 3, 94, 47, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 93, 1, 0, 0, 0, 1847, 1848, 5, 119, 0, 0, 1848, 1849, 5, 44, 0, 0, 1849, 1853, 3, 96, 48, 0, 1850, 1851, 5, 119, 0, 0, 1851, 1852, 5, 185, 0, 0, 1852, 1854, 3, 96, 48, 0, 1853, 1850, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1864, 1, 0, 0, 0, 1855, 1856, 5, 119, 0, 0, 1856, 1857, 5, 185, 0, 0, 1857, 1861, 3, 96, 48, 0, 1858, 1859, 5, 119, 0, 0, 1859, 1860, 5, 44, 0, 0, 1860, 1862, 3, 96, 48, 0, 1861, 1858, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1864, 1, 0, 0, 0, 1863, 1847, 1, 0, 0, 0, 1863, 1855, 1, 0, 0, 0, 1864, 95, 1, 0, 0, 0, 1865, 1874, 5, 146, 0, 0, 1866, 1874, 5, 22, 0, 0, 1867, 1868, 5, 155, 0, 0, 1868, 1874, 5, 116, 0, 0, 1869, 1870, 5, 502, 0, 0, 1870, 1874, 5, 305, 0, 0, 1871, 1872, 5, 155, 0, 0, 1872, 1874, 5, 42, 0, 0, 1873, 1865, 1, 0, 0, 0, 1873, 1866, 1, 0, 0, 0, 1873, 1867, 1, 0, 0, 0, 1873, 1869, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1874, 97, 1, 0, 0, 0, 1875, 1877, 5, 380, 0, 0, 1876, 1878, 5, 857, 0, 0, 1877, 1876, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1880, 1, 0, 0, 0, 1879, 1881, 3, 688, 344, 0, 1880, 1879, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 2061, 1, 0, 0, 0, 1882, 1884, 5, 825, 0, 0, 1883, 1885, 5, 857, 0, 0, 1884, 1883, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 2061, 5, 882, 0, 0, 1887, 1889, 5, 314, 0, 0, 1888, 1890, 5, 857, 0, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 2061, 3, 708, 354, 0, 1892, 1894, 5, 315, 0, 0, 1893, 1895, 5, 857, 0, 0, 1894, 1893, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 2061, 3, 708, 354, 0, 1897, 1899, 5, 316, 0, 0, 1898, 1900, 5, 857, 0, 0, 1899, 1898, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 2061, 3, 708, 354, 0, 1902, 1904, 5, 42, 0, 0, 1903, 1902, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1907, 3, 54, 27, 0, 1906, 1908, 5, 857, 0, 0, 1907, 1906, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1911, 1, 0, 0, 0, 1909, 1912, 3, 684, 342, 0, 1910, 1912, 5, 42, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 2061, 1, 0, 0, 0, 1913, 1915, 7, 24, 0, 0, 1914, 1916, 5, 857, 0, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 2061, 7, 25, 0, 0, 1918, 1920, 5, 42, 0, 0, 1919, 1918, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1923, 5, 28, 0, 0, 1922, 1924, 5, 857, 0, 0, 1923, 1922, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 2061, 3, 686, 343, 0, 1926, 1928, 5, 340, 0, 0, 1927, 1929, 5, 857, 0, 0, 1928, 1927, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 2061, 5, 882, 0, 0, 1931, 1933, 5, 346, 0, 0, 1932, 1934, 5, 857, 0, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 2061, 7, 26, 0, 0, 1936, 1938, 5, 349, 0, 0, 1937, 1939, 5, 857, 0, 0, 1938, 1937, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 2061, 5, 882, 0, 0, 1941, 1942, 7, 27, 0, 0, 1942, 1944, 5, 367, 0, 0, 1943, 1945, 5, 857, 0, 0, 1944, 1943, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 2061, 5, 882, 0, 0, 1947, 1949, 5, 365, 0, 0, 1948, 1950, 5, 857, 0, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 2061, 7, 25, 0, 0, 1952, 1954, 5, 376, 0, 0, 1953, 1955, 5, 857, 0, 0, 1954, 1953, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 2061, 5, 882, 0, 0, 1957, 1959, 7, 28, 0, 0, 1958, 1960, 5, 857, 0, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 2061, 7, 25, 0, 0, 1962, 1964, 7, 29, 0, 0, 1963, 1965, 5, 857, 0, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 2061, 3, 708, 354, 0, 1967, 1969, 5, 377, 0, 0, 1968, 1970, 5, 857, 0, 0, 1969, 1968, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 2061, 3, 708, 354, 0, 1972, 1973, 5, 82, 0, 0, 1973, 1975, 5, 367, 0, 0, 1974, 1976, 5, 857, 0, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 2061, 5, 882, 0, 0, 1978, 1980, 5, 431, 0, 0, 1979, 1981, 5, 857, 0, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 2061, 7, 30, 0, 0, 1983, 1985, 5, 443, 0, 0, 1984, 1986, 5, 857, 0, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 2061, 3, 710, 355, 0, 1988, 1990, 5, 480, 0, 0, 1989, 1991, 5, 857, 0, 0, 1990, 1989, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 2061, 3, 708, 354, 0, 1993, 1995, 5, 490, 0, 0, 1994, 1996, 5, 857, 0, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2061, 3, 708, 354, 0, 1998, 2000, 5, 520, 0, 0, 1999, 2001, 5, 857, 0, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2061, 7, 13, 0, 0, 2003, 2005, 5, 529, 0, 0, 2004, 2006, 5, 857, 0, 0, 2005, 2004, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2061, 5, 882, 0, 0, 2008, 2010, 5, 588, 0, 0, 2009, 2011, 5, 857, 0, 0, 2010, 2009, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2061, 7, 31, 0, 0, 2013, 2014, 5, 640, 0, 0, 2014, 2061, 5, 664, 0, 0, 2015, 2017, 5, 833, 0, 0, 2016, 2018, 5, 857, 0, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2061, 5, 882, 0, 0, 2020, 2022, 5, 642, 0, 0, 2021, 2023, 5, 857, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2061, 7, 13, 0, 0, 2025, 2027, 5, 643, 0, 0, 2026, 2028, 5, 857, 0, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2061, 7, 13, 0, 0, 2030, 2032, 5, 644, 0, 0, 2031, 2033, 5, 857, 0, 0, 2032, 2031, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2037, 5, 42, 0, 0, 2035, 2037, 3, 708, 354, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2035, 1, 0, 0, 0, 2037, 2061, 1, 0, 0, 0, 2038, 2039, 5, 658, 0, 0, 2039, 2041, 3, 662, 331, 0, 2040, 2042, 3, 102, 51, 0, 2041, 2040, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2061, 1, 0, 0, 0, 2043, 2044, 5, 659, 0, 0, 2044, 2045, 5, 857, 0, 0, 2045, 2061, 3, 100, 50, 0, 2046, 2061, 3, 102, 51, 0, 2047, 2049, 5, 665, 0, 0, 2048, 2050, 5, 857, 0, 0, 2049, 2048, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2061, 7, 25, 0, 0, 2052, 2054, 5, 181, 0, 0, 2053, 2055, 5, 857, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 5, 866, 0, 0, 2057, 2058, 3, 646, 323, 0, 2058, 2059, 5, 867, 0, 0, 2059, 2061, 1, 0, 0, 0, 2060, 1875, 1, 0, 0, 0, 2060, 1882, 1, 0, 0, 0, 2060, 1887, 1, 0, 0, 0, 2060, 1892, 1, 0, 0, 0, 2060, 1897, 1, 0, 0, 0, 2060, 1903, 1, 0, 0, 0, 2060, 1913, 1, 0, 0, 0, 2060, 1919, 1, 0, 0, 0, 2060, 1926, 1, 0, 0, 0, 2060, 1931, 1, 0, 0, 0, 2060, 1936, 1, 0, 0, 0, 2060, 1941, 1, 0, 0, 0, 2060, 1947, 1, 0, 0, 0, 2060, 1952, 1, 0, 0, 0, 2060, 1957, 1, 0, 0, 0, 2060, 1962, 1, 0, 0, 0, 2060, 1967, 1, 0, 0, 0, 2060, 1972, 1, 0, 0, 0, 2060, 1978, 1, 0, 0, 0, 2060, 1983, 1, 0, 0, 0, 2060, 1988, 1, 0, 0, 0, 2060, 1993, 1, 0, 0, 0, 2060, 1998, 1, 0, 0, 0, 2060, 2003, 1, 0, 0, 0, 2060, 2008, 1, 0, 0, 0, 2060, 2013, 1, 0, 0, 0, 2060, 2015, 1, 0, 0, 0, 2060, 2020, 1, 0, 0, 0, 2060, 2025, 1, 0, 0, 0, 2060, 2030, 1, 0, 0, 0, 2060, 2038, 1, 0, 0, 0, 2060, 2043, 1, 0, 0, 0, 2060, 2046, 1, 0, 0, 0, 2060, 2047, 1, 0, 0, 0, 2060, 2052, 1, 0, 0, 0, 2061, 99, 1, 0, 0, 0, 2062, 2063, 7, 32, 0, 0, 2063, 101, 1, 0, 0, 0, 2064, 2065, 5, 647, 0, 0, 2065, 2066, 7, 21, 0, 0, 2066, 103, 1, 0, 0, 0, 2067, 2068, 5, 130, 0, 0, 2068, 2069, 5, 20, 0, 0, 2069, 2072, 3, 106, 53, 0, 2070, 2071, 5, 528, 0, 0, 2071, 2073, 3, 708, 354, 0, 2072, 2070, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2081, 1, 0, 0, 0, 2074, 2075, 5, 652, 0, 0, 2075, 2076, 5, 20, 0, 0, 2076, 2079, 3, 108, 54, 0, 2077, 2078, 5, 653, 0, 0, 2078, 2080, 3, 708, 354, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2082, 1, 0, 0, 0, 2081, 2074, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2094, 1, 0, 0, 0, 2083, 2084, 5, 866, 0, 0, 2084, 2089, 3, 110, 55, 0, 2085, 2086, 5, 868, 0, 0, 2086, 2088, 3, 110, 55, 0, 2087, 2085, 1, 0, 0, 0, 2088, 2091, 1, 0, 0, 0, 2089, 2087, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2092, 1, 0, 0, 0, 2091, 2089, 1, 0, 0, 0, 2092, 2093, 5, 867, 0, 0, 2093, 2095, 1, 0, 0, 0, 2094, 2083, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 105, 1, 0, 0, 0, 2096, 2098, 5, 101, 0, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2100, 5, 418, 0, 0, 2100, 2101, 5, 866, 0, 0, 2101, 2102, 3, 800, 400, 0, 2102, 2103, 5, 867, 0, 0, 2103, 2143, 1, 0, 0, 0, 2104, 2106, 5, 101, 0, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2111, 5, 92, 0, 0, 2108, 2109, 5, 308, 0, 0, 2109, 2110, 5, 857, 0, 0, 2110, 2112, 7, 33, 0, 0, 2111, 2108, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 5, 866, 0, 0, 2114, 2116, 3, 656, 328, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2143, 5, 867, 0, 0, 2118, 2128, 5, 134, 0, 0, 2119, 2120, 5, 866, 0, 0, 2120, 2121, 3, 800, 400, 0, 2121, 2122, 5, 867, 0, 0, 2122, 2129, 1, 0, 0, 0, 2123, 2124, 5, 337, 0, 0, 2124, 2125, 5, 866, 0, 0, 2125, 2126, 3, 656, 328, 0, 2126, 2127, 5, 867, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2119, 1, 0, 0, 0, 2128, 2123, 1, 0, 0, 0, 2129, 2143, 1, 0, 0, 0, 2130, 2140, 5, 449, 0, 0, 2131, 2132, 5, 866, 0, 0, 2132, 2133, 3, 800, 400, 0, 2133, 2134, 5, 867, 0, 0, 2134, 2141, 1, 0, 0, 0, 2135, 2136, 5, 337, 0, 0, 2136, 2137, 5, 866, 0, 0, 2137, 2138, 3, 656, 328, 0, 2138, 2139, 5, 867, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2131, 1, 0, 0, 0, 2140, 2135, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2097, 1, 0, 0, 0, 2142, 2105, 1, 0, 0, 0, 2142, 2118, 1, 0, 0, 0, 2142, 2130, 1, 0, 0, 0, 2143, 107, 1, 0, 0, 0, 2144, 2146, 5, 101, 0, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2148, 5, 418, 0, 0, 2148, 2149, 5, 866, 0, 0, 2149, 2150, 3, 800, 400, 0, 2150, 2151, 5, 867, 0, 0, 2151, 2166, 1, 0, 0, 0, 2152, 2154, 5, 101, 0, 0, 2153, 2152, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2159, 5, 92, 0, 0, 2156, 2157, 5, 308, 0, 0, 2157, 2158, 5, 857, 0, 0, 2158, 2160, 7, 33, 0, 0, 2159, 2156, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2162, 5, 866, 0, 0, 2162, 2163, 3, 656, 328, 0, 2163, 2164, 5, 867, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2145, 1, 0, 0, 0, 2165, 2153, 1, 0, 0, 0, 2166, 109, 1, 0, 0, 0, 2167, 2168, 5, 130, 0, 0, 2168, 2169, 3, 668, 334, 0, 2169, 2170, 5, 189, 0, 0, 2170, 2171, 5, 447, 0, 0, 2171, 2172, 5, 662, 0, 0, 2172, 2173, 5, 866, 0, 0, 2173, 2178, 3, 112, 56, 0, 2174, 2175, 5, 868, 0, 0, 2175, 2177, 3, 112, 56, 0, 2176, 2174, 1, 0, 0, 0, 2177, 2180, 1, 0, 0, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2181, 1, 0, 0, 0, 2180, 2178, 1, 0, 0, 0, 2181, 2185, 5, 867, 0, 0, 2182, 2184, 3, 118, 59, 0, 2183, 2182, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2199, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2189, 5, 866, 0, 0, 2189, 2194, 3, 116, 58, 0, 2190, 2191, 5, 868, 0, 0, 2191, 2193, 3, 116, 58, 0, 2192, 2190, 1, 0, 0, 0, 2193, 2196, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2197, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2198, 5, 867, 0, 0, 2198, 2200, 1, 0, 0, 0, 2199, 2188, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2314, 1, 0, 0, 0, 2201, 2202, 5, 130, 0, 0, 2202, 2203, 3, 668, 334, 0, 2203, 2204, 5, 189, 0, 0, 2204, 2205, 5, 447, 0, 0, 2205, 2206, 5, 662, 0, 0, 2206, 2210, 3, 112, 56, 0, 2207, 2209, 3, 118, 59, 0, 2208, 2207, 1, 0, 0, 0, 2209, 2212, 1, 0, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2224, 1, 0, 0, 0, 2212, 2210, 1, 0, 0, 0, 2213, 2214, 5, 866, 0, 0, 2214, 2219, 3, 116, 58, 0, 2215, 2216, 5, 868, 0, 0, 2216, 2218, 3, 116, 58, 0, 2217, 2215, 1, 0, 0, 0, 2218, 2221, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2222, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2222, 2223, 5, 867, 0, 0, 2223, 2225, 1, 0, 0, 0, 2224, 2213, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2314, 1, 0, 0, 0, 2226, 2227, 5, 130, 0, 0, 2227, 2228, 3, 668, 334, 0, 2228, 2229, 5, 189, 0, 0, 2229, 2230, 5, 80, 0, 0, 2230, 2231, 5, 866, 0, 0, 2231, 2236, 3, 112, 56, 0, 2232, 2233, 5, 868, 0, 0, 2233, 2235, 3, 112, 56, 0, 2234, 2232, 1, 0, 0, 0, 2235, 2238, 1, 0, 0, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2239, 1, 0, 0, 0, 2238, 2236, 1, 0, 0, 0, 2239, 2243, 5, 867, 0, 0, 2240, 2242, 3, 118, 59, 0, 2241, 2240, 1, 0, 0, 0, 2242, 2245, 1, 0, 0, 0, 2243, 2241, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2257, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2246, 2247, 5, 866, 0, 0, 2247, 2252, 3, 116, 58, 0, 2248, 2249, 5, 868, 0, 0, 2249, 2251, 3, 116, 58, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2254, 1, 0, 0, 0, 2252, 2250, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 2255, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2255, 2256, 5, 867, 0, 0, 2256, 2258, 1, 0, 0, 0, 2257, 2246, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2314, 1, 0, 0, 0, 2259, 2260, 5, 130, 0, 0, 2260, 2261, 3, 668, 334, 0, 2261, 2262, 5, 189, 0, 0, 2262, 2263, 5, 80, 0, 0, 2263, 2264, 5, 866, 0, 0, 2264, 2269, 3, 114, 57, 0, 2265, 2266, 5, 868, 0, 0, 2266, 2268, 3, 114, 57, 0, 2267, 2265, 1, 0, 0, 0, 2268, 2271, 1, 0, 0, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2272, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2272, 2276, 5, 867, 0, 0, 2273, 2275, 3, 118, 59, 0, 2274, 2273, 1, 0, 0, 0, 2275, 2278, 1, 0, 0, 0, 2276, 2274, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2290, 1, 0, 0, 0, 2278, 2276, 1, 0, 0, 0, 2279, 2280, 5, 866, 0, 0, 2280, 2285, 3, 116, 58, 0, 2281, 2282, 5, 868, 0, 0, 2282, 2284, 3, 116, 58, 0, 2283, 2281, 1, 0, 0, 0, 2284, 2287, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2288, 1, 0, 0, 0, 2287, 2285, 1, 0, 0, 0, 2288, 2289, 5, 867, 0, 0, 2289, 2291, 1, 0, 0, 0, 2290, 2279, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2314, 1, 0, 0, 0, 2292, 2293, 5, 130, 0, 0, 2293, 2297, 3, 668, 334, 0, 2294, 2296, 3, 118, 59, 0, 2295, 2294, 1, 0, 0, 0, 2296, 2299, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2311, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2301, 5, 866, 0, 0, 2301, 2306, 3, 116, 58, 0, 2302, 2303, 5, 868, 0, 0, 2303, 2305, 3, 116, 58, 0, 2304, 2302, 1, 0, 0, 0, 2305, 2308, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, 2309, 1, 0, 0, 0, 2308, 2306, 1, 0, 0, 0, 2309, 2310, 5, 867, 0, 0, 2310, 2312, 1, 0, 0, 0, 2311, 2300, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2314, 1, 0, 0, 0, 2313, 2167, 1, 0, 0, 0, 2313, 2201, 1, 0, 0, 0, 2313, 2226, 1, 0, 0, 0, 2313, 2259, 1, 0, 0, 0, 2313, 2292, 1, 0, 0, 0, 2314, 111, 1, 0, 0, 0, 2315, 2319, 3, 720, 360, 0, 2316, 2319, 3, 800, 400, 0, 2317, 2319, 5, 111, 0, 0, 2318, 2315, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2318, 2317, 1, 0, 0, 0, 2319, 113, 1, 0, 0, 0, 2320, 2321, 5, 866, 0, 0, 2321, 2324, 3, 112, 56, 0, 2322, 2323, 5, 868, 0, 0, 2323, 2325, 3, 112, 56, 0, 2324, 2322, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2329, 5, 867, 0, 0, 2329, 115, 1, 0, 0, 0, 2330, 2331, 5, 652, 0, 0, 2331, 2335, 3, 702, 351, 0, 2332, 2334, 3, 118, 59, 0, 2333, 2332, 1, 0, 0, 0, 2334, 2337, 1, 0, 0, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 117, 1, 0, 0, 0, 2337, 2335, 1, 0, 0, 0, 2338, 2340, 5, 42, 0, 0, 2339, 2338, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 2342, 1, 0, 0, 0, 2341, 2343, 5, 647, 0, 0, 2342, 2341, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2346, 5, 380, 0, 0, 2345, 2347, 5, 857, 0, 0, 2346, 2345, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2387, 3, 688, 344, 0, 2349, 2351, 5, 340, 0, 0, 2350, 2352, 5, 857, 0, 0, 2351, 2350, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2387, 5, 882, 0, 0, 2354, 2355, 5, 360, 0, 0, 2355, 2357, 5, 367, 0, 0, 2356, 2358, 5, 857, 0, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2387, 5, 882, 0, 0, 2360, 2361, 5, 82, 0, 0, 2361, 2363, 5, 367, 0, 0, 2362, 2364, 5, 857, 0, 0, 2363, 2362, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2387, 5, 882, 0, 0, 2366, 2368, 5, 480, 0, 0, 2367, 2369, 5, 857, 0, 0, 2368, 2367, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2387, 3, 708, 354, 0, 2371, 2373, 5, 490, 0, 0, 2372, 2374, 5, 857, 0, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2387, 3, 708, 354, 0, 2376, 2378, 5, 658, 0, 0, 2377, 2379, 5, 857, 0, 0, 2378, 2377, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2387, 3, 662, 331, 0, 2381, 2383, 5, 504, 0, 0, 2382, 2384, 5, 857, 0, 0, 2383, 2382, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2387, 3, 702, 351, 0, 2386, 2339, 1, 0, 0, 0, 2386, 2349, 1, 0, 0, 0, 2386, 2354, 1, 0, 0, 0, 2386, 2360, 1, 0, 0, 0, 2386, 2366, 1, 0, 0, 0, 2386, 2371, 1, 0, 0, 0, 2386, 2376, 1, 0, 0, 0, 2386, 2381, 1, 0, 0, 0, 2387, 119, 1, 0, 0, 0, 2388, 2389, 5, 8, 0, 0, 2389, 2391, 7, 0, 0, 0, 2390, 2392, 3, 624, 312, 0, 2391, 2390, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2394, 1, 0, 0, 0, 2393, 2395, 3, 52, 26, 0, 2394, 2393, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2407, 1, 0, 0, 0, 2398, 2399, 5, 8, 0, 0, 2399, 2400, 7, 0, 0, 0, 2400, 2401, 3, 624, 312, 0, 2401, 2402, 5, 677, 0, 0, 2402, 2403, 5, 360, 0, 0, 2403, 2404, 5, 367, 0, 0, 2404, 2405, 5, 496, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2388, 1, 0, 0, 0, 2406, 2398, 1, 0, 0, 0, 2407, 121, 1, 0, 0, 0, 2408, 2410, 5, 8, 0, 0, 2409, 2411, 3, 58, 29, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2413, 5, 385, 0, 0, 2413, 2417, 3, 698, 349, 0, 2414, 2415, 5, 119, 0, 0, 2415, 2416, 5, 590, 0, 0, 2416, 2418, 3, 60, 30, 0, 2417, 2414, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2425, 1, 0, 0, 0, 2419, 2420, 5, 119, 0, 0, 2420, 2422, 5, 343, 0, 0, 2421, 2423, 5, 114, 0, 0, 2422, 2421, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2426, 5, 541, 0, 0, 2425, 2419, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2430, 1, 0, 0, 0, 2427, 2428, 5, 141, 0, 0, 2428, 2429, 5, 176, 0, 0, 2429, 2431, 3, 698, 349, 0, 2430, 2427, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2434, 3, 68, 34, 0, 2433, 2432, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2437, 1, 0, 0, 0, 2435, 2436, 5, 340, 0, 0, 2436, 2438, 5, 882, 0, 0, 2437, 2435, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2441, 1, 0, 0, 0, 2439, 2440, 5, 371, 0, 0, 2440, 2442, 3, 416, 208, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 123, 1, 0, 0, 0, 2443, 2444, 5, 8, 0, 0, 2444, 2445, 5, 409, 0, 0, 2445, 2449, 3, 628, 314, 0, 2446, 2448, 3, 76, 38, 0, 2447, 2446, 1, 0, 0, 0, 2448, 2451, 1, 0, 0, 0, 2449, 2447, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 125, 1, 0, 0, 0, 2451, 2449, 1, 0, 0, 0, 2452, 2453, 5, 8, 0, 0, 2453, 2454, 5, 433, 0, 0, 2454, 2455, 5, 585, 0, 0, 2455, 2456, 5, 801, 0, 0, 2456, 2457, 5, 453, 0, 0, 2457, 2458, 5, 92, 0, 0, 2458, 127, 1, 0, 0, 0, 2459, 2460, 5, 8, 0, 0, 2460, 2461, 5, 451, 0, 0, 2461, 2462, 5, 74, 0, 0, 2462, 2463, 3, 702, 351, 0, 2463, 2464, 5, 6, 0, 0, 2464, 2465, 5, 671, 0, 0, 2465, 2471, 5, 882, 0, 0, 2466, 2468, 5, 428, 0, 0, 2467, 2469, 5, 857, 0, 0, 2468, 2467, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2472, 3, 710, 355, 0, 2471, 2466, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, 2474, 1, 0, 0, 0, 2473, 2475, 5, 687, 0, 0, 2474, 2473, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 5, 380, 0, 0, 2477, 2479, 5, 857, 0, 0, 2478, 2477, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 2481, 3, 688, 344, 0, 2481, 129, 1, 0, 0, 0, 2482, 2483, 5, 8, 0, 0, 2483, 2484, 5, 132, 0, 0, 2484, 2488, 3, 698, 349, 0, 2485, 2487, 3, 76, 38, 0, 2486, 2485, 1, 0, 0, 0, 2487, 2490, 1, 0, 0, 0, 2488, 2486, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 131, 1, 0, 0, 0, 2490, 2488, 1, 0, 0, 0, 2491, 2492, 5, 8, 0, 0, 2492, 2493, 5, 592, 0, 0, 2493, 2494, 3, 702, 351, 0, 2494, 2495, 5, 518, 0, 0, 2495, 2496, 5, 866, 0, 0, 2496, 2501, 3, 78, 39, 0, 2497, 2498, 5, 868, 0, 0, 2498, 2500, 3, 78, 39, 0, 2499, 2497, 1, 0, 0, 0, 2500, 2503, 1, 0, 0, 0, 2501, 2499, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2504, 1, 0, 0, 0, 2503, 2501, 1, 0, 0, 0, 2504, 2505, 5, 867, 0, 0, 2505, 133, 1, 0, 0, 0, 2506, 2507, 5, 8, 0, 0, 2507, 2508, 5, 173, 0, 0, 2508, 2517, 3, 648, 324, 0, 2509, 2514, 3, 140, 70, 0, 2510, 2511, 5, 868, 0, 0, 2511, 2513, 3, 140, 70, 0, 2512, 2510, 1, 0, 0, 0, 2513, 2516, 1, 0, 0, 0, 2514, 2512, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2518, 1, 0, 0, 0, 2516, 2514, 1, 0, 0, 0, 2517, 2509, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2526, 1, 0, 0, 0, 2519, 2523, 3, 142, 71, 0, 2520, 2522, 3, 142, 71, 0, 2521, 2520, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2519, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 135, 1, 0, 0, 0, 2528, 2530, 5, 8, 0, 0, 2529, 2531, 5, 180, 0, 0, 2530, 2529, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2533, 5, 658, 0, 0, 2533, 2534, 3, 662, 331, 0, 2534, 2535, 7, 34, 0, 0, 2535, 2536, 5, 361, 0, 0, 2536, 2542, 5, 882, 0, 0, 2537, 2539, 5, 428, 0, 0, 2538, 2540, 5, 857, 0, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2541, 1, 0, 0, 0, 2541, 2543, 3, 710, 355, 0, 2542, 2537, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 5, 687, 0, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2550, 1, 0, 0, 0, 2547, 2548, 5, 141, 0, 0, 2548, 2549, 5, 176, 0, 0, 2549, 2551, 3, 660, 330, 0, 2550, 2547, 1, 0, 0, 0, 2550, 2551, 1, 0, 0, 0, 2551, 2557, 1, 0, 0, 0, 2552, 2554, 5, 314, 0, 0, 2553, 2555, 5, 857, 0, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2558, 3, 710, 355, 0, 2557, 2552, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2561, 1, 0, 0, 0, 2559, 2560, 5, 155, 0, 0, 2560, 2562, 7, 35, 0, 0, 2561, 2559, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2568, 1, 0, 0, 0, 2563, 2565, 5, 376, 0, 0, 2564, 2566, 5, 857, 0, 0, 2565, 2564, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 2569, 5, 882, 0, 0, 2568, 2563, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2575, 1, 0, 0, 0, 2570, 2572, 5, 380, 0, 0, 2571, 2573, 5, 857, 0, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 3, 688, 344, 0, 2575, 2570, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2582, 1, 0, 0, 0, 2577, 2579, 5, 825, 0, 0, 2578, 2580, 5, 857, 0, 0, 2579, 2578, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 5, 882, 0, 0, 2582, 2577, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 137, 1, 0, 0, 0, 2584, 2588, 5, 8, 0, 0, 2585, 2586, 5, 308, 0, 0, 2586, 2587, 5, 857, 0, 0, 2587, 2589, 7, 10, 0, 0, 2588, 2585, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2592, 3, 58, 29, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2596, 1, 0, 0, 0, 2593, 2594, 5, 162, 0, 0, 2594, 2595, 5, 591, 0, 0, 2595, 2597, 7, 11, 0, 0, 2596, 2593, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 5, 684, 0, 0, 2599, 2604, 3, 632, 316, 0, 2600, 2601, 5, 866, 0, 0, 2601, 2602, 3, 656, 328, 0, 2602, 2603, 5, 867, 0, 0, 2603, 2605, 1, 0, 0, 0, 2604, 2600, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 5, 13, 0, 0, 2607, 2614, 3, 204, 102, 0, 2608, 2610, 5, 194, 0, 0, 2609, 2611, 7, 12, 0, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2613, 5, 27, 0, 0, 2613, 2615, 5, 121, 0, 0, 2614, 2608, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 139, 1, 0, 0, 0, 2616, 2623, 3, 98, 49, 0, 2617, 2619, 5, 868, 0, 0, 2618, 2617, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 3, 98, 49, 0, 2621, 2618, 1, 0, 0, 0, 2622, 2625, 1, 0, 0, 0, 2623, 2621, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2881, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2626, 2628, 5, 6, 0, 0, 2627, 2629, 5, 29, 0, 0, 2628, 2627, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2631, 3, 658, 329, 0, 2631, 2635, 3, 88, 44, 0, 2632, 2636, 5, 402, 0, 0, 2633, 2634, 5, 306, 0, 0, 2634, 2636, 3, 658, 329, 0, 2635, 2632, 1, 0, 0, 0, 2635, 2633, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2881, 1, 0, 0, 0, 2637, 2639, 5, 6, 0, 0, 2638, 2640, 5, 29, 0, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 5, 866, 0, 0, 2642, 2643, 3, 658, 329, 0, 2643, 2650, 3, 88, 44, 0, 2644, 2645, 5, 868, 0, 0, 2645, 2646, 3, 658, 329, 0, 2646, 2647, 3, 88, 44, 0, 2647, 2649, 1, 0, 0, 0, 2648, 2644, 1, 0, 0, 0, 2649, 2652, 1, 0, 0, 0, 2650, 2648, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2650, 1, 0, 0, 0, 2653, 2654, 5, 867, 0, 0, 2654, 2881, 1, 0, 0, 0, 2655, 2656, 5, 6, 0, 0, 2656, 2658, 7, 18, 0, 0, 2657, 2659, 3, 638, 319, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 1, 0, 0, 0, 2660, 2662, 3, 70, 35, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2667, 3, 734, 367, 0, 2664, 2666, 3, 72, 36, 0, 2665, 2664, 1, 0, 0, 0, 2666, 2669, 1, 0, 0, 0, 2667, 2665, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2881, 1, 0, 0, 0, 2669, 2667, 1, 0, 0, 0, 2670, 2671, 5, 6, 0, 0, 2671, 2673, 7, 19, 0, 0, 2672, 2674, 7, 18, 0, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2676, 1, 0, 0, 0, 2675, 2677, 3, 638, 319, 0, 2676, 2675, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2682, 3, 734, 367, 0, 2679, 2681, 3, 72, 36, 0, 2680, 2679, 1, 0, 0, 0, 2681, 2684, 1, 0, 0, 0, 2682, 2680, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2881, 1, 0, 0, 0, 2684, 2682, 1, 0, 0, 0, 2685, 2690, 5, 6, 0, 0, 2686, 2688, 5, 31, 0, 0, 2687, 2689, 3, 702, 351, 0, 2688, 2687, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2691, 1, 0, 0, 0, 2690, 2686, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2693, 5, 131, 0, 0, 2693, 2695, 5, 92, 0, 0, 2694, 2696, 3, 70, 35, 0, 2695, 2694, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2701, 3, 734, 367, 0, 2698, 2700, 3, 72, 36, 0, 2699, 2698, 1, 0, 0, 0, 2700, 2703, 1, 0, 0, 0, 2701, 2699, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2881, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2704, 2709, 5, 6, 0, 0, 2705, 2707, 5, 31, 0, 0, 2706, 2708, 3, 702, 351, 0, 2707, 2706, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2710, 1, 0, 0, 0, 2709, 2705, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2711, 1, 0, 0, 0, 2711, 2713, 5, 182, 0, 0, 2712, 2714, 7, 18, 0, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2716, 1, 0, 0, 0, 2715, 2717, 3, 638, 319, 0, 2716, 2715, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2719, 1, 0, 0, 0, 2718, 2720, 3, 70, 35, 0, 2719, 2718, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2725, 3, 734, 367, 0, 2722, 2724, 3, 72, 36, 0, 2723, 2722, 1, 0, 0, 0, 2724, 2727, 1, 0, 0, 0, 2725, 2723, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2881, 1, 0, 0, 0, 2727, 2725, 1, 0, 0, 0, 2728, 2733, 5, 6, 0, 0, 2729, 2731, 5, 31, 0, 0, 2730, 2732, 3, 702, 351, 0, 2731, 2730, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2734, 1, 0, 0, 0, 2733, 2729, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2736, 5, 67, 0, 0, 2736, 2738, 5, 92, 0, 0, 2737, 2739, 3, 638, 319, 0, 2738, 2737, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2741, 3, 734, 367, 0, 2741, 2742, 3, 92, 46, 0, 2742, 2881, 1, 0, 0, 0, 2743, 2745, 5, 6, 0, 0, 2744, 2746, 3, 84, 42, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2881, 1, 0, 0, 0, 2747, 2748, 5, 51, 0, 0, 2748, 2749, 7, 36, 0, 0, 2749, 2881, 3, 702, 351, 0, 2750, 2751, 5, 8, 0, 0, 2751, 2752, 7, 36, 0, 0, 2752, 2754, 3, 702, 351, 0, 2753, 2755, 5, 114, 0, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2757, 1, 0, 0, 0, 2756, 2758, 5, 57, 0, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2881, 1, 0, 0, 0, 2759, 2761, 5, 308, 0, 0, 2760, 2762, 5, 857, 0, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2881, 7, 37, 0, 0, 2764, 2766, 5, 8, 0, 0, 2765, 2767, 5, 29, 0, 0, 2766, 2765, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 2776, 3, 658, 329, 0, 2769, 2770, 5, 155, 0, 0, 2770, 2771, 5, 42, 0, 0, 2771, 2777, 3, 750, 375, 0, 2772, 2773, 5, 155, 0, 0, 2773, 2777, 7, 16, 0, 0, 2774, 2775, 5, 51, 0, 0, 2775, 2777, 5, 42, 0, 0, 2776, 2769, 1, 0, 0, 0, 2776, 2772, 1, 0, 0, 0, 2776, 2774, 1, 0, 0, 0, 2777, 2881, 1, 0, 0, 0, 2778, 2779, 5, 8, 0, 0, 2779, 2780, 5, 82, 0, 0, 2780, 2781, 3, 638, 319, 0, 2781, 2782, 7, 16, 0, 0, 2782, 2881, 1, 0, 0, 0, 2783, 2785, 5, 25, 0, 0, 2784, 2786, 5, 29, 0, 0, 2785, 2784, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2787, 1, 0, 0, 0, 2787, 2788, 3, 658, 329, 0, 2788, 2789, 3, 654, 327, 0, 2789, 2793, 3, 88, 44, 0, 2790, 2794, 5, 402, 0, 0, 2791, 2792, 5, 306, 0, 0, 2792, 2794, 3, 658, 329, 0, 2793, 2790, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2881, 1, 0, 0, 0, 2795, 2797, 5, 42, 0, 0, 2796, 2795, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 5, 26, 0, 0, 2799, 2800, 5, 155, 0, 0, 2800, 2801, 5, 857, 0, 0, 2801, 2807, 3, 684, 342, 0, 2802, 2804, 5, 28, 0, 0, 2803, 2805, 5, 857, 0, 0, 2804, 2803, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2808, 3, 686, 343, 0, 2807, 2802, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 2881, 1, 0, 0, 0, 2809, 2810, 5, 33, 0, 0, 2810, 2814, 5, 176, 0, 0, 2811, 2815, 5, 823, 0, 0, 2812, 2813, 5, 26, 0, 0, 2813, 2815, 5, 155, 0, 0, 2814, 2811, 1, 0, 0, 0, 2814, 2812, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2819, 3, 684, 342, 0, 2817, 2818, 5, 28, 0, 0, 2818, 2820, 3, 686, 343, 0, 2819, 2817, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2881, 1, 0, 0, 0, 2821, 2822, 7, 38, 0, 0, 2822, 2881, 5, 93, 0, 0, 2823, 2824, 7, 39, 0, 0, 2824, 2881, 5, 658, 0, 0, 2825, 2827, 5, 51, 0, 0, 2826, 2828, 5, 29, 0, 0, 2827, 2826, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 2881, 3, 658, 329, 0, 2830, 2831, 5, 51, 0, 0, 2831, 2832, 7, 18, 0, 0, 2832, 2881, 3, 638, 319, 0, 2833, 2834, 5, 51, 0, 0, 2834, 2835, 5, 131, 0, 0, 2835, 2881, 5, 92, 0, 0, 2836, 2837, 5, 51, 0, 0, 2837, 2838, 5, 67, 0, 0, 2838, 2839, 5, 92, 0, 0, 2839, 2881, 3, 702, 351, 0, 2840, 2881, 5, 66, 0, 0, 2841, 2843, 5, 104, 0, 0, 2842, 2844, 5, 857, 0, 0, 2843, 2842, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2881, 7, 4, 0, 0, 2846, 2848, 5, 492, 0, 0, 2847, 2849, 5, 29, 0, 0, 2848, 2847, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 2851, 3, 658, 329, 0, 2851, 2855, 3, 88, 44, 0, 2852, 2856, 5, 402, 0, 0, 2853, 2854, 5, 306, 0, 0, 2854, 2856, 3, 658, 329, 0, 2855, 2852, 1, 0, 0, 0, 2855, 2853, 1, 0, 0, 0, 2855, 2856, 1, 0, 0, 0, 2856, 2881, 1, 0, 0, 0, 2857, 2858, 5, 125, 0, 0, 2858, 2859, 5, 20, 0, 0, 2859, 2881, 3, 656, 328, 0, 2860, 2861, 5, 141, 0, 0, 2861, 2862, 5, 29, 0, 0, 2862, 2863, 3, 658, 329, 0, 2863, 2864, 5, 176, 0, 0, 2864, 2865, 3, 654, 327, 0, 2865, 2881, 1, 0, 0, 0, 2866, 2867, 5, 141, 0, 0, 2867, 2868, 7, 18, 0, 0, 2868, 2869, 3, 638, 319, 0, 2869, 2870, 5, 176, 0, 0, 2870, 2871, 3, 634, 317, 0, 2871, 2881, 1, 0, 0, 0, 2872, 2874, 5, 141, 0, 0, 2873, 2875, 7, 40, 0, 0, 2874, 2873, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2881, 3, 644, 322, 0, 2877, 2878, 7, 41, 0, 0, 2878, 2881, 5, 681, 0, 0, 2879, 2881, 3, 142, 71, 0, 2880, 2616, 1, 0, 0, 0, 2880, 2626, 1, 0, 0, 0, 2880, 2637, 1, 0, 0, 0, 2880, 2655, 1, 0, 0, 0, 2880, 2670, 1, 0, 0, 0, 2880, 2685, 1, 0, 0, 0, 2880, 2704, 1, 0, 0, 0, 2880, 2728, 1, 0, 0, 0, 2880, 2743, 1, 0, 0, 0, 2880, 2747, 1, 0, 0, 0, 2880, 2750, 1, 0, 0, 0, 2880, 2759, 1, 0, 0, 0, 2880, 2764, 1, 0, 0, 0, 2880, 2778, 1, 0, 0, 0, 2880, 2783, 1, 0, 0, 0, 2880, 2796, 1, 0, 0, 0, 2880, 2809, 1, 0, 0, 0, 2880, 2821, 1, 0, 0, 0, 2880, 2823, 1, 0, 0, 0, 2880, 2825, 1, 0, 0, 0, 2880, 2830, 1, 0, 0, 0, 2880, 2833, 1, 0, 0, 0, 2880, 2836, 1, 0, 0, 0, 2880, 2840, 1, 0, 0, 0, 2880, 2841, 1, 0, 0, 0, 2880, 2846, 1, 0, 0, 0, 2880, 2857, 1, 0, 0, 0, 2880, 2860, 1, 0, 0, 0, 2880, 2866, 1, 0, 0, 0, 2880, 2872, 1, 0, 0, 0, 2880, 2877, 1, 0, 0, 0, 2880, 2879, 1, 0, 0, 0, 2881, 141, 1, 0, 0, 0, 2882, 2883, 5, 6, 0, 0, 2883, 2884, 5, 130, 0, 0, 2884, 2885, 5, 866, 0, 0, 2885, 2890, 3, 110, 55, 0, 2886, 2887, 5, 868, 0, 0, 2887, 2889, 3, 110, 55, 0, 2888, 2886, 1, 0, 0, 0, 2889, 2892, 1, 0, 0, 0, 2890, 2888, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, 2890, 1, 0, 0, 0, 2893, 2894, 5, 867, 0, 0, 2894, 2981, 1, 0, 0, 0, 2895, 2896, 5, 51, 0, 0, 2896, 2897, 5, 130, 0, 0, 2897, 2981, 3, 666, 333, 0, 2898, 2899, 5, 369, 0, 0, 2899, 2902, 5, 130, 0, 0, 2900, 2903, 3, 666, 333, 0, 2901, 2903, 5, 7, 0, 0, 2902, 2900, 1, 0, 0, 0, 2902, 2901, 1, 0, 0, 0, 2903, 2904, 1, 0, 0, 0, 2904, 2981, 5, 658, 0, 0, 2905, 2906, 5, 425, 0, 0, 2906, 2909, 5, 130, 0, 0, 2907, 2910, 3, 666, 333, 0, 2908, 2910, 5, 7, 0, 0, 2909, 2907, 1, 0, 0, 0, 2909, 2908, 1, 0, 0, 0, 2910, 2911, 1, 0, 0, 0, 2911, 2981, 5, 658, 0, 0, 2912, 2913, 5, 668, 0, 0, 2913, 2916, 5, 130, 0, 0, 2914, 2917, 3, 666, 333, 0, 2915, 2917, 5, 7, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2915, 1, 0, 0, 0, 2917, 2981, 1, 0, 0, 0, 2918, 2919, 5, 335, 0, 0, 2919, 2920, 5, 130, 0, 0, 2920, 2981, 3, 708, 354, 0, 2921, 2922, 5, 561, 0, 0, 2922, 2923, 5, 130, 0, 0, 2923, 2924, 3, 666, 333, 0, 2924, 2925, 5, 88, 0, 0, 2925, 2926, 5, 866, 0, 0, 2926, 2931, 3, 110, 55, 0, 2927, 2928, 5, 868, 0, 0, 2928, 2930, 3, 110, 55, 0, 2929, 2927, 1, 0, 0, 0, 2930, 2933, 1, 0, 0, 0, 2931, 2929, 1, 0, 0, 0, 2931, 2932, 1, 0, 0, 0, 2932, 2934, 1, 0, 0, 0, 2933, 2931, 1, 0, 0, 0, 2934, 2935, 5, 867, 0, 0, 2935, 2981, 1, 0, 0, 0, 2936, 2937, 5, 388, 0, 0, 2937, 2938, 5, 130, 0, 0, 2938, 2939, 3, 668, 334, 0, 2939, 2940, 5, 194, 0, 0, 2940, 2941, 5, 173, 0, 0, 2941, 2944, 3, 648, 324, 0, 2942, 2943, 7, 41, 0, 0, 2943, 2945, 5, 681, 0, 0, 2944, 2942, 1, 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2981, 1, 0, 0, 0, 2946, 2947, 5, 10, 0, 0, 2947, 2950, 5, 130, 0, 0, 2948, 2951, 3, 666, 333, 0, 2949, 2951, 5, 7, 0, 0, 2950, 2948, 1, 0, 0, 0, 2950, 2949, 1, 0, 0, 0, 2951, 2981, 1, 0, 0, 0, 2952, 2953, 5, 27, 0, 0, 2953, 2956, 5, 130, 0, 0, 2954, 2957, 3, 666, 333, 0, 2955, 2957, 5, 7, 0, 0, 2956, 2954, 1, 0, 0, 0, 2956, 2955, 1, 0, 0, 0, 2957, 2981, 1, 0, 0, 0, 2958, 2959, 5, 120, 0, 0, 2959, 2962, 5, 130, 0, 0, 2960, 2963, 3, 666, 333, 0, 2961, 2963, 5, 7, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2961, 1, 0, 0, 0, 2963, 2981, 1, 0, 0, 0, 2964, 2965, 5, 550, 0, 0, 2965, 2968, 5, 130, 0, 0, 2966, 2969, 3, 666, 333, 0, 2967, 2969, 5, 7, 0, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2967, 1, 0, 0, 0, 2969, 2981, 1, 0, 0, 0, 2970, 2971, 5, 562, 0, 0, 2971, 2974, 5, 130, 0, 0, 2972, 2975, 3, 666, 333, 0, 2973, 2975, 5, 7, 0, 0, 2974, 2972, 1, 0, 0, 0, 2974, 2973, 1, 0, 0, 0, 2975, 2981, 1, 0, 0, 0, 2976, 2977, 5, 560, 0, 0, 2977, 2981, 5, 527, 0, 0, 2978, 2979, 5, 677, 0, 0, 2979, 2981, 5, 527, 0, 0, 2980, 2882, 1, 0, 0, 0, 2980, 2895, 1, 0, 0, 0, 2980, 2898, 1, 0, 0, 0, 2980, 2905, 1, 0, 0, 0, 2980, 2912, 1, 0, 0, 0, 2980, 2918, 1, 0, 0, 0, 2980, 2921, 1, 0, 0, 0, 2980, 2936, 1, 0, 0, 0, 2980, 2946, 1, 0, 0, 0, 2980, 2952, 1, 0, 0, 0, 2980, 2958, 1, 0, 0, 0, 2980, 2964, 1, 0, 0, 0, 2980, 2970, 1, 0, 0, 0, 2980, 2976, 1, 0, 0, 0, 2980, 2978, 1, 0, 0, 0, 2981, 143, 1, 0, 0, 0, 2982, 2983, 5, 51, 0, 0, 2983, 2985, 7, 0, 0, 0, 2984, 2986, 3, 754, 377, 0, 2985, 2984, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2988, 3, 624, 312, 0, 2988, 145, 1, 0, 0, 0, 2989, 2990, 5, 51, 0, 0, 2990, 2992, 5, 385, 0, 0, 2991, 2993, 3, 754, 377, 0, 2992, 2991, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2995, 3, 698, 349, 0, 2995, 147, 1, 0, 0, 0, 2996, 2997, 5, 51, 0, 0, 2997, 2999, 5, 82, 0, 0, 2998, 3000, 7, 1, 0, 0, 2999, 2998, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3002, 3, 638, 319, 0, 3002, 3003, 5, 119, 0, 0, 3003, 3016, 3, 648, 324, 0, 3004, 3006, 5, 308, 0, 0, 3005, 3007, 5, 857, 0, 0, 3006, 3005, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3008, 1, 0, 0, 0, 3008, 3015, 7, 3, 0, 0, 3009, 3011, 5, 104, 0, 0, 3010, 3012, 5, 857, 0, 0, 3011, 3010, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3015, 7, 4, 0, 0, 3014, 3004, 1, 0, 0, 0, 3014, 3009, 1, 0, 0, 0, 3015, 3018, 1, 0, 0, 0, 3016, 3014, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 149, 1, 0, 0, 0, 3018, 3016, 1, 0, 0, 0, 3019, 3020, 5, 51, 0, 0, 3020, 3021, 5, 451, 0, 0, 3021, 3022, 5, 74, 0, 0, 3022, 3023, 3, 702, 351, 0, 3023, 3025, 5, 380, 0, 0, 3024, 3026, 5, 857, 0, 0, 3025, 3024, 1, 0, 0, 0, 3025, 3026, 1, 0, 0, 0, 3026, 3027, 1, 0, 0, 0, 3027, 3028, 3, 688, 344, 0, 3028, 151, 1, 0, 0, 0, 3029, 3030, 5, 51, 0, 0, 3030, 3032, 5, 132, 0, 0, 3031, 3033, 3, 754, 377, 0, 3032, 3031, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3035, 3, 698, 349, 0, 3035, 153, 1, 0, 0, 0, 3036, 3037, 5, 51, 0, 0, 3037, 3039, 5, 409, 0, 0, 3038, 3040, 3, 754, 377, 0, 3039, 3038, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3042, 3, 628, 314, 0, 3042, 155, 1, 0, 0, 0, 3043, 3044, 5, 51, 0, 0, 3044, 3046, 5, 592, 0, 0, 3045, 3047, 3, 754, 377, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 3049, 3, 702, 351, 0, 3049, 157, 1, 0, 0, 0, 3050, 3051, 5, 51, 0, 0, 3051, 3052, 5, 161, 0, 0, 3052, 3053, 5, 137, 0, 0, 3053, 3055, 5, 835, 0, 0, 3054, 3056, 3, 754, 377, 0, 3055, 3054, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3058, 5, 883, 0, 0, 3058, 159, 1, 0, 0, 0, 3059, 3061, 5, 51, 0, 0, 3060, 3062, 5, 660, 0, 0, 3061, 3060, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3065, 5, 173, 0, 0, 3064, 3066, 3, 754, 377, 0, 3065, 3064, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 3067, 1, 0, 0, 0, 3067, 3069, 3, 646, 323, 0, 3068, 3070, 7, 42, 0, 0, 3069, 3068, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 161, 1, 0, 0, 0, 3071, 3073, 5, 51, 0, 0, 3072, 3074, 5, 180, 0, 0, 3073, 3072, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3076, 5, 658, 0, 0, 3076, 3082, 3, 662, 331, 0, 3077, 3079, 5, 380, 0, 0, 3078, 3080, 5, 857, 0, 0, 3079, 3078, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 3, 688, 344, 0, 3082, 3077, 1, 0, 0, 0, 3082, 3083, 1, 0, 0, 0, 3083, 163, 1, 0, 0, 0, 3084, 3085, 5, 51, 0, 0, 3085, 3087, 5, 178, 0, 0, 3086, 3088, 3, 754, 377, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3090, 3, 698, 349, 0, 3090, 165, 1, 0, 0, 0, 3091, 3092, 5, 51, 0, 0, 3092, 3094, 5, 684, 0, 0, 3093, 3095, 3, 754, 377, 0, 3094, 3093, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3101, 3, 632, 316, 0, 3097, 3098, 5, 868, 0, 0, 3098, 3100, 3, 632, 316, 0, 3099, 3097, 1, 0, 0, 0, 3100, 3103, 1, 0, 0, 0, 3101, 3099, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3105, 1, 0, 0, 0, 3103, 3101, 1, 0, 0, 0, 3104, 3106, 7, 42, 0, 0, 3105, 3104, 1, 0, 0, 0, 3105, 3106, 1, 0, 0, 0, 3106, 167, 1, 0, 0, 0, 3107, 3108, 5, 51, 0, 0, 3108, 3110, 5, 582, 0, 0, 3109, 3111, 3, 754, 377, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3113, 3, 650, 325, 0, 3113, 169, 1, 0, 0, 0, 3114, 3115, 5, 155, 0, 0, 3115, 3116, 5, 42, 0, 0, 3116, 3120, 5, 582, 0, 0, 3117, 3121, 5, 505, 0, 0, 3118, 3121, 5, 7, 0, 0, 3119, 3121, 3, 650, 325, 0, 3120, 3117, 1, 0, 0, 0, 3120, 3118, 1, 0, 0, 0, 3120, 3119, 1, 0, 0, 0, 3121, 3122, 1, 0, 0, 0, 3122, 3123, 5, 176, 0, 0, 3123, 3128, 3, 652, 326, 0, 3124, 3125, 5, 868, 0, 0, 3125, 3127, 3, 652, 326, 0, 3126, 3124, 1, 0, 0, 0, 3127, 3130, 1, 0, 0, 0, 3128, 3126, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3135, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3131, 3132, 5, 155, 0, 0, 3132, 3133, 5, 582, 0, 0, 3133, 3135, 3, 462, 231, 0, 3134, 3114, 1, 0, 0, 0, 3134, 3131, 1, 0, 0, 0, 3135, 171, 1, 0, 0, 0, 3136, 3137, 5, 141, 0, 0, 3137, 3138, 5, 173, 0, 0, 3138, 3143, 3, 174, 87, 0, 3139, 3140, 5, 868, 0, 0, 3140, 3142, 3, 174, 87, 0, 3141, 3139, 1, 0, 0, 0, 3142, 3145, 1, 0, 0, 0, 3143, 3141, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 173, 1, 0, 0, 0, 3145, 3143, 1, 0, 0, 0, 3146, 3147, 3, 648, 324, 0, 3147, 3148, 5, 176, 0, 0, 3148, 3149, 3, 644, 322, 0, 3149, 175, 1, 0, 0, 0, 3150, 3152, 5, 668, 0, 0, 3151, 3153, 5, 173, 0, 0, 3152, 3151, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3155, 3, 648, 324, 0, 3155, 177, 1, 0, 0, 0, 3156, 3157, 5, 21, 0, 0, 3157, 3164, 3, 698, 349, 0, 3158, 3161, 5, 866, 0, 0, 3159, 3162, 3, 744, 372, 0, 3160, 3162, 3, 736, 368, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3160, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3163, 1, 0, 0, 0, 3163, 3165, 5, 867, 0, 0, 3164, 3158, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 179, 1, 0, 0, 0, 3166, 3169, 3, 234, 117, 0, 3167, 3169, 3, 236, 118, 0, 3168, 3166, 1, 0, 0, 0, 3168, 3167, 1, 0, 0, 0, 3169, 181, 1, 0, 0, 0, 3170, 3171, 5, 371, 0, 0, 3171, 3172, 3, 736, 368, 0, 3172, 183, 1, 0, 0, 0, 3173, 3178, 3, 238, 119, 0, 3174, 3178, 3, 240, 120, 0, 3175, 3178, 3, 242, 121, 0, 3176, 3178, 3, 244, 122, 0, 3177, 3173, 1, 0, 0, 0, 3177, 3174, 1, 0, 0, 0, 3177, 3175, 1, 0, 0, 0, 3177, 3176, 1, 0, 0, 0, 3178, 185, 1, 0, 0, 0, 3179, 3181, 5, 86, 0, 0, 3180, 3182, 7, 43, 0, 0, 3181, 3180, 1, 0, 0, 0, 3181, 3182, 1, 0, 0, 0, 3182, 3184, 1, 0, 0, 0, 3183, 3185, 5, 79, 0, 0, 3184, 3183, 1, 0, 0, 0, 3184, 3185, 1, 0, 0, 0, 3185, 3187, 1, 0, 0, 0, 3186, 3188, 5, 88, 0, 0, 3187, 3186, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3196, 3, 648, 324, 0, 3190, 3191, 5, 130, 0, 0, 3191, 3193, 5, 866, 0, 0, 3192, 3194, 3, 666, 333, 0, 3193, 3192, 1, 0, 0, 0, 3193, 3194, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3197, 5, 867, 0, 0, 3196, 3190, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3209, 1, 0, 0, 0, 3198, 3200, 3, 262, 131, 0, 3199, 3198, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3203, 1, 0, 0, 0, 3201, 3204, 3, 738, 369, 0, 3202, 3204, 3, 190, 95, 0, 3203, 3201, 1, 0, 0, 0, 3203, 3202, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3206, 1, 0, 0, 0, 3205, 3207, 3, 188, 94, 0, 3206, 3205, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3210, 1, 0, 0, 0, 3208, 3210, 3, 226, 113, 0, 3209, 3199, 1, 0, 0, 0, 3209, 3208, 1, 0, 0, 0, 3210, 3212, 1, 0, 0, 0, 3211, 3213, 3, 188, 94, 0, 3212, 3211, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3226, 1, 0, 0, 0, 3214, 3215, 5, 119, 0, 0, 3215, 3216, 5, 373, 0, 0, 3216, 3217, 5, 92, 0, 0, 3217, 3218, 5, 185, 0, 0, 3218, 3223, 3, 228, 114, 0, 3219, 3220, 5, 868, 0, 0, 3220, 3222, 3, 228, 114, 0, 3221, 3219, 1, 0, 0, 0, 3222, 3225, 1, 0, 0, 0, 3223, 3221, 1, 0, 0, 0, 3223, 3224, 1, 0, 0, 0, 3224, 3227, 1, 0, 0, 0, 3225, 3223, 1, 0, 0, 0, 3226, 3214, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 187, 1, 0, 0, 0, 3228, 3229, 5, 13, 0, 0, 3229, 3231, 3, 702, 351, 0, 3230, 3232, 3, 262, 131, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 189, 1, 0, 0, 0, 3233, 3238, 3, 204, 102, 0, 3234, 3235, 5, 173, 0, 0, 3235, 3238, 3, 648, 324, 0, 3236, 3238, 3, 224, 112, 0, 3237, 3233, 1, 0, 0, 0, 3237, 3234, 1, 0, 0, 0, 3237, 3236, 1, 0, 0, 0, 3238, 191, 1, 0, 0, 0, 3239, 3245, 3, 194, 97, 0, 3240, 3242, 5, 828, 0, 0, 3241, 3243, 7, 44, 0, 0, 3242, 3241, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 3, 194, 97, 0, 3245, 3240, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3245, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 193, 1, 0, 0, 0, 3249, 3251, 5, 866, 0, 0, 3250, 3249, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3254, 3, 274, 137, 0, 3253, 3255, 5, 867, 0, 0, 3254, 3253, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 195, 1, 0, 0, 0, 3256, 3257, 5, 103, 0, 0, 3257, 3259, 5, 360, 0, 0, 3258, 3260, 7, 45, 0, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3262, 1, 0, 0, 0, 3261, 3263, 5, 450, 0, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3265, 5, 83, 0, 0, 3265, 3267, 5, 882, 0, 0, 3266, 3268, 7, 6, 0, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3270, 5, 88, 0, 0, 3270, 3271, 5, 173, 0, 0, 3271, 3277, 3, 648, 324, 0, 3272, 3273, 5, 130, 0, 0, 3273, 3274, 5, 866, 0, 0, 3274, 3275, 3, 666, 333, 0, 3275, 3276, 5, 867, 0, 0, 3276, 3278, 1, 0, 0, 0, 3277, 3272, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3282, 1, 0, 0, 0, 3279, 3280, 5, 26, 0, 0, 3280, 3281, 5, 155, 0, 0, 3281, 3283, 3, 684, 342, 0, 3282, 3279, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3290, 1, 0, 0, 0, 3284, 3286, 7, 46, 0, 0, 3285, 3287, 3, 298, 149, 0, 3286, 3285, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3286, 1, 0, 0, 0, 3288, 3289, 1, 0, 0, 0, 3289, 3291, 1, 0, 0, 0, 3290, 3284, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3298, 1, 0, 0, 0, 3292, 3294, 5, 102, 0, 0, 3293, 3295, 3, 300, 150, 0, 3294, 3293, 1, 0, 0, 0, 3295, 3296, 1, 0, 0, 0, 3296, 3294, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3292, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3304, 1, 0, 0, 0, 3300, 3301, 5, 79, 0, 0, 3301, 3302, 3, 708, 354, 0, 3302, 3303, 7, 47, 0, 0, 3303, 3305, 1, 0, 0, 0, 3304, 3300, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3317, 1, 0, 0, 0, 3306, 3307, 5, 866, 0, 0, 3307, 3312, 3, 230, 115, 0, 3308, 3309, 5, 868, 0, 0, 3309, 3311, 3, 230, 115, 0, 3310, 3308, 1, 0, 0, 0, 3311, 3314, 1, 0, 0, 0, 3312, 3310, 1, 0, 0, 0, 3312, 3313, 1, 0, 0, 0, 3313, 3315, 1, 0, 0, 0, 3314, 3312, 1, 0, 0, 0, 3315, 3316, 5, 867, 0, 0, 3316, 3318, 1, 0, 0, 0, 3317, 3306, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3328, 1, 0, 0, 0, 3319, 3320, 5, 155, 0, 0, 3320, 3325, 3, 228, 114, 0, 3321, 3322, 5, 868, 0, 0, 3322, 3324, 3, 228, 114, 0, 3323, 3321, 1, 0, 0, 0, 3324, 3327, 1, 0, 0, 0, 3325, 3323, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 3329, 1, 0, 0, 0, 3327, 3325, 1, 0, 0, 0, 3328, 3319, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 197, 1, 0, 0, 0, 3330, 3331, 5, 103, 0, 0, 3331, 3333, 5, 695, 0, 0, 3332, 3334, 7, 45, 0, 0, 3333, 3332, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3336, 1, 0, 0, 0, 3335, 3337, 5, 450, 0, 0, 3336, 3335, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3339, 5, 83, 0, 0, 3339, 3341, 5, 882, 0, 0, 3340, 3342, 7, 6, 0, 0, 3341, 3340, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 5, 88, 0, 0, 3344, 3345, 5, 173, 0, 0, 3345, 3349, 3, 648, 324, 0, 3346, 3347, 5, 26, 0, 0, 3347, 3348, 5, 155, 0, 0, 3348, 3350, 3, 684, 342, 0, 3349, 3346, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3361, 1, 0, 0, 0, 3351, 3352, 5, 587, 0, 0, 3352, 3353, 5, 423, 0, 0, 3353, 3355, 5, 20, 0, 0, 3354, 3356, 5, 859, 0, 0, 3355, 3354, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3359, 5, 882, 0, 0, 3358, 3360, 5, 858, 0, 0, 3359, 3358, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 3362, 1, 0, 0, 0, 3361, 3351, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 3367, 1, 0, 0, 0, 3363, 3364, 5, 79, 0, 0, 3364, 3365, 3, 708, 354, 0, 3365, 3366, 7, 47, 0, 0, 3366, 3368, 1, 0, 0, 0, 3367, 3363, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3380, 1, 0, 0, 0, 3369, 3370, 5, 866, 0, 0, 3370, 3375, 3, 230, 115, 0, 3371, 3372, 5, 868, 0, 0, 3372, 3374, 3, 230, 115, 0, 3373, 3371, 1, 0, 0, 0, 3374, 3377, 1, 0, 0, 0, 3375, 3373, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3378, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3378, 3379, 5, 867, 0, 0, 3379, 3381, 1, 0, 0, 0, 3380, 3369, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3391, 1, 0, 0, 0, 3382, 3383, 5, 155, 0, 0, 3383, 3388, 3, 228, 114, 0, 3384, 3385, 5, 868, 0, 0, 3385, 3387, 3, 228, 114, 0, 3386, 3384, 1, 0, 0, 0, 3387, 3390, 1, 0, 0, 0, 3388, 3386, 1, 0, 0, 0, 3388, 3389, 1, 0, 0, 0, 3389, 3392, 1, 0, 0, 0, 3390, 3388, 1, 0, 0, 0, 3391, 3382, 1, 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 199, 1, 0, 0, 0, 3393, 3394, 5, 866, 0, 0, 3394, 3396, 3, 218, 109, 0, 3395, 3397, 3, 252, 126, 0, 3396, 3395, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3399, 1, 0, 0, 0, 3398, 3400, 3, 312, 156, 0, 3399, 3398, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3403, 5, 867, 0, 0, 3402, 3404, 3, 252, 126, 0, 3403, 3402, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3406, 1, 0, 0, 0, 3405, 3407, 3, 312, 156, 0, 3406, 3405, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3409, 1, 0, 0, 0, 3408, 3410, 3, 296, 148, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 201, 1, 0, 0, 0, 3411, 3413, 5, 143, 0, 0, 3412, 3414, 7, 48, 0, 0, 3413, 3412, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3416, 1, 0, 0, 0, 3415, 3417, 5, 88, 0, 0, 3416, 3415, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3424, 3, 648, 324, 0, 3419, 3420, 5, 130, 0, 0, 3420, 3421, 5, 866, 0, 0, 3421, 3422, 3, 666, 333, 0, 3422, 3423, 5, 867, 0, 0, 3423, 3425, 1, 0, 0, 0, 3424, 3419, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3434, 1, 0, 0, 0, 3426, 3427, 5, 866, 0, 0, 3427, 3428, 3, 656, 328, 0, 3428, 3429, 5, 867, 0, 0, 3429, 3431, 1, 0, 0, 0, 3430, 3426, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 3435, 3, 222, 111, 0, 3433, 3435, 3, 226, 113, 0, 3434, 3430, 1, 0, 0, 0, 3434, 3433, 1, 0, 0, 0, 3435, 203, 1, 0, 0, 0, 3436, 3440, 3, 274, 137, 0, 3437, 3439, 3, 276, 138, 0, 3438, 3437, 1, 0, 0, 0, 3439, 3442, 1, 0, 0, 0, 3440, 3438, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3451, 1, 0, 0, 0, 3442, 3440, 1, 0, 0, 0, 3443, 3445, 5, 181, 0, 0, 3444, 3446, 7, 44, 0, 0, 3445, 3444, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3449, 1, 0, 0, 0, 3447, 3450, 3, 274, 137, 0, 3448, 3450, 3, 272, 136, 0, 3449, 3447, 1, 0, 0, 0, 3449, 3448, 1, 0, 0, 0, 3450, 3452, 1, 0, 0, 0, 3451, 3443, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3457, 1, 0, 0, 0, 3453, 3454, 5, 868, 0, 0, 3454, 3456, 3, 278, 139, 0, 3455, 3453, 1, 0, 0, 0, 3456, 3459, 1, 0, 0, 0, 3457, 3455, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3461, 1, 0, 0, 0, 3459, 3457, 1, 0, 0, 0, 3460, 3462, 3, 252, 126, 0, 3461, 3460, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3465, 3, 312, 156, 0, 3464, 3463, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3467, 1, 0, 0, 0, 3466, 3468, 3, 232, 116, 0, 3467, 3466, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 3470, 1, 0, 0, 0, 3469, 3471, 3, 296, 148, 0, 3470, 3469, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3496, 1, 0, 0, 0, 3472, 3476, 3, 272, 136, 0, 3473, 3475, 3, 276, 138, 0, 3474, 3473, 1, 0, 0, 0, 3475, 3478, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 3484, 1, 0, 0, 0, 3478, 3476, 1, 0, 0, 0, 3479, 3481, 5, 181, 0, 0, 3480, 3482, 7, 44, 0, 0, 3481, 3480, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 3485, 3, 272, 136, 0, 3484, 3479, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3487, 1, 0, 0, 0, 3486, 3488, 3, 252, 126, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3490, 1, 0, 0, 0, 3489, 3491, 3, 312, 156, 0, 3490, 3489, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3493, 1, 0, 0, 0, 3492, 3494, 3, 232, 116, 0, 3493, 3492, 1, 0, 0, 0, 3493, 3494, 1, 0, 0, 0, 3494, 3496, 1, 0, 0, 0, 3495, 3436, 1, 0, 0, 0, 3495, 3472, 1, 0, 0, 0, 3496, 205, 1, 0, 0, 0, 3497, 3499, 3, 46, 23, 0, 3498, 3497, 1, 0, 0, 0, 3498, 3499, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3502, 3, 208, 104, 0, 3501, 3503, 3, 252, 126, 0, 3502, 3501, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3505, 1, 0, 0, 0, 3504, 3506, 3, 312, 156, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3508, 1, 0, 0, 0, 3507, 3509, 3, 296, 148, 0, 3508, 3507, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 207, 1, 0, 0, 0, 3510, 3511, 6, 104, -1, 0, 3511, 3512, 3, 210, 105, 0, 3512, 3527, 1, 0, 0, 0, 3513, 3514, 10, 2, 0, 0, 3514, 3516, 5, 181, 0, 0, 3515, 3517, 7, 44, 0, 0, 3516, 3515, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3518, 1, 0, 0, 0, 3518, 3526, 3, 210, 105, 0, 3519, 3520, 10, 1, 0, 0, 3520, 3522, 5, 59, 0, 0, 3521, 3523, 7, 44, 0, 0, 3522, 3521, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3526, 3, 210, 105, 0, 3525, 3513, 1, 0, 0, 0, 3525, 3519, 1, 0, 0, 0, 3526, 3529, 1, 0, 0, 0, 3527, 3525, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 209, 1, 0, 0, 0, 3529, 3527, 1, 0, 0, 0, 3530, 3531, 6, 105, -1, 0, 3531, 3532, 3, 212, 106, 0, 3532, 3541, 1, 0, 0, 0, 3533, 3534, 10, 1, 0, 0, 3534, 3536, 5, 828, 0, 0, 3535, 3537, 7, 44, 0, 0, 3536, 3535, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3540, 3, 212, 106, 0, 3539, 3533, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 211, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3559, 3, 220, 110, 0, 3545, 3546, 5, 866, 0, 0, 3546, 3548, 3, 208, 104, 0, 3547, 3549, 3, 252, 126, 0, 3548, 3547, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 3551, 1, 0, 0, 0, 3550, 3552, 3, 312, 156, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3554, 1, 0, 0, 0, 3553, 3555, 3, 296, 148, 0, 3554, 3553, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 3557, 5, 867, 0, 0, 3557, 3559, 1, 0, 0, 0, 3558, 3544, 1, 0, 0, 0, 3558, 3545, 1, 0, 0, 0, 3559, 213, 1, 0, 0, 0, 3560, 3563, 3, 248, 124, 0, 3561, 3563, 3, 250, 125, 0, 3562, 3560, 1, 0, 0, 0, 3562, 3561, 1, 0, 0, 0, 3563, 215, 1, 0, 0, 0, 3564, 3568, 3, 224, 112, 0, 3565, 3566, 5, 125, 0, 0, 3566, 3567, 5, 20, 0, 0, 3567, 3569, 3, 670, 335, 0, 3568, 3565, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3572, 1, 0, 0, 0, 3570, 3571, 5, 100, 0, 0, 3571, 3573, 3, 314, 157, 0, 3572, 3570, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 217, 1, 0, 0, 0, 3574, 3579, 3, 220, 110, 0, 3575, 3576, 7, 49, 0, 0, 3576, 3578, 3, 220, 110, 0, 3577, 3575, 1, 0, 0, 0, 3578, 3581, 1, 0, 0, 0, 3579, 3577, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3583, 1, 0, 0, 0, 3581, 3579, 1, 0, 0, 0, 3582, 3584, 3, 252, 126, 0, 3583, 3582, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3586, 1, 0, 0, 0, 3585, 3587, 3, 312, 156, 0, 3586, 3585, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3589, 1, 0, 0, 0, 3588, 3590, 3, 296, 148, 0, 3589, 3588, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 219, 1, 0, 0, 0, 3591, 3595, 3, 204, 102, 0, 3592, 3595, 3, 614, 307, 0, 3593, 3595, 3, 216, 108, 0, 3594, 3591, 1, 0, 0, 0, 3594, 3592, 1, 0, 0, 0, 3594, 3593, 1, 0, 0, 0, 3595, 221, 1, 0, 0, 0, 3596, 3602, 3, 204, 102, 0, 3597, 3598, 5, 173, 0, 0, 3598, 3602, 3, 648, 324, 0, 3599, 3602, 3, 738, 369, 0, 3600, 3602, 3, 224, 112, 0, 3601, 3596, 1, 0, 0, 0, 3601, 3597, 1, 0, 0, 0, 3601, 3599, 1, 0, 0, 0, 3601, 3600, 1, 0, 0, 0, 3602, 223, 1, 0, 0, 0, 3603, 3604, 5, 189, 0, 0, 3604, 3605, 5, 586, 0, 0, 3605, 3611, 3, 740, 370, 0, 3606, 3607, 5, 868, 0, 0, 3607, 3608, 5, 586, 0, 0, 3608, 3610, 3, 740, 370, 0, 3609, 3606, 1, 0, 0, 0, 3610, 3613, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 225, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3615, 5, 155, 0, 0, 3615, 3620, 3, 228, 114, 0, 3616, 3617, 5, 868, 0, 0, 3617, 3619, 3, 228, 114, 0, 3618, 3616, 1, 0, 0, 0, 3619, 3622, 1, 0, 0, 0, 3620, 3618, 1, 0, 0, 0, 3620, 3621, 1, 0, 0, 0, 3621, 227, 1, 0, 0, 0, 3622, 3620, 1, 0, 0, 0, 3623, 3624, 3, 658, 329, 0, 3624, 3625, 5, 857, 0, 0, 3625, 3626, 3, 742, 371, 0, 3626, 229, 1, 0, 0, 0, 3627, 3630, 3, 702, 351, 0, 3628, 3630, 5, 892, 0, 0, 3629, 3627, 1, 0, 0, 0, 3629, 3628, 1, 0, 0, 0, 3630, 231, 1, 0, 0, 0, 3631, 3632, 5, 65, 0, 0, 3632, 3642, 7, 50, 0, 0, 3633, 3634, 5, 510, 0, 0, 3634, 3639, 3, 648, 324, 0, 3635, 3636, 5, 868, 0, 0, 3636, 3638, 3, 648, 324, 0, 3637, 3635, 1, 0, 0, 0, 3638, 3641, 1, 0, 0, 0, 3639, 3637, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3643, 1, 0, 0, 0, 3641, 3639, 1, 0, 0, 0, 3642, 3633, 1, 0, 0, 0, 3642, 3643, 1, 0, 0, 0, 3643, 3646, 1, 0, 0, 0, 3644, 3645, 7, 51, 0, 0, 3645, 3647, 5, 105, 0, 0, 3646, 3644, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3653, 1, 0, 0, 0, 3648, 3649, 5, 104, 0, 0, 3649, 3650, 5, 80, 0, 0, 3650, 3651, 5, 594, 0, 0, 3651, 3653, 5, 491, 0, 0, 3652, 3631, 1, 0, 0, 0, 3652, 3648, 1, 0, 0, 0, 3653, 233, 1, 0, 0, 0, 3654, 3656, 5, 44, 0, 0, 3655, 3657, 5, 107, 0, 0, 3656, 3655, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3659, 1, 0, 0, 0, 3658, 3660, 5, 549, 0, 0, 3659, 3658, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3662, 1, 0, 0, 0, 3661, 3663, 5, 79, 0, 0, 3662, 3661, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3665, 5, 68, 0, 0, 3665, 3670, 3, 648, 324, 0, 3666, 3668, 5, 13, 0, 0, 3667, 3666, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3671, 3, 702, 351, 0, 3670, 3667, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3677, 1, 0, 0, 0, 3672, 3673, 5, 130, 0, 0, 3673, 3674, 5, 866, 0, 0, 3674, 3675, 3, 666, 333, 0, 3675, 3676, 5, 867, 0, 0, 3676, 3678, 1, 0, 0, 0, 3677, 3672, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3681, 1, 0, 0, 0, 3679, 3680, 5, 192, 0, 0, 3680, 3682, 3, 800, 400, 0, 3681, 3679, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 3684, 1, 0, 0, 0, 3683, 3685, 3, 252, 126, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3688, 1, 0, 0, 0, 3686, 3687, 5, 100, 0, 0, 3687, 3689, 3, 314, 157, 0, 3688, 3686, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 235, 1, 0, 0, 0, 3690, 3692, 5, 44, 0, 0, 3691, 3693, 5, 107, 0, 0, 3692, 3691, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 1, 0, 0, 0, 3694, 3696, 5, 549, 0, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 3698, 1, 0, 0, 0, 3697, 3699, 5, 79, 0, 0, 3698, 3697, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 3739, 1, 0, 0, 0, 3700, 3703, 3, 648, 324, 0, 3701, 3702, 5, 865, 0, 0, 3702, 3704, 5, 850, 0, 0, 3703, 3701, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3713, 1, 0, 0, 0, 3705, 3706, 5, 868, 0, 0, 3706, 3709, 3, 648, 324, 0, 3707, 3708, 5, 865, 0, 0, 3708, 3710, 5, 850, 0, 0, 3709, 3707, 1, 0, 0, 0, 3709, 3710, 1, 0, 0, 0, 3710, 3712, 1, 0, 0, 0, 3711, 3705, 1, 0, 0, 0, 3712, 3715, 1, 0, 0, 0, 3713, 3711, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 3716, 1, 0, 0, 0, 3715, 3713, 1, 0, 0, 0, 3716, 3717, 5, 68, 0, 0, 3717, 3718, 3, 256, 128, 0, 3718, 3740, 1, 0, 0, 0, 3719, 3720, 5, 68, 0, 0, 3720, 3723, 3, 648, 324, 0, 3721, 3722, 5, 865, 0, 0, 3722, 3724, 5, 850, 0, 0, 3723, 3721, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3733, 1, 0, 0, 0, 3725, 3726, 5, 868, 0, 0, 3726, 3729, 3, 648, 324, 0, 3727, 3728, 5, 865, 0, 0, 3728, 3730, 5, 850, 0, 0, 3729, 3727, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3732, 1, 0, 0, 0, 3731, 3725, 1, 0, 0, 0, 3732, 3735, 1, 0, 0, 0, 3733, 3731, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 3736, 1, 0, 0, 0, 3735, 3733, 1, 0, 0, 0, 3736, 3737, 5, 188, 0, 0, 3737, 3738, 3, 256, 128, 0, 3738, 3740, 1, 0, 0, 0, 3739, 3700, 1, 0, 0, 0, 3739, 3719, 1, 0, 0, 0, 3740, 3743, 1, 0, 0, 0, 3741, 3742, 5, 192, 0, 0, 3742, 3744, 3, 800, 400, 0, 3743, 3741, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 237, 1, 0, 0, 0, 3745, 3746, 5, 417, 0, 0, 3746, 3747, 3, 648, 324, 0, 3747, 3752, 5, 516, 0, 0, 3748, 3750, 5, 13, 0, 0, 3749, 3748, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 3753, 3, 702, 351, 0, 3752, 3749, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 239, 1, 0, 0, 0, 3754, 3755, 5, 417, 0, 0, 3755, 3756, 3, 648, 324, 0, 3756, 3757, 5, 135, 0, 0, 3757, 3764, 3, 638, 319, 0, 3758, 3759, 3, 810, 405, 0, 3759, 3760, 5, 866, 0, 0, 3760, 3761, 3, 744, 372, 0, 3761, 3762, 5, 867, 0, 0, 3762, 3765, 1, 0, 0, 0, 3763, 3765, 7, 52, 0, 0, 3764, 3758, 1, 0, 0, 0, 3764, 3763, 1, 0, 0, 0, 3765, 3768, 1, 0, 0, 0, 3766, 3767, 5, 192, 0, 0, 3767, 3769, 3, 800, 400, 0, 3768, 3766, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3771, 5, 100, 0, 0, 3771, 3773, 3, 314, 157, 0, 3772, 3770, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 241, 1, 0, 0, 0, 3774, 3775, 5, 417, 0, 0, 3775, 3776, 3, 648, 324, 0, 3776, 3777, 5, 135, 0, 0, 3777, 3780, 7, 53, 0, 0, 3778, 3779, 5, 192, 0, 0, 3779, 3781, 3, 800, 400, 0, 3780, 3778, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3783, 5, 100, 0, 0, 3783, 3785, 3, 314, 157, 0, 3784, 3782, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 243, 1, 0, 0, 0, 3786, 3787, 5, 417, 0, 0, 3787, 3788, 3, 648, 324, 0, 3788, 3789, 5, 334, 0, 0, 3789, 245, 1, 0, 0, 0, 3790, 3791, 5, 425, 0, 0, 3791, 3792, 5, 173, 0, 0, 3792, 3793, 5, 68, 0, 0, 3793, 3798, 3, 712, 356, 0, 3794, 3795, 5, 868, 0, 0, 3795, 3797, 3, 712, 356, 0, 3796, 3794, 1, 0, 0, 0, 3797, 3800, 1, 0, 0, 0, 3798, 3796, 1, 0, 0, 0, 3798, 3799, 1, 0, 0, 0, 3799, 247, 1, 0, 0, 0, 3800, 3798, 1, 0, 0, 0, 3801, 3803, 5, 185, 0, 0, 3802, 3804, 5, 107, 0, 0, 3803, 3802, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3806, 1, 0, 0, 0, 3805, 3807, 5, 79, 0, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3813, 3, 648, 324, 0, 3809, 3811, 5, 13, 0, 0, 3810, 3809, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3814, 3, 702, 351, 0, 3813, 3810, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3816, 5, 155, 0, 0, 3816, 3821, 3, 228, 114, 0, 3817, 3818, 5, 868, 0, 0, 3818, 3820, 3, 228, 114, 0, 3819, 3817, 1, 0, 0, 0, 3820, 3823, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 3826, 1, 0, 0, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3825, 5, 192, 0, 0, 3825, 3827, 3, 800, 400, 0, 3826, 3824, 1, 0, 0, 0, 3826, 3827, 1, 0, 0, 0, 3827, 3829, 1, 0, 0, 0, 3828, 3830, 3, 252, 126, 0, 3829, 3828, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 3832, 1, 0, 0, 0, 3831, 3833, 3, 312, 156, 0, 3832, 3831, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 249, 1, 0, 0, 0, 3834, 3836, 5, 185, 0, 0, 3835, 3837, 5, 107, 0, 0, 3836, 3835, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3839, 1, 0, 0, 0, 3838, 3840, 5, 79, 0, 0, 3839, 3838, 1, 0, 0, 0, 3839, 3840, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3842, 3, 256, 128, 0, 3842, 3843, 5, 155, 0, 0, 3843, 3848, 3, 228, 114, 0, 3844, 3845, 5, 868, 0, 0, 3845, 3847, 3, 228, 114, 0, 3846, 3844, 1, 0, 0, 0, 3847, 3850, 1, 0, 0, 0, 3848, 3846, 1, 0, 0, 0, 3848, 3849, 1, 0, 0, 0, 3849, 3853, 1, 0, 0, 0, 3850, 3848, 1, 0, 0, 0, 3851, 3852, 5, 192, 0, 0, 3852, 3854, 3, 800, 400, 0, 3853, 3851, 1, 0, 0, 0, 3853, 3854, 1, 0, 0, 0, 3854, 251, 1, 0, 0, 0, 3855, 3856, 5, 125, 0, 0, 3856, 3857, 5, 20, 0, 0, 3857, 3862, 3, 254, 127, 0, 3858, 3859, 5, 868, 0, 0, 3859, 3861, 3, 254, 127, 0, 3860, 3858, 1, 0, 0, 0, 3861, 3864, 1, 0, 0, 0, 3862, 3860, 1, 0, 0, 0, 3862, 3863, 1, 0, 0, 0, 3863, 253, 1, 0, 0, 0, 3864, 3862, 1, 0, 0, 0, 3865, 3867, 3, 800, 400, 0, 3866, 3868, 7, 54, 0, 0, 3867, 3866, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 255, 1, 0, 0, 0, 3869, 3874, 3, 258, 129, 0, 3870, 3871, 5, 868, 0, 0, 3871, 3873, 3, 258, 129, 0, 3872, 3870, 1, 0, 0, 0, 3873, 3876, 1, 0, 0, 0, 3874, 3872, 1, 0, 0, 0, 3874, 3875, 1, 0, 0, 0, 3875, 257, 1, 0, 0, 0, 3876, 3874, 1, 0, 0, 0, 3877, 3881, 3, 260, 130, 0, 3878, 3880, 3, 268, 134, 0, 3879, 3878, 1, 0, 0, 0, 3880, 3883, 1, 0, 0, 0, 3881, 3879, 1, 0, 0, 0, 3881, 3882, 1, 0, 0, 0, 3882, 3896, 1, 0, 0, 0, 3883, 3881, 1, 0, 0, 0, 3884, 3885, 5, 866, 0, 0, 3885, 3889, 3, 260, 130, 0, 3886, 3888, 3, 268, 134, 0, 3887, 3886, 1, 0, 0, 0, 3888, 3891, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3892, 1, 0, 0, 0, 3891, 3889, 1, 0, 0, 0, 3892, 3893, 5, 867, 0, 0, 3893, 3896, 1, 0, 0, 0, 3894, 3896, 3, 280, 140, 0, 3895, 3877, 1, 0, 0, 0, 3895, 3884, 1, 0, 0, 0, 3895, 3894, 1, 0, 0, 0, 3896, 259, 1, 0, 0, 0, 3897, 3903, 3, 648, 324, 0, 3898, 3899, 5, 130, 0, 0, 3899, 3900, 5, 866, 0, 0, 3900, 3901, 3, 666, 333, 0, 3901, 3902, 5, 867, 0, 0, 3902, 3904, 1, 0, 0, 0, 3903, 3898, 1, 0, 0, 0, 3903, 3904, 1, 0, 0, 0, 3904, 3909, 1, 0, 0, 0, 3905, 3907, 5, 13, 0, 0, 3906, 3905, 1, 0, 0, 0, 3906, 3907, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3910, 3, 702, 351, 0, 3909, 3906, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3919, 1, 0, 0, 0, 3911, 3916, 3, 264, 132, 0, 3912, 3913, 5, 868, 0, 0, 3913, 3915, 3, 264, 132, 0, 3914, 3912, 1, 0, 0, 0, 3915, 3918, 1, 0, 0, 0, 3916, 3914, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3920, 1, 0, 0, 0, 3918, 3916, 1, 0, 0, 0, 3919, 3911, 1, 0, 0, 0, 3919, 3920, 1, 0, 0, 0, 3920, 3943, 1, 0, 0, 0, 3921, 3923, 5, 95, 0, 0, 3922, 3921, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3929, 1, 0, 0, 0, 3924, 3930, 3, 204, 102, 0, 3925, 3926, 5, 866, 0, 0, 3926, 3927, 3, 204, 102, 0, 3927, 3928, 5, 867, 0, 0, 3928, 3930, 1, 0, 0, 0, 3929, 3924, 1, 0, 0, 0, 3929, 3925, 1, 0, 0, 0, 3930, 3932, 1, 0, 0, 0, 3931, 3933, 5, 13, 0, 0, 3932, 3931, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3936, 3, 702, 351, 0, 3935, 3937, 3, 262, 131, 0, 3936, 3935, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3943, 1, 0, 0, 0, 3938, 3939, 5, 866, 0, 0, 3939, 3940, 3, 256, 128, 0, 3940, 3941, 5, 867, 0, 0, 3941, 3943, 1, 0, 0, 0, 3942, 3897, 1, 0, 0, 0, 3942, 3922, 1, 0, 0, 0, 3942, 3938, 1, 0, 0, 0, 3943, 261, 1, 0, 0, 0, 3944, 3945, 5, 866, 0, 0, 3945, 3946, 3, 656, 328, 0, 3946, 3947, 5, 867, 0, 0, 3947, 263, 1, 0, 0, 0, 3948, 3949, 7, 55, 0, 0, 3949, 3952, 7, 18, 0, 0, 3950, 3951, 5, 65, 0, 0, 3951, 3953, 3, 266, 133, 0, 3952, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3954, 1, 0, 0, 0, 3954, 3956, 5, 866, 0, 0, 3955, 3957, 3, 636, 318, 0, 3956, 3955, 1, 0, 0, 0, 3956, 3957, 1, 0, 0, 0, 3957, 3958, 1, 0, 0, 0, 3958, 3959, 5, 867, 0, 0, 3959, 265, 1, 0, 0, 0, 3960, 3966, 5, 91, 0, 0, 3961, 3962, 5, 125, 0, 0, 3962, 3966, 5, 20, 0, 0, 3963, 3964, 5, 74, 0, 0, 3964, 3966, 5, 20, 0, 0, 3965, 3960, 1, 0, 0, 0, 3965, 3961, 1, 0, 0, 0, 3965, 3963, 1, 0, 0, 0, 3966, 267, 1, 0, 0, 0, 3967, 3969, 7, 56, 0, 0, 3968, 3967, 1, 0, 0, 0, 3968, 3969, 1, 0, 0, 0, 3969, 3970, 1, 0, 0, 0, 3970, 3972, 5, 91, 0, 0, 3971, 3973, 5, 95, 0, 0, 3972, 3971, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3974, 1, 0, 0, 0, 3974, 3978, 3, 260, 130, 0, 3975, 3977, 3, 270, 135, 0, 3976, 3975, 1, 0, 0, 0, 3977, 3980, 1, 0, 0, 0, 3978, 3976, 1, 0, 0, 0, 3978, 3979, 1, 0, 0, 0, 3979, 4017, 1, 0, 0, 0, 3980, 3978, 1, 0, 0, 0, 3981, 3982, 5, 172, 0, 0, 3982, 3986, 3, 260, 130, 0, 3983, 3985, 3, 270, 135, 0, 3984, 3983, 1, 0, 0, 0, 3985, 3988, 1, 0, 0, 0, 3986, 3984, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 4017, 1, 0, 0, 0, 3988, 3986, 1, 0, 0, 0, 3989, 3991, 7, 57, 0, 0, 3990, 3992, 5, 127, 0, 0, 3991, 3990, 1, 0, 0, 0, 3991, 3992, 1, 0, 0, 0, 3992, 3993, 1, 0, 0, 0, 3993, 3995, 5, 91, 0, 0, 3994, 3996, 5, 95, 0, 0, 3995, 3994, 1, 0, 0, 0, 3995, 3996, 1, 0, 0, 0, 3996, 3997, 1, 0, 0, 0, 3997, 4001, 3, 260, 130, 0, 3998, 4000, 3, 270, 135, 0, 3999, 3998, 1, 0, 0, 0, 4000, 4003, 1, 0, 0, 0, 4001, 3999, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4017, 1, 0, 0, 0, 4003, 4001, 1, 0, 0, 0, 4004, 4012, 5, 113, 0, 0, 4005, 4008, 5, 84, 0, 0, 4006, 4008, 7, 57, 0, 0, 4007, 4005, 1, 0, 0, 0, 4007, 4006, 1, 0, 0, 0, 4008, 4010, 1, 0, 0, 0, 4009, 4011, 5, 127, 0, 0, 4010, 4009, 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4013, 1, 0, 0, 0, 4012, 4007, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 4015, 5, 91, 0, 0, 4015, 4017, 3, 260, 130, 0, 4016, 3968, 1, 0, 0, 0, 4016, 3981, 1, 0, 0, 0, 4016, 3989, 1, 0, 0, 0, 4016, 4004, 1, 0, 0, 0, 4017, 269, 1, 0, 0, 0, 4018, 4019, 5, 119, 0, 0, 4019, 4026, 3, 800, 400, 0, 4020, 4021, 5, 188, 0, 0, 4021, 4022, 5, 866, 0, 0, 4022, 4023, 3, 656, 328, 0, 4023, 4024, 5, 867, 0, 0, 4024, 4026, 1, 0, 0, 0, 4025, 4018, 1, 0, 0, 0, 4025, 4020, 1, 0, 0, 0, 4026, 271, 1, 0, 0, 0, 4027, 4028, 5, 866, 0, 0, 4028, 4029, 3, 274, 137, 0, 4029, 4030, 5, 867, 0, 0, 4030, 4036, 1, 0, 0, 0, 4031, 4032, 5, 866, 0, 0, 4032, 4033, 3, 272, 136, 0, 4033, 4034, 5, 867, 0, 0, 4034, 4036, 1, 0, 0, 0, 4035, 4027, 1, 0, 0, 0, 4035, 4031, 1, 0, 0, 0, 4036, 273, 1, 0, 0, 0, 4037, 4041, 5, 154, 0, 0, 4038, 4040, 3, 290, 145, 0, 4039, 4038, 1, 0, 0, 0, 4040, 4043, 1, 0, 0, 0, 4041, 4039, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4044, 1, 0, 0, 0, 4043, 4041, 1, 0, 0, 0, 4044, 4046, 3, 292, 146, 0, 4045, 4047, 3, 296, 148, 0, 4046, 4045, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4048, 1, 0, 0, 0, 4048, 4050, 3, 302, 151, 0, 4049, 4051, 3, 304, 152, 0, 4050, 4049, 1, 0, 0, 0, 4050, 4051, 1, 0, 0, 0, 4051, 4053, 1, 0, 0, 0, 4052, 4054, 3, 306, 153, 0, 4053, 4052, 1, 0, 0, 0, 4053, 4054, 1, 0, 0, 0, 4054, 4056, 1, 0, 0, 0, 4055, 4057, 3, 308, 154, 0, 4056, 4055, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 1, 0, 0, 0, 4058, 4060, 3, 252, 126, 0, 4059, 4058, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4062, 1, 0, 0, 0, 4061, 4063, 3, 312, 156, 0, 4062, 4061, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 4065, 1, 0, 0, 0, 4064, 4066, 3, 296, 148, 0, 4065, 4064, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 275, 1, 0, 0, 0, 4067, 4069, 5, 181, 0, 0, 4068, 4070, 7, 44, 0, 0, 4069, 4068, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4073, 1, 0, 0, 0, 4071, 4074, 3, 274, 137, 0, 4072, 4074, 3, 272, 136, 0, 4073, 4071, 1, 0, 0, 0, 4073, 4072, 1, 0, 0, 0, 4074, 277, 1, 0, 0, 0, 4075, 4090, 5, 95, 0, 0, 4076, 4091, 3, 274, 137, 0, 4077, 4091, 3, 272, 136, 0, 4078, 4081, 5, 866, 0, 0, 4079, 4082, 3, 274, 137, 0, 4080, 4082, 3, 272, 136, 0, 4081, 4079, 1, 0, 0, 0, 4081, 4080, 1, 0, 0, 0, 4082, 4083, 1, 0, 0, 0, 4083, 4088, 5, 867, 0, 0, 4084, 4086, 5, 13, 0, 0, 4085, 4084, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 4087, 1, 0, 0, 0, 4087, 4089, 3, 702, 351, 0, 4088, 4085, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4091, 1, 0, 0, 0, 4090, 4076, 1, 0, 0, 0, 4090, 4077, 1, 0, 0, 0, 4090, 4078, 1, 0, 0, 0, 4091, 279, 1, 0, 0, 0, 4092, 4093, 5, 253, 0, 0, 4093, 4094, 5, 866, 0, 0, 4094, 4095, 5, 882, 0, 0, 4095, 4096, 5, 868, 0, 0, 4096, 4097, 5, 882, 0, 0, 4097, 4098, 5, 337, 0, 0, 4098, 4099, 5, 866, 0, 0, 4099, 4100, 3, 282, 141, 0, 4100, 4101, 5, 867, 0, 0, 4101, 4106, 5, 867, 0, 0, 4102, 4104, 5, 13, 0, 0, 4103, 4102, 1, 0, 0, 0, 4103, 4104, 1, 0, 0, 0, 4104, 4105, 1, 0, 0, 0, 4105, 4107, 3, 702, 351, 0, 4106, 4103, 1, 0, 0, 0, 4106, 4107, 1, 0, 0, 0, 4107, 281, 1, 0, 0, 0, 4108, 4113, 3, 284, 142, 0, 4109, 4110, 5, 868, 0, 0, 4110, 4112, 3, 284, 142, 0, 4111, 4109, 1, 0, 0, 0, 4112, 4115, 1, 0, 0, 0, 4113, 4111, 1, 0, 0, 0, 4113, 4114, 1, 0, 0, 0, 4114, 283, 1, 0, 0, 0, 4115, 4113, 1, 0, 0, 0, 4116, 4133, 3, 658, 329, 0, 4117, 4118, 5, 65, 0, 0, 4118, 4134, 5, 256, 0, 0, 4119, 4131, 3, 722, 361, 0, 4120, 4121, 5, 257, 0, 0, 4121, 4123, 5, 882, 0, 0, 4122, 4124, 3, 286, 143, 0, 4123, 4122, 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 4126, 1, 0, 0, 0, 4125, 4127, 3, 288, 144, 0, 4126, 4125, 1, 0, 0, 0, 4126, 4127, 1, 0, 0, 0, 4127, 4132, 1, 0, 0, 0, 4128, 4129, 5, 60, 0, 0, 4129, 4130, 5, 257, 0, 0, 4130, 4132, 5, 882, 0, 0, 4131, 4120, 1, 0, 0, 0, 4131, 4128, 1, 0, 0, 0, 4132, 4134, 1, 0, 0, 0, 4133, 4117, 1, 0, 0, 0, 4133, 4119, 1, 0, 0, 0, 4134, 4146, 1, 0, 0, 0, 4135, 4137, 5, 255, 0, 0, 4136, 4138, 5, 257, 0, 0, 4137, 4136, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4140, 5, 882, 0, 0, 4140, 4141, 5, 337, 0, 0, 4141, 4142, 5, 866, 0, 0, 4142, 4143, 3, 282, 141, 0, 4143, 4144, 5, 867, 0, 0, 4144, 4146, 1, 0, 0, 0, 4145, 4116, 1, 0, 0, 0, 4145, 4135, 1, 0, 0, 0, 4146, 285, 1, 0, 0, 0, 4147, 4152, 5, 116, 0, 0, 4148, 4152, 5, 382, 0, 0, 4149, 4150, 5, 42, 0, 0, 4150, 4152, 3, 750, 375, 0, 4151, 4147, 1, 0, 0, 0, 4151, 4148, 1, 0, 0, 0, 4151, 4149, 1, 0, 0, 0, 4152, 4153, 1, 0, 0, 0, 4153, 4154, 5, 119, 0, 0, 4154, 4155, 5, 55, 0, 0, 4155, 287, 1, 0, 0, 0, 4156, 4161, 5, 116, 0, 0, 4157, 4161, 5, 382, 0, 0, 4158, 4159, 5, 42, 0, 0, 4159, 4161, 3, 750, 375, 0, 4160, 4156, 1, 0, 0, 0, 4160, 4157, 1, 0, 0, 0, 4160, 4158, 1, 0, 0, 0, 4161, 4162, 1, 0, 0, 0, 4162, 4163, 5, 119, 0, 0, 4163, 4164, 5, 382, 0, 0, 4164, 289, 1, 0, 0, 0, 4165, 4174, 7, 58, 0, 0, 4166, 4174, 5, 76, 0, 0, 4167, 4174, 5, 172, 0, 0, 4168, 4174, 5, 168, 0, 0, 4169, 4174, 5, 166, 0, 0, 4170, 4174, 5, 636, 0, 0, 4171, 4174, 7, 59, 0, 0, 4172, 4174, 5, 167, 0, 0, 4173, 4165, 1, 0, 0, 0, 4173, 4166, 1, 0, 0, 0, 4173, 4167, 1, 0, 0, 0, 4173, 4168, 1, 0, 0, 0, 4173, 4169, 1, 0, 0, 0, 4173, 4170, 1, 0, 0, 0, 4173, 4171, 1, 0, 0, 0, 4173, 4172, 1, 0, 0, 0, 4174, 291, 1, 0, 0, 0, 4175, 4178, 5, 850, 0, 0, 4176, 4178, 3, 294, 147, 0, 4177, 4175, 1, 0, 0, 0, 4177, 4176, 1, 0, 0, 0, 4178, 4183, 1, 0, 0, 0, 4179, 4180, 5, 868, 0, 0, 4180, 4182, 3, 294, 147, 0, 4181, 4179, 1, 0, 0, 0, 4182, 4185, 1, 0, 0, 0, 4183, 4181, 1, 0, 0, 0, 4183, 4184, 1, 0, 0, 0, 4184, 293, 1, 0, 0, 0, 4185, 4183, 1, 0, 0, 0, 4186, 4187, 5, 892, 0, 0, 4187, 4189, 5, 841, 0, 0, 4188, 4186, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4190, 1, 0, 0, 0, 4190, 4195, 3, 800, 400, 0, 4191, 4193, 5, 13, 0, 0, 4192, 4191, 1, 0, 0, 0, 4192, 4193, 1, 0, 0, 0, 4193, 4194, 1, 0, 0, 0, 4194, 4196, 3, 702, 351, 0, 4195, 4192, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 4216, 1, 0, 0, 0, 4197, 4202, 3, 760, 380, 0, 4198, 4200, 5, 13, 0, 0, 4199, 4198, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4201, 1, 0, 0, 0, 4201, 4203, 3, 702, 351, 0, 4202, 4199, 1, 0, 0, 0, 4202, 4203, 1, 0, 0, 0, 4203, 4216, 1, 0, 0, 0, 4204, 4205, 3, 698, 349, 0, 4205, 4206, 5, 865, 0, 0, 4206, 4207, 5, 850, 0, 0, 4207, 4216, 1, 0, 0, 0, 4208, 4213, 3, 658, 329, 0, 4209, 4211, 5, 13, 0, 0, 4210, 4209, 1, 0, 0, 0, 4210, 4211, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4214, 3, 702, 351, 0, 4213, 4210, 1, 0, 0, 0, 4213, 4214, 1, 0, 0, 0, 4214, 4216, 1, 0, 0, 0, 4215, 4188, 1, 0, 0, 0, 4215, 4197, 1, 0, 0, 0, 4215, 4204, 1, 0, 0, 0, 4215, 4208, 1, 0, 0, 0, 4216, 295, 1, 0, 0, 0, 4217, 4218, 5, 88, 0, 0, 4218, 4223, 3, 230, 115, 0, 4219, 4220, 5, 868, 0, 0, 4220, 4222, 3, 230, 115, 0, 4221, 4219, 1, 0, 0, 0, 4222, 4225, 1, 0, 0, 0, 4223, 4221, 1, 0, 0, 0, 4223, 4224, 1, 0, 0, 0, 4224, 4254, 1, 0, 0, 0, 4225, 4223, 1, 0, 0, 0, 4226, 4227, 5, 88, 0, 0, 4227, 4228, 5, 372, 0, 0, 4228, 4254, 5, 882, 0, 0, 4229, 4230, 5, 88, 0, 0, 4230, 4231, 5, 128, 0, 0, 4231, 4235, 5, 882, 0, 0, 4232, 4233, 5, 26, 0, 0, 4233, 4234, 5, 155, 0, 0, 4234, 4236, 3, 684, 342, 0, 4235, 4232, 1, 0, 0, 0, 4235, 4236, 1, 0, 0, 0, 4236, 4243, 1, 0, 0, 0, 4237, 4239, 7, 46, 0, 0, 4238, 4240, 3, 298, 149, 0, 4239, 4238, 1, 0, 0, 0, 4240, 4241, 1, 0, 0, 0, 4241, 4239, 1, 0, 0, 0, 4241, 4242, 1, 0, 0, 0, 4242, 4244, 1, 0, 0, 0, 4243, 4237, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4251, 1, 0, 0, 0, 4245, 4247, 5, 102, 0, 0, 4246, 4248, 3, 300, 150, 0, 4247, 4246, 1, 0, 0, 0, 4248, 4249, 1, 0, 0, 0, 4249, 4247, 1, 0, 0, 0, 4249, 4250, 1, 0, 0, 0, 4250, 4252, 1, 0, 0, 0, 4251, 4245, 1, 0, 0, 0, 4251, 4252, 1, 0, 0, 0, 4252, 4254, 1, 0, 0, 0, 4253, 4217, 1, 0, 0, 0, 4253, 4226, 1, 0, 0, 0, 4253, 4229, 1, 0, 0, 0, 4254, 297, 1, 0, 0, 0, 4255, 4256, 5, 174, 0, 0, 4256, 4257, 5, 20, 0, 0, 4257, 4268, 5, 882, 0, 0, 4258, 4260, 5, 123, 0, 0, 4259, 4258, 1, 0, 0, 0, 4259, 4260, 1, 0, 0, 0, 4260, 4261, 1, 0, 0, 0, 4261, 4262, 5, 56, 0, 0, 4262, 4263, 5, 20, 0, 0, 4263, 4268, 5, 882, 0, 0, 4264, 4265, 5, 58, 0, 0, 4265, 4266, 5, 20, 0, 0, 4266, 4268, 5, 882, 0, 0, 4267, 4255, 1, 0, 0, 0, 4267, 4259, 1, 0, 0, 0, 4267, 4264, 1, 0, 0, 0, 4268, 299, 1, 0, 0, 0, 4269, 4270, 5, 171, 0, 0, 4270, 4271, 5, 20, 0, 0, 4271, 4276, 5, 882, 0, 0, 4272, 4273, 5, 174, 0, 0, 4273, 4274, 5, 20, 0, 0, 4274, 4276, 5, 882, 0, 0, 4275, 4269, 1, 0, 0, 0, 4275, 4272, 1, 0, 0, 0, 4276, 301, 1, 0, 0, 0, 4277, 4278, 5, 68, 0, 0, 4278, 4280, 3, 256, 128, 0, 4279, 4277, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4283, 1, 0, 0, 0, 4281, 4282, 5, 192, 0, 0, 4282, 4284, 3, 800, 400, 0, 4283, 4281, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 303, 1, 0, 0, 0, 4285, 4286, 5, 74, 0, 0, 4286, 4287, 5, 20, 0, 0, 4287, 4292, 3, 310, 155, 0, 4288, 4289, 5, 868, 0, 0, 4289, 4291, 3, 310, 155, 0, 4290, 4288, 1, 0, 0, 0, 4291, 4294, 1, 0, 0, 0, 4292, 4290, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4297, 1, 0, 0, 0, 4294, 4292, 1, 0, 0, 0, 4295, 4296, 5, 194, 0, 0, 4296, 4298, 5, 584, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 305, 1, 0, 0, 0, 4299, 4300, 5, 75, 0, 0, 4300, 4301, 3, 800, 400, 0, 4301, 307, 1, 0, 0, 0, 4302, 4303, 5, 689, 0, 0, 4303, 4304, 3, 778, 389, 0, 4304, 4305, 5, 13, 0, 0, 4305, 4306, 5, 866, 0, 0, 4306, 4307, 3, 776, 388, 0, 4307, 4317, 5, 867, 0, 0, 4308, 4309, 5, 868, 0, 0, 4309, 4310, 3, 778, 389, 0, 4310, 4311, 5, 13, 0, 0, 4311, 4312, 5, 866, 0, 0, 4312, 4313, 3, 776, 388, 0, 4313, 4314, 5, 867, 0, 0, 4314, 4316, 1, 0, 0, 0, 4315, 4308, 1, 0, 0, 0, 4316, 4319, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4317, 4318, 1, 0, 0, 0, 4318, 309, 1, 0, 0, 0, 4319, 4317, 1, 0, 0, 0, 4320, 4322, 3, 800, 400, 0, 4321, 4323, 7, 54, 0, 0, 4322, 4321, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 311, 1, 0, 0, 0, 4324, 4335, 5, 100, 0, 0, 4325, 4326, 3, 314, 157, 0, 4326, 4327, 5, 868, 0, 0, 4327, 4329, 1, 0, 0, 0, 4328, 4325, 1, 0, 0, 0, 4328, 4329, 1, 0, 0, 0, 4329, 4330, 1, 0, 0, 0, 4330, 4336, 3, 314, 157, 0, 4331, 4332, 3, 314, 157, 0, 4332, 4333, 5, 509, 0, 0, 4333, 4334, 3, 314, 157, 0, 4334, 4336, 1, 0, 0, 0, 4335, 4328, 1, 0, 0, 0, 4335, 4331, 1, 0, 0, 0, 4336, 313, 1, 0, 0, 0, 4337, 4341, 3, 708, 354, 0, 4338, 4341, 3, 682, 341, 0, 4339, 4341, 3, 704, 352, 0, 4340, 4337, 1, 0, 0, 0, 4340, 4338, 1, 0, 0, 0, 4340, 4339, 1, 0, 0, 0, 4341, 315, 1, 0, 0, 0, 4342, 4343, 5, 640, 0, 0, 4343, 4352, 5, 664, 0, 0, 4344, 4349, 3, 338, 169, 0, 4345, 4346, 5, 868, 0, 0, 4346, 4348, 3, 338, 169, 0, 4347, 4345, 1, 0, 0, 0, 4348, 4351, 1, 0, 0, 0, 4349, 4347, 1, 0, 0, 0, 4349, 4350, 1, 0, 0, 0, 4350, 4353, 1, 0, 0, 0, 4351, 4349, 1, 0, 0, 0, 4352, 4344, 1, 0, 0, 0, 4352, 4353, 1, 0, 0, 0, 4353, 317, 1, 0, 0, 0, 4354, 4356, 5, 317, 0, 0, 4355, 4357, 5, 691, 0, 0, 4356, 4355, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 319, 1, 0, 0, 0, 4358, 4360, 5, 341, 0, 0, 4359, 4361, 5, 691, 0, 0, 4360, 4359, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 4367, 1, 0, 0, 0, 4362, 4364, 5, 11, 0, 0, 4363, 4365, 5, 502, 0, 0, 4364, 4363, 1, 0, 0, 0, 4364, 4365, 1, 0, 0, 0, 4365, 4366, 1, 0, 0, 0, 4366, 4368, 5, 326, 0, 0, 4367, 4362, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4373, 1, 0, 0, 0, 4369, 4371, 5, 502, 0, 0, 4370, 4369, 1, 0, 0, 0, 4370, 4371, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4374, 5, 140, 0, 0, 4373, 4370, 1, 0, 0, 0, 4373, 4374, 1, 0, 0, 0, 4374, 321, 1, 0, 0, 0, 4375, 4377, 5, 583, 0, 0, 4376, 4378, 5, 691, 0, 0, 4377, 4376, 1, 0, 0, 0, 4377, 4378, 1, 0, 0, 0, 4378, 4384, 1, 0, 0, 0, 4379, 4381, 5, 11, 0, 0, 4380, 4382, 5, 502, 0, 0, 4381, 4380, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 4383, 1, 0, 0, 0, 4383, 4385, 5, 326, 0, 0, 4384, 4379, 1, 0, 0, 0, 4384, 4385, 1, 0, 0, 0, 4385, 4390, 1, 0, 0, 0, 4386, 4388, 5, 502, 0, 0, 4387, 4386, 1, 0, 0, 0, 4387, 4388, 1, 0, 0, 0, 4388, 4389, 1, 0, 0, 0, 4389, 4391, 5, 140, 0, 0, 4390, 4387, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 323, 1, 0, 0, 0, 4392, 4393, 5, 589, 0, 0, 4393, 4394, 3, 702, 351, 0, 4394, 325, 1, 0, 0, 0, 4395, 4397, 5, 583, 0, 0, 4396, 4398, 5, 691, 0, 0, 4397, 4396, 1, 0, 0, 0, 4397, 4398, 1, 0, 0, 0, 4398, 4399, 1, 0, 0, 0, 4399, 4401, 5, 176, 0, 0, 4400, 4402, 5, 589, 0, 0, 4401, 4400, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 4403, 1, 0, 0, 0, 4403, 4404, 3, 702, 351, 0, 4404, 327, 1, 0, 0, 0, 4405, 4406, 5, 140, 0, 0, 4406, 4407, 5, 589, 0, 0, 4407, 4408, 3, 702, 351, 0, 4408, 329, 1, 0, 0, 0, 4409, 4410, 5, 104, 0, 0, 4410, 4411, 7, 60, 0, 0, 4411, 4416, 3, 340, 170, 0, 4412, 4413, 5, 868, 0, 0, 4413, 4415, 3, 340, 170, 0, 4414, 4412, 1, 0, 0, 0, 4415, 4418, 1, 0, 0, 0, 4416, 4414, 1, 0, 0, 0, 4416, 4417, 1, 0, 0, 0, 4417, 331, 1, 0, 0, 0, 4418, 4416, 1, 0, 0, 0, 4419, 4420, 5, 183, 0, 0, 4420, 4421, 5, 752, 0, 0, 4421, 333, 1, 0, 0, 0, 4422, 4423, 5, 155, 0, 0, 4423, 4424, 5, 313, 0, 0, 4424, 4425, 5, 857, 0, 0, 4425, 4426, 7, 25, 0, 0, 4426, 335, 1, 0, 0, 0, 4427, 4429, 5, 155, 0, 0, 4428, 4430, 7, 61, 0, 0, 4429, 4428, 1, 0, 0, 0, 4429, 4430, 1, 0, 0, 0, 4430, 4431, 1, 0, 0, 0, 4431, 4432, 5, 664, 0, 0, 4432, 4437, 3, 344, 172, 0, 4433, 4434, 5, 868, 0, 0, 4434, 4436, 3, 344, 172, 0, 4435, 4433, 1, 0, 0, 0, 4436, 4439, 1, 0, 0, 0, 4437, 4435, 1, 0, 0, 0, 4437, 4438, 1, 0, 0, 0, 4438, 337, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4440, 4441, 5, 194, 0, 0, 4441, 4442, 5, 350, 0, 0, 4442, 4448, 5, 600, 0, 0, 4443, 4444, 5, 135, 0, 0, 4444, 4448, 5, 195, 0, 0, 4445, 4446, 5, 135, 0, 0, 4446, 4448, 5, 515, 0, 0, 4447, 4440, 1, 0, 0, 0, 4447, 4443, 1, 0, 0, 0, 4447, 4445, 1, 0, 0, 0, 4448, 339, 1, 0, 0, 0, 4449, 4454, 3, 648, 324, 0, 4450, 4452, 5, 13, 0, 0, 4451, 4450, 1, 0, 0, 0, 4451, 4452, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 4455, 3, 702, 351, 0, 4454, 4451, 1, 0, 0, 0, 4454, 4455, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 4457, 3, 342, 171, 0, 4457, 341, 1, 0, 0, 0, 4458, 4460, 5, 135, 0, 0, 4459, 4461, 5, 450, 0, 0, 4460, 4459, 1, 0, 0, 0, 4460, 4461, 1, 0, 0, 0, 4461, 4467, 1, 0, 0, 0, 4462, 4464, 5, 107, 0, 0, 4463, 4462, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4465, 1, 0, 0, 0, 4465, 4467, 5, 195, 0, 0, 4466, 4458, 1, 0, 0, 0, 4466, 4463, 1, 0, 0, 0, 4467, 343, 1, 0, 0, 0, 4468, 4469, 5, 440, 0, 0, 4469, 4470, 5, 448, 0, 0, 4470, 4476, 3, 346, 173, 0, 4471, 4472, 5, 135, 0, 0, 4472, 4476, 5, 195, 0, 0, 4473, 4474, 5, 135, 0, 0, 4474, 4476, 5, 515, 0, 0, 4475, 4468, 1, 0, 0, 0, 4475, 4471, 1, 0, 0, 0, 4475, 4473, 1, 0, 0, 0, 4476, 345, 1, 0, 0, 0, 4477, 4478, 5, 809, 0, 0, 4478, 4485, 5, 135, 0, 0, 4479, 4480, 5, 135, 0, 0, 4480, 4485, 5, 810, 0, 0, 4481, 4482, 5, 135, 0, 0, 4482, 4485, 5, 811, 0, 0, 4483, 4485, 5, 812, 0, 0, 4484, 4477, 1, 0, 0, 0, 4484, 4479, 1, 0, 0, 0, 4484, 4481, 1, 0, 0, 0, 4484, 4483, 1, 0, 0, 0, 4485, 347, 1, 0, 0, 0, 4486, 4487, 5, 25, 0, 0, 4487, 4488, 5, 453, 0, 0, 4488, 4489, 5, 176, 0, 0, 4489, 4494, 3, 364, 182, 0, 4490, 4491, 5, 868, 0, 0, 4491, 4493, 3, 364, 182, 0, 4492, 4490, 1, 0, 0, 0, 4493, 4496, 1, 0, 0, 0, 4494, 4492, 1, 0, 0, 0, 4494, 4495, 1, 0, 0, 0, 4495, 4498, 1, 0, 0, 0, 4496, 4494, 1, 0, 0, 0, 4497, 4499, 3, 384, 192, 0, 4498, 4497, 1, 0, 0, 0, 4498, 4499, 1, 0, 0, 0, 4499, 349, 1, 0, 0, 0, 4500, 4501, 5, 25, 0, 0, 4501, 4502, 5, 572, 0, 0, 4502, 4503, 5, 400, 0, 0, 4503, 4508, 3, 386, 193, 0, 4504, 4505, 5, 868, 0, 0, 4505, 4507, 3, 386, 193, 0, 4506, 4504, 1, 0, 0, 0, 4507, 4510, 1, 0, 0, 0, 4508, 4506, 1, 0, 0, 0, 4508, 4509, 1, 0, 0, 0, 4509, 4512, 1, 0, 0, 0, 4510, 4508, 1, 0, 0, 0, 4511, 4513, 3, 384, 192, 0, 4512, 4511, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 351, 1, 0, 0, 0, 4514, 4515, 5, 25, 0, 0, 4515, 4516, 5, 572, 0, 0, 4516, 4517, 5, 605, 0, 0, 4517, 4518, 5, 176, 0, 0, 4518, 4523, 3, 374, 187, 0, 4519, 4520, 5, 868, 0, 0, 4520, 4522, 3, 374, 187, 0, 4521, 4519, 1, 0, 0, 0, 4522, 4525, 1, 0, 0, 0, 4523, 4521, 1, 0, 0, 0, 4523, 4524, 1, 0, 0, 0, 4524, 4527, 1, 0, 0, 0, 4525, 4523, 1, 0, 0, 0, 4526, 4528, 3, 384, 192, 0, 4527, 4526, 1, 0, 0, 0, 4527, 4528, 1, 0, 0, 0, 4528, 353, 1, 0, 0, 0, 4529, 4530, 5, 133, 0, 0, 4530, 4531, 7, 62, 0, 0, 4531, 4536, 5, 452, 0, 0, 4532, 4533, 5, 176, 0, 0, 4533, 4537, 5, 882, 0, 0, 4534, 4535, 5, 16, 0, 0, 4535, 4537, 5, 882, 0, 0, 4536, 4532, 1, 0, 0, 0, 4536, 4534, 1, 0, 0, 0, 4537, 355, 1, 0, 0, 0, 4538, 4539, 5, 640, 0, 0, 4539, 4548, 7, 63, 0, 0, 4540, 4545, 3, 390, 195, 0, 4541, 4542, 5, 868, 0, 0, 4542, 4544, 3, 390, 195, 0, 4543, 4541, 1, 0, 0, 0, 4544, 4547, 1, 0, 0, 0, 4545, 4543, 1, 0, 0, 0, 4545, 4546, 1, 0, 0, 0, 4546, 4549, 1, 0, 0, 0, 4547, 4545, 1, 0, 0, 0, 4548, 4540, 1, 0, 0, 0, 4548, 4549, 1, 0, 0, 0, 4549, 4552, 1, 0, 0, 0, 4550, 4551, 5, 676, 0, 0, 4551, 4553, 3, 392, 196, 0, 4552, 4550, 1, 0, 0, 0, 4552, 4553, 1, 0, 0, 0, 4553, 4557, 1, 0, 0, 0, 4554, 4556, 3, 394, 197, 0, 4555, 4554, 1, 0, 0, 0, 4556, 4559, 1, 0, 0, 0, 4557, 4555, 1, 0, 0, 0, 4557, 4558, 1, 0, 0, 0, 4558, 4561, 1, 0, 0, 0, 4559, 4557, 1, 0, 0, 0, 4560, 4562, 3, 384, 192, 0, 4561, 4560, 1, 0, 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 357, 1, 0, 0, 0, 4563, 4564, 5, 646, 0, 0, 4564, 4573, 7, 63, 0, 0, 4565, 4570, 3, 390, 195, 0, 4566, 4567, 5, 868, 0, 0, 4567, 4569, 3, 390, 195, 0, 4568, 4566, 1, 0, 0, 0, 4569, 4572, 1, 0, 0, 0, 4570, 4568, 1, 0, 0, 0, 4570, 4571, 1, 0, 0, 0, 4571, 4574, 1, 0, 0, 0, 4572, 4570, 1, 0, 0, 0, 4573, 4565, 1, 0, 0, 0, 4573, 4574, 1, 0, 0, 0, 4574, 4576, 1, 0, 0, 0, 4575, 4577, 3, 384, 192, 0, 4576, 4575, 1, 0, 0, 0, 4576, 4577, 1, 0, 0, 0, 4577, 359, 1, 0, 0, 0, 4578, 4579, 5, 640, 0, 0, 4579, 4583, 5, 415, 0, 0, 4580, 4581, 5, 678, 0, 0, 4581, 4582, 5, 857, 0, 0, 4582, 4584, 5, 882, 0, 0, 4583, 4580, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 4589, 1, 0, 0, 0, 4585, 4586, 5, 868, 0, 0, 4586, 4587, 5, 529, 0, 0, 4587, 4588, 5, 857, 0, 0, 4588, 4590, 5, 882, 0, 0, 4589, 4585, 1, 0, 0, 0, 4589, 4590, 1, 0, 0, 0, 4590, 4595, 1, 0, 0, 0, 4591, 4592, 5, 868, 0, 0, 4592, 4593, 5, 363, 0, 0, 4593, 4594, 5, 857, 0, 0, 4594, 4596, 5, 882, 0, 0, 4595, 4591, 1, 0, 0, 0, 4595, 4596, 1, 0, 0, 0, 4596, 361, 1, 0, 0, 0, 4597, 4598, 5, 646, 0, 0, 4598, 4599, 5, 415, 0, 0, 4599, 363, 1, 0, 0, 0, 4600, 4601, 3, 366, 183, 0, 4601, 4602, 5, 857, 0, 0, 4602, 4603, 5, 882, 0, 0, 4603, 4628, 1, 0, 0, 0, 4604, 4605, 3, 368, 184, 0, 4605, 4606, 5, 857, 0, 0, 4606, 4607, 3, 708, 354, 0, 4607, 4628, 1, 0, 0, 0, 4608, 4609, 3, 370, 185, 0, 4609, 4610, 5, 857, 0, 0, 4610, 4611, 7, 25, 0, 0, 4611, 4628, 1, 0, 0, 0, 4612, 4628, 3, 372, 186, 0, 4613, 4614, 5, 424, 0, 0, 4614, 4615, 5, 857, 0, 0, 4615, 4624, 5, 866, 0, 0, 4616, 4621, 3, 702, 351, 0, 4617, 4618, 5, 868, 0, 0, 4618, 4620, 3, 702, 351, 0, 4619, 4617, 1, 0, 0, 0, 4620, 4623, 1, 0, 0, 0, 4621, 4619, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 4625, 1, 0, 0, 0, 4623, 4621, 1, 0, 0, 0, 4624, 4616, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4628, 5, 867, 0, 0, 4627, 4600, 1, 0, 0, 0, 4627, 4604, 1, 0, 0, 0, 4627, 4608, 1, 0, 0, 0, 4627, 4612, 1, 0, 0, 0, 4627, 4613, 1, 0, 0, 0, 4628, 365, 1, 0, 0, 0, 4629, 4630, 7, 64, 0, 0, 4630, 367, 1, 0, 0, 0, 4631, 4632, 7, 65, 0, 0, 4632, 369, 1, 0, 0, 0, 4633, 4634, 7, 66, 0, 0, 4634, 371, 1, 0, 0, 0, 4635, 4636, 5, 543, 0, 0, 4636, 4637, 5, 857, 0, 0, 4637, 4649, 7, 67, 0, 0, 4638, 4639, 5, 574, 0, 0, 4639, 4640, 5, 857, 0, 0, 4640, 4649, 7, 68, 0, 0, 4641, 4642, 5, 310, 0, 0, 4642, 4646, 5, 857, 0, 0, 4643, 4647, 5, 507, 0, 0, 4644, 4647, 5, 450, 0, 0, 4645, 4647, 3, 396, 198, 0, 4646, 4643, 1, 0, 0, 0, 4646, 4644, 1, 0, 0, 0, 4646, 4645, 1, 0, 0, 0, 4647, 4649, 1, 0, 0, 0, 4648, 4635, 1, 0, 0, 0, 4648, 4638, 1, 0, 0, 0, 4648, 4641, 1, 0, 0, 0, 4649, 373, 1, 0, 0, 0, 4650, 4651, 3, 376, 188, 0, 4651, 4652, 5, 857, 0, 0, 4652, 4653, 5, 882, 0, 0, 4653, 4678, 1, 0, 0, 0, 4654, 4655, 3, 378, 189, 0, 4655, 4656, 5, 857, 0, 0, 4656, 4657, 3, 708, 354, 0, 4657, 4678, 1, 0, 0, 0, 4658, 4659, 3, 380, 190, 0, 4659, 4660, 5, 857, 0, 0, 4660, 4661, 7, 25, 0, 0, 4661, 4678, 1, 0, 0, 0, 4662, 4678, 3, 382, 191, 0, 4663, 4664, 5, 424, 0, 0, 4664, 4665, 5, 857, 0, 0, 4665, 4674, 5, 866, 0, 0, 4666, 4671, 3, 702, 351, 0, 4667, 4668, 5, 868, 0, 0, 4668, 4670, 3, 702, 351, 0, 4669, 4667, 1, 0, 0, 0, 4670, 4673, 1, 0, 0, 0, 4671, 4669, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 4675, 1, 0, 0, 0, 4673, 4671, 1, 0, 0, 0, 4674, 4666, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, 0, 4675, 4676, 1, 0, 0, 0, 4676, 4678, 5, 867, 0, 0, 4677, 4650, 1, 0, 0, 0, 4677, 4654, 1, 0, 0, 0, 4677, 4658, 1, 0, 0, 0, 4677, 4662, 1, 0, 0, 0, 4677, 4663, 1, 0, 0, 0, 4678, 375, 1, 0, 0, 0, 4679, 4680, 7, 69, 0, 0, 4680, 377, 1, 0, 0, 0, 4681, 4682, 7, 70, 0, 0, 4682, 379, 1, 0, 0, 0, 4683, 4684, 7, 71, 0, 0, 4684, 381, 1, 0, 0, 0, 4685, 4686, 5, 543, 0, 0, 4686, 4687, 5, 857, 0, 0, 4687, 4699, 7, 67, 0, 0, 4688, 4689, 5, 574, 0, 0, 4689, 4690, 5, 857, 0, 0, 4690, 4699, 7, 72, 0, 0, 4691, 4692, 5, 310, 0, 0, 4692, 4696, 5, 857, 0, 0, 4693, 4697, 5, 507, 0, 0, 4694, 4697, 5, 450, 0, 0, 4695, 4697, 3, 396, 198, 0, 4696, 4693, 1, 0, 0, 0, 4696, 4694, 1, 0, 0, 0, 4696, 4695, 1, 0, 0, 0, 4697, 4699, 1, 0, 0, 0, 4698, 4685, 1, 0, 0, 0, 4698, 4688, 1, 0, 0, 0, 4698, 4691, 1, 0, 0, 0, 4699, 383, 1, 0, 0, 0, 4700, 4701, 5, 65, 0, 0, 4701, 4702, 5, 328, 0, 0, 4702, 4703, 5, 882, 0, 0, 4703, 385, 1, 0, 0, 0, 4704, 4705, 5, 565, 0, 0, 4705, 4706, 5, 857, 0, 0, 4706, 4707, 5, 866, 0, 0, 4707, 4712, 3, 624, 312, 0, 4708, 4709, 5, 868, 0, 0, 4709, 4711, 3, 624, 312, 0, 4710, 4708, 1, 0, 0, 0, 4711, 4714, 1, 0, 0, 0, 4712, 4710, 1, 0, 0, 0, 4712, 4713, 1, 0, 0, 0, 4713, 4715, 1, 0, 0, 0, 4714, 4712, 1, 0, 0, 0, 4715, 4716, 5, 867, 0, 0, 4716, 4768, 1, 0, 0, 0, 4717, 4718, 5, 567, 0, 0, 4718, 4719, 5, 857, 0, 0, 4719, 4720, 5, 866, 0, 0, 4720, 4725, 3, 624, 312, 0, 4721, 4722, 5, 868, 0, 0, 4722, 4724, 3, 624, 312, 0, 4723, 4721, 1, 0, 0, 0, 4724, 4727, 1, 0, 0, 0, 4725, 4723, 1, 0, 0, 0, 4725, 4726, 1, 0, 0, 0, 4726, 4728, 1, 0, 0, 0, 4727, 4725, 1, 0, 0, 0, 4728, 4729, 5, 867, 0, 0, 4729, 4768, 1, 0, 0, 0, 4730, 4731, 5, 566, 0, 0, 4731, 4732, 5, 857, 0, 0, 4732, 4733, 5, 866, 0, 0, 4733, 4734, 3, 646, 323, 0, 4734, 4735, 5, 867, 0, 0, 4735, 4768, 1, 0, 0, 0, 4736, 4737, 5, 568, 0, 0, 4737, 4738, 5, 857, 0, 0, 4738, 4739, 5, 866, 0, 0, 4739, 4740, 3, 646, 323, 0, 4740, 4741, 5, 867, 0, 0, 4741, 4768, 1, 0, 0, 0, 4742, 4743, 5, 570, 0, 0, 4743, 4744, 5, 857, 0, 0, 4744, 4745, 5, 866, 0, 0, 4745, 4746, 3, 746, 373, 0, 4746, 4747, 5, 867, 0, 0, 4747, 4768, 1, 0, 0, 0, 4748, 4749, 5, 571, 0, 0, 4749, 4750, 5, 857, 0, 0, 4750, 4751, 5, 866, 0, 0, 4751, 4752, 3, 746, 373, 0, 4752, 4753, 5, 867, 0, 0, 4753, 4768, 1, 0, 0, 0, 4754, 4755, 5, 569, 0, 0, 4755, 4756, 5, 857, 0, 0, 4756, 4757, 5, 866, 0, 0, 4757, 4762, 3, 388, 194, 0, 4758, 4759, 5, 868, 0, 0, 4759, 4761, 3, 388, 194, 0, 4760, 4758, 1, 0, 0, 0, 4761, 4764, 1, 0, 0, 0, 4762, 4760, 1, 0, 0, 0, 4762, 4763, 1, 0, 0, 0, 4763, 4765, 1, 0, 0, 0, 4764, 4762, 1, 0, 0, 0, 4765, 4766, 5, 867, 0, 0, 4766, 4768, 1, 0, 0, 0, 4767, 4704, 1, 0, 0, 0, 4767, 4717, 1, 0, 0, 0, 4767, 4730, 1, 0, 0, 0, 4767, 4736, 1, 0, 0, 0, 4767, 4742, 1, 0, 0, 0, 4767, 4748, 1, 0, 0, 0, 4767, 4754, 1, 0, 0, 0, 4768, 387, 1, 0, 0, 0, 4769, 4770, 5, 866, 0, 0, 4770, 4771, 3, 648, 324, 0, 4771, 4772, 5, 868, 0, 0, 4772, 4773, 3, 648, 324, 0, 4773, 4774, 5, 867, 0, 0, 4774, 389, 1, 0, 0, 0, 4775, 4776, 7, 73, 0, 0, 4776, 391, 1, 0, 0, 0, 4777, 4778, 7, 74, 0, 0, 4778, 4779, 5, 857, 0, 0, 4779, 4803, 3, 396, 198, 0, 4780, 4781, 5, 460, 0, 0, 4781, 4782, 5, 857, 0, 0, 4782, 4783, 5, 882, 0, 0, 4783, 4784, 5, 868, 0, 0, 4784, 4785, 5, 461, 0, 0, 4785, 4786, 5, 857, 0, 0, 4786, 4803, 3, 708, 354, 0, 4787, 4788, 5, 611, 0, 0, 4788, 4789, 5, 857, 0, 0, 4789, 4790, 5, 882, 0, 0, 4790, 4791, 5, 868, 0, 0, 4791, 4792, 5, 612, 0, 0, 4792, 4793, 5, 857, 0, 0, 4793, 4803, 3, 708, 354, 0, 4794, 4795, 5, 557, 0, 0, 4795, 4796, 5, 857, 0, 0, 4796, 4797, 5, 882, 0, 0, 4797, 4798, 5, 868, 0, 0, 4798, 4799, 5, 558, 0, 0, 4799, 4800, 5, 857, 0, 0, 4800, 4803, 3, 708, 354, 0, 4801, 4803, 5, 634, 0, 0, 4802, 4777, 1, 0, 0, 0, 4802, 4780, 1, 0, 0, 0, 4802, 4787, 1, 0, 0, 0, 4802, 4794, 1, 0, 0, 0, 4802, 4801, 1, 0, 0, 0, 4803, 393, 1, 0, 0, 0, 4804, 4805, 5, 678, 0, 0, 4805, 4806, 5, 857, 0, 0, 4806, 4817, 5, 882, 0, 0, 4807, 4808, 5, 529, 0, 0, 4808, 4809, 5, 857, 0, 0, 4809, 4817, 5, 882, 0, 0, 4810, 4811, 5, 363, 0, 0, 4811, 4812, 5, 857, 0, 0, 4812, 4817, 5, 882, 0, 0, 4813, 4814, 5, 535, 0, 0, 4814, 4815, 5, 857, 0, 0, 4815, 4817, 5, 882, 0, 0, 4816, 4804, 1, 0, 0, 0, 4816, 4807, 1, 0, 0, 0, 4816, 4810, 1, 0, 0, 0, 4816, 4813, 1, 0, 0, 0, 4817, 395, 1, 0, 0, 0, 4818, 4823, 3, 692, 346, 0, 4819, 4820, 5, 868, 0, 0, 4820, 4822, 3, 692, 346, 0, 4821, 4819, 1, 0, 0, 0, 4822, 4825, 1, 0, 0, 0, 4823, 4821, 1, 0, 0, 0, 4823, 4824, 1, 0, 0, 0, 4824, 4828, 1, 0, 0, 0, 4825, 4823, 1, 0, 0, 0, 4826, 4828, 5, 882, 0, 0, 4827, 4818, 1, 0, 0, 0, 4827, 4826, 1, 0, 0, 0, 4828, 397, 1, 0, 0, 0, 4829, 4830, 5, 694, 0, 0, 4830, 4831, 7, 75, 0, 0, 4831, 4833, 3, 694, 347, 0, 4832, 4834, 7, 76, 0, 0, 4833, 4832, 1, 0, 0, 0, 4833, 4834, 1, 0, 0, 0, 4834, 399, 1, 0, 0, 0, 4835, 4836, 5, 694, 0, 0, 4836, 4837, 5, 378, 0, 0, 4837, 4843, 3, 694, 347, 0, 4838, 4841, 5, 654, 0, 0, 4839, 4840, 5, 65, 0, 0, 4840, 4842, 5, 489, 0, 0, 4841, 4839, 1, 0, 0, 0, 4841, 4842, 1, 0, 0, 0, 4842, 4844, 1, 0, 0, 0, 4843, 4838, 1, 0, 0, 0, 4843, 4844, 1, 0, 0, 0, 4844, 401, 1, 0, 0, 0, 4845, 4846, 5, 694, 0, 0, 4846, 4847, 5, 540, 0, 0, 4847, 4848, 3, 694, 347, 0, 4848, 403, 1, 0, 0, 0, 4849, 4850, 5, 694, 0, 0, 4850, 4851, 5, 341, 0, 0, 4851, 4854, 3, 694, 347, 0, 4852, 4853, 5, 513, 0, 0, 4853, 4855, 5, 533, 0, 0, 4854, 4852, 1, 0, 0, 0, 4854, 4855, 1, 0, 0, 0, 4855, 405, 1, 0, 0, 0, 4856, 4857, 5, 694, 0, 0, 4857, 4858, 5, 583, 0, 0, 4858, 4859, 3, 694, 347, 0, 4859, 407, 1, 0, 0, 0, 4860, 4861, 5, 694, 0, 0, 4861, 4864, 5, 551, 0, 0, 4862, 4863, 5, 33, 0, 0, 4863, 4865, 3, 694, 347, 0, 4864, 4862, 1, 0, 0, 0, 4864, 4865, 1, 0, 0, 0, 4865, 409, 1, 0, 0, 0, 4866, 4867, 5, 540, 0, 0, 4867, 4868, 3, 702, 351, 0, 4868, 4871, 5, 68, 0, 0, 4869, 4872, 5, 882, 0, 0, 4870, 4872, 5, 892, 0, 0, 4871, 4869, 1, 0, 0, 0, 4871, 4870, 1, 0, 0, 0, 4872, 411, 1, 0, 0, 0, 4873, 4874, 5, 717, 0, 0, 4874, 4877, 3, 702, 351, 0, 4875, 4876, 5, 188, 0, 0, 4876, 4878, 3, 748, 374, 0, 4877, 4875, 1, 0, 0, 0, 4877, 4878, 1, 0, 0, 0, 4878, 413, 1, 0, 0, 0, 4879, 4880, 7, 77, 0, 0, 4880, 4881, 5, 540, 0, 0, 4881, 4882, 3, 702, 351, 0, 4882, 415, 1, 0, 0, 0, 4883, 4886, 3, 418, 209, 0, 4884, 4886, 3, 4, 2, 0, 4885, 4883, 1, 0, 0, 0, 4885, 4884, 1, 0, 0, 0, 4886, 417, 1, 0, 0, 0, 4887, 4888, 3, 702, 351, 0, 4888, 4889, 5, 878, 0, 0, 4889, 4891, 1, 0, 0, 0, 4890, 4887, 1, 0, 0, 0, 4890, 4891, 1, 0, 0, 0, 4891, 4892, 1, 0, 0, 0, 4892, 4898, 5, 317, 0, 0, 4893, 4894, 3, 438, 219, 0, 4894, 4895, 5, 869, 0, 0, 4895, 4897, 1, 0, 0, 0, 4896, 4893, 1, 0, 0, 0, 4897, 4900, 1, 0, 0, 0, 4898, 4896, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4906, 1, 0, 0, 0, 4900, 4898, 1, 0, 0, 0, 4901, 4902, 3, 440, 220, 0, 4902, 4903, 5, 869, 0, 0, 4903, 4905, 1, 0, 0, 0, 4904, 4901, 1, 0, 0, 0, 4905, 4908, 1, 0, 0, 0, 4906, 4904, 1, 0, 0, 0, 4906, 4907, 1, 0, 0, 0, 4907, 4914, 1, 0, 0, 0, 4908, 4906, 1, 0, 0, 0, 4909, 4910, 3, 442, 221, 0, 4910, 4911, 5, 869, 0, 0, 4911, 4913, 1, 0, 0, 0, 4912, 4909, 1, 0, 0, 0, 4913, 4916, 1, 0, 0, 0, 4914, 4912, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4922, 1, 0, 0, 0, 4916, 4914, 1, 0, 0, 0, 4917, 4918, 3, 444, 222, 0, 4918, 4919, 5, 869, 0, 0, 4919, 4921, 1, 0, 0, 0, 4920, 4917, 1, 0, 0, 0, 4921, 4924, 1, 0, 0, 0, 4922, 4920, 1, 0, 0, 0, 4922, 4923, 1, 0, 0, 0, 4923, 4928, 1, 0, 0, 0, 4924, 4922, 1, 0, 0, 0, 4925, 4927, 3, 448, 224, 0, 4926, 4925, 1, 0, 0, 0, 4927, 4930, 1, 0, 0, 0, 4928, 4926, 1, 0, 0, 0, 4928, 4929, 1, 0, 0, 0, 4929, 4931, 1, 0, 0, 0, 4930, 4928, 1, 0, 0, 0, 4931, 4933, 5, 378, 0, 0, 4932, 4934, 3, 702, 351, 0, 4933, 4932, 1, 0, 0, 0, 4933, 4934, 1, 0, 0, 0, 4934, 419, 1, 0, 0, 0, 4935, 4938, 5, 23, 0, 0, 4936, 4939, 3, 702, 351, 0, 4937, 4939, 3, 800, 400, 0, 4938, 4936, 1, 0, 0, 0, 4938, 4937, 1, 0, 0, 0, 4938, 4939, 1, 0, 0, 0, 4939, 4941, 1, 0, 0, 0, 4940, 4942, 3, 450, 225, 0, 4941, 4940, 1, 0, 0, 0, 4942, 4943, 1, 0, 0, 0, 4943, 4941, 1, 0, 0, 0, 4943, 4944, 1, 0, 0, 0, 4944, 4951, 1, 0, 0, 0, 4945, 4947, 5, 53, 0, 0, 4946, 4948, 3, 448, 224, 0, 4947, 4946, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 4947, 1, 0, 0, 0, 4949, 4950, 1, 0, 0, 0, 4950, 4952, 1, 0, 0, 0, 4951, 4945, 1, 0, 0, 0, 4951, 4952, 1, 0, 0, 0, 4952, 4953, 1, 0, 0, 0, 4953, 4954, 5, 378, 0, 0, 4954, 4955, 5, 23, 0, 0, 4955, 421, 1, 0, 0, 0, 4956, 4957, 5, 78, 0, 0, 4957, 4958, 3, 800, 400, 0, 4958, 4960, 5, 175, 0, 0, 4959, 4961, 3, 448, 224, 0, 4960, 4959, 1, 0, 0, 0, 4961, 4962, 1, 0, 0, 0, 4962, 4960, 1, 0, 0, 0, 4962, 4963, 1, 0, 0, 0, 4963, 4967, 1, 0, 0, 0, 4964, 4966, 3, 452, 226, 0, 4965, 4964, 1, 0, 0, 0, 4966, 4969, 1, 0, 0, 0, 4967, 4965, 1, 0, 0, 0, 4967, 4968, 1, 0, 0, 0, 4968, 4976, 1, 0, 0, 0, 4969, 4967, 1, 0, 0, 0, 4970, 4972, 5, 53, 0, 0, 4971, 4973, 3, 448, 224, 0, 4972, 4971, 1, 0, 0, 0, 4973, 4974, 1, 0, 0, 0, 4974, 4972, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 4977, 1, 0, 0, 0, 4976, 4970, 1, 0, 0, 0, 4976, 4977, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4979, 5, 378, 0, 0, 4979, 4980, 5, 78, 0, 0, 4980, 423, 1, 0, 0, 0, 4981, 4982, 5, 90, 0, 0, 4982, 4983, 3, 702, 351, 0, 4983, 425, 1, 0, 0, 0, 4984, 4985, 5, 97, 0, 0, 4985, 4986, 3, 702, 351, 0, 4986, 427, 1, 0, 0, 0, 4987, 4988, 3, 702, 351, 0, 4988, 4989, 5, 878, 0, 0, 4989, 4991, 1, 0, 0, 0, 4990, 4987, 1, 0, 0, 0, 4990, 4991, 1, 0, 0, 0, 4991, 4992, 1, 0, 0, 0, 4992, 4994, 5, 106, 0, 0, 4993, 4995, 3, 448, 224, 0, 4994, 4993, 1, 0, 0, 0, 4995, 4996, 1, 0, 0, 0, 4996, 4994, 1, 0, 0, 0, 4996, 4997, 1, 0, 0, 0, 4997, 4998, 1, 0, 0, 0, 4998, 4999, 5, 378, 0, 0, 4999, 5001, 5, 106, 0, 0, 5000, 5002, 3, 702, 351, 0, 5001, 5000, 1, 0, 0, 0, 5001, 5002, 1, 0, 0, 0, 5002, 429, 1, 0, 0, 0, 5003, 5004, 3, 702, 351, 0, 5004, 5005, 5, 878, 0, 0, 5005, 5007, 1, 0, 0, 0, 5006, 5003, 1, 0, 0, 0, 5006, 5007, 1, 0, 0, 0, 5007, 5008, 1, 0, 0, 0, 5008, 5010, 5, 142, 0, 0, 5009, 5011, 3, 448, 224, 0, 5010, 5009, 1, 0, 0, 0, 5011, 5012, 1, 0, 0, 0, 5012, 5010, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5014, 1, 0, 0, 0, 5014, 5015, 5, 676, 0, 0, 5015, 5016, 3, 800, 400, 0, 5016, 5017, 5, 378, 0, 0, 5017, 5019, 5, 142, 0, 0, 5018, 5020, 3, 702, 351, 0, 5019, 5018, 1, 0, 0, 0, 5019, 5020, 1, 0, 0, 0, 5020, 431, 1, 0, 0, 0, 5021, 5022, 5, 148, 0, 0, 5022, 5023, 3, 800, 400, 0, 5023, 433, 1, 0, 0, 0, 5024, 5025, 3, 702, 351, 0, 5025, 5026, 5, 878, 0, 0, 5026, 5028, 1, 0, 0, 0, 5027, 5024, 1, 0, 0, 0, 5027, 5028, 1, 0, 0, 0, 5028, 5029, 1, 0, 0, 0, 5029, 5030, 5, 193, 0, 0, 5030, 5031, 3, 800, 400, 0, 5031, 5033, 5, 371, 0, 0, 5032, 5034, 3, 448, 224, 0, 5033, 5032, 1, 0, 0, 0, 5034, 5035, 1, 0, 0, 0, 5035, 5033, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 5037, 1, 0, 0, 0, 5037, 5038, 5, 378, 0, 0, 5038, 5040, 5, 193, 0, 0, 5039, 5041, 3, 702, 351, 0, 5040, 5039, 1, 0, 0, 0, 5040, 5041, 1, 0, 0, 0, 5041, 435, 1, 0, 0, 0, 5042, 5043, 5, 334, 0, 0, 5043, 5058, 3, 702, 351, 0, 5044, 5049, 5, 64, 0, 0, 5045, 5047, 5, 501, 0, 0, 5046, 5045, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 5050, 5, 68, 0, 0, 5049, 5046, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5051, 1, 0, 0, 0, 5051, 5052, 3, 702, 351, 0, 5052, 5053, 5, 88, 0, 0, 5053, 5054, 3, 700, 350, 0, 5054, 5058, 1, 0, 0, 0, 5055, 5056, 5, 516, 0, 0, 5056, 5058, 3, 702, 351, 0, 5057, 5042, 1, 0, 0, 0, 5057, 5044, 1, 0, 0, 0, 5057, 5055, 1, 0, 0, 0, 5058, 437, 1, 0, 0, 0, 5059, 5060, 5, 41, 0, 0, 5060, 5061, 3, 700, 350, 0, 5061, 5064, 3, 722, 361, 0, 5062, 5063, 5, 42, 0, 0, 5063, 5065, 3, 800, 400, 0, 5064, 5062, 1, 0, 0, 0, 5064, 5065, 1, 0, 0, 0, 5065, 439, 1, 0, 0, 0, 5066, 5067, 5, 41, 0, 0, 5067, 5068, 3, 702, 351, 0, 5068, 5069, 5, 30, 0, 0, 5069, 5076, 5, 65, 0, 0, 5070, 5077, 3, 708, 354, 0, 5071, 5073, 5, 164, 0, 0, 5072, 5074, 5, 682, 0, 0, 5073, 5072, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5077, 5, 882, 0, 0, 5076, 5070, 1, 0, 0, 0, 5076, 5071, 1, 0, 0, 0, 5077, 441, 1, 0, 0, 0, 5078, 5079, 5, 41, 0, 0, 5079, 5080, 3, 702, 351, 0, 5080, 5081, 5, 38, 0, 0, 5081, 5082, 5, 65, 0, 0, 5082, 5083, 3, 204, 102, 0, 5083, 443, 1, 0, 0, 0, 5084, 5085, 5, 41, 0, 0, 5085, 5086, 7, 78, 0, 0, 5086, 5087, 5, 417, 0, 0, 5087, 5088, 5, 65, 0, 0, 5088, 5093, 3, 446, 223, 0, 5089, 5090, 5, 868, 0, 0, 5090, 5092, 3, 446, 223, 0, 5091, 5089, 1, 0, 0, 0, 5092, 5095, 1, 0, 0, 0, 5093, 5091, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5096, 1, 0, 0, 0, 5095, 5093, 1, 0, 0, 0, 5096, 5097, 3, 416, 208, 0, 5097, 445, 1, 0, 0, 0, 5098, 5110, 3, 708, 354, 0, 5099, 5101, 5, 164, 0, 0, 5100, 5102, 5, 682, 0, 0, 5101, 5100, 1, 0, 0, 0, 5101, 5102, 1, 0, 0, 0, 5102, 5103, 1, 0, 0, 0, 5103, 5110, 5, 882, 0, 0, 5104, 5110, 3, 702, 351, 0, 5105, 5110, 5, 165, 0, 0, 5106, 5107, 5, 114, 0, 0, 5107, 5110, 5, 407, 0, 0, 5108, 5110, 5, 163, 0, 0, 5109, 5098, 1, 0, 0, 0, 5109, 5099, 1, 0, 0, 0, 5109, 5104, 1, 0, 0, 0, 5109, 5105, 1, 0, 0, 0, 5109, 5106, 1, 0, 0, 0, 5109, 5108, 1, 0, 0, 0, 5110, 447, 1, 0, 0, 0, 5111, 5114, 3, 18, 9, 0, 5112, 5114, 3, 4, 2, 0, 5113, 5111, 1, 0, 0, 0, 5113, 5112, 1, 0, 0, 0, 5114, 5115, 1, 0, 0, 0, 5115, 5116, 5, 869, 0, 0, 5116, 449, 1, 0, 0, 0, 5117, 5120, 5, 191, 0, 0, 5118, 5121, 3, 720, 360, 0, 5119, 5121, 3, 800, 400, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5119, 1, 0, 0, 0, 5121, 5122, 1, 0, 0, 0, 5122, 5124, 5, 175, 0, 0, 5123, 5125, 3, 448, 224, 0, 5124, 5123, 1, 0, 0, 0, 5125, 5126, 1, 0, 0, 0, 5126, 5124, 1, 0, 0, 0, 5126, 5127, 1, 0, 0, 0, 5127, 451, 1, 0, 0, 0, 5128, 5129, 5, 54, 0, 0, 5129, 5130, 3, 800, 400, 0, 5130, 5132, 5, 175, 0, 0, 5131, 5133, 3, 448, 224, 0, 5132, 5131, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5132, 1, 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 453, 1, 0, 0, 0, 5136, 5137, 5, 8, 0, 0, 5137, 5139, 5, 678, 0, 0, 5138, 5140, 3, 754, 377, 0, 5139, 5138, 1, 0, 0, 0, 5139, 5140, 1, 0, 0, 0, 5140, 5197, 1, 0, 0, 0, 5141, 5146, 3, 486, 243, 0, 5142, 5143, 5, 868, 0, 0, 5143, 5145, 3, 486, 243, 0, 5144, 5142, 1, 0, 0, 0, 5145, 5148, 1, 0, 0, 0, 5146, 5144, 1, 0, 0, 0, 5146, 5147, 1, 0, 0, 0, 5147, 5198, 1, 0, 0, 0, 5148, 5146, 1, 0, 0, 0, 5149, 5154, 3, 488, 244, 0, 5150, 5151, 5, 868, 0, 0, 5151, 5153, 3, 488, 244, 0, 5152, 5150, 1, 0, 0, 0, 5153, 5156, 1, 0, 0, 0, 5154, 5152, 1, 0, 0, 0, 5154, 5155, 1, 0, 0, 0, 5155, 5171, 1, 0, 0, 0, 5156, 5154, 1, 0, 0, 0, 5157, 5169, 5, 144, 0, 0, 5158, 5170, 5, 505, 0, 0, 5159, 5166, 3, 500, 250, 0, 5160, 5162, 5, 11, 0, 0, 5161, 5160, 1, 0, 0, 0, 5161, 5162, 1, 0, 0, 0, 5162, 5163, 1, 0, 0, 0, 5163, 5165, 3, 500, 250, 0, 5164, 5161, 1, 0, 0, 0, 5165, 5168, 1, 0, 0, 0, 5166, 5164, 1, 0, 0, 0, 5166, 5167, 1, 0, 0, 0, 5167, 5170, 1, 0, 0, 0, 5168, 5166, 1, 0, 0, 0, 5169, 5158, 1, 0, 0, 0, 5169, 5159, 1, 0, 0, 0, 5170, 5172, 1, 0, 0, 0, 5171, 5157, 1, 0, 0, 0, 5171, 5172, 1, 0, 0, 0, 5172, 5179, 1, 0, 0, 0, 5173, 5175, 5, 194, 0, 0, 5174, 5176, 3, 502, 251, 0, 5175, 5174, 1, 0, 0, 0, 5176, 5177, 1, 0, 0, 0, 5177, 5175, 1, 0, 0, 0, 5177, 5178, 1, 0, 0, 0, 5178, 5180, 1, 0, 0, 0, 5179, 5173, 1, 0, 0, 0, 5179, 5180, 1, 0, 0, 0, 5180, 5185, 1, 0, 0, 0, 5181, 5184, 3, 504, 252, 0, 5182, 5184, 3, 506, 253, 0, 5183, 5181, 1, 0, 0, 0, 5183, 5182, 1, 0, 0, 0, 5184, 5187, 1, 0, 0, 0, 5185, 5183, 1, 0, 0, 0, 5185, 5186, 1, 0, 0, 0, 5186, 5190, 1, 0, 0, 0, 5187, 5185, 1, 0, 0, 0, 5188, 5189, 7, 79, 0, 0, 5189, 5191, 5, 882, 0, 0, 5190, 5188, 1, 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5198, 1, 0, 0, 0, 5192, 5193, 3, 652, 326, 0, 5193, 5194, 5, 42, 0, 0, 5194, 5195, 5, 582, 0, 0, 5195, 5196, 3, 462, 231, 0, 5196, 5198, 1, 0, 0, 0, 5197, 5141, 1, 0, 0, 0, 5197, 5149, 1, 0, 0, 0, 5197, 5192, 1, 0, 0, 0, 5198, 455, 1, 0, 0, 0, 5199, 5200, 5, 34, 0, 0, 5200, 5202, 5, 678, 0, 0, 5201, 5203, 3, 756, 378, 0, 5202, 5201, 1, 0, 0, 0, 5202, 5203, 1, 0, 0, 0, 5203, 5204, 1, 0, 0, 0, 5204, 5206, 3, 680, 340, 0, 5205, 5207, 3, 490, 245, 0, 5206, 5205, 1, 0, 0, 0, 5206, 5207, 1, 0, 0, 0, 5207, 5215, 1, 0, 0, 0, 5208, 5209, 5, 868, 0, 0, 5209, 5211, 3, 680, 340, 0, 5210, 5212, 3, 490, 245, 0, 5211, 5210, 1, 0, 0, 0, 5211, 5212, 1, 0, 0, 0, 5212, 5214, 1, 0, 0, 0, 5213, 5208, 1, 0, 0, 0, 5214, 5217, 1, 0, 0, 0, 5215, 5213, 1, 0, 0, 0, 5215, 5216, 1, 0, 0, 0, 5216, 5221, 1, 0, 0, 0, 5217, 5215, 1, 0, 0, 0, 5218, 5219, 5, 42, 0, 0, 5219, 5220, 5, 582, 0, 0, 5220, 5222, 3, 462, 231, 0, 5221, 5218, 1, 0, 0, 0, 5221, 5222, 1, 0, 0, 0, 5222, 5237, 1, 0, 0, 0, 5223, 5235, 5, 144, 0, 0, 5224, 5236, 5, 505, 0, 0, 5225, 5232, 3, 500, 250, 0, 5226, 5228, 5, 11, 0, 0, 5227, 5226, 1, 0, 0, 0, 5227, 5228, 1, 0, 0, 0, 5228, 5229, 1, 0, 0, 0, 5229, 5231, 3, 500, 250, 0, 5230, 5227, 1, 0, 0, 0, 5231, 5234, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5232, 5233, 1, 0, 0, 0, 5233, 5236, 1, 0, 0, 0, 5234, 5232, 1, 0, 0, 0, 5235, 5224, 1, 0, 0, 0, 5235, 5225, 1, 0, 0, 0, 5236, 5238, 1, 0, 0, 0, 5237, 5223, 1, 0, 0, 0, 5237, 5238, 1, 0, 0, 0, 5238, 5245, 1, 0, 0, 0, 5239, 5241, 5, 194, 0, 0, 5240, 5242, 3, 502, 251, 0, 5241, 5240, 1, 0, 0, 0, 5242, 5243, 1, 0, 0, 0, 5243, 5241, 1, 0, 0, 0, 5243, 5244, 1, 0, 0, 0, 5244, 5246, 1, 0, 0, 0, 5245, 5239, 1, 0, 0, 0, 5245, 5246, 1, 0, 0, 0, 5246, 5251, 1, 0, 0, 0, 5247, 5250, 3, 504, 252, 0, 5248, 5250, 3, 506, 253, 0, 5249, 5247, 1, 0, 0, 0, 5249, 5248, 1, 0, 0, 0, 5250, 5253, 1, 0, 0, 0, 5251, 5249, 1, 0, 0, 0, 5251, 5252, 1, 0, 0, 0, 5252, 5256, 1, 0, 0, 0, 5253, 5251, 1, 0, 0, 0, 5254, 5255, 7, 79, 0, 0, 5255, 5257, 5, 882, 0, 0, 5256, 5254, 1, 0, 0, 0, 5256, 5257, 1, 0, 0, 0, 5257, 457, 1, 0, 0, 0, 5258, 5259, 5, 51, 0, 0, 5259, 5261, 5, 678, 0, 0, 5260, 5262, 3, 754, 377, 0, 5261, 5260, 1, 0, 0, 0, 5261, 5262, 1, 0, 0, 0, 5262, 5263, 1, 0, 0, 0, 5263, 5268, 3, 680, 340, 0, 5264, 5265, 5, 868, 0, 0, 5265, 5267, 3, 680, 340, 0, 5266, 5264, 1, 0, 0, 0, 5267, 5270, 1, 0, 0, 0, 5268, 5266, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, 459, 1, 0, 0, 0, 5270, 5268, 1, 0, 0, 0, 5271, 5272, 5, 73, 0, 0, 5272, 5277, 3, 514, 257, 0, 5273, 5274, 5, 868, 0, 0, 5274, 5276, 3, 514, 257, 0, 5275, 5273, 1, 0, 0, 0, 5276, 5279, 1, 0, 0, 0, 5277, 5275, 1, 0, 0, 0, 5277, 5278, 1, 0, 0, 0, 5278, 5280, 1, 0, 0, 0, 5279, 5277, 1, 0, 0, 0, 5280, 5282, 5, 119, 0, 0, 5281, 5283, 3, 482, 241, 0, 5282, 5281, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, 0, 5283, 5284, 1, 0, 0, 0, 5284, 5285, 3, 518, 259, 0, 5285, 5295, 5, 176, 0, 0, 5286, 5291, 3, 494, 247, 0, 5287, 5288, 5, 868, 0, 0, 5288, 5290, 3, 494, 247, 0, 5289, 5287, 1, 0, 0, 0, 5290, 5293, 1, 0, 0, 0, 5291, 5289, 1, 0, 0, 0, 5291, 5292, 1, 0, 0, 0, 5292, 5296, 1, 0, 0, 0, 5293, 5291, 1, 0, 0, 0, 5294, 5296, 3, 650, 325, 0, 5295, 5286, 1, 0, 0, 0, 5295, 5294, 1, 0, 0, 0, 5296, 5311, 1, 0, 0, 0, 5297, 5309, 5, 144, 0, 0, 5298, 5310, 5, 505, 0, 0, 5299, 5306, 3, 500, 250, 0, 5300, 5302, 5, 11, 0, 0, 5301, 5300, 1, 0, 0, 0, 5301, 5302, 1, 0, 0, 0, 5302, 5303, 1, 0, 0, 0, 5303, 5305, 3, 500, 250, 0, 5304, 5301, 1, 0, 0, 0, 5305, 5308, 1, 0, 0, 0, 5306, 5304, 1, 0, 0, 0, 5306, 5307, 1, 0, 0, 0, 5307, 5310, 1, 0, 0, 0, 5308, 5306, 1, 0, 0, 0, 5309, 5298, 1, 0, 0, 0, 5309, 5299, 1, 0, 0, 0, 5310, 5312, 1, 0, 0, 0, 5311, 5297, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, 5322, 1, 0, 0, 0, 5313, 5319, 5, 194, 0, 0, 5314, 5315, 5, 73, 0, 0, 5315, 5318, 5, 121, 0, 0, 5316, 5318, 3, 502, 251, 0, 5317, 5314, 1, 0, 0, 0, 5317, 5316, 1, 0, 0, 0, 5318, 5321, 1, 0, 0, 0, 5319, 5317, 1, 0, 0, 0, 5319, 5320, 1, 0, 0, 0, 5320, 5323, 1, 0, 0, 0, 5321, 5319, 1, 0, 0, 0, 5322, 5313, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 5331, 1, 0, 0, 0, 5324, 5325, 5, 13, 0, 0, 5325, 5329, 3, 680, 340, 0, 5326, 5327, 5, 194, 0, 0, 5327, 5328, 5, 582, 0, 0, 5328, 5330, 3, 462, 231, 0, 5329, 5326, 1, 0, 0, 0, 5329, 5330, 1, 0, 0, 0, 5330, 5332, 1, 0, 0, 0, 5331, 5324, 1, 0, 0, 0, 5331, 5332, 1, 0, 0, 0, 5332, 5361, 1, 0, 0, 0, 5333, 5336, 5, 73, 0, 0, 5334, 5335, 5, 547, 0, 0, 5335, 5337, 5, 119, 0, 0, 5336, 5334, 1, 0, 0, 0, 5336, 5337, 1, 0, 0, 0, 5337, 5338, 1, 0, 0, 0, 5338, 5343, 3, 652, 326, 0, 5339, 5340, 5, 868, 0, 0, 5340, 5342, 3, 652, 326, 0, 5341, 5339, 1, 0, 0, 0, 5342, 5345, 1, 0, 0, 0, 5343, 5341, 1, 0, 0, 0, 5343, 5344, 1, 0, 0, 0, 5344, 5346, 1, 0, 0, 0, 5345, 5343, 1, 0, 0, 0, 5346, 5347, 5, 176, 0, 0, 5347, 5352, 3, 652, 326, 0, 5348, 5349, 5, 868, 0, 0, 5349, 5351, 3, 652, 326, 0, 5350, 5348, 1, 0, 0, 0, 5351, 5354, 1, 0, 0, 0, 5352, 5350, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 5358, 1, 0, 0, 0, 5354, 5352, 1, 0, 0, 0, 5355, 5356, 5, 194, 0, 0, 5356, 5357, 5, 704, 0, 0, 5357, 5359, 5, 121, 0, 0, 5358, 5355, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5361, 1, 0, 0, 0, 5360, 5271, 1, 0, 0, 0, 5360, 5333, 1, 0, 0, 0, 5361, 461, 1, 0, 0, 0, 5362, 5371, 5, 42, 0, 0, 5363, 5371, 5, 505, 0, 0, 5364, 5367, 5, 7, 0, 0, 5365, 5366, 5, 59, 0, 0, 5366, 5368, 3, 650, 325, 0, 5367, 5365, 1, 0, 0, 0, 5367, 5368, 1, 0, 0, 0, 5368, 5371, 1, 0, 0, 0, 5369, 5371, 3, 650, 325, 0, 5370, 5362, 1, 0, 0, 0, 5370, 5363, 1, 0, 0, 0, 5370, 5364, 1, 0, 0, 0, 5370, 5369, 1, 0, 0, 0, 5371, 463, 1, 0, 0, 0, 5372, 5373, 5, 73, 0, 0, 5373, 5374, 5, 547, 0, 0, 5374, 5375, 5, 119, 0, 0, 5375, 5376, 3, 680, 340, 0, 5376, 5377, 5, 176, 0, 0, 5377, 5382, 3, 680, 340, 0, 5378, 5379, 5, 868, 0, 0, 5379, 5381, 3, 680, 340, 0, 5380, 5378, 1, 0, 0, 0, 5381, 5384, 1, 0, 0, 0, 5382, 5380, 1, 0, 0, 0, 5382, 5383, 1, 0, 0, 0, 5383, 5388, 1, 0, 0, 0, 5384, 5382, 1, 0, 0, 0, 5385, 5386, 5, 194, 0, 0, 5386, 5387, 5, 73, 0, 0, 5387, 5389, 5, 121, 0, 0, 5388, 5385, 1, 0, 0, 0, 5388, 5389, 1, 0, 0, 0, 5389, 465, 1, 0, 0, 0, 5390, 5391, 5, 8, 0, 0, 5391, 5392, 5, 739, 0, 0, 5392, 5393, 5, 74, 0, 0, 5393, 5399, 3, 642, 321, 0, 5394, 5396, 5, 190, 0, 0, 5395, 5397, 5, 857, 0, 0, 5396, 5395, 1, 0, 0, 0, 5396, 5397, 1, 0, 0, 0, 5397, 5398, 1, 0, 0, 0, 5398, 5400, 3, 474, 237, 0, 5399, 5394, 1, 0, 0, 0, 5399, 5400, 1, 0, 0, 0, 5400, 5406, 1, 0, 0, 0, 5401, 5403, 5, 837, 0, 0, 5402, 5404, 5, 857, 0, 0, 5403, 5402, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5407, 3, 708, 354, 0, 5406, 5401, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5412, 1, 0, 0, 0, 5408, 5410, 7, 38, 0, 0, 5409, 5411, 5, 66, 0, 0, 5410, 5409, 1, 0, 0, 0, 5410, 5411, 1, 0, 0, 0, 5411, 5413, 1, 0, 0, 0, 5412, 5408, 1, 0, 0, 0, 5412, 5413, 1, 0, 0, 0, 5413, 467, 1, 0, 0, 0, 5414, 5415, 5, 34, 0, 0, 5415, 5416, 5, 739, 0, 0, 5416, 5417, 5, 74, 0, 0, 5417, 5418, 3, 640, 320, 0, 5418, 5419, 5, 839, 0, 0, 5419, 5420, 5, 857, 0, 0, 5420, 5426, 7, 80, 0, 0, 5421, 5423, 5, 190, 0, 0, 5422, 5424, 5, 857, 0, 0, 5423, 5422, 1, 0, 0, 0, 5423, 5424, 1, 0, 0, 0, 5424, 5425, 1, 0, 0, 0, 5425, 5427, 3, 474, 237, 0, 5426, 5421, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5433, 1, 0, 0, 0, 5428, 5430, 5, 837, 0, 0, 5429, 5431, 5, 857, 0, 0, 5430, 5429, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 5434, 3, 708, 354, 0, 5433, 5428, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5436, 1, 0, 0, 0, 5435, 5437, 7, 38, 0, 0, 5436, 5435, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 469, 1, 0, 0, 0, 5438, 5439, 5, 51, 0, 0, 5439, 5440, 5, 739, 0, 0, 5440, 5441, 5, 74, 0, 0, 5441, 5443, 3, 642, 321, 0, 5442, 5444, 5, 66, 0, 0, 5443, 5442, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 471, 1, 0, 0, 0, 5445, 5446, 5, 155, 0, 0, 5446, 5447, 5, 739, 0, 0, 5447, 5448, 5, 74, 0, 0, 5448, 5458, 3, 642, 321, 0, 5449, 5450, 5, 65, 0, 0, 5450, 5455, 3, 708, 354, 0, 5451, 5452, 5, 868, 0, 0, 5452, 5454, 3, 708, 354, 0, 5453, 5451, 1, 0, 0, 0, 5454, 5457, 1, 0, 0, 0, 5455, 5453, 1, 0, 0, 0, 5455, 5456, 1, 0, 0, 0, 5456, 5459, 1, 0, 0, 0, 5457, 5455, 1, 0, 0, 0, 5458, 5449, 1, 0, 0, 0, 5458, 5459, 1, 0, 0, 0, 5459, 473, 1, 0, 0, 0, 5460, 5466, 3, 708, 354, 0, 5461, 5462, 3, 708, 354, 0, 5462, 5463, 5, 854, 0, 0, 5463, 5464, 3, 708, 354, 0, 5464, 5466, 1, 0, 0, 0, 5465, 5460, 1, 0, 0, 0, 5465, 5461, 1, 0, 0, 0, 5466, 5471, 1, 0, 0, 0, 5467, 5468, 5, 868, 0, 0, 5468, 5470, 3, 474, 237, 0, 5469, 5467, 1, 0, 0, 0, 5470, 5473, 1, 0, 0, 0, 5471, 5469, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 475, 1, 0, 0, 0, 5473, 5471, 1, 0, 0, 0, 5474, 5475, 5, 141, 0, 0, 5475, 5476, 5, 678, 0, 0, 5476, 5481, 3, 520, 260, 0, 5477, 5478, 5, 868, 0, 0, 5478, 5480, 3, 520, 260, 0, 5479, 5477, 1, 0, 0, 0, 5480, 5483, 1, 0, 0, 0, 5481, 5479, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 477, 1, 0, 0, 0, 5483, 5481, 1, 0, 0, 0, 5484, 5486, 5, 149, 0, 0, 5485, 5487, 3, 754, 377, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 5493, 3, 514, 257, 0, 5489, 5490, 5, 868, 0, 0, 5490, 5492, 3, 514, 257, 0, 5491, 5489, 1, 0, 0, 0, 5492, 5495, 1, 0, 0, 0, 5493, 5491, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, 5496, 1, 0, 0, 0, 5495, 5493, 1, 0, 0, 0, 5496, 5498, 5, 119, 0, 0, 5497, 5499, 3, 482, 241, 0, 5498, 5497, 1, 0, 0, 0, 5498, 5499, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5501, 3, 518, 259, 0, 5501, 5502, 5, 68, 0, 0, 5502, 5504, 3, 650, 325, 0, 5503, 5505, 3, 480, 240, 0, 5504, 5503, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5537, 1, 0, 0, 0, 5506, 5508, 5, 149, 0, 0, 5507, 5509, 3, 754, 377, 0, 5508, 5507, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5510, 1, 0, 0, 0, 5510, 5512, 5, 7, 0, 0, 5511, 5513, 5, 734, 0, 0, 5512, 5511, 1, 0, 0, 0, 5512, 5513, 1, 0, 0, 0, 5513, 5514, 1, 0, 0, 0, 5514, 5515, 5, 868, 0, 0, 5515, 5516, 5, 73, 0, 0, 5516, 5517, 5, 121, 0, 0, 5517, 5518, 5, 68, 0, 0, 5518, 5520, 3, 650, 325, 0, 5519, 5521, 3, 480, 240, 0, 5520, 5519, 1, 0, 0, 0, 5520, 5521, 1, 0, 0, 0, 5521, 5537, 1, 0, 0, 0, 5522, 5524, 5, 149, 0, 0, 5523, 5525, 3, 754, 377, 0, 5524, 5523, 1, 0, 0, 0, 5524, 5525, 1, 0, 0, 0, 5525, 5528, 1, 0, 0, 0, 5526, 5527, 5, 547, 0, 0, 5527, 5529, 5, 119, 0, 0, 5528, 5526, 1, 0, 0, 0, 5528, 5529, 1, 0, 0, 0, 5529, 5530, 1, 0, 0, 0, 5530, 5531, 3, 650, 325, 0, 5531, 5532, 5, 68, 0, 0, 5532, 5534, 3, 650, 325, 0, 5533, 5535, 3, 480, 240, 0, 5534, 5533, 1, 0, 0, 0, 5534, 5535, 1, 0, 0, 0, 5535, 5537, 1, 0, 0, 0, 5536, 5484, 1, 0, 0, 0, 5536, 5506, 1, 0, 0, 0, 5536, 5522, 1, 0, 0, 0, 5537, 479, 1, 0, 0, 0, 5538, 5539, 5, 79, 0, 0, 5539, 5540, 5, 674, 0, 0, 5540, 5541, 5, 678, 0, 0, 5541, 481, 1, 0, 0, 0, 5542, 5543, 7, 81, 0, 0, 5543, 483, 1, 0, 0, 0, 5544, 5545, 5, 155, 0, 0, 5545, 5548, 5, 529, 0, 0, 5546, 5547, 5, 65, 0, 0, 5547, 5549, 3, 680, 340, 0, 5548, 5546, 1, 0, 0, 0, 5548, 5549, 1, 0, 0, 0, 5549, 5550, 1, 0, 0, 0, 5550, 5553, 5, 857, 0, 0, 5551, 5554, 3, 794, 397, 0, 5552, 5554, 5, 882, 0, 0, 5553, 5551, 1, 0, 0, 0, 5553, 5552, 1, 0, 0, 0, 5554, 5577, 1, 0, 0, 0, 5555, 5556, 5, 155, 0, 0, 5556, 5559, 5, 529, 0, 0, 5557, 5558, 5, 65, 0, 0, 5558, 5560, 3, 680, 340, 0, 5559, 5557, 1, 0, 0, 0, 5559, 5560, 1, 0, 0, 0, 5560, 5565, 1, 0, 0, 0, 5561, 5562, 5, 176, 0, 0, 5562, 5566, 5, 829, 0, 0, 5563, 5564, 5, 857, 0, 0, 5564, 5566, 5, 882, 0, 0, 5565, 5561, 1, 0, 0, 0, 5565, 5563, 1, 0, 0, 0, 5566, 5569, 1, 0, 0, 0, 5567, 5568, 5, 143, 0, 0, 5568, 5570, 5, 882, 0, 0, 5569, 5567, 1, 0, 0, 0, 5569, 5570, 1, 0, 0, 0, 5570, 5574, 1, 0, 0, 0, 5571, 5572, 5, 147, 0, 0, 5572, 5573, 5, 36, 0, 0, 5573, 5575, 5, 529, 0, 0, 5574, 5571, 1, 0, 0, 0, 5574, 5575, 1, 0, 0, 0, 5575, 5577, 1, 0, 0, 0, 5576, 5544, 1, 0, 0, 0, 5576, 5555, 1, 0, 0, 0, 5577, 485, 1, 0, 0, 0, 5578, 5579, 3, 680, 340, 0, 5579, 5580, 3, 504, 252, 0, 5580, 487, 1, 0, 0, 0, 5581, 5607, 3, 680, 340, 0, 5582, 5583, 5, 423, 0, 0, 5583, 5584, 5, 20, 0, 0, 5584, 5585, 5, 882, 0, 0, 5585, 5608, 3, 496, 248, 0, 5586, 5587, 5, 423, 0, 0, 5587, 5588, 5, 20, 0, 0, 5588, 5589, 5, 829, 0, 0, 5589, 5590, 5, 529, 0, 0, 5590, 5608, 3, 496, 248, 0, 5591, 5592, 5, 423, 0, 0, 5592, 5593, 5, 194, 0, 0, 5593, 5608, 3, 498, 249, 0, 5594, 5595, 5, 369, 0, 0, 5595, 5596, 5, 511, 0, 0, 5596, 5608, 5, 529, 0, 0, 5597, 5598, 7, 82, 0, 0, 5598, 5600, 3, 512, 256, 0, 5599, 5601, 3, 508, 254, 0, 5600, 5599, 1, 0, 0, 0, 5600, 5601, 1, 0, 0, 0, 5601, 5603, 1, 0, 0, 0, 5602, 5597, 1, 0, 0, 0, 5603, 5604, 1, 0, 0, 0, 5604, 5602, 1, 0, 0, 0, 5604, 5605, 1, 0, 0, 0, 5605, 5608, 1, 0, 0, 0, 5606, 5608, 3, 510, 255, 0, 5607, 5582, 1, 0, 0, 0, 5607, 5586, 1, 0, 0, 0, 5607, 5591, 1, 0, 0, 0, 5607, 5594, 1, 0, 0, 0, 5607, 5602, 1, 0, 0, 0, 5607, 5606, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 489, 1, 0, 0, 0, 5609, 5610, 5, 423, 0, 0, 5610, 5616, 5, 20, 0, 0, 5611, 5617, 5, 882, 0, 0, 5612, 5613, 5, 829, 0, 0, 5613, 5617, 5, 529, 0, 0, 5614, 5615, 5, 529, 0, 0, 5615, 5617, 5, 882, 0, 0, 5616, 5611, 1, 0, 0, 0, 5616, 5612, 1, 0, 0, 0, 5616, 5614, 1, 0, 0, 0, 5617, 5620, 1, 0, 0, 0, 5618, 5619, 5, 11, 0, 0, 5619, 5621, 3, 490, 245, 0, 5620, 5618, 1, 0, 0, 0, 5620, 5621, 1, 0, 0, 0, 5621, 5646, 1, 0, 0, 0, 5622, 5623, 5, 423, 0, 0, 5623, 5624, 5, 194, 0, 0, 5624, 5633, 3, 702, 351, 0, 5625, 5629, 5, 20, 0, 0, 5626, 5630, 5, 882, 0, 0, 5627, 5628, 5, 829, 0, 0, 5628, 5630, 5, 529, 0, 0, 5629, 5626, 1, 0, 0, 0, 5629, 5627, 1, 0, 0, 0, 5630, 5634, 1, 0, 0, 0, 5631, 5632, 5, 13, 0, 0, 5632, 5634, 5, 882, 0, 0, 5633, 5625, 1, 0, 0, 0, 5633, 5631, 1, 0, 0, 0, 5633, 5634, 1, 0, 0, 0, 5634, 5637, 1, 0, 0, 0, 5635, 5636, 5, 11, 0, 0, 5636, 5638, 3, 490, 245, 0, 5637, 5635, 1, 0, 0, 0, 5637, 5638, 1, 0, 0, 0, 5638, 5646, 1, 0, 0, 0, 5639, 5640, 5, 423, 0, 0, 5640, 5641, 5, 194, 0, 0, 5641, 5643, 3, 702, 351, 0, 5642, 5644, 3, 492, 246, 0, 5643, 5642, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 5646, 1, 0, 0, 0, 5645, 5609, 1, 0, 0, 0, 5645, 5622, 1, 0, 0, 0, 5645, 5639, 1, 0, 0, 0, 5646, 491, 1, 0, 0, 0, 5647, 5648, 5, 427, 0, 0, 5648, 5649, 5, 708, 0, 0, 5649, 5650, 5, 423, 0, 0, 5650, 5654, 5, 20, 0, 0, 5651, 5652, 5, 829, 0, 0, 5652, 5655, 5, 529, 0, 0, 5653, 5655, 5, 882, 0, 0, 5654, 5651, 1, 0, 0, 0, 5654, 5653, 1, 0, 0, 0, 5655, 5665, 1, 0, 0, 0, 5656, 5657, 5, 427, 0, 0, 5657, 5658, 5, 708, 0, 0, 5658, 5659, 5, 423, 0, 0, 5659, 5660, 5, 194, 0, 0, 5660, 5661, 3, 702, 351, 0, 5661, 5662, 5, 13, 0, 0, 5662, 5663, 5, 882, 0, 0, 5663, 5665, 1, 0, 0, 0, 5664, 5647, 1, 0, 0, 0, 5664, 5656, 1, 0, 0, 0, 5665, 493, 1, 0, 0, 0, 5666, 5667, 3, 680, 340, 0, 5667, 5668, 5, 423, 0, 0, 5668, 5669, 5, 20, 0, 0, 5669, 5670, 5, 529, 0, 0, 5670, 5671, 5, 882, 0, 0, 5671, 5692, 1, 0, 0, 0, 5672, 5673, 3, 680, 340, 0, 5673, 5674, 5, 423, 0, 0, 5674, 5675, 5, 20, 0, 0, 5675, 5676, 5, 829, 0, 0, 5676, 5677, 5, 529, 0, 0, 5677, 5678, 3, 496, 248, 0, 5678, 5692, 1, 0, 0, 0, 5679, 5680, 3, 680, 340, 0, 5680, 5681, 5, 423, 0, 0, 5681, 5682, 5, 20, 0, 0, 5682, 5683, 5, 882, 0, 0, 5683, 5684, 3, 496, 248, 0, 5684, 5692, 1, 0, 0, 0, 5685, 5686, 3, 680, 340, 0, 5686, 5687, 5, 423, 0, 0, 5687, 5688, 5, 194, 0, 0, 5688, 5689, 3, 498, 249, 0, 5689, 5692, 1, 0, 0, 0, 5690, 5692, 3, 680, 340, 0, 5691, 5666, 1, 0, 0, 0, 5691, 5672, 1, 0, 0, 0, 5691, 5679, 1, 0, 0, 0, 5691, 5685, 1, 0, 0, 0, 5691, 5690, 1, 0, 0, 0, 5692, 495, 1, 0, 0, 0, 5693, 5694, 5, 143, 0, 0, 5694, 5696, 5, 882, 0, 0, 5695, 5693, 1, 0, 0, 0, 5695, 5696, 1, 0, 0, 0, 5696, 5700, 1, 0, 0, 0, 5697, 5698, 5, 147, 0, 0, 5698, 5699, 5, 36, 0, 0, 5699, 5701, 5, 529, 0, 0, 5700, 5697, 1, 0, 0, 0, 5700, 5701, 1, 0, 0, 0, 5701, 497, 1, 0, 0, 0, 5702, 5710, 3, 702, 351, 0, 5703, 5707, 7, 83, 0, 0, 5704, 5708, 5, 882, 0, 0, 5705, 5706, 5, 829, 0, 0, 5706, 5708, 5, 529, 0, 0, 5707, 5704, 1, 0, 0, 0, 5707, 5705, 1, 0, 0, 0, 5708, 5709, 1, 0, 0, 0, 5709, 5711, 3, 496, 248, 0, 5710, 5703, 1, 0, 0, 0, 5710, 5711, 1, 0, 0, 0, 5711, 5717, 1, 0, 0, 0, 5712, 5713, 3, 702, 351, 0, 5713, 5714, 5, 188, 0, 0, 5714, 5715, 3, 794, 397, 0, 5715, 5717, 1, 0, 0, 0, 5716, 5702, 1, 0, 0, 0, 5716, 5712, 1, 0, 0, 0, 5717, 499, 1, 0, 0, 0, 5718, 5727, 5, 169, 0, 0, 5719, 5727, 5, 693, 0, 0, 5720, 5721, 5, 331, 0, 0, 5721, 5727, 5, 882, 0, 0, 5722, 5723, 5, 441, 0, 0, 5723, 5727, 5, 882, 0, 0, 5724, 5725, 5, 651, 0, 0, 5725, 5727, 5, 882, 0, 0, 5726, 5718, 1, 0, 0, 0, 5726, 5719, 1, 0, 0, 0, 5726, 5720, 1, 0, 0, 0, 5726, 5722, 1, 0, 0, 0, 5726, 5724, 1, 0, 0, 0, 5727, 501, 1, 0, 0, 0, 5728, 5729, 5, 479, 0, 0, 5729, 5737, 3, 708, 354, 0, 5730, 5731, 5, 482, 0, 0, 5731, 5737, 3, 708, 354, 0, 5732, 5733, 5, 478, 0, 0, 5733, 5737, 3, 708, 354, 0, 5734, 5735, 5, 483, 0, 0, 5735, 5737, 3, 708, 354, 0, 5736, 5728, 1, 0, 0, 0, 5736, 5730, 1, 0, 0, 0, 5736, 5732, 1, 0, 0, 0, 5736, 5734, 1, 0, 0, 0, 5737, 503, 1, 0, 0, 0, 5738, 5739, 5, 529, 0, 0, 5739, 5746, 5, 390, 0, 0, 5740, 5747, 5, 42, 0, 0, 5741, 5747, 5, 500, 0, 0, 5742, 5743, 5, 87, 0, 0, 5743, 5744, 3, 708, 354, 0, 5744, 5745, 5, 698, 0, 0, 5745, 5747, 1, 0, 0, 0, 5746, 5740, 1, 0, 0, 0, 5746, 5741, 1, 0, 0, 0, 5746, 5742, 1, 0, 0, 0, 5746, 5747, 1, 0, 0, 0, 5747, 5777, 1, 0, 0, 0, 5748, 5749, 5, 529, 0, 0, 5749, 5752, 5, 420, 0, 0, 5750, 5753, 5, 42, 0, 0, 5751, 5753, 3, 708, 354, 0, 5752, 5750, 1, 0, 0, 0, 5752, 5751, 1, 0, 0, 0, 5753, 5777, 1, 0, 0, 0, 5754, 5755, 5, 529, 0, 0, 5755, 5756, 5, 581, 0, 0, 5756, 5761, 5, 87, 0, 0, 5757, 5762, 5, 42, 0, 0, 5758, 5759, 3, 708, 354, 0, 5759, 5760, 5, 698, 0, 0, 5760, 5762, 1, 0, 0, 0, 5761, 5757, 1, 0, 0, 0, 5761, 5758, 1, 0, 0, 0, 5762, 5777, 1, 0, 0, 0, 5763, 5764, 5, 529, 0, 0, 5764, 5765, 5, 144, 0, 0, 5765, 5767, 5, 36, 0, 0, 5766, 5768, 7, 84, 0, 0, 5767, 5766, 1, 0, 0, 0, 5767, 5768, 1, 0, 0, 0, 5768, 5777, 1, 0, 0, 0, 5769, 5770, 5, 395, 0, 0, 5770, 5777, 3, 708, 354, 0, 5771, 5774, 5, 530, 0, 0, 5772, 5775, 3, 708, 354, 0, 5773, 5775, 5, 669, 0, 0, 5774, 5772, 1, 0, 0, 0, 5774, 5773, 1, 0, 0, 0, 5775, 5777, 1, 0, 0, 0, 5776, 5738, 1, 0, 0, 0, 5776, 5748, 1, 0, 0, 0, 5776, 5754, 1, 0, 0, 0, 5776, 5763, 1, 0, 0, 0, 5776, 5769, 1, 0, 0, 0, 5776, 5771, 1, 0, 0, 0, 5777, 505, 1, 0, 0, 0, 5778, 5779, 5, 304, 0, 0, 5779, 5780, 7, 85, 0, 0, 5780, 507, 1, 0, 0, 0, 5781, 5784, 5, 423, 0, 0, 5782, 5783, 5, 194, 0, 0, 5783, 5785, 3, 702, 351, 0, 5784, 5782, 1, 0, 0, 0, 5784, 5785, 1, 0, 0, 0, 5785, 5794, 1, 0, 0, 0, 5786, 5790, 5, 20, 0, 0, 5787, 5791, 5, 882, 0, 0, 5788, 5789, 5, 829, 0, 0, 5789, 5791, 5, 529, 0, 0, 5790, 5787, 1, 0, 0, 0, 5790, 5788, 1, 0, 0, 0, 5791, 5795, 1, 0, 0, 0, 5792, 5793, 5, 13, 0, 0, 5793, 5795, 5, 882, 0, 0, 5794, 5786, 1, 0, 0, 0, 5794, 5792, 1, 0, 0, 0, 5795, 509, 1, 0, 0, 0, 5796, 5797, 3, 512, 256, 0, 5797, 5798, 5, 429, 0, 0, 5798, 5799, 5, 555, 0, 0, 5799, 5812, 1, 0, 0, 0, 5800, 5801, 3, 512, 256, 0, 5801, 5802, 5, 401, 0, 0, 5802, 5803, 5, 555, 0, 0, 5803, 5804, 5, 155, 0, 0, 5804, 5805, 5, 330, 0, 0, 5805, 5806, 5, 13, 0, 0, 5806, 5807, 5, 882, 0, 0, 5807, 5812, 1, 0, 0, 0, 5808, 5809, 3, 512, 256, 0, 5809, 5810, 5, 675, 0, 0, 5810, 5812, 1, 0, 0, 0, 5811, 5796, 1, 0, 0, 0, 5811, 5800, 1, 0, 0, 0, 5811, 5808, 1, 0, 0, 0, 5812, 511, 1, 0, 0, 0, 5813, 5814, 7, 86, 0, 0, 5814, 5815, 5, 394, 0, 0, 5815, 513, 1, 0, 0, 0, 5816, 5821, 3, 516, 258, 0, 5817, 5818, 5, 866, 0, 0, 5818, 5819, 3, 656, 328, 0, 5819, 5820, 5, 867, 0, 0, 5820, 5822, 1, 0, 0, 0, 5821, 5817, 1, 0, 0, 0, 5821, 5822, 1, 0, 0, 0, 5822, 515, 1, 0, 0, 0, 5823, 5825, 5, 7, 0, 0, 5824, 5826, 5, 734, 0, 0, 5825, 5824, 1, 0, 0, 0, 5825, 5826, 1, 0, 0, 0, 5826, 5917, 1, 0, 0, 0, 5827, 5829, 5, 8, 0, 0, 5828, 5830, 5, 743, 0, 0, 5829, 5828, 1, 0, 0, 0, 5829, 5830, 1, 0, 0, 0, 5830, 5917, 1, 0, 0, 0, 5831, 5839, 5, 34, 0, 0, 5832, 5833, 5, 660, 0, 0, 5833, 5840, 5, 752, 0, 0, 5834, 5840, 5, 743, 0, 0, 5835, 5840, 5, 684, 0, 0, 5836, 5840, 5, 678, 0, 0, 5837, 5840, 5, 658, 0, 0, 5838, 5840, 5, 582, 0, 0, 5839, 5832, 1, 0, 0, 0, 5839, 5834, 1, 0, 0, 0, 5839, 5835, 1, 0, 0, 0, 5839, 5836, 1, 0, 0, 0, 5839, 5837, 1, 0, 0, 0, 5839, 5838, 1, 0, 0, 0, 5839, 5840, 1, 0, 0, 0, 5840, 5917, 1, 0, 0, 0, 5841, 5917, 5, 44, 0, 0, 5842, 5844, 5, 51, 0, 0, 5843, 5845, 5, 582, 0, 0, 5844, 5843, 1, 0, 0, 0, 5844, 5845, 1, 0, 0, 0, 5845, 5917, 1, 0, 0, 0, 5846, 5917, 5, 385, 0, 0, 5847, 5917, 5, 717, 0, 0, 5848, 5917, 5, 718, 0, 0, 5849, 5850, 5, 73, 0, 0, 5850, 5917, 5, 121, 0, 0, 5851, 5917, 5, 82, 0, 0, 5852, 5917, 5, 86, 0, 0, 5853, 5854, 5, 104, 0, 0, 5854, 5917, 5, 752, 0, 0, 5855, 5917, 5, 735, 0, 0, 5856, 5917, 5, 547, 0, 0, 5857, 5917, 5, 138, 0, 0, 5858, 5917, 5, 736, 0, 0, 5859, 5860, 5, 572, 0, 0, 5860, 5917, 7, 87, 0, 0, 5861, 5917, 5, 154, 0, 0, 5862, 5863, 5, 157, 0, 0, 5863, 5917, 7, 88, 0, 0, 5864, 5917, 5, 749, 0, 0, 5865, 5917, 5, 750, 0, 0, 5866, 5917, 5, 178, 0, 0, 5867, 5917, 5, 185, 0, 0, 5868, 5917, 5, 186, 0, 0, 5869, 5917, 5, 705, 0, 0, 5870, 5917, 5, 706, 0, 0, 5871, 5917, 5, 707, 0, 0, 5872, 5917, 5, 709, 0, 0, 5873, 5917, 5, 710, 0, 0, 5874, 5917, 5, 711, 0, 0, 5875, 5917, 5, 712, 0, 0, 5876, 5917, 5, 714, 0, 0, 5877, 5917, 5, 715, 0, 0, 5878, 5917, 5, 716, 0, 0, 5879, 5917, 5, 719, 0, 0, 5880, 5917, 5, 720, 0, 0, 5881, 5917, 5, 721, 0, 0, 5882, 5917, 5, 722, 0, 0, 5883, 5917, 5, 723, 0, 0, 5884, 5917, 5, 724, 0, 0, 5885, 5917, 5, 725, 0, 0, 5886, 5917, 5, 726, 0, 0, 5887, 5917, 5, 727, 0, 0, 5888, 5917, 5, 728, 0, 0, 5889, 5917, 5, 731, 0, 0, 5890, 5917, 5, 732, 0, 0, 5891, 5917, 5, 733, 0, 0, 5892, 5917, 5, 737, 0, 0, 5893, 5917, 5, 738, 0, 0, 5894, 5917, 5, 740, 0, 0, 5895, 5917, 5, 741, 0, 0, 5896, 5917, 5, 742, 0, 0, 5897, 5917, 5, 745, 0, 0, 5898, 5917, 5, 746, 0, 0, 5899, 5917, 5, 747, 0, 0, 5900, 5917, 5, 160, 0, 0, 5901, 5917, 5, 748, 0, 0, 5902, 5917, 5, 836, 0, 0, 5903, 5917, 5, 751, 0, 0, 5904, 5917, 5, 753, 0, 0, 5905, 5917, 5, 838, 0, 0, 5906, 5917, 5, 754, 0, 0, 5907, 5917, 5, 755, 0, 0, 5908, 5909, 5, 103, 0, 0, 5909, 5910, 5, 68, 0, 0, 5910, 5917, 5, 744, 0, 0, 5911, 5912, 5, 154, 0, 0, 5912, 5913, 5, 88, 0, 0, 5913, 5917, 5, 744, 0, 0, 5914, 5915, 5, 729, 0, 0, 5915, 5917, 5, 730, 0, 0, 5916, 5823, 1, 0, 0, 0, 5916, 5827, 1, 0, 0, 0, 5916, 5831, 1, 0, 0, 0, 5916, 5841, 1, 0, 0, 0, 5916, 5842, 1, 0, 0, 0, 5916, 5846, 1, 0, 0, 0, 5916, 5847, 1, 0, 0, 0, 5916, 5848, 1, 0, 0, 0, 5916, 5849, 1, 0, 0, 0, 5916, 5851, 1, 0, 0, 0, 5916, 5852, 1, 0, 0, 0, 5916, 5853, 1, 0, 0, 0, 5916, 5855, 1, 0, 0, 0, 5916, 5856, 1, 0, 0, 0, 5916, 5857, 1, 0, 0, 0, 5916, 5858, 1, 0, 0, 0, 5916, 5859, 1, 0, 0, 0, 5916, 5861, 1, 0, 0, 0, 5916, 5862, 1, 0, 0, 0, 5916, 5864, 1, 0, 0, 0, 5916, 5865, 1, 0, 0, 0, 5916, 5866, 1, 0, 0, 0, 5916, 5867, 1, 0, 0, 0, 5916, 5868, 1, 0, 0, 0, 5916, 5869, 1, 0, 0, 0, 5916, 5870, 1, 0, 0, 0, 5916, 5871, 1, 0, 0, 0, 5916, 5872, 1, 0, 0, 0, 5916, 5873, 1, 0, 0, 0, 5916, 5874, 1, 0, 0, 0, 5916, 5875, 1, 0, 0, 0, 5916, 5876, 1, 0, 0, 0, 5916, 5877, 1, 0, 0, 0, 5916, 5878, 1, 0, 0, 0, 5916, 5879, 1, 0, 0, 0, 5916, 5880, 1, 0, 0, 0, 5916, 5881, 1, 0, 0, 0, 5916, 5882, 1, 0, 0, 0, 5916, 5883, 1, 0, 0, 0, 5916, 5884, 1, 0, 0, 0, 5916, 5885, 1, 0, 0, 0, 5916, 5886, 1, 0, 0, 0, 5916, 5887, 1, 0, 0, 0, 5916, 5888, 1, 0, 0, 0, 5916, 5889, 1, 0, 0, 0, 5916, 5890, 1, 0, 0, 0, 5916, 5891, 1, 0, 0, 0, 5916, 5892, 1, 0, 0, 0, 5916, 5893, 1, 0, 0, 0, 5916, 5894, 1, 0, 0, 0, 5916, 5895, 1, 0, 0, 0, 5916, 5896, 1, 0, 0, 0, 5916, 5897, 1, 0, 0, 0, 5916, 5898, 1, 0, 0, 0, 5916, 5899, 1, 0, 0, 0, 5916, 5900, 1, 0, 0, 0, 5916, 5901, 1, 0, 0, 0, 5916, 5902, 1, 0, 0, 0, 5916, 5903, 1, 0, 0, 0, 5916, 5904, 1, 0, 0, 0, 5916, 5905, 1, 0, 0, 0, 5916, 5906, 1, 0, 0, 0, 5916, 5907, 1, 0, 0, 0, 5916, 5908, 1, 0, 0, 0, 5916, 5911, 1, 0, 0, 0, 5916, 5914, 1, 0, 0, 0, 5917, 517, 1, 0, 0, 0, 5918, 5935, 5, 850, 0, 0, 5919, 5920, 5, 850, 0, 0, 5920, 5921, 5, 865, 0, 0, 5921, 5935, 5, 850, 0, 0, 5922, 5923, 3, 702, 351, 0, 5923, 5924, 5, 865, 0, 0, 5924, 5925, 5, 850, 0, 0, 5925, 5935, 1, 0, 0, 0, 5926, 5927, 3, 702, 351, 0, 5927, 5928, 5, 865, 0, 0, 5928, 5929, 3, 702, 351, 0, 5929, 5935, 1, 0, 0, 0, 5930, 5931, 3, 702, 351, 0, 5931, 5932, 3, 706, 353, 0, 5932, 5935, 1, 0, 0, 0, 5933, 5935, 3, 702, 351, 0, 5934, 5918, 1, 0, 0, 0, 5934, 5919, 1, 0, 0, 0, 5934, 5922, 1, 0, 0, 0, 5934, 5926, 1, 0, 0, 0, 5934, 5930, 1, 0, 0, 0, 5934, 5933, 1, 0, 0, 0, 5935, 519, 1, 0, 0, 0, 5936, 5937, 3, 680, 340, 0, 5937, 5938, 5, 176, 0, 0, 5938, 5939, 3, 680, 340, 0, 5939, 521, 1, 0, 0, 0, 5940, 5942, 5, 10, 0, 0, 5941, 5943, 3, 532, 266, 0, 5942, 5941, 1, 0, 0, 0, 5942, 5943, 1, 0, 0, 0, 5943, 5944, 1, 0, 0, 0, 5944, 5945, 5, 173, 0, 0, 5945, 5989, 3, 646, 323, 0, 5946, 5948, 5, 10, 0, 0, 5947, 5949, 3, 532, 266, 0, 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 5950, 1, 0, 0, 0, 5950, 5951, 5, 173, 0, 0, 5951, 5952, 3, 648, 324, 0, 5952, 5953, 5, 185, 0, 0, 5953, 5954, 5, 77, 0, 0, 5954, 5955, 5, 119, 0, 0, 5955, 5960, 3, 656, 328, 0, 5956, 5957, 5, 194, 0, 0, 5957, 5958, 3, 708, 354, 0, 5958, 5959, 5, 19, 0, 0, 5959, 5961, 1, 0, 0, 0, 5960, 5956, 1, 0, 0, 0, 5960, 5961, 1, 0, 0, 0, 5961, 5989, 1, 0, 0, 0, 5962, 5964, 5, 10, 0, 0, 5963, 5965, 3, 532, 266, 0, 5964, 5963, 1, 0, 0, 0, 5964, 5965, 1, 0, 0, 0, 5965, 5966, 1, 0, 0, 0, 5966, 5967, 5, 173, 0, 0, 5967, 5968, 3, 648, 324, 0, 5968, 5969, 5, 185, 0, 0, 5969, 5970, 5, 77, 0, 0, 5970, 5971, 5, 119, 0, 0, 5971, 5975, 3, 658, 329, 0, 5972, 5973, 5, 188, 0, 0, 5973, 5974, 5, 360, 0, 0, 5974, 5976, 5, 882, 0, 0, 5975, 5972, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 5989, 1, 0, 0, 0, 5977, 5979, 5, 10, 0, 0, 5978, 5980, 3, 532, 266, 0, 5979, 5978, 1, 0, 0, 0, 5979, 5980, 1, 0, 0, 0, 5980, 5981, 1, 0, 0, 0, 5981, 5982, 5, 173, 0, 0, 5982, 5983, 3, 648, 324, 0, 5983, 5984, 5, 51, 0, 0, 5984, 5985, 5, 77, 0, 0, 5985, 5986, 5, 119, 0, 0, 5986, 5987, 3, 656, 328, 0, 5987, 5989, 1, 0, 0, 0, 5988, 5940, 1, 0, 0, 0, 5988, 5946, 1, 0, 0, 0, 5988, 5962, 1, 0, 0, 0, 5988, 5977, 1, 0, 0, 0, 5989, 523, 1, 0, 0, 0, 5990, 5991, 5, 27, 0, 0, 5991, 5992, 5, 173, 0, 0, 5992, 5996, 3, 646, 323, 0, 5993, 5995, 3, 534, 267, 0, 5994, 5993, 1, 0, 0, 0, 5995, 5998, 1, 0, 0, 0, 5996, 5994, 1, 0, 0, 0, 5996, 5997, 1, 0, 0, 0, 5997, 525, 1, 0, 0, 0, 5998, 5996, 1, 0, 0, 0, 5999, 6000, 5, 329, 0, 0, 6000, 6001, 5, 173, 0, 0, 6001, 6003, 3, 646, 323, 0, 6002, 6004, 7, 89, 0, 0, 6003, 6002, 1, 0, 0, 0, 6003, 6004, 1, 0, 0, 0, 6004, 527, 1, 0, 0, 0, 6005, 6007, 5, 120, 0, 0, 6006, 6008, 3, 532, 266, 0, 6007, 6006, 1, 0, 0, 0, 6007, 6008, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 6010, 7, 60, 0, 0, 6010, 6011, 3, 646, 323, 0, 6011, 529, 1, 0, 0, 0, 6012, 6014, 5, 562, 0, 0, 6013, 6015, 3, 532, 266, 0, 6014, 6013, 1, 0, 0, 0, 6014, 6015, 1, 0, 0, 0, 6015, 6016, 1, 0, 0, 0, 6016, 6017, 5, 173, 0, 0, 6017, 6019, 3, 646, 323, 0, 6018, 6020, 5, 549, 0, 0, 6019, 6018, 1, 0, 0, 0, 6019, 6020, 1, 0, 0, 0, 6020, 6022, 1, 0, 0, 0, 6021, 6023, 5, 392, 0, 0, 6022, 6021, 1, 0, 0, 0, 6022, 6023, 1, 0, 0, 0, 6023, 6025, 1, 0, 0, 0, 6024, 6026, 5, 679, 0, 0, 6025, 6024, 1, 0, 0, 0, 6025, 6026, 1, 0, 0, 0, 6026, 531, 1, 0, 0, 0, 6027, 6028, 7, 90, 0, 0, 6028, 533, 1, 0, 0, 0, 6029, 6030, 5, 65, 0, 0, 6030, 6037, 5, 677, 0, 0, 6031, 6037, 5, 549, 0, 0, 6032, 6037, 5, 396, 0, 0, 6033, 6037, 5, 484, 0, 0, 6034, 6037, 5, 392, 0, 0, 6035, 6037, 5, 327, 0, 0, 6036, 6029, 1, 0, 0, 0, 6036, 6031, 1, 0, 0, 0, 6036, 6032, 1, 0, 0, 0, 6036, 6033, 1, 0, 0, 0, 6036, 6034, 1, 0, 0, 0, 6036, 6035, 1, 0, 0, 0, 6037, 535, 1, 0, 0, 0, 6038, 6040, 5, 34, 0, 0, 6039, 6041, 5, 307, 0, 0, 6040, 6039, 1, 0, 0, 0, 6040, 6041, 1, 0, 0, 0, 6041, 6042, 1, 0, 0, 0, 6042, 6044, 5, 409, 0, 0, 6043, 6045, 3, 756, 378, 0, 6044, 6043, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6046, 1, 0, 0, 0, 6046, 6047, 3, 626, 313, 0, 6047, 6048, 5, 580, 0, 0, 6048, 6049, 7, 91, 0, 0, 6049, 6050, 5, 603, 0, 0, 6050, 6051, 5, 882, 0, 0, 6051, 537, 1, 0, 0, 0, 6052, 6053, 5, 432, 0, 0, 6053, 6054, 5, 344, 0, 0, 6054, 6059, 3, 702, 351, 0, 6055, 6056, 5, 868, 0, 0, 6056, 6058, 3, 702, 351, 0, 6057, 6055, 1, 0, 0, 0, 6058, 6061, 1, 0, 0, 0, 6059, 6057, 1, 0, 0, 0, 6059, 6060, 1, 0, 0, 0, 6060, 6071, 1, 0, 0, 0, 6061, 6059, 1, 0, 0, 0, 6062, 6063, 5, 155, 0, 0, 6063, 6068, 3, 540, 270, 0, 6064, 6065, 5, 868, 0, 0, 6065, 6067, 3, 540, 270, 0, 6066, 6064, 1, 0, 0, 0, 6067, 6070, 1, 0, 0, 0, 6068, 6066, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 6072, 1, 0, 0, 0, 6070, 6068, 1, 0, 0, 0, 6071, 6062, 1, 0, 0, 0, 6071, 6072, 1, 0, 0, 0, 6072, 539, 1, 0, 0, 0, 6073, 6074, 7, 92, 0, 0, 6074, 6075, 3, 698, 349, 0, 6075, 6076, 5, 857, 0, 0, 6076, 6077, 3, 800, 400, 0, 6077, 541, 1, 0, 0, 0, 6078, 6079, 5, 673, 0, 0, 6079, 6080, 5, 344, 0, 0, 6080, 6085, 3, 702, 351, 0, 6081, 6082, 5, 868, 0, 0, 6082, 6084, 3, 702, 351, 0, 6083, 6081, 1, 0, 0, 0, 6084, 6087, 1, 0, 0, 0, 6085, 6083, 1, 0, 0, 0, 6085, 6086, 1, 0, 0, 0, 6086, 543, 1, 0, 0, 0, 6087, 6085, 1, 0, 0, 0, 6088, 6089, 5, 432, 0, 0, 6089, 6090, 5, 534, 0, 0, 6090, 6091, 3, 702, 351, 0, 6091, 6092, 5, 603, 0, 0, 6092, 6093, 5, 882, 0, 0, 6093, 545, 1, 0, 0, 0, 6094, 6095, 5, 673, 0, 0, 6095, 6096, 5, 534, 0, 0, 6096, 6097, 3, 702, 351, 0, 6097, 547, 1, 0, 0, 0, 6098, 6099, 5, 713, 0, 0, 6099, 6100, 5, 450, 0, 0, 6100, 6101, 5, 360, 0, 0, 6101, 6103, 5, 367, 0, 0, 6102, 6104, 5, 857, 0, 0, 6103, 6102, 1, 0, 0, 0, 6103, 6104, 1, 0, 0, 0, 6104, 6105, 1, 0, 0, 0, 6105, 6129, 5, 882, 0, 0, 6106, 6107, 5, 713, 0, 0, 6107, 6108, 5, 433, 0, 0, 6108, 6109, 5, 68, 0, 0, 6109, 6110, 3, 672, 336, 0, 6110, 6111, 5, 423, 0, 0, 6111, 6112, 5, 20, 0, 0, 6112, 6119, 5, 882, 0, 0, 6113, 6114, 5, 360, 0, 0, 6114, 6116, 5, 367, 0, 0, 6115, 6117, 5, 857, 0, 0, 6116, 6115, 1, 0, 0, 0, 6116, 6117, 1, 0, 0, 0, 6117, 6118, 1, 0, 0, 0, 6118, 6120, 5, 882, 0, 0, 6119, 6113, 1, 0, 0, 0, 6119, 6120, 1, 0, 0, 0, 6120, 6126, 1, 0, 0, 0, 6121, 6123, 5, 144, 0, 0, 6122, 6124, 5, 502, 0, 0, 6123, 6122, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 6125, 1, 0, 0, 0, 6125, 6127, 5, 169, 0, 0, 6126, 6121, 1, 0, 0, 0, 6126, 6127, 1, 0, 0, 0, 6127, 6129, 1, 0, 0, 0, 6128, 6098, 1, 0, 0, 0, 6128, 6106, 1, 0, 0, 0, 6129, 549, 1, 0, 0, 0, 6130, 6131, 5, 155, 0, 0, 6131, 6132, 3, 554, 277, 0, 6132, 6135, 7, 93, 0, 0, 6133, 6136, 3, 800, 400, 0, 6134, 6136, 5, 119, 0, 0, 6135, 6133, 1, 0, 0, 0, 6135, 6134, 1, 0, 0, 0, 6136, 6146, 1, 0, 0, 0, 6137, 6138, 5, 868, 0, 0, 6138, 6139, 3, 554, 277, 0, 6139, 6142, 7, 93, 0, 0, 6140, 6143, 3, 800, 400, 0, 6141, 6143, 5, 119, 0, 0, 6142, 6140, 1, 0, 0, 0, 6142, 6141, 1, 0, 0, 0, 6143, 6145, 1, 0, 0, 0, 6144, 6137, 1, 0, 0, 0, 6145, 6148, 1, 0, 0, 0, 6146, 6144, 1, 0, 0, 0, 6146, 6147, 1, 0, 0, 0, 6147, 6183, 1, 0, 0, 0, 6148, 6146, 1, 0, 0, 0, 6149, 6150, 5, 155, 0, 0, 6150, 6153, 3, 54, 27, 0, 6151, 6154, 3, 684, 342, 0, 6152, 6154, 5, 42, 0, 0, 6153, 6151, 1, 0, 0, 0, 6153, 6152, 1, 0, 0, 0, 6154, 6183, 1, 0, 0, 0, 6155, 6156, 5, 155, 0, 0, 6156, 6163, 5, 497, 0, 0, 6157, 6160, 3, 684, 342, 0, 6158, 6159, 5, 28, 0, 0, 6159, 6161, 3, 686, 343, 0, 6160, 6158, 1, 0, 0, 0, 6160, 6161, 1, 0, 0, 0, 6161, 6164, 1, 0, 0, 0, 6162, 6164, 5, 42, 0, 0, 6163, 6157, 1, 0, 0, 0, 6163, 6162, 1, 0, 0, 0, 6164, 6183, 1, 0, 0, 0, 6165, 6183, 3, 484, 242, 0, 6166, 6183, 3, 336, 168, 0, 6167, 6183, 3, 334, 167, 0, 6168, 6169, 5, 155, 0, 0, 6169, 6170, 3, 698, 349, 0, 6170, 6171, 7, 93, 0, 0, 6171, 6179, 3, 800, 400, 0, 6172, 6173, 5, 868, 0, 0, 6173, 6174, 3, 698, 349, 0, 6174, 6175, 7, 93, 0, 0, 6175, 6176, 3, 800, 400, 0, 6176, 6178, 1, 0, 0, 0, 6177, 6172, 1, 0, 0, 0, 6178, 6181, 1, 0, 0, 0, 6179, 6177, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6183, 1, 0, 0, 0, 6181, 6179, 1, 0, 0, 0, 6182, 6130, 1, 0, 0, 0, 6182, 6149, 1, 0, 0, 0, 6182, 6155, 1, 0, 0, 0, 6182, 6165, 1, 0, 0, 0, 6182, 6166, 1, 0, 0, 0, 6182, 6167, 1, 0, 0, 0, 6182, 6168, 1, 0, 0, 0, 6183, 551, 1, 0, 0, 0, 6184, 6185, 5, 157, 0, 0, 6185, 6186, 7, 62, 0, 0, 6186, 6369, 5, 452, 0, 0, 6187, 6188, 5, 157, 0, 0, 6188, 6189, 7, 94, 0, 0, 6189, 6192, 5, 386, 0, 0, 6190, 6191, 5, 80, 0, 0, 6191, 6193, 5, 882, 0, 0, 6192, 6190, 1, 0, 0, 0, 6192, 6193, 1, 0, 0, 0, 6193, 6196, 1, 0, 0, 0, 6194, 6195, 5, 68, 0, 0, 6195, 6197, 3, 708, 354, 0, 6196, 6194, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6205, 1, 0, 0, 0, 6198, 6202, 5, 100, 0, 0, 6199, 6200, 3, 708, 354, 0, 6200, 6201, 5, 868, 0, 0, 6201, 6203, 1, 0, 0, 0, 6202, 6199, 1, 0, 0, 0, 6202, 6203, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6206, 3, 708, 354, 0, 6205, 6198, 1, 0, 0, 0, 6205, 6206, 1, 0, 0, 0, 6206, 6208, 1, 0, 0, 0, 6207, 6209, 3, 384, 192, 0, 6208, 6207, 1, 0, 0, 0, 6208, 6209, 1, 0, 0, 0, 6209, 6369, 1, 0, 0, 0, 6210, 6211, 5, 157, 0, 0, 6211, 6213, 3, 556, 278, 0, 6212, 6214, 3, 558, 279, 0, 6213, 6212, 1, 0, 0, 0, 6213, 6214, 1, 0, 0, 0, 6214, 6369, 1, 0, 0, 0, 6215, 6217, 5, 157, 0, 0, 6216, 6218, 5, 392, 0, 0, 6217, 6216, 1, 0, 0, 0, 6217, 6218, 1, 0, 0, 0, 6218, 6220, 1, 0, 0, 0, 6219, 6221, 5, 408, 0, 0, 6220, 6219, 1, 0, 0, 0, 6220, 6221, 1, 0, 0, 0, 6221, 6222, 1, 0, 0, 0, 6222, 6223, 7, 46, 0, 0, 6223, 6224, 7, 95, 0, 0, 6224, 6227, 3, 648, 324, 0, 6225, 6226, 7, 95, 0, 0, 6226, 6228, 3, 624, 312, 0, 6227, 6225, 1, 0, 0, 0, 6227, 6228, 1, 0, 0, 0, 6228, 6230, 1, 0, 0, 0, 6229, 6231, 3, 558, 279, 0, 6230, 6229, 1, 0, 0, 0, 6230, 6231, 1, 0, 0, 0, 6231, 6369, 1, 0, 0, 0, 6232, 6233, 5, 157, 0, 0, 6233, 6234, 5, 34, 0, 0, 6234, 6236, 7, 0, 0, 0, 6235, 6237, 3, 756, 378, 0, 6236, 6235, 1, 0, 0, 0, 6236, 6237, 1, 0, 0, 0, 6237, 6238, 1, 0, 0, 0, 6238, 6369, 3, 622, 311, 0, 6239, 6240, 5, 157, 0, 0, 6240, 6241, 5, 34, 0, 0, 6241, 6242, 7, 96, 0, 0, 6242, 6369, 3, 698, 349, 0, 6243, 6244, 5, 157, 0, 0, 6244, 6245, 5, 34, 0, 0, 6245, 6246, 5, 409, 0, 0, 6246, 6369, 3, 626, 313, 0, 6247, 6248, 5, 157, 0, 0, 6248, 6249, 5, 34, 0, 0, 6249, 6250, 5, 684, 0, 0, 6250, 6369, 3, 630, 315, 0, 6251, 6252, 5, 157, 0, 0, 6252, 6253, 5, 34, 0, 0, 6253, 6254, 5, 173, 0, 0, 6254, 6369, 3, 644, 322, 0, 6255, 6256, 5, 157, 0, 0, 6256, 6257, 5, 34, 0, 0, 6257, 6258, 5, 678, 0, 0, 6258, 6369, 3, 680, 340, 0, 6259, 6260, 5, 157, 0, 0, 6260, 6261, 5, 380, 0, 0, 6261, 6262, 3, 688, 344, 0, 6262, 6263, 7, 97, 0, 0, 6263, 6369, 1, 0, 0, 0, 6264, 6265, 5, 157, 0, 0, 6265, 6369, 3, 560, 280, 0, 6266, 6267, 5, 157, 0, 0, 6267, 6275, 7, 98, 0, 0, 6268, 6272, 5, 100, 0, 0, 6269, 6270, 3, 708, 354, 0, 6270, 6271, 5, 868, 0, 0, 6271, 6273, 1, 0, 0, 0, 6272, 6269, 1, 0, 0, 0, 6272, 6273, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 6276, 3, 708, 354, 0, 6275, 6268, 1, 0, 0, 0, 6275, 6276, 1, 0, 0, 0, 6276, 6369, 1, 0, 0, 0, 6277, 6278, 5, 157, 0, 0, 6278, 6279, 5, 262, 0, 0, 6279, 6280, 5, 866, 0, 0, 6280, 6281, 5, 850, 0, 0, 6281, 6282, 5, 867, 0, 0, 6282, 6369, 7, 98, 0, 0, 6283, 6284, 5, 157, 0, 0, 6284, 6287, 3, 562, 281, 0, 6285, 6286, 7, 95, 0, 0, 6286, 6288, 3, 624, 312, 0, 6287, 6285, 1, 0, 0, 0, 6287, 6288, 1, 0, 0, 0, 6288, 6290, 1, 0, 0, 0, 6289, 6291, 3, 558, 279, 0, 6290, 6289, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 6369, 1, 0, 0, 0, 6292, 6293, 5, 157, 0, 0, 6293, 6294, 5, 132, 0, 0, 6294, 6295, 5, 336, 0, 0, 6295, 6369, 3, 698, 349, 0, 6296, 6297, 5, 157, 0, 0, 6297, 6298, 5, 409, 0, 0, 6298, 6299, 5, 336, 0, 0, 6299, 6369, 3, 628, 314, 0, 6300, 6301, 5, 157, 0, 0, 6301, 6308, 5, 414, 0, 0, 6302, 6303, 5, 65, 0, 0, 6303, 6306, 3, 652, 326, 0, 6304, 6305, 5, 188, 0, 0, 6305, 6307, 3, 650, 325, 0, 6306, 6304, 1, 0, 0, 0, 6306, 6307, 1, 0, 0, 0, 6307, 6309, 1, 0, 0, 0, 6308, 6302, 1, 0, 0, 0, 6308, 6309, 1, 0, 0, 0, 6309, 6369, 1, 0, 0, 0, 6310, 6312, 5, 157, 0, 0, 6311, 6313, 5, 392, 0, 0, 6312, 6311, 1, 0, 0, 0, 6312, 6313, 1, 0, 0, 0, 6313, 6314, 1, 0, 0, 0, 6314, 6315, 7, 99, 0, 0, 6315, 6316, 7, 95, 0, 0, 6316, 6319, 3, 648, 324, 0, 6317, 6318, 7, 95, 0, 0, 6318, 6320, 3, 624, 312, 0, 6319, 6317, 1, 0, 0, 0, 6319, 6320, 1, 0, 0, 0, 6320, 6323, 1, 0, 0, 0, 6321, 6322, 5, 192, 0, 0, 6322, 6324, 3, 800, 400, 0, 6323, 6321, 1, 0, 0, 0, 6323, 6324, 1, 0, 0, 0, 6324, 6369, 1, 0, 0, 0, 6325, 6326, 5, 157, 0, 0, 6326, 6327, 5, 516, 0, 0, 6327, 6330, 5, 752, 0, 0, 6328, 6329, 7, 95, 0, 0, 6329, 6331, 3, 624, 312, 0, 6330, 6328, 1, 0, 0, 0, 6330, 6331, 1, 0, 0, 0, 6331, 6333, 1, 0, 0, 0, 6332, 6334, 3, 558, 279, 0, 6333, 6332, 1, 0, 0, 0, 6333, 6334, 1, 0, 0, 0, 6334, 6369, 1, 0, 0, 0, 6335, 6336, 5, 157, 0, 0, 6336, 6345, 5, 545, 0, 0, 6337, 6342, 3, 564, 282, 0, 6338, 6339, 5, 868, 0, 0, 6339, 6341, 3, 564, 282, 0, 6340, 6338, 1, 0, 0, 0, 6341, 6344, 1, 0, 0, 0, 6342, 6340, 1, 0, 0, 0, 6342, 6343, 1, 0, 0, 0, 6343, 6346, 1, 0, 0, 0, 6344, 6342, 1, 0, 0, 0, 6345, 6337, 1, 0, 0, 0, 6345, 6346, 1, 0, 0, 0, 6346, 6350, 1, 0, 0, 0, 6347, 6348, 5, 65, 0, 0, 6348, 6349, 5, 548, 0, 0, 6349, 6351, 3, 708, 354, 0, 6350, 6347, 1, 0, 0, 0, 6350, 6351, 1, 0, 0, 0, 6351, 6358, 1, 0, 0, 0, 6352, 6353, 5, 100, 0, 0, 6353, 6356, 3, 708, 354, 0, 6354, 6355, 5, 509, 0, 0, 6355, 6357, 3, 708, 354, 0, 6356, 6354, 1, 0, 0, 0, 6356, 6357, 1, 0, 0, 0, 6357, 6359, 1, 0, 0, 0, 6358, 6352, 1, 0, 0, 0, 6358, 6359, 1, 0, 0, 0, 6359, 6369, 1, 0, 0, 0, 6360, 6361, 5, 157, 0, 0, 6361, 6362, 7, 63, 0, 0, 6362, 6364, 5, 645, 0, 0, 6363, 6365, 3, 384, 192, 0, 6364, 6363, 1, 0, 0, 0, 6364, 6365, 1, 0, 0, 0, 6365, 6369, 1, 0, 0, 0, 6366, 6367, 5, 157, 0, 0, 6367, 6369, 5, 564, 0, 0, 6368, 6184, 1, 0, 0, 0, 6368, 6187, 1, 0, 0, 0, 6368, 6210, 1, 0, 0, 0, 6368, 6215, 1, 0, 0, 0, 6368, 6232, 1, 0, 0, 0, 6368, 6239, 1, 0, 0, 0, 6368, 6243, 1, 0, 0, 0, 6368, 6247, 1, 0, 0, 0, 6368, 6251, 1, 0, 0, 0, 6368, 6255, 1, 0, 0, 0, 6368, 6259, 1, 0, 0, 0, 6368, 6264, 1, 0, 0, 0, 6368, 6266, 1, 0, 0, 0, 6368, 6277, 1, 0, 0, 0, 6368, 6283, 1, 0, 0, 0, 6368, 6292, 1, 0, 0, 0, 6368, 6296, 1, 0, 0, 0, 6368, 6300, 1, 0, 0, 0, 6368, 6310, 1, 0, 0, 0, 6368, 6325, 1, 0, 0, 0, 6368, 6335, 1, 0, 0, 0, 6368, 6360, 1, 0, 0, 0, 6368, 6366, 1, 0, 0, 0, 6369, 553, 1, 0, 0, 0, 6370, 6381, 5, 892, 0, 0, 6371, 6381, 5, 893, 0, 0, 6372, 6373, 5, 870, 0, 0, 6373, 6375, 5, 870, 0, 0, 6374, 6372, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6376, 1, 0, 0, 0, 6376, 6378, 7, 100, 0, 0, 6377, 6374, 1, 0, 0, 0, 6377, 6378, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6381, 3, 702, 351, 0, 6380, 6370, 1, 0, 0, 0, 6380, 6371, 1, 0, 0, 0, 6380, 6377, 1, 0, 0, 0, 6381, 555, 1, 0, 0, 0, 6382, 6383, 5, 26, 0, 0, 6383, 6397, 5, 155, 0, 0, 6384, 6397, 5, 823, 0, 0, 6385, 6397, 5, 824, 0, 0, 6386, 6397, 5, 40, 0, 0, 6387, 6397, 5, 153, 0, 0, 6388, 6389, 5, 409, 0, 0, 6389, 6397, 5, 645, 0, 0, 6390, 6391, 5, 132, 0, 0, 6391, 6397, 5, 645, 0, 0, 6392, 6394, 7, 61, 0, 0, 6393, 6392, 1, 0, 0, 0, 6393, 6394, 1, 0, 0, 0, 6394, 6395, 1, 0, 0, 0, 6395, 6397, 7, 101, 0, 0, 6396, 6382, 1, 0, 0, 0, 6396, 6384, 1, 0, 0, 0, 6396, 6385, 1, 0, 0, 0, 6396, 6386, 1, 0, 0, 0, 6396, 6387, 1, 0, 0, 0, 6396, 6388, 1, 0, 0, 0, 6396, 6390, 1, 0, 0, 0, 6396, 6393, 1, 0, 0, 0, 6397, 557, 1, 0, 0, 0, 6398, 6399, 5, 99, 0, 0, 6399, 6403, 5, 882, 0, 0, 6400, 6401, 5, 192, 0, 0, 6401, 6403, 3, 800, 400, 0, 6402, 6398, 1, 0, 0, 0, 6402, 6400, 1, 0, 0, 0, 6403, 559, 1, 0, 0, 0, 6404, 6406, 5, 647, 0, 0, 6405, 6404, 1, 0, 0, 0, 6405, 6406, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6422, 5, 381, 0, 0, 6408, 6409, 5, 453, 0, 0, 6409, 6422, 5, 645, 0, 0, 6410, 6422, 5, 536, 0, 0, 6411, 6422, 5, 734, 0, 0, 6412, 6414, 5, 408, 0, 0, 6413, 6412, 1, 0, 0, 0, 6413, 6414, 1, 0, 0, 0, 6414, 6415, 1, 0, 0, 0, 6415, 6422, 5, 544, 0, 0, 6416, 6422, 5, 546, 0, 0, 6417, 6418, 5, 598, 0, 0, 6418, 6422, 5, 422, 0, 0, 6419, 6422, 5, 312, 0, 0, 6420, 6422, 5, 356, 0, 0, 6421, 6405, 1, 0, 0, 0, 6421, 6408, 1, 0, 0, 0, 6421, 6410, 1, 0, 0, 0, 6421, 6411, 1, 0, 0, 0, 6421, 6413, 1, 0, 0, 0, 6421, 6416, 1, 0, 0, 0, 6421, 6417, 1, 0, 0, 0, 6421, 6419, 1, 0, 0, 0, 6421, 6420, 1, 0, 0, 0, 6422, 561, 1, 0, 0, 0, 6423, 6435, 5, 386, 0, 0, 6424, 6425, 5, 173, 0, 0, 6425, 6435, 5, 645, 0, 0, 6426, 6428, 5, 392, 0, 0, 6427, 6426, 1, 0, 0, 0, 6427, 6428, 1, 0, 0, 0, 6428, 6430, 1, 0, 0, 0, 6429, 6431, 5, 408, 0, 0, 6430, 6429, 1, 0, 0, 0, 6430, 6431, 1, 0, 0, 0, 6431, 6432, 1, 0, 0, 0, 6432, 6435, 5, 752, 0, 0, 6433, 6435, 5, 667, 0, 0, 6434, 6423, 1, 0, 0, 0, 6434, 6424, 1, 0, 0, 0, 6434, 6427, 1, 0, 0, 0, 6434, 6433, 1, 0, 0, 0, 6435, 563, 1, 0, 0, 0, 6436, 6449, 5, 7, 0, 0, 6437, 6438, 5, 320, 0, 0, 6438, 6449, 5, 437, 0, 0, 6439, 6440, 5, 355, 0, 0, 6440, 6449, 5, 656, 0, 0, 6441, 6449, 5, 358, 0, 0, 6442, 6449, 5, 439, 0, 0, 6443, 6449, 5, 802, 0, 0, 6444, 6445, 5, 521, 0, 0, 6445, 6449, 5, 397, 0, 0, 6446, 6449, 5, 605, 0, 0, 6447, 6449, 5, 655, 0, 0, 6448, 6436, 1, 0, 0, 0, 6448, 6437, 1, 0, 0, 0, 6448, 6439, 1, 0, 0, 0, 6448, 6441, 1, 0, 0, 0, 6448, 6442, 1, 0, 0, 0, 6448, 6443, 1, 0, 0, 0, 6448, 6444, 1, 0, 0, 0, 6448, 6446, 1, 0, 0, 0, 6448, 6447, 1, 0, 0, 0, 6449, 565, 1, 0, 0, 0, 6450, 6451, 5, 318, 0, 0, 6451, 6452, 5, 882, 0, 0, 6452, 567, 1, 0, 0, 0, 6453, 6454, 5, 324, 0, 0, 6454, 6472, 5, 82, 0, 0, 6455, 6460, 3, 588, 294, 0, 6456, 6457, 5, 868, 0, 0, 6457, 6459, 3, 588, 294, 0, 6458, 6456, 1, 0, 0, 0, 6459, 6462, 1, 0, 0, 0, 6460, 6458, 1, 0, 0, 0, 6460, 6461, 1, 0, 0, 0, 6461, 6473, 1, 0, 0, 0, 6462, 6460, 1, 0, 0, 0, 6463, 6464, 3, 648, 324, 0, 6464, 6465, 5, 130, 0, 0, 6465, 6468, 5, 866, 0, 0, 6466, 6469, 3, 666, 333, 0, 6467, 6469, 5, 7, 0, 0, 6468, 6466, 1, 0, 0, 0, 6468, 6467, 1, 0, 0, 0, 6469, 6470, 1, 0, 0, 0, 6470, 6471, 5, 867, 0, 0, 6471, 6473, 1, 0, 0, 0, 6472, 6455, 1, 0, 0, 0, 6472, 6463, 1, 0, 0, 0, 6473, 6474, 1, 0, 0, 0, 6474, 6475, 5, 80, 0, 0, 6475, 6476, 3, 624, 312, 0, 6476, 569, 1, 0, 0, 0, 6477, 6479, 5, 404, 0, 0, 6478, 6480, 3, 532, 266, 0, 6479, 6478, 1, 0, 0, 0, 6479, 6480, 1, 0, 0, 0, 6480, 6481, 1, 0, 0, 0, 6481, 6486, 3, 590, 295, 0, 6482, 6483, 5, 868, 0, 0, 6483, 6485, 3, 590, 295, 0, 6484, 6482, 1, 0, 0, 0, 6485, 6488, 1, 0, 0, 0, 6486, 6484, 1, 0, 0, 0, 6486, 6487, 1, 0, 0, 0, 6487, 571, 1, 0, 0, 0, 6488, 6486, 1, 0, 0, 0, 6489, 6491, 5, 94, 0, 0, 6490, 6492, 7, 102, 0, 0, 6491, 6490, 1, 0, 0, 0, 6491, 6492, 1, 0, 0, 0, 6492, 6493, 1, 0, 0, 0, 6493, 6494, 3, 800, 400, 0, 6494, 573, 1, 0, 0, 0, 6495, 6496, 5, 103, 0, 0, 6496, 6497, 5, 82, 0, 0, 6497, 6498, 5, 88, 0, 0, 6498, 6499, 5, 324, 0, 0, 6499, 6504, 3, 594, 297, 0, 6500, 6501, 5, 868, 0, 0, 6501, 6503, 3, 594, 297, 0, 6502, 6500, 1, 0, 0, 0, 6503, 6506, 1, 0, 0, 0, 6504, 6502, 1, 0, 0, 0, 6504, 6505, 1, 0, 0, 0, 6505, 575, 1, 0, 0, 0, 6506, 6504, 1, 0, 0, 0, 6507, 6508, 5, 575, 0, 0, 6508, 6513, 3, 578, 289, 0, 6509, 6510, 5, 868, 0, 0, 6510, 6512, 3, 578, 289, 0, 6511, 6509, 1, 0, 0, 0, 6512, 6515, 1, 0, 0, 0, 6513, 6511, 1, 0, 0, 0, 6513, 6514, 1, 0, 0, 0, 6514, 577, 1, 0, 0, 0, 6515, 6513, 1, 0, 0, 0, 6516, 6522, 5, 453, 0, 0, 6517, 6522, 5, 563, 0, 0, 6518, 6519, 5, 548, 0, 0, 6519, 6522, 5, 324, 0, 0, 6520, 6522, 5, 598, 0, 0, 6521, 6516, 1, 0, 0, 0, 6521, 6517, 1, 0, 0, 0, 6521, 6518, 1, 0, 0, 0, 6521, 6520, 1, 0, 0, 0, 6522, 579, 1, 0, 0, 0, 6523, 6524, 5, 575, 0, 0, 6524, 6529, 5, 531, 0, 0, 6525, 6527, 3, 754, 377, 0, 6526, 6525, 1, 0, 0, 0, 6526, 6527, 1, 0, 0, 0, 6527, 6528, 1, 0, 0, 0, 6528, 6530, 3, 702, 351, 0, 6529, 6526, 1, 0, 0, 0, 6529, 6530, 1, 0, 0, 0, 6530, 581, 1, 0, 0, 0, 6531, 6532, 5, 575, 0, 0, 6532, 6534, 7, 63, 0, 0, 6533, 6535, 5, 7, 0, 0, 6534, 6533, 1, 0, 0, 0, 6534, 6535, 1, 0, 0, 0, 6535, 6537, 1, 0, 0, 0, 6536, 6538, 3, 384, 192, 0, 6537, 6536, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 583, 1, 0, 0, 0, 6539, 6540, 5, 576, 0, 0, 6540, 585, 1, 0, 0, 0, 6541, 6542, 5, 749, 0, 0, 6542, 587, 1, 0, 0, 0, 6543, 6549, 3, 648, 324, 0, 6544, 6545, 7, 18, 0, 0, 6545, 6546, 5, 866, 0, 0, 6546, 6547, 3, 636, 318, 0, 6547, 6548, 5, 867, 0, 0, 6548, 6550, 1, 0, 0, 0, 6549, 6544, 1, 0, 0, 0, 6549, 6550, 1, 0, 0, 0, 6550, 589, 1, 0, 0, 0, 6551, 6570, 5, 366, 0, 0, 6552, 6570, 5, 422, 0, 0, 6553, 6555, 7, 103, 0, 0, 6554, 6553, 1, 0, 0, 0, 6554, 6555, 1, 0, 0, 0, 6555, 6556, 1, 0, 0, 0, 6556, 6570, 5, 452, 0, 0, 6557, 6570, 5, 517, 0, 0, 6558, 6570, 5, 734, 0, 0, 6559, 6560, 5, 548, 0, 0, 6560, 6570, 5, 324, 0, 0, 6561, 6570, 5, 645, 0, 0, 6562, 6570, 5, 680, 0, 0, 6563, 6567, 5, 752, 0, 0, 6564, 6565, 5, 194, 0, 0, 6565, 6566, 5, 135, 0, 0, 6566, 6568, 5, 104, 0, 0, 6567, 6564, 1, 0, 0, 0, 6567, 6568, 1, 0, 0, 0, 6568, 6570, 1, 0, 0, 0, 6569, 6551, 1, 0, 0, 0, 6569, 6552, 1, 0, 0, 0, 6569, 6554, 1, 0, 0, 0, 6569, 6557, 1, 0, 0, 0, 6569, 6558, 1, 0, 0, 0, 6569, 6559, 1, 0, 0, 0, 6569, 6561, 1, 0, 0, 0, 6569, 6562, 1, 0, 0, 0, 6569, 6563, 1, 0, 0, 0, 6570, 6584, 1, 0, 0, 0, 6571, 6572, 5, 556, 0, 0, 6572, 6574, 5, 452, 0, 0, 6573, 6575, 3, 384, 192, 0, 6574, 6573, 1, 0, 0, 0, 6574, 6575, 1, 0, 0, 0, 6575, 6584, 1, 0, 0, 0, 6576, 6578, 7, 60, 0, 0, 6577, 6579, 3, 646, 323, 0, 6578, 6577, 1, 0, 0, 0, 6578, 6579, 1, 0, 0, 0, 6579, 6581, 1, 0, 0, 0, 6580, 6582, 3, 592, 296, 0, 6581, 6580, 1, 0, 0, 0, 6581, 6582, 1, 0, 0, 0, 6582, 6584, 1, 0, 0, 0, 6583, 6569, 1, 0, 0, 0, 6583, 6571, 1, 0, 0, 0, 6583, 6576, 1, 0, 0, 0, 6584, 591, 1, 0, 0, 0, 6585, 6586, 5, 194, 0, 0, 6586, 6587, 5, 135, 0, 0, 6587, 6591, 5, 104, 0, 0, 6588, 6589, 5, 65, 0, 0, 6589, 6591, 5, 391, 0, 0, 6590, 6585, 1, 0, 0, 0, 6590, 6588, 1, 0, 0, 0, 6591, 593, 1, 0, 0, 0, 6592, 6600, 3, 648, 324, 0, 6593, 6594, 5, 130, 0, 0, 6594, 6597, 5, 866, 0, 0, 6595, 6598, 3, 666, 333, 0, 6596, 6598, 5, 7, 0, 0, 6597, 6595, 1, 0, 0, 0, 6597, 6596, 1, 0, 0, 0, 6598, 6599, 1, 0, 0, 0, 6599, 6601, 5, 867, 0, 0, 6600, 6593, 1, 0, 0, 0, 6600, 6601, 1, 0, 0, 0, 6601, 6609, 1, 0, 0, 0, 6602, 6604, 7, 18, 0, 0, 6603, 6602, 1, 0, 0, 0, 6603, 6604, 1, 0, 0, 0, 6604, 6605, 1, 0, 0, 0, 6605, 6606, 5, 866, 0, 0, 6606, 6607, 3, 636, 318, 0, 6607, 6608, 5, 867, 0, 0, 6608, 6610, 1, 0, 0, 0, 6609, 6603, 1, 0, 0, 0, 6609, 6610, 1, 0, 0, 0, 6610, 6613, 1, 0, 0, 0, 6611, 6612, 5, 79, 0, 0, 6612, 6614, 5, 446, 0, 0, 6613, 6611, 1, 0, 0, 0, 6613, 6614, 1, 0, 0, 0, 6614, 595, 1, 0, 0, 0, 6615, 6616, 7, 104, 0, 0, 6616, 6619, 3, 648, 324, 0, 6617, 6620, 3, 658, 329, 0, 6618, 6620, 5, 882, 0, 0, 6619, 6617, 1, 0, 0, 0, 6619, 6618, 1, 0, 0, 0, 6619, 6620, 1, 0, 0, 0, 6620, 597, 1, 0, 0, 0, 6621, 6627, 7, 104, 0, 0, 6622, 6628, 5, 392, 0, 0, 6623, 6628, 5, 528, 0, 0, 6624, 6625, 5, 826, 0, 0, 6625, 6626, 5, 857, 0, 0, 6626, 6628, 7, 105, 0, 0, 6627, 6622, 1, 0, 0, 0, 6627, 6623, 1, 0, 0, 0, 6627, 6624, 1, 0, 0, 0, 6627, 6628, 1, 0, 0, 0, 6628, 6629, 1, 0, 0, 0, 6629, 6630, 3, 620, 310, 0, 6630, 599, 1, 0, 0, 0, 6631, 6632, 7, 104, 0, 0, 6632, 6636, 5, 10, 0, 0, 6633, 6634, 5, 826, 0, 0, 6634, 6635, 5, 857, 0, 0, 6635, 6637, 5, 666, 0, 0, 6636, 6633, 1, 0, 0, 0, 6636, 6637, 1, 0, 0, 0, 6637, 6638, 1, 0, 0, 0, 6638, 6639, 3, 204, 102, 0, 6639, 601, 1, 0, 0, 0, 6640, 6641, 5, 419, 0, 0, 6641, 6642, 5, 882, 0, 0, 6642, 603, 1, 0, 0, 0, 6643, 6644, 5, 187, 0, 0, 6644, 6645, 3, 624, 312, 0, 6645, 605, 1, 0, 0, 0, 6646, 6654, 5, 158, 0, 0, 6647, 6649, 5, 164, 0, 0, 6648, 6650, 5, 682, 0, 0, 6649, 6648, 1, 0, 0, 0, 6649, 6650, 1, 0, 0, 0, 6650, 6651, 1, 0, 0, 0, 6651, 6655, 3, 712, 356, 0, 6652, 6655, 5, 889, 0, 0, 6653, 6655, 5, 890, 0, 0, 6654, 6647, 1, 0, 0, 0, 6654, 6652, 1, 0, 0, 0, 6654, 6653, 1, 0, 0, 0, 6655, 6665, 1, 0, 0, 0, 6656, 6657, 5, 155, 0, 0, 6657, 6662, 3, 610, 305, 0, 6658, 6659, 5, 868, 0, 0, 6659, 6661, 3, 610, 305, 0, 6660, 6658, 1, 0, 0, 0, 6661, 6664, 1, 0, 0, 0, 6662, 6660, 1, 0, 0, 0, 6662, 6663, 1, 0, 0, 0, 6663, 6666, 1, 0, 0, 0, 6664, 6662, 1, 0, 0, 0, 6665, 6656, 1, 0, 0, 0, 6665, 6666, 1, 0, 0, 0, 6666, 607, 1, 0, 0, 0, 6667, 6675, 5, 145, 0, 0, 6668, 6670, 5, 164, 0, 0, 6669, 6671, 5, 682, 0, 0, 6670, 6669, 1, 0, 0, 0, 6670, 6671, 1, 0, 0, 0, 6671, 6672, 1, 0, 0, 0, 6672, 6676, 3, 712, 356, 0, 6673, 6676, 5, 889, 0, 0, 6674, 6676, 5, 890, 0, 0, 6675, 6668, 1, 0, 0, 0, 6675, 6673, 1, 0, 0, 0, 6675, 6674, 1, 0, 0, 0, 6675, 6676, 1, 0, 0, 0, 6676, 6686, 1, 0, 0, 0, 6677, 6678, 5, 155, 0, 0, 6678, 6683, 3, 610, 305, 0, 6679, 6680, 5, 868, 0, 0, 6680, 6682, 3, 610, 305, 0, 6681, 6679, 1, 0, 0, 0, 6682, 6685, 1, 0, 0, 0, 6683, 6681, 1, 0, 0, 0, 6683, 6684, 1, 0, 0, 0, 6684, 6687, 1, 0, 0, 0, 6685, 6683, 1, 0, 0, 0, 6686, 6677, 1, 0, 0, 0, 6686, 6687, 1, 0, 0, 0, 6687, 609, 1, 0, 0, 0, 6688, 6689, 7, 106, 0, 0, 6689, 6694, 5, 857, 0, 0, 6690, 6695, 3, 712, 356, 0, 6691, 6695, 5, 883, 0, 0, 6692, 6695, 3, 682, 341, 0, 6693, 6695, 3, 704, 352, 0, 6694, 6690, 1, 0, 0, 0, 6694, 6691, 1, 0, 0, 0, 6694, 6692, 1, 0, 0, 0, 6694, 6693, 1, 0, 0, 0, 6695, 611, 1, 0, 0, 0, 6696, 6698, 5, 194, 0, 0, 6697, 6699, 5, 552, 0, 0, 6698, 6697, 1, 0, 0, 0, 6698, 6699, 1, 0, 0, 0, 6699, 6700, 1, 0, 0, 0, 6700, 6705, 3, 48, 24, 0, 6701, 6702, 5, 868, 0, 0, 6702, 6704, 3, 48, 24, 0, 6703, 6701, 1, 0, 0, 0, 6704, 6707, 1, 0, 0, 0, 6705, 6703, 1, 0, 0, 0, 6705, 6706, 1, 0, 0, 0, 6706, 613, 1, 0, 0, 0, 6707, 6705, 1, 0, 0, 0, 6708, 6709, 5, 173, 0, 0, 6709, 6711, 3, 648, 324, 0, 6710, 6712, 3, 252, 126, 0, 6711, 6710, 1, 0, 0, 0, 6711, 6712, 1, 0, 0, 0, 6712, 6714, 1, 0, 0, 0, 6713, 6715, 3, 312, 156, 0, 6714, 6713, 1, 0, 0, 0, 6714, 6715, 1, 0, 0, 0, 6715, 615, 1, 0, 0, 0, 6716, 6718, 5, 72, 0, 0, 6717, 6719, 7, 107, 0, 0, 6718, 6717, 1, 0, 0, 0, 6718, 6719, 1, 0, 0, 0, 6719, 6720, 1, 0, 0, 0, 6720, 6752, 5, 48, 0, 0, 6721, 6722, 3, 554, 277, 0, 6722, 6723, 5, 857, 0, 0, 6723, 6731, 7, 108, 0, 0, 6724, 6725, 5, 868, 0, 0, 6725, 6726, 3, 554, 277, 0, 6726, 6727, 5, 857, 0, 0, 6727, 6728, 7, 108, 0, 0, 6728, 6730, 1, 0, 0, 0, 6729, 6724, 1, 0, 0, 0, 6730, 6733, 1, 0, 0, 0, 6731, 6729, 1, 0, 0, 0, 6731, 6732, 1, 0, 0, 0, 6732, 6753, 1, 0, 0, 0, 6733, 6731, 1, 0, 0, 0, 6734, 6737, 5, 30, 0, 0, 6735, 6738, 3, 708, 354, 0, 6736, 6738, 3, 554, 277, 0, 6737, 6735, 1, 0, 0, 0, 6737, 6736, 1, 0, 0, 0, 6738, 6739, 1, 0, 0, 0, 6739, 6740, 3, 554, 277, 0, 6740, 6741, 5, 857, 0, 0, 6741, 6749, 3, 618, 309, 0, 6742, 6743, 5, 868, 0, 0, 6743, 6744, 3, 554, 277, 0, 6744, 6745, 5, 857, 0, 0, 6745, 6746, 3, 618, 309, 0, 6746, 6748, 1, 0, 0, 0, 6747, 6742, 1, 0, 0, 0, 6748, 6751, 1, 0, 0, 0, 6749, 6747, 1, 0, 0, 0, 6749, 6750, 1, 0, 0, 0, 6750, 6753, 1, 0, 0, 0, 6751, 6749, 1, 0, 0, 0, 6752, 6721, 1, 0, 0, 0, 6752, 6734, 1, 0, 0, 0, 6753, 617, 1, 0, 0, 0, 6754, 6755, 7, 109, 0, 0, 6755, 619, 1, 0, 0, 0, 6756, 6762, 3, 204, 102, 0, 6757, 6762, 3, 180, 90, 0, 6758, 6762, 3, 186, 93, 0, 6759, 6762, 3, 202, 101, 0, 6760, 6762, 3, 214, 107, 0, 6761, 6756, 1, 0, 0, 0, 6761, 6757, 1, 0, 0, 0, 6761, 6758, 1, 0, 0, 0, 6761, 6759, 1, 0, 0, 0, 6761, 6760, 1, 0, 0, 0, 6762, 6767, 1, 0, 0, 0, 6763, 6764, 5, 65, 0, 0, 6764, 6765, 5, 349, 0, 0, 6765, 6767, 3, 702, 351, 0, 6766, 6761, 1, 0, 0, 0, 6766, 6763, 1, 0, 0, 0, 6767, 621, 1, 0, 0, 0, 6768, 6769, 3, 698, 349, 0, 6769, 623, 1, 0, 0, 0, 6770, 6771, 3, 698, 349, 0, 6771, 625, 1, 0, 0, 0, 6772, 6773, 3, 698, 349, 0, 6773, 627, 1, 0, 0, 0, 6774, 6775, 3, 698, 349, 0, 6775, 629, 1, 0, 0, 0, 6776, 6777, 3, 698, 349, 0, 6777, 631, 1, 0, 0, 0, 6778, 6779, 3, 698, 349, 0, 6779, 633, 1, 0, 0, 0, 6780, 6781, 3, 702, 351, 0, 6781, 635, 1, 0, 0, 0, 6782, 6787, 3, 638, 319, 0, 6783, 6784, 5, 868, 0, 0, 6784, 6786, 3, 638, 319, 0, 6785, 6783, 1, 0, 0, 0, 6786, 6789, 1, 0, 0, 0, 6787, 6785, 1, 0, 0, 0, 6787, 6788, 1, 0, 0, 0, 6788, 637, 1, 0, 0, 0, 6789, 6787, 1, 0, 0, 0, 6790, 6791, 3, 702, 351, 0, 6791, 639, 1, 0, 0, 0, 6792, 6793, 3, 702, 351, 0, 6793, 641, 1, 0, 0, 0, 6794, 6795, 3, 702, 351, 0, 6795, 643, 1, 0, 0, 0, 6796, 6797, 3, 698, 349, 0, 6797, 645, 1, 0, 0, 0, 6798, 6803, 3, 648, 324, 0, 6799, 6800, 5, 868, 0, 0, 6800, 6802, 3, 648, 324, 0, 6801, 6799, 1, 0, 0, 0, 6802, 6805, 1, 0, 0, 0, 6803, 6801, 1, 0, 0, 0, 6803, 6804, 1, 0, 0, 0, 6804, 647, 1, 0, 0, 0, 6805, 6803, 1, 0, 0, 0, 6806, 6807, 3, 698, 349, 0, 6807, 649, 1, 0, 0, 0, 6808, 6813, 3, 652, 326, 0, 6809, 6810, 5, 868, 0, 0, 6810, 6812, 3, 652, 326, 0, 6811, 6809, 1, 0, 0, 0, 6812, 6815, 1, 0, 0, 0, 6813, 6811, 1, 0, 0, 0, 6813, 6814, 1, 0, 0, 0, 6814, 651, 1, 0, 0, 0, 6815, 6813, 1, 0, 0, 0, 6816, 6819, 3, 680, 340, 0, 6817, 6819, 3, 702, 351, 0, 6818, 6816, 1, 0, 0, 0, 6818, 6817, 1, 0, 0, 0, 6819, 653, 1, 0, 0, 0, 6820, 6825, 3, 702, 351, 0, 6821, 6823, 3, 706, 353, 0, 6822, 6824, 3, 706, 353, 0, 6823, 6822, 1, 0, 0, 0, 6823, 6824, 1, 0, 0, 0, 6824, 6826, 1, 0, 0, 0, 6825, 6821, 1, 0, 0, 0, 6825, 6826, 1, 0, 0, 0, 6826, 6835, 1, 0, 0, 0, 6827, 6829, 9, 0, 0, 0, 6828, 6827, 1, 0, 0, 0, 6828, 6829, 1, 0, 0, 0, 6829, 6830, 1, 0, 0, 0, 6830, 6832, 3, 706, 353, 0, 6831, 6833, 3, 706, 353, 0, 6832, 6831, 1, 0, 0, 0, 6832, 6833, 1, 0, 0, 0, 6833, 6835, 1, 0, 0, 0, 6834, 6820, 1, 0, 0, 0, 6834, 6828, 1, 0, 0, 0, 6835, 655, 1, 0, 0, 0, 6836, 6841, 3, 658, 329, 0, 6837, 6838, 5, 868, 0, 0, 6838, 6840, 3, 658, 329, 0, 6839, 6837, 1, 0, 0, 0, 6840, 6843, 1, 0, 0, 0, 6841, 6839, 1, 0, 0, 0, 6841, 6842, 1, 0, 0, 0, 6842, 657, 1, 0, 0, 0, 6843, 6841, 1, 0, 0, 0, 6844, 6849, 3, 702, 351, 0, 6845, 6847, 3, 706, 353, 0, 6846, 6848, 3, 706, 353, 0, 6847, 6846, 1, 0, 0, 0, 6847, 6848, 1, 0, 0, 0, 6848, 6850, 1, 0, 0, 0, 6849, 6845, 1, 0, 0, 0, 6849, 6850, 1, 0, 0, 0, 6850, 6859, 1, 0, 0, 0, 6851, 6853, 9, 0, 0, 0, 6852, 6851, 1, 0, 0, 0, 6852, 6853, 1, 0, 0, 0, 6853, 6854, 1, 0, 0, 0, 6854, 6856, 3, 706, 353, 0, 6855, 6857, 3, 706, 353, 0, 6856, 6855, 1, 0, 0, 0, 6856, 6857, 1, 0, 0, 0, 6857, 6859, 1, 0, 0, 0, 6858, 6844, 1, 0, 0, 0, 6858, 6852, 1, 0, 0, 0, 6859, 659, 1, 0, 0, 0, 6860, 6861, 3, 702, 351, 0, 6861, 661, 1, 0, 0, 0, 6862, 6863, 3, 702, 351, 0, 6863, 663, 1, 0, 0, 0, 6864, 6865, 3, 702, 351, 0, 6865, 665, 1, 0, 0, 0, 6866, 6871, 3, 668, 334, 0, 6867, 6868, 5, 868, 0, 0, 6868, 6870, 3, 668, 334, 0, 6869, 6867, 1, 0, 0, 0, 6870, 6873, 1, 0, 0, 0, 6871, 6869, 1, 0, 0, 0, 6871, 6872, 1, 0, 0, 0, 6872, 667, 1, 0, 0, 0, 6873, 6871, 1, 0, 0, 0, 6874, 6875, 3, 702, 351, 0, 6875, 669, 1, 0, 0, 0, 6876, 6881, 3, 702, 351, 0, 6877, 6878, 5, 866, 0, 0, 6878, 6879, 3, 708, 354, 0, 6879, 6880, 5, 867, 0, 0, 6880, 6882, 1, 0, 0, 0, 6881, 6877, 1, 0, 0, 0, 6881, 6882, 1, 0, 0, 0, 6882, 6885, 1, 0, 0, 0, 6883, 6885, 3, 800, 400, 0, 6884, 6876, 1, 0, 0, 0, 6884, 6883, 1, 0, 0, 0, 6885, 6887, 1, 0, 0, 0, 6886, 6888, 7, 54, 0, 0, 6887, 6886, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 671, 1, 0, 0, 0, 6889, 6890, 3, 674, 337, 0, 6890, 6891, 5, 878, 0, 0, 6891, 6892, 3, 708, 354, 0, 6892, 673, 1, 0, 0, 0, 6893, 6894, 3, 676, 338, 0, 6894, 6895, 5, 891, 0, 0, 6895, 675, 1, 0, 0, 0, 6896, 6901, 5, 882, 0, 0, 6897, 6901, 5, 889, 0, 0, 6898, 6901, 5, 704, 0, 0, 6899, 6901, 3, 830, 415, 0, 6900, 6896, 1, 0, 0, 0, 6900, 6897, 1, 0, 0, 0, 6900, 6898, 1, 0, 0, 0, 6900, 6899, 1, 0, 0, 0, 6901, 677, 1, 0, 0, 0, 6902, 6903, 7, 110, 0, 0, 6903, 679, 1, 0, 0, 0, 6904, 6906, 3, 676, 338, 0, 6905, 6907, 3, 678, 339, 0, 6906, 6905, 1, 0, 0, 0, 6906, 6907, 1, 0, 0, 0, 6907, 6910, 1, 0, 0, 0, 6908, 6910, 3, 56, 28, 0, 6909, 6904, 1, 0, 0, 0, 6909, 6908, 1, 0, 0, 0, 6910, 681, 1, 0, 0, 0, 6911, 6912, 7, 111, 0, 0, 6912, 683, 1, 0, 0, 0, 6913, 6918, 5, 228, 0, 0, 6914, 6918, 3, 820, 410, 0, 6915, 6918, 5, 882, 0, 0, 6916, 6918, 5, 879, 0, 0, 6917, 6913, 1, 0, 0, 0, 6917, 6914, 1, 0, 0, 0, 6917, 6915, 1, 0, 0, 0, 6917, 6916, 1, 0, 0, 0, 6918, 685, 1, 0, 0, 0, 6919, 6920, 3, 702, 351, 0, 6920, 687, 1, 0, 0, 0, 6921, 6925, 3, 690, 345, 0, 6922, 6925, 5, 889, 0, 0, 6923, 6925, 5, 882, 0, 0, 6924, 6921, 1, 0, 0, 0, 6924, 6922, 1, 0, 0, 0, 6924, 6923, 1, 0, 0, 0, 6925, 689, 1, 0, 0, 0, 6926, 6927, 7, 112, 0, 0, 6927, 691, 1, 0, 0, 0, 6928, 6929, 3, 708, 354, 0, 6929, 6930, 5, 854, 0, 0, 6930, 6931, 3, 708, 354, 0, 6931, 6932, 5, 854, 0, 0, 6932, 6933, 3, 708, 354, 0, 6933, 6934, 5, 854, 0, 0, 6934, 6935, 3, 708, 354, 0, 6935, 6936, 5, 854, 0, 0, 6936, 6942, 3, 708, 354, 0, 6937, 6938, 5, 878, 0, 0, 6938, 6939, 3, 708, 354, 0, 6939, 6940, 5, 854, 0, 0, 6940, 6941, 3, 708, 354, 0, 6941, 6943, 1, 0, 0, 0, 6942, 6937, 1, 0, 0, 0, 6943, 6944, 1, 0, 0, 0, 6944, 6942, 1, 0, 0, 0, 6944, 6945, 1, 0, 0, 0, 6945, 693, 1, 0, 0, 0, 6946, 6953, 3, 696, 348, 0, 6947, 6948, 5, 868, 0, 0, 6948, 6951, 3, 696, 348, 0, 6949, 6950, 5, 868, 0, 0, 6950, 6952, 3, 708, 354, 0, 6951, 6949, 1, 0, 0, 0, 6951, 6952, 1, 0, 0, 0, 6952, 6954, 1, 0, 0, 0, 6953, 6947, 1, 0, 0, 0, 6953, 6954, 1, 0, 0, 0, 6954, 695, 1, 0, 0, 0, 6955, 6963, 5, 882, 0, 0, 6956, 6963, 5, 887, 0, 0, 6957, 6959, 5, 884, 0, 0, 6958, 6957, 1, 0, 0, 0, 6959, 6960, 1, 0, 0, 0, 6960, 6958, 1, 0, 0, 0, 6960, 6961, 1, 0, 0, 0, 6961, 6963, 1, 0, 0, 0, 6962, 6955, 1, 0, 0, 0, 6962, 6956, 1, 0, 0, 0, 6962, 6958, 1, 0, 0, 0, 6963, 697, 1, 0, 0, 0, 6964, 6966, 3, 702, 351, 0, 6965, 6967, 3, 706, 353, 0, 6966, 6965, 1, 0, 0, 0, 6966, 6967, 1, 0, 0, 0, 6967, 699, 1, 0, 0, 0, 6968, 6973, 3, 702, 351, 0, 6969, 6970, 5, 868, 0, 0, 6970, 6972, 3, 702, 351, 0, 6971, 6969, 1, 0, 0, 0, 6972, 6975, 1, 0, 0, 0, 6973, 6971, 1, 0, 0, 0, 6973, 6974, 1, 0, 0, 0, 6974, 701, 1, 0, 0, 0, 6975, 6973, 1, 0, 0, 0, 6976, 6980, 3, 704, 352, 0, 6977, 6980, 5, 879, 0, 0, 6978, 6980, 5, 882, 0, 0, 6979, 6976, 1, 0, 0, 0, 6979, 6977, 1, 0, 0, 0, 6979, 6978, 1, 0, 0, 0, 6980, 703, 1, 0, 0, 0, 6981, 6991, 5, 889, 0, 0, 6982, 6991, 3, 820, 410, 0, 6983, 6991, 3, 822, 411, 0, 6984, 6991, 3, 690, 345, 0, 6985, 6991, 3, 824, 412, 0, 6986, 6991, 3, 826, 413, 0, 6987, 6991, 3, 828, 414, 0, 6988, 6991, 3, 830, 415, 0, 6989, 6991, 3, 792, 396, 0, 6990, 6981, 1, 0, 0, 0, 6990, 6982, 1, 0, 0, 0, 6990, 6983, 1, 0, 0, 0, 6990, 6984, 1, 0, 0, 0, 6990, 6985, 1, 0, 0, 0, 6990, 6986, 1, 0, 0, 0, 6990, 6987, 1, 0, 0, 0, 6990, 6988, 1, 0, 0, 0, 6990, 6989, 1, 0, 0, 0, 6991, 705, 1, 0, 0, 0, 6992, 6993, 5, 865, 0, 0, 6993, 6997, 5, 889, 0, 0, 6994, 6995, 5, 865, 0, 0, 6995, 6997, 3, 702, 351, 0, 6996, 6992, 1, 0, 0, 0, 6996, 6994, 1, 0, 0, 0, 6997, 707, 1, 0, 0, 0, 6998, 6999, 7, 113, 0, 0, 6999, 709, 1, 0, 0, 0, 7000, 7003, 5, 880, 0, 0, 7001, 7003, 3, 708, 354, 0, 7002, 7000, 1, 0, 0, 0, 7002, 7001, 1, 0, 0, 0, 7003, 711, 1, 0, 0, 0, 7004, 7006, 5, 888, 0, 0, 7005, 7004, 1, 0, 0, 0, 7005, 7006, 1, 0, 0, 0, 7006, 7007, 1, 0, 0, 0, 7007, 7010, 5, 882, 0, 0, 7008, 7010, 5, 881, 0, 0, 7009, 7005, 1, 0, 0, 0, 7009, 7008, 1, 0, 0, 0, 7010, 7012, 1, 0, 0, 0, 7011, 7013, 5, 882, 0, 0, 7012, 7011, 1, 0, 0, 0, 7013, 7014, 1, 0, 0, 0, 7014, 7012, 1, 0, 0, 0, 7014, 7015, 1, 0, 0, 0, 7015, 7028, 1, 0, 0, 0, 7016, 7018, 5, 888, 0, 0, 7017, 7016, 1, 0, 0, 0, 7017, 7018, 1, 0, 0, 0, 7018, 7019, 1, 0, 0, 0, 7019, 7022, 5, 882, 0, 0, 7020, 7022, 5, 881, 0, 0, 7021, 7017, 1, 0, 0, 0, 7021, 7020, 1, 0, 0, 0, 7022, 7025, 1, 0, 0, 0, 7023, 7024, 5, 28, 0, 0, 7024, 7026, 3, 686, 343, 0, 7025, 7023, 1, 0, 0, 0, 7025, 7026, 1, 0, 0, 0, 7026, 7028, 1, 0, 0, 0, 7027, 7009, 1, 0, 0, 0, 7027, 7021, 1, 0, 0, 0, 7028, 713, 1, 0, 0, 0, 7029, 7030, 7, 114, 0, 0, 7030, 715, 1, 0, 0, 0, 7031, 7033, 5, 888, 0, 0, 7032, 7031, 1, 0, 0, 0, 7032, 7033, 1, 0, 0, 0, 7033, 7034, 1, 0, 0, 0, 7034, 7035, 5, 884, 0, 0, 7035, 717, 1, 0, 0, 0, 7036, 7038, 5, 114, 0, 0, 7037, 7036, 1, 0, 0, 0, 7037, 7038, 1, 0, 0, 0, 7038, 7039, 1, 0, 0, 0, 7039, 7040, 7, 115, 0, 0, 7040, 719, 1, 0, 0, 0, 7041, 7054, 3, 712, 356, 0, 7042, 7054, 3, 708, 354, 0, 7043, 7044, 5, 854, 0, 0, 7044, 7054, 3, 708, 354, 0, 7045, 7054, 3, 716, 358, 0, 7046, 7054, 3, 714, 357, 0, 7047, 7054, 5, 885, 0, 0, 7048, 7054, 5, 887, 0, 0, 7049, 7051, 5, 114, 0, 0, 7050, 7049, 1, 0, 0, 0, 7050, 7051, 1, 0, 0, 0, 7051, 7052, 1, 0, 0, 0, 7052, 7054, 7, 115, 0, 0, 7053, 7041, 1, 0, 0, 0, 7053, 7042, 1, 0, 0, 0, 7053, 7043, 1, 0, 0, 0, 7053, 7045, 1, 0, 0, 0, 7053, 7046, 1, 0, 0, 0, 7053, 7047, 1, 0, 0, 0, 7053, 7048, 1, 0, 0, 0, 7053, 7050, 1, 0, 0, 0, 7054, 721, 1, 0, 0, 0, 7055, 7057, 7, 116, 0, 0, 7056, 7058, 5, 240, 0, 0, 7057, 7056, 1, 0, 0, 0, 7057, 7058, 1, 0, 0, 0, 7058, 7060, 1, 0, 0, 0, 7059, 7061, 3, 728, 364, 0, 7060, 7059, 1, 0, 0, 0, 7060, 7061, 1, 0, 0, 0, 7061, 7063, 1, 0, 0, 0, 7062, 7064, 5, 228, 0, 0, 7063, 7062, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7068, 1, 0, 0, 0, 7065, 7066, 3, 54, 27, 0, 7066, 7067, 3, 684, 342, 0, 7067, 7069, 1, 0, 0, 0, 7068, 7065, 1, 0, 0, 0, 7068, 7069, 1, 0, 0, 0, 7069, 7073, 1, 0, 0, 0, 7070, 7071, 5, 28, 0, 0, 7071, 7074, 3, 686, 343, 0, 7072, 7074, 5, 228, 0, 0, 7073, 7070, 1, 0, 0, 0, 7073, 7072, 1, 0, 0, 0, 7073, 7074, 1, 0, 0, 0, 7074, 7182, 1, 0, 0, 0, 7075, 7076, 5, 227, 0, 0, 7076, 7077, 7, 117, 0, 0, 7077, 7079, 5, 240, 0, 0, 7078, 7080, 3, 728, 364, 0, 7079, 7078, 1, 0, 0, 0, 7079, 7080, 1, 0, 0, 0, 7080, 7082, 1, 0, 0, 0, 7081, 7083, 5, 228, 0, 0, 7082, 7081, 1, 0, 0, 0, 7082, 7083, 1, 0, 0, 0, 7083, 7182, 1, 0, 0, 0, 7084, 7085, 5, 227, 0, 0, 7085, 7087, 7, 118, 0, 0, 7086, 7088, 3, 728, 364, 0, 7087, 7086, 1, 0, 0, 0, 7087, 7088, 1, 0, 0, 0, 7088, 7090, 1, 0, 0, 0, 7089, 7091, 5, 228, 0, 0, 7090, 7089, 1, 0, 0, 0, 7090, 7091, 1, 0, 0, 0, 7091, 7182, 1, 0, 0, 0, 7092, 7093, 5, 498, 0, 0, 7093, 7095, 5, 225, 0, 0, 7094, 7096, 3, 728, 364, 0, 7095, 7094, 1, 0, 0, 0, 7095, 7096, 1, 0, 0, 0, 7096, 7098, 1, 0, 0, 0, 7097, 7099, 5, 228, 0, 0, 7098, 7097, 1, 0, 0, 0, 7098, 7099, 1, 0, 0, 0, 7099, 7182, 1, 0, 0, 0, 7100, 7102, 7, 119, 0, 0, 7101, 7103, 3, 728, 364, 0, 7102, 7101, 1, 0, 0, 0, 7102, 7103, 1, 0, 0, 0, 7103, 7107, 1, 0, 0, 0, 7104, 7106, 7, 120, 0, 0, 7105, 7104, 1, 0, 0, 0, 7106, 7109, 1, 0, 0, 0, 7107, 7105, 1, 0, 0, 0, 7107, 7108, 1, 0, 0, 0, 7108, 7182, 1, 0, 0, 0, 7109, 7107, 1, 0, 0, 0, 7110, 7112, 5, 210, 0, 0, 7111, 7113, 3, 730, 365, 0, 7112, 7111, 1, 0, 0, 0, 7112, 7113, 1, 0, 0, 0, 7113, 7117, 1, 0, 0, 0, 7114, 7116, 7, 120, 0, 0, 7115, 7114, 1, 0, 0, 0, 7116, 7119, 1, 0, 0, 0, 7117, 7115, 1, 0, 0, 0, 7117, 7118, 1, 0, 0, 0, 7118, 7182, 1, 0, 0, 0, 7119, 7117, 1, 0, 0, 0, 7120, 7122, 5, 211, 0, 0, 7121, 7123, 5, 212, 0, 0, 7122, 7121, 1, 0, 0, 0, 7122, 7123, 1, 0, 0, 0, 7123, 7125, 1, 0, 0, 0, 7124, 7126, 3, 730, 365, 0, 7125, 7124, 1, 0, 0, 0, 7125, 7126, 1, 0, 0, 0, 7126, 7130, 1, 0, 0, 0, 7127, 7129, 7, 120, 0, 0, 7128, 7127, 1, 0, 0, 0, 7129, 7132, 1, 0, 0, 0, 7130, 7128, 1, 0, 0, 0, 7130, 7131, 1, 0, 0, 0, 7131, 7182, 1, 0, 0, 0, 7132, 7130, 1, 0, 0, 0, 7133, 7135, 7, 121, 0, 0, 7134, 7136, 3, 732, 366, 0, 7135, 7134, 1, 0, 0, 0, 7135, 7136, 1, 0, 0, 0, 7136, 7140, 1, 0, 0, 0, 7137, 7139, 7, 120, 0, 0, 7138, 7137, 1, 0, 0, 0, 7139, 7142, 1, 0, 0, 0, 7140, 7138, 1, 0, 0, 0, 7140, 7141, 1, 0, 0, 0, 7141, 7182, 1, 0, 0, 0, 7142, 7140, 1, 0, 0, 0, 7143, 7182, 7, 122, 0, 0, 7144, 7146, 7, 123, 0, 0, 7145, 7147, 3, 728, 364, 0, 7146, 7145, 1, 0, 0, 0, 7146, 7147, 1, 0, 0, 0, 7147, 7182, 1, 0, 0, 0, 7148, 7149, 7, 124, 0, 0, 7149, 7151, 3, 724, 362, 0, 7150, 7152, 5, 228, 0, 0, 7151, 7150, 1, 0, 0, 0, 7151, 7152, 1, 0, 0, 0, 7152, 7156, 1, 0, 0, 0, 7153, 7154, 3, 54, 27, 0, 7154, 7155, 3, 684, 342, 0, 7155, 7157, 1, 0, 0, 0, 7156, 7153, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7182, 1, 0, 0, 0, 7158, 7161, 7, 125, 0, 0, 7159, 7160, 5, 834, 0, 0, 7160, 7162, 3, 708, 354, 0, 7161, 7159, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7182, 1, 0, 0, 0, 7163, 7165, 5, 233, 0, 0, 7164, 7166, 5, 225, 0, 0, 7165, 7164, 1, 0, 0, 0, 7165, 7166, 1, 0, 0, 0, 7166, 7168, 1, 0, 0, 0, 7167, 7169, 5, 228, 0, 0, 7168, 7167, 1, 0, 0, 0, 7168, 7169, 1, 0, 0, 0, 7169, 7173, 1, 0, 0, 0, 7170, 7171, 3, 54, 27, 0, 7171, 7172, 3, 684, 342, 0, 7172, 7174, 1, 0, 0, 0, 7173, 7170, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7177, 1, 0, 0, 0, 7175, 7176, 5, 28, 0, 0, 7176, 7178, 3, 686, 343, 0, 7177, 7175, 1, 0, 0, 0, 7177, 7178, 1, 0, 0, 0, 7178, 7182, 1, 0, 0, 0, 7179, 7180, 5, 233, 0, 0, 7180, 7182, 5, 229, 0, 0, 7181, 7055, 1, 0, 0, 0, 7181, 7075, 1, 0, 0, 0, 7181, 7084, 1, 0, 0, 0, 7181, 7092, 1, 0, 0, 0, 7181, 7100, 1, 0, 0, 0, 7181, 7110, 1, 0, 0, 0, 7181, 7120, 1, 0, 0, 0, 7181, 7133, 1, 0, 0, 0, 7181, 7143, 1, 0, 0, 0, 7181, 7144, 1, 0, 0, 0, 7181, 7148, 1, 0, 0, 0, 7181, 7158, 1, 0, 0, 0, 7181, 7163, 1, 0, 0, 0, 7181, 7179, 1, 0, 0, 0, 7182, 723, 1, 0, 0, 0, 7183, 7184, 5, 866, 0, 0, 7184, 7189, 5, 882, 0, 0, 7185, 7186, 5, 868, 0, 0, 7186, 7188, 5, 882, 0, 0, 7187, 7185, 1, 0, 0, 0, 7188, 7191, 1, 0, 0, 0, 7189, 7187, 1, 0, 0, 0, 7189, 7190, 1, 0, 0, 0, 7190, 7192, 1, 0, 0, 0, 7191, 7189, 1, 0, 0, 0, 7192, 7193, 5, 867, 0, 0, 7193, 725, 1, 0, 0, 0, 7194, 7196, 7, 126, 0, 0, 7195, 7197, 3, 728, 364, 0, 7196, 7195, 1, 0, 0, 0, 7196, 7197, 1, 0, 0, 0, 7197, 7217, 1, 0, 0, 0, 7198, 7200, 5, 224, 0, 0, 7199, 7201, 3, 728, 364, 0, 7200, 7199, 1, 0, 0, 0, 7200, 7201, 1, 0, 0, 0, 7201, 7205, 1, 0, 0, 0, 7202, 7203, 3, 54, 27, 0, 7203, 7204, 3, 684, 342, 0, 7204, 7206, 1, 0, 0, 0, 7205, 7202, 1, 0, 0, 0, 7205, 7206, 1, 0, 0, 0, 7206, 7217, 1, 0, 0, 0, 7207, 7217, 7, 127, 0, 0, 7208, 7210, 7, 128, 0, 0, 7209, 7211, 3, 732, 366, 0, 7210, 7209, 1, 0, 0, 0, 7210, 7211, 1, 0, 0, 0, 7211, 7217, 1, 0, 0, 0, 7212, 7214, 7, 129, 0, 0, 7213, 7215, 7, 130, 0, 0, 7214, 7213, 1, 0, 0, 0, 7214, 7215, 1, 0, 0, 0, 7215, 7217, 1, 0, 0, 0, 7216, 7194, 1, 0, 0, 0, 7216, 7198, 1, 0, 0, 0, 7216, 7207, 1, 0, 0, 0, 7216, 7208, 1, 0, 0, 0, 7216, 7212, 1, 0, 0, 0, 7217, 7219, 1, 0, 0, 0, 7218, 7220, 5, 12, 0, 0, 7219, 7218, 1, 0, 0, 0, 7219, 7220, 1, 0, 0, 0, 7220, 727, 1, 0, 0, 0, 7221, 7222, 5, 866, 0, 0, 7222, 7223, 3, 708, 354, 0, 7223, 7224, 5, 867, 0, 0, 7224, 729, 1, 0, 0, 0, 7225, 7226, 5, 866, 0, 0, 7226, 7227, 3, 708, 354, 0, 7227, 7228, 5, 868, 0, 0, 7228, 7229, 3, 708, 354, 0, 7229, 7230, 5, 867, 0, 0, 7230, 731, 1, 0, 0, 0, 7231, 7232, 5, 866, 0, 0, 7232, 7235, 3, 708, 354, 0, 7233, 7234, 5, 868, 0, 0, 7234, 7236, 3, 708, 354, 0, 7235, 7233, 1, 0, 0, 0, 7235, 7236, 1, 0, 0, 0, 7236, 7237, 1, 0, 0, 0, 7237, 7238, 5, 867, 0, 0, 7238, 733, 1, 0, 0, 0, 7239, 7240, 5, 866, 0, 0, 7240, 7245, 3, 670, 335, 0, 7241, 7242, 5, 868, 0, 0, 7242, 7244, 3, 670, 335, 0, 7243, 7241, 1, 0, 0, 0, 7244, 7247, 1, 0, 0, 0, 7245, 7243, 1, 0, 0, 0, 7245, 7246, 1, 0, 0, 0, 7246, 7248, 1, 0, 0, 0, 7247, 7245, 1, 0, 0, 0, 7248, 7249, 5, 867, 0, 0, 7249, 735, 1, 0, 0, 0, 7250, 7255, 3, 800, 400, 0, 7251, 7252, 5, 868, 0, 0, 7252, 7254, 3, 800, 400, 0, 7253, 7251, 1, 0, 0, 0, 7254, 7257, 1, 0, 0, 0, 7255, 7253, 1, 0, 0, 0, 7255, 7256, 1, 0, 0, 0, 7256, 737, 1, 0, 0, 0, 7257, 7255, 1, 0, 0, 0, 7258, 7259, 7, 131, 0, 0, 7259, 7264, 3, 740, 370, 0, 7260, 7261, 5, 868, 0, 0, 7261, 7263, 3, 740, 370, 0, 7262, 7260, 1, 0, 0, 0, 7263, 7266, 1, 0, 0, 0, 7264, 7262, 1, 0, 0, 0, 7264, 7265, 1, 0, 0, 0, 7265, 739, 1, 0, 0, 0, 7266, 7264, 1, 0, 0, 0, 7267, 7268, 5, 866, 0, 0, 7268, 7273, 3, 742, 371, 0, 7269, 7270, 5, 868, 0, 0, 7270, 7272, 3, 742, 371, 0, 7271, 7269, 1, 0, 0, 0, 7272, 7275, 1, 0, 0, 0, 7273, 7271, 1, 0, 0, 0, 7273, 7274, 1, 0, 0, 0, 7274, 7276, 1, 0, 0, 0, 7275, 7273, 1, 0, 0, 0, 7276, 7277, 5, 867, 0, 0, 7277, 741, 1, 0, 0, 0, 7278, 7281, 3, 800, 400, 0, 7279, 7281, 5, 42, 0, 0, 7280, 7278, 1, 0, 0, 0, 7280, 7279, 1, 0, 0, 0, 7281, 743, 1, 0, 0, 0, 7282, 7287, 3, 720, 360, 0, 7283, 7284, 5, 868, 0, 0, 7284, 7286, 3, 720, 360, 0, 7285, 7283, 1, 0, 0, 0, 7286, 7289, 1, 0, 0, 0, 7287, 7285, 1, 0, 0, 0, 7287, 7288, 1, 0, 0, 0, 7288, 745, 1, 0, 0, 0, 7289, 7287, 1, 0, 0, 0, 7290, 7295, 5, 882, 0, 0, 7291, 7292, 5, 868, 0, 0, 7292, 7294, 5, 882, 0, 0, 7293, 7291, 1, 0, 0, 0, 7294, 7297, 1, 0, 0, 0, 7295, 7293, 1, 0, 0, 0, 7295, 7296, 1, 0, 0, 0, 7296, 747, 1, 0, 0, 0, 7297, 7295, 1, 0, 0, 0, 7298, 7303, 5, 892, 0, 0, 7299, 7300, 5, 868, 0, 0, 7300, 7302, 5, 892, 0, 0, 7301, 7299, 1, 0, 0, 0, 7302, 7305, 1, 0, 0, 0, 7303, 7301, 1, 0, 0, 0, 7303, 7304, 1, 0, 0, 0, 7304, 749, 1, 0, 0, 0, 7305, 7303, 1, 0, 0, 0, 7306, 7333, 5, 116, 0, 0, 7307, 7308, 5, 24, 0, 0, 7308, 7309, 5, 866, 0, 0, 7309, 7310, 3, 800, 400, 0, 7310, 7311, 5, 13, 0, 0, 7311, 7312, 3, 726, 363, 0, 7312, 7313, 5, 867, 0, 0, 7313, 7333, 1, 0, 0, 0, 7314, 7316, 3, 806, 403, 0, 7315, 7314, 1, 0, 0, 0, 7315, 7316, 1, 0, 0, 0, 7316, 7317, 1, 0, 0, 0, 7317, 7333, 3, 720, 360, 0, 7318, 7322, 3, 752, 376, 0, 7319, 7320, 5, 119, 0, 0, 7320, 7321, 5, 185, 0, 0, 7321, 7323, 3, 752, 376, 0, 7322, 7319, 1, 0, 0, 0, 7322, 7323, 1, 0, 0, 0, 7323, 7333, 1, 0, 0, 0, 7324, 7325, 5, 866, 0, 0, 7325, 7326, 3, 800, 400, 0, 7326, 7327, 5, 867, 0, 0, 7327, 7333, 1, 0, 0, 0, 7328, 7329, 5, 866, 0, 0, 7329, 7330, 3, 698, 349, 0, 7330, 7331, 5, 867, 0, 0, 7331, 7333, 1, 0, 0, 0, 7332, 7306, 1, 0, 0, 0, 7332, 7307, 1, 0, 0, 0, 7332, 7315, 1, 0, 0, 0, 7332, 7318, 1, 0, 0, 0, 7332, 7324, 1, 0, 0, 0, 7332, 7328, 1, 0, 0, 0, 7333, 751, 1, 0, 0, 0, 7334, 7340, 7, 132, 0, 0, 7335, 7337, 5, 866, 0, 0, 7336, 7338, 3, 708, 354, 0, 7337, 7336, 1, 0, 0, 0, 7337, 7338, 1, 0, 0, 0, 7338, 7339, 1, 0, 0, 0, 7339, 7341, 5, 867, 0, 0, 7340, 7335, 1, 0, 0, 0, 7340, 7341, 1, 0, 0, 0, 7341, 7349, 1, 0, 0, 0, 7342, 7343, 5, 295, 0, 0, 7343, 7345, 5, 866, 0, 0, 7344, 7346, 3, 708, 354, 0, 7345, 7344, 1, 0, 0, 0, 7345, 7346, 1, 0, 0, 0, 7346, 7347, 1, 0, 0, 0, 7347, 7349, 5, 867, 0, 0, 7348, 7334, 1, 0, 0, 0, 7348, 7342, 1, 0, 0, 0, 7349, 753, 1, 0, 0, 0, 7350, 7351, 5, 78, 0, 0, 7351, 7352, 5, 60, 0, 0, 7352, 755, 1, 0, 0, 0, 7353, 7354, 5, 78, 0, 0, 7354, 7355, 5, 114, 0, 0, 7355, 7356, 5, 60, 0, 0, 7356, 757, 1, 0, 0, 0, 7357, 7358, 5, 124, 0, 0, 7358, 7359, 5, 143, 0, 0, 7359, 759, 1, 0, 0, 0, 7360, 7379, 3, 762, 381, 0, 7361, 7379, 3, 770, 385, 0, 7362, 7379, 3, 772, 386, 0, 7363, 7364, 3, 792, 396, 0, 7364, 7366, 5, 866, 0, 0, 7365, 7367, 3, 796, 398, 0, 7366, 7365, 1, 0, 0, 0, 7366, 7367, 1, 0, 0, 0, 7367, 7368, 1, 0, 0, 0, 7368, 7369, 5, 867, 0, 0, 7369, 7379, 1, 0, 0, 0, 7370, 7371, 3, 628, 314, 0, 7371, 7373, 5, 866, 0, 0, 7372, 7374, 3, 796, 398, 0, 7373, 7372, 1, 0, 0, 0, 7373, 7374, 1, 0, 0, 0, 7374, 7375, 1, 0, 0, 0, 7375, 7376, 5, 867, 0, 0, 7376, 7379, 1, 0, 0, 0, 7377, 7379, 3, 794, 397, 0, 7378, 7360, 1, 0, 0, 0, 7378, 7361, 1, 0, 0, 0, 7378, 7362, 1, 0, 0, 0, 7378, 7363, 1, 0, 0, 0, 7378, 7370, 1, 0, 0, 0, 7378, 7377, 1, 0, 0, 0, 7379, 761, 1, 0, 0, 0, 7380, 7383, 7, 133, 0, 0, 7381, 7382, 5, 866, 0, 0, 7382, 7384, 5, 867, 0, 0, 7383, 7381, 1, 0, 0, 0, 7383, 7384, 1, 0, 0, 0, 7384, 7560, 1, 0, 0, 0, 7385, 7560, 3, 56, 28, 0, 7386, 7387, 5, 33, 0, 0, 7387, 7388, 5, 866, 0, 0, 7388, 7389, 3, 800, 400, 0, 7389, 7390, 5, 868, 0, 0, 7390, 7391, 3, 726, 363, 0, 7391, 7392, 5, 867, 0, 0, 7392, 7560, 1, 0, 0, 0, 7393, 7394, 5, 33, 0, 0, 7394, 7395, 5, 866, 0, 0, 7395, 7396, 3, 800, 400, 0, 7396, 7397, 5, 188, 0, 0, 7397, 7398, 3, 684, 342, 0, 7398, 7399, 5, 867, 0, 0, 7399, 7560, 1, 0, 0, 0, 7400, 7401, 5, 24, 0, 0, 7401, 7402, 5, 866, 0, 0, 7402, 7403, 3, 800, 400, 0, 7403, 7404, 5, 13, 0, 0, 7404, 7405, 3, 726, 363, 0, 7405, 7406, 5, 867, 0, 0, 7406, 7560, 1, 0, 0, 0, 7407, 7408, 5, 189, 0, 0, 7408, 7409, 5, 866, 0, 0, 7409, 7410, 3, 658, 329, 0, 7410, 7411, 5, 867, 0, 0, 7411, 7560, 1, 0, 0, 0, 7412, 7413, 5, 23, 0, 0, 7413, 7415, 3, 800, 400, 0, 7414, 7416, 3, 764, 382, 0, 7415, 7414, 1, 0, 0, 0, 7416, 7417, 1, 0, 0, 0, 7417, 7415, 1, 0, 0, 0, 7417, 7418, 1, 0, 0, 0, 7418, 7421, 1, 0, 0, 0, 7419, 7420, 5, 53, 0, 0, 7420, 7422, 3, 798, 399, 0, 7421, 7419, 1, 0, 0, 0, 7421, 7422, 1, 0, 0, 0, 7422, 7423, 1, 0, 0, 0, 7423, 7424, 5, 378, 0, 0, 7424, 7560, 1, 0, 0, 0, 7425, 7427, 5, 23, 0, 0, 7426, 7428, 3, 764, 382, 0, 7427, 7426, 1, 0, 0, 0, 7428, 7429, 1, 0, 0, 0, 7429, 7427, 1, 0, 0, 0, 7429, 7430, 1, 0, 0, 0, 7430, 7433, 1, 0, 0, 0, 7431, 7432, 5, 53, 0, 0, 7432, 7434, 3, 798, 399, 0, 7433, 7431, 1, 0, 0, 0, 7433, 7434, 1, 0, 0, 0, 7434, 7435, 1, 0, 0, 0, 7435, 7436, 5, 378, 0, 0, 7436, 7560, 1, 0, 0, 0, 7437, 7438, 5, 224, 0, 0, 7438, 7439, 5, 866, 0, 0, 7439, 7442, 3, 796, 398, 0, 7440, 7441, 5, 188, 0, 0, 7441, 7443, 3, 684, 342, 0, 7442, 7440, 1, 0, 0, 0, 7442, 7443, 1, 0, 0, 0, 7443, 7444, 1, 0, 0, 0, 7444, 7445, 5, 867, 0, 0, 7445, 7560, 1, 0, 0, 0, 7446, 7447, 5, 296, 0, 0, 7447, 7450, 5, 866, 0, 0, 7448, 7451, 3, 712, 356, 0, 7449, 7451, 3, 800, 400, 0, 7450, 7448, 1, 0, 0, 0, 7450, 7449, 1, 0, 0, 0, 7451, 7452, 1, 0, 0, 0, 7452, 7455, 5, 80, 0, 0, 7453, 7456, 3, 712, 356, 0, 7454, 7456, 3, 800, 400, 0, 7455, 7453, 1, 0, 0, 0, 7455, 7454, 1, 0, 0, 0, 7456, 7457, 1, 0, 0, 0, 7457, 7458, 5, 867, 0, 0, 7458, 7560, 1, 0, 0, 0, 7459, 7460, 7, 134, 0, 0, 7460, 7463, 5, 866, 0, 0, 7461, 7464, 3, 712, 356, 0, 7462, 7464, 3, 800, 400, 0, 7463, 7461, 1, 0, 0, 0, 7463, 7462, 1, 0, 0, 0, 7464, 7465, 1, 0, 0, 0, 7465, 7468, 5, 68, 0, 0, 7466, 7469, 3, 708, 354, 0, 7467, 7469, 3, 800, 400, 0, 7468, 7466, 1, 0, 0, 0, 7468, 7467, 1, 0, 0, 0, 7469, 7475, 1, 0, 0, 0, 7470, 7473, 5, 65, 0, 0, 7471, 7474, 3, 708, 354, 0, 7472, 7474, 3, 800, 400, 0, 7473, 7471, 1, 0, 0, 0, 7473, 7472, 1, 0, 0, 0, 7474, 7476, 1, 0, 0, 0, 7475, 7470, 1, 0, 0, 0, 7475, 7476, 1, 0, 0, 0, 7476, 7477, 1, 0, 0, 0, 7477, 7478, 5, 867, 0, 0, 7478, 7560, 1, 0, 0, 0, 7479, 7480, 5, 300, 0, 0, 7480, 7481, 5, 866, 0, 0, 7481, 7484, 7, 135, 0, 0, 7482, 7485, 3, 712, 356, 0, 7483, 7485, 3, 800, 400, 0, 7484, 7482, 1, 0, 0, 0, 7484, 7483, 1, 0, 0, 0, 7484, 7485, 1, 0, 0, 0, 7485, 7486, 1, 0, 0, 0, 7486, 7489, 5, 68, 0, 0, 7487, 7490, 3, 712, 356, 0, 7488, 7490, 3, 800, 400, 0, 7489, 7487, 1, 0, 0, 0, 7489, 7488, 1, 0, 0, 0, 7490, 7491, 1, 0, 0, 0, 7491, 7492, 5, 867, 0, 0, 7492, 7560, 1, 0, 0, 0, 7493, 7494, 5, 300, 0, 0, 7494, 7497, 5, 866, 0, 0, 7495, 7498, 3, 712, 356, 0, 7496, 7498, 3, 800, 400, 0, 7497, 7495, 1, 0, 0, 0, 7497, 7496, 1, 0, 0, 0, 7498, 7499, 1, 0, 0, 0, 7499, 7502, 5, 68, 0, 0, 7500, 7503, 3, 712, 356, 0, 7501, 7503, 3, 800, 400, 0, 7502, 7500, 1, 0, 0, 0, 7502, 7501, 1, 0, 0, 0, 7503, 7504, 1, 0, 0, 0, 7504, 7505, 5, 867, 0, 0, 7505, 7560, 1, 0, 0, 0, 7506, 7507, 5, 840, 0, 0, 7507, 7510, 5, 866, 0, 0, 7508, 7511, 3, 712, 356, 0, 7509, 7511, 3, 800, 400, 0, 7510, 7508, 1, 0, 0, 0, 7510, 7509, 1, 0, 0, 0, 7511, 7518, 1, 0, 0, 0, 7512, 7513, 5, 13, 0, 0, 7513, 7514, 7, 136, 0, 0, 7514, 7515, 5, 866, 0, 0, 7515, 7516, 3, 708, 354, 0, 7516, 7517, 5, 867, 0, 0, 7517, 7519, 1, 0, 0, 0, 7518, 7512, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7521, 1, 0, 0, 0, 7520, 7522, 3, 766, 383, 0, 7521, 7520, 1, 0, 0, 0, 7521, 7522, 1, 0, 0, 0, 7522, 7523, 1, 0, 0, 0, 7523, 7524, 5, 867, 0, 0, 7524, 7560, 1, 0, 0, 0, 7525, 7526, 5, 293, 0, 0, 7526, 7527, 5, 866, 0, 0, 7527, 7528, 3, 66, 33, 0, 7528, 7531, 5, 68, 0, 0, 7529, 7532, 3, 712, 356, 0, 7530, 7532, 3, 800, 400, 0, 7531, 7529, 1, 0, 0, 0, 7531, 7530, 1, 0, 0, 0, 7532, 7533, 1, 0, 0, 0, 7533, 7534, 5, 867, 0, 0, 7534, 7560, 1, 0, 0, 0, 7535, 7536, 5, 827, 0, 0, 7536, 7537, 5, 866, 0, 0, 7537, 7538, 7, 137, 0, 0, 7538, 7539, 5, 868, 0, 0, 7539, 7540, 3, 712, 356, 0, 7540, 7541, 5, 867, 0, 0, 7541, 7560, 1, 0, 0, 0, 7542, 7543, 5, 254, 0, 0, 7543, 7544, 5, 866, 0, 0, 7544, 7545, 3, 800, 400, 0, 7545, 7546, 5, 868, 0, 0, 7546, 7549, 3, 800, 400, 0, 7547, 7548, 5, 579, 0, 0, 7548, 7550, 3, 726, 363, 0, 7549, 7547, 1, 0, 0, 0, 7549, 7550, 1, 0, 0, 0, 7550, 7552, 1, 0, 0, 0, 7551, 7553, 3, 286, 143, 0, 7552, 7551, 1, 0, 0, 0, 7552, 7553, 1, 0, 0, 0, 7553, 7555, 1, 0, 0, 0, 7554, 7556, 3, 288, 144, 0, 7555, 7554, 1, 0, 0, 0, 7555, 7556, 1, 0, 0, 0, 7556, 7557, 1, 0, 0, 0, 7557, 7558, 5, 867, 0, 0, 7558, 7560, 1, 0, 0, 0, 7559, 7380, 1, 0, 0, 0, 7559, 7385, 1, 0, 0, 0, 7559, 7386, 1, 0, 0, 0, 7559, 7393, 1, 0, 0, 0, 7559, 7400, 1, 0, 0, 0, 7559, 7407, 1, 0, 0, 0, 7559, 7412, 1, 0, 0, 0, 7559, 7425, 1, 0, 0, 0, 7559, 7437, 1, 0, 0, 0, 7559, 7446, 1, 0, 0, 0, 7559, 7459, 1, 0, 0, 0, 7559, 7479, 1, 0, 0, 0, 7559, 7493, 1, 0, 0, 0, 7559, 7506, 1, 0, 0, 0, 7559, 7525, 1, 0, 0, 0, 7559, 7535, 1, 0, 0, 0, 7559, 7542, 1, 0, 0, 0, 7560, 763, 1, 0, 0, 0, 7561, 7562, 5, 191, 0, 0, 7562, 7563, 3, 798, 399, 0, 7563, 7564, 5, 175, 0, 0, 7564, 7565, 3, 798, 399, 0, 7565, 765, 1, 0, 0, 0, 7566, 7567, 5, 448, 0, 0, 7567, 7572, 3, 768, 384, 0, 7568, 7569, 5, 868, 0, 0, 7569, 7571, 3, 768, 384, 0, 7570, 7568, 1, 0, 0, 0, 7571, 7574, 1, 0, 0, 0, 7572, 7570, 1, 0, 0, 0, 7572, 7573, 1, 0, 0, 0, 7573, 7581, 1, 0, 0, 0, 7574, 7572, 1, 0, 0, 0, 7575, 7576, 5, 448, 0, 0, 7576, 7577, 3, 708, 354, 0, 7577, 7578, 5, 854, 0, 0, 7578, 7579, 3, 708, 354, 0, 7579, 7581, 1, 0, 0, 0, 7580, 7566, 1, 0, 0, 0, 7580, 7575, 1, 0, 0, 0, 7581, 767, 1, 0, 0, 0, 7582, 7584, 3, 708, 354, 0, 7583, 7585, 7, 138, 0, 0, 7584, 7583, 1, 0, 0, 0, 7584, 7585, 1, 0, 0, 0, 7585, 769, 1, 0, 0, 0, 7586, 7587, 7, 139, 0, 0, 7587, 7589, 5, 866, 0, 0, 7588, 7590, 7, 44, 0, 0, 7589, 7588, 1, 0, 0, 0, 7589, 7590, 1, 0, 0, 0, 7590, 7591, 1, 0, 0, 0, 7591, 7592, 3, 798, 399, 0, 7592, 7594, 5, 867, 0, 0, 7593, 7595, 3, 774, 387, 0, 7594, 7593, 1, 0, 0, 0, 7594, 7595, 1, 0, 0, 0, 7595, 7646, 1, 0, 0, 0, 7596, 7597, 5, 262, 0, 0, 7597, 7605, 5, 866, 0, 0, 7598, 7606, 5, 850, 0, 0, 7599, 7601, 5, 7, 0, 0, 7600, 7599, 1, 0, 0, 0, 7600, 7601, 1, 0, 0, 0, 7601, 7602, 1, 0, 0, 0, 7602, 7606, 3, 798, 399, 0, 7603, 7604, 5, 49, 0, 0, 7604, 7606, 3, 796, 398, 0, 7605, 7598, 1, 0, 0, 0, 7605, 7600, 1, 0, 0, 0, 7605, 7603, 1, 0, 0, 0, 7606, 7607, 1, 0, 0, 0, 7607, 7609, 5, 867, 0, 0, 7608, 7610, 3, 774, 387, 0, 7609, 7608, 1, 0, 0, 0, 7609, 7610, 1, 0, 0, 0, 7610, 7646, 1, 0, 0, 0, 7611, 7612, 7, 140, 0, 0, 7612, 7614, 5, 866, 0, 0, 7613, 7615, 5, 7, 0, 0, 7614, 7613, 1, 0, 0, 0, 7614, 7615, 1, 0, 0, 0, 7615, 7616, 1, 0, 0, 0, 7616, 7617, 3, 798, 399, 0, 7617, 7619, 5, 867, 0, 0, 7618, 7620, 3, 774, 387, 0, 7619, 7618, 1, 0, 0, 0, 7619, 7620, 1, 0, 0, 0, 7620, 7646, 1, 0, 0, 0, 7621, 7622, 5, 266, 0, 0, 7622, 7624, 5, 866, 0, 0, 7623, 7625, 5, 49, 0, 0, 7624, 7623, 1, 0, 0, 0, 7624, 7625, 1, 0, 0, 0, 7625, 7626, 1, 0, 0, 0, 7626, 7637, 3, 796, 398, 0, 7627, 7628, 5, 125, 0, 0, 7628, 7629, 5, 20, 0, 0, 7629, 7634, 3, 254, 127, 0, 7630, 7631, 5, 868, 0, 0, 7631, 7633, 3, 254, 127, 0, 7632, 7630, 1, 0, 0, 0, 7633, 7636, 1, 0, 0, 0, 7634, 7632, 1, 0, 0, 0, 7634, 7635, 1, 0, 0, 0, 7635, 7638, 1, 0, 0, 0, 7636, 7634, 1, 0, 0, 0, 7637, 7627, 1, 0, 0, 0, 7637, 7638, 1, 0, 0, 0, 7638, 7641, 1, 0, 0, 0, 7639, 7640, 5, 156, 0, 0, 7640, 7642, 5, 882, 0, 0, 7641, 7639, 1, 0, 0, 0, 7641, 7642, 1, 0, 0, 0, 7642, 7643, 1, 0, 0, 0, 7643, 7644, 5, 867, 0, 0, 7644, 7646, 1, 0, 0, 0, 7645, 7586, 1, 0, 0, 0, 7645, 7596, 1, 0, 0, 0, 7645, 7611, 1, 0, 0, 0, 7645, 7621, 1, 0, 0, 0, 7646, 771, 1, 0, 0, 0, 7647, 7648, 7, 141, 0, 0, 7648, 7649, 5, 866, 0, 0, 7649, 7652, 3, 800, 400, 0, 7650, 7651, 5, 868, 0, 0, 7651, 7653, 3, 708, 354, 0, 7652, 7650, 1, 0, 0, 0, 7652, 7653, 1, 0, 0, 0, 7653, 7656, 1, 0, 0, 0, 7654, 7655, 5, 868, 0, 0, 7655, 7657, 3, 708, 354, 0, 7656, 7654, 1, 0, 0, 0, 7656, 7657, 1, 0, 0, 0, 7657, 7658, 1, 0, 0, 0, 7658, 7659, 5, 867, 0, 0, 7659, 7660, 3, 774, 387, 0, 7660, 7686, 1, 0, 0, 0, 7661, 7662, 7, 142, 0, 0, 7662, 7663, 5, 866, 0, 0, 7663, 7664, 3, 800, 400, 0, 7664, 7665, 5, 867, 0, 0, 7665, 7666, 3, 774, 387, 0, 7666, 7686, 1, 0, 0, 0, 7667, 7668, 7, 143, 0, 0, 7668, 7669, 5, 866, 0, 0, 7669, 7670, 5, 867, 0, 0, 7670, 7686, 3, 774, 387, 0, 7671, 7672, 5, 273, 0, 0, 7672, 7673, 5, 866, 0, 0, 7673, 7674, 3, 800, 400, 0, 7674, 7675, 5, 868, 0, 0, 7675, 7676, 3, 708, 354, 0, 7676, 7677, 5, 867, 0, 0, 7677, 7678, 3, 774, 387, 0, 7678, 7686, 1, 0, 0, 0, 7679, 7680, 5, 272, 0, 0, 7680, 7681, 5, 866, 0, 0, 7681, 7682, 3, 708, 354, 0, 7682, 7683, 5, 867, 0, 0, 7683, 7684, 3, 774, 387, 0, 7684, 7686, 1, 0, 0, 0, 7685, 7647, 1, 0, 0, 0, 7685, 7661, 1, 0, 0, 0, 7685, 7667, 1, 0, 0, 0, 7685, 7671, 1, 0, 0, 0, 7685, 7679, 1, 0, 0, 0, 7686, 773, 1, 0, 0, 0, 7687, 7693, 5, 129, 0, 0, 7688, 7689, 5, 866, 0, 0, 7689, 7690, 3, 776, 388, 0, 7690, 7691, 5, 867, 0, 0, 7691, 7694, 1, 0, 0, 0, 7692, 7694, 3, 778, 389, 0, 7693, 7688, 1, 0, 0, 0, 7693, 7692, 1, 0, 0, 0, 7694, 775, 1, 0, 0, 0, 7695, 7697, 3, 778, 389, 0, 7696, 7695, 1, 0, 0, 0, 7696, 7697, 1, 0, 0, 0, 7697, 7699, 1, 0, 0, 0, 7698, 7700, 3, 790, 395, 0, 7699, 7698, 1, 0, 0, 0, 7699, 7700, 1, 0, 0, 0, 7700, 7702, 1, 0, 0, 0, 7701, 7703, 3, 252, 126, 0, 7702, 7701, 1, 0, 0, 0, 7702, 7703, 1, 0, 0, 0, 7703, 7705, 1, 0, 0, 0, 7704, 7706, 3, 780, 390, 0, 7705, 7704, 1, 0, 0, 0, 7705, 7706, 1, 0, 0, 0, 7706, 777, 1, 0, 0, 0, 7707, 7708, 3, 702, 351, 0, 7708, 779, 1, 0, 0, 0, 7709, 7710, 3, 782, 391, 0, 7710, 7711, 3, 784, 392, 0, 7711, 781, 1, 0, 0, 0, 7712, 7713, 7, 144, 0, 0, 7713, 783, 1, 0, 0, 0, 7714, 7717, 3, 788, 394, 0, 7715, 7717, 3, 786, 393, 0, 7716, 7714, 1, 0, 0, 0, 7716, 7715, 1, 0, 0, 0, 7717, 785, 1, 0, 0, 0, 7718, 7719, 5, 17, 0, 0, 7719, 7720, 3, 788, 394, 0, 7720, 7721, 5, 11, 0, 0, 7721, 7722, 3, 788, 394, 0, 7722, 787, 1, 0, 0, 0, 7723, 7724, 5, 36, 0, 0, 7724, 7731, 5, 586, 0, 0, 7725, 7726, 5, 669, 0, 0, 7726, 7731, 7, 145, 0, 0, 7727, 7728, 3, 800, 400, 0, 7728, 7729, 7, 145, 0, 0, 7729, 7731, 1, 0, 0, 0, 7730, 7723, 1, 0, 0, 0, 7730, 7725, 1, 0, 0, 0, 7730, 7727, 1, 0, 0, 0, 7731, 789, 1, 0, 0, 0, 7732, 7733, 5, 130, 0, 0, 7733, 7734, 5, 20, 0, 0, 7734, 7739, 3, 800, 400, 0, 7735, 7736, 5, 868, 0, 0, 7736, 7738, 3, 800, 400, 0, 7737, 7735, 1, 0, 0, 0, 7738, 7741, 1, 0, 0, 0, 7739, 7737, 1, 0, 0, 0, 7739, 7740, 1, 0, 0, 0, 7740, 791, 1, 0, 0, 0, 7741, 7739, 1, 0, 0, 0, 7742, 7767, 3, 832, 416, 0, 7743, 7767, 5, 757, 0, 0, 7744, 7767, 5, 289, 0, 0, 7745, 7767, 5, 285, 0, 0, 7746, 7767, 5, 286, 0, 0, 7747, 7767, 5, 287, 0, 0, 7748, 7767, 5, 290, 0, 0, 7749, 7767, 5, 291, 0, 0, 7750, 7767, 5, 292, 0, 0, 7751, 7767, 5, 78, 0, 0, 7752, 7767, 5, 86, 0, 0, 7753, 7767, 5, 288, 0, 0, 7754, 7767, 5, 294, 0, 0, 7755, 7767, 5, 488, 0, 0, 7756, 7767, 5, 295, 0, 0, 7757, 7767, 5, 142, 0, 0, 7758, 7767, 5, 143, 0, 0, 7759, 7767, 5, 297, 0, 0, 7760, 7767, 5, 298, 0, 0, 7761, 7767, 5, 299, 0, 0, 7762, 7767, 5, 300, 0, 0, 7763, 7767, 5, 301, 0, 0, 7764, 7767, 5, 302, 0, 0, 7765, 7767, 5, 303, 0, 0, 7766, 7742, 1, 0, 0, 0, 7766, 7743, 1, 0, 0, 0, 7766, 7744, 1, 0, 0, 0, 7766, 7745, 1, 0, 0, 0, 7766, 7746, 1, 0, 0, 0, 7766, 7747, 1, 0, 0, 0, 7766, 7748, 1, 0, 0, 0, 7766, 7749, 1, 0, 0, 0, 7766, 7750, 1, 0, 0, 0, 7766, 7751, 1, 0, 0, 0, 7766, 7752, 1, 0, 0, 0, 7766, 7753, 1, 0, 0, 0, 7766, 7754, 1, 0, 0, 0, 7766, 7755, 1, 0, 0, 0, 7766, 7756, 1, 0, 0, 0, 7766, 7757, 1, 0, 0, 0, 7766, 7758, 1, 0, 0, 0, 7766, 7759, 1, 0, 0, 0, 7766, 7760, 1, 0, 0, 0, 7766, 7761, 1, 0, 0, 0, 7766, 7762, 1, 0, 0, 0, 7766, 7763, 1, 0, 0, 0, 7766, 7764, 1, 0, 0, 0, 7766, 7765, 1, 0, 0, 0, 7767, 793, 1, 0, 0, 0, 7768, 7769, 7, 146, 0, 0, 7769, 7770, 5, 866, 0, 0, 7770, 7771, 3, 798, 399, 0, 7771, 7772, 5, 867, 0, 0, 7772, 795, 1, 0, 0, 0, 7773, 7778, 3, 798, 399, 0, 7774, 7775, 5, 868, 0, 0, 7775, 7777, 3, 798, 399, 0, 7776, 7774, 1, 0, 0, 0, 7777, 7780, 1, 0, 0, 0, 7778, 7776, 1, 0, 0, 0, 7778, 7779, 1, 0, 0, 0, 7779, 797, 1, 0, 0, 0, 7780, 7778, 1, 0, 0, 0, 7781, 7786, 3, 720, 360, 0, 7782, 7786, 3, 658, 329, 0, 7783, 7786, 3, 760, 380, 0, 7784, 7786, 3, 800, 400, 0, 7785, 7781, 1, 0, 0, 0, 7785, 7782, 1, 0, 0, 0, 7785, 7783, 1, 0, 0, 0, 7785, 7784, 1, 0, 0, 0, 7786, 799, 1, 0, 0, 0, 7787, 7788, 6, 400, -1, 0, 7788, 7789, 7, 147, 0, 0, 7789, 7799, 3, 800, 400, 4, 7790, 7791, 3, 802, 401, 0, 7791, 7793, 5, 89, 0, 0, 7792, 7794, 5, 114, 0, 0, 7793, 7792, 1, 0, 0, 0, 7793, 7794, 1, 0, 0, 0, 7794, 7795, 1, 0, 0, 0, 7795, 7796, 7, 148, 0, 0, 7796, 7799, 1, 0, 0, 0, 7797, 7799, 3, 802, 401, 0, 7798, 7787, 1, 0, 0, 0, 7798, 7790, 1, 0, 0, 0, 7798, 7797, 1, 0, 0, 0, 7799, 7806, 1, 0, 0, 0, 7800, 7801, 10, 3, 0, 0, 7801, 7802, 3, 812, 406, 0, 7802, 7803, 3, 800, 400, 4, 7803, 7805, 1, 0, 0, 0, 7804, 7800, 1, 0, 0, 0, 7805, 7808, 1, 0, 0, 0, 7806, 7804, 1, 0, 0, 0, 7806, 7807, 1, 0, 0, 0, 7807, 801, 1, 0, 0, 0, 7808, 7806, 1, 0, 0, 0, 7809, 7810, 6, 401, -1, 0, 7810, 7811, 3, 804, 402, 0, 7811, 7876, 1, 0, 0, 0, 7812, 7813, 10, 8, 0, 0, 7813, 7814, 3, 808, 404, 0, 7814, 7815, 3, 802, 401, 9, 7815, 7875, 1, 0, 0, 0, 7816, 7818, 10, 6, 0, 0, 7817, 7819, 5, 114, 0, 0, 7818, 7817, 1, 0, 0, 0, 7818, 7819, 1, 0, 0, 0, 7819, 7820, 1, 0, 0, 0, 7820, 7821, 5, 17, 0, 0, 7821, 7822, 3, 802, 401, 0, 7822, 7823, 5, 11, 0, 0, 7823, 7824, 3, 802, 401, 7, 7824, 7875, 1, 0, 0, 0, 7825, 7826, 10, 5, 0, 0, 7826, 7827, 5, 604, 0, 0, 7827, 7828, 5, 99, 0, 0, 7828, 7875, 3, 802, 401, 6, 7829, 7831, 10, 3, 0, 0, 7830, 7832, 5, 114, 0, 0, 7831, 7830, 1, 0, 0, 0, 7831, 7832, 1, 0, 0, 0, 7832, 7833, 1, 0, 0, 0, 7833, 7834, 7, 149, 0, 0, 7834, 7875, 3, 802, 401, 4, 7835, 7837, 10, 10, 0, 0, 7836, 7838, 5, 114, 0, 0, 7837, 7836, 1, 0, 0, 0, 7837, 7838, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 7840, 5, 80, 0, 0, 7840, 7843, 5, 866, 0, 0, 7841, 7844, 3, 204, 102, 0, 7842, 7844, 3, 736, 368, 0, 7843, 7841, 1, 0, 0, 0, 7843, 7842, 1, 0, 0, 0, 7844, 7845, 1, 0, 0, 0, 7845, 7846, 5, 867, 0, 0, 7846, 7875, 1, 0, 0, 0, 7847, 7848, 10, 9, 0, 0, 7848, 7849, 5, 89, 0, 0, 7849, 7875, 3, 718, 359, 0, 7850, 7851, 10, 7, 0, 0, 7851, 7852, 3, 808, 404, 0, 7852, 7853, 7, 150, 0, 0, 7853, 7854, 5, 866, 0, 0, 7854, 7855, 3, 204, 102, 0, 7855, 7856, 5, 867, 0, 0, 7856, 7875, 1, 0, 0, 0, 7857, 7859, 10, 4, 0, 0, 7858, 7860, 5, 114, 0, 0, 7859, 7858, 1, 0, 0, 0, 7859, 7860, 1, 0, 0, 0, 7860, 7861, 1, 0, 0, 0, 7861, 7862, 5, 99, 0, 0, 7862, 7865, 3, 802, 401, 0, 7863, 7864, 5, 384, 0, 0, 7864, 7866, 5, 882, 0, 0, 7865, 7863, 1, 0, 0, 0, 7865, 7866, 1, 0, 0, 0, 7866, 7875, 1, 0, 0, 0, 7867, 7868, 10, 2, 0, 0, 7868, 7869, 5, 485, 0, 0, 7869, 7870, 5, 510, 0, 0, 7870, 7871, 5, 866, 0, 0, 7871, 7872, 3, 802, 401, 0, 7872, 7873, 5, 867, 0, 0, 7873, 7875, 1, 0, 0, 0, 7874, 7812, 1, 0, 0, 0, 7874, 7816, 1, 0, 0, 0, 7874, 7825, 1, 0, 0, 0, 7874, 7829, 1, 0, 0, 0, 7874, 7835, 1, 0, 0, 0, 7874, 7847, 1, 0, 0, 0, 7874, 7850, 1, 0, 0, 0, 7874, 7857, 1, 0, 0, 0, 7874, 7867, 1, 0, 0, 0, 7875, 7878, 1, 0, 0, 0, 7876, 7874, 1, 0, 0, 0, 7876, 7877, 1, 0, 0, 0, 7877, 803, 1, 0, 0, 0, 7878, 7876, 1, 0, 0, 0, 7879, 7880, 6, 402, -1, 0, 7880, 7928, 3, 720, 360, 0, 7881, 7928, 3, 658, 329, 0, 7882, 7928, 3, 760, 380, 0, 7883, 7928, 3, 682, 341, 0, 7884, 7885, 3, 806, 403, 0, 7885, 7886, 3, 804, 402, 11, 7886, 7928, 1, 0, 0, 0, 7887, 7888, 5, 228, 0, 0, 7888, 7928, 3, 804, 402, 10, 7889, 7890, 5, 892, 0, 0, 7890, 7891, 5, 841, 0, 0, 7891, 7928, 3, 804, 402, 9, 7892, 7893, 5, 866, 0, 0, 7893, 7898, 3, 800, 400, 0, 7894, 7895, 5, 868, 0, 0, 7895, 7897, 3, 800, 400, 0, 7896, 7894, 1, 0, 0, 0, 7897, 7900, 1, 0, 0, 0, 7898, 7896, 1, 0, 0, 0, 7898, 7899, 1, 0, 0, 0, 7899, 7901, 1, 0, 0, 0, 7900, 7898, 1, 0, 0, 0, 7901, 7902, 5, 867, 0, 0, 7902, 7928, 1, 0, 0, 0, 7903, 7904, 5, 586, 0, 0, 7904, 7905, 5, 866, 0, 0, 7905, 7908, 3, 800, 400, 0, 7906, 7907, 5, 868, 0, 0, 7907, 7909, 3, 800, 400, 0, 7908, 7906, 1, 0, 0, 0, 7909, 7910, 1, 0, 0, 0, 7910, 7908, 1, 0, 0, 0, 7910, 7911, 1, 0, 0, 0, 7911, 7912, 1, 0, 0, 0, 7912, 7913, 5, 867, 0, 0, 7913, 7928, 1, 0, 0, 0, 7914, 7915, 5, 60, 0, 0, 7915, 7916, 5, 866, 0, 0, 7916, 7917, 3, 204, 102, 0, 7917, 7918, 5, 867, 0, 0, 7918, 7928, 1, 0, 0, 0, 7919, 7920, 5, 866, 0, 0, 7920, 7921, 3, 204, 102, 0, 7921, 7922, 5, 867, 0, 0, 7922, 7928, 1, 0, 0, 0, 7923, 7924, 5, 87, 0, 0, 7924, 7925, 3, 800, 400, 0, 7925, 7926, 3, 66, 33, 0, 7926, 7928, 1, 0, 0, 0, 7927, 7879, 1, 0, 0, 0, 7927, 7881, 1, 0, 0, 0, 7927, 7882, 1, 0, 0, 0, 7927, 7883, 1, 0, 0, 0, 7927, 7884, 1, 0, 0, 0, 7927, 7887, 1, 0, 0, 0, 7927, 7889, 1, 0, 0, 0, 7927, 7892, 1, 0, 0, 0, 7927, 7903, 1, 0, 0, 0, 7927, 7914, 1, 0, 0, 0, 7927, 7919, 1, 0, 0, 0, 7927, 7923, 1, 0, 0, 0, 7928, 7946, 1, 0, 0, 0, 7929, 7930, 10, 3, 0, 0, 7930, 7931, 3, 814, 407, 0, 7931, 7932, 3, 804, 402, 4, 7932, 7945, 1, 0, 0, 0, 7933, 7934, 10, 2, 0, 0, 7934, 7935, 3, 816, 408, 0, 7935, 7936, 3, 804, 402, 3, 7936, 7945, 1, 0, 0, 0, 7937, 7938, 10, 1, 0, 0, 7938, 7939, 3, 818, 409, 0, 7939, 7940, 3, 804, 402, 2, 7940, 7945, 1, 0, 0, 0, 7941, 7942, 10, 13, 0, 0, 7942, 7943, 5, 28, 0, 0, 7943, 7945, 3, 686, 343, 0, 7944, 7929, 1, 0, 0, 0, 7944, 7933, 1, 0, 0, 0, 7944, 7937, 1, 0, 0, 0, 7944, 7941, 1, 0, 0, 0, 7945, 7948, 1, 0, 0, 0, 7946, 7944, 1, 0, 0, 0, 7946, 7947, 1, 0, 0, 0, 7947, 805, 1, 0, 0, 0, 7948, 7946, 1, 0, 0, 0, 7949, 7950, 7, 151, 0, 0, 7950, 807, 1, 0, 0, 0, 7951, 7960, 3, 810, 405, 0, 7952, 7953, 5, 859, 0, 0, 7953, 7960, 5, 858, 0, 0, 7954, 7955, 5, 860, 0, 0, 7955, 7960, 5, 857, 0, 0, 7956, 7957, 5, 859, 0, 0, 7957, 7958, 5, 857, 0, 0, 7958, 7960, 5, 858, 0, 0, 7959, 7951, 1, 0, 0, 0, 7959, 7952, 1, 0, 0, 0, 7959, 7954, 1, 0, 0, 0, 7959, 7956, 1, 0, 0, 0, 7960, 809, 1, 0, 0, 0, 7961, 7969, 5, 857, 0, 0, 7962, 7969, 5, 858, 0, 0, 7963, 7969, 5, 859, 0, 0, 7964, 7965, 5, 859, 0, 0, 7965, 7969, 5, 857, 0, 0, 7966, 7967, 5, 858, 0, 0, 7967, 7969, 5, 857, 0, 0, 7968, 7961, 1, 0, 0, 0, 7968, 7962, 1, 0, 0, 0, 7968, 7963, 1, 0, 0, 0, 7968, 7964, 1, 0, 0, 0, 7968, 7966, 1, 0, 0, 0, 7969, 811, 1, 0, 0, 0, 7970, 7978, 5, 11, 0, 0, 7971, 7972, 5, 863, 0, 0, 7972, 7978, 5, 863, 0, 0, 7973, 7978, 5, 196, 0, 0, 7974, 7978, 5, 124, 0, 0, 7975, 7976, 5, 862, 0, 0, 7976, 7978, 5, 862, 0, 0, 7977, 7970, 1, 0, 0, 0, 7977, 7971, 1, 0, 0, 0, 7977, 7973, 1, 0, 0, 0, 7977, 7974, 1, 0, 0, 0, 7977, 7975, 1, 0, 0, 0, 7978, 813, 1, 0, 0, 0, 7979, 7980, 5, 859, 0, 0, 7980, 7987, 5, 859, 0, 0, 7981, 7982, 5, 858, 0, 0, 7982, 7987, 5, 858, 0, 0, 7983, 7987, 5, 863, 0, 0, 7984, 7987, 5, 864, 0, 0, 7985, 7987, 5, 862, 0, 0, 7986, 7979, 1, 0, 0, 0, 7986, 7981, 1, 0, 0, 0, 7986, 7983, 1, 0, 0, 0, 7986, 7984, 1, 0, 0, 0, 7986, 7985, 1, 0, 0, 0, 7987, 815, 1, 0, 0, 0, 7988, 7989, 7, 152, 0, 0, 7989, 817, 1, 0, 0, 0, 7990, 7991, 5, 854, 0, 0, 7991, 7996, 5, 858, 0, 0, 7992, 7993, 5, 854, 0, 0, 7993, 7994, 5, 858, 0, 0, 7994, 7996, 5, 858, 0, 0, 7995, 7990, 1, 0, 0, 0, 7995, 7992, 1, 0, 0, 0, 7996, 819, 1, 0, 0, 0, 7997, 7998, 7, 153, 0, 0, 7998, 821, 1, 0, 0, 0, 7999, 8000, 7, 154, 0, 0, 8000, 823, 1, 0, 0, 0, 8001, 8002, 7, 155, 0, 0, 8002, 825, 1, 0, 0, 0, 8003, 8004, 7, 156, 0, 0, 8004, 827, 1, 0, 0, 0, 8005, 8006, 7, 157, 0, 0, 8006, 829, 1, 0, 0, 0, 8007, 8008, 7, 158, 0, 0, 8008, 831, 1, 0, 0, 0, 8009, 8010, 7, 159, 0, 0, 8010, 833, 1, 0, 0, 0, 1152, 837, 844, 847, 856, 899, 918, 929, 945, 950, 962, 997, 1007, 1012, 1018, 1023, 1027, 1036, 1039, 1042, 1046, 1053, 1056, 1061, 1069, 1074, 1079, 1082, 1084, 1096, 1099, 1103, 1106, 1110, 1113, 1117, 1120, 1123, 1127, 1130, 1134, 1140, 1144, 1149, 1155, 1162, 1170, 1188, 1195, 1199, 1205, 1210, 1213, 1216, 1220, 1224, 1228, 1232, 1237, 1240, 1243, 1246, 1249, 1255, 1259, 1269, 1271, 1275, 1282, 1286, 1289, 1294, 1298, 1301, 1305, 1308, 1312, 1325, 1328, 1332, 1335, 1339, 1342, 1346, 1349, 1353, 1356, 1359, 1363, 1366, 1370, 1376, 1380, 1392, 1398, 1409, 1414, 1422, 1426, 1431, 1434, 1439, 1447, 1452, 1458, 1463, 1467, 1469, 1472, 1476, 1480, 1483, 1487, 1491, 1495, 1501, 1504, 1511, 1516, 1522, 1529, 1535, 1543, 1546, 1553, 1556, 1558, 1564, 1570, 1587, 1594, 1601, 1613, 1618, 1621, 1624, 1634, 1647, 1652, 1668, 1676, 1686, 1689, 1695, 1700, 1703, 1709, 1713, 1718, 1724, 1728, 1732, 1735, 1738, 1744, 1748, 1753, 1764, 1767, 1774, 1777, 1781, 1787, 1799, 1802, 1807, 1820, 1827, 1833, 1838, 1842, 1845, 1853, 1861, 1863, 1873, 1877, 1880, 1884, 1889, 1894, 1899, 1903, 1907, 1911, 1915, 1919, 1923, 1928, 1933, 1938, 1944, 1949, 1954, 1959, 1964, 1969, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2017, 2022, 2027, 2032, 2036, 2041, 2049, 2054, 2060, 2072, 2079, 2081, 2089, 2094, 2097, 2105, 2111, 2115, 2128, 2140, 2142, 2145, 2153, 2159, 2165, 2178, 2185, 2194, 2199, 2210, 2219, 2224, 2236, 2243, 2252, 2257, 2269, 2276, 2285, 2290, 2297, 2306, 2311, 2313, 2318, 2326, 2335, 2339, 2342, 2346, 2351, 2357, 2363, 2368, 2373, 2378, 2383, 2386, 2391, 2396, 2406, 2410, 2417, 2422, 2425, 2430, 2433, 2437, 2441, 2449, 2468, 2471, 2474, 2478, 2488, 2501, 2514, 2517, 2523, 2526, 2530, 2539, 2542, 2545, 2550, 2554, 2557, 2561, 2565, 2568, 2572, 2575, 2579, 2582, 2588, 2591, 2596, 2604, 2610, 2614, 2618, 2623, 2628, 2635, 2639, 2650, 2658, 2661, 2667, 2673, 2676, 2682, 2688, 2690, 2695, 2701, 2707, 2709, 2713, 2716, 2719, 2725, 2731, 2733, 2738, 2745, 2754, 2757, 2761, 2766, 2776, 2785, 2793, 2796, 2804, 2807, 2814, 2819, 2827, 2843, 2848, 2855, 2874, 2880, 2890, 2902, 2909, 2916, 2931, 2944, 2950, 2956, 2962, 2968, 2974, 2980, 2985, 2992, 2999, 3006, 3011, 3014, 3016, 3025, 3032, 3039, 3046, 3055, 3061, 3065, 3069, 3073, 3079, 3082, 3087, 3094, 3101, 3105, 3110, 3120, 3128, 3134, 3143, 3152, 3161, 3164, 3168, 3177, 3181, 3184, 3187, 3193, 3196, 3199, 3203, 3206, 3209, 3212, 3223, 3226, 3231, 3237, 3242, 3247, 3250, 3254, 3259, 3262, 3267, 3277, 3282, 3288, 3290, 3296, 3298, 3304, 3312, 3317, 3325, 3328, 3333, 3336, 3341, 3349, 3355, 3359, 3361, 3367, 3375, 3380, 3388, 3391, 3396, 3399, 3403, 3406, 3409, 3413, 3416, 3424, 3430, 3434, 3440, 3445, 3449, 3451, 3457, 3461, 3464, 3467, 3470, 3476, 3481, 3484, 3487, 3490, 3493, 3495, 3498, 3502, 3505, 3508, 3516, 3522, 3525, 3527, 3536, 3541, 3548, 3551, 3554, 3558, 3562, 3568, 3572, 3579, 3583, 3586, 3589, 3594, 3601, 3611, 3620, 3629, 3639, 3642, 3646, 3652, 3656, 3659, 3662, 3667, 3670, 3677, 3681, 3684, 3688, 3692, 3695, 3698, 3703, 3709, 3713, 3723, 3729, 3733, 3739, 3743, 3749, 3752, 3764, 3768, 3772, 3780, 3784, 3798, 3803, 3806, 3810, 3813, 3821, 3826, 3829, 3832, 3836, 3839, 3848, 3853, 3862, 3867, 3874, 3881, 3889, 3895, 3903, 3906, 3909, 3916, 3919, 3922, 3929, 3932, 3936, 3942, 3952, 3956, 3965, 3968, 3972, 3978, 3986, 3991, 3995, 4001, 4007, 4010, 4012, 4016, 4025, 4035, 4041, 4046, 4050, 4053, 4056, 4059, 4062, 4065, 4069, 4073, 4081, 4085, 4088, 4090, 4103, 4106, 4113, 4123, 4126, 4131, 4133, 4137, 4145, 4151, 4160, 4173, 4177, 4183, 4188, 4192, 4195, 4199, 4202, 4210, 4213, 4215, 4223, 4235, 4241, 4243, 4249, 4251, 4253, 4259, 4267, 4275, 4279, 4283, 4292, 4297, 4317, 4322, 4328, 4335, 4340, 4349, 4352, 4356, 4360, 4364, 4367, 4370, 4373, 4377, 4381, 4384, 4387, 4390, 4397, 4401, 4416, 4429, 4437, 4447, 4451, 4454, 4460, 4463, 4466, 4475, 4484, 4494, 4498, 4508, 4512, 4523, 4527, 4536, 4545, 4548, 4552, 4557, 4561, 4570, 4573, 4576, 4583, 4589, 4595, 4621, 4624, 4627, 4646, 4648, 4671, 4674, 4677, 4696, 4698, 4712, 4725, 4762, 4767, 4802, 4816, 4823, 4827, 4833, 4841, 4843, 4854, 4864, 4871, 4877, 4885, 4890, 4898, 4906, 4914, 4922, 4928, 4933, 4938, 4943, 4949, 4951, 4962, 4967, 4974, 4976, 4990, 4996, 5001, 5006, 5012, 5019, 5027, 5035, 5040, 5046, 5049, 5057, 5064, 5073, 5076, 5093, 5101, 5109, 5113, 5120, 5126, 5134, 5139, 5146, 5154, 5161, 5166, 5169, 5171, 5177, 5179, 5183, 5185, 5190, 5197, 5202, 5206, 5211, 5215, 5221, 5227, 5232, 5235, 5237, 5243, 5245, 5249, 5251, 5256, 5261, 5268, 5277, 5282, 5291, 5295, 5301, 5306, 5309, 5311, 5317, 5319, 5322, 5329, 5331, 5336, 5343, 5352, 5358, 5360, 5367, 5370, 5382, 5388, 5396, 5399, 5403, 5406, 5410, 5412, 5423, 5426, 5430, 5433, 5436, 5443, 5455, 5458, 5465, 5471, 5481, 5486, 5493, 5498, 5504, 5508, 5512, 5520, 5524, 5528, 5534, 5536, 5548, 5553, 5559, 5565, 5569, 5574, 5576, 5600, 5604, 5607, 5616, 5620, 5629, 5633, 5637, 5643, 5645, 5654, 5664, 5691, 5695, 5700, 5707, 5710, 5716, 5726, 5736, 5746, 5752, 5761, 5767, 5774, 5776, 5784, 5790, 5794, 5811, 5821, 5825, 5829, 5839, 5844, 5916, 5934, 5942, 5948, 5960, 5964, 5975, 5979, 5988, 5996, 6003, 6007, 6014, 6019, 6022, 6025, 6036, 6040, 6044, 6059, 6068, 6071, 6085, 6103, 6116, 6119, 6123, 6126, 6128, 6135, 6142, 6146, 6153, 6160, 6163, 6179, 6182, 6192, 6196, 6202, 6205, 6208, 6213, 6217, 6220, 6227, 6230, 6236, 6272, 6275, 6287, 6290, 6306, 6308, 6312, 6319, 6323, 6330, 6333, 6342, 6345, 6350, 6356, 6358, 6364, 6368, 6374, 6377, 6380, 6393, 6396, 6402, 6405, 6413, 6421, 6427, 6430, 6434, 6448, 6460, 6468, 6472, 6479, 6486, 6491, 6504, 6513, 6521, 6526, 6529, 6534, 6537, 6549, 6554, 6567, 6569, 6574, 6578, 6581, 6583, 6590, 6597, 6600, 6603, 6609, 6613, 6619, 6627, 6636, 6649, 6654, 6662, 6665, 6670, 6675, 6683, 6686, 6694, 6698, 6705, 6711, 6714, 6718, 6731, 6737, 6749, 6752, 6761, 6766, 6787, 6803, 6813, 6818, 6823, 6825, 6828, 6832, 6834, 6841, 6847, 6849, 6852, 6856, 6858, 6871, 6881, 6884, 6887, 6900, 6906, 6909, 6917, 6924, 6944, 6951, 6953, 6960, 6962, 6966, 6973, 6979, 6990, 6996, 7002, 7005, 7009, 7014, 7017, 7021, 7025, 7027, 7032, 7037, 7050, 7053, 7057, 7060, 7063, 7068, 7073, 7079, 7082, 7087, 7090, 7095, 7098, 7102, 7107, 7112, 7117, 7122, 7125, 7130, 7135, 7140, 7146, 7151, 7156, 7161, 7165, 7168, 7173, 7177, 7181, 7189, 7196, 7200, 7205, 7210, 7214, 7216, 7219, 7235, 7245, 7255, 7264, 7273, 7280, 7287, 7295, 7303, 7315, 7322, 7332, 7337, 7340, 7345, 7348, 7366, 7373, 7378, 7383, 7417, 7421, 7429, 7433, 7442, 7450, 7455, 7463, 7468, 7473, 7475, 7484, 7489, 7497, 7502, 7510, 7518, 7521, 7531, 7549, 7552, 7555, 7559, 7572, 7580, 7584, 7589, 7594, 7600, 7605, 7609, 7614, 7619, 7624, 7634, 7637, 7641, 7645, 7652, 7656, 7685, 7693, 7696, 7699, 7702, 7705, 7716, 7730, 7739, 7766, 7778, 7785, 7793, 7798, 7806, 7818, 7831, 7837, 7843, 7859, 7865, 7874, 7876, 7898, 7910, 7927, 7944, 7946, 7959, 7968, 7977, 7986, 7995] \ No newline at end of file +[4, 1, 895, 8022, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 1, 0, 5, 0, 836, 8, 0, 10, 0, 12, 0, 839, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 845, 8, 1, 1, 1, 3, 1, 848, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 857, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 900, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 919, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 930, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 946, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 963, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 998, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1008, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1013, 8, 12, 1, 12, 1, 12, 5, 12, 1017, 8, 12, 10, 12, 12, 12, 1020, 9, 12, 1, 13, 1, 13, 3, 13, 1024, 8, 13, 1, 13, 1, 13, 3, 13, 1028, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1037, 8, 13, 1, 13, 3, 13, 1040, 8, 13, 1, 13, 3, 13, 1043, 8, 13, 1, 13, 1, 13, 3, 13, 1047, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1054, 8, 14, 1, 14, 3, 14, 1057, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1062, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1068, 8, 14, 10, 14, 12, 14, 1071, 9, 14, 1, 14, 1, 14, 3, 14, 1075, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1080, 8, 14, 1, 14, 5, 14, 1083, 8, 14, 10, 14, 12, 14, 1086, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1097, 8, 15, 1, 15, 3, 15, 1100, 8, 15, 1, 15, 1, 15, 3, 15, 1104, 8, 15, 1, 15, 3, 15, 1107, 8, 15, 1, 15, 1, 15, 3, 15, 1111, 8, 15, 1, 15, 3, 15, 1114, 8, 15, 1, 15, 1, 15, 3, 15, 1118, 8, 15, 1, 15, 3, 15, 1121, 8, 15, 1, 15, 3, 15, 1124, 8, 15, 1, 15, 1, 15, 3, 15, 1128, 8, 15, 1, 15, 3, 15, 1131, 8, 15, 1, 15, 1, 15, 3, 15, 1135, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1141, 8, 16, 1, 16, 1, 16, 3, 16, 1145, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1150, 8, 16, 1, 16, 1, 16, 5, 16, 1154, 8, 16, 10, 16, 12, 16, 1157, 9, 16, 1, 16, 1, 16, 5, 16, 1161, 8, 16, 10, 16, 12, 16, 1164, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1171, 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 1187, 8, 18, 10, 18, 12, 18, 1190, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1196, 8, 19, 1, 19, 1, 19, 3, 19, 1200, 8, 19, 1, 19, 1, 19, 3, 19, 1204, 8, 19, 1, 19, 1, 19, 3, 19, 1208, 8, 19, 1, 19, 5, 19, 1211, 8, 19, 10, 19, 12, 19, 1214, 9, 19, 3, 19, 1216, 8, 19, 1, 19, 3, 19, 1219, 8, 19, 1, 19, 3, 19, 1222, 8, 19, 1, 19, 3, 19, 1225, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1231, 8, 19, 1, 19, 1, 19, 3, 19, 1235, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1245, 8, 19, 1, 19, 1, 19, 3, 19, 1249, 8, 19, 1, 19, 1, 19, 3, 19, 1253, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1259, 8, 19, 1, 19, 5, 19, 1262, 8, 19, 10, 19, 12, 19, 1265, 9, 19, 3, 19, 1267, 8, 19, 1, 19, 3, 19, 1270, 8, 19, 3, 19, 1272, 8, 19, 1, 20, 1, 20, 3, 20, 1276, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1283, 8, 20, 1, 20, 1, 20, 3, 20, 1287, 8, 20, 1, 20, 3, 20, 1290, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1295, 8, 20, 1, 20, 1, 20, 3, 20, 1299, 8, 20, 1, 20, 3, 20, 1302, 8, 20, 1, 20, 1, 20, 3, 20, 1306, 8, 20, 1, 20, 3, 20, 1309, 8, 20, 1, 21, 1, 21, 3, 21, 1313, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1326, 8, 21, 1, 21, 3, 21, 1329, 8, 21, 1, 21, 1, 21, 3, 21, 1333, 8, 21, 1, 21, 3, 21, 1336, 8, 21, 1, 21, 1, 21, 3, 21, 1340, 8, 21, 1, 21, 3, 21, 1343, 8, 21, 1, 21, 1, 21, 3, 21, 1347, 8, 21, 1, 21, 3, 21, 1350, 8, 21, 1, 21, 1, 21, 3, 21, 1354, 8, 21, 1, 21, 3, 21, 1357, 8, 21, 1, 21, 3, 21, 1360, 8, 21, 1, 21, 1, 21, 3, 21, 1364, 8, 21, 1, 21, 3, 21, 1367, 8, 21, 1, 21, 1, 21, 3, 21, 1371, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1377, 8, 22, 1, 22, 1, 22, 3, 22, 1381, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1393, 8, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 1399, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1408, 8, 24, 10, 24, 12, 24, 1411, 9, 24, 1, 24, 1, 24, 3, 24, 1415, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1423, 8, 24, 1, 25, 1, 25, 3, 25, 1427, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1432, 8, 25, 1, 25, 3, 25, 1435, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1440, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1448, 8, 25, 10, 25, 12, 25, 1451, 9, 25, 1, 25, 1, 25, 3, 25, 1455, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1460, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1466, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1471, 8, 25, 1, 25, 1, 25, 3, 25, 1475, 8, 25, 3, 25, 1477, 8, 25, 1, 26, 3, 26, 1480, 8, 26, 1, 26, 1, 26, 3, 26, 1484, 8, 26, 1, 26, 1, 26, 3, 26, 1488, 8, 26, 1, 26, 3, 26, 1491, 8, 26, 1, 26, 1, 26, 3, 26, 1495, 8, 26, 1, 26, 1, 26, 3, 26, 1499, 8, 26, 1, 26, 1, 26, 3, 26, 1503, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1509, 8, 26, 1, 26, 3, 26, 1512, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1519, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 1524, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1530, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 1535, 8, 30, 10, 30, 12, 30, 1538, 9, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1543, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1549, 8, 30, 10, 30, 12, 30, 1552, 9, 30, 3, 30, 1554, 8, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1559, 8, 30, 10, 30, 12, 30, 1562, 9, 30, 3, 30, 1564, 8, 30, 3, 30, 1566, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1572, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1578, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1595, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1602, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 1609, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1621, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1626, 8, 36, 1, 36, 3, 36, 1629, 8, 36, 1, 37, 3, 37, 1632, 8, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1642, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1655, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1660, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1676, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 1682, 8, 40, 10, 40, 12, 40, 1685, 9, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1694, 8, 41, 1, 41, 3, 41, 1697, 8, 41, 1, 41, 1, 41, 5, 41, 1701, 8, 41, 10, 41, 12, 41, 1704, 9, 41, 1, 41, 1, 41, 3, 41, 1708, 8, 41, 1, 41, 3, 41, 1711, 8, 41, 1, 41, 1, 41, 5, 41, 1715, 8, 41, 10, 41, 12, 41, 1718, 9, 41, 1, 41, 3, 41, 1721, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1726, 8, 41, 1, 41, 1, 41, 5, 41, 1730, 8, 41, 10, 41, 12, 41, 1733, 9, 41, 1, 41, 3, 41, 1736, 8, 41, 1, 41, 1, 41, 3, 41, 1740, 8, 41, 1, 41, 3, 41, 1743, 8, 41, 1, 41, 3, 41, 1746, 8, 41, 1, 41, 1, 41, 5, 41, 1750, 8, 41, 10, 41, 12, 41, 1753, 9, 41, 1, 41, 3, 41, 1756, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1761, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1772, 8, 41, 1, 42, 3, 42, 1775, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1782, 8, 42, 1, 42, 3, 42, 1785, 8, 42, 1, 43, 1, 43, 3, 43, 1789, 8, 43, 1, 44, 1, 44, 5, 44, 1793, 8, 44, 10, 44, 12, 44, 1796, 9, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1807, 8, 45, 1, 45, 3, 45, 1810, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1815, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1828, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1835, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1841, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1846, 8, 46, 1, 46, 1, 46, 3, 46, 1850, 8, 46, 1, 46, 3, 46, 1853, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1861, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1869, 8, 47, 3, 47, 1871, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1881, 8, 48, 1, 49, 1, 49, 3, 49, 1885, 8, 49, 1, 49, 3, 49, 1888, 8, 49, 1, 49, 1, 49, 3, 49, 1892, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1897, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1902, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1907, 8, 49, 1, 49, 1, 49, 3, 49, 1911, 8, 49, 1, 49, 1, 49, 3, 49, 1915, 8, 49, 1, 49, 1, 49, 3, 49, 1919, 8, 49, 1, 49, 1, 49, 3, 49, 1923, 8, 49, 1, 49, 1, 49, 3, 49, 1927, 8, 49, 1, 49, 1, 49, 3, 49, 1931, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1936, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1941, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1946, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1952, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1957, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1962, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1967, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1972, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1977, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1983, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1988, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1993, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1998, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2003, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2008, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2013, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2018, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2025, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2030, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2035, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2040, 8, 49, 1, 49, 1, 49, 3, 49, 2044, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2049, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2057, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2062, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2068, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2080, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2087, 8, 52, 3, 52, 2089, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 2095, 8, 52, 10, 52, 12, 52, 2098, 9, 52, 1, 52, 1, 52, 3, 52, 2102, 8, 52, 1, 53, 3, 53, 2105, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2113, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2119, 8, 53, 1, 53, 1, 53, 3, 53, 2123, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2136, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2148, 8, 53, 3, 53, 2150, 8, 53, 1, 54, 3, 54, 2153, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2161, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2167, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2173, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2184, 8, 55, 10, 55, 12, 55, 2187, 9, 55, 1, 55, 1, 55, 5, 55, 2191, 8, 55, 10, 55, 12, 55, 2194, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2200, 8, 55, 10, 55, 12, 55, 2203, 9, 55, 1, 55, 1, 55, 3, 55, 2207, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2216, 8, 55, 10, 55, 12, 55, 2219, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2225, 8, 55, 10, 55, 12, 55, 2228, 9, 55, 1, 55, 1, 55, 3, 55, 2232, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2242, 8, 55, 10, 55, 12, 55, 2245, 9, 55, 1, 55, 1, 55, 5, 55, 2249, 8, 55, 10, 55, 12, 55, 2252, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2258, 8, 55, 10, 55, 12, 55, 2261, 9, 55, 1, 55, 1, 55, 3, 55, 2265, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2275, 8, 55, 10, 55, 12, 55, 2278, 9, 55, 1, 55, 1, 55, 5, 55, 2282, 8, 55, 10, 55, 12, 55, 2285, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2291, 8, 55, 10, 55, 12, 55, 2294, 9, 55, 1, 55, 1, 55, 3, 55, 2298, 8, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2303, 8, 55, 10, 55, 12, 55, 2306, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2312, 8, 55, 10, 55, 12, 55, 2315, 9, 55, 1, 55, 1, 55, 3, 55, 2319, 8, 55, 3, 55, 2321, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 2326, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 4, 57, 2332, 8, 57, 11, 57, 12, 57, 2333, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 5, 58, 2341, 8, 58, 10, 58, 12, 58, 2344, 9, 58, 1, 59, 3, 59, 2347, 8, 59, 1, 59, 3, 59, 2350, 8, 59, 1, 59, 1, 59, 3, 59, 2354, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2359, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2365, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2371, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2376, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2381, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2386, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2391, 8, 59, 1, 59, 3, 59, 2394, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 2399, 8, 60, 1, 60, 4, 60, 2402, 8, 60, 11, 60, 12, 60, 2403, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2414, 8, 60, 1, 61, 1, 61, 3, 61, 2418, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2425, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2430, 8, 61, 1, 61, 3, 61, 2433, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2438, 8, 61, 1, 61, 3, 61, 2441, 8, 61, 1, 61, 1, 61, 3, 61, 2445, 8, 61, 1, 61, 1, 61, 3, 61, 2449, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2455, 8, 62, 10, 62, 12, 62, 2458, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2476, 8, 64, 1, 64, 3, 64, 2479, 8, 64, 1, 64, 3, 64, 2482, 8, 64, 1, 64, 1, 64, 3, 64, 2486, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2494, 8, 65, 10, 65, 12, 65, 2497, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2507, 8, 66, 10, 66, 12, 66, 2510, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2520, 8, 67, 10, 67, 12, 67, 2523, 9, 67, 3, 67, 2525, 8, 67, 1, 67, 1, 67, 5, 67, 2529, 8, 67, 10, 67, 12, 67, 2532, 9, 67, 3, 67, 2534, 8, 67, 1, 68, 1, 68, 3, 68, 2538, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2547, 8, 68, 1, 68, 3, 68, 2550, 8, 68, 1, 68, 3, 68, 2553, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2558, 8, 68, 1, 68, 1, 68, 3, 68, 2562, 8, 68, 1, 68, 3, 68, 2565, 8, 68, 1, 68, 1, 68, 3, 68, 2569, 8, 68, 1, 68, 1, 68, 3, 68, 2573, 8, 68, 1, 68, 3, 68, 2576, 8, 68, 1, 68, 1, 68, 3, 68, 2580, 8, 68, 1, 68, 3, 68, 2583, 8, 68, 1, 68, 1, 68, 3, 68, 2587, 8, 68, 1, 68, 3, 68, 2590, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2596, 8, 69, 1, 69, 3, 69, 2599, 8, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2604, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2612, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2618, 8, 69, 1, 69, 1, 69, 3, 69, 2622, 8, 69, 1, 70, 1, 70, 3, 70, 2626, 8, 70, 1, 70, 5, 70, 2629, 8, 70, 10, 70, 12, 70, 2632, 9, 70, 1, 70, 1, 70, 3, 70, 2636, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2643, 8, 70, 1, 70, 1, 70, 3, 70, 2647, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2656, 8, 70, 10, 70, 12, 70, 2659, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2666, 8, 70, 1, 70, 3, 70, 2669, 8, 70, 1, 70, 1, 70, 5, 70, 2673, 8, 70, 10, 70, 12, 70, 2676, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2681, 8, 70, 1, 70, 3, 70, 2684, 8, 70, 1, 70, 1, 70, 5, 70, 2688, 8, 70, 10, 70, 12, 70, 2691, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2696, 8, 70, 3, 70, 2698, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2703, 8, 70, 1, 70, 1, 70, 5, 70, 2707, 8, 70, 10, 70, 12, 70, 2710, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2715, 8, 70, 3, 70, 2717, 8, 70, 1, 70, 1, 70, 3, 70, 2721, 8, 70, 1, 70, 3, 70, 2724, 8, 70, 1, 70, 3, 70, 2727, 8, 70, 1, 70, 1, 70, 5, 70, 2731, 8, 70, 10, 70, 12, 70, 2734, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2739, 8, 70, 3, 70, 2741, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2746, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2753, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2762, 8, 70, 1, 70, 3, 70, 2765, 8, 70, 1, 70, 1, 70, 3, 70, 2769, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2774, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2784, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2793, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2801, 8, 70, 1, 70, 3, 70, 2804, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2812, 8, 70, 1, 70, 3, 70, 2815, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2822, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2827, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2835, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2851, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2856, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2863, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2882, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2888, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2896, 8, 71, 10, 71, 12, 71, 2899, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2910, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2917, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2924, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2937, 8, 71, 10, 71, 12, 71, 2940, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2952, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2958, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2964, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2970, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2976, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2982, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2988, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 2993, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 3, 73, 3000, 8, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 3, 74, 3007, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3014, 8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3019, 8, 74, 1, 74, 5, 74, 3022, 8, 74, 10, 74, 12, 74, 3025, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 3033, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3040, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3047, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 3, 78, 3054, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 3063, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 3069, 8, 80, 1, 80, 1, 80, 3, 80, 3073, 8, 80, 1, 80, 1, 80, 3, 80, 3077, 8, 80, 1, 81, 1, 81, 3, 81, 3081, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 3087, 8, 81, 1, 81, 3, 81, 3090, 8, 81, 1, 82, 1, 82, 1, 82, 3, 82, 3095, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 3, 83, 3102, 8, 83, 1, 83, 1, 83, 1, 83, 5, 83, 3107, 8, 83, 10, 83, 12, 83, 3110, 9, 83, 1, 83, 3, 83, 3113, 8, 83, 1, 84, 1, 84, 1, 84, 3, 84, 3118, 8, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 3128, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 3134, 8, 85, 10, 85, 12, 85, 3137, 9, 85, 1, 85, 1, 85, 1, 85, 3, 85, 3142, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3149, 8, 86, 10, 86, 12, 86, 3152, 9, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 3, 88, 3160, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 3169, 8, 89, 1, 89, 3, 89, 3172, 8, 89, 1, 90, 1, 90, 3, 90, 3176, 8, 90, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3185, 8, 92, 1, 93, 1, 93, 3, 93, 3189, 8, 93, 1, 93, 3, 93, 3192, 8, 93, 1, 93, 3, 93, 3195, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 3201, 8, 93, 1, 93, 3, 93, 3204, 8, 93, 1, 93, 3, 93, 3207, 8, 93, 1, 93, 1, 93, 3, 93, 3211, 8, 93, 1, 93, 3, 93, 3214, 8, 93, 1, 93, 3, 93, 3217, 8, 93, 1, 93, 3, 93, 3220, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 3229, 8, 93, 10, 93, 12, 93, 3232, 9, 93, 3, 93, 3234, 8, 93, 1, 94, 1, 94, 1, 94, 3, 94, 3239, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3245, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 3250, 8, 96, 1, 96, 4, 96, 3253, 8, 96, 11, 96, 12, 96, 3254, 1, 97, 3, 97, 3258, 8, 97, 1, 97, 1, 97, 3, 97, 3262, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 3267, 8, 98, 1, 98, 3, 98, 3270, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3275, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3285, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3290, 8, 98, 1, 98, 1, 98, 4, 98, 3294, 8, 98, 11, 98, 12, 98, 3295, 3, 98, 3298, 8, 98, 1, 98, 1, 98, 4, 98, 3302, 8, 98, 11, 98, 12, 98, 3303, 3, 98, 3306, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3312, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3318, 8, 98, 10, 98, 12, 98, 3321, 9, 98, 1, 98, 1, 98, 3, 98, 3325, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3331, 8, 98, 10, 98, 12, 98, 3334, 9, 98, 3, 98, 3336, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3341, 8, 99, 1, 99, 3, 99, 3344, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3349, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3357, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3363, 8, 99, 1, 99, 1, 99, 3, 99, 3367, 8, 99, 3, 99, 3369, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3375, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3381, 8, 99, 10, 99, 12, 99, 3384, 9, 99, 1, 99, 1, 99, 3, 99, 3388, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3394, 8, 99, 10, 99, 12, 99, 3397, 9, 99, 3, 99, 3399, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 3404, 8, 100, 1, 100, 3, 100, 3407, 8, 100, 1, 100, 1, 100, 3, 100, 3411, 8, 100, 1, 100, 3, 100, 3414, 8, 100, 1, 100, 3, 100, 3417, 8, 100, 1, 101, 1, 101, 3, 101, 3421, 8, 101, 1, 101, 3, 101, 3424, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3432, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3438, 8, 101, 1, 101, 1, 101, 3, 101, 3442, 8, 101, 1, 102, 1, 102, 5, 102, 3446, 8, 102, 10, 102, 12, 102, 3449, 9, 102, 1, 102, 1, 102, 3, 102, 3453, 8, 102, 1, 102, 1, 102, 3, 102, 3457, 8, 102, 3, 102, 3459, 8, 102, 1, 102, 1, 102, 5, 102, 3463, 8, 102, 10, 102, 12, 102, 3466, 9, 102, 1, 102, 3, 102, 3469, 8, 102, 1, 102, 3, 102, 3472, 8, 102, 1, 102, 3, 102, 3475, 8, 102, 1, 102, 3, 102, 3478, 8, 102, 1, 102, 1, 102, 5, 102, 3482, 8, 102, 10, 102, 12, 102, 3485, 9, 102, 1, 102, 1, 102, 3, 102, 3489, 8, 102, 1, 102, 3, 102, 3492, 8, 102, 1, 102, 3, 102, 3495, 8, 102, 1, 102, 3, 102, 3498, 8, 102, 1, 102, 3, 102, 3501, 8, 102, 3, 102, 3503, 8, 102, 1, 103, 3, 103, 3506, 8, 103, 1, 103, 1, 103, 3, 103, 3510, 8, 103, 1, 103, 3, 103, 3513, 8, 103, 1, 103, 3, 103, 3516, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3524, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3530, 8, 104, 1, 104, 5, 104, 3533, 8, 104, 10, 104, 12, 104, 3536, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3544, 8, 105, 1, 105, 5, 105, 3547, 8, 105, 10, 105, 12, 105, 3550, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3556, 8, 106, 1, 106, 3, 106, 3559, 8, 106, 1, 106, 3, 106, 3562, 8, 106, 1, 106, 1, 106, 3, 106, 3566, 8, 106, 1, 107, 1, 107, 3, 107, 3570, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3576, 8, 108, 1, 108, 1, 108, 3, 108, 3580, 8, 108, 1, 109, 1, 109, 1, 109, 5, 109, 3585, 8, 109, 10, 109, 12, 109, 3588, 9, 109, 1, 109, 3, 109, 3591, 8, 109, 1, 109, 3, 109, 3594, 8, 109, 1, 109, 3, 109, 3597, 8, 109, 1, 110, 1, 110, 1, 110, 3, 110, 3602, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3609, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3617, 8, 112, 10, 112, 12, 112, 3620, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3626, 8, 113, 10, 113, 12, 113, 3629, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 3, 115, 3637, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3645, 8, 116, 10, 116, 12, 116, 3648, 9, 116, 3, 116, 3650, 8, 116, 1, 116, 1, 116, 3, 116, 3654, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3660, 8, 116, 1, 117, 1, 117, 3, 117, 3664, 8, 117, 1, 117, 3, 117, 3667, 8, 117, 1, 117, 3, 117, 3670, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3675, 8, 117, 1, 117, 3, 117, 3678, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3685, 8, 117, 1, 117, 1, 117, 3, 117, 3689, 8, 117, 1, 117, 3, 117, 3692, 8, 117, 1, 117, 1, 117, 3, 117, 3696, 8, 117, 1, 118, 1, 118, 3, 118, 3700, 8, 118, 1, 118, 3, 118, 3703, 8, 118, 1, 118, 3, 118, 3706, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3711, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3717, 8, 118, 5, 118, 3719, 8, 118, 10, 118, 12, 118, 3722, 9, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3731, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3737, 8, 118, 5, 118, 3739, 8, 118, 10, 118, 12, 118, 3742, 9, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3747, 8, 118, 1, 118, 1, 118, 3, 118, 3751, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3757, 8, 119, 1, 119, 3, 119, 3760, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3772, 8, 120, 1, 120, 1, 120, 3, 120, 3776, 8, 120, 1, 120, 1, 120, 3, 120, 3780, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3788, 8, 121, 1, 121, 1, 121, 3, 121, 3792, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 3804, 8, 123, 10, 123, 12, 123, 3807, 9, 123, 1, 124, 1, 124, 3, 124, 3811, 8, 124, 1, 124, 3, 124, 3814, 8, 124, 1, 124, 1, 124, 3, 124, 3818, 8, 124, 1, 124, 3, 124, 3821, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3827, 8, 124, 10, 124, 12, 124, 3830, 9, 124, 1, 124, 1, 124, 3, 124, 3834, 8, 124, 1, 124, 3, 124, 3837, 8, 124, 1, 124, 3, 124, 3840, 8, 124, 1, 125, 1, 125, 3, 125, 3844, 8, 125, 1, 125, 3, 125, 3847, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 3854, 8, 125, 10, 125, 12, 125, 3857, 9, 125, 1, 125, 1, 125, 3, 125, 3861, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3868, 8, 126, 10, 126, 12, 126, 3871, 9, 126, 1, 127, 1, 127, 3, 127, 3875, 8, 127, 1, 128, 1, 128, 1, 128, 5, 128, 3880, 8, 128, 10, 128, 12, 128, 3883, 9, 128, 1, 129, 1, 129, 5, 129, 3887, 8, 129, 10, 129, 12, 129, 3890, 9, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3895, 8, 129, 10, 129, 12, 129, 3898, 9, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3903, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3911, 8, 130, 1, 130, 3, 130, 3914, 8, 130, 1, 130, 3, 130, 3917, 8, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3922, 8, 130, 10, 130, 12, 130, 3925, 9, 130, 3, 130, 3927, 8, 130, 1, 130, 3, 130, 3930, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3937, 8, 130, 1, 130, 3, 130, 3940, 8, 130, 1, 130, 1, 130, 3, 130, 3944, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3950, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3960, 8, 132, 1, 132, 1, 132, 3, 132, 3964, 8, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3973, 8, 133, 1, 134, 3, 134, 3976, 8, 134, 1, 134, 1, 134, 3, 134, 3980, 8, 134, 1, 134, 1, 134, 5, 134, 3984, 8, 134, 10, 134, 12, 134, 3987, 9, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3992, 8, 134, 10, 134, 12, 134, 3995, 9, 134, 1, 134, 1, 134, 3, 134, 3999, 8, 134, 1, 134, 1, 134, 3, 134, 4003, 8, 134, 1, 134, 1, 134, 5, 134, 4007, 8, 134, 10, 134, 12, 134, 4010, 9, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4015, 8, 134, 1, 134, 3, 134, 4018, 8, 134, 3, 134, 4020, 8, 134, 1, 134, 1, 134, 3, 134, 4024, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 4033, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4043, 8, 136, 1, 137, 1, 137, 5, 137, 4047, 8, 137, 10, 137, 12, 137, 4050, 9, 137, 1, 137, 1, 137, 3, 137, 4054, 8, 137, 1, 137, 1, 137, 3, 137, 4058, 8, 137, 1, 137, 3, 137, 4061, 8, 137, 1, 137, 3, 137, 4064, 8, 137, 1, 137, 3, 137, 4067, 8, 137, 1, 137, 3, 137, 4070, 8, 137, 1, 137, 3, 137, 4073, 8, 137, 1, 138, 1, 138, 3, 138, 4077, 8, 138, 1, 138, 1, 138, 3, 138, 4081, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4089, 8, 139, 1, 139, 1, 139, 3, 139, 4093, 8, 139, 1, 139, 3, 139, 4096, 8, 139, 3, 139, 4098, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4111, 8, 140, 1, 140, 3, 140, 4114, 8, 140, 1, 141, 1, 141, 1, 141, 5, 141, 4119, 8, 141, 10, 141, 12, 141, 4122, 9, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4131, 8, 142, 1, 142, 3, 142, 4134, 8, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4139, 8, 142, 3, 142, 4141, 8, 142, 1, 142, 1, 142, 3, 142, 4145, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4153, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4159, 8, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 4168, 8, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4181, 8, 145, 1, 146, 1, 146, 3, 146, 4185, 8, 146, 1, 146, 1, 146, 5, 146, 4189, 8, 146, 10, 146, 12, 146, 4192, 9, 146, 1, 147, 1, 147, 3, 147, 4196, 8, 147, 1, 147, 1, 147, 3, 147, 4200, 8, 147, 1, 147, 3, 147, 4203, 8, 147, 1, 147, 1, 147, 3, 147, 4207, 8, 147, 1, 147, 3, 147, 4210, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4218, 8, 147, 1, 147, 3, 147, 4221, 8, 147, 3, 147, 4223, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 4229, 8, 148, 10, 148, 12, 148, 4232, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4243, 8, 148, 1, 148, 1, 148, 4, 148, 4247, 8, 148, 11, 148, 12, 148, 4248, 3, 148, 4251, 8, 148, 1, 148, 1, 148, 4, 148, 4255, 8, 148, 11, 148, 12, 148, 4256, 3, 148, 4259, 8, 148, 3, 148, 4261, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4267, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4275, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 4283, 8, 150, 1, 151, 1, 151, 3, 151, 4287, 8, 151, 1, 151, 1, 151, 3, 151, 4291, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 4298, 8, 152, 10, 152, 12, 152, 4301, 9, 152, 1, 152, 1, 152, 3, 152, 4305, 8, 152, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 4323, 8, 154, 10, 154, 12, 154, 4326, 9, 154, 1, 155, 1, 155, 3, 155, 4330, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4336, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4343, 8, 156, 1, 157, 1, 157, 1, 157, 3, 157, 4348, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 4355, 8, 158, 10, 158, 12, 158, 4358, 9, 158, 3, 158, 4360, 8, 158, 1, 159, 1, 159, 3, 159, 4364, 8, 159, 1, 160, 1, 160, 3, 160, 4368, 8, 160, 1, 160, 1, 160, 3, 160, 4372, 8, 160, 1, 160, 3, 160, 4375, 8, 160, 1, 160, 3, 160, 4378, 8, 160, 1, 160, 3, 160, 4381, 8, 160, 1, 161, 1, 161, 3, 161, 4385, 8, 161, 1, 161, 1, 161, 3, 161, 4389, 8, 161, 1, 161, 3, 161, 4392, 8, 161, 1, 161, 3, 161, 4395, 8, 161, 1, 161, 3, 161, 4398, 8, 161, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 3, 163, 4405, 8, 163, 1, 163, 1, 163, 3, 163, 4409, 8, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 4422, 8, 165, 10, 165, 12, 165, 4425, 9, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 3, 168, 4437, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 4443, 8, 168, 10, 168, 12, 168, 4446, 9, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4455, 8, 169, 1, 170, 1, 170, 3, 170, 4459, 8, 170, 1, 170, 3, 170, 4462, 8, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4468, 8, 171, 1, 171, 3, 171, 4471, 8, 171, 1, 171, 3, 171, 4474, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4483, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 4492, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 5, 174, 4500, 8, 174, 10, 174, 12, 174, 4503, 9, 174, 1, 174, 3, 174, 4506, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 5, 175, 4514, 8, 175, 10, 175, 12, 175, 4517, 9, 175, 1, 175, 3, 175, 4520, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4529, 8, 176, 10, 176, 12, 176, 4532, 9, 176, 1, 176, 3, 176, 4535, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4544, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 4551, 8, 178, 10, 178, 12, 178, 4554, 9, 178, 3, 178, 4556, 8, 178, 1, 178, 1, 178, 3, 178, 4560, 8, 178, 1, 178, 5, 178, 4563, 8, 178, 10, 178, 12, 178, 4566, 9, 178, 1, 178, 3, 178, 4569, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4576, 8, 179, 10, 179, 12, 179, 4579, 9, 179, 3, 179, 4581, 8, 179, 1, 179, 3, 179, 4584, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4591, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4597, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4603, 8, 180, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4627, 8, 182, 10, 182, 12, 182, 4630, 9, 182, 3, 182, 4632, 8, 182, 1, 182, 3, 182, 4635, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4654, 8, 186, 3, 186, 4656, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 4677, 8, 187, 10, 187, 12, 187, 4680, 9, 187, 3, 187, 4682, 8, 187, 1, 187, 3, 187, 4685, 8, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4704, 8, 191, 3, 191, 4706, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 4718, 8, 193, 10, 193, 12, 193, 4721, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 4731, 8, 193, 10, 193, 12, 193, 4734, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 4768, 8, 193, 10, 193, 12, 193, 4771, 9, 193, 1, 193, 1, 193, 3, 193, 4775, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4810, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4824, 8, 197, 1, 198, 1, 198, 1, 198, 5, 198, 4829, 8, 198, 10, 198, 12, 198, 4832, 9, 198, 1, 198, 3, 198, 4835, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4841, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4849, 8, 200, 3, 200, 4851, 8, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 4862, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4872, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4879, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4885, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 3, 208, 4893, 8, 208, 1, 209, 1, 209, 1, 209, 3, 209, 4898, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4904, 8, 209, 10, 209, 12, 209, 4907, 9, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4912, 8, 209, 10, 209, 12, 209, 4915, 9, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4920, 8, 209, 10, 209, 12, 209, 4923, 9, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4928, 8, 209, 10, 209, 12, 209, 4931, 9, 209, 1, 209, 5, 209, 4934, 8, 209, 10, 209, 12, 209, 4937, 9, 209, 1, 209, 1, 209, 3, 209, 4941, 8, 209, 1, 210, 1, 210, 1, 210, 3, 210, 4946, 8, 210, 1, 210, 4, 210, 4949, 8, 210, 11, 210, 12, 210, 4950, 1, 210, 1, 210, 4, 210, 4955, 8, 210, 11, 210, 12, 210, 4956, 3, 210, 4959, 8, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 4, 211, 4968, 8, 211, 11, 211, 12, 211, 4969, 1, 211, 5, 211, 4973, 8, 211, 10, 211, 12, 211, 4976, 9, 211, 1, 211, 1, 211, 4, 211, 4980, 8, 211, 11, 211, 12, 211, 4981, 3, 211, 4984, 8, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 3, 214, 4998, 8, 214, 1, 214, 1, 214, 4, 214, 5002, 8, 214, 11, 214, 12, 214, 5003, 1, 214, 1, 214, 1, 214, 3, 214, 5009, 8, 214, 1, 215, 1, 215, 1, 215, 3, 215, 5014, 8, 215, 1, 215, 1, 215, 4, 215, 5018, 8, 215, 11, 215, 12, 215, 5019, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5027, 8, 215, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 3, 217, 5035, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 4, 217, 5041, 8, 217, 11, 217, 12, 217, 5042, 1, 217, 1, 217, 1, 217, 3, 217, 5048, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5054, 8, 218, 1, 218, 3, 218, 5057, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5065, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5072, 8, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5081, 8, 220, 1, 220, 3, 220, 5084, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5099, 8, 222, 10, 222, 12, 222, 5102, 9, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 3, 223, 5109, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5117, 8, 223, 1, 224, 1, 224, 3, 224, 5121, 8, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 3, 225, 5128, 8, 225, 1, 225, 1, 225, 4, 225, 5132, 8, 225, 11, 225, 12, 225, 5133, 1, 226, 1, 226, 1, 226, 1, 226, 4, 226, 5140, 8, 226, 11, 226, 12, 226, 5141, 1, 227, 1, 227, 1, 227, 3, 227, 5147, 8, 227, 1, 227, 1, 227, 1, 227, 5, 227, 5152, 8, 227, 10, 227, 12, 227, 5155, 9, 227, 1, 227, 1, 227, 1, 227, 5, 227, 5160, 8, 227, 10, 227, 12, 227, 5163, 9, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5169, 8, 227, 1, 227, 5, 227, 5172, 8, 227, 10, 227, 12, 227, 5175, 9, 227, 3, 227, 5177, 8, 227, 3, 227, 5179, 8, 227, 1, 227, 1, 227, 4, 227, 5183, 8, 227, 11, 227, 12, 227, 5184, 3, 227, 5187, 8, 227, 1, 227, 1, 227, 5, 227, 5191, 8, 227, 10, 227, 12, 227, 5194, 9, 227, 1, 227, 1, 227, 3, 227, 5198, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5205, 8, 227, 1, 228, 1, 228, 1, 228, 3, 228, 5210, 8, 228, 1, 228, 1, 228, 3, 228, 5214, 8, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5219, 8, 228, 5, 228, 5221, 8, 228, 10, 228, 12, 228, 5224, 9, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5229, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5235, 8, 228, 1, 228, 5, 228, 5238, 8, 228, 10, 228, 12, 228, 5241, 9, 228, 3, 228, 5243, 8, 228, 3, 228, 5245, 8, 228, 1, 228, 1, 228, 4, 228, 5249, 8, 228, 11, 228, 12, 228, 5250, 3, 228, 5253, 8, 228, 1, 228, 1, 228, 5, 228, 5257, 8, 228, 10, 228, 12, 228, 5260, 9, 228, 1, 228, 1, 228, 3, 228, 5264, 8, 228, 1, 229, 1, 229, 1, 229, 3, 229, 5269, 8, 229, 1, 229, 1, 229, 1, 229, 5, 229, 5274, 8, 229, 10, 229, 12, 229, 5277, 9, 229, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5283, 8, 230, 10, 230, 12, 230, 5286, 9, 230, 1, 230, 1, 230, 3, 230, 5290, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5297, 8, 230, 10, 230, 12, 230, 5300, 9, 230, 1, 230, 3, 230, 5303, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5309, 8, 230, 1, 230, 5, 230, 5312, 8, 230, 10, 230, 12, 230, 5315, 9, 230, 3, 230, 5317, 8, 230, 3, 230, 5319, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5325, 8, 230, 10, 230, 12, 230, 5328, 9, 230, 3, 230, 5330, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5337, 8, 230, 3, 230, 5339, 8, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5344, 8, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5349, 8, 230, 10, 230, 12, 230, 5352, 9, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5358, 8, 230, 10, 230, 12, 230, 5361, 9, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5366, 8, 230, 3, 230, 5368, 8, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5375, 8, 231, 1, 231, 3, 231, 5378, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 5388, 8, 232, 10, 232, 12, 232, 5391, 9, 232, 1, 232, 1, 232, 1, 232, 3, 232, 5396, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5404, 8, 233, 1, 233, 3, 233, 5407, 8, 233, 1, 233, 1, 233, 3, 233, 5411, 8, 233, 1, 233, 3, 233, 5414, 8, 233, 1, 233, 1, 233, 3, 233, 5418, 8, 233, 3, 233, 5420, 8, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5431, 8, 234, 1, 234, 3, 234, 5434, 8, 234, 1, 234, 1, 234, 3, 234, 5438, 8, 234, 1, 234, 3, 234, 5441, 8, 234, 1, 234, 3, 234, 5444, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5451, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 5, 236, 5461, 8, 236, 10, 236, 12, 236, 5464, 9, 236, 3, 236, 5466, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5473, 8, 237, 1, 237, 1, 237, 5, 237, 5477, 8, 237, 10, 237, 12, 237, 5480, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5487, 8, 238, 10, 238, 12, 238, 5490, 9, 238, 1, 239, 1, 239, 3, 239, 5494, 8, 239, 1, 239, 1, 239, 1, 239, 5, 239, 5499, 8, 239, 10, 239, 12, 239, 5502, 9, 239, 1, 239, 1, 239, 3, 239, 5506, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5512, 8, 239, 1, 239, 1, 239, 3, 239, 5516, 8, 239, 1, 239, 1, 239, 3, 239, 5520, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5528, 8, 239, 1, 239, 1, 239, 3, 239, 5532, 8, 239, 1, 239, 1, 239, 3, 239, 5536, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5542, 8, 239, 3, 239, 5544, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5556, 8, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5561, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5567, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5573, 8, 242, 1, 242, 1, 242, 3, 242, 5577, 8, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5582, 8, 242, 3, 242, 5584, 8, 242, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5608, 8, 244, 4, 244, 5610, 8, 244, 11, 244, 12, 244, 5611, 1, 244, 3, 244, 5615, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5624, 8, 245, 1, 245, 1, 245, 3, 245, 5628, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5637, 8, 245, 1, 245, 1, 245, 3, 245, 5641, 8, 245, 1, 245, 1, 245, 3, 245, 5645, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5651, 8, 245, 3, 245, 5653, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5662, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5672, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5699, 8, 247, 1, 248, 1, 248, 3, 248, 5703, 8, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5708, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5715, 8, 249, 1, 249, 3, 249, 5718, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5724, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5734, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 5744, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5754, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5760, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5769, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5775, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5782, 8, 252, 3, 252, 5784, 8, 252, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 3, 254, 5792, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5798, 8, 254, 1, 254, 1, 254, 3, 254, 5802, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5819, 8, 255, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5829, 8, 257, 1, 258, 1, 258, 3, 258, 5833, 8, 258, 1, 258, 1, 258, 3, 258, 5837, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5847, 8, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5852, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5924, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 5942, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 3, 261, 5950, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5956, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5968, 8, 261, 1, 261, 1, 261, 3, 261, 5972, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5983, 8, 261, 1, 261, 1, 261, 3, 261, 5987, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5996, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 6002, 8, 262, 10, 262, 12, 262, 6005, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 6011, 8, 263, 1, 264, 1, 264, 3, 264, 6015, 8, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 6022, 8, 265, 1, 265, 1, 265, 1, 265, 3, 265, 6027, 8, 265, 1, 265, 3, 265, 6030, 8, 265, 1, 265, 3, 265, 6033, 8, 265, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6044, 8, 267, 1, 268, 1, 268, 3, 268, 6048, 8, 268, 1, 268, 1, 268, 3, 268, 6052, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 6065, 8, 269, 10, 269, 12, 269, 6068, 9, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 6074, 8, 269, 10, 269, 12, 269, 6077, 9, 269, 3, 269, 6079, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6091, 8, 271, 10, 271, 12, 271, 6094, 9, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 6111, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 6124, 8, 274, 1, 274, 3, 274, 6127, 8, 274, 1, 274, 1, 274, 3, 274, 6131, 8, 274, 1, 274, 3, 274, 6134, 8, 274, 3, 274, 6136, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6143, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6150, 8, 275, 5, 275, 6152, 8, 275, 10, 275, 12, 275, 6155, 9, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6161, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6168, 8, 275, 1, 275, 3, 275, 6171, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 5, 275, 6185, 8, 275, 10, 275, 12, 275, 6188, 9, 275, 3, 275, 6190, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6200, 8, 276, 1, 276, 1, 276, 3, 276, 6204, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6210, 8, 276, 1, 276, 3, 276, 6213, 8, 276, 1, 276, 3, 276, 6216, 8, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6221, 8, 276, 1, 276, 1, 276, 3, 276, 6225, 8, 276, 1, 276, 3, 276, 6228, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6235, 8, 276, 1, 276, 3, 276, 6238, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6244, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6280, 8, 276, 1, 276, 3, 276, 6283, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6295, 8, 276, 1, 276, 3, 276, 6298, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6314, 8, 276, 3, 276, 6316, 8, 276, 1, 276, 1, 276, 3, 276, 6320, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6327, 8, 276, 1, 276, 1, 276, 3, 276, 6331, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6338, 8, 276, 1, 276, 3, 276, 6341, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6348, 8, 276, 10, 276, 12, 276, 6351, 9, 276, 3, 276, 6353, 8, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6358, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6364, 8, 276, 3, 276, 6366, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6372, 8, 276, 1, 276, 1, 276, 3, 276, 6376, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6382, 8, 277, 1, 277, 3, 277, 6385, 8, 277, 1, 277, 3, 277, 6388, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6401, 8, 278, 1, 278, 3, 278, 6404, 8, 278, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6410, 8, 279, 1, 280, 3, 280, 6413, 8, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6421, 8, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6429, 8, 280, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6435, 8, 281, 1, 281, 3, 281, 6438, 8, 281, 1, 281, 1, 281, 3, 281, 6442, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6456, 8, 282, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 5, 284, 6466, 8, 284, 10, 284, 12, 284, 6469, 9, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6476, 8, 284, 1, 284, 1, 284, 3, 284, 6480, 8, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 3, 285, 6487, 8, 285, 1, 285, 1, 285, 1, 285, 5, 285, 6492, 8, 285, 10, 285, 12, 285, 6495, 9, 285, 1, 286, 1, 286, 3, 286, 6499, 8, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 5, 287, 6510, 8, 287, 10, 287, 12, 287, 6513, 9, 287, 1, 288, 1, 288, 1, 288, 1, 288, 5, 288, 6519, 8, 288, 10, 288, 12, 288, 6522, 9, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6529, 8, 289, 1, 290, 1, 290, 1, 290, 3, 290, 6534, 8, 290, 1, 290, 3, 290, 6537, 8, 290, 1, 291, 1, 291, 1, 291, 3, 291, 6542, 8, 291, 1, 291, 3, 291, 6545, 8, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6557, 8, 294, 1, 295, 1, 295, 1, 295, 3, 295, 6562, 8, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6575, 8, 295, 3, 295, 6577, 8, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6582, 8, 295, 1, 295, 1, 295, 3, 295, 6586, 8, 295, 1, 295, 3, 295, 6589, 8, 295, 3, 295, 6591, 8, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6598, 8, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6605, 8, 297, 1, 297, 3, 297, 6608, 8, 297, 1, 297, 3, 297, 6611, 8, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6617, 8, 297, 1, 297, 1, 297, 3, 297, 6621, 8, 297, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6627, 8, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6635, 8, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6644, 8, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 3, 303, 6657, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6662, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 5, 303, 6668, 8, 303, 10, 303, 12, 303, 6671, 9, 303, 3, 303, 6673, 8, 303, 1, 304, 1, 304, 1, 304, 3, 304, 6678, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6683, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6689, 8, 304, 10, 304, 12, 304, 6692, 9, 304, 3, 304, 6694, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6702, 8, 305, 1, 306, 1, 306, 3, 306, 6706, 8, 306, 1, 306, 1, 306, 1, 306, 5, 306, 6711, 8, 306, 10, 306, 12, 306, 6714, 9, 306, 1, 307, 1, 307, 1, 307, 3, 307, 6719, 8, 307, 1, 307, 3, 307, 6722, 8, 307, 1, 308, 1, 308, 3, 308, 6726, 8, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 5, 308, 6737, 8, 308, 10, 308, 12, 308, 6740, 9, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6745, 8, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 5, 308, 6755, 8, 308, 10, 308, 12, 308, 6758, 9, 308, 3, 308, 6760, 8, 308, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6769, 8, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6774, 8, 310, 1, 311, 1, 311, 1, 312, 1, 312, 1, 313, 1, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 5, 318, 6793, 8, 318, 10, 318, 12, 318, 6796, 9, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 5, 323, 6809, 8, 323, 10, 323, 12, 323, 6812, 9, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6819, 8, 325, 10, 325, 12, 325, 6822, 9, 325, 1, 326, 1, 326, 3, 326, 6826, 8, 326, 1, 327, 1, 327, 1, 327, 3, 327, 6831, 8, 327, 3, 327, 6833, 8, 327, 1, 327, 3, 327, 6836, 8, 327, 1, 327, 1, 327, 3, 327, 6840, 8, 327, 3, 327, 6842, 8, 327, 1, 328, 1, 328, 1, 328, 5, 328, 6847, 8, 328, 10, 328, 12, 328, 6850, 9, 328, 1, 329, 1, 329, 1, 329, 3, 329, 6855, 8, 329, 3, 329, 6857, 8, 329, 1, 329, 3, 329, 6860, 8, 329, 1, 329, 1, 329, 3, 329, 6864, 8, 329, 1, 329, 3, 329, 6867, 8, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 5, 333, 6878, 8, 333, 10, 333, 12, 333, 6881, 9, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 6890, 8, 335, 1, 335, 3, 335, 6893, 8, 335, 1, 335, 3, 335, 6896, 8, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6909, 8, 338, 1, 339, 1, 339, 1, 340, 1, 340, 3, 340, 6915, 8, 340, 1, 340, 3, 340, 6918, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6926, 8, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 3, 344, 6933, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 4, 346, 6951, 8, 346, 11, 346, 12, 346, 6952, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 3, 347, 6960, 8, 347, 3, 347, 6962, 8, 347, 1, 348, 1, 348, 1, 348, 4, 348, 6967, 8, 348, 11, 348, 12, 348, 6968, 3, 348, 6971, 8, 348, 1, 349, 1, 349, 3, 349, 6975, 8, 349, 1, 350, 1, 350, 1, 350, 5, 350, 6980, 8, 350, 10, 350, 12, 350, 6983, 9, 350, 1, 351, 1, 351, 1, 351, 3, 351, 6988, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 6999, 8, 352, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7005, 8, 353, 1, 354, 1, 354, 1, 355, 1, 355, 3, 355, 7011, 8, 355, 1, 356, 3, 356, 7014, 8, 356, 1, 356, 1, 356, 3, 356, 7018, 8, 356, 1, 356, 4, 356, 7021, 8, 356, 11, 356, 12, 356, 7022, 1, 356, 3, 356, 7026, 8, 356, 1, 356, 1, 356, 3, 356, 7030, 8, 356, 1, 356, 1, 356, 3, 356, 7034, 8, 356, 3, 356, 7036, 8, 356, 1, 357, 1, 357, 1, 358, 3, 358, 7041, 8, 358, 1, 358, 1, 358, 1, 359, 3, 359, 7046, 8, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7059, 8, 360, 1, 360, 3, 360, 7062, 8, 360, 1, 361, 1, 361, 3, 361, 7066, 8, 361, 1, 361, 3, 361, 7069, 8, 361, 1, 361, 3, 361, 7072, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7077, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7082, 8, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7088, 8, 361, 1, 361, 3, 361, 7091, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7096, 8, 361, 1, 361, 3, 361, 7099, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7104, 8, 361, 1, 361, 3, 361, 7107, 8, 361, 1, 361, 1, 361, 3, 361, 7111, 8, 361, 1, 361, 5, 361, 7114, 8, 361, 10, 361, 12, 361, 7117, 9, 361, 1, 361, 1, 361, 3, 361, 7121, 8, 361, 1, 361, 5, 361, 7124, 8, 361, 10, 361, 12, 361, 7127, 9, 361, 1, 361, 1, 361, 3, 361, 7131, 8, 361, 1, 361, 3, 361, 7134, 8, 361, 1, 361, 5, 361, 7137, 8, 361, 10, 361, 12, 361, 7140, 9, 361, 1, 361, 1, 361, 3, 361, 7144, 8, 361, 1, 361, 5, 361, 7147, 8, 361, 10, 361, 12, 361, 7150, 9, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7155, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7160, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7165, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7170, 8, 361, 1, 361, 1, 361, 3, 361, 7174, 8, 361, 1, 361, 3, 361, 7177, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7182, 8, 361, 1, 361, 1, 361, 3, 361, 7186, 8, 361, 1, 361, 1, 361, 3, 361, 7190, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 5, 362, 7196, 8, 362, 10, 362, 12, 362, 7199, 9, 362, 1, 362, 1, 362, 1, 363, 1, 363, 3, 363, 7205, 8, 363, 1, 363, 1, 363, 3, 363, 7209, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7214, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7219, 8, 363, 1, 363, 1, 363, 3, 363, 7223, 8, 363, 3, 363, 7225, 8, 363, 1, 363, 3, 363, 7228, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 3, 366, 7244, 8, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 5, 367, 7252, 8, 367, 10, 367, 12, 367, 7255, 9, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 5, 368, 7262, 8, 368, 10, 368, 12, 368, 7265, 9, 368, 1, 369, 1, 369, 1, 369, 1, 369, 5, 369, 7271, 8, 369, 10, 369, 12, 369, 7274, 9, 369, 1, 370, 1, 370, 1, 370, 1, 370, 5, 370, 7280, 8, 370, 10, 370, 12, 370, 7283, 9, 370, 1, 370, 1, 370, 1, 371, 1, 371, 3, 371, 7289, 8, 371, 1, 372, 1, 372, 1, 372, 5, 372, 7294, 8, 372, 10, 372, 12, 372, 7297, 9, 372, 1, 373, 1, 373, 1, 373, 5, 373, 7302, 8, 373, 10, 373, 12, 373, 7305, 9, 373, 1, 374, 1, 374, 1, 374, 5, 374, 7310, 8, 374, 10, 374, 12, 374, 7313, 9, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7324, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7331, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7341, 8, 375, 1, 376, 1, 376, 1, 376, 3, 376, 7346, 8, 376, 1, 376, 3, 376, 7349, 8, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7354, 8, 376, 1, 376, 3, 376, 7357, 8, 376, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7379, 8, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7388, 8, 380, 1, 380, 3, 380, 7391, 8, 380, 1, 381, 1, 381, 1, 381, 3, 381, 7396, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 4, 381, 7428, 8, 381, 11, 381, 12, 381, 7429, 1, 381, 1, 381, 3, 381, 7434, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 4, 381, 7440, 8, 381, 11, 381, 12, 381, 7441, 1, 381, 1, 381, 3, 381, 7446, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7455, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7463, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7468, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7476, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7481, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7486, 8, 381, 3, 381, 7488, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7497, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7502, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7510, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7515, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7523, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7531, 8, 381, 1, 381, 3, 381, 7534, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7544, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7562, 8, 381, 1, 381, 3, 381, 7565, 8, 381, 1, 381, 3, 381, 7568, 8, 381, 1, 381, 1, 381, 3, 381, 7572, 8, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 5, 383, 7583, 8, 383, 10, 383, 12, 383, 7586, 9, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7593, 8, 383, 1, 384, 1, 384, 3, 384, 7597, 8, 384, 1, 385, 1, 385, 1, 385, 3, 385, 7602, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7607, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7613, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7618, 8, 385, 1, 385, 1, 385, 3, 385, 7622, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7627, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7632, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7637, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 5, 385, 7645, 8, 385, 10, 385, 12, 385, 7648, 9, 385, 3, 385, 7650, 8, 385, 1, 385, 1, 385, 3, 385, 7654, 8, 385, 1, 385, 1, 385, 3, 385, 7658, 8, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7665, 8, 386, 1, 386, 1, 386, 3, 386, 7669, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7698, 8, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7706, 8, 387, 1, 388, 3, 388, 7709, 8, 388, 1, 388, 3, 388, 7712, 8, 388, 1, 388, 3, 388, 7715, 8, 388, 1, 388, 3, 388, 7718, 8, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 3, 392, 7729, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7743, 8, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 5, 395, 7750, 8, 395, 10, 395, 12, 395, 7753, 9, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7779, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 5, 398, 7789, 8, 398, 10, 398, 12, 398, 7792, 9, 398, 1, 399, 1, 399, 1, 399, 3, 399, 7797, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7805, 8, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7810, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 5, 400, 7816, 8, 400, 10, 400, 12, 400, 7819, 9, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7826, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7839, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7845, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7851, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7866, 8, 401, 1, 401, 1, 401, 3, 401, 7870, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7876, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 5, 401, 7885, 8, 401, 10, 401, 12, 401, 7888, 9, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7906, 8, 402, 10, 402, 12, 402, 7909, 9, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 4, 402, 7918, 8, 402, 11, 402, 12, 402, 7919, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7938, 8, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7955, 8, 402, 10, 402, 12, 402, 7958, 9, 402, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7970, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7979, 8, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7988, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7997, 8, 407, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 8006, 8, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 412, 1, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 0, 5, 208, 210, 800, 802, 804, 417, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 76, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 578, 580, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9382, 0, 837, 1, 0, 0, 0, 2, 847, 1, 0, 0, 0, 4, 856, 1, 0, 0, 0, 6, 858, 1, 0, 0, 0, 8, 899, 1, 0, 0, 0, 10, 918, 1, 0, 0, 0, 12, 929, 1, 0, 0, 0, 14, 945, 1, 0, 0, 0, 16, 950, 1, 0, 0, 0, 18, 962, 1, 0, 0, 0, 20, 997, 1, 0, 0, 0, 22, 1007, 1, 0, 0, 0, 24, 1009, 1, 0, 0, 0, 26, 1021, 1, 0, 0, 0, 28, 1051, 1, 0, 0, 0, 30, 1087, 1, 0, 0, 0, 32, 1138, 1, 0, 0, 0, 34, 1167, 1, 0, 0, 0, 36, 1174, 1, 0, 0, 0, 38, 1271, 1, 0, 0, 0, 40, 1273, 1, 0, 0, 0, 42, 1310, 1, 0, 0, 0, 44, 1374, 1, 0, 0, 0, 46, 1396, 1, 0, 0, 0, 48, 1402, 1, 0, 0, 0, 50, 1424, 1, 0, 0, 0, 52, 1511, 1, 0, 0, 0, 54, 1518, 1, 0, 0, 0, 56, 1520, 1, 0, 0, 0, 58, 1525, 1, 0, 0, 0, 60, 1565, 1, 0, 0, 0, 62, 1571, 1, 0, 0, 0, 64, 1573, 1, 0, 0, 0, 66, 1594, 1, 0, 0, 0, 68, 1601, 1, 0, 0, 0, 70, 1603, 1, 0, 0, 0, 72, 1628, 1, 0, 0, 0, 74, 1631, 1, 0, 0, 0, 76, 1659, 1, 0, 0, 0, 78, 1675, 1, 0, 0, 0, 80, 1677, 1, 0, 0, 0, 82, 1771, 1, 0, 0, 0, 84, 1774, 1, 0, 0, 0, 86, 1786, 1, 0, 0, 0, 88, 1790, 1, 0, 0, 0, 90, 1840, 1, 0, 0, 0, 92, 1842, 1, 0, 0, 0, 94, 1870, 1, 0, 0, 0, 96, 1880, 1, 0, 0, 0, 98, 2067, 1, 0, 0, 0, 100, 2069, 1, 0, 0, 0, 102, 2071, 1, 0, 0, 0, 104, 2074, 1, 0, 0, 0, 106, 2149, 1, 0, 0, 0, 108, 2172, 1, 0, 0, 0, 110, 2320, 1, 0, 0, 0, 112, 2325, 1, 0, 0, 0, 114, 2327, 1, 0, 0, 0, 116, 2337, 1, 0, 0, 0, 118, 2393, 1, 0, 0, 0, 120, 2413, 1, 0, 0, 0, 122, 2415, 1, 0, 0, 0, 124, 2450, 1, 0, 0, 0, 126, 2459, 1, 0, 0, 0, 128, 2466, 1, 0, 0, 0, 130, 2489, 1, 0, 0, 0, 132, 2498, 1, 0, 0, 0, 134, 2513, 1, 0, 0, 0, 136, 2535, 1, 0, 0, 0, 138, 2591, 1, 0, 0, 0, 140, 2887, 1, 0, 0, 0, 142, 2987, 1, 0, 0, 0, 144, 2989, 1, 0, 0, 0, 146, 2996, 1, 0, 0, 0, 148, 3003, 1, 0, 0, 0, 150, 3026, 1, 0, 0, 0, 152, 3036, 1, 0, 0, 0, 154, 3043, 1, 0, 0, 0, 156, 3050, 1, 0, 0, 0, 158, 3057, 1, 0, 0, 0, 160, 3066, 1, 0, 0, 0, 162, 3078, 1, 0, 0, 0, 164, 3091, 1, 0, 0, 0, 166, 3098, 1, 0, 0, 0, 168, 3114, 1, 0, 0, 0, 170, 3141, 1, 0, 0, 0, 172, 3143, 1, 0, 0, 0, 174, 3153, 1, 0, 0, 0, 176, 3157, 1, 0, 0, 0, 178, 3163, 1, 0, 0, 0, 180, 3175, 1, 0, 0, 0, 182, 3177, 1, 0, 0, 0, 184, 3184, 1, 0, 0, 0, 186, 3186, 1, 0, 0, 0, 188, 3235, 1, 0, 0, 0, 190, 3244, 1, 0, 0, 0, 192, 3246, 1, 0, 0, 0, 194, 3257, 1, 0, 0, 0, 196, 3263, 1, 0, 0, 0, 198, 3337, 1, 0, 0, 0, 200, 3400, 1, 0, 0, 0, 202, 3418, 1, 0, 0, 0, 204, 3502, 1, 0, 0, 0, 206, 3505, 1, 0, 0, 0, 208, 3517, 1, 0, 0, 0, 210, 3537, 1, 0, 0, 0, 212, 3565, 1, 0, 0, 0, 214, 3569, 1, 0, 0, 0, 216, 3571, 1, 0, 0, 0, 218, 3581, 1, 0, 0, 0, 220, 3601, 1, 0, 0, 0, 222, 3608, 1, 0, 0, 0, 224, 3610, 1, 0, 0, 0, 226, 3621, 1, 0, 0, 0, 228, 3630, 1, 0, 0, 0, 230, 3636, 1, 0, 0, 0, 232, 3659, 1, 0, 0, 0, 234, 3661, 1, 0, 0, 0, 236, 3697, 1, 0, 0, 0, 238, 3752, 1, 0, 0, 0, 240, 3761, 1, 0, 0, 0, 242, 3781, 1, 0, 0, 0, 244, 3793, 1, 0, 0, 0, 246, 3797, 1, 0, 0, 0, 248, 3808, 1, 0, 0, 0, 250, 3841, 1, 0, 0, 0, 252, 3862, 1, 0, 0, 0, 254, 3872, 1, 0, 0, 0, 256, 3876, 1, 0, 0, 0, 258, 3902, 1, 0, 0, 0, 260, 3949, 1, 0, 0, 0, 262, 3951, 1, 0, 0, 0, 264, 3955, 1, 0, 0, 0, 266, 3972, 1, 0, 0, 0, 268, 4023, 1, 0, 0, 0, 270, 4032, 1, 0, 0, 0, 272, 4042, 1, 0, 0, 0, 274, 4044, 1, 0, 0, 0, 276, 4074, 1, 0, 0, 0, 278, 4082, 1, 0, 0, 0, 280, 4099, 1, 0, 0, 0, 282, 4115, 1, 0, 0, 0, 284, 4152, 1, 0, 0, 0, 286, 4158, 1, 0, 0, 0, 288, 4167, 1, 0, 0, 0, 290, 4180, 1, 0, 0, 0, 292, 4184, 1, 0, 0, 0, 294, 4222, 1, 0, 0, 0, 296, 4260, 1, 0, 0, 0, 298, 4274, 1, 0, 0, 0, 300, 4282, 1, 0, 0, 0, 302, 4286, 1, 0, 0, 0, 304, 4292, 1, 0, 0, 0, 306, 4306, 1, 0, 0, 0, 308, 4309, 1, 0, 0, 0, 310, 4327, 1, 0, 0, 0, 312, 4331, 1, 0, 0, 0, 314, 4347, 1, 0, 0, 0, 316, 4349, 1, 0, 0, 0, 318, 4361, 1, 0, 0, 0, 320, 4365, 1, 0, 0, 0, 322, 4382, 1, 0, 0, 0, 324, 4399, 1, 0, 0, 0, 326, 4402, 1, 0, 0, 0, 328, 4412, 1, 0, 0, 0, 330, 4416, 1, 0, 0, 0, 332, 4426, 1, 0, 0, 0, 334, 4429, 1, 0, 0, 0, 336, 4434, 1, 0, 0, 0, 338, 4454, 1, 0, 0, 0, 340, 4456, 1, 0, 0, 0, 342, 4473, 1, 0, 0, 0, 344, 4482, 1, 0, 0, 0, 346, 4491, 1, 0, 0, 0, 348, 4493, 1, 0, 0, 0, 350, 4507, 1, 0, 0, 0, 352, 4521, 1, 0, 0, 0, 354, 4536, 1, 0, 0, 0, 356, 4545, 1, 0, 0, 0, 358, 4570, 1, 0, 0, 0, 360, 4585, 1, 0, 0, 0, 362, 4604, 1, 0, 0, 0, 364, 4634, 1, 0, 0, 0, 366, 4636, 1, 0, 0, 0, 368, 4638, 1, 0, 0, 0, 370, 4640, 1, 0, 0, 0, 372, 4655, 1, 0, 0, 0, 374, 4684, 1, 0, 0, 0, 376, 4686, 1, 0, 0, 0, 378, 4688, 1, 0, 0, 0, 380, 4690, 1, 0, 0, 0, 382, 4705, 1, 0, 0, 0, 384, 4707, 1, 0, 0, 0, 386, 4774, 1, 0, 0, 0, 388, 4776, 1, 0, 0, 0, 390, 4782, 1, 0, 0, 0, 392, 4809, 1, 0, 0, 0, 394, 4823, 1, 0, 0, 0, 396, 4834, 1, 0, 0, 0, 398, 4836, 1, 0, 0, 0, 400, 4842, 1, 0, 0, 0, 402, 4852, 1, 0, 0, 0, 404, 4856, 1, 0, 0, 0, 406, 4863, 1, 0, 0, 0, 408, 4867, 1, 0, 0, 0, 410, 4873, 1, 0, 0, 0, 412, 4880, 1, 0, 0, 0, 414, 4886, 1, 0, 0, 0, 416, 4892, 1, 0, 0, 0, 418, 4897, 1, 0, 0, 0, 420, 4942, 1, 0, 0, 0, 422, 4963, 1, 0, 0, 0, 424, 4988, 1, 0, 0, 0, 426, 4991, 1, 0, 0, 0, 428, 4997, 1, 0, 0, 0, 430, 5013, 1, 0, 0, 0, 432, 5028, 1, 0, 0, 0, 434, 5034, 1, 0, 0, 0, 436, 5064, 1, 0, 0, 0, 438, 5066, 1, 0, 0, 0, 440, 5073, 1, 0, 0, 0, 442, 5085, 1, 0, 0, 0, 444, 5091, 1, 0, 0, 0, 446, 5116, 1, 0, 0, 0, 448, 5120, 1, 0, 0, 0, 450, 5124, 1, 0, 0, 0, 452, 5135, 1, 0, 0, 0, 454, 5143, 1, 0, 0, 0, 456, 5206, 1, 0, 0, 0, 458, 5265, 1, 0, 0, 0, 460, 5367, 1, 0, 0, 0, 462, 5377, 1, 0, 0, 0, 464, 5379, 1, 0, 0, 0, 466, 5397, 1, 0, 0, 0, 468, 5421, 1, 0, 0, 0, 470, 5445, 1, 0, 0, 0, 472, 5452, 1, 0, 0, 0, 474, 5472, 1, 0, 0, 0, 476, 5481, 1, 0, 0, 0, 478, 5543, 1, 0, 0, 0, 480, 5545, 1, 0, 0, 0, 482, 5549, 1, 0, 0, 0, 484, 5583, 1, 0, 0, 0, 486, 5585, 1, 0, 0, 0, 488, 5588, 1, 0, 0, 0, 490, 5652, 1, 0, 0, 0, 492, 5671, 1, 0, 0, 0, 494, 5698, 1, 0, 0, 0, 496, 5702, 1, 0, 0, 0, 498, 5723, 1, 0, 0, 0, 500, 5733, 1, 0, 0, 0, 502, 5743, 1, 0, 0, 0, 504, 5783, 1, 0, 0, 0, 506, 5785, 1, 0, 0, 0, 508, 5788, 1, 0, 0, 0, 510, 5818, 1, 0, 0, 0, 512, 5820, 1, 0, 0, 0, 514, 5823, 1, 0, 0, 0, 516, 5923, 1, 0, 0, 0, 518, 5941, 1, 0, 0, 0, 520, 5943, 1, 0, 0, 0, 522, 5995, 1, 0, 0, 0, 524, 5997, 1, 0, 0, 0, 526, 6006, 1, 0, 0, 0, 528, 6012, 1, 0, 0, 0, 530, 6019, 1, 0, 0, 0, 532, 6034, 1, 0, 0, 0, 534, 6043, 1, 0, 0, 0, 536, 6045, 1, 0, 0, 0, 538, 6059, 1, 0, 0, 0, 540, 6080, 1, 0, 0, 0, 542, 6085, 1, 0, 0, 0, 544, 6095, 1, 0, 0, 0, 546, 6101, 1, 0, 0, 0, 548, 6135, 1, 0, 0, 0, 550, 6189, 1, 0, 0, 0, 552, 6375, 1, 0, 0, 0, 554, 6387, 1, 0, 0, 0, 556, 6403, 1, 0, 0, 0, 558, 6409, 1, 0, 0, 0, 560, 6428, 1, 0, 0, 0, 562, 6441, 1, 0, 0, 0, 564, 6455, 1, 0, 0, 0, 566, 6457, 1, 0, 0, 0, 568, 6460, 1, 0, 0, 0, 570, 6484, 1, 0, 0, 0, 572, 6496, 1, 0, 0, 0, 574, 6502, 1, 0, 0, 0, 576, 6514, 1, 0, 0, 0, 578, 6528, 1, 0, 0, 0, 580, 6530, 1, 0, 0, 0, 582, 6538, 1, 0, 0, 0, 584, 6546, 1, 0, 0, 0, 586, 6548, 1, 0, 0, 0, 588, 6550, 1, 0, 0, 0, 590, 6590, 1, 0, 0, 0, 592, 6597, 1, 0, 0, 0, 594, 6599, 1, 0, 0, 0, 596, 6622, 1, 0, 0, 0, 598, 6628, 1, 0, 0, 0, 600, 6638, 1, 0, 0, 0, 602, 6647, 1, 0, 0, 0, 604, 6650, 1, 0, 0, 0, 606, 6653, 1, 0, 0, 0, 608, 6674, 1, 0, 0, 0, 610, 6695, 1, 0, 0, 0, 612, 6703, 1, 0, 0, 0, 614, 6715, 1, 0, 0, 0, 616, 6723, 1, 0, 0, 0, 618, 6761, 1, 0, 0, 0, 620, 6773, 1, 0, 0, 0, 622, 6775, 1, 0, 0, 0, 624, 6777, 1, 0, 0, 0, 626, 6779, 1, 0, 0, 0, 628, 6781, 1, 0, 0, 0, 630, 6783, 1, 0, 0, 0, 632, 6785, 1, 0, 0, 0, 634, 6787, 1, 0, 0, 0, 636, 6789, 1, 0, 0, 0, 638, 6797, 1, 0, 0, 0, 640, 6799, 1, 0, 0, 0, 642, 6801, 1, 0, 0, 0, 644, 6803, 1, 0, 0, 0, 646, 6805, 1, 0, 0, 0, 648, 6813, 1, 0, 0, 0, 650, 6815, 1, 0, 0, 0, 652, 6825, 1, 0, 0, 0, 654, 6841, 1, 0, 0, 0, 656, 6843, 1, 0, 0, 0, 658, 6866, 1, 0, 0, 0, 660, 6868, 1, 0, 0, 0, 662, 6870, 1, 0, 0, 0, 664, 6872, 1, 0, 0, 0, 666, 6874, 1, 0, 0, 0, 668, 6882, 1, 0, 0, 0, 670, 6892, 1, 0, 0, 0, 672, 6897, 1, 0, 0, 0, 674, 6901, 1, 0, 0, 0, 676, 6908, 1, 0, 0, 0, 678, 6910, 1, 0, 0, 0, 680, 6917, 1, 0, 0, 0, 682, 6919, 1, 0, 0, 0, 684, 6925, 1, 0, 0, 0, 686, 6927, 1, 0, 0, 0, 688, 6932, 1, 0, 0, 0, 690, 6934, 1, 0, 0, 0, 692, 6936, 1, 0, 0, 0, 694, 6954, 1, 0, 0, 0, 696, 6970, 1, 0, 0, 0, 698, 6972, 1, 0, 0, 0, 700, 6976, 1, 0, 0, 0, 702, 6987, 1, 0, 0, 0, 704, 6998, 1, 0, 0, 0, 706, 7004, 1, 0, 0, 0, 708, 7006, 1, 0, 0, 0, 710, 7010, 1, 0, 0, 0, 712, 7035, 1, 0, 0, 0, 714, 7037, 1, 0, 0, 0, 716, 7040, 1, 0, 0, 0, 718, 7045, 1, 0, 0, 0, 720, 7061, 1, 0, 0, 0, 722, 7189, 1, 0, 0, 0, 724, 7191, 1, 0, 0, 0, 726, 7224, 1, 0, 0, 0, 728, 7229, 1, 0, 0, 0, 730, 7233, 1, 0, 0, 0, 732, 7239, 1, 0, 0, 0, 734, 7247, 1, 0, 0, 0, 736, 7258, 1, 0, 0, 0, 738, 7266, 1, 0, 0, 0, 740, 7275, 1, 0, 0, 0, 742, 7288, 1, 0, 0, 0, 744, 7290, 1, 0, 0, 0, 746, 7298, 1, 0, 0, 0, 748, 7306, 1, 0, 0, 0, 750, 7340, 1, 0, 0, 0, 752, 7356, 1, 0, 0, 0, 754, 7358, 1, 0, 0, 0, 756, 7361, 1, 0, 0, 0, 758, 7365, 1, 0, 0, 0, 760, 7390, 1, 0, 0, 0, 762, 7571, 1, 0, 0, 0, 764, 7573, 1, 0, 0, 0, 766, 7592, 1, 0, 0, 0, 768, 7594, 1, 0, 0, 0, 770, 7657, 1, 0, 0, 0, 772, 7697, 1, 0, 0, 0, 774, 7699, 1, 0, 0, 0, 776, 7708, 1, 0, 0, 0, 778, 7719, 1, 0, 0, 0, 780, 7721, 1, 0, 0, 0, 782, 7724, 1, 0, 0, 0, 784, 7728, 1, 0, 0, 0, 786, 7730, 1, 0, 0, 0, 788, 7742, 1, 0, 0, 0, 790, 7744, 1, 0, 0, 0, 792, 7778, 1, 0, 0, 0, 794, 7780, 1, 0, 0, 0, 796, 7785, 1, 0, 0, 0, 798, 7796, 1, 0, 0, 0, 800, 7809, 1, 0, 0, 0, 802, 7820, 1, 0, 0, 0, 804, 7937, 1, 0, 0, 0, 806, 7959, 1, 0, 0, 0, 808, 7969, 1, 0, 0, 0, 810, 7978, 1, 0, 0, 0, 812, 7987, 1, 0, 0, 0, 814, 7996, 1, 0, 0, 0, 816, 7998, 1, 0, 0, 0, 818, 8005, 1, 0, 0, 0, 820, 8007, 1, 0, 0, 0, 822, 8009, 1, 0, 0, 0, 824, 8011, 1, 0, 0, 0, 826, 8013, 1, 0, 0, 0, 828, 8015, 1, 0, 0, 0, 830, 8017, 1, 0, 0, 0, 832, 8019, 1, 0, 0, 0, 834, 836, 3, 2, 1, 0, 835, 834, 1, 0, 0, 0, 836, 839, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 840, 841, 5, 0, 0, 1, 841, 1, 1, 0, 0, 0, 842, 844, 3, 4, 2, 0, 843, 845, 5, 869, 0, 0, 844, 843, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 848, 3, 6, 3, 0, 847, 842, 1, 0, 0, 0, 847, 846, 1, 0, 0, 0, 848, 3, 1, 0, 0, 0, 849, 857, 3, 8, 4, 0, 850, 857, 3, 10, 5, 0, 851, 857, 3, 12, 6, 0, 852, 857, 3, 14, 7, 0, 853, 857, 3, 16, 8, 0, 854, 857, 3, 20, 10, 0, 855, 857, 3, 22, 11, 0, 856, 849, 1, 0, 0, 0, 856, 850, 1, 0, 0, 0, 856, 851, 1, 0, 0, 0, 856, 852, 1, 0, 0, 0, 856, 853, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 856, 855, 1, 0, 0, 0, 857, 5, 1, 0, 0, 0, 858, 859, 5, 869, 0, 0, 859, 7, 1, 0, 0, 0, 860, 900, 3, 24, 12, 0, 861, 900, 3, 26, 13, 0, 862, 900, 3, 28, 14, 0, 863, 900, 3, 30, 15, 0, 864, 900, 3, 32, 16, 0, 865, 900, 3, 536, 268, 0, 866, 900, 3, 36, 18, 0, 867, 900, 3, 38, 19, 0, 868, 900, 3, 40, 20, 0, 869, 900, 3, 42, 21, 0, 870, 900, 3, 44, 22, 0, 871, 900, 3, 50, 25, 0, 872, 900, 3, 34, 17, 0, 873, 900, 3, 120, 60, 0, 874, 900, 3, 122, 61, 0, 875, 900, 3, 124, 62, 0, 876, 900, 3, 126, 63, 0, 877, 900, 3, 128, 64, 0, 878, 900, 3, 130, 65, 0, 879, 900, 3, 132, 66, 0, 880, 900, 3, 134, 67, 0, 881, 900, 3, 136, 68, 0, 882, 900, 3, 138, 69, 0, 883, 900, 3, 144, 72, 0, 884, 900, 3, 146, 73, 0, 885, 900, 3, 148, 74, 0, 886, 900, 3, 150, 75, 0, 887, 900, 3, 152, 76, 0, 888, 900, 3, 154, 77, 0, 889, 900, 3, 156, 78, 0, 890, 900, 3, 158, 79, 0, 891, 900, 3, 160, 80, 0, 892, 900, 3, 162, 81, 0, 893, 900, 3, 164, 82, 0, 894, 900, 3, 166, 83, 0, 895, 900, 3, 168, 84, 0, 896, 900, 3, 170, 85, 0, 897, 900, 3, 172, 86, 0, 898, 900, 3, 176, 88, 0, 899, 860, 1, 0, 0, 0, 899, 861, 1, 0, 0, 0, 899, 862, 1, 0, 0, 0, 899, 863, 1, 0, 0, 0, 899, 864, 1, 0, 0, 0, 899, 865, 1, 0, 0, 0, 899, 866, 1, 0, 0, 0, 899, 867, 1, 0, 0, 0, 899, 868, 1, 0, 0, 0, 899, 869, 1, 0, 0, 0, 899, 870, 1, 0, 0, 0, 899, 871, 1, 0, 0, 0, 899, 872, 1, 0, 0, 0, 899, 873, 1, 0, 0, 0, 899, 874, 1, 0, 0, 0, 899, 875, 1, 0, 0, 0, 899, 876, 1, 0, 0, 0, 899, 877, 1, 0, 0, 0, 899, 878, 1, 0, 0, 0, 899, 879, 1, 0, 0, 0, 899, 880, 1, 0, 0, 0, 899, 881, 1, 0, 0, 0, 899, 882, 1, 0, 0, 0, 899, 883, 1, 0, 0, 0, 899, 884, 1, 0, 0, 0, 899, 885, 1, 0, 0, 0, 899, 886, 1, 0, 0, 0, 899, 887, 1, 0, 0, 0, 899, 888, 1, 0, 0, 0, 899, 889, 1, 0, 0, 0, 899, 890, 1, 0, 0, 0, 899, 891, 1, 0, 0, 0, 899, 892, 1, 0, 0, 0, 899, 893, 1, 0, 0, 0, 899, 894, 1, 0, 0, 0, 899, 895, 1, 0, 0, 0, 899, 896, 1, 0, 0, 0, 899, 897, 1, 0, 0, 0, 899, 898, 1, 0, 0, 0, 900, 9, 1, 0, 0, 0, 901, 919, 3, 204, 102, 0, 902, 919, 3, 206, 103, 0, 903, 919, 3, 186, 93, 0, 904, 919, 3, 214, 107, 0, 905, 919, 3, 180, 90, 0, 906, 919, 3, 202, 101, 0, 907, 919, 3, 178, 89, 0, 908, 919, 3, 192, 96, 0, 909, 919, 3, 196, 98, 0, 910, 919, 3, 198, 99, 0, 911, 919, 3, 200, 100, 0, 912, 919, 3, 182, 91, 0, 913, 919, 3, 184, 92, 0, 914, 919, 3, 246, 123, 0, 915, 919, 3, 216, 108, 0, 916, 919, 3, 612, 306, 0, 917, 919, 3, 614, 307, 0, 918, 901, 1, 0, 0, 0, 918, 902, 1, 0, 0, 0, 918, 903, 1, 0, 0, 0, 918, 904, 1, 0, 0, 0, 918, 905, 1, 0, 0, 0, 918, 906, 1, 0, 0, 0, 918, 907, 1, 0, 0, 0, 918, 908, 1, 0, 0, 0, 918, 909, 1, 0, 0, 0, 918, 910, 1, 0, 0, 0, 918, 911, 1, 0, 0, 0, 918, 912, 1, 0, 0, 0, 918, 913, 1, 0, 0, 0, 918, 914, 1, 0, 0, 0, 918, 915, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 917, 1, 0, 0, 0, 919, 11, 1, 0, 0, 0, 920, 930, 3, 316, 158, 0, 921, 930, 3, 318, 159, 0, 922, 930, 3, 320, 160, 0, 923, 930, 3, 322, 161, 0, 924, 930, 3, 324, 162, 0, 925, 930, 3, 326, 163, 0, 926, 930, 3, 328, 164, 0, 927, 930, 3, 330, 165, 0, 928, 930, 3, 332, 166, 0, 929, 920, 1, 0, 0, 0, 929, 921, 1, 0, 0, 0, 929, 922, 1, 0, 0, 0, 929, 923, 1, 0, 0, 0, 929, 924, 1, 0, 0, 0, 929, 925, 1, 0, 0, 0, 929, 926, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 929, 928, 1, 0, 0, 0, 930, 13, 1, 0, 0, 0, 931, 946, 3, 348, 174, 0, 932, 946, 3, 350, 175, 0, 933, 946, 3, 352, 176, 0, 934, 946, 3, 354, 177, 0, 935, 946, 3, 356, 178, 0, 936, 946, 3, 358, 179, 0, 937, 946, 3, 360, 180, 0, 938, 946, 3, 362, 181, 0, 939, 946, 3, 398, 199, 0, 940, 946, 3, 400, 200, 0, 941, 946, 3, 402, 201, 0, 942, 946, 3, 404, 202, 0, 943, 946, 3, 406, 203, 0, 944, 946, 3, 408, 204, 0, 945, 931, 1, 0, 0, 0, 945, 932, 1, 0, 0, 0, 945, 933, 1, 0, 0, 0, 945, 934, 1, 0, 0, 0, 945, 935, 1, 0, 0, 0, 945, 936, 1, 0, 0, 0, 945, 937, 1, 0, 0, 0, 945, 938, 1, 0, 0, 0, 945, 939, 1, 0, 0, 0, 945, 940, 1, 0, 0, 0, 945, 941, 1, 0, 0, 0, 945, 942, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 944, 1, 0, 0, 0, 946, 15, 1, 0, 0, 0, 947, 951, 3, 410, 205, 0, 948, 951, 3, 412, 206, 0, 949, 951, 3, 414, 207, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 949, 1, 0, 0, 0, 951, 17, 1, 0, 0, 0, 952, 963, 3, 418, 209, 0, 953, 963, 3, 420, 210, 0, 954, 963, 3, 422, 211, 0, 955, 963, 3, 426, 213, 0, 956, 963, 3, 428, 214, 0, 957, 963, 3, 430, 215, 0, 958, 963, 3, 434, 217, 0, 959, 963, 3, 424, 212, 0, 960, 963, 3, 432, 216, 0, 961, 963, 3, 436, 218, 0, 962, 952, 1, 0, 0, 0, 962, 953, 1, 0, 0, 0, 962, 954, 1, 0, 0, 0, 962, 955, 1, 0, 0, 0, 962, 956, 1, 0, 0, 0, 962, 957, 1, 0, 0, 0, 962, 958, 1, 0, 0, 0, 962, 959, 1, 0, 0, 0, 962, 960, 1, 0, 0, 0, 962, 961, 1, 0, 0, 0, 963, 19, 1, 0, 0, 0, 964, 998, 3, 454, 227, 0, 965, 998, 3, 456, 228, 0, 966, 998, 3, 458, 229, 0, 967, 998, 3, 460, 230, 0, 968, 998, 3, 464, 232, 0, 969, 998, 3, 476, 238, 0, 970, 998, 3, 478, 239, 0, 971, 998, 3, 466, 233, 0, 972, 998, 3, 468, 234, 0, 973, 998, 3, 470, 235, 0, 974, 998, 3, 472, 236, 0, 975, 998, 3, 522, 261, 0, 976, 998, 3, 524, 262, 0, 977, 998, 3, 526, 263, 0, 978, 998, 3, 528, 264, 0, 979, 998, 3, 530, 265, 0, 980, 998, 3, 538, 269, 0, 981, 998, 3, 542, 271, 0, 982, 998, 3, 544, 272, 0, 983, 998, 3, 546, 273, 0, 984, 998, 3, 548, 274, 0, 985, 998, 3, 550, 275, 0, 986, 998, 3, 552, 276, 0, 987, 998, 3, 566, 283, 0, 988, 998, 3, 568, 284, 0, 989, 998, 3, 570, 285, 0, 990, 998, 3, 572, 286, 0, 991, 998, 3, 574, 287, 0, 992, 998, 3, 576, 288, 0, 993, 998, 3, 580, 290, 0, 994, 998, 3, 582, 291, 0, 995, 998, 3, 584, 292, 0, 996, 998, 3, 586, 293, 0, 997, 964, 1, 0, 0, 0, 997, 965, 1, 0, 0, 0, 997, 966, 1, 0, 0, 0, 997, 967, 1, 0, 0, 0, 997, 968, 1, 0, 0, 0, 997, 969, 1, 0, 0, 0, 997, 970, 1, 0, 0, 0, 997, 971, 1, 0, 0, 0, 997, 972, 1, 0, 0, 0, 997, 973, 1, 0, 0, 0, 997, 974, 1, 0, 0, 0, 997, 975, 1, 0, 0, 0, 997, 976, 1, 0, 0, 0, 997, 977, 1, 0, 0, 0, 997, 978, 1, 0, 0, 0, 997, 979, 1, 0, 0, 0, 997, 980, 1, 0, 0, 0, 997, 981, 1, 0, 0, 0, 997, 982, 1, 0, 0, 0, 997, 983, 1, 0, 0, 0, 997, 984, 1, 0, 0, 0, 997, 985, 1, 0, 0, 0, 997, 986, 1, 0, 0, 0, 997, 987, 1, 0, 0, 0, 997, 988, 1, 0, 0, 0, 997, 989, 1, 0, 0, 0, 997, 990, 1, 0, 0, 0, 997, 991, 1, 0, 0, 0, 997, 992, 1, 0, 0, 0, 997, 993, 1, 0, 0, 0, 997, 994, 1, 0, 0, 0, 997, 995, 1, 0, 0, 0, 997, 996, 1, 0, 0, 0, 998, 21, 1, 0, 0, 0, 999, 1008, 3, 598, 299, 0, 1000, 1008, 3, 596, 298, 0, 1001, 1008, 3, 600, 300, 0, 1002, 1008, 3, 602, 301, 0, 1003, 1008, 3, 604, 302, 0, 1004, 1008, 3, 606, 303, 0, 1005, 1008, 3, 608, 304, 0, 1006, 1008, 3, 616, 308, 0, 1007, 999, 1, 0, 0, 0, 1007, 1000, 1, 0, 0, 0, 1007, 1001, 1, 0, 0, 0, 1007, 1002, 1, 0, 0, 0, 1007, 1003, 1, 0, 0, 0, 1007, 1004, 1, 0, 0, 0, 1007, 1005, 1, 0, 0, 0, 1007, 1006, 1, 0, 0, 0, 1008, 23, 1, 0, 0, 0, 1009, 1010, 5, 34, 0, 0, 1010, 1012, 7, 0, 0, 0, 1011, 1013, 3, 756, 378, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1018, 3, 622, 311, 0, 1015, 1017, 3, 52, 26, 0, 1016, 1015, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 25, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1021, 1023, 5, 34, 0, 0, 1022, 1024, 3, 58, 29, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 5, 385, 0, 0, 1026, 1028, 3, 756, 378, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 3, 698, 349, 0, 1030, 1031, 5, 119, 0, 0, 1031, 1032, 5, 590, 0, 0, 1032, 1039, 3, 60, 30, 0, 1033, 1034, 5, 119, 0, 0, 1034, 1036, 5, 343, 0, 0, 1035, 1037, 5, 114, 0, 0, 1036, 1035, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1040, 5, 541, 0, 0, 1039, 1033, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1042, 1, 0, 0, 0, 1041, 1043, 3, 68, 34, 0, 1042, 1041, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1045, 5, 340, 0, 0, 1045, 1047, 5, 882, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 5, 371, 0, 0, 1049, 1050, 3, 416, 208, 0, 1050, 27, 1, 0, 0, 0, 1051, 1053, 5, 34, 0, 0, 1052, 1054, 7, 1, 0, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1056, 1, 0, 0, 0, 1055, 1057, 7, 2, 0, 0, 1056, 1055, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 5, 82, 0, 0, 1059, 1061, 3, 634, 317, 0, 1060, 1062, 3, 70, 35, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 5, 119, 0, 0, 1064, 1065, 3, 648, 324, 0, 1065, 1069, 3, 734, 367, 0, 1066, 1068, 3, 72, 36, 0, 1067, 1066, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1084, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1072, 1074, 5, 308, 0, 0, 1073, 1075, 5, 857, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1083, 7, 3, 0, 0, 1077, 1079, 5, 104, 0, 0, 1078, 1080, 5, 857, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1083, 7, 4, 0, 0, 1082, 1072, 1, 0, 0, 0, 1082, 1077, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 29, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1088, 5, 34, 0, 0, 1088, 1089, 5, 451, 0, 0, 1089, 1090, 5, 74, 0, 0, 1090, 1091, 3, 702, 351, 0, 1091, 1092, 5, 6, 0, 0, 1092, 1093, 5, 671, 0, 0, 1093, 1099, 5, 882, 0, 0, 1094, 1096, 5, 428, 0, 0, 1095, 1097, 5, 857, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 3, 710, 355, 0, 1099, 1094, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1106, 1, 0, 0, 0, 1101, 1103, 5, 672, 0, 0, 1102, 1104, 5, 857, 0, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1107, 3, 710, 355, 0, 1106, 1101, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1113, 1, 0, 0, 0, 1108, 1110, 5, 553, 0, 0, 1109, 1111, 5, 857, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 3, 710, 355, 0, 1113, 1108, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1120, 1, 0, 0, 0, 1115, 1117, 5, 504, 0, 0, 1116, 1118, 5, 857, 0, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1121, 3, 702, 351, 0, 1120, 1115, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1123, 1, 0, 0, 0, 1122, 1124, 5, 687, 0, 0, 1123, 1122, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1130, 1, 0, 0, 0, 1125, 1127, 5, 340, 0, 0, 1126, 1128, 5, 857, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1131, 5, 882, 0, 0, 1130, 1125, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1134, 5, 380, 0, 0, 1133, 1135, 5, 857, 0, 0, 1134, 1133, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 3, 688, 344, 0, 1137, 31, 1, 0, 0, 0, 1138, 1140, 5, 34, 0, 0, 1139, 1141, 3, 58, 29, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1144, 5, 132, 0, 0, 1143, 1145, 3, 756, 378, 0, 1144, 1143, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 3, 698, 349, 0, 1147, 1149, 5, 866, 0, 0, 1148, 1150, 3, 74, 37, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1155, 1, 0, 0, 0, 1151, 1152, 5, 868, 0, 0, 1152, 1154, 3, 74, 37, 0, 1153, 1151, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1158, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1162, 5, 867, 0, 0, 1159, 1161, 3, 76, 38, 0, 1160, 1159, 1, 0, 0, 0, 1161, 1164, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1165, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1166, 3, 416, 208, 0, 1166, 33, 1, 0, 0, 0, 1167, 1168, 5, 34, 0, 0, 1168, 1170, 5, 582, 0, 0, 1169, 1171, 3, 756, 378, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 3, 650, 325, 0, 1173, 35, 1, 0, 0, 0, 1174, 1175, 5, 34, 0, 0, 1175, 1176, 5, 592, 0, 0, 1176, 1177, 3, 702, 351, 0, 1177, 1178, 5, 67, 0, 0, 1178, 1179, 5, 360, 0, 0, 1179, 1180, 5, 692, 0, 0, 1180, 1181, 7, 5, 0, 0, 1181, 1182, 5, 518, 0, 0, 1182, 1183, 5, 866, 0, 0, 1183, 1188, 3, 78, 39, 0, 1184, 1185, 5, 868, 0, 0, 1185, 1187, 3, 78, 39, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1191, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1192, 5, 867, 0, 0, 1192, 37, 1, 0, 0, 0, 1193, 1195, 5, 34, 0, 0, 1194, 1196, 5, 660, 0, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1199, 5, 173, 0, 0, 1198, 1200, 3, 756, 378, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1203, 3, 644, 322, 0, 1202, 1204, 3, 80, 40, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1215, 1, 0, 0, 0, 1205, 1212, 3, 98, 49, 0, 1206, 1208, 5, 868, 0, 0, 1207, 1206, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1211, 3, 98, 49, 0, 1210, 1207, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1216, 1, 0, 0, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1205, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1218, 1, 0, 0, 0, 1217, 1219, 3, 104, 52, 0, 1218, 1217, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1221, 1, 0, 0, 0, 1220, 1222, 7, 6, 0, 0, 1221, 1220, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 1, 0, 0, 0, 1223, 1225, 5, 13, 0, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 3, 204, 102, 0, 1227, 1272, 1, 0, 0, 0, 1228, 1230, 5, 34, 0, 0, 1229, 1231, 5, 660, 0, 0, 1230, 1229, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1234, 5, 173, 0, 0, 1233, 1235, 3, 756, 378, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1244, 3, 644, 322, 0, 1237, 1238, 5, 99, 0, 0, 1238, 1245, 3, 648, 324, 0, 1239, 1240, 5, 866, 0, 0, 1240, 1241, 5, 99, 0, 0, 1241, 1242, 3, 648, 324, 0, 1242, 1243, 5, 867, 0, 0, 1243, 1245, 1, 0, 0, 0, 1244, 1237, 1, 0, 0, 0, 1244, 1239, 1, 0, 0, 0, 1245, 1272, 1, 0, 0, 0, 1246, 1248, 5, 34, 0, 0, 1247, 1249, 5, 660, 0, 0, 1248, 1247, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1252, 5, 173, 0, 0, 1251, 1253, 3, 756, 378, 0, 1252, 1251, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1255, 3, 644, 322, 0, 1255, 1266, 3, 80, 40, 0, 1256, 1263, 3, 98, 49, 0, 1257, 1259, 5, 868, 0, 0, 1258, 1257, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1262, 3, 98, 49, 0, 1261, 1258, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1267, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1256, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1270, 3, 104, 52, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1272, 1, 0, 0, 0, 1271, 1193, 1, 0, 0, 0, 1271, 1228, 1, 0, 0, 0, 1271, 1246, 1, 0, 0, 0, 1272, 39, 1, 0, 0, 0, 1273, 1275, 5, 34, 0, 0, 1274, 1276, 5, 180, 0, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1278, 5, 658, 0, 0, 1278, 1282, 3, 660, 330, 0, 1279, 1280, 5, 6, 0, 0, 1280, 1281, 5, 361, 0, 0, 1281, 1283, 5, 882, 0, 0, 1282, 1279, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1289, 1, 0, 0, 0, 1284, 1286, 5, 314, 0, 0, 1285, 1287, 5, 857, 0, 0, 1286, 1285, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 3, 710, 355, 0, 1289, 1284, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1294, 1, 0, 0, 0, 1291, 1292, 5, 399, 0, 0, 1292, 1293, 5, 857, 0, 0, 1293, 1295, 3, 710, 355, 0, 1294, 1291, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1301, 1, 0, 0, 0, 1296, 1298, 5, 380, 0, 0, 1297, 1299, 5, 857, 0, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 3, 688, 344, 0, 1301, 1296, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1308, 1, 0, 0, 0, 1303, 1305, 5, 825, 0, 0, 1304, 1306, 5, 857, 0, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1309, 5, 882, 0, 0, 1308, 1303, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 41, 1, 0, 0, 0, 1310, 1312, 5, 34, 0, 0, 1311, 1313, 5, 180, 0, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 5, 658, 0, 0, 1315, 1316, 3, 660, 330, 0, 1316, 1317, 5, 6, 0, 0, 1317, 1318, 5, 361, 0, 0, 1318, 1319, 5, 882, 0, 0, 1319, 1320, 5, 187, 0, 0, 1320, 1321, 5, 451, 0, 0, 1321, 1322, 5, 74, 0, 0, 1322, 1328, 3, 702, 351, 0, 1323, 1325, 5, 393, 0, 0, 1324, 1326, 5, 857, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1329, 3, 710, 355, 0, 1328, 1323, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1335, 1, 0, 0, 0, 1330, 1332, 5, 428, 0, 0, 1331, 1333, 5, 857, 0, 0, 1332, 1331, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1336, 3, 710, 355, 0, 1335, 1330, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1342, 1, 0, 0, 0, 1337, 1339, 5, 314, 0, 0, 1338, 1340, 5, 857, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1343, 3, 710, 355, 0, 1342, 1337, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1349, 1, 0, 0, 0, 1344, 1346, 5, 481, 0, 0, 1345, 1347, 5, 857, 0, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1350, 3, 710, 355, 0, 1349, 1344, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1356, 1, 0, 0, 0, 1351, 1353, 5, 504, 0, 0, 1352, 1354, 5, 857, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1357, 3, 702, 351, 0, 1356, 1351, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1359, 1, 0, 0, 0, 1358, 1360, 5, 687, 0, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1366, 1, 0, 0, 0, 1361, 1363, 5, 340, 0, 0, 1362, 1364, 5, 857, 0, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 5, 882, 0, 0, 1366, 1361, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1370, 5, 380, 0, 0, 1369, 1371, 5, 857, 0, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 3, 688, 344, 0, 1373, 43, 1, 0, 0, 0, 1374, 1376, 5, 34, 0, 0, 1375, 1377, 3, 58, 29, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1380, 5, 178, 0, 0, 1379, 1381, 3, 756, 378, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1383, 3, 698, 349, 0, 1383, 1384, 7, 7, 0, 0, 1384, 1385, 7, 8, 0, 0, 1385, 1386, 5, 119, 0, 0, 1386, 1387, 3, 648, 324, 0, 1387, 1388, 5, 65, 0, 0, 1388, 1389, 5, 52, 0, 0, 1389, 1392, 5, 586, 0, 0, 1390, 1391, 7, 9, 0, 0, 1391, 1393, 3, 698, 349, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1395, 3, 416, 208, 0, 1395, 45, 1, 0, 0, 0, 1396, 1398, 5, 194, 0, 0, 1397, 1399, 5, 552, 0, 0, 1398, 1397, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 3, 48, 24, 0, 1401, 47, 1, 0, 0, 0, 1402, 1414, 3, 702, 351, 0, 1403, 1404, 5, 866, 0, 0, 1404, 1409, 3, 702, 351, 0, 1405, 1406, 5, 868, 0, 0, 1406, 1408, 3, 702, 351, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1411, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1412, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1413, 5, 867, 0, 0, 1413, 1415, 1, 0, 0, 0, 1414, 1403, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1417, 5, 13, 0, 0, 1417, 1418, 5, 866, 0, 0, 1418, 1419, 3, 10, 5, 0, 1419, 1422, 5, 867, 0, 0, 1420, 1421, 5, 868, 0, 0, 1421, 1423, 3, 48, 24, 0, 1422, 1420, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 49, 1, 0, 0, 0, 1424, 1426, 5, 34, 0, 0, 1425, 1427, 3, 758, 379, 0, 1426, 1425, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1431, 1, 0, 0, 0, 1428, 1429, 5, 308, 0, 0, 1429, 1430, 5, 857, 0, 0, 1430, 1432, 7, 10, 0, 0, 1431, 1428, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1434, 1, 0, 0, 0, 1433, 1435, 3, 58, 29, 0, 1434, 1433, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1439, 1, 0, 0, 0, 1436, 1437, 5, 162, 0, 0, 1437, 1438, 5, 591, 0, 0, 1438, 1440, 7, 11, 0, 0, 1439, 1436, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 5, 684, 0, 0, 1442, 1454, 3, 630, 315, 0, 1443, 1444, 5, 866, 0, 0, 1444, 1449, 3, 654, 327, 0, 1445, 1446, 5, 868, 0, 0, 1446, 1448, 3, 654, 327, 0, 1447, 1445, 1, 0, 0, 0, 1448, 1451, 1, 0, 0, 0, 1449, 1447, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1452, 1, 0, 0, 0, 1451, 1449, 1, 0, 0, 0, 1452, 1453, 5, 867, 0, 0, 1453, 1455, 1, 0, 0, 0, 1454, 1443, 1, 0, 0, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 1476, 5, 13, 0, 0, 1457, 1459, 5, 866, 0, 0, 1458, 1460, 3, 46, 23, 0, 1459, 1458, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 3, 204, 102, 0, 1462, 1463, 5, 867, 0, 0, 1463, 1477, 1, 0, 0, 0, 1464, 1466, 3, 46, 23, 0, 1465, 1464, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1474, 3, 204, 102, 0, 1468, 1470, 5, 194, 0, 0, 1469, 1471, 7, 12, 0, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1473, 5, 27, 0, 0, 1473, 1475, 5, 121, 0, 0, 1474, 1468, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1477, 1, 0, 0, 0, 1476, 1457, 1, 0, 0, 0, 1476, 1465, 1, 0, 0, 0, 1477, 51, 1, 0, 0, 0, 1478, 1480, 5, 42, 0, 0, 1479, 1478, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1483, 3, 54, 27, 0, 1482, 1484, 5, 857, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1488, 3, 684, 342, 0, 1486, 1488, 5, 42, 0, 0, 1487, 1485, 1, 0, 0, 0, 1487, 1486, 1, 0, 0, 0, 1488, 1512, 1, 0, 0, 0, 1489, 1491, 5, 42, 0, 0, 1490, 1489, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1494, 5, 28, 0, 0, 1493, 1495, 5, 857, 0, 0, 1494, 1493, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1512, 3, 686, 343, 0, 1497, 1499, 5, 42, 0, 0, 1498, 1497, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1502, 5, 376, 0, 0, 1501, 1503, 5, 857, 0, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1512, 5, 882, 0, 0, 1505, 1506, 5, 135, 0, 0, 1506, 1508, 5, 515, 0, 0, 1507, 1509, 5, 857, 0, 0, 1508, 1507, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1512, 7, 13, 0, 0, 1511, 1479, 1, 0, 0, 0, 1511, 1490, 1, 0, 0, 0, 1511, 1498, 1, 0, 0, 0, 1511, 1505, 1, 0, 0, 0, 1512, 53, 1, 0, 0, 0, 1513, 1514, 5, 26, 0, 0, 1514, 1519, 5, 155, 0, 0, 1515, 1519, 5, 823, 0, 0, 1516, 1517, 5, 224, 0, 0, 1517, 1519, 5, 155, 0, 0, 1518, 1513, 1, 0, 0, 0, 1518, 1515, 1, 0, 0, 0, 1518, 1516, 1, 0, 0, 0, 1519, 55, 1, 0, 0, 0, 1520, 1523, 7, 14, 0, 0, 1521, 1522, 5, 866, 0, 0, 1522, 1524, 5, 867, 0, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 57, 1, 0, 0, 0, 1525, 1526, 5, 364, 0, 0, 1526, 1529, 5, 857, 0, 0, 1527, 1530, 3, 680, 340, 0, 1528, 1530, 3, 56, 28, 0, 1529, 1527, 1, 0, 0, 0, 1529, 1528, 1, 0, 0, 0, 1530, 59, 1, 0, 0, 0, 1531, 1532, 5, 311, 0, 0, 1532, 1536, 3, 62, 31, 0, 1533, 1535, 3, 64, 32, 0, 1534, 1533, 1, 0, 0, 0, 1535, 1538, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1566, 1, 0, 0, 0, 1538, 1536, 1, 0, 0, 0, 1539, 1542, 5, 387, 0, 0, 1540, 1543, 3, 708, 354, 0, 1541, 1543, 3, 800, 400, 0, 1542, 1540, 1, 0, 0, 0, 1542, 1541, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1553, 3, 66, 33, 0, 1545, 1546, 5, 641, 0, 0, 1546, 1550, 3, 62, 31, 0, 1547, 1549, 3, 64, 32, 0, 1548, 1547, 1, 0, 0, 0, 1549, 1552, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1554, 1, 0, 0, 0, 1552, 1550, 1, 0, 0, 0, 1553, 1545, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1563, 1, 0, 0, 0, 1555, 1556, 5, 379, 0, 0, 1556, 1560, 3, 62, 31, 0, 1557, 1559, 3, 64, 32, 0, 1558, 1557, 1, 0, 0, 0, 1559, 1562, 1, 0, 0, 0, 1560, 1558, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1564, 1, 0, 0, 0, 1562, 1560, 1, 0, 0, 0, 1563, 1555, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1566, 1, 0, 0, 0, 1565, 1531, 1, 0, 0, 0, 1565, 1539, 1, 0, 0, 0, 1566, 61, 1, 0, 0, 0, 1567, 1572, 5, 287, 0, 0, 1568, 1572, 3, 712, 356, 0, 1569, 1572, 3, 708, 354, 0, 1570, 1572, 3, 800, 400, 0, 1571, 1567, 1, 0, 0, 0, 1571, 1568, 1, 0, 0, 0, 1571, 1569, 1, 0, 0, 0, 1571, 1570, 1, 0, 0, 0, 1572, 63, 1, 0, 0, 0, 1573, 1574, 5, 853, 0, 0, 1574, 1577, 5, 87, 0, 0, 1575, 1578, 3, 708, 354, 0, 1576, 1578, 3, 800, 400, 0, 1577, 1575, 1, 0, 0, 0, 1577, 1576, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 3, 66, 33, 0, 1580, 65, 1, 0, 0, 0, 1581, 1595, 3, 826, 413, 0, 1582, 1595, 5, 223, 0, 0, 1583, 1595, 5, 242, 0, 0, 1584, 1595, 5, 243, 0, 0, 1585, 1595, 5, 244, 0, 0, 1586, 1595, 5, 245, 0, 0, 1587, 1595, 5, 246, 0, 0, 1588, 1595, 5, 247, 0, 0, 1589, 1595, 5, 248, 0, 0, 1590, 1595, 5, 249, 0, 0, 1591, 1595, 5, 250, 0, 0, 1592, 1595, 5, 251, 0, 0, 1593, 1595, 5, 252, 0, 0, 1594, 1581, 1, 0, 0, 0, 1594, 1582, 1, 0, 0, 0, 1594, 1583, 1, 0, 0, 0, 1594, 1584, 1, 0, 0, 0, 1594, 1585, 1, 0, 0, 0, 1594, 1586, 1, 0, 0, 0, 1594, 1587, 1, 0, 0, 0, 1594, 1588, 1, 0, 0, 0, 1594, 1589, 1, 0, 0, 0, 1594, 1590, 1, 0, 0, 0, 1594, 1591, 1, 0, 0, 0, 1594, 1592, 1, 0, 0, 0, 1594, 1593, 1, 0, 0, 0, 1595, 67, 1, 0, 0, 0, 1596, 1602, 5, 375, 0, 0, 1597, 1602, 5, 368, 0, 0, 1598, 1599, 5, 368, 0, 0, 1599, 1600, 5, 119, 0, 0, 1600, 1602, 5, 598, 0, 0, 1601, 1596, 1, 0, 0, 0, 1601, 1597, 1, 0, 0, 0, 1601, 1598, 1, 0, 0, 0, 1602, 69, 1, 0, 0, 0, 1603, 1604, 5, 188, 0, 0, 1604, 1605, 7, 15, 0, 0, 1605, 71, 1, 0, 0, 0, 1606, 1608, 5, 443, 0, 0, 1607, 1609, 5, 857, 0, 0, 1608, 1607, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1629, 3, 710, 355, 0, 1611, 1629, 3, 70, 35, 0, 1612, 1613, 5, 194, 0, 0, 1613, 1614, 5, 525, 0, 0, 1614, 1629, 3, 702, 351, 0, 1615, 1616, 5, 340, 0, 0, 1616, 1629, 5, 882, 0, 0, 1617, 1629, 7, 16, 0, 0, 1618, 1620, 5, 825, 0, 0, 1619, 1621, 5, 857, 0, 0, 1620, 1619, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1629, 5, 882, 0, 0, 1623, 1625, 5, 833, 0, 0, 1624, 1626, 5, 857, 0, 0, 1625, 1624, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1629, 5, 882, 0, 0, 1628, 1606, 1, 0, 0, 0, 1628, 1611, 1, 0, 0, 0, 1628, 1612, 1, 0, 0, 0, 1628, 1615, 1, 0, 0, 0, 1628, 1617, 1, 0, 0, 0, 1628, 1618, 1, 0, 0, 0, 1628, 1623, 1, 0, 0, 0, 1629, 73, 1, 0, 0, 0, 1630, 1632, 7, 17, 0, 0, 1631, 1630, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, 3, 702, 351, 0, 1634, 1635, 3, 722, 361, 0, 1635, 75, 1, 0, 0, 0, 1636, 1637, 5, 340, 0, 0, 1637, 1660, 5, 882, 0, 0, 1638, 1639, 5, 444, 0, 0, 1639, 1660, 5, 162, 0, 0, 1640, 1642, 5, 114, 0, 0, 1641, 1640, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1660, 5, 47, 0, 0, 1644, 1645, 5, 354, 0, 0, 1645, 1655, 5, 162, 0, 0, 1646, 1647, 5, 502, 0, 0, 1647, 1655, 5, 162, 0, 0, 1648, 1649, 5, 136, 0, 0, 1649, 1650, 5, 162, 0, 0, 1650, 1655, 5, 360, 0, 0, 1651, 1652, 5, 112, 0, 0, 1652, 1653, 5, 162, 0, 0, 1653, 1655, 5, 360, 0, 0, 1654, 1644, 1, 0, 0, 0, 1654, 1646, 1, 0, 0, 0, 1654, 1648, 1, 0, 0, 0, 1654, 1651, 1, 0, 0, 0, 1655, 1660, 1, 0, 0, 0, 1656, 1657, 5, 162, 0, 0, 1657, 1658, 5, 591, 0, 0, 1658, 1660, 7, 11, 0, 0, 1659, 1636, 1, 0, 0, 0, 1659, 1638, 1, 0, 0, 0, 1659, 1641, 1, 0, 0, 0, 1659, 1654, 1, 0, 0, 0, 1659, 1656, 1, 0, 0, 0, 1660, 77, 1, 0, 0, 0, 1661, 1662, 5, 421, 0, 0, 1662, 1676, 5, 882, 0, 0, 1663, 1664, 5, 39, 0, 0, 1664, 1676, 5, 882, 0, 0, 1665, 1666, 5, 678, 0, 0, 1666, 1676, 5, 882, 0, 0, 1667, 1668, 5, 529, 0, 0, 1668, 1676, 5, 882, 0, 0, 1669, 1670, 5, 601, 0, 0, 1670, 1676, 5, 882, 0, 0, 1671, 1672, 5, 519, 0, 0, 1672, 1676, 5, 882, 0, 0, 1673, 1674, 5, 537, 0, 0, 1674, 1676, 3, 708, 354, 0, 1675, 1661, 1, 0, 0, 0, 1675, 1663, 1, 0, 0, 0, 1675, 1665, 1, 0, 0, 0, 1675, 1667, 1, 0, 0, 0, 1675, 1669, 1, 0, 0, 0, 1675, 1671, 1, 0, 0, 0, 1675, 1673, 1, 0, 0, 0, 1676, 79, 1, 0, 0, 0, 1677, 1678, 5, 866, 0, 0, 1678, 1683, 3, 82, 41, 0, 1679, 1680, 5, 868, 0, 0, 1680, 1682, 3, 82, 41, 0, 1681, 1679, 1, 0, 0, 0, 1682, 1685, 1, 0, 0, 0, 1683, 1681, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1686, 1, 0, 0, 0, 1685, 1683, 1, 0, 0, 0, 1686, 1687, 5, 867, 0, 0, 1687, 81, 1, 0, 0, 0, 1688, 1689, 3, 654, 327, 0, 1689, 1690, 3, 88, 44, 0, 1690, 1772, 1, 0, 0, 0, 1691, 1693, 7, 18, 0, 0, 1692, 1694, 3, 638, 319, 0, 1693, 1692, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1696, 1, 0, 0, 0, 1695, 1697, 3, 70, 35, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1702, 3, 734, 367, 0, 1699, 1701, 3, 72, 36, 0, 1700, 1699, 1, 0, 0, 0, 1701, 1704, 1, 0, 0, 0, 1702, 1700, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1772, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1707, 7, 19, 0, 0, 1706, 1708, 7, 18, 0, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1711, 3, 638, 319, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1716, 3, 734, 367, 0, 1713, 1715, 3, 72, 36, 0, 1714, 1713, 1, 0, 0, 0, 1715, 1718, 1, 0, 0, 0, 1716, 1714, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1772, 1, 0, 0, 0, 1718, 1716, 1, 0, 0, 0, 1719, 1721, 3, 86, 43, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 5, 131, 0, 0, 1723, 1725, 5, 92, 0, 0, 1724, 1726, 3, 70, 35, 0, 1725, 1724, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1731, 3, 734, 367, 0, 1728, 1730, 3, 72, 36, 0, 1729, 1728, 1, 0, 0, 0, 1730, 1733, 1, 0, 0, 0, 1731, 1729, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1772, 1, 0, 0, 0, 1733, 1731, 1, 0, 0, 0, 1734, 1736, 3, 86, 43, 0, 1735, 1734, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1739, 5, 182, 0, 0, 1738, 1740, 7, 18, 0, 0, 1739, 1738, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1742, 1, 0, 0, 0, 1741, 1743, 3, 638, 319, 0, 1742, 1741, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1745, 1, 0, 0, 0, 1744, 1746, 3, 70, 35, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1751, 3, 734, 367, 0, 1748, 1750, 3, 72, 36, 0, 1749, 1748, 1, 0, 0, 0, 1750, 1753, 1, 0, 0, 0, 1751, 1749, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1772, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1754, 1756, 3, 86, 43, 0, 1755, 1754, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 5, 67, 0, 0, 1758, 1760, 5, 92, 0, 0, 1759, 1761, 3, 638, 319, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 3, 734, 367, 0, 1763, 1764, 3, 92, 46, 0, 1764, 1772, 1, 0, 0, 0, 1765, 1766, 5, 27, 0, 0, 1766, 1767, 5, 866, 0, 0, 1767, 1768, 3, 800, 400, 0, 1768, 1769, 5, 867, 0, 0, 1769, 1772, 1, 0, 0, 0, 1770, 1772, 3, 84, 42, 0, 1771, 1688, 1, 0, 0, 0, 1771, 1691, 1, 0, 0, 0, 1771, 1705, 1, 0, 0, 0, 1771, 1720, 1, 0, 0, 0, 1771, 1735, 1, 0, 0, 0, 1771, 1755, 1, 0, 0, 0, 1771, 1765, 1, 0, 0, 0, 1771, 1770, 1, 0, 0, 0, 1772, 83, 1, 0, 0, 0, 1773, 1775, 3, 86, 43, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 5, 27, 0, 0, 1777, 1778, 5, 866, 0, 0, 1778, 1779, 3, 800, 400, 0, 1779, 1784, 5, 867, 0, 0, 1780, 1782, 5, 114, 0, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1785, 5, 57, 0, 0, 1784, 1781, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 85, 1, 0, 0, 0, 1786, 1788, 5, 31, 0, 0, 1787, 1789, 3, 702, 351, 0, 1788, 1787, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 87, 1, 0, 0, 0, 1790, 1794, 3, 722, 361, 0, 1791, 1793, 3, 90, 45, 0, 1792, 1791, 1, 0, 0, 0, 1793, 1796, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 89, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1797, 1841, 3, 718, 359, 0, 1798, 1799, 5, 42, 0, 0, 1799, 1841, 3, 750, 375, 0, 1800, 1841, 5, 686, 0, 0, 1801, 1841, 5, 435, 0, 0, 1802, 1807, 5, 315, 0, 0, 1803, 1804, 5, 119, 0, 0, 1804, 1805, 5, 185, 0, 0, 1805, 1807, 3, 752, 376, 0, 1806, 1802, 1, 0, 0, 0, 1806, 1803, 1, 0, 0, 0, 1807, 1841, 1, 0, 0, 0, 1808, 1810, 5, 131, 0, 0, 1809, 1808, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1841, 5, 92, 0, 0, 1812, 1814, 5, 182, 0, 0, 1813, 1815, 5, 92, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1841, 1, 0, 0, 0, 1816, 1817, 5, 340, 0, 0, 1817, 1841, 5, 882, 0, 0, 1818, 1819, 5, 338, 0, 0, 1819, 1841, 7, 20, 0, 0, 1820, 1821, 5, 647, 0, 0, 1821, 1841, 7, 21, 0, 0, 1822, 1841, 3, 92, 46, 0, 1823, 1824, 5, 28, 0, 0, 1824, 1841, 3, 686, 343, 0, 1825, 1826, 5, 71, 0, 0, 1826, 1828, 5, 9, 0, 0, 1827, 1825, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 5, 13, 0, 0, 1830, 1831, 5, 866, 0, 0, 1831, 1832, 3, 800, 400, 0, 1832, 1834, 5, 867, 0, 0, 1833, 1835, 7, 22, 0, 0, 1834, 1833, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1841, 1, 0, 0, 0, 1836, 1837, 5, 241, 0, 0, 1837, 1838, 5, 42, 0, 0, 1838, 1841, 5, 682, 0, 0, 1839, 1841, 3, 84, 42, 0, 1840, 1797, 1, 0, 0, 0, 1840, 1798, 1, 0, 0, 0, 1840, 1800, 1, 0, 0, 0, 1840, 1801, 1, 0, 0, 0, 1840, 1806, 1, 0, 0, 0, 1840, 1809, 1, 0, 0, 0, 1840, 1812, 1, 0, 0, 0, 1840, 1816, 1, 0, 0, 0, 1840, 1818, 1, 0, 0, 0, 1840, 1820, 1, 0, 0, 0, 1840, 1822, 1, 0, 0, 0, 1840, 1823, 1, 0, 0, 0, 1840, 1827, 1, 0, 0, 0, 1840, 1836, 1, 0, 0, 0, 1840, 1839, 1, 0, 0, 0, 1841, 91, 1, 0, 0, 0, 1842, 1843, 5, 138, 0, 0, 1843, 1845, 3, 648, 324, 0, 1844, 1846, 3, 734, 367, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1849, 1, 0, 0, 0, 1847, 1848, 5, 110, 0, 0, 1848, 1850, 7, 23, 0, 0, 1849, 1847, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1852, 1, 0, 0, 0, 1851, 1853, 3, 94, 47, 0, 1852, 1851, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 93, 1, 0, 0, 0, 1854, 1855, 5, 119, 0, 0, 1855, 1856, 5, 44, 0, 0, 1856, 1860, 3, 96, 48, 0, 1857, 1858, 5, 119, 0, 0, 1858, 1859, 5, 185, 0, 0, 1859, 1861, 3, 96, 48, 0, 1860, 1857, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1871, 1, 0, 0, 0, 1862, 1863, 5, 119, 0, 0, 1863, 1864, 5, 185, 0, 0, 1864, 1868, 3, 96, 48, 0, 1865, 1866, 5, 119, 0, 0, 1866, 1867, 5, 44, 0, 0, 1867, 1869, 3, 96, 48, 0, 1868, 1865, 1, 0, 0, 0, 1868, 1869, 1, 0, 0, 0, 1869, 1871, 1, 0, 0, 0, 1870, 1854, 1, 0, 0, 0, 1870, 1862, 1, 0, 0, 0, 1871, 95, 1, 0, 0, 0, 1872, 1881, 5, 146, 0, 0, 1873, 1881, 5, 22, 0, 0, 1874, 1875, 5, 155, 0, 0, 1875, 1881, 5, 116, 0, 0, 1876, 1877, 5, 502, 0, 0, 1877, 1881, 5, 305, 0, 0, 1878, 1879, 5, 155, 0, 0, 1879, 1881, 5, 42, 0, 0, 1880, 1872, 1, 0, 0, 0, 1880, 1873, 1, 0, 0, 0, 1880, 1874, 1, 0, 0, 0, 1880, 1876, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1881, 97, 1, 0, 0, 0, 1882, 1884, 5, 380, 0, 0, 1883, 1885, 5, 857, 0, 0, 1884, 1883, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1887, 1, 0, 0, 0, 1886, 1888, 3, 688, 344, 0, 1887, 1886, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 2068, 1, 0, 0, 0, 1889, 1891, 5, 825, 0, 0, 1890, 1892, 5, 857, 0, 0, 1891, 1890, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 2068, 5, 882, 0, 0, 1894, 1896, 5, 314, 0, 0, 1895, 1897, 5, 857, 0, 0, 1896, 1895, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 2068, 3, 708, 354, 0, 1899, 1901, 5, 315, 0, 0, 1900, 1902, 5, 857, 0, 0, 1901, 1900, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 2068, 3, 708, 354, 0, 1904, 1906, 5, 316, 0, 0, 1905, 1907, 5, 857, 0, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 2068, 3, 708, 354, 0, 1909, 1911, 5, 42, 0, 0, 1910, 1909, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1914, 3, 54, 27, 0, 1913, 1915, 5, 857, 0, 0, 1914, 1913, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1918, 1, 0, 0, 0, 1916, 1919, 3, 684, 342, 0, 1917, 1919, 5, 42, 0, 0, 1918, 1916, 1, 0, 0, 0, 1918, 1917, 1, 0, 0, 0, 1919, 2068, 1, 0, 0, 0, 1920, 1922, 7, 24, 0, 0, 1921, 1923, 5, 857, 0, 0, 1922, 1921, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 2068, 7, 25, 0, 0, 1925, 1927, 5, 42, 0, 0, 1926, 1925, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1930, 5, 28, 0, 0, 1929, 1931, 5, 857, 0, 0, 1930, 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 2068, 3, 686, 343, 0, 1933, 1935, 5, 340, 0, 0, 1934, 1936, 5, 857, 0, 0, 1935, 1934, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 2068, 5, 882, 0, 0, 1938, 1940, 5, 346, 0, 0, 1939, 1941, 5, 857, 0, 0, 1940, 1939, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 2068, 7, 26, 0, 0, 1943, 1945, 5, 349, 0, 0, 1944, 1946, 5, 857, 0, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 2068, 5, 882, 0, 0, 1948, 1949, 7, 27, 0, 0, 1949, 1951, 5, 367, 0, 0, 1950, 1952, 5, 857, 0, 0, 1951, 1950, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 2068, 5, 882, 0, 0, 1954, 1956, 5, 365, 0, 0, 1955, 1957, 5, 857, 0, 0, 1956, 1955, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 2068, 7, 25, 0, 0, 1959, 1961, 5, 376, 0, 0, 1960, 1962, 5, 857, 0, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 2068, 5, 882, 0, 0, 1964, 1966, 7, 28, 0, 0, 1965, 1967, 5, 857, 0, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 2068, 7, 25, 0, 0, 1969, 1971, 7, 29, 0, 0, 1970, 1972, 5, 857, 0, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 2068, 3, 708, 354, 0, 1974, 1976, 5, 377, 0, 0, 1975, 1977, 5, 857, 0, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 2068, 3, 708, 354, 0, 1979, 1980, 5, 82, 0, 0, 1980, 1982, 5, 367, 0, 0, 1981, 1983, 5, 857, 0, 0, 1982, 1981, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 2068, 5, 882, 0, 0, 1985, 1987, 5, 431, 0, 0, 1986, 1988, 5, 857, 0, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 2068, 7, 30, 0, 0, 1990, 1992, 5, 443, 0, 0, 1991, 1993, 5, 857, 0, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 2068, 3, 710, 355, 0, 1995, 1997, 5, 480, 0, 0, 1996, 1998, 5, 857, 0, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2068, 3, 708, 354, 0, 2000, 2002, 5, 490, 0, 0, 2001, 2003, 5, 857, 0, 0, 2002, 2001, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2068, 3, 708, 354, 0, 2005, 2007, 5, 520, 0, 0, 2006, 2008, 5, 857, 0, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2068, 7, 13, 0, 0, 2010, 2012, 5, 529, 0, 0, 2011, 2013, 5, 857, 0, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2068, 5, 882, 0, 0, 2015, 2017, 5, 588, 0, 0, 2016, 2018, 5, 857, 0, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2068, 7, 31, 0, 0, 2020, 2021, 5, 640, 0, 0, 2021, 2068, 5, 664, 0, 0, 2022, 2024, 5, 833, 0, 0, 2023, 2025, 5, 857, 0, 0, 2024, 2023, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2068, 5, 882, 0, 0, 2027, 2029, 5, 642, 0, 0, 2028, 2030, 5, 857, 0, 0, 2029, 2028, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2068, 7, 13, 0, 0, 2032, 2034, 5, 643, 0, 0, 2033, 2035, 5, 857, 0, 0, 2034, 2033, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2068, 7, 13, 0, 0, 2037, 2039, 5, 644, 0, 0, 2038, 2040, 5, 857, 0, 0, 2039, 2038, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2043, 1, 0, 0, 0, 2041, 2044, 5, 42, 0, 0, 2042, 2044, 3, 708, 354, 0, 2043, 2041, 1, 0, 0, 0, 2043, 2042, 1, 0, 0, 0, 2044, 2068, 1, 0, 0, 0, 2045, 2046, 5, 658, 0, 0, 2046, 2048, 3, 662, 331, 0, 2047, 2049, 3, 102, 51, 0, 2048, 2047, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2068, 1, 0, 0, 0, 2050, 2051, 5, 659, 0, 0, 2051, 2052, 5, 857, 0, 0, 2052, 2068, 3, 100, 50, 0, 2053, 2068, 3, 102, 51, 0, 2054, 2056, 5, 665, 0, 0, 2055, 2057, 5, 857, 0, 0, 2056, 2055, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2068, 7, 25, 0, 0, 2059, 2061, 5, 181, 0, 0, 2060, 2062, 5, 857, 0, 0, 2061, 2060, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2064, 5, 866, 0, 0, 2064, 2065, 3, 646, 323, 0, 2065, 2066, 5, 867, 0, 0, 2066, 2068, 1, 0, 0, 0, 2067, 1882, 1, 0, 0, 0, 2067, 1889, 1, 0, 0, 0, 2067, 1894, 1, 0, 0, 0, 2067, 1899, 1, 0, 0, 0, 2067, 1904, 1, 0, 0, 0, 2067, 1910, 1, 0, 0, 0, 2067, 1920, 1, 0, 0, 0, 2067, 1926, 1, 0, 0, 0, 2067, 1933, 1, 0, 0, 0, 2067, 1938, 1, 0, 0, 0, 2067, 1943, 1, 0, 0, 0, 2067, 1948, 1, 0, 0, 0, 2067, 1954, 1, 0, 0, 0, 2067, 1959, 1, 0, 0, 0, 2067, 1964, 1, 0, 0, 0, 2067, 1969, 1, 0, 0, 0, 2067, 1974, 1, 0, 0, 0, 2067, 1979, 1, 0, 0, 0, 2067, 1985, 1, 0, 0, 0, 2067, 1990, 1, 0, 0, 0, 2067, 1995, 1, 0, 0, 0, 2067, 2000, 1, 0, 0, 0, 2067, 2005, 1, 0, 0, 0, 2067, 2010, 1, 0, 0, 0, 2067, 2015, 1, 0, 0, 0, 2067, 2020, 1, 0, 0, 0, 2067, 2022, 1, 0, 0, 0, 2067, 2027, 1, 0, 0, 0, 2067, 2032, 1, 0, 0, 0, 2067, 2037, 1, 0, 0, 0, 2067, 2045, 1, 0, 0, 0, 2067, 2050, 1, 0, 0, 0, 2067, 2053, 1, 0, 0, 0, 2067, 2054, 1, 0, 0, 0, 2067, 2059, 1, 0, 0, 0, 2068, 99, 1, 0, 0, 0, 2069, 2070, 7, 32, 0, 0, 2070, 101, 1, 0, 0, 0, 2071, 2072, 5, 647, 0, 0, 2072, 2073, 7, 21, 0, 0, 2073, 103, 1, 0, 0, 0, 2074, 2075, 5, 130, 0, 0, 2075, 2076, 5, 20, 0, 0, 2076, 2079, 3, 106, 53, 0, 2077, 2078, 5, 528, 0, 0, 2078, 2080, 3, 708, 354, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2088, 1, 0, 0, 0, 2081, 2082, 5, 652, 0, 0, 2082, 2083, 5, 20, 0, 0, 2083, 2086, 3, 108, 54, 0, 2084, 2085, 5, 653, 0, 0, 2085, 2087, 3, 708, 354, 0, 2086, 2084, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2089, 1, 0, 0, 0, 2088, 2081, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2101, 1, 0, 0, 0, 2090, 2091, 5, 866, 0, 0, 2091, 2096, 3, 110, 55, 0, 2092, 2093, 5, 868, 0, 0, 2093, 2095, 3, 110, 55, 0, 2094, 2092, 1, 0, 0, 0, 2095, 2098, 1, 0, 0, 0, 2096, 2094, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2099, 1, 0, 0, 0, 2098, 2096, 1, 0, 0, 0, 2099, 2100, 5, 867, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2090, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 105, 1, 0, 0, 0, 2103, 2105, 5, 101, 0, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 5, 418, 0, 0, 2107, 2108, 5, 866, 0, 0, 2108, 2109, 3, 800, 400, 0, 2109, 2110, 5, 867, 0, 0, 2110, 2150, 1, 0, 0, 0, 2111, 2113, 5, 101, 0, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2118, 5, 92, 0, 0, 2115, 2116, 5, 308, 0, 0, 2116, 2117, 5, 857, 0, 0, 2117, 2119, 7, 33, 0, 0, 2118, 2115, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 5, 866, 0, 0, 2121, 2123, 3, 656, 328, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2150, 5, 867, 0, 0, 2125, 2135, 5, 134, 0, 0, 2126, 2127, 5, 866, 0, 0, 2127, 2128, 3, 800, 400, 0, 2128, 2129, 5, 867, 0, 0, 2129, 2136, 1, 0, 0, 0, 2130, 2131, 5, 337, 0, 0, 2131, 2132, 5, 866, 0, 0, 2132, 2133, 3, 656, 328, 0, 2133, 2134, 5, 867, 0, 0, 2134, 2136, 1, 0, 0, 0, 2135, 2126, 1, 0, 0, 0, 2135, 2130, 1, 0, 0, 0, 2136, 2150, 1, 0, 0, 0, 2137, 2147, 5, 449, 0, 0, 2138, 2139, 5, 866, 0, 0, 2139, 2140, 3, 800, 400, 0, 2140, 2141, 5, 867, 0, 0, 2141, 2148, 1, 0, 0, 0, 2142, 2143, 5, 337, 0, 0, 2143, 2144, 5, 866, 0, 0, 2144, 2145, 3, 656, 328, 0, 2145, 2146, 5, 867, 0, 0, 2146, 2148, 1, 0, 0, 0, 2147, 2138, 1, 0, 0, 0, 2147, 2142, 1, 0, 0, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2104, 1, 0, 0, 0, 2149, 2112, 1, 0, 0, 0, 2149, 2125, 1, 0, 0, 0, 2149, 2137, 1, 0, 0, 0, 2150, 107, 1, 0, 0, 0, 2151, 2153, 5, 101, 0, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 2155, 5, 418, 0, 0, 2155, 2156, 5, 866, 0, 0, 2156, 2157, 3, 800, 400, 0, 2157, 2158, 5, 867, 0, 0, 2158, 2173, 1, 0, 0, 0, 2159, 2161, 5, 101, 0, 0, 2160, 2159, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2166, 5, 92, 0, 0, 2163, 2164, 5, 308, 0, 0, 2164, 2165, 5, 857, 0, 0, 2165, 2167, 7, 33, 0, 0, 2166, 2163, 1, 0, 0, 0, 2166, 2167, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2169, 5, 866, 0, 0, 2169, 2170, 3, 656, 328, 0, 2170, 2171, 5, 867, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2152, 1, 0, 0, 0, 2172, 2160, 1, 0, 0, 0, 2173, 109, 1, 0, 0, 0, 2174, 2175, 5, 130, 0, 0, 2175, 2176, 3, 668, 334, 0, 2176, 2177, 5, 189, 0, 0, 2177, 2178, 5, 447, 0, 0, 2178, 2179, 5, 662, 0, 0, 2179, 2180, 5, 866, 0, 0, 2180, 2185, 3, 112, 56, 0, 2181, 2182, 5, 868, 0, 0, 2182, 2184, 3, 112, 56, 0, 2183, 2181, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2188, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2192, 5, 867, 0, 0, 2189, 2191, 3, 118, 59, 0, 2190, 2189, 1, 0, 0, 0, 2191, 2194, 1, 0, 0, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2206, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2195, 2196, 5, 866, 0, 0, 2196, 2201, 3, 116, 58, 0, 2197, 2198, 5, 868, 0, 0, 2198, 2200, 3, 116, 58, 0, 2199, 2197, 1, 0, 0, 0, 2200, 2203, 1, 0, 0, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2204, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2205, 5, 867, 0, 0, 2205, 2207, 1, 0, 0, 0, 2206, 2195, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2321, 1, 0, 0, 0, 2208, 2209, 5, 130, 0, 0, 2209, 2210, 3, 668, 334, 0, 2210, 2211, 5, 189, 0, 0, 2211, 2212, 5, 447, 0, 0, 2212, 2213, 5, 662, 0, 0, 2213, 2217, 3, 112, 56, 0, 2214, 2216, 3, 118, 59, 0, 2215, 2214, 1, 0, 0, 0, 2216, 2219, 1, 0, 0, 0, 2217, 2215, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2231, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2220, 2221, 5, 866, 0, 0, 2221, 2226, 3, 116, 58, 0, 2222, 2223, 5, 868, 0, 0, 2223, 2225, 3, 116, 58, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2228, 1, 0, 0, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2229, 1, 0, 0, 0, 2228, 2226, 1, 0, 0, 0, 2229, 2230, 5, 867, 0, 0, 2230, 2232, 1, 0, 0, 0, 2231, 2220, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2321, 1, 0, 0, 0, 2233, 2234, 5, 130, 0, 0, 2234, 2235, 3, 668, 334, 0, 2235, 2236, 5, 189, 0, 0, 2236, 2237, 5, 80, 0, 0, 2237, 2238, 5, 866, 0, 0, 2238, 2243, 3, 112, 56, 0, 2239, 2240, 5, 868, 0, 0, 2240, 2242, 3, 112, 56, 0, 2241, 2239, 1, 0, 0, 0, 2242, 2245, 1, 0, 0, 0, 2243, 2241, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2246, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2246, 2250, 5, 867, 0, 0, 2247, 2249, 3, 118, 59, 0, 2248, 2247, 1, 0, 0, 0, 2249, 2252, 1, 0, 0, 0, 2250, 2248, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2264, 1, 0, 0, 0, 2252, 2250, 1, 0, 0, 0, 2253, 2254, 5, 866, 0, 0, 2254, 2259, 3, 116, 58, 0, 2255, 2256, 5, 868, 0, 0, 2256, 2258, 3, 116, 58, 0, 2257, 2255, 1, 0, 0, 0, 2258, 2261, 1, 0, 0, 0, 2259, 2257, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 2262, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2263, 5, 867, 0, 0, 2263, 2265, 1, 0, 0, 0, 2264, 2253, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2321, 1, 0, 0, 0, 2266, 2267, 5, 130, 0, 0, 2267, 2268, 3, 668, 334, 0, 2268, 2269, 5, 189, 0, 0, 2269, 2270, 5, 80, 0, 0, 2270, 2271, 5, 866, 0, 0, 2271, 2276, 3, 114, 57, 0, 2272, 2273, 5, 868, 0, 0, 2273, 2275, 3, 114, 57, 0, 2274, 2272, 1, 0, 0, 0, 2275, 2278, 1, 0, 0, 0, 2276, 2274, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 1, 0, 0, 0, 2278, 2276, 1, 0, 0, 0, 2279, 2283, 5, 867, 0, 0, 2280, 2282, 3, 118, 59, 0, 2281, 2280, 1, 0, 0, 0, 2282, 2285, 1, 0, 0, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2297, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2286, 2287, 5, 866, 0, 0, 2287, 2292, 3, 116, 58, 0, 2288, 2289, 5, 868, 0, 0, 2289, 2291, 3, 116, 58, 0, 2290, 2288, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 1, 0, 0, 0, 2294, 2292, 1, 0, 0, 0, 2295, 2296, 5, 867, 0, 0, 2296, 2298, 1, 0, 0, 0, 2297, 2286, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2321, 1, 0, 0, 0, 2299, 2300, 5, 130, 0, 0, 2300, 2304, 3, 668, 334, 0, 2301, 2303, 3, 118, 59, 0, 2302, 2301, 1, 0, 0, 0, 2303, 2306, 1, 0, 0, 0, 2304, 2302, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2318, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2307, 2308, 5, 866, 0, 0, 2308, 2313, 3, 116, 58, 0, 2309, 2310, 5, 868, 0, 0, 2310, 2312, 3, 116, 58, 0, 2311, 2309, 1, 0, 0, 0, 2312, 2315, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2316, 1, 0, 0, 0, 2315, 2313, 1, 0, 0, 0, 2316, 2317, 5, 867, 0, 0, 2317, 2319, 1, 0, 0, 0, 2318, 2307, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2321, 1, 0, 0, 0, 2320, 2174, 1, 0, 0, 0, 2320, 2208, 1, 0, 0, 0, 2320, 2233, 1, 0, 0, 0, 2320, 2266, 1, 0, 0, 0, 2320, 2299, 1, 0, 0, 0, 2321, 111, 1, 0, 0, 0, 2322, 2326, 3, 720, 360, 0, 2323, 2326, 3, 800, 400, 0, 2324, 2326, 5, 111, 0, 0, 2325, 2322, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2324, 1, 0, 0, 0, 2326, 113, 1, 0, 0, 0, 2327, 2328, 5, 866, 0, 0, 2328, 2331, 3, 112, 56, 0, 2329, 2330, 5, 868, 0, 0, 2330, 2332, 3, 112, 56, 0, 2331, 2329, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2336, 5, 867, 0, 0, 2336, 115, 1, 0, 0, 0, 2337, 2338, 5, 652, 0, 0, 2338, 2342, 3, 702, 351, 0, 2339, 2341, 3, 118, 59, 0, 2340, 2339, 1, 0, 0, 0, 2341, 2344, 1, 0, 0, 0, 2342, 2340, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 117, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2345, 2347, 5, 42, 0, 0, 2346, 2345, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2349, 1, 0, 0, 0, 2348, 2350, 5, 647, 0, 0, 2349, 2348, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2353, 5, 380, 0, 0, 2352, 2354, 5, 857, 0, 0, 2353, 2352, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2394, 3, 688, 344, 0, 2356, 2358, 5, 340, 0, 0, 2357, 2359, 5, 857, 0, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2394, 5, 882, 0, 0, 2361, 2362, 5, 360, 0, 0, 2362, 2364, 5, 367, 0, 0, 2363, 2365, 5, 857, 0, 0, 2364, 2363, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2394, 5, 882, 0, 0, 2367, 2368, 5, 82, 0, 0, 2368, 2370, 5, 367, 0, 0, 2369, 2371, 5, 857, 0, 0, 2370, 2369, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2394, 5, 882, 0, 0, 2373, 2375, 5, 480, 0, 0, 2374, 2376, 5, 857, 0, 0, 2375, 2374, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2394, 3, 708, 354, 0, 2378, 2380, 5, 490, 0, 0, 2379, 2381, 5, 857, 0, 0, 2380, 2379, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2394, 3, 708, 354, 0, 2383, 2385, 5, 658, 0, 0, 2384, 2386, 5, 857, 0, 0, 2385, 2384, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2394, 3, 662, 331, 0, 2388, 2390, 5, 504, 0, 0, 2389, 2391, 5, 857, 0, 0, 2390, 2389, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2394, 3, 702, 351, 0, 2393, 2346, 1, 0, 0, 0, 2393, 2356, 1, 0, 0, 0, 2393, 2361, 1, 0, 0, 0, 2393, 2367, 1, 0, 0, 0, 2393, 2373, 1, 0, 0, 0, 2393, 2378, 1, 0, 0, 0, 2393, 2383, 1, 0, 0, 0, 2393, 2388, 1, 0, 0, 0, 2394, 119, 1, 0, 0, 0, 2395, 2396, 5, 8, 0, 0, 2396, 2398, 7, 0, 0, 0, 2397, 2399, 3, 624, 312, 0, 2398, 2397, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2401, 1, 0, 0, 0, 2400, 2402, 3, 52, 26, 0, 2401, 2400, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2414, 1, 0, 0, 0, 2405, 2406, 5, 8, 0, 0, 2406, 2407, 7, 0, 0, 0, 2407, 2408, 3, 624, 312, 0, 2408, 2409, 5, 677, 0, 0, 2409, 2410, 5, 360, 0, 0, 2410, 2411, 5, 367, 0, 0, 2411, 2412, 5, 496, 0, 0, 2412, 2414, 1, 0, 0, 0, 2413, 2395, 1, 0, 0, 0, 2413, 2405, 1, 0, 0, 0, 2414, 121, 1, 0, 0, 0, 2415, 2417, 5, 8, 0, 0, 2416, 2418, 3, 58, 29, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2420, 5, 385, 0, 0, 2420, 2424, 3, 698, 349, 0, 2421, 2422, 5, 119, 0, 0, 2422, 2423, 5, 590, 0, 0, 2423, 2425, 3, 60, 30, 0, 2424, 2421, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2432, 1, 0, 0, 0, 2426, 2427, 5, 119, 0, 0, 2427, 2429, 5, 343, 0, 0, 2428, 2430, 5, 114, 0, 0, 2429, 2428, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2433, 5, 541, 0, 0, 2432, 2426, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2437, 1, 0, 0, 0, 2434, 2435, 5, 141, 0, 0, 2435, 2436, 5, 176, 0, 0, 2436, 2438, 3, 698, 349, 0, 2437, 2434, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2440, 1, 0, 0, 0, 2439, 2441, 3, 68, 34, 0, 2440, 2439, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2444, 1, 0, 0, 0, 2442, 2443, 5, 340, 0, 0, 2443, 2445, 5, 882, 0, 0, 2444, 2442, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2448, 1, 0, 0, 0, 2446, 2447, 5, 371, 0, 0, 2447, 2449, 3, 416, 208, 0, 2448, 2446, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 123, 1, 0, 0, 0, 2450, 2451, 5, 8, 0, 0, 2451, 2452, 5, 409, 0, 0, 2452, 2456, 3, 628, 314, 0, 2453, 2455, 3, 76, 38, 0, 2454, 2453, 1, 0, 0, 0, 2455, 2458, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 125, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2459, 2460, 5, 8, 0, 0, 2460, 2461, 5, 433, 0, 0, 2461, 2462, 5, 585, 0, 0, 2462, 2463, 5, 801, 0, 0, 2463, 2464, 5, 453, 0, 0, 2464, 2465, 5, 92, 0, 0, 2465, 127, 1, 0, 0, 0, 2466, 2467, 5, 8, 0, 0, 2467, 2468, 5, 451, 0, 0, 2468, 2469, 5, 74, 0, 0, 2469, 2470, 3, 702, 351, 0, 2470, 2471, 5, 6, 0, 0, 2471, 2472, 5, 671, 0, 0, 2472, 2478, 5, 882, 0, 0, 2473, 2475, 5, 428, 0, 0, 2474, 2476, 5, 857, 0, 0, 2475, 2474, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2479, 3, 710, 355, 0, 2478, 2473, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2481, 1, 0, 0, 0, 2480, 2482, 5, 687, 0, 0, 2481, 2480, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2483, 1, 0, 0, 0, 2483, 2485, 5, 380, 0, 0, 2484, 2486, 5, 857, 0, 0, 2485, 2484, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2488, 3, 688, 344, 0, 2488, 129, 1, 0, 0, 0, 2489, 2490, 5, 8, 0, 0, 2490, 2491, 5, 132, 0, 0, 2491, 2495, 3, 698, 349, 0, 2492, 2494, 3, 76, 38, 0, 2493, 2492, 1, 0, 0, 0, 2494, 2497, 1, 0, 0, 0, 2495, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 131, 1, 0, 0, 0, 2497, 2495, 1, 0, 0, 0, 2498, 2499, 5, 8, 0, 0, 2499, 2500, 5, 592, 0, 0, 2500, 2501, 3, 702, 351, 0, 2501, 2502, 5, 518, 0, 0, 2502, 2503, 5, 866, 0, 0, 2503, 2508, 3, 78, 39, 0, 2504, 2505, 5, 868, 0, 0, 2505, 2507, 3, 78, 39, 0, 2506, 2504, 1, 0, 0, 0, 2507, 2510, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2511, 1, 0, 0, 0, 2510, 2508, 1, 0, 0, 0, 2511, 2512, 5, 867, 0, 0, 2512, 133, 1, 0, 0, 0, 2513, 2514, 5, 8, 0, 0, 2514, 2515, 5, 173, 0, 0, 2515, 2524, 3, 648, 324, 0, 2516, 2521, 3, 140, 70, 0, 2517, 2518, 5, 868, 0, 0, 2518, 2520, 3, 140, 70, 0, 2519, 2517, 1, 0, 0, 0, 2520, 2523, 1, 0, 0, 0, 2521, 2519, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2524, 2516, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2533, 1, 0, 0, 0, 2526, 2530, 3, 142, 71, 0, 2527, 2529, 3, 142, 71, 0, 2528, 2527, 1, 0, 0, 0, 2529, 2532, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2534, 1, 0, 0, 0, 2532, 2530, 1, 0, 0, 0, 2533, 2526, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 135, 1, 0, 0, 0, 2535, 2537, 5, 8, 0, 0, 2536, 2538, 5, 180, 0, 0, 2537, 2536, 1, 0, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2540, 5, 658, 0, 0, 2540, 2541, 3, 662, 331, 0, 2541, 2542, 7, 34, 0, 0, 2542, 2543, 5, 361, 0, 0, 2543, 2549, 5, 882, 0, 0, 2544, 2546, 5, 428, 0, 0, 2545, 2547, 5, 857, 0, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2550, 3, 710, 355, 0, 2549, 2544, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2553, 5, 687, 0, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2557, 1, 0, 0, 0, 2554, 2555, 5, 141, 0, 0, 2555, 2556, 5, 176, 0, 0, 2556, 2558, 3, 660, 330, 0, 2557, 2554, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2564, 1, 0, 0, 0, 2559, 2561, 5, 314, 0, 0, 2560, 2562, 5, 857, 0, 0, 2561, 2560, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2563, 1, 0, 0, 0, 2563, 2565, 3, 710, 355, 0, 2564, 2559, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2568, 1, 0, 0, 0, 2566, 2567, 5, 155, 0, 0, 2567, 2569, 7, 35, 0, 0, 2568, 2566, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2575, 1, 0, 0, 0, 2570, 2572, 5, 376, 0, 0, 2571, 2573, 5, 857, 0, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 5, 882, 0, 0, 2575, 2570, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2582, 1, 0, 0, 0, 2577, 2579, 5, 380, 0, 0, 2578, 2580, 5, 857, 0, 0, 2579, 2578, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 3, 688, 344, 0, 2582, 2577, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2589, 1, 0, 0, 0, 2584, 2586, 5, 825, 0, 0, 2585, 2587, 5, 857, 0, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2590, 5, 882, 0, 0, 2589, 2584, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 137, 1, 0, 0, 0, 2591, 2595, 5, 8, 0, 0, 2592, 2593, 5, 308, 0, 0, 2593, 2594, 5, 857, 0, 0, 2594, 2596, 7, 10, 0, 0, 2595, 2592, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2599, 3, 58, 29, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2603, 1, 0, 0, 0, 2600, 2601, 5, 162, 0, 0, 2601, 2602, 5, 591, 0, 0, 2602, 2604, 7, 11, 0, 0, 2603, 2600, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2606, 5, 684, 0, 0, 2606, 2611, 3, 632, 316, 0, 2607, 2608, 5, 866, 0, 0, 2608, 2609, 3, 656, 328, 0, 2609, 2610, 5, 867, 0, 0, 2610, 2612, 1, 0, 0, 0, 2611, 2607, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2614, 5, 13, 0, 0, 2614, 2621, 3, 204, 102, 0, 2615, 2617, 5, 194, 0, 0, 2616, 2618, 7, 12, 0, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2620, 5, 27, 0, 0, 2620, 2622, 5, 121, 0, 0, 2621, 2615, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 139, 1, 0, 0, 0, 2623, 2630, 3, 98, 49, 0, 2624, 2626, 5, 868, 0, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 3, 98, 49, 0, 2628, 2625, 1, 0, 0, 0, 2629, 2632, 1, 0, 0, 0, 2630, 2628, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2888, 1, 0, 0, 0, 2632, 2630, 1, 0, 0, 0, 2633, 2635, 5, 6, 0, 0, 2634, 2636, 5, 29, 0, 0, 2635, 2634, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2638, 3, 658, 329, 0, 2638, 2642, 3, 88, 44, 0, 2639, 2643, 5, 402, 0, 0, 2640, 2641, 5, 306, 0, 0, 2641, 2643, 3, 658, 329, 0, 2642, 2639, 1, 0, 0, 0, 2642, 2640, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2888, 1, 0, 0, 0, 2644, 2646, 5, 6, 0, 0, 2645, 2647, 5, 29, 0, 0, 2646, 2645, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2649, 5, 866, 0, 0, 2649, 2650, 3, 658, 329, 0, 2650, 2657, 3, 88, 44, 0, 2651, 2652, 5, 868, 0, 0, 2652, 2653, 3, 658, 329, 0, 2653, 2654, 3, 88, 44, 0, 2654, 2656, 1, 0, 0, 0, 2655, 2651, 1, 0, 0, 0, 2656, 2659, 1, 0, 0, 0, 2657, 2655, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2660, 1, 0, 0, 0, 2659, 2657, 1, 0, 0, 0, 2660, 2661, 5, 867, 0, 0, 2661, 2888, 1, 0, 0, 0, 2662, 2663, 5, 6, 0, 0, 2663, 2665, 7, 18, 0, 0, 2664, 2666, 3, 638, 319, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2668, 1, 0, 0, 0, 2667, 2669, 3, 70, 35, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2674, 3, 734, 367, 0, 2671, 2673, 3, 72, 36, 0, 2672, 2671, 1, 0, 0, 0, 2673, 2676, 1, 0, 0, 0, 2674, 2672, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2888, 1, 0, 0, 0, 2676, 2674, 1, 0, 0, 0, 2677, 2678, 5, 6, 0, 0, 2678, 2680, 7, 19, 0, 0, 2679, 2681, 7, 18, 0, 0, 2680, 2679, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2684, 3, 638, 319, 0, 2683, 2682, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 1, 0, 0, 0, 2685, 2689, 3, 734, 367, 0, 2686, 2688, 3, 72, 36, 0, 2687, 2686, 1, 0, 0, 0, 2688, 2691, 1, 0, 0, 0, 2689, 2687, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2888, 1, 0, 0, 0, 2691, 2689, 1, 0, 0, 0, 2692, 2697, 5, 6, 0, 0, 2693, 2695, 5, 31, 0, 0, 2694, 2696, 3, 702, 351, 0, 2695, 2694, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2698, 1, 0, 0, 0, 2697, 2693, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2700, 5, 131, 0, 0, 2700, 2702, 5, 92, 0, 0, 2701, 2703, 3, 70, 35, 0, 2702, 2701, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2708, 3, 734, 367, 0, 2705, 2707, 3, 72, 36, 0, 2706, 2705, 1, 0, 0, 0, 2707, 2710, 1, 0, 0, 0, 2708, 2706, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2888, 1, 0, 0, 0, 2710, 2708, 1, 0, 0, 0, 2711, 2716, 5, 6, 0, 0, 2712, 2714, 5, 31, 0, 0, 2713, 2715, 3, 702, 351, 0, 2714, 2713, 1, 0, 0, 0, 2714, 2715, 1, 0, 0, 0, 2715, 2717, 1, 0, 0, 0, 2716, 2712, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2720, 5, 182, 0, 0, 2719, 2721, 7, 18, 0, 0, 2720, 2719, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2723, 1, 0, 0, 0, 2722, 2724, 3, 638, 319, 0, 2723, 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2726, 1, 0, 0, 0, 2725, 2727, 3, 70, 35, 0, 2726, 2725, 1, 0, 0, 0, 2726, 2727, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2732, 3, 734, 367, 0, 2729, 2731, 3, 72, 36, 0, 2730, 2729, 1, 0, 0, 0, 2731, 2734, 1, 0, 0, 0, 2732, 2730, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2888, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2735, 2740, 5, 6, 0, 0, 2736, 2738, 5, 31, 0, 0, 2737, 2739, 3, 702, 351, 0, 2738, 2737, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 2741, 1, 0, 0, 0, 2740, 2736, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2743, 5, 67, 0, 0, 2743, 2745, 5, 92, 0, 0, 2744, 2746, 3, 638, 319, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 2748, 3, 734, 367, 0, 2748, 2749, 3, 92, 46, 0, 2749, 2888, 1, 0, 0, 0, 2750, 2752, 5, 6, 0, 0, 2751, 2753, 3, 84, 42, 0, 2752, 2751, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2888, 1, 0, 0, 0, 2754, 2755, 5, 51, 0, 0, 2755, 2756, 7, 36, 0, 0, 2756, 2888, 3, 702, 351, 0, 2757, 2758, 5, 8, 0, 0, 2758, 2759, 7, 36, 0, 0, 2759, 2761, 3, 702, 351, 0, 2760, 2762, 5, 114, 0, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2764, 1, 0, 0, 0, 2763, 2765, 5, 57, 0, 0, 2764, 2763, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2888, 1, 0, 0, 0, 2766, 2768, 5, 308, 0, 0, 2767, 2769, 5, 857, 0, 0, 2768, 2767, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2888, 7, 37, 0, 0, 2771, 2773, 5, 8, 0, 0, 2772, 2774, 5, 29, 0, 0, 2773, 2772, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2783, 3, 658, 329, 0, 2776, 2777, 5, 155, 0, 0, 2777, 2778, 5, 42, 0, 0, 2778, 2784, 3, 750, 375, 0, 2779, 2780, 5, 155, 0, 0, 2780, 2784, 7, 16, 0, 0, 2781, 2782, 5, 51, 0, 0, 2782, 2784, 5, 42, 0, 0, 2783, 2776, 1, 0, 0, 0, 2783, 2779, 1, 0, 0, 0, 2783, 2781, 1, 0, 0, 0, 2784, 2888, 1, 0, 0, 0, 2785, 2786, 5, 8, 0, 0, 2786, 2787, 5, 82, 0, 0, 2787, 2788, 3, 638, 319, 0, 2788, 2789, 7, 16, 0, 0, 2789, 2888, 1, 0, 0, 0, 2790, 2792, 5, 25, 0, 0, 2791, 2793, 5, 29, 0, 0, 2792, 2791, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2795, 3, 658, 329, 0, 2795, 2796, 3, 654, 327, 0, 2796, 2800, 3, 88, 44, 0, 2797, 2801, 5, 402, 0, 0, 2798, 2799, 5, 306, 0, 0, 2799, 2801, 3, 658, 329, 0, 2800, 2797, 1, 0, 0, 0, 2800, 2798, 1, 0, 0, 0, 2800, 2801, 1, 0, 0, 0, 2801, 2888, 1, 0, 0, 0, 2802, 2804, 5, 42, 0, 0, 2803, 2802, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2806, 5, 26, 0, 0, 2806, 2807, 5, 155, 0, 0, 2807, 2808, 5, 857, 0, 0, 2808, 2814, 3, 684, 342, 0, 2809, 2811, 5, 28, 0, 0, 2810, 2812, 5, 857, 0, 0, 2811, 2810, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 2815, 3, 686, 343, 0, 2814, 2809, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2888, 1, 0, 0, 0, 2816, 2817, 5, 33, 0, 0, 2817, 2821, 5, 176, 0, 0, 2818, 2822, 5, 823, 0, 0, 2819, 2820, 5, 26, 0, 0, 2820, 2822, 5, 155, 0, 0, 2821, 2818, 1, 0, 0, 0, 2821, 2819, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 2826, 3, 684, 342, 0, 2824, 2825, 5, 28, 0, 0, 2825, 2827, 3, 686, 343, 0, 2826, 2824, 1, 0, 0, 0, 2826, 2827, 1, 0, 0, 0, 2827, 2888, 1, 0, 0, 0, 2828, 2829, 7, 38, 0, 0, 2829, 2888, 5, 93, 0, 0, 2830, 2831, 7, 39, 0, 0, 2831, 2888, 5, 658, 0, 0, 2832, 2834, 5, 51, 0, 0, 2833, 2835, 5, 29, 0, 0, 2834, 2833, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2888, 3, 658, 329, 0, 2837, 2838, 5, 51, 0, 0, 2838, 2839, 7, 18, 0, 0, 2839, 2888, 3, 638, 319, 0, 2840, 2841, 5, 51, 0, 0, 2841, 2842, 5, 131, 0, 0, 2842, 2888, 5, 92, 0, 0, 2843, 2844, 5, 51, 0, 0, 2844, 2845, 5, 67, 0, 0, 2845, 2846, 5, 92, 0, 0, 2846, 2888, 3, 702, 351, 0, 2847, 2888, 5, 66, 0, 0, 2848, 2850, 5, 104, 0, 0, 2849, 2851, 5, 857, 0, 0, 2850, 2849, 1, 0, 0, 0, 2850, 2851, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2888, 7, 4, 0, 0, 2853, 2855, 5, 492, 0, 0, 2854, 2856, 5, 29, 0, 0, 2855, 2854, 1, 0, 0, 0, 2855, 2856, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2858, 3, 658, 329, 0, 2858, 2862, 3, 88, 44, 0, 2859, 2863, 5, 402, 0, 0, 2860, 2861, 5, 306, 0, 0, 2861, 2863, 3, 658, 329, 0, 2862, 2859, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2862, 2863, 1, 0, 0, 0, 2863, 2888, 1, 0, 0, 0, 2864, 2865, 5, 125, 0, 0, 2865, 2866, 5, 20, 0, 0, 2866, 2888, 3, 656, 328, 0, 2867, 2868, 5, 141, 0, 0, 2868, 2869, 5, 29, 0, 0, 2869, 2870, 3, 658, 329, 0, 2870, 2871, 5, 176, 0, 0, 2871, 2872, 3, 654, 327, 0, 2872, 2888, 1, 0, 0, 0, 2873, 2874, 5, 141, 0, 0, 2874, 2875, 7, 18, 0, 0, 2875, 2876, 3, 638, 319, 0, 2876, 2877, 5, 176, 0, 0, 2877, 2878, 3, 634, 317, 0, 2878, 2888, 1, 0, 0, 0, 2879, 2881, 5, 141, 0, 0, 2880, 2882, 7, 40, 0, 0, 2881, 2880, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2888, 3, 644, 322, 0, 2884, 2885, 7, 41, 0, 0, 2885, 2888, 5, 681, 0, 0, 2886, 2888, 3, 142, 71, 0, 2887, 2623, 1, 0, 0, 0, 2887, 2633, 1, 0, 0, 0, 2887, 2644, 1, 0, 0, 0, 2887, 2662, 1, 0, 0, 0, 2887, 2677, 1, 0, 0, 0, 2887, 2692, 1, 0, 0, 0, 2887, 2711, 1, 0, 0, 0, 2887, 2735, 1, 0, 0, 0, 2887, 2750, 1, 0, 0, 0, 2887, 2754, 1, 0, 0, 0, 2887, 2757, 1, 0, 0, 0, 2887, 2766, 1, 0, 0, 0, 2887, 2771, 1, 0, 0, 0, 2887, 2785, 1, 0, 0, 0, 2887, 2790, 1, 0, 0, 0, 2887, 2803, 1, 0, 0, 0, 2887, 2816, 1, 0, 0, 0, 2887, 2828, 1, 0, 0, 0, 2887, 2830, 1, 0, 0, 0, 2887, 2832, 1, 0, 0, 0, 2887, 2837, 1, 0, 0, 0, 2887, 2840, 1, 0, 0, 0, 2887, 2843, 1, 0, 0, 0, 2887, 2847, 1, 0, 0, 0, 2887, 2848, 1, 0, 0, 0, 2887, 2853, 1, 0, 0, 0, 2887, 2864, 1, 0, 0, 0, 2887, 2867, 1, 0, 0, 0, 2887, 2873, 1, 0, 0, 0, 2887, 2879, 1, 0, 0, 0, 2887, 2884, 1, 0, 0, 0, 2887, 2886, 1, 0, 0, 0, 2888, 141, 1, 0, 0, 0, 2889, 2890, 5, 6, 0, 0, 2890, 2891, 5, 130, 0, 0, 2891, 2892, 5, 866, 0, 0, 2892, 2897, 3, 110, 55, 0, 2893, 2894, 5, 868, 0, 0, 2894, 2896, 3, 110, 55, 0, 2895, 2893, 1, 0, 0, 0, 2896, 2899, 1, 0, 0, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2897, 1, 0, 0, 0, 2900, 2901, 5, 867, 0, 0, 2901, 2988, 1, 0, 0, 0, 2902, 2903, 5, 51, 0, 0, 2903, 2904, 5, 130, 0, 0, 2904, 2988, 3, 666, 333, 0, 2905, 2906, 5, 369, 0, 0, 2906, 2909, 5, 130, 0, 0, 2907, 2910, 3, 666, 333, 0, 2908, 2910, 5, 7, 0, 0, 2909, 2907, 1, 0, 0, 0, 2909, 2908, 1, 0, 0, 0, 2910, 2911, 1, 0, 0, 0, 2911, 2988, 5, 658, 0, 0, 2912, 2913, 5, 425, 0, 0, 2913, 2916, 5, 130, 0, 0, 2914, 2917, 3, 666, 333, 0, 2915, 2917, 5, 7, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2915, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2988, 5, 658, 0, 0, 2919, 2920, 5, 668, 0, 0, 2920, 2923, 5, 130, 0, 0, 2921, 2924, 3, 666, 333, 0, 2922, 2924, 5, 7, 0, 0, 2923, 2921, 1, 0, 0, 0, 2923, 2922, 1, 0, 0, 0, 2924, 2988, 1, 0, 0, 0, 2925, 2926, 5, 335, 0, 0, 2926, 2927, 5, 130, 0, 0, 2927, 2988, 3, 708, 354, 0, 2928, 2929, 5, 561, 0, 0, 2929, 2930, 5, 130, 0, 0, 2930, 2931, 3, 666, 333, 0, 2931, 2932, 5, 88, 0, 0, 2932, 2933, 5, 866, 0, 0, 2933, 2938, 3, 110, 55, 0, 2934, 2935, 5, 868, 0, 0, 2935, 2937, 3, 110, 55, 0, 2936, 2934, 1, 0, 0, 0, 2937, 2940, 1, 0, 0, 0, 2938, 2936, 1, 0, 0, 0, 2938, 2939, 1, 0, 0, 0, 2939, 2941, 1, 0, 0, 0, 2940, 2938, 1, 0, 0, 0, 2941, 2942, 5, 867, 0, 0, 2942, 2988, 1, 0, 0, 0, 2943, 2944, 5, 388, 0, 0, 2944, 2945, 5, 130, 0, 0, 2945, 2946, 3, 668, 334, 0, 2946, 2947, 5, 194, 0, 0, 2947, 2948, 5, 173, 0, 0, 2948, 2951, 3, 648, 324, 0, 2949, 2950, 7, 41, 0, 0, 2950, 2952, 5, 681, 0, 0, 2951, 2949, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2988, 1, 0, 0, 0, 2953, 2954, 5, 10, 0, 0, 2954, 2957, 5, 130, 0, 0, 2955, 2958, 3, 666, 333, 0, 2956, 2958, 5, 7, 0, 0, 2957, 2955, 1, 0, 0, 0, 2957, 2956, 1, 0, 0, 0, 2958, 2988, 1, 0, 0, 0, 2959, 2960, 5, 27, 0, 0, 2960, 2963, 5, 130, 0, 0, 2961, 2964, 3, 666, 333, 0, 2962, 2964, 5, 7, 0, 0, 2963, 2961, 1, 0, 0, 0, 2963, 2962, 1, 0, 0, 0, 2964, 2988, 1, 0, 0, 0, 2965, 2966, 5, 120, 0, 0, 2966, 2969, 5, 130, 0, 0, 2967, 2970, 3, 666, 333, 0, 2968, 2970, 5, 7, 0, 0, 2969, 2967, 1, 0, 0, 0, 2969, 2968, 1, 0, 0, 0, 2970, 2988, 1, 0, 0, 0, 2971, 2972, 5, 550, 0, 0, 2972, 2975, 5, 130, 0, 0, 2973, 2976, 3, 666, 333, 0, 2974, 2976, 5, 7, 0, 0, 2975, 2973, 1, 0, 0, 0, 2975, 2974, 1, 0, 0, 0, 2976, 2988, 1, 0, 0, 0, 2977, 2978, 5, 562, 0, 0, 2978, 2981, 5, 130, 0, 0, 2979, 2982, 3, 666, 333, 0, 2980, 2982, 5, 7, 0, 0, 2981, 2979, 1, 0, 0, 0, 2981, 2980, 1, 0, 0, 0, 2982, 2988, 1, 0, 0, 0, 2983, 2984, 5, 560, 0, 0, 2984, 2988, 5, 527, 0, 0, 2985, 2986, 5, 677, 0, 0, 2986, 2988, 5, 527, 0, 0, 2987, 2889, 1, 0, 0, 0, 2987, 2902, 1, 0, 0, 0, 2987, 2905, 1, 0, 0, 0, 2987, 2912, 1, 0, 0, 0, 2987, 2919, 1, 0, 0, 0, 2987, 2925, 1, 0, 0, 0, 2987, 2928, 1, 0, 0, 0, 2987, 2943, 1, 0, 0, 0, 2987, 2953, 1, 0, 0, 0, 2987, 2959, 1, 0, 0, 0, 2987, 2965, 1, 0, 0, 0, 2987, 2971, 1, 0, 0, 0, 2987, 2977, 1, 0, 0, 0, 2987, 2983, 1, 0, 0, 0, 2987, 2985, 1, 0, 0, 0, 2988, 143, 1, 0, 0, 0, 2989, 2990, 5, 51, 0, 0, 2990, 2992, 7, 0, 0, 0, 2991, 2993, 3, 754, 377, 0, 2992, 2991, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2995, 3, 624, 312, 0, 2995, 145, 1, 0, 0, 0, 2996, 2997, 5, 51, 0, 0, 2997, 2999, 5, 385, 0, 0, 2998, 3000, 3, 754, 377, 0, 2999, 2998, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3002, 3, 698, 349, 0, 3002, 147, 1, 0, 0, 0, 3003, 3004, 5, 51, 0, 0, 3004, 3006, 5, 82, 0, 0, 3005, 3007, 7, 1, 0, 0, 3006, 3005, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3008, 1, 0, 0, 0, 3008, 3009, 3, 638, 319, 0, 3009, 3010, 5, 119, 0, 0, 3010, 3023, 3, 648, 324, 0, 3011, 3013, 5, 308, 0, 0, 3012, 3014, 5, 857, 0, 0, 3013, 3012, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 3015, 1, 0, 0, 0, 3015, 3022, 7, 3, 0, 0, 3016, 3018, 5, 104, 0, 0, 3017, 3019, 5, 857, 0, 0, 3018, 3017, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3020, 1, 0, 0, 0, 3020, 3022, 7, 4, 0, 0, 3021, 3011, 1, 0, 0, 0, 3021, 3016, 1, 0, 0, 0, 3022, 3025, 1, 0, 0, 0, 3023, 3021, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 149, 1, 0, 0, 0, 3025, 3023, 1, 0, 0, 0, 3026, 3027, 5, 51, 0, 0, 3027, 3028, 5, 451, 0, 0, 3028, 3029, 5, 74, 0, 0, 3029, 3030, 3, 702, 351, 0, 3030, 3032, 5, 380, 0, 0, 3031, 3033, 5, 857, 0, 0, 3032, 3031, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3035, 3, 688, 344, 0, 3035, 151, 1, 0, 0, 0, 3036, 3037, 5, 51, 0, 0, 3037, 3039, 5, 132, 0, 0, 3038, 3040, 3, 754, 377, 0, 3039, 3038, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3042, 3, 698, 349, 0, 3042, 153, 1, 0, 0, 0, 3043, 3044, 5, 51, 0, 0, 3044, 3046, 5, 409, 0, 0, 3045, 3047, 3, 754, 377, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 3049, 3, 628, 314, 0, 3049, 155, 1, 0, 0, 0, 3050, 3051, 5, 51, 0, 0, 3051, 3053, 5, 592, 0, 0, 3052, 3054, 3, 754, 377, 0, 3053, 3052, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3056, 3, 702, 351, 0, 3056, 157, 1, 0, 0, 0, 3057, 3058, 5, 51, 0, 0, 3058, 3059, 5, 161, 0, 0, 3059, 3060, 5, 137, 0, 0, 3060, 3062, 5, 835, 0, 0, 3061, 3063, 3, 754, 377, 0, 3062, 3061, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3065, 5, 883, 0, 0, 3065, 159, 1, 0, 0, 0, 3066, 3068, 5, 51, 0, 0, 3067, 3069, 5, 660, 0, 0, 3068, 3067, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3072, 5, 173, 0, 0, 3071, 3073, 3, 754, 377, 0, 3072, 3071, 1, 0, 0, 0, 3072, 3073, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3076, 3, 646, 323, 0, 3075, 3077, 7, 42, 0, 0, 3076, 3075, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 161, 1, 0, 0, 0, 3078, 3080, 5, 51, 0, 0, 3079, 3081, 5, 180, 0, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3082, 1, 0, 0, 0, 3082, 3083, 5, 658, 0, 0, 3083, 3089, 3, 662, 331, 0, 3084, 3086, 5, 380, 0, 0, 3085, 3087, 5, 857, 0, 0, 3086, 3085, 1, 0, 0, 0, 3086, 3087, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 3, 688, 344, 0, 3089, 3084, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 163, 1, 0, 0, 0, 3091, 3092, 5, 51, 0, 0, 3092, 3094, 5, 178, 0, 0, 3093, 3095, 3, 754, 377, 0, 3094, 3093, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3097, 3, 698, 349, 0, 3097, 165, 1, 0, 0, 0, 3098, 3099, 5, 51, 0, 0, 3099, 3101, 5, 684, 0, 0, 3100, 3102, 3, 754, 377, 0, 3101, 3100, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3103, 1, 0, 0, 0, 3103, 3108, 3, 632, 316, 0, 3104, 3105, 5, 868, 0, 0, 3105, 3107, 3, 632, 316, 0, 3106, 3104, 1, 0, 0, 0, 3107, 3110, 1, 0, 0, 0, 3108, 3106, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3112, 1, 0, 0, 0, 3110, 3108, 1, 0, 0, 0, 3111, 3113, 7, 42, 0, 0, 3112, 3111, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 167, 1, 0, 0, 0, 3114, 3115, 5, 51, 0, 0, 3115, 3117, 5, 582, 0, 0, 3116, 3118, 3, 754, 377, 0, 3117, 3116, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 3, 650, 325, 0, 3120, 169, 1, 0, 0, 0, 3121, 3122, 5, 155, 0, 0, 3122, 3123, 5, 42, 0, 0, 3123, 3127, 5, 582, 0, 0, 3124, 3128, 5, 505, 0, 0, 3125, 3128, 5, 7, 0, 0, 3126, 3128, 3, 650, 325, 0, 3127, 3124, 1, 0, 0, 0, 3127, 3125, 1, 0, 0, 0, 3127, 3126, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3130, 5, 176, 0, 0, 3130, 3135, 3, 652, 326, 0, 3131, 3132, 5, 868, 0, 0, 3132, 3134, 3, 652, 326, 0, 3133, 3131, 1, 0, 0, 0, 3134, 3137, 1, 0, 0, 0, 3135, 3133, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3142, 1, 0, 0, 0, 3137, 3135, 1, 0, 0, 0, 3138, 3139, 5, 155, 0, 0, 3139, 3140, 5, 582, 0, 0, 3140, 3142, 3, 462, 231, 0, 3141, 3121, 1, 0, 0, 0, 3141, 3138, 1, 0, 0, 0, 3142, 171, 1, 0, 0, 0, 3143, 3144, 5, 141, 0, 0, 3144, 3145, 5, 173, 0, 0, 3145, 3150, 3, 174, 87, 0, 3146, 3147, 5, 868, 0, 0, 3147, 3149, 3, 174, 87, 0, 3148, 3146, 1, 0, 0, 0, 3149, 3152, 1, 0, 0, 0, 3150, 3148, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 173, 1, 0, 0, 0, 3152, 3150, 1, 0, 0, 0, 3153, 3154, 3, 648, 324, 0, 3154, 3155, 5, 176, 0, 0, 3155, 3156, 3, 644, 322, 0, 3156, 175, 1, 0, 0, 0, 3157, 3159, 5, 668, 0, 0, 3158, 3160, 5, 173, 0, 0, 3159, 3158, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3161, 1, 0, 0, 0, 3161, 3162, 3, 648, 324, 0, 3162, 177, 1, 0, 0, 0, 3163, 3164, 5, 21, 0, 0, 3164, 3171, 3, 698, 349, 0, 3165, 3168, 5, 866, 0, 0, 3166, 3169, 3, 744, 372, 0, 3167, 3169, 3, 736, 368, 0, 3168, 3166, 1, 0, 0, 0, 3168, 3167, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3172, 5, 867, 0, 0, 3171, 3165, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 179, 1, 0, 0, 0, 3173, 3176, 3, 234, 117, 0, 3174, 3176, 3, 236, 118, 0, 3175, 3173, 1, 0, 0, 0, 3175, 3174, 1, 0, 0, 0, 3176, 181, 1, 0, 0, 0, 3177, 3178, 5, 371, 0, 0, 3178, 3179, 3, 736, 368, 0, 3179, 183, 1, 0, 0, 0, 3180, 3185, 3, 238, 119, 0, 3181, 3185, 3, 240, 120, 0, 3182, 3185, 3, 242, 121, 0, 3183, 3185, 3, 244, 122, 0, 3184, 3180, 1, 0, 0, 0, 3184, 3181, 1, 0, 0, 0, 3184, 3182, 1, 0, 0, 0, 3184, 3183, 1, 0, 0, 0, 3185, 185, 1, 0, 0, 0, 3186, 3188, 5, 86, 0, 0, 3187, 3189, 7, 43, 0, 0, 3188, 3187, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3191, 1, 0, 0, 0, 3190, 3192, 5, 79, 0, 0, 3191, 3190, 1, 0, 0, 0, 3191, 3192, 1, 0, 0, 0, 3192, 3194, 1, 0, 0, 0, 3193, 3195, 5, 88, 0, 0, 3194, 3193, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3203, 3, 648, 324, 0, 3197, 3198, 5, 130, 0, 0, 3198, 3200, 5, 866, 0, 0, 3199, 3201, 3, 666, 333, 0, 3200, 3199, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3202, 1, 0, 0, 0, 3202, 3204, 5, 867, 0, 0, 3203, 3197, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3216, 1, 0, 0, 0, 3205, 3207, 3, 262, 131, 0, 3206, 3205, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3210, 1, 0, 0, 0, 3208, 3211, 3, 738, 369, 0, 3209, 3211, 3, 190, 95, 0, 3210, 3208, 1, 0, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 1, 0, 0, 0, 3212, 3214, 3, 188, 94, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3217, 1, 0, 0, 0, 3215, 3217, 3, 226, 113, 0, 3216, 3206, 1, 0, 0, 0, 3216, 3215, 1, 0, 0, 0, 3217, 3219, 1, 0, 0, 0, 3218, 3220, 3, 188, 94, 0, 3219, 3218, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3233, 1, 0, 0, 0, 3221, 3222, 5, 119, 0, 0, 3222, 3223, 5, 373, 0, 0, 3223, 3224, 5, 92, 0, 0, 3224, 3225, 5, 185, 0, 0, 3225, 3230, 3, 228, 114, 0, 3226, 3227, 5, 868, 0, 0, 3227, 3229, 3, 228, 114, 0, 3228, 3226, 1, 0, 0, 0, 3229, 3232, 1, 0, 0, 0, 3230, 3228, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3234, 1, 0, 0, 0, 3232, 3230, 1, 0, 0, 0, 3233, 3221, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 187, 1, 0, 0, 0, 3235, 3236, 5, 13, 0, 0, 3236, 3238, 3, 702, 351, 0, 3237, 3239, 3, 262, 131, 0, 3238, 3237, 1, 0, 0, 0, 3238, 3239, 1, 0, 0, 0, 3239, 189, 1, 0, 0, 0, 3240, 3245, 3, 204, 102, 0, 3241, 3242, 5, 173, 0, 0, 3242, 3245, 3, 648, 324, 0, 3243, 3245, 3, 224, 112, 0, 3244, 3240, 1, 0, 0, 0, 3244, 3241, 1, 0, 0, 0, 3244, 3243, 1, 0, 0, 0, 3245, 191, 1, 0, 0, 0, 3246, 3252, 3, 194, 97, 0, 3247, 3249, 5, 828, 0, 0, 3248, 3250, 7, 44, 0, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3253, 3, 194, 97, 0, 3252, 3247, 1, 0, 0, 0, 3253, 3254, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 193, 1, 0, 0, 0, 3256, 3258, 5, 866, 0, 0, 3257, 3256, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 3, 274, 137, 0, 3260, 3262, 5, 867, 0, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 195, 1, 0, 0, 0, 3263, 3264, 5, 103, 0, 0, 3264, 3266, 5, 360, 0, 0, 3265, 3267, 7, 45, 0, 0, 3266, 3265, 1, 0, 0, 0, 3266, 3267, 1, 0, 0, 0, 3267, 3269, 1, 0, 0, 0, 3268, 3270, 5, 450, 0, 0, 3269, 3268, 1, 0, 0, 0, 3269, 3270, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3272, 5, 83, 0, 0, 3272, 3274, 5, 882, 0, 0, 3273, 3275, 7, 6, 0, 0, 3274, 3273, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3276, 1, 0, 0, 0, 3276, 3277, 5, 88, 0, 0, 3277, 3278, 5, 173, 0, 0, 3278, 3284, 3, 648, 324, 0, 3279, 3280, 5, 130, 0, 0, 3280, 3281, 5, 866, 0, 0, 3281, 3282, 3, 666, 333, 0, 3282, 3283, 5, 867, 0, 0, 3283, 3285, 1, 0, 0, 0, 3284, 3279, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3289, 1, 0, 0, 0, 3286, 3287, 5, 26, 0, 0, 3287, 3288, 5, 155, 0, 0, 3288, 3290, 3, 684, 342, 0, 3289, 3286, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3297, 1, 0, 0, 0, 3291, 3293, 7, 46, 0, 0, 3292, 3294, 3, 298, 149, 0, 3293, 3292, 1, 0, 0, 0, 3294, 3295, 1, 0, 0, 0, 3295, 3293, 1, 0, 0, 0, 3295, 3296, 1, 0, 0, 0, 3296, 3298, 1, 0, 0, 0, 3297, 3291, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 3305, 1, 0, 0, 0, 3299, 3301, 5, 102, 0, 0, 3300, 3302, 3, 300, 150, 0, 3301, 3300, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3301, 1, 0, 0, 0, 3303, 3304, 1, 0, 0, 0, 3304, 3306, 1, 0, 0, 0, 3305, 3299, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3311, 1, 0, 0, 0, 3307, 3308, 5, 79, 0, 0, 3308, 3309, 3, 708, 354, 0, 3309, 3310, 7, 47, 0, 0, 3310, 3312, 1, 0, 0, 0, 3311, 3307, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3324, 1, 0, 0, 0, 3313, 3314, 5, 866, 0, 0, 3314, 3319, 3, 230, 115, 0, 3315, 3316, 5, 868, 0, 0, 3316, 3318, 3, 230, 115, 0, 3317, 3315, 1, 0, 0, 0, 3318, 3321, 1, 0, 0, 0, 3319, 3317, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3322, 1, 0, 0, 0, 3321, 3319, 1, 0, 0, 0, 3322, 3323, 5, 867, 0, 0, 3323, 3325, 1, 0, 0, 0, 3324, 3313, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3335, 1, 0, 0, 0, 3326, 3327, 5, 155, 0, 0, 3327, 3332, 3, 228, 114, 0, 3328, 3329, 5, 868, 0, 0, 3329, 3331, 3, 228, 114, 0, 3330, 3328, 1, 0, 0, 0, 3331, 3334, 1, 0, 0, 0, 3332, 3330, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3332, 1, 0, 0, 0, 3335, 3326, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 197, 1, 0, 0, 0, 3337, 3338, 5, 103, 0, 0, 3338, 3340, 5, 695, 0, 0, 3339, 3341, 7, 45, 0, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3343, 1, 0, 0, 0, 3342, 3344, 5, 450, 0, 0, 3343, 3342, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3345, 1, 0, 0, 0, 3345, 3346, 5, 83, 0, 0, 3346, 3348, 5, 882, 0, 0, 3347, 3349, 7, 6, 0, 0, 3348, 3347, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3351, 5, 88, 0, 0, 3351, 3352, 5, 173, 0, 0, 3352, 3356, 3, 648, 324, 0, 3353, 3354, 5, 26, 0, 0, 3354, 3355, 5, 155, 0, 0, 3355, 3357, 3, 684, 342, 0, 3356, 3353, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3368, 1, 0, 0, 0, 3358, 3359, 5, 587, 0, 0, 3359, 3360, 5, 423, 0, 0, 3360, 3362, 5, 20, 0, 0, 3361, 3363, 5, 859, 0, 0, 3362, 3361, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3366, 5, 882, 0, 0, 3365, 3367, 5, 858, 0, 0, 3366, 3365, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3369, 1, 0, 0, 0, 3368, 3358, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3374, 1, 0, 0, 0, 3370, 3371, 5, 79, 0, 0, 3371, 3372, 3, 708, 354, 0, 3372, 3373, 7, 47, 0, 0, 3373, 3375, 1, 0, 0, 0, 3374, 3370, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3387, 1, 0, 0, 0, 3376, 3377, 5, 866, 0, 0, 3377, 3382, 3, 230, 115, 0, 3378, 3379, 5, 868, 0, 0, 3379, 3381, 3, 230, 115, 0, 3380, 3378, 1, 0, 0, 0, 3381, 3384, 1, 0, 0, 0, 3382, 3380, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3385, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3385, 3386, 5, 867, 0, 0, 3386, 3388, 1, 0, 0, 0, 3387, 3376, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3398, 1, 0, 0, 0, 3389, 3390, 5, 155, 0, 0, 3390, 3395, 3, 228, 114, 0, 3391, 3392, 5, 868, 0, 0, 3392, 3394, 3, 228, 114, 0, 3393, 3391, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3399, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3398, 3389, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 199, 1, 0, 0, 0, 3400, 3401, 5, 866, 0, 0, 3401, 3403, 3, 218, 109, 0, 3402, 3404, 3, 252, 126, 0, 3403, 3402, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3406, 1, 0, 0, 0, 3405, 3407, 3, 312, 156, 0, 3406, 3405, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3410, 5, 867, 0, 0, 3409, 3411, 3, 252, 126, 0, 3410, 3409, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3413, 1, 0, 0, 0, 3412, 3414, 3, 312, 156, 0, 3413, 3412, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3416, 1, 0, 0, 0, 3415, 3417, 3, 296, 148, 0, 3416, 3415, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 201, 1, 0, 0, 0, 3418, 3420, 5, 143, 0, 0, 3419, 3421, 7, 48, 0, 0, 3420, 3419, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3423, 1, 0, 0, 0, 3422, 3424, 5, 88, 0, 0, 3423, 3422, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3431, 3, 648, 324, 0, 3426, 3427, 5, 130, 0, 0, 3427, 3428, 5, 866, 0, 0, 3428, 3429, 3, 666, 333, 0, 3429, 3430, 5, 867, 0, 0, 3430, 3432, 1, 0, 0, 0, 3431, 3426, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 3441, 1, 0, 0, 0, 3433, 3434, 5, 866, 0, 0, 3434, 3435, 3, 656, 328, 0, 3435, 3436, 5, 867, 0, 0, 3436, 3438, 1, 0, 0, 0, 3437, 3433, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 3442, 3, 222, 111, 0, 3440, 3442, 3, 226, 113, 0, 3441, 3437, 1, 0, 0, 0, 3441, 3440, 1, 0, 0, 0, 3442, 203, 1, 0, 0, 0, 3443, 3447, 3, 274, 137, 0, 3444, 3446, 3, 276, 138, 0, 3445, 3444, 1, 0, 0, 0, 3446, 3449, 1, 0, 0, 0, 3447, 3445, 1, 0, 0, 0, 3447, 3448, 1, 0, 0, 0, 3448, 3458, 1, 0, 0, 0, 3449, 3447, 1, 0, 0, 0, 3450, 3452, 5, 181, 0, 0, 3451, 3453, 7, 44, 0, 0, 3452, 3451, 1, 0, 0, 0, 3452, 3453, 1, 0, 0, 0, 3453, 3456, 1, 0, 0, 0, 3454, 3457, 3, 274, 137, 0, 3455, 3457, 3, 272, 136, 0, 3456, 3454, 1, 0, 0, 0, 3456, 3455, 1, 0, 0, 0, 3457, 3459, 1, 0, 0, 0, 3458, 3450, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3464, 1, 0, 0, 0, 3460, 3461, 5, 868, 0, 0, 3461, 3463, 3, 278, 139, 0, 3462, 3460, 1, 0, 0, 0, 3463, 3466, 1, 0, 0, 0, 3464, 3462, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3468, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3467, 3469, 3, 252, 126, 0, 3468, 3467, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 3471, 1, 0, 0, 0, 3470, 3472, 3, 312, 156, 0, 3471, 3470, 1, 0, 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3474, 1, 0, 0, 0, 3473, 3475, 3, 232, 116, 0, 3474, 3473, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3477, 1, 0, 0, 0, 3476, 3478, 3, 296, 148, 0, 3477, 3476, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3503, 1, 0, 0, 0, 3479, 3483, 3, 272, 136, 0, 3480, 3482, 3, 276, 138, 0, 3481, 3480, 1, 0, 0, 0, 3482, 3485, 1, 0, 0, 0, 3483, 3481, 1, 0, 0, 0, 3483, 3484, 1, 0, 0, 0, 3484, 3491, 1, 0, 0, 0, 3485, 3483, 1, 0, 0, 0, 3486, 3488, 5, 181, 0, 0, 3487, 3489, 7, 44, 0, 0, 3488, 3487, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3490, 1, 0, 0, 0, 3490, 3492, 3, 272, 136, 0, 3491, 3486, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3494, 1, 0, 0, 0, 3493, 3495, 3, 252, 126, 0, 3494, 3493, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 3497, 1, 0, 0, 0, 3496, 3498, 3, 312, 156, 0, 3497, 3496, 1, 0, 0, 0, 3497, 3498, 1, 0, 0, 0, 3498, 3500, 1, 0, 0, 0, 3499, 3501, 3, 232, 116, 0, 3500, 3499, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3443, 1, 0, 0, 0, 3502, 3479, 1, 0, 0, 0, 3503, 205, 1, 0, 0, 0, 3504, 3506, 3, 46, 23, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3509, 3, 208, 104, 0, 3508, 3510, 3, 252, 126, 0, 3509, 3508, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3512, 1, 0, 0, 0, 3511, 3513, 3, 312, 156, 0, 3512, 3511, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 3515, 1, 0, 0, 0, 3514, 3516, 3, 296, 148, 0, 3515, 3514, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 207, 1, 0, 0, 0, 3517, 3518, 6, 104, -1, 0, 3518, 3519, 3, 210, 105, 0, 3519, 3534, 1, 0, 0, 0, 3520, 3521, 10, 2, 0, 0, 3521, 3523, 5, 181, 0, 0, 3522, 3524, 7, 44, 0, 0, 3523, 3522, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 3533, 3, 210, 105, 0, 3526, 3527, 10, 1, 0, 0, 3527, 3529, 5, 59, 0, 0, 3528, 3530, 7, 44, 0, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3533, 3, 210, 105, 0, 3532, 3520, 1, 0, 0, 0, 3532, 3526, 1, 0, 0, 0, 3533, 3536, 1, 0, 0, 0, 3534, 3532, 1, 0, 0, 0, 3534, 3535, 1, 0, 0, 0, 3535, 209, 1, 0, 0, 0, 3536, 3534, 1, 0, 0, 0, 3537, 3538, 6, 105, -1, 0, 3538, 3539, 3, 212, 106, 0, 3539, 3548, 1, 0, 0, 0, 3540, 3541, 10, 1, 0, 0, 3541, 3543, 5, 828, 0, 0, 3542, 3544, 7, 44, 0, 0, 3543, 3542, 1, 0, 0, 0, 3543, 3544, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3547, 3, 212, 106, 0, 3546, 3540, 1, 0, 0, 0, 3547, 3550, 1, 0, 0, 0, 3548, 3546, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 211, 1, 0, 0, 0, 3550, 3548, 1, 0, 0, 0, 3551, 3566, 3, 220, 110, 0, 3552, 3553, 5, 866, 0, 0, 3553, 3555, 3, 208, 104, 0, 3554, 3556, 3, 252, 126, 0, 3555, 3554, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 3558, 1, 0, 0, 0, 3557, 3559, 3, 312, 156, 0, 3558, 3557, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 3561, 1, 0, 0, 0, 3560, 3562, 3, 296, 148, 0, 3561, 3560, 1, 0, 0, 0, 3561, 3562, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3564, 5, 867, 0, 0, 3564, 3566, 1, 0, 0, 0, 3565, 3551, 1, 0, 0, 0, 3565, 3552, 1, 0, 0, 0, 3566, 213, 1, 0, 0, 0, 3567, 3570, 3, 248, 124, 0, 3568, 3570, 3, 250, 125, 0, 3569, 3567, 1, 0, 0, 0, 3569, 3568, 1, 0, 0, 0, 3570, 215, 1, 0, 0, 0, 3571, 3575, 3, 224, 112, 0, 3572, 3573, 5, 125, 0, 0, 3573, 3574, 5, 20, 0, 0, 3574, 3576, 3, 670, 335, 0, 3575, 3572, 1, 0, 0, 0, 3575, 3576, 1, 0, 0, 0, 3576, 3579, 1, 0, 0, 0, 3577, 3578, 5, 100, 0, 0, 3578, 3580, 3, 314, 157, 0, 3579, 3577, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 217, 1, 0, 0, 0, 3581, 3586, 3, 220, 110, 0, 3582, 3583, 7, 49, 0, 0, 3583, 3585, 3, 220, 110, 0, 3584, 3582, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3584, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3590, 1, 0, 0, 0, 3588, 3586, 1, 0, 0, 0, 3589, 3591, 3, 252, 126, 0, 3590, 3589, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3593, 1, 0, 0, 0, 3592, 3594, 3, 312, 156, 0, 3593, 3592, 1, 0, 0, 0, 3593, 3594, 1, 0, 0, 0, 3594, 3596, 1, 0, 0, 0, 3595, 3597, 3, 296, 148, 0, 3596, 3595, 1, 0, 0, 0, 3596, 3597, 1, 0, 0, 0, 3597, 219, 1, 0, 0, 0, 3598, 3602, 3, 204, 102, 0, 3599, 3602, 3, 614, 307, 0, 3600, 3602, 3, 216, 108, 0, 3601, 3598, 1, 0, 0, 0, 3601, 3599, 1, 0, 0, 0, 3601, 3600, 1, 0, 0, 0, 3602, 221, 1, 0, 0, 0, 3603, 3609, 3, 204, 102, 0, 3604, 3605, 5, 173, 0, 0, 3605, 3609, 3, 648, 324, 0, 3606, 3609, 3, 738, 369, 0, 3607, 3609, 3, 224, 112, 0, 3608, 3603, 1, 0, 0, 0, 3608, 3604, 1, 0, 0, 0, 3608, 3606, 1, 0, 0, 0, 3608, 3607, 1, 0, 0, 0, 3609, 223, 1, 0, 0, 0, 3610, 3611, 5, 189, 0, 0, 3611, 3612, 5, 586, 0, 0, 3612, 3618, 3, 740, 370, 0, 3613, 3614, 5, 868, 0, 0, 3614, 3615, 5, 586, 0, 0, 3615, 3617, 3, 740, 370, 0, 3616, 3613, 1, 0, 0, 0, 3617, 3620, 1, 0, 0, 0, 3618, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 225, 1, 0, 0, 0, 3620, 3618, 1, 0, 0, 0, 3621, 3622, 5, 155, 0, 0, 3622, 3627, 3, 228, 114, 0, 3623, 3624, 5, 868, 0, 0, 3624, 3626, 3, 228, 114, 0, 3625, 3623, 1, 0, 0, 0, 3626, 3629, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 227, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3631, 3, 658, 329, 0, 3631, 3632, 5, 857, 0, 0, 3632, 3633, 3, 742, 371, 0, 3633, 229, 1, 0, 0, 0, 3634, 3637, 3, 702, 351, 0, 3635, 3637, 5, 892, 0, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3635, 1, 0, 0, 0, 3637, 231, 1, 0, 0, 0, 3638, 3639, 5, 65, 0, 0, 3639, 3649, 7, 50, 0, 0, 3640, 3641, 5, 510, 0, 0, 3641, 3646, 3, 648, 324, 0, 3642, 3643, 5, 868, 0, 0, 3643, 3645, 3, 648, 324, 0, 3644, 3642, 1, 0, 0, 0, 3645, 3648, 1, 0, 0, 0, 3646, 3644, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3650, 1, 0, 0, 0, 3648, 3646, 1, 0, 0, 0, 3649, 3640, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3650, 3653, 1, 0, 0, 0, 3651, 3652, 7, 51, 0, 0, 3652, 3654, 5, 105, 0, 0, 3653, 3651, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3660, 1, 0, 0, 0, 3655, 3656, 5, 104, 0, 0, 3656, 3657, 5, 80, 0, 0, 3657, 3658, 5, 594, 0, 0, 3658, 3660, 5, 491, 0, 0, 3659, 3638, 1, 0, 0, 0, 3659, 3655, 1, 0, 0, 0, 3660, 233, 1, 0, 0, 0, 3661, 3663, 5, 44, 0, 0, 3662, 3664, 5, 107, 0, 0, 3663, 3662, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3666, 1, 0, 0, 0, 3665, 3667, 5, 549, 0, 0, 3666, 3665, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3669, 1, 0, 0, 0, 3668, 3670, 5, 79, 0, 0, 3669, 3668, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 5, 68, 0, 0, 3672, 3677, 3, 648, 324, 0, 3673, 3675, 5, 13, 0, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3678, 3, 702, 351, 0, 3677, 3674, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3684, 1, 0, 0, 0, 3679, 3680, 5, 130, 0, 0, 3680, 3681, 5, 866, 0, 0, 3681, 3682, 3, 666, 333, 0, 3682, 3683, 5, 867, 0, 0, 3683, 3685, 1, 0, 0, 0, 3684, 3679, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3688, 1, 0, 0, 0, 3686, 3687, 5, 192, 0, 0, 3687, 3689, 3, 800, 400, 0, 3688, 3686, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3691, 1, 0, 0, 0, 3690, 3692, 3, 252, 126, 0, 3691, 3690, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3695, 1, 0, 0, 0, 3693, 3694, 5, 100, 0, 0, 3694, 3696, 3, 314, 157, 0, 3695, 3693, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 235, 1, 0, 0, 0, 3697, 3699, 5, 44, 0, 0, 3698, 3700, 5, 107, 0, 0, 3699, 3698, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3702, 1, 0, 0, 0, 3701, 3703, 5, 549, 0, 0, 3702, 3701, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3705, 1, 0, 0, 0, 3704, 3706, 5, 79, 0, 0, 3705, 3704, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3746, 1, 0, 0, 0, 3707, 3710, 3, 648, 324, 0, 3708, 3709, 5, 865, 0, 0, 3709, 3711, 5, 850, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3720, 1, 0, 0, 0, 3712, 3713, 5, 868, 0, 0, 3713, 3716, 3, 648, 324, 0, 3714, 3715, 5, 865, 0, 0, 3715, 3717, 5, 850, 0, 0, 3716, 3714, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 3719, 1, 0, 0, 0, 3718, 3712, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3723, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3723, 3724, 5, 68, 0, 0, 3724, 3725, 3, 256, 128, 0, 3725, 3747, 1, 0, 0, 0, 3726, 3727, 5, 68, 0, 0, 3727, 3730, 3, 648, 324, 0, 3728, 3729, 5, 865, 0, 0, 3729, 3731, 5, 850, 0, 0, 3730, 3728, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3740, 1, 0, 0, 0, 3732, 3733, 5, 868, 0, 0, 3733, 3736, 3, 648, 324, 0, 3734, 3735, 5, 865, 0, 0, 3735, 3737, 5, 850, 0, 0, 3736, 3734, 1, 0, 0, 0, 3736, 3737, 1, 0, 0, 0, 3737, 3739, 1, 0, 0, 0, 3738, 3732, 1, 0, 0, 0, 3739, 3742, 1, 0, 0, 0, 3740, 3738, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3743, 1, 0, 0, 0, 3742, 3740, 1, 0, 0, 0, 3743, 3744, 5, 188, 0, 0, 3744, 3745, 3, 256, 128, 0, 3745, 3747, 1, 0, 0, 0, 3746, 3707, 1, 0, 0, 0, 3746, 3726, 1, 0, 0, 0, 3747, 3750, 1, 0, 0, 0, 3748, 3749, 5, 192, 0, 0, 3749, 3751, 3, 800, 400, 0, 3750, 3748, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 237, 1, 0, 0, 0, 3752, 3753, 5, 417, 0, 0, 3753, 3754, 3, 648, 324, 0, 3754, 3759, 5, 516, 0, 0, 3755, 3757, 5, 13, 0, 0, 3756, 3755, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3758, 1, 0, 0, 0, 3758, 3760, 3, 702, 351, 0, 3759, 3756, 1, 0, 0, 0, 3759, 3760, 1, 0, 0, 0, 3760, 239, 1, 0, 0, 0, 3761, 3762, 5, 417, 0, 0, 3762, 3763, 3, 648, 324, 0, 3763, 3764, 5, 135, 0, 0, 3764, 3771, 3, 638, 319, 0, 3765, 3766, 3, 810, 405, 0, 3766, 3767, 5, 866, 0, 0, 3767, 3768, 3, 744, 372, 0, 3768, 3769, 5, 867, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3772, 7, 52, 0, 0, 3771, 3765, 1, 0, 0, 0, 3771, 3770, 1, 0, 0, 0, 3772, 3775, 1, 0, 0, 0, 3773, 3774, 5, 192, 0, 0, 3774, 3776, 3, 800, 400, 0, 3775, 3773, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3779, 1, 0, 0, 0, 3777, 3778, 5, 100, 0, 0, 3778, 3780, 3, 314, 157, 0, 3779, 3777, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 241, 1, 0, 0, 0, 3781, 3782, 5, 417, 0, 0, 3782, 3783, 3, 648, 324, 0, 3783, 3784, 5, 135, 0, 0, 3784, 3787, 7, 53, 0, 0, 3785, 3786, 5, 192, 0, 0, 3786, 3788, 3, 800, 400, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3791, 1, 0, 0, 0, 3789, 3790, 5, 100, 0, 0, 3790, 3792, 3, 314, 157, 0, 3791, 3789, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 243, 1, 0, 0, 0, 3793, 3794, 5, 417, 0, 0, 3794, 3795, 3, 648, 324, 0, 3795, 3796, 5, 334, 0, 0, 3796, 245, 1, 0, 0, 0, 3797, 3798, 5, 425, 0, 0, 3798, 3799, 5, 173, 0, 0, 3799, 3800, 5, 68, 0, 0, 3800, 3805, 3, 712, 356, 0, 3801, 3802, 5, 868, 0, 0, 3802, 3804, 3, 712, 356, 0, 3803, 3801, 1, 0, 0, 0, 3804, 3807, 1, 0, 0, 0, 3805, 3803, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 247, 1, 0, 0, 0, 3807, 3805, 1, 0, 0, 0, 3808, 3810, 5, 185, 0, 0, 3809, 3811, 5, 107, 0, 0, 3810, 3809, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3813, 1, 0, 0, 0, 3812, 3814, 5, 79, 0, 0, 3813, 3812, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3820, 3, 648, 324, 0, 3816, 3818, 5, 13, 0, 0, 3817, 3816, 1, 0, 0, 0, 3817, 3818, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3821, 3, 702, 351, 0, 3820, 3817, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 3823, 5, 155, 0, 0, 3823, 3828, 3, 228, 114, 0, 3824, 3825, 5, 868, 0, 0, 3825, 3827, 3, 228, 114, 0, 3826, 3824, 1, 0, 0, 0, 3827, 3830, 1, 0, 0, 0, 3828, 3826, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3833, 1, 0, 0, 0, 3830, 3828, 1, 0, 0, 0, 3831, 3832, 5, 192, 0, 0, 3832, 3834, 3, 800, 400, 0, 3833, 3831, 1, 0, 0, 0, 3833, 3834, 1, 0, 0, 0, 3834, 3836, 1, 0, 0, 0, 3835, 3837, 3, 252, 126, 0, 3836, 3835, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3839, 1, 0, 0, 0, 3838, 3840, 3, 312, 156, 0, 3839, 3838, 1, 0, 0, 0, 3839, 3840, 1, 0, 0, 0, 3840, 249, 1, 0, 0, 0, 3841, 3843, 5, 185, 0, 0, 3842, 3844, 5, 107, 0, 0, 3843, 3842, 1, 0, 0, 0, 3843, 3844, 1, 0, 0, 0, 3844, 3846, 1, 0, 0, 0, 3845, 3847, 5, 79, 0, 0, 3846, 3845, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 3848, 1, 0, 0, 0, 3848, 3849, 3, 256, 128, 0, 3849, 3850, 5, 155, 0, 0, 3850, 3855, 3, 228, 114, 0, 3851, 3852, 5, 868, 0, 0, 3852, 3854, 3, 228, 114, 0, 3853, 3851, 1, 0, 0, 0, 3854, 3857, 1, 0, 0, 0, 3855, 3853, 1, 0, 0, 0, 3855, 3856, 1, 0, 0, 0, 3856, 3860, 1, 0, 0, 0, 3857, 3855, 1, 0, 0, 0, 3858, 3859, 5, 192, 0, 0, 3859, 3861, 3, 800, 400, 0, 3860, 3858, 1, 0, 0, 0, 3860, 3861, 1, 0, 0, 0, 3861, 251, 1, 0, 0, 0, 3862, 3863, 5, 125, 0, 0, 3863, 3864, 5, 20, 0, 0, 3864, 3869, 3, 254, 127, 0, 3865, 3866, 5, 868, 0, 0, 3866, 3868, 3, 254, 127, 0, 3867, 3865, 1, 0, 0, 0, 3868, 3871, 1, 0, 0, 0, 3869, 3867, 1, 0, 0, 0, 3869, 3870, 1, 0, 0, 0, 3870, 253, 1, 0, 0, 0, 3871, 3869, 1, 0, 0, 0, 3872, 3874, 3, 800, 400, 0, 3873, 3875, 7, 54, 0, 0, 3874, 3873, 1, 0, 0, 0, 3874, 3875, 1, 0, 0, 0, 3875, 255, 1, 0, 0, 0, 3876, 3881, 3, 258, 129, 0, 3877, 3878, 5, 868, 0, 0, 3878, 3880, 3, 258, 129, 0, 3879, 3877, 1, 0, 0, 0, 3880, 3883, 1, 0, 0, 0, 3881, 3879, 1, 0, 0, 0, 3881, 3882, 1, 0, 0, 0, 3882, 257, 1, 0, 0, 0, 3883, 3881, 1, 0, 0, 0, 3884, 3888, 3, 260, 130, 0, 3885, 3887, 3, 268, 134, 0, 3886, 3885, 1, 0, 0, 0, 3887, 3890, 1, 0, 0, 0, 3888, 3886, 1, 0, 0, 0, 3888, 3889, 1, 0, 0, 0, 3889, 3903, 1, 0, 0, 0, 3890, 3888, 1, 0, 0, 0, 3891, 3892, 5, 866, 0, 0, 3892, 3896, 3, 260, 130, 0, 3893, 3895, 3, 268, 134, 0, 3894, 3893, 1, 0, 0, 0, 3895, 3898, 1, 0, 0, 0, 3896, 3894, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 3899, 1, 0, 0, 0, 3898, 3896, 1, 0, 0, 0, 3899, 3900, 5, 867, 0, 0, 3900, 3903, 1, 0, 0, 0, 3901, 3903, 3, 280, 140, 0, 3902, 3884, 1, 0, 0, 0, 3902, 3891, 1, 0, 0, 0, 3902, 3901, 1, 0, 0, 0, 3903, 259, 1, 0, 0, 0, 3904, 3910, 3, 648, 324, 0, 3905, 3906, 5, 130, 0, 0, 3906, 3907, 5, 866, 0, 0, 3907, 3908, 3, 666, 333, 0, 3908, 3909, 5, 867, 0, 0, 3909, 3911, 1, 0, 0, 0, 3910, 3905, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3916, 1, 0, 0, 0, 3912, 3914, 5, 13, 0, 0, 3913, 3912, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3917, 3, 702, 351, 0, 3916, 3913, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3926, 1, 0, 0, 0, 3918, 3923, 3, 264, 132, 0, 3919, 3920, 5, 868, 0, 0, 3920, 3922, 3, 264, 132, 0, 3921, 3919, 1, 0, 0, 0, 3922, 3925, 1, 0, 0, 0, 3923, 3921, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3927, 1, 0, 0, 0, 3925, 3923, 1, 0, 0, 0, 3926, 3918, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3950, 1, 0, 0, 0, 3928, 3930, 5, 95, 0, 0, 3929, 3928, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3936, 1, 0, 0, 0, 3931, 3937, 3, 204, 102, 0, 3932, 3933, 5, 866, 0, 0, 3933, 3934, 3, 204, 102, 0, 3934, 3935, 5, 867, 0, 0, 3935, 3937, 1, 0, 0, 0, 3936, 3931, 1, 0, 0, 0, 3936, 3932, 1, 0, 0, 0, 3937, 3939, 1, 0, 0, 0, 3938, 3940, 5, 13, 0, 0, 3939, 3938, 1, 0, 0, 0, 3939, 3940, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 3943, 3, 702, 351, 0, 3942, 3944, 3, 262, 131, 0, 3943, 3942, 1, 0, 0, 0, 3943, 3944, 1, 0, 0, 0, 3944, 3950, 1, 0, 0, 0, 3945, 3946, 5, 866, 0, 0, 3946, 3947, 3, 256, 128, 0, 3947, 3948, 5, 867, 0, 0, 3948, 3950, 1, 0, 0, 0, 3949, 3904, 1, 0, 0, 0, 3949, 3929, 1, 0, 0, 0, 3949, 3945, 1, 0, 0, 0, 3950, 261, 1, 0, 0, 0, 3951, 3952, 5, 866, 0, 0, 3952, 3953, 3, 656, 328, 0, 3953, 3954, 5, 867, 0, 0, 3954, 263, 1, 0, 0, 0, 3955, 3956, 7, 55, 0, 0, 3956, 3959, 7, 18, 0, 0, 3957, 3958, 5, 65, 0, 0, 3958, 3960, 3, 266, 133, 0, 3959, 3957, 1, 0, 0, 0, 3959, 3960, 1, 0, 0, 0, 3960, 3961, 1, 0, 0, 0, 3961, 3963, 5, 866, 0, 0, 3962, 3964, 3, 636, 318, 0, 3963, 3962, 1, 0, 0, 0, 3963, 3964, 1, 0, 0, 0, 3964, 3965, 1, 0, 0, 0, 3965, 3966, 5, 867, 0, 0, 3966, 265, 1, 0, 0, 0, 3967, 3973, 5, 91, 0, 0, 3968, 3969, 5, 125, 0, 0, 3969, 3973, 5, 20, 0, 0, 3970, 3971, 5, 74, 0, 0, 3971, 3973, 5, 20, 0, 0, 3972, 3967, 1, 0, 0, 0, 3972, 3968, 1, 0, 0, 0, 3972, 3970, 1, 0, 0, 0, 3973, 267, 1, 0, 0, 0, 3974, 3976, 7, 56, 0, 0, 3975, 3974, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3977, 1, 0, 0, 0, 3977, 3979, 5, 91, 0, 0, 3978, 3980, 5, 95, 0, 0, 3979, 3978, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3981, 1, 0, 0, 0, 3981, 3985, 3, 260, 130, 0, 3982, 3984, 3, 270, 135, 0, 3983, 3982, 1, 0, 0, 0, 3984, 3987, 1, 0, 0, 0, 3985, 3983, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 4024, 1, 0, 0, 0, 3987, 3985, 1, 0, 0, 0, 3988, 3989, 5, 172, 0, 0, 3989, 3993, 3, 260, 130, 0, 3990, 3992, 3, 270, 135, 0, 3991, 3990, 1, 0, 0, 0, 3992, 3995, 1, 0, 0, 0, 3993, 3991, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 4024, 1, 0, 0, 0, 3995, 3993, 1, 0, 0, 0, 3996, 3998, 7, 57, 0, 0, 3997, 3999, 5, 127, 0, 0, 3998, 3997, 1, 0, 0, 0, 3998, 3999, 1, 0, 0, 0, 3999, 4000, 1, 0, 0, 0, 4000, 4002, 5, 91, 0, 0, 4001, 4003, 5, 95, 0, 0, 4002, 4001, 1, 0, 0, 0, 4002, 4003, 1, 0, 0, 0, 4003, 4004, 1, 0, 0, 0, 4004, 4008, 3, 260, 130, 0, 4005, 4007, 3, 270, 135, 0, 4006, 4005, 1, 0, 0, 0, 4007, 4010, 1, 0, 0, 0, 4008, 4006, 1, 0, 0, 0, 4008, 4009, 1, 0, 0, 0, 4009, 4024, 1, 0, 0, 0, 4010, 4008, 1, 0, 0, 0, 4011, 4019, 5, 113, 0, 0, 4012, 4015, 5, 84, 0, 0, 4013, 4015, 7, 57, 0, 0, 4014, 4012, 1, 0, 0, 0, 4014, 4013, 1, 0, 0, 0, 4015, 4017, 1, 0, 0, 0, 4016, 4018, 5, 127, 0, 0, 4017, 4016, 1, 0, 0, 0, 4017, 4018, 1, 0, 0, 0, 4018, 4020, 1, 0, 0, 0, 4019, 4014, 1, 0, 0, 0, 4019, 4020, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4022, 5, 91, 0, 0, 4022, 4024, 3, 260, 130, 0, 4023, 3975, 1, 0, 0, 0, 4023, 3988, 1, 0, 0, 0, 4023, 3996, 1, 0, 0, 0, 4023, 4011, 1, 0, 0, 0, 4024, 269, 1, 0, 0, 0, 4025, 4026, 5, 119, 0, 0, 4026, 4033, 3, 800, 400, 0, 4027, 4028, 5, 188, 0, 0, 4028, 4029, 5, 866, 0, 0, 4029, 4030, 3, 656, 328, 0, 4030, 4031, 5, 867, 0, 0, 4031, 4033, 1, 0, 0, 0, 4032, 4025, 1, 0, 0, 0, 4032, 4027, 1, 0, 0, 0, 4033, 271, 1, 0, 0, 0, 4034, 4035, 5, 866, 0, 0, 4035, 4036, 3, 274, 137, 0, 4036, 4037, 5, 867, 0, 0, 4037, 4043, 1, 0, 0, 0, 4038, 4039, 5, 866, 0, 0, 4039, 4040, 3, 272, 136, 0, 4040, 4041, 5, 867, 0, 0, 4041, 4043, 1, 0, 0, 0, 4042, 4034, 1, 0, 0, 0, 4042, 4038, 1, 0, 0, 0, 4043, 273, 1, 0, 0, 0, 4044, 4048, 5, 154, 0, 0, 4045, 4047, 3, 290, 145, 0, 4046, 4045, 1, 0, 0, 0, 4047, 4050, 1, 0, 0, 0, 4048, 4046, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4051, 1, 0, 0, 0, 4050, 4048, 1, 0, 0, 0, 4051, 4053, 3, 292, 146, 0, 4052, 4054, 3, 296, 148, 0, 4053, 4052, 1, 0, 0, 0, 4053, 4054, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4057, 3, 302, 151, 0, 4056, 4058, 3, 304, 152, 0, 4057, 4056, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4060, 1, 0, 0, 0, 4059, 4061, 3, 306, 153, 0, 4060, 4059, 1, 0, 0, 0, 4060, 4061, 1, 0, 0, 0, 4061, 4063, 1, 0, 0, 0, 4062, 4064, 3, 308, 154, 0, 4063, 4062, 1, 0, 0, 0, 4063, 4064, 1, 0, 0, 0, 4064, 4066, 1, 0, 0, 0, 4065, 4067, 3, 252, 126, 0, 4066, 4065, 1, 0, 0, 0, 4066, 4067, 1, 0, 0, 0, 4067, 4069, 1, 0, 0, 0, 4068, 4070, 3, 312, 156, 0, 4069, 4068, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4072, 1, 0, 0, 0, 4071, 4073, 3, 296, 148, 0, 4072, 4071, 1, 0, 0, 0, 4072, 4073, 1, 0, 0, 0, 4073, 275, 1, 0, 0, 0, 4074, 4076, 5, 181, 0, 0, 4075, 4077, 7, 44, 0, 0, 4076, 4075, 1, 0, 0, 0, 4076, 4077, 1, 0, 0, 0, 4077, 4080, 1, 0, 0, 0, 4078, 4081, 3, 274, 137, 0, 4079, 4081, 3, 272, 136, 0, 4080, 4078, 1, 0, 0, 0, 4080, 4079, 1, 0, 0, 0, 4081, 277, 1, 0, 0, 0, 4082, 4097, 5, 95, 0, 0, 4083, 4098, 3, 274, 137, 0, 4084, 4098, 3, 272, 136, 0, 4085, 4088, 5, 866, 0, 0, 4086, 4089, 3, 274, 137, 0, 4087, 4089, 3, 272, 136, 0, 4088, 4086, 1, 0, 0, 0, 4088, 4087, 1, 0, 0, 0, 4089, 4090, 1, 0, 0, 0, 4090, 4095, 5, 867, 0, 0, 4091, 4093, 5, 13, 0, 0, 4092, 4091, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 4096, 3, 702, 351, 0, 4095, 4092, 1, 0, 0, 0, 4095, 4096, 1, 0, 0, 0, 4096, 4098, 1, 0, 0, 0, 4097, 4083, 1, 0, 0, 0, 4097, 4084, 1, 0, 0, 0, 4097, 4085, 1, 0, 0, 0, 4098, 279, 1, 0, 0, 0, 4099, 4100, 5, 253, 0, 0, 4100, 4101, 5, 866, 0, 0, 4101, 4102, 5, 882, 0, 0, 4102, 4103, 5, 868, 0, 0, 4103, 4104, 5, 882, 0, 0, 4104, 4105, 5, 337, 0, 0, 4105, 4106, 5, 866, 0, 0, 4106, 4107, 3, 282, 141, 0, 4107, 4108, 5, 867, 0, 0, 4108, 4113, 5, 867, 0, 0, 4109, 4111, 5, 13, 0, 0, 4110, 4109, 1, 0, 0, 0, 4110, 4111, 1, 0, 0, 0, 4111, 4112, 1, 0, 0, 0, 4112, 4114, 3, 702, 351, 0, 4113, 4110, 1, 0, 0, 0, 4113, 4114, 1, 0, 0, 0, 4114, 281, 1, 0, 0, 0, 4115, 4120, 3, 284, 142, 0, 4116, 4117, 5, 868, 0, 0, 4117, 4119, 3, 284, 142, 0, 4118, 4116, 1, 0, 0, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4118, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 283, 1, 0, 0, 0, 4122, 4120, 1, 0, 0, 0, 4123, 4140, 3, 658, 329, 0, 4124, 4125, 5, 65, 0, 0, 4125, 4141, 5, 256, 0, 0, 4126, 4138, 3, 722, 361, 0, 4127, 4128, 5, 257, 0, 0, 4128, 4130, 5, 882, 0, 0, 4129, 4131, 3, 286, 143, 0, 4130, 4129, 1, 0, 0, 0, 4130, 4131, 1, 0, 0, 0, 4131, 4133, 1, 0, 0, 0, 4132, 4134, 3, 288, 144, 0, 4133, 4132, 1, 0, 0, 0, 4133, 4134, 1, 0, 0, 0, 4134, 4139, 1, 0, 0, 0, 4135, 4136, 5, 60, 0, 0, 4136, 4137, 5, 257, 0, 0, 4137, 4139, 5, 882, 0, 0, 4138, 4127, 1, 0, 0, 0, 4138, 4135, 1, 0, 0, 0, 4139, 4141, 1, 0, 0, 0, 4140, 4124, 1, 0, 0, 0, 4140, 4126, 1, 0, 0, 0, 4141, 4153, 1, 0, 0, 0, 4142, 4144, 5, 255, 0, 0, 4143, 4145, 5, 257, 0, 0, 4144, 4143, 1, 0, 0, 0, 4144, 4145, 1, 0, 0, 0, 4145, 4146, 1, 0, 0, 0, 4146, 4147, 5, 882, 0, 0, 4147, 4148, 5, 337, 0, 0, 4148, 4149, 5, 866, 0, 0, 4149, 4150, 3, 282, 141, 0, 4150, 4151, 5, 867, 0, 0, 4151, 4153, 1, 0, 0, 0, 4152, 4123, 1, 0, 0, 0, 4152, 4142, 1, 0, 0, 0, 4153, 285, 1, 0, 0, 0, 4154, 4159, 5, 116, 0, 0, 4155, 4159, 5, 382, 0, 0, 4156, 4157, 5, 42, 0, 0, 4157, 4159, 3, 750, 375, 0, 4158, 4154, 1, 0, 0, 0, 4158, 4155, 1, 0, 0, 0, 4158, 4156, 1, 0, 0, 0, 4159, 4160, 1, 0, 0, 0, 4160, 4161, 5, 119, 0, 0, 4161, 4162, 5, 55, 0, 0, 4162, 287, 1, 0, 0, 0, 4163, 4168, 5, 116, 0, 0, 4164, 4168, 5, 382, 0, 0, 4165, 4166, 5, 42, 0, 0, 4166, 4168, 3, 750, 375, 0, 4167, 4163, 1, 0, 0, 0, 4167, 4164, 1, 0, 0, 0, 4167, 4165, 1, 0, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4170, 5, 119, 0, 0, 4170, 4171, 5, 382, 0, 0, 4171, 289, 1, 0, 0, 0, 4172, 4181, 7, 58, 0, 0, 4173, 4181, 5, 76, 0, 0, 4174, 4181, 5, 172, 0, 0, 4175, 4181, 5, 168, 0, 0, 4176, 4181, 5, 166, 0, 0, 4177, 4181, 5, 636, 0, 0, 4178, 4181, 7, 59, 0, 0, 4179, 4181, 5, 167, 0, 0, 4180, 4172, 1, 0, 0, 0, 4180, 4173, 1, 0, 0, 0, 4180, 4174, 1, 0, 0, 0, 4180, 4175, 1, 0, 0, 0, 4180, 4176, 1, 0, 0, 0, 4180, 4177, 1, 0, 0, 0, 4180, 4178, 1, 0, 0, 0, 4180, 4179, 1, 0, 0, 0, 4181, 291, 1, 0, 0, 0, 4182, 4185, 5, 850, 0, 0, 4183, 4185, 3, 294, 147, 0, 4184, 4182, 1, 0, 0, 0, 4184, 4183, 1, 0, 0, 0, 4185, 4190, 1, 0, 0, 0, 4186, 4187, 5, 868, 0, 0, 4187, 4189, 3, 294, 147, 0, 4188, 4186, 1, 0, 0, 0, 4189, 4192, 1, 0, 0, 0, 4190, 4188, 1, 0, 0, 0, 4190, 4191, 1, 0, 0, 0, 4191, 293, 1, 0, 0, 0, 4192, 4190, 1, 0, 0, 0, 4193, 4194, 5, 892, 0, 0, 4194, 4196, 5, 841, 0, 0, 4195, 4193, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 4197, 1, 0, 0, 0, 4197, 4202, 3, 800, 400, 0, 4198, 4200, 5, 13, 0, 0, 4199, 4198, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4201, 1, 0, 0, 0, 4201, 4203, 3, 702, 351, 0, 4202, 4199, 1, 0, 0, 0, 4202, 4203, 1, 0, 0, 0, 4203, 4223, 1, 0, 0, 0, 4204, 4209, 3, 760, 380, 0, 4205, 4207, 5, 13, 0, 0, 4206, 4205, 1, 0, 0, 0, 4206, 4207, 1, 0, 0, 0, 4207, 4208, 1, 0, 0, 0, 4208, 4210, 3, 702, 351, 0, 4209, 4206, 1, 0, 0, 0, 4209, 4210, 1, 0, 0, 0, 4210, 4223, 1, 0, 0, 0, 4211, 4212, 3, 698, 349, 0, 4212, 4213, 5, 865, 0, 0, 4213, 4214, 5, 850, 0, 0, 4214, 4223, 1, 0, 0, 0, 4215, 4220, 3, 658, 329, 0, 4216, 4218, 5, 13, 0, 0, 4217, 4216, 1, 0, 0, 0, 4217, 4218, 1, 0, 0, 0, 4218, 4219, 1, 0, 0, 0, 4219, 4221, 3, 702, 351, 0, 4220, 4217, 1, 0, 0, 0, 4220, 4221, 1, 0, 0, 0, 4221, 4223, 1, 0, 0, 0, 4222, 4195, 1, 0, 0, 0, 4222, 4204, 1, 0, 0, 0, 4222, 4211, 1, 0, 0, 0, 4222, 4215, 1, 0, 0, 0, 4223, 295, 1, 0, 0, 0, 4224, 4225, 5, 88, 0, 0, 4225, 4230, 3, 230, 115, 0, 4226, 4227, 5, 868, 0, 0, 4227, 4229, 3, 230, 115, 0, 4228, 4226, 1, 0, 0, 0, 4229, 4232, 1, 0, 0, 0, 4230, 4228, 1, 0, 0, 0, 4230, 4231, 1, 0, 0, 0, 4231, 4261, 1, 0, 0, 0, 4232, 4230, 1, 0, 0, 0, 4233, 4234, 5, 88, 0, 0, 4234, 4235, 5, 372, 0, 0, 4235, 4261, 5, 882, 0, 0, 4236, 4237, 5, 88, 0, 0, 4237, 4238, 5, 128, 0, 0, 4238, 4242, 5, 882, 0, 0, 4239, 4240, 5, 26, 0, 0, 4240, 4241, 5, 155, 0, 0, 4241, 4243, 3, 684, 342, 0, 4242, 4239, 1, 0, 0, 0, 4242, 4243, 1, 0, 0, 0, 4243, 4250, 1, 0, 0, 0, 4244, 4246, 7, 46, 0, 0, 4245, 4247, 3, 298, 149, 0, 4246, 4245, 1, 0, 0, 0, 4247, 4248, 1, 0, 0, 0, 4248, 4246, 1, 0, 0, 0, 4248, 4249, 1, 0, 0, 0, 4249, 4251, 1, 0, 0, 0, 4250, 4244, 1, 0, 0, 0, 4250, 4251, 1, 0, 0, 0, 4251, 4258, 1, 0, 0, 0, 4252, 4254, 5, 102, 0, 0, 4253, 4255, 3, 300, 150, 0, 4254, 4253, 1, 0, 0, 0, 4255, 4256, 1, 0, 0, 0, 4256, 4254, 1, 0, 0, 0, 4256, 4257, 1, 0, 0, 0, 4257, 4259, 1, 0, 0, 0, 4258, 4252, 1, 0, 0, 0, 4258, 4259, 1, 0, 0, 0, 4259, 4261, 1, 0, 0, 0, 4260, 4224, 1, 0, 0, 0, 4260, 4233, 1, 0, 0, 0, 4260, 4236, 1, 0, 0, 0, 4261, 297, 1, 0, 0, 0, 4262, 4263, 5, 174, 0, 0, 4263, 4264, 5, 20, 0, 0, 4264, 4275, 5, 882, 0, 0, 4265, 4267, 5, 123, 0, 0, 4266, 4265, 1, 0, 0, 0, 4266, 4267, 1, 0, 0, 0, 4267, 4268, 1, 0, 0, 0, 4268, 4269, 5, 56, 0, 0, 4269, 4270, 5, 20, 0, 0, 4270, 4275, 5, 882, 0, 0, 4271, 4272, 5, 58, 0, 0, 4272, 4273, 5, 20, 0, 0, 4273, 4275, 5, 882, 0, 0, 4274, 4262, 1, 0, 0, 0, 4274, 4266, 1, 0, 0, 0, 4274, 4271, 1, 0, 0, 0, 4275, 299, 1, 0, 0, 0, 4276, 4277, 5, 171, 0, 0, 4277, 4278, 5, 20, 0, 0, 4278, 4283, 5, 882, 0, 0, 4279, 4280, 5, 174, 0, 0, 4280, 4281, 5, 20, 0, 0, 4281, 4283, 5, 882, 0, 0, 4282, 4276, 1, 0, 0, 0, 4282, 4279, 1, 0, 0, 0, 4283, 301, 1, 0, 0, 0, 4284, 4285, 5, 68, 0, 0, 4285, 4287, 3, 256, 128, 0, 4286, 4284, 1, 0, 0, 0, 4286, 4287, 1, 0, 0, 0, 4287, 4290, 1, 0, 0, 0, 4288, 4289, 5, 192, 0, 0, 4289, 4291, 3, 800, 400, 0, 4290, 4288, 1, 0, 0, 0, 4290, 4291, 1, 0, 0, 0, 4291, 303, 1, 0, 0, 0, 4292, 4293, 5, 74, 0, 0, 4293, 4294, 5, 20, 0, 0, 4294, 4299, 3, 310, 155, 0, 4295, 4296, 5, 868, 0, 0, 4296, 4298, 3, 310, 155, 0, 4297, 4295, 1, 0, 0, 0, 4298, 4301, 1, 0, 0, 0, 4299, 4297, 1, 0, 0, 0, 4299, 4300, 1, 0, 0, 0, 4300, 4304, 1, 0, 0, 0, 4301, 4299, 1, 0, 0, 0, 4302, 4303, 5, 194, 0, 0, 4303, 4305, 5, 584, 0, 0, 4304, 4302, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 305, 1, 0, 0, 0, 4306, 4307, 5, 75, 0, 0, 4307, 4308, 3, 800, 400, 0, 4308, 307, 1, 0, 0, 0, 4309, 4310, 5, 689, 0, 0, 4310, 4311, 3, 778, 389, 0, 4311, 4312, 5, 13, 0, 0, 4312, 4313, 5, 866, 0, 0, 4313, 4314, 3, 776, 388, 0, 4314, 4324, 5, 867, 0, 0, 4315, 4316, 5, 868, 0, 0, 4316, 4317, 3, 778, 389, 0, 4317, 4318, 5, 13, 0, 0, 4318, 4319, 5, 866, 0, 0, 4319, 4320, 3, 776, 388, 0, 4320, 4321, 5, 867, 0, 0, 4321, 4323, 1, 0, 0, 0, 4322, 4315, 1, 0, 0, 0, 4323, 4326, 1, 0, 0, 0, 4324, 4322, 1, 0, 0, 0, 4324, 4325, 1, 0, 0, 0, 4325, 309, 1, 0, 0, 0, 4326, 4324, 1, 0, 0, 0, 4327, 4329, 3, 800, 400, 0, 4328, 4330, 7, 54, 0, 0, 4329, 4328, 1, 0, 0, 0, 4329, 4330, 1, 0, 0, 0, 4330, 311, 1, 0, 0, 0, 4331, 4342, 5, 100, 0, 0, 4332, 4333, 3, 314, 157, 0, 4333, 4334, 5, 868, 0, 0, 4334, 4336, 1, 0, 0, 0, 4335, 4332, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4337, 1, 0, 0, 0, 4337, 4343, 3, 314, 157, 0, 4338, 4339, 3, 314, 157, 0, 4339, 4340, 5, 509, 0, 0, 4340, 4341, 3, 314, 157, 0, 4341, 4343, 1, 0, 0, 0, 4342, 4335, 1, 0, 0, 0, 4342, 4338, 1, 0, 0, 0, 4343, 313, 1, 0, 0, 0, 4344, 4348, 3, 708, 354, 0, 4345, 4348, 3, 682, 341, 0, 4346, 4348, 3, 704, 352, 0, 4347, 4344, 1, 0, 0, 0, 4347, 4345, 1, 0, 0, 0, 4347, 4346, 1, 0, 0, 0, 4348, 315, 1, 0, 0, 0, 4349, 4350, 5, 640, 0, 0, 4350, 4359, 5, 664, 0, 0, 4351, 4356, 3, 338, 169, 0, 4352, 4353, 5, 868, 0, 0, 4353, 4355, 3, 338, 169, 0, 4354, 4352, 1, 0, 0, 0, 4355, 4358, 1, 0, 0, 0, 4356, 4354, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4360, 1, 0, 0, 0, 4358, 4356, 1, 0, 0, 0, 4359, 4351, 1, 0, 0, 0, 4359, 4360, 1, 0, 0, 0, 4360, 317, 1, 0, 0, 0, 4361, 4363, 5, 317, 0, 0, 4362, 4364, 5, 691, 0, 0, 4363, 4362, 1, 0, 0, 0, 4363, 4364, 1, 0, 0, 0, 4364, 319, 1, 0, 0, 0, 4365, 4367, 5, 341, 0, 0, 4366, 4368, 5, 691, 0, 0, 4367, 4366, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4374, 1, 0, 0, 0, 4369, 4371, 5, 11, 0, 0, 4370, 4372, 5, 502, 0, 0, 4371, 4370, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4373, 1, 0, 0, 0, 4373, 4375, 5, 326, 0, 0, 4374, 4369, 1, 0, 0, 0, 4374, 4375, 1, 0, 0, 0, 4375, 4380, 1, 0, 0, 0, 4376, 4378, 5, 502, 0, 0, 4377, 4376, 1, 0, 0, 0, 4377, 4378, 1, 0, 0, 0, 4378, 4379, 1, 0, 0, 0, 4379, 4381, 5, 140, 0, 0, 4380, 4377, 1, 0, 0, 0, 4380, 4381, 1, 0, 0, 0, 4381, 321, 1, 0, 0, 0, 4382, 4384, 5, 583, 0, 0, 4383, 4385, 5, 691, 0, 0, 4384, 4383, 1, 0, 0, 0, 4384, 4385, 1, 0, 0, 0, 4385, 4391, 1, 0, 0, 0, 4386, 4388, 5, 11, 0, 0, 4387, 4389, 5, 502, 0, 0, 4388, 4387, 1, 0, 0, 0, 4388, 4389, 1, 0, 0, 0, 4389, 4390, 1, 0, 0, 0, 4390, 4392, 5, 326, 0, 0, 4391, 4386, 1, 0, 0, 0, 4391, 4392, 1, 0, 0, 0, 4392, 4397, 1, 0, 0, 0, 4393, 4395, 5, 502, 0, 0, 4394, 4393, 1, 0, 0, 0, 4394, 4395, 1, 0, 0, 0, 4395, 4396, 1, 0, 0, 0, 4396, 4398, 5, 140, 0, 0, 4397, 4394, 1, 0, 0, 0, 4397, 4398, 1, 0, 0, 0, 4398, 323, 1, 0, 0, 0, 4399, 4400, 5, 589, 0, 0, 4400, 4401, 3, 702, 351, 0, 4401, 325, 1, 0, 0, 0, 4402, 4404, 5, 583, 0, 0, 4403, 4405, 5, 691, 0, 0, 4404, 4403, 1, 0, 0, 0, 4404, 4405, 1, 0, 0, 0, 4405, 4406, 1, 0, 0, 0, 4406, 4408, 5, 176, 0, 0, 4407, 4409, 5, 589, 0, 0, 4408, 4407, 1, 0, 0, 0, 4408, 4409, 1, 0, 0, 0, 4409, 4410, 1, 0, 0, 0, 4410, 4411, 3, 702, 351, 0, 4411, 327, 1, 0, 0, 0, 4412, 4413, 5, 140, 0, 0, 4413, 4414, 5, 589, 0, 0, 4414, 4415, 3, 702, 351, 0, 4415, 329, 1, 0, 0, 0, 4416, 4417, 5, 104, 0, 0, 4417, 4418, 7, 60, 0, 0, 4418, 4423, 3, 340, 170, 0, 4419, 4420, 5, 868, 0, 0, 4420, 4422, 3, 340, 170, 0, 4421, 4419, 1, 0, 0, 0, 4422, 4425, 1, 0, 0, 0, 4423, 4421, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, 331, 1, 0, 0, 0, 4425, 4423, 1, 0, 0, 0, 4426, 4427, 5, 183, 0, 0, 4427, 4428, 5, 752, 0, 0, 4428, 333, 1, 0, 0, 0, 4429, 4430, 5, 155, 0, 0, 4430, 4431, 5, 313, 0, 0, 4431, 4432, 5, 857, 0, 0, 4432, 4433, 7, 25, 0, 0, 4433, 335, 1, 0, 0, 0, 4434, 4436, 5, 155, 0, 0, 4435, 4437, 7, 61, 0, 0, 4436, 4435, 1, 0, 0, 0, 4436, 4437, 1, 0, 0, 0, 4437, 4438, 1, 0, 0, 0, 4438, 4439, 5, 664, 0, 0, 4439, 4444, 3, 344, 172, 0, 4440, 4441, 5, 868, 0, 0, 4441, 4443, 3, 344, 172, 0, 4442, 4440, 1, 0, 0, 0, 4443, 4446, 1, 0, 0, 0, 4444, 4442, 1, 0, 0, 0, 4444, 4445, 1, 0, 0, 0, 4445, 337, 1, 0, 0, 0, 4446, 4444, 1, 0, 0, 0, 4447, 4448, 5, 194, 0, 0, 4448, 4449, 5, 350, 0, 0, 4449, 4455, 5, 600, 0, 0, 4450, 4451, 5, 135, 0, 0, 4451, 4455, 5, 195, 0, 0, 4452, 4453, 5, 135, 0, 0, 4453, 4455, 5, 515, 0, 0, 4454, 4447, 1, 0, 0, 0, 4454, 4450, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4455, 339, 1, 0, 0, 0, 4456, 4461, 3, 648, 324, 0, 4457, 4459, 5, 13, 0, 0, 4458, 4457, 1, 0, 0, 0, 4458, 4459, 1, 0, 0, 0, 4459, 4460, 1, 0, 0, 0, 4460, 4462, 3, 702, 351, 0, 4461, 4458, 1, 0, 0, 0, 4461, 4462, 1, 0, 0, 0, 4462, 4463, 1, 0, 0, 0, 4463, 4464, 3, 342, 171, 0, 4464, 341, 1, 0, 0, 0, 4465, 4467, 5, 135, 0, 0, 4466, 4468, 5, 450, 0, 0, 4467, 4466, 1, 0, 0, 0, 4467, 4468, 1, 0, 0, 0, 4468, 4474, 1, 0, 0, 0, 4469, 4471, 5, 107, 0, 0, 4470, 4469, 1, 0, 0, 0, 4470, 4471, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 4474, 5, 195, 0, 0, 4473, 4465, 1, 0, 0, 0, 4473, 4470, 1, 0, 0, 0, 4474, 343, 1, 0, 0, 0, 4475, 4476, 5, 440, 0, 0, 4476, 4477, 5, 448, 0, 0, 4477, 4483, 3, 346, 173, 0, 4478, 4479, 5, 135, 0, 0, 4479, 4483, 5, 195, 0, 0, 4480, 4481, 5, 135, 0, 0, 4481, 4483, 5, 515, 0, 0, 4482, 4475, 1, 0, 0, 0, 4482, 4478, 1, 0, 0, 0, 4482, 4480, 1, 0, 0, 0, 4483, 345, 1, 0, 0, 0, 4484, 4485, 5, 809, 0, 0, 4485, 4492, 5, 135, 0, 0, 4486, 4487, 5, 135, 0, 0, 4487, 4492, 5, 810, 0, 0, 4488, 4489, 5, 135, 0, 0, 4489, 4492, 5, 811, 0, 0, 4490, 4492, 5, 812, 0, 0, 4491, 4484, 1, 0, 0, 0, 4491, 4486, 1, 0, 0, 0, 4491, 4488, 1, 0, 0, 0, 4491, 4490, 1, 0, 0, 0, 4492, 347, 1, 0, 0, 0, 4493, 4494, 5, 25, 0, 0, 4494, 4495, 5, 453, 0, 0, 4495, 4496, 5, 176, 0, 0, 4496, 4501, 3, 364, 182, 0, 4497, 4498, 5, 868, 0, 0, 4498, 4500, 3, 364, 182, 0, 4499, 4497, 1, 0, 0, 0, 4500, 4503, 1, 0, 0, 0, 4501, 4499, 1, 0, 0, 0, 4501, 4502, 1, 0, 0, 0, 4502, 4505, 1, 0, 0, 0, 4503, 4501, 1, 0, 0, 0, 4504, 4506, 3, 384, 192, 0, 4505, 4504, 1, 0, 0, 0, 4505, 4506, 1, 0, 0, 0, 4506, 349, 1, 0, 0, 0, 4507, 4508, 5, 25, 0, 0, 4508, 4509, 5, 572, 0, 0, 4509, 4510, 5, 400, 0, 0, 4510, 4515, 3, 386, 193, 0, 4511, 4512, 5, 868, 0, 0, 4512, 4514, 3, 386, 193, 0, 4513, 4511, 1, 0, 0, 0, 4514, 4517, 1, 0, 0, 0, 4515, 4513, 1, 0, 0, 0, 4515, 4516, 1, 0, 0, 0, 4516, 4519, 1, 0, 0, 0, 4517, 4515, 1, 0, 0, 0, 4518, 4520, 3, 384, 192, 0, 4519, 4518, 1, 0, 0, 0, 4519, 4520, 1, 0, 0, 0, 4520, 351, 1, 0, 0, 0, 4521, 4522, 5, 25, 0, 0, 4522, 4523, 5, 572, 0, 0, 4523, 4524, 5, 605, 0, 0, 4524, 4525, 5, 176, 0, 0, 4525, 4530, 3, 374, 187, 0, 4526, 4527, 5, 868, 0, 0, 4527, 4529, 3, 374, 187, 0, 4528, 4526, 1, 0, 0, 0, 4529, 4532, 1, 0, 0, 0, 4530, 4528, 1, 0, 0, 0, 4530, 4531, 1, 0, 0, 0, 4531, 4534, 1, 0, 0, 0, 4532, 4530, 1, 0, 0, 0, 4533, 4535, 3, 384, 192, 0, 4534, 4533, 1, 0, 0, 0, 4534, 4535, 1, 0, 0, 0, 4535, 353, 1, 0, 0, 0, 4536, 4537, 5, 133, 0, 0, 4537, 4538, 7, 62, 0, 0, 4538, 4543, 5, 452, 0, 0, 4539, 4540, 5, 176, 0, 0, 4540, 4544, 5, 882, 0, 0, 4541, 4542, 5, 16, 0, 0, 4542, 4544, 5, 882, 0, 0, 4543, 4539, 1, 0, 0, 0, 4543, 4541, 1, 0, 0, 0, 4544, 355, 1, 0, 0, 0, 4545, 4546, 5, 640, 0, 0, 4546, 4555, 7, 63, 0, 0, 4547, 4552, 3, 390, 195, 0, 4548, 4549, 5, 868, 0, 0, 4549, 4551, 3, 390, 195, 0, 4550, 4548, 1, 0, 0, 0, 4551, 4554, 1, 0, 0, 0, 4552, 4550, 1, 0, 0, 0, 4552, 4553, 1, 0, 0, 0, 4553, 4556, 1, 0, 0, 0, 4554, 4552, 1, 0, 0, 0, 4555, 4547, 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 4559, 1, 0, 0, 0, 4557, 4558, 5, 676, 0, 0, 4558, 4560, 3, 392, 196, 0, 4559, 4557, 1, 0, 0, 0, 4559, 4560, 1, 0, 0, 0, 4560, 4564, 1, 0, 0, 0, 4561, 4563, 3, 394, 197, 0, 4562, 4561, 1, 0, 0, 0, 4563, 4566, 1, 0, 0, 0, 4564, 4562, 1, 0, 0, 0, 4564, 4565, 1, 0, 0, 0, 4565, 4568, 1, 0, 0, 0, 4566, 4564, 1, 0, 0, 0, 4567, 4569, 3, 384, 192, 0, 4568, 4567, 1, 0, 0, 0, 4568, 4569, 1, 0, 0, 0, 4569, 357, 1, 0, 0, 0, 4570, 4571, 5, 646, 0, 0, 4571, 4580, 7, 63, 0, 0, 4572, 4577, 3, 390, 195, 0, 4573, 4574, 5, 868, 0, 0, 4574, 4576, 3, 390, 195, 0, 4575, 4573, 1, 0, 0, 0, 4576, 4579, 1, 0, 0, 0, 4577, 4575, 1, 0, 0, 0, 4577, 4578, 1, 0, 0, 0, 4578, 4581, 1, 0, 0, 0, 4579, 4577, 1, 0, 0, 0, 4580, 4572, 1, 0, 0, 0, 4580, 4581, 1, 0, 0, 0, 4581, 4583, 1, 0, 0, 0, 4582, 4584, 3, 384, 192, 0, 4583, 4582, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 359, 1, 0, 0, 0, 4585, 4586, 5, 640, 0, 0, 4586, 4590, 5, 415, 0, 0, 4587, 4588, 5, 678, 0, 0, 4588, 4589, 5, 857, 0, 0, 4589, 4591, 5, 882, 0, 0, 4590, 4587, 1, 0, 0, 0, 4590, 4591, 1, 0, 0, 0, 4591, 4596, 1, 0, 0, 0, 4592, 4593, 5, 868, 0, 0, 4593, 4594, 5, 529, 0, 0, 4594, 4595, 5, 857, 0, 0, 4595, 4597, 5, 882, 0, 0, 4596, 4592, 1, 0, 0, 0, 4596, 4597, 1, 0, 0, 0, 4597, 4602, 1, 0, 0, 0, 4598, 4599, 5, 868, 0, 0, 4599, 4600, 5, 363, 0, 0, 4600, 4601, 5, 857, 0, 0, 4601, 4603, 5, 882, 0, 0, 4602, 4598, 1, 0, 0, 0, 4602, 4603, 1, 0, 0, 0, 4603, 361, 1, 0, 0, 0, 4604, 4605, 5, 646, 0, 0, 4605, 4606, 5, 415, 0, 0, 4606, 363, 1, 0, 0, 0, 4607, 4608, 3, 366, 183, 0, 4608, 4609, 5, 857, 0, 0, 4609, 4610, 5, 882, 0, 0, 4610, 4635, 1, 0, 0, 0, 4611, 4612, 3, 368, 184, 0, 4612, 4613, 5, 857, 0, 0, 4613, 4614, 3, 708, 354, 0, 4614, 4635, 1, 0, 0, 0, 4615, 4616, 3, 370, 185, 0, 4616, 4617, 5, 857, 0, 0, 4617, 4618, 7, 25, 0, 0, 4618, 4635, 1, 0, 0, 0, 4619, 4635, 3, 372, 186, 0, 4620, 4621, 5, 424, 0, 0, 4621, 4622, 5, 857, 0, 0, 4622, 4631, 5, 866, 0, 0, 4623, 4628, 3, 702, 351, 0, 4624, 4625, 5, 868, 0, 0, 4625, 4627, 3, 702, 351, 0, 4626, 4624, 1, 0, 0, 0, 4627, 4630, 1, 0, 0, 0, 4628, 4626, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 4632, 1, 0, 0, 0, 4630, 4628, 1, 0, 0, 0, 4631, 4623, 1, 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 4635, 5, 867, 0, 0, 4634, 4607, 1, 0, 0, 0, 4634, 4611, 1, 0, 0, 0, 4634, 4615, 1, 0, 0, 0, 4634, 4619, 1, 0, 0, 0, 4634, 4620, 1, 0, 0, 0, 4635, 365, 1, 0, 0, 0, 4636, 4637, 7, 64, 0, 0, 4637, 367, 1, 0, 0, 0, 4638, 4639, 7, 65, 0, 0, 4639, 369, 1, 0, 0, 0, 4640, 4641, 7, 66, 0, 0, 4641, 371, 1, 0, 0, 0, 4642, 4643, 5, 543, 0, 0, 4643, 4644, 5, 857, 0, 0, 4644, 4656, 7, 67, 0, 0, 4645, 4646, 5, 574, 0, 0, 4646, 4647, 5, 857, 0, 0, 4647, 4656, 7, 68, 0, 0, 4648, 4649, 5, 310, 0, 0, 4649, 4653, 5, 857, 0, 0, 4650, 4654, 5, 507, 0, 0, 4651, 4654, 5, 450, 0, 0, 4652, 4654, 3, 396, 198, 0, 4653, 4650, 1, 0, 0, 0, 4653, 4651, 1, 0, 0, 0, 4653, 4652, 1, 0, 0, 0, 4654, 4656, 1, 0, 0, 0, 4655, 4642, 1, 0, 0, 0, 4655, 4645, 1, 0, 0, 0, 4655, 4648, 1, 0, 0, 0, 4656, 373, 1, 0, 0, 0, 4657, 4658, 3, 376, 188, 0, 4658, 4659, 5, 857, 0, 0, 4659, 4660, 5, 882, 0, 0, 4660, 4685, 1, 0, 0, 0, 4661, 4662, 3, 378, 189, 0, 4662, 4663, 5, 857, 0, 0, 4663, 4664, 3, 708, 354, 0, 4664, 4685, 1, 0, 0, 0, 4665, 4666, 3, 380, 190, 0, 4666, 4667, 5, 857, 0, 0, 4667, 4668, 7, 25, 0, 0, 4668, 4685, 1, 0, 0, 0, 4669, 4685, 3, 382, 191, 0, 4670, 4671, 5, 424, 0, 0, 4671, 4672, 5, 857, 0, 0, 4672, 4681, 5, 866, 0, 0, 4673, 4678, 3, 702, 351, 0, 4674, 4675, 5, 868, 0, 0, 4675, 4677, 3, 702, 351, 0, 4676, 4674, 1, 0, 0, 0, 4677, 4680, 1, 0, 0, 0, 4678, 4676, 1, 0, 0, 0, 4678, 4679, 1, 0, 0, 0, 4679, 4682, 1, 0, 0, 0, 4680, 4678, 1, 0, 0, 0, 4681, 4673, 1, 0, 0, 0, 4681, 4682, 1, 0, 0, 0, 4682, 4683, 1, 0, 0, 0, 4683, 4685, 5, 867, 0, 0, 4684, 4657, 1, 0, 0, 0, 4684, 4661, 1, 0, 0, 0, 4684, 4665, 1, 0, 0, 0, 4684, 4669, 1, 0, 0, 0, 4684, 4670, 1, 0, 0, 0, 4685, 375, 1, 0, 0, 0, 4686, 4687, 7, 69, 0, 0, 4687, 377, 1, 0, 0, 0, 4688, 4689, 7, 70, 0, 0, 4689, 379, 1, 0, 0, 0, 4690, 4691, 7, 71, 0, 0, 4691, 381, 1, 0, 0, 0, 4692, 4693, 5, 543, 0, 0, 4693, 4694, 5, 857, 0, 0, 4694, 4706, 7, 67, 0, 0, 4695, 4696, 5, 574, 0, 0, 4696, 4697, 5, 857, 0, 0, 4697, 4706, 7, 72, 0, 0, 4698, 4699, 5, 310, 0, 0, 4699, 4703, 5, 857, 0, 0, 4700, 4704, 5, 507, 0, 0, 4701, 4704, 5, 450, 0, 0, 4702, 4704, 3, 396, 198, 0, 4703, 4700, 1, 0, 0, 0, 4703, 4701, 1, 0, 0, 0, 4703, 4702, 1, 0, 0, 0, 4704, 4706, 1, 0, 0, 0, 4705, 4692, 1, 0, 0, 0, 4705, 4695, 1, 0, 0, 0, 4705, 4698, 1, 0, 0, 0, 4706, 383, 1, 0, 0, 0, 4707, 4708, 5, 65, 0, 0, 4708, 4709, 5, 328, 0, 0, 4709, 4710, 5, 882, 0, 0, 4710, 385, 1, 0, 0, 0, 4711, 4712, 5, 565, 0, 0, 4712, 4713, 5, 857, 0, 0, 4713, 4714, 5, 866, 0, 0, 4714, 4719, 3, 624, 312, 0, 4715, 4716, 5, 868, 0, 0, 4716, 4718, 3, 624, 312, 0, 4717, 4715, 1, 0, 0, 0, 4718, 4721, 1, 0, 0, 0, 4719, 4717, 1, 0, 0, 0, 4719, 4720, 1, 0, 0, 0, 4720, 4722, 1, 0, 0, 0, 4721, 4719, 1, 0, 0, 0, 4722, 4723, 5, 867, 0, 0, 4723, 4775, 1, 0, 0, 0, 4724, 4725, 5, 567, 0, 0, 4725, 4726, 5, 857, 0, 0, 4726, 4727, 5, 866, 0, 0, 4727, 4732, 3, 624, 312, 0, 4728, 4729, 5, 868, 0, 0, 4729, 4731, 3, 624, 312, 0, 4730, 4728, 1, 0, 0, 0, 4731, 4734, 1, 0, 0, 0, 4732, 4730, 1, 0, 0, 0, 4732, 4733, 1, 0, 0, 0, 4733, 4735, 1, 0, 0, 0, 4734, 4732, 1, 0, 0, 0, 4735, 4736, 5, 867, 0, 0, 4736, 4775, 1, 0, 0, 0, 4737, 4738, 5, 566, 0, 0, 4738, 4739, 5, 857, 0, 0, 4739, 4740, 5, 866, 0, 0, 4740, 4741, 3, 646, 323, 0, 4741, 4742, 5, 867, 0, 0, 4742, 4775, 1, 0, 0, 0, 4743, 4744, 5, 568, 0, 0, 4744, 4745, 5, 857, 0, 0, 4745, 4746, 5, 866, 0, 0, 4746, 4747, 3, 646, 323, 0, 4747, 4748, 5, 867, 0, 0, 4748, 4775, 1, 0, 0, 0, 4749, 4750, 5, 570, 0, 0, 4750, 4751, 5, 857, 0, 0, 4751, 4752, 5, 866, 0, 0, 4752, 4753, 3, 746, 373, 0, 4753, 4754, 5, 867, 0, 0, 4754, 4775, 1, 0, 0, 0, 4755, 4756, 5, 571, 0, 0, 4756, 4757, 5, 857, 0, 0, 4757, 4758, 5, 866, 0, 0, 4758, 4759, 3, 746, 373, 0, 4759, 4760, 5, 867, 0, 0, 4760, 4775, 1, 0, 0, 0, 4761, 4762, 5, 569, 0, 0, 4762, 4763, 5, 857, 0, 0, 4763, 4764, 5, 866, 0, 0, 4764, 4769, 3, 388, 194, 0, 4765, 4766, 5, 868, 0, 0, 4766, 4768, 3, 388, 194, 0, 4767, 4765, 1, 0, 0, 0, 4768, 4771, 1, 0, 0, 0, 4769, 4767, 1, 0, 0, 0, 4769, 4770, 1, 0, 0, 0, 4770, 4772, 1, 0, 0, 0, 4771, 4769, 1, 0, 0, 0, 4772, 4773, 5, 867, 0, 0, 4773, 4775, 1, 0, 0, 0, 4774, 4711, 1, 0, 0, 0, 4774, 4724, 1, 0, 0, 0, 4774, 4737, 1, 0, 0, 0, 4774, 4743, 1, 0, 0, 0, 4774, 4749, 1, 0, 0, 0, 4774, 4755, 1, 0, 0, 0, 4774, 4761, 1, 0, 0, 0, 4775, 387, 1, 0, 0, 0, 4776, 4777, 5, 866, 0, 0, 4777, 4778, 3, 648, 324, 0, 4778, 4779, 5, 868, 0, 0, 4779, 4780, 3, 648, 324, 0, 4780, 4781, 5, 867, 0, 0, 4781, 389, 1, 0, 0, 0, 4782, 4783, 7, 73, 0, 0, 4783, 391, 1, 0, 0, 0, 4784, 4785, 7, 74, 0, 0, 4785, 4786, 5, 857, 0, 0, 4786, 4810, 3, 396, 198, 0, 4787, 4788, 5, 460, 0, 0, 4788, 4789, 5, 857, 0, 0, 4789, 4790, 5, 882, 0, 0, 4790, 4791, 5, 868, 0, 0, 4791, 4792, 5, 461, 0, 0, 4792, 4793, 5, 857, 0, 0, 4793, 4810, 3, 708, 354, 0, 4794, 4795, 5, 611, 0, 0, 4795, 4796, 5, 857, 0, 0, 4796, 4797, 5, 882, 0, 0, 4797, 4798, 5, 868, 0, 0, 4798, 4799, 5, 612, 0, 0, 4799, 4800, 5, 857, 0, 0, 4800, 4810, 3, 708, 354, 0, 4801, 4802, 5, 557, 0, 0, 4802, 4803, 5, 857, 0, 0, 4803, 4804, 5, 882, 0, 0, 4804, 4805, 5, 868, 0, 0, 4805, 4806, 5, 558, 0, 0, 4806, 4807, 5, 857, 0, 0, 4807, 4810, 3, 708, 354, 0, 4808, 4810, 5, 634, 0, 0, 4809, 4784, 1, 0, 0, 0, 4809, 4787, 1, 0, 0, 0, 4809, 4794, 1, 0, 0, 0, 4809, 4801, 1, 0, 0, 0, 4809, 4808, 1, 0, 0, 0, 4810, 393, 1, 0, 0, 0, 4811, 4812, 5, 678, 0, 0, 4812, 4813, 5, 857, 0, 0, 4813, 4824, 5, 882, 0, 0, 4814, 4815, 5, 529, 0, 0, 4815, 4816, 5, 857, 0, 0, 4816, 4824, 5, 882, 0, 0, 4817, 4818, 5, 363, 0, 0, 4818, 4819, 5, 857, 0, 0, 4819, 4824, 5, 882, 0, 0, 4820, 4821, 5, 535, 0, 0, 4821, 4822, 5, 857, 0, 0, 4822, 4824, 5, 882, 0, 0, 4823, 4811, 1, 0, 0, 0, 4823, 4814, 1, 0, 0, 0, 4823, 4817, 1, 0, 0, 0, 4823, 4820, 1, 0, 0, 0, 4824, 395, 1, 0, 0, 0, 4825, 4830, 3, 692, 346, 0, 4826, 4827, 5, 868, 0, 0, 4827, 4829, 3, 692, 346, 0, 4828, 4826, 1, 0, 0, 0, 4829, 4832, 1, 0, 0, 0, 4830, 4828, 1, 0, 0, 0, 4830, 4831, 1, 0, 0, 0, 4831, 4835, 1, 0, 0, 0, 4832, 4830, 1, 0, 0, 0, 4833, 4835, 5, 882, 0, 0, 4834, 4825, 1, 0, 0, 0, 4834, 4833, 1, 0, 0, 0, 4835, 397, 1, 0, 0, 0, 4836, 4837, 5, 694, 0, 0, 4837, 4838, 7, 75, 0, 0, 4838, 4840, 3, 694, 347, 0, 4839, 4841, 7, 76, 0, 0, 4840, 4839, 1, 0, 0, 0, 4840, 4841, 1, 0, 0, 0, 4841, 399, 1, 0, 0, 0, 4842, 4843, 5, 694, 0, 0, 4843, 4844, 5, 378, 0, 0, 4844, 4850, 3, 694, 347, 0, 4845, 4848, 5, 654, 0, 0, 4846, 4847, 5, 65, 0, 0, 4847, 4849, 5, 489, 0, 0, 4848, 4846, 1, 0, 0, 0, 4848, 4849, 1, 0, 0, 0, 4849, 4851, 1, 0, 0, 0, 4850, 4845, 1, 0, 0, 0, 4850, 4851, 1, 0, 0, 0, 4851, 401, 1, 0, 0, 0, 4852, 4853, 5, 694, 0, 0, 4853, 4854, 5, 540, 0, 0, 4854, 4855, 3, 694, 347, 0, 4855, 403, 1, 0, 0, 0, 4856, 4857, 5, 694, 0, 0, 4857, 4858, 5, 341, 0, 0, 4858, 4861, 3, 694, 347, 0, 4859, 4860, 5, 513, 0, 0, 4860, 4862, 5, 533, 0, 0, 4861, 4859, 1, 0, 0, 0, 4861, 4862, 1, 0, 0, 0, 4862, 405, 1, 0, 0, 0, 4863, 4864, 5, 694, 0, 0, 4864, 4865, 5, 583, 0, 0, 4865, 4866, 3, 694, 347, 0, 4866, 407, 1, 0, 0, 0, 4867, 4868, 5, 694, 0, 0, 4868, 4871, 5, 551, 0, 0, 4869, 4870, 5, 33, 0, 0, 4870, 4872, 3, 694, 347, 0, 4871, 4869, 1, 0, 0, 0, 4871, 4872, 1, 0, 0, 0, 4872, 409, 1, 0, 0, 0, 4873, 4874, 5, 540, 0, 0, 4874, 4875, 3, 702, 351, 0, 4875, 4878, 5, 68, 0, 0, 4876, 4879, 5, 882, 0, 0, 4877, 4879, 5, 892, 0, 0, 4878, 4876, 1, 0, 0, 0, 4878, 4877, 1, 0, 0, 0, 4879, 411, 1, 0, 0, 0, 4880, 4881, 5, 717, 0, 0, 4881, 4884, 3, 702, 351, 0, 4882, 4883, 5, 188, 0, 0, 4883, 4885, 3, 748, 374, 0, 4884, 4882, 1, 0, 0, 0, 4884, 4885, 1, 0, 0, 0, 4885, 413, 1, 0, 0, 0, 4886, 4887, 7, 77, 0, 0, 4887, 4888, 5, 540, 0, 0, 4888, 4889, 3, 702, 351, 0, 4889, 415, 1, 0, 0, 0, 4890, 4893, 3, 418, 209, 0, 4891, 4893, 3, 4, 2, 0, 4892, 4890, 1, 0, 0, 0, 4892, 4891, 1, 0, 0, 0, 4893, 417, 1, 0, 0, 0, 4894, 4895, 3, 702, 351, 0, 4895, 4896, 5, 878, 0, 0, 4896, 4898, 1, 0, 0, 0, 4897, 4894, 1, 0, 0, 0, 4897, 4898, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4905, 5, 317, 0, 0, 4900, 4901, 3, 438, 219, 0, 4901, 4902, 5, 869, 0, 0, 4902, 4904, 1, 0, 0, 0, 4903, 4900, 1, 0, 0, 0, 4904, 4907, 1, 0, 0, 0, 4905, 4903, 1, 0, 0, 0, 4905, 4906, 1, 0, 0, 0, 4906, 4913, 1, 0, 0, 0, 4907, 4905, 1, 0, 0, 0, 4908, 4909, 3, 440, 220, 0, 4909, 4910, 5, 869, 0, 0, 4910, 4912, 1, 0, 0, 0, 4911, 4908, 1, 0, 0, 0, 4912, 4915, 1, 0, 0, 0, 4913, 4911, 1, 0, 0, 0, 4913, 4914, 1, 0, 0, 0, 4914, 4921, 1, 0, 0, 0, 4915, 4913, 1, 0, 0, 0, 4916, 4917, 3, 442, 221, 0, 4917, 4918, 5, 869, 0, 0, 4918, 4920, 1, 0, 0, 0, 4919, 4916, 1, 0, 0, 0, 4920, 4923, 1, 0, 0, 0, 4921, 4919, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, 4922, 4929, 1, 0, 0, 0, 4923, 4921, 1, 0, 0, 0, 4924, 4925, 3, 444, 222, 0, 4925, 4926, 5, 869, 0, 0, 4926, 4928, 1, 0, 0, 0, 4927, 4924, 1, 0, 0, 0, 4928, 4931, 1, 0, 0, 0, 4929, 4927, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 4935, 1, 0, 0, 0, 4931, 4929, 1, 0, 0, 0, 4932, 4934, 3, 448, 224, 0, 4933, 4932, 1, 0, 0, 0, 4934, 4937, 1, 0, 0, 0, 4935, 4933, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4938, 1, 0, 0, 0, 4937, 4935, 1, 0, 0, 0, 4938, 4940, 5, 378, 0, 0, 4939, 4941, 3, 702, 351, 0, 4940, 4939, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 419, 1, 0, 0, 0, 4942, 4945, 5, 23, 0, 0, 4943, 4946, 3, 702, 351, 0, 4944, 4946, 3, 800, 400, 0, 4945, 4943, 1, 0, 0, 0, 4945, 4944, 1, 0, 0, 0, 4945, 4946, 1, 0, 0, 0, 4946, 4948, 1, 0, 0, 0, 4947, 4949, 3, 450, 225, 0, 4948, 4947, 1, 0, 0, 0, 4949, 4950, 1, 0, 0, 0, 4950, 4948, 1, 0, 0, 0, 4950, 4951, 1, 0, 0, 0, 4951, 4958, 1, 0, 0, 0, 4952, 4954, 5, 53, 0, 0, 4953, 4955, 3, 448, 224, 0, 4954, 4953, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 4954, 1, 0, 0, 0, 4956, 4957, 1, 0, 0, 0, 4957, 4959, 1, 0, 0, 0, 4958, 4952, 1, 0, 0, 0, 4958, 4959, 1, 0, 0, 0, 4959, 4960, 1, 0, 0, 0, 4960, 4961, 5, 378, 0, 0, 4961, 4962, 5, 23, 0, 0, 4962, 421, 1, 0, 0, 0, 4963, 4964, 5, 78, 0, 0, 4964, 4965, 3, 800, 400, 0, 4965, 4967, 5, 175, 0, 0, 4966, 4968, 3, 448, 224, 0, 4967, 4966, 1, 0, 0, 0, 4968, 4969, 1, 0, 0, 0, 4969, 4967, 1, 0, 0, 0, 4969, 4970, 1, 0, 0, 0, 4970, 4974, 1, 0, 0, 0, 4971, 4973, 3, 452, 226, 0, 4972, 4971, 1, 0, 0, 0, 4973, 4976, 1, 0, 0, 0, 4974, 4972, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 4983, 1, 0, 0, 0, 4976, 4974, 1, 0, 0, 0, 4977, 4979, 5, 53, 0, 0, 4978, 4980, 3, 448, 224, 0, 4979, 4978, 1, 0, 0, 0, 4980, 4981, 1, 0, 0, 0, 4981, 4979, 1, 0, 0, 0, 4981, 4982, 1, 0, 0, 0, 4982, 4984, 1, 0, 0, 0, 4983, 4977, 1, 0, 0, 0, 4983, 4984, 1, 0, 0, 0, 4984, 4985, 1, 0, 0, 0, 4985, 4986, 5, 378, 0, 0, 4986, 4987, 5, 78, 0, 0, 4987, 423, 1, 0, 0, 0, 4988, 4989, 5, 90, 0, 0, 4989, 4990, 3, 702, 351, 0, 4990, 425, 1, 0, 0, 0, 4991, 4992, 5, 97, 0, 0, 4992, 4993, 3, 702, 351, 0, 4993, 427, 1, 0, 0, 0, 4994, 4995, 3, 702, 351, 0, 4995, 4996, 5, 878, 0, 0, 4996, 4998, 1, 0, 0, 0, 4997, 4994, 1, 0, 0, 0, 4997, 4998, 1, 0, 0, 0, 4998, 4999, 1, 0, 0, 0, 4999, 5001, 5, 106, 0, 0, 5000, 5002, 3, 448, 224, 0, 5001, 5000, 1, 0, 0, 0, 5002, 5003, 1, 0, 0, 0, 5003, 5001, 1, 0, 0, 0, 5003, 5004, 1, 0, 0, 0, 5004, 5005, 1, 0, 0, 0, 5005, 5006, 5, 378, 0, 0, 5006, 5008, 5, 106, 0, 0, 5007, 5009, 3, 702, 351, 0, 5008, 5007, 1, 0, 0, 0, 5008, 5009, 1, 0, 0, 0, 5009, 429, 1, 0, 0, 0, 5010, 5011, 3, 702, 351, 0, 5011, 5012, 5, 878, 0, 0, 5012, 5014, 1, 0, 0, 0, 5013, 5010, 1, 0, 0, 0, 5013, 5014, 1, 0, 0, 0, 5014, 5015, 1, 0, 0, 0, 5015, 5017, 5, 142, 0, 0, 5016, 5018, 3, 448, 224, 0, 5017, 5016, 1, 0, 0, 0, 5018, 5019, 1, 0, 0, 0, 5019, 5017, 1, 0, 0, 0, 5019, 5020, 1, 0, 0, 0, 5020, 5021, 1, 0, 0, 0, 5021, 5022, 5, 676, 0, 0, 5022, 5023, 3, 800, 400, 0, 5023, 5024, 5, 378, 0, 0, 5024, 5026, 5, 142, 0, 0, 5025, 5027, 3, 702, 351, 0, 5026, 5025, 1, 0, 0, 0, 5026, 5027, 1, 0, 0, 0, 5027, 431, 1, 0, 0, 0, 5028, 5029, 5, 148, 0, 0, 5029, 5030, 3, 800, 400, 0, 5030, 433, 1, 0, 0, 0, 5031, 5032, 3, 702, 351, 0, 5032, 5033, 5, 878, 0, 0, 5033, 5035, 1, 0, 0, 0, 5034, 5031, 1, 0, 0, 0, 5034, 5035, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 5037, 5, 193, 0, 0, 5037, 5038, 3, 800, 400, 0, 5038, 5040, 5, 371, 0, 0, 5039, 5041, 3, 448, 224, 0, 5040, 5039, 1, 0, 0, 0, 5041, 5042, 1, 0, 0, 0, 5042, 5040, 1, 0, 0, 0, 5042, 5043, 1, 0, 0, 0, 5043, 5044, 1, 0, 0, 0, 5044, 5045, 5, 378, 0, 0, 5045, 5047, 5, 193, 0, 0, 5046, 5048, 3, 702, 351, 0, 5047, 5046, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 435, 1, 0, 0, 0, 5049, 5050, 5, 334, 0, 0, 5050, 5065, 3, 702, 351, 0, 5051, 5056, 5, 64, 0, 0, 5052, 5054, 5, 501, 0, 0, 5053, 5052, 1, 0, 0, 0, 5053, 5054, 1, 0, 0, 0, 5054, 5055, 1, 0, 0, 0, 5055, 5057, 5, 68, 0, 0, 5056, 5053, 1, 0, 0, 0, 5056, 5057, 1, 0, 0, 0, 5057, 5058, 1, 0, 0, 0, 5058, 5059, 3, 702, 351, 0, 5059, 5060, 5, 88, 0, 0, 5060, 5061, 3, 700, 350, 0, 5061, 5065, 1, 0, 0, 0, 5062, 5063, 5, 516, 0, 0, 5063, 5065, 3, 702, 351, 0, 5064, 5049, 1, 0, 0, 0, 5064, 5051, 1, 0, 0, 0, 5064, 5062, 1, 0, 0, 0, 5065, 437, 1, 0, 0, 0, 5066, 5067, 5, 41, 0, 0, 5067, 5068, 3, 700, 350, 0, 5068, 5071, 3, 722, 361, 0, 5069, 5070, 5, 42, 0, 0, 5070, 5072, 3, 800, 400, 0, 5071, 5069, 1, 0, 0, 0, 5071, 5072, 1, 0, 0, 0, 5072, 439, 1, 0, 0, 0, 5073, 5074, 5, 41, 0, 0, 5074, 5075, 3, 702, 351, 0, 5075, 5076, 5, 30, 0, 0, 5076, 5083, 5, 65, 0, 0, 5077, 5084, 3, 708, 354, 0, 5078, 5080, 5, 164, 0, 0, 5079, 5081, 5, 682, 0, 0, 5080, 5079, 1, 0, 0, 0, 5080, 5081, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5084, 5, 882, 0, 0, 5083, 5077, 1, 0, 0, 0, 5083, 5078, 1, 0, 0, 0, 5084, 441, 1, 0, 0, 0, 5085, 5086, 5, 41, 0, 0, 5086, 5087, 3, 702, 351, 0, 5087, 5088, 5, 38, 0, 0, 5088, 5089, 5, 65, 0, 0, 5089, 5090, 3, 204, 102, 0, 5090, 443, 1, 0, 0, 0, 5091, 5092, 5, 41, 0, 0, 5092, 5093, 7, 78, 0, 0, 5093, 5094, 5, 417, 0, 0, 5094, 5095, 5, 65, 0, 0, 5095, 5100, 3, 446, 223, 0, 5096, 5097, 5, 868, 0, 0, 5097, 5099, 3, 446, 223, 0, 5098, 5096, 1, 0, 0, 0, 5099, 5102, 1, 0, 0, 0, 5100, 5098, 1, 0, 0, 0, 5100, 5101, 1, 0, 0, 0, 5101, 5103, 1, 0, 0, 0, 5102, 5100, 1, 0, 0, 0, 5103, 5104, 3, 416, 208, 0, 5104, 445, 1, 0, 0, 0, 5105, 5117, 3, 708, 354, 0, 5106, 5108, 5, 164, 0, 0, 5107, 5109, 5, 682, 0, 0, 5108, 5107, 1, 0, 0, 0, 5108, 5109, 1, 0, 0, 0, 5109, 5110, 1, 0, 0, 0, 5110, 5117, 5, 882, 0, 0, 5111, 5117, 3, 702, 351, 0, 5112, 5117, 5, 165, 0, 0, 5113, 5114, 5, 114, 0, 0, 5114, 5117, 5, 407, 0, 0, 5115, 5117, 5, 163, 0, 0, 5116, 5105, 1, 0, 0, 0, 5116, 5106, 1, 0, 0, 0, 5116, 5111, 1, 0, 0, 0, 5116, 5112, 1, 0, 0, 0, 5116, 5113, 1, 0, 0, 0, 5116, 5115, 1, 0, 0, 0, 5117, 447, 1, 0, 0, 0, 5118, 5121, 3, 18, 9, 0, 5119, 5121, 3, 4, 2, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5119, 1, 0, 0, 0, 5121, 5122, 1, 0, 0, 0, 5122, 5123, 5, 869, 0, 0, 5123, 449, 1, 0, 0, 0, 5124, 5127, 5, 191, 0, 0, 5125, 5128, 3, 720, 360, 0, 5126, 5128, 3, 800, 400, 0, 5127, 5125, 1, 0, 0, 0, 5127, 5126, 1, 0, 0, 0, 5128, 5129, 1, 0, 0, 0, 5129, 5131, 5, 175, 0, 0, 5130, 5132, 3, 448, 224, 0, 5131, 5130, 1, 0, 0, 0, 5132, 5133, 1, 0, 0, 0, 5133, 5131, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 451, 1, 0, 0, 0, 5135, 5136, 5, 54, 0, 0, 5136, 5137, 3, 800, 400, 0, 5137, 5139, 5, 175, 0, 0, 5138, 5140, 3, 448, 224, 0, 5139, 5138, 1, 0, 0, 0, 5140, 5141, 1, 0, 0, 0, 5141, 5139, 1, 0, 0, 0, 5141, 5142, 1, 0, 0, 0, 5142, 453, 1, 0, 0, 0, 5143, 5144, 5, 8, 0, 0, 5144, 5146, 5, 678, 0, 0, 5145, 5147, 3, 754, 377, 0, 5146, 5145, 1, 0, 0, 0, 5146, 5147, 1, 0, 0, 0, 5147, 5204, 1, 0, 0, 0, 5148, 5153, 3, 486, 243, 0, 5149, 5150, 5, 868, 0, 0, 5150, 5152, 3, 486, 243, 0, 5151, 5149, 1, 0, 0, 0, 5152, 5155, 1, 0, 0, 0, 5153, 5151, 1, 0, 0, 0, 5153, 5154, 1, 0, 0, 0, 5154, 5205, 1, 0, 0, 0, 5155, 5153, 1, 0, 0, 0, 5156, 5161, 3, 488, 244, 0, 5157, 5158, 5, 868, 0, 0, 5158, 5160, 3, 488, 244, 0, 5159, 5157, 1, 0, 0, 0, 5160, 5163, 1, 0, 0, 0, 5161, 5159, 1, 0, 0, 0, 5161, 5162, 1, 0, 0, 0, 5162, 5178, 1, 0, 0, 0, 5163, 5161, 1, 0, 0, 0, 5164, 5176, 5, 144, 0, 0, 5165, 5177, 5, 505, 0, 0, 5166, 5173, 3, 500, 250, 0, 5167, 5169, 5, 11, 0, 0, 5168, 5167, 1, 0, 0, 0, 5168, 5169, 1, 0, 0, 0, 5169, 5170, 1, 0, 0, 0, 5170, 5172, 3, 500, 250, 0, 5171, 5168, 1, 0, 0, 0, 5172, 5175, 1, 0, 0, 0, 5173, 5171, 1, 0, 0, 0, 5173, 5174, 1, 0, 0, 0, 5174, 5177, 1, 0, 0, 0, 5175, 5173, 1, 0, 0, 0, 5176, 5165, 1, 0, 0, 0, 5176, 5166, 1, 0, 0, 0, 5177, 5179, 1, 0, 0, 0, 5178, 5164, 1, 0, 0, 0, 5178, 5179, 1, 0, 0, 0, 5179, 5186, 1, 0, 0, 0, 5180, 5182, 5, 194, 0, 0, 5181, 5183, 3, 502, 251, 0, 5182, 5181, 1, 0, 0, 0, 5183, 5184, 1, 0, 0, 0, 5184, 5182, 1, 0, 0, 0, 5184, 5185, 1, 0, 0, 0, 5185, 5187, 1, 0, 0, 0, 5186, 5180, 1, 0, 0, 0, 5186, 5187, 1, 0, 0, 0, 5187, 5192, 1, 0, 0, 0, 5188, 5191, 3, 504, 252, 0, 5189, 5191, 3, 506, 253, 0, 5190, 5188, 1, 0, 0, 0, 5190, 5189, 1, 0, 0, 0, 5191, 5194, 1, 0, 0, 0, 5192, 5190, 1, 0, 0, 0, 5192, 5193, 1, 0, 0, 0, 5193, 5197, 1, 0, 0, 0, 5194, 5192, 1, 0, 0, 0, 5195, 5196, 7, 79, 0, 0, 5196, 5198, 5, 882, 0, 0, 5197, 5195, 1, 0, 0, 0, 5197, 5198, 1, 0, 0, 0, 5198, 5205, 1, 0, 0, 0, 5199, 5200, 3, 652, 326, 0, 5200, 5201, 5, 42, 0, 0, 5201, 5202, 5, 582, 0, 0, 5202, 5203, 3, 462, 231, 0, 5203, 5205, 1, 0, 0, 0, 5204, 5148, 1, 0, 0, 0, 5204, 5156, 1, 0, 0, 0, 5204, 5199, 1, 0, 0, 0, 5205, 455, 1, 0, 0, 0, 5206, 5207, 5, 34, 0, 0, 5207, 5209, 5, 678, 0, 0, 5208, 5210, 3, 756, 378, 0, 5209, 5208, 1, 0, 0, 0, 5209, 5210, 1, 0, 0, 0, 5210, 5211, 1, 0, 0, 0, 5211, 5213, 3, 680, 340, 0, 5212, 5214, 3, 490, 245, 0, 5213, 5212, 1, 0, 0, 0, 5213, 5214, 1, 0, 0, 0, 5214, 5222, 1, 0, 0, 0, 5215, 5216, 5, 868, 0, 0, 5216, 5218, 3, 680, 340, 0, 5217, 5219, 3, 490, 245, 0, 5218, 5217, 1, 0, 0, 0, 5218, 5219, 1, 0, 0, 0, 5219, 5221, 1, 0, 0, 0, 5220, 5215, 1, 0, 0, 0, 5221, 5224, 1, 0, 0, 0, 5222, 5220, 1, 0, 0, 0, 5222, 5223, 1, 0, 0, 0, 5223, 5228, 1, 0, 0, 0, 5224, 5222, 1, 0, 0, 0, 5225, 5226, 5, 42, 0, 0, 5226, 5227, 5, 582, 0, 0, 5227, 5229, 3, 462, 231, 0, 5228, 5225, 1, 0, 0, 0, 5228, 5229, 1, 0, 0, 0, 5229, 5244, 1, 0, 0, 0, 5230, 5242, 5, 144, 0, 0, 5231, 5243, 5, 505, 0, 0, 5232, 5239, 3, 500, 250, 0, 5233, 5235, 5, 11, 0, 0, 5234, 5233, 1, 0, 0, 0, 5234, 5235, 1, 0, 0, 0, 5235, 5236, 1, 0, 0, 0, 5236, 5238, 3, 500, 250, 0, 5237, 5234, 1, 0, 0, 0, 5238, 5241, 1, 0, 0, 0, 5239, 5237, 1, 0, 0, 0, 5239, 5240, 1, 0, 0, 0, 5240, 5243, 1, 0, 0, 0, 5241, 5239, 1, 0, 0, 0, 5242, 5231, 1, 0, 0, 0, 5242, 5232, 1, 0, 0, 0, 5243, 5245, 1, 0, 0, 0, 5244, 5230, 1, 0, 0, 0, 5244, 5245, 1, 0, 0, 0, 5245, 5252, 1, 0, 0, 0, 5246, 5248, 5, 194, 0, 0, 5247, 5249, 3, 502, 251, 0, 5248, 5247, 1, 0, 0, 0, 5249, 5250, 1, 0, 0, 0, 5250, 5248, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5253, 1, 0, 0, 0, 5252, 5246, 1, 0, 0, 0, 5252, 5253, 1, 0, 0, 0, 5253, 5258, 1, 0, 0, 0, 5254, 5257, 3, 504, 252, 0, 5255, 5257, 3, 506, 253, 0, 5256, 5254, 1, 0, 0, 0, 5256, 5255, 1, 0, 0, 0, 5257, 5260, 1, 0, 0, 0, 5258, 5256, 1, 0, 0, 0, 5258, 5259, 1, 0, 0, 0, 5259, 5263, 1, 0, 0, 0, 5260, 5258, 1, 0, 0, 0, 5261, 5262, 7, 79, 0, 0, 5262, 5264, 5, 882, 0, 0, 5263, 5261, 1, 0, 0, 0, 5263, 5264, 1, 0, 0, 0, 5264, 457, 1, 0, 0, 0, 5265, 5266, 5, 51, 0, 0, 5266, 5268, 5, 678, 0, 0, 5267, 5269, 3, 754, 377, 0, 5268, 5267, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, 5270, 1, 0, 0, 0, 5270, 5275, 3, 680, 340, 0, 5271, 5272, 5, 868, 0, 0, 5272, 5274, 3, 680, 340, 0, 5273, 5271, 1, 0, 0, 0, 5274, 5277, 1, 0, 0, 0, 5275, 5273, 1, 0, 0, 0, 5275, 5276, 1, 0, 0, 0, 5276, 459, 1, 0, 0, 0, 5277, 5275, 1, 0, 0, 0, 5278, 5279, 5, 73, 0, 0, 5279, 5284, 3, 514, 257, 0, 5280, 5281, 5, 868, 0, 0, 5281, 5283, 3, 514, 257, 0, 5282, 5280, 1, 0, 0, 0, 5283, 5286, 1, 0, 0, 0, 5284, 5282, 1, 0, 0, 0, 5284, 5285, 1, 0, 0, 0, 5285, 5287, 1, 0, 0, 0, 5286, 5284, 1, 0, 0, 0, 5287, 5289, 5, 119, 0, 0, 5288, 5290, 3, 482, 241, 0, 5289, 5288, 1, 0, 0, 0, 5289, 5290, 1, 0, 0, 0, 5290, 5291, 1, 0, 0, 0, 5291, 5292, 3, 518, 259, 0, 5292, 5302, 5, 176, 0, 0, 5293, 5298, 3, 494, 247, 0, 5294, 5295, 5, 868, 0, 0, 5295, 5297, 3, 494, 247, 0, 5296, 5294, 1, 0, 0, 0, 5297, 5300, 1, 0, 0, 0, 5298, 5296, 1, 0, 0, 0, 5298, 5299, 1, 0, 0, 0, 5299, 5303, 1, 0, 0, 0, 5300, 5298, 1, 0, 0, 0, 5301, 5303, 3, 650, 325, 0, 5302, 5293, 1, 0, 0, 0, 5302, 5301, 1, 0, 0, 0, 5303, 5318, 1, 0, 0, 0, 5304, 5316, 5, 144, 0, 0, 5305, 5317, 5, 505, 0, 0, 5306, 5313, 3, 500, 250, 0, 5307, 5309, 5, 11, 0, 0, 5308, 5307, 1, 0, 0, 0, 5308, 5309, 1, 0, 0, 0, 5309, 5310, 1, 0, 0, 0, 5310, 5312, 3, 500, 250, 0, 5311, 5308, 1, 0, 0, 0, 5312, 5315, 1, 0, 0, 0, 5313, 5311, 1, 0, 0, 0, 5313, 5314, 1, 0, 0, 0, 5314, 5317, 1, 0, 0, 0, 5315, 5313, 1, 0, 0, 0, 5316, 5305, 1, 0, 0, 0, 5316, 5306, 1, 0, 0, 0, 5317, 5319, 1, 0, 0, 0, 5318, 5304, 1, 0, 0, 0, 5318, 5319, 1, 0, 0, 0, 5319, 5329, 1, 0, 0, 0, 5320, 5326, 5, 194, 0, 0, 5321, 5322, 5, 73, 0, 0, 5322, 5325, 5, 121, 0, 0, 5323, 5325, 3, 502, 251, 0, 5324, 5321, 1, 0, 0, 0, 5324, 5323, 1, 0, 0, 0, 5325, 5328, 1, 0, 0, 0, 5326, 5324, 1, 0, 0, 0, 5326, 5327, 1, 0, 0, 0, 5327, 5330, 1, 0, 0, 0, 5328, 5326, 1, 0, 0, 0, 5329, 5320, 1, 0, 0, 0, 5329, 5330, 1, 0, 0, 0, 5330, 5338, 1, 0, 0, 0, 5331, 5332, 5, 13, 0, 0, 5332, 5336, 3, 680, 340, 0, 5333, 5334, 5, 194, 0, 0, 5334, 5335, 5, 582, 0, 0, 5335, 5337, 3, 462, 231, 0, 5336, 5333, 1, 0, 0, 0, 5336, 5337, 1, 0, 0, 0, 5337, 5339, 1, 0, 0, 0, 5338, 5331, 1, 0, 0, 0, 5338, 5339, 1, 0, 0, 0, 5339, 5368, 1, 0, 0, 0, 5340, 5343, 5, 73, 0, 0, 5341, 5342, 5, 547, 0, 0, 5342, 5344, 5, 119, 0, 0, 5343, 5341, 1, 0, 0, 0, 5343, 5344, 1, 0, 0, 0, 5344, 5345, 1, 0, 0, 0, 5345, 5350, 3, 652, 326, 0, 5346, 5347, 5, 868, 0, 0, 5347, 5349, 3, 652, 326, 0, 5348, 5346, 1, 0, 0, 0, 5349, 5352, 1, 0, 0, 0, 5350, 5348, 1, 0, 0, 0, 5350, 5351, 1, 0, 0, 0, 5351, 5353, 1, 0, 0, 0, 5352, 5350, 1, 0, 0, 0, 5353, 5354, 5, 176, 0, 0, 5354, 5359, 3, 652, 326, 0, 5355, 5356, 5, 868, 0, 0, 5356, 5358, 3, 652, 326, 0, 5357, 5355, 1, 0, 0, 0, 5358, 5361, 1, 0, 0, 0, 5359, 5357, 1, 0, 0, 0, 5359, 5360, 1, 0, 0, 0, 5360, 5365, 1, 0, 0, 0, 5361, 5359, 1, 0, 0, 0, 5362, 5363, 5, 194, 0, 0, 5363, 5364, 5, 704, 0, 0, 5364, 5366, 5, 121, 0, 0, 5365, 5362, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 5368, 1, 0, 0, 0, 5367, 5278, 1, 0, 0, 0, 5367, 5340, 1, 0, 0, 0, 5368, 461, 1, 0, 0, 0, 5369, 5378, 5, 42, 0, 0, 5370, 5378, 5, 505, 0, 0, 5371, 5374, 5, 7, 0, 0, 5372, 5373, 5, 59, 0, 0, 5373, 5375, 3, 650, 325, 0, 5374, 5372, 1, 0, 0, 0, 5374, 5375, 1, 0, 0, 0, 5375, 5378, 1, 0, 0, 0, 5376, 5378, 3, 650, 325, 0, 5377, 5369, 1, 0, 0, 0, 5377, 5370, 1, 0, 0, 0, 5377, 5371, 1, 0, 0, 0, 5377, 5376, 1, 0, 0, 0, 5378, 463, 1, 0, 0, 0, 5379, 5380, 5, 73, 0, 0, 5380, 5381, 5, 547, 0, 0, 5381, 5382, 5, 119, 0, 0, 5382, 5383, 3, 680, 340, 0, 5383, 5384, 5, 176, 0, 0, 5384, 5389, 3, 680, 340, 0, 5385, 5386, 5, 868, 0, 0, 5386, 5388, 3, 680, 340, 0, 5387, 5385, 1, 0, 0, 0, 5388, 5391, 1, 0, 0, 0, 5389, 5387, 1, 0, 0, 0, 5389, 5390, 1, 0, 0, 0, 5390, 5395, 1, 0, 0, 0, 5391, 5389, 1, 0, 0, 0, 5392, 5393, 5, 194, 0, 0, 5393, 5394, 5, 73, 0, 0, 5394, 5396, 5, 121, 0, 0, 5395, 5392, 1, 0, 0, 0, 5395, 5396, 1, 0, 0, 0, 5396, 465, 1, 0, 0, 0, 5397, 5398, 5, 8, 0, 0, 5398, 5399, 5, 739, 0, 0, 5399, 5400, 5, 74, 0, 0, 5400, 5406, 3, 642, 321, 0, 5401, 5403, 5, 190, 0, 0, 5402, 5404, 5, 857, 0, 0, 5403, 5402, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5407, 3, 474, 237, 0, 5406, 5401, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5413, 1, 0, 0, 0, 5408, 5410, 5, 837, 0, 0, 5409, 5411, 5, 857, 0, 0, 5410, 5409, 1, 0, 0, 0, 5410, 5411, 1, 0, 0, 0, 5411, 5412, 1, 0, 0, 0, 5412, 5414, 3, 708, 354, 0, 5413, 5408, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5419, 1, 0, 0, 0, 5415, 5417, 7, 38, 0, 0, 5416, 5418, 5, 66, 0, 0, 5417, 5416, 1, 0, 0, 0, 5417, 5418, 1, 0, 0, 0, 5418, 5420, 1, 0, 0, 0, 5419, 5415, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 467, 1, 0, 0, 0, 5421, 5422, 5, 34, 0, 0, 5422, 5423, 5, 739, 0, 0, 5423, 5424, 5, 74, 0, 0, 5424, 5425, 3, 640, 320, 0, 5425, 5426, 5, 839, 0, 0, 5426, 5427, 5, 857, 0, 0, 5427, 5433, 7, 80, 0, 0, 5428, 5430, 5, 190, 0, 0, 5429, 5431, 5, 857, 0, 0, 5430, 5429, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 5434, 3, 474, 237, 0, 5433, 5428, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5440, 1, 0, 0, 0, 5435, 5437, 5, 837, 0, 0, 5436, 5438, 5, 857, 0, 0, 5437, 5436, 1, 0, 0, 0, 5437, 5438, 1, 0, 0, 0, 5438, 5439, 1, 0, 0, 0, 5439, 5441, 3, 708, 354, 0, 5440, 5435, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5443, 1, 0, 0, 0, 5442, 5444, 7, 38, 0, 0, 5443, 5442, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 469, 1, 0, 0, 0, 5445, 5446, 5, 51, 0, 0, 5446, 5447, 5, 739, 0, 0, 5447, 5448, 5, 74, 0, 0, 5448, 5450, 3, 642, 321, 0, 5449, 5451, 5, 66, 0, 0, 5450, 5449, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 471, 1, 0, 0, 0, 5452, 5453, 5, 155, 0, 0, 5453, 5454, 5, 739, 0, 0, 5454, 5455, 5, 74, 0, 0, 5455, 5465, 3, 642, 321, 0, 5456, 5457, 5, 65, 0, 0, 5457, 5462, 3, 708, 354, 0, 5458, 5459, 5, 868, 0, 0, 5459, 5461, 3, 708, 354, 0, 5460, 5458, 1, 0, 0, 0, 5461, 5464, 1, 0, 0, 0, 5462, 5460, 1, 0, 0, 0, 5462, 5463, 1, 0, 0, 0, 5463, 5466, 1, 0, 0, 0, 5464, 5462, 1, 0, 0, 0, 5465, 5456, 1, 0, 0, 0, 5465, 5466, 1, 0, 0, 0, 5466, 473, 1, 0, 0, 0, 5467, 5473, 3, 708, 354, 0, 5468, 5469, 3, 708, 354, 0, 5469, 5470, 5, 854, 0, 0, 5470, 5471, 3, 708, 354, 0, 5471, 5473, 1, 0, 0, 0, 5472, 5467, 1, 0, 0, 0, 5472, 5468, 1, 0, 0, 0, 5473, 5478, 1, 0, 0, 0, 5474, 5475, 5, 868, 0, 0, 5475, 5477, 3, 474, 237, 0, 5476, 5474, 1, 0, 0, 0, 5477, 5480, 1, 0, 0, 0, 5478, 5476, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 475, 1, 0, 0, 0, 5480, 5478, 1, 0, 0, 0, 5481, 5482, 5, 141, 0, 0, 5482, 5483, 5, 678, 0, 0, 5483, 5488, 3, 520, 260, 0, 5484, 5485, 5, 868, 0, 0, 5485, 5487, 3, 520, 260, 0, 5486, 5484, 1, 0, 0, 0, 5487, 5490, 1, 0, 0, 0, 5488, 5486, 1, 0, 0, 0, 5488, 5489, 1, 0, 0, 0, 5489, 477, 1, 0, 0, 0, 5490, 5488, 1, 0, 0, 0, 5491, 5493, 5, 149, 0, 0, 5492, 5494, 3, 754, 377, 0, 5493, 5492, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 5500, 3, 514, 257, 0, 5496, 5497, 5, 868, 0, 0, 5497, 5499, 3, 514, 257, 0, 5498, 5496, 1, 0, 0, 0, 5499, 5502, 1, 0, 0, 0, 5500, 5498, 1, 0, 0, 0, 5500, 5501, 1, 0, 0, 0, 5501, 5503, 1, 0, 0, 0, 5502, 5500, 1, 0, 0, 0, 5503, 5505, 5, 119, 0, 0, 5504, 5506, 3, 482, 241, 0, 5505, 5504, 1, 0, 0, 0, 5505, 5506, 1, 0, 0, 0, 5506, 5507, 1, 0, 0, 0, 5507, 5508, 3, 518, 259, 0, 5508, 5509, 5, 68, 0, 0, 5509, 5511, 3, 650, 325, 0, 5510, 5512, 3, 480, 240, 0, 5511, 5510, 1, 0, 0, 0, 5511, 5512, 1, 0, 0, 0, 5512, 5544, 1, 0, 0, 0, 5513, 5515, 5, 149, 0, 0, 5514, 5516, 3, 754, 377, 0, 5515, 5514, 1, 0, 0, 0, 5515, 5516, 1, 0, 0, 0, 5516, 5517, 1, 0, 0, 0, 5517, 5519, 5, 7, 0, 0, 5518, 5520, 5, 734, 0, 0, 5519, 5518, 1, 0, 0, 0, 5519, 5520, 1, 0, 0, 0, 5520, 5521, 1, 0, 0, 0, 5521, 5522, 5, 868, 0, 0, 5522, 5523, 5, 73, 0, 0, 5523, 5524, 5, 121, 0, 0, 5524, 5525, 5, 68, 0, 0, 5525, 5527, 3, 650, 325, 0, 5526, 5528, 3, 480, 240, 0, 5527, 5526, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 5544, 1, 0, 0, 0, 5529, 5531, 5, 149, 0, 0, 5530, 5532, 3, 754, 377, 0, 5531, 5530, 1, 0, 0, 0, 5531, 5532, 1, 0, 0, 0, 5532, 5535, 1, 0, 0, 0, 5533, 5534, 5, 547, 0, 0, 5534, 5536, 5, 119, 0, 0, 5535, 5533, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, 5537, 1, 0, 0, 0, 5537, 5538, 3, 650, 325, 0, 5538, 5539, 5, 68, 0, 0, 5539, 5541, 3, 650, 325, 0, 5540, 5542, 3, 480, 240, 0, 5541, 5540, 1, 0, 0, 0, 5541, 5542, 1, 0, 0, 0, 5542, 5544, 1, 0, 0, 0, 5543, 5491, 1, 0, 0, 0, 5543, 5513, 1, 0, 0, 0, 5543, 5529, 1, 0, 0, 0, 5544, 479, 1, 0, 0, 0, 5545, 5546, 5, 79, 0, 0, 5546, 5547, 5, 674, 0, 0, 5547, 5548, 5, 678, 0, 0, 5548, 481, 1, 0, 0, 0, 5549, 5550, 7, 81, 0, 0, 5550, 483, 1, 0, 0, 0, 5551, 5552, 5, 155, 0, 0, 5552, 5555, 5, 529, 0, 0, 5553, 5554, 5, 65, 0, 0, 5554, 5556, 3, 680, 340, 0, 5555, 5553, 1, 0, 0, 0, 5555, 5556, 1, 0, 0, 0, 5556, 5557, 1, 0, 0, 0, 5557, 5560, 5, 857, 0, 0, 5558, 5561, 3, 794, 397, 0, 5559, 5561, 5, 882, 0, 0, 5560, 5558, 1, 0, 0, 0, 5560, 5559, 1, 0, 0, 0, 5561, 5584, 1, 0, 0, 0, 5562, 5563, 5, 155, 0, 0, 5563, 5566, 5, 529, 0, 0, 5564, 5565, 5, 65, 0, 0, 5565, 5567, 3, 680, 340, 0, 5566, 5564, 1, 0, 0, 0, 5566, 5567, 1, 0, 0, 0, 5567, 5572, 1, 0, 0, 0, 5568, 5569, 5, 176, 0, 0, 5569, 5573, 5, 829, 0, 0, 5570, 5571, 5, 857, 0, 0, 5571, 5573, 5, 882, 0, 0, 5572, 5568, 1, 0, 0, 0, 5572, 5570, 1, 0, 0, 0, 5573, 5576, 1, 0, 0, 0, 5574, 5575, 5, 143, 0, 0, 5575, 5577, 5, 882, 0, 0, 5576, 5574, 1, 0, 0, 0, 5576, 5577, 1, 0, 0, 0, 5577, 5581, 1, 0, 0, 0, 5578, 5579, 5, 147, 0, 0, 5579, 5580, 5, 36, 0, 0, 5580, 5582, 5, 529, 0, 0, 5581, 5578, 1, 0, 0, 0, 5581, 5582, 1, 0, 0, 0, 5582, 5584, 1, 0, 0, 0, 5583, 5551, 1, 0, 0, 0, 5583, 5562, 1, 0, 0, 0, 5584, 485, 1, 0, 0, 0, 5585, 5586, 3, 680, 340, 0, 5586, 5587, 3, 504, 252, 0, 5587, 487, 1, 0, 0, 0, 5588, 5614, 3, 680, 340, 0, 5589, 5590, 5, 423, 0, 0, 5590, 5591, 5, 20, 0, 0, 5591, 5592, 5, 882, 0, 0, 5592, 5615, 3, 496, 248, 0, 5593, 5594, 5, 423, 0, 0, 5594, 5595, 5, 20, 0, 0, 5595, 5596, 5, 829, 0, 0, 5596, 5597, 5, 529, 0, 0, 5597, 5615, 3, 496, 248, 0, 5598, 5599, 5, 423, 0, 0, 5599, 5600, 5, 194, 0, 0, 5600, 5615, 3, 498, 249, 0, 5601, 5602, 5, 369, 0, 0, 5602, 5603, 5, 511, 0, 0, 5603, 5615, 5, 529, 0, 0, 5604, 5605, 7, 82, 0, 0, 5605, 5607, 3, 512, 256, 0, 5606, 5608, 3, 508, 254, 0, 5607, 5606, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5610, 1, 0, 0, 0, 5609, 5604, 1, 0, 0, 0, 5610, 5611, 1, 0, 0, 0, 5611, 5609, 1, 0, 0, 0, 5611, 5612, 1, 0, 0, 0, 5612, 5615, 1, 0, 0, 0, 5613, 5615, 3, 510, 255, 0, 5614, 5589, 1, 0, 0, 0, 5614, 5593, 1, 0, 0, 0, 5614, 5598, 1, 0, 0, 0, 5614, 5601, 1, 0, 0, 0, 5614, 5609, 1, 0, 0, 0, 5614, 5613, 1, 0, 0, 0, 5614, 5615, 1, 0, 0, 0, 5615, 489, 1, 0, 0, 0, 5616, 5617, 5, 423, 0, 0, 5617, 5623, 5, 20, 0, 0, 5618, 5624, 5, 882, 0, 0, 5619, 5620, 5, 829, 0, 0, 5620, 5624, 5, 529, 0, 0, 5621, 5622, 5, 529, 0, 0, 5622, 5624, 5, 882, 0, 0, 5623, 5618, 1, 0, 0, 0, 5623, 5619, 1, 0, 0, 0, 5623, 5621, 1, 0, 0, 0, 5624, 5627, 1, 0, 0, 0, 5625, 5626, 5, 11, 0, 0, 5626, 5628, 3, 490, 245, 0, 5627, 5625, 1, 0, 0, 0, 5627, 5628, 1, 0, 0, 0, 5628, 5653, 1, 0, 0, 0, 5629, 5630, 5, 423, 0, 0, 5630, 5631, 5, 194, 0, 0, 5631, 5640, 3, 702, 351, 0, 5632, 5636, 5, 20, 0, 0, 5633, 5637, 5, 882, 0, 0, 5634, 5635, 5, 829, 0, 0, 5635, 5637, 5, 529, 0, 0, 5636, 5633, 1, 0, 0, 0, 5636, 5634, 1, 0, 0, 0, 5637, 5641, 1, 0, 0, 0, 5638, 5639, 5, 13, 0, 0, 5639, 5641, 5, 882, 0, 0, 5640, 5632, 1, 0, 0, 0, 5640, 5638, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5644, 1, 0, 0, 0, 5642, 5643, 5, 11, 0, 0, 5643, 5645, 3, 490, 245, 0, 5644, 5642, 1, 0, 0, 0, 5644, 5645, 1, 0, 0, 0, 5645, 5653, 1, 0, 0, 0, 5646, 5647, 5, 423, 0, 0, 5647, 5648, 5, 194, 0, 0, 5648, 5650, 3, 702, 351, 0, 5649, 5651, 3, 492, 246, 0, 5650, 5649, 1, 0, 0, 0, 5650, 5651, 1, 0, 0, 0, 5651, 5653, 1, 0, 0, 0, 5652, 5616, 1, 0, 0, 0, 5652, 5629, 1, 0, 0, 0, 5652, 5646, 1, 0, 0, 0, 5653, 491, 1, 0, 0, 0, 5654, 5655, 5, 427, 0, 0, 5655, 5656, 5, 708, 0, 0, 5656, 5657, 5, 423, 0, 0, 5657, 5661, 5, 20, 0, 0, 5658, 5659, 5, 829, 0, 0, 5659, 5662, 5, 529, 0, 0, 5660, 5662, 5, 882, 0, 0, 5661, 5658, 1, 0, 0, 0, 5661, 5660, 1, 0, 0, 0, 5662, 5672, 1, 0, 0, 0, 5663, 5664, 5, 427, 0, 0, 5664, 5665, 5, 708, 0, 0, 5665, 5666, 5, 423, 0, 0, 5666, 5667, 5, 194, 0, 0, 5667, 5668, 3, 702, 351, 0, 5668, 5669, 5, 13, 0, 0, 5669, 5670, 5, 882, 0, 0, 5670, 5672, 1, 0, 0, 0, 5671, 5654, 1, 0, 0, 0, 5671, 5663, 1, 0, 0, 0, 5672, 493, 1, 0, 0, 0, 5673, 5674, 3, 680, 340, 0, 5674, 5675, 5, 423, 0, 0, 5675, 5676, 5, 20, 0, 0, 5676, 5677, 5, 529, 0, 0, 5677, 5678, 5, 882, 0, 0, 5678, 5699, 1, 0, 0, 0, 5679, 5680, 3, 680, 340, 0, 5680, 5681, 5, 423, 0, 0, 5681, 5682, 5, 20, 0, 0, 5682, 5683, 5, 829, 0, 0, 5683, 5684, 5, 529, 0, 0, 5684, 5685, 3, 496, 248, 0, 5685, 5699, 1, 0, 0, 0, 5686, 5687, 3, 680, 340, 0, 5687, 5688, 5, 423, 0, 0, 5688, 5689, 5, 20, 0, 0, 5689, 5690, 5, 882, 0, 0, 5690, 5691, 3, 496, 248, 0, 5691, 5699, 1, 0, 0, 0, 5692, 5693, 3, 680, 340, 0, 5693, 5694, 5, 423, 0, 0, 5694, 5695, 5, 194, 0, 0, 5695, 5696, 3, 498, 249, 0, 5696, 5699, 1, 0, 0, 0, 5697, 5699, 3, 680, 340, 0, 5698, 5673, 1, 0, 0, 0, 5698, 5679, 1, 0, 0, 0, 5698, 5686, 1, 0, 0, 0, 5698, 5692, 1, 0, 0, 0, 5698, 5697, 1, 0, 0, 0, 5699, 495, 1, 0, 0, 0, 5700, 5701, 5, 143, 0, 0, 5701, 5703, 5, 882, 0, 0, 5702, 5700, 1, 0, 0, 0, 5702, 5703, 1, 0, 0, 0, 5703, 5707, 1, 0, 0, 0, 5704, 5705, 5, 147, 0, 0, 5705, 5706, 5, 36, 0, 0, 5706, 5708, 5, 529, 0, 0, 5707, 5704, 1, 0, 0, 0, 5707, 5708, 1, 0, 0, 0, 5708, 497, 1, 0, 0, 0, 5709, 5717, 3, 702, 351, 0, 5710, 5714, 7, 83, 0, 0, 5711, 5715, 5, 882, 0, 0, 5712, 5713, 5, 829, 0, 0, 5713, 5715, 5, 529, 0, 0, 5714, 5711, 1, 0, 0, 0, 5714, 5712, 1, 0, 0, 0, 5715, 5716, 1, 0, 0, 0, 5716, 5718, 3, 496, 248, 0, 5717, 5710, 1, 0, 0, 0, 5717, 5718, 1, 0, 0, 0, 5718, 5724, 1, 0, 0, 0, 5719, 5720, 3, 702, 351, 0, 5720, 5721, 5, 188, 0, 0, 5721, 5722, 3, 794, 397, 0, 5722, 5724, 1, 0, 0, 0, 5723, 5709, 1, 0, 0, 0, 5723, 5719, 1, 0, 0, 0, 5724, 499, 1, 0, 0, 0, 5725, 5734, 5, 169, 0, 0, 5726, 5734, 5, 693, 0, 0, 5727, 5728, 5, 331, 0, 0, 5728, 5734, 5, 882, 0, 0, 5729, 5730, 5, 441, 0, 0, 5730, 5734, 5, 882, 0, 0, 5731, 5732, 5, 651, 0, 0, 5732, 5734, 5, 882, 0, 0, 5733, 5725, 1, 0, 0, 0, 5733, 5726, 1, 0, 0, 0, 5733, 5727, 1, 0, 0, 0, 5733, 5729, 1, 0, 0, 0, 5733, 5731, 1, 0, 0, 0, 5734, 501, 1, 0, 0, 0, 5735, 5736, 5, 479, 0, 0, 5736, 5744, 3, 708, 354, 0, 5737, 5738, 5, 482, 0, 0, 5738, 5744, 3, 708, 354, 0, 5739, 5740, 5, 478, 0, 0, 5740, 5744, 3, 708, 354, 0, 5741, 5742, 5, 483, 0, 0, 5742, 5744, 3, 708, 354, 0, 5743, 5735, 1, 0, 0, 0, 5743, 5737, 1, 0, 0, 0, 5743, 5739, 1, 0, 0, 0, 5743, 5741, 1, 0, 0, 0, 5744, 503, 1, 0, 0, 0, 5745, 5746, 5, 529, 0, 0, 5746, 5753, 5, 390, 0, 0, 5747, 5754, 5, 42, 0, 0, 5748, 5754, 5, 500, 0, 0, 5749, 5750, 5, 87, 0, 0, 5750, 5751, 3, 708, 354, 0, 5751, 5752, 5, 698, 0, 0, 5752, 5754, 1, 0, 0, 0, 5753, 5747, 1, 0, 0, 0, 5753, 5748, 1, 0, 0, 0, 5753, 5749, 1, 0, 0, 0, 5753, 5754, 1, 0, 0, 0, 5754, 5784, 1, 0, 0, 0, 5755, 5756, 5, 529, 0, 0, 5756, 5759, 5, 420, 0, 0, 5757, 5760, 5, 42, 0, 0, 5758, 5760, 3, 708, 354, 0, 5759, 5757, 1, 0, 0, 0, 5759, 5758, 1, 0, 0, 0, 5760, 5784, 1, 0, 0, 0, 5761, 5762, 5, 529, 0, 0, 5762, 5763, 5, 581, 0, 0, 5763, 5768, 5, 87, 0, 0, 5764, 5769, 5, 42, 0, 0, 5765, 5766, 3, 708, 354, 0, 5766, 5767, 5, 698, 0, 0, 5767, 5769, 1, 0, 0, 0, 5768, 5764, 1, 0, 0, 0, 5768, 5765, 1, 0, 0, 0, 5769, 5784, 1, 0, 0, 0, 5770, 5771, 5, 529, 0, 0, 5771, 5772, 5, 144, 0, 0, 5772, 5774, 5, 36, 0, 0, 5773, 5775, 7, 84, 0, 0, 5774, 5773, 1, 0, 0, 0, 5774, 5775, 1, 0, 0, 0, 5775, 5784, 1, 0, 0, 0, 5776, 5777, 5, 395, 0, 0, 5777, 5784, 3, 708, 354, 0, 5778, 5781, 5, 530, 0, 0, 5779, 5782, 3, 708, 354, 0, 5780, 5782, 5, 669, 0, 0, 5781, 5779, 1, 0, 0, 0, 5781, 5780, 1, 0, 0, 0, 5782, 5784, 1, 0, 0, 0, 5783, 5745, 1, 0, 0, 0, 5783, 5755, 1, 0, 0, 0, 5783, 5761, 1, 0, 0, 0, 5783, 5770, 1, 0, 0, 0, 5783, 5776, 1, 0, 0, 0, 5783, 5778, 1, 0, 0, 0, 5784, 505, 1, 0, 0, 0, 5785, 5786, 5, 304, 0, 0, 5786, 5787, 7, 85, 0, 0, 5787, 507, 1, 0, 0, 0, 5788, 5791, 5, 423, 0, 0, 5789, 5790, 5, 194, 0, 0, 5790, 5792, 3, 702, 351, 0, 5791, 5789, 1, 0, 0, 0, 5791, 5792, 1, 0, 0, 0, 5792, 5801, 1, 0, 0, 0, 5793, 5797, 5, 20, 0, 0, 5794, 5798, 5, 882, 0, 0, 5795, 5796, 5, 829, 0, 0, 5796, 5798, 5, 529, 0, 0, 5797, 5794, 1, 0, 0, 0, 5797, 5795, 1, 0, 0, 0, 5798, 5802, 1, 0, 0, 0, 5799, 5800, 5, 13, 0, 0, 5800, 5802, 5, 882, 0, 0, 5801, 5793, 1, 0, 0, 0, 5801, 5799, 1, 0, 0, 0, 5802, 509, 1, 0, 0, 0, 5803, 5804, 3, 512, 256, 0, 5804, 5805, 5, 429, 0, 0, 5805, 5806, 5, 555, 0, 0, 5806, 5819, 1, 0, 0, 0, 5807, 5808, 3, 512, 256, 0, 5808, 5809, 5, 401, 0, 0, 5809, 5810, 5, 555, 0, 0, 5810, 5811, 5, 155, 0, 0, 5811, 5812, 5, 330, 0, 0, 5812, 5813, 5, 13, 0, 0, 5813, 5814, 5, 882, 0, 0, 5814, 5819, 1, 0, 0, 0, 5815, 5816, 3, 512, 256, 0, 5816, 5817, 5, 675, 0, 0, 5817, 5819, 1, 0, 0, 0, 5818, 5803, 1, 0, 0, 0, 5818, 5807, 1, 0, 0, 0, 5818, 5815, 1, 0, 0, 0, 5819, 511, 1, 0, 0, 0, 5820, 5821, 7, 86, 0, 0, 5821, 5822, 5, 394, 0, 0, 5822, 513, 1, 0, 0, 0, 5823, 5828, 3, 516, 258, 0, 5824, 5825, 5, 866, 0, 0, 5825, 5826, 3, 656, 328, 0, 5826, 5827, 5, 867, 0, 0, 5827, 5829, 1, 0, 0, 0, 5828, 5824, 1, 0, 0, 0, 5828, 5829, 1, 0, 0, 0, 5829, 515, 1, 0, 0, 0, 5830, 5832, 5, 7, 0, 0, 5831, 5833, 5, 734, 0, 0, 5832, 5831, 1, 0, 0, 0, 5832, 5833, 1, 0, 0, 0, 5833, 5924, 1, 0, 0, 0, 5834, 5836, 5, 8, 0, 0, 5835, 5837, 5, 743, 0, 0, 5836, 5835, 1, 0, 0, 0, 5836, 5837, 1, 0, 0, 0, 5837, 5924, 1, 0, 0, 0, 5838, 5846, 5, 34, 0, 0, 5839, 5840, 5, 660, 0, 0, 5840, 5847, 5, 752, 0, 0, 5841, 5847, 5, 743, 0, 0, 5842, 5847, 5, 684, 0, 0, 5843, 5847, 5, 678, 0, 0, 5844, 5847, 5, 658, 0, 0, 5845, 5847, 5, 582, 0, 0, 5846, 5839, 1, 0, 0, 0, 5846, 5841, 1, 0, 0, 0, 5846, 5842, 1, 0, 0, 0, 5846, 5843, 1, 0, 0, 0, 5846, 5844, 1, 0, 0, 0, 5846, 5845, 1, 0, 0, 0, 5846, 5847, 1, 0, 0, 0, 5847, 5924, 1, 0, 0, 0, 5848, 5924, 5, 44, 0, 0, 5849, 5851, 5, 51, 0, 0, 5850, 5852, 5, 582, 0, 0, 5851, 5850, 1, 0, 0, 0, 5851, 5852, 1, 0, 0, 0, 5852, 5924, 1, 0, 0, 0, 5853, 5924, 5, 385, 0, 0, 5854, 5924, 5, 717, 0, 0, 5855, 5924, 5, 718, 0, 0, 5856, 5857, 5, 73, 0, 0, 5857, 5924, 5, 121, 0, 0, 5858, 5924, 5, 82, 0, 0, 5859, 5924, 5, 86, 0, 0, 5860, 5861, 5, 104, 0, 0, 5861, 5924, 5, 752, 0, 0, 5862, 5924, 5, 735, 0, 0, 5863, 5924, 5, 547, 0, 0, 5864, 5924, 5, 138, 0, 0, 5865, 5924, 5, 736, 0, 0, 5866, 5867, 5, 572, 0, 0, 5867, 5924, 7, 87, 0, 0, 5868, 5924, 5, 154, 0, 0, 5869, 5870, 5, 157, 0, 0, 5870, 5924, 7, 88, 0, 0, 5871, 5924, 5, 749, 0, 0, 5872, 5924, 5, 750, 0, 0, 5873, 5924, 5, 178, 0, 0, 5874, 5924, 5, 185, 0, 0, 5875, 5924, 5, 186, 0, 0, 5876, 5924, 5, 705, 0, 0, 5877, 5924, 5, 706, 0, 0, 5878, 5924, 5, 707, 0, 0, 5879, 5924, 5, 709, 0, 0, 5880, 5924, 5, 710, 0, 0, 5881, 5924, 5, 711, 0, 0, 5882, 5924, 5, 712, 0, 0, 5883, 5924, 5, 714, 0, 0, 5884, 5924, 5, 715, 0, 0, 5885, 5924, 5, 716, 0, 0, 5886, 5924, 5, 719, 0, 0, 5887, 5924, 5, 720, 0, 0, 5888, 5924, 5, 721, 0, 0, 5889, 5924, 5, 722, 0, 0, 5890, 5924, 5, 723, 0, 0, 5891, 5924, 5, 724, 0, 0, 5892, 5924, 5, 725, 0, 0, 5893, 5924, 5, 726, 0, 0, 5894, 5924, 5, 727, 0, 0, 5895, 5924, 5, 728, 0, 0, 5896, 5924, 5, 731, 0, 0, 5897, 5924, 5, 732, 0, 0, 5898, 5924, 5, 733, 0, 0, 5899, 5924, 5, 737, 0, 0, 5900, 5924, 5, 738, 0, 0, 5901, 5924, 5, 740, 0, 0, 5902, 5924, 5, 741, 0, 0, 5903, 5924, 5, 742, 0, 0, 5904, 5924, 5, 745, 0, 0, 5905, 5924, 5, 746, 0, 0, 5906, 5924, 5, 747, 0, 0, 5907, 5924, 5, 160, 0, 0, 5908, 5924, 5, 748, 0, 0, 5909, 5924, 5, 836, 0, 0, 5910, 5924, 5, 751, 0, 0, 5911, 5924, 5, 753, 0, 0, 5912, 5924, 5, 838, 0, 0, 5913, 5924, 5, 754, 0, 0, 5914, 5924, 5, 755, 0, 0, 5915, 5916, 5, 103, 0, 0, 5916, 5917, 5, 68, 0, 0, 5917, 5924, 5, 744, 0, 0, 5918, 5919, 5, 154, 0, 0, 5919, 5920, 5, 88, 0, 0, 5920, 5924, 5, 744, 0, 0, 5921, 5922, 5, 729, 0, 0, 5922, 5924, 5, 730, 0, 0, 5923, 5830, 1, 0, 0, 0, 5923, 5834, 1, 0, 0, 0, 5923, 5838, 1, 0, 0, 0, 5923, 5848, 1, 0, 0, 0, 5923, 5849, 1, 0, 0, 0, 5923, 5853, 1, 0, 0, 0, 5923, 5854, 1, 0, 0, 0, 5923, 5855, 1, 0, 0, 0, 5923, 5856, 1, 0, 0, 0, 5923, 5858, 1, 0, 0, 0, 5923, 5859, 1, 0, 0, 0, 5923, 5860, 1, 0, 0, 0, 5923, 5862, 1, 0, 0, 0, 5923, 5863, 1, 0, 0, 0, 5923, 5864, 1, 0, 0, 0, 5923, 5865, 1, 0, 0, 0, 5923, 5866, 1, 0, 0, 0, 5923, 5868, 1, 0, 0, 0, 5923, 5869, 1, 0, 0, 0, 5923, 5871, 1, 0, 0, 0, 5923, 5872, 1, 0, 0, 0, 5923, 5873, 1, 0, 0, 0, 5923, 5874, 1, 0, 0, 0, 5923, 5875, 1, 0, 0, 0, 5923, 5876, 1, 0, 0, 0, 5923, 5877, 1, 0, 0, 0, 5923, 5878, 1, 0, 0, 0, 5923, 5879, 1, 0, 0, 0, 5923, 5880, 1, 0, 0, 0, 5923, 5881, 1, 0, 0, 0, 5923, 5882, 1, 0, 0, 0, 5923, 5883, 1, 0, 0, 0, 5923, 5884, 1, 0, 0, 0, 5923, 5885, 1, 0, 0, 0, 5923, 5886, 1, 0, 0, 0, 5923, 5887, 1, 0, 0, 0, 5923, 5888, 1, 0, 0, 0, 5923, 5889, 1, 0, 0, 0, 5923, 5890, 1, 0, 0, 0, 5923, 5891, 1, 0, 0, 0, 5923, 5892, 1, 0, 0, 0, 5923, 5893, 1, 0, 0, 0, 5923, 5894, 1, 0, 0, 0, 5923, 5895, 1, 0, 0, 0, 5923, 5896, 1, 0, 0, 0, 5923, 5897, 1, 0, 0, 0, 5923, 5898, 1, 0, 0, 0, 5923, 5899, 1, 0, 0, 0, 5923, 5900, 1, 0, 0, 0, 5923, 5901, 1, 0, 0, 0, 5923, 5902, 1, 0, 0, 0, 5923, 5903, 1, 0, 0, 0, 5923, 5904, 1, 0, 0, 0, 5923, 5905, 1, 0, 0, 0, 5923, 5906, 1, 0, 0, 0, 5923, 5907, 1, 0, 0, 0, 5923, 5908, 1, 0, 0, 0, 5923, 5909, 1, 0, 0, 0, 5923, 5910, 1, 0, 0, 0, 5923, 5911, 1, 0, 0, 0, 5923, 5912, 1, 0, 0, 0, 5923, 5913, 1, 0, 0, 0, 5923, 5914, 1, 0, 0, 0, 5923, 5915, 1, 0, 0, 0, 5923, 5918, 1, 0, 0, 0, 5923, 5921, 1, 0, 0, 0, 5924, 517, 1, 0, 0, 0, 5925, 5942, 5, 850, 0, 0, 5926, 5927, 5, 850, 0, 0, 5927, 5928, 5, 865, 0, 0, 5928, 5942, 5, 850, 0, 0, 5929, 5930, 3, 702, 351, 0, 5930, 5931, 5, 865, 0, 0, 5931, 5932, 5, 850, 0, 0, 5932, 5942, 1, 0, 0, 0, 5933, 5934, 3, 702, 351, 0, 5934, 5935, 5, 865, 0, 0, 5935, 5936, 3, 702, 351, 0, 5936, 5942, 1, 0, 0, 0, 5937, 5938, 3, 702, 351, 0, 5938, 5939, 3, 706, 353, 0, 5939, 5942, 1, 0, 0, 0, 5940, 5942, 3, 702, 351, 0, 5941, 5925, 1, 0, 0, 0, 5941, 5926, 1, 0, 0, 0, 5941, 5929, 1, 0, 0, 0, 5941, 5933, 1, 0, 0, 0, 5941, 5937, 1, 0, 0, 0, 5941, 5940, 1, 0, 0, 0, 5942, 519, 1, 0, 0, 0, 5943, 5944, 3, 680, 340, 0, 5944, 5945, 5, 176, 0, 0, 5945, 5946, 3, 680, 340, 0, 5946, 521, 1, 0, 0, 0, 5947, 5949, 5, 10, 0, 0, 5948, 5950, 3, 532, 266, 0, 5949, 5948, 1, 0, 0, 0, 5949, 5950, 1, 0, 0, 0, 5950, 5951, 1, 0, 0, 0, 5951, 5952, 5, 173, 0, 0, 5952, 5996, 3, 646, 323, 0, 5953, 5955, 5, 10, 0, 0, 5954, 5956, 3, 532, 266, 0, 5955, 5954, 1, 0, 0, 0, 5955, 5956, 1, 0, 0, 0, 5956, 5957, 1, 0, 0, 0, 5957, 5958, 5, 173, 0, 0, 5958, 5959, 3, 648, 324, 0, 5959, 5960, 5, 185, 0, 0, 5960, 5961, 5, 77, 0, 0, 5961, 5962, 5, 119, 0, 0, 5962, 5967, 3, 656, 328, 0, 5963, 5964, 5, 194, 0, 0, 5964, 5965, 3, 708, 354, 0, 5965, 5966, 5, 19, 0, 0, 5966, 5968, 1, 0, 0, 0, 5967, 5963, 1, 0, 0, 0, 5967, 5968, 1, 0, 0, 0, 5968, 5996, 1, 0, 0, 0, 5969, 5971, 5, 10, 0, 0, 5970, 5972, 3, 532, 266, 0, 5971, 5970, 1, 0, 0, 0, 5971, 5972, 1, 0, 0, 0, 5972, 5973, 1, 0, 0, 0, 5973, 5974, 5, 173, 0, 0, 5974, 5975, 3, 648, 324, 0, 5975, 5976, 5, 185, 0, 0, 5976, 5977, 5, 77, 0, 0, 5977, 5978, 5, 119, 0, 0, 5978, 5982, 3, 658, 329, 0, 5979, 5980, 5, 188, 0, 0, 5980, 5981, 5, 360, 0, 0, 5981, 5983, 5, 882, 0, 0, 5982, 5979, 1, 0, 0, 0, 5982, 5983, 1, 0, 0, 0, 5983, 5996, 1, 0, 0, 0, 5984, 5986, 5, 10, 0, 0, 5985, 5987, 3, 532, 266, 0, 5986, 5985, 1, 0, 0, 0, 5986, 5987, 1, 0, 0, 0, 5987, 5988, 1, 0, 0, 0, 5988, 5989, 5, 173, 0, 0, 5989, 5990, 3, 648, 324, 0, 5990, 5991, 5, 51, 0, 0, 5991, 5992, 5, 77, 0, 0, 5992, 5993, 5, 119, 0, 0, 5993, 5994, 3, 656, 328, 0, 5994, 5996, 1, 0, 0, 0, 5995, 5947, 1, 0, 0, 0, 5995, 5953, 1, 0, 0, 0, 5995, 5969, 1, 0, 0, 0, 5995, 5984, 1, 0, 0, 0, 5996, 523, 1, 0, 0, 0, 5997, 5998, 5, 27, 0, 0, 5998, 5999, 5, 173, 0, 0, 5999, 6003, 3, 646, 323, 0, 6000, 6002, 3, 534, 267, 0, 6001, 6000, 1, 0, 0, 0, 6002, 6005, 1, 0, 0, 0, 6003, 6001, 1, 0, 0, 0, 6003, 6004, 1, 0, 0, 0, 6004, 525, 1, 0, 0, 0, 6005, 6003, 1, 0, 0, 0, 6006, 6007, 5, 329, 0, 0, 6007, 6008, 5, 173, 0, 0, 6008, 6010, 3, 646, 323, 0, 6009, 6011, 7, 89, 0, 0, 6010, 6009, 1, 0, 0, 0, 6010, 6011, 1, 0, 0, 0, 6011, 527, 1, 0, 0, 0, 6012, 6014, 5, 120, 0, 0, 6013, 6015, 3, 532, 266, 0, 6014, 6013, 1, 0, 0, 0, 6014, 6015, 1, 0, 0, 0, 6015, 6016, 1, 0, 0, 0, 6016, 6017, 7, 60, 0, 0, 6017, 6018, 3, 646, 323, 0, 6018, 529, 1, 0, 0, 0, 6019, 6021, 5, 562, 0, 0, 6020, 6022, 3, 532, 266, 0, 6021, 6020, 1, 0, 0, 0, 6021, 6022, 1, 0, 0, 0, 6022, 6023, 1, 0, 0, 0, 6023, 6024, 5, 173, 0, 0, 6024, 6026, 3, 646, 323, 0, 6025, 6027, 5, 549, 0, 0, 6026, 6025, 1, 0, 0, 0, 6026, 6027, 1, 0, 0, 0, 6027, 6029, 1, 0, 0, 0, 6028, 6030, 5, 392, 0, 0, 6029, 6028, 1, 0, 0, 0, 6029, 6030, 1, 0, 0, 0, 6030, 6032, 1, 0, 0, 0, 6031, 6033, 5, 679, 0, 0, 6032, 6031, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 531, 1, 0, 0, 0, 6034, 6035, 7, 90, 0, 0, 6035, 533, 1, 0, 0, 0, 6036, 6037, 5, 65, 0, 0, 6037, 6044, 5, 677, 0, 0, 6038, 6044, 5, 549, 0, 0, 6039, 6044, 5, 396, 0, 0, 6040, 6044, 5, 484, 0, 0, 6041, 6044, 5, 392, 0, 0, 6042, 6044, 5, 327, 0, 0, 6043, 6036, 1, 0, 0, 0, 6043, 6038, 1, 0, 0, 0, 6043, 6039, 1, 0, 0, 0, 6043, 6040, 1, 0, 0, 0, 6043, 6041, 1, 0, 0, 0, 6043, 6042, 1, 0, 0, 0, 6044, 535, 1, 0, 0, 0, 6045, 6047, 5, 34, 0, 0, 6046, 6048, 5, 307, 0, 0, 6047, 6046, 1, 0, 0, 0, 6047, 6048, 1, 0, 0, 0, 6048, 6049, 1, 0, 0, 0, 6049, 6051, 5, 409, 0, 0, 6050, 6052, 3, 756, 378, 0, 6051, 6050, 1, 0, 0, 0, 6051, 6052, 1, 0, 0, 0, 6052, 6053, 1, 0, 0, 0, 6053, 6054, 3, 626, 313, 0, 6054, 6055, 5, 580, 0, 0, 6055, 6056, 7, 91, 0, 0, 6056, 6057, 5, 603, 0, 0, 6057, 6058, 5, 882, 0, 0, 6058, 537, 1, 0, 0, 0, 6059, 6060, 5, 432, 0, 0, 6060, 6061, 5, 344, 0, 0, 6061, 6066, 3, 702, 351, 0, 6062, 6063, 5, 868, 0, 0, 6063, 6065, 3, 702, 351, 0, 6064, 6062, 1, 0, 0, 0, 6065, 6068, 1, 0, 0, 0, 6066, 6064, 1, 0, 0, 0, 6066, 6067, 1, 0, 0, 0, 6067, 6078, 1, 0, 0, 0, 6068, 6066, 1, 0, 0, 0, 6069, 6070, 5, 155, 0, 0, 6070, 6075, 3, 540, 270, 0, 6071, 6072, 5, 868, 0, 0, 6072, 6074, 3, 540, 270, 0, 6073, 6071, 1, 0, 0, 0, 6074, 6077, 1, 0, 0, 0, 6075, 6073, 1, 0, 0, 0, 6075, 6076, 1, 0, 0, 0, 6076, 6079, 1, 0, 0, 0, 6077, 6075, 1, 0, 0, 0, 6078, 6069, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 539, 1, 0, 0, 0, 6080, 6081, 7, 92, 0, 0, 6081, 6082, 3, 698, 349, 0, 6082, 6083, 5, 857, 0, 0, 6083, 6084, 3, 800, 400, 0, 6084, 541, 1, 0, 0, 0, 6085, 6086, 5, 673, 0, 0, 6086, 6087, 5, 344, 0, 0, 6087, 6092, 3, 702, 351, 0, 6088, 6089, 5, 868, 0, 0, 6089, 6091, 3, 702, 351, 0, 6090, 6088, 1, 0, 0, 0, 6091, 6094, 1, 0, 0, 0, 6092, 6090, 1, 0, 0, 0, 6092, 6093, 1, 0, 0, 0, 6093, 543, 1, 0, 0, 0, 6094, 6092, 1, 0, 0, 0, 6095, 6096, 5, 432, 0, 0, 6096, 6097, 5, 534, 0, 0, 6097, 6098, 3, 702, 351, 0, 6098, 6099, 5, 603, 0, 0, 6099, 6100, 5, 882, 0, 0, 6100, 545, 1, 0, 0, 0, 6101, 6102, 5, 673, 0, 0, 6102, 6103, 5, 534, 0, 0, 6103, 6104, 3, 702, 351, 0, 6104, 547, 1, 0, 0, 0, 6105, 6106, 5, 713, 0, 0, 6106, 6107, 5, 450, 0, 0, 6107, 6108, 5, 360, 0, 0, 6108, 6110, 5, 367, 0, 0, 6109, 6111, 5, 857, 0, 0, 6110, 6109, 1, 0, 0, 0, 6110, 6111, 1, 0, 0, 0, 6111, 6112, 1, 0, 0, 0, 6112, 6136, 5, 882, 0, 0, 6113, 6114, 5, 713, 0, 0, 6114, 6115, 5, 433, 0, 0, 6115, 6116, 5, 68, 0, 0, 6116, 6117, 3, 672, 336, 0, 6117, 6118, 5, 423, 0, 0, 6118, 6119, 5, 20, 0, 0, 6119, 6126, 5, 882, 0, 0, 6120, 6121, 5, 360, 0, 0, 6121, 6123, 5, 367, 0, 0, 6122, 6124, 5, 857, 0, 0, 6123, 6122, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 6125, 1, 0, 0, 0, 6125, 6127, 5, 882, 0, 0, 6126, 6120, 1, 0, 0, 0, 6126, 6127, 1, 0, 0, 0, 6127, 6133, 1, 0, 0, 0, 6128, 6130, 5, 144, 0, 0, 6129, 6131, 5, 502, 0, 0, 6130, 6129, 1, 0, 0, 0, 6130, 6131, 1, 0, 0, 0, 6131, 6132, 1, 0, 0, 0, 6132, 6134, 5, 169, 0, 0, 6133, 6128, 1, 0, 0, 0, 6133, 6134, 1, 0, 0, 0, 6134, 6136, 1, 0, 0, 0, 6135, 6105, 1, 0, 0, 0, 6135, 6113, 1, 0, 0, 0, 6136, 549, 1, 0, 0, 0, 6137, 6138, 5, 155, 0, 0, 6138, 6139, 3, 554, 277, 0, 6139, 6142, 7, 93, 0, 0, 6140, 6143, 3, 800, 400, 0, 6141, 6143, 5, 119, 0, 0, 6142, 6140, 1, 0, 0, 0, 6142, 6141, 1, 0, 0, 0, 6143, 6153, 1, 0, 0, 0, 6144, 6145, 5, 868, 0, 0, 6145, 6146, 3, 554, 277, 0, 6146, 6149, 7, 93, 0, 0, 6147, 6150, 3, 800, 400, 0, 6148, 6150, 5, 119, 0, 0, 6149, 6147, 1, 0, 0, 0, 6149, 6148, 1, 0, 0, 0, 6150, 6152, 1, 0, 0, 0, 6151, 6144, 1, 0, 0, 0, 6152, 6155, 1, 0, 0, 0, 6153, 6151, 1, 0, 0, 0, 6153, 6154, 1, 0, 0, 0, 6154, 6190, 1, 0, 0, 0, 6155, 6153, 1, 0, 0, 0, 6156, 6157, 5, 155, 0, 0, 6157, 6160, 3, 54, 27, 0, 6158, 6161, 3, 684, 342, 0, 6159, 6161, 5, 42, 0, 0, 6160, 6158, 1, 0, 0, 0, 6160, 6159, 1, 0, 0, 0, 6161, 6190, 1, 0, 0, 0, 6162, 6163, 5, 155, 0, 0, 6163, 6170, 5, 497, 0, 0, 6164, 6167, 3, 684, 342, 0, 6165, 6166, 5, 28, 0, 0, 6166, 6168, 3, 686, 343, 0, 6167, 6165, 1, 0, 0, 0, 6167, 6168, 1, 0, 0, 0, 6168, 6171, 1, 0, 0, 0, 6169, 6171, 5, 42, 0, 0, 6170, 6164, 1, 0, 0, 0, 6170, 6169, 1, 0, 0, 0, 6171, 6190, 1, 0, 0, 0, 6172, 6190, 3, 484, 242, 0, 6173, 6190, 3, 336, 168, 0, 6174, 6190, 3, 334, 167, 0, 6175, 6176, 5, 155, 0, 0, 6176, 6177, 3, 698, 349, 0, 6177, 6178, 7, 93, 0, 0, 6178, 6186, 3, 800, 400, 0, 6179, 6180, 5, 868, 0, 0, 6180, 6181, 3, 698, 349, 0, 6181, 6182, 7, 93, 0, 0, 6182, 6183, 3, 800, 400, 0, 6183, 6185, 1, 0, 0, 0, 6184, 6179, 1, 0, 0, 0, 6185, 6188, 1, 0, 0, 0, 6186, 6184, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6190, 1, 0, 0, 0, 6188, 6186, 1, 0, 0, 0, 6189, 6137, 1, 0, 0, 0, 6189, 6156, 1, 0, 0, 0, 6189, 6162, 1, 0, 0, 0, 6189, 6172, 1, 0, 0, 0, 6189, 6173, 1, 0, 0, 0, 6189, 6174, 1, 0, 0, 0, 6189, 6175, 1, 0, 0, 0, 6190, 551, 1, 0, 0, 0, 6191, 6192, 5, 157, 0, 0, 6192, 6193, 7, 62, 0, 0, 6193, 6376, 5, 452, 0, 0, 6194, 6195, 5, 157, 0, 0, 6195, 6196, 7, 94, 0, 0, 6196, 6199, 5, 386, 0, 0, 6197, 6198, 5, 80, 0, 0, 6198, 6200, 5, 882, 0, 0, 6199, 6197, 1, 0, 0, 0, 6199, 6200, 1, 0, 0, 0, 6200, 6203, 1, 0, 0, 0, 6201, 6202, 5, 68, 0, 0, 6202, 6204, 3, 708, 354, 0, 6203, 6201, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6212, 1, 0, 0, 0, 6205, 6209, 5, 100, 0, 0, 6206, 6207, 3, 708, 354, 0, 6207, 6208, 5, 868, 0, 0, 6208, 6210, 1, 0, 0, 0, 6209, 6206, 1, 0, 0, 0, 6209, 6210, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 6213, 3, 708, 354, 0, 6212, 6205, 1, 0, 0, 0, 6212, 6213, 1, 0, 0, 0, 6213, 6215, 1, 0, 0, 0, 6214, 6216, 3, 384, 192, 0, 6215, 6214, 1, 0, 0, 0, 6215, 6216, 1, 0, 0, 0, 6216, 6376, 1, 0, 0, 0, 6217, 6218, 5, 157, 0, 0, 6218, 6220, 3, 556, 278, 0, 6219, 6221, 3, 558, 279, 0, 6220, 6219, 1, 0, 0, 0, 6220, 6221, 1, 0, 0, 0, 6221, 6376, 1, 0, 0, 0, 6222, 6224, 5, 157, 0, 0, 6223, 6225, 5, 392, 0, 0, 6224, 6223, 1, 0, 0, 0, 6224, 6225, 1, 0, 0, 0, 6225, 6227, 1, 0, 0, 0, 6226, 6228, 5, 408, 0, 0, 6227, 6226, 1, 0, 0, 0, 6227, 6228, 1, 0, 0, 0, 6228, 6229, 1, 0, 0, 0, 6229, 6230, 7, 46, 0, 0, 6230, 6231, 7, 95, 0, 0, 6231, 6234, 3, 648, 324, 0, 6232, 6233, 7, 95, 0, 0, 6233, 6235, 3, 624, 312, 0, 6234, 6232, 1, 0, 0, 0, 6234, 6235, 1, 0, 0, 0, 6235, 6237, 1, 0, 0, 0, 6236, 6238, 3, 558, 279, 0, 6237, 6236, 1, 0, 0, 0, 6237, 6238, 1, 0, 0, 0, 6238, 6376, 1, 0, 0, 0, 6239, 6240, 5, 157, 0, 0, 6240, 6241, 5, 34, 0, 0, 6241, 6243, 7, 0, 0, 0, 6242, 6244, 3, 756, 378, 0, 6243, 6242, 1, 0, 0, 0, 6243, 6244, 1, 0, 0, 0, 6244, 6245, 1, 0, 0, 0, 6245, 6376, 3, 624, 312, 0, 6246, 6247, 5, 157, 0, 0, 6247, 6248, 5, 34, 0, 0, 6248, 6249, 7, 96, 0, 0, 6249, 6376, 3, 698, 349, 0, 6250, 6251, 5, 157, 0, 0, 6251, 6252, 5, 34, 0, 0, 6252, 6253, 5, 409, 0, 0, 6253, 6376, 3, 628, 314, 0, 6254, 6255, 5, 157, 0, 0, 6255, 6256, 5, 34, 0, 0, 6256, 6257, 5, 684, 0, 0, 6257, 6376, 3, 632, 316, 0, 6258, 6259, 5, 157, 0, 0, 6259, 6260, 5, 34, 0, 0, 6260, 6261, 5, 173, 0, 0, 6261, 6376, 3, 648, 324, 0, 6262, 6263, 5, 157, 0, 0, 6263, 6264, 5, 34, 0, 0, 6264, 6265, 5, 678, 0, 0, 6265, 6376, 3, 680, 340, 0, 6266, 6267, 5, 157, 0, 0, 6267, 6268, 5, 380, 0, 0, 6268, 6269, 3, 688, 344, 0, 6269, 6270, 7, 97, 0, 0, 6270, 6376, 1, 0, 0, 0, 6271, 6272, 5, 157, 0, 0, 6272, 6376, 3, 560, 280, 0, 6273, 6274, 5, 157, 0, 0, 6274, 6282, 7, 98, 0, 0, 6275, 6279, 5, 100, 0, 0, 6276, 6277, 3, 708, 354, 0, 6277, 6278, 5, 868, 0, 0, 6278, 6280, 1, 0, 0, 0, 6279, 6276, 1, 0, 0, 0, 6279, 6280, 1, 0, 0, 0, 6280, 6281, 1, 0, 0, 0, 6281, 6283, 3, 708, 354, 0, 6282, 6275, 1, 0, 0, 0, 6282, 6283, 1, 0, 0, 0, 6283, 6376, 1, 0, 0, 0, 6284, 6285, 5, 157, 0, 0, 6285, 6286, 5, 262, 0, 0, 6286, 6287, 5, 866, 0, 0, 6287, 6288, 5, 850, 0, 0, 6288, 6289, 5, 867, 0, 0, 6289, 6376, 7, 98, 0, 0, 6290, 6291, 5, 157, 0, 0, 6291, 6294, 3, 562, 281, 0, 6292, 6293, 7, 95, 0, 0, 6293, 6295, 3, 624, 312, 0, 6294, 6292, 1, 0, 0, 0, 6294, 6295, 1, 0, 0, 0, 6295, 6297, 1, 0, 0, 0, 6296, 6298, 3, 558, 279, 0, 6297, 6296, 1, 0, 0, 0, 6297, 6298, 1, 0, 0, 0, 6298, 6376, 1, 0, 0, 0, 6299, 6300, 5, 157, 0, 0, 6300, 6301, 5, 132, 0, 0, 6301, 6302, 5, 336, 0, 0, 6302, 6376, 3, 698, 349, 0, 6303, 6304, 5, 157, 0, 0, 6304, 6305, 5, 409, 0, 0, 6305, 6306, 5, 336, 0, 0, 6306, 6376, 3, 628, 314, 0, 6307, 6308, 5, 157, 0, 0, 6308, 6315, 5, 414, 0, 0, 6309, 6310, 5, 65, 0, 0, 6310, 6313, 3, 652, 326, 0, 6311, 6312, 5, 188, 0, 0, 6312, 6314, 3, 650, 325, 0, 6313, 6311, 1, 0, 0, 0, 6313, 6314, 1, 0, 0, 0, 6314, 6316, 1, 0, 0, 0, 6315, 6309, 1, 0, 0, 0, 6315, 6316, 1, 0, 0, 0, 6316, 6376, 1, 0, 0, 0, 6317, 6319, 5, 157, 0, 0, 6318, 6320, 5, 392, 0, 0, 6319, 6318, 1, 0, 0, 0, 6319, 6320, 1, 0, 0, 0, 6320, 6321, 1, 0, 0, 0, 6321, 6322, 7, 99, 0, 0, 6322, 6323, 7, 95, 0, 0, 6323, 6326, 3, 648, 324, 0, 6324, 6325, 7, 95, 0, 0, 6325, 6327, 3, 624, 312, 0, 6326, 6324, 1, 0, 0, 0, 6326, 6327, 1, 0, 0, 0, 6327, 6330, 1, 0, 0, 0, 6328, 6329, 5, 192, 0, 0, 6329, 6331, 3, 800, 400, 0, 6330, 6328, 1, 0, 0, 0, 6330, 6331, 1, 0, 0, 0, 6331, 6376, 1, 0, 0, 0, 6332, 6333, 5, 157, 0, 0, 6333, 6334, 5, 516, 0, 0, 6334, 6337, 5, 752, 0, 0, 6335, 6336, 7, 95, 0, 0, 6336, 6338, 3, 624, 312, 0, 6337, 6335, 1, 0, 0, 0, 6337, 6338, 1, 0, 0, 0, 6338, 6340, 1, 0, 0, 0, 6339, 6341, 3, 558, 279, 0, 6340, 6339, 1, 0, 0, 0, 6340, 6341, 1, 0, 0, 0, 6341, 6376, 1, 0, 0, 0, 6342, 6343, 5, 157, 0, 0, 6343, 6352, 5, 545, 0, 0, 6344, 6349, 3, 564, 282, 0, 6345, 6346, 5, 868, 0, 0, 6346, 6348, 3, 564, 282, 0, 6347, 6345, 1, 0, 0, 0, 6348, 6351, 1, 0, 0, 0, 6349, 6347, 1, 0, 0, 0, 6349, 6350, 1, 0, 0, 0, 6350, 6353, 1, 0, 0, 0, 6351, 6349, 1, 0, 0, 0, 6352, 6344, 1, 0, 0, 0, 6352, 6353, 1, 0, 0, 0, 6353, 6357, 1, 0, 0, 0, 6354, 6355, 5, 65, 0, 0, 6355, 6356, 5, 548, 0, 0, 6356, 6358, 3, 708, 354, 0, 6357, 6354, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6365, 1, 0, 0, 0, 6359, 6360, 5, 100, 0, 0, 6360, 6363, 3, 708, 354, 0, 6361, 6362, 5, 509, 0, 0, 6362, 6364, 3, 708, 354, 0, 6363, 6361, 1, 0, 0, 0, 6363, 6364, 1, 0, 0, 0, 6364, 6366, 1, 0, 0, 0, 6365, 6359, 1, 0, 0, 0, 6365, 6366, 1, 0, 0, 0, 6366, 6376, 1, 0, 0, 0, 6367, 6368, 5, 157, 0, 0, 6368, 6369, 7, 63, 0, 0, 6369, 6371, 5, 645, 0, 0, 6370, 6372, 3, 384, 192, 0, 6371, 6370, 1, 0, 0, 0, 6371, 6372, 1, 0, 0, 0, 6372, 6376, 1, 0, 0, 0, 6373, 6374, 5, 157, 0, 0, 6374, 6376, 5, 564, 0, 0, 6375, 6191, 1, 0, 0, 0, 6375, 6194, 1, 0, 0, 0, 6375, 6217, 1, 0, 0, 0, 6375, 6222, 1, 0, 0, 0, 6375, 6239, 1, 0, 0, 0, 6375, 6246, 1, 0, 0, 0, 6375, 6250, 1, 0, 0, 0, 6375, 6254, 1, 0, 0, 0, 6375, 6258, 1, 0, 0, 0, 6375, 6262, 1, 0, 0, 0, 6375, 6266, 1, 0, 0, 0, 6375, 6271, 1, 0, 0, 0, 6375, 6273, 1, 0, 0, 0, 6375, 6284, 1, 0, 0, 0, 6375, 6290, 1, 0, 0, 0, 6375, 6299, 1, 0, 0, 0, 6375, 6303, 1, 0, 0, 0, 6375, 6307, 1, 0, 0, 0, 6375, 6317, 1, 0, 0, 0, 6375, 6332, 1, 0, 0, 0, 6375, 6342, 1, 0, 0, 0, 6375, 6367, 1, 0, 0, 0, 6375, 6373, 1, 0, 0, 0, 6376, 553, 1, 0, 0, 0, 6377, 6388, 5, 892, 0, 0, 6378, 6388, 5, 893, 0, 0, 6379, 6380, 5, 870, 0, 0, 6380, 6382, 5, 870, 0, 0, 6381, 6379, 1, 0, 0, 0, 6381, 6382, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6385, 7, 100, 0, 0, 6384, 6381, 1, 0, 0, 0, 6384, 6385, 1, 0, 0, 0, 6385, 6386, 1, 0, 0, 0, 6386, 6388, 3, 702, 351, 0, 6387, 6377, 1, 0, 0, 0, 6387, 6378, 1, 0, 0, 0, 6387, 6384, 1, 0, 0, 0, 6388, 555, 1, 0, 0, 0, 6389, 6390, 5, 26, 0, 0, 6390, 6404, 5, 155, 0, 0, 6391, 6404, 5, 823, 0, 0, 6392, 6404, 5, 824, 0, 0, 6393, 6404, 5, 40, 0, 0, 6394, 6404, 5, 153, 0, 0, 6395, 6396, 5, 409, 0, 0, 6396, 6404, 5, 645, 0, 0, 6397, 6398, 5, 132, 0, 0, 6398, 6404, 5, 645, 0, 0, 6399, 6401, 7, 61, 0, 0, 6400, 6399, 1, 0, 0, 0, 6400, 6401, 1, 0, 0, 0, 6401, 6402, 1, 0, 0, 0, 6402, 6404, 7, 101, 0, 0, 6403, 6389, 1, 0, 0, 0, 6403, 6391, 1, 0, 0, 0, 6403, 6392, 1, 0, 0, 0, 6403, 6393, 1, 0, 0, 0, 6403, 6394, 1, 0, 0, 0, 6403, 6395, 1, 0, 0, 0, 6403, 6397, 1, 0, 0, 0, 6403, 6400, 1, 0, 0, 0, 6404, 557, 1, 0, 0, 0, 6405, 6406, 5, 99, 0, 0, 6406, 6410, 5, 882, 0, 0, 6407, 6408, 5, 192, 0, 0, 6408, 6410, 3, 800, 400, 0, 6409, 6405, 1, 0, 0, 0, 6409, 6407, 1, 0, 0, 0, 6410, 559, 1, 0, 0, 0, 6411, 6413, 5, 647, 0, 0, 6412, 6411, 1, 0, 0, 0, 6412, 6413, 1, 0, 0, 0, 6413, 6414, 1, 0, 0, 0, 6414, 6429, 5, 381, 0, 0, 6415, 6416, 5, 453, 0, 0, 6416, 6429, 5, 645, 0, 0, 6417, 6429, 5, 536, 0, 0, 6418, 6429, 5, 734, 0, 0, 6419, 6421, 5, 408, 0, 0, 6420, 6419, 1, 0, 0, 0, 6420, 6421, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6429, 5, 544, 0, 0, 6423, 6429, 5, 546, 0, 0, 6424, 6425, 5, 598, 0, 0, 6425, 6429, 5, 422, 0, 0, 6426, 6429, 5, 312, 0, 0, 6427, 6429, 5, 356, 0, 0, 6428, 6412, 1, 0, 0, 0, 6428, 6415, 1, 0, 0, 0, 6428, 6417, 1, 0, 0, 0, 6428, 6418, 1, 0, 0, 0, 6428, 6420, 1, 0, 0, 0, 6428, 6423, 1, 0, 0, 0, 6428, 6424, 1, 0, 0, 0, 6428, 6426, 1, 0, 0, 0, 6428, 6427, 1, 0, 0, 0, 6429, 561, 1, 0, 0, 0, 6430, 6442, 5, 386, 0, 0, 6431, 6432, 5, 173, 0, 0, 6432, 6442, 5, 645, 0, 0, 6433, 6435, 5, 392, 0, 0, 6434, 6433, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6437, 1, 0, 0, 0, 6436, 6438, 5, 408, 0, 0, 6437, 6436, 1, 0, 0, 0, 6437, 6438, 1, 0, 0, 0, 6438, 6439, 1, 0, 0, 0, 6439, 6442, 5, 752, 0, 0, 6440, 6442, 5, 667, 0, 0, 6441, 6430, 1, 0, 0, 0, 6441, 6431, 1, 0, 0, 0, 6441, 6434, 1, 0, 0, 0, 6441, 6440, 1, 0, 0, 0, 6442, 563, 1, 0, 0, 0, 6443, 6456, 5, 7, 0, 0, 6444, 6445, 5, 320, 0, 0, 6445, 6456, 5, 437, 0, 0, 6446, 6447, 5, 355, 0, 0, 6447, 6456, 5, 656, 0, 0, 6448, 6456, 5, 358, 0, 0, 6449, 6456, 5, 439, 0, 0, 6450, 6456, 5, 802, 0, 0, 6451, 6452, 5, 521, 0, 0, 6452, 6456, 5, 397, 0, 0, 6453, 6456, 5, 605, 0, 0, 6454, 6456, 5, 655, 0, 0, 6455, 6443, 1, 0, 0, 0, 6455, 6444, 1, 0, 0, 0, 6455, 6446, 1, 0, 0, 0, 6455, 6448, 1, 0, 0, 0, 6455, 6449, 1, 0, 0, 0, 6455, 6450, 1, 0, 0, 0, 6455, 6451, 1, 0, 0, 0, 6455, 6453, 1, 0, 0, 0, 6455, 6454, 1, 0, 0, 0, 6456, 565, 1, 0, 0, 0, 6457, 6458, 5, 318, 0, 0, 6458, 6459, 5, 882, 0, 0, 6459, 567, 1, 0, 0, 0, 6460, 6461, 5, 324, 0, 0, 6461, 6479, 5, 82, 0, 0, 6462, 6467, 3, 588, 294, 0, 6463, 6464, 5, 868, 0, 0, 6464, 6466, 3, 588, 294, 0, 6465, 6463, 1, 0, 0, 0, 6466, 6469, 1, 0, 0, 0, 6467, 6465, 1, 0, 0, 0, 6467, 6468, 1, 0, 0, 0, 6468, 6480, 1, 0, 0, 0, 6469, 6467, 1, 0, 0, 0, 6470, 6471, 3, 648, 324, 0, 6471, 6472, 5, 130, 0, 0, 6472, 6475, 5, 866, 0, 0, 6473, 6476, 3, 666, 333, 0, 6474, 6476, 5, 7, 0, 0, 6475, 6473, 1, 0, 0, 0, 6475, 6474, 1, 0, 0, 0, 6476, 6477, 1, 0, 0, 0, 6477, 6478, 5, 867, 0, 0, 6478, 6480, 1, 0, 0, 0, 6479, 6462, 1, 0, 0, 0, 6479, 6470, 1, 0, 0, 0, 6480, 6481, 1, 0, 0, 0, 6481, 6482, 5, 80, 0, 0, 6482, 6483, 3, 624, 312, 0, 6483, 569, 1, 0, 0, 0, 6484, 6486, 5, 404, 0, 0, 6485, 6487, 3, 532, 266, 0, 6486, 6485, 1, 0, 0, 0, 6486, 6487, 1, 0, 0, 0, 6487, 6488, 1, 0, 0, 0, 6488, 6493, 3, 590, 295, 0, 6489, 6490, 5, 868, 0, 0, 6490, 6492, 3, 590, 295, 0, 6491, 6489, 1, 0, 0, 0, 6492, 6495, 1, 0, 0, 0, 6493, 6491, 1, 0, 0, 0, 6493, 6494, 1, 0, 0, 0, 6494, 571, 1, 0, 0, 0, 6495, 6493, 1, 0, 0, 0, 6496, 6498, 5, 94, 0, 0, 6497, 6499, 7, 102, 0, 0, 6498, 6497, 1, 0, 0, 0, 6498, 6499, 1, 0, 0, 0, 6499, 6500, 1, 0, 0, 0, 6500, 6501, 3, 800, 400, 0, 6501, 573, 1, 0, 0, 0, 6502, 6503, 5, 103, 0, 0, 6503, 6504, 5, 82, 0, 0, 6504, 6505, 5, 88, 0, 0, 6505, 6506, 5, 324, 0, 0, 6506, 6511, 3, 594, 297, 0, 6507, 6508, 5, 868, 0, 0, 6508, 6510, 3, 594, 297, 0, 6509, 6507, 1, 0, 0, 0, 6510, 6513, 1, 0, 0, 0, 6511, 6509, 1, 0, 0, 0, 6511, 6512, 1, 0, 0, 0, 6512, 575, 1, 0, 0, 0, 6513, 6511, 1, 0, 0, 0, 6514, 6515, 5, 575, 0, 0, 6515, 6520, 3, 578, 289, 0, 6516, 6517, 5, 868, 0, 0, 6517, 6519, 3, 578, 289, 0, 6518, 6516, 1, 0, 0, 0, 6519, 6522, 1, 0, 0, 0, 6520, 6518, 1, 0, 0, 0, 6520, 6521, 1, 0, 0, 0, 6521, 577, 1, 0, 0, 0, 6522, 6520, 1, 0, 0, 0, 6523, 6529, 5, 453, 0, 0, 6524, 6529, 5, 563, 0, 0, 6525, 6526, 5, 548, 0, 0, 6526, 6529, 5, 324, 0, 0, 6527, 6529, 5, 598, 0, 0, 6528, 6523, 1, 0, 0, 0, 6528, 6524, 1, 0, 0, 0, 6528, 6525, 1, 0, 0, 0, 6528, 6527, 1, 0, 0, 0, 6529, 579, 1, 0, 0, 0, 6530, 6531, 5, 575, 0, 0, 6531, 6536, 5, 531, 0, 0, 6532, 6534, 3, 754, 377, 0, 6533, 6532, 1, 0, 0, 0, 6533, 6534, 1, 0, 0, 0, 6534, 6535, 1, 0, 0, 0, 6535, 6537, 3, 702, 351, 0, 6536, 6533, 1, 0, 0, 0, 6536, 6537, 1, 0, 0, 0, 6537, 581, 1, 0, 0, 0, 6538, 6539, 5, 575, 0, 0, 6539, 6541, 7, 63, 0, 0, 6540, 6542, 5, 7, 0, 0, 6541, 6540, 1, 0, 0, 0, 6541, 6542, 1, 0, 0, 0, 6542, 6544, 1, 0, 0, 0, 6543, 6545, 3, 384, 192, 0, 6544, 6543, 1, 0, 0, 0, 6544, 6545, 1, 0, 0, 0, 6545, 583, 1, 0, 0, 0, 6546, 6547, 5, 576, 0, 0, 6547, 585, 1, 0, 0, 0, 6548, 6549, 5, 749, 0, 0, 6549, 587, 1, 0, 0, 0, 6550, 6556, 3, 648, 324, 0, 6551, 6552, 7, 18, 0, 0, 6552, 6553, 5, 866, 0, 0, 6553, 6554, 3, 636, 318, 0, 6554, 6555, 5, 867, 0, 0, 6555, 6557, 1, 0, 0, 0, 6556, 6551, 1, 0, 0, 0, 6556, 6557, 1, 0, 0, 0, 6557, 589, 1, 0, 0, 0, 6558, 6577, 5, 366, 0, 0, 6559, 6577, 5, 422, 0, 0, 6560, 6562, 7, 103, 0, 0, 6561, 6560, 1, 0, 0, 0, 6561, 6562, 1, 0, 0, 0, 6562, 6563, 1, 0, 0, 0, 6563, 6577, 5, 452, 0, 0, 6564, 6577, 5, 517, 0, 0, 6565, 6577, 5, 734, 0, 0, 6566, 6567, 5, 548, 0, 0, 6567, 6577, 5, 324, 0, 0, 6568, 6577, 5, 645, 0, 0, 6569, 6577, 5, 680, 0, 0, 6570, 6574, 5, 752, 0, 0, 6571, 6572, 5, 194, 0, 0, 6572, 6573, 5, 135, 0, 0, 6573, 6575, 5, 104, 0, 0, 6574, 6571, 1, 0, 0, 0, 6574, 6575, 1, 0, 0, 0, 6575, 6577, 1, 0, 0, 0, 6576, 6558, 1, 0, 0, 0, 6576, 6559, 1, 0, 0, 0, 6576, 6561, 1, 0, 0, 0, 6576, 6564, 1, 0, 0, 0, 6576, 6565, 1, 0, 0, 0, 6576, 6566, 1, 0, 0, 0, 6576, 6568, 1, 0, 0, 0, 6576, 6569, 1, 0, 0, 0, 6576, 6570, 1, 0, 0, 0, 6577, 6591, 1, 0, 0, 0, 6578, 6579, 5, 556, 0, 0, 6579, 6581, 5, 452, 0, 0, 6580, 6582, 3, 384, 192, 0, 6581, 6580, 1, 0, 0, 0, 6581, 6582, 1, 0, 0, 0, 6582, 6591, 1, 0, 0, 0, 6583, 6585, 7, 60, 0, 0, 6584, 6586, 3, 646, 323, 0, 6585, 6584, 1, 0, 0, 0, 6585, 6586, 1, 0, 0, 0, 6586, 6588, 1, 0, 0, 0, 6587, 6589, 3, 592, 296, 0, 6588, 6587, 1, 0, 0, 0, 6588, 6589, 1, 0, 0, 0, 6589, 6591, 1, 0, 0, 0, 6590, 6576, 1, 0, 0, 0, 6590, 6578, 1, 0, 0, 0, 6590, 6583, 1, 0, 0, 0, 6591, 591, 1, 0, 0, 0, 6592, 6593, 5, 194, 0, 0, 6593, 6594, 5, 135, 0, 0, 6594, 6598, 5, 104, 0, 0, 6595, 6596, 5, 65, 0, 0, 6596, 6598, 5, 391, 0, 0, 6597, 6592, 1, 0, 0, 0, 6597, 6595, 1, 0, 0, 0, 6598, 593, 1, 0, 0, 0, 6599, 6607, 3, 648, 324, 0, 6600, 6601, 5, 130, 0, 0, 6601, 6604, 5, 866, 0, 0, 6602, 6605, 3, 666, 333, 0, 6603, 6605, 5, 7, 0, 0, 6604, 6602, 1, 0, 0, 0, 6604, 6603, 1, 0, 0, 0, 6605, 6606, 1, 0, 0, 0, 6606, 6608, 5, 867, 0, 0, 6607, 6600, 1, 0, 0, 0, 6607, 6608, 1, 0, 0, 0, 6608, 6616, 1, 0, 0, 0, 6609, 6611, 7, 18, 0, 0, 6610, 6609, 1, 0, 0, 0, 6610, 6611, 1, 0, 0, 0, 6611, 6612, 1, 0, 0, 0, 6612, 6613, 5, 866, 0, 0, 6613, 6614, 3, 636, 318, 0, 6614, 6615, 5, 867, 0, 0, 6615, 6617, 1, 0, 0, 0, 6616, 6610, 1, 0, 0, 0, 6616, 6617, 1, 0, 0, 0, 6617, 6620, 1, 0, 0, 0, 6618, 6619, 5, 79, 0, 0, 6619, 6621, 5, 446, 0, 0, 6620, 6618, 1, 0, 0, 0, 6620, 6621, 1, 0, 0, 0, 6621, 595, 1, 0, 0, 0, 6622, 6623, 7, 104, 0, 0, 6623, 6626, 3, 648, 324, 0, 6624, 6627, 3, 658, 329, 0, 6625, 6627, 5, 882, 0, 0, 6626, 6624, 1, 0, 0, 0, 6626, 6625, 1, 0, 0, 0, 6626, 6627, 1, 0, 0, 0, 6627, 597, 1, 0, 0, 0, 6628, 6634, 7, 104, 0, 0, 6629, 6635, 5, 392, 0, 0, 6630, 6635, 5, 528, 0, 0, 6631, 6632, 5, 826, 0, 0, 6632, 6633, 5, 857, 0, 0, 6633, 6635, 7, 105, 0, 0, 6634, 6629, 1, 0, 0, 0, 6634, 6630, 1, 0, 0, 0, 6634, 6631, 1, 0, 0, 0, 6634, 6635, 1, 0, 0, 0, 6635, 6636, 1, 0, 0, 0, 6636, 6637, 3, 620, 310, 0, 6637, 599, 1, 0, 0, 0, 6638, 6639, 7, 104, 0, 0, 6639, 6643, 5, 10, 0, 0, 6640, 6641, 5, 826, 0, 0, 6641, 6642, 5, 857, 0, 0, 6642, 6644, 5, 666, 0, 0, 6643, 6640, 1, 0, 0, 0, 6643, 6644, 1, 0, 0, 0, 6644, 6645, 1, 0, 0, 0, 6645, 6646, 3, 204, 102, 0, 6646, 601, 1, 0, 0, 0, 6647, 6648, 5, 419, 0, 0, 6648, 6649, 5, 882, 0, 0, 6649, 603, 1, 0, 0, 0, 6650, 6651, 5, 187, 0, 0, 6651, 6652, 3, 624, 312, 0, 6652, 605, 1, 0, 0, 0, 6653, 6661, 5, 158, 0, 0, 6654, 6656, 5, 164, 0, 0, 6655, 6657, 5, 682, 0, 0, 6656, 6655, 1, 0, 0, 0, 6656, 6657, 1, 0, 0, 0, 6657, 6658, 1, 0, 0, 0, 6658, 6662, 3, 712, 356, 0, 6659, 6662, 5, 889, 0, 0, 6660, 6662, 5, 890, 0, 0, 6661, 6654, 1, 0, 0, 0, 6661, 6659, 1, 0, 0, 0, 6661, 6660, 1, 0, 0, 0, 6662, 6672, 1, 0, 0, 0, 6663, 6664, 5, 155, 0, 0, 6664, 6669, 3, 610, 305, 0, 6665, 6666, 5, 868, 0, 0, 6666, 6668, 3, 610, 305, 0, 6667, 6665, 1, 0, 0, 0, 6668, 6671, 1, 0, 0, 0, 6669, 6667, 1, 0, 0, 0, 6669, 6670, 1, 0, 0, 0, 6670, 6673, 1, 0, 0, 0, 6671, 6669, 1, 0, 0, 0, 6672, 6663, 1, 0, 0, 0, 6672, 6673, 1, 0, 0, 0, 6673, 607, 1, 0, 0, 0, 6674, 6682, 5, 145, 0, 0, 6675, 6677, 5, 164, 0, 0, 6676, 6678, 5, 682, 0, 0, 6677, 6676, 1, 0, 0, 0, 6677, 6678, 1, 0, 0, 0, 6678, 6679, 1, 0, 0, 0, 6679, 6683, 3, 712, 356, 0, 6680, 6683, 5, 889, 0, 0, 6681, 6683, 5, 890, 0, 0, 6682, 6675, 1, 0, 0, 0, 6682, 6680, 1, 0, 0, 0, 6682, 6681, 1, 0, 0, 0, 6682, 6683, 1, 0, 0, 0, 6683, 6693, 1, 0, 0, 0, 6684, 6685, 5, 155, 0, 0, 6685, 6690, 3, 610, 305, 0, 6686, 6687, 5, 868, 0, 0, 6687, 6689, 3, 610, 305, 0, 6688, 6686, 1, 0, 0, 0, 6689, 6692, 1, 0, 0, 0, 6690, 6688, 1, 0, 0, 0, 6690, 6691, 1, 0, 0, 0, 6691, 6694, 1, 0, 0, 0, 6692, 6690, 1, 0, 0, 0, 6693, 6684, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 609, 1, 0, 0, 0, 6695, 6696, 7, 106, 0, 0, 6696, 6701, 5, 857, 0, 0, 6697, 6702, 3, 712, 356, 0, 6698, 6702, 5, 883, 0, 0, 6699, 6702, 3, 682, 341, 0, 6700, 6702, 3, 704, 352, 0, 6701, 6697, 1, 0, 0, 0, 6701, 6698, 1, 0, 0, 0, 6701, 6699, 1, 0, 0, 0, 6701, 6700, 1, 0, 0, 0, 6702, 611, 1, 0, 0, 0, 6703, 6705, 5, 194, 0, 0, 6704, 6706, 5, 552, 0, 0, 6705, 6704, 1, 0, 0, 0, 6705, 6706, 1, 0, 0, 0, 6706, 6707, 1, 0, 0, 0, 6707, 6712, 3, 48, 24, 0, 6708, 6709, 5, 868, 0, 0, 6709, 6711, 3, 48, 24, 0, 6710, 6708, 1, 0, 0, 0, 6711, 6714, 1, 0, 0, 0, 6712, 6710, 1, 0, 0, 0, 6712, 6713, 1, 0, 0, 0, 6713, 613, 1, 0, 0, 0, 6714, 6712, 1, 0, 0, 0, 6715, 6716, 5, 173, 0, 0, 6716, 6718, 3, 648, 324, 0, 6717, 6719, 3, 252, 126, 0, 6718, 6717, 1, 0, 0, 0, 6718, 6719, 1, 0, 0, 0, 6719, 6721, 1, 0, 0, 0, 6720, 6722, 3, 312, 156, 0, 6721, 6720, 1, 0, 0, 0, 6721, 6722, 1, 0, 0, 0, 6722, 615, 1, 0, 0, 0, 6723, 6725, 5, 72, 0, 0, 6724, 6726, 7, 107, 0, 0, 6725, 6724, 1, 0, 0, 0, 6725, 6726, 1, 0, 0, 0, 6726, 6727, 1, 0, 0, 0, 6727, 6759, 5, 48, 0, 0, 6728, 6729, 3, 554, 277, 0, 6729, 6730, 5, 857, 0, 0, 6730, 6738, 7, 108, 0, 0, 6731, 6732, 5, 868, 0, 0, 6732, 6733, 3, 554, 277, 0, 6733, 6734, 5, 857, 0, 0, 6734, 6735, 7, 108, 0, 0, 6735, 6737, 1, 0, 0, 0, 6736, 6731, 1, 0, 0, 0, 6737, 6740, 1, 0, 0, 0, 6738, 6736, 1, 0, 0, 0, 6738, 6739, 1, 0, 0, 0, 6739, 6760, 1, 0, 0, 0, 6740, 6738, 1, 0, 0, 0, 6741, 6744, 5, 30, 0, 0, 6742, 6745, 3, 708, 354, 0, 6743, 6745, 3, 554, 277, 0, 6744, 6742, 1, 0, 0, 0, 6744, 6743, 1, 0, 0, 0, 6745, 6746, 1, 0, 0, 0, 6746, 6747, 3, 554, 277, 0, 6747, 6748, 5, 857, 0, 0, 6748, 6756, 3, 618, 309, 0, 6749, 6750, 5, 868, 0, 0, 6750, 6751, 3, 554, 277, 0, 6751, 6752, 5, 857, 0, 0, 6752, 6753, 3, 618, 309, 0, 6753, 6755, 1, 0, 0, 0, 6754, 6749, 1, 0, 0, 0, 6755, 6758, 1, 0, 0, 0, 6756, 6754, 1, 0, 0, 0, 6756, 6757, 1, 0, 0, 0, 6757, 6760, 1, 0, 0, 0, 6758, 6756, 1, 0, 0, 0, 6759, 6728, 1, 0, 0, 0, 6759, 6741, 1, 0, 0, 0, 6760, 617, 1, 0, 0, 0, 6761, 6762, 7, 109, 0, 0, 6762, 619, 1, 0, 0, 0, 6763, 6769, 3, 204, 102, 0, 6764, 6769, 3, 180, 90, 0, 6765, 6769, 3, 186, 93, 0, 6766, 6769, 3, 202, 101, 0, 6767, 6769, 3, 214, 107, 0, 6768, 6763, 1, 0, 0, 0, 6768, 6764, 1, 0, 0, 0, 6768, 6765, 1, 0, 0, 0, 6768, 6766, 1, 0, 0, 0, 6768, 6767, 1, 0, 0, 0, 6769, 6774, 1, 0, 0, 0, 6770, 6771, 5, 65, 0, 0, 6771, 6772, 5, 349, 0, 0, 6772, 6774, 3, 702, 351, 0, 6773, 6768, 1, 0, 0, 0, 6773, 6770, 1, 0, 0, 0, 6774, 621, 1, 0, 0, 0, 6775, 6776, 3, 698, 349, 0, 6776, 623, 1, 0, 0, 0, 6777, 6778, 3, 698, 349, 0, 6778, 625, 1, 0, 0, 0, 6779, 6780, 3, 698, 349, 0, 6780, 627, 1, 0, 0, 0, 6781, 6782, 3, 698, 349, 0, 6782, 629, 1, 0, 0, 0, 6783, 6784, 3, 698, 349, 0, 6784, 631, 1, 0, 0, 0, 6785, 6786, 3, 698, 349, 0, 6786, 633, 1, 0, 0, 0, 6787, 6788, 3, 702, 351, 0, 6788, 635, 1, 0, 0, 0, 6789, 6794, 3, 638, 319, 0, 6790, 6791, 5, 868, 0, 0, 6791, 6793, 3, 638, 319, 0, 6792, 6790, 1, 0, 0, 0, 6793, 6796, 1, 0, 0, 0, 6794, 6792, 1, 0, 0, 0, 6794, 6795, 1, 0, 0, 0, 6795, 637, 1, 0, 0, 0, 6796, 6794, 1, 0, 0, 0, 6797, 6798, 3, 702, 351, 0, 6798, 639, 1, 0, 0, 0, 6799, 6800, 3, 702, 351, 0, 6800, 641, 1, 0, 0, 0, 6801, 6802, 3, 702, 351, 0, 6802, 643, 1, 0, 0, 0, 6803, 6804, 3, 698, 349, 0, 6804, 645, 1, 0, 0, 0, 6805, 6810, 3, 648, 324, 0, 6806, 6807, 5, 868, 0, 0, 6807, 6809, 3, 648, 324, 0, 6808, 6806, 1, 0, 0, 0, 6809, 6812, 1, 0, 0, 0, 6810, 6808, 1, 0, 0, 0, 6810, 6811, 1, 0, 0, 0, 6811, 647, 1, 0, 0, 0, 6812, 6810, 1, 0, 0, 0, 6813, 6814, 3, 698, 349, 0, 6814, 649, 1, 0, 0, 0, 6815, 6820, 3, 652, 326, 0, 6816, 6817, 5, 868, 0, 0, 6817, 6819, 3, 652, 326, 0, 6818, 6816, 1, 0, 0, 0, 6819, 6822, 1, 0, 0, 0, 6820, 6818, 1, 0, 0, 0, 6820, 6821, 1, 0, 0, 0, 6821, 651, 1, 0, 0, 0, 6822, 6820, 1, 0, 0, 0, 6823, 6826, 3, 680, 340, 0, 6824, 6826, 3, 702, 351, 0, 6825, 6823, 1, 0, 0, 0, 6825, 6824, 1, 0, 0, 0, 6826, 653, 1, 0, 0, 0, 6827, 6832, 3, 702, 351, 0, 6828, 6830, 3, 706, 353, 0, 6829, 6831, 3, 706, 353, 0, 6830, 6829, 1, 0, 0, 0, 6830, 6831, 1, 0, 0, 0, 6831, 6833, 1, 0, 0, 0, 6832, 6828, 1, 0, 0, 0, 6832, 6833, 1, 0, 0, 0, 6833, 6842, 1, 0, 0, 0, 6834, 6836, 9, 0, 0, 0, 6835, 6834, 1, 0, 0, 0, 6835, 6836, 1, 0, 0, 0, 6836, 6837, 1, 0, 0, 0, 6837, 6839, 3, 706, 353, 0, 6838, 6840, 3, 706, 353, 0, 6839, 6838, 1, 0, 0, 0, 6839, 6840, 1, 0, 0, 0, 6840, 6842, 1, 0, 0, 0, 6841, 6827, 1, 0, 0, 0, 6841, 6835, 1, 0, 0, 0, 6842, 655, 1, 0, 0, 0, 6843, 6848, 3, 658, 329, 0, 6844, 6845, 5, 868, 0, 0, 6845, 6847, 3, 658, 329, 0, 6846, 6844, 1, 0, 0, 0, 6847, 6850, 1, 0, 0, 0, 6848, 6846, 1, 0, 0, 0, 6848, 6849, 1, 0, 0, 0, 6849, 657, 1, 0, 0, 0, 6850, 6848, 1, 0, 0, 0, 6851, 6856, 3, 702, 351, 0, 6852, 6854, 3, 706, 353, 0, 6853, 6855, 3, 706, 353, 0, 6854, 6853, 1, 0, 0, 0, 6854, 6855, 1, 0, 0, 0, 6855, 6857, 1, 0, 0, 0, 6856, 6852, 1, 0, 0, 0, 6856, 6857, 1, 0, 0, 0, 6857, 6867, 1, 0, 0, 0, 6858, 6860, 9, 0, 0, 0, 6859, 6858, 1, 0, 0, 0, 6859, 6860, 1, 0, 0, 0, 6860, 6861, 1, 0, 0, 0, 6861, 6863, 3, 706, 353, 0, 6862, 6864, 3, 706, 353, 0, 6863, 6862, 1, 0, 0, 0, 6863, 6864, 1, 0, 0, 0, 6864, 6867, 1, 0, 0, 0, 6865, 6867, 4, 329, 3, 0, 6866, 6851, 1, 0, 0, 0, 6866, 6859, 1, 0, 0, 0, 6866, 6865, 1, 0, 0, 0, 6867, 659, 1, 0, 0, 0, 6868, 6869, 3, 702, 351, 0, 6869, 661, 1, 0, 0, 0, 6870, 6871, 3, 702, 351, 0, 6871, 663, 1, 0, 0, 0, 6872, 6873, 3, 702, 351, 0, 6873, 665, 1, 0, 0, 0, 6874, 6879, 3, 668, 334, 0, 6875, 6876, 5, 868, 0, 0, 6876, 6878, 3, 668, 334, 0, 6877, 6875, 1, 0, 0, 0, 6878, 6881, 1, 0, 0, 0, 6879, 6877, 1, 0, 0, 0, 6879, 6880, 1, 0, 0, 0, 6880, 667, 1, 0, 0, 0, 6881, 6879, 1, 0, 0, 0, 6882, 6883, 3, 702, 351, 0, 6883, 669, 1, 0, 0, 0, 6884, 6889, 3, 702, 351, 0, 6885, 6886, 5, 866, 0, 0, 6886, 6887, 3, 708, 354, 0, 6887, 6888, 5, 867, 0, 0, 6888, 6890, 1, 0, 0, 0, 6889, 6885, 1, 0, 0, 0, 6889, 6890, 1, 0, 0, 0, 6890, 6893, 1, 0, 0, 0, 6891, 6893, 3, 800, 400, 0, 6892, 6884, 1, 0, 0, 0, 6892, 6891, 1, 0, 0, 0, 6893, 6895, 1, 0, 0, 0, 6894, 6896, 7, 54, 0, 0, 6895, 6894, 1, 0, 0, 0, 6895, 6896, 1, 0, 0, 0, 6896, 671, 1, 0, 0, 0, 6897, 6898, 3, 674, 337, 0, 6898, 6899, 5, 878, 0, 0, 6899, 6900, 3, 708, 354, 0, 6900, 673, 1, 0, 0, 0, 6901, 6902, 3, 676, 338, 0, 6902, 6903, 5, 891, 0, 0, 6903, 675, 1, 0, 0, 0, 6904, 6909, 5, 882, 0, 0, 6905, 6909, 5, 889, 0, 0, 6906, 6909, 5, 704, 0, 0, 6907, 6909, 3, 830, 415, 0, 6908, 6904, 1, 0, 0, 0, 6908, 6905, 1, 0, 0, 0, 6908, 6906, 1, 0, 0, 0, 6908, 6907, 1, 0, 0, 0, 6909, 677, 1, 0, 0, 0, 6910, 6911, 7, 110, 0, 0, 6911, 679, 1, 0, 0, 0, 6912, 6914, 3, 676, 338, 0, 6913, 6915, 3, 678, 339, 0, 6914, 6913, 1, 0, 0, 0, 6914, 6915, 1, 0, 0, 0, 6915, 6918, 1, 0, 0, 0, 6916, 6918, 3, 56, 28, 0, 6917, 6912, 1, 0, 0, 0, 6917, 6916, 1, 0, 0, 0, 6918, 681, 1, 0, 0, 0, 6919, 6920, 7, 111, 0, 0, 6920, 683, 1, 0, 0, 0, 6921, 6926, 5, 228, 0, 0, 6922, 6926, 3, 820, 410, 0, 6923, 6926, 5, 882, 0, 0, 6924, 6926, 5, 879, 0, 0, 6925, 6921, 1, 0, 0, 0, 6925, 6922, 1, 0, 0, 0, 6925, 6923, 1, 0, 0, 0, 6925, 6924, 1, 0, 0, 0, 6926, 685, 1, 0, 0, 0, 6927, 6928, 3, 702, 351, 0, 6928, 687, 1, 0, 0, 0, 6929, 6933, 3, 690, 345, 0, 6930, 6933, 5, 889, 0, 0, 6931, 6933, 5, 882, 0, 0, 6932, 6929, 1, 0, 0, 0, 6932, 6930, 1, 0, 0, 0, 6932, 6931, 1, 0, 0, 0, 6933, 689, 1, 0, 0, 0, 6934, 6935, 7, 112, 0, 0, 6935, 691, 1, 0, 0, 0, 6936, 6937, 3, 708, 354, 0, 6937, 6938, 5, 854, 0, 0, 6938, 6939, 3, 708, 354, 0, 6939, 6940, 5, 854, 0, 0, 6940, 6941, 3, 708, 354, 0, 6941, 6942, 5, 854, 0, 0, 6942, 6943, 3, 708, 354, 0, 6943, 6944, 5, 854, 0, 0, 6944, 6950, 3, 708, 354, 0, 6945, 6946, 5, 878, 0, 0, 6946, 6947, 3, 708, 354, 0, 6947, 6948, 5, 854, 0, 0, 6948, 6949, 3, 708, 354, 0, 6949, 6951, 1, 0, 0, 0, 6950, 6945, 1, 0, 0, 0, 6951, 6952, 1, 0, 0, 0, 6952, 6950, 1, 0, 0, 0, 6952, 6953, 1, 0, 0, 0, 6953, 693, 1, 0, 0, 0, 6954, 6961, 3, 696, 348, 0, 6955, 6956, 5, 868, 0, 0, 6956, 6959, 3, 696, 348, 0, 6957, 6958, 5, 868, 0, 0, 6958, 6960, 3, 708, 354, 0, 6959, 6957, 1, 0, 0, 0, 6959, 6960, 1, 0, 0, 0, 6960, 6962, 1, 0, 0, 0, 6961, 6955, 1, 0, 0, 0, 6961, 6962, 1, 0, 0, 0, 6962, 695, 1, 0, 0, 0, 6963, 6971, 5, 882, 0, 0, 6964, 6971, 5, 887, 0, 0, 6965, 6967, 5, 884, 0, 0, 6966, 6965, 1, 0, 0, 0, 6967, 6968, 1, 0, 0, 0, 6968, 6966, 1, 0, 0, 0, 6968, 6969, 1, 0, 0, 0, 6969, 6971, 1, 0, 0, 0, 6970, 6963, 1, 0, 0, 0, 6970, 6964, 1, 0, 0, 0, 6970, 6966, 1, 0, 0, 0, 6971, 697, 1, 0, 0, 0, 6972, 6974, 3, 702, 351, 0, 6973, 6975, 3, 706, 353, 0, 6974, 6973, 1, 0, 0, 0, 6974, 6975, 1, 0, 0, 0, 6975, 699, 1, 0, 0, 0, 6976, 6981, 3, 702, 351, 0, 6977, 6978, 5, 868, 0, 0, 6978, 6980, 3, 702, 351, 0, 6979, 6977, 1, 0, 0, 0, 6980, 6983, 1, 0, 0, 0, 6981, 6979, 1, 0, 0, 0, 6981, 6982, 1, 0, 0, 0, 6982, 701, 1, 0, 0, 0, 6983, 6981, 1, 0, 0, 0, 6984, 6988, 3, 704, 352, 0, 6985, 6988, 5, 879, 0, 0, 6986, 6988, 5, 882, 0, 0, 6987, 6984, 1, 0, 0, 0, 6987, 6985, 1, 0, 0, 0, 6987, 6986, 1, 0, 0, 0, 6988, 703, 1, 0, 0, 0, 6989, 6999, 5, 889, 0, 0, 6990, 6999, 3, 820, 410, 0, 6991, 6999, 3, 822, 411, 0, 6992, 6999, 3, 690, 345, 0, 6993, 6999, 3, 824, 412, 0, 6994, 6999, 3, 826, 413, 0, 6995, 6999, 3, 828, 414, 0, 6996, 6999, 3, 830, 415, 0, 6997, 6999, 3, 792, 396, 0, 6998, 6989, 1, 0, 0, 0, 6998, 6990, 1, 0, 0, 0, 6998, 6991, 1, 0, 0, 0, 6998, 6992, 1, 0, 0, 0, 6998, 6993, 1, 0, 0, 0, 6998, 6994, 1, 0, 0, 0, 6998, 6995, 1, 0, 0, 0, 6998, 6996, 1, 0, 0, 0, 6998, 6997, 1, 0, 0, 0, 6999, 705, 1, 0, 0, 0, 7000, 7001, 5, 865, 0, 0, 7001, 7005, 5, 889, 0, 0, 7002, 7003, 5, 865, 0, 0, 7003, 7005, 3, 702, 351, 0, 7004, 7000, 1, 0, 0, 0, 7004, 7002, 1, 0, 0, 0, 7005, 707, 1, 0, 0, 0, 7006, 7007, 7, 113, 0, 0, 7007, 709, 1, 0, 0, 0, 7008, 7011, 5, 880, 0, 0, 7009, 7011, 3, 708, 354, 0, 7010, 7008, 1, 0, 0, 0, 7010, 7009, 1, 0, 0, 0, 7011, 711, 1, 0, 0, 0, 7012, 7014, 5, 888, 0, 0, 7013, 7012, 1, 0, 0, 0, 7013, 7014, 1, 0, 0, 0, 7014, 7015, 1, 0, 0, 0, 7015, 7018, 5, 882, 0, 0, 7016, 7018, 5, 881, 0, 0, 7017, 7013, 1, 0, 0, 0, 7017, 7016, 1, 0, 0, 0, 7018, 7020, 1, 0, 0, 0, 7019, 7021, 5, 882, 0, 0, 7020, 7019, 1, 0, 0, 0, 7021, 7022, 1, 0, 0, 0, 7022, 7020, 1, 0, 0, 0, 7022, 7023, 1, 0, 0, 0, 7023, 7036, 1, 0, 0, 0, 7024, 7026, 5, 888, 0, 0, 7025, 7024, 1, 0, 0, 0, 7025, 7026, 1, 0, 0, 0, 7026, 7027, 1, 0, 0, 0, 7027, 7030, 5, 882, 0, 0, 7028, 7030, 5, 881, 0, 0, 7029, 7025, 1, 0, 0, 0, 7029, 7028, 1, 0, 0, 0, 7030, 7033, 1, 0, 0, 0, 7031, 7032, 5, 28, 0, 0, 7032, 7034, 3, 686, 343, 0, 7033, 7031, 1, 0, 0, 0, 7033, 7034, 1, 0, 0, 0, 7034, 7036, 1, 0, 0, 0, 7035, 7017, 1, 0, 0, 0, 7035, 7029, 1, 0, 0, 0, 7036, 713, 1, 0, 0, 0, 7037, 7038, 7, 114, 0, 0, 7038, 715, 1, 0, 0, 0, 7039, 7041, 5, 888, 0, 0, 7040, 7039, 1, 0, 0, 0, 7040, 7041, 1, 0, 0, 0, 7041, 7042, 1, 0, 0, 0, 7042, 7043, 5, 884, 0, 0, 7043, 717, 1, 0, 0, 0, 7044, 7046, 5, 114, 0, 0, 7045, 7044, 1, 0, 0, 0, 7045, 7046, 1, 0, 0, 0, 7046, 7047, 1, 0, 0, 0, 7047, 7048, 7, 115, 0, 0, 7048, 719, 1, 0, 0, 0, 7049, 7062, 3, 712, 356, 0, 7050, 7062, 3, 708, 354, 0, 7051, 7052, 5, 854, 0, 0, 7052, 7062, 3, 708, 354, 0, 7053, 7062, 3, 716, 358, 0, 7054, 7062, 3, 714, 357, 0, 7055, 7062, 5, 885, 0, 0, 7056, 7062, 5, 887, 0, 0, 7057, 7059, 5, 114, 0, 0, 7058, 7057, 1, 0, 0, 0, 7058, 7059, 1, 0, 0, 0, 7059, 7060, 1, 0, 0, 0, 7060, 7062, 7, 115, 0, 0, 7061, 7049, 1, 0, 0, 0, 7061, 7050, 1, 0, 0, 0, 7061, 7051, 1, 0, 0, 0, 7061, 7053, 1, 0, 0, 0, 7061, 7054, 1, 0, 0, 0, 7061, 7055, 1, 0, 0, 0, 7061, 7056, 1, 0, 0, 0, 7061, 7058, 1, 0, 0, 0, 7062, 721, 1, 0, 0, 0, 7063, 7065, 7, 116, 0, 0, 7064, 7066, 5, 240, 0, 0, 7065, 7064, 1, 0, 0, 0, 7065, 7066, 1, 0, 0, 0, 7066, 7068, 1, 0, 0, 0, 7067, 7069, 3, 728, 364, 0, 7068, 7067, 1, 0, 0, 0, 7068, 7069, 1, 0, 0, 0, 7069, 7071, 1, 0, 0, 0, 7070, 7072, 5, 228, 0, 0, 7071, 7070, 1, 0, 0, 0, 7071, 7072, 1, 0, 0, 0, 7072, 7076, 1, 0, 0, 0, 7073, 7074, 3, 54, 27, 0, 7074, 7075, 3, 684, 342, 0, 7075, 7077, 1, 0, 0, 0, 7076, 7073, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 7081, 1, 0, 0, 0, 7078, 7079, 5, 28, 0, 0, 7079, 7082, 3, 686, 343, 0, 7080, 7082, 5, 228, 0, 0, 7081, 7078, 1, 0, 0, 0, 7081, 7080, 1, 0, 0, 0, 7081, 7082, 1, 0, 0, 0, 7082, 7190, 1, 0, 0, 0, 7083, 7084, 5, 227, 0, 0, 7084, 7085, 7, 117, 0, 0, 7085, 7087, 5, 240, 0, 0, 7086, 7088, 3, 728, 364, 0, 7087, 7086, 1, 0, 0, 0, 7087, 7088, 1, 0, 0, 0, 7088, 7090, 1, 0, 0, 0, 7089, 7091, 5, 228, 0, 0, 7090, 7089, 1, 0, 0, 0, 7090, 7091, 1, 0, 0, 0, 7091, 7190, 1, 0, 0, 0, 7092, 7093, 5, 227, 0, 0, 7093, 7095, 7, 118, 0, 0, 7094, 7096, 3, 728, 364, 0, 7095, 7094, 1, 0, 0, 0, 7095, 7096, 1, 0, 0, 0, 7096, 7098, 1, 0, 0, 0, 7097, 7099, 5, 228, 0, 0, 7098, 7097, 1, 0, 0, 0, 7098, 7099, 1, 0, 0, 0, 7099, 7190, 1, 0, 0, 0, 7100, 7101, 5, 498, 0, 0, 7101, 7103, 5, 225, 0, 0, 7102, 7104, 3, 728, 364, 0, 7103, 7102, 1, 0, 0, 0, 7103, 7104, 1, 0, 0, 0, 7104, 7106, 1, 0, 0, 0, 7105, 7107, 5, 228, 0, 0, 7106, 7105, 1, 0, 0, 0, 7106, 7107, 1, 0, 0, 0, 7107, 7190, 1, 0, 0, 0, 7108, 7110, 7, 119, 0, 0, 7109, 7111, 3, 728, 364, 0, 7110, 7109, 1, 0, 0, 0, 7110, 7111, 1, 0, 0, 0, 7111, 7115, 1, 0, 0, 0, 7112, 7114, 7, 120, 0, 0, 7113, 7112, 1, 0, 0, 0, 7114, 7117, 1, 0, 0, 0, 7115, 7113, 1, 0, 0, 0, 7115, 7116, 1, 0, 0, 0, 7116, 7190, 1, 0, 0, 0, 7117, 7115, 1, 0, 0, 0, 7118, 7120, 5, 210, 0, 0, 7119, 7121, 3, 730, 365, 0, 7120, 7119, 1, 0, 0, 0, 7120, 7121, 1, 0, 0, 0, 7121, 7125, 1, 0, 0, 0, 7122, 7124, 7, 120, 0, 0, 7123, 7122, 1, 0, 0, 0, 7124, 7127, 1, 0, 0, 0, 7125, 7123, 1, 0, 0, 0, 7125, 7126, 1, 0, 0, 0, 7126, 7190, 1, 0, 0, 0, 7127, 7125, 1, 0, 0, 0, 7128, 7130, 5, 211, 0, 0, 7129, 7131, 5, 212, 0, 0, 7130, 7129, 1, 0, 0, 0, 7130, 7131, 1, 0, 0, 0, 7131, 7133, 1, 0, 0, 0, 7132, 7134, 3, 730, 365, 0, 7133, 7132, 1, 0, 0, 0, 7133, 7134, 1, 0, 0, 0, 7134, 7138, 1, 0, 0, 0, 7135, 7137, 7, 120, 0, 0, 7136, 7135, 1, 0, 0, 0, 7137, 7140, 1, 0, 0, 0, 7138, 7136, 1, 0, 0, 0, 7138, 7139, 1, 0, 0, 0, 7139, 7190, 1, 0, 0, 0, 7140, 7138, 1, 0, 0, 0, 7141, 7143, 7, 121, 0, 0, 7142, 7144, 3, 732, 366, 0, 7143, 7142, 1, 0, 0, 0, 7143, 7144, 1, 0, 0, 0, 7144, 7148, 1, 0, 0, 0, 7145, 7147, 7, 120, 0, 0, 7146, 7145, 1, 0, 0, 0, 7147, 7150, 1, 0, 0, 0, 7148, 7146, 1, 0, 0, 0, 7148, 7149, 1, 0, 0, 0, 7149, 7190, 1, 0, 0, 0, 7150, 7148, 1, 0, 0, 0, 7151, 7190, 7, 122, 0, 0, 7152, 7154, 7, 123, 0, 0, 7153, 7155, 3, 728, 364, 0, 7154, 7153, 1, 0, 0, 0, 7154, 7155, 1, 0, 0, 0, 7155, 7190, 1, 0, 0, 0, 7156, 7157, 7, 124, 0, 0, 7157, 7159, 3, 724, 362, 0, 7158, 7160, 5, 228, 0, 0, 7159, 7158, 1, 0, 0, 0, 7159, 7160, 1, 0, 0, 0, 7160, 7164, 1, 0, 0, 0, 7161, 7162, 3, 54, 27, 0, 7162, 7163, 3, 684, 342, 0, 7163, 7165, 1, 0, 0, 0, 7164, 7161, 1, 0, 0, 0, 7164, 7165, 1, 0, 0, 0, 7165, 7190, 1, 0, 0, 0, 7166, 7169, 7, 125, 0, 0, 7167, 7168, 5, 834, 0, 0, 7168, 7170, 3, 708, 354, 0, 7169, 7167, 1, 0, 0, 0, 7169, 7170, 1, 0, 0, 0, 7170, 7190, 1, 0, 0, 0, 7171, 7173, 5, 233, 0, 0, 7172, 7174, 5, 225, 0, 0, 7173, 7172, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7176, 1, 0, 0, 0, 7175, 7177, 5, 228, 0, 0, 7176, 7175, 1, 0, 0, 0, 7176, 7177, 1, 0, 0, 0, 7177, 7181, 1, 0, 0, 0, 7178, 7179, 3, 54, 27, 0, 7179, 7180, 3, 684, 342, 0, 7180, 7182, 1, 0, 0, 0, 7181, 7178, 1, 0, 0, 0, 7181, 7182, 1, 0, 0, 0, 7182, 7185, 1, 0, 0, 0, 7183, 7184, 5, 28, 0, 0, 7184, 7186, 3, 686, 343, 0, 7185, 7183, 1, 0, 0, 0, 7185, 7186, 1, 0, 0, 0, 7186, 7190, 1, 0, 0, 0, 7187, 7188, 5, 233, 0, 0, 7188, 7190, 5, 229, 0, 0, 7189, 7063, 1, 0, 0, 0, 7189, 7083, 1, 0, 0, 0, 7189, 7092, 1, 0, 0, 0, 7189, 7100, 1, 0, 0, 0, 7189, 7108, 1, 0, 0, 0, 7189, 7118, 1, 0, 0, 0, 7189, 7128, 1, 0, 0, 0, 7189, 7141, 1, 0, 0, 0, 7189, 7151, 1, 0, 0, 0, 7189, 7152, 1, 0, 0, 0, 7189, 7156, 1, 0, 0, 0, 7189, 7166, 1, 0, 0, 0, 7189, 7171, 1, 0, 0, 0, 7189, 7187, 1, 0, 0, 0, 7190, 723, 1, 0, 0, 0, 7191, 7192, 5, 866, 0, 0, 7192, 7197, 5, 882, 0, 0, 7193, 7194, 5, 868, 0, 0, 7194, 7196, 5, 882, 0, 0, 7195, 7193, 1, 0, 0, 0, 7196, 7199, 1, 0, 0, 0, 7197, 7195, 1, 0, 0, 0, 7197, 7198, 1, 0, 0, 0, 7198, 7200, 1, 0, 0, 0, 7199, 7197, 1, 0, 0, 0, 7200, 7201, 5, 867, 0, 0, 7201, 725, 1, 0, 0, 0, 7202, 7204, 7, 126, 0, 0, 7203, 7205, 3, 728, 364, 0, 7204, 7203, 1, 0, 0, 0, 7204, 7205, 1, 0, 0, 0, 7205, 7225, 1, 0, 0, 0, 7206, 7208, 5, 224, 0, 0, 7207, 7209, 3, 728, 364, 0, 7208, 7207, 1, 0, 0, 0, 7208, 7209, 1, 0, 0, 0, 7209, 7213, 1, 0, 0, 0, 7210, 7211, 3, 54, 27, 0, 7211, 7212, 3, 684, 342, 0, 7212, 7214, 1, 0, 0, 0, 7213, 7210, 1, 0, 0, 0, 7213, 7214, 1, 0, 0, 0, 7214, 7225, 1, 0, 0, 0, 7215, 7225, 7, 127, 0, 0, 7216, 7218, 7, 128, 0, 0, 7217, 7219, 3, 732, 366, 0, 7218, 7217, 1, 0, 0, 0, 7218, 7219, 1, 0, 0, 0, 7219, 7225, 1, 0, 0, 0, 7220, 7222, 7, 129, 0, 0, 7221, 7223, 7, 130, 0, 0, 7222, 7221, 1, 0, 0, 0, 7222, 7223, 1, 0, 0, 0, 7223, 7225, 1, 0, 0, 0, 7224, 7202, 1, 0, 0, 0, 7224, 7206, 1, 0, 0, 0, 7224, 7215, 1, 0, 0, 0, 7224, 7216, 1, 0, 0, 0, 7224, 7220, 1, 0, 0, 0, 7225, 7227, 1, 0, 0, 0, 7226, 7228, 5, 12, 0, 0, 7227, 7226, 1, 0, 0, 0, 7227, 7228, 1, 0, 0, 0, 7228, 727, 1, 0, 0, 0, 7229, 7230, 5, 866, 0, 0, 7230, 7231, 3, 708, 354, 0, 7231, 7232, 5, 867, 0, 0, 7232, 729, 1, 0, 0, 0, 7233, 7234, 5, 866, 0, 0, 7234, 7235, 3, 708, 354, 0, 7235, 7236, 5, 868, 0, 0, 7236, 7237, 3, 708, 354, 0, 7237, 7238, 5, 867, 0, 0, 7238, 731, 1, 0, 0, 0, 7239, 7240, 5, 866, 0, 0, 7240, 7243, 3, 708, 354, 0, 7241, 7242, 5, 868, 0, 0, 7242, 7244, 3, 708, 354, 0, 7243, 7241, 1, 0, 0, 0, 7243, 7244, 1, 0, 0, 0, 7244, 7245, 1, 0, 0, 0, 7245, 7246, 5, 867, 0, 0, 7246, 733, 1, 0, 0, 0, 7247, 7248, 5, 866, 0, 0, 7248, 7253, 3, 670, 335, 0, 7249, 7250, 5, 868, 0, 0, 7250, 7252, 3, 670, 335, 0, 7251, 7249, 1, 0, 0, 0, 7252, 7255, 1, 0, 0, 0, 7253, 7251, 1, 0, 0, 0, 7253, 7254, 1, 0, 0, 0, 7254, 7256, 1, 0, 0, 0, 7255, 7253, 1, 0, 0, 0, 7256, 7257, 5, 867, 0, 0, 7257, 735, 1, 0, 0, 0, 7258, 7263, 3, 800, 400, 0, 7259, 7260, 5, 868, 0, 0, 7260, 7262, 3, 800, 400, 0, 7261, 7259, 1, 0, 0, 0, 7262, 7265, 1, 0, 0, 0, 7263, 7261, 1, 0, 0, 0, 7263, 7264, 1, 0, 0, 0, 7264, 737, 1, 0, 0, 0, 7265, 7263, 1, 0, 0, 0, 7266, 7267, 7, 131, 0, 0, 7267, 7272, 3, 740, 370, 0, 7268, 7269, 5, 868, 0, 0, 7269, 7271, 3, 740, 370, 0, 7270, 7268, 1, 0, 0, 0, 7271, 7274, 1, 0, 0, 0, 7272, 7270, 1, 0, 0, 0, 7272, 7273, 1, 0, 0, 0, 7273, 739, 1, 0, 0, 0, 7274, 7272, 1, 0, 0, 0, 7275, 7276, 5, 866, 0, 0, 7276, 7281, 3, 742, 371, 0, 7277, 7278, 5, 868, 0, 0, 7278, 7280, 3, 742, 371, 0, 7279, 7277, 1, 0, 0, 0, 7280, 7283, 1, 0, 0, 0, 7281, 7279, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 7284, 1, 0, 0, 0, 7283, 7281, 1, 0, 0, 0, 7284, 7285, 5, 867, 0, 0, 7285, 741, 1, 0, 0, 0, 7286, 7289, 3, 800, 400, 0, 7287, 7289, 5, 42, 0, 0, 7288, 7286, 1, 0, 0, 0, 7288, 7287, 1, 0, 0, 0, 7289, 743, 1, 0, 0, 0, 7290, 7295, 3, 720, 360, 0, 7291, 7292, 5, 868, 0, 0, 7292, 7294, 3, 720, 360, 0, 7293, 7291, 1, 0, 0, 0, 7294, 7297, 1, 0, 0, 0, 7295, 7293, 1, 0, 0, 0, 7295, 7296, 1, 0, 0, 0, 7296, 745, 1, 0, 0, 0, 7297, 7295, 1, 0, 0, 0, 7298, 7303, 5, 882, 0, 0, 7299, 7300, 5, 868, 0, 0, 7300, 7302, 5, 882, 0, 0, 7301, 7299, 1, 0, 0, 0, 7302, 7305, 1, 0, 0, 0, 7303, 7301, 1, 0, 0, 0, 7303, 7304, 1, 0, 0, 0, 7304, 747, 1, 0, 0, 0, 7305, 7303, 1, 0, 0, 0, 7306, 7311, 5, 892, 0, 0, 7307, 7308, 5, 868, 0, 0, 7308, 7310, 5, 892, 0, 0, 7309, 7307, 1, 0, 0, 0, 7310, 7313, 1, 0, 0, 0, 7311, 7309, 1, 0, 0, 0, 7311, 7312, 1, 0, 0, 0, 7312, 749, 1, 0, 0, 0, 7313, 7311, 1, 0, 0, 0, 7314, 7341, 5, 116, 0, 0, 7315, 7316, 5, 24, 0, 0, 7316, 7317, 5, 866, 0, 0, 7317, 7318, 3, 800, 400, 0, 7318, 7319, 5, 13, 0, 0, 7319, 7320, 3, 726, 363, 0, 7320, 7321, 5, 867, 0, 0, 7321, 7341, 1, 0, 0, 0, 7322, 7324, 3, 806, 403, 0, 7323, 7322, 1, 0, 0, 0, 7323, 7324, 1, 0, 0, 0, 7324, 7325, 1, 0, 0, 0, 7325, 7341, 3, 720, 360, 0, 7326, 7330, 3, 752, 376, 0, 7327, 7328, 5, 119, 0, 0, 7328, 7329, 5, 185, 0, 0, 7329, 7331, 3, 752, 376, 0, 7330, 7327, 1, 0, 0, 0, 7330, 7331, 1, 0, 0, 0, 7331, 7341, 1, 0, 0, 0, 7332, 7333, 5, 866, 0, 0, 7333, 7334, 3, 800, 400, 0, 7334, 7335, 5, 867, 0, 0, 7335, 7341, 1, 0, 0, 0, 7336, 7337, 5, 866, 0, 0, 7337, 7338, 3, 698, 349, 0, 7338, 7339, 5, 867, 0, 0, 7339, 7341, 1, 0, 0, 0, 7340, 7314, 1, 0, 0, 0, 7340, 7315, 1, 0, 0, 0, 7340, 7323, 1, 0, 0, 0, 7340, 7326, 1, 0, 0, 0, 7340, 7332, 1, 0, 0, 0, 7340, 7336, 1, 0, 0, 0, 7341, 751, 1, 0, 0, 0, 7342, 7348, 7, 132, 0, 0, 7343, 7345, 5, 866, 0, 0, 7344, 7346, 3, 708, 354, 0, 7345, 7344, 1, 0, 0, 0, 7345, 7346, 1, 0, 0, 0, 7346, 7347, 1, 0, 0, 0, 7347, 7349, 5, 867, 0, 0, 7348, 7343, 1, 0, 0, 0, 7348, 7349, 1, 0, 0, 0, 7349, 7357, 1, 0, 0, 0, 7350, 7351, 5, 295, 0, 0, 7351, 7353, 5, 866, 0, 0, 7352, 7354, 3, 708, 354, 0, 7353, 7352, 1, 0, 0, 0, 7353, 7354, 1, 0, 0, 0, 7354, 7355, 1, 0, 0, 0, 7355, 7357, 5, 867, 0, 0, 7356, 7342, 1, 0, 0, 0, 7356, 7350, 1, 0, 0, 0, 7357, 753, 1, 0, 0, 0, 7358, 7359, 5, 78, 0, 0, 7359, 7360, 5, 60, 0, 0, 7360, 755, 1, 0, 0, 0, 7361, 7362, 5, 78, 0, 0, 7362, 7363, 5, 114, 0, 0, 7363, 7364, 5, 60, 0, 0, 7364, 757, 1, 0, 0, 0, 7365, 7366, 5, 124, 0, 0, 7366, 7367, 5, 143, 0, 0, 7367, 759, 1, 0, 0, 0, 7368, 7391, 3, 762, 381, 0, 7369, 7391, 3, 770, 385, 0, 7370, 7391, 3, 772, 386, 0, 7371, 7378, 3, 792, 396, 0, 7372, 7373, 5, 866, 0, 0, 7373, 7379, 5, 867, 0, 0, 7374, 7375, 5, 866, 0, 0, 7375, 7376, 3, 796, 398, 0, 7376, 7377, 5, 867, 0, 0, 7377, 7379, 1, 0, 0, 0, 7378, 7372, 1, 0, 0, 0, 7378, 7374, 1, 0, 0, 0, 7379, 7391, 1, 0, 0, 0, 7380, 7387, 3, 628, 314, 0, 7381, 7382, 5, 866, 0, 0, 7382, 7388, 5, 867, 0, 0, 7383, 7384, 5, 866, 0, 0, 7384, 7385, 3, 796, 398, 0, 7385, 7386, 5, 867, 0, 0, 7386, 7388, 1, 0, 0, 0, 7387, 7381, 1, 0, 0, 0, 7387, 7383, 1, 0, 0, 0, 7388, 7391, 1, 0, 0, 0, 7389, 7391, 3, 794, 397, 0, 7390, 7368, 1, 0, 0, 0, 7390, 7369, 1, 0, 0, 0, 7390, 7370, 1, 0, 0, 0, 7390, 7371, 1, 0, 0, 0, 7390, 7380, 1, 0, 0, 0, 7390, 7389, 1, 0, 0, 0, 7391, 761, 1, 0, 0, 0, 7392, 7395, 7, 133, 0, 0, 7393, 7394, 5, 866, 0, 0, 7394, 7396, 5, 867, 0, 0, 7395, 7393, 1, 0, 0, 0, 7395, 7396, 1, 0, 0, 0, 7396, 7572, 1, 0, 0, 0, 7397, 7572, 3, 56, 28, 0, 7398, 7399, 5, 33, 0, 0, 7399, 7400, 5, 866, 0, 0, 7400, 7401, 3, 800, 400, 0, 7401, 7402, 5, 868, 0, 0, 7402, 7403, 3, 726, 363, 0, 7403, 7404, 5, 867, 0, 0, 7404, 7572, 1, 0, 0, 0, 7405, 7406, 5, 33, 0, 0, 7406, 7407, 5, 866, 0, 0, 7407, 7408, 3, 800, 400, 0, 7408, 7409, 5, 188, 0, 0, 7409, 7410, 3, 684, 342, 0, 7410, 7411, 5, 867, 0, 0, 7411, 7572, 1, 0, 0, 0, 7412, 7413, 5, 24, 0, 0, 7413, 7414, 5, 866, 0, 0, 7414, 7415, 3, 800, 400, 0, 7415, 7416, 5, 13, 0, 0, 7416, 7417, 3, 726, 363, 0, 7417, 7418, 5, 867, 0, 0, 7418, 7572, 1, 0, 0, 0, 7419, 7420, 5, 189, 0, 0, 7420, 7421, 5, 866, 0, 0, 7421, 7422, 3, 658, 329, 0, 7422, 7423, 5, 867, 0, 0, 7423, 7572, 1, 0, 0, 0, 7424, 7425, 5, 23, 0, 0, 7425, 7427, 3, 800, 400, 0, 7426, 7428, 3, 764, 382, 0, 7427, 7426, 1, 0, 0, 0, 7428, 7429, 1, 0, 0, 0, 7429, 7427, 1, 0, 0, 0, 7429, 7430, 1, 0, 0, 0, 7430, 7433, 1, 0, 0, 0, 7431, 7432, 5, 53, 0, 0, 7432, 7434, 3, 798, 399, 0, 7433, 7431, 1, 0, 0, 0, 7433, 7434, 1, 0, 0, 0, 7434, 7435, 1, 0, 0, 0, 7435, 7436, 5, 378, 0, 0, 7436, 7572, 1, 0, 0, 0, 7437, 7439, 5, 23, 0, 0, 7438, 7440, 3, 764, 382, 0, 7439, 7438, 1, 0, 0, 0, 7440, 7441, 1, 0, 0, 0, 7441, 7439, 1, 0, 0, 0, 7441, 7442, 1, 0, 0, 0, 7442, 7445, 1, 0, 0, 0, 7443, 7444, 5, 53, 0, 0, 7444, 7446, 3, 798, 399, 0, 7445, 7443, 1, 0, 0, 0, 7445, 7446, 1, 0, 0, 0, 7446, 7447, 1, 0, 0, 0, 7447, 7448, 5, 378, 0, 0, 7448, 7572, 1, 0, 0, 0, 7449, 7450, 5, 224, 0, 0, 7450, 7451, 5, 866, 0, 0, 7451, 7454, 3, 796, 398, 0, 7452, 7453, 5, 188, 0, 0, 7453, 7455, 3, 684, 342, 0, 7454, 7452, 1, 0, 0, 0, 7454, 7455, 1, 0, 0, 0, 7455, 7456, 1, 0, 0, 0, 7456, 7457, 5, 867, 0, 0, 7457, 7572, 1, 0, 0, 0, 7458, 7459, 5, 296, 0, 0, 7459, 7462, 5, 866, 0, 0, 7460, 7463, 3, 712, 356, 0, 7461, 7463, 3, 800, 400, 0, 7462, 7460, 1, 0, 0, 0, 7462, 7461, 1, 0, 0, 0, 7463, 7464, 1, 0, 0, 0, 7464, 7467, 5, 80, 0, 0, 7465, 7468, 3, 712, 356, 0, 7466, 7468, 3, 800, 400, 0, 7467, 7465, 1, 0, 0, 0, 7467, 7466, 1, 0, 0, 0, 7468, 7469, 1, 0, 0, 0, 7469, 7470, 5, 867, 0, 0, 7470, 7572, 1, 0, 0, 0, 7471, 7472, 7, 134, 0, 0, 7472, 7475, 5, 866, 0, 0, 7473, 7476, 3, 712, 356, 0, 7474, 7476, 3, 800, 400, 0, 7475, 7473, 1, 0, 0, 0, 7475, 7474, 1, 0, 0, 0, 7476, 7477, 1, 0, 0, 0, 7477, 7480, 5, 68, 0, 0, 7478, 7481, 3, 708, 354, 0, 7479, 7481, 3, 800, 400, 0, 7480, 7478, 1, 0, 0, 0, 7480, 7479, 1, 0, 0, 0, 7481, 7487, 1, 0, 0, 0, 7482, 7485, 5, 65, 0, 0, 7483, 7486, 3, 708, 354, 0, 7484, 7486, 3, 800, 400, 0, 7485, 7483, 1, 0, 0, 0, 7485, 7484, 1, 0, 0, 0, 7486, 7488, 1, 0, 0, 0, 7487, 7482, 1, 0, 0, 0, 7487, 7488, 1, 0, 0, 0, 7488, 7489, 1, 0, 0, 0, 7489, 7490, 5, 867, 0, 0, 7490, 7572, 1, 0, 0, 0, 7491, 7492, 5, 300, 0, 0, 7492, 7493, 5, 866, 0, 0, 7493, 7496, 7, 135, 0, 0, 7494, 7497, 3, 712, 356, 0, 7495, 7497, 3, 800, 400, 0, 7496, 7494, 1, 0, 0, 0, 7496, 7495, 1, 0, 0, 0, 7496, 7497, 1, 0, 0, 0, 7497, 7498, 1, 0, 0, 0, 7498, 7501, 5, 68, 0, 0, 7499, 7502, 3, 712, 356, 0, 7500, 7502, 3, 800, 400, 0, 7501, 7499, 1, 0, 0, 0, 7501, 7500, 1, 0, 0, 0, 7502, 7503, 1, 0, 0, 0, 7503, 7504, 5, 867, 0, 0, 7504, 7572, 1, 0, 0, 0, 7505, 7506, 5, 300, 0, 0, 7506, 7509, 5, 866, 0, 0, 7507, 7510, 3, 712, 356, 0, 7508, 7510, 3, 800, 400, 0, 7509, 7507, 1, 0, 0, 0, 7509, 7508, 1, 0, 0, 0, 7510, 7511, 1, 0, 0, 0, 7511, 7514, 5, 68, 0, 0, 7512, 7515, 3, 712, 356, 0, 7513, 7515, 3, 800, 400, 0, 7514, 7512, 1, 0, 0, 0, 7514, 7513, 1, 0, 0, 0, 7515, 7516, 1, 0, 0, 0, 7516, 7517, 5, 867, 0, 0, 7517, 7572, 1, 0, 0, 0, 7518, 7519, 5, 840, 0, 0, 7519, 7522, 5, 866, 0, 0, 7520, 7523, 3, 712, 356, 0, 7521, 7523, 3, 800, 400, 0, 7522, 7520, 1, 0, 0, 0, 7522, 7521, 1, 0, 0, 0, 7523, 7530, 1, 0, 0, 0, 7524, 7525, 5, 13, 0, 0, 7525, 7526, 7, 136, 0, 0, 7526, 7527, 5, 866, 0, 0, 7527, 7528, 3, 708, 354, 0, 7528, 7529, 5, 867, 0, 0, 7529, 7531, 1, 0, 0, 0, 7530, 7524, 1, 0, 0, 0, 7530, 7531, 1, 0, 0, 0, 7531, 7533, 1, 0, 0, 0, 7532, 7534, 3, 766, 383, 0, 7533, 7532, 1, 0, 0, 0, 7533, 7534, 1, 0, 0, 0, 7534, 7535, 1, 0, 0, 0, 7535, 7536, 5, 867, 0, 0, 7536, 7572, 1, 0, 0, 0, 7537, 7538, 5, 293, 0, 0, 7538, 7539, 5, 866, 0, 0, 7539, 7540, 3, 66, 33, 0, 7540, 7543, 5, 68, 0, 0, 7541, 7544, 3, 712, 356, 0, 7542, 7544, 3, 800, 400, 0, 7543, 7541, 1, 0, 0, 0, 7543, 7542, 1, 0, 0, 0, 7544, 7545, 1, 0, 0, 0, 7545, 7546, 5, 867, 0, 0, 7546, 7572, 1, 0, 0, 0, 7547, 7548, 5, 827, 0, 0, 7548, 7549, 5, 866, 0, 0, 7549, 7550, 7, 137, 0, 0, 7550, 7551, 5, 868, 0, 0, 7551, 7552, 3, 712, 356, 0, 7552, 7553, 5, 867, 0, 0, 7553, 7572, 1, 0, 0, 0, 7554, 7555, 5, 254, 0, 0, 7555, 7556, 5, 866, 0, 0, 7556, 7557, 3, 800, 400, 0, 7557, 7558, 5, 868, 0, 0, 7558, 7561, 3, 800, 400, 0, 7559, 7560, 5, 579, 0, 0, 7560, 7562, 3, 726, 363, 0, 7561, 7559, 1, 0, 0, 0, 7561, 7562, 1, 0, 0, 0, 7562, 7564, 1, 0, 0, 0, 7563, 7565, 3, 286, 143, 0, 7564, 7563, 1, 0, 0, 0, 7564, 7565, 1, 0, 0, 0, 7565, 7567, 1, 0, 0, 0, 7566, 7568, 3, 288, 144, 0, 7567, 7566, 1, 0, 0, 0, 7567, 7568, 1, 0, 0, 0, 7568, 7569, 1, 0, 0, 0, 7569, 7570, 5, 867, 0, 0, 7570, 7572, 1, 0, 0, 0, 7571, 7392, 1, 0, 0, 0, 7571, 7397, 1, 0, 0, 0, 7571, 7398, 1, 0, 0, 0, 7571, 7405, 1, 0, 0, 0, 7571, 7412, 1, 0, 0, 0, 7571, 7419, 1, 0, 0, 0, 7571, 7424, 1, 0, 0, 0, 7571, 7437, 1, 0, 0, 0, 7571, 7449, 1, 0, 0, 0, 7571, 7458, 1, 0, 0, 0, 7571, 7471, 1, 0, 0, 0, 7571, 7491, 1, 0, 0, 0, 7571, 7505, 1, 0, 0, 0, 7571, 7518, 1, 0, 0, 0, 7571, 7537, 1, 0, 0, 0, 7571, 7547, 1, 0, 0, 0, 7571, 7554, 1, 0, 0, 0, 7572, 763, 1, 0, 0, 0, 7573, 7574, 5, 191, 0, 0, 7574, 7575, 3, 798, 399, 0, 7575, 7576, 5, 175, 0, 0, 7576, 7577, 3, 798, 399, 0, 7577, 765, 1, 0, 0, 0, 7578, 7579, 5, 448, 0, 0, 7579, 7584, 3, 768, 384, 0, 7580, 7581, 5, 868, 0, 0, 7581, 7583, 3, 768, 384, 0, 7582, 7580, 1, 0, 0, 0, 7583, 7586, 1, 0, 0, 0, 7584, 7582, 1, 0, 0, 0, 7584, 7585, 1, 0, 0, 0, 7585, 7593, 1, 0, 0, 0, 7586, 7584, 1, 0, 0, 0, 7587, 7588, 5, 448, 0, 0, 7588, 7589, 3, 708, 354, 0, 7589, 7590, 5, 854, 0, 0, 7590, 7591, 3, 708, 354, 0, 7591, 7593, 1, 0, 0, 0, 7592, 7578, 1, 0, 0, 0, 7592, 7587, 1, 0, 0, 0, 7593, 767, 1, 0, 0, 0, 7594, 7596, 3, 708, 354, 0, 7595, 7597, 7, 138, 0, 0, 7596, 7595, 1, 0, 0, 0, 7596, 7597, 1, 0, 0, 0, 7597, 769, 1, 0, 0, 0, 7598, 7599, 7, 139, 0, 0, 7599, 7601, 5, 866, 0, 0, 7600, 7602, 7, 44, 0, 0, 7601, 7600, 1, 0, 0, 0, 7601, 7602, 1, 0, 0, 0, 7602, 7603, 1, 0, 0, 0, 7603, 7604, 3, 798, 399, 0, 7604, 7606, 5, 867, 0, 0, 7605, 7607, 3, 774, 387, 0, 7606, 7605, 1, 0, 0, 0, 7606, 7607, 1, 0, 0, 0, 7607, 7658, 1, 0, 0, 0, 7608, 7609, 5, 262, 0, 0, 7609, 7617, 5, 866, 0, 0, 7610, 7618, 5, 850, 0, 0, 7611, 7613, 5, 7, 0, 0, 7612, 7611, 1, 0, 0, 0, 7612, 7613, 1, 0, 0, 0, 7613, 7614, 1, 0, 0, 0, 7614, 7618, 3, 798, 399, 0, 7615, 7616, 5, 49, 0, 0, 7616, 7618, 3, 796, 398, 0, 7617, 7610, 1, 0, 0, 0, 7617, 7612, 1, 0, 0, 0, 7617, 7615, 1, 0, 0, 0, 7618, 7619, 1, 0, 0, 0, 7619, 7621, 5, 867, 0, 0, 7620, 7622, 3, 774, 387, 0, 7621, 7620, 1, 0, 0, 0, 7621, 7622, 1, 0, 0, 0, 7622, 7658, 1, 0, 0, 0, 7623, 7624, 7, 140, 0, 0, 7624, 7626, 5, 866, 0, 0, 7625, 7627, 5, 7, 0, 0, 7626, 7625, 1, 0, 0, 0, 7626, 7627, 1, 0, 0, 0, 7627, 7628, 1, 0, 0, 0, 7628, 7629, 3, 798, 399, 0, 7629, 7631, 5, 867, 0, 0, 7630, 7632, 3, 774, 387, 0, 7631, 7630, 1, 0, 0, 0, 7631, 7632, 1, 0, 0, 0, 7632, 7658, 1, 0, 0, 0, 7633, 7634, 5, 266, 0, 0, 7634, 7636, 5, 866, 0, 0, 7635, 7637, 5, 49, 0, 0, 7636, 7635, 1, 0, 0, 0, 7636, 7637, 1, 0, 0, 0, 7637, 7638, 1, 0, 0, 0, 7638, 7649, 3, 796, 398, 0, 7639, 7640, 5, 125, 0, 0, 7640, 7641, 5, 20, 0, 0, 7641, 7646, 3, 254, 127, 0, 7642, 7643, 5, 868, 0, 0, 7643, 7645, 3, 254, 127, 0, 7644, 7642, 1, 0, 0, 0, 7645, 7648, 1, 0, 0, 0, 7646, 7644, 1, 0, 0, 0, 7646, 7647, 1, 0, 0, 0, 7647, 7650, 1, 0, 0, 0, 7648, 7646, 1, 0, 0, 0, 7649, 7639, 1, 0, 0, 0, 7649, 7650, 1, 0, 0, 0, 7650, 7653, 1, 0, 0, 0, 7651, 7652, 5, 156, 0, 0, 7652, 7654, 5, 882, 0, 0, 7653, 7651, 1, 0, 0, 0, 7653, 7654, 1, 0, 0, 0, 7654, 7655, 1, 0, 0, 0, 7655, 7656, 5, 867, 0, 0, 7656, 7658, 1, 0, 0, 0, 7657, 7598, 1, 0, 0, 0, 7657, 7608, 1, 0, 0, 0, 7657, 7623, 1, 0, 0, 0, 7657, 7633, 1, 0, 0, 0, 7658, 771, 1, 0, 0, 0, 7659, 7660, 7, 141, 0, 0, 7660, 7661, 5, 866, 0, 0, 7661, 7664, 3, 800, 400, 0, 7662, 7663, 5, 868, 0, 0, 7663, 7665, 3, 708, 354, 0, 7664, 7662, 1, 0, 0, 0, 7664, 7665, 1, 0, 0, 0, 7665, 7668, 1, 0, 0, 0, 7666, 7667, 5, 868, 0, 0, 7667, 7669, 3, 708, 354, 0, 7668, 7666, 1, 0, 0, 0, 7668, 7669, 1, 0, 0, 0, 7669, 7670, 1, 0, 0, 0, 7670, 7671, 5, 867, 0, 0, 7671, 7672, 3, 774, 387, 0, 7672, 7698, 1, 0, 0, 0, 7673, 7674, 7, 142, 0, 0, 7674, 7675, 5, 866, 0, 0, 7675, 7676, 3, 800, 400, 0, 7676, 7677, 5, 867, 0, 0, 7677, 7678, 3, 774, 387, 0, 7678, 7698, 1, 0, 0, 0, 7679, 7680, 7, 143, 0, 0, 7680, 7681, 5, 866, 0, 0, 7681, 7682, 5, 867, 0, 0, 7682, 7698, 3, 774, 387, 0, 7683, 7684, 5, 273, 0, 0, 7684, 7685, 5, 866, 0, 0, 7685, 7686, 3, 800, 400, 0, 7686, 7687, 5, 868, 0, 0, 7687, 7688, 3, 708, 354, 0, 7688, 7689, 5, 867, 0, 0, 7689, 7690, 3, 774, 387, 0, 7690, 7698, 1, 0, 0, 0, 7691, 7692, 5, 272, 0, 0, 7692, 7693, 5, 866, 0, 0, 7693, 7694, 3, 708, 354, 0, 7694, 7695, 5, 867, 0, 0, 7695, 7696, 3, 774, 387, 0, 7696, 7698, 1, 0, 0, 0, 7697, 7659, 1, 0, 0, 0, 7697, 7673, 1, 0, 0, 0, 7697, 7679, 1, 0, 0, 0, 7697, 7683, 1, 0, 0, 0, 7697, 7691, 1, 0, 0, 0, 7698, 773, 1, 0, 0, 0, 7699, 7705, 5, 129, 0, 0, 7700, 7701, 5, 866, 0, 0, 7701, 7702, 3, 776, 388, 0, 7702, 7703, 5, 867, 0, 0, 7703, 7706, 1, 0, 0, 0, 7704, 7706, 3, 778, 389, 0, 7705, 7700, 1, 0, 0, 0, 7705, 7704, 1, 0, 0, 0, 7706, 775, 1, 0, 0, 0, 7707, 7709, 3, 778, 389, 0, 7708, 7707, 1, 0, 0, 0, 7708, 7709, 1, 0, 0, 0, 7709, 7711, 1, 0, 0, 0, 7710, 7712, 3, 790, 395, 0, 7711, 7710, 1, 0, 0, 0, 7711, 7712, 1, 0, 0, 0, 7712, 7714, 1, 0, 0, 0, 7713, 7715, 3, 252, 126, 0, 7714, 7713, 1, 0, 0, 0, 7714, 7715, 1, 0, 0, 0, 7715, 7717, 1, 0, 0, 0, 7716, 7718, 3, 780, 390, 0, 7717, 7716, 1, 0, 0, 0, 7717, 7718, 1, 0, 0, 0, 7718, 777, 1, 0, 0, 0, 7719, 7720, 3, 702, 351, 0, 7720, 779, 1, 0, 0, 0, 7721, 7722, 3, 782, 391, 0, 7722, 7723, 3, 784, 392, 0, 7723, 781, 1, 0, 0, 0, 7724, 7725, 7, 144, 0, 0, 7725, 783, 1, 0, 0, 0, 7726, 7729, 3, 788, 394, 0, 7727, 7729, 3, 786, 393, 0, 7728, 7726, 1, 0, 0, 0, 7728, 7727, 1, 0, 0, 0, 7729, 785, 1, 0, 0, 0, 7730, 7731, 5, 17, 0, 0, 7731, 7732, 3, 788, 394, 0, 7732, 7733, 5, 11, 0, 0, 7733, 7734, 3, 788, 394, 0, 7734, 787, 1, 0, 0, 0, 7735, 7736, 5, 36, 0, 0, 7736, 7743, 5, 586, 0, 0, 7737, 7738, 5, 669, 0, 0, 7738, 7743, 7, 145, 0, 0, 7739, 7740, 3, 800, 400, 0, 7740, 7741, 7, 145, 0, 0, 7741, 7743, 1, 0, 0, 0, 7742, 7735, 1, 0, 0, 0, 7742, 7737, 1, 0, 0, 0, 7742, 7739, 1, 0, 0, 0, 7743, 789, 1, 0, 0, 0, 7744, 7745, 5, 130, 0, 0, 7745, 7746, 5, 20, 0, 0, 7746, 7751, 3, 800, 400, 0, 7747, 7748, 5, 868, 0, 0, 7748, 7750, 3, 800, 400, 0, 7749, 7747, 1, 0, 0, 0, 7750, 7753, 1, 0, 0, 0, 7751, 7749, 1, 0, 0, 0, 7751, 7752, 1, 0, 0, 0, 7752, 791, 1, 0, 0, 0, 7753, 7751, 1, 0, 0, 0, 7754, 7779, 3, 832, 416, 0, 7755, 7779, 5, 757, 0, 0, 7756, 7779, 5, 289, 0, 0, 7757, 7779, 5, 285, 0, 0, 7758, 7779, 5, 286, 0, 0, 7759, 7779, 5, 287, 0, 0, 7760, 7779, 5, 290, 0, 0, 7761, 7779, 5, 291, 0, 0, 7762, 7779, 5, 292, 0, 0, 7763, 7779, 5, 78, 0, 0, 7764, 7779, 5, 86, 0, 0, 7765, 7779, 5, 288, 0, 0, 7766, 7779, 5, 294, 0, 0, 7767, 7779, 5, 488, 0, 0, 7768, 7779, 5, 295, 0, 0, 7769, 7779, 5, 142, 0, 0, 7770, 7779, 5, 143, 0, 0, 7771, 7779, 5, 297, 0, 0, 7772, 7779, 5, 298, 0, 0, 7773, 7779, 5, 299, 0, 0, 7774, 7779, 5, 300, 0, 0, 7775, 7779, 5, 301, 0, 0, 7776, 7779, 5, 302, 0, 0, 7777, 7779, 5, 303, 0, 0, 7778, 7754, 1, 0, 0, 0, 7778, 7755, 1, 0, 0, 0, 7778, 7756, 1, 0, 0, 0, 7778, 7757, 1, 0, 0, 0, 7778, 7758, 1, 0, 0, 0, 7778, 7759, 1, 0, 0, 0, 7778, 7760, 1, 0, 0, 0, 7778, 7761, 1, 0, 0, 0, 7778, 7762, 1, 0, 0, 0, 7778, 7763, 1, 0, 0, 0, 7778, 7764, 1, 0, 0, 0, 7778, 7765, 1, 0, 0, 0, 7778, 7766, 1, 0, 0, 0, 7778, 7767, 1, 0, 0, 0, 7778, 7768, 1, 0, 0, 0, 7778, 7769, 1, 0, 0, 0, 7778, 7770, 1, 0, 0, 0, 7778, 7771, 1, 0, 0, 0, 7778, 7772, 1, 0, 0, 0, 7778, 7773, 1, 0, 0, 0, 7778, 7774, 1, 0, 0, 0, 7778, 7775, 1, 0, 0, 0, 7778, 7776, 1, 0, 0, 0, 7778, 7777, 1, 0, 0, 0, 7779, 793, 1, 0, 0, 0, 7780, 7781, 7, 146, 0, 0, 7781, 7782, 5, 866, 0, 0, 7782, 7783, 3, 798, 399, 0, 7783, 7784, 5, 867, 0, 0, 7784, 795, 1, 0, 0, 0, 7785, 7790, 3, 798, 399, 0, 7786, 7787, 5, 868, 0, 0, 7787, 7789, 3, 798, 399, 0, 7788, 7786, 1, 0, 0, 0, 7789, 7792, 1, 0, 0, 0, 7790, 7788, 1, 0, 0, 0, 7790, 7791, 1, 0, 0, 0, 7791, 797, 1, 0, 0, 0, 7792, 7790, 1, 0, 0, 0, 7793, 7797, 3, 720, 360, 0, 7794, 7797, 3, 760, 380, 0, 7795, 7797, 3, 800, 400, 0, 7796, 7793, 1, 0, 0, 0, 7796, 7794, 1, 0, 0, 0, 7796, 7795, 1, 0, 0, 0, 7797, 799, 1, 0, 0, 0, 7798, 7799, 6, 400, -1, 0, 7799, 7800, 7, 147, 0, 0, 7800, 7810, 3, 800, 400, 4, 7801, 7802, 3, 802, 401, 0, 7802, 7804, 5, 89, 0, 0, 7803, 7805, 5, 114, 0, 0, 7804, 7803, 1, 0, 0, 0, 7804, 7805, 1, 0, 0, 0, 7805, 7806, 1, 0, 0, 0, 7806, 7807, 7, 148, 0, 0, 7807, 7810, 1, 0, 0, 0, 7808, 7810, 3, 802, 401, 0, 7809, 7798, 1, 0, 0, 0, 7809, 7801, 1, 0, 0, 0, 7809, 7808, 1, 0, 0, 0, 7810, 7817, 1, 0, 0, 0, 7811, 7812, 10, 3, 0, 0, 7812, 7813, 3, 812, 406, 0, 7813, 7814, 3, 800, 400, 4, 7814, 7816, 1, 0, 0, 0, 7815, 7811, 1, 0, 0, 0, 7816, 7819, 1, 0, 0, 0, 7817, 7815, 1, 0, 0, 0, 7817, 7818, 1, 0, 0, 0, 7818, 801, 1, 0, 0, 0, 7819, 7817, 1, 0, 0, 0, 7820, 7821, 6, 401, -1, 0, 7821, 7822, 3, 804, 402, 0, 7822, 7886, 1, 0, 0, 0, 7823, 7825, 10, 6, 0, 0, 7824, 7826, 5, 114, 0, 0, 7825, 7824, 1, 0, 0, 0, 7825, 7826, 1, 0, 0, 0, 7826, 7827, 1, 0, 0, 0, 7827, 7828, 5, 17, 0, 0, 7828, 7829, 3, 802, 401, 0, 7829, 7830, 5, 11, 0, 0, 7830, 7831, 3, 802, 401, 7, 7831, 7885, 1, 0, 0, 0, 7832, 7833, 10, 5, 0, 0, 7833, 7834, 5, 604, 0, 0, 7834, 7835, 5, 99, 0, 0, 7835, 7885, 3, 802, 401, 6, 7836, 7838, 10, 3, 0, 0, 7837, 7839, 5, 114, 0, 0, 7838, 7837, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 7840, 1, 0, 0, 0, 7840, 7841, 7, 149, 0, 0, 7841, 7885, 3, 802, 401, 4, 7842, 7844, 10, 9, 0, 0, 7843, 7845, 5, 114, 0, 0, 7844, 7843, 1, 0, 0, 0, 7844, 7845, 1, 0, 0, 0, 7845, 7846, 1, 0, 0, 0, 7846, 7847, 5, 80, 0, 0, 7847, 7850, 5, 866, 0, 0, 7848, 7851, 3, 204, 102, 0, 7849, 7851, 3, 736, 368, 0, 7850, 7848, 1, 0, 0, 0, 7850, 7849, 1, 0, 0, 0, 7851, 7852, 1, 0, 0, 0, 7852, 7853, 5, 867, 0, 0, 7853, 7885, 1, 0, 0, 0, 7854, 7855, 10, 8, 0, 0, 7855, 7856, 5, 89, 0, 0, 7856, 7885, 3, 718, 359, 0, 7857, 7858, 10, 7, 0, 0, 7858, 7865, 3, 808, 404, 0, 7859, 7860, 7, 150, 0, 0, 7860, 7861, 5, 866, 0, 0, 7861, 7862, 3, 204, 102, 0, 7862, 7863, 5, 867, 0, 0, 7863, 7866, 1, 0, 0, 0, 7864, 7866, 3, 802, 401, 0, 7865, 7859, 1, 0, 0, 0, 7865, 7864, 1, 0, 0, 0, 7866, 7885, 1, 0, 0, 0, 7867, 7869, 10, 4, 0, 0, 7868, 7870, 5, 114, 0, 0, 7869, 7868, 1, 0, 0, 0, 7869, 7870, 1, 0, 0, 0, 7870, 7871, 1, 0, 0, 0, 7871, 7872, 5, 99, 0, 0, 7872, 7875, 3, 802, 401, 0, 7873, 7874, 5, 384, 0, 0, 7874, 7876, 5, 882, 0, 0, 7875, 7873, 1, 0, 0, 0, 7875, 7876, 1, 0, 0, 0, 7876, 7885, 1, 0, 0, 0, 7877, 7878, 10, 2, 0, 0, 7878, 7879, 5, 485, 0, 0, 7879, 7880, 5, 510, 0, 0, 7880, 7881, 5, 866, 0, 0, 7881, 7882, 3, 802, 401, 0, 7882, 7883, 5, 867, 0, 0, 7883, 7885, 1, 0, 0, 0, 7884, 7823, 1, 0, 0, 0, 7884, 7832, 1, 0, 0, 0, 7884, 7836, 1, 0, 0, 0, 7884, 7842, 1, 0, 0, 0, 7884, 7854, 1, 0, 0, 0, 7884, 7857, 1, 0, 0, 0, 7884, 7867, 1, 0, 0, 0, 7884, 7877, 1, 0, 0, 0, 7885, 7888, 1, 0, 0, 0, 7886, 7884, 1, 0, 0, 0, 7886, 7887, 1, 0, 0, 0, 7887, 803, 1, 0, 0, 0, 7888, 7886, 1, 0, 0, 0, 7889, 7890, 6, 402, -1, 0, 7890, 7938, 3, 720, 360, 0, 7891, 7938, 3, 760, 380, 0, 7892, 7938, 3, 682, 341, 0, 7893, 7894, 3, 806, 403, 0, 7894, 7895, 3, 804, 402, 12, 7895, 7938, 1, 0, 0, 0, 7896, 7897, 5, 228, 0, 0, 7897, 7938, 3, 804, 402, 11, 7898, 7899, 5, 892, 0, 0, 7899, 7900, 5, 841, 0, 0, 7900, 7938, 3, 804, 402, 10, 7901, 7902, 5, 866, 0, 0, 7902, 7907, 3, 800, 400, 0, 7903, 7904, 5, 868, 0, 0, 7904, 7906, 3, 800, 400, 0, 7905, 7903, 1, 0, 0, 0, 7906, 7909, 1, 0, 0, 0, 7907, 7905, 1, 0, 0, 0, 7907, 7908, 1, 0, 0, 0, 7908, 7910, 1, 0, 0, 0, 7909, 7907, 1, 0, 0, 0, 7910, 7911, 5, 867, 0, 0, 7911, 7938, 1, 0, 0, 0, 7912, 7913, 5, 586, 0, 0, 7913, 7914, 5, 866, 0, 0, 7914, 7917, 3, 800, 400, 0, 7915, 7916, 5, 868, 0, 0, 7916, 7918, 3, 800, 400, 0, 7917, 7915, 1, 0, 0, 0, 7918, 7919, 1, 0, 0, 0, 7919, 7917, 1, 0, 0, 0, 7919, 7920, 1, 0, 0, 0, 7920, 7921, 1, 0, 0, 0, 7921, 7922, 5, 867, 0, 0, 7922, 7938, 1, 0, 0, 0, 7923, 7924, 5, 60, 0, 0, 7924, 7925, 5, 866, 0, 0, 7925, 7926, 3, 204, 102, 0, 7926, 7927, 5, 867, 0, 0, 7927, 7938, 1, 0, 0, 0, 7928, 7929, 5, 866, 0, 0, 7929, 7930, 3, 204, 102, 0, 7930, 7931, 5, 867, 0, 0, 7931, 7938, 1, 0, 0, 0, 7932, 7933, 5, 87, 0, 0, 7933, 7934, 3, 800, 400, 0, 7934, 7935, 3, 66, 33, 0, 7935, 7938, 1, 0, 0, 0, 7936, 7938, 3, 658, 329, 0, 7937, 7889, 1, 0, 0, 0, 7937, 7891, 1, 0, 0, 0, 7937, 7892, 1, 0, 0, 0, 7937, 7893, 1, 0, 0, 0, 7937, 7896, 1, 0, 0, 0, 7937, 7898, 1, 0, 0, 0, 7937, 7901, 1, 0, 0, 0, 7937, 7912, 1, 0, 0, 0, 7937, 7923, 1, 0, 0, 0, 7937, 7928, 1, 0, 0, 0, 7937, 7932, 1, 0, 0, 0, 7937, 7936, 1, 0, 0, 0, 7938, 7956, 1, 0, 0, 0, 7939, 7940, 10, 4, 0, 0, 7940, 7941, 3, 818, 409, 0, 7941, 7942, 3, 804, 402, 5, 7942, 7955, 1, 0, 0, 0, 7943, 7944, 10, 3, 0, 0, 7944, 7945, 3, 814, 407, 0, 7945, 7946, 3, 804, 402, 4, 7946, 7955, 1, 0, 0, 0, 7947, 7948, 10, 2, 0, 0, 7948, 7949, 3, 816, 408, 0, 7949, 7950, 3, 804, 402, 3, 7950, 7955, 1, 0, 0, 0, 7951, 7952, 10, 14, 0, 0, 7952, 7953, 5, 28, 0, 0, 7953, 7955, 3, 686, 343, 0, 7954, 7939, 1, 0, 0, 0, 7954, 7943, 1, 0, 0, 0, 7954, 7947, 1, 0, 0, 0, 7954, 7951, 1, 0, 0, 0, 7955, 7958, 1, 0, 0, 0, 7956, 7954, 1, 0, 0, 0, 7956, 7957, 1, 0, 0, 0, 7957, 805, 1, 0, 0, 0, 7958, 7956, 1, 0, 0, 0, 7959, 7960, 7, 151, 0, 0, 7960, 807, 1, 0, 0, 0, 7961, 7962, 5, 859, 0, 0, 7962, 7970, 5, 858, 0, 0, 7963, 7964, 5, 860, 0, 0, 7964, 7970, 5, 857, 0, 0, 7965, 7966, 5, 859, 0, 0, 7966, 7967, 5, 857, 0, 0, 7967, 7970, 5, 858, 0, 0, 7968, 7970, 3, 810, 405, 0, 7969, 7961, 1, 0, 0, 0, 7969, 7963, 1, 0, 0, 0, 7969, 7965, 1, 0, 0, 0, 7969, 7968, 1, 0, 0, 0, 7970, 809, 1, 0, 0, 0, 7971, 7972, 5, 859, 0, 0, 7972, 7979, 5, 857, 0, 0, 7973, 7974, 5, 858, 0, 0, 7974, 7979, 5, 857, 0, 0, 7975, 7979, 5, 857, 0, 0, 7976, 7979, 5, 858, 0, 0, 7977, 7979, 5, 859, 0, 0, 7978, 7971, 1, 0, 0, 0, 7978, 7973, 1, 0, 0, 0, 7978, 7975, 1, 0, 0, 0, 7978, 7976, 1, 0, 0, 0, 7978, 7977, 1, 0, 0, 0, 7979, 811, 1, 0, 0, 0, 7980, 7988, 5, 11, 0, 0, 7981, 7982, 5, 863, 0, 0, 7982, 7988, 5, 863, 0, 0, 7983, 7988, 5, 196, 0, 0, 7984, 7988, 5, 124, 0, 0, 7985, 7986, 5, 862, 0, 0, 7986, 7988, 5, 862, 0, 0, 7987, 7980, 1, 0, 0, 0, 7987, 7981, 1, 0, 0, 0, 7987, 7983, 1, 0, 0, 0, 7987, 7984, 1, 0, 0, 0, 7987, 7985, 1, 0, 0, 0, 7988, 813, 1, 0, 0, 0, 7989, 7990, 5, 859, 0, 0, 7990, 7997, 5, 859, 0, 0, 7991, 7992, 5, 858, 0, 0, 7992, 7997, 5, 858, 0, 0, 7993, 7997, 5, 863, 0, 0, 7994, 7997, 5, 864, 0, 0, 7995, 7997, 5, 862, 0, 0, 7996, 7989, 1, 0, 0, 0, 7996, 7991, 1, 0, 0, 0, 7996, 7993, 1, 0, 0, 0, 7996, 7994, 1, 0, 0, 0, 7996, 7995, 1, 0, 0, 0, 7997, 815, 1, 0, 0, 0, 7998, 7999, 7, 152, 0, 0, 7999, 817, 1, 0, 0, 0, 8000, 8001, 5, 854, 0, 0, 8001, 8006, 5, 858, 0, 0, 8002, 8003, 5, 854, 0, 0, 8003, 8004, 5, 858, 0, 0, 8004, 8006, 5, 858, 0, 0, 8005, 8000, 1, 0, 0, 0, 8005, 8002, 1, 0, 0, 0, 8006, 819, 1, 0, 0, 0, 8007, 8008, 7, 153, 0, 0, 8008, 821, 1, 0, 0, 0, 8009, 8010, 7, 154, 0, 0, 8010, 823, 1, 0, 0, 0, 8011, 8012, 7, 155, 0, 0, 8012, 825, 1, 0, 0, 0, 8013, 8014, 7, 156, 0, 0, 8014, 827, 1, 0, 0, 0, 8015, 8016, 7, 157, 0, 0, 8016, 829, 1, 0, 0, 0, 8017, 8018, 7, 158, 0, 0, 8018, 831, 1, 0, 0, 0, 8019, 8020, 7, 159, 0, 0, 8020, 833, 1, 0, 0, 0, 1154, 837, 844, 847, 856, 899, 918, 929, 945, 950, 962, 997, 1007, 1012, 1018, 1023, 1027, 1036, 1039, 1042, 1046, 1053, 1056, 1061, 1069, 1074, 1079, 1082, 1084, 1096, 1099, 1103, 1106, 1110, 1113, 1117, 1120, 1123, 1127, 1130, 1134, 1140, 1144, 1149, 1155, 1162, 1170, 1188, 1195, 1199, 1203, 1207, 1212, 1215, 1218, 1221, 1224, 1230, 1234, 1244, 1248, 1252, 1258, 1263, 1266, 1269, 1271, 1275, 1282, 1286, 1289, 1294, 1298, 1301, 1305, 1308, 1312, 1325, 1328, 1332, 1335, 1339, 1342, 1346, 1349, 1353, 1356, 1359, 1363, 1366, 1370, 1376, 1380, 1392, 1398, 1409, 1414, 1422, 1426, 1431, 1434, 1439, 1449, 1454, 1459, 1465, 1470, 1474, 1476, 1479, 1483, 1487, 1490, 1494, 1498, 1502, 1508, 1511, 1518, 1523, 1529, 1536, 1542, 1550, 1553, 1560, 1563, 1565, 1571, 1577, 1594, 1601, 1608, 1620, 1625, 1628, 1631, 1641, 1654, 1659, 1675, 1683, 1693, 1696, 1702, 1707, 1710, 1716, 1720, 1725, 1731, 1735, 1739, 1742, 1745, 1751, 1755, 1760, 1771, 1774, 1781, 1784, 1788, 1794, 1806, 1809, 1814, 1827, 1834, 1840, 1845, 1849, 1852, 1860, 1868, 1870, 1880, 1884, 1887, 1891, 1896, 1901, 1906, 1910, 1914, 1918, 1922, 1926, 1930, 1935, 1940, 1945, 1951, 1956, 1961, 1966, 1971, 1976, 1982, 1987, 1992, 1997, 2002, 2007, 2012, 2017, 2024, 2029, 2034, 2039, 2043, 2048, 2056, 2061, 2067, 2079, 2086, 2088, 2096, 2101, 2104, 2112, 2118, 2122, 2135, 2147, 2149, 2152, 2160, 2166, 2172, 2185, 2192, 2201, 2206, 2217, 2226, 2231, 2243, 2250, 2259, 2264, 2276, 2283, 2292, 2297, 2304, 2313, 2318, 2320, 2325, 2333, 2342, 2346, 2349, 2353, 2358, 2364, 2370, 2375, 2380, 2385, 2390, 2393, 2398, 2403, 2413, 2417, 2424, 2429, 2432, 2437, 2440, 2444, 2448, 2456, 2475, 2478, 2481, 2485, 2495, 2508, 2521, 2524, 2530, 2533, 2537, 2546, 2549, 2552, 2557, 2561, 2564, 2568, 2572, 2575, 2579, 2582, 2586, 2589, 2595, 2598, 2603, 2611, 2617, 2621, 2625, 2630, 2635, 2642, 2646, 2657, 2665, 2668, 2674, 2680, 2683, 2689, 2695, 2697, 2702, 2708, 2714, 2716, 2720, 2723, 2726, 2732, 2738, 2740, 2745, 2752, 2761, 2764, 2768, 2773, 2783, 2792, 2800, 2803, 2811, 2814, 2821, 2826, 2834, 2850, 2855, 2862, 2881, 2887, 2897, 2909, 2916, 2923, 2938, 2951, 2957, 2963, 2969, 2975, 2981, 2987, 2992, 2999, 3006, 3013, 3018, 3021, 3023, 3032, 3039, 3046, 3053, 3062, 3068, 3072, 3076, 3080, 3086, 3089, 3094, 3101, 3108, 3112, 3117, 3127, 3135, 3141, 3150, 3159, 3168, 3171, 3175, 3184, 3188, 3191, 3194, 3200, 3203, 3206, 3210, 3213, 3216, 3219, 3230, 3233, 3238, 3244, 3249, 3254, 3257, 3261, 3266, 3269, 3274, 3284, 3289, 3295, 3297, 3303, 3305, 3311, 3319, 3324, 3332, 3335, 3340, 3343, 3348, 3356, 3362, 3366, 3368, 3374, 3382, 3387, 3395, 3398, 3403, 3406, 3410, 3413, 3416, 3420, 3423, 3431, 3437, 3441, 3447, 3452, 3456, 3458, 3464, 3468, 3471, 3474, 3477, 3483, 3488, 3491, 3494, 3497, 3500, 3502, 3505, 3509, 3512, 3515, 3523, 3529, 3532, 3534, 3543, 3548, 3555, 3558, 3561, 3565, 3569, 3575, 3579, 3586, 3590, 3593, 3596, 3601, 3608, 3618, 3627, 3636, 3646, 3649, 3653, 3659, 3663, 3666, 3669, 3674, 3677, 3684, 3688, 3691, 3695, 3699, 3702, 3705, 3710, 3716, 3720, 3730, 3736, 3740, 3746, 3750, 3756, 3759, 3771, 3775, 3779, 3787, 3791, 3805, 3810, 3813, 3817, 3820, 3828, 3833, 3836, 3839, 3843, 3846, 3855, 3860, 3869, 3874, 3881, 3888, 3896, 3902, 3910, 3913, 3916, 3923, 3926, 3929, 3936, 3939, 3943, 3949, 3959, 3963, 3972, 3975, 3979, 3985, 3993, 3998, 4002, 4008, 4014, 4017, 4019, 4023, 4032, 4042, 4048, 4053, 4057, 4060, 4063, 4066, 4069, 4072, 4076, 4080, 4088, 4092, 4095, 4097, 4110, 4113, 4120, 4130, 4133, 4138, 4140, 4144, 4152, 4158, 4167, 4180, 4184, 4190, 4195, 4199, 4202, 4206, 4209, 4217, 4220, 4222, 4230, 4242, 4248, 4250, 4256, 4258, 4260, 4266, 4274, 4282, 4286, 4290, 4299, 4304, 4324, 4329, 4335, 4342, 4347, 4356, 4359, 4363, 4367, 4371, 4374, 4377, 4380, 4384, 4388, 4391, 4394, 4397, 4404, 4408, 4423, 4436, 4444, 4454, 4458, 4461, 4467, 4470, 4473, 4482, 4491, 4501, 4505, 4515, 4519, 4530, 4534, 4543, 4552, 4555, 4559, 4564, 4568, 4577, 4580, 4583, 4590, 4596, 4602, 4628, 4631, 4634, 4653, 4655, 4678, 4681, 4684, 4703, 4705, 4719, 4732, 4769, 4774, 4809, 4823, 4830, 4834, 4840, 4848, 4850, 4861, 4871, 4878, 4884, 4892, 4897, 4905, 4913, 4921, 4929, 4935, 4940, 4945, 4950, 4956, 4958, 4969, 4974, 4981, 4983, 4997, 5003, 5008, 5013, 5019, 5026, 5034, 5042, 5047, 5053, 5056, 5064, 5071, 5080, 5083, 5100, 5108, 5116, 5120, 5127, 5133, 5141, 5146, 5153, 5161, 5168, 5173, 5176, 5178, 5184, 5186, 5190, 5192, 5197, 5204, 5209, 5213, 5218, 5222, 5228, 5234, 5239, 5242, 5244, 5250, 5252, 5256, 5258, 5263, 5268, 5275, 5284, 5289, 5298, 5302, 5308, 5313, 5316, 5318, 5324, 5326, 5329, 5336, 5338, 5343, 5350, 5359, 5365, 5367, 5374, 5377, 5389, 5395, 5403, 5406, 5410, 5413, 5417, 5419, 5430, 5433, 5437, 5440, 5443, 5450, 5462, 5465, 5472, 5478, 5488, 5493, 5500, 5505, 5511, 5515, 5519, 5527, 5531, 5535, 5541, 5543, 5555, 5560, 5566, 5572, 5576, 5581, 5583, 5607, 5611, 5614, 5623, 5627, 5636, 5640, 5644, 5650, 5652, 5661, 5671, 5698, 5702, 5707, 5714, 5717, 5723, 5733, 5743, 5753, 5759, 5768, 5774, 5781, 5783, 5791, 5797, 5801, 5818, 5828, 5832, 5836, 5846, 5851, 5923, 5941, 5949, 5955, 5967, 5971, 5982, 5986, 5995, 6003, 6010, 6014, 6021, 6026, 6029, 6032, 6043, 6047, 6051, 6066, 6075, 6078, 6092, 6110, 6123, 6126, 6130, 6133, 6135, 6142, 6149, 6153, 6160, 6167, 6170, 6186, 6189, 6199, 6203, 6209, 6212, 6215, 6220, 6224, 6227, 6234, 6237, 6243, 6279, 6282, 6294, 6297, 6313, 6315, 6319, 6326, 6330, 6337, 6340, 6349, 6352, 6357, 6363, 6365, 6371, 6375, 6381, 6384, 6387, 6400, 6403, 6409, 6412, 6420, 6428, 6434, 6437, 6441, 6455, 6467, 6475, 6479, 6486, 6493, 6498, 6511, 6520, 6528, 6533, 6536, 6541, 6544, 6556, 6561, 6574, 6576, 6581, 6585, 6588, 6590, 6597, 6604, 6607, 6610, 6616, 6620, 6626, 6634, 6643, 6656, 6661, 6669, 6672, 6677, 6682, 6690, 6693, 6701, 6705, 6712, 6718, 6721, 6725, 6738, 6744, 6756, 6759, 6768, 6773, 6794, 6810, 6820, 6825, 6830, 6832, 6835, 6839, 6841, 6848, 6854, 6856, 6859, 6863, 6866, 6879, 6889, 6892, 6895, 6908, 6914, 6917, 6925, 6932, 6952, 6959, 6961, 6968, 6970, 6974, 6981, 6987, 6998, 7004, 7010, 7013, 7017, 7022, 7025, 7029, 7033, 7035, 7040, 7045, 7058, 7061, 7065, 7068, 7071, 7076, 7081, 7087, 7090, 7095, 7098, 7103, 7106, 7110, 7115, 7120, 7125, 7130, 7133, 7138, 7143, 7148, 7154, 7159, 7164, 7169, 7173, 7176, 7181, 7185, 7189, 7197, 7204, 7208, 7213, 7218, 7222, 7224, 7227, 7243, 7253, 7263, 7272, 7281, 7288, 7295, 7303, 7311, 7323, 7330, 7340, 7345, 7348, 7353, 7356, 7378, 7387, 7390, 7395, 7429, 7433, 7441, 7445, 7454, 7462, 7467, 7475, 7480, 7485, 7487, 7496, 7501, 7509, 7514, 7522, 7530, 7533, 7543, 7561, 7564, 7567, 7571, 7584, 7592, 7596, 7601, 7606, 7612, 7617, 7621, 7626, 7631, 7636, 7646, 7649, 7653, 7657, 7664, 7668, 7697, 7705, 7708, 7711, 7714, 7717, 7728, 7742, 7751, 7778, 7790, 7796, 7804, 7809, 7817, 7825, 7838, 7844, 7850, 7865, 7869, 7875, 7884, 7886, 7907, 7919, 7937, 7954, 7956, 7969, 7978, 7987, 7996, 8005] \ No newline at end of file diff --git a/src/lib/mysql/MySqlParser.ts b/src/lib/mysql/MySqlParser.ts index bb2427a..e453ec5 100644 --- a/src/lib/mysql/MySqlParser.ts +++ b/src/lib/mysql/MySqlParser.ts @@ -11,7 +11,10 @@ import { MySqlParserVisitor } from "./MySqlParserVisitor.js"; type int = number; -export class MySqlParser extends antlr.Parser { +import SQLParserBase from '../SQLParserBase'; + + +export class MySqlParser extends SQLParserBase { public static readonly SPACE = 1; public static readonly SPEC_MYSQL_COMMENT = 2; public static readonly COMMENT_INPUT = 3; @@ -3122,14 +3125,14 @@ export class MySqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { this.state = 999; - this.simpleDescribeStatement(); + this.fullDescribeStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { this.state = 1000; - this.fullDescribeStatement(); + this.simpleDescribeStatement(); } break; case 3: @@ -3910,7 +3913,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: - localContext = new CopyCreateTableContext(localContext); + localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 1193; @@ -3938,147 +3941,67 @@ export class MySqlParser extends antlr.Parser { break; } this.state = 1201; - this.tableNameCreate(); - this.state = 1202; - this.createDefinitions(); - this.state = 1213; + (localContext as QueryCreateTableContext)._tb = this.tableNameCreate(); + this.state = 1203; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: { - this.state = 1203; - this.tableOption(); - this.state = 1210; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1205; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 868) { - { - this.state = 1204; - this.match(MySqlParser.COMMA); - } - } - - this.state = 1207; - this.tableOption(); - } - } - } - this.state = 1212; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); - } + this.state = 1202; + (localContext as QueryCreateTableContext)._col = this.createDefinitions(); } break; } - this.state = 1216; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 130) { - { - this.state = 1215; - this.partitionDefinitions(); - } - } - - } - break; - case 2: - localContext = new ColumnCreateTableContext(localContext); - this.enterOuterAlt(localContext, 2); - { - this.state = 1218; - this.match(MySqlParser.KW_CREATE); - this.state = 1220; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 660) { - { - this.state = 1219; - this.match(MySqlParser.KW_TEMPORARY); - } - } - - this.state = 1222; - this.match(MySqlParser.KW_TABLE); - this.state = 1224; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { - case 1: - { - this.state = 1223; - this.ifNotExists(); - } - break; - } - this.state = 1226; - this.tableNameCreate(); - this.state = 1228; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { - case 1: - { - this.state = 1227; - this.createDefinitions(); - } - break; - } - this.state = 1240; + this.state = 1215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 882) { { - this.state = 1230; + this.state = 1205; this.tableOption(); - this.state = 1237; + this.state = 1212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 868 || _la === 882) { { { - this.state = 1232; + this.state = 1207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1231; + this.state = 1206; this.match(MySqlParser.COMMA); } } - this.state = 1234; + this.state = 1209; this.tableOption(); } } - this.state = 1239; + this.state = 1214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1243; + this.state = 1218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1242; + this.state = 1217; this.partitionDefinitions(); } } - this.state = 1246; + this.state = 1221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 1245; + this.state = 1220; _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { this.errorHandler.recoverInline(this); @@ -4090,76 +4013,156 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1249; + this.state = 1224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 1248; + this.state = 1223; this.match(MySqlParser.KW_AS); } } - this.state = 1251; + this.state = 1226; this.selectStatement(); } break; - case 3: - localContext = new QueryCreateTableContext(localContext); - this.enterOuterAlt(localContext, 3); + case 2: + localContext = new CopyCreateTableContext(localContext); + this.enterOuterAlt(localContext, 2); { - this.state = 1253; + this.state = 1228; this.match(MySqlParser.KW_CREATE); - this.state = 1255; + this.state = 1230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1254; + this.state = 1229; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1257; + this.state = 1232; this.match(MySqlParser.KW_TABLE); - this.state = 1259; + this.state = 1234; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1258; + this.state = 1233; this.ifNotExists(); } break; } - this.state = 1261; + this.state = 1236; this.tableNameCreate(); - this.state = 1269; + this.state = 1244; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: { - this.state = 1262; + this.state = 1237; this.match(MySqlParser.KW_LIKE); - this.state = 1263; + this.state = 1238; this.tableName(); } break; case MySqlParser.LR_BRACKET: { - this.state = 1264; + this.state = 1239; this.match(MySqlParser.LR_BRACKET); - this.state = 1265; + this.state = 1240; this.match(MySqlParser.KW_LIKE); - this.state = 1266; + this.state = 1241; this.tableName(); - this.state = 1267; + this.state = 1242; this.match(MySqlParser.RR_BRACKET); } break; default: throw new antlr.NoViableAltException(this); } + } + break; + case 3: + localContext = new ColumnCreateTableContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 1246; + this.match(MySqlParser.KW_CREATE); + this.state = 1248; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 660) { + { + this.state = 1247; + this.match(MySqlParser.KW_TEMPORARY); + } + } + + this.state = 1250; + this.match(MySqlParser.KW_TABLE); + this.state = 1252; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { + case 1: + { + this.state = 1251; + this.ifNotExists(); + } + break; + } + this.state = 1254; + this.tableNameCreate(); + this.state = 1255; + this.createDefinitions(); + this.state = 1266; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { + case 1: + { + this.state = 1256; + this.tableOption(); + this.state = 1263; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 62, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1258; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 868) { + { + this.state = 1257; + this.match(MySqlParser.COMMA); + } + } + + this.state = 1260; + this.tableOption(); + } + } + } + this.state = 1265; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 62, this.context); + } + } + break; + } + this.state = 1269; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 130) { + { + this.state = 1268; + this.partitionDefinitions(); + } + } + } break; } @@ -4809,7 +4812,7 @@ export class MySqlParser extends antlr.Parser { this.match(MySqlParser.KW_VIEW); this.state = 1442; this.viewNameCreate(); - this.state = 1447; + this.state = 1454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { @@ -4817,64 +4820,80 @@ export class MySqlParser extends antlr.Parser { this.state = 1443; this.match(MySqlParser.LR_BRACKET); this.state = 1444; - this.columnNames(); - this.state = 1445; + this.columnNameCreate(); + this.state = 1449; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 868) { + { + { + this.state = 1445; + this.match(MySqlParser.COMMA); + this.state = 1446; + this.columnNameCreate(); + } + } + this.state = 1451; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 1452; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1449; + this.state = 1456; this.match(MySqlParser.KW_AS); - this.state = 1469; + this.state = 1476; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1450; + this.state = 1457; this.match(MySqlParser.LR_BRACKET); - this.state = 1452; + this.state = 1459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 1451; + this.state = 1458; this.withClause(); } } - this.state = 1454; + this.state = 1461; this.selectStatement(); - this.state = 1455; + this.state = 1462; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 1458; + this.state = 1465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 1457; + this.state = 1464; this.withClause(); } } - this.state = 1460; - this.selectStatement(); this.state = 1467; + this.selectStatement(); + this.state = 1474; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1461; + this.state = 1468; this.match(MySqlParser.KW_WITH); - this.state = 1463; + this.state = 1470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 1462; + this.state = 1469; localContext._checkOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -4887,9 +4906,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1465; + this.state = 1472; this.match(MySqlParser.KW_CHECK); - this.state = 1466; + this.state = 1473; this.match(MySqlParser.KW_OPTION); } break; @@ -4918,35 +4937,35 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 52, MySqlParser.RULE_createDatabaseOption); let _la: number; try { - this.state = 1504; + this.state = 1511; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1472; + this.state = 1479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1471; + this.state = 1478; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1474; + this.state = 1481; this.charSet(); - this.state = 1476; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1475; + this.state = 1482; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1480; + this.state = 1487; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -4994,13 +5013,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1478; + this.state = 1485; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1479; + this.state = 1486; this.match(MySqlParser.KW_DEFAULT); } break; @@ -5012,79 +5031,79 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1483; + this.state = 1490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1482; + this.state = 1489; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1485; + this.state = 1492; this.match(MySqlParser.KW_COLLATE); - this.state = 1487; + this.state = 1494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1486; + this.state = 1493; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1489; + this.state = 1496; this.collationName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1491; + this.state = 1498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1490; + this.state = 1497; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1493; + this.state = 1500; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 1495; + this.state = 1502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1494; + this.state = 1501; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1497; + this.state = 1504; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1498; + this.state = 1505; this.match(MySqlParser.KW_READ); - this.state = 1499; + this.state = 1506; this.match(MySqlParser.KW_ONLY); - this.state = 1501; + this.state = 1508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1500; + this.state = 1507; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1503; + this.state = 1510; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -5115,31 +5134,31 @@ export class MySqlParser extends antlr.Parser { let localContext = new CharSetContext(this.context, this.state); this.enterRule(localContext, 54, MySqlParser.RULE_charSet); try { - this.state = 1511; + this.state = 1518; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 1506; + this.state = 1513; this.match(MySqlParser.KW_CHARACTER); - this.state = 1507; + this.state = 1514; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 1508; + this.state = 1515; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHAR: this.enterOuterAlt(localContext, 3); { - this.state = 1509; + this.state = 1516; this.match(MySqlParser.KW_CHAR); - this.state = 1510; + this.state = 1517; this.match(MySqlParser.KW_SET); } break; @@ -5168,7 +5187,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1513; + this.state = 1520; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 678)) { this.errorHandler.recoverInline(this); @@ -5177,14 +5196,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1516; + this.state = 1523; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { case 1: { - this.state = 1514; + this.state = 1521; this.match(MySqlParser.LR_BRACKET); - this.state = 1515; + this.state = 1522; this.match(MySqlParser.RR_BRACKET); } break; @@ -5211,22 +5230,22 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1518; + this.state = 1525; this.match(MySqlParser.KW_DEFINER); - this.state = 1519; + this.state = 1526; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1522; + this.state = 1529; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1520; + this.state = 1527; this.userName(); } break; case 2: { - this.state = 1521; + this.state = 1528; this.currentUserExpression(); } break; @@ -5252,28 +5271,28 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 60, MySqlParser.RULE_scheduleExpression); let _la: number; try { - this.state = 1558; + this.state = 1565; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AT: localContext = new PreciseScheduleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1524; + this.state = 1531; this.match(MySqlParser.KW_AT); - this.state = 1525; + this.state = 1532; this.timestampValue(); - this.state = 1529; + this.state = 1536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1526; + this.state = 1533; this.intervalExpr(); } } - this.state = 1531; + this.state = 1538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5283,74 +5302,74 @@ export class MySqlParser extends antlr.Parser { localContext = new IntervalScheduleContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1532; + this.state = 1539; this.match(MySqlParser.KW_EVERY); - this.state = 1535; + this.state = 1542; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1533; + this.state = 1540; this.decimalLiteral(); } break; case 2: { - this.state = 1534; + this.state = 1541; this.expression(0); } break; } - this.state = 1537; + this.state = 1544; this.intervalType(); - this.state = 1546; + this.state = 1553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 641) { { - this.state = 1538; + this.state = 1545; this.match(MySqlParser.KW_STARTS); - this.state = 1539; + this.state = 1546; (localContext as IntervalScheduleContext)._startTimestamp = this.timestampValue(); - this.state = 1543; + this.state = 1550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1540; + this.state = 1547; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._startIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1545; + this.state = 1552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1556; + this.state = 1563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 379) { { - this.state = 1548; + this.state = 1555; this.match(MySqlParser.KW_ENDS); - this.state = 1549; + this.state = 1556; (localContext as IntervalScheduleContext)._endTimestamp = this.timestampValue(); - this.state = 1553; + this.state = 1560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1550; + this.state = 1557; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._endIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1555; + this.state = 1562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5381,34 +5400,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new TimestampValueContext(this.context, this.state); this.enterRule(localContext, 62, MySqlParser.RULE_timestampValue); try { - this.state = 1564; + this.state = 1571; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1560; + this.state = 1567; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1561; + this.state = 1568; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1562; + this.state = 1569; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1563; + this.state = 1570; this.expression(0); } break; @@ -5434,27 +5453,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1566; + this.state = 1573; this.match(MySqlParser.PLUS); - this.state = 1567; + this.state = 1574; this.match(MySqlParser.KW_INTERVAL); - this.state = 1570; + this.state = 1577; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1568; + this.state = 1575; this.decimalLiteral(); } break; case 2: { - this.state = 1569; + this.state = 1576; this.expression(0); } break; } - this.state = 1572; + this.state = 1579; this.intervalType(); } } @@ -5476,7 +5495,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new IntervalTypeContext(this.context, this.state); this.enterRule(localContext, 66, MySqlParser.RULE_intervalType); try { - this.state = 1587; + this.state = 1594; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_QUARTER: @@ -5489,91 +5508,91 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_MICROSECOND: this.enterOuterAlt(localContext, 1); { - this.state = 1574; + this.state = 1581; this.intervalTypeBase(); } break; case MySqlParser.KW_YEAR: this.enterOuterAlt(localContext, 2); { - this.state = 1575; + this.state = 1582; this.match(MySqlParser.KW_YEAR); } break; case MySqlParser.KW_YEAR_MONTH: this.enterOuterAlt(localContext, 3); { - this.state = 1576; + this.state = 1583; this.match(MySqlParser.KW_YEAR_MONTH); } break; case MySqlParser.KW_DAY_HOUR: this.enterOuterAlt(localContext, 4); { - this.state = 1577; + this.state = 1584; this.match(MySqlParser.KW_DAY_HOUR); } break; case MySqlParser.KW_DAY_MINUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1578; + this.state = 1585; this.match(MySqlParser.KW_DAY_MINUTE); } break; case MySqlParser.KW_DAY_SECOND: this.enterOuterAlt(localContext, 6); { - this.state = 1579; + this.state = 1586; this.match(MySqlParser.KW_DAY_SECOND); } break; case MySqlParser.KW_HOUR_MINUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1580; + this.state = 1587; this.match(MySqlParser.KW_HOUR_MINUTE); } break; case MySqlParser.KW_HOUR_SECOND: this.enterOuterAlt(localContext, 8); { - this.state = 1581; + this.state = 1588; this.match(MySqlParser.KW_HOUR_SECOND); } break; case MySqlParser.KW_MINUTE_SECOND: this.enterOuterAlt(localContext, 9); { - this.state = 1582; + this.state = 1589; this.match(MySqlParser.KW_MINUTE_SECOND); } break; case MySqlParser.KW_SECOND_MICROSECOND: this.enterOuterAlt(localContext, 10); { - this.state = 1583; + this.state = 1590; this.match(MySqlParser.KW_SECOND_MICROSECOND); } break; case MySqlParser.KW_MINUTE_MICROSECOND: this.enterOuterAlt(localContext, 11); { - this.state = 1584; + this.state = 1591; this.match(MySqlParser.KW_MINUTE_MICROSECOND); } break; case MySqlParser.KW_HOUR_MICROSECOND: this.enterOuterAlt(localContext, 12); { - this.state = 1585; + this.state = 1592; this.match(MySqlParser.KW_HOUR_MICROSECOND); } break; case MySqlParser.KW_DAY_MICROSECOND: this.enterOuterAlt(localContext, 13); { - this.state = 1586; + this.state = 1593; this.match(MySqlParser.KW_DAY_MICROSECOND); } break; @@ -5599,31 +5618,31 @@ export class MySqlParser extends antlr.Parser { let localContext = new EnableTypeContext(this.context, this.state); this.enterRule(localContext, 68, MySqlParser.RULE_enableType); try { - this.state = 1594; + this.state = 1601; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1589; + this.state = 1596; this.match(MySqlParser.KW_ENABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1590; + this.state = 1597; this.match(MySqlParser.KW_DISABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1591; + this.state = 1598; this.match(MySqlParser.KW_DISABLE); - this.state = 1592; + this.state = 1599; this.match(MySqlParser.KW_ON); - this.state = 1593; + this.state = 1600; this.match(MySqlParser.KW_SLAVE); } break; @@ -5650,9 +5669,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1596; + this.state = 1603; this.match(MySqlParser.KW_USING); - this.state = 1597; + this.state = 1604; _la = this.tokenStream.LA(1); if(!(_la === 323 || _la === 418)) { this.errorHandler.recoverInline(this); @@ -5682,52 +5701,52 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 72, MySqlParser.RULE_indexOption); let _la: number; try { - this.state = 1621; + this.state = 1628; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_KEY_BLOCK_SIZE: this.enterOuterAlt(localContext, 1); { - this.state = 1599; + this.state = 1606; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 1601; + this.state = 1608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1600; + this.state = 1607; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1603; + this.state = 1610; this.fileSizeLiteral(); } break; case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1604; + this.state = 1611; this.indexType(); } break; case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1605; + this.state = 1612; this.match(MySqlParser.KW_WITH); - this.state = 1606; + this.state = 1613; this.match(MySqlParser.KW_PARSER); - this.state = 1607; + this.state = 1614; localContext._parserName = this.uid(); } break; case MySqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 1608; + this.state = 1615; this.match(MySqlParser.KW_COMMENT); - this.state = 1609; + this.state = 1616; this.match(MySqlParser.STRING_LITERAL); } break; @@ -5735,7 +5754,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_VISIBLE: this.enterOuterAlt(localContext, 5); { - this.state = 1610; + this.state = 1617; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -5749,38 +5768,38 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 6); { - this.state = 1611; + this.state = 1618; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1613; + this.state = 1620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1612; + this.state = 1619; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1615; + this.state = 1622; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1616; + this.state = 1623; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 1618; + this.state = 1625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1617; + this.state = 1624; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1620; + this.state = 1627; this.match(MySqlParser.STRING_LITERAL); } break; @@ -5809,12 +5828,12 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1624; + this.state = 1631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80 || _la === 85 || _la === 126) { { - this.state = 1623; + this.state = 1630; localContext._direction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 85 || _la === 126)) { @@ -5827,9 +5846,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1626; + this.state = 1633; localContext._paramName = this.uid(); - this.state = 1627; + this.state = 1634; this.dataType(); } } @@ -5852,16 +5871,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 76, MySqlParser.RULE_routineOption); let _la: number; try { - this.state = 1652; + this.state = 1659; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_COMMENT: localContext = new RoutineCommentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1629; + this.state = 1636; this.match(MySqlParser.KW_COMMENT); - this.state = 1630; + this.state = 1637; this.match(MySqlParser.STRING_LITERAL); } break; @@ -5869,9 +5888,9 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineLanguageContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1631; + this.state = 1638; this.match(MySqlParser.KW_LANGUAGE); - this.state = 1632; + this.state = 1639; this.match(MySqlParser.KW_SQL); } break; @@ -5880,17 +5899,17 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineBehaviorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1634; + this.state = 1641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1633; + this.state = 1640; this.match(MySqlParser.KW_NOT); } } - this.state = 1636; + this.state = 1643; this.match(MySqlParser.KW_DETERMINISTIC); } break; @@ -5901,42 +5920,42 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineDataContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1647; + this.state = 1654; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONTAINS: { - this.state = 1637; + this.state = 1644; this.match(MySqlParser.KW_CONTAINS); - this.state = 1638; + this.state = 1645; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_NO: { - this.state = 1639; + this.state = 1646; this.match(MySqlParser.KW_NO); - this.state = 1640; + this.state = 1647; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_READS: { - this.state = 1641; + this.state = 1648; this.match(MySqlParser.KW_READS); - this.state = 1642; + this.state = 1649; this.match(MySqlParser.KW_SQL); - this.state = 1643; + this.state = 1650; this.match(MySqlParser.KW_DATA); } break; case MySqlParser.KW_MODIFIES: { - this.state = 1644; + this.state = 1651; this.match(MySqlParser.KW_MODIFIES); - this.state = 1645; + this.state = 1652; this.match(MySqlParser.KW_SQL); - this.state = 1646; + this.state = 1653; this.match(MySqlParser.KW_DATA); } break; @@ -5949,11 +5968,11 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineSecurityContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1649; + this.state = 1656; this.match(MySqlParser.KW_SQL); - this.state = 1650; + this.state = 1657; this.match(MySqlParser.KW_SECURITY); - this.state = 1651; + this.state = 1658; (localContext as RoutineSecurityContext)._context = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -5987,69 +6006,69 @@ export class MySqlParser extends antlr.Parser { let localContext = new ServerOptionContext(this.context, this.state); this.enterRule(localContext, 78, MySqlParser.RULE_serverOption); try { - this.state = 1668; + this.state = 1675; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_HOST: this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1661; this.match(MySqlParser.KW_HOST); - this.state = 1655; + this.state = 1662; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 2); { - this.state = 1656; + this.state = 1663; this.match(MySqlParser.KW_DATABASE); - this.state = 1657; + this.state = 1664; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_USER: this.enterOuterAlt(localContext, 3); { - this.state = 1658; + this.state = 1665; this.match(MySqlParser.KW_USER); - this.state = 1659; + this.state = 1666; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PASSWORD: this.enterOuterAlt(localContext, 4); { - this.state = 1660; + this.state = 1667; this.match(MySqlParser.KW_PASSWORD); - this.state = 1661; + this.state = 1668; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SOCKET: this.enterOuterAlt(localContext, 5); { - this.state = 1662; + this.state = 1669; this.match(MySqlParser.KW_SOCKET); - this.state = 1663; + this.state = 1670; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_OWNER: this.enterOuterAlt(localContext, 6); { - this.state = 1664; + this.state = 1671; this.match(MySqlParser.KW_OWNER); - this.state = 1665; + this.state = 1672; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PORT: this.enterOuterAlt(localContext, 7); { - this.state = 1666; + this.state = 1673; this.match(MySqlParser.KW_PORT); - this.state = 1667; + this.state = 1674; this.decimalLiteral(); } break; @@ -6078,27 +6097,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1670; + this.state = 1677; this.match(MySqlParser.LR_BRACKET); - this.state = 1671; + this.state = 1678; this.createDefinition(); - this.state = 1676; + this.state = 1683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1672; + this.state = 1679; this.match(MySqlParser.COMMA); - this.state = 1673; + this.state = 1680; this.createDefinition(); } } - this.state = 1678; + this.state = 1685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1679; + this.state = 1686; this.match(MySqlParser.RR_BRACKET); } } @@ -6121,22 +6140,22 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 82, MySqlParser.RULE_createDefinition); let _la: number; try { - this.state = 1764; + this.state = 1771; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1681; - this.columnName(); - this.state = 1682; + this.state = 1688; + this.columnNameCreate(); + this.state = 1689; this.columnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1684; + this.state = 1691; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -6145,39 +6164,39 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1686; + this.state = 1693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1685; + this.state = 1692; this.indexName(); } } - this.state = 1689; + this.state = 1696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1688; + this.state = 1695; this.indexType(); } } - this.state = 1691; + this.state = 1698; this.indexColumnNames(); - this.state = 1695; + this.state = 1702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1692; + this.state = 1699; this.indexOption(); } } - this.state = 1697; + this.state = 1704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6186,7 +6205,7 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1698; + this.state = 1705; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -6195,12 +6214,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1700; + this.state = 1707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1699; + this.state = 1706; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -6212,29 +6231,29 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1703; + this.state = 1710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1702; + this.state = 1709; this.indexName(); } } - this.state = 1705; + this.state = 1712; this.indexColumnNames(); - this.state = 1709; + this.state = 1716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1706; + this.state = 1713; this.indexOption(); } } - this.state = 1711; + this.state = 1718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6243,43 +6262,43 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1713; + this.state = 1720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1712; + this.state = 1719; this.constraintSymbol(); } } - this.state = 1715; + this.state = 1722; this.match(MySqlParser.KW_PRIMARY); - this.state = 1716; + this.state = 1723; this.match(MySqlParser.KW_KEY); - this.state = 1718; + this.state = 1725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1717; + this.state = 1724; this.indexType(); } } - this.state = 1720; + this.state = 1727; this.indexColumnNames(); - this.state = 1724; + this.state = 1731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1721; + this.state = 1728; this.indexOption(); } } - this.state = 1726; + this.state = 1733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6288,24 +6307,24 @@ export class MySqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1728; + this.state = 1735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1727; + this.state = 1734; this.constraintSymbol(); } } - this.state = 1730; + this.state = 1737; this.match(MySqlParser.KW_UNIQUE); - this.state = 1732; + this.state = 1739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1731; + this.state = 1738; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -6317,39 +6336,39 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1735; + this.state = 1742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1734; + this.state = 1741; this.indexName(); } } - this.state = 1738; + this.state = 1745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1737; + this.state = 1744; this.indexType(); } } - this.state = 1740; + this.state = 1747; this.indexColumnNames(); - this.state = 1744; + this.state = 1751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1741; + this.state = 1748; this.indexOption(); } } - this.state = 1746; + this.state = 1753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6358,53 +6377,53 @@ export class MySqlParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1748; + this.state = 1755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1747; + this.state = 1754; this.constraintSymbol(); } } - this.state = 1750; + this.state = 1757; this.match(MySqlParser.KW_FOREIGN); - this.state = 1751; + this.state = 1758; this.match(MySqlParser.KW_KEY); - this.state = 1753; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1752; + this.state = 1759; this.indexName(); } } - this.state = 1755; + this.state = 1762; this.indexColumnNames(); - this.state = 1756; + this.state = 1763; this.referenceDefinition(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1758; + this.state = 1765; this.match(MySqlParser.KW_CHECK); - this.state = 1759; + this.state = 1766; this.match(MySqlParser.LR_BRACKET); - this.state = 1760; + this.state = 1767; this.expression(0); - this.state = 1761; + this.state = 1768; this.match(MySqlParser.RR_BRACKET); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1763; + this.state = 1770; this.checkConstraintDefinition(); } break; @@ -6431,40 +6450,40 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1767; + this.state = 1774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1766; + this.state = 1773; this.constraintSymbol(); } } - this.state = 1769; + this.state = 1776; this.match(MySqlParser.KW_CHECK); - this.state = 1770; - this.match(MySqlParser.LR_BRACKET); - this.state = 1771; - this.expression(0); - this.state = 1772; - this.match(MySqlParser.RR_BRACKET); this.state = 1777; + this.match(MySqlParser.LR_BRACKET); + this.state = 1778; + this.expression(0); + this.state = 1779; + this.match(MySqlParser.RR_BRACKET); + this.state = 1784; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1774; + this.state = 1781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1773; + this.state = 1780; this.match(MySqlParser.KW_NOT); } } - this.state = 1776; + this.state = 1783; this.match(MySqlParser.KW_ENFORCED); } break; @@ -6491,14 +6510,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1779; + this.state = 1786; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 1781; + this.state = 1788; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: { - this.state = 1780; + this.state = 1787; localContext._symbol_ = this.uid(); } break; @@ -6526,23 +6545,23 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1783; + this.state = 1790; this.dataType(); - this.state = 1787; + this.state = 1794; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1784; + this.state = 1791; this.columnConstraint(); } } } - this.state = 1789; + this.state = 1796; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); } } } @@ -6565,7 +6584,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 90, MySqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 1833; + this.state = 1840; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NOT: @@ -6574,7 +6593,7 @@ export class MySqlParser extends antlr.Parser { localContext = new NullColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1790; + this.state = 1797; this.nullNotnull(); } break; @@ -6582,9 +6601,9 @@ export class MySqlParser extends antlr.Parser { localContext = new DefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1791; + this.state = 1798; this.match(MySqlParser.KW_DEFAULT); - this.state = 1792; + this.state = 1799; this.defaultValue(); } break; @@ -6592,7 +6611,7 @@ export class MySqlParser extends antlr.Parser { localContext = new VisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1793; + this.state = 1800; this.match(MySqlParser.KW_VISIBLE); } break; @@ -6600,7 +6619,7 @@ export class MySqlParser extends antlr.Parser { localContext = new InvisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1794; + this.state = 1801; this.match(MySqlParser.KW_INVISIBLE); } break; @@ -6609,22 +6628,22 @@ export class MySqlParser extends antlr.Parser { localContext = new AutoIncrementColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1799; + this.state = 1806; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AUTO_INCREMENT: { - this.state = 1795; + this.state = 1802; this.match(MySqlParser.KW_AUTO_INCREMENT); } break; case MySqlParser.KW_ON: { - this.state = 1796; + this.state = 1803; this.match(MySqlParser.KW_ON); - this.state = 1797; + this.state = 1804; this.match(MySqlParser.KW_UPDATE); - this.state = 1798; + this.state = 1805; this.currentTimestamp(); } break; @@ -6638,17 +6657,17 @@ export class MySqlParser extends antlr.Parser { localContext = new PrimaryKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1802; + this.state = 1809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 131) { { - this.state = 1801; + this.state = 1808; this.match(MySqlParser.KW_PRIMARY); } } - this.state = 1804; + this.state = 1811; this.match(MySqlParser.KW_KEY); } break; @@ -6656,14 +6675,14 @@ export class MySqlParser extends antlr.Parser { localContext = new UniqueKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1805; + this.state = 1812; this.match(MySqlParser.KW_UNIQUE); - this.state = 1807; + this.state = 1814; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: { - this.state = 1806; + this.state = 1813; this.match(MySqlParser.KW_KEY); } break; @@ -6674,9 +6693,9 @@ export class MySqlParser extends antlr.Parser { localContext = new CommentColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1809; + this.state = 1816; this.match(MySqlParser.KW_COMMENT); - this.state = 1810; + this.state = 1817; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6684,9 +6703,9 @@ export class MySqlParser extends antlr.Parser { localContext = new FormatColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1811; + this.state = 1818; this.match(MySqlParser.KW_COLUMN_FORMAT); - this.state = 1812; + this.state = 1819; (localContext as FormatColumnConstraintContext)._colformat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 374 || _la === 403)) { @@ -6702,9 +6721,9 @@ export class MySqlParser extends antlr.Parser { localContext = new StorageColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1813; + this.state = 1820; this.match(MySqlParser.KW_STORAGE); - this.state = 1814; + this.state = 1821; (localContext as StorageColumnConstraintContext)._storageval = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { @@ -6720,7 +6739,7 @@ export class MySqlParser extends antlr.Parser { localContext = new ReferenceColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 1815; + this.state = 1822; this.referenceDefinition(); } break; @@ -6728,9 +6747,9 @@ export class MySqlParser extends antlr.Parser { localContext = new CollateColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 1816; + this.state = 1823; this.match(MySqlParser.KW_COLLATE); - this.state = 1817; + this.state = 1824; this.collationName(); } break; @@ -6739,32 +6758,32 @@ export class MySqlParser extends antlr.Parser { localContext = new GeneratedColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 1820; + this.state = 1827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1818; + this.state = 1825; this.match(MySqlParser.KW_GENERATED); - this.state = 1819; + this.state = 1826; this.match(MySqlParser.KW_ALWAYS); } } - this.state = 1822; + this.state = 1829; this.match(MySqlParser.KW_AS); - this.state = 1823; + this.state = 1830; this.match(MySqlParser.LR_BRACKET); - this.state = 1824; + this.state = 1831; this.expression(0); - this.state = 1825; + this.state = 1832; this.match(MySqlParser.RR_BRACKET); - this.state = 1827; + this.state = 1834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 648 || _la === 685) { { - this.state = 1826; + this.state = 1833; _la = this.tokenStream.LA(1); if(!(_la === 648 || _la === 685)) { this.errorHandler.recoverInline(this); @@ -6782,11 +6801,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SerialDefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 1829; + this.state = 1836; this.match(MySqlParser.KW_SERIAL); - this.state = 1830; + this.state = 1837; this.match(MySqlParser.KW_DEFAULT); - this.state = 1831; + this.state = 1838; this.match(MySqlParser.KW_VALUE); } break; @@ -6795,7 +6814,7 @@ export class MySqlParser extends antlr.Parser { localContext = new CheckExprContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 1832; + this.state = 1839; this.checkConstraintDefinition(); } break; @@ -6824,28 +6843,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1835; + this.state = 1842; this.match(MySqlParser.KW_REFERENCES); - this.state = 1836; + this.state = 1843; this.tableName(); - this.state = 1838; + this.state = 1845; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { - this.state = 1837; + this.state = 1844; this.indexColumnNames(); } break; } - this.state = 1842; + this.state = 1849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 1840; + this.state = 1847; this.match(MySqlParser.KW_MATCH); - this.state = 1841; + this.state = 1848; localContext._matchType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 408 || _la === 526 || _la === 597)) { @@ -6858,12 +6877,12 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1845; + this.state = 1852; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1844; + this.state = 1851; this.referenceAction(); } break; @@ -6888,28 +6907,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new ReferenceActionContext(this.context, this.state); this.enterRule(localContext, 94, MySqlParser.RULE_referenceAction); try { - this.state = 1863; + this.state = 1870; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 173, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1847; + this.state = 1854; this.match(MySqlParser.KW_ON); - this.state = 1848; + this.state = 1855; this.match(MySqlParser.KW_DELETE); - this.state = 1849; + this.state = 1856; localContext._onDelete = this.referenceControlType(); - this.state = 1853; + this.state = 1860; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: { - this.state = 1850; + this.state = 1857; this.match(MySqlParser.KW_ON); - this.state = 1851; + this.state = 1858; this.match(MySqlParser.KW_UPDATE); - this.state = 1852; + this.state = 1859; localContext._onUpdate = this.referenceControlType(); } break; @@ -6919,22 +6938,22 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1855; + this.state = 1862; this.match(MySqlParser.KW_ON); - this.state = 1856; + this.state = 1863; this.match(MySqlParser.KW_UPDATE); - this.state = 1857; + this.state = 1864; localContext._onUpdate = this.referenceControlType(); - this.state = 1861; + this.state = 1868; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 173, this.context) ) { case 1: { - this.state = 1858; + this.state = 1865; this.match(MySqlParser.KW_ON); - this.state = 1859; + this.state = 1866; this.match(MySqlParser.KW_DELETE); - this.state = 1860; + this.state = 1867; localContext._onDelete = this.referenceControlType(); } break; @@ -6961,47 +6980,47 @@ export class MySqlParser extends antlr.Parser { let localContext = new ReferenceControlTypeContext(this.context, this.state); this.enterRule(localContext, 96, MySqlParser.RULE_referenceControlType); try { - this.state = 1873; + this.state = 1880; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1865; + this.state = 1872; this.match(MySqlParser.KW_RESTRICT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1866; + this.state = 1873; this.match(MySqlParser.KW_CASCADE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1867; + this.state = 1874; this.match(MySqlParser.KW_SET); - this.state = 1868; + this.state = 1875; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1869; + this.state = 1876; this.match(MySqlParser.KW_NO); - this.state = 1870; + this.state = 1877; this.match(MySqlParser.KW_ACTION); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1871; + this.state = 1878; this.match(MySqlParser.KW_SET); - this.state = 1872; + this.state = 1879; this.match(MySqlParser.KW_DEFAULT); } break; @@ -7026,43 +7045,15 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 98, MySqlParser.RULE_tableOption); let _la: number; try { - this.state = 2060; + this.state = 2067; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: localContext = new TableOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1875; - this.match(MySqlParser.KW_ENGINE); - this.state = 1877; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 857) { - { - this.state = 1876; - this.match(MySqlParser.EQUAL_SYMBOL); - } - } - - this.state = 1880; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { - case 1: - { - this.state = 1879; - this.engineName(); - } - break; - } - } - break; - case 2: - localContext = new TableOptionEngineAttributeContext(localContext); - this.enterOuterAlt(localContext, 2); - { this.state = 1882; - this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); + this.match(MySqlParser.KW_ENGINE); this.state = 1884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -7073,7 +7064,35 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1886; + this.state = 1887; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { + case 1: + { + this.state = 1886; + this.engineName(); + } + break; + } + } + break; + case 2: + localContext = new TableOptionEngineAttributeContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 1889; + this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); + this.state = 1891; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 857) { + { + this.state = 1890; + this.match(MySqlParser.EQUAL_SYMBOL); + } + } + + this.state = 1893; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7081,19 +7100,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionAutoextendSizeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1887; + this.state = 1894; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1889; + this.state = 1896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1888; + this.state = 1895; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1891; + this.state = 1898; this.decimalLiteral(); } break; @@ -7101,19 +7120,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionAutoIncrementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1892; + this.state = 1899; this.match(MySqlParser.KW_AUTO_INCREMENT); - this.state = 1894; + this.state = 1901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1893; + this.state = 1900; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1896; + this.state = 1903; this.decimalLiteral(); } break; @@ -7121,19 +7140,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionAverageContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1897; + this.state = 1904; this.match(MySqlParser.KW_AVG_ROW_LENGTH); - this.state = 1899; + this.state = 1906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1898; + this.state = 1905; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1901; + this.state = 1908; this.decimalLiteral(); } break; @@ -7141,29 +7160,29 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCharsetContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1903; + this.state = 1910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1902; + this.state = 1909; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1905; + this.state = 1912; this.charSet(); - this.state = 1907; + this.state = 1914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1906; + this.state = 1913; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1911; + this.state = 1918; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -7211,13 +7230,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1909; + this.state = 1916; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1910; + this.state = 1917; this.match(MySqlParser.KW_DEFAULT); } break; @@ -7230,7 +7249,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionChecksumContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1913; + this.state = 1920; _la = this.tokenStream.LA(1); if(!(_la === 329 || _la === 522)) { this.errorHandler.recoverInline(this); @@ -7239,17 +7258,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1915; + this.state = 1922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1914; + this.state = 1921; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1917; + this.state = 1924; (localContext as TableOptionChecksumContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -7265,29 +7284,29 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCollateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1919; + this.state = 1926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1918; + this.state = 1925; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1921; + this.state = 1928; this.match(MySqlParser.KW_COLLATE); - this.state = 1923; + this.state = 1930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1922; + this.state = 1929; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1925; + this.state = 1932; this.collationName(); } break; @@ -7295,19 +7314,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCommentContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1926; + this.state = 1933; this.match(MySqlParser.KW_COMMENT); - this.state = 1928; + this.state = 1935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1927; + this.state = 1934; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1930; + this.state = 1937; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7315,19 +7334,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCompressionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1931; + this.state = 1938; this.match(MySqlParser.KW_COMPRESSION); - this.state = 1933; + this.state = 1940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1932; + this.state = 1939; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1935; + this.state = 1942; _la = this.tokenStream.LA(1); if(!(_la === 882 || _la === 889)) { this.errorHandler.recoverInline(this); @@ -7342,19 +7361,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionConnectionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 1936; + this.state = 1943; this.match(MySqlParser.KW_CONNECTION); - this.state = 1938; + this.state = 1945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1937; + this.state = 1944; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1940; + this.state = 1947; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7362,7 +7381,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 1941; + this.state = 1948; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -7371,19 +7390,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1942; + this.state = 1949; this.match(MySqlParser.KW_DIRECTORY); - this.state = 1944; + this.state = 1951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1943; + this.state = 1950; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1946; + this.state = 1953; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7391,19 +7410,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionDelayContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 1947; + this.state = 1954; this.match(MySqlParser.KW_DELAY_KEY_WRITE); - this.state = 1949; + this.state = 1956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1948; + this.state = 1955; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1951; + this.state = 1958; (localContext as TableOptionDelayContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -7419,19 +7438,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionEncryptionContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 1952; + this.state = 1959; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 1954; + this.state = 1961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1953; + this.state = 1960; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1956; + this.state = 1963; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7439,7 +7458,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPageCompressedContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 1957; + this.state = 1964; _la = this.tokenStream.LA(1); if(!(_la === 523 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -7448,17 +7467,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1959; + this.state = 1966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1958; + this.state = 1965; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1961; + this.state = 1968; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -7473,7 +7492,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPageCompressionLevelContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 1962; + this.state = 1969; _la = this.tokenStream.LA(1); if(!(_la === 524 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -7482,17 +7501,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1964; + this.state = 1971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1963; + this.state = 1970; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1966; + this.state = 1973; this.decimalLiteral(); } break; @@ -7500,19 +7519,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionEncryptionKeyIdContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 1967; + this.state = 1974; this.match(MySqlParser.KW_ENCRYPTION_KEY_ID); - this.state = 1969; + this.state = 1976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1968; + this.state = 1975; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1971; + this.state = 1978; this.decimalLiteral(); } break; @@ -7520,21 +7539,21 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 1972; + this.state = 1979; this.match(MySqlParser.KW_INDEX); - this.state = 1973; + this.state = 1980; this.match(MySqlParser.KW_DIRECTORY); - this.state = 1975; + this.state = 1982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1974; + this.state = 1981; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1977; + this.state = 1984; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7542,19 +7561,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionInsertMethodContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 1978; + this.state = 1985; this.match(MySqlParser.KW_INSERT_METHOD); - this.state = 1980; + this.state = 1987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1979; + this.state = 1986; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1982; + this.state = 1989; (localContext as TableOptionInsertMethodContext)._insertMethod = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 502)) { @@ -7570,19 +7589,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionKeyBlockSizeContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 1983; + this.state = 1990; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 1985; + this.state = 1992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1984; + this.state = 1991; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1987; + this.state = 1994; this.fileSizeLiteral(); } break; @@ -7590,19 +7609,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 1988; + this.state = 1995; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 1990; + this.state = 1997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1989; + this.state = 1996; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1992; + this.state = 1999; this.decimalLiteral(); } break; @@ -7610,19 +7629,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 1993; + this.state = 2000; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 1995; + this.state = 2002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1994; + this.state = 2001; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1997; + this.state = 2004; this.decimalLiteral(); } break; @@ -7630,19 +7649,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPackKeysContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 1998; + this.state = 2005; this.match(MySqlParser.KW_PACK_KEYS); - this.state = 2000; + this.state = 2007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1999; + this.state = 2006; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2002; + this.state = 2009; (localContext as TableOptionPackKeysContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -7658,19 +7677,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPasswordContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2003; + this.state = 2010; this.match(MySqlParser.KW_PASSWORD); - this.state = 2005; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2004; + this.state = 2011; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2007; + this.state = 2014; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7678,19 +7697,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionRowFormatContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2008; + this.state = 2015; this.match(MySqlParser.KW_ROW_FORMAT); - this.state = 2010; + this.state = 2017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2009; + this.state = 2016; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2012; + this.state = 2019; (localContext as TableOptionRowFormatContext)._rowFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 342 || _la === 345 || _la === 374 || _la === 403 || _la === 554 || _la === 889)) { @@ -7706,9 +7725,9 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionStartTransactionContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2013; + this.state = 2020; this.match(MySqlParser.KW_START); - this.state = 2014; + this.state = 2021; this.match(MySqlParser.KW_TRANSACTION); } break; @@ -7716,19 +7735,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionSecondaryEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2015; + this.state = 2022; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 2017; + this.state = 2024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2016; + this.state = 2023; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2019; + this.state = 2026; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7736,19 +7755,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionRecalculationContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2020; + this.state = 2027; this.match(MySqlParser.KW_STATS_AUTO_RECALC); - this.state = 2022; + this.state = 2029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2021; + this.state = 2028; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2024; + this.state = 2031; (localContext as TableOptionRecalculationContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -7764,19 +7783,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPersistentContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2025; + this.state = 2032; this.match(MySqlParser.KW_STATS_PERSISTENT); - this.state = 2027; + this.state = 2034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2026; + this.state = 2033; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2029; + this.state = 2036; (localContext as TableOptionPersistentContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -7792,24 +7811,24 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionSamplePageContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2030; + this.state = 2037; this.match(MySqlParser.KW_STATS_SAMPLE_PAGES); - this.state = 2032; + this.state = 2039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2031; + this.state = 2038; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2036; + this.state = 2043; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 2034; + this.state = 2041; this.match(MySqlParser.KW_DEFAULT); } break; @@ -7820,7 +7839,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 2035; + this.state = 2042; this.decimalLiteral(); } break; @@ -7833,16 +7852,16 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2038; + this.state = 2045; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2039; + this.state = 2046; this.tablespaceName(); - this.state = 2041; + this.state = 2048; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { case 1: { - this.state = 2040; + this.state = 2047; this.tablespaceStorage(); } break; @@ -7853,11 +7872,11 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTableTypeContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2043; + this.state = 2050; this.match(MySqlParser.KW_TABLE_TYPE); - this.state = 2044; + this.state = 2051; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2045; + this.state = 2052; this.tableType(); } break; @@ -7865,7 +7884,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 2046; + this.state = 2053; this.tablespaceStorage(); } break; @@ -7873,19 +7892,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTransactionalContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 2047; + this.state = 2054; this.match(MySqlParser.KW_TRANSACTIONAL); - this.state = 2049; + this.state = 2056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2048; + this.state = 2055; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2051; + this.state = 2058; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -7900,23 +7919,23 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionUnionContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 2052; + this.state = 2059; this.match(MySqlParser.KW_UNION); - this.state = 2054; + this.state = 2061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2053; + this.state = 2060; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2056; + this.state = 2063; this.match(MySqlParser.LR_BRACKET); - this.state = 2057; + this.state = 2064; this.tableNames(); - this.state = 2058; + this.state = 2065; this.match(MySqlParser.RR_BRACKET); } break; @@ -7943,7 +7962,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2062; + this.state = 2069; _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 506)) { this.errorHandler.recoverInline(this); @@ -7975,9 +7994,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2064; + this.state = 2071; this.match(MySqlParser.KW_STORAGE); - this.state = 2065; + this.state = 2072; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { this.errorHandler.recoverInline(this); @@ -8009,43 +8028,43 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2067; + this.state = 2074; this.match(MySqlParser.KW_PARTITION); - this.state = 2068; + this.state = 2075; this.match(MySqlParser.KW_BY); - this.state = 2069; + this.state = 2076; this.partitionFunctionDefinition(); - this.state = 2072; + this.state = 2079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 528) { { - this.state = 2070; + this.state = 2077; this.match(MySqlParser.KW_PARTITIONS); - this.state = 2071; + this.state = 2078; localContext._count = this.decimalLiteral(); } } - this.state = 2081; + this.state = 2088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 652) { { - this.state = 2074; + this.state = 2081; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2075; + this.state = 2082; this.match(MySqlParser.KW_BY); - this.state = 2076; + this.state = 2083; this.subpartitionFunctionDefinition(); - this.state = 2079; + this.state = 2086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 653) { { - this.state = 2077; + this.state = 2084; this.match(MySqlParser.KW_SUBPARTITIONS); - this.state = 2078; + this.state = 2085; localContext._subCount = this.decimalLiteral(); } } @@ -8053,32 +8072,32 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2094; + this.state = 2101; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 2083; + this.state = 2090; this.match(MySqlParser.LR_BRACKET); - this.state = 2084; + this.state = 2091; this.partitionDefinition(); - this.state = 2089; + this.state = 2096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2085; + this.state = 2092; this.match(MySqlParser.COMMA); - this.state = 2086; + this.state = 2093; this.partitionDefinition(); } } - this.state = 2091; + this.state = 2098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2092; + this.state = 2099; this.match(MySqlParser.RR_BRACKET); } break; @@ -8104,30 +8123,30 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 106, MySqlParser.RULE_partitionFunctionDefinition); let _la: number; try { - this.state = 2142; + this.state = 2149; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: localContext = new PartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2097; + this.state = 2104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2096; + this.state = 2103; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2099; + this.state = 2106; this.match(MySqlParser.KW_HASH); - this.state = 2100; + this.state = 2107; this.match(MySqlParser.LR_BRACKET); - this.state = 2101; + this.state = 2108; this.expression(0); - this.state = 2102; + this.state = 2109; this.match(MySqlParser.RR_BRACKET); } break; @@ -8135,28 +8154,28 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2105; + this.state = 2112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2104; + this.state = 2111; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2107; + this.state = 2114; this.match(MySqlParser.KW_KEY); - this.state = 2111; + this.state = 2118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2108; + this.state = 2115; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2109; + this.state = 2116; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2110; + this.state = 2117; (localContext as PartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -8169,19 +8188,19 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2113; + this.state = 2120; this.match(MySqlParser.LR_BRACKET); - this.state = 2115; + this.state = 2122; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 2114; + this.state = 2121; this.columnNames(); } break; } - this.state = 2117; + this.state = 2124; this.match(MySqlParser.RR_BRACKET); } break; @@ -8189,30 +8208,30 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionFunctionRangeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2118; + this.state = 2125; this.match(MySqlParser.KW_RANGE); - this.state = 2128; + this.state = 2135; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2119; + this.state = 2126; this.match(MySqlParser.LR_BRACKET); - this.state = 2120; + this.state = 2127; this.expression(0); - this.state = 2121; + this.state = 2128; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2123; + this.state = 2130; this.match(MySqlParser.KW_COLUMNS); - this.state = 2124; + this.state = 2131; this.match(MySqlParser.LR_BRACKET); - this.state = 2125; + this.state = 2132; this.columnNames(); - this.state = 2126; + this.state = 2133; this.match(MySqlParser.RR_BRACKET); } break; @@ -8225,30 +8244,30 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionFunctionListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2130; + this.state = 2137; this.match(MySqlParser.KW_LIST); - this.state = 2140; + this.state = 2147; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2131; + this.state = 2138; this.match(MySqlParser.LR_BRACKET); - this.state = 2132; + this.state = 2139; this.expression(0); - this.state = 2133; + this.state = 2140; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2135; + this.state = 2142; this.match(MySqlParser.KW_COLUMNS); - this.state = 2136; + this.state = 2143; this.match(MySqlParser.LR_BRACKET); - this.state = 2137; + this.state = 2144; this.columnNames(); - this.state = 2138; + this.state = 2145; this.match(MySqlParser.RR_BRACKET); } break; @@ -8278,30 +8297,30 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 108, MySqlParser.RULE_subpartitionFunctionDefinition); let _la: number; try { - this.state = 2165; + this.state = 2172; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: localContext = new SubPartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2145; + this.state = 2152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2144; + this.state = 2151; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2147; + this.state = 2154; this.match(MySqlParser.KW_HASH); - this.state = 2148; + this.state = 2155; this.match(MySqlParser.LR_BRACKET); - this.state = 2149; + this.state = 2156; this.expression(0); - this.state = 2150; + this.state = 2157; this.match(MySqlParser.RR_BRACKET); } break; @@ -8309,28 +8328,28 @@ export class MySqlParser extends antlr.Parser { localContext = new SubPartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2153; + this.state = 2160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2152; + this.state = 2159; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2155; + this.state = 2162; this.match(MySqlParser.KW_KEY); - this.state = 2159; + this.state = 2166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2156; + this.state = 2163; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2157; + this.state = 2164; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2158; + this.state = 2165; (localContext as SubPartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -8343,11 +8362,11 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2161; + this.state = 2168; this.match(MySqlParser.LR_BRACKET); - this.state = 2162; + this.state = 2169; this.columnNames(); - this.state = 2163; + this.state = 2170; this.match(MySqlParser.RR_BRACKET); } break; @@ -8372,85 +8391,85 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 110, MySqlParser.RULE_partitionDefinition); let _la: number; try { - this.state = 2313; + this.state = 2320; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2167; + this.state = 2174; this.match(MySqlParser.KW_PARTITION); - this.state = 2168; + this.state = 2175; this.partitionName(); - this.state = 2169; + this.state = 2176; this.match(MySqlParser.KW_VALUES); - this.state = 2170; + this.state = 2177; this.match(MySqlParser.KW_LESS); - this.state = 2171; - this.match(MySqlParser.KW_THAN); - this.state = 2172; - this.match(MySqlParser.LR_BRACKET); - this.state = 2173; - this.partitionDefinerAtom(); this.state = 2178; + this.match(MySqlParser.KW_THAN); + this.state = 2179; + this.match(MySqlParser.LR_BRACKET); + this.state = 2180; + this.partitionDefinerAtom(); + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2174; + this.state = 2181; this.match(MySqlParser.COMMA); - this.state = 2175; - this.partitionDefinerAtom(); - } - } - this.state = 2180; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 2181; - this.match(MySqlParser.RR_BRACKET); - this.state = 2185; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { - { - { this.state = 2182; - this.partitionOption(); + this.partitionDefinerAtom(); } } this.state = 2187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2199; + this.state = 2188; + this.match(MySqlParser.RR_BRACKET); + this.state = 2192; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { + { + { + this.state = 2189; + this.partitionOption(); + } + } + this.state = 2194; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 2206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2188; + this.state = 2195; this.match(MySqlParser.LR_BRACKET); - this.state = 2189; + this.state = 2196; this.subpartitionDefinition(); - this.state = 2194; + this.state = 2201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2190; + this.state = 2197; this.match(MySqlParser.COMMA); - this.state = 2191; + this.state = 2198; this.subpartitionDefinition(); } } - this.state = 2196; + this.state = 2203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2197; + this.state = 2204; this.match(MySqlParser.RR_BRACKET); } } @@ -8461,58 +8480,58 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2201; + this.state = 2208; this.match(MySqlParser.KW_PARTITION); - this.state = 2202; + this.state = 2209; this.partitionName(); - this.state = 2203; - this.match(MySqlParser.KW_VALUES); - this.state = 2204; - this.match(MySqlParser.KW_LESS); - this.state = 2205; - this.match(MySqlParser.KW_THAN); - this.state = 2206; - this.partitionDefinerAtom(); this.state = 2210; + this.match(MySqlParser.KW_VALUES); + this.state = 2211; + this.match(MySqlParser.KW_LESS); + this.state = 2212; + this.match(MySqlParser.KW_THAN); + this.state = 2213; + this.partitionDefinerAtom(); + this.state = 2217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2207; + this.state = 2214; this.partitionOption(); } } - this.state = 2212; + this.state = 2219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2224; + this.state = 2231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2213; + this.state = 2220; this.match(MySqlParser.LR_BRACKET); - this.state = 2214; + this.state = 2221; this.subpartitionDefinition(); - this.state = 2219; + this.state = 2226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2215; + this.state = 2222; this.match(MySqlParser.COMMA); - this.state = 2216; + this.state = 2223; this.subpartitionDefinition(); } } - this.state = 2221; + this.state = 2228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2222; + this.state = 2229; this.match(MySqlParser.RR_BRACKET); } } @@ -8523,76 +8542,76 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionListAtomContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2226; + this.state = 2233; this.match(MySqlParser.KW_PARTITION); - this.state = 2227; + this.state = 2234; this.partitionName(); - this.state = 2228; + this.state = 2235; this.match(MySqlParser.KW_VALUES); - this.state = 2229; - this.match(MySqlParser.KW_IN); - this.state = 2230; - this.match(MySqlParser.LR_BRACKET); - this.state = 2231; - this.partitionDefinerAtom(); this.state = 2236; + this.match(MySqlParser.KW_IN); + this.state = 2237; + this.match(MySqlParser.LR_BRACKET); + this.state = 2238; + this.partitionDefinerAtom(); + this.state = 2243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2232; + this.state = 2239; this.match(MySqlParser.COMMA); - this.state = 2233; - this.partitionDefinerAtom(); - } - } - this.state = 2238; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 2239; - this.match(MySqlParser.RR_BRACKET); - this.state = 2243; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { - { - { this.state = 2240; - this.partitionOption(); + this.partitionDefinerAtom(); } } this.state = 2245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2257; + this.state = 2246; + this.match(MySqlParser.RR_BRACKET); + this.state = 2250; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { + { + { + this.state = 2247; + this.partitionOption(); + } + } + this.state = 2252; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2246; + this.state = 2253; this.match(MySqlParser.LR_BRACKET); - this.state = 2247; + this.state = 2254; this.subpartitionDefinition(); - this.state = 2252; + this.state = 2259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2248; + this.state = 2255; this.match(MySqlParser.COMMA); - this.state = 2249; + this.state = 2256; this.subpartitionDefinition(); } } - this.state = 2254; + this.state = 2261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2255; + this.state = 2262; this.match(MySqlParser.RR_BRACKET); } } @@ -8603,76 +8622,76 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionListVectorContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2259; + this.state = 2266; this.match(MySqlParser.KW_PARTITION); - this.state = 2260; + this.state = 2267; this.partitionName(); - this.state = 2261; + this.state = 2268; this.match(MySqlParser.KW_VALUES); - this.state = 2262; - this.match(MySqlParser.KW_IN); - this.state = 2263; - this.match(MySqlParser.LR_BRACKET); - this.state = 2264; - this.partitionDefinerVector(); this.state = 2269; + this.match(MySqlParser.KW_IN); + this.state = 2270; + this.match(MySqlParser.LR_BRACKET); + this.state = 2271; + this.partitionDefinerVector(); + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2265; + this.state = 2272; this.match(MySqlParser.COMMA); - this.state = 2266; - this.partitionDefinerVector(); - } - } - this.state = 2271; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 2272; - this.match(MySqlParser.RR_BRACKET); - this.state = 2276; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { - { - { this.state = 2273; - this.partitionOption(); + this.partitionDefinerVector(); } } this.state = 2278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2290; + this.state = 2279; + this.match(MySqlParser.RR_BRACKET); + this.state = 2283; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { + { + { + this.state = 2280; + this.partitionOption(); + } + } + this.state = 2285; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 2297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2279; + this.state = 2286; this.match(MySqlParser.LR_BRACKET); - this.state = 2280; + this.state = 2287; this.subpartitionDefinition(); - this.state = 2285; + this.state = 2292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2281; + this.state = 2288; this.match(MySqlParser.COMMA); - this.state = 2282; + this.state = 2289; this.subpartitionDefinition(); } } - this.state = 2287; + this.state = 2294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2288; + this.state = 2295; this.match(MySqlParser.RR_BRACKET); } } @@ -8683,50 +8702,50 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionSimpleContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2292; + this.state = 2299; this.match(MySqlParser.KW_PARTITION); - this.state = 2293; + this.state = 2300; this.partitionName(); - this.state = 2297; + this.state = 2304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2294; + this.state = 2301; this.partitionOption(); } } - this.state = 2299; + this.state = 2306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2311; + this.state = 2318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2300; + this.state = 2307; this.match(MySqlParser.LR_BRACKET); - this.state = 2301; + this.state = 2308; this.subpartitionDefinition(); - this.state = 2306; + this.state = 2313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2302; + this.state = 2309; this.match(MySqlParser.COMMA); - this.state = 2303; + this.state = 2310; this.subpartitionDefinition(); } } - this.state = 2308; + this.state = 2315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2309; + this.state = 2316; this.match(MySqlParser.RR_BRACKET); } } @@ -8753,27 +8772,27 @@ export class MySqlParser extends antlr.Parser { let localContext = new PartitionDefinerAtomContext(this.context, this.state); this.enterRule(localContext, 112, MySqlParser.RULE_partitionDefinerAtom); try { - this.state = 2318; + this.state = 2325; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2315; + this.state = 2322; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2316; + this.state = 2323; this.expression(0); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2317; + this.state = 2324; this.match(MySqlParser.KW_MAXVALUE); } break; @@ -8800,27 +8819,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2320; + this.state = 2327; this.match(MySqlParser.LR_BRACKET); - this.state = 2321; + this.state = 2328; this.partitionDefinerAtom(); - this.state = 2324; + this.state = 2331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2322; + this.state = 2329; this.match(MySqlParser.COMMA); - this.state = 2323; + this.state = 2330; this.partitionDefinerAtom(); } } - this.state = 2326; + this.state = 2333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 2328; + this.state = 2335; this.match(MySqlParser.RR_BRACKET); } } @@ -8845,21 +8864,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2330; + this.state = 2337; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2331; + this.state = 2338; localContext._logicalName = this.uid(); - this.state = 2335; + this.state = 2342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2332; + this.state = 2339; this.partitionOption(); } } - this.state = 2337; + this.state = 2344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8884,7 +8903,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 118, MySqlParser.RULE_partitionOption); let _la: number; try { - this.state = 2386; + this.state = 2393; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: @@ -8893,39 +8912,39 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2339; + this.state = 2346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2338; + this.state = 2345; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2342; + this.state = 2349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 2341; + this.state = 2348; this.match(MySqlParser.KW_STORAGE); } } - this.state = 2344; + this.state = 2351; this.match(MySqlParser.KW_ENGINE); - this.state = 2346; + this.state = 2353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2345; + this.state = 2352; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2348; + this.state = 2355; this.engineName(); } break; @@ -8933,19 +8952,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionCommentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2349; + this.state = 2356; this.match(MySqlParser.KW_COMMENT); - this.state = 2351; + this.state = 2358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2350; + this.state = 2357; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2353; + this.state = 2360; (localContext as PartitionOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -8953,21 +8972,21 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2354; + this.state = 2361; this.match(MySqlParser.KW_DATA); - this.state = 2355; + this.state = 2362; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2357; + this.state = 2364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2356; + this.state = 2363; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2359; + this.state = 2366; (localContext as PartitionOptionDataDirectoryContext)._dataDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -8975,21 +8994,21 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2360; + this.state = 2367; this.match(MySqlParser.KW_INDEX); - this.state = 2361; + this.state = 2368; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2363; + this.state = 2370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2362; + this.state = 2369; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2365; + this.state = 2372; (localContext as PartitionOptionIndexDirectoryContext)._indexDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -8997,19 +9016,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2366; + this.state = 2373; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 2368; + this.state = 2375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2367; + this.state = 2374; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2370; + this.state = 2377; (localContext as PartitionOptionMaxRowsContext)._maxRows = this.decimalLiteral(); } break; @@ -9017,19 +9036,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2371; + this.state = 2378; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2373; + this.state = 2380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2372; + this.state = 2379; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2375; + this.state = 2382; (localContext as PartitionOptionMinRowsContext)._minRows = this.decimalLiteral(); } break; @@ -9037,19 +9056,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2376; + this.state = 2383; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2378; + this.state = 2385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2377; + this.state = 2384; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2380; + this.state = 2387; this.tablespaceName(); } break; @@ -9057,19 +9076,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionNodeGroupContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2381; + this.state = 2388; this.match(MySqlParser.KW_NODEGROUP); - this.state = 2383; + this.state = 2390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2382; + this.state = 2389; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2385; + this.state = 2392; (localContext as PartitionOptionNodeGroupContext)._nodegroup = this.uid(); } break; @@ -9096,16 +9115,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 120, MySqlParser.RULE_alterDatabase); let _la: number; try { - this.state = 2406; + this.state = 2413; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: localContext = new AlterSimpleDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2388; + this.state = 2395; this.match(MySqlParser.KW_ALTER); - this.state = 2389; + this.state = 2396; (localContext as AlterSimpleDatabaseContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -9115,27 +9134,27 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2391; + this.state = 2398; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2390; + this.state = 2397; this.databaseName(); } break; } - this.state = 2394; + this.state = 2401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2393; + this.state = 2400; this.createDatabaseOption(); } } - this.state = 2396; + this.state = 2403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823); @@ -9145,9 +9164,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterUpgradeNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2398; + this.state = 2405; this.match(MySqlParser.KW_ALTER); - this.state = 2399; + this.state = 2406; (localContext as AlterUpgradeNameContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -9157,15 +9176,15 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2400; + this.state = 2407; this.databaseName(); - this.state = 2401; + this.state = 2408; this.match(MySqlParser.KW_UPGRADE); - this.state = 2402; + this.state = 2409; this.match(MySqlParser.KW_DATA); - this.state = 2403; + this.state = 2410; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2404; + this.state = 2411; this.match(MySqlParser.KW_NAME); } break; @@ -9192,104 +9211,104 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2408; + this.state = 2415; this.match(MySqlParser.KW_ALTER); - this.state = 2410; + this.state = 2417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2409; + this.state = 2416; this.ownerStatement(); } } - this.state = 2412; + this.state = 2419; this.match(MySqlParser.KW_EVENT); - this.state = 2413; + this.state = 2420; localContext._event_name = this.fullId(); - this.state = 2417; + this.state = 2424; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: { - this.state = 2414; + this.state = 2421; this.match(MySqlParser.KW_ON); - this.state = 2415; + this.state = 2422; this.match(MySqlParser.KW_SCHEDULE); - this.state = 2416; + this.state = 2423; this.scheduleExpression(); } break; } - this.state = 2425; + this.state = 2432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2419; + this.state = 2426; this.match(MySqlParser.KW_ON); - this.state = 2420; + this.state = 2427; this.match(MySqlParser.KW_COMPLETION); - this.state = 2422; + this.state = 2429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2421; + this.state = 2428; this.match(MySqlParser.KW_NOT); } } - this.state = 2424; + this.state = 2431; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 2430; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { - case 1: - { - this.state = 2427; - this.match(MySqlParser.KW_RENAME); - this.state = 2428; - this.match(MySqlParser.KW_TO); - this.state = 2429; - localContext._new_event_name = this.fullId(); - } - break; - } - this.state = 2433; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 368 || _la === 375) { - { - this.state = 2432; - this.enableType(); - } - } - this.state = 2437; this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { + case 1: + { + this.state = 2434; + this.match(MySqlParser.KW_RENAME); + this.state = 2435; + this.match(MySqlParser.KW_TO); + this.state = 2436; + localContext._new_event_name = this.fullId(); + } + break; + } + this.state = 2440; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 368 || _la === 375) { + { + this.state = 2439; + this.enableType(); + } + } + + this.state = 2444; + this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 2435; + this.state = 2442; this.match(MySqlParser.KW_COMMENT); - this.state = 2436; + this.state = 2443; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2441; + this.state = 2448; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2439; + this.state = 2446; this.match(MySqlParser.KW_DO); - this.state = 2440; + this.state = 2447; this.routineBody(); } break; @@ -9317,23 +9336,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2443; + this.state = 2450; this.match(MySqlParser.KW_ALTER); - this.state = 2444; + this.state = 2451; this.match(MySqlParser.KW_FUNCTION); - this.state = 2445; + this.state = 2452; this.functionName(); - this.state = 2449; + this.state = 2456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2446; + this.state = 2453; this.routineOption(); } } - this.state = 2451; + this.state = 2458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9359,17 +9378,17 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2452; + this.state = 2459; this.match(MySqlParser.KW_ALTER); - this.state = 2453; + this.state = 2460; this.match(MySqlParser.KW_INSTANCE); - this.state = 2454; + this.state = 2461; this.match(MySqlParser.KW_ROTATE); - this.state = 2455; + this.state = 2462; this.match(MySqlParser.KW_INNODB); - this.state = 2456; + this.state = 2463; this.match(MySqlParser.KW_MASTER); - this.state = 2457; + this.state = 2464; this.match(MySqlParser.KW_KEY); } } @@ -9394,65 +9413,65 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2459; + this.state = 2466; this.match(MySqlParser.KW_ALTER); - this.state = 2460; + this.state = 2467; this.match(MySqlParser.KW_LOGFILE); - this.state = 2461; + this.state = 2468; this.match(MySqlParser.KW_GROUP); - this.state = 2462; + this.state = 2469; localContext._logfileGroupName = this.uid(); - this.state = 2463; + this.state = 2470; this.match(MySqlParser.KW_ADD); - this.state = 2464; - this.match(MySqlParser.KW_UNDOFILE); - this.state = 2465; - this.match(MySqlParser.STRING_LITERAL); this.state = 2471; + this.match(MySqlParser.KW_UNDOFILE); + this.state = 2472; + this.match(MySqlParser.STRING_LITERAL); + this.state = 2478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2466; + this.state = 2473; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2468; + this.state = 2475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2467; + this.state = 2474; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2470; + this.state = 2477; this.fileSizeLiteral(); } } - this.state = 2474; + this.state = 2481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2473; + this.state = 2480; this.match(MySqlParser.KW_WAIT); } } - this.state = 2476; + this.state = 2483; this.match(MySqlParser.KW_ENGINE); - this.state = 2478; + this.state = 2485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2477; + this.state = 2484; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2480; + this.state = 2487; this.engineName(); } } @@ -9477,23 +9496,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2482; + this.state = 2489; this.match(MySqlParser.KW_ALTER); - this.state = 2483; + this.state = 2490; this.match(MySqlParser.KW_PROCEDURE); - this.state = 2484; + this.state = 2491; localContext._proc_name = this.fullId(); - this.state = 2488; + this.state = 2495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2485; + this.state = 2492; this.routineOption(); } } - this.state = 2490; + this.state = 2497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9520,35 +9539,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2491; + this.state = 2498; this.match(MySqlParser.KW_ALTER); - this.state = 2492; + this.state = 2499; this.match(MySqlParser.KW_SERVER); - this.state = 2493; + this.state = 2500; localContext._serverName = this.uid(); - this.state = 2494; - this.match(MySqlParser.KW_OPTIONS); - this.state = 2495; - this.match(MySqlParser.LR_BRACKET); - this.state = 2496; - this.serverOption(); this.state = 2501; + this.match(MySqlParser.KW_OPTIONS); + this.state = 2502; + this.match(MySqlParser.LR_BRACKET); + this.state = 2503; + this.serverOption(); + this.state = 2508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2497; + this.state = 2504; this.match(MySqlParser.COMMA); - this.state = 2498; + this.state = 2505; this.serverOption(); } } - this.state = 2503; + this.state = 2510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2504; + this.state = 2511; this.match(MySqlParser.RR_BRACKET); } } @@ -9574,60 +9593,60 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2506; + this.state = 2513; this.match(MySqlParser.KW_ALTER); - this.state = 2507; + this.state = 2514; this.match(MySqlParser.KW_TABLE); - this.state = 2508; + this.state = 2515; this.tableName(); - this.state = 2517; + this.state = 2524; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { case 1: { - this.state = 2509; + this.state = 2516; this.alterOption(); - this.state = 2514; + this.state = 2521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2510; + this.state = 2517; this.match(MySqlParser.COMMA); - this.state = 2511; + this.state = 2518; this.alterOption(); } } - this.state = 2516; + this.state = 2523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2526; + this.state = 2533; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: { - this.state = 2519; + this.state = 2526; this.alterPartitionSpecification(); - this.state = 2523; + this.state = 2530; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2520; + this.state = 2527; this.alterPartitionSpecification(); } } } - this.state = 2525; + this.state = 2532; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); } } break; @@ -9655,23 +9674,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2528; + this.state = 2535; this.match(MySqlParser.KW_ALTER); - this.state = 2530; + this.state = 2537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 2529; + this.state = 2536; this.match(MySqlParser.KW_UNDO); } } - this.state = 2532; + this.state = 2539; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2533; + this.state = 2540; this.tablespaceName(); - this.state = 2534; + this.state = 2541; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51)) { this.errorHandler.recoverInline(this); @@ -9680,86 +9699,86 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2535; - this.match(MySqlParser.KW_DATAFILE); - this.state = 2536; - this.match(MySqlParser.STRING_LITERAL); this.state = 2542; + this.match(MySqlParser.KW_DATAFILE); + this.state = 2543; + this.match(MySqlParser.STRING_LITERAL); + this.state = 2549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2537; + this.state = 2544; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2539; + this.state = 2546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2538; + this.state = 2545; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2541; + this.state = 2548; this.fileSizeLiteral(); } } - this.state = 2545; + this.state = 2552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2544; + this.state = 2551; this.match(MySqlParser.KW_WAIT); } } - this.state = 2550; + this.state = 2557; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: { - this.state = 2547; + this.state = 2554; this.match(MySqlParser.KW_RENAME); - this.state = 2548; + this.state = 2555; this.match(MySqlParser.KW_TO); - this.state = 2549; + this.state = 2556; this.tablespaceNameCreate(); } break; } - this.state = 2557; + this.state = 2564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2552; + this.state = 2559; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 2554; + this.state = 2561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2553; + this.state = 2560; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2556; + this.state = 2563; this.fileSizeLiteral(); } } - this.state = 2561; + this.state = 2568; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2559; + this.state = 2566; this.match(MySqlParser.KW_SET); - this.state = 2560; + this.state = 2567; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 81)) { this.errorHandler.recoverInline(this); @@ -9771,35 +9790,13 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 2568; + this.state = 2575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 376) { - { - this.state = 2563; - this.match(MySqlParser.KW_ENCRYPTION); - this.state = 2565; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 857) { - { - this.state = 2564; - this.match(MySqlParser.EQUAL_SYMBOL); - } - } - - this.state = 2567; - this.match(MySqlParser.STRING_LITERAL); - } - } - - this.state = 2575; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 380) { { this.state = 2570; - this.match(MySqlParser.KW_ENGINE); + this.match(MySqlParser.KW_ENCRYPTION); this.state = 2572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -9811,17 +9808,17 @@ export class MySqlParser extends antlr.Parser { } this.state = 2574; - this.engineName(); + this.match(MySqlParser.STRING_LITERAL); } } this.state = 2582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 825) { + if (_la === 380) { { this.state = 2577; - this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); + this.match(MySqlParser.KW_ENGINE); this.state = 2579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -9833,6 +9830,28 @@ export class MySqlParser extends antlr.Parser { } this.state = 2581; + this.engineName(); + } + } + + this.state = 2589; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 825) { + { + this.state = 2584; + this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); + this.state = 2586; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 857) { + { + this.state = 2585; + this.match(MySqlParser.EQUAL_SYMBOL); + } + } + + this.state = 2588; this.match(MySqlParser.STRING_LITERAL); } } @@ -9860,18 +9879,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2584; + this.state = 2591; this.match(MySqlParser.KW_ALTER); - this.state = 2588; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2585; + this.state = 2592; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2586; + this.state = 2593; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2587; + this.state = 2594; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -9884,26 +9903,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2591; + this.state = 2598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2590; + this.state = 2597; this.ownerStatement(); } } - this.state = 2596; + this.state = 2603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 2593; + this.state = 2600; this.match(MySqlParser.KW_SQL); - this.state = 2594; + this.state = 2601; this.match(MySqlParser.KW_SECURITY); - this.state = 2595; + this.state = 2602; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -9916,41 +9935,41 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2598; + this.state = 2605; this.match(MySqlParser.KW_VIEW); - this.state = 2599; + this.state = 2606; this.viewName(); - this.state = 2604; + this.state = 2611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2600; + this.state = 2607; this.match(MySqlParser.LR_BRACKET); - this.state = 2601; + this.state = 2608; this.columnNames(); - this.state = 2602; + this.state = 2609; this.match(MySqlParser.RR_BRACKET); } } - this.state = 2606; + this.state = 2613; this.match(MySqlParser.KW_AS); - this.state = 2607; - this.selectStatement(); this.state = 2614; + this.selectStatement(); + this.state = 2621; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2608; + this.state = 2615; this.match(MySqlParser.KW_WITH); - this.state = 2610; + this.state = 2617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 2609; + this.state = 2616; localContext._checkOpt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -9963,9 +9982,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2612; + this.state = 2619; this.match(MySqlParser.KW_CHECK); - this.state = 2613; + this.state = 2620; this.match(MySqlParser.KW_OPTION); } break; @@ -9992,40 +10011,40 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 2880; + this.state = 2887; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: localContext = new AlterByTableOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2616; - this.tableOption(); this.state = 2623; + this.tableOption(); + this.state = 2630; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 305, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 306, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2618; + this.state = 2625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 2617; + this.state = 2624; this.match(MySqlParser.COMMA); } } - this.state = 2620; + this.state = 2627; this.tableOption(); } } } - this.state = 2625; + this.state = 2632; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 305, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 306, this.context); } } break; @@ -10033,36 +10052,36 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2626; + this.state = 2633; this.match(MySqlParser.KW_ADD); - this.state = 2628; + this.state = 2635; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2627; + this.state = 2634; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2630; + this.state = 2637; this.columnName(); - this.state = 2631; + this.state = 2638; this.columnDefinition(); - this.state = 2635; + this.state = 2642; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2632; + this.state = 2639; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2633; + this.state = 2640; this.match(MySqlParser.KW_AFTER); - this.state = 2634; + this.state = 2641; this.columnName(); } break; @@ -10148,43 +10167,43 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddColumnsContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2637; + this.state = 2644; this.match(MySqlParser.KW_ADD); - this.state = 2639; + this.state = 2646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 29) { { - this.state = 2638; + this.state = 2645; this.match(MySqlParser.KW_COLUMN); } } - this.state = 2641; + this.state = 2648; this.match(MySqlParser.LR_BRACKET); - this.state = 2642; + this.state = 2649; this.columnName(); - this.state = 2643; - this.columnDefinition(); this.state = 2650; + this.columnDefinition(); + this.state = 2657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2644; + this.state = 2651; this.match(MySqlParser.COMMA); - this.state = 2645; + this.state = 2652; this.columnName(); - this.state = 2646; + this.state = 2653; this.columnDefinition(); } } - this.state = 2652; + this.state = 2659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2653; + this.state = 2660; this.match(MySqlParser.RR_BRACKET); } break; @@ -10192,9 +10211,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddIndexContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2655; + this.state = 2662; this.match(MySqlParser.KW_ADD); - this.state = 2656; + this.state = 2663; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -10203,43 +10222,43 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2658; + this.state = 2665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2657; + this.state = 2664; this.indexName(); } } - this.state = 2661; + this.state = 2668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2660; + this.state = 2667; this.indexType(); } } - this.state = 2663; + this.state = 2670; this.indexColumnNames(); - this.state = 2667; + this.state = 2674; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 312, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 313, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2664; + this.state = 2671; this.indexOption(); } } } - this.state = 2669; + this.state = 2676; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 312, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 313, this.context); } } break; @@ -10247,9 +10266,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddSpecialIndexContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2670; + this.state = 2677; this.match(MySqlParser.KW_ADD); - this.state = 2671; + this.state = 2678; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -10258,12 +10277,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2673; + this.state = 2680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2672; + this.state = 2679; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -10275,33 +10294,33 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2676; + this.state = 2683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2675; + this.state = 2682; this.indexName(); } } - this.state = 2678; + this.state = 2685; this.indexColumnNames(); - this.state = 2682; + this.state = 2689; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 315, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 316, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2679; + this.state = 2686; this.indexOption(); } } } - this.state = 2684; + this.state = 2691; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 315, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 316, this.context); } } break; @@ -10309,21 +10328,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2685; + this.state = 2692; this.match(MySqlParser.KW_ADD); - this.state = 2690; + this.state = 2697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2686; + this.state = 2693; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2688; + this.state = 2695; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 2687; + this.state = 2694; (localContext as AlterByAddPrimaryKeyContext)._symbol_ = this.uid(); } break; @@ -10331,37 +10350,37 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2692; + this.state = 2699; this.match(MySqlParser.KW_PRIMARY); - this.state = 2693; + this.state = 2700; this.match(MySqlParser.KW_KEY); - this.state = 2695; + this.state = 2702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2694; + this.state = 2701; this.indexType(); } } - this.state = 2697; + this.state = 2704; this.indexColumnNames(); - this.state = 2701; + this.state = 2708; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 319, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 320, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2698; + this.state = 2705; this.indexOption(); } } } - this.state = 2703; + this.state = 2710; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 319, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 320, this.context); } } break; @@ -10369,21 +10388,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddUniqueKeyContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2704; + this.state = 2711; this.match(MySqlParser.KW_ADD); - this.state = 2709; + this.state = 2716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2705; + this.state = 2712; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2707; + this.state = 2714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2706; + this.state = 2713; (localContext as AlterByAddUniqueKeyContext)._symbol_ = this.uid(); } } @@ -10391,14 +10410,14 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2711; + this.state = 2718; this.match(MySqlParser.KW_UNIQUE); - this.state = 2713; + this.state = 2720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2712; + this.state = 2719; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -10410,43 +10429,43 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2716; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2715; + this.state = 2722; this.indexName(); } } - this.state = 2719; + this.state = 2726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2718; + this.state = 2725; this.indexType(); } } - this.state = 2721; + this.state = 2728; this.indexColumnNames(); - this.state = 2725; + this.state = 2732; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2722; + this.state = 2729; this.indexOption(); } } } - this.state = 2727; + this.state = 2734; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); } } break; @@ -10454,21 +10473,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddForeignKeyContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2728; + this.state = 2735; this.match(MySqlParser.KW_ADD); - this.state = 2733; + this.state = 2740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2729; + this.state = 2736; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2731; + this.state = 2738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2730; + this.state = 2737; (localContext as AlterByAddForeignKeyContext)._symbol_ = this.uid(); } } @@ -10476,23 +10495,23 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2735; + this.state = 2742; this.match(MySqlParser.KW_FOREIGN); - this.state = 2736; + this.state = 2743; this.match(MySqlParser.KW_KEY); - this.state = 2738; + this.state = 2745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2737; + this.state = 2744; this.indexName(); } } - this.state = 2740; + this.state = 2747; this.indexColumnNames(); - this.state = 2741; + this.state = 2748; this.referenceDefinition(); } break; @@ -10500,14 +10519,14 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2743; + this.state = 2750; this.match(MySqlParser.KW_ADD); - this.state = 2745; + this.state = 2752; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2744; + this.state = 2751; this.checkConstraintDefinition(); } break; @@ -10518,9 +10537,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropConstraintCheckContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2747; + this.state = 2754; this.match(MySqlParser.KW_DROP); - this.state = 2748; + this.state = 2755; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -10529,7 +10548,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2749; + this.state = 2756; (localContext as AlterByDropConstraintCheckContext)._symbol_ = this.uid(); } break; @@ -10537,9 +10556,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAlterCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2750; + this.state = 2757; this.match(MySqlParser.KW_ALTER); - this.state = 2751; + this.state = 2758; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -10548,24 +10567,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2752; + this.state = 2759; (localContext as AlterByAlterCheckTableConstraintContext)._symbol_ = this.uid(); - this.state = 2754; + this.state = 2761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2753; + this.state = 2760; this.match(MySqlParser.KW_NOT); } } - this.state = 2757; + this.state = 2764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 2756; + this.state = 2763; this.match(MySqlParser.KW_ENFORCED); } } @@ -10576,19 +10595,19 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterBySetAlgorithmContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2759; + this.state = 2766; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2761; + this.state = 2768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2760; + this.state = 2767; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2763; + this.state = 2770; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430 || _la === 434)) { this.errorHandler.recoverInline(this); @@ -10603,38 +10622,38 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAlterColumnDefaultContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2764; + this.state = 2771; this.match(MySqlParser.KW_ALTER); - this.state = 2766; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { - case 1: - { - this.state = 2765; - this.match(MySqlParser.KW_COLUMN); - } - break; - } - this.state = 2768; - this.columnName(); - this.state = 2776; + this.state = 2773; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { case 1: { - this.state = 2769; + this.state = 2772; + this.match(MySqlParser.KW_COLUMN); + } + break; + } + this.state = 2775; + this.columnName(); + this.state = 2783; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { + case 1: + { + this.state = 2776; this.match(MySqlParser.KW_SET); - this.state = 2770; + this.state = 2777; this.match(MySqlParser.KW_DEFAULT); - this.state = 2771; + this.state = 2778; this.defaultValue(); } break; case 2: { - this.state = 2772; + this.state = 2779; this.match(MySqlParser.KW_SET); - this.state = 2773; + this.state = 2780; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -10647,9 +10666,9 @@ export class MySqlParser extends antlr.Parser { break; case 3: { - this.state = 2774; + this.state = 2781; this.match(MySqlParser.KW_DROP); - this.state = 2775; + this.state = 2782; this.match(MySqlParser.KW_DEFAULT); } break; @@ -10660,13 +10679,13 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAlterIndexVisibilityContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2778; + this.state = 2785; this.match(MySqlParser.KW_ALTER); - this.state = 2779; + this.state = 2786; this.match(MySqlParser.KW_INDEX); - this.state = 2780; + this.state = 2787; this.indexName(); - this.state = 2781; + this.state = 2788; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -10681,38 +10700,38 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByChangeColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2783; + this.state = 2790; this.match(MySqlParser.KW_CHANGE); - this.state = 2785; + this.state = 2792; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 2784; + this.state = 2791; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2787; + this.state = 2794; (localContext as AlterByChangeColumnContext)._oldColumn = this.columnName(); - this.state = 2788; + this.state = 2795; (localContext as AlterByChangeColumnContext)._newColumn = this.columnNameCreate(); - this.state = 2789; + this.state = 2796; this.columnDefinition(); - this.state = 2793; + this.state = 2800; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2790; + this.state = 2797; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2791; + this.state = 2798; this.match(MySqlParser.KW_AFTER); - this.state = 2792; + this.state = 2799; this.columnName(); } break; @@ -10798,42 +10817,42 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDefaultCharsetContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2796; + this.state = 2803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2795; + this.state = 2802; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2798; + this.state = 2805; this.match(MySqlParser.KW_CHARACTER); - this.state = 2799; + this.state = 2806; this.match(MySqlParser.KW_SET); - this.state = 2800; - this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2801; - this.charsetName(); this.state = 2807; + this.match(MySqlParser.EQUAL_SYMBOL); + this.state = 2808; + this.charsetName(); + this.state = 2814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2802; + this.state = 2809; this.match(MySqlParser.KW_COLLATE); - this.state = 2804; + this.state = 2811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2803; + this.state = 2810; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2806; + this.state = 2813; this.collationName(); } } @@ -10844,40 +10863,40 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByConvertCharsetContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2809; + this.state = 2816; this.match(MySqlParser.KW_CONVERT); - this.state = 2810; + this.state = 2817; this.match(MySqlParser.KW_TO); - this.state = 2814; + this.state = 2821; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARSET: { - this.state = 2811; + this.state = 2818; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHARACTER: { - this.state = 2812; + this.state = 2819; this.match(MySqlParser.KW_CHARACTER); - this.state = 2813; + this.state = 2820; this.match(MySqlParser.KW_SET); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2816; + this.state = 2823; this.charsetName(); - this.state = 2819; + this.state = 2826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2817; + this.state = 2824; this.match(MySqlParser.KW_COLLATE); - this.state = 2818; + this.state = 2825; this.collationName(); } } @@ -10888,7 +10907,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterKeysContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2821; + this.state = 2828; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -10897,7 +10916,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2822; + this.state = 2829; this.match(MySqlParser.KW_KEYS); } break; @@ -10905,7 +10924,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterTablespaceOptionContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2823; + this.state = 2830; _la = this.tokenStream.LA(1); if(!(_la === 369 || _la === 425)) { this.errorHandler.recoverInline(this); @@ -10914,7 +10933,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2824; + this.state = 2831; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -10922,19 +10941,19 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2825; + this.state = 2832; this.match(MySqlParser.KW_DROP); - this.state = 2827; + this.state = 2834; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: { - this.state = 2826; + this.state = 2833; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2829; + this.state = 2836; this.columnName(); } break; @@ -10942,9 +10961,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropIndexContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2830; + this.state = 2837; this.match(MySqlParser.KW_DROP); - this.state = 2831; + this.state = 2838; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -10953,7 +10972,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2832; + this.state = 2839; this.indexName(); } break; @@ -10961,11 +10980,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2833; + this.state = 2840; this.match(MySqlParser.KW_DROP); - this.state = 2834; + this.state = 2841; this.match(MySqlParser.KW_PRIMARY); - this.state = 2835; + this.state = 2842; this.match(MySqlParser.KW_KEY); } break; @@ -10973,13 +10992,13 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropForeignKeyContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2836; + this.state = 2843; this.match(MySqlParser.KW_DROP); - this.state = 2837; + this.state = 2844; this.match(MySqlParser.KW_FOREIGN); - this.state = 2838; + this.state = 2845; this.match(MySqlParser.KW_KEY); - this.state = 2839; + this.state = 2846; (localContext as AlterByDropForeignKeyContext)._fk_symbol = this.uid(); } break; @@ -10987,7 +11006,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByForceContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2840; + this.state = 2847; this.match(MySqlParser.KW_FORCE); } break; @@ -10995,19 +11014,19 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByLockContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2841; + this.state = 2848; this.match(MySqlParser.KW_LOCK); - this.state = 2843; + this.state = 2850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2842; + this.state = 2849; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2845; + this.state = 2852; (localContext as AlterByLockContext)._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -11023,36 +11042,36 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByModifyColumnContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2846; + this.state = 2853; this.match(MySqlParser.KW_MODIFY); - this.state = 2848; + this.state = 2855; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: { - this.state = 2847; + this.state = 2854; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2850; + this.state = 2857; this.columnName(); - this.state = 2851; + this.state = 2858; this.columnDefinition(); - this.state = 2855; + this.state = 2862; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2852; + this.state = 2859; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2853; + this.state = 2860; this.match(MySqlParser.KW_AFTER); - this.state = 2854; + this.state = 2861; this.columnName(); } break; @@ -11138,11 +11157,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByOrderContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2857; + this.state = 2864; this.match(MySqlParser.KW_ORDER); - this.state = 2858; + this.state = 2865; this.match(MySqlParser.KW_BY); - this.state = 2859; + this.state = 2866; this.columnNames(); } break; @@ -11150,15 +11169,15 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRenameColumnContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2860; + this.state = 2867; this.match(MySqlParser.KW_RENAME); - this.state = 2861; + this.state = 2868; this.match(MySqlParser.KW_COLUMN); - this.state = 2862; + this.state = 2869; (localContext as AlterByRenameColumnContext)._olcdColumn = this.columnName(); - this.state = 2863; + this.state = 2870; this.match(MySqlParser.KW_TO); - this.state = 2864; + this.state = 2871; (localContext as AlterByRenameColumnContext)._newColumn = this.columnNameCreate(); } break; @@ -11166,9 +11185,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRenameIndexContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2866; + this.state = 2873; this.match(MySqlParser.KW_RENAME); - this.state = 2867; + this.state = 2874; (localContext as AlterByRenameIndexContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -11178,11 +11197,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2868; + this.state = 2875; this.indexName(); - this.state = 2869; + this.state = 2876; this.match(MySqlParser.KW_TO); - this.state = 2870; + this.state = 2877; this.indexNameCreate(); } break; @@ -11190,14 +11209,14 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRenameContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2872; + this.state = 2879; this.match(MySqlParser.KW_RENAME); - this.state = 2874; + this.state = 2881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13 || _la === 176) { { - this.state = 2873; + this.state = 2880; (localContext as AlterByRenameContext)._renameFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 176)) { @@ -11210,7 +11229,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2876; + this.state = 2883; this.tableNameCreate(); } break; @@ -11218,7 +11237,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByValidateContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2877; + this.state = 2884; _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { this.errorHandler.recoverInline(this); @@ -11227,7 +11246,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2878; + this.state = 2885; this.match(MySqlParser.KW_VALIDATION); } break; @@ -11235,7 +11254,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterPartitionContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2879; + this.state = 2886; this.alterPartitionSpecification(); } break; @@ -11260,38 +11279,38 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 142, MySqlParser.RULE_alterPartitionSpecification); let _la: number; try { - this.state = 2980; + this.state = 2987; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ADD: localContext = new AlterByAddPartitionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2882; + this.state = 2889; this.match(MySqlParser.KW_ADD); - this.state = 2883; - this.match(MySqlParser.KW_PARTITION); - this.state = 2884; - this.match(MySqlParser.LR_BRACKET); - this.state = 2885; - this.partitionDefinition(); this.state = 2890; + this.match(MySqlParser.KW_PARTITION); + this.state = 2891; + this.match(MySqlParser.LR_BRACKET); + this.state = 2892; + this.partitionDefinition(); + this.state = 2897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2886; + this.state = 2893; this.match(MySqlParser.COMMA); - this.state = 2887; + this.state = 2894; this.partitionDefinition(); } } - this.state = 2892; + this.state = 2899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2893; + this.state = 2900; this.match(MySqlParser.RR_BRACKET); } break; @@ -11299,11 +11318,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropPartitionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2895; + this.state = 2902; this.match(MySqlParser.KW_DROP); - this.state = 2896; + this.state = 2903; this.match(MySqlParser.KW_PARTITION); - this.state = 2897; + this.state = 2904; this.partitionNames(); } break; @@ -11311,585 +11330,8 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDiscardPartitionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2898; - this.match(MySqlParser.KW_DISCARD); - this.state = 2899; - this.match(MySqlParser.KW_PARTITION); - this.state = 2902; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case MySqlParser.KW_ARRAY: - case MySqlParser.KW_ATTRIBUTE: - case MySqlParser.KW_BUCKETS: - case MySqlParser.KW_CONDITION: - case MySqlParser.KW_CURRENT: - case MySqlParser.KW_CURRENT_USER: - case MySqlParser.KW_DATABASE: - case MySqlParser.KW_DEFAULT: - case MySqlParser.KW_DIAGNOSTICS: - case MySqlParser.KW_EMPTY: - case MySqlParser.KW_ENFORCED: - case MySqlParser.KW_EXCEPT: - case MySqlParser.KW_GROUP: - case MySqlParser.KW_IF: - case MySqlParser.KW_INSERT: - case MySqlParser.KW_LATERAL: - case MySqlParser.KW_LEFT: - case MySqlParser.KW_NUMBER: - case MySqlParser.KW_OPTIONAL: - case MySqlParser.KW_ORDER: - case MySqlParser.KW_PRIMARY: - case MySqlParser.KW_REPEAT: - case MySqlParser.KW_REPLACE: - case MySqlParser.KW_RIGHT: - case MySqlParser.KW_SCHEMA: - case MySqlParser.KW_SKIP_QUERY_REWRITE: - case MySqlParser.KW_STACKED: - case MySqlParser.KW_DATE: - case MySqlParser.KW_TIME: - case MySqlParser.KW_TIMESTAMP: - case MySqlParser.KW_DATETIME: - case MySqlParser.KW_YEAR: - case MySqlParser.KW_BINARY: - case MySqlParser.KW_TEXT: - case MySqlParser.KW_ENUM: - case MySqlParser.KW_SERIAL: - case MySqlParser.KW_JSON_TABLE: - case MySqlParser.KW_JSON_VALUE: - case MySqlParser.KW_NESTED: - case MySqlParser.KW_ORDINALITY: - case MySqlParser.KW_PATH: - case MySqlParser.KW_AVG: - case MySqlParser.KW_BIT_AND: - case MySqlParser.KW_BIT_OR: - case MySqlParser.KW_BIT_XOR: - case MySqlParser.KW_COUNT: - case MySqlParser.KW_CUME_DIST: - case MySqlParser.KW_DENSE_RANK: - case MySqlParser.KW_FIRST_VALUE: - case MySqlParser.KW_GROUP_CONCAT: - case MySqlParser.KW_LAG: - case MySqlParser.KW_LAST_VALUE: - case MySqlParser.KW_LEAD: - case MySqlParser.KW_MAX: - case MySqlParser.KW_MIN: - case MySqlParser.KW_NTILE: - case MySqlParser.KW_NTH_VALUE: - case MySqlParser.KW_PERCENT_RANK: - case MySqlParser.KW_RANK: - case MySqlParser.KW_ROW_NUMBER: - case MySqlParser.KW_STD: - case MySqlParser.KW_STDDEV: - case MySqlParser.KW_STDDEV_POP: - case MySqlParser.KW_STDDEV_SAMP: - case MySqlParser.KW_SUM: - case MySqlParser.KW_VAR_POP: - case MySqlParser.KW_VAR_SAMP: - case MySqlParser.KW_VARIANCE: - case MySqlParser.KW_CURRENT_DATE: - case MySqlParser.KW_CURRENT_TIME: - case MySqlParser.KW_CURRENT_TIMESTAMP: - case MySqlParser.KW_LOCALTIME: - case MySqlParser.KW_CURDATE: - case MySqlParser.KW_CURTIME: - case MySqlParser.KW_DATE_ADD: - case MySqlParser.KW_DATE_SUB: - case MySqlParser.KW_LOCALTIMESTAMP: - case MySqlParser.KW_NOW: - case MySqlParser.KW_POSITION: - case MySqlParser.KW_SUBSTR: - case MySqlParser.KW_SUBSTRING: - case MySqlParser.KW_SYSDATE: - case MySqlParser.KW_TRIM: - case MySqlParser.KW_UTC_DATE: - case MySqlParser.KW_UTC_TIME: - case MySqlParser.KW_UTC_TIMESTAMP: - case MySqlParser.KW_ACCOUNT: - case MySqlParser.KW_ACTION: - case MySqlParser.KW_AFTER: - case MySqlParser.KW_AGGREGATE: - case MySqlParser.KW_ALGORITHM: - case MySqlParser.KW_ANY: - case MySqlParser.KW_AT: - case MySqlParser.KW_AUTHORS: - case MySqlParser.KW_AUTOCOMMIT: - case MySqlParser.KW_AUTOEXTEND_SIZE: - case MySqlParser.KW_AUTO_INCREMENT: - case MySqlParser.KW_AVG_ROW_LENGTH: - case MySqlParser.KW_BEGIN: - case MySqlParser.KW_BINLOG: - case MySqlParser.KW_BIT: - case MySqlParser.KW_BLOCK: - case MySqlParser.KW_BOOL: - case MySqlParser.KW_BOOLEAN: - case MySqlParser.KW_BTREE: - case MySqlParser.KW_CACHE: - case MySqlParser.KW_CASCADED: - case MySqlParser.KW_CHAIN: - case MySqlParser.KW_CHANGED: - case MySqlParser.KW_CHANNEL: - case MySqlParser.KW_CHECKSUM: - case MySqlParser.KW_CIPHER: - case MySqlParser.KW_CLASS_ORIGIN: - case MySqlParser.KW_CLIENT: - case MySqlParser.KW_CLOSE: - case MySqlParser.KW_COALESCE: - case MySqlParser.KW_CODE: - case MySqlParser.KW_COLUMNS: - case MySqlParser.KW_COLUMN_FORMAT: - case MySqlParser.KW_COLUMN_NAME: - case MySqlParser.KW_COMMENT: - case MySqlParser.KW_COMMIT: - case MySqlParser.KW_COMPACT: - case MySqlParser.KW_COMPLETION: - case MySqlParser.KW_COMPRESSED: - case MySqlParser.KW_COMPRESSION: - case MySqlParser.KW_CONCURRENT: - case MySqlParser.KW_CONNECT: - case MySqlParser.KW_CONNECTION: - case MySqlParser.KW_CONSISTENT: - case MySqlParser.KW_CONSTRAINT_CATALOG: - case MySqlParser.KW_CONSTRAINT_SCHEMA: - case MySqlParser.KW_CONSTRAINT_NAME: - case MySqlParser.KW_CONTAINS: - case MySqlParser.KW_CONTEXT: - case MySqlParser.KW_CONTRIBUTORS: - case MySqlParser.KW_COPY: - case MySqlParser.KW_CPU: - case MySqlParser.KW_CURSOR_NAME: - case MySqlParser.KW_DATA: - case MySqlParser.KW_DATAFILE: - case MySqlParser.KW_DEALLOCATE: - case MySqlParser.KW_DEFAULT_AUTH: - case MySqlParser.KW_DEFINER: - case MySqlParser.KW_DELAY_KEY_WRITE: - case MySqlParser.KW_DES_KEY_FILE: - case MySqlParser.KW_DIRECTORY: - case MySqlParser.KW_DISABLE: - case MySqlParser.KW_DISCARD: - case MySqlParser.KW_DISK: - case MySqlParser.KW_DO: - case MySqlParser.KW_DUMPFILE: - case MySqlParser.KW_DUPLICATE: - case MySqlParser.KW_DYNAMIC: - case MySqlParser.KW_ENABLE: - case MySqlParser.KW_ENCRYPTION: - case MySqlParser.KW_END: - case MySqlParser.KW_ENDS: - case MySqlParser.KW_ENGINE: - case MySqlParser.KW_ENGINES: - case MySqlParser.KW_ERROR: - case MySqlParser.KW_ERRORS: - case MySqlParser.KW_ESCAPE: - case MySqlParser.KW_EVENT: - case MySqlParser.KW_EVENTS: - case MySqlParser.KW_EVERY: - case MySqlParser.KW_EXCHANGE: - case MySqlParser.KW_EXCLUSIVE: - case MySqlParser.KW_EXPIRE: - case MySqlParser.KW_EXPORT: - case MySqlParser.KW_EXTENDED: - case MySqlParser.KW_EXTENT_SIZE: - case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: - case MySqlParser.KW_FAST: - case MySqlParser.KW_FAULTS: - case MySqlParser.KW_FIELDS: - case MySqlParser.KW_FILE_BLOCK_SIZE: - case MySqlParser.KW_FILTER: - case MySqlParser.KW_FIRST: - case MySqlParser.KW_FIXED: - case MySqlParser.KW_FLUSH: - case MySqlParser.KW_FOLLOWS: - case MySqlParser.KW_FOUND: - case MySqlParser.KW_FULL: - case MySqlParser.KW_FUNCTION: - case MySqlParser.KW_GENERAL: - case MySqlParser.KW_GLOBAL: - case MySqlParser.KW_GRANTS: - case MySqlParser.KW_GROUP_REPLICATION: - case MySqlParser.KW_HANDLER: - case MySqlParser.KW_HASH: - case MySqlParser.KW_HELP: - case MySqlParser.KW_HISTORY: - case MySqlParser.KW_HOST: - case MySqlParser.KW_HOSTS: - case MySqlParser.KW_IDENTIFIED: - case MySqlParser.KW_IGNORE_SERVER_IDS: - case MySqlParser.KW_IMPORT: - case MySqlParser.KW_INDEXES: - case MySqlParser.KW_INITIAL_SIZE: - case MySqlParser.KW_INPLACE: - case MySqlParser.KW_INSERT_METHOD: - case MySqlParser.KW_INSTALL: - case MySqlParser.KW_INSTANCE: - case MySqlParser.KW_INSTANT: - case MySqlParser.KW_INVISIBLE: - case MySqlParser.KW_INVOKER: - case MySqlParser.KW_IO: - case MySqlParser.KW_IO_THREAD: - case MySqlParser.KW_IPC: - case MySqlParser.KW_ISOLATION: - case MySqlParser.KW_ISSUER: - case MySqlParser.KW_JSON: - case MySqlParser.KW_KEY_BLOCK_SIZE: - case MySqlParser.KW_LANGUAGE: - case MySqlParser.KW_LAST: - case MySqlParser.KW_LEAVES: - case MySqlParser.KW_LESS: - case MySqlParser.KW_LEVEL: - case MySqlParser.KW_LIST: - case MySqlParser.KW_LOCAL: - case MySqlParser.KW_LOGFILE: - case MySqlParser.KW_LOGS: - case MySqlParser.KW_MASTER: - case MySqlParser.KW_MASTER_AUTO_POSITION: - case MySqlParser.KW_MASTER_CONNECT_RETRY: - case MySqlParser.KW_MASTER_DELAY: - case MySqlParser.KW_MASTER_HEARTBEAT_PERIOD: - case MySqlParser.KW_MASTER_HOST: - case MySqlParser.KW_MASTER_LOG_FILE: - case MySqlParser.KW_MASTER_LOG_POS: - case MySqlParser.KW_MASTER_PASSWORD: - case MySqlParser.KW_MASTER_PORT: - case MySqlParser.KW_MASTER_RETRY_COUNT: - case MySqlParser.KW_MASTER_SSL: - case MySqlParser.KW_MASTER_SSL_CA: - case MySqlParser.KW_MASTER_SSL_CAPATH: - case MySqlParser.KW_MASTER_SSL_CERT: - case MySqlParser.KW_MASTER_SSL_CIPHER: - case MySqlParser.KW_MASTER_SSL_CRL: - case MySqlParser.KW_MASTER_SSL_CRLPATH: - case MySqlParser.KW_MASTER_SSL_KEY: - case MySqlParser.KW_MASTER_TLS_VERSION: - case MySqlParser.KW_MASTER_USER: - case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: - case MySqlParser.KW_MAX_QUERIES_PER_HOUR: - case MySqlParser.KW_MAX_ROWS: - case MySqlParser.KW_MAX_SIZE: - case MySqlParser.KW_MAX_UPDATES_PER_HOUR: - case MySqlParser.KW_MAX_USER_CONNECTIONS: - case MySqlParser.KW_MEDIUM: - case MySqlParser.KW_MEMBER: - case MySqlParser.KW_MERGE: - case MySqlParser.KW_MESSAGE_TEXT: - case MySqlParser.KW_MID: - case MySqlParser.KW_MIGRATE: - case MySqlParser.KW_MIN_ROWS: - case MySqlParser.KW_MODE: - case MySqlParser.KW_MODIFY: - case MySqlParser.KW_MUTEX: - case MySqlParser.KW_MYSQL: - case MySqlParser.KW_MYSQL_ERRNO: - case MySqlParser.KW_NAME: - case MySqlParser.KW_NAMES: - case MySqlParser.KW_NCHAR: - case MySqlParser.KW_NEVER: - case MySqlParser.KW_NEXT: - case MySqlParser.KW_NO: - case MySqlParser.KW_NOWAIT: - case MySqlParser.KW_NODEGROUP: - case MySqlParser.KW_NONE: - case MySqlParser.KW_ODBC: - case MySqlParser.KW_OFFLINE: - case MySqlParser.KW_OFFSET: - case MySqlParser.KW_OF: - case MySqlParser.KW_OLD_PASSWORD: - case MySqlParser.KW_ONE: - case MySqlParser.KW_ONLINE: - case MySqlParser.KW_ONLY: - case MySqlParser.KW_OPEN: - case MySqlParser.KW_OPTIMIZER_COSTS: - case MySqlParser.KW_OPTIONS: - case MySqlParser.KW_OWNER: - case MySqlParser.KW_PACK_KEYS: - case MySqlParser.KW_PAGE: - case MySqlParser.KW_PAGE_CHECKSUM: - case MySqlParser.KW_PARSER: - case MySqlParser.KW_PARTIAL: - case MySqlParser.KW_PARTITIONING: - case MySqlParser.KW_PARTITIONS: - case MySqlParser.KW_PASSWORD: - case MySqlParser.KW_PASSWORD_LOCK_TIME: - case MySqlParser.KW_PHASE: - case MySqlParser.KW_PLUGIN: - case MySqlParser.KW_PLUGIN_DIR: - case MySqlParser.KW_PLUGINS: - case MySqlParser.KW_PORT: - case MySqlParser.KW_PRECEDES: - case MySqlParser.KW_PREPARE: - case MySqlParser.KW_PRESERVE: - case MySqlParser.KW_PREV: - case MySqlParser.KW_PROCESSLIST: - case MySqlParser.KW_PROFILE: - case MySqlParser.KW_PROFILES: - case MySqlParser.KW_PROXY: - case MySqlParser.KW_QUERY: - case MySqlParser.KW_QUICK: - case MySqlParser.KW_REBUILD: - case MySqlParser.KW_RECOVER: - case MySqlParser.KW_RECURSIVE: - case MySqlParser.KW_REDO_BUFFER_SIZE: - case MySqlParser.KW_REDUNDANT: - case MySqlParser.KW_RELAY: - case MySqlParser.KW_RELAY_LOG_FILE: - case MySqlParser.KW_RELAY_LOG_POS: - case MySqlParser.KW_RELAYLOG: - case MySqlParser.KW_REMOVE: - case MySqlParser.KW_REORGANIZE: - case MySqlParser.KW_REPAIR: - case MySqlParser.KW_REPLICATE_DO_DB: - case MySqlParser.KW_REPLICATE_DO_TABLE: - case MySqlParser.KW_REPLICATE_IGNORE_DB: - case MySqlParser.KW_REPLICATE_IGNORE_TABLE: - case MySqlParser.KW_REPLICATE_REWRITE_DB: - case MySqlParser.KW_REPLICATE_WILD_DO_TABLE: - case MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE: - case MySqlParser.KW_REPLICATION: - case MySqlParser.KW_RESET: - case MySqlParser.KW_RESUME: - case MySqlParser.KW_RETURNED_SQLSTATE: - case MySqlParser.KW_RETURNS: - case MySqlParser.KW_REUSE: - case MySqlParser.KW_ROLE: - case MySqlParser.KW_ROLLBACK: - case MySqlParser.KW_ROLLUP: - case MySqlParser.KW_ROTATE: - case MySqlParser.KW_ROW: - case MySqlParser.KW_ROWS: - case MySqlParser.KW_ROW_FORMAT: - case MySqlParser.KW_SAVEPOINT: - case MySqlParser.KW_SCHEDULE: - case MySqlParser.KW_SECURITY: - case MySqlParser.KW_SERVER: - case MySqlParser.KW_SESSION: - case MySqlParser.KW_SHARE: - case MySqlParser.KW_SHARED: - case MySqlParser.KW_SIGNED: - case MySqlParser.KW_SIMPLE: - case MySqlParser.KW_SLAVE: - case MySqlParser.KW_SLOW: - case MySqlParser.KW_SNAPSHOT: - case MySqlParser.KW_SOCKET: - case MySqlParser.KW_SOME: - case MySqlParser.KW_SONAME: - case MySqlParser.KW_SOUNDS: - case MySqlParser.KW_SOURCE: - case MySqlParser.KW_SQL_AFTER_GTIDS: - case MySqlParser.KW_SQL_AFTER_MTS_GAPS: - case MySqlParser.KW_SQL_BEFORE_GTIDS: - case MySqlParser.KW_SQL_BUFFER_RESULT: - case MySqlParser.KW_SQL_CACHE: - case MySqlParser.KW_SQL_NO_CACHE: - case MySqlParser.KW_SQL_THREAD: - case MySqlParser.KW_START: - case MySqlParser.KW_STARTS: - case MySqlParser.KW_STATS_AUTO_RECALC: - case MySqlParser.KW_STATS_PERSISTENT: - case MySqlParser.KW_STATS_SAMPLE_PAGES: - case MySqlParser.KW_STATUS: - case MySqlParser.KW_STOP: - case MySqlParser.KW_STORAGE: - case MySqlParser.KW_STRING: - case MySqlParser.KW_SUBCLASS_ORIGIN: - case MySqlParser.KW_SUBJECT: - case MySqlParser.KW_SUBPARTITION: - case MySqlParser.KW_SUBPARTITIONS: - case MySqlParser.KW_SUSPEND: - case MySqlParser.KW_SWAPS: - case MySqlParser.KW_SWITCHES: - case MySqlParser.KW_TABLE_NAME: - case MySqlParser.KW_TABLESPACE: - case MySqlParser.KW_TABLE_TYPE: - case MySqlParser.KW_TEMPORARY: - case MySqlParser.KW_TEMPTABLE: - case MySqlParser.KW_THAN: - case MySqlParser.KW_TRADITIONAL: - case MySqlParser.KW_TRANSACTION: - case MySqlParser.KW_TRANSACTIONAL: - case MySqlParser.KW_TRIGGERS: - case MySqlParser.KW_TRUNCATE: - case MySqlParser.KW_UNBOUNDED: - case MySqlParser.KW_UNDEFINED: - case MySqlParser.KW_UNDOFILE: - case MySqlParser.KW_UNDO_BUFFER_SIZE: - case MySqlParser.KW_UNINSTALL: - case MySqlParser.KW_UNKNOWN: - case MySqlParser.KW_UNTIL: - case MySqlParser.KW_UPGRADE: - case MySqlParser.KW_USER: - case MySqlParser.KW_USE_FRM: - case MySqlParser.KW_USER_RESOURCES: - case MySqlParser.KW_VALIDATION: - case MySqlParser.KW_VALUE: - case MySqlParser.KW_VARIABLES: - case MySqlParser.KW_VIEW: - case MySqlParser.KW_VIRTUAL: - case MySqlParser.KW_VISIBLE: - case MySqlParser.KW_WAIT: - case MySqlParser.KW_WARNINGS: - case MySqlParser.KW_WITHOUT: - case MySqlParser.KW_WORK: - case MySqlParser.KW_WRAPPER: - case MySqlParser.KW_X509: - case MySqlParser.KW_XA: - case MySqlParser.KW_XML: - case MySqlParser.KW_QUARTER: - case MySqlParser.KW_MONTH: - case MySqlParser.KW_DAY: - case MySqlParser.KW_HOUR: - case MySqlParser.KW_MINUTE: - case MySqlParser.KW_WEEK: - case MySqlParser.KW_SECOND: - case MySqlParser.KW_MICROSECOND: - case MySqlParser.KW_ADMIN: - case MySqlParser.KW_AUDIT_ABORT_EXEMPT: - case MySqlParser.KW_AUDIT_ADMIN: - case MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN: - case MySqlParser.KW_BACKUP_ADMIN: - case MySqlParser.KW_BINLOG_ADMIN: - case MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN: - case MySqlParser.KW_CLONE_ADMIN: - case MySqlParser.KW_CONNECTION_ADMIN: - case MySqlParser.KW_ENCRYPTION_KEY_ADMIN: - case MySqlParser.KW_EXECUTE: - case MySqlParser.KW_FILE: - case MySqlParser.KW_FIREWALL_ADMIN: - case MySqlParser.KW_FIREWALL_EXEMPT: - case MySqlParser.KW_FIREWALL_USER: - case MySqlParser.KW_GROUP_REPLICATION_ADMIN: - case MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE: - case MySqlParser.KW_INVOKE: - case MySqlParser.KW_LAMBDA: - case MySqlParser.KW_NDB_STORED_USER: - case MySqlParser.KW_PASSWORDLESS_USER_ADMIN: - case MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN: - case MySqlParser.KW_PRIVILEGES: - case MySqlParser.KW_PROCESS: - case MySqlParser.KW_RELOAD: - case MySqlParser.KW_REPLICATION_APPLIER: - case MySqlParser.KW_REPLICATION_SLAVE_ADMIN: - case MySqlParser.KW_RESOURCE_GROUP_ADMIN: - case MySqlParser.KW_RESOURCE_GROUP_USER: - case MySqlParser.KW_ROLE_ADMIN: - case MySqlParser.KW_ROUTINE: - case MySqlParser.KW_S3: - case MySqlParser.KW_SESSION_VARIABLES_ADMIN: - case MySqlParser.KW_SET_USER_ID: - case MySqlParser.KW_SHOW_ROUTINE: - case MySqlParser.KW_SHUTDOWN: - case MySqlParser.KW_SUPER: - case MySqlParser.KW_SYSTEM_VARIABLES_ADMIN: - case MySqlParser.KW_TABLES: - case MySqlParser.KW_TABLE_ENCRYPTION_ADMIN: - case MySqlParser.KW_VERSION_TOKEN_ADMIN: - case MySqlParser.KW_XA_RECOVER_ADMIN: - case MySqlParser.KW_ARMSCII8: - case MySqlParser.KW_ASCII: - case MySqlParser.KW_BIG5: - case MySqlParser.KW_CP1250: - case MySqlParser.KW_CP1251: - case MySqlParser.KW_CP1256: - case MySqlParser.KW_CP1257: - case MySqlParser.KW_CP850: - case MySqlParser.KW_CP852: - case MySqlParser.KW_CP866: - case MySqlParser.KW_CP932: - case MySqlParser.KW_DEC8: - case MySqlParser.KW_EUCJPMS: - case MySqlParser.KW_EUCKR: - case MySqlParser.KW_GB18030: - case MySqlParser.KW_GB2312: - case MySqlParser.KW_GBK: - case MySqlParser.KW_GEOSTD8: - case MySqlParser.KW_GREEK: - case MySqlParser.KW_HEBREW: - case MySqlParser.KW_HP8: - case MySqlParser.KW_KEYBCS2: - case MySqlParser.KW_KOI8R: - case MySqlParser.KW_KOI8U: - case MySqlParser.KW_LATIN1: - case MySqlParser.KW_LATIN2: - case MySqlParser.KW_LATIN5: - case MySqlParser.KW_LATIN7: - case MySqlParser.KW_MACCE: - case MySqlParser.KW_MACROMAN: - case MySqlParser.KW_SJIS: - case MySqlParser.KW_SWE7: - case MySqlParser.KW_TIS620: - case MySqlParser.KW_UCS2: - case MySqlParser.KW_UJIS: - case MySqlParser.KW_UTF16: - case MySqlParser.KW_UTF16LE: - case MySqlParser.KW_UTF32: - case MySqlParser.KW_UTF8: - case MySqlParser.KW_UTF8MB3: - case MySqlParser.KW_UTF8MB4: - case MySqlParser.KW_ARCHIVE: - case MySqlParser.KW_BLACKHOLE: - case MySqlParser.KW_CSV: - case MySqlParser.KW_FEDERATED: - case MySqlParser.KW_INNODB: - case MySqlParser.KW_MEMORY: - case MySqlParser.KW_MRG_MYISAM: - case MySqlParser.KW_MYISAM: - case MySqlParser.KW_NDB: - case MySqlParser.KW_NDBCLUSTER: - case MySqlParser.KW_PERFORMANCE_SCHEMA: - case MySqlParser.KW_TOKUDB: - case MySqlParser.KW_REPEATABLE: - case MySqlParser.KW_COMMITTED: - case MySqlParser.KW_UNCOMMITTED: - case MySqlParser.KW_SERIALIZABLE: - case MySqlParser.KW_GEOMETRYCOLLECTION: - case MySqlParser.KW_LINESTRING: - case MySqlParser.KW_MULTILINESTRING: - case MySqlParser.KW_MULTIPOINT: - case MySqlParser.KW_MULTIPOLYGON: - case MySqlParser.KW_POINT: - case MySqlParser.KW_POLYGON: - case MySqlParser.KW_CATALOG_NAME: - case MySqlParser.KW_CHARSET: - case MySqlParser.KW_COLLATION: - case MySqlParser.KW_ENGINE_ATTRIBUTE: - case MySqlParser.KW_FORMAT: - case MySqlParser.KW_GET_FORMAT: - case MySqlParser.KW_RANDOM: - case MySqlParser.KW_REVERSE: - case MySqlParser.KW_ROW_COUNT: - case MySqlParser.KW_SCHEMA_NAME: - case MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE: - case MySqlParser.KW_SRID: - case MySqlParser.KW_SYSTEM_USER: - case MySqlParser.KW_TP_CONNECTION_ADMIN: - case MySqlParser.KW_WEIGHT_STRING: - case MySqlParser.MOD: - case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: - case MySqlParser.STRING_LITERAL: - case MySqlParser.ID: - { - this.state = 2900; - this.partitionNames(); - } - break; - case MySqlParser.KW_ALL: - { - this.state = 2901; - this.match(MySqlParser.KW_ALL); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 2904; - this.match(MySqlParser.KW_TABLESPACE); - } - break; - case MySqlParser.KW_IMPORT: - localContext = new AlterByImportPartitionContext(localContext); - this.enterOuterAlt(localContext, 4); - { this.state = 2905; - this.match(MySqlParser.KW_IMPORT); + this.match(MySqlParser.KW_DISCARD); this.state = 2906; this.match(MySqlParser.KW_PARTITION); this.state = 2909; @@ -12461,12 +11903,12 @@ export class MySqlParser extends antlr.Parser { this.match(MySqlParser.KW_TABLESPACE); } break; - case MySqlParser.KW_TRUNCATE: - localContext = new AlterByTruncatePartitionContext(localContext); - this.enterOuterAlt(localContext, 5); + case MySqlParser.KW_IMPORT: + localContext = new AlterByImportPartitionContext(localContext); + this.enterOuterAlt(localContext, 4); { this.state = 2912; - this.match(MySqlParser.KW_TRUNCATE); + this.match(MySqlParser.KW_IMPORT); this.state = 2913; this.match(MySqlParser.KW_PARTITION); this.state = 2916; @@ -13034,103 +12476,19 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - } - break; - case MySqlParser.KW_COALESCE: - localContext = new AlterByCoalescePartitionContext(localContext); - this.enterOuterAlt(localContext, 6); - { this.state = 2918; - this.match(MySqlParser.KW_COALESCE); - this.state = 2919; - this.match(MySqlParser.KW_PARTITION); - this.state = 2920; - this.decimalLiteral(); + this.match(MySqlParser.KW_TABLESPACE); } break; - case MySqlParser.KW_REORGANIZE: - localContext = new AlterByReorganizePartitionContext(localContext); - this.enterOuterAlt(localContext, 7); + case MySqlParser.KW_TRUNCATE: + localContext = new AlterByTruncatePartitionContext(localContext); + this.enterOuterAlt(localContext, 5); { - this.state = 2921; - this.match(MySqlParser.KW_REORGANIZE); - this.state = 2922; + this.state = 2919; + this.match(MySqlParser.KW_TRUNCATE); + this.state = 2920; this.match(MySqlParser.KW_PARTITION); this.state = 2923; - this.partitionNames(); - this.state = 2924; - this.match(MySqlParser.KW_INTO); - this.state = 2925; - this.match(MySqlParser.LR_BRACKET); - this.state = 2926; - this.partitionDefinition(); - this.state = 2931; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 868) { - { - { - this.state = 2927; - this.match(MySqlParser.COMMA); - this.state = 2928; - this.partitionDefinition(); - } - } - this.state = 2933; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 2934; - this.match(MySqlParser.RR_BRACKET); - } - break; - case MySqlParser.KW_EXCHANGE: - localContext = new AlterByExchangePartitionContext(localContext); - this.enterOuterAlt(localContext, 8); - { - this.state = 2936; - this.match(MySqlParser.KW_EXCHANGE); - this.state = 2937; - this.match(MySqlParser.KW_PARTITION); - this.state = 2938; - this.partitionName(); - this.state = 2939; - this.match(MySqlParser.KW_WITH); - this.state = 2940; - this.match(MySqlParser.KW_TABLE); - this.state = 2941; - this.tableName(); - this.state = 2944; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { - case 1: - { - this.state = 2942; - (localContext as AlterByExchangePartitionContext)._validationFormat = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 194 || _la === 690)) { - (localContext as AlterByExchangePartitionContext)._validationFormat = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 2943; - this.match(MySqlParser.KW_VALIDATION); - } - break; - } - } - break; - case MySqlParser.KW_ANALYZE: - localContext = new AlterByAnalyzePartitionContext(localContext); - this.enterOuterAlt(localContext, 9); - { - this.state = 2946; - this.match(MySqlParser.KW_ANALYZE); - this.state = 2947; - this.match(MySqlParser.KW_PARTITION); - this.state = 2950; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -13682,13 +13040,674 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2948; + this.state = 2921; this.partitionNames(); } break; case MySqlParser.KW_ALL: + { + this.state = 2922; + this.match(MySqlParser.KW_ALL); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case MySqlParser.KW_COALESCE: + localContext = new AlterByCoalescePartitionContext(localContext); + this.enterOuterAlt(localContext, 6); + { + this.state = 2925; + this.match(MySqlParser.KW_COALESCE); + this.state = 2926; + this.match(MySqlParser.KW_PARTITION); + this.state = 2927; + this.decimalLiteral(); + } + break; + case MySqlParser.KW_REORGANIZE: + localContext = new AlterByReorganizePartitionContext(localContext); + this.enterOuterAlt(localContext, 7); + { + this.state = 2928; + this.match(MySqlParser.KW_REORGANIZE); + this.state = 2929; + this.match(MySqlParser.KW_PARTITION); + this.state = 2930; + this.partitionNames(); + this.state = 2931; + this.match(MySqlParser.KW_INTO); + this.state = 2932; + this.match(MySqlParser.LR_BRACKET); + this.state = 2933; + this.partitionDefinition(); + this.state = 2938; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 868) { + { + { + this.state = 2934; + this.match(MySqlParser.COMMA); + this.state = 2935; + this.partitionDefinition(); + } + } + this.state = 2940; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 2941; + this.match(MySqlParser.RR_BRACKET); + } + break; + case MySqlParser.KW_EXCHANGE: + localContext = new AlterByExchangePartitionContext(localContext); + this.enterOuterAlt(localContext, 8); + { + this.state = 2943; + this.match(MySqlParser.KW_EXCHANGE); + this.state = 2944; + this.match(MySqlParser.KW_PARTITION); + this.state = 2945; + this.partitionName(); + this.state = 2946; + this.match(MySqlParser.KW_WITH); + this.state = 2947; + this.match(MySqlParser.KW_TABLE); + this.state = 2948; + this.tableName(); + this.state = 2951; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + case 1: { this.state = 2949; + (localContext as AlterByExchangePartitionContext)._validationFormat = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 194 || _la === 690)) { + (localContext as AlterByExchangePartitionContext)._validationFormat = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 2950; + this.match(MySqlParser.KW_VALIDATION); + } + break; + } + } + break; + case MySqlParser.KW_ANALYZE: + localContext = new AlterByAnalyzePartitionContext(localContext); + this.enterOuterAlt(localContext, 9); + { + this.state = 2953; + this.match(MySqlParser.KW_ANALYZE); + this.state = 2954; + this.match(MySqlParser.KW_PARTITION); + this.state = 2957; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case MySqlParser.KW_ARRAY: + case MySqlParser.KW_ATTRIBUTE: + case MySqlParser.KW_BUCKETS: + case MySqlParser.KW_CONDITION: + case MySqlParser.KW_CURRENT: + case MySqlParser.KW_CURRENT_USER: + case MySqlParser.KW_DATABASE: + case MySqlParser.KW_DEFAULT: + case MySqlParser.KW_DIAGNOSTICS: + case MySqlParser.KW_EMPTY: + case MySqlParser.KW_ENFORCED: + case MySqlParser.KW_EXCEPT: + case MySqlParser.KW_GROUP: + case MySqlParser.KW_IF: + case MySqlParser.KW_INSERT: + case MySqlParser.KW_LATERAL: + case MySqlParser.KW_LEFT: + case MySqlParser.KW_NUMBER: + case MySqlParser.KW_OPTIONAL: + case MySqlParser.KW_ORDER: + case MySqlParser.KW_PRIMARY: + case MySqlParser.KW_REPEAT: + case MySqlParser.KW_REPLACE: + case MySqlParser.KW_RIGHT: + case MySqlParser.KW_SCHEMA: + case MySqlParser.KW_SKIP_QUERY_REWRITE: + case MySqlParser.KW_STACKED: + case MySqlParser.KW_DATE: + case MySqlParser.KW_TIME: + case MySqlParser.KW_TIMESTAMP: + case MySqlParser.KW_DATETIME: + case MySqlParser.KW_YEAR: + case MySqlParser.KW_BINARY: + case MySqlParser.KW_TEXT: + case MySqlParser.KW_ENUM: + case MySqlParser.KW_SERIAL: + case MySqlParser.KW_JSON_TABLE: + case MySqlParser.KW_JSON_VALUE: + case MySqlParser.KW_NESTED: + case MySqlParser.KW_ORDINALITY: + case MySqlParser.KW_PATH: + case MySqlParser.KW_AVG: + case MySqlParser.KW_BIT_AND: + case MySqlParser.KW_BIT_OR: + case MySqlParser.KW_BIT_XOR: + case MySqlParser.KW_COUNT: + case MySqlParser.KW_CUME_DIST: + case MySqlParser.KW_DENSE_RANK: + case MySqlParser.KW_FIRST_VALUE: + case MySqlParser.KW_GROUP_CONCAT: + case MySqlParser.KW_LAG: + case MySqlParser.KW_LAST_VALUE: + case MySqlParser.KW_LEAD: + case MySqlParser.KW_MAX: + case MySqlParser.KW_MIN: + case MySqlParser.KW_NTILE: + case MySqlParser.KW_NTH_VALUE: + case MySqlParser.KW_PERCENT_RANK: + case MySqlParser.KW_RANK: + case MySqlParser.KW_ROW_NUMBER: + case MySqlParser.KW_STD: + case MySqlParser.KW_STDDEV: + case MySqlParser.KW_STDDEV_POP: + case MySqlParser.KW_STDDEV_SAMP: + case MySqlParser.KW_SUM: + case MySqlParser.KW_VAR_POP: + case MySqlParser.KW_VAR_SAMP: + case MySqlParser.KW_VARIANCE: + case MySqlParser.KW_CURRENT_DATE: + case MySqlParser.KW_CURRENT_TIME: + case MySqlParser.KW_CURRENT_TIMESTAMP: + case MySqlParser.KW_LOCALTIME: + case MySqlParser.KW_CURDATE: + case MySqlParser.KW_CURTIME: + case MySqlParser.KW_DATE_ADD: + case MySqlParser.KW_DATE_SUB: + case MySqlParser.KW_LOCALTIMESTAMP: + case MySqlParser.KW_NOW: + case MySqlParser.KW_POSITION: + case MySqlParser.KW_SUBSTR: + case MySqlParser.KW_SUBSTRING: + case MySqlParser.KW_SYSDATE: + case MySqlParser.KW_TRIM: + case MySqlParser.KW_UTC_DATE: + case MySqlParser.KW_UTC_TIME: + case MySqlParser.KW_UTC_TIMESTAMP: + case MySqlParser.KW_ACCOUNT: + case MySqlParser.KW_ACTION: + case MySqlParser.KW_AFTER: + case MySqlParser.KW_AGGREGATE: + case MySqlParser.KW_ALGORITHM: + case MySqlParser.KW_ANY: + case MySqlParser.KW_AT: + case MySqlParser.KW_AUTHORS: + case MySqlParser.KW_AUTOCOMMIT: + case MySqlParser.KW_AUTOEXTEND_SIZE: + case MySqlParser.KW_AUTO_INCREMENT: + case MySqlParser.KW_AVG_ROW_LENGTH: + case MySqlParser.KW_BEGIN: + case MySqlParser.KW_BINLOG: + case MySqlParser.KW_BIT: + case MySqlParser.KW_BLOCK: + case MySqlParser.KW_BOOL: + case MySqlParser.KW_BOOLEAN: + case MySqlParser.KW_BTREE: + case MySqlParser.KW_CACHE: + case MySqlParser.KW_CASCADED: + case MySqlParser.KW_CHAIN: + case MySqlParser.KW_CHANGED: + case MySqlParser.KW_CHANNEL: + case MySqlParser.KW_CHECKSUM: + case MySqlParser.KW_CIPHER: + case MySqlParser.KW_CLASS_ORIGIN: + case MySqlParser.KW_CLIENT: + case MySqlParser.KW_CLOSE: + case MySqlParser.KW_COALESCE: + case MySqlParser.KW_CODE: + case MySqlParser.KW_COLUMNS: + case MySqlParser.KW_COLUMN_FORMAT: + case MySqlParser.KW_COLUMN_NAME: + case MySqlParser.KW_COMMENT: + case MySqlParser.KW_COMMIT: + case MySqlParser.KW_COMPACT: + case MySqlParser.KW_COMPLETION: + case MySqlParser.KW_COMPRESSED: + case MySqlParser.KW_COMPRESSION: + case MySqlParser.KW_CONCURRENT: + case MySqlParser.KW_CONNECT: + case MySqlParser.KW_CONNECTION: + case MySqlParser.KW_CONSISTENT: + case MySqlParser.KW_CONSTRAINT_CATALOG: + case MySqlParser.KW_CONSTRAINT_SCHEMA: + case MySqlParser.KW_CONSTRAINT_NAME: + case MySqlParser.KW_CONTAINS: + case MySqlParser.KW_CONTEXT: + case MySqlParser.KW_CONTRIBUTORS: + case MySqlParser.KW_COPY: + case MySqlParser.KW_CPU: + case MySqlParser.KW_CURSOR_NAME: + case MySqlParser.KW_DATA: + case MySqlParser.KW_DATAFILE: + case MySqlParser.KW_DEALLOCATE: + case MySqlParser.KW_DEFAULT_AUTH: + case MySqlParser.KW_DEFINER: + case MySqlParser.KW_DELAY_KEY_WRITE: + case MySqlParser.KW_DES_KEY_FILE: + case MySqlParser.KW_DIRECTORY: + case MySqlParser.KW_DISABLE: + case MySqlParser.KW_DISCARD: + case MySqlParser.KW_DISK: + case MySqlParser.KW_DO: + case MySqlParser.KW_DUMPFILE: + case MySqlParser.KW_DUPLICATE: + case MySqlParser.KW_DYNAMIC: + case MySqlParser.KW_ENABLE: + case MySqlParser.KW_ENCRYPTION: + case MySqlParser.KW_END: + case MySqlParser.KW_ENDS: + case MySqlParser.KW_ENGINE: + case MySqlParser.KW_ENGINES: + case MySqlParser.KW_ERROR: + case MySqlParser.KW_ERRORS: + case MySqlParser.KW_ESCAPE: + case MySqlParser.KW_EVENT: + case MySqlParser.KW_EVENTS: + case MySqlParser.KW_EVERY: + case MySqlParser.KW_EXCHANGE: + case MySqlParser.KW_EXCLUSIVE: + case MySqlParser.KW_EXPIRE: + case MySqlParser.KW_EXPORT: + case MySqlParser.KW_EXTENDED: + case MySqlParser.KW_EXTENT_SIZE: + case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: + case MySqlParser.KW_FAST: + case MySqlParser.KW_FAULTS: + case MySqlParser.KW_FIELDS: + case MySqlParser.KW_FILE_BLOCK_SIZE: + case MySqlParser.KW_FILTER: + case MySqlParser.KW_FIRST: + case MySqlParser.KW_FIXED: + case MySqlParser.KW_FLUSH: + case MySqlParser.KW_FOLLOWS: + case MySqlParser.KW_FOUND: + case MySqlParser.KW_FULL: + case MySqlParser.KW_FUNCTION: + case MySqlParser.KW_GENERAL: + case MySqlParser.KW_GLOBAL: + case MySqlParser.KW_GRANTS: + case MySqlParser.KW_GROUP_REPLICATION: + case MySqlParser.KW_HANDLER: + case MySqlParser.KW_HASH: + case MySqlParser.KW_HELP: + case MySqlParser.KW_HISTORY: + case MySqlParser.KW_HOST: + case MySqlParser.KW_HOSTS: + case MySqlParser.KW_IDENTIFIED: + case MySqlParser.KW_IGNORE_SERVER_IDS: + case MySqlParser.KW_IMPORT: + case MySqlParser.KW_INDEXES: + case MySqlParser.KW_INITIAL_SIZE: + case MySqlParser.KW_INPLACE: + case MySqlParser.KW_INSERT_METHOD: + case MySqlParser.KW_INSTALL: + case MySqlParser.KW_INSTANCE: + case MySqlParser.KW_INSTANT: + case MySqlParser.KW_INVISIBLE: + case MySqlParser.KW_INVOKER: + case MySqlParser.KW_IO: + case MySqlParser.KW_IO_THREAD: + case MySqlParser.KW_IPC: + case MySqlParser.KW_ISOLATION: + case MySqlParser.KW_ISSUER: + case MySqlParser.KW_JSON: + case MySqlParser.KW_KEY_BLOCK_SIZE: + case MySqlParser.KW_LANGUAGE: + case MySqlParser.KW_LAST: + case MySqlParser.KW_LEAVES: + case MySqlParser.KW_LESS: + case MySqlParser.KW_LEVEL: + case MySqlParser.KW_LIST: + case MySqlParser.KW_LOCAL: + case MySqlParser.KW_LOGFILE: + case MySqlParser.KW_LOGS: + case MySqlParser.KW_MASTER: + case MySqlParser.KW_MASTER_AUTO_POSITION: + case MySqlParser.KW_MASTER_CONNECT_RETRY: + case MySqlParser.KW_MASTER_DELAY: + case MySqlParser.KW_MASTER_HEARTBEAT_PERIOD: + case MySqlParser.KW_MASTER_HOST: + case MySqlParser.KW_MASTER_LOG_FILE: + case MySqlParser.KW_MASTER_LOG_POS: + case MySqlParser.KW_MASTER_PASSWORD: + case MySqlParser.KW_MASTER_PORT: + case MySqlParser.KW_MASTER_RETRY_COUNT: + case MySqlParser.KW_MASTER_SSL: + case MySqlParser.KW_MASTER_SSL_CA: + case MySqlParser.KW_MASTER_SSL_CAPATH: + case MySqlParser.KW_MASTER_SSL_CERT: + case MySqlParser.KW_MASTER_SSL_CIPHER: + case MySqlParser.KW_MASTER_SSL_CRL: + case MySqlParser.KW_MASTER_SSL_CRLPATH: + case MySqlParser.KW_MASTER_SSL_KEY: + case MySqlParser.KW_MASTER_TLS_VERSION: + case MySqlParser.KW_MASTER_USER: + case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: + case MySqlParser.KW_MAX_QUERIES_PER_HOUR: + case MySqlParser.KW_MAX_ROWS: + case MySqlParser.KW_MAX_SIZE: + case MySqlParser.KW_MAX_UPDATES_PER_HOUR: + case MySqlParser.KW_MAX_USER_CONNECTIONS: + case MySqlParser.KW_MEDIUM: + case MySqlParser.KW_MEMBER: + case MySqlParser.KW_MERGE: + case MySqlParser.KW_MESSAGE_TEXT: + case MySqlParser.KW_MID: + case MySqlParser.KW_MIGRATE: + case MySqlParser.KW_MIN_ROWS: + case MySqlParser.KW_MODE: + case MySqlParser.KW_MODIFY: + case MySqlParser.KW_MUTEX: + case MySqlParser.KW_MYSQL: + case MySqlParser.KW_MYSQL_ERRNO: + case MySqlParser.KW_NAME: + case MySqlParser.KW_NAMES: + case MySqlParser.KW_NCHAR: + case MySqlParser.KW_NEVER: + case MySqlParser.KW_NEXT: + case MySqlParser.KW_NO: + case MySqlParser.KW_NOWAIT: + case MySqlParser.KW_NODEGROUP: + case MySqlParser.KW_NONE: + case MySqlParser.KW_ODBC: + case MySqlParser.KW_OFFLINE: + case MySqlParser.KW_OFFSET: + case MySqlParser.KW_OF: + case MySqlParser.KW_OLD_PASSWORD: + case MySqlParser.KW_ONE: + case MySqlParser.KW_ONLINE: + case MySqlParser.KW_ONLY: + case MySqlParser.KW_OPEN: + case MySqlParser.KW_OPTIMIZER_COSTS: + case MySqlParser.KW_OPTIONS: + case MySqlParser.KW_OWNER: + case MySqlParser.KW_PACK_KEYS: + case MySqlParser.KW_PAGE: + case MySqlParser.KW_PAGE_CHECKSUM: + case MySqlParser.KW_PARSER: + case MySqlParser.KW_PARTIAL: + case MySqlParser.KW_PARTITIONING: + case MySqlParser.KW_PARTITIONS: + case MySqlParser.KW_PASSWORD: + case MySqlParser.KW_PASSWORD_LOCK_TIME: + case MySqlParser.KW_PHASE: + case MySqlParser.KW_PLUGIN: + case MySqlParser.KW_PLUGIN_DIR: + case MySqlParser.KW_PLUGINS: + case MySqlParser.KW_PORT: + case MySqlParser.KW_PRECEDES: + case MySqlParser.KW_PREPARE: + case MySqlParser.KW_PRESERVE: + case MySqlParser.KW_PREV: + case MySqlParser.KW_PROCESSLIST: + case MySqlParser.KW_PROFILE: + case MySqlParser.KW_PROFILES: + case MySqlParser.KW_PROXY: + case MySqlParser.KW_QUERY: + case MySqlParser.KW_QUICK: + case MySqlParser.KW_REBUILD: + case MySqlParser.KW_RECOVER: + case MySqlParser.KW_RECURSIVE: + case MySqlParser.KW_REDO_BUFFER_SIZE: + case MySqlParser.KW_REDUNDANT: + case MySqlParser.KW_RELAY: + case MySqlParser.KW_RELAY_LOG_FILE: + case MySqlParser.KW_RELAY_LOG_POS: + case MySqlParser.KW_RELAYLOG: + case MySqlParser.KW_REMOVE: + case MySqlParser.KW_REORGANIZE: + case MySqlParser.KW_REPAIR: + case MySqlParser.KW_REPLICATE_DO_DB: + case MySqlParser.KW_REPLICATE_DO_TABLE: + case MySqlParser.KW_REPLICATE_IGNORE_DB: + case MySqlParser.KW_REPLICATE_IGNORE_TABLE: + case MySqlParser.KW_REPLICATE_REWRITE_DB: + case MySqlParser.KW_REPLICATE_WILD_DO_TABLE: + case MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE: + case MySqlParser.KW_REPLICATION: + case MySqlParser.KW_RESET: + case MySqlParser.KW_RESUME: + case MySqlParser.KW_RETURNED_SQLSTATE: + case MySqlParser.KW_RETURNS: + case MySqlParser.KW_REUSE: + case MySqlParser.KW_ROLE: + case MySqlParser.KW_ROLLBACK: + case MySqlParser.KW_ROLLUP: + case MySqlParser.KW_ROTATE: + case MySqlParser.KW_ROW: + case MySqlParser.KW_ROWS: + case MySqlParser.KW_ROW_FORMAT: + case MySqlParser.KW_SAVEPOINT: + case MySqlParser.KW_SCHEDULE: + case MySqlParser.KW_SECURITY: + case MySqlParser.KW_SERVER: + case MySqlParser.KW_SESSION: + case MySqlParser.KW_SHARE: + case MySqlParser.KW_SHARED: + case MySqlParser.KW_SIGNED: + case MySqlParser.KW_SIMPLE: + case MySqlParser.KW_SLAVE: + case MySqlParser.KW_SLOW: + case MySqlParser.KW_SNAPSHOT: + case MySqlParser.KW_SOCKET: + case MySqlParser.KW_SOME: + case MySqlParser.KW_SONAME: + case MySqlParser.KW_SOUNDS: + case MySqlParser.KW_SOURCE: + case MySqlParser.KW_SQL_AFTER_GTIDS: + case MySqlParser.KW_SQL_AFTER_MTS_GAPS: + case MySqlParser.KW_SQL_BEFORE_GTIDS: + case MySqlParser.KW_SQL_BUFFER_RESULT: + case MySqlParser.KW_SQL_CACHE: + case MySqlParser.KW_SQL_NO_CACHE: + case MySqlParser.KW_SQL_THREAD: + case MySqlParser.KW_START: + case MySqlParser.KW_STARTS: + case MySqlParser.KW_STATS_AUTO_RECALC: + case MySqlParser.KW_STATS_PERSISTENT: + case MySqlParser.KW_STATS_SAMPLE_PAGES: + case MySqlParser.KW_STATUS: + case MySqlParser.KW_STOP: + case MySqlParser.KW_STORAGE: + case MySqlParser.KW_STRING: + case MySqlParser.KW_SUBCLASS_ORIGIN: + case MySqlParser.KW_SUBJECT: + case MySqlParser.KW_SUBPARTITION: + case MySqlParser.KW_SUBPARTITIONS: + case MySqlParser.KW_SUSPEND: + case MySqlParser.KW_SWAPS: + case MySqlParser.KW_SWITCHES: + case MySqlParser.KW_TABLE_NAME: + case MySqlParser.KW_TABLESPACE: + case MySqlParser.KW_TABLE_TYPE: + case MySqlParser.KW_TEMPORARY: + case MySqlParser.KW_TEMPTABLE: + case MySqlParser.KW_THAN: + case MySqlParser.KW_TRADITIONAL: + case MySqlParser.KW_TRANSACTION: + case MySqlParser.KW_TRANSACTIONAL: + case MySqlParser.KW_TRIGGERS: + case MySqlParser.KW_TRUNCATE: + case MySqlParser.KW_UNBOUNDED: + case MySqlParser.KW_UNDEFINED: + case MySqlParser.KW_UNDOFILE: + case MySqlParser.KW_UNDO_BUFFER_SIZE: + case MySqlParser.KW_UNINSTALL: + case MySqlParser.KW_UNKNOWN: + case MySqlParser.KW_UNTIL: + case MySqlParser.KW_UPGRADE: + case MySqlParser.KW_USER: + case MySqlParser.KW_USE_FRM: + case MySqlParser.KW_USER_RESOURCES: + case MySqlParser.KW_VALIDATION: + case MySqlParser.KW_VALUE: + case MySqlParser.KW_VARIABLES: + case MySqlParser.KW_VIEW: + case MySqlParser.KW_VIRTUAL: + case MySqlParser.KW_VISIBLE: + case MySqlParser.KW_WAIT: + case MySqlParser.KW_WARNINGS: + case MySqlParser.KW_WITHOUT: + case MySqlParser.KW_WORK: + case MySqlParser.KW_WRAPPER: + case MySqlParser.KW_X509: + case MySqlParser.KW_XA: + case MySqlParser.KW_XML: + case MySqlParser.KW_QUARTER: + case MySqlParser.KW_MONTH: + case MySqlParser.KW_DAY: + case MySqlParser.KW_HOUR: + case MySqlParser.KW_MINUTE: + case MySqlParser.KW_WEEK: + case MySqlParser.KW_SECOND: + case MySqlParser.KW_MICROSECOND: + case MySqlParser.KW_ADMIN: + case MySqlParser.KW_AUDIT_ABORT_EXEMPT: + case MySqlParser.KW_AUDIT_ADMIN: + case MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN: + case MySqlParser.KW_BACKUP_ADMIN: + case MySqlParser.KW_BINLOG_ADMIN: + case MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN: + case MySqlParser.KW_CLONE_ADMIN: + case MySqlParser.KW_CONNECTION_ADMIN: + case MySqlParser.KW_ENCRYPTION_KEY_ADMIN: + case MySqlParser.KW_EXECUTE: + case MySqlParser.KW_FILE: + case MySqlParser.KW_FIREWALL_ADMIN: + case MySqlParser.KW_FIREWALL_EXEMPT: + case MySqlParser.KW_FIREWALL_USER: + case MySqlParser.KW_GROUP_REPLICATION_ADMIN: + case MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE: + case MySqlParser.KW_INVOKE: + case MySqlParser.KW_LAMBDA: + case MySqlParser.KW_NDB_STORED_USER: + case MySqlParser.KW_PASSWORDLESS_USER_ADMIN: + case MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN: + case MySqlParser.KW_PRIVILEGES: + case MySqlParser.KW_PROCESS: + case MySqlParser.KW_RELOAD: + case MySqlParser.KW_REPLICATION_APPLIER: + case MySqlParser.KW_REPLICATION_SLAVE_ADMIN: + case MySqlParser.KW_RESOURCE_GROUP_ADMIN: + case MySqlParser.KW_RESOURCE_GROUP_USER: + case MySqlParser.KW_ROLE_ADMIN: + case MySqlParser.KW_ROUTINE: + case MySqlParser.KW_S3: + case MySqlParser.KW_SESSION_VARIABLES_ADMIN: + case MySqlParser.KW_SET_USER_ID: + case MySqlParser.KW_SHOW_ROUTINE: + case MySqlParser.KW_SHUTDOWN: + case MySqlParser.KW_SUPER: + case MySqlParser.KW_SYSTEM_VARIABLES_ADMIN: + case MySqlParser.KW_TABLES: + case MySqlParser.KW_TABLE_ENCRYPTION_ADMIN: + case MySqlParser.KW_VERSION_TOKEN_ADMIN: + case MySqlParser.KW_XA_RECOVER_ADMIN: + case MySqlParser.KW_ARMSCII8: + case MySqlParser.KW_ASCII: + case MySqlParser.KW_BIG5: + case MySqlParser.KW_CP1250: + case MySqlParser.KW_CP1251: + case MySqlParser.KW_CP1256: + case MySqlParser.KW_CP1257: + case MySqlParser.KW_CP850: + case MySqlParser.KW_CP852: + case MySqlParser.KW_CP866: + case MySqlParser.KW_CP932: + case MySqlParser.KW_DEC8: + case MySqlParser.KW_EUCJPMS: + case MySqlParser.KW_EUCKR: + case MySqlParser.KW_GB18030: + case MySqlParser.KW_GB2312: + case MySqlParser.KW_GBK: + case MySqlParser.KW_GEOSTD8: + case MySqlParser.KW_GREEK: + case MySqlParser.KW_HEBREW: + case MySqlParser.KW_HP8: + case MySqlParser.KW_KEYBCS2: + case MySqlParser.KW_KOI8R: + case MySqlParser.KW_KOI8U: + case MySqlParser.KW_LATIN1: + case MySqlParser.KW_LATIN2: + case MySqlParser.KW_LATIN5: + case MySqlParser.KW_LATIN7: + case MySqlParser.KW_MACCE: + case MySqlParser.KW_MACROMAN: + case MySqlParser.KW_SJIS: + case MySqlParser.KW_SWE7: + case MySqlParser.KW_TIS620: + case MySqlParser.KW_UCS2: + case MySqlParser.KW_UJIS: + case MySqlParser.KW_UTF16: + case MySqlParser.KW_UTF16LE: + case MySqlParser.KW_UTF32: + case MySqlParser.KW_UTF8: + case MySqlParser.KW_UTF8MB3: + case MySqlParser.KW_UTF8MB4: + case MySqlParser.KW_ARCHIVE: + case MySqlParser.KW_BLACKHOLE: + case MySqlParser.KW_CSV: + case MySqlParser.KW_FEDERATED: + case MySqlParser.KW_INNODB: + case MySqlParser.KW_MEMORY: + case MySqlParser.KW_MRG_MYISAM: + case MySqlParser.KW_MYISAM: + case MySqlParser.KW_NDB: + case MySqlParser.KW_NDBCLUSTER: + case MySqlParser.KW_PERFORMANCE_SCHEMA: + case MySqlParser.KW_TOKUDB: + case MySqlParser.KW_REPEATABLE: + case MySqlParser.KW_COMMITTED: + case MySqlParser.KW_UNCOMMITTED: + case MySqlParser.KW_SERIALIZABLE: + case MySqlParser.KW_GEOMETRYCOLLECTION: + case MySqlParser.KW_LINESTRING: + case MySqlParser.KW_MULTILINESTRING: + case MySqlParser.KW_MULTIPOINT: + case MySqlParser.KW_MULTIPOLYGON: + case MySqlParser.KW_POINT: + case MySqlParser.KW_POLYGON: + case MySqlParser.KW_CATALOG_NAME: + case MySqlParser.KW_CHARSET: + case MySqlParser.KW_COLLATION: + case MySqlParser.KW_ENGINE_ATTRIBUTE: + case MySqlParser.KW_FORMAT: + case MySqlParser.KW_GET_FORMAT: + case MySqlParser.KW_RANDOM: + case MySqlParser.KW_REVERSE: + case MySqlParser.KW_ROW_COUNT: + case MySqlParser.KW_SCHEMA_NAME: + case MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE: + case MySqlParser.KW_SRID: + case MySqlParser.KW_SYSTEM_USER: + case MySqlParser.KW_TP_CONNECTION_ADMIN: + case MySqlParser.KW_WEIGHT_STRING: + case MySqlParser.MOD: + case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: + case MySqlParser.STRING_LITERAL: + case MySqlParser.ID: + { + this.state = 2955; + this.partitionNames(); + } + break; + case MySqlParser.KW_ALL: + { + this.state = 2956; this.match(MySqlParser.KW_ALL); } break; @@ -13701,11 +13720,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByCheckPartitionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2952; + this.state = 2959; this.match(MySqlParser.KW_CHECK); - this.state = 2953; + this.state = 2960; this.match(MySqlParser.KW_PARTITION); - this.state = 2956; + this.state = 2963; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -14257,13 +14276,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2954; + this.state = 2961; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2955; + this.state = 2962; this.match(MySqlParser.KW_ALL); } break; @@ -14276,11 +14295,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByOptimizePartitionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2958; + this.state = 2965; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 2959; + this.state = 2966; this.match(MySqlParser.KW_PARTITION); - this.state = 2962; + this.state = 2969; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -14832,13 +14851,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2960; + this.state = 2967; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2961; + this.state = 2968; this.match(MySqlParser.KW_ALL); } break; @@ -14851,11 +14870,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRebuildPartitionContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2964; + this.state = 2971; this.match(MySqlParser.KW_REBUILD); - this.state = 2965; + this.state = 2972; this.match(MySqlParser.KW_PARTITION); - this.state = 2968; + this.state = 2975; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -15407,13 +15426,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2966; + this.state = 2973; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2967; + this.state = 2974; this.match(MySqlParser.KW_ALL); } break; @@ -15426,11 +15445,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRepairPartitionContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2970; + this.state = 2977; this.match(MySqlParser.KW_REPAIR); - this.state = 2971; + this.state = 2978; this.match(MySqlParser.KW_PARTITION); - this.state = 2974; + this.state = 2981; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -15982,13 +16001,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2972; + this.state = 2979; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2973; + this.state = 2980; this.match(MySqlParser.KW_ALL); } break; @@ -16001,9 +16020,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRemovePartitioningContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2976; + this.state = 2983; this.match(MySqlParser.KW_REMOVE); - this.state = 2977; + this.state = 2984; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16011,9 +16030,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByUpgradePartitioningContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2978; + this.state = 2985; this.match(MySqlParser.KW_UPGRADE); - this.state = 2979; + this.state = 2986; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16042,9 +16061,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2982; + this.state = 2989; this.match(MySqlParser.KW_DROP); - this.state = 2983; + this.state = 2990; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -16054,17 +16073,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2985; + this.state = 2992; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 361, this.context) ) { case 1: { - this.state = 2984; + this.state = 2991; this.ifExists(); } break; } - this.state = 2987; + this.state = 2994; this.databaseName(); } } @@ -16088,21 +16107,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2989; + this.state = 2996; this.match(MySqlParser.KW_DROP); - this.state = 2990; + this.state = 2997; this.match(MySqlParser.KW_EVENT); - this.state = 2992; + this.state = 2999; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 361, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 362, this.context) ) { case 1: { - this.state = 2991; + this.state = 2998; this.ifExists(); } break; } - this.state = 2994; + this.state = 3001; localContext._event_name = this.fullId(); } } @@ -16128,16 +16147,16 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2996; + this.state = 3003; this.match(MySqlParser.KW_DROP); - this.state = 2997; + this.state = 3004; this.match(MySqlParser.KW_INDEX); - this.state = 2999; + this.state = 3006; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 362, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 363, this.context) ) { case 1: { - this.state = 2998; + this.state = 3005; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -16150,36 +16169,36 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 3001; + this.state = 3008; this.indexName(); - this.state = 3002; + this.state = 3009; this.match(MySqlParser.KW_ON); - this.state = 3003; + this.state = 3010; this.tableName(); - this.state = 3016; + this.state = 3023; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 366, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 367, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 3014; + this.state = 3021; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 3004; + this.state = 3011; this.match(MySqlParser.KW_ALGORITHM); - this.state = 3006; + this.state = 3013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3005; + this.state = 3012; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3008; + this.state = 3015; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -16193,19 +16212,19 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_LOCK: { - this.state = 3009; + this.state = 3016; this.match(MySqlParser.KW_LOCK); - this.state = 3011; + this.state = 3018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3010; + this.state = 3017; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3013; + this.state = 3020; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -16222,9 +16241,9 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 3018; + this.state = 3025; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 366, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 367, this.context); } } } @@ -16249,27 +16268,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3019; + this.state = 3026; this.match(MySqlParser.KW_DROP); - this.state = 3020; + this.state = 3027; this.match(MySqlParser.KW_LOGFILE); - this.state = 3021; + this.state = 3028; this.match(MySqlParser.KW_GROUP); - this.state = 3022; + this.state = 3029; localContext._logfileGroupName = this.uid(); - this.state = 3023; + this.state = 3030; this.match(MySqlParser.KW_ENGINE); - this.state = 3025; + this.state = 3032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3024; + this.state = 3031; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3027; + this.state = 3034; this.engineName(); } } @@ -16293,21 +16312,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3029; + this.state = 3036; this.match(MySqlParser.KW_DROP); - this.state = 3030; + this.state = 3037; this.match(MySqlParser.KW_PROCEDURE); - this.state = 3032; + this.state = 3039; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { case 1: { - this.state = 3031; + this.state = 3038; this.ifExists(); } break; } - this.state = 3034; + this.state = 3041; localContext._sp_name = this.fullId(); } } @@ -16331,21 +16350,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3036; + this.state = 3043; this.match(MySqlParser.KW_DROP); - this.state = 3037; + this.state = 3044; this.match(MySqlParser.KW_FUNCTION); - this.state = 3039; + this.state = 3046; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: { - this.state = 3038; + this.state = 3045; this.ifExists(); } break; } - this.state = 3041; + this.state = 3048; this.functionName(); } } @@ -16369,21 +16388,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3043; + this.state = 3050; this.match(MySqlParser.KW_DROP); - this.state = 3044; + this.state = 3051; this.match(MySqlParser.KW_SERVER); - this.state = 3046; + this.state = 3053; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: { - this.state = 3045; + this.state = 3052; this.ifExists(); } break; } - this.state = 3048; + this.state = 3055; localContext._serverName = this.uid(); } } @@ -16408,25 +16427,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3050; + this.state = 3057; this.match(MySqlParser.KW_DROP); - this.state = 3051; + this.state = 3058; this.match(MySqlParser.KW_SPATIAL); - this.state = 3052; + this.state = 3059; this.match(MySqlParser.KW_REFERENCE); - this.state = 3053; + this.state = 3060; this.match(MySqlParser.KW_SYSTEM); - this.state = 3055; + this.state = 3062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3054; + this.state = 3061; this.ifExists(); } } - this.state = 3057; + this.state = 3064; this.match(MySqlParser.DECIMAL_LITERAL); } } @@ -16451,38 +16470,38 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3059; + this.state = 3066; this.match(MySqlParser.KW_DROP); - this.state = 3061; + this.state = 3068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 3060; + this.state = 3067; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 3063; + this.state = 3070; this.match(MySqlParser.KW_TABLE); - this.state = 3065; + this.state = 3072; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: { - this.state = 3064; + this.state = 3071; this.ifExists(); } break; } - this.state = 3067; + this.state = 3074; this.tableNames(); - this.state = 3069; + this.state = 3076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3068; + this.state = 3075; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -16518,40 +16537,40 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3071; + this.state = 3078; this.match(MySqlParser.KW_DROP); - this.state = 3073; + this.state = 3080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 3072; + this.state = 3079; this.match(MySqlParser.KW_UNDO); } } - this.state = 3075; - this.match(MySqlParser.KW_TABLESPACE); - this.state = 3076; - this.tablespaceName(); this.state = 3082; + this.match(MySqlParser.KW_TABLESPACE); + this.state = 3083; + this.tablespaceName(); + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 3077; + this.state = 3084; this.match(MySqlParser.KW_ENGINE); - this.state = 3079; + this.state = 3086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3078; + this.state = 3085; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3081; + this.state = 3088; this.engineName(); } } @@ -16578,21 +16597,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3084; + this.state = 3091; this.match(MySqlParser.KW_DROP); - this.state = 3085; + this.state = 3092; this.match(MySqlParser.KW_TRIGGER); - this.state = 3087; + this.state = 3094; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 3086; + this.state = 3093; this.ifExists(); } break; } - this.state = 3089; + this.state = 3096; localContext._trigger_name = this.fullId(); } } @@ -16617,44 +16636,44 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3091; + this.state = 3098; this.match(MySqlParser.KW_DROP); - this.state = 3092; + this.state = 3099; this.match(MySqlParser.KW_VIEW); - this.state = 3094; + this.state = 3101; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 3093; + this.state = 3100; this.ifExists(); } break; } - this.state = 3096; + this.state = 3103; this.viewName(); - this.state = 3101; + this.state = 3108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3097; + this.state = 3104; this.match(MySqlParser.COMMA); - this.state = 3098; + this.state = 3105; this.viewName(); } } - this.state = 3103; + this.state = 3110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3105; + this.state = 3112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3104; + this.state = 3111; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -16689,21 +16708,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3107; + this.state = 3114; this.match(MySqlParser.KW_DROP); - this.state = 3108; + this.state = 3115; this.match(MySqlParser.KW_ROLE); - this.state = 3110; + this.state = 3117; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 3109; + this.state = 3116; this.ifExists(); } break; } - this.state = 3112; + this.state = 3119; this.userOrRoleNames(); } } @@ -16726,61 +16745,61 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 170, MySqlParser.RULE_setRole); let _la: number; try { - this.state = 3134; + this.state = 3141; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3114; + this.state = 3121; this.match(MySqlParser.KW_SET); - this.state = 3115; + this.state = 3122; this.match(MySqlParser.KW_DEFAULT); - this.state = 3116; + this.state = 3123; this.match(MySqlParser.KW_ROLE); - this.state = 3120; + this.state = 3127; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 3117; + this.state = 3124; this.match(MySqlParser.KW_NONE); } break; case 2: { - this.state = 3118; + this.state = 3125; this.match(MySqlParser.KW_ALL); } break; case 3: { - this.state = 3119; + this.state = 3126; this.userOrRoleNames(); } break; } - this.state = 3122; + this.state = 3129; this.match(MySqlParser.KW_TO); { - this.state = 3123; + this.state = 3130; this.userOrRoleName(); } - this.state = 3128; + this.state = 3135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3124; + this.state = 3131; this.match(MySqlParser.COMMA); { - this.state = 3125; + this.state = 3132; this.userOrRoleName(); } } } - this.state = 3130; + this.state = 3137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16789,11 +16808,11 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3131; + this.state = 3138; this.match(MySqlParser.KW_SET); - this.state = 3132; + this.state = 3139; this.match(MySqlParser.KW_ROLE); - this.state = 3133; + this.state = 3140; this.roleOption(); } break; @@ -16820,25 +16839,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3136; - this.match(MySqlParser.KW_RENAME); - this.state = 3137; - this.match(MySqlParser.KW_TABLE); - this.state = 3138; - this.renameTableClause(); this.state = 3143; + this.match(MySqlParser.KW_RENAME); + this.state = 3144; + this.match(MySqlParser.KW_TABLE); + this.state = 3145; + this.renameTableClause(); + this.state = 3150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3139; + this.state = 3146; this.match(MySqlParser.COMMA); - this.state = 3140; + this.state = 3147; this.renameTableClause(); } } - this.state = 3145; + this.state = 3152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16864,11 +16883,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3146; + this.state = 3153; this.tableName(); - this.state = 3147; + this.state = 3154; this.match(MySqlParser.KW_TO); - this.state = 3148; + this.state = 3155; this.tableNameCreate(); } } @@ -16893,19 +16912,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3150; + this.state = 3157; this.match(MySqlParser.KW_TRUNCATE); - this.state = 3152; + this.state = 3159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 173) { { - this.state = 3151; + this.state = 3158; this.match(MySqlParser.KW_TABLE); } } - this.state = 3154; + this.state = 3161; this.tableName(); } } @@ -16929,34 +16948,34 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3156; + this.state = 3163; this.match(MySqlParser.KW_CALL); - this.state = 3157; - localContext._sp_name = this.fullId(); this.state = 3164; + localContext._sp_name = this.fullId(); + this.state = 3171; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 3158; + this.state = 3165; this.match(MySqlParser.LR_BRACKET); - this.state = 3161; + this.state = 3168; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 3159; + this.state = 3166; this.constants(); } break; case 2: { - this.state = 3160; + this.state = 3167; this.expressions(); } break; } - this.state = 3163; + this.state = 3170; this.match(MySqlParser.RR_BRACKET); } break; @@ -16981,20 +17000,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 180, MySqlParser.RULE_deleteStatement); try { - this.state = 3168; + this.state = 3175; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3166; + this.state = 3173; this.singleDeleteStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3167; + this.state = 3174; this.multipleDeleteStatement(); } break; @@ -17020,9 +17039,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3170; + this.state = 3177; this.match(MySqlParser.KW_DO); - this.state = 3171; + this.state = 3178; this.expressions(); } } @@ -17044,34 +17063,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new HandlerStatementContext(this.context, this.state); this.enterRule(localContext, 184, MySqlParser.RULE_handlerStatement); try { - this.state = 3177; + this.state = 3184; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3173; + this.state = 3180; this.handlerOpenStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3174; + this.state = 3181; this.handlerReadIndexStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3175; + this.state = 3182; this.handlerReadStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3176; + this.state = 3183; this.handlerCloseStatement(); } break; @@ -17098,14 +17117,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3179; + this.state = 3186; this.match(MySqlParser.KW_INSERT); - this.state = 3181; + this.state = 3188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 76 || _la === 107) { { - this.state = 3180; + this.state = 3187; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 76 || _la === 107)) { @@ -17118,89 +17137,89 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3184; + this.state = 3191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3183; + this.state = 3190; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3187; + this.state = 3194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3186; + this.state = 3193; this.match(MySqlParser.KW_INTO); } } - this.state = 3189; - this.tableName(); this.state = 3196; + this.tableName(); + this.state = 3203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3190; + this.state = 3197; this.match(MySqlParser.KW_PARTITION); - this.state = 3191; + this.state = 3198; this.match(MySqlParser.LR_BRACKET); - this.state = 3193; + this.state = 3200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3192; + this.state = 3199; this.partitionNames(); } } - this.state = 3195; + this.state = 3202; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3209; + this.state = 3216; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: { - this.state = 3199; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { - case 1: - { - this.state = 3198; - this.fullColumnNames(); - } - break; - } - this.state = 3203; + this.state = 3206; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { case 1: { - this.state = 3201; + this.state = 3205; + this.fullColumnNames(); + } + break; + } + this.state = 3210; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { + case 1: + { + this.state = 3208; this.valuesOrValueList(); } break; case 2: { - this.state = 3202; + this.state = 3209; this.selectOrTableOrValues(); } break; } - this.state = 3206; + this.state = 3213; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: { - this.state = 3205; + this.state = 3212; this.asRowAlias(); } break; @@ -17209,50 +17228,50 @@ export class MySqlParser extends antlr.Parser { break; case 2: { - this.state = 3208; + this.state = 3215; this.setAssignmentList(); } break; } - this.state = 3212; + this.state = 3219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3211; + this.state = 3218; this.asRowAlias(); } } - this.state = 3226; + this.state = 3233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3214; + this.state = 3221; this.match(MySqlParser.KW_ON); - this.state = 3215; + this.state = 3222; this.match(MySqlParser.KW_DUPLICATE); - this.state = 3216; - this.match(MySqlParser.KW_KEY); - this.state = 3217; - this.match(MySqlParser.KW_UPDATE); - this.state = 3218; - localContext._duplicatedFirst = this.updatedElement(); this.state = 3223; + this.match(MySqlParser.KW_KEY); + this.state = 3224; + this.match(MySqlParser.KW_UPDATE); + this.state = 3225; + localContext._duplicatedFirst = this.updatedElement(); + this.state = 3230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3219; + this.state = 3226; this.match(MySqlParser.COMMA); - this.state = 3220; + this.state = 3227; localContext._updatedElement = this.updatedElement(); localContext._duplicatedElements.push(localContext._updatedElement); } } - this.state = 3225; + this.state = 3232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17281,16 +17300,16 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3228; + this.state = 3235; this.match(MySqlParser.KW_AS); - this.state = 3229; + this.state = 3236; localContext._rowAlias = this.uid(); - this.state = 3231; + this.state = 3238; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: { - this.state = 3230; + this.state = 3237; this.fullColumnNames(); } break; @@ -17315,30 +17334,30 @@ export class MySqlParser extends antlr.Parser { let localContext = new SelectOrTableOrValuesContext(this.context, this.state); this.enterRule(localContext, 190, MySqlParser.RULE_selectOrTableOrValues); try { - this.state = 3237; + this.state = 3244; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3233; + this.state = 3240; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3234; + this.state = 3241; this.match(MySqlParser.KW_TABLE); - this.state = 3235; + this.state = 3242; this.tableName(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3236; + this.state = 3243; this.rowValuesList(); } break; @@ -17367,22 +17386,22 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3239; + this.state = 3246; this.interSectQuery(); - this.state = 3245; + this.state = 3252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3240; + this.state = 3247; this.match(MySqlParser.KW_INTERSECT); - this.state = 3242; + this.state = 3249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3241; + this.state = 3248; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -17394,11 +17413,11 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3244; + this.state = 3251; this.interSectQuery(); } } - this.state = 3247; + this.state = 3254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 828); @@ -17425,24 +17444,24 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3250; + this.state = 3257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 3249; + this.state = 3256; this.match(MySqlParser.LR_BRACKET); } } - this.state = 3252; + this.state = 3259; this.querySpecification(); - this.state = 3254; + this.state = 3261; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3253; + this.state = 3260; this.match(MySqlParser.RR_BRACKET); } break; @@ -17470,16 +17489,16 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3256; + this.state = 3263; this.match(MySqlParser.KW_LOAD); - this.state = 3257; + this.state = 3264; this.match(MySqlParser.KW_DATA); - this.state = 3259; + this.state = 3266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3258; + this.state = 3265; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -17492,26 +17511,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3262; + this.state = 3269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3261; + this.state = 3268; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3264; + this.state = 3271; this.match(MySqlParser.KW_INFILE); - this.state = 3265; + this.state = 3272; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3267; + this.state = 3274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3266; + this.state = 3273; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -17524,48 +17543,48 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3269; + this.state = 3276; this.match(MySqlParser.KW_INTO); - this.state = 3270; - this.match(MySqlParser.KW_TABLE); - this.state = 3271; - this.tableName(); this.state = 3277; + this.match(MySqlParser.KW_TABLE); + this.state = 3278; + this.tableName(); + this.state = 3284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3272; + this.state = 3279; this.match(MySqlParser.KW_PARTITION); - this.state = 3273; + this.state = 3280; this.match(MySqlParser.LR_BRACKET); - this.state = 3274; + this.state = 3281; this.partitionNames(); - this.state = 3275; + this.state = 3282; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3282; + this.state = 3289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3279; + this.state = 3286; this.match(MySqlParser.KW_CHARACTER); - this.state = 3280; + this.state = 3287; this.match(MySqlParser.KW_SET); - this.state = 3281; + this.state = 3288; localContext._charset = this.charsetName(); } } - this.state = 3290; + this.state = 3297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 337 || _la === 398) { { - this.state = 3284; + this.state = 3291; localContext._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -17575,57 +17594,57 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3286; + this.state = 3293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3285; + this.state = 3292; this.selectFieldsInto(); } } - this.state = 3288; + this.state = 3295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 56 || _la === 58 || _la === 123 || _la === 174); } } - this.state = 3298; + this.state = 3305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3292; + this.state = 3299; this.match(MySqlParser.KW_LINES); - this.state = 3294; + this.state = 3301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3293; + this.state = 3300; this.selectLinesInto(); } } - this.state = 3296; + this.state = 3303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 171 || _la === 174); } } - this.state = 3304; + this.state = 3311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3300; + this.state = 3307; this.match(MySqlParser.KW_IGNORE); - this.state = 3301; + this.state = 3308; this.decimalLiteral(); - this.state = 3302; + this.state = 3309; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -17638,58 +17657,58 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3317; + this.state = 3324; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { - this.state = 3306; + this.state = 3313; this.match(MySqlParser.LR_BRACKET); - this.state = 3307; + this.state = 3314; this.assignmentField(); - this.state = 3312; + this.state = 3319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3308; + this.state = 3315; this.match(MySqlParser.COMMA); - this.state = 3309; + this.state = 3316; this.assignmentField(); } } - this.state = 3314; + this.state = 3321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3315; + this.state = 3322; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3328; + this.state = 3335; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: { - this.state = 3319; + this.state = 3326; this.match(MySqlParser.KW_SET); - this.state = 3320; + this.state = 3327; this.updatedElement(); - this.state = 3325; + this.state = 3332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3321; + this.state = 3328; this.match(MySqlParser.COMMA); - this.state = 3322; + this.state = 3329; this.updatedElement(); } } - this.state = 3327; + this.state = 3334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17719,16 +17738,16 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3330; + this.state = 3337; this.match(MySqlParser.KW_LOAD); - this.state = 3331; + this.state = 3338; this.match(MySqlParser.KW_XML); - this.state = 3333; + this.state = 3340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3332; + this.state = 3339; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -17741,26 +17760,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3336; + this.state = 3343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3335; + this.state = 3342; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3338; + this.state = 3345; this.match(MySqlParser.KW_INFILE); - this.state = 3339; + this.state = 3346; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3341; + this.state = 3348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3340; + this.state = 3347; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -17773,55 +17792,55 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3343; + this.state = 3350; this.match(MySqlParser.KW_INTO); - this.state = 3344; + this.state = 3351; this.match(MySqlParser.KW_TABLE); - this.state = 3345; + this.state = 3352; this.tableName(); - this.state = 3349; + this.state = 3356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3346; + this.state = 3353; this.match(MySqlParser.KW_CHARACTER); - this.state = 3347; + this.state = 3354; this.match(MySqlParser.KW_SET); - this.state = 3348; + this.state = 3355; localContext._charset = this.charsetName(); } } - this.state = 3361; + this.state = 3368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 587) { { - this.state = 3351; + this.state = 3358; this.match(MySqlParser.KW_ROWS); - this.state = 3352; + this.state = 3359; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 3353; + this.state = 3360; this.match(MySqlParser.KW_BY); - this.state = 3355; + this.state = 3362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 859) { { - this.state = 3354; + this.state = 3361; this.match(MySqlParser.LESS_SYMBOL); } } - this.state = 3357; + this.state = 3364; localContext._tag = this.match(MySqlParser.STRING_LITERAL); - this.state = 3359; + this.state = 3366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 858) { { - this.state = 3358; + this.state = 3365; this.match(MySqlParser.GREATER_SYMBOL); } } @@ -17829,16 +17848,16 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3367; + this.state = 3374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3363; + this.state = 3370; this.match(MySqlParser.KW_IGNORE); - this.state = 3364; + this.state = 3371; this.decimalLiteral(); - this.state = 3365; + this.state = 3372; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -17851,58 +17870,58 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3380; + this.state = 3387; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 3369; + this.state = 3376; this.match(MySqlParser.LR_BRACKET); - this.state = 3370; + this.state = 3377; this.assignmentField(); - this.state = 3375; + this.state = 3382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3371; + this.state = 3378; this.match(MySqlParser.COMMA); - this.state = 3372; + this.state = 3379; this.assignmentField(); } } - this.state = 3377; + this.state = 3384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3378; + this.state = 3385; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3391; + this.state = 3398; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { case 1: { - this.state = 3382; + this.state = 3389; this.match(MySqlParser.KW_SET); - this.state = 3383; + this.state = 3390; this.updatedElement(); - this.state = 3388; + this.state = 3395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3384; + this.state = 3391; this.match(MySqlParser.COMMA); - this.state = 3385; + this.state = 3392; this.updatedElement(); } } - this.state = 3390; + this.state = 3397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17932,32 +17951,10 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3393; + this.state = 3400; this.match(MySqlParser.LR_BRACKET); - this.state = 3394; - this.parenthesizedQueryExpression(); - this.state = 3396; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 125) { - { - this.state = 3395; - this.orderByClause(); - } - } - - this.state = 3399; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 100) { - { - this.state = 3398; - this.limitClause(); - } - } - this.state = 3401; - this.match(MySqlParser.RR_BRACKET); + this.parenthesizedQueryExpression(); this.state = 3403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -17978,12 +17975,34 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3409; + this.state = 3408; + this.match(MySqlParser.RR_BRACKET); + this.state = 3410; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 125) { + { + this.state = 3409; + this.orderByClause(); + } + } + + this.state = 3413; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 100) { + { + this.state = 3412; + this.limitClause(); + } + } + + this.state = 3416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3408; + this.state = 3415; this.intoClause(); } } @@ -18011,14 +18030,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3411; + this.state = 3418; this.match(MySqlParser.KW_REPLACE); - this.state = 3413; + this.state = 3420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 107) { { - this.state = 3412; + this.state = 3419; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 107)) { @@ -18031,35 +18050,35 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3416; + this.state = 3423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3415; + this.state = 3422; this.match(MySqlParser.KW_INTO); } } - this.state = 3418; + this.state = 3425; this.tableName(); - this.state = 3424; + this.state = 3431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3419; + this.state = 3426; this.match(MySqlParser.KW_PARTITION); - this.state = 3420; + this.state = 3427; this.match(MySqlParser.LR_BRACKET); - this.state = 3421; + this.state = 3428; this.partitionNames(); - this.state = 3422; + this.state = 3429; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3434; + this.state = 3441; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: @@ -18068,27 +18087,27 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_VALUE: case MySqlParser.LR_BRACKET: { - this.state = 3430; + this.state = 3437; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 3426; + this.state = 3433; this.match(MySqlParser.LR_BRACKET); - this.state = 3427; + this.state = 3434; this.columnNames(); - this.state = 3428; + this.state = 3435; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3432; + this.state = 3439; this.replaceStatementValuesOrSelectOrTable(); } break; case MySqlParser.KW_SET: { - this.state = 3433; + this.state = 3440; this.setAssignmentList(); } break; @@ -18117,44 +18136,44 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3495; + this.state = 3502; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: localContext = new UnionAndLateralSelectContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3436; + this.state = 3443; this.querySpecification(); - this.state = 3440; + this.state = 3447; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 446, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3437; + this.state = 3444; this.unionStatement(); } } } - this.state = 3442; + this.state = 3449; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 446, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); } - this.state = 3451; + this.state = 3458; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 3443; + this.state = 3450; this.match(MySqlParser.KW_UNION); - this.state = 3445; + this.state = 3452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3444; + this.state = 3451; (localContext as UnionAndLateralSelectContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -18167,18 +18186,18 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3449; + this.state = 3456; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 3447; + this.state = 3454; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 3448; + this.state = 3455; this.queryExpression(); } break; @@ -18188,60 +18207,60 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 3457; + this.state = 3464; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 450, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3453; + this.state = 3460; this.match(MySqlParser.COMMA); - this.state = 3454; + this.state = 3461; this.lateralStatement(); } } } - this.state = 3459; + this.state = 3466; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 450, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); } - this.state = 3461; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { - case 1: - { - this.state = 3460; - this.orderByClause(); - } - break; - } - this.state = 3464; + this.state = 3468; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3463; - this.limitClause(); + this.state = 3467; + this.orderByClause(); } break; } - this.state = 3467; + this.state = 3471; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: { - this.state = 3466; - this.lockClause(); + this.state = 3470; + this.limitClause(); } break; } - this.state = 3470; + this.state = 3474; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: { - this.state = 3469; + this.state = 3473; + this.lockClause(); + } + break; + } + this.state = 3477; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + case 1: + { + this.state = 3476; this.intoClause(); } break; @@ -18252,37 +18271,37 @@ export class MySqlParser extends antlr.Parser { localContext = new SelectExpressionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3472; + this.state = 3479; this.queryExpression(); - this.state = 3476; + this.state = 3483; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3473; + this.state = 3480; this.unionStatement(); } } } - this.state = 3478; + this.state = 3485; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); } - this.state = 3484; + this.state = 3491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3479; + this.state = 3486; this.match(MySqlParser.KW_UNION); - this.state = 3481; + this.state = 3488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3480; + this.state = 3487; (localContext as SelectExpressionContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -18295,37 +18314,37 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3483; + this.state = 3490; this.queryExpression(); } break; } - this.state = 3487; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { - case 1: - { - this.state = 3486; - this.orderByClause(); - } - break; - } - this.state = 3490; + this.state = 3494; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: { - this.state = 3489; - this.limitClause(); + this.state = 3493; + this.orderByClause(); } break; } - this.state = 3493; + this.state = 3497; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3492; + this.state = 3496; + this.limitClause(); + } + break; + } + this.state = 3500; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + case 1: + { + this.state = 3499; this.lockClause(); } break; @@ -18357,44 +18376,44 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3498; + this.state = 3505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 3497; + this.state = 3504; this.withClause(); } } - this.state = 3500; + this.state = 3507; this.queryExpressionBody(0); - this.state = 3502; + this.state = 3509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3501; + this.state = 3508; this.orderByClause(); } } - this.state = 3505; + this.state = 3512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3504; + this.state = 3511; this.limitClause(); } } - this.state = 3508; + this.state = 3515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3507; + this.state = 3514; this.intoClause(); } } @@ -18435,13 +18454,13 @@ export class MySqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { { - this.state = 3511; + this.state = 3518; this.queryItem(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3527; + this.state = 3534; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 469, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 470, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -18449,25 +18468,25 @@ export class MySqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 3525; + this.state = 3532; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3513; + this.state = 3520; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3514; + this.state = 3521; this.match(MySqlParser.KW_UNION); - this.state = 3516; + this.state = 3523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3515; + this.state = 3522; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -18479,7 +18498,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3518; + this.state = 3525; this.queryItem(0); } break; @@ -18487,18 +18506,18 @@ export class MySqlParser extends antlr.Parser { { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3519; + this.state = 3526; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3520; + this.state = 3527; this.match(MySqlParser.KW_EXCEPT); - this.state = 3522; + this.state = 3529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3521; + this.state = 3528; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -18510,16 +18529,16 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3524; + this.state = 3531; this.queryItem(0); } break; } } } - this.state = 3529; + this.state = 3536; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 469, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 470, this.context); } } } @@ -18557,13 +18576,13 @@ export class MySqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { { - this.state = 3531; + this.state = 3538; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3541; + this.state = 3548; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -18574,18 +18593,18 @@ export class MySqlParser extends antlr.Parser { { localContext = new QueryItemContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryItem); - this.state = 3533; + this.state = 3540; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3534; + this.state = 3541; this.match(MySqlParser.KW_INTERSECT); - this.state = 3536; + this.state = 3543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3535; + this.state = 3542; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -18597,14 +18616,14 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3538; + this.state = 3545; this.queryPrimary(); } } } - this.state = 3543; + this.state = 3550; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); } } } @@ -18627,54 +18646,54 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 212, MySqlParser.RULE_queryPrimary); let _la: number; try { - this.state = 3558; + this.state = 3565; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3544; + this.state = 3551; this.queryBlock(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3545; + this.state = 3552; this.match(MySqlParser.LR_BRACKET); - this.state = 3546; + this.state = 3553; this.queryExpressionBody(0); - this.state = 3548; + this.state = 3555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3547; + this.state = 3554; this.orderByClause(); } } - this.state = 3551; + this.state = 3558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3550; + this.state = 3557; this.limitClause(); } } - this.state = 3554; + this.state = 3561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3553; + this.state = 3560; this.intoClause(); } } - this.state = 3556; + this.state = 3563; this.match(MySqlParser.RR_BRACKET); } break; @@ -18698,20 +18717,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new UpdateStatementContext(this.context, this.state); this.enterRule(localContext, 214, MySqlParser.RULE_updateStatement); try { - this.state = 3562; + this.state = 3569; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3560; + this.state = 3567; this.singleUpdateStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3561; + this.state = 3568; this.multipleUpdateStatement(); } break; @@ -18737,30 +18756,30 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3564; + this.state = 3571; this.rowValuesList(); - this.state = 3568; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { - case 1: - { - this.state = 3565; - this.match(MySqlParser.KW_ORDER); - this.state = 3566; - this.match(MySqlParser.KW_BY); - this.state = 3567; - this.indexColumnName(); - } - break; - } - this.state = 3572; + this.state = 3575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { case 1: { - this.state = 3570; + this.state = 3572; + this.match(MySqlParser.KW_ORDER); + this.state = 3573; + this.match(MySqlParser.KW_BY); + this.state = 3574; + this.indexColumnName(); + } + break; + } + this.state = 3579; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { + case 1: + { + this.state = 3577; this.match(MySqlParser.KW_LIMIT); - this.state = 3571; + this.state = 3578; this.limitClauseAtom(); } break; @@ -18788,15 +18807,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3574; + this.state = 3581; this.queryBlock(); - this.state = 3579; + this.state = 3586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 59 || _la === 181 || _la === 828) { { { - this.state = 3575; + this.state = 3582; _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 181 || _la === 828)) { this.errorHandler.recoverInline(this); @@ -18805,40 +18824,40 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3576; + this.state = 3583; this.queryBlock(); } } - this.state = 3581; + this.state = 3588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3583; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 480, this.context) ) { - case 1: - { - this.state = 3582; - this.orderByClause(); - } - break; - } - this.state = 3586; + this.state = 3590; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 481, this.context) ) { case 1: { - this.state = 3585; + this.state = 3589; + this.orderByClause(); + } + break; + } + this.state = 3593; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 482, this.context) ) { + case 1: + { + this.state = 3592; this.limitClause(); } break; } - this.state = 3589; + this.state = 3596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3588; + this.state = 3595; this.intoClause(); } } @@ -18863,28 +18882,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new QueryBlockContext(this.context, this.state); this.enterRule(localContext, 220, MySqlParser.RULE_queryBlock); try { - this.state = 3594; + this.state = 3601; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3591; + this.state = 3598; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3592; + this.state = 3599; this.tableStatement(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3593; + this.state = 3600; this.valuesStatement(); } break; @@ -18910,36 +18929,36 @@ export class MySqlParser extends antlr.Parser { let localContext = new ReplaceStatementValuesOrSelectOrTableContext(this.context, this.state); this.enterRule(localContext, 222, MySqlParser.RULE_replaceStatementValuesOrSelectOrTable); try { - this.state = 3601; + this.state = 3608; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 484, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3596; + this.state = 3603; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3597; + this.state = 3604; this.match(MySqlParser.KW_TABLE); - this.state = 3598; + this.state = 3605; this.tableName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3599; + this.state = 3606; this.valuesOrValueList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3600; + this.state = 3607; this.rowValuesList(); } break; @@ -18966,31 +18985,31 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3603; + this.state = 3610; this.match(MySqlParser.KW_VALUES); - this.state = 3604; - this.match(MySqlParser.KW_ROW); - this.state = 3605; - this.expressionsWithDefaults(); this.state = 3611; + this.match(MySqlParser.KW_ROW); + this.state = 3612; + this.expressionsWithDefaults(); + this.state = 3618; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 486, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3606; + this.state = 3613; this.match(MySqlParser.COMMA); - this.state = 3607; + this.state = 3614; this.match(MySqlParser.KW_ROW); - this.state = 3608; + this.state = 3615; this.expressionsWithDefaults(); } } } - this.state = 3613; + this.state = 3620; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 486, this.context); } } } @@ -19015,24 +19034,24 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3614; + this.state = 3621; this.match(MySqlParser.KW_SET); - this.state = 3615; + this.state = 3622; localContext._setFirst = this.updatedElement(); - this.state = 3620; + this.state = 3627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3616; + this.state = 3623; this.match(MySqlParser.COMMA); - this.state = 3617; + this.state = 3624; localContext._updatedElement = this.updatedElement(); localContext._setElements.push(localContext._updatedElement); } } - this.state = 3622; + this.state = 3629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19058,11 +19077,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3623; + this.state = 3630; this.columnName(); - this.state = 3624; + this.state = 3631; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 3625; + this.state = 3632; this.expressionOrDefault(); } } @@ -19084,7 +19103,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new AssignmentFieldContext(this.context, this.state); this.enterRule(localContext, 230, MySqlParser.RULE_assignmentField); try { - this.state = 3629; + this.state = 3636; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -19637,14 +19656,14 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 3627; + this.state = 3634; localContext._var_name = this.uid(); } break; case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 3628; + this.state = 3635; this.match(MySqlParser.LOCAL_ID); } break; @@ -19672,15 +19691,15 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3652; + this.state = 3659; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 3631; + this.state = 3638; this.match(MySqlParser.KW_FOR); - this.state = 3632; + this.state = 3639; _la = this.tokenStream.LA(1); if(!(_la === 185 || _la === 594)) { this.errorHandler.recoverInline(this); @@ -19689,42 +19708,42 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3642; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { - case 1: - { - this.state = 3633; - this.match(MySqlParser.KW_OF); - this.state = 3634; - this.tableName(); - this.state = 3639; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 488, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 3635; - this.match(MySqlParser.COMMA); - this.state = 3636; - this.tableName(); - } - } - } - this.state = 3641; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 488, this.context); - } - } - break; - } - this.state = 3646; + this.state = 3649; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { case 1: { - this.state = 3644; + this.state = 3640; + this.match(MySqlParser.KW_OF); + this.state = 3641; + this.tableName(); + this.state = 3646; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 489, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 3642; + this.match(MySqlParser.COMMA); + this.state = 3643; + this.tableName(); + } + } + } + this.state = 3648; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 489, this.context); + } + } + break; + } + this.state = 3653; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { + case 1: + { + this.state = 3651; _la = this.tokenStream.LA(1); if(!(_la === 159 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -19733,7 +19752,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3645; + this.state = 3652; this.match(MySqlParser.KW_LOCKED); } break; @@ -19743,13 +19762,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_LOCK: this.enterOuterAlt(localContext, 2); { - this.state = 3648; + this.state = 3655; this.match(MySqlParser.KW_LOCK); - this.state = 3649; + this.state = 3656; this.match(MySqlParser.KW_IN); - this.state = 3650; + this.state = 3657; this.match(MySqlParser.KW_SHARE); - this.state = 3651; + this.state = 3658; this.match(MySqlParser.KW_MODE); } break; @@ -19778,108 +19797,108 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3654; + this.state = 3661; this.match(MySqlParser.KW_DELETE); - this.state = 3656; + this.state = 3663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3655; + this.state = 3662; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3659; + this.state = 3666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 3658; + this.state = 3665; this.match(MySqlParser.KW_QUICK); } } - this.state = 3662; + this.state = 3669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3661; + this.state = 3668; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3664; + this.state = 3671; this.match(MySqlParser.KW_FROM); - this.state = 3665; + this.state = 3672; this.tableName(); - this.state = 3670; + this.state = 3677; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: { - this.state = 3667; + this.state = 3674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3666; + this.state = 3673; this.match(MySqlParser.KW_AS); } } - this.state = 3669; + this.state = 3676; localContext._table_alias = this.uid(); } break; } - this.state = 3677; + this.state = 3684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { - { - this.state = 3672; - this.match(MySqlParser.KW_PARTITION); - this.state = 3673; - this.match(MySqlParser.LR_BRACKET); - this.state = 3674; - this.partitionNames(); - this.state = 3675; - this.match(MySqlParser.RR_BRACKET); - } - } - - this.state = 3681; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 192) { { this.state = 3679; - this.match(MySqlParser.KW_WHERE); + this.match(MySqlParser.KW_PARTITION); this.state = 3680; - this.expression(0); - } - } - - this.state = 3684; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 125) { - { - this.state = 3683; - this.orderByClause(); + this.match(MySqlParser.LR_BRACKET); + this.state = 3681; + this.partitionNames(); + this.state = 3682; + this.match(MySqlParser.RR_BRACKET); } } this.state = 3688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 100) { + if (_la === 192) { { this.state = 3686; - this.match(MySqlParser.KW_LIMIT); + this.match(MySqlParser.KW_WHERE); this.state = 3687; + this.expression(0); + } + } + + this.state = 3691; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 125) { + { + this.state = 3690; + this.orderByClause(); + } + } + + this.state = 3695; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 100) { + { + this.state = 3693; + this.match(MySqlParser.KW_LIMIT); + this.state = 3694; this.limitClauseAtom(); } } @@ -19907,39 +19926,39 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3690; + this.state = 3697; this.match(MySqlParser.KW_DELETE); - this.state = 3692; + this.state = 3699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3691; + this.state = 3698; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3695; + this.state = 3702; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 503, this.context) ) { case 1: { - this.state = 3694; + this.state = 3701; this.match(MySqlParser.KW_QUICK); } break; } - this.state = 3698; + this.state = 3705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3697; + this.state = 3704; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3739; + this.state = 3746; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -20491,117 +20510,117 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3700; + this.state = 3707; this.tableName(); - this.state = 3703; + this.state = 3710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3701; + this.state = 3708; this.match(MySqlParser.DOT); - this.state = 3702; + this.state = 3709; this.match(MySqlParser.STAR); } } - this.state = 3713; + this.state = 3720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3705; + this.state = 3712; this.match(MySqlParser.COMMA); - this.state = 3706; + this.state = 3713; this.tableName(); - this.state = 3709; + this.state = 3716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3707; + this.state = 3714; this.match(MySqlParser.DOT); - this.state = 3708; + this.state = 3715; this.match(MySqlParser.STAR); } } } } - this.state = 3715; + this.state = 3722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3716; + this.state = 3723; this.match(MySqlParser.KW_FROM); - this.state = 3717; + this.state = 3724; this.tableSources(); } break; case MySqlParser.KW_FROM: { - this.state = 3719; + this.state = 3726; this.match(MySqlParser.KW_FROM); - this.state = 3720; + this.state = 3727; this.tableName(); - this.state = 3723; + this.state = 3730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3721; + this.state = 3728; this.match(MySqlParser.DOT); - this.state = 3722; + this.state = 3729; this.match(MySqlParser.STAR); } } - this.state = 3733; + this.state = 3740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3725; + this.state = 3732; this.match(MySqlParser.COMMA); - this.state = 3726; + this.state = 3733; this.tableName(); - this.state = 3729; + this.state = 3736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3727; + this.state = 3734; this.match(MySqlParser.DOT); - this.state = 3728; + this.state = 3735; this.match(MySqlParser.STAR); } } } } - this.state = 3735; + this.state = 3742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3736; + this.state = 3743; this.match(MySqlParser.KW_USING); - this.state = 3737; + this.state = 3744; this.tableSources(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3743; + this.state = 3750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3741; + this.state = 3748; this.match(MySqlParser.KW_WHERE); - this.state = 3742; + this.state = 3749; this.expression(0); } } @@ -20629,28 +20648,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3745; - this.match(MySqlParser.KW_HANDLER); - this.state = 3746; - this.tableName(); - this.state = 3747; - this.match(MySqlParser.KW_OPEN); this.state = 3752; + this.match(MySqlParser.KW_HANDLER); + this.state = 3753; + this.tableName(); + this.state = 3754; + this.match(MySqlParser.KW_OPEN); + this.state = 3759; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { case 1: { - this.state = 3749; + this.state = 3756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3748; + this.state = 3755; this.match(MySqlParser.KW_AS); } } - this.state = 3751; + this.state = 3758; localContext._table_alias = this.uid(); } break; @@ -20678,28 +20697,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3754; + this.state = 3761; this.match(MySqlParser.KW_HANDLER); - this.state = 3755; + this.state = 3762; this.tableName(); - this.state = 3756; + this.state = 3763; this.match(MySqlParser.KW_READ); - this.state = 3757; - this.indexName(); this.state = 3764; + this.indexName(); + this.state = 3771; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.EQUAL_SYMBOL: case MySqlParser.GREATER_SYMBOL: case MySqlParser.LESS_SYMBOL: { - this.state = 3758; + this.state = 3765; this.comparisonBase(); - this.state = 3759; + this.state = 3766; this.match(MySqlParser.LR_BRACKET); - this.state = 3760; + this.state = 3767; this.constants(); - this.state = 3761; + this.state = 3768; this.match(MySqlParser.RR_BRACKET); } break; @@ -20708,7 +20727,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_NEXT: case MySqlParser.KW_PREV: { - this.state = 3763; + this.state = 3770; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 501 || _la === 542)) { @@ -20723,26 +20742,26 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3768; + this.state = 3775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3766; + this.state = 3773; this.match(MySqlParser.KW_WHERE); - this.state = 3767; + this.state = 3774; this.expression(0); } } - this.state = 3772; + this.state = 3779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3770; + this.state = 3777; this.match(MySqlParser.KW_LIMIT); - this.state = 3771; + this.state = 3778; this.limitClauseAtom(); } } @@ -20770,13 +20789,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3774; + this.state = 3781; this.match(MySqlParser.KW_HANDLER); - this.state = 3775; + this.state = 3782; this.tableName(); - this.state = 3776; + this.state = 3783; this.match(MySqlParser.KW_READ); - this.state = 3777; + this.state = 3784; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 501)) { @@ -20786,26 +20805,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3780; + this.state = 3787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3778; + this.state = 3785; this.match(MySqlParser.KW_WHERE); - this.state = 3779; + this.state = 3786; this.expression(0); } } - this.state = 3784; + this.state = 3791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3782; + this.state = 3789; this.match(MySqlParser.KW_LIMIT); - this.state = 3783; + this.state = 3790; this.limitClauseAtom(); } } @@ -20832,11 +20851,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3786; + this.state = 3793; this.match(MySqlParser.KW_HANDLER); - this.state = 3787; + this.state = 3794; this.tableName(); - this.state = 3788; + this.state = 3795; this.match(MySqlParser.KW_CLOSE); } } @@ -20861,27 +20880,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3790; + this.state = 3797; this.match(MySqlParser.KW_IMPORT); - this.state = 3791; - this.match(MySqlParser.KW_TABLE); - this.state = 3792; - this.match(MySqlParser.KW_FROM); - this.state = 3793; - this.stringLiteral(); this.state = 3798; + this.match(MySqlParser.KW_TABLE); + this.state = 3799; + this.match(MySqlParser.KW_FROM); + this.state = 3800; + this.stringLiteral(); + this.state = 3805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3794; + this.state = 3801; this.match(MySqlParser.COMMA); - this.state = 3795; + this.state = 3802; this.stringLiteral(); } } - this.state = 3800; + this.state = 3807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20908,98 +20927,98 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3801; + this.state = 3808; this.match(MySqlParser.KW_UPDATE); - this.state = 3803; + this.state = 3810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3802; + this.state = 3809; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3806; + this.state = 3813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3805; + this.state = 3812; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3808; + this.state = 3815; this.tableName(); - this.state = 3813; + this.state = 3820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3810; + this.state = 3817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3809; + this.state = 3816; this.match(MySqlParser.KW_AS); } } - this.state = 3812; + this.state = 3819; localContext._table_alias = this.uid(); } } - this.state = 3815; + this.state = 3822; this.match(MySqlParser.KW_SET); - this.state = 3816; + this.state = 3823; this.updatedElement(); - this.state = 3821; + this.state = 3828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3817; + this.state = 3824; this.match(MySqlParser.COMMA); - this.state = 3818; + this.state = 3825; this.updatedElement(); } } - this.state = 3823; + this.state = 3830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3826; + this.state = 3833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3824; + this.state = 3831; this.match(MySqlParser.KW_WHERE); - this.state = 3825; + this.state = 3832; this.expression(0); } } - this.state = 3829; + this.state = 3836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3828; + this.state = 3835; this.orderByClause(); } } - this.state = 3832; + this.state = 3839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3831; + this.state = 3838; this.limitClause(); } } @@ -21027,58 +21046,58 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3834; + this.state = 3841; this.match(MySqlParser.KW_UPDATE); - this.state = 3836; + this.state = 3843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3835; + this.state = 3842; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3839; + this.state = 3846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3838; + this.state = 3845; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3841; - this.tableSources(); - this.state = 3842; - this.match(MySqlParser.KW_SET); - this.state = 3843; - this.updatedElement(); this.state = 3848; + this.tableSources(); + this.state = 3849; + this.match(MySqlParser.KW_SET); + this.state = 3850; + this.updatedElement(); + this.state = 3855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3844; + this.state = 3851; this.match(MySqlParser.COMMA); - this.state = 3845; + this.state = 3852; this.updatedElement(); } } - this.state = 3850; + this.state = 3857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3853; + this.state = 3860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3851; + this.state = 3858; this.match(MySqlParser.KW_WHERE); - this.state = 3852; + this.state = 3859; this.expression(0); } } @@ -21106,29 +21125,29 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3855; - this.match(MySqlParser.KW_ORDER); - this.state = 3856; - this.match(MySqlParser.KW_BY); - this.state = 3857; - this.orderByExpression(); this.state = 3862; + this.match(MySqlParser.KW_ORDER); + this.state = 3863; + this.match(MySqlParser.KW_BY); + this.state = 3864; + this.orderByExpression(); + this.state = 3869; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 532, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 533, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3858; + this.state = 3865; this.match(MySqlParser.COMMA); - this.state = 3859; + this.state = 3866; this.orderByExpression(); } } } - this.state = 3864; + this.state = 3871; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 532, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 533, this.context); } } } @@ -21153,14 +21172,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3865; + this.state = 3872; this.expression(0); - this.state = 3867; + this.state = 3874; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { case 1: { - this.state = 3866; + this.state = 3873; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -21196,25 +21215,25 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3869; + this.state = 3876; this.tableSource(); - this.state = 3874; + this.state = 3881; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 534, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 535, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3870; + this.state = 3877; this.match(MySqlParser.COMMA); - this.state = 3871; + this.state = 3878; this.tableSource(); } } } - this.state = 3876; + this.state = 3883; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 534, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 535, this.context); } } } @@ -21238,30 +21257,30 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3895; + this.state = 3902; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 537, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 538, this.context) ) { case 1: localContext = new TableSourceBaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3877; + this.state = 3884; this.tableSourceItem(); - this.state = 3881; + this.state = 3888; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 535, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 536, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3878; + this.state = 3885; this.joinPart(); } } } - this.state = 3883; + this.state = 3890; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 535, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 536, this.context); } } break; @@ -21269,25 +21288,25 @@ export class MySqlParser extends antlr.Parser { localContext = new TableSourceNestedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3884; + this.state = 3891; this.match(MySqlParser.LR_BRACKET); - this.state = 3885; + this.state = 3892; this.tableSourceItem(); - this.state = 3889; + this.state = 3896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 35 || ((((_la - 84)) & ~0x1F) === 0 && ((1 << (_la - 84)) & 536887425) !== 0) || _la === 150 || _la === 172) { { { - this.state = 3886; + this.state = 3893; this.joinPart(); } } - this.state = 3891; + this.state = 3898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3892; + this.state = 3899; this.match(MySqlParser.RR_BRACKET); } break; @@ -21295,7 +21314,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableJsonContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3894; + this.state = 3901; this.jsonTable(); } break; @@ -21321,75 +21340,75 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3942; + this.state = 3949; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: localContext = new AtomTableItemContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3897; + this.state = 3904; this.tableName(); - this.state = 3903; + this.state = 3910; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 538, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 539, this.context) ) { case 1: { - this.state = 3898; + this.state = 3905; this.match(MySqlParser.KW_PARTITION); - this.state = 3899; + this.state = 3906; this.match(MySqlParser.LR_BRACKET); - this.state = 3900; + this.state = 3907; this.partitionNames(); - this.state = 3901; + this.state = 3908; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3909; + this.state = 3916; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 541, this.context) ) { case 1: { - this.state = 3906; + this.state = 3913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3905; + this.state = 3912; this.match(MySqlParser.KW_AS); } } - this.state = 3908; + this.state = 3915; (localContext as AtomTableItemContext)._alias = this.uid(); } break; } - this.state = 3919; + this.state = 3926; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 542, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 543, this.context) ) { case 1: { - this.state = 3911; + this.state = 3918; this.indexHint(); - this.state = 3916; + this.state = 3923; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 541, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 542, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3912; + this.state = 3919; this.match(MySqlParser.COMMA); - this.state = 3913; + this.state = 3920; this.indexHint(); } } } - this.state = 3918; + this.state = 3925; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 541, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 542, this.context); } } break; @@ -21400,54 +21419,54 @@ export class MySqlParser extends antlr.Parser { localContext = new SubqueryTableItemContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3922; + this.state = 3929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 95) { { - this.state = 3921; + this.state = 3928; this.match(MySqlParser.KW_LATERAL); } } - this.state = 3929; + this.state = 3936; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { case 1: { - this.state = 3924; + this.state = 3931; this.selectStatement(); } break; case 2: { - this.state = 3925; + this.state = 3932; this.match(MySqlParser.LR_BRACKET); - this.state = 3926; + this.state = 3933; (localContext as SubqueryTableItemContext)._parenthesisSubquery = this.selectStatement(); - this.state = 3927; + this.state = 3934; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3932; + this.state = 3939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3931; + this.state = 3938; this.match(MySqlParser.KW_AS); } } - this.state = 3934; + this.state = 3941; (localContext as SubqueryTableItemContext)._alias = this.uid(); - this.state = 3936; + this.state = 3943; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { case 1: { - this.state = 3935; + this.state = 3942; this.fullColumnNames(); } break; @@ -21458,11 +21477,11 @@ export class MySqlParser extends antlr.Parser { localContext = new TableSourcesItemContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3938; + this.state = 3945; this.match(MySqlParser.LR_BRACKET); - this.state = 3939; + this.state = 3946; this.tableSources(); - this.state = 3940; + this.state = 3947; this.match(MySqlParser.RR_BRACKET); } break; @@ -21488,11 +21507,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3944; + this.state = 3951; this.match(MySqlParser.LR_BRACKET); - this.state = 3945; + this.state = 3952; this.columnNames(); - this.state = 3946; + this.state = 3953; this.match(MySqlParser.RR_BRACKET); } } @@ -21517,7 +21536,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3948; + this.state = 3955; localContext._indexHintAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 79 || _la === 187)) { @@ -21527,7 +21546,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3949; + this.state = 3956; localContext._keyFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -21537,31 +21556,31 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3952; + this.state = 3959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 3950; + this.state = 3957; this.match(MySqlParser.KW_FOR); - this.state = 3951; + this.state = 3958; this.indexHintType(); } } - this.state = 3954; + this.state = 3961; this.match(MySqlParser.LR_BRACKET); - this.state = 3956; + this.state = 3963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3955; + this.state = 3962; this.indexNames(); } } - this.state = 3958; + this.state = 3965; this.match(MySqlParser.RR_BRACKET); } } @@ -21583,31 +21602,31 @@ export class MySqlParser extends antlr.Parser { let localContext = new IndexHintTypeContext(this.context, this.state); this.enterRule(localContext, 266, MySqlParser.RULE_indexHintType); try { - this.state = 3965; + this.state = 3972; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3960; + this.state = 3967; this.match(MySqlParser.KW_JOIN); } break; case MySqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 3961; + this.state = 3968; this.match(MySqlParser.KW_ORDER); - this.state = 3962; + this.state = 3969; this.match(MySqlParser.KW_BY); } break; case MySqlParser.KW_GROUP: this.enterOuterAlt(localContext, 3); { - this.state = 3963; + this.state = 3970; this.match(MySqlParser.KW_GROUP); - this.state = 3964; + this.state = 3971; this.match(MySqlParser.KW_BY); } break; @@ -21635,7 +21654,7 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 4016; + this.state = 4023; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CROSS: @@ -21644,12 +21663,12 @@ export class MySqlParser extends antlr.Parser { localContext = new InnerJoinContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3968; + this.state = 3975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 35 || _la === 84) { { - this.state = 3967; + this.state = 3974; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 84)) { this.errorHandler.recoverInline(this); @@ -21661,35 +21680,35 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3970; + this.state = 3977; this.match(MySqlParser.KW_JOIN); - this.state = 3972; + this.state = 3979; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: { - this.state = 3971; + this.state = 3978; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 3974; + this.state = 3981; this.tableSourceItem(); - this.state = 3978; + this.state = 3985; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 553, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 554, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3975; + this.state = 3982; this.joinSpec(); } } } - this.state = 3980; + this.state = 3987; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 553, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 554, this.context); } } break; @@ -21697,25 +21716,25 @@ export class MySqlParser extends antlr.Parser { localContext = new StraightJoinContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3981; + this.state = 3988; this.match(MySqlParser.KW_STRAIGHT_JOIN); - this.state = 3982; + this.state = 3989; this.tableSourceItem(); - this.state = 3986; + this.state = 3993; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 554, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 555, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3983; + this.state = 3990; this.joinSpec(); } } } - this.state = 3988; + this.state = 3995; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 554, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 555, this.context); } } break; @@ -21724,7 +21743,7 @@ export class MySqlParser extends antlr.Parser { localContext = new OuterJoinContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3989; + this.state = 3996; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -21733,45 +21752,45 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3991; + this.state = 3998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 3990; + this.state = 3997; this.match(MySqlParser.KW_OUTER); } } - this.state = 3993; + this.state = 4000; this.match(MySqlParser.KW_JOIN); - this.state = 3995; + this.state = 4002; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: { - this.state = 3994; + this.state = 4001; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 3997; + this.state = 4004; this.tableSourceItem(); - this.state = 4001; + this.state = 4008; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 557, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 558, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3998; + this.state = 4005; this.joinSpec(); } } } - this.state = 4003; + this.state = 4010; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 557, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 558, this.context); } } break; @@ -21779,26 +21798,26 @@ export class MySqlParser extends antlr.Parser { localContext = new NaturalJoinContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4004; + this.state = 4011; this.match(MySqlParser.KW_NATURAL); - this.state = 4012; + this.state = 4019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84 || _la === 98 || _la === 150) { { - this.state = 4007; + this.state = 4014; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_INNER: { - this.state = 4005; + this.state = 4012; this.match(MySqlParser.KW_INNER); } break; case MySqlParser.KW_LEFT: case MySqlParser.KW_RIGHT: { - this.state = 4006; + this.state = 4013; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -21812,12 +21831,12 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4010; + this.state = 4017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4009; + this.state = 4016; this.match(MySqlParser.KW_OUTER); } } @@ -21825,9 +21844,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 4014; + this.state = 4021; this.match(MySqlParser.KW_JOIN); - this.state = 4015; + this.state = 4022; this.tableSourceItem(); } break; @@ -21853,16 +21872,16 @@ export class MySqlParser extends antlr.Parser { let localContext = new JoinSpecContext(this.context, this.state); this.enterRule(localContext, 270, MySqlParser.RULE_joinSpec); try { - this.state = 4025; + this.state = 4032; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { { - this.state = 4018; + this.state = 4025; this.match(MySqlParser.KW_ON); - this.state = 4019; + this.state = 4026; this.expression(0); } } @@ -21870,13 +21889,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 4020; + this.state = 4027; this.match(MySqlParser.KW_USING); - this.state = 4021; + this.state = 4028; this.match(MySqlParser.LR_BRACKET); - this.state = 4022; + this.state = 4029; this.columnNames(); - this.state = 4023; + this.state = 4030; this.match(MySqlParser.RR_BRACKET); } break; @@ -21902,28 +21921,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new QueryExpressionContext(this.context, this.state); this.enterRule(localContext, 272, MySqlParser.RULE_queryExpression); try { - this.state = 4035; + this.state = 4042; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4027; + this.state = 4034; this.match(MySqlParser.LR_BRACKET); - this.state = 4028; + this.state = 4035; this.querySpecification(); - this.state = 4029; + this.state = 4036; this.match(MySqlParser.RR_BRACKET); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4031; + this.state = 4038; this.match(MySqlParser.LR_BRACKET); - this.state = 4032; + this.state = 4039; this.queryExpression(); - this.state = 4033; + this.state = 4040; this.match(MySqlParser.RR_BRACKET); } break; @@ -21950,94 +21969,94 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4037; + this.state = 4044; this.match(MySqlParser.KW_SELECT); - this.state = 4041; + this.state = 4048; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4038; + this.state = 4045; this.selectSpec(); } } } - this.state = 4043; + this.state = 4050; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); } - this.state = 4044; + this.state = 4051; this.selectElements(); - this.state = 4046; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { - case 1: - { - this.state = 4045; - this.intoClause(); - } - break; - } - this.state = 4048; - this.fromClause(); - this.state = 4050; + this.state = 4053; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 566, this.context) ) { case 1: { - this.state = 4049; - this.groupByClause(); + this.state = 4052; + this.intoClause(); } break; } - this.state = 4053; + this.state = 4055; + this.fromClause(); + this.state = 4057; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { case 1: { - this.state = 4052; - this.havingClause(); + this.state = 4056; + this.groupByClause(); } break; } - this.state = 4056; + this.state = 4060; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { case 1: { - this.state = 4055; - this.windowClause(); + this.state = 4059; + this.havingClause(); } break; } - this.state = 4059; + this.state = 4063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { case 1: { - this.state = 4058; - this.orderByClause(); + this.state = 4062; + this.windowClause(); } break; } - this.state = 4062; + this.state = 4066; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 570, this.context) ) { case 1: { - this.state = 4061; - this.limitClause(); + this.state = 4065; + this.orderByClause(); } break; } - this.state = 4065; + this.state = 4069; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 571, this.context) ) { case 1: { - this.state = 4064; + this.state = 4068; + this.limitClause(); + } + break; + } + this.state = 4072; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 572, this.context) ) { + case 1: + { + this.state = 4071; this.intoClause(); } break; @@ -22065,14 +22084,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4067; + this.state = 4074; this.match(MySqlParser.KW_UNION); - this.state = 4069; + this.state = 4076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 4068; + this.state = 4075; localContext._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -22085,18 +22104,18 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 4073; + this.state = 4080; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4071; + this.state = 4078; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4072; + this.state = 4079; this.queryExpression(); } break; @@ -22126,64 +22145,64 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4075; + this.state = 4082; this.match(MySqlParser.KW_LATERAL); - this.state = 4090; + this.state = 4097; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { case 1: { - this.state = 4076; + this.state = 4083; this.querySpecification(); } break; case 2: { - this.state = 4077; + this.state = 4084; this.queryExpression(); } break; case 3: { { - this.state = 4078; + this.state = 4085; this.match(MySqlParser.LR_BRACKET); - this.state = 4081; + this.state = 4088; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4079; + this.state = 4086; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4080; + this.state = 4087; this.queryExpression(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4083; + this.state = 4090; this.match(MySqlParser.RR_BRACKET); - this.state = 4088; + this.state = 4095; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4085; + this.state = 4092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4084; + this.state = 4091; this.match(MySqlParser.KW_AS); } } - this.state = 4087; + this.state = 4094; localContext._alias = this.uid(); } break; @@ -22215,42 +22234,42 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4092; - this.match(MySqlParser.KW_JSON_TABLE); - this.state = 4093; - this.match(MySqlParser.LR_BRACKET); - this.state = 4094; - this.match(MySqlParser.STRING_LITERAL); - this.state = 4095; - this.match(MySqlParser.COMMA); - this.state = 4096; - this.match(MySqlParser.STRING_LITERAL); - this.state = 4097; - this.match(MySqlParser.KW_COLUMNS); - this.state = 4098; - this.match(MySqlParser.LR_BRACKET); this.state = 4099; - this.jsonColumnList(); + this.match(MySqlParser.KW_JSON_TABLE); this.state = 4100; - this.match(MySqlParser.RR_BRACKET); + this.match(MySqlParser.LR_BRACKET); this.state = 4101; - this.match(MySqlParser.RR_BRACKET); + this.match(MySqlParser.STRING_LITERAL); + this.state = 4102; + this.match(MySqlParser.COMMA); + this.state = 4103; + this.match(MySqlParser.STRING_LITERAL); + this.state = 4104; + this.match(MySqlParser.KW_COLUMNS); + this.state = 4105; + this.match(MySqlParser.LR_BRACKET); this.state = 4106; + this.jsonColumnList(); + this.state = 4107; + this.match(MySqlParser.RR_BRACKET); + this.state = 4108; + this.match(MySqlParser.RR_BRACKET); + this.state = 4113; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4103; + this.state = 4110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4102; + this.state = 4109; this.match(MySqlParser.KW_AS); } } - this.state = 4105; + this.state = 4112; localContext._alias = this.uid(); } break; @@ -22278,21 +22297,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4108; + this.state = 4115; this.jsonColumn(); - this.state = 4113; + this.state = 4120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4109; + this.state = 4116; this.match(MySqlParser.COMMA); - this.state = 4110; + this.state = 4117; this.jsonColumn(); } } - this.state = 4115; + this.state = 4122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22317,22 +22336,22 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 284, MySqlParser.RULE_jsonColumn); let _la: number; try { - this.state = 4145; + this.state = 4152; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 586, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4116; + this.state = 4123; this.columnName(); - this.state = 4133; + this.state = 4140; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: { - this.state = 4117; + this.state = 4124; this.match(MySqlParser.KW_FOR); - this.state = 4118; + this.state = 4125; this.match(MySqlParser.KW_ORDINALITY); } break; @@ -22396,33 +22415,33 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_POINT: case MySqlParser.KW_POLYGON: { - this.state = 4119; + this.state = 4126; this.dataType(); - this.state = 4131; + this.state = 4138; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PATH: { - this.state = 4120; + this.state = 4127; this.match(MySqlParser.KW_PATH); - this.state = 4121; + this.state = 4128; this.match(MySqlParser.STRING_LITERAL); - this.state = 4123; + this.state = 4130; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4122; + this.state = 4129; this.jsonOnEmpty(); } break; } - this.state = 4126; + this.state = 4133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 4125; + this.state = 4132; this.jsonOnError(); } } @@ -22431,11 +22450,11 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_EXISTS: { - this.state = 4128; + this.state = 4135; this.match(MySqlParser.KW_EXISTS); - this.state = 4129; + this.state = 4136; this.match(MySqlParser.KW_PATH); - this.state = 4130; + this.state = 4137; this.match(MySqlParser.STRING_LITERAL); } break; @@ -22452,27 +22471,27 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4135; + this.state = 4142; this.match(MySqlParser.KW_NESTED); - this.state = 4137; + this.state = 4144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 4136; + this.state = 4143; this.match(MySqlParser.KW_PATH); } } - this.state = 4139; + this.state = 4146; this.match(MySqlParser.STRING_LITERAL); - this.state = 4140; + this.state = 4147; this.match(MySqlParser.KW_COLUMNS); - this.state = 4141; + this.state = 4148; this.match(MySqlParser.LR_BRACKET); - this.state = 4142; + this.state = 4149; this.jsonColumnList(); - this.state = 4143; + this.state = 4150; this.match(MySqlParser.RR_BRACKET); } break; @@ -22498,35 +22517,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4151; + this.state = 4158; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4147; + this.state = 4154; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4148; + this.state = 4155; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4149; + this.state = 4156; this.match(MySqlParser.KW_DEFAULT); - this.state = 4150; + this.state = 4157; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4153; + this.state = 4160; this.match(MySqlParser.KW_ON); - this.state = 4154; + this.state = 4161; this.match(MySqlParser.KW_EMPTY); } } @@ -22550,35 +22569,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4160; + this.state = 4167; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4156; + this.state = 4163; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4157; + this.state = 4164; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4158; + this.state = 4165; this.match(MySqlParser.KW_DEFAULT); - this.state = 4159; + this.state = 4166; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4162; + this.state = 4169; this.match(MySqlParser.KW_ON); - this.state = 4163; + this.state = 4170; this.match(MySqlParser.KW_ERROR); } } @@ -22601,7 +22620,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 290, MySqlParser.RULE_selectSpec); let _la: number; try { - this.state = 4173; + this.state = 4180; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: @@ -22609,7 +22628,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_DISTINCTROW: this.enterOuterAlt(localContext, 1); { - this.state = 4165; + this.state = 4172; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49 || _la === 50)) { this.errorHandler.recoverInline(this); @@ -22623,35 +22642,35 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_HIGH_PRIORITY: this.enterOuterAlt(localContext, 2); { - this.state = 4166; + this.state = 4173; this.match(MySqlParser.KW_HIGH_PRIORITY); } break; case MySqlParser.KW_STRAIGHT_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4167; + this.state = 4174; this.match(MySqlParser.KW_STRAIGHT_JOIN); } break; case MySqlParser.KW_SQL_SMALL_RESULT: this.enterOuterAlt(localContext, 4); { - this.state = 4168; + this.state = 4175; this.match(MySqlParser.KW_SQL_SMALL_RESULT); } break; case MySqlParser.KW_SQL_BIG_RESULT: this.enterOuterAlt(localContext, 5); { - this.state = 4169; + this.state = 4176; this.match(MySqlParser.KW_SQL_BIG_RESULT); } break; case MySqlParser.KW_SQL_BUFFER_RESULT: this.enterOuterAlt(localContext, 6); { - this.state = 4170; + this.state = 4177; this.match(MySqlParser.KW_SQL_BUFFER_RESULT); } break; @@ -22659,7 +22678,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SQL_NO_CACHE: this.enterOuterAlt(localContext, 7); { - this.state = 4171; + this.state = 4178; _la = this.tokenStream.LA(1); if(!(_la === 637 || _la === 638)) { this.errorHandler.recoverInline(this); @@ -22673,7 +22692,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SQL_CALC_FOUND_ROWS: this.enterOuterAlt(localContext, 8); { - this.state = 4172; + this.state = 4179; this.match(MySqlParser.KW_SQL_CALC_FOUND_ROWS); } break; @@ -22702,39 +22721,39 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4177; + this.state = 4184; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 590, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { case 1: { - this.state = 4175; + this.state = 4182; localContext._star = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 4176; + this.state = 4183; this.selectElement(); } break; } - this.state = 4183; + this.state = 4190; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 591, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 592, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4179; + this.state = 4186; this.match(MySqlParser.COMMA); - this.state = 4180; + this.state = 4187; this.selectElement(); } } } - this.state = 4185; + this.state = 4192; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 591, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 592, this.context); } } } @@ -22757,58 +22776,30 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 294, MySqlParser.RULE_selectElement); let _la: number; try { - this.state = 4215; + this.state = 4222; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { case 1: localContext = new SelectExpressionElementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4188; + this.state = 4195; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 592, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { case 1: { - this.state = 4186; + this.state = 4193; this.match(MySqlParser.LOCAL_ID); - this.state = 4187; + this.state = 4194; this.match(MySqlParser.VAR_ASSIGN); } break; } - this.state = 4190; - this.expression(0); - this.state = 4195; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 594, this.context) ) { - case 1: - { - this.state = 4192; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 13) { - { - this.state = 4191; - this.match(MySqlParser.KW_AS); - } - } - - this.state = 4194; - (localContext as SelectExpressionElementContext)._alias = this.uid(); - } - break; - } - } - break; - case 2: - localContext = new SelectFunctionElementContext(localContext); - this.enterOuterAlt(localContext, 2); - { this.state = 4197; - this.functionCall(); + this.expression(0); this.state = 4202; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 596, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 595, this.context) ) { case 1: { this.state = 4199; @@ -22822,6 +22813,34 @@ export class MySqlParser extends antlr.Parser { } this.state = 4201; + (localContext as SelectExpressionElementContext)._alias = this.uid(); + } + break; + } + } + break; + case 2: + localContext = new SelectFunctionElementContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 4204; + this.functionCall(); + this.state = 4209; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 597, this.context) ) { + case 1: + { + this.state = 4206; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 13) { + { + this.state = 4205; + this.match(MySqlParser.KW_AS); + } + } + + this.state = 4208; (localContext as SelectFunctionElementContext)._alias = this.uid(); } break; @@ -22832,11 +22851,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SelectStarElementContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4204; + this.state = 4211; (localContext as SelectStarElementContext)._select_element = this.fullId(); - this.state = 4205; + this.state = 4212; this.match(MySqlParser.DOT); - this.state = 4206; + this.state = 4213; this.match(MySqlParser.STAR); } break; @@ -22844,24 +22863,24 @@ export class MySqlParser extends antlr.Parser { localContext = new SelectColumnElementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4208; + this.state = 4215; this.columnName(); - this.state = 4213; + this.state = 4220; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { case 1: { - this.state = 4210; + this.state = 4217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4209; + this.state = 4216; this.match(MySqlParser.KW_AS); } } - this.state = 4212; + this.state = 4219; (localContext as SelectColumnElementContext)._alias = this.uid(); } break; @@ -22890,34 +22909,34 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 4253; + this.state = 4260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 607, this.context) ) { case 1: localContext = new SelectIntoVariablesContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4217; + this.state = 4224; this.match(MySqlParser.KW_INTO); - this.state = 4218; + this.state = 4225; this.assignmentField(); - this.state = 4223; + this.state = 4230; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 600, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 601, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4219; + this.state = 4226; this.match(MySqlParser.COMMA); - this.state = 4220; + this.state = 4227; this.assignmentField(); } } } - this.state = 4225; + this.state = 4232; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 600, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 601, this.context); } } break; @@ -22925,11 +22944,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SelectIntoDumpFileContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4226; + this.state = 4233; this.match(MySqlParser.KW_INTO); - this.state = 4227; + this.state = 4234; this.match(MySqlParser.KW_DUMPFILE); - this.state = 4228; + this.state = 4235; this.match(MySqlParser.STRING_LITERAL); } break; @@ -22938,32 +22957,32 @@ export class MySqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 4229; + this.state = 4236; this.match(MySqlParser.KW_INTO); - this.state = 4230; + this.state = 4237; this.match(MySqlParser.KW_OUTFILE); - this.state = 4231; + this.state = 4238; (localContext as SelectIntoTextFileContext)._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 4235; + this.state = 4242; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 601, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { case 1: { - this.state = 4232; + this.state = 4239; this.match(MySqlParser.KW_CHARACTER); - this.state = 4233; + this.state = 4240; this.match(MySqlParser.KW_SET); - this.state = 4234; + this.state = 4241; (localContext as SelectIntoTextFileContext)._charset = this.charsetName(); } break; } - this.state = 4243; + this.state = 4250; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 604, this.context) ) { case 1: { - this.state = 4237; + this.state = 4244; (localContext as SelectIntoTextFileContext)._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -22973,7 +22992,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4239; + this.state = 4246; this.errorHandler.sync(this); alternative = 1; do { @@ -22981,7 +23000,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4238; + this.state = 4245; this.selectFieldsInto(); } } @@ -22989,21 +23008,21 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4241; + this.state = 4248; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 602, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 603, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 4251; + this.state = 4258; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { case 1: { - this.state = 4245; + this.state = 4252; this.match(MySqlParser.KW_LINES); - this.state = 4247; + this.state = 4254; this.errorHandler.sync(this); alternative = 1; do { @@ -23011,7 +23030,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4246; + this.state = 4253; this.selectLinesInto(); } } @@ -23019,9 +23038,9 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4249; + this.state = 4256; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 604, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 605, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -23050,17 +23069,17 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 298, MySqlParser.RULE_selectFieldsInto); let _la: number; try { - this.state = 4267; + this.state = 4274; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 1); { - this.state = 4255; + this.state = 4262; this.match(MySqlParser.KW_TERMINATED); - this.state = 4256; + this.state = 4263; this.match(MySqlParser.KW_BY); - this.state = 4257; + this.state = 4264; localContext._terminationField = this.match(MySqlParser.STRING_LITERAL); } break; @@ -23068,32 +23087,32 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_OPTIONALLY: this.enterOuterAlt(localContext, 2); { - this.state = 4259; + this.state = 4266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 4258; + this.state = 4265; this.match(MySqlParser.KW_OPTIONALLY); } } - this.state = 4261; + this.state = 4268; this.match(MySqlParser.KW_ENCLOSED); - this.state = 4262; + this.state = 4269; this.match(MySqlParser.KW_BY); - this.state = 4263; + this.state = 4270; localContext._enclosion = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ESCAPED: this.enterOuterAlt(localContext, 3); { - this.state = 4264; + this.state = 4271; this.match(MySqlParser.KW_ESCAPED); - this.state = 4265; + this.state = 4272; this.match(MySqlParser.KW_BY); - this.state = 4266; + this.state = 4273; localContext._escaping = this.match(MySqlParser.STRING_LITERAL); } break; @@ -23119,28 +23138,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new SelectLinesIntoContext(this.context, this.state); this.enterRule(localContext, 300, MySqlParser.RULE_selectLinesInto); try { - this.state = 4275; + this.state = 4282; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_STARTING: this.enterOuterAlt(localContext, 1); { - this.state = 4269; + this.state = 4276; this.match(MySqlParser.KW_STARTING); - this.state = 4270; + this.state = 4277; this.match(MySqlParser.KW_BY); - this.state = 4271; + this.state = 4278; localContext._starting = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 2); { - this.state = 4272; + this.state = 4279; this.match(MySqlParser.KW_TERMINATED); - this.state = 4273; + this.state = 4280; this.match(MySqlParser.KW_BY); - this.state = 4274; + this.state = 4281; localContext._terminationLine = this.match(MySqlParser.STRING_LITERAL); } break; @@ -23168,26 +23187,26 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4279; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { - case 1: - { - this.state = 4277; - this.match(MySqlParser.KW_FROM); - this.state = 4278; - this.tableSources(); - } - break; - } - this.state = 4283; + this.state = 4286; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { case 1: { - this.state = 4281; + this.state = 4284; + this.match(MySqlParser.KW_FROM); + this.state = 4285; + this.tableSources(); + } + break; + } + this.state = 4290; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { + case 1: + { + this.state = 4288; this.match(MySqlParser.KW_WHERE); - this.state = 4282; + this.state = 4289; localContext._whereExpr = this.expression(0); } break; @@ -23215,38 +23234,38 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4285; - this.match(MySqlParser.KW_GROUP); - this.state = 4286; - this.match(MySqlParser.KW_BY); - this.state = 4287; - this.groupByItem(); this.state = 4292; + this.match(MySqlParser.KW_GROUP); + this.state = 4293; + this.match(MySqlParser.KW_BY); + this.state = 4294; + this.groupByItem(); + this.state = 4299; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 613, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4288; + this.state = 4295; this.match(MySqlParser.COMMA); - this.state = 4289; + this.state = 4296; this.groupByItem(); } } } - this.state = 4294; + this.state = 4301; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 613, this.context); } - this.state = 4297; + this.state = 4304; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: { - this.state = 4295; + this.state = 4302; this.match(MySqlParser.KW_WITH); - this.state = 4296; + this.state = 4303; this.match(MySqlParser.KW_ROLLUP); } break; @@ -23273,9 +23292,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4299; + this.state = 4306; this.match(MySqlParser.KW_HAVING); - this.state = 4300; + this.state = 4307; localContext._havingExpr = this.expression(0); } } @@ -23300,43 +23319,43 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4302; + this.state = 4309; this.match(MySqlParser.KW_WINDOW); - this.state = 4303; + this.state = 4310; this.windowName(); - this.state = 4304; + this.state = 4311; this.match(MySqlParser.KW_AS); - this.state = 4305; + this.state = 4312; this.match(MySqlParser.LR_BRACKET); - this.state = 4306; + this.state = 4313; this.windowSpec(); - this.state = 4307; + this.state = 4314; this.match(MySqlParser.RR_BRACKET); - this.state = 4317; + this.state = 4324; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 615, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4308; + this.state = 4315; this.match(MySqlParser.COMMA); - this.state = 4309; + this.state = 4316; this.windowName(); - this.state = 4310; + this.state = 4317; this.match(MySqlParser.KW_AS); - this.state = 4311; + this.state = 4318; this.match(MySqlParser.LR_BRACKET); - this.state = 4312; + this.state = 4319; this.windowSpec(); - this.state = 4313; + this.state = 4320; this.match(MySqlParser.RR_BRACKET); } } } - this.state = 4319; + this.state = 4326; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 615, this.context); } } } @@ -23361,14 +23380,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4320; + this.state = 4327; this.expression(0); - this.state = 4322; + this.state = 4329; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4321; + this.state = 4328; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -23403,36 +23422,36 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4324; + this.state = 4331; this.match(MySqlParser.KW_LIMIT); - this.state = 4335; + this.state = 4342; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: { - this.state = 4328; + this.state = 4335; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 4325; + this.state = 4332; localContext._offset = this.limitClauseAtom(); - this.state = 4326; + this.state = 4333; this.match(MySqlParser.COMMA); } break; } - this.state = 4330; + this.state = 4337; localContext._limit = this.limitClauseAtom(); } break; case 2: { - this.state = 4331; + this.state = 4338; localContext._limit = this.limitClauseAtom(); - this.state = 4332; + this.state = 4339; this.match(MySqlParser.KW_OFFSET); - this.state = 4333; + this.state = 4340; localContext._offset = this.limitClauseAtom(); } break; @@ -23457,7 +23476,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new LimitClauseAtomContext(this.context, this.state); this.enterRule(localContext, 314, MySqlParser.RULE_limitClauseAtom); try { - this.state = 4340; + this.state = 4347; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -23468,7 +23487,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4337; + this.state = 4344; this.decimalLiteral(); } break; @@ -23476,7 +23495,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 4338; + this.state = 4345; this.mysqlVariable(); } break; @@ -24028,7 +24047,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 4339; + this.state = 4346; this.simpleId(); } break; @@ -24057,30 +24076,30 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4342; + this.state = 4349; this.match(MySqlParser.KW_START); - this.state = 4343; + this.state = 4350; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4352; + this.state = 4359; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { case 1: { - this.state = 4344; + this.state = 4351; this.transactionMode(); - this.state = 4349; + this.state = 4356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4345; + this.state = 4352; this.match(MySqlParser.COMMA); - this.state = 4346; + this.state = 4353; this.transactionMode(); } } - this.state = 4351; + this.state = 4358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24110,14 +24129,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4354; + this.state = 4361; this.match(MySqlParser.KW_BEGIN); - this.state = 4356; + this.state = 4363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4355; + this.state = 4362; this.match(MySqlParser.KW_WORK); } } @@ -24145,56 +24164,56 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4358; + this.state = 4365; this.match(MySqlParser.KW_COMMIT); - this.state = 4360; + this.state = 4367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4359; + this.state = 4366; this.match(MySqlParser.KW_WORK); } } - this.state = 4367; + this.state = 4374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4362; + this.state = 4369; this.match(MySqlParser.KW_AND); - this.state = 4364; + this.state = 4371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4363; + this.state = 4370; localContext._nochain = this.match(MySqlParser.KW_NO); } } - this.state = 4366; + this.state = 4373; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4373; + this.state = 4380; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { case 1: { - this.state = 4370; + this.state = 4377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4369; + this.state = 4376; localContext._norelease = this.match(MySqlParser.KW_NO); } } - this.state = 4372; + this.state = 4379; this.match(MySqlParser.KW_RELEASE); } break; @@ -24222,56 +24241,56 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4375; + this.state = 4382; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4377; + this.state = 4384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4376; + this.state = 4383; this.match(MySqlParser.KW_WORK); } } - this.state = 4384; + this.state = 4391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4379; + this.state = 4386; this.match(MySqlParser.KW_AND); - this.state = 4381; + this.state = 4388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4380; + this.state = 4387; localContext._nochain = this.match(MySqlParser.KW_NO); } } - this.state = 4383; + this.state = 4390; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4390; + this.state = 4397; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 631, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { case 1: { - this.state = 4387; + this.state = 4394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4386; + this.state = 4393; localContext._norelease = this.match(MySqlParser.KW_NO); } } - this.state = 4389; + this.state = 4396; this.match(MySqlParser.KW_RELEASE); } break; @@ -24298,9 +24317,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4392; + this.state = 4399; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4393; + this.state = 4400; localContext._identifier = this.uid(); } } @@ -24325,31 +24344,31 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4395; + this.state = 4402; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4397; + this.state = 4404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4396; + this.state = 4403; this.match(MySqlParser.KW_WORK); } } - this.state = 4399; + this.state = 4406; this.match(MySqlParser.KW_TO); - this.state = 4401; + this.state = 4408; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { case 1: { - this.state = 4400; + this.state = 4407; this.match(MySqlParser.KW_SAVEPOINT); } break; } - this.state = 4403; + this.state = 4410; localContext._identifier = this.uid(); } } @@ -24373,11 +24392,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4405; + this.state = 4412; this.match(MySqlParser.KW_RELEASE); - this.state = 4406; + this.state = 4413; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4407; + this.state = 4414; localContext._identifier = this.uid(); } } @@ -24402,9 +24421,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4409; + this.state = 4416; this.match(MySqlParser.KW_LOCK); - this.state = 4410; + this.state = 4417; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -24413,21 +24432,21 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4411; + this.state = 4418; this.lockTableElement(); - this.state = 4416; + this.state = 4423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4412; + this.state = 4419; this.match(MySqlParser.COMMA); - this.state = 4413; + this.state = 4420; this.lockTableElement(); } } - this.state = 4418; + this.state = 4425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24453,9 +24472,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4419; + this.state = 4426; this.match(MySqlParser.KW_UNLOCK); - this.state = 4420; + this.state = 4427; this.match(MySqlParser.KW_TABLES); } } @@ -24480,13 +24499,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4422; + this.state = 4429; this.match(MySqlParser.KW_SET); - this.state = 4423; + this.state = 4430; this.match(MySqlParser.KW_AUTOCOMMIT); - this.state = 4424; + this.state = 4431; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4425; + this.state = 4432; localContext._autocommitValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -24519,14 +24538,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4427; + this.state = 4434; this.match(MySqlParser.KW_SET); - this.state = 4429; + this.state = 4436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 4428; + this.state = 4435; localContext._transactionContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { @@ -24539,23 +24558,23 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 4431; + this.state = 4438; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4432; + this.state = 4439; this.transactionOption(); - this.state = 4437; + this.state = 4444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4433; + this.state = 4440; this.match(MySqlParser.COMMA); - this.state = 4434; + this.state = 4441; this.transactionOption(); } } - this.state = 4439; + this.state = 4446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24579,35 +24598,35 @@ export class MySqlParser extends antlr.Parser { let localContext = new TransactionModeContext(this.context, this.state); this.enterRule(localContext, 338, MySqlParser.RULE_transactionMode); try { - this.state = 4447; + this.state = 4454; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 638, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4440; + this.state = 4447; this.match(MySqlParser.KW_WITH); - this.state = 4441; + this.state = 4448; this.match(MySqlParser.KW_CONSISTENT); - this.state = 4442; + this.state = 4449; this.match(MySqlParser.KW_SNAPSHOT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4443; + this.state = 4450; this.match(MySqlParser.KW_READ); - this.state = 4444; + this.state = 4451; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4445; + this.state = 4452; this.match(MySqlParser.KW_READ); - this.state = 4446; + this.state = 4453; this.match(MySqlParser.KW_ONLY); } break; @@ -24634,29 +24653,29 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4449; + this.state = 4456; this.tableName(); - this.state = 4454; + this.state = 4461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4451; + this.state = 4458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4450; + this.state = 4457; this.match(MySqlParser.KW_AS); } } - this.state = 4453; + this.state = 4460; localContext._alias = this.uid(); } } - this.state = 4456; + this.state = 4463; this.lockAction(); } } @@ -24679,20 +24698,20 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 342, MySqlParser.RULE_lockAction); let _la: number; try { - this.state = 4466; + this.state = 4473; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 4458; + this.state = 4465; this.match(MySqlParser.KW_READ); - this.state = 4460; + this.state = 4467; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 4459; + this.state = 4466; this.match(MySqlParser.KW_LOCAL); } } @@ -24703,17 +24722,17 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_WRITE: this.enterOuterAlt(localContext, 2); { - this.state = 4463; + this.state = 4470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 4462; + this.state = 4469; this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 4465; + this.state = 4472; this.match(MySqlParser.KW_WRITE); } break; @@ -24739,35 +24758,35 @@ export class MySqlParser extends antlr.Parser { let localContext = new TransactionOptionContext(this.context, this.state); this.enterRule(localContext, 344, MySqlParser.RULE_transactionOption); try { - this.state = 4475; + this.state = 4482; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 643, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4468; + this.state = 4475; this.match(MySqlParser.KW_ISOLATION); - this.state = 4469; + this.state = 4476; this.match(MySqlParser.KW_LEVEL); - this.state = 4470; + this.state = 4477; this.transactionLevel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4471; + this.state = 4478; this.match(MySqlParser.KW_READ); - this.state = 4472; + this.state = 4479; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4473; + this.state = 4480; this.match(MySqlParser.KW_READ); - this.state = 4474; + this.state = 4481; this.match(MySqlParser.KW_ONLY); } break; @@ -24791,40 +24810,40 @@ export class MySqlParser extends antlr.Parser { let localContext = new TransactionLevelContext(this.context, this.state); this.enterRule(localContext, 346, MySqlParser.RULE_transactionLevel); try { - this.state = 4484; + this.state = 4491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4477; + this.state = 4484; this.match(MySqlParser.KW_REPEATABLE); - this.state = 4478; + this.state = 4485; this.match(MySqlParser.KW_READ); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4479; + this.state = 4486; this.match(MySqlParser.KW_READ); - this.state = 4480; + this.state = 4487; this.match(MySqlParser.KW_COMMITTED); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4481; + this.state = 4488; this.match(MySqlParser.KW_READ); - this.state = 4482; + this.state = 4489; this.match(MySqlParser.KW_UNCOMMITTED); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4483; + this.state = 4490; this.match(MySqlParser.KW_SERIALIZABLE); } break; @@ -24851,36 +24870,36 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4486; + this.state = 4493; this.match(MySqlParser.KW_CHANGE); - this.state = 4487; - this.match(MySqlParser.KW_MASTER); - this.state = 4488; - this.match(MySqlParser.KW_TO); - this.state = 4489; - this.masterOption(); this.state = 4494; + this.match(MySqlParser.KW_MASTER); + this.state = 4495; + this.match(MySqlParser.KW_TO); + this.state = 4496; + this.masterOption(); + this.state = 4501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4490; + this.state = 4497; this.match(MySqlParser.COMMA); - this.state = 4491; + this.state = 4498; this.masterOption(); } } - this.state = 4496; + this.state = 4503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4498; + this.state = 4505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4497; + this.state = 4504; this.channelOption(); } } @@ -24908,36 +24927,36 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4500; + this.state = 4507; this.match(MySqlParser.KW_CHANGE); - this.state = 4501; - this.match(MySqlParser.KW_REPLICATION); - this.state = 4502; - this.match(MySqlParser.KW_FILTER); - this.state = 4503; - this.replicationFilter(); this.state = 4508; + this.match(MySqlParser.KW_REPLICATION); + this.state = 4509; + this.match(MySqlParser.KW_FILTER); + this.state = 4510; + this.replicationFilter(); + this.state = 4515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4504; + this.state = 4511; this.match(MySqlParser.COMMA); - this.state = 4505; + this.state = 4512; this.replicationFilter(); } } - this.state = 4510; + this.state = 4517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4512; + this.state = 4519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4511; + this.state = 4518; this.channelOption(); } } @@ -24965,38 +24984,38 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4514; + this.state = 4521; this.match(MySqlParser.KW_CHANGE); - this.state = 4515; + this.state = 4522; this.match(MySqlParser.KW_REPLICATION); - this.state = 4516; - this.match(MySqlParser.KW_SOURCE); - this.state = 4517; - this.match(MySqlParser.KW_TO); - this.state = 4518; - this.replicationSourceOption(); this.state = 4523; + this.match(MySqlParser.KW_SOURCE); + this.state = 4524; + this.match(MySqlParser.KW_TO); + this.state = 4525; + this.replicationSourceOption(); + this.state = 4530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4519; + this.state = 4526; this.match(MySqlParser.COMMA); - this.state = 4520; + this.state = 4527; this.replicationSourceOption(); } } - this.state = 4525; + this.state = 4532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4527; + this.state = 4534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4526; + this.state = 4533; this.channelOption(); } } @@ -25024,9 +25043,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4529; + this.state = 4536; this.match(MySqlParser.KW_PURGE); - this.state = 4530; + this.state = 4537; localContext._purgeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -25036,24 +25055,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4531; + this.state = 4538; this.match(MySqlParser.KW_LOGS); - this.state = 4536; + this.state = 4543; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 4532; + this.state = 4539; this.match(MySqlParser.KW_TO); - this.state = 4533; + this.state = 4540; localContext._fileName = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_BEFORE: { - this.state = 4534; + this.state = 4541; this.match(MySqlParser.KW_BEFORE); - this.state = 4535; + this.state = 4542; localContext._timeValue = this.match(MySqlParser.STRING_LITERAL); } break; @@ -25083,9 +25102,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4538; + this.state = 4545; this.match(MySqlParser.KW_START); - this.state = 4539; + this.state = 4546; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -25094,64 +25113,64 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4548; + this.state = 4555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4540; + this.state = 4547; this.threadType(); - this.state = 4545; + this.state = 4552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4541; + this.state = 4548; this.match(MySqlParser.COMMA); - this.state = 4542; + this.state = 4549; this.threadType(); } } - this.state = 4547; + this.state = 4554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4552; + this.state = 4559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 676) { { - this.state = 4550; + this.state = 4557; this.match(MySqlParser.KW_UNTIL); - this.state = 4551; + this.state = 4558; this.untilOption(); } } - this.state = 4557; + this.state = 4564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 363 || _la === 529 || _la === 535 || _la === 678) { { { - this.state = 4554; + this.state = 4561; this.connectionOptions(); } } - this.state = 4559; + this.state = 4566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4561; + this.state = 4568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4560; + this.state = 4567; this.channelOption(); } } @@ -25179,9 +25198,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4563; + this.state = 4570; this.match(MySqlParser.KW_STOP); - this.state = 4564; + this.state = 4571; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -25190,38 +25209,38 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4573; + this.state = 4580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4565; + this.state = 4572; this.threadType(); - this.state = 4570; + this.state = 4577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4566; + this.state = 4573; this.match(MySqlParser.COMMA); - this.state = 4567; + this.state = 4574; this.threadType(); } } - this.state = 4572; + this.state = 4579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4576; + this.state = 4583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4575; + this.state = 4582; this.channelOption(); } } @@ -25249,52 +25268,52 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4578; + this.state = 4585; this.match(MySqlParser.KW_START); - this.state = 4579; + this.state = 4586; this.match(MySqlParser.KW_GROUP_REPLICATION); - this.state = 4583; + this.state = 4590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4580; + this.state = 4587; this.match(MySqlParser.KW_USER); - this.state = 4581; + this.state = 4588; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4582; + this.state = 4589; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 4589; + this.state = 4596; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 661, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { case 1: { - this.state = 4585; + this.state = 4592; this.match(MySqlParser.COMMA); - this.state = 4586; + this.state = 4593; this.match(MySqlParser.KW_PASSWORD); - this.state = 4587; + this.state = 4594; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4588; + this.state = 4595; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 4595; + this.state = 4602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 4591; + this.state = 4598; this.match(MySqlParser.COMMA); - this.state = 4592; + this.state = 4599; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4593; + this.state = 4600; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4594; + this.state = 4601; this.match(MySqlParser.STRING_LITERAL); } } @@ -25321,9 +25340,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4597; + this.state = 4604; this.match(MySqlParser.KW_STOP); - this.state = 4598; + this.state = 4605; this.match(MySqlParser.KW_GROUP_REPLICATION); } } @@ -25346,7 +25365,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 364, MySqlParser.RULE_masterOption); let _la: number; try { - this.state = 4627; + this.state = 4634; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER_BIND: @@ -25370,11 +25389,11 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4600; + this.state = 4607; this.stringMasterOption(); - this.state = 4601; + this.state = 4608; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4602; + this.state = 4609; this.match(MySqlParser.STRING_LITERAL); } break; @@ -25389,11 +25408,11 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4604; + this.state = 4611; this.decimalMasterOption(); - this.state = 4605; + this.state = 4612; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4606; + this.state = 4613; this.decimalLiteral(); } break; @@ -25407,11 +25426,11 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4608; + this.state = 4615; this.boolMasterOption(); - this.state = 4609; + this.state = 4616; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4610; + this.state = 4617; (localContext as MasterBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -25429,7 +25448,7 @@ export class MySqlParser extends antlr.Parser { localContext = new V8AddMasterOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4612; + this.state = 4619; this.v8NewMasterOption(); } break; @@ -25437,39 +25456,39 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4613; + this.state = 4620; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4614; + this.state = 4621; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4615; + this.state = 4622; this.match(MySqlParser.LR_BRACKET); - this.state = 4624; + this.state = 4631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4616; + this.state = 4623; (localContext as MasterUidListOptionContext)._server_id = this.uid(); - this.state = 4621; + this.state = 4628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4617; + this.state = 4624; this.match(MySqlParser.COMMA); - this.state = 4618; + this.state = 4625; (localContext as MasterUidListOptionContext)._server_id = this.uid(); } } - this.state = 4623; + this.state = 4630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4626; + this.state = 4633; this.match(MySqlParser.RR_BRACKET); } break; @@ -25498,7 +25517,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4629; + this.state = 4636; _la = this.tokenStream.LA(1); if(!(_la === 108 || ((((_la - 455)) & ~0x1F) === 0 && ((1 << (_la - 455)) & 4190897) !== 0) || _la === 499 || _la === 557)) { this.errorHandler.recoverInline(this); @@ -25530,7 +25549,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4631; + this.state = 4638; _la = this.tokenStream.LA(1); if(!(((((_la - 456)) & ~0x1F) === 0 && ((1 << (_la - 456)) & 2097831) !== 0) || _la === 558)) { this.errorHandler.recoverInline(this); @@ -25562,7 +25581,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4633; + this.state = 4640; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 411 || _la === 416 || _la === 454 || _la === 466 || _la === 573 || _la === 617)) { this.errorHandler.recoverInline(this); @@ -25592,17 +25611,17 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 372, MySqlParser.RULE_v8NewMasterOption); let _la: number; try { - this.state = 4648; + this.state = 4655; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4635; + this.state = 4642; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4636; + this.state = 4643; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4637; + this.state = 4644; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -25616,11 +25635,11 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4638; + this.state = 4645; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4639; + this.state = 4646; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4640; + this.state = 4647; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -25634,22 +25653,22 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4641; + this.state = 4648; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4642; + this.state = 4649; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4646; + this.state = 4653; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4643; + this.state = 4650; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4644; + this.state = 4651; this.match(MySqlParser.KW_LOCAL); } break; @@ -25661,7 +25680,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4645; + this.state = 4652; this.gtuidSet(); } break; @@ -25693,7 +25712,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 374, MySqlParser.RULE_replicationSourceOption); let _la: number; try { - this.state = 4677; + this.state = 4684; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NETWORK_NAMESPACE: @@ -25717,11 +25736,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4650; + this.state = 4657; this.stringSourceOption(); - this.state = 4651; + this.state = 4658; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4652; + this.state = 4659; this.match(MySqlParser.STRING_LITERAL); } break; @@ -25736,11 +25755,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4654; + this.state = 4661; this.decimalSourceOption(); - this.state = 4655; + this.state = 4662; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4656; + this.state = 4663; this.decimalLiteral(); } break; @@ -25754,11 +25773,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4658; + this.state = 4665; this.boolSourceOption(); - this.state = 4659; + this.state = 4666; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4660; + this.state = 4667; (localContext as SourceBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -25776,7 +25795,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceOtherOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4662; + this.state = 4669; this.otherSourceOption(); } break; @@ -25784,39 +25803,39 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4663; + this.state = 4670; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4664; + this.state = 4671; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4665; + this.state = 4672; this.match(MySqlParser.LR_BRACKET); - this.state = 4674; + this.state = 4681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4666; + this.state = 4673; (localContext as SourceUidListOptionContext)._server_id = this.uid(); - this.state = 4671; + this.state = 4678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4667; + this.state = 4674; this.match(MySqlParser.COMMA); - this.state = 4668; + this.state = 4675; (localContext as SourceUidListOptionContext)._server_id = this.uid(); } } - this.state = 4673; + this.state = 4680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4676; + this.state = 4683; this.match(MySqlParser.RR_BRACKET); } break; @@ -25845,7 +25864,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4679; + this.state = 4686; _la = this.tokenStream.LA(1); if(!(_la === 499 || _la === 557 || ((((_la - 606)) & ~0x1F) === 0 && ((1 << (_la - 606)) & 125771823) !== 0))) { this.errorHandler.recoverInline(this); @@ -25877,7 +25896,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4681; + this.state = 4688; _la = this.tokenStream.LA(1); if(!(_la === 558 || ((((_la - 610)) & ~0x1F) === 0 && ((1 << (_la - 610)) & 1397) !== 0))) { this.errorHandler.recoverInline(this); @@ -25909,7 +25928,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4683; + this.state = 4690; _la = this.tokenStream.LA(1); if(!(_la === 412 || _la === 416 || _la === 573 || ((((_la - 613)) & ~0x1F) === 0 && ((1 << (_la - 613)) & 65809) !== 0))) { this.errorHandler.recoverInline(this); @@ -25939,17 +25958,17 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 382, MySqlParser.RULE_otherSourceOption); let _la: number; try { - this.state = 4698; + this.state = 4705; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4685; + this.state = 4692; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4686; + this.state = 4693; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4687; + this.state = 4694; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -25963,11 +25982,11 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4688; + this.state = 4695; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4689; + this.state = 4696; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4690; + this.state = 4697; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -25981,22 +26000,22 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4691; + this.state = 4698; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4692; + this.state = 4699; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4696; + this.state = 4703; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4693; + this.state = 4700; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4694; + this.state = 4701; this.match(MySqlParser.KW_LOCAL); } break; @@ -26008,7 +26027,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4695; + this.state = 4702; this.gtuidSet(); } break; @@ -26041,11 +26060,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4700; + this.state = 4707; this.match(MySqlParser.KW_FOR); - this.state = 4701; + this.state = 4708; this.match(MySqlParser.KW_CHANNEL); - this.state = 4702; + this.state = 4709; this.match(MySqlParser.STRING_LITERAL); } } @@ -26068,38 +26087,38 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 386, MySqlParser.RULE_replicationFilter); let _la: number; try { - this.state = 4767; + this.state = 4774; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_REPLICATE_DO_DB: localContext = new DoDbReplicationContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4704; + this.state = 4711; this.match(MySqlParser.KW_REPLICATE_DO_DB); - this.state = 4705; - this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4706; - this.match(MySqlParser.LR_BRACKET); - this.state = 4707; - this.databaseName(); this.state = 4712; + this.match(MySqlParser.EQUAL_SYMBOL); + this.state = 4713; + this.match(MySqlParser.LR_BRACKET); + this.state = 4714; + this.databaseName(); + this.state = 4719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4708; + this.state = 4715; this.match(MySqlParser.COMMA); - this.state = 4709; + this.state = 4716; this.databaseName(); } } - this.state = 4714; + this.state = 4721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4715; + this.state = 4722; this.match(MySqlParser.RR_BRACKET); } break; @@ -26107,31 +26126,31 @@ export class MySqlParser extends antlr.Parser { localContext = new IgnoreDbReplicationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4717; + this.state = 4724; this.match(MySqlParser.KW_REPLICATE_IGNORE_DB); - this.state = 4718; - this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4719; - this.match(MySqlParser.LR_BRACKET); - this.state = 4720; - this.databaseName(); this.state = 4725; + this.match(MySqlParser.EQUAL_SYMBOL); + this.state = 4726; + this.match(MySqlParser.LR_BRACKET); + this.state = 4727; + this.databaseName(); + this.state = 4732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4721; + this.state = 4728; this.match(MySqlParser.COMMA); - this.state = 4722; + this.state = 4729; this.databaseName(); } } - this.state = 4727; + this.state = 4734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4728; + this.state = 4735; this.match(MySqlParser.RR_BRACKET); } break; @@ -26139,15 +26158,15 @@ export class MySqlParser extends antlr.Parser { localContext = new DoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4730; + this.state = 4737; this.match(MySqlParser.KW_REPLICATE_DO_TABLE); - this.state = 4731; + this.state = 4738; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4732; + this.state = 4739; this.match(MySqlParser.LR_BRACKET); - this.state = 4733; + this.state = 4740; this.tableNames(); - this.state = 4734; + this.state = 4741; this.match(MySqlParser.RR_BRACKET); } break; @@ -26155,15 +26174,15 @@ export class MySqlParser extends antlr.Parser { localContext = new IgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4736; + this.state = 4743; this.match(MySqlParser.KW_REPLICATE_IGNORE_TABLE); - this.state = 4737; + this.state = 4744; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4738; + this.state = 4745; this.match(MySqlParser.LR_BRACKET); - this.state = 4739; + this.state = 4746; this.tableNames(); - this.state = 4740; + this.state = 4747; this.match(MySqlParser.RR_BRACKET); } break; @@ -26171,15 +26190,15 @@ export class MySqlParser extends antlr.Parser { localContext = new WildDoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4742; + this.state = 4749; this.match(MySqlParser.KW_REPLICATE_WILD_DO_TABLE); - this.state = 4743; + this.state = 4750; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4744; + this.state = 4751; this.match(MySqlParser.LR_BRACKET); - this.state = 4745; + this.state = 4752; this.simpleStrings(); - this.state = 4746; + this.state = 4753; this.match(MySqlParser.RR_BRACKET); } break; @@ -26187,15 +26206,15 @@ export class MySqlParser extends antlr.Parser { localContext = new WildIgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 4748; + this.state = 4755; this.match(MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE); - this.state = 4749; + this.state = 4756; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4750; + this.state = 4757; this.match(MySqlParser.LR_BRACKET); - this.state = 4751; + this.state = 4758; this.simpleStrings(); - this.state = 4752; + this.state = 4759; this.match(MySqlParser.RR_BRACKET); } break; @@ -26203,31 +26222,31 @@ export class MySqlParser extends antlr.Parser { localContext = new RewriteDbReplicationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 4754; + this.state = 4761; this.match(MySqlParser.KW_REPLICATE_REWRITE_DB); - this.state = 4755; - this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4756; - this.match(MySqlParser.LR_BRACKET); - this.state = 4757; - this.tablePair(); this.state = 4762; + this.match(MySqlParser.EQUAL_SYMBOL); + this.state = 4763; + this.match(MySqlParser.LR_BRACKET); + this.state = 4764; + this.tablePair(); + this.state = 4769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4758; + this.state = 4765; this.match(MySqlParser.COMMA); - this.state = 4759; + this.state = 4766; this.tablePair(); } } - this.state = 4764; + this.state = 4771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4765; + this.state = 4772; this.match(MySqlParser.RR_BRACKET); } break; @@ -26255,15 +26274,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4769; + this.state = 4776; this.match(MySqlParser.LR_BRACKET); - this.state = 4770; + this.state = 4777; localContext._firstTable = this.tableName(); - this.state = 4771; + this.state = 4778; this.match(MySqlParser.COMMA); - this.state = 4772; + this.state = 4779; localContext._secondTable = this.tableName(); - this.state = 4773; + this.state = 4780; this.match(MySqlParser.RR_BRACKET); } } @@ -26288,7 +26307,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4775; + this.state = 4782; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 639)) { this.errorHandler.recoverInline(this); @@ -26318,7 +26337,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 392, MySqlParser.RULE_untilOption); let _la: number; try { - this.state = 4802; + this.state = 4809; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQL_AFTER_GTIDS: @@ -26326,7 +26345,7 @@ export class MySqlParser extends antlr.Parser { localContext = new GtidsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4777; + this.state = 4784; (localContext as GtidsUntilOptionContext)._gtids = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 633 || _la === 635)) { @@ -26336,9 +26355,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4778; + this.state = 4785; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4779; + this.state = 4786; this.gtuidSet(); } break; @@ -26346,28 +26365,8 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4780; - this.match(MySqlParser.KW_MASTER_LOG_FILE); - this.state = 4781; - this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4782; - this.match(MySqlParser.STRING_LITERAL); - this.state = 4783; - this.match(MySqlParser.COMMA); - this.state = 4784; - this.match(MySqlParser.KW_MASTER_LOG_POS); - this.state = 4785; - this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4786; - this.decimalLiteral(); - } - break; - case MySqlParser.KW_SOURCE_LOG_FILE: - localContext = new SourceLogUntilOptionContext(localContext); - this.enterOuterAlt(localContext, 3); - { this.state = 4787; - this.match(MySqlParser.KW_SOURCE_LOG_FILE); + this.match(MySqlParser.KW_MASTER_LOG_FILE); this.state = 4788; this.match(MySqlParser.EQUAL_SYMBOL); this.state = 4789; @@ -26375,19 +26374,19 @@ export class MySqlParser extends antlr.Parser { this.state = 4790; this.match(MySqlParser.COMMA); this.state = 4791; - this.match(MySqlParser.KW_SOURCE_LOG_POS); + this.match(MySqlParser.KW_MASTER_LOG_POS); this.state = 4792; this.match(MySqlParser.EQUAL_SYMBOL); this.state = 4793; this.decimalLiteral(); } break; - case MySqlParser.KW_RELAY_LOG_FILE: - localContext = new RelayLogUntilOptionContext(localContext); - this.enterOuterAlt(localContext, 4); + case MySqlParser.KW_SOURCE_LOG_FILE: + localContext = new SourceLogUntilOptionContext(localContext); + this.enterOuterAlt(localContext, 3); { this.state = 4794; - this.match(MySqlParser.KW_RELAY_LOG_FILE); + this.match(MySqlParser.KW_SOURCE_LOG_FILE); this.state = 4795; this.match(MySqlParser.EQUAL_SYMBOL); this.state = 4796; @@ -26395,18 +26394,38 @@ export class MySqlParser extends antlr.Parser { this.state = 4797; this.match(MySqlParser.COMMA); this.state = 4798; - this.match(MySqlParser.KW_RELAY_LOG_POS); + this.match(MySqlParser.KW_SOURCE_LOG_POS); this.state = 4799; this.match(MySqlParser.EQUAL_SYMBOL); this.state = 4800; this.decimalLiteral(); } break; + case MySqlParser.KW_RELAY_LOG_FILE: + localContext = new RelayLogUntilOptionContext(localContext); + this.enterOuterAlt(localContext, 4); + { + this.state = 4801; + this.match(MySqlParser.KW_RELAY_LOG_FILE); + this.state = 4802; + this.match(MySqlParser.EQUAL_SYMBOL); + this.state = 4803; + this.match(MySqlParser.STRING_LITERAL); + this.state = 4804; + this.match(MySqlParser.COMMA); + this.state = 4805; + this.match(MySqlParser.KW_RELAY_LOG_POS); + this.state = 4806; + this.match(MySqlParser.EQUAL_SYMBOL); + this.state = 4807; + this.decimalLiteral(); + } + break; case MySqlParser.KW_SQL_AFTER_MTS_GAPS: localContext = new SqlGapsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4801; + this.state = 4808; this.match(MySqlParser.KW_SQL_AFTER_MTS_GAPS); } break; @@ -26432,18 +26451,18 @@ export class MySqlParser extends antlr.Parser { let localContext = new ConnectionOptionsContext(this.context, this.state); this.enterRule(localContext, 394, MySqlParser.RULE_connectionOptions); try { - this.state = 4816; + this.state = 4823; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_USER: localContext = new UserConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4804; + this.state = 4811; this.match(MySqlParser.KW_USER); - this.state = 4805; + this.state = 4812; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4806; + this.state = 4813; (localContext as UserConnectionOptionContext)._conOptUser = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26451,11 +26470,11 @@ export class MySqlParser extends antlr.Parser { localContext = new PasswordConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4807; + this.state = 4814; this.match(MySqlParser.KW_PASSWORD); - this.state = 4808; + this.state = 4815; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4809; + this.state = 4816; (localContext as PasswordConnectionOptionContext)._conOptPassword = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26463,11 +26482,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DefaultAuthConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4810; + this.state = 4817; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4811; + this.state = 4818; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4812; + this.state = 4819; (localContext as DefaultAuthConnectionOptionContext)._conOptDefAuth = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26475,11 +26494,11 @@ export class MySqlParser extends antlr.Parser { localContext = new PluginDirConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4813; + this.state = 4820; this.match(MySqlParser.KW_PLUGIN_DIR); - this.state = 4814; + this.state = 4821; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4815; + this.state = 4822; (localContext as PluginDirConnectionOptionContext)._conOptPluginDir = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26506,7 +26525,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 396, MySqlParser.RULE_gtuidSet); try { let alternative: number; - this.state = 4827; + this.state = 4834; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -26517,32 +26536,32 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4818; + this.state = 4825; this.uuidSet(); - this.state = 4823; + this.state = 4830; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 679, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 680, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4819; + this.state = 4826; this.match(MySqlParser.COMMA); - this.state = 4820; + this.state = 4827; this.uuidSet(); } } } - this.state = 4825; + this.state = 4832; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 679, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 680, this.context); } } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 4826; + this.state = 4833; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26571,9 +26590,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4829; + this.state = 4836; this.match(MySqlParser.KW_XA); - this.state = 4830; + this.state = 4837; localContext._xaStart = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 317 || _la === 640)) { @@ -26583,14 +26602,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4831; + this.state = 4838; this.xid(); - this.state = 4833; + this.state = 4840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 577) { { - this.state = 4832; + this.state = 4839; localContext._xaAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 577)) { @@ -26626,27 +26645,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4835; + this.state = 4842; this.match(MySqlParser.KW_XA); - this.state = 4836; - this.match(MySqlParser.KW_END); - this.state = 4837; - this.xid(); this.state = 4843; + this.match(MySqlParser.KW_END); + this.state = 4844; + this.xid(); + this.state = 4850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 654) { { - this.state = 4838; + this.state = 4845; this.match(MySqlParser.KW_SUSPEND); - this.state = 4841; + this.state = 4848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4839; + this.state = 4846; this.match(MySqlParser.KW_FOR); - this.state = 4840; + this.state = 4847; this.match(MySqlParser.KW_MIGRATE); } } @@ -26676,11 +26695,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4845; + this.state = 4852; this.match(MySqlParser.KW_XA); - this.state = 4846; + this.state = 4853; this.match(MySqlParser.KW_PREPARE); - this.state = 4847; + this.state = 4854; this.xid(); } } @@ -26705,20 +26724,20 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4849; + this.state = 4856; this.match(MySqlParser.KW_XA); - this.state = 4850; + this.state = 4857; this.match(MySqlParser.KW_COMMIT); - this.state = 4851; + this.state = 4858; this.xid(); - this.state = 4854; + this.state = 4861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 4852; + this.state = 4859; this.match(MySqlParser.KW_ONE); - this.state = 4853; + this.state = 4860; this.match(MySqlParser.KW_PHASE); } } @@ -26745,11 +26764,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4856; + this.state = 4863; this.match(MySqlParser.KW_XA); - this.state = 4857; + this.state = 4864; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4858; + this.state = 4865; this.xid(); } } @@ -26774,18 +26793,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4860; + this.state = 4867; this.match(MySqlParser.KW_XA); - this.state = 4861; + this.state = 4868; this.match(MySqlParser.KW_RECOVER); - this.state = 4864; + this.state = 4871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 4862; + this.state = 4869; this.match(MySqlParser.KW_CONVERT); - this.state = 4863; + this.state = 4870; this.xid(); } } @@ -26812,24 +26831,24 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4866; + this.state = 4873; this.match(MySqlParser.KW_PREPARE); - this.state = 4867; + this.state = 4874; localContext._stmt_name = this.uid(); - this.state = 4868; + this.state = 4875; this.match(MySqlParser.KW_FROM); - this.state = 4871; + this.state = 4878; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 4869; + this.state = 4876; localContext._query = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.LOCAL_ID: { - this.state = 4870; + this.state = 4877; localContext._variable = this.match(MySqlParser.LOCAL_ID); } break; @@ -26859,18 +26878,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4873; + this.state = 4880; this.match(MySqlParser.KW_EXECUTE); - this.state = 4874; + this.state = 4881; localContext._stmt_name = this.uid(); - this.state = 4877; + this.state = 4884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 4875; + this.state = 4882; this.match(MySqlParser.KW_USING); - this.state = 4876; + this.state = 4883; this.userVariables(); } } @@ -26898,7 +26917,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4879; + this.state = 4886; localContext._dropFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 51 || _la === 362)) { @@ -26908,9 +26927,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4880; + this.state = 4887; this.match(MySqlParser.KW_PREPARE); - this.state = 4881; + this.state = 4888; localContext._stmt_name = this.uid(); } } @@ -26932,20 +26951,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new RoutineBodyContext(this.context, this.state); this.enterRule(localContext, 416, MySqlParser.RULE_routineBody); try { - this.state = 4885; + this.state = 4892; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 688, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4883; + this.state = 4890; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4884; + this.state = 4891; this.sqlStatement(); } break; @@ -26973,114 +26992,114 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4890; + this.state = 4897; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { case 1: { - this.state = 4887; + this.state = 4894; localContext._begin = this.uid(); - this.state = 4888; + this.state = 4895; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 4892; + this.state = 4899; this.match(MySqlParser.KW_BEGIN); - this.state = 4898; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 690, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 4893; - this.declareVariable(); - this.state = 4894; - this.match(MySqlParser.SEMI); - } - } - } - this.state = 4900; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 690, this.context); - } - this.state = 4906; + this.state = 4905; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 691, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { + this.state = 4900; + this.declareVariable(); this.state = 4901; - this.declareCondition(); - this.state = 4902; this.match(MySqlParser.SEMI); } } } - this.state = 4908; + this.state = 4907; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 691, this.context); } - this.state = 4914; + this.state = 4913; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { + this.state = 4908; + this.declareCondition(); this.state = 4909; - this.declareCursor(); - this.state = 4910; this.match(MySqlParser.SEMI); } } } - this.state = 4916; + this.state = 4915; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); } - this.state = 4922; + this.state = 4921; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 693, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 4916; + this.declareCursor(); + this.state = 4917; + this.match(MySqlParser.SEMI); + } + } + } + this.state = 4923; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 693, this.context); + } + this.state = 4929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 41) { { { - this.state = 4917; + this.state = 4924; this.declareHandler(); - this.state = 4918; + this.state = 4925; this.match(MySqlParser.SEMI); } } - this.state = 4924; + this.state = 4931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4928; + this.state = 4935; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 694, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 695, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4925; + this.state = 4932; this.procedureSqlStatement(); } } } - this.state = 4930; + this.state = 4937; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 694, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 695, this.context); } - this.state = 4931; + this.state = 4938; this.match(MySqlParser.KW_END); - this.state = 4933; + this.state = 4940; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 695, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { case 1: { - this.state = 4932; + this.state = 4939; localContext._end = this.uid(); } break; @@ -27109,46 +27128,46 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4935; + this.state = 4942; this.match(MySqlParser.KW_CASE); - this.state = 4938; + this.state = 4945; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 697, this.context) ) { case 1: { - this.state = 4936; + this.state = 4943; localContext._case_value = this.uid(); } break; case 2: { - this.state = 4937; + this.state = 4944; this.expression(0); } break; } - this.state = 4941; + this.state = 4948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4940; + this.state = 4947; this.caseAlternative(); } } - this.state = 4943; + this.state = 4950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 4951; + this.state = 4958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 4945; + this.state = 4952; this.match(MySqlParser.KW_ELSE); - this.state = 4947; + this.state = 4954; this.errorHandler.sync(this); alternative = 1; do { @@ -27156,7 +27175,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4946; + this.state = 4953; this.procedureSqlStatement(); } } @@ -27164,16 +27183,16 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4949; + this.state = 4956; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 698, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 699, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 4953; + this.state = 4960; this.match(MySqlParser.KW_END); - this.state = 4954; + this.state = 4961; this.match(MySqlParser.KW_CASE); } } @@ -27199,13 +27218,13 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4956; + this.state = 4963; this.match(MySqlParser.KW_IF); - this.state = 4957; + this.state = 4964; this.expression(0); - this.state = 4958; + this.state = 4965; this.match(MySqlParser.KW_THEN); - this.state = 4960; + this.state = 4967; this.errorHandler.sync(this); alternative = 1; do { @@ -27213,7 +27232,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4959; + this.state = 4966; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._thenStatements.push(localContext._procedureSqlStatement); } @@ -27222,32 +27241,32 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4962; + this.state = 4969; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 700, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 701, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4967; + this.state = 4974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 4964; + this.state = 4971; this.elifAlternative(); } } - this.state = 4969; + this.state = 4976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4976; + this.state = 4983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 4970; + this.state = 4977; this.match(MySqlParser.KW_ELSE); - this.state = 4972; + this.state = 4979; this.errorHandler.sync(this); alternative = 1; do { @@ -27255,7 +27274,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4971; + this.state = 4978; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._elseStatements.push(localContext._procedureSqlStatement); } @@ -27264,16 +27283,16 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4974; + this.state = 4981; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 4978; + this.state = 4985; this.match(MySqlParser.KW_END); - this.state = 4979; + this.state = 4986; this.match(MySqlParser.KW_IF); } } @@ -27297,9 +27316,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4981; + this.state = 4988; this.match(MySqlParser.KW_ITERATE); - this.state = 4982; + this.state = 4989; localContext._label = this.uid(); } } @@ -27323,9 +27342,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4984; + this.state = 4991; this.match(MySqlParser.KW_LEAVE); - this.state = 4985; + this.state = 4992; localContext._label = this.uid(); } } @@ -27351,21 +27370,21 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4990; + this.state = 4997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4987; + this.state = 4994; localContext._begin_label = this.uid(); - this.state = 4988; + this.state = 4995; this.match(MySqlParser.COLON_SYMB); } } - this.state = 4992; + this.state = 4999; this.match(MySqlParser.KW_LOOP); - this.state = 4994; + this.state = 5001; this.errorHandler.sync(this); alternative = 1; do { @@ -27373,7 +27392,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4993; + this.state = 5000; this.procedureSqlStatement(); } } @@ -27381,20 +27400,20 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4996; + this.state = 5003; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 706, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4998; + this.state = 5005; this.match(MySqlParser.KW_END); - this.state = 4999; + this.state = 5006; this.match(MySqlParser.KW_LOOP); - this.state = 5001; + this.state = 5008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5000; + this.state = 5007; localContext._end_label = this.uid(); } } @@ -27423,21 +27442,21 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5006; + this.state = 5013; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { case 1: { - this.state = 5003; + this.state = 5010; localContext._begin_label = this.uid(); - this.state = 5004; + this.state = 5011; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 5008; + this.state = 5015; this.match(MySqlParser.KW_REPEAT); - this.state = 5010; + this.state = 5017; this.errorHandler.sync(this); alternative = 1; do { @@ -27445,7 +27464,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5009; + this.state = 5016; this.procedureSqlStatement(); } } @@ -27453,24 +27472,24 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5012; + this.state = 5019; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 708, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 709, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5014; + this.state = 5021; this.match(MySqlParser.KW_UNTIL); - this.state = 5015; + this.state = 5022; this.expression(0); - this.state = 5016; + this.state = 5023; this.match(MySqlParser.KW_END); - this.state = 5017; + this.state = 5024; this.match(MySqlParser.KW_REPEAT); - this.state = 5019; + this.state = 5026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5018; + this.state = 5025; localContext._end_label = this.uid(); } } @@ -27497,9 +27516,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5021; + this.state = 5028; this.match(MySqlParser.KW_RETURN); - this.state = 5022; + this.state = 5029; this.expression(0); } } @@ -27525,25 +27544,25 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5027; + this.state = 5034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5024; + this.state = 5031; localContext._begin_label = this.uid(); - this.state = 5025; + this.state = 5032; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5029; + this.state = 5036; this.match(MySqlParser.KW_WHILE); - this.state = 5030; + this.state = 5037; this.expression(0); - this.state = 5031; + this.state = 5038; this.match(MySqlParser.KW_DO); - this.state = 5033; + this.state = 5040; this.errorHandler.sync(this); alternative = 1; do { @@ -27551,7 +27570,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5032; + this.state = 5039; this.procedureSqlStatement(); } } @@ -27559,20 +27578,20 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5035; + this.state = 5042; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 711, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 712, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5037; + this.state = 5044; this.match(MySqlParser.KW_END); - this.state = 5038; + this.state = 5045; this.match(MySqlParser.KW_WHILE); - this.state = 5040; + this.state = 5047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5039; + this.state = 5046; localContext._end_label = this.uid(); } } @@ -27598,16 +27617,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 436, MySqlParser.RULE_cursorStatement); let _la: number; try { - this.state = 5057; + this.state = 5064; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CLOSE: localContext = new CloseCursorContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5042; + this.state = 5049; this.match(MySqlParser.KW_CLOSE); - this.state = 5043; + this.state = 5050; (localContext as CloseCursorContext)._cursor_name = this.uid(); } break; @@ -27615,33 +27634,33 @@ export class MySqlParser extends antlr.Parser { localContext = new FetchCursorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5044; + this.state = 5051; this.match(MySqlParser.KW_FETCH); - this.state = 5049; + this.state = 5056; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 714, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 715, this.context) ) { case 1: { - this.state = 5046; + this.state = 5053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 501) { { - this.state = 5045; + this.state = 5052; this.match(MySqlParser.KW_NEXT); } } - this.state = 5048; + this.state = 5055; this.match(MySqlParser.KW_FROM); } break; } - this.state = 5051; + this.state = 5058; (localContext as FetchCursorContext)._cursor_name = this.uid(); - this.state = 5052; + this.state = 5059; this.match(MySqlParser.KW_INTO); - this.state = 5053; + this.state = 5060; (localContext as FetchCursorContext)._var_names = this.uidList(); } break; @@ -27649,9 +27668,9 @@ export class MySqlParser extends antlr.Parser { localContext = new OpenCursorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5055; + this.state = 5062; this.match(MySqlParser.KW_OPEN); - this.state = 5056; + this.state = 5063; (localContext as OpenCursorContext)._cursor_name = this.uid(); } break; @@ -27680,20 +27699,20 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5059; + this.state = 5066; this.match(MySqlParser.KW_DECLARE); - this.state = 5060; + this.state = 5067; localContext._var_names = this.uidList(); - this.state = 5061; + this.state = 5068; this.dataType(); - this.state = 5064; + this.state = 5071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5062; + this.state = 5069; this.match(MySqlParser.KW_DEFAULT); - this.state = 5063; + this.state = 5070; this.expression(0); } } @@ -27721,15 +27740,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5066; + this.state = 5073; this.match(MySqlParser.KW_DECLARE); - this.state = 5067; + this.state = 5074; localContext._condition_name = this.uid(); - this.state = 5068; + this.state = 5075; this.match(MySqlParser.KW_CONDITION); - this.state = 5069; - this.match(MySqlParser.KW_FOR); this.state = 5076; + this.match(MySqlParser.KW_FOR); + this.state = 5083; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -27739,25 +27758,25 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5070; + this.state = 5077; this.decimalLiteral(); } break; case MySqlParser.KW_SQLSTATE: { - this.state = 5071; + this.state = 5078; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5073; + this.state = 5080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5072; + this.state = 5079; this.match(MySqlParser.KW_VALUE); } } - this.state = 5075; + this.state = 5082; this.match(MySqlParser.STRING_LITERAL); } break; @@ -27786,15 +27805,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5078; + this.state = 5085; this.match(MySqlParser.KW_DECLARE); - this.state = 5079; + this.state = 5086; localContext._condition_name = this.uid(); - this.state = 5080; + this.state = 5087; this.match(MySqlParser.KW_CURSOR); - this.state = 5081; + this.state = 5088; this.match(MySqlParser.KW_FOR); - this.state = 5082; + this.state = 5089; this.selectStatement(); } } @@ -27819,9 +27838,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5084; + this.state = 5091; this.match(MySqlParser.KW_DECLARE); - this.state = 5085; + this.state = 5092; localContext._handlerAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 61 || _la === 180)) { @@ -27831,29 +27850,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5086; - this.match(MySqlParser.KW_HANDLER); - this.state = 5087; - this.match(MySqlParser.KW_FOR); - this.state = 5088; - this.handlerConditionValue(); this.state = 5093; + this.match(MySqlParser.KW_HANDLER); + this.state = 5094; + this.match(MySqlParser.KW_FOR); + this.state = 5095; + this.handlerConditionValue(); + this.state = 5100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5089; + this.state = 5096; this.match(MySqlParser.COMMA); - this.state = 5090; + this.state = 5097; this.handlerConditionValue(); } } - this.state = 5095; + this.state = 5102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5096; + this.state = 5103; this.routineBody(); } } @@ -27876,7 +27895,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 446, MySqlParser.RULE_handlerConditionValue); let _la: number; try { - this.state = 5109; + this.state = 5116; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -27888,7 +27907,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionCodeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5098; + this.state = 5105; this.decimalLiteral(); } break; @@ -27896,19 +27915,19 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionStateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5099; + this.state = 5106; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5101; + this.state = 5108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5100; + this.state = 5107; this.match(MySqlParser.KW_VALUE); } } - this.state = 5103; + this.state = 5110; this.match(MySqlParser.STRING_LITERAL); } break; @@ -28463,7 +28482,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionNameContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5104; + this.state = 5111; (localContext as HandlerConditionNameContext)._condition_name = this.uid(); } break; @@ -28471,7 +28490,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionWarningContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5105; + this.state = 5112; this.match(MySqlParser.KW_SQLWARNING); } break; @@ -28479,9 +28498,9 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionNotfoundContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5106; + this.state = 5113; this.match(MySqlParser.KW_NOT); - this.state = 5107; + this.state = 5114; this.match(MySqlParser.KW_FOUND); } break; @@ -28489,7 +28508,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionExceptionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5108; + this.state = 5115; this.match(MySqlParser.KW_SQLEXCEPTION); } break; @@ -28517,23 +28536,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5113; + this.state = 5120; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 722, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 723, this.context) ) { case 1: { - this.state = 5111; + this.state = 5118; this.compoundStatement(); } break; case 2: { - this.state = 5112; + this.state = 5119; this.sqlStatement(); } break; } - this.state = 5115; + this.state = 5122; this.match(MySqlParser.SEMI); } } @@ -28558,27 +28577,27 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5117; + this.state = 5124; this.match(MySqlParser.KW_WHEN); - this.state = 5120; + this.state = 5127; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 723, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 724, this.context) ) { case 1: { - this.state = 5118; + this.state = 5125; this.constant(); } break; case 2: { - this.state = 5119; + this.state = 5126; this.expression(0); } break; } - this.state = 5122; + this.state = 5129; this.match(MySqlParser.KW_THEN); - this.state = 5124; + this.state = 5131; this.errorHandler.sync(this); alternative = 1; do { @@ -28586,7 +28605,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5123; + this.state = 5130; this.procedureSqlStatement(); } } @@ -28594,9 +28613,9 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5126; + this.state = 5133; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 724, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 725, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -28621,13 +28640,13 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5128; + this.state = 5135; this.match(MySqlParser.KW_ELSEIF); - this.state = 5129; + this.state = 5136; this.expression(0); - this.state = 5130; + this.state = 5137; this.match(MySqlParser.KW_THEN); - this.state = 5132; + this.state = 5139; this.errorHandler.sync(this); alternative = 1; do { @@ -28635,7 +28654,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5131; + this.state = 5138; this.procedureSqlStatement(); } } @@ -28643,9 +28662,9 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5134; + this.state = 5141; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 725, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 726, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -28670,41 +28689,41 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5136; + this.state = 5143; this.match(MySqlParser.KW_ALTER); - this.state = 5137; + this.state = 5144; this.match(MySqlParser.KW_USER); - this.state = 5139; + this.state = 5146; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 726, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 727, this.context) ) { case 1: { - this.state = 5138; + this.state = 5145; this.ifExists(); } break; } - this.state = 5197; + this.state = 5204; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 738, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 739, this.context) ) { case 1: { { - this.state = 5141; + this.state = 5148; this.userSpecification(); - this.state = 5146; + this.state = 5153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5142; + this.state = 5149; this.match(MySqlParser.COMMA); - this.state = 5143; + this.state = 5150; this.userSpecification(); } } - this.state = 5148; + this.state = 5155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28714,37 +28733,37 @@ export class MySqlParser extends antlr.Parser { case 2: { { - this.state = 5149; + this.state = 5156; this.alterUserAuthOption(); - this.state = 5154; + this.state = 5161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5150; + this.state = 5157; this.match(MySqlParser.COMMA); - this.state = 5151; + this.state = 5158; this.alterUserAuthOption(); } } - this.state = 5156; + this.state = 5163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5171; + this.state = 5178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5157; + this.state = 5164; this.match(MySqlParser.KW_REQUIRE); - this.state = 5169; + this.state = 5176; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5158; + this.state = 5165; this.match(MySqlParser.KW_NONE); } break; @@ -28754,29 +28773,29 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5159; - this.tlsOption(); this.state = 5166; + this.tlsOption(); + this.state = 5173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5161; + this.state = 5168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5160; + this.state = 5167; this.match(MySqlParser.KW_AND); } } - this.state = 5163; + this.state = 5170; this.tlsOption(); } } - this.state = 5168; + this.state = 5175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28788,49 +28807,49 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5179; + this.state = 5186; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 734, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 735, this.context) ) { case 1: { - this.state = 5173; + this.state = 5180; this.match(MySqlParser.KW_WITH); - this.state = 5175; + this.state = 5182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5174; + this.state = 5181; this.userResourceOption(); } } - this.state = 5177; + this.state = 5184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5185; + this.state = 5192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5183; + this.state = 5190; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5181; + this.state = 5188; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5182; + this.state = 5189; this.userLockOption(); } break; @@ -28838,16 +28857,16 @@ export class MySqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 5187; + this.state = 5194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5190; + this.state = 5197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5188; + this.state = 5195; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -28856,7 +28875,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5189; + this.state = 5196; this.match(MySqlParser.STRING_LITERAL); } } @@ -28868,14 +28887,14 @@ export class MySqlParser extends antlr.Parser { { { { - this.state = 5192; + this.state = 5199; this.userOrRoleName(); } - this.state = 5193; + this.state = 5200; this.match(MySqlParser.KW_DEFAULT); - this.state = 5194; + this.state = 5201; this.match(MySqlParser.KW_ROLE); - this.state = 5195; + this.state = 5202; this.roleOption(); } } @@ -28904,85 +28923,85 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5199; + this.state = 5206; this.match(MySqlParser.KW_CREATE); - this.state = 5200; + this.state = 5207; this.match(MySqlParser.KW_USER); - this.state = 5202; + this.state = 5209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5201; + this.state = 5208; this.ifNotExists(); } } - this.state = 5204; + this.state = 5211; this.userName(); - this.state = 5206; + this.state = 5213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5205; + this.state = 5212; this.createUserAuthOption(); } } - this.state = 5215; + this.state = 5222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5208; + this.state = 5215; this.match(MySqlParser.COMMA); - this.state = 5209; + this.state = 5216; this.userName(); - this.state = 5211; + this.state = 5218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5210; + this.state = 5217; this.createUserAuthOption(); } } } } - this.state = 5217; + this.state = 5224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5221; + this.state = 5228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5218; + this.state = 5225; this.match(MySqlParser.KW_DEFAULT); - this.state = 5219; + this.state = 5226; this.match(MySqlParser.KW_ROLE); - this.state = 5220; + this.state = 5227; this.roleOption(); } } - this.state = 5237; + this.state = 5244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5223; + this.state = 5230; this.match(MySqlParser.KW_REQUIRE); - this.state = 5235; + this.state = 5242; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5224; + this.state = 5231; this.match(MySqlParser.KW_NONE); } break; @@ -28992,29 +29011,29 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5225; - this.tlsOption(); this.state = 5232; + this.tlsOption(); + this.state = 5239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5227; + this.state = 5234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5226; + this.state = 5233; this.match(MySqlParser.KW_AND); } } - this.state = 5229; + this.state = 5236; this.tlsOption(); } } - this.state = 5234; + this.state = 5241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29026,49 +29045,49 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5245; + this.state = 5252; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 750, this.context) ) { case 1: { - this.state = 5239; + this.state = 5246; this.match(MySqlParser.KW_WITH); - this.state = 5241; + this.state = 5248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5240; + this.state = 5247; this.userResourceOption(); } } - this.state = 5243; + this.state = 5250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5251; + this.state = 5258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5249; + this.state = 5256; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5247; + this.state = 5254; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5248; + this.state = 5255; this.userLockOption(); } break; @@ -29076,16 +29095,16 @@ export class MySqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 5253; + this.state = 5260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5256; + this.state = 5263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5254; + this.state = 5261; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -29094,7 +29113,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5255; + this.state = 5262; this.match(MySqlParser.STRING_LITERAL); } } @@ -29122,35 +29141,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5258; + this.state = 5265; this.match(MySqlParser.KW_DROP); - this.state = 5259; + this.state = 5266; this.match(MySqlParser.KW_USER); - this.state = 5261; + this.state = 5268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5260; + this.state = 5267; this.ifExists(); } } - this.state = 5263; + this.state = 5270; this.userName(); - this.state = 5268; + this.state = 5275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5264; + this.state = 5271; this.match(MySqlParser.COMMA); - this.state = 5265; + this.state = 5272; this.userName(); } } - this.state = 5270; + this.state = 5277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29176,69 +29195,69 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 5360; + this.state = 5367; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 772, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 773, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5271; + this.state = 5278; this.match(MySqlParser.KW_GRANT); - this.state = 5272; + this.state = 5279; this.privelegeClause(); - this.state = 5277; + this.state = 5284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5273; + this.state = 5280; this.match(MySqlParser.COMMA); - this.state = 5274; + this.state = 5281; this.privelegeClause(); } } - this.state = 5279; + this.state = 5286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5280; + this.state = 5287; this.match(MySqlParser.KW_ON); - this.state = 5282; + this.state = 5289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 756, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 757, this.context) ) { case 1: { - this.state = 5281; + this.state = 5288; this.privilegeObjectType(); } break; } - this.state = 5284; + this.state = 5291; this.privilegeLevel(); - this.state = 5285; + this.state = 5292; this.match(MySqlParser.KW_TO); - this.state = 5295; + this.state = 5302; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 758, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 759, this.context) ) { case 1: { { - this.state = 5286; + this.state = 5293; this.userAuthOption(); - this.state = 5291; + this.state = 5298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5287; + this.state = 5294; this.match(MySqlParser.COMMA); - this.state = 5288; + this.state = 5295; this.userAuthOption(); } } - this.state = 5293; + this.state = 5300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29247,24 +29266,24 @@ export class MySqlParser extends antlr.Parser { break; case 2: { - this.state = 5294; + this.state = 5301; this.userOrRoleNames(); } break; } - this.state = 5311; + this.state = 5318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5297; + this.state = 5304; this.match(MySqlParser.KW_REQUIRE); - this.state = 5309; + this.state = 5316; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5298; + this.state = 5305; localContext._tlsNone = this.match(MySqlParser.KW_NONE); } break; @@ -29274,29 +29293,29 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5299; - this.tlsOption(); this.state = 5306; + this.tlsOption(); + this.state = 5313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5301; + this.state = 5308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5300; + this.state = 5307; this.match(MySqlParser.KW_AND); } } - this.state = 5303; + this.state = 5310; this.tlsOption(); } } - this.state = 5308; + this.state = 5315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29308,27 +29327,27 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5322; + this.state = 5329; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 765, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 766, this.context) ) { case 1: { - this.state = 5313; + this.state = 5320; this.match(MySqlParser.KW_WITH); - this.state = 5319; + this.state = 5326; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 764, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 765, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 5317; + this.state = 5324; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_GRANT: { - this.state = 5314; + this.state = 5321; this.match(MySqlParser.KW_GRANT); - this.state = 5315; + this.state = 5322; this.match(MySqlParser.KW_OPTION); } break; @@ -29337,7 +29356,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_MAX_UPDATES_PER_HOUR: case MySqlParser.KW_MAX_USER_CONNECTIONS: { - this.state = 5316; + this.state = 5323; this.userResourceOption(); } break; @@ -29346,32 +29365,32 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 5321; + this.state = 5328; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 764, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 765, this.context); } } break; } - this.state = 5331; + this.state = 5338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 5324; + this.state = 5331; this.match(MySqlParser.KW_AS); - this.state = 5325; + this.state = 5332; this.userName(); - this.state = 5329; + this.state = 5336; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 766, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 767, this.context) ) { case 1: { - this.state = 5326; + this.state = 5333; this.match(MySqlParser.KW_WITH); - this.state = 5327; + this.state = 5334; this.match(MySqlParser.KW_ROLE); - this.state = 5328; + this.state = 5335; this.roleOption(); } break; @@ -29384,76 +29403,76 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5333; + this.state = 5340; this.match(MySqlParser.KW_GRANT); - this.state = 5336; + this.state = 5343; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 768, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 769, this.context) ) { case 1: { - this.state = 5334; + this.state = 5341; this.match(MySqlParser.KW_PROXY); - this.state = 5335; + this.state = 5342; this.match(MySqlParser.KW_ON); } break; } { - this.state = 5338; + this.state = 5345; this.userOrRoleName(); } - this.state = 5343; + this.state = 5350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5339; + this.state = 5346; this.match(MySqlParser.COMMA); { - this.state = 5340; + this.state = 5347; this.userOrRoleName(); } } } - this.state = 5345; + this.state = 5352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5346; + this.state = 5353; this.match(MySqlParser.KW_TO); { - this.state = 5347; + this.state = 5354; this.userOrRoleName(); } - this.state = 5352; + this.state = 5359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5348; + this.state = 5355; this.match(MySqlParser.COMMA); { - this.state = 5349; + this.state = 5356; this.userOrRoleName(); } } } - this.state = 5354; + this.state = 5361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5358; + this.state = 5365; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 772, this.context) ) { case 1: { - this.state = 5355; + this.state = 5362; this.match(MySqlParser.KW_WITH); - this.state = 5356; + this.state = 5363; this.match(MySqlParser.KW_ADMIN); - this.state = 5357; + this.state = 5364; this.match(MySqlParser.KW_OPTION); } break; @@ -29481,36 +29500,36 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 462, MySqlParser.RULE_roleOption); let _la: number; try { - this.state = 5370; + this.state = 5377; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 774, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 775, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5362; + this.state = 5369; this.match(MySqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5363; + this.state = 5370; this.match(MySqlParser.KW_NONE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5364; + this.state = 5371; this.match(MySqlParser.KW_ALL); - this.state = 5367; + this.state = 5374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 5365; + this.state = 5372; this.match(MySqlParser.KW_EXCEPT); - this.state = 5366; + this.state = 5373; this.userOrRoleNames(); } } @@ -29520,7 +29539,7 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5369; + this.state = 5376; this.userOrRoleNames(); } break; @@ -29547,45 +29566,45 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5372; + this.state = 5379; this.match(MySqlParser.KW_GRANT); - this.state = 5373; + this.state = 5380; this.match(MySqlParser.KW_PROXY); - this.state = 5374; + this.state = 5381; this.match(MySqlParser.KW_ON); - this.state = 5375; - localContext._fromFirst = this.userName(); - this.state = 5376; - this.match(MySqlParser.KW_TO); - this.state = 5377; - localContext._toFirst = this.userName(); this.state = 5382; + localContext._fromFirst = this.userName(); + this.state = 5383; + this.match(MySqlParser.KW_TO); + this.state = 5384; + localContext._toFirst = this.userName(); + this.state = 5389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5378; + this.state = 5385; this.match(MySqlParser.COMMA); - this.state = 5379; + this.state = 5386; localContext._userName = this.userName(); localContext._toOther.push(localContext._userName); } } - this.state = 5384; + this.state = 5391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5388; + this.state = 5395; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 776, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { case 1: { - this.state = 5385; + this.state = 5392; this.match(MySqlParser.KW_WITH); - this.state = 5386; + this.state = 5393; this.match(MySqlParser.KW_GRANT); - this.state = 5387; + this.state = 5394; this.match(MySqlParser.KW_OPTION); } break; @@ -29613,43 +29632,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5390; + this.state = 5397; this.match(MySqlParser.KW_ALTER); - this.state = 5391; + this.state = 5398; this.match(MySqlParser.KW_RESOURCE); - this.state = 5392; - this.match(MySqlParser.KW_GROUP); - this.state = 5393; - this.groupName(); this.state = 5399; + this.match(MySqlParser.KW_GROUP); + this.state = 5400; + this.groupName(); + this.state = 5406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { - { - this.state = 5394; - this.match(MySqlParser.KW_VCPU); - this.state = 5396; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 857) { - { - this.state = 5395; - this.match(MySqlParser.EQUAL_SYMBOL); - } - } - - this.state = 5398; - this.resourceGroupVcpuSpec(); - } - } - - this.state = 5406; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 837) { { this.state = 5401; - this.match(MySqlParser.KW_THREAD_PRIORITY); + this.match(MySqlParser.KW_VCPU); this.state = 5403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -29661,16 +29658,38 @@ export class MySqlParser extends antlr.Parser { } this.state = 5405; + this.resourceGroupVcpuSpec(); + } + } + + this.state = 5413; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 837) { + { + this.state = 5408; + this.match(MySqlParser.KW_THREAD_PRIORITY); + this.state = 5410; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 857) { + { + this.state = 5409; + this.match(MySqlParser.EQUAL_SYMBOL); + } + } + + this.state = 5412; this.decimalLiteral(); } } - this.state = 5412; + this.state = 5419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5408; + this.state = 5415; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -29679,12 +29698,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5410; + this.state = 5417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5409; + this.state = 5416; this.match(MySqlParser.KW_FORCE); } } @@ -29715,19 +29734,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5414; + this.state = 5421; this.match(MySqlParser.KW_CREATE); - this.state = 5415; + this.state = 5422; this.match(MySqlParser.KW_RESOURCE); - this.state = 5416; + this.state = 5423; this.match(MySqlParser.KW_GROUP); - this.state = 5417; + this.state = 5424; this.groupNameCreate(); - this.state = 5418; + this.state = 5425; this.match(MySqlParser.KW_TYPE); - this.state = 5419; + this.state = 5426; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5420; + this.state = 5427; _la = this.tokenStream.LA(1); if(!(_la === 678 || _la === 835)) { this.errorHandler.recoverInline(this); @@ -29736,35 +29755,13 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5426; + this.state = 5433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { - { - this.state = 5421; - this.match(MySqlParser.KW_VCPU); - this.state = 5423; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 857) { - { - this.state = 5422; - this.match(MySqlParser.EQUAL_SYMBOL); - } - } - - this.state = 5425; - this.resourceGroupVcpuSpec(); - } - } - - this.state = 5433; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 837) { { this.state = 5428; - this.match(MySqlParser.KW_THREAD_PRIORITY); + this.match(MySqlParser.KW_VCPU); this.state = 5430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -29776,16 +29773,38 @@ export class MySqlParser extends antlr.Parser { } this.state = 5432; + this.resourceGroupVcpuSpec(); + } + } + + this.state = 5440; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 837) { + { + this.state = 5435; + this.match(MySqlParser.KW_THREAD_PRIORITY); + this.state = 5437; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 857) { + { + this.state = 5436; + this.match(MySqlParser.EQUAL_SYMBOL); + } + } + + this.state = 5439; this.decimalLiteral(); } } - this.state = 5436; + this.state = 5443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5435; + this.state = 5442; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -29820,20 +29839,20 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5438; + this.state = 5445; this.match(MySqlParser.KW_DROP); - this.state = 5439; + this.state = 5446; this.match(MySqlParser.KW_RESOURCE); - this.state = 5440; + this.state = 5447; this.match(MySqlParser.KW_GROUP); - this.state = 5441; + this.state = 5448; this.groupName(); - this.state = 5443; + this.state = 5450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5442; + this.state = 5449; this.match(MySqlParser.KW_FORCE); } } @@ -29861,36 +29880,36 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5445; + this.state = 5452; this.match(MySqlParser.KW_SET); - this.state = 5446; + this.state = 5453; this.match(MySqlParser.KW_RESOURCE); - this.state = 5447; + this.state = 5454; this.match(MySqlParser.KW_GROUP); - this.state = 5448; + this.state = 5455; this.groupName(); - this.state = 5458; + this.state = 5465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5449; + this.state = 5456; this.match(MySqlParser.KW_FOR); - this.state = 5450; + this.state = 5457; this.decimalLiteral(); - this.state = 5455; + this.state = 5462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5451; + this.state = 5458; this.match(MySqlParser.COMMA); - this.state = 5452; + this.state = 5459; this.decimalLiteral(); } } - this.state = 5457; + this.state = 5464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29920,43 +29939,43 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5465; + this.state = 5472; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { case 1: { - this.state = 5460; + this.state = 5467; this.decimalLiteral(); } break; case 2: { - this.state = 5461; + this.state = 5468; this.decimalLiteral(); - this.state = 5462; + this.state = 5469; this.match(MySqlParser.MINUS); - this.state = 5463; + this.state = 5470; this.decimalLiteral(); } break; } - this.state = 5471; + this.state = 5478; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 792, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 793, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5467; + this.state = 5474; this.match(MySqlParser.COMMA); - this.state = 5468; + this.state = 5475; this.resourceGroupVcpuSpec(); } } } - this.state = 5473; + this.state = 5480; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 792, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 793, this.context); } } } @@ -29981,25 +30000,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5474; - this.match(MySqlParser.KW_RENAME); - this.state = 5475; - this.match(MySqlParser.KW_USER); - this.state = 5476; - this.renameUserClause(); this.state = 5481; + this.match(MySqlParser.KW_RENAME); + this.state = 5482; + this.match(MySqlParser.KW_USER); + this.state = 5483; + this.renameUserClause(); + this.state = 5488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5477; + this.state = 5484; this.match(MySqlParser.COMMA); - this.state = 5478; + this.state = 5485; this.renameUserClause(); } } - this.state = 5483; + this.state = 5490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30024,67 +30043,67 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 478, MySqlParser.RULE_revokeStatement); let _la: number; try { - this.state = 5536; + this.state = 5543; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 804, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 805, this.context) ) { case 1: localContext = new DetailRevokeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5484; + this.state = 5491; this.match(MySqlParser.KW_REVOKE); - this.state = 5486; + this.state = 5493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5485; + this.state = 5492; this.ifExists(); } } - this.state = 5488; + this.state = 5495; this.privelegeClause(); - this.state = 5493; + this.state = 5500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5489; + this.state = 5496; this.match(MySqlParser.COMMA); - this.state = 5490; + this.state = 5497; this.privelegeClause(); } } - this.state = 5495; + this.state = 5502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5496; + this.state = 5503; this.match(MySqlParser.KW_ON); - this.state = 5498; + this.state = 5505; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 796, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 797, this.context) ) { case 1: { - this.state = 5497; + this.state = 5504; this.privilegeObjectType(); } break; } - this.state = 5500; + this.state = 5507; this.privilegeLevel(); - this.state = 5501; + this.state = 5508; this.match(MySqlParser.KW_FROM); - this.state = 5502; + this.state = 5509; this.userOrRoleNames(); - this.state = 5504; + this.state = 5511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5503; + this.state = 5510; this.ignoreUnknownUser(); } } @@ -30095,46 +30114,46 @@ export class MySqlParser extends antlr.Parser { localContext = new ShortRevokeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5506; + this.state = 5513; this.match(MySqlParser.KW_REVOKE); - this.state = 5508; + this.state = 5515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5507; + this.state = 5514; this.ifExists(); } } - this.state = 5510; + this.state = 5517; this.match(MySqlParser.KW_ALL); - this.state = 5512; + this.state = 5519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5511; + this.state = 5518; this.match(MySqlParser.KW_PRIVILEGES); } } - this.state = 5514; + this.state = 5521; this.match(MySqlParser.COMMA); - this.state = 5515; + this.state = 5522; this.match(MySqlParser.KW_GRANT); - this.state = 5516; + this.state = 5523; this.match(MySqlParser.KW_OPTION); - this.state = 5517; + this.state = 5524; this.match(MySqlParser.KW_FROM); - this.state = 5518; + this.state = 5525; this.userOrRoleNames(); - this.state = 5520; + this.state = 5527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5519; + this.state = 5526; this.ignoreUnknownUser(); } } @@ -30145,42 +30164,42 @@ export class MySqlParser extends antlr.Parser { localContext = new ProxyAndRoleRevokeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5522; + this.state = 5529; this.match(MySqlParser.KW_REVOKE); - this.state = 5524; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 801, this.context) ) { - case 1: - { - this.state = 5523; - this.ifExists(); - } - break; - } - this.state = 5528; + this.state = 5531; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 802, this.context) ) { case 1: { - this.state = 5526; + this.state = 5530; + this.ifExists(); + } + break; + } + this.state = 5535; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 803, this.context) ) { + case 1: + { + this.state = 5533; this.match(MySqlParser.KW_PROXY); - this.state = 5527; + this.state = 5534; this.match(MySqlParser.KW_ON); } break; } - this.state = 5530; + this.state = 5537; this.userOrRoleNames(); - this.state = 5531; + this.state = 5538; this.match(MySqlParser.KW_FROM); - this.state = 5532; + this.state = 5539; this.userOrRoleNames(); - this.state = 5534; + this.state = 5541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5533; + this.state = 5540; this.ignoreUnknownUser(); } } @@ -30209,11 +30228,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5538; + this.state = 5545; this.match(MySqlParser.KW_IGNORE); - this.state = 5539; + this.state = 5546; this.match(MySqlParser.KW_UNKNOWN); - this.state = 5540; + this.state = 5547; this.match(MySqlParser.KW_USER); } } @@ -30238,7 +30257,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5542; + this.state = 5549; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 173 || _la === 409)) { this.errorHandler.recoverInline(this); @@ -30268,44 +30287,44 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 484, MySqlParser.RULE_setPasswordStatement); let _la: number; try { - this.state = 5576; + this.state = 5583; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 811, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 812, this.context) ) { case 1: localContext = new V57Context(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5544; + this.state = 5551; this.match(MySqlParser.KW_SET); - this.state = 5545; + this.state = 5552; this.match(MySqlParser.KW_PASSWORD); - this.state = 5548; + this.state = 5555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5546; + this.state = 5553; this.match(MySqlParser.KW_FOR); - this.state = 5547; + this.state = 5554; this.userName(); } } - this.state = 5550; + this.state = 5557; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5553; + this.state = 5560; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OLD_PASSWORD: case MySqlParser.KW_PASSWORD: { - this.state = 5551; + this.state = 5558; this.passwordFunctionClause(); } break; case MySqlParser.STRING_LITERAL: { - this.state = 5552; + this.state = 5559; this.match(MySqlParser.STRING_LITERAL); } break; @@ -30318,66 +30337,66 @@ export class MySqlParser extends antlr.Parser { localContext = new V80Context(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5555; + this.state = 5562; this.match(MySqlParser.KW_SET); - this.state = 5556; + this.state = 5563; this.match(MySqlParser.KW_PASSWORD); - this.state = 5559; + this.state = 5566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5557; + this.state = 5564; this.match(MySqlParser.KW_FOR); - this.state = 5558; + this.state = 5565; this.userName(); } } - this.state = 5565; + this.state = 5572; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 5561; + this.state = 5568; this.match(MySqlParser.KW_TO); - this.state = 5562; + this.state = 5569; this.match(MySqlParser.KW_RANDOM); } break; case MySqlParser.EQUAL_SYMBOL: { - this.state = 5563; + this.state = 5570; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5564; + this.state = 5571; this.match(MySqlParser.STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5569; + this.state = 5576; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 810, this.context) ) { case 1: { - this.state = 5567; + this.state = 5574; this.match(MySqlParser.KW_REPLACE); - this.state = 5568; + this.state = 5575; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5574; + this.state = 5581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5571; + this.state = 5578; this.match(MySqlParser.KW_RETAIN); - this.state = 5572; + this.state = 5579; this.match(MySqlParser.KW_CURRENT); - this.state = 5573; + this.state = 5580; this.match(MySqlParser.KW_PASSWORD); } } @@ -30406,9 +30425,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5578; + this.state = 5585; this.userName(); - this.state = 5579; + this.state = 5586; this.userPasswordOption(); } } @@ -30434,60 +30453,60 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5581; + this.state = 5588; this.userName(); - this.state = 5607; + this.state = 5614; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 814, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { case 1: { - this.state = 5582; + this.state = 5589; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5583; + this.state = 5590; this.match(MySqlParser.KW_BY); - this.state = 5584; + this.state = 5591; this.match(MySqlParser.STRING_LITERAL); - this.state = 5585; + this.state = 5592; this.authOptionClause(); } break; case 2: { - this.state = 5586; + this.state = 5593; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5587; + this.state = 5594; this.match(MySqlParser.KW_BY); - this.state = 5588; + this.state = 5595; this.match(MySqlParser.KW_RANDOM); - this.state = 5589; + this.state = 5596; this.match(MySqlParser.KW_PASSWORD); - this.state = 5590; + this.state = 5597; this.authOptionClause(); } break; case 3: { - this.state = 5591; + this.state = 5598; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5592; + this.state = 5599; this.match(MySqlParser.KW_WITH); - this.state = 5593; + this.state = 5600; this.authenticationRule(); } break; case 4: { - this.state = 5594; + this.state = 5601; this.match(MySqlParser.KW_DISCARD); - this.state = 5595; + this.state = 5602; this.match(MySqlParser.KW_OLD); - this.state = 5596; + this.state = 5603; this.match(MySqlParser.KW_PASSWORD); } break; case 5: { - this.state = 5602; + this.state = 5609; this.errorHandler.sync(this); alternative = 1; do { @@ -30495,7 +30514,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5597; + this.state = 5604; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51 || _la === 492)) { this.errorHandler.recoverInline(this); @@ -30504,14 +30523,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5598; + this.state = 5605; this.factor(); - this.state = 5600; + this.state = 5607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5599; + this.state = 5606; this.factorAuthOption(); } } @@ -30522,15 +30541,15 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5604; + this.state = 5611; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 813, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 814, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 6: { - this.state = 5606; + this.state = 5613; this.registrationOption(); } break; @@ -30556,31 +30575,31 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 490, MySqlParser.RULE_createUserAuthOption); let _la: number; try { - this.state = 5645; + this.state = 5652; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 821, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 822, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5609; - this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5610; - this.match(MySqlParser.KW_BY); this.state = 5616; + this.match(MySqlParser.KW_IDENTIFIED); + this.state = 5617; + this.match(MySqlParser.KW_BY); + this.state = 5623; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5611; + this.state = 5618; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5612; + this.state = 5619; this.match(MySqlParser.KW_RANDOM); - this.state = 5613; + this.state = 5620; this.match(MySqlParser.KW_PASSWORD); } } @@ -30588,9 +30607,9 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_PASSWORD: { { - this.state = 5614; + this.state = 5621; this.match(MySqlParser.KW_PASSWORD); - this.state = 5615; + this.state = 5622; this.match(MySqlParser.STRING_LITERAL); } } @@ -30598,14 +30617,14 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5620; + this.state = 5627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5618; + this.state = 5625; this.match(MySqlParser.KW_AND); - this.state = 5619; + this.state = 5626; this.createUserAuthOption(); } } @@ -30615,35 +30634,35 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5622; + this.state = 5629; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5623; + this.state = 5630; this.match(MySqlParser.KW_WITH); - this.state = 5624; + this.state = 5631; localContext._authPlugin = this.uid(); - this.state = 5633; + this.state = 5640; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5625; + this.state = 5632; this.match(MySqlParser.KW_BY); - this.state = 5629; + this.state = 5636; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5626; + this.state = 5633; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5627; + this.state = 5634; this.match(MySqlParser.KW_RANDOM); - this.state = 5628; + this.state = 5635; this.match(MySqlParser.KW_PASSWORD); } } @@ -30656,9 +30675,9 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_AS: { - this.state = 5631; + this.state = 5638; this.match(MySqlParser.KW_AS); - this.state = 5632; + this.state = 5639; this.match(MySqlParser.STRING_LITERAL); } break; @@ -30739,14 +30758,14 @@ export class MySqlParser extends antlr.Parser { default: break; } - this.state = 5637; + this.state = 5644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5635; + this.state = 5642; this.match(MySqlParser.KW_AND); - this.state = 5636; + this.state = 5643; this.createUserAuthOption(); } } @@ -30756,18 +30775,18 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5639; + this.state = 5646; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5640; + this.state = 5647; this.match(MySqlParser.KW_WITH); - this.state = 5641; + this.state = 5648; localContext._authPlugin = this.uid(); - this.state = 5643; + this.state = 5650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 427) { { - this.state = 5642; + this.state = 5649; this.createUserInitialAuthOption(); } } @@ -30794,36 +30813,36 @@ export class MySqlParser extends antlr.Parser { let localContext = new CreateUserInitialAuthOptionContext(this.context, this.state); this.enterRule(localContext, 492, MySqlParser.RULE_createUserInitialAuthOption); try { - this.state = 5664; + this.state = 5671; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 823, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 824, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5647; - this.match(MySqlParser.KW_INITIAL); - this.state = 5648; - this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5649; - this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5650; - this.match(MySqlParser.KW_BY); this.state = 5654; + this.match(MySqlParser.KW_INITIAL); + this.state = 5655; + this.match(MySqlParser.KW_AUTHENTICATION); + this.state = 5656; + this.match(MySqlParser.KW_IDENTIFIED); + this.state = 5657; + this.match(MySqlParser.KW_BY); + this.state = 5661; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_RANDOM: { { - this.state = 5651; + this.state = 5658; this.match(MySqlParser.KW_RANDOM); - this.state = 5652; + this.state = 5659; this.match(MySqlParser.KW_PASSWORD); } } break; case MySqlParser.STRING_LITERAL: { - this.state = 5653; + this.state = 5660; this.match(MySqlParser.STRING_LITERAL); } break; @@ -30835,19 +30854,19 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5656; + this.state = 5663; this.match(MySqlParser.KW_INITIAL); - this.state = 5657; + this.state = 5664; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5658; + this.state = 5665; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5659; + this.state = 5666; this.match(MySqlParser.KW_WITH); - this.state = 5660; + this.state = 5667; localContext._authPlugin = this.uid(); - this.state = 5661; + this.state = 5668; this.match(MySqlParser.KW_AS); - this.state = 5662; + this.state = 5669; this.match(MySqlParser.STRING_LITERAL); } break; @@ -30871,22 +30890,22 @@ export class MySqlParser extends antlr.Parser { let localContext = new UserAuthOptionContext(this.context, this.state); this.enterRule(localContext, 494, MySqlParser.RULE_userAuthOption); try { - this.state = 5691; + this.state = 5698; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 824, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 825, this.context) ) { case 1: localContext = new HashAuthOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5666; + this.state = 5673; this.userName(); - this.state = 5667; + this.state = 5674; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5668; + this.state = 5675; this.match(MySqlParser.KW_BY); - this.state = 5669; + this.state = 5676; this.match(MySqlParser.KW_PASSWORD); - this.state = 5670; + this.state = 5677; (localContext as HashAuthOptionContext)._hashed = this.match(MySqlParser.STRING_LITERAL); } break; @@ -30894,24 +30913,6 @@ export class MySqlParser extends antlr.Parser { localContext = new RandomAuthOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5672; - this.userName(); - this.state = 5673; - this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5674; - this.match(MySqlParser.KW_BY); - this.state = 5675; - this.match(MySqlParser.KW_RANDOM); - this.state = 5676; - this.match(MySqlParser.KW_PASSWORD); - this.state = 5677; - this.authOptionClause(); - } - break; - case 3: - localContext = new StringAuthOptionContext(localContext); - this.enterOuterAlt(localContext, 3); - { this.state = 5679; this.userName(); this.state = 5680; @@ -30919,8 +30920,26 @@ export class MySqlParser extends antlr.Parser { this.state = 5681; this.match(MySqlParser.KW_BY); this.state = 5682; - this.match(MySqlParser.STRING_LITERAL); + this.match(MySqlParser.KW_RANDOM); this.state = 5683; + this.match(MySqlParser.KW_PASSWORD); + this.state = 5684; + this.authOptionClause(); + } + break; + case 3: + localContext = new StringAuthOptionContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 5686; + this.userName(); + this.state = 5687; + this.match(MySqlParser.KW_IDENTIFIED); + this.state = 5688; + this.match(MySqlParser.KW_BY); + this.state = 5689; + this.match(MySqlParser.STRING_LITERAL); + this.state = 5690; this.authOptionClause(); } break; @@ -30928,13 +30947,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ModuleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5685; + this.state = 5692; this.userName(); - this.state = 5686; + this.state = 5693; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5687; + this.state = 5694; this.match(MySqlParser.KW_WITH); - this.state = 5688; + this.state = 5695; this.authenticationRule(); } break; @@ -30942,7 +30961,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SimpleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5690; + this.state = 5697; this.userName(); } break; @@ -30969,28 +30988,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5695; + this.state = 5702; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 825, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { case 1: { - this.state = 5693; + this.state = 5700; this.match(MySqlParser.KW_REPLACE); - this.state = 5694; + this.state = 5701; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5700; + this.state = 5707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5697; + this.state = 5704; this.match(MySqlParser.KW_RETAIN); - this.state = 5698; + this.state = 5705; this.match(MySqlParser.KW_CURRENT); - this.state = 5699; + this.state = 5706; this.match(MySqlParser.KW_PASSWORD); } } @@ -31016,21 +31035,21 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 498, MySqlParser.RULE_authenticationRule); let _la: number; try { - this.state = 5716; + this.state = 5723; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 830, this.context) ) { case 1: localContext = new ModuleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5702; + this.state = 5709; (localContext as ModuleContext)._authPlugin = this.uid(); - this.state = 5710; + this.state = 5717; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 828, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { case 1: { - this.state = 5703; + this.state = 5710; _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 20 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -31039,27 +31058,27 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5707; + this.state = 5714; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5704; + this.state = 5711; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { - this.state = 5705; + this.state = 5712; this.match(MySqlParser.KW_RANDOM); - this.state = 5706; + this.state = 5713; this.match(MySqlParser.KW_PASSWORD); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5709; + this.state = 5716; this.authOptionClause(); } break; @@ -31070,11 +31089,11 @@ export class MySqlParser extends antlr.Parser { localContext = new PasswordModuleOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5712; + this.state = 5719; (localContext as PasswordModuleOptionContext)._authPlugin = this.uid(); - this.state = 5713; + this.state = 5720; this.match(MySqlParser.KW_USING); - this.state = 5714; + this.state = 5721; this.passwordFunctionClause(); } break; @@ -31098,47 +31117,47 @@ export class MySqlParser extends antlr.Parser { let localContext = new TlsOptionContext(this.context, this.state); this.enterRule(localContext, 500, MySqlParser.RULE_tlsOption); try { - this.state = 5726; + this.state = 5733; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SSL: this.enterOuterAlt(localContext, 1); { - this.state = 5718; + this.state = 5725; this.match(MySqlParser.KW_SSL); } break; case MySqlParser.KW_X509: this.enterOuterAlt(localContext, 2); { - this.state = 5719; + this.state = 5726; this.match(MySqlParser.KW_X509); } break; case MySqlParser.KW_CIPHER: this.enterOuterAlt(localContext, 3); { - this.state = 5720; + this.state = 5727; this.match(MySqlParser.KW_CIPHER); - this.state = 5721; + this.state = 5728; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ISSUER: this.enterOuterAlt(localContext, 4); { - this.state = 5722; + this.state = 5729; this.match(MySqlParser.KW_ISSUER); - this.state = 5723; + this.state = 5730; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SUBJECT: this.enterOuterAlt(localContext, 5); { - this.state = 5724; + this.state = 5731; this.match(MySqlParser.KW_SUBJECT); - this.state = 5725; + this.state = 5732; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31164,42 +31183,42 @@ export class MySqlParser extends antlr.Parser { let localContext = new UserResourceOptionContext(this.context, this.state); this.enterRule(localContext, 502, MySqlParser.RULE_userResourceOption); try { - this.state = 5736; + this.state = 5743; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MAX_QUERIES_PER_HOUR: this.enterOuterAlt(localContext, 1); { - this.state = 5728; + this.state = 5735; this.match(MySqlParser.KW_MAX_QUERIES_PER_HOUR); - this.state = 5729; + this.state = 5736; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_UPDATES_PER_HOUR: this.enterOuterAlt(localContext, 2); { - this.state = 5730; + this.state = 5737; this.match(MySqlParser.KW_MAX_UPDATES_PER_HOUR); - this.state = 5731; + this.state = 5738; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: this.enterOuterAlt(localContext, 3); { - this.state = 5732; + this.state = 5739; this.match(MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR); - this.state = 5733; + this.state = 5740; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_USER_CONNECTIONS: this.enterOuterAlt(localContext, 4); { - this.state = 5734; + this.state = 5741; this.match(MySqlParser.KW_MAX_USER_CONNECTIONS); - this.state = 5735; + this.state = 5742; this.decimalLiteral(); } break; @@ -31226,38 +31245,38 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 504, MySqlParser.RULE_userPasswordOption); let _la: number; try { - this.state = 5776; + this.state = 5783; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 837, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5738; + this.state = 5745; this.match(MySqlParser.KW_PASSWORD); - this.state = 5739; - this.match(MySqlParser.KW_EXPIRE); this.state = 5746; + this.match(MySqlParser.KW_EXPIRE); + this.state = 5753; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5740; + this.state = 5747; localContext._expireType = this.match(MySqlParser.KW_DEFAULT); } break; case MySqlParser.KW_NEVER: { - this.state = 5741; + this.state = 5748; localContext._expireType = this.match(MySqlParser.KW_NEVER); } break; case MySqlParser.KW_INTERVAL: { - this.state = 5742; + this.state = 5749; localContext._expireType = this.match(MySqlParser.KW_INTERVAL); - this.state = 5743; + this.state = 5750; this.decimalLiteral(); - this.state = 5744; + this.state = 5751; this.match(MySqlParser.KW_DAY); } break; @@ -31340,45 +31359,11 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5748; - this.match(MySqlParser.KW_PASSWORD); - this.state = 5749; - this.match(MySqlParser.KW_HISTORY); - this.state = 5752; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case MySqlParser.KW_DEFAULT: - { - this.state = 5750; - this.match(MySqlParser.KW_DEFAULT); - } - break; - case MySqlParser.ZERO_DECIMAL: - case MySqlParser.ONE_DECIMAL: - case MySqlParser.TWO_DECIMAL: - case MySqlParser.THREE_DECIMAL: - case MySqlParser.DECIMAL_LITERAL: - case MySqlParser.REAL_LITERAL: - { - this.state = 5751; - this.decimalLiteral(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 5754; - this.match(MySqlParser.KW_PASSWORD); this.state = 5755; - this.match(MySqlParser.KW_REUSE); + this.match(MySqlParser.KW_PASSWORD); this.state = 5756; - this.match(MySqlParser.KW_INTERVAL); - this.state = 5761; + this.match(MySqlParser.KW_HISTORY); + this.state = 5759; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: @@ -31396,7 +31381,41 @@ export class MySqlParser extends antlr.Parser { { this.state = 5758; this.decimalLiteral(); - this.state = 5759; + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 5761; + this.match(MySqlParser.KW_PASSWORD); + this.state = 5762; + this.match(MySqlParser.KW_REUSE); + this.state = 5763; + this.match(MySqlParser.KW_INTERVAL); + this.state = 5768; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case MySqlParser.KW_DEFAULT: + { + this.state = 5764; + this.match(MySqlParser.KW_DEFAULT); + } + break; + case MySqlParser.ZERO_DECIMAL: + case MySqlParser.ONE_DECIMAL: + case MySqlParser.TWO_DECIMAL: + case MySqlParser.THREE_DECIMAL: + case MySqlParser.DECIMAL_LITERAL: + case MySqlParser.REAL_LITERAL: + { + this.state = 5765; + this.decimalLiteral(); + this.state = 5766; this.match(MySqlParser.KW_DAY); } break; @@ -31408,18 +31427,18 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5763; + this.state = 5770; this.match(MySqlParser.KW_PASSWORD); - this.state = 5764; + this.state = 5771; this.match(MySqlParser.KW_REQUIRE); - this.state = 5765; + this.state = 5772; this.match(MySqlParser.KW_CURRENT); - this.state = 5767; + this.state = 5774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 122) { { - this.state = 5766; + this.state = 5773; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -31436,18 +31455,18 @@ export class MySqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5769; + this.state = 5776; this.match(MySqlParser.KW_FAILED_LOGIN_ATTEMPTS); - this.state = 5770; + this.state = 5777; this.decimalLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5771; + this.state = 5778; this.match(MySqlParser.KW_PASSWORD_LOCK_TIME); - this.state = 5774; + this.state = 5781; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -31457,13 +31476,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5772; + this.state = 5779; this.decimalLiteral(); } break; case MySqlParser.KW_UNBOUNDED: { - this.state = 5773; + this.state = 5780; this.match(MySqlParser.KW_UNBOUNDED); } break; @@ -31495,9 +31514,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5778; + this.state = 5785; this.match(MySqlParser.KW_ACCOUNT); - this.state = 5779; + this.state = 5786; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 183)) { @@ -31530,43 +31549,43 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5781; + this.state = 5788; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5784; + this.state = 5791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 5782; + this.state = 5789; this.match(MySqlParser.KW_WITH); - this.state = 5783; + this.state = 5790; localContext._authPlugin = this.uid(); } } - this.state = 5794; + this.state = 5801; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5786; + this.state = 5793; this.match(MySqlParser.KW_BY); - this.state = 5790; + this.state = 5797; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5787; + this.state = 5794; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5788; + this.state = 5795; this.match(MySqlParser.KW_RANDOM); - this.state = 5789; + this.state = 5796; this.match(MySqlParser.KW_PASSWORD); } } @@ -31579,9 +31598,9 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_AS: { - this.state = 5792; + this.state = 5799; this.match(MySqlParser.KW_AS); - this.state = 5793; + this.state = 5800; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31608,45 +31627,45 @@ export class MySqlParser extends antlr.Parser { let localContext = new RegistrationOptionContext(this.context, this.state); this.enterRule(localContext, 510, MySqlParser.RULE_registrationOption); try { - this.state = 5811; + this.state = 5818; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 842, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5796; + this.state = 5803; this.factor(); - this.state = 5797; + this.state = 5804; this.match(MySqlParser.KW_INITIATE); - this.state = 5798; + this.state = 5805; this.match(MySqlParser.KW_REGISTRATION); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5800; + this.state = 5807; this.factor(); - this.state = 5801; + this.state = 5808; this.match(MySqlParser.KW_FINISH); - this.state = 5802; + this.state = 5809; this.match(MySqlParser.KW_REGISTRATION); - this.state = 5803; + this.state = 5810; this.match(MySqlParser.KW_SET); - this.state = 5804; + this.state = 5811; this.match(MySqlParser.KW_CHALLENGE_RESPONSE); - this.state = 5805; + this.state = 5812; this.match(MySqlParser.KW_AS); - this.state = 5806; + this.state = 5813; this.match(MySqlParser.STRING_LITERAL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5808; + this.state = 5815; this.factor(); - this.state = 5809; + this.state = 5816; this.match(MySqlParser.KW_UNREGISTER); } break; @@ -31673,7 +31692,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5813; + this.state = 5820; _la = this.tokenStream.LA(1); if(!(_la === 873 || _la === 874)) { this.errorHandler.recoverInline(this); @@ -31682,7 +31701,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5814; + this.state = 5821; this.match(MySqlParser.KW_FACTOR); } } @@ -31707,18 +31726,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5816; + this.state = 5823; this.privilege(); - this.state = 5821; + this.state = 5828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 5817; + this.state = 5824; this.match(MySqlParser.LR_BRACKET); - this.state = 5818; + this.state = 5825; this.columnNames(); - this.state = 5819; + this.state = 5826; this.match(MySqlParser.RR_BRACKET); } } @@ -31744,20 +31763,20 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 516, MySqlParser.RULE_privilege); let _la: number; try { - this.state = 5916; + this.state = 5923; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5823; + this.state = 5830; this.match(MySqlParser.KW_ALL); - this.state = 5825; + this.state = 5832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5824; + this.state = 5831; this.match(MySqlParser.KW_PRIVILEGES); } } @@ -31767,14 +31786,14 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5827; + this.state = 5834; this.match(MySqlParser.KW_ALTER); - this.state = 5829; + this.state = 5836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 743) { { - this.state = 5828; + this.state = 5835; this.match(MySqlParser.KW_ROUTINE); } } @@ -31784,46 +31803,46 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5831; + this.state = 5838; this.match(MySqlParser.KW_CREATE); - this.state = 5839; + this.state = 5846; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TEMPORARY: { - this.state = 5832; + this.state = 5839; this.match(MySqlParser.KW_TEMPORARY); - this.state = 5833; + this.state = 5840; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_ROUTINE: { - this.state = 5834; + this.state = 5841; this.match(MySqlParser.KW_ROUTINE); } break; case MySqlParser.KW_VIEW: { - this.state = 5835; + this.state = 5842; this.match(MySqlParser.KW_VIEW); } break; case MySqlParser.KW_USER: { - this.state = 5836; + this.state = 5843; this.match(MySqlParser.KW_USER); } break; case MySqlParser.KW_TABLESPACE: { - this.state = 5837; + this.state = 5844; this.match(MySqlParser.KW_TABLESPACE); } break; case MySqlParser.KW_ROLE: { - this.state = 5838; + this.state = 5845; this.match(MySqlParser.KW_ROLE); } break; @@ -31839,21 +31858,21 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5841; + this.state = 5848; this.match(MySqlParser.KW_DELETE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5842; + this.state = 5849; this.match(MySqlParser.KW_DROP); - this.state = 5844; + this.state = 5851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 582) { { - this.state = 5843; + this.state = 5850; this.match(MySqlParser.KW_ROLE); } } @@ -31863,90 +31882,90 @@ export class MySqlParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5846; + this.state = 5853; this.match(MySqlParser.KW_EVENT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5847; + this.state = 5854; this.match(MySqlParser.KW_EXECUTE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5848; + this.state = 5855; this.match(MySqlParser.KW_FILE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5849; + this.state = 5856; this.match(MySqlParser.KW_GRANT); - this.state = 5850; + this.state = 5857; this.match(MySqlParser.KW_OPTION); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5851; + this.state = 5858; this.match(MySqlParser.KW_INDEX); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5852; + this.state = 5859; this.match(MySqlParser.KW_INSERT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5853; + this.state = 5860; this.match(MySqlParser.KW_LOCK); - this.state = 5854; + this.state = 5861; this.match(MySqlParser.KW_TABLES); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5855; + this.state = 5862; this.match(MySqlParser.KW_PROCESS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5856; + this.state = 5863; this.match(MySqlParser.KW_PROXY); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5857; + this.state = 5864; this.match(MySqlParser.KW_REFERENCES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5858; + this.state = 5865; this.match(MySqlParser.KW_RELOAD); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5859; + this.state = 5866; this.match(MySqlParser.KW_REPLICATION); - this.state = 5860; + this.state = 5867; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -31960,16 +31979,16 @@ export class MySqlParser extends antlr.Parser { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5861; + this.state = 5868; this.match(MySqlParser.KW_SELECT); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5862; + this.state = 5869; this.match(MySqlParser.KW_SHOW); - this.state = 5863; + this.state = 5870; _la = this.tokenStream.LA(1); if(!(_la === 40 || _la === 684)) { this.errorHandler.recoverInline(this); @@ -31983,339 +32002,339 @@ export class MySqlParser extends antlr.Parser { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5864; + this.state = 5871; this.match(MySqlParser.KW_SHUTDOWN); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 5865; + this.state = 5872; this.match(MySqlParser.KW_SUPER); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 5866; + this.state = 5873; this.match(MySqlParser.KW_TRIGGER); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 5867; + this.state = 5874; this.match(MySqlParser.KW_UPDATE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 5868; + this.state = 5875; this.match(MySqlParser.KW_USAGE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 5869; + this.state = 5876; this.match(MySqlParser.KW_APPLICATION_PASSWORD_ADMIN); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 5870; + this.state = 5877; this.match(MySqlParser.KW_AUDIT_ABORT_EXEMPT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 5871; + this.state = 5878; this.match(MySqlParser.KW_AUDIT_ADMIN); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 5872; + this.state = 5879; this.match(MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 5873; + this.state = 5880; this.match(MySqlParser.KW_BACKUP_ADMIN); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 5874; + this.state = 5881; this.match(MySqlParser.KW_BINLOG_ADMIN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 5875; + this.state = 5882; this.match(MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 5876; + this.state = 5883; this.match(MySqlParser.KW_CLONE_ADMIN); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 5877; + this.state = 5884; this.match(MySqlParser.KW_CONNECTION_ADMIN); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 5878; + this.state = 5885; this.match(MySqlParser.KW_ENCRYPTION_KEY_ADMIN); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 5879; + this.state = 5886; this.match(MySqlParser.KW_FIREWALL_ADMIN); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 5880; + this.state = 5887; this.match(MySqlParser.KW_FIREWALL_EXEMPT); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 5881; + this.state = 5888; this.match(MySqlParser.KW_FIREWALL_USER); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 5882; + this.state = 5889; this.match(MySqlParser.KW_FLUSH_OPTIMIZER_COSTS); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 5883; + this.state = 5890; this.match(MySqlParser.KW_FLUSH_STATUS); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 5884; + this.state = 5891; this.match(MySqlParser.KW_FLUSH_TABLES); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 5885; + this.state = 5892; this.match(MySqlParser.KW_FLUSH_USER_RESOURCES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 5886; + this.state = 5893; this.match(MySqlParser.KW_GROUP_REPLICATION_ADMIN); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 5887; + this.state = 5894; this.match(MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 5888; + this.state = 5895; this.match(MySqlParser.KW_INNODB_REDO_LOG_ENABLE); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 5889; + this.state = 5896; this.match(MySqlParser.KW_NDB_STORED_USER); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 5890; + this.state = 5897; this.match(MySqlParser.KW_PASSWORDLESS_USER_ADMIN); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 5891; + this.state = 5898; this.match(MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 5892; + this.state = 5899; this.match(MySqlParser.KW_REPLICATION_APPLIER); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 5893; + this.state = 5900; this.match(MySqlParser.KW_REPLICATION_SLAVE_ADMIN); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 5894; + this.state = 5901; this.match(MySqlParser.KW_RESOURCE_GROUP_ADMIN); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 5895; + this.state = 5902; this.match(MySqlParser.KW_RESOURCE_GROUP_USER); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 5896; + this.state = 5903; this.match(MySqlParser.KW_ROLE_ADMIN); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 5897; + this.state = 5904; this.match(MySqlParser.KW_SERVICE_CONNECTION_ADMIN); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 5898; + this.state = 5905; this.match(MySqlParser.KW_SESSION_VARIABLES_ADMIN); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 5899; + this.state = 5906; this.match(MySqlParser.KW_SET_USER_ID); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 5900; + this.state = 5907; this.match(MySqlParser.KW_SKIP_QUERY_REWRITE); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 5901; + this.state = 5908; this.match(MySqlParser.KW_SHOW_ROUTINE); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 5902; + this.state = 5909; this.match(MySqlParser.KW_SYSTEM_USER); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 5903; + this.state = 5910; this.match(MySqlParser.KW_SYSTEM_VARIABLES_ADMIN); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 5904; + this.state = 5911; this.match(MySqlParser.KW_TABLE_ENCRYPTION_ADMIN); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 5905; + this.state = 5912; this.match(MySqlParser.KW_TP_CONNECTION_ADMIN); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 5906; + this.state = 5913; this.match(MySqlParser.KW_VERSION_TOKEN_ADMIN); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 5907; + this.state = 5914; this.match(MySqlParser.KW_XA_RECOVER_ADMIN); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 5908; + this.state = 5915; this.match(MySqlParser.KW_LOAD); - this.state = 5909; + this.state = 5916; this.match(MySqlParser.KW_FROM); - this.state = 5910; + this.state = 5917; this.match(MySqlParser.KW_S3); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 5911; + this.state = 5918; this.match(MySqlParser.KW_SELECT); - this.state = 5912; + this.state = 5919; this.match(MySqlParser.KW_INTO); - this.state = 5913; + this.state = 5920; this.match(MySqlParser.KW_S3); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 5914; + this.state = 5921; this.match(MySqlParser.KW_INVOKE); - this.state = 5915; + this.state = 5922; this.match(MySqlParser.KW_LAMBDA); } break; @@ -32339,14 +32358,14 @@ export class MySqlParser extends antlr.Parser { let localContext = new PrivilegeLevelContext(this.context, this.state); this.enterRule(localContext, 518, MySqlParser.RULE_privilegeLevel); try { - this.state = 5934; + this.state = 5941; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { case 1: localContext = new CurrentSchemaPriviLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5918; + this.state = 5925; this.match(MySqlParser.STAR); } break; @@ -32354,11 +32373,11 @@ export class MySqlParser extends antlr.Parser { localContext = new GlobalPrivLevelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5919; + this.state = 5926; this.match(MySqlParser.STAR); - this.state = 5920; + this.state = 5927; this.match(MySqlParser.DOT); - this.state = 5921; + this.state = 5928; this.match(MySqlParser.STAR); } break; @@ -32366,11 +32385,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteSchemaPrivLevelContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5922; + this.state = 5929; this.uid(); - this.state = 5923; + this.state = 5930; this.match(MySqlParser.DOT); - this.state = 5924; + this.state = 5931; this.match(MySqlParser.STAR); } break; @@ -32378,11 +32397,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteFullTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5926; + this.state = 5933; this.uid(); - this.state = 5927; + this.state = 5934; this.match(MySqlParser.DOT); - this.state = 5928; + this.state = 5935; this.uid(); } break; @@ -32390,9 +32409,9 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteFullTablePrivLevel2Context(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5930; + this.state = 5937; this.uid(); - this.state = 5931; + this.state = 5938; this.dottedId(); } break; @@ -32400,7 +32419,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5933; + this.state = 5940; this.uid(); } break; @@ -32426,11 +32445,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5936; + this.state = 5943; localContext._fromFirst = this.userName(); - this.state = 5937; + this.state = 5944; this.match(MySqlParser.KW_TO); - this.state = 5938; + this.state = 5945; localContext._toFirst = this.userName(); } } @@ -32453,67 +32472,67 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 522, MySqlParser.RULE_analyzeTable); let _la: number; try { - this.state = 5988; + this.state = 5995; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 855, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 856, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5940; + this.state = 5947; this.match(MySqlParser.KW_ANALYZE); - this.state = 5942; + this.state = 5949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 5941; + this.state = 5948; this.tableActionOption(); } } - this.state = 5944; + this.state = 5951; this.match(MySqlParser.KW_TABLE); - this.state = 5945; + this.state = 5952; this.tableNames(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5946; + this.state = 5953; this.match(MySqlParser.KW_ANALYZE); - this.state = 5948; + this.state = 5955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 5947; + this.state = 5954; this.tableActionOption(); } } - this.state = 5950; + this.state = 5957; this.match(MySqlParser.KW_TABLE); - this.state = 5951; + this.state = 5958; this.tableName(); - this.state = 5952; + this.state = 5959; this.match(MySqlParser.KW_UPDATE); - this.state = 5953; - this.match(MySqlParser.KW_HISTOGRAM); - this.state = 5954; - this.match(MySqlParser.KW_ON); - this.state = 5955; - this.columnNames(); this.state = 5960; + this.match(MySqlParser.KW_HISTOGRAM); + this.state = 5961; + this.match(MySqlParser.KW_ON); + this.state = 5962; + this.columnNames(); + this.state = 5967; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 851, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { case 1: { - this.state = 5956; + this.state = 5963; this.match(MySqlParser.KW_WITH); - this.state = 5957; + this.state = 5964; this.decimalLiteral(); - this.state = 5958; + this.state = 5965; this.match(MySqlParser.KW_BUCKETS); } break; @@ -32523,40 +32542,40 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5962; + this.state = 5969; this.match(MySqlParser.KW_ANALYZE); - this.state = 5964; + this.state = 5971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 5963; + this.state = 5970; this.tableActionOption(); } } - this.state = 5966; + this.state = 5973; this.match(MySqlParser.KW_TABLE); - this.state = 5967; + this.state = 5974; this.tableName(); - this.state = 5968; - this.match(MySqlParser.KW_UPDATE); - this.state = 5969; - this.match(MySqlParser.KW_HISTOGRAM); - this.state = 5970; - this.match(MySqlParser.KW_ON); - this.state = 5971; - this.columnName(); this.state = 5975; + this.match(MySqlParser.KW_UPDATE); + this.state = 5976; + this.match(MySqlParser.KW_HISTOGRAM); + this.state = 5977; + this.match(MySqlParser.KW_ON); + this.state = 5978; + this.columnName(); + this.state = 5982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 5972; + this.state = 5979; this.match(MySqlParser.KW_USING); - this.state = 5973; + this.state = 5980; this.match(MySqlParser.KW_DATA); - this.state = 5974; + this.state = 5981; this.match(MySqlParser.STRING_LITERAL); } } @@ -32566,29 +32585,29 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5977; + this.state = 5984; this.match(MySqlParser.KW_ANALYZE); - this.state = 5979; + this.state = 5986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 5978; + this.state = 5985; this.tableActionOption(); } } - this.state = 5981; + this.state = 5988; this.match(MySqlParser.KW_TABLE); - this.state = 5982; + this.state = 5989; this.tableName(); - this.state = 5983; + this.state = 5990; this.match(MySqlParser.KW_DROP); - this.state = 5984; + this.state = 5991; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 5985; + this.state = 5992; this.match(MySqlParser.KW_ON); - this.state = 5986; + this.state = 5993; this.columnNames(); } break; @@ -32615,23 +32634,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5990; + this.state = 5997; this.match(MySqlParser.KW_CHECK); - this.state = 5991; + this.state = 5998; this.match(MySqlParser.KW_TABLE); - this.state = 5992; + this.state = 5999; this.tableNames(); - this.state = 5996; + this.state = 6003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 65 || _la === 327 || _la === 392 || _la === 396 || _la === 484 || _la === 549) { { { - this.state = 5993; + this.state = 6000; this.checkTableOption(); } } - this.state = 5998; + this.state = 6005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32658,18 +32677,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5999; + this.state = 6006; this.match(MySqlParser.KW_CHECKSUM); - this.state = 6000; + this.state = 6007; this.match(MySqlParser.KW_TABLE); - this.state = 6001; + this.state = 6008; this.tableNames(); - this.state = 6003; + this.state = 6010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392 || _la === 549) { { - this.state = 6002; + this.state = 6009; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 549)) { @@ -32705,19 +32724,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6005; + this.state = 6012; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 6007; + this.state = 6014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6006; + this.state = 6013; this.tableActionOption(); } } - this.state = 6009; + this.state = 6016; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -32726,7 +32745,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6010; + this.state = 6017; this.tableNames(); } } @@ -32751,48 +32770,48 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6012; + this.state = 6019; this.match(MySqlParser.KW_REPAIR); - this.state = 6014; + this.state = 6021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6013; + this.state = 6020; this.tableActionOption(); } } - this.state = 6016; + this.state = 6023; this.match(MySqlParser.KW_TABLE); - this.state = 6017; + this.state = 6024; this.tableNames(); - this.state = 6019; + this.state = 6026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 6018; + this.state = 6025; this.match(MySqlParser.KW_QUICK); } } - this.state = 6022; + this.state = 6029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6021; + this.state = 6028; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6025; + this.state = 6032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 679) { { - this.state = 6024; + this.state = 6031; this.match(MySqlParser.KW_USE_FRM); } } @@ -32820,7 +32839,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6027; + this.state = 6034; _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -32849,50 +32868,50 @@ export class MySqlParser extends antlr.Parser { let localContext = new CheckTableOptionContext(this.context, this.state); this.enterRule(localContext, 534, MySqlParser.RULE_checkTableOption); try { - this.state = 6036; + this.state = 6043; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 6029; + this.state = 6036; this.match(MySqlParser.KW_FOR); - this.state = 6030; + this.state = 6037; this.match(MySqlParser.KW_UPGRADE); } break; case MySqlParser.KW_QUICK: this.enterOuterAlt(localContext, 2); { - this.state = 6031; + this.state = 6038; this.match(MySqlParser.KW_QUICK); } break; case MySqlParser.KW_FAST: this.enterOuterAlt(localContext, 3); { - this.state = 6032; + this.state = 6039; this.match(MySqlParser.KW_FAST); } break; case MySqlParser.KW_MEDIUM: this.enterOuterAlt(localContext, 4); { - this.state = 6033; + this.state = 6040; this.match(MySqlParser.KW_MEDIUM); } break; case MySqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 5); { - this.state = 6034; + this.state = 6041; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_CHANGED: this.enterOuterAlt(localContext, 6); { - this.state = 6035; + this.state = 6042; this.match(MySqlParser.KW_CHANGED); } break; @@ -32921,35 +32940,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6038; + this.state = 6045; this.match(MySqlParser.KW_CREATE); - this.state = 6040; + this.state = 6047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 6039; + this.state = 6046; this.match(MySqlParser.KW_AGGREGATE); } } - this.state = 6042; + this.state = 6049; this.match(MySqlParser.KW_FUNCTION); - this.state = 6044; + this.state = 6051; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 865, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { case 1: { - this.state = 6043; + this.state = 6050; this.ifNotExists(); } break; } - this.state = 6046; + this.state = 6053; this.functionNameCreate(); - this.state = 6047; + this.state = 6054; this.match(MySqlParser.KW_RETURNS); - this.state = 6048; + this.state = 6055; localContext._returnType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 261) !== 0) || _la === 649)) { @@ -32959,9 +32978,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6049; + this.state = 6056; this.match(MySqlParser.KW_SONAME); - this.state = 6050; + this.state = 6057; this.match(MySqlParser.STRING_LITERAL); } } @@ -32986,50 +33005,50 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6052; - this.match(MySqlParser.KW_INSTALL); - this.state = 6053; - this.match(MySqlParser.KW_COMPONENT); - this.state = 6054; - localContext._component_name = this.uid(); this.state = 6059; + this.match(MySqlParser.KW_INSTALL); + this.state = 6060; + this.match(MySqlParser.KW_COMPONENT); + this.state = 6061; + localContext._component_name = this.uid(); + this.state = 6066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6055; + this.state = 6062; this.match(MySqlParser.COMMA); - this.state = 6056; + this.state = 6063; localContext._component_name = this.uid(); } } - this.state = 6061; + this.state = 6068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6071; + this.state = 6078; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 868, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 869, this.context) ) { case 1: { - this.state = 6062; + this.state = 6069; this.match(MySqlParser.KW_SET); - this.state = 6063; + this.state = 6070; this.variableExpr(); - this.state = 6068; + this.state = 6075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6064; + this.state = 6071; this.match(MySqlParser.COMMA); - this.state = 6065; + this.state = 6072; this.variableExpr(); } } - this.state = 6070; + this.state = 6077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33059,7 +33078,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6073; + this.state = 6080; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 531 || _la === 893 || _la === 894)) { this.errorHandler.recoverInline(this); @@ -33068,11 +33087,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6074; + this.state = 6081; localContext._system_var_name = this.fullId(); - this.state = 6075; + this.state = 6082; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6076; + this.state = 6083; this.expression(0); } } @@ -33097,25 +33116,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6078; - this.match(MySqlParser.KW_UNINSTALL); - this.state = 6079; - this.match(MySqlParser.KW_COMPONENT); - this.state = 6080; - localContext._component_name = this.uid(); this.state = 6085; + this.match(MySqlParser.KW_UNINSTALL); + this.state = 6086; + this.match(MySqlParser.KW_COMPONENT); + this.state = 6087; + localContext._component_name = this.uid(); + this.state = 6092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6081; + this.state = 6088; this.match(MySqlParser.COMMA); - this.state = 6082; + this.state = 6089; localContext._component_name = this.uid(); } } - this.state = 6087; + this.state = 6094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33141,15 +33160,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6088; + this.state = 6095; this.match(MySqlParser.KW_INSTALL); - this.state = 6089; + this.state = 6096; this.match(MySqlParser.KW_PLUGIN); - this.state = 6090; + this.state = 6097; localContext._pluginName = this.uid(); - this.state = 6091; + this.state = 6098; this.match(MySqlParser.KW_SONAME); - this.state = 6092; + this.state = 6099; this.match(MySqlParser.STRING_LITERAL); } } @@ -33173,11 +33192,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6094; + this.state = 6101; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6095; + this.state = 6102; this.match(MySqlParser.KW_PLUGIN); - this.state = 6096; + this.state = 6103; localContext._pluginName = this.uid(); } } @@ -33200,93 +33219,93 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 548, MySqlParser.RULE_cloneStatement); let _la: number; try { - this.state = 6128; + this.state = 6135; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 875, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 876, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6098; + this.state = 6105; this.match(MySqlParser.KW_CLONE); - this.state = 6099; + this.state = 6106; this.match(MySqlParser.KW_LOCAL); - this.state = 6100; + this.state = 6107; this.match(MySqlParser.KW_DATA); - this.state = 6101; + this.state = 6108; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6103; + this.state = 6110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6102; + this.state = 6109; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6105; + this.state = 6112; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6106; + this.state = 6113; this.match(MySqlParser.KW_CLONE); - this.state = 6107; + this.state = 6114; this.match(MySqlParser.KW_INSTANCE); - this.state = 6108; + this.state = 6115; this.match(MySqlParser.KW_FROM); - this.state = 6109; + this.state = 6116; this.userHostPort(); - this.state = 6110; + this.state = 6117; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 6111; + this.state = 6118; this.match(MySqlParser.KW_BY); - this.state = 6112; - this.match(MySqlParser.STRING_LITERAL); this.state = 6119; + this.match(MySqlParser.STRING_LITERAL); + this.state = 6126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 6113; + this.state = 6120; this.match(MySqlParser.KW_DATA); - this.state = 6114; + this.state = 6121; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6116; + this.state = 6123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6115; + this.state = 6122; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6118; + this.state = 6125; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6126; + this.state = 6133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 6121; + this.state = 6128; this.match(MySqlParser.KW_REQUIRE); - this.state = 6123; + this.state = 6130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 6122; + this.state = 6129; this.match(MySqlParser.KW_NO); } } - this.state = 6125; + this.state = 6132; this.match(MySqlParser.KW_SSL); } } @@ -33314,18 +33333,18 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 550, MySqlParser.RULE_setStatement); let _la: number; try { - this.state = 6182; + this.state = 6189; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 883, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 884, this.context) ) { case 1: localContext = new SetVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6130; + this.state = 6137; this.match(MySqlParser.KW_SET); - this.state = 6131; + this.state = 6138; this.variableClause(); - this.state = 6132; + this.state = 6139; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -33334,33 +33353,33 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6135; + this.state = 6142; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 876, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 877, this.context) ) { case 1: { - this.state = 6133; + this.state = 6140; this.expression(0); } break; case 2: { - this.state = 6134; + this.state = 6141; this.match(MySqlParser.KW_ON); } break; } - this.state = 6146; + this.state = 6153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6137; + this.state = 6144; this.match(MySqlParser.COMMA); - this.state = 6138; + this.state = 6145; this.variableClause(); - this.state = 6139; + this.state = 6146; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -33369,25 +33388,25 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6142; + this.state = 6149; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 877, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 878, this.context) ) { case 1: { - this.state = 6140; + this.state = 6147; this.expression(0); } break; case 2: { - this.state = 6141; + this.state = 6148; this.match(MySqlParser.KW_ON); } break; } } } - this.state = 6148; + this.state = 6155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33397,11 +33416,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SetCharsetContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6149; + this.state = 6156; this.match(MySqlParser.KW_SET); - this.state = 6150; + this.state = 6157; this.charSet(); - this.state = 6153; + this.state = 6160; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -33449,13 +33468,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6151; + this.state = 6158; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 6152; + this.state = 6159; this.match(MySqlParser.KW_DEFAULT); } break; @@ -33468,11 +33487,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SetNamesContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6155; + this.state = 6162; this.match(MySqlParser.KW_SET); - this.state = 6156; - this.match(MySqlParser.KW_NAMES); this.state = 6163; + this.match(MySqlParser.KW_NAMES); + this.state = 6170; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -33520,16 +33539,16 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6157; + this.state = 6164; this.charsetName(); - this.state = 6160; + this.state = 6167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 6158; + this.state = 6165; this.match(MySqlParser.KW_COLLATE); - this.state = 6159; + this.state = 6166; this.collationName(); } } @@ -33538,7 +33557,7 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_DEFAULT: { - this.state = 6162; + this.state = 6169; this.match(MySqlParser.KW_DEFAULT); } break; @@ -33551,7 +33570,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SetPasswordContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6165; + this.state = 6172; this.setPasswordStatement(); } break; @@ -33559,7 +33578,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SetTransactionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6166; + this.state = 6173; this.setTransactionStatement(); } break; @@ -33567,7 +33586,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SetAutocommitContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6167; + this.state = 6174; this.setAutocommitStatement(); } break; @@ -33575,11 +33594,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SetNewValueInsideTriggerContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6168; + this.state = 6175; this.match(MySqlParser.KW_SET); - this.state = 6169; + this.state = 6176; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6170; + this.state = 6177; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -33588,19 +33607,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6171; + this.state = 6178; this.expression(0); - this.state = 6179; + this.state = 6186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6172; + this.state = 6179; this.match(MySqlParser.COMMA); - this.state = 6173; + this.state = 6180; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6174; + this.state = 6181; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -33609,11 +33628,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6175; + this.state = 6182; this.expression(0); } } - this.state = 6181; + this.state = 6188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33640,16 +33659,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 552, MySqlParser.RULE_showStatement); let _la: number; try { - this.state = 6368; + this.state = 6375; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 912, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 913, this.context) ) { case 1: localContext = new ShowMasterLogsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6184; + this.state = 6191; this.match(MySqlParser.KW_SHOW); - this.state = 6185; + this.state = 6192; (localContext as ShowMasterLogsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -33659,7 +33678,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6186; + this.state = 6193; this.match(MySqlParser.KW_LOGS); } break; @@ -33667,9 +33686,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowLogEventsContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6187; + this.state = 6194; this.match(MySqlParser.KW_SHOW); - this.state = 6188; + this.state = 6195; (localContext as ShowLogEventsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 559)) { @@ -33679,62 +33698,62 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6189; + this.state = 6196; this.match(MySqlParser.KW_EVENTS); - this.state = 6192; + this.state = 6199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 6190; + this.state = 6197; this.match(MySqlParser.KW_IN); - this.state = 6191; + this.state = 6198; (localContext as ShowLogEventsContext)._filename = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6196; + this.state = 6203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 6194; + this.state = 6201; this.match(MySqlParser.KW_FROM); - this.state = 6195; + this.state = 6202; (localContext as ShowLogEventsContext)._fromPosition = this.decimalLiteral(); } } - this.state = 6205; + this.state = 6212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6198; + this.state = 6205; this.match(MySqlParser.KW_LIMIT); - this.state = 6202; + this.state = 6209; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 887, this.context) ) { case 1: { - this.state = 6199; + this.state = 6206; (localContext as ShowLogEventsContext)._offset = this.decimalLiteral(); - this.state = 6200; + this.state = 6207; this.match(MySqlParser.COMMA); } break; } - this.state = 6204; + this.state = 6211; (localContext as ShowLogEventsContext)._rowCount = this.decimalLiteral(); } } - this.state = 6208; + this.state = 6215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6207; + this.state = 6214; this.channelOption(); } } @@ -33745,16 +33764,16 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowObjectFilterContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6210; + this.state = 6217; this.match(MySqlParser.KW_SHOW); - this.state = 6211; + this.state = 6218; this.showCommonEntity(); - this.state = 6213; + this.state = 6220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6212; + this.state = 6219; this.showFilter(); } } @@ -33765,29 +33784,29 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6215; + this.state = 6222; this.match(MySqlParser.KW_SHOW); - this.state = 6217; + this.state = 6224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6216; + this.state = 6223; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6220; + this.state = 6227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6219; + this.state = 6226; this.match(MySqlParser.KW_FULL); } } - this.state = 6222; + this.state = 6229; (localContext as ShowColumnsContext)._columnsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -33797,7 +33816,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6223; + this.state = 6230; (localContext as ShowColumnsContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -33807,14 +33826,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6224; + this.state = 6231; this.tableName(); - this.state = 6227; + this.state = 6234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6225; + this.state = 6232; (localContext as ShowColumnsContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -33824,17 +33843,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6226; + this.state = 6233; this.databaseName(); } } - this.state = 6230; + this.state = 6237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6229; + this.state = 6236; this.showFilter(); } } @@ -33845,11 +33864,11 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateDbContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6232; + this.state = 6239; this.match(MySqlParser.KW_SHOW); - this.state = 6233; + this.state = 6240; this.match(MySqlParser.KW_CREATE); - this.state = 6234; + this.state = 6241; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { this.errorHandler.recoverInline(this); @@ -33858,29 +33877,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6236; + this.state = 6243; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 895, this.context) ) { case 1: { - this.state = 6235; + this.state = 6242; this.ifNotExists(); } break; } - this.state = 6238; - this.databaseNameCreate(); + this.state = 6245; + this.databaseName(); } break; case 6: localContext = new ShowCreateFullIdObjectContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6239; + this.state = 6246; this.match(MySqlParser.KW_SHOW); - this.state = 6240; + this.state = 6247; this.match(MySqlParser.KW_CREATE); - this.state = 6241; + this.state = 6248; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 178 || _la === 385)) { this.errorHandler.recoverInline(this); @@ -33889,7 +33908,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6242; + this.state = 6249; this.fullId(); } break; @@ -33897,55 +33916,55 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6243; + this.state = 6250; this.match(MySqlParser.KW_SHOW); - this.state = 6244; + this.state = 6251; this.match(MySqlParser.KW_CREATE); - this.state = 6245; + this.state = 6252; this.match(MySqlParser.KW_FUNCTION); - this.state = 6246; - this.functionNameCreate(); + this.state = 6253; + this.functionName(); } break; case 8: localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6247; + this.state = 6254; this.match(MySqlParser.KW_SHOW); - this.state = 6248; + this.state = 6255; this.match(MySqlParser.KW_CREATE); - this.state = 6249; + this.state = 6256; this.match(MySqlParser.KW_VIEW); - this.state = 6250; - this.viewNameCreate(); + this.state = 6257; + this.viewName(); } break; case 9: localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 6251; + this.state = 6258; this.match(MySqlParser.KW_SHOW); - this.state = 6252; + this.state = 6259; this.match(MySqlParser.KW_CREATE); - this.state = 6253; + this.state = 6260; this.match(MySqlParser.KW_TABLE); - this.state = 6254; - this.tableNameCreate(); + this.state = 6261; + this.tableName(); } break; case 10: localContext = new ShowCreateUserContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 6255; + this.state = 6262; this.match(MySqlParser.KW_SHOW); - this.state = 6256; + this.state = 6263; this.match(MySqlParser.KW_CREATE); - this.state = 6257; + this.state = 6264; this.match(MySqlParser.KW_USER); - this.state = 6258; + this.state = 6265; this.userName(); } break; @@ -33953,13 +33972,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowEngineContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 6259; + this.state = 6266; this.match(MySqlParser.KW_SHOW); - this.state = 6260; + this.state = 6267; this.match(MySqlParser.KW_ENGINE); - this.state = 6261; + this.state = 6268; this.engineName(); - this.state = 6262; + this.state = 6269; (localContext as ShowEngineContext)._engineOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 493 || _la === 645)) { @@ -33975,9 +33994,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowGlobalInfoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 6264; + this.state = 6271; this.match(MySqlParser.KW_SHOW); - this.state = 6265; + this.state = 6272; this.showGlobalInfoClause(); } break; @@ -33985,9 +34004,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowErrorsContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 6266; + this.state = 6273; this.match(MySqlParser.KW_SHOW); - this.state = 6267; + this.state = 6274; (localContext as ShowErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -33997,26 +34016,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6275; + this.state = 6282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6268; + this.state = 6275; this.match(MySqlParser.KW_LIMIT); - this.state = 6272; + this.state = 6279; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 895, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 896, this.context) ) { case 1: { - this.state = 6269; + this.state = 6276; (localContext as ShowErrorsContext)._offset = this.decimalLiteral(); - this.state = 6270; + this.state = 6277; this.match(MySqlParser.COMMA); } break; } - this.state = 6274; + this.state = 6281; (localContext as ShowErrorsContext)._rowCount = this.decimalLiteral(); } } @@ -34027,17 +34046,17 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCountErrorsContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 6277; + this.state = 6284; this.match(MySqlParser.KW_SHOW); - this.state = 6278; + this.state = 6285; this.match(MySqlParser.KW_COUNT); - this.state = 6279; + this.state = 6286; this.match(MySqlParser.LR_BRACKET); - this.state = 6280; + this.state = 6287; this.match(MySqlParser.STAR); - this.state = 6281; + this.state = 6288; this.match(MySqlParser.RR_BRACKET); - this.state = 6282; + this.state = 6289; (localContext as ShowCountErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34053,16 +34072,16 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowSchemaFilterContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 6283; + this.state = 6290; this.match(MySqlParser.KW_SHOW); - this.state = 6284; + this.state = 6291; this.showSchemaEntity(); - this.state = 6287; + this.state = 6294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6285; + this.state = 6292; (localContext as ShowSchemaFilterContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34072,17 +34091,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6286; + this.state = 6293; this.databaseName(); } } - this.state = 6290; + this.state = 6297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6289; + this.state = 6296; this.showFilter(); } } @@ -34093,13 +34112,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowPercedureCodeContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 6292; + this.state = 6299; this.match(MySqlParser.KW_SHOW); - this.state = 6293; + this.state = 6300; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6294; + this.state = 6301; this.match(MySqlParser.KW_CODE); - this.state = 6295; + this.state = 6302; (localContext as ShowPercedureCodeContext)._proc_name = this.fullId(); } break; @@ -34107,13 +34126,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowFunctionCodeContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 6296; + this.state = 6303; this.match(MySqlParser.KW_SHOW); - this.state = 6297; + this.state = 6304; this.match(MySqlParser.KW_FUNCTION); - this.state = 6298; + this.state = 6305; this.match(MySqlParser.KW_CODE); - this.state = 6299; + this.state = 6306; this.functionName(); } break; @@ -34121,27 +34140,27 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 6300; + this.state = 6307; this.match(MySqlParser.KW_SHOW); - this.state = 6301; - this.match(MySqlParser.KW_GRANTS); this.state = 6308; + this.match(MySqlParser.KW_GRANTS); + this.state = 6315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6302; + this.state = 6309; this.match(MySqlParser.KW_FOR); - this.state = 6303; + this.state = 6310; this.userOrRoleName(); - this.state = 6306; + this.state = 6313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6304; + this.state = 6311; this.match(MySqlParser.KW_USING); - this.state = 6305; + this.state = 6312; this.userOrRoleNames(); } } @@ -34155,19 +34174,19 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowIndexesContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 6310; + this.state = 6317; this.match(MySqlParser.KW_SHOW); - this.state = 6312; + this.state = 6319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6311; + this.state = 6318; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6314; + this.state = 6321; (localContext as ShowIndexesContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 93 || _la === 426)) { @@ -34177,7 +34196,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6315; + this.state = 6322; (localContext as ShowIndexesContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34187,14 +34206,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6316; + this.state = 6323; this.tableName(); - this.state = 6319; + this.state = 6326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6317; + this.state = 6324; (localContext as ShowIndexesContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34204,19 +34223,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6318; + this.state = 6325; this.databaseName(); } } - this.state = 6323; + this.state = 6330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 6321; + this.state = 6328; this.match(MySqlParser.KW_WHERE); - this.state = 6322; + this.state = 6329; this.expression(0); } } @@ -34227,18 +34246,18 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowOpenTablesContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 6325; + this.state = 6332; this.match(MySqlParser.KW_SHOW); - this.state = 6326; + this.state = 6333; this.match(MySqlParser.KW_OPEN); - this.state = 6327; + this.state = 6334; this.match(MySqlParser.KW_TABLES); - this.state = 6330; + this.state = 6337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6328; + this.state = 6335; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -34247,17 +34266,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6329; + this.state = 6336; this.databaseName(); } } - this.state = 6333; + this.state = 6340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6332; + this.state = 6339; this.showFilter(); } } @@ -34268,67 +34287,67 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowProfileContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 6335; + this.state = 6342; this.match(MySqlParser.KW_SHOW); - this.state = 6336; + this.state = 6343; this.match(MySqlParser.KW_PROFILE); - this.state = 6345; + this.state = 6352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 320 || _la === 355 || _la === 358 || _la === 439 || _la === 521 || _la === 605 || _la === 655 || _la === 802) { { - this.state = 6337; + this.state = 6344; this.showProfileType(); - this.state = 6342; + this.state = 6349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6338; + this.state = 6345; this.match(MySqlParser.COMMA); - this.state = 6339; + this.state = 6346; this.showProfileType(); } } - this.state = 6344; + this.state = 6351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 6350; + this.state = 6357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6347; + this.state = 6354; this.match(MySqlParser.KW_FOR); - this.state = 6348; + this.state = 6355; this.match(MySqlParser.KW_QUERY); - this.state = 6349; + this.state = 6356; (localContext as ShowProfileContext)._queryCount = this.decimalLiteral(); } } - this.state = 6358; + this.state = 6365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6352; + this.state = 6359; this.match(MySqlParser.KW_LIMIT); - this.state = 6353; + this.state = 6360; (localContext as ShowProfileContext)._rowCount = this.decimalLiteral(); - this.state = 6356; + this.state = 6363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 509) { { - this.state = 6354; + this.state = 6361; this.match(MySqlParser.KW_OFFSET); - this.state = 6355; + this.state = 6362; (localContext as ShowProfileContext)._offset = this.decimalLiteral(); } } @@ -34342,9 +34361,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowSlaveStatusContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 6360; + this.state = 6367; this.match(MySqlParser.KW_SHOW); - this.state = 6361; + this.state = 6368; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -34353,14 +34372,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6362; + this.state = 6369; this.match(MySqlParser.KW_STATUS); - this.state = 6364; + this.state = 6371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6363; + this.state = 6370; this.channelOption(); } } @@ -34371,9 +34390,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowReplicasContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 6366; + this.state = 6373; this.match(MySqlParser.KW_SHOW); - this.state = 6367; + this.state = 6374; this.match(MySqlParser.KW_REPLICAS); } break; @@ -34398,20 +34417,20 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 554, MySqlParser.RULE_variableClause); let _la: number; try { - this.state = 6380; + this.state = 6387; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 1); { - this.state = 6370; + this.state = 6377; this.match(MySqlParser.LOCAL_ID); } break; case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 6371; + this.state = 6378; this.match(MySqlParser.GLOBAL_ID); } break; @@ -34968,24 +34987,24 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 6377; + this.state = 6384; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 915, this.context) ) { case 1: { - this.state = 6374; + this.state = 6381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 870) { { - this.state = 6372; + this.state = 6379; this.match(MySqlParser.AT_SIGN); - this.state = 6373; + this.state = 6380; this.match(MySqlParser.AT_SIGN); } } - this.state = 6376; + this.state = 6383; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 450 || _la === 531 || _la === 532 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -34997,7 +35016,7 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 6379; + this.state = 6386; localContext._target = this.uid(); } break; @@ -35024,61 +35043,61 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 556, MySqlParser.RULE_showCommonEntity); let _la: number; try { - this.state = 6396; + this.state = 6403; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 6382; + this.state = 6389; this.match(MySqlParser.KW_CHARACTER); - this.state = 6383; + this.state = 6390; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 6384; + this.state = 6391; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 3); { - this.state = 6385; + this.state = 6392; this.match(MySqlParser.KW_COLLATION); } break; case MySqlParser.KW_DATABASES: this.enterOuterAlt(localContext, 4); { - this.state = 6386; + this.state = 6393; this.match(MySqlParser.KW_DATABASES); } break; case MySqlParser.KW_SCHEMAS: this.enterOuterAlt(localContext, 5); { - this.state = 6387; + this.state = 6394; this.match(MySqlParser.KW_SCHEMAS); } break; case MySqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 6); { - this.state = 6388; + this.state = 6395; this.match(MySqlParser.KW_FUNCTION); - this.state = 6389; + this.state = 6396; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 7); { - this.state = 6390; + this.state = 6397; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6391; + this.state = 6398; this.match(MySqlParser.KW_STATUS); } break; @@ -35088,12 +35107,12 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_VARIABLES: this.enterOuterAlt(localContext, 8); { - this.state = 6393; + this.state = 6400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 6392; + this.state = 6399; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -35105,7 +35124,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6395; + this.state = 6402; _la = this.tokenStream.LA(1); if(!(_la === 645 || _la === 683)) { this.errorHandler.recoverInline(this); @@ -35138,24 +35157,24 @@ export class MySqlParser extends antlr.Parser { let localContext = new ShowFilterContext(this.context, this.state); this.enterRule(localContext, 558, MySqlParser.RULE_showFilter); try { - this.state = 6402; + this.state = 6409; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: this.enterOuterAlt(localContext, 1); { - this.state = 6398; + this.state = 6405; this.match(MySqlParser.KW_LIKE); - this.state = 6399; + this.state = 6406; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_WHERE: this.enterOuterAlt(localContext, 2); { - this.state = 6400; + this.state = 6407; this.match(MySqlParser.KW_WHERE); - this.state = 6401; + this.state = 6408; this.expression(0); } break; @@ -35182,47 +35201,47 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 560, MySqlParser.RULE_showGlobalInfoClause); let _la: number; try { - this.state = 6421; + this.state = 6428; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ENGINES: case MySqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 1); { - this.state = 6405; + this.state = 6412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 6404; + this.state = 6411; this.match(MySqlParser.KW_STORAGE); } } - this.state = 6407; + this.state = 6414; this.match(MySqlParser.KW_ENGINES); } break; case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 2); { - this.state = 6408; + this.state = 6415; this.match(MySqlParser.KW_MASTER); - this.state = 6409; + this.state = 6416; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PLUGINS: this.enterOuterAlt(localContext, 3); { - this.state = 6410; + this.state = 6417; this.match(MySqlParser.KW_PLUGINS); } break; case MySqlParser.KW_PRIVILEGES: this.enterOuterAlt(localContext, 4); { - this.state = 6411; + this.state = 6418; this.match(MySqlParser.KW_PRIVILEGES); } break; @@ -35230,47 +35249,47 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_PROCESSLIST: this.enterOuterAlt(localContext, 5); { - this.state = 6413; + this.state = 6420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6412; + this.state = 6419; this.match(MySqlParser.KW_FULL); } } - this.state = 6415; + this.state = 6422; this.match(MySqlParser.KW_PROCESSLIST); } break; case MySqlParser.KW_PROFILES: this.enterOuterAlt(localContext, 6); { - this.state = 6416; + this.state = 6423; this.match(MySqlParser.KW_PROFILES); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 7); { - this.state = 6417; + this.state = 6424; this.match(MySqlParser.KW_SLAVE); - this.state = 6418; + this.state = 6425; this.match(MySqlParser.KW_HOSTS); } break; case MySqlParser.KW_AUTHORS: this.enterOuterAlt(localContext, 8); { - this.state = 6419; + this.state = 6426; this.match(MySqlParser.KW_AUTHORS); } break; case MySqlParser.KW_CONTRIBUTORS: this.enterOuterAlt(localContext, 9); { - this.state = 6420; + this.state = 6427; this.match(MySqlParser.KW_CONTRIBUTORS); } break; @@ -35297,22 +35316,22 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 562, MySqlParser.RULE_showSchemaEntity); let _la: number; try { - this.state = 6434; + this.state = 6441; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EVENTS: this.enterOuterAlt(localContext, 1); { - this.state = 6423; + this.state = 6430; this.match(MySqlParser.KW_EVENTS); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 6424; + this.state = 6431; this.match(MySqlParser.KW_TABLE); - this.state = 6425; + this.state = 6432; this.match(MySqlParser.KW_STATUS); } break; @@ -35321,34 +35340,34 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_TABLES: this.enterOuterAlt(localContext, 3); { - this.state = 6427; + this.state = 6434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6426; + this.state = 6433; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6430; + this.state = 6437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6429; + this.state = 6436; this.match(MySqlParser.KW_FULL); } } - this.state = 6432; + this.state = 6439; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_TRIGGERS: this.enterOuterAlt(localContext, 4); { - this.state = 6433; + this.state = 6440; this.match(MySqlParser.KW_TRIGGERS); } break; @@ -35374,75 +35393,75 @@ export class MySqlParser extends antlr.Parser { let localContext = new ShowProfileTypeContext(this.context, this.state); this.enterRule(localContext, 564, MySqlParser.RULE_showProfileType); try { - this.state = 6448; + this.state = 6455; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 6436; + this.state = 6443; this.match(MySqlParser.KW_ALL); } break; case MySqlParser.KW_BLOCK: this.enterOuterAlt(localContext, 2); { - this.state = 6437; + this.state = 6444; this.match(MySqlParser.KW_BLOCK); - this.state = 6438; + this.state = 6445; this.match(MySqlParser.KW_IO); } break; case MySqlParser.KW_CONTEXT: this.enterOuterAlt(localContext, 3); { - this.state = 6439; + this.state = 6446; this.match(MySqlParser.KW_CONTEXT); - this.state = 6440; + this.state = 6447; this.match(MySqlParser.KW_SWITCHES); } break; case MySqlParser.KW_CPU: this.enterOuterAlt(localContext, 4); { - this.state = 6441; + this.state = 6448; this.match(MySqlParser.KW_CPU); } break; case MySqlParser.KW_IPC: this.enterOuterAlt(localContext, 5); { - this.state = 6442; + this.state = 6449; this.match(MySqlParser.KW_IPC); } break; case MySqlParser.KW_MEMORY: this.enterOuterAlt(localContext, 6); { - this.state = 6443; + this.state = 6450; this.match(MySqlParser.KW_MEMORY); } break; case MySqlParser.KW_PAGE: this.enterOuterAlt(localContext, 7); { - this.state = 6444; + this.state = 6451; this.match(MySqlParser.KW_PAGE); - this.state = 6445; + this.state = 6452; this.match(MySqlParser.KW_FAULTS); } break; case MySqlParser.KW_SOURCE: this.enterOuterAlt(localContext, 8); { - this.state = 6446; + this.state = 6453; this.match(MySqlParser.KW_SOURCE); } break; case MySqlParser.KW_SWAPS: this.enterOuterAlt(localContext, 9); { - this.state = 6447; + this.state = 6454; this.match(MySqlParser.KW_SWAPS); } break; @@ -35470,9 +35489,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6450; + this.state = 6457; this.match(MySqlParser.KW_BINLOG); - this.state = 6451; + this.state = 6458; this.match(MySqlParser.STRING_LITERAL); } } @@ -35497,30 +35516,30 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6453; + this.state = 6460; this.match(MySqlParser.KW_CACHE); - this.state = 6454; + this.state = 6461; this.match(MySqlParser.KW_INDEX); - this.state = 6472; + this.state = 6479; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 928, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 929, this.context) ) { case 1: { - this.state = 6455; + this.state = 6462; this.tableIndex(); - this.state = 6460; + this.state = 6467; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6456; + this.state = 6463; this.match(MySqlParser.COMMA); - this.state = 6457; + this.state = 6464; this.tableIndex(); } } - this.state = 6462; + this.state = 6469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35528,13 +35547,13 @@ export class MySqlParser extends antlr.Parser { break; case 2: { - this.state = 6463; + this.state = 6470; this.tableName(); - this.state = 6464; + this.state = 6471; this.match(MySqlParser.KW_PARTITION); - this.state = 6465; + this.state = 6472; this.match(MySqlParser.LR_BRACKET); - this.state = 6468; + this.state = 6475; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -36086,27 +36105,27 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6466; + this.state = 6473; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6467; + this.state = 6474; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6470; + this.state = 6477; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6474; + this.state = 6481; this.match(MySqlParser.KW_IN); - this.state = 6475; + this.state = 6482; this.databaseName(); } } @@ -36131,33 +36150,33 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6477; + this.state = 6484; this.match(MySqlParser.KW_FLUSH); - this.state = 6479; + this.state = 6486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6478; + this.state = 6485; this.tableActionOption(); } } - this.state = 6481; + this.state = 6488; this.flushOption(); - this.state = 6486; + this.state = 6493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6482; + this.state = 6489; this.match(MySqlParser.COMMA); - this.state = 6483; + this.state = 6490; this.flushOption(); } } - this.state = 6488; + this.state = 6495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36184,14 +36203,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6489; + this.state = 6496; this.match(MySqlParser.KW_KILL); - this.state = 6491; + this.state = 6498; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 931, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 932, this.context) ) { case 1: { - this.state = 6490; + this.state = 6497; localContext._connectionFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 349 || _la === 548)) { @@ -36204,7 +36223,7 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 6493; + this.state = 6500; this.expression(0); } } @@ -36229,29 +36248,29 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6495; + this.state = 6502; this.match(MySqlParser.KW_LOAD); - this.state = 6496; + this.state = 6503; this.match(MySqlParser.KW_INDEX); - this.state = 6497; - this.match(MySqlParser.KW_INTO); - this.state = 6498; - this.match(MySqlParser.KW_CACHE); - this.state = 6499; - this.loadedTableIndexes(); this.state = 6504; + this.match(MySqlParser.KW_INTO); + this.state = 6505; + this.match(MySqlParser.KW_CACHE); + this.state = 6506; + this.loadedTableIndexes(); + this.state = 6511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6500; + this.state = 6507; this.match(MySqlParser.COMMA); - this.state = 6501; + this.state = 6508; this.loadedTableIndexes(); } } - this.state = 6506; + this.state = 6513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36278,23 +36297,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6507; + this.state = 6514; this.match(MySqlParser.KW_RESET); - this.state = 6508; + this.state = 6515; this.resetOption(); - this.state = 6513; + this.state = 6520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6509; + this.state = 6516; this.match(MySqlParser.COMMA); - this.state = 6510; + this.state = 6517; this.resetOption(); } } - this.state = 6515; + this.state = 6522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36318,36 +36337,36 @@ export class MySqlParser extends antlr.Parser { let localContext = new ResetOptionContext(this.context, this.state); this.enterRule(localContext, 578, MySqlParser.RULE_resetOption); try { - this.state = 6521; + this.state = 6528; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 1); { - this.state = 6516; + this.state = 6523; this.match(MySqlParser.KW_MASTER); } break; case MySqlParser.KW_REPLICA: this.enterOuterAlt(localContext, 2); { - this.state = 6517; + this.state = 6524; this.match(MySqlParser.KW_REPLICA); } break; case MySqlParser.KW_QUERY: this.enterOuterAlt(localContext, 3); { - this.state = 6518; + this.state = 6525; this.match(MySqlParser.KW_QUERY); - this.state = 6519; + this.state = 6526; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 4); { - this.state = 6520; + this.state = 6527; this.match(MySqlParser.KW_SLAVE); } break; @@ -36375,26 +36394,26 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6523; + this.state = 6530; this.match(MySqlParser.KW_RESET); - this.state = 6524; + this.state = 6531; this.match(MySqlParser.KW_PERSIST); - this.state = 6529; + this.state = 6536; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 936, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 937, this.context) ) { case 1: { - this.state = 6526; + this.state = 6533; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 935, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 936, this.context) ) { case 1: { - this.state = 6525; + this.state = 6532; this.ifExists(); } break; } - this.state = 6528; + this.state = 6535; localContext._system_var_name = this.uid(); } break; @@ -36422,9 +36441,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6531; + this.state = 6538; this.match(MySqlParser.KW_RESET); - this.state = 6532; + this.state = 6539; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -36433,22 +36452,22 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6534; + this.state = 6541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 6533; + this.state = 6540; this.match(MySqlParser.KW_ALL); } } - this.state = 6537; + this.state = 6544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6536; + this.state = 6543; this.channelOption(); } } @@ -36475,7 +36494,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6539; + this.state = 6546; this.match(MySqlParser.KW_RESTART); } } @@ -36499,7 +36518,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6541; + this.state = 6548; this.match(MySqlParser.KW_SHUTDOWN); } } @@ -36524,14 +36543,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6543; + this.state = 6550; this.tableName(); - this.state = 6549; + this.state = 6556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6544; + this.state = 6551; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -36541,11 +36560,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6545; + this.state = 6552; this.match(MySqlParser.LR_BRACKET); - this.state = 6546; + this.state = 6553; this.indexNames(); - this.state = 6547; + this.state = 6554; this.match(MySqlParser.RR_BRACKET); } } @@ -36571,25 +36590,25 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 590, MySqlParser.RULE_flushOption); let _la: number; try { - this.state = 6583; + this.state = 6590; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { case 1: localContext = new SimpleFlushOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6569; + this.state = 6576; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DES_KEY_FILE: { - this.state = 6551; + this.state = 6558; this.match(MySqlParser.KW_DES_KEY_FILE); } break; case MySqlParser.KW_HOSTS: { - this.state = 6552; + this.state = 6559; this.match(MySqlParser.KW_HOSTS); } break; @@ -36601,12 +36620,12 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_RELAY: case MySqlParser.KW_SLOW: { - this.state = 6554; + this.state = 6561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599) { { - this.state = 6553; + this.state = 6560; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599)) { this.errorHandler.recoverInline(this); @@ -36618,56 +36637,56 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6556; + this.state = 6563; this.match(MySqlParser.KW_LOGS); } break; case MySqlParser.KW_OPTIMIZER_COSTS: { - this.state = 6557; + this.state = 6564; this.match(MySqlParser.KW_OPTIMIZER_COSTS); } break; case MySqlParser.KW_PRIVILEGES: { - this.state = 6558; + this.state = 6565; this.match(MySqlParser.KW_PRIVILEGES); } break; case MySqlParser.KW_QUERY: { - this.state = 6559; + this.state = 6566; this.match(MySqlParser.KW_QUERY); - this.state = 6560; + this.state = 6567; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_STATUS: { - this.state = 6561; + this.state = 6568; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_USER_RESOURCES: { - this.state = 6562; + this.state = 6569; this.match(MySqlParser.KW_USER_RESOURCES); } break; case MySqlParser.KW_TABLES: { - this.state = 6563; + this.state = 6570; this.match(MySqlParser.KW_TABLES); - this.state = 6567; + this.state = 6574; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 941, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { case 1: { - this.state = 6564; + this.state = 6571; this.match(MySqlParser.KW_WITH); - this.state = 6565; + this.state = 6572; this.match(MySqlParser.KW_READ); - this.state = 6566; + this.state = 6573; this.match(MySqlParser.KW_LOCK); } break; @@ -36683,16 +36702,16 @@ export class MySqlParser extends antlr.Parser { localContext = new ChannelFlushOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6571; + this.state = 6578; this.match(MySqlParser.KW_RELAY); - this.state = 6572; + this.state = 6579; this.match(MySqlParser.KW_LOGS); - this.state = 6574; + this.state = 6581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6573; + this.state = 6580; this.channelOption(); } } @@ -36703,7 +36722,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableFlushOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6576; + this.state = 6583; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -36712,22 +36731,22 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6578; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { - case 1: - { - this.state = 6577; - this.tableNames(); - } - break; - } - this.state = 6581; + this.state = 6585; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 945, this.context) ) { case 1: { - this.state = 6580; + this.state = 6584; + this.tableNames(); + } + break; + } + this.state = 6588; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { + case 1: + { + this.state = 6587; this.flushTableOption(); } break; @@ -36754,26 +36773,26 @@ export class MySqlParser extends antlr.Parser { let localContext = new FlushTableOptionContext(this.context, this.state); this.enterRule(localContext, 592, MySqlParser.RULE_flushTableOption); try { - this.state = 6590; + this.state = 6597; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 6585; + this.state = 6592; this.match(MySqlParser.KW_WITH); - this.state = 6586; + this.state = 6593; this.match(MySqlParser.KW_READ); - this.state = 6587; + this.state = 6594; this.match(MySqlParser.KW_LOCK); } break; case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 2); { - this.state = 6588; + this.state = 6595; this.match(MySqlParser.KW_FOR); - this.state = 6589; + this.state = 6596; this.match(MySqlParser.KW_EXPORT); } break; @@ -36802,18 +36821,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6592; + this.state = 6599; this.tableName(); - this.state = 6600; + this.state = 6607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 6593; + this.state = 6600; this.match(MySqlParser.KW_PARTITION); - this.state = 6594; + this.state = 6601; this.match(MySqlParser.LR_BRACKET); - this.state = 6597; + this.state = 6604; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -37365,35 +37384,35 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6595; + this.state = 6602; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6596; + this.state = 6603; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6599; + this.state = 6606; this.match(MySqlParser.RR_BRACKET); } } - this.state = 6609; + this.state = 6616; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 951, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 952, this.context) ) { case 1: { - this.state = 6603; + this.state = 6610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6602; + this.state = 6609; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -37406,23 +37425,23 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6605; + this.state = 6612; this.match(MySqlParser.LR_BRACKET); - this.state = 6606; + this.state = 6613; this.indexNames(); - this.state = 6607; + this.state = 6614; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6613; + this.state = 6620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6611; + this.state = 6618; this.match(MySqlParser.KW_IGNORE); - this.state = 6612; + this.state = 6619; this.match(MySqlParser.KW_LEAVES); } } @@ -37450,7 +37469,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6615; + this.state = 6622; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -37460,20 +37479,20 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6616; + this.state = 6623; this.tableName(); - this.state = 6619; + this.state = 6626; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 953, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 954, this.context) ) { case 1: { - this.state = 6617; + this.state = 6624; localContext._column = this.columnName(); } break; case 2: { - this.state = 6618; + this.state = 6625; localContext._pattern = this.match(MySqlParser.STRING_LITERAL); } break; @@ -37501,7 +37520,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6621; + this.state = 6628; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -37511,28 +37530,28 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6627; + this.state = 6634; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EXTENDED: { - this.state = 6622; + this.state = 6629; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_PARTITIONS: { - this.state = 6623; + this.state = 6630; this.match(MySqlParser.KW_PARTITIONS); } break; case MySqlParser.KW_FORMAT: { - this.state = 6624; + this.state = 6631; this.match(MySqlParser.KW_FORMAT); - this.state = 6625; + this.state = 6632; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6626; + this.state = 6633; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 663 || _la === 666)) { this.errorHandler.recoverInline(this); @@ -37554,7 +37573,7 @@ export class MySqlParser extends antlr.Parser { default: break; } - this.state = 6629; + this.state = 6636; this.describeObjectClause(); } } @@ -37579,7 +37598,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6631; + this.state = 6638; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -37589,23 +37608,23 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6632; + this.state = 6639; this.match(MySqlParser.KW_ANALYZE); - this.state = 6636; + this.state = 6643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 826) { { - this.state = 6633; + this.state = 6640; this.match(MySqlParser.KW_FORMAT); - this.state = 6634; + this.state = 6641; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6635; + this.state = 6642; this.match(MySqlParser.KW_TREE); } } - this.state = 6638; + this.state = 6645; this.selectStatement(); } } @@ -37629,9 +37648,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6640; + this.state = 6647; this.match(MySqlParser.KW_HELP); - this.state = 6641; + this.state = 6648; this.match(MySqlParser.STRING_LITERAL); } } @@ -37655,9 +37674,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6643; + this.state = 6650; this.match(MySqlParser.KW_USE); - this.state = 6644; + this.state = 6651; this.databaseName(); } } @@ -37682,68 +37701,68 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6646; + this.state = 6653; this.match(MySqlParser.KW_SIGNAL); - this.state = 6654; + this.state = 6661; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6647; + this.state = 6654; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6649; + this.state = 6656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6648; + this.state = 6655; this.match(MySqlParser.KW_VALUE); } } - this.state = 6651; + this.state = 6658; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6652; + this.state = 6659; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6653; + this.state = 6660; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6665; + this.state = 6672; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 959, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: { - this.state = 6656; + this.state = 6663; this.match(MySqlParser.KW_SET); - this.state = 6657; + this.state = 6664; this.signalConditionInformation(); - this.state = 6662; + this.state = 6669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6658; + this.state = 6665; this.match(MySqlParser.COMMA); - this.state = 6659; + this.state = 6666; this.signalConditionInformation(); } } - this.state = 6664; + this.state = 6671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37773,40 +37792,40 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6667; + this.state = 6674; this.match(MySqlParser.KW_RESIGNAL); - this.state = 6675; + this.state = 6682; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6668; + this.state = 6675; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6670; + this.state = 6677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6669; + this.state = 6676; this.match(MySqlParser.KW_VALUE); } } - this.state = 6672; + this.state = 6679; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6673; + this.state = 6680; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6674; + this.state = 6681; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; @@ -37877,28 +37896,28 @@ export class MySqlParser extends antlr.Parser { default: break; } - this.state = 6686; + this.state = 6693; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 963, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 964, this.context) ) { case 1: { - this.state = 6677; + this.state = 6684; this.match(MySqlParser.KW_SET); - this.state = 6678; + this.state = 6685; this.signalConditionInformation(); - this.state = 6683; + this.state = 6690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6679; + this.state = 6686; this.match(MySqlParser.COMMA); - this.state = 6680; + this.state = 6687; this.signalConditionInformation(); } } - this.state = 6685; + this.state = 6692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37928,7 +37947,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6688; + this.state = 6695; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -37937,29 +37956,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6689; + this.state = 6696; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6694; + this.state = 6701; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.START_NATIONAL_STRING_LITERAL: case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 6690; + this.state = 6697; this.stringLiteral(); } break; case MySqlParser.DECIMAL_LITERAL: { - this.state = 6691; + this.state = 6698; this.match(MySqlParser.DECIMAL_LITERAL); } break; case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6692; + this.state = 6699; this.mysqlVariable(); } break; @@ -38510,7 +38529,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.MOD: case MySqlParser.ID: { - this.state = 6693; + this.state = 6700; this.simpleId(); } break; @@ -38540,33 +38559,33 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6696; + this.state = 6703; this.match(MySqlParser.KW_WITH); - this.state = 6698; + this.state = 6705; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 966, this.context) ) { case 1: { - this.state = 6697; + this.state = 6704; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 6700; + this.state = 6707; this.commonTableExpressions(); - this.state = 6705; + this.state = 6712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6701; + this.state = 6708; this.match(MySqlParser.COMMA); - this.state = 6702; + this.state = 6709; this.commonTableExpressions(); } } - this.state = 6707; + this.state = 6714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38592,26 +38611,26 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6708; + this.state = 6715; this.match(MySqlParser.KW_TABLE); - this.state = 6709; + this.state = 6716; this.tableName(); - this.state = 6711; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 967, this.context) ) { - case 1: - { - this.state = 6710; - this.orderByClause(); - } - break; - } - this.state = 6714; + this.state = 6718; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 968, this.context) ) { case 1: { - this.state = 6713; + this.state = 6717; + this.orderByClause(); + } + break; + } + this.state = 6721; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 969, this.context) ) { + case 1: + { + this.state = 6720; this.limitClause(); } break; @@ -38639,14 +38658,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6716; + this.state = 6723; this.match(MySqlParser.KW_GET); - this.state = 6718; + this.state = 6725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 170) { { - this.state = 6717; + this.state = 6724; _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -38658,19 +38677,19 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6720; + this.state = 6727; this.match(MySqlParser.KW_DIAGNOSTICS); - this.state = 6752; + this.state = 6759; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { case 1: { { - this.state = 6721; + this.state = 6728; this.variableClause(); - this.state = 6722; + this.state = 6729; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6723; + this.state = 6730; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -38679,19 +38698,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6731; + this.state = 6738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6724; + this.state = 6731; this.match(MySqlParser.COMMA); - this.state = 6725; + this.state = 6732; this.variableClause(); - this.state = 6726; + this.state = 6733; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6727; + this.state = 6734; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -38702,7 +38721,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 6733; + this.state = 6740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38712,9 +38731,9 @@ export class MySqlParser extends antlr.Parser { case 2: { { - this.state = 6734; + this.state = 6741; this.match(MySqlParser.KW_CONDITION); - this.state = 6737; + this.state = 6744; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -38724,7 +38743,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 6735; + this.state = 6742; this.decimalLiteral(); } break; @@ -39282,36 +39301,36 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6736; + this.state = 6743; this.variableClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6739; + this.state = 6746; this.variableClause(); - this.state = 6740; + this.state = 6747; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6741; + this.state = 6748; this.diagnosticsConditionInformationName(); - this.state = 6749; + this.state = 6756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6742; + this.state = 6749; this.match(MySqlParser.COMMA); - this.state = 6743; + this.state = 6750; this.variableClause(); - this.state = 6744; + this.state = 6751; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6745; + this.state = 6752; this.diagnosticsConditionInformationName(); } } - this.state = 6751; + this.state = 6758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39342,7 +39361,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6754; + this.state = 6761; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 578 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -39371,7 +39390,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new DescribeObjectClauseContext(this.context, this.state); this.enterRule(localContext, 620, MySqlParser.RULE_describeObjectClause); try { - this.state = 6766; + this.state = 6773; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DELETE: @@ -39383,37 +39402,37 @@ export class MySqlParser extends antlr.Parser { localContext = new DescribeStatementsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6761; + this.state = 6768; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: { - this.state = 6756; + this.state = 6763; this.selectStatement(); } break; case MySqlParser.KW_DELETE: { - this.state = 6757; + this.state = 6764; this.deleteStatement(); } break; case MySqlParser.KW_INSERT: { - this.state = 6758; + this.state = 6765; this.insertStatement(); } break; case MySqlParser.KW_REPLACE: { - this.state = 6759; + this.state = 6766; this.replaceStatement(); } break; case MySqlParser.KW_UPDATE: { - this.state = 6760; + this.state = 6767; this.updateStatement(); } break; @@ -39426,11 +39445,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DescribeConnectionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6763; + this.state = 6770; this.match(MySqlParser.KW_FOR); - this.state = 6764; + this.state = 6771; this.match(MySqlParser.KW_CONNECTION); - this.state = 6765; + this.state = 6772; (localContext as DescribeConnectionContext)._connection_id = this.uid(); } break; @@ -39458,7 +39477,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6768; + this.state = 6775; this.fullId(); } } @@ -39482,7 +39501,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6770; + this.state = 6777; this.fullId(); } } @@ -39506,7 +39525,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6772; + this.state = 6779; this.fullId(); } } @@ -39530,7 +39549,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6774; + this.state = 6781; this.fullId(); } } @@ -39554,7 +39573,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6776; + this.state = 6783; this.fullId(); } } @@ -39578,7 +39597,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6778; + this.state = 6785; this.fullId(); } } @@ -39602,7 +39621,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6780; + this.state = 6787; this.uid(); } } @@ -39627,21 +39646,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6782; + this.state = 6789; this.indexName(); - this.state = 6787; + this.state = 6794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6783; + this.state = 6790; this.match(MySqlParser.COMMA); - this.state = 6784; + this.state = 6791; this.indexName(); } } - this.state = 6789; + this.state = 6796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39667,7 +39686,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6790; + this.state = 6797; this.uid(); } } @@ -39691,7 +39710,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6792; + this.state = 6799; this.uid(); } } @@ -39715,7 +39734,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6794; + this.state = 6801; this.uid(); } } @@ -39739,7 +39758,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6796; + this.state = 6803; this.fullId(); } } @@ -39764,25 +39783,25 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6798; + this.state = 6805; this.tableName(); - this.state = 6803; + this.state = 6810; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 977, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 978, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6799; + this.state = 6806; this.match(MySqlParser.COMMA); - this.state = 6800; + this.state = 6807; this.tableName(); } } } - this.state = 6805; + this.state = 6812; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 977, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 978, this.context); } } } @@ -39806,7 +39825,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6806; + this.state = 6813; this.fullId(); } } @@ -39831,21 +39850,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6808; + this.state = 6815; this.userOrRoleName(); - this.state = 6813; + this.state = 6820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6809; + this.state = 6816; this.match(MySqlParser.COMMA); - this.state = 6810; + this.state = 6817; this.userOrRoleName(); } } - this.state = 6815; + this.state = 6822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39869,20 +39888,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new UserOrRoleNameContext(this.context, this.state); this.enterRule(localContext, 652, MySqlParser.RULE_userOrRoleName); try { - this.state = 6818; + this.state = 6825; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 979, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 980, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6816; + this.state = 6823; this.userName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6817; + this.state = 6824; this.uid(); } break; @@ -39907,27 +39926,27 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 654, MySqlParser.RULE_columnNameCreate); let _la: number; try { - this.state = 6834; + this.state = 6841; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 985, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6820; + this.state = 6827; this.uid(); - this.state = 6825; + this.state = 6832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6821; + this.state = 6828; this.dottedId(); - this.state = 6823; + this.state = 6830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6822; + this.state = 6829; this.dottedId(); } } @@ -39940,24 +39959,24 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6828; + this.state = 6835; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 983, this.context) ) { case 1: { - this.state = 6827; + this.state = 6834; this.matchWildcard(); } break; } - this.state = 6830; + this.state = 6837; this.dottedId(); - this.state = 6832; + this.state = 6839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6831; + this.state = 6838; this.dottedId(); } } @@ -39987,25 +40006,25 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6836; + this.state = 6843; this.columnName(); - this.state = 6841; + this.state = 6848; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 985, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 986, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6837; + this.state = 6844; this.match(MySqlParser.COMMA); - this.state = 6838; + this.state = 6845; this.columnName(); } } } - this.state = 6843; + this.state = 6850; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 985, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 986, this.context); } } } @@ -40027,27 +40046,27 @@ export class MySqlParser extends antlr.Parser { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 658, MySqlParser.RULE_columnName); try { - this.state = 6858; + this.state = 6866; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 990, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6844; + this.state = 6851; this.uid(); - this.state = 6849; + this.state = 6856; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 988, this.context) ) { case 1: { - this.state = 6845; + this.state = 6852; this.dottedId(); - this.state = 6847; + this.state = 6854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { case 1: { - this.state = 6846; + this.state = 6853; this.dottedId(); } break; @@ -40060,30 +40079,39 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6852; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 988, this.context) ) { - case 1: - { - this.state = 6851; - this.matchWildcard(); - } - break; - } - this.state = 6854; - this.dottedId(); - this.state = 6856; + this.state = 6859; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 989, this.context) ) { case 1: { - this.state = 6855; + this.state = 6858; + this.matchWildcard(); + } + break; + } + this.state = 6861; + this.dottedId(); + this.state = 6863; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 990, this.context) ) { + case 1: + { + this.state = 6862; this.dottedId(); } break; } } break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 6865; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + } + break; } } catch (re) { @@ -40106,7 +40134,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6860; + this.state = 6868; this.uid(); } } @@ -40130,7 +40158,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6862; + this.state = 6870; this.uid(); } } @@ -40154,7 +40182,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6864; + this.state = 6872; this.uid(); } } @@ -40179,25 +40207,25 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6866; + this.state = 6874; this.partitionName(); - this.state = 6871; + this.state = 6879; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 991, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 992, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6867; + this.state = 6875; this.match(MySqlParser.COMMA); - this.state = 6868; + this.state = 6876; this.partitionName(); } } } - this.state = 6873; + this.state = 6881; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 991, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 992, this.context); } } } @@ -40221,7 +40249,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6874; + this.state = 6882; this.uid(); } } @@ -40246,23 +40274,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6884; + this.state = 6892; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 994, this.context) ) { case 1: { - this.state = 6876; + this.state = 6884; this.uid(); - this.state = 6881; + this.state = 6889; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 992, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { case 1: { - this.state = 6877; + this.state = 6885; this.match(MySqlParser.LR_BRACKET); - this.state = 6878; + this.state = 6886; this.decimalLiteral(); - this.state = 6879; + this.state = 6887; this.match(MySqlParser.RR_BRACKET); } break; @@ -40271,17 +40299,17 @@ export class MySqlParser extends antlr.Parser { break; case 2: { - this.state = 6883; + this.state = 6891; this.expression(0); } break; } - this.state = 6887; + this.state = 6895; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 994, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { case 1: { - this.state = 6886; + this.state = 6894; localContext._sortType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -40316,11 +40344,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6889; + this.state = 6897; this.userAtHost(); - this.state = 6890; + this.state = 6898; this.match(MySqlParser.COLON_SYMB); - this.state = 6891; + this.state = 6899; this.decimalLiteral(); } } @@ -40344,9 +40372,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6893; + this.state = 6901; this.simpleUserName(); - this.state = 6894; + this.state = 6902; this.match(MySqlParser.HOST_IP_ADDRESS); } } @@ -40368,34 +40396,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new SimpleUserNameContext(this.context, this.state); this.enterRule(localContext, 676, MySqlParser.RULE_simpleUserName); try { - this.state = 6900; + this.state = 6908; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 996, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6896; + this.state = 6904; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6897; + this.state = 6905; this.match(MySqlParser.ID); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6898; + this.state = 6906; this.match(MySqlParser.KW_ADMIN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6899; + this.state = 6907; this.keywordsCanBeId(); } break; @@ -40422,7 +40450,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6902; + this.state = 6910; _la = this.tokenStream.LA(1); if(!(((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0))) { this.errorHandler.recoverInline(this); @@ -40452,20 +40480,20 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 680, MySqlParser.RULE_userName); let _la: number; try { - this.state = 6909; + this.state = 6917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6904; + this.state = 6912; this.simpleUserName(); - this.state = 6906; + this.state = 6914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0)) { { - this.state = 6905; + this.state = 6913; this.hostName(); } } @@ -40475,7 +40503,7 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6908; + this.state = 6916; this.currentUserExpression(); } break; @@ -40502,7 +40530,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6911; + this.state = 6919; _la = this.tokenStream.LA(1); if(!(_la === 892 || _la === 893)) { this.errorHandler.recoverInline(this); @@ -40531,34 +40559,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new CharsetNameContext(this.context, this.state); this.enterRule(localContext, 684, MySqlParser.RULE_charsetName); try { - this.state = 6917; + this.state = 6925; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6913; + this.state = 6921; this.match(MySqlParser.KW_BINARY); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6914; + this.state = 6922; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6915; + this.state = 6923; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6916; + this.state = 6924; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; @@ -40584,7 +40612,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6919; + this.state = 6927; this.uid(); } } @@ -40606,7 +40634,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new EngineNameContext(this.context, this.state); this.enterRule(localContext, 688, MySqlParser.RULE_engineName); try { - this.state = 6924; + this.state = 6932; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONNECT: @@ -40624,21 +40652,21 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_TOKUDB: this.enterOuterAlt(localContext, 1); { - this.state = 6921; + this.state = 6929; this.engineNameBase(); } break; case MySqlParser.ID: this.enterOuterAlt(localContext, 2); { - this.state = 6922; + this.state = 6930; this.match(MySqlParser.ID); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 6923; + this.state = 6931; this.match(MySqlParser.STRING_LITERAL); } break; @@ -40667,7 +40695,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6926; + this.state = 6934; _la = this.tokenStream.LA(1); if(!(_la === 348 || ((((_la - 797)) & ~0x1F) === 0 && ((1 << (_la - 797)) & 4095) !== 0))) { this.errorHandler.recoverInline(this); @@ -40699,41 +40727,41 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6928; - this.decimalLiteral(); - this.state = 6929; - this.match(MySqlParser.MINUS); - this.state = 6930; - this.decimalLiteral(); - this.state = 6931; - this.match(MySqlParser.MINUS); - this.state = 6932; - this.decimalLiteral(); - this.state = 6933; - this.match(MySqlParser.MINUS); - this.state = 6934; - this.decimalLiteral(); - this.state = 6935; - this.match(MySqlParser.MINUS); this.state = 6936; this.decimalLiteral(); + this.state = 6937; + this.match(MySqlParser.MINUS); + this.state = 6938; + this.decimalLiteral(); + this.state = 6939; + this.match(MySqlParser.MINUS); + this.state = 6940; + this.decimalLiteral(); + this.state = 6941; + this.match(MySqlParser.MINUS); this.state = 6942; + this.decimalLiteral(); + this.state = 6943; + this.match(MySqlParser.MINUS); + this.state = 6944; + this.decimalLiteral(); + this.state = 6950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6937; + this.state = 6945; this.match(MySqlParser.COLON_SYMB); - this.state = 6938; + this.state = 6946; this.decimalLiteral(); - this.state = 6939; + this.state = 6947; this.match(MySqlParser.MINUS); - this.state = 6940; + this.state = 6948; this.decimalLiteral(); } } - this.state = 6944; + this.state = 6952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 878); @@ -40760,25 +40788,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6946; + this.state = 6954; localContext._globalTableUid = this.xuidStringId(); - this.state = 6953; + this.state = 6961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 6947; + this.state = 6955; this.match(MySqlParser.COMMA); - this.state = 6948; + this.state = 6956; localContext._qualifier = this.xuidStringId(); - this.state = 6951; + this.state = 6959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 6949; + this.state = 6957; this.match(MySqlParser.COMMA); - this.state = 6950; + this.state = 6958; localContext._idFormat = this.decimalLiteral(); } } @@ -40807,37 +40835,37 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 696, MySqlParser.RULE_xuidStringId); let _la: number; try { - this.state = 6962; + this.state = 6970; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 6955; + this.state = 6963; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.BIT_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 6956; + this.state = 6964; this.match(MySqlParser.BIT_STRING); } break; case MySqlParser.HEXADECIMAL_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 6958; + this.state = 6966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6957; + this.state = 6965; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } - this.state = 6960; + this.state = 6968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 884); @@ -40867,14 +40895,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6964; + this.state = 6972; this.uid(); - this.state = 6966; + this.state = 6974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1005, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: { - this.state = 6965; + this.state = 6973; this.dottedId(); } break; @@ -40902,21 +40930,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6968; + this.state = 6976; this.uid(); - this.state = 6973; + this.state = 6981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6969; + this.state = 6977; this.match(MySqlParser.COMMA); - this.state = 6970; + this.state = 6978; this.uid(); } } - this.state = 6975; + this.state = 6983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40940,7 +40968,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new UidContext(this.context, this.state); this.enterRule(localContext, 702, MySqlParser.RULE_uid); try { - this.state = 6979; + this.state = 6987; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -41491,21 +41519,21 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 6976; + this.state = 6984; this.simpleId(); } break; case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 6977; + this.state = 6985; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 6978; + this.state = 6986; this.match(MySqlParser.STRING_LITERAL); } break; @@ -41531,69 +41559,69 @@ export class MySqlParser extends antlr.Parser { let localContext = new SimpleIdContext(this.context, this.state); this.enterRule(localContext, 704, MySqlParser.RULE_simpleId); try { - this.state = 6990; + this.state = 6998; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6981; + this.state = 6989; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6982; + this.state = 6990; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6983; + this.state = 6991; this.transactionLevelBase(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6984; + this.state = 6992; this.engineNameBase(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6985; + this.state = 6993; this.privilegesBase(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6986; + this.state = 6994; this.intervalTypeBase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6987; + this.state = 6995; this.dataTypeBase(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6988; + this.state = 6996; this.keywordsCanBeId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 6989; + this.state = 6997; this.scalarFunctionName(); } break; @@ -41617,24 +41645,24 @@ export class MySqlParser extends antlr.Parser { let localContext = new DottedIdContext(this.context, this.state); this.enterRule(localContext, 706, MySqlParser.RULE_dottedId); try { - this.state = 6996; + this.state = 7004; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6992; + this.state = 7000; this.match(MySqlParser.DOT); - this.state = 6993; + this.state = 7001; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6994; + this.state = 7002; this.match(MySqlParser.DOT); - this.state = 6995; + this.state = 7003; this.uid(); } break; @@ -41661,7 +41689,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6998; + this.state = 7006; _la = this.tokenStream.LA(1); if(!(((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0))) { this.errorHandler.recoverInline(this); @@ -41690,13 +41718,13 @@ export class MySqlParser extends antlr.Parser { let localContext = new FileSizeLiteralContext(this.context, this.state); this.enterRule(localContext, 710, MySqlParser.RULE_fileSizeLiteral); try { - this.state = 7002; + this.state = 7010; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FILESIZE_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7000; + this.state = 7008; this.match(MySqlParser.FILESIZE_LITERAL); } break; @@ -41708,7 +41736,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 7001; + this.state = 7009; this.decimalLiteral(); } break; @@ -41736,42 +41764,42 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 7027; + this.state = 7035; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7009; + this.state = 7017; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7005; + this.state = 7013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7004; + this.state = 7012; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7007; + this.state = 7015; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7008; + this.state = 7016; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7012; + this.state = 7020; this.errorHandler.sync(this); alternative = 1; do { @@ -41779,7 +41807,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 7011; + this.state = 7019; this.match(MySqlParser.STRING_LITERAL); } } @@ -41787,52 +41815,52 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 7014; + this.state = 7022; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1013, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7021; + this.state = 7029; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7017; + this.state = 7025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7016; + this.state = 7024; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7019; + this.state = 7027; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7020; + this.state = 7028; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7025; + this.state = 7033; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { case 1: { - this.state = 7023; + this.state = 7031; this.match(MySqlParser.KW_COLLATE); - this.state = 7024; + this.state = 7032; this.collationName(); } break; @@ -41862,7 +41890,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7029; + this.state = 7037; _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179)) { this.errorHandler.recoverInline(this); @@ -41894,17 +41922,17 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7032; + this.state = 7040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7031; + this.state = 7039; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7034; + this.state = 7042; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } @@ -41929,17 +41957,17 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7037; + this.state = 7045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7036; + this.state = 7044; this.match(MySqlParser.KW_NOT); } } - this.state = 7039; + this.state = 7047; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { this.errorHandler.recoverInline(this); @@ -41969,74 +41997,74 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 720, MySqlParser.RULE_constant); let _la: number; try { - this.state = 7053; + this.state = 7061; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7041; + this.state = 7049; this.stringLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7042; + this.state = 7050; this.decimalLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7043; + this.state = 7051; this.match(MySqlParser.MINUS); - this.state = 7044; + this.state = 7052; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7045; + this.state = 7053; this.hexadecimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7046; + this.state = 7054; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7047; + this.state = 7055; this.match(MySqlParser.REAL_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7048; + this.state = 7056; this.match(MySqlParser.BIT_STRING); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7050; + this.state = 7058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7049; + this.state = 7057; this.match(MySqlParser.KW_NOT); } } - this.state = 7052; + this.state = 7060; localContext._nullLiteral = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { @@ -42069,14 +42097,14 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 722, MySqlParser.RULE_dataType); let _la: number; try { - this.state = 7181; + this.state = 7189; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: localContext = new StringDataTypeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7055; + this.state = 7063; (localContext as StringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 31239) !== 0) || _la === 498)) { @@ -42086,62 +42114,62 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7057; + this.state = 7065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240) { { - this.state = 7056; + this.state = 7064; this.match(MySqlParser.KW_VARYING); } } - this.state = 7060; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context) ) { - case 1: - { - this.state = 7059; - this.lengthOneDimension(); - } - break; - } - this.state = 7063; + this.state = 7068; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { case 1: { - this.state = 7062; + this.state = 7067; + this.lengthOneDimension(); + } + break; + } + this.state = 7071; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { + case 1: + { + this.state = 7070; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7068; + this.state = 7076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7065; + this.state = 7073; this.charSet(); - this.state = 7066; + this.state = 7074; this.charsetName(); } } - this.state = 7073; + this.state = 7081; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { case 1: { - this.state = 7070; + this.state = 7078; this.match(MySqlParser.KW_COLLATE); - this.state = 7071; + this.state = 7079; this.collationName(); } break; case 2: { - this.state = 7072; + this.state = 7080; this.match(MySqlParser.KW_BINARY); } break; @@ -42152,9 +42180,9 @@ export class MySqlParser extends antlr.Parser { localContext = new NationalVaryingStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7075; + this.state = 7083; this.match(MySqlParser.KW_NATIONAL); - this.state = 7076; + this.state = 7084; (localContext as NationalVaryingStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224)) { @@ -42164,49 +42192,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7077; - this.match(MySqlParser.KW_VARYING); - this.state = 7079; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { - case 1: - { - this.state = 7078; - this.lengthOneDimension(); - } - break; - } - this.state = 7082; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 228) { - { - this.state = 7081; - this.match(MySqlParser.KW_BINARY); - } - } - - } - break; - case 3: - localContext = new NationalStringDataTypeContext(localContext); - this.enterOuterAlt(localContext, 3); - { - this.state = 7084; - this.match(MySqlParser.KW_NATIONAL); this.state = 7085; - (localContext as NationalStringDataTypeContext)._typeName = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 26 || _la === 224 || _la === 225)) { - (localContext as NationalStringDataTypeContext)._typeName = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + this.match(MySqlParser.KW_VARYING); this.state = 7087; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1028, this.context) ) { case 1: { this.state = 7086; @@ -42226,17 +42216,25 @@ export class MySqlParser extends antlr.Parser { } break; - case 4: + case 3: localContext = new NationalStringDataTypeContext(localContext); - this.enterOuterAlt(localContext, 4); + this.enterOuterAlt(localContext, 3); { this.state = 7092; - this.match(MySqlParser.KW_NCHAR); + this.match(MySqlParser.KW_NATIONAL); this.state = 7093; - (localContext as NationalStringDataTypeContext)._typeName = this.match(MySqlParser.KW_VARCHAR); + (localContext as NationalStringDataTypeContext)._typeName = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 26 || _la === 224 || _la === 225)) { + (localContext as NationalStringDataTypeContext)._typeName = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } this.state = 7095; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1030, this.context) ) { case 1: { this.state = 7094; @@ -42254,13 +42252,43 @@ export class MySqlParser extends antlr.Parser { } } + } + break; + case 4: + localContext = new NationalStringDataTypeContext(localContext); + this.enterOuterAlt(localContext, 4); + { + this.state = 7100; + this.match(MySqlParser.KW_NCHAR); + this.state = 7101; + (localContext as NationalStringDataTypeContext)._typeName = this.match(MySqlParser.KW_VARCHAR); + this.state = 7103; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context) ) { + case 1: + { + this.state = 7102; + this.lengthOneDimension(); + } + break; + } + this.state = 7106; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 228) { + { + this.state = 7105; + this.match(MySqlParser.KW_BINARY); + } + } + } break; case 5: localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7100; + this.state = 7108; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4095) !== 0))) { @@ -42270,23 +42298,23 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7102; + this.state = 7110; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context) ) { case 1: { - this.state = 7101; + this.state = 7109; this.lengthOneDimension(); } break; } - this.state = 7107; + this.state = 7115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 184 || _la === 197 || _la === 596) { { { - this.state = 7104; + this.state = 7112; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -42297,7 +42325,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 7109; + this.state = 7117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42307,25 +42335,25 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7110; + this.state = 7118; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_REAL); - this.state = 7112; + this.state = 7120; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { case 1: { - this.state = 7111; + this.state = 7119; this.lengthTwoDimension(); } break; } - this.state = 7117; + this.state = 7125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 184 || _la === 197 || _la === 596) { { { - this.state = 7114; + this.state = 7122; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -42336,7 +42364,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 7119; + this.state = 7127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42346,35 +42374,35 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7120; + this.state = 7128; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_DOUBLE); - this.state = 7122; + this.state = 7130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 212) { { - this.state = 7121; + this.state = 7129; this.match(MySqlParser.KW_PRECISION); } } - this.state = 7125; + this.state = 7133; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { case 1: { - this.state = 7124; + this.state = 7132; this.lengthTwoDimension(); } break; } - this.state = 7130; + this.state = 7138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 184 || _la === 197 || _la === 596) { { { - this.state = 7127; + this.state = 7135; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -42385,7 +42413,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 7132; + this.state = 7140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42395,7 +42423,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7133; + this.state = 7141; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 213)) & ~0x1F) === 0 && ((1 << (_la - 213)) & 63) !== 0) || _la === 403)) { @@ -42405,23 +42433,23 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7135; + this.state = 7143; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { case 1: { - this.state = 7134; + this.state = 7142; this.lengthTwoOptionalDimension(); } break; } - this.state = 7140; + this.state = 7148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 184 || _la === 197 || _la === 596) { { { - this.state = 7137; + this.state = 7145; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -42432,7 +42460,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 7142; + this.state = 7150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42442,7 +42470,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SimpleDataTypeContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7143; + this.state = 7151; (localContext as SimpleDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 4237313) !== 0) || _la === 321 || _la === 322)) { @@ -42458,7 +42486,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7144; + this.state = 7152; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 2831) !== 0) || _la === 319)) { @@ -42468,12 +42496,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7146; + this.state = 7154; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { case 1: { - this.state = 7145; + this.state = 7153; this.lengthOneDimension(); } break; @@ -42484,7 +42512,7 @@ export class MySqlParser extends antlr.Parser { localContext = new CollectionDataTypeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7148; + this.state = 7156; (localContext as CollectionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 239)) { @@ -42494,26 +42522,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7149; + this.state = 7157; this.collectionOptions(); - this.state = 7151; + this.state = 7159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 7150; + this.state = 7158; this.match(MySqlParser.KW_BINARY); } } - this.state = 7156; + this.state = 7164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7153; + this.state = 7161; this.charSet(); - this.state = 7154; + this.state = 7162; this.charsetName(); } } @@ -42524,7 +42552,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SpatialDataTypeContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7158; + this.state = 7166; (localContext as SpatialDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 442 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 511) !== 0))) { @@ -42534,14 +42562,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7161; + this.state = 7169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 834) { { - this.state = 7159; + this.state = 7167; this.match(MySqlParser.KW_SRID); - this.state = 7160; + this.state = 7168; this.decimalLiteral(); } } @@ -42552,48 +42580,48 @@ export class MySqlParser extends antlr.Parser { localContext = new LongVarcharDataTypeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7163; + this.state = 7171; (localContext as LongVarcharDataTypeContext)._typeName = this.match(MySqlParser.KW_LONG); - this.state = 7165; + this.state = 7173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 7164; + this.state = 7172; this.match(MySqlParser.KW_VARCHAR); } } - this.state = 7168; + this.state = 7176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 7167; + this.state = 7175; this.match(MySqlParser.KW_BINARY); } } - this.state = 7173; + this.state = 7181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7170; + this.state = 7178; this.charSet(); - this.state = 7171; + this.state = 7179; this.charsetName(); } } - this.state = 7177; + this.state = 7185; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: { - this.state = 7175; + this.state = 7183; this.match(MySqlParser.KW_COLLATE); - this.state = 7176; + this.state = 7184; this.collationName(); } break; @@ -42604,9 +42632,9 @@ export class MySqlParser extends antlr.Parser { localContext = new LongVarbinaryDataTypeContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7179; + this.state = 7187; this.match(MySqlParser.KW_LONG); - this.state = 7180; + this.state = 7188; this.match(MySqlParser.KW_VARBINARY); } break; @@ -42633,27 +42661,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7183; + this.state = 7191; this.match(MySqlParser.LR_BRACKET); - this.state = 7184; + this.state = 7192; this.match(MySqlParser.STRING_LITERAL); - this.state = 7189; + this.state = 7197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7185; + this.state = 7193; this.match(MySqlParser.COMMA); - this.state = 7186; + this.state = 7194; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7191; + this.state = 7199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7192; + this.state = 7200; this.match(MySqlParser.RR_BRACKET); } } @@ -42678,13 +42706,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7216; + this.state = 7224; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: case MySqlParser.KW_NCHAR: { - this.state = 7194; + this.state = 7202; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 498)) { @@ -42694,12 +42722,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7196; + this.state = 7204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7195; + this.state = 7203; this.lengthOneDimension(); } } @@ -42708,26 +42736,26 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_CHAR: { - this.state = 7198; + this.state = 7206; localContext._typeName = this.match(MySqlParser.KW_CHAR); - this.state = 7200; + this.state = 7208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7199; + this.state = 7207; this.lengthOneDimension(); } } - this.state = 7205; + this.state = 7213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7202; + this.state = 7210; this.charSet(); - this.state = 7203; + this.state = 7211; this.charsetName(); } } @@ -42741,7 +42769,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_DATETIME: case MySqlParser.KW_JSON: { - this.state = 7207; + this.state = 7215; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 202)) & ~0x1F) === 0 && ((1 << (_la - 202)) & 1441857) !== 0) || _la === 442)) { @@ -42756,7 +42784,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_DECIMAL: case MySqlParser.KW_DEC: { - this.state = 7208; + this.state = 7216; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 216 || _la === 217)) { @@ -42766,12 +42794,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7210; + this.state = 7218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7209; + this.state = 7217; this.lengthTwoOptionalDimension(); } } @@ -42781,7 +42809,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_UNSIGNED: case MySqlParser.KW_SIGNED: { - this.state = 7212; + this.state = 7220; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -42790,12 +42818,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7214; + this.state = 7222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 208) { { - this.state = 7213; + this.state = 7221; _la = this.tokenStream.LA(1); if(!(_la === 202 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -42812,12 +42840,12 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 7219; + this.state = 7227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 7218; + this.state = 7226; this.match(MySqlParser.KW_ARRAY); } } @@ -42844,11 +42872,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7221; + this.state = 7229; this.match(MySqlParser.LR_BRACKET); - this.state = 7222; + this.state = 7230; this.decimalLiteral(); - this.state = 7223; + this.state = 7231; this.match(MySqlParser.RR_BRACKET); } } @@ -42872,15 +42900,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7225; + this.state = 7233; this.match(MySqlParser.LR_BRACKET); - this.state = 7226; + this.state = 7234; this.decimalLiteral(); - this.state = 7227; + this.state = 7235; this.match(MySqlParser.COMMA); - this.state = 7228; + this.state = 7236; this.decimalLiteral(); - this.state = 7229; + this.state = 7237; this.match(MySqlParser.RR_BRACKET); } } @@ -42905,23 +42933,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7231; + this.state = 7239; this.match(MySqlParser.LR_BRACKET); - this.state = 7232; + this.state = 7240; this.decimalLiteral(); - this.state = 7235; + this.state = 7243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7233; + this.state = 7241; this.match(MySqlParser.COMMA); - this.state = 7234; + this.state = 7242; this.decimalLiteral(); } } - this.state = 7237; + this.state = 7245; this.match(MySqlParser.RR_BRACKET); } } @@ -42946,27 +42974,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7239; + this.state = 7247; this.match(MySqlParser.LR_BRACKET); - this.state = 7240; + this.state = 7248; this.indexColumnName(); - this.state = 7245; + this.state = 7253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7241; + this.state = 7249; this.match(MySqlParser.COMMA); - this.state = 7242; + this.state = 7250; this.indexColumnName(); } } - this.state = 7247; + this.state = 7255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7248; + this.state = 7256; this.match(MySqlParser.RR_BRACKET); } } @@ -42991,21 +43019,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7250; + this.state = 7258; this.expression(0); - this.state = 7255; + this.state = 7263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7251; + this.state = 7259; this.match(MySqlParser.COMMA); - this.state = 7252; + this.state = 7260; this.expression(0); } } - this.state = 7257; + this.state = 7265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43032,7 +43060,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7258; + this.state = 7266; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 682)) { this.errorHandler.recoverInline(this); @@ -43041,21 +43069,21 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7259; + this.state = 7267; this.expressionsWithDefaults(); - this.state = 7264; + this.state = 7272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7260; + this.state = 7268; this.match(MySqlParser.COMMA); - this.state = 7261; + this.state = 7269; this.expressionsWithDefaults(); } } - this.state = 7266; + this.state = 7274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43082,27 +43110,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7267; + this.state = 7275; this.match(MySqlParser.LR_BRACKET); - this.state = 7268; + this.state = 7276; this.expressionOrDefault(); - this.state = 7273; + this.state = 7281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7269; + this.state = 7277; this.match(MySqlParser.COMMA); - this.state = 7270; + this.state = 7278; this.expressionOrDefault(); } } - this.state = 7275; + this.state = 7283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7276; + this.state = 7284; this.match(MySqlParser.RR_BRACKET); } } @@ -43124,20 +43152,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new ExpressionOrDefaultContext(this.context, this.state); this.enterRule(localContext, 742, MySqlParser.RULE_expressionOrDefault); try { - this.state = 7280; + this.state = 7288; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7278; + this.state = 7286; this.expression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7279; + this.state = 7287; this.match(MySqlParser.KW_DEFAULT); } break; @@ -43164,21 +43192,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7282; + this.state = 7290; this.constant(); - this.state = 7287; + this.state = 7295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7283; + this.state = 7291; this.match(MySqlParser.COMMA); - this.state = 7284; + this.state = 7292; this.constant(); } } - this.state = 7289; + this.state = 7297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43205,21 +43233,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7290; + this.state = 7298; this.match(MySqlParser.STRING_LITERAL); - this.state = 7295; + this.state = 7303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7291; + this.state = 7299; this.match(MySqlParser.COMMA); - this.state = 7292; + this.state = 7300; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7297; + this.state = 7305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43246,21 +43274,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7298; + this.state = 7306; this.match(MySqlParser.LOCAL_ID); - this.state = 7303; + this.state = 7311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7299; + this.state = 7307; this.match(MySqlParser.COMMA); - this.state = 7300; + this.state = 7308; this.match(MySqlParser.LOCAL_ID); } } - this.state = 7305; + this.state = 7313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43284,65 +43312,65 @@ export class MySqlParser extends antlr.Parser { let localContext = new DefaultValueContext(this.context, this.state); this.enterRule(localContext, 750, MySqlParser.RULE_defaultValue); try { - this.state = 7332; + this.state = 7340; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1071, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7306; + this.state = 7314; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7307; + this.state = 7315; this.match(MySqlParser.KW_CAST); - this.state = 7308; + this.state = 7316; this.match(MySqlParser.LR_BRACKET); - this.state = 7309; + this.state = 7317; this.expression(0); - this.state = 7310; + this.state = 7318; this.match(MySqlParser.KW_AS); - this.state = 7311; + this.state = 7319; this.convertedDataType(); - this.state = 7312; + this.state = 7320; this.match(MySqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7315; + this.state = 7323; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { case 1: { - this.state = 7314; + this.state = 7322; this.unaryOperator(); } break; } - this.state = 7317; + this.state = 7325; this.constant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7318; + this.state = 7326; this.currentTimestamp(); - this.state = 7322; + this.state = 7330; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { case 1: { - this.state = 7319; + this.state = 7327; this.match(MySqlParser.KW_ON); - this.state = 7320; + this.state = 7328; this.match(MySqlParser.KW_UPDATE); - this.state = 7321; + this.state = 7329; this.currentTimestamp(); } break; @@ -43352,22 +43380,22 @@ export class MySqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7324; + this.state = 7332; this.match(MySqlParser.LR_BRACKET); - this.state = 7325; + this.state = 7333; this.expression(0); - this.state = 7326; + this.state = 7334; this.match(MySqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7328; + this.state = 7336; this.match(MySqlParser.LR_BRACKET); - this.state = 7329; + this.state = 7337; this.fullId(); - this.state = 7330; + this.state = 7338; this.match(MySqlParser.RR_BRACKET); } break; @@ -43394,14 +43422,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7348; + this.state = 7356; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CURRENT_TIMESTAMP: case MySqlParser.KW_LOCALTIME: case MySqlParser.KW_LOCALTIMESTAMP: { - this.state = 7334; + this.state = 7342; _la = this.tokenStream.LA(1); if(!(((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131) !== 0))) { this.errorHandler.recoverInline(this); @@ -43410,24 +43438,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7340; + this.state = 7348; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1072, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context) ) { case 1: { - this.state = 7335; + this.state = 7343; this.match(MySqlParser.LR_BRACKET); - this.state = 7337; + this.state = 7345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7336; + this.state = 7344; this.decimalLiteral(); } } - this.state = 7339; + this.state = 7347; this.match(MySqlParser.RR_BRACKET); } break; @@ -43436,21 +43464,21 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_NOW: { - this.state = 7342; + this.state = 7350; this.match(MySqlParser.KW_NOW); - this.state = 7343; + this.state = 7351; this.match(MySqlParser.LR_BRACKET); - this.state = 7345; + this.state = 7353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7344; + this.state = 7352; this.decimalLiteral(); } } - this.state = 7347; + this.state = 7355; this.match(MySqlParser.RR_BRACKET); } break; @@ -43479,9 +43507,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7350; + this.state = 7358; this.match(MySqlParser.KW_IF); - this.state = 7351; + this.state = 7359; this.match(MySqlParser.KW_EXISTS); } } @@ -43505,11 +43533,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7353; + this.state = 7361; this.match(MySqlParser.KW_IF); - this.state = 7354; + this.state = 7362; this.match(MySqlParser.KW_NOT); - this.state = 7355; + this.state = 7363; this.match(MySqlParser.KW_EXISTS); } } @@ -43533,9 +43561,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7357; + this.state = 7365; this.match(MySqlParser.KW_OR); - this.state = 7358; + this.state = 7366; this.match(MySqlParser.KW_REPLACE); } } @@ -43557,14 +43585,14 @@ export class MySqlParser extends antlr.Parser { let localContext = new FunctionCallContext(this.context, this.state); this.enterRule(localContext, 760, MySqlParser.RULE_functionCall); try { - this.state = 7378; + this.state = 7390; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { case 1: localContext = new SpecificFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7360; + this.state = 7368; this.specificFunction(); } break; @@ -43572,7 +43600,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7361; + this.state = 7369; this.aggregateWindowedFunction(); } break; @@ -43580,7 +43608,7 @@ export class MySqlParser extends antlr.Parser { localContext = new NonAggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7362; + this.state = 7370; this.nonAggregateWindowedFunction(); } break; @@ -43588,51 +43616,67 @@ export class MySqlParser extends antlr.Parser { localContext = new ScalarFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7363; + this.state = 7371; this.scalarFunctionName(); - this.state = 7364; - this.match(MySqlParser.LR_BRACKET); - this.state = 7366; + this.state = 7378; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1075, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context) ) { case 1: { - this.state = 7365; + this.state = 7372; + this.match(MySqlParser.LR_BRACKET); + this.state = 7373; + this.match(MySqlParser.RR_BRACKET); + } + break; + case 2: + { + this.state = 7374; + this.match(MySqlParser.LR_BRACKET); + this.state = 7375; this.functionArgs(); + this.state = 7376; + this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 7368; - this.match(MySqlParser.RR_BRACKET); } break; case 5: localContext = new UdfFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7370; + this.state = 7380; this.functionName(); - this.state = 7371; - this.match(MySqlParser.LR_BRACKET); - this.state = 7373; + this.state = 7387; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { case 1: { - this.state = 7372; + this.state = 7381; + this.match(MySqlParser.LR_BRACKET); + this.state = 7382; + this.match(MySqlParser.RR_BRACKET); + } + break; + case 2: + { + this.state = 7383; + this.match(MySqlParser.LR_BRACKET); + this.state = 7384; this.functionArgs(); + this.state = 7385; + this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 7375; - this.match(MySqlParser.RR_BRACKET); } break; case 6: localContext = new PasswordFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7377; + this.state = 7389; this.passwordFunctionClause(); } break; @@ -43657,14 +43701,14 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 762, MySqlParser.RULE_specificFunction); let _la: number; try { - this.state = 7559; + this.state = 7571; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context) ) { case 1: localContext = new SimpleFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7380; + this.state = 7392; _la = this.tokenStream.LA(1); if(!(_la === 152 || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 262159) !== 0))) { this.errorHandler.recoverInline(this); @@ -43673,14 +43717,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7383; + this.state = 7395; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1079, this.context) ) { case 1: { - this.state = 7381; + this.state = 7393; this.match(MySqlParser.LR_BRACKET); - this.state = 7382; + this.state = 7394; this.match(MySqlParser.RR_BRACKET); } break; @@ -43691,7 +43735,7 @@ export class MySqlParser extends antlr.Parser { localContext = new CurrentUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7385; + this.state = 7397; this.currentUserExpression(); } break; @@ -43699,17 +43743,17 @@ export class MySqlParser extends antlr.Parser { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7386; + this.state = 7398; this.match(MySqlParser.KW_CONVERT); - this.state = 7387; + this.state = 7399; this.match(MySqlParser.LR_BRACKET); - this.state = 7388; + this.state = 7400; this.expression(0); - this.state = 7389; + this.state = 7401; (localContext as DataTypeFunctionCallContext)._separator = this.match(MySqlParser.COMMA); - this.state = 7390; + this.state = 7402; this.convertedDataType(); - this.state = 7391; + this.state = 7403; this.match(MySqlParser.RR_BRACKET); } break; @@ -43717,17 +43761,17 @@ export class MySqlParser extends antlr.Parser { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7393; + this.state = 7405; this.match(MySqlParser.KW_CONVERT); - this.state = 7394; + this.state = 7406; this.match(MySqlParser.LR_BRACKET); - this.state = 7395; + this.state = 7407; this.expression(0); - this.state = 7396; + this.state = 7408; this.match(MySqlParser.KW_USING); - this.state = 7397; + this.state = 7409; this.charsetName(); - this.state = 7398; + this.state = 7410; this.match(MySqlParser.RR_BRACKET); } break; @@ -43735,17 +43779,17 @@ export class MySqlParser extends antlr.Parser { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7400; + this.state = 7412; this.match(MySqlParser.KW_CAST); - this.state = 7401; + this.state = 7413; this.match(MySqlParser.LR_BRACKET); - this.state = 7402; + this.state = 7414; this.expression(0); - this.state = 7403; + this.state = 7415; this.match(MySqlParser.KW_AS); - this.state = 7404; + this.state = 7416; this.convertedDataType(); - this.state = 7405; + this.state = 7417; this.match(MySqlParser.RR_BRACKET); } break; @@ -43753,13 +43797,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ValuesFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7407; + this.state = 7419; this.match(MySqlParser.KW_VALUES); - this.state = 7408; + this.state = 7420; this.match(MySqlParser.LR_BRACKET); - this.state = 7409; + this.state = 7421; this.columnName(); - this.state = 7410; + this.state = 7422; this.match(MySqlParser.RR_BRACKET); } break; @@ -43767,46 +43811,10 @@ export class MySqlParser extends antlr.Parser { localContext = new CaseExpressionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7412; + this.state = 7424; this.match(MySqlParser.KW_CASE); - this.state = 7413; - this.expression(0); - this.state = 7415; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - do { - { - { - this.state = 7414; - this.caseFuncAlternative(); - } - } - this.state = 7417; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (_la === 191); - this.state = 7421; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 53) { - { - this.state = 7419; - this.match(MySqlParser.KW_ELSE); - this.state = 7420; - (localContext as CaseExpressionFunctionCallContext)._elseArg = this.functionArg(); - } - } - - this.state = 7423; - this.match(MySqlParser.KW_END); - } - break; - case 8: - localContext = new CaseFunctionCallContext(localContext); - this.enterOuterAlt(localContext, 8); - { this.state = 7425; - this.match(MySqlParser.KW_CASE); + this.expression(0); this.state = 7427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -43829,7 +43837,7 @@ export class MySqlParser extends antlr.Parser { this.state = 7431; this.match(MySqlParser.KW_ELSE); this.state = 7432; - (localContext as CaseFunctionCallContext)._elseArg = this.functionArg(); + (localContext as CaseExpressionFunctionCallContext)._elseArg = this.functionArg(); } } @@ -43837,29 +43845,65 @@ export class MySqlParser extends antlr.Parser { this.match(MySqlParser.KW_END); } break; + case 8: + localContext = new CaseFunctionCallContext(localContext); + this.enterOuterAlt(localContext, 8); + { + this.state = 7437; + this.match(MySqlParser.KW_CASE); + this.state = 7439; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + do { + { + { + this.state = 7438; + this.caseFuncAlternative(); + } + } + this.state = 7441; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } while (_la === 191); + this.state = 7445; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 53) { + { + this.state = 7443; + this.match(MySqlParser.KW_ELSE); + this.state = 7444; + (localContext as CaseFunctionCallContext)._elseArg = this.functionArg(); + } + } + + this.state = 7447; + this.match(MySqlParser.KW_END); + } + break; case 9: localContext = new CharFunctionCallContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7437; + this.state = 7449; this.match(MySqlParser.KW_CHAR); - this.state = 7438; + this.state = 7450; this.match(MySqlParser.LR_BRACKET); - this.state = 7439; + this.state = 7451; this.functionArgs(); - this.state = 7442; + this.state = 7454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 7440; + this.state = 7452; this.match(MySqlParser.KW_USING); - this.state = 7441; + this.state = 7453; this.charsetName(); } } - this.state = 7444; + this.state = 7456; this.match(MySqlParser.RR_BRACKET); } break; @@ -43867,45 +43911,45 @@ export class MySqlParser extends antlr.Parser { localContext = new PositionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7446; + this.state = 7458; this.match(MySqlParser.KW_POSITION); - this.state = 7447; + this.state = 7459; this.match(MySqlParser.LR_BRACKET); - this.state = 7450; + this.state = 7462; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { case 1: { - this.state = 7448; + this.state = 7460; (localContext as PositionFunctionCallContext)._positionString = this.stringLiteral(); } break; case 2: { - this.state = 7449; + this.state = 7461; (localContext as PositionFunctionCallContext)._positionExpression = this.expression(0); } break; } - this.state = 7452; + this.state = 7464; this.match(MySqlParser.KW_IN); - this.state = 7455; + this.state = 7467; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: { - this.state = 7453; + this.state = 7465; (localContext as PositionFunctionCallContext)._inString = this.stringLiteral(); } break; case 2: { - this.state = 7454; + this.state = 7466; (localContext as PositionFunctionCallContext)._inExpression = this.expression(0); } break; } - this.state = 7457; + this.state = 7469; this.match(MySqlParser.RR_BRACKET); } break; @@ -43913,7 +43957,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SubstrFunctionCallContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7459; + this.state = 7471; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -43922,61 +43966,61 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7460; + this.state = 7472; this.match(MySqlParser.LR_BRACKET); - this.state = 7463; + this.state = 7475; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { case 1: { - this.state = 7461; + this.state = 7473; (localContext as SubstrFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7462; + this.state = 7474; (localContext as SubstrFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7465; + this.state = 7477; this.match(MySqlParser.KW_FROM); - this.state = 7468; + this.state = 7480; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { case 1: { - this.state = 7466; + this.state = 7478; (localContext as SubstrFunctionCallContext)._fromDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7467; + this.state = 7479; (localContext as SubstrFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7475; + this.state = 7487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 7470; + this.state = 7482; this.match(MySqlParser.KW_FOR); - this.state = 7473; + this.state = 7485; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { case 1: { - this.state = 7471; + this.state = 7483; (localContext as SubstrFunctionCallContext)._forDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7472; + this.state = 7484; (localContext as SubstrFunctionCallContext)._forExpression = this.expression(0); } break; @@ -43984,7 +44028,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 7477; + this.state = 7489; this.match(MySqlParser.RR_BRACKET); } break; @@ -43992,11 +44036,11 @@ export class MySqlParser extends antlr.Parser { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7479; + this.state = 7491; this.match(MySqlParser.KW_TRIM); - this.state = 7480; + this.state = 7492; this.match(MySqlParser.LR_BRACKET); - this.state = 7481; + this.state = 7493; (localContext as TrimFunctionCallContext)._positioinForm = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 96 || _la === 177)) { @@ -44006,41 +44050,41 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7484; + this.state = 7496; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1090, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context) ) { case 1: { - this.state = 7482; + this.state = 7494; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7483; + this.state = 7495; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7486; + this.state = 7498; this.match(MySqlParser.KW_FROM); - this.state = 7489; + this.state = 7501; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context) ) { case 1: { - this.state = 7487; + this.state = 7499; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7488; + this.state = 7500; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7491; + this.state = 7503; this.match(MySqlParser.RR_BRACKET); } break; @@ -44048,45 +44092,45 @@ export class MySqlParser extends antlr.Parser { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7493; + this.state = 7505; this.match(MySqlParser.KW_TRIM); - this.state = 7494; + this.state = 7506; this.match(MySqlParser.LR_BRACKET); - this.state = 7497; + this.state = 7509; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { case 1: { - this.state = 7495; + this.state = 7507; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7496; + this.state = 7508; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7499; + this.state = 7511; this.match(MySqlParser.KW_FROM); - this.state = 7502; + this.state = 7514; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { case 1: { - this.state = 7500; + this.state = 7512; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7501; + this.state = 7513; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7504; + this.state = 7516; this.match(MySqlParser.RR_BRACKET); } break; @@ -44094,34 +44138,34 @@ export class MySqlParser extends antlr.Parser { localContext = new WeightFunctionCallContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7506; + this.state = 7518; this.match(MySqlParser.KW_WEIGHT_STRING); - this.state = 7507; + this.state = 7519; this.match(MySqlParser.LR_BRACKET); - this.state = 7510; + this.state = 7522; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { case 1: { - this.state = 7508; + this.state = 7520; this.stringLiteral(); } break; case 2: { - this.state = 7509; + this.state = 7521; this.expression(0); } break; } - this.state = 7518; + this.state = 7530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 7512; + this.state = 7524; this.match(MySqlParser.KW_AS); - this.state = 7513; + this.state = 7525; (localContext as WeightFunctionCallContext)._stringFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 224 || _la === 228)) { @@ -44131,26 +44175,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7514; + this.state = 7526; this.match(MySqlParser.LR_BRACKET); - this.state = 7515; + this.state = 7527; this.decimalLiteral(); - this.state = 7516; + this.state = 7528; this.match(MySqlParser.RR_BRACKET); } } - this.state = 7521; + this.state = 7533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 448) { { - this.state = 7520; + this.state = 7532; this.levelsInWeightString(); } } - this.state = 7523; + this.state = 7535; this.match(MySqlParser.RR_BRACKET); } break; @@ -44158,31 +44202,31 @@ export class MySqlParser extends antlr.Parser { localContext = new ExtractFunctionCallContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 7525; + this.state = 7537; this.match(MySqlParser.KW_EXTRACT); - this.state = 7526; + this.state = 7538; this.match(MySqlParser.LR_BRACKET); - this.state = 7527; + this.state = 7539; this.intervalType(); - this.state = 7528; + this.state = 7540; this.match(MySqlParser.KW_FROM); - this.state = 7531; + this.state = 7543; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { case 1: { - this.state = 7529; + this.state = 7541; (localContext as ExtractFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7530; + this.state = 7542; (localContext as ExtractFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7533; + this.state = 7545; this.match(MySqlParser.RR_BRACKET); } break; @@ -44190,11 +44234,11 @@ export class MySqlParser extends antlr.Parser { localContext = new GetFormatFunctionCallContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 7535; + this.state = 7547; this.match(MySqlParser.KW_GET_FORMAT); - this.state = 7536; + this.state = 7548; this.match(MySqlParser.LR_BRACKET); - this.state = 7537; + this.state = 7549; (localContext as GetFormatFunctionCallContext)._datetimeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 11) !== 0))) { @@ -44204,11 +44248,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7538; + this.state = 7550; this.match(MySqlParser.COMMA); - this.state = 7539; + this.state = 7551; this.stringLiteral(); - this.state = 7540; + this.state = 7552; this.match(MySqlParser.RR_BRACKET); } break; @@ -44216,49 +44260,49 @@ export class MySqlParser extends antlr.Parser { localContext = new JsonValueFunctionCallContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 7542; + this.state = 7554; this.match(MySqlParser.KW_JSON_VALUE); - this.state = 7543; + this.state = 7555; this.match(MySqlParser.LR_BRACKET); - this.state = 7544; + this.state = 7556; this.expression(0); - this.state = 7545; + this.state = 7557; this.match(MySqlParser.COMMA); - this.state = 7546; + this.state = 7558; this.expression(0); - this.state = 7549; + this.state = 7561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 579) { { - this.state = 7547; + this.state = 7559; this.match(MySqlParser.KW_RETURNING); - this.state = 7548; + this.state = 7560; this.convertedDataType(); } } - this.state = 7552; + this.state = 7564; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context) ) { case 1: { - this.state = 7551; + this.state = 7563; this.jsonOnEmpty(); } break; } - this.state = 7555; + this.state = 7567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 7554; + this.state = 7566; this.jsonOnError(); } } - this.state = 7557; + this.state = 7569; this.match(MySqlParser.RR_BRACKET); } break; @@ -44284,13 +44328,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7561; + this.state = 7573; this.match(MySqlParser.KW_WHEN); - this.state = 7562; + this.state = 7574; localContext._condition = this.functionArg(); - this.state = 7563; + this.state = 7575; this.match(MySqlParser.KW_THEN); - this.state = 7564; + this.state = 7576; localContext._consequent = this.functionArg(); } } @@ -44313,30 +44357,30 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 766, MySqlParser.RULE_levelsInWeightString); let _la: number; try { - this.state = 7580; + this.state = 7592; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { case 1: localContext = new LevelWeightListContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7566; + this.state = 7578; this.match(MySqlParser.KW_LEVEL); - this.state = 7567; + this.state = 7579; this.levelInWeightListElement(); - this.state = 7572; + this.state = 7584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7568; + this.state = 7580; this.match(MySqlParser.COMMA); - this.state = 7569; + this.state = 7581; this.levelInWeightListElement(); } } - this.state = 7574; + this.state = 7586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44346,13 +44390,13 @@ export class MySqlParser extends antlr.Parser { localContext = new LevelWeightRangeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7575; + this.state = 7587; this.match(MySqlParser.KW_LEVEL); - this.state = 7576; + this.state = 7588; (localContext as LevelWeightRangeContext)._firstLevel = this.decimalLiteral(); - this.state = 7577; + this.state = 7589; this.match(MySqlParser.MINUS); - this.state = 7578; + this.state = 7590; (localContext as LevelWeightRangeContext)._lastLevel = this.decimalLiteral(); } break; @@ -44379,14 +44423,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7582; + this.state = 7594; this.decimalLiteral(); - this.state = 7584; + this.state = 7596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || _la === 45 || _la === 830) { { - this.state = 7583; + this.state = 7595; localContext._orderType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45 || _la === 830)) { @@ -44420,7 +44464,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 770, MySqlParser.RULE_aggregateWindowedFunction); let _la: number; try { - this.state = 7645; + this.state = 7657; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AVG: @@ -44429,7 +44473,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SUM: this.enterOuterAlt(localContext, 1); { - this.state = 7586; + this.state = 7598; _la = this.tokenStream.LA(1); if(!(((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 8400897) !== 0))) { this.errorHandler.recoverInline(this); @@ -44438,14 +44482,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7587; + this.state = 7599; this.match(MySqlParser.LR_BRACKET); - this.state = 7589; + this.state = 7601; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 7588; + this.state = 7600; localContext._aggregator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -44458,16 +44502,16 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 7591; + this.state = 7603; this.functionArg(); - this.state = 7592; + this.state = 7604; this.match(MySqlParser.RR_BRACKET); - this.state = 7594; + this.state = 7606; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { case 1: { - this.state = 7593; + this.state = 7605; this.overClause(); } break; @@ -44477,52 +44521,52 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_COUNT: this.enterOuterAlt(localContext, 2); { - this.state = 7596; + this.state = 7608; this.match(MySqlParser.KW_COUNT); - this.state = 7597; + this.state = 7609; this.match(MySqlParser.LR_BRACKET); - this.state = 7605; + this.state = 7617; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { case 1: { - this.state = 7598; + this.state = 7610; localContext._starArg = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 7600; + this.state = 7612; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 7599; + this.state = 7611; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7602; + this.state = 7614; this.functionArg(); } break; case 3: { - this.state = 7603; + this.state = 7615; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); - this.state = 7604; + this.state = 7616; this.functionArgs(); } break; } - this.state = 7607; + this.state = 7619; this.match(MySqlParser.RR_BRACKET); - this.state = 7609; + this.state = 7621; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { case 1: { - this.state = 7608; + this.state = 7620; this.overClause(); } break; @@ -44541,7 +44585,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_VARIANCE: this.enterOuterAlt(localContext, 3); { - this.state = 7611; + this.state = 7623; _la = this.tokenStream.LA(1); if(!(((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 62652423) !== 0))) { this.errorHandler.recoverInline(this); @@ -44550,28 +44594,28 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7612; + this.state = 7624; this.match(MySqlParser.LR_BRACKET); - this.state = 7614; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { - case 1: - { - this.state = 7613; - localContext._aggregator = this.match(MySqlParser.KW_ALL); - } - break; - } - this.state = 7616; - this.functionArg(); - this.state = 7617; - this.match(MySqlParser.RR_BRACKET); - this.state = 7619; + this.state = 7626; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { case 1: { - this.state = 7618; + this.state = 7625; + localContext._aggregator = this.match(MySqlParser.KW_ALL); + } + break; + } + this.state = 7628; + this.functionArg(); + this.state = 7629; + this.match(MySqlParser.RR_BRACKET); + this.state = 7631; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { + case 1: + { + this.state = 7630; this.overClause(); } break; @@ -44581,65 +44625,65 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_GROUP_CONCAT: this.enterOuterAlt(localContext, 4); { - this.state = 7621; + this.state = 7633; this.match(MySqlParser.KW_GROUP_CONCAT); - this.state = 7622; + this.state = 7634; this.match(MySqlParser.LR_BRACKET); - this.state = 7624; + this.state = 7636; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { case 1: { - this.state = 7623; + this.state = 7635; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); } break; } - this.state = 7626; + this.state = 7638; this.functionArgs(); - this.state = 7637; + this.state = 7649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7627; + this.state = 7639; this.match(MySqlParser.KW_ORDER); - this.state = 7628; + this.state = 7640; this.match(MySqlParser.KW_BY); - this.state = 7629; + this.state = 7641; this.orderByExpression(); - this.state = 7634; + this.state = 7646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7630; + this.state = 7642; this.match(MySqlParser.COMMA); - this.state = 7631; + this.state = 7643; this.orderByExpression(); } } - this.state = 7636; + this.state = 7648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 7641; + this.state = 7653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 156) { { - this.state = 7639; + this.state = 7651; this.match(MySqlParser.KW_SEPARATOR); - this.state = 7640; + this.state = 7652; localContext._separator = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7643; + this.state = 7655; this.match(MySqlParser.RR_BRACKET); } break; @@ -44666,14 +44710,14 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 772, MySqlParser.RULE_nonAggregateWindowedFunction); let _la: number; try { - this.state = 7685; + this.state = 7697; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LAG: case MySqlParser.KW_LEAD: this.enterOuterAlt(localContext, 1); { - this.state = 7647; + this.state = 7659; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 269)) { this.errorHandler.recoverInline(this); @@ -44682,37 +44726,37 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7648; + this.state = 7660; this.match(MySqlParser.LR_BRACKET); - this.state = 7649; + this.state = 7661; this.expression(0); - this.state = 7652; + this.state = 7664; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { case 1: { - this.state = 7650; + this.state = 7662; this.match(MySqlParser.COMMA); - this.state = 7651; + this.state = 7663; this.decimalLiteral(); } break; } - this.state = 7656; + this.state = 7668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7654; + this.state = 7666; this.match(MySqlParser.COMMA); - this.state = 7655; + this.state = 7667; this.decimalLiteral(); } } - this.state = 7658; + this.state = 7670; this.match(MySqlParser.RR_BRACKET); - this.state = 7659; + this.state = 7671; this.overClause(); } break; @@ -44720,7 +44764,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_LAST_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 7661; + this.state = 7673; _la = this.tokenStream.LA(1); if(!(_la === 265 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -44729,13 +44773,13 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7662; + this.state = 7674; this.match(MySqlParser.LR_BRACKET); - this.state = 7663; + this.state = 7675; this.expression(0); - this.state = 7664; + this.state = 7676; this.match(MySqlParser.RR_BRACKET); - this.state = 7665; + this.state = 7677; this.overClause(); } break; @@ -44746,7 +44790,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_ROW_NUMBER: this.enterOuterAlt(localContext, 3); { - this.state = 7667; + this.state = 7679; _la = this.tokenStream.LA(1); if(!(((((_la - 263)) & ~0x1F) === 0 && ((1 << (_la - 263)) & 14339) !== 0))) { this.errorHandler.recoverInline(this); @@ -44755,45 +44799,45 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7668; + this.state = 7680; this.match(MySqlParser.LR_BRACKET); - this.state = 7669; + this.state = 7681; this.match(MySqlParser.RR_BRACKET); - this.state = 7670; + this.state = 7682; this.overClause(); } break; case MySqlParser.KW_NTH_VALUE: this.enterOuterAlt(localContext, 4); { - this.state = 7671; + this.state = 7683; this.match(MySqlParser.KW_NTH_VALUE); - this.state = 7672; + this.state = 7684; this.match(MySqlParser.LR_BRACKET); - this.state = 7673; + this.state = 7685; this.expression(0); - this.state = 7674; + this.state = 7686; this.match(MySqlParser.COMMA); - this.state = 7675; + this.state = 7687; this.decimalLiteral(); - this.state = 7676; + this.state = 7688; this.match(MySqlParser.RR_BRACKET); - this.state = 7677; + this.state = 7689; this.overClause(); } break; case MySqlParser.KW_NTILE: this.enterOuterAlt(localContext, 5); { - this.state = 7679; + this.state = 7691; this.match(MySqlParser.KW_NTILE); - this.state = 7680; + this.state = 7692; this.match(MySqlParser.LR_BRACKET); - this.state = 7681; + this.state = 7693; this.decimalLiteral(); - this.state = 7682; + this.state = 7694; this.match(MySqlParser.RR_BRACKET); - this.state = 7683; + this.state = 7695; this.overClause(); } break; @@ -44821,18 +44865,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7687; + this.state = 7699; this.match(MySqlParser.KW_OVER); - this.state = 7693; + this.state = 7705; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 7688; + this.state = 7700; this.match(MySqlParser.LR_BRACKET); - this.state = 7689; + this.state = 7701; this.windowSpec(); - this.state = 7690; + this.state = 7702; this.match(MySqlParser.RR_BRACKET); } break; @@ -45385,7 +45429,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 7692; + this.state = 7704; this.windowName(); } break; @@ -45415,42 +45459,42 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7696; + this.state = 7708; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { case 1: { - this.state = 7695; + this.state = 7707; this.windowName(); } break; } - this.state = 7699; + this.state = 7711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 7698; + this.state = 7710; this.partitionClause(); } } - this.state = 7702; + this.state = 7714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7701; + this.state = 7713; this.orderByClause(); } } - this.state = 7705; + this.state = 7717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 587) { { - this.state = 7704; + this.state = 7716; this.frameClause(); } } @@ -45477,7 +45521,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7707; + this.state = 7719; this.uid(); } } @@ -45501,9 +45545,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7709; + this.state = 7721; this.frameUnits(); - this.state = 7710; + this.state = 7722; this.frameExtent(); } } @@ -45528,7 +45572,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7712; + this.state = 7724; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 587)) { this.errorHandler.recoverInline(this); @@ -45557,20 +45601,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new FrameExtentContext(this.context, this.state); this.enterRule(localContext, 784, MySqlParser.RULE_frameExtent); try { - this.state = 7716; + this.state = 7728; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7714; + this.state = 7726; this.frameRange(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7715; + this.state = 7727; this.frameBetween(); } break; @@ -45596,13 +45640,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7718; + this.state = 7730; this.match(MySqlParser.KW_BETWEEN); - this.state = 7719; + this.state = 7731; this.frameRange(); - this.state = 7720; + this.state = 7732; this.match(MySqlParser.KW_AND); - this.state = 7721; + this.state = 7733; this.frameRange(); } } @@ -45625,24 +45669,24 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 788, MySqlParser.RULE_frameRange); let _la: number; try { - this.state = 7730; + this.state = 7742; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7723; + this.state = 7735; this.match(MySqlParser.KW_CURRENT); - this.state = 7724; + this.state = 7736; this.match(MySqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7725; + this.state = 7737; this.match(MySqlParser.KW_UNBOUNDED); - this.state = 7726; + this.state = 7738; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -45656,9 +45700,9 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7727; + this.state = 7739; this.expression(0); - this.state = 7728; + this.state = 7740; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -45692,25 +45736,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7732; + this.state = 7744; this.match(MySqlParser.KW_PARTITION); - this.state = 7733; + this.state = 7745; this.match(MySqlParser.KW_BY); - this.state = 7734; + this.state = 7746; this.expression(0); - this.state = 7739; + this.state = 7751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7735; + this.state = 7747; this.match(MySqlParser.COMMA); - this.state = 7736; + this.state = 7748; this.expression(0); } } - this.state = 7741; + this.state = 7753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -45734,7 +45778,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new ScalarFunctionNameContext(this.context, this.state); this.enterRule(localContext, 792, MySqlParser.RULE_scalarFunctionName); try { - this.state = 7766; + this.state = 7778; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DATABASE: @@ -45791,168 +45835,168 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.MOD: this.enterOuterAlt(localContext, 1); { - this.state = 7742; + this.state = 7754; this.functionNameBase(); } break; case MySqlParser.KW_ASCII: this.enterOuterAlt(localContext, 2); { - this.state = 7743; + this.state = 7755; this.match(MySqlParser.KW_ASCII); } break; case MySqlParser.KW_CURDATE: this.enterOuterAlt(localContext, 3); { - this.state = 7744; + this.state = 7756; this.match(MySqlParser.KW_CURDATE); } break; case MySqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 4); { - this.state = 7745; + this.state = 7757; this.match(MySqlParser.KW_CURRENT_DATE); } break; case MySqlParser.KW_CURRENT_TIME: this.enterOuterAlt(localContext, 5); { - this.state = 7746; + this.state = 7758; this.match(MySqlParser.KW_CURRENT_TIME); } break; case MySqlParser.KW_CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 6); { - this.state = 7747; + this.state = 7759; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case MySqlParser.KW_CURTIME: this.enterOuterAlt(localContext, 7); { - this.state = 7748; + this.state = 7760; this.match(MySqlParser.KW_CURTIME); } break; case MySqlParser.KW_DATE_ADD: this.enterOuterAlt(localContext, 8); { - this.state = 7749; + this.state = 7761; this.match(MySqlParser.KW_DATE_ADD); } break; case MySqlParser.KW_DATE_SUB: this.enterOuterAlt(localContext, 9); { - this.state = 7750; + this.state = 7762; this.match(MySqlParser.KW_DATE_SUB); } break; case MySqlParser.KW_IF: this.enterOuterAlt(localContext, 10); { - this.state = 7751; + this.state = 7763; this.match(MySqlParser.KW_IF); } break; case MySqlParser.KW_INSERT: this.enterOuterAlt(localContext, 11); { - this.state = 7752; + this.state = 7764; this.match(MySqlParser.KW_INSERT); } break; case MySqlParser.KW_LOCALTIME: this.enterOuterAlt(localContext, 12); { - this.state = 7753; + this.state = 7765; this.match(MySqlParser.KW_LOCALTIME); } break; case MySqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 13); { - this.state = 7754; + this.state = 7766; this.match(MySqlParser.KW_LOCALTIMESTAMP); } break; case MySqlParser.KW_MID: this.enterOuterAlt(localContext, 14); { - this.state = 7755; + this.state = 7767; this.match(MySqlParser.KW_MID); } break; case MySqlParser.KW_NOW: this.enterOuterAlt(localContext, 15); { - this.state = 7756; + this.state = 7768; this.match(MySqlParser.KW_NOW); } break; case MySqlParser.KW_REPEAT: this.enterOuterAlt(localContext, 16); { - this.state = 7757; + this.state = 7769; this.match(MySqlParser.KW_REPEAT); } break; case MySqlParser.KW_REPLACE: this.enterOuterAlt(localContext, 17); { - this.state = 7758; + this.state = 7770; this.match(MySqlParser.KW_REPLACE); } break; case MySqlParser.KW_SUBSTR: this.enterOuterAlt(localContext, 18); { - this.state = 7759; + this.state = 7771; this.match(MySqlParser.KW_SUBSTR); } break; case MySqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 19); { - this.state = 7760; + this.state = 7772; this.match(MySqlParser.KW_SUBSTRING); } break; case MySqlParser.KW_SYSDATE: this.enterOuterAlt(localContext, 20); { - this.state = 7761; + this.state = 7773; this.match(MySqlParser.KW_SYSDATE); } break; case MySqlParser.KW_TRIM: this.enterOuterAlt(localContext, 21); { - this.state = 7762; + this.state = 7774; this.match(MySqlParser.KW_TRIM); } break; case MySqlParser.KW_UTC_DATE: this.enterOuterAlt(localContext, 22); { - this.state = 7763; + this.state = 7775; this.match(MySqlParser.KW_UTC_DATE); } break; case MySqlParser.KW_UTC_TIME: this.enterOuterAlt(localContext, 23); { - this.state = 7764; + this.state = 7776; this.match(MySqlParser.KW_UTC_TIME); } break; case MySqlParser.KW_UTC_TIMESTAMP: this.enterOuterAlt(localContext, 24); { - this.state = 7765; + this.state = 7777; this.match(MySqlParser.KW_UTC_TIMESTAMP); } break; @@ -45981,7 +46025,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7768; + this.state = 7780; _la = this.tokenStream.LA(1); if(!(_la === 512 || _la === 529)) { this.errorHandler.recoverInline(this); @@ -45990,11 +46034,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7769; + this.state = 7781; this.match(MySqlParser.LR_BRACKET); - this.state = 7770; + this.state = 7782; this.functionArg(); - this.state = 7771; + this.state = 7783; this.match(MySqlParser.RR_BRACKET); } } @@ -46019,21 +46063,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7773; + this.state = 7785; this.functionArg(); - this.state = 7778; + this.state = 7790; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7774; + this.state = 7786; this.match(MySqlParser.COMMA); - this.state = 7775; + this.state = 7787; this.functionArg(); } } - this.state = 7780; + this.state = 7792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46057,34 +46101,27 @@ export class MySqlParser extends antlr.Parser { let localContext = new FunctionArgContext(this.context, this.state); this.enterRule(localContext, 798, MySqlParser.RULE_functionArg); try { - this.state = 7785; + this.state = 7796; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7781; + this.state = 7793; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7782; - this.columnName(); + this.state = 7794; + this.functionCall(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7783; - this.functionCall(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 7784; + this.state = 7795; this.expression(0); } break; @@ -46123,16 +46160,16 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7798; + this.state = 7809; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1132, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1133, this.context) ) { case 1: { localContext = new NotExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7788; + this.state = 7799; (localContext as NotExpressionContext)._notOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 860)) { @@ -46142,7 +46179,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7789; + this.state = 7800; this.expression(4); } break; @@ -46151,21 +46188,21 @@ export class MySqlParser extends antlr.Parser { localContext = new IsExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7790; + this.state = 7801; this.predicate(0); - this.state = 7791; + this.state = 7802; this.match(MySqlParser.KW_IS); - this.state = 7793; + this.state = 7804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7792; + this.state = 7803; this.match(MySqlParser.KW_NOT); } } - this.state = 7795; + this.state = 7806; (localContext as IsExpressionContext)._testValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179 || _la === 674)) { @@ -46182,15 +46219,15 @@ export class MySqlParser extends antlr.Parser { localContext = new PredicateExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7797; + this.state = 7808; this.predicate(0); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7806; + this.state = 7817; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1133, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -46201,20 +46238,20 @@ export class MySqlParser extends antlr.Parser { { localContext = new LogicalExpressionContext(new ExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expression); - this.state = 7800; + this.state = 7811; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7801; + this.state = 7812; this.logicalOperator(); - this.state = 7802; + this.state = 7813; this.expression(4); } } } - this.state = 7808; + this.state = 7819; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1133, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context); } } } @@ -46256,13 +46293,13 @@ export class MySqlParser extends antlr.Parser { this.context = localContext; previousContext = localContext; - this.state = 7810; + this.state = 7821; this.expressionAtom(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7876; + this.state = 7886; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -46270,87 +46307,72 @@ export class MySqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 7874; + this.state = 7884; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { case 1: { - localContext = new BinaryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); - (localContext as BinaryComparisonPredicateContext)._left = previousContext; + localContext = new BetweenPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7812; - if (!(this.precpred(this.context, 8))) { - throw this.createFailedPredicateException("this.precpred(this.context, 8)"); + this.state = 7823; + if (!(this.precpred(this.context, 6))) { + throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7813; - this.comparisonOperator(); - this.state = 7814; - (localContext as BinaryComparisonPredicateContext)._right = this.predicate(9); + this.state = 7825; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 114) { + { + this.state = 7824; + this.match(MySqlParser.KW_NOT); + } + } + + this.state = 7827; + this.match(MySqlParser.KW_BETWEEN); + this.state = 7828; + this.predicate(0); + this.state = 7829; + this.match(MySqlParser.KW_AND); + this.state = 7830; + this.predicate(7); } break; case 2: { - localContext = new BetweenPredicateContext(new PredicateContext(parentContext, parentState)); + localContext = new SoundsLikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7816; - if (!(this.precpred(this.context, 6))) { - throw this.createFailedPredicateException("this.precpred(this.context, 6)"); + this.state = 7832; + if (!(this.precpred(this.context, 5))) { + throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 7818; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 114) { - { - this.state = 7817; - this.match(MySqlParser.KW_NOT); - } - } - - this.state = 7820; - this.match(MySqlParser.KW_BETWEEN); - this.state = 7821; - this.predicate(0); - this.state = 7822; - this.match(MySqlParser.KW_AND); - this.state = 7823; - this.predicate(7); + this.state = 7833; + this.match(MySqlParser.KW_SOUNDS); + this.state = 7834; + this.match(MySqlParser.KW_LIKE); + this.state = 7835; + this.predicate(6); } break; case 3: - { - localContext = new SoundsLikePredicateContext(new PredicateContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7825; - if (!(this.precpred(this.context, 5))) { - throw this.createFailedPredicateException("this.precpred(this.context, 5)"); - } - this.state = 7826; - this.match(MySqlParser.KW_SOUNDS); - this.state = 7827; - this.match(MySqlParser.KW_LIKE); - this.state = 7828; - this.predicate(6); - } - break; - case 4: { localContext = new RegexpPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7829; + this.state = 7836; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7831; + this.state = 7838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7830; + this.state = 7837; this.match(MySqlParser.KW_NOT); } } - this.state = 7833; + this.state = 7840; (localContext as RegexpPredicateContext)._regex = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 151)) { @@ -46360,156 +46382,170 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7834; + this.state = 7841; this.predicate(4); } break; - case 5: + case 4: { localContext = new InPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7835; - if (!(this.precpred(this.context, 10))) { - throw this.createFailedPredicateException("this.precpred(this.context, 10)"); + this.state = 7842; + if (!(this.precpred(this.context, 9))) { + throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 7837; + this.state = 7844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7836; + this.state = 7843; this.match(MySqlParser.KW_NOT); } } - this.state = 7839; + this.state = 7846; this.match(MySqlParser.KW_IN); - this.state = 7840; + this.state = 7847; this.match(MySqlParser.LR_BRACKET); - this.state = 7843; + this.state = 7850; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1138, this.context) ) { case 1: { - this.state = 7841; + this.state = 7848; this.selectStatement(); } break; case 2: { - this.state = 7842; + this.state = 7849; this.expressions(); } break; } - this.state = 7845; + this.state = 7852; this.match(MySqlParser.RR_BRACKET); } break; + case 5: + { + localContext = new IsNullPredicateContext(new PredicateContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); + this.state = 7854; + if (!(this.precpred(this.context, 8))) { + throw this.createFailedPredicateException("this.precpred(this.context, 8)"); + } + this.state = 7855; + this.match(MySqlParser.KW_IS); + this.state = 7856; + this.nullNotnull(); + } + break; case 6: { - localContext = new IsNullPredicateContext(new PredicateContext(parentContext, parentState)); + localContext = new BinaryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7847; - if (!(this.precpred(this.context, 9))) { - throw this.createFailedPredicateException("this.precpred(this.context, 9)"); - } - this.state = 7848; - this.match(MySqlParser.KW_IS); - this.state = 7849; - this.nullNotnull(); - } - break; - case 7: - { - localContext = new SubqueryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7850; + this.state = 7857; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 7851; + this.state = 7858; this.comparisonOperator(); - this.state = 7852; - (localContext as SubqueryComparisonPredicateContext)._quantifier = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 7 || _la === 309 || _la === 602)) { - (localContext as SubqueryComparisonPredicateContext)._quantifier = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 7853; - this.match(MySqlParser.LR_BRACKET); - this.state = 7854; - this.selectStatement(); - this.state = 7855; - this.match(MySqlParser.RR_BRACKET); - } - break; - case 8: - { - localContext = new LikePredicateContext(new PredicateContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7857; - if (!(this.precpred(this.context, 4))) { - throw this.createFailedPredicateException("this.precpred(this.context, 4)"); - } - this.state = 7859; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 114) { - { - this.state = 7858; - this.match(MySqlParser.KW_NOT); - } - } - - this.state = 7861; - this.match(MySqlParser.KW_LIKE); - this.state = 7862; - this.predicate(0); this.state = 7865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { case 1: { - this.state = 7863; - this.match(MySqlParser.KW_ESCAPE); + this.state = 7859; + (localContext as BinaryComparisonPredicateContext)._quantifier = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 7 || _la === 309 || _la === 602)) { + (localContext as BinaryComparisonPredicateContext)._quantifier = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 7860; + this.match(MySqlParser.LR_BRACKET); + this.state = 7861; + (localContext as BinaryComparisonPredicateContext)._subQuery = this.selectStatement(); + this.state = 7862; + this.match(MySqlParser.RR_BRACKET); + } + break; + case 2: + { this.state = 7864; + (localContext as BinaryComparisonPredicateContext)._right = this.predicate(0); + } + break; + } + } + break; + case 7: + { + localContext = new LikePredicateContext(new PredicateContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); + this.state = 7867; + if (!(this.precpred(this.context, 4))) { + throw this.createFailedPredicateException("this.precpred(this.context, 4)"); + } + this.state = 7869; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 114) { + { + this.state = 7868; + this.match(MySqlParser.KW_NOT); + } + } + + this.state = 7871; + this.match(MySqlParser.KW_LIKE); + this.state = 7872; + this.predicate(0); + this.state = 7875; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { + case 1: + { + this.state = 7873; + this.match(MySqlParser.KW_ESCAPE); + this.state = 7874; this.match(MySqlParser.STRING_LITERAL); } break; } } break; - case 9: + case 8: { localContext = new JsonMemberOfPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7867; + this.state = 7877; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7868; + this.state = 7878; this.match(MySqlParser.KW_MEMBER); - this.state = 7869; + this.state = 7879; this.match(MySqlParser.KW_OF); - this.state = 7870; + this.state = 7880; this.match(MySqlParser.LR_BRACKET); - this.state = 7871; + this.state = 7881; this.predicate(0); - this.state = 7872; + this.state = 7882; this.match(MySqlParser.RR_BRACKET); } break; } } } - this.state = 7878; + this.state = 7888; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context); } } } @@ -46546,187 +46582,187 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7927; + this.state = 7937; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { localContext = new ConstantExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7880; + this.state = 7890; this.constant(); } break; case 2: { - localContext = new ColumnNameExpressionAtomContext(localContext); + localContext = new FunctionCallExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7881; - this.columnName(); + this.state = 7891; + this.functionCall(); } break; case 3: { - localContext = new FunctionCallExpressionAtomContext(localContext); + localContext = new MysqlVariableExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7882; - this.functionCall(); + this.state = 7892; + this.mysqlVariable(); } break; case 4: { - localContext = new MysqlVariableExpressionAtomContext(localContext); + localContext = new UnaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7883; - this.mysqlVariable(); + this.state = 7893; + this.unaryOperator(); + this.state = 7894; + this.expressionAtom(12); } break; case 5: { - localContext = new UnaryExpressionAtomContext(localContext); + localContext = new BinaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7884; - this.unaryOperator(); - this.state = 7885; + this.state = 7896; + this.match(MySqlParser.KW_BINARY); + this.state = 7897; this.expressionAtom(11); } break; case 6: { - localContext = new BinaryExpressionAtomContext(localContext); + localContext = new VariableAssignExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7887; - this.match(MySqlParser.KW_BINARY); - this.state = 7888; + this.state = 7898; + this.match(MySqlParser.LOCAL_ID); + this.state = 7899; + this.match(MySqlParser.VAR_ASSIGN); + this.state = 7900; this.expressionAtom(10); } break; case 7: - { - localContext = new VariableAssignExpressionAtomContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 7889; - this.match(MySqlParser.LOCAL_ID); - this.state = 7890; - this.match(MySqlParser.VAR_ASSIGN); - this.state = 7891; - this.expressionAtom(9); - } - break; - case 8: { localContext = new NestedExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7892; + this.state = 7901; this.match(MySqlParser.LR_BRACKET); - this.state = 7893; + this.state = 7902; this.expression(0); - this.state = 7898; + this.state = 7907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7894; + this.state = 7903; this.match(MySqlParser.COMMA); - this.state = 7895; + this.state = 7904; this.expression(0); } } - this.state = 7900; + this.state = 7909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7901; + this.state = 7910; this.match(MySqlParser.RR_BRACKET); } break; - case 9: + case 8: { localContext = new NestedRowExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7903; + this.state = 7912; this.match(MySqlParser.KW_ROW); - this.state = 7904; + this.state = 7913; this.match(MySqlParser.LR_BRACKET); - this.state = 7905; + this.state = 7914; this.expression(0); - this.state = 7908; + this.state = 7917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7906; + this.state = 7915; this.match(MySqlParser.COMMA); - this.state = 7907; + this.state = 7916; this.expression(0); } } - this.state = 7910; + this.state = 7919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 7912; + this.state = 7921; + this.match(MySqlParser.RR_BRACKET); + } + break; + case 9: + { + localContext = new ExistsExpressionAtomContext(localContext); + this.context = localContext; + previousContext = localContext; + this.state = 7923; + this.match(MySqlParser.KW_EXISTS); + this.state = 7924; + this.match(MySqlParser.LR_BRACKET); + this.state = 7925; + this.selectStatement(); + this.state = 7926; this.match(MySqlParser.RR_BRACKET); } break; case 10: { - localContext = new ExistsExpressionAtomContext(localContext); + localContext = new SubqueryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7914; - this.match(MySqlParser.KW_EXISTS); - this.state = 7915; + this.state = 7928; this.match(MySqlParser.LR_BRACKET); - this.state = 7916; + this.state = 7929; this.selectStatement(); - this.state = 7917; + this.state = 7930; this.match(MySqlParser.RR_BRACKET); } break; case 11: { - localContext = new SubqueryExpressionAtomContext(localContext); + localContext = new IntervalExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7919; - this.match(MySqlParser.LR_BRACKET); - this.state = 7920; - this.selectStatement(); - this.state = 7921; - this.match(MySqlParser.RR_BRACKET); + this.state = 7932; + this.match(MySqlParser.KW_INTERVAL); + this.state = 7933; + this.expression(0); + this.state = 7934; + this.intervalType(); } break; case 12: { - localContext = new IntervalExpressionAtomContext(localContext); + localContext = new ColumnNameExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7923; - this.match(MySqlParser.KW_INTERVAL); - this.state = 7924; - this.expression(0); - this.state = 7925; - this.intervalType(); + this.state = 7936; + this.columnName(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7946; + this.state = 7956; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -46734,74 +46770,74 @@ export class MySqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 7944; + this.state = 7954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { case 1: - { - localContext = new BitExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); - (localContext as BitExpressionAtomContext)._left = previousContext; - this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7929; - if (!(this.precpred(this.context, 3))) { - throw this.createFailedPredicateException("this.precpred(this.context, 3)"); - } - this.state = 7930; - this.bitOperator(); - this.state = 7931; - (localContext as BitExpressionAtomContext)._right = this.expressionAtom(4); - } - break; - case 2: - { - localContext = new MathExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); - (localContext as MathExpressionAtomContext)._left = previousContext; - this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7933; - if (!(this.precpred(this.context, 2))) { - throw this.createFailedPredicateException("this.precpred(this.context, 2)"); - } - this.state = 7934; - this.mathOperator(); - this.state = 7935; - (localContext as MathExpressionAtomContext)._right = this.expressionAtom(3); - } - break; - case 3: { localContext = new JsonExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as JsonExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7937; - if (!(this.precpred(this.context, 1))) { - throw this.createFailedPredicateException("this.precpred(this.context, 1)"); - } - this.state = 7938; - this.jsonOperator(); this.state = 7939; - (localContext as JsonExpressionAtomContext)._right = this.expressionAtom(2); + if (!(this.precpred(this.context, 4))) { + throw this.createFailedPredicateException("this.precpred(this.context, 4)"); + } + this.state = 7940; + this.jsonOperator(); + this.state = 7941; + (localContext as JsonExpressionAtomContext)._right = this.expressionAtom(5); + } + break; + case 2: + { + localContext = new BitExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); + (localContext as BitExpressionAtomContext)._left = previousContext; + this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); + this.state = 7943; + if (!(this.precpred(this.context, 3))) { + throw this.createFailedPredicateException("this.precpred(this.context, 3)"); + } + this.state = 7944; + this.bitOperator(); + this.state = 7945; + (localContext as BitExpressionAtomContext)._right = this.expressionAtom(4); + } + break; + case 3: + { + localContext = new MathExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); + (localContext as MathExpressionAtomContext)._left = previousContext; + this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); + this.state = 7947; + if (!(this.precpred(this.context, 2))) { + throw this.createFailedPredicateException("this.precpred(this.context, 2)"); + } + this.state = 7948; + this.mathOperator(); + this.state = 7949; + (localContext as MathExpressionAtomContext)._right = this.expressionAtom(3); } break; case 4: { localContext = new CollateExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7941; - if (!(this.precpred(this.context, 13))) { - throw this.createFailedPredicateException("this.precpred(this.context, 13)"); + this.state = 7951; + if (!(this.precpred(this.context, 14))) { + throw this.createFailedPredicateException("this.precpred(this.context, 14)"); } - this.state = 7942; + this.state = 7952; this.match(MySqlParser.KW_COLLATE); - this.state = 7943; + this.state = 7953; this.collationName(); } break; } } } - this.state = 7948; + this.state = 7958; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context); } } } @@ -46826,7 +46862,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7949; + this.state = 7959; _la = this.tokenStream.LA(1); if(!(_la === 114 || ((((_la - 853)) & ~0x1F) === 0 && ((1 << (_la - 853)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -46855,43 +46891,43 @@ export class MySqlParser extends antlr.Parser { let localContext = new ComparisonOperatorContext(this.context, this.state); this.enterRule(localContext, 808, MySqlParser.RULE_comparisonOperator); try { - this.state = 7959; + this.state = 7969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7951; - this.comparisonBase(); + this.state = 7961; + this.match(MySqlParser.LESS_SYMBOL); + this.state = 7962; + this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7952; - this.match(MySqlParser.LESS_SYMBOL); - this.state = 7953; - this.match(MySqlParser.GREATER_SYMBOL); + this.state = 7963; + this.match(MySqlParser.EXCLAMATION_SYMBOL); + this.state = 7964; + this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7954; - this.match(MySqlParser.EXCLAMATION_SYMBOL); - this.state = 7955; + this.state = 7965; + this.match(MySqlParser.LESS_SYMBOL); + this.state = 7966; this.match(MySqlParser.EQUAL_SYMBOL); + this.state = 7967; + this.match(MySqlParser.GREATER_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7956; - this.match(MySqlParser.LESS_SYMBOL); - this.state = 7957; - this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 7958; - this.match(MySqlParser.GREATER_SYMBOL); + this.state = 7968; + this.comparisonBase(); } break; } @@ -46914,46 +46950,46 @@ export class MySqlParser extends antlr.Parser { let localContext = new ComparisonBaseContext(this.context, this.state); this.enterRule(localContext, 810, MySqlParser.RULE_comparisonBase); try { - this.state = 7968; + this.state = 7978; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7961; + this.state = 7971; + this.match(MySqlParser.LESS_SYMBOL); + this.state = 7972; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7962; + this.state = 7973; this.match(MySqlParser.GREATER_SYMBOL); + this.state = 7974; + this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7963; - this.match(MySqlParser.LESS_SYMBOL); + this.state = 7975; + this.match(MySqlParser.EQUAL_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7964; - this.match(MySqlParser.LESS_SYMBOL); - this.state = 7965; - this.match(MySqlParser.EQUAL_SYMBOL); + this.state = 7976; + this.match(MySqlParser.GREATER_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7966; - this.match(MySqlParser.GREATER_SYMBOL); - this.state = 7967; - this.match(MySqlParser.EQUAL_SYMBOL); + this.state = 7977; + this.match(MySqlParser.LESS_SYMBOL); } break; } @@ -46976,45 +47012,45 @@ export class MySqlParser extends antlr.Parser { let localContext = new LogicalOperatorContext(this.context, this.state); this.enterRule(localContext, 812, MySqlParser.RULE_logicalOperator); try { - this.state = 7977; + this.state = 7987; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 7970; + this.state = 7980; this.match(MySqlParser.KW_AND); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 7971; + this.state = 7981; this.match(MySqlParser.BIT_AND_OP); - this.state = 7972; + this.state = 7982; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.KW_XOR: this.enterOuterAlt(localContext, 3); { - this.state = 7973; + this.state = 7983; this.match(MySqlParser.KW_XOR); } break; case MySqlParser.KW_OR: this.enterOuterAlt(localContext, 4); { - this.state = 7974; + this.state = 7984; this.match(MySqlParser.KW_OR); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 7975; + this.state = 7985; this.match(MySqlParser.BIT_OR_OP); - this.state = 7976; + this.state = 7986; this.match(MySqlParser.BIT_OR_OP); } break; @@ -47040,45 +47076,45 @@ export class MySqlParser extends antlr.Parser { let localContext = new BitOperatorContext(this.context, this.state); this.enterRule(localContext, 814, MySqlParser.RULE_bitOperator); try { - this.state = 7986; + this.state = 7996; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 7979; + this.state = 7989; this.match(MySqlParser.LESS_SYMBOL); - this.state = 7980; + this.state = 7990; this.match(MySqlParser.LESS_SYMBOL); } break; case MySqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 7981; + this.state = 7991; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 7982; + this.state = 7992; this.match(MySqlParser.GREATER_SYMBOL); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 7983; + this.state = 7993; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 7984; + this.state = 7994; this.match(MySqlParser.BIT_XOR_OP); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 7985; + this.state = 7995; this.match(MySqlParser.BIT_OR_OP); } break; @@ -47107,7 +47143,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7988; + this.state = 7998; _la = this.tokenStream.LA(1); if(!(((((_la - 850)) & ~0x1F) === 0 && ((1 << (_la - 850)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -47136,26 +47172,26 @@ export class MySqlParser extends antlr.Parser { let localContext = new JsonOperatorContext(this.context, this.state); this.enterRule(localContext, 818, MySqlParser.RULE_jsonOperator); try { - this.state = 7995; + this.state = 8005; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1153, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7990; + this.state = 8000; this.match(MySqlParser.MINUS); - this.state = 7991; + this.state = 8001; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7992; + this.state = 8002; this.match(MySqlParser.MINUS); - this.state = 7993; + this.state = 8003; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 7994; + this.state = 8004; this.match(MySqlParser.GREATER_SYMBOL); } break; @@ -47182,7 +47218,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7997; + this.state = 8007; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 756)) & ~0x1F) === 0 && ((1 << (_la - 756)) & 4294967295) !== 0) || ((((_la - 788)) & ~0x1F) === 0 && ((1 << (_la - 788)) & 511) !== 0))) { this.errorHandler.recoverInline(this); @@ -47214,7 +47250,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7999; + this.state = 8009; _la = this.tokenStream.LA(1); if(!(((((_la - 809)) & ~0x1F) === 0 && ((1 << (_la - 809)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -47246,7 +47282,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 8001; + this.state = 8011; _la = this.tokenStream.LA(1); if(!(((((_la - 717)) & ~0x1F) === 0 && ((1 << (_la - 717)) & 68026371) !== 0) || ((((_la - 749)) & ~0x1F) === 0 && ((1 << (_la - 749)) & 11) !== 0))) { this.errorHandler.recoverInline(this); @@ -47278,7 +47314,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 8003; + this.state = 8013; _la = this.tokenStream.LA(1); if(!(((((_la - 696)) & ~0x1F) === 0 && ((1 << (_la - 696)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -47310,7 +47346,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 8005; + this.state = 8015; _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1179679) !== 0))) { this.errorHandler.recoverInline(this); @@ -47342,7 +47378,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 8007; + this.state = 8017; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014211) !== 0) || _la === 74 || _la === 95 || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 16673) !== 0) || _la === 160 || _la === 170 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1648345089) !== 0) || ((((_la - 277)) & ~0x1F) === 0 && ((1 << (_la - 277)) & 4160749823) !== 0) || ((((_la - 309)) & ~0x1F) === 0 && ((1 << (_la - 309)) & 4292870141) !== 0) || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 4294967287) !== 0) || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 4024434671) !== 0) || ((((_la - 406)) & ~0x1F) === 0 && ((1 << (_la - 406)) & 3747609503) !== 0) || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4227727359) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 3758096239) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 2678062559) !== 0) || ((((_la - 534)) & ~0x1F) === 0 && ((1 << (_la - 534)) & 2682256863) !== 0) || ((((_la - 566)) & ~0x1F) === 0 && ((1 << (_la - 566)) & 4294957695) !== 0) || ((((_la - 598)) & ~0x1F) === 0 && ((1 << (_la - 598)) & 255) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 2128608253) !== 0) || ((((_la - 704)) & ~0x1F) === 0 && ((1 << (_la - 704)) & 1053007341) !== 0) || ((((_la - 737)) & ~0x1F) === 0 && ((1 << (_la - 737)) & 478907) !== 0) || ((((_la - 802)) & ~0x1F) === 0 && ((1 << (_la - 802)) & 3230662657) !== 0) || _la === 838)) { this.errorHandler.recoverInline(this); @@ -47374,7 +47410,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 8009; + this.state = 8019; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 98 || _la === 150 || _la === 152 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 23) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 16375299) !== 0) || _la === 296 || _la === 435 || ((((_la - 686)) & ~0x1F) === 0 && ((1 << (_la - 686)) & 261121) !== 0) || _la === 746 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 145190393) !== 0) || _la === 856)) { this.errorHandler.recoverInline(this); @@ -47406,6 +47442,8 @@ export class MySqlParser extends antlr.Parser { return this.queryExpressionBody_sempred(localContext as QueryExpressionBodyContext, predIndex); case 105: return this.queryItem_sempred(localContext as QueryItemContext, predIndex); + case 329: + return this.columnName_sempred(localContext as ColumnNameContext, predIndex); case 400: return this.expression_sempred(localContext as ExpressionContext, predIndex); case 401: @@ -47431,17 +47469,22 @@ export class MySqlParser extends antlr.Parser { } return true; } - private expression_sempred(localContext: ExpressionContext | null, predIndex: number): boolean { + private columnName_sempred(localContext: ColumnNameContext | null, predIndex: number): boolean { switch (predIndex) { case 3: + return this.shouldMatchEmpty(); + } + return true; + } + private expression_sempred(localContext: ExpressionContext | null, predIndex: number): boolean { + switch (predIndex) { + case 4: return this.precpred(this.context, 3); } return true; } private predicate_sempred(localContext: PredicateContext | null, predIndex: number): boolean { switch (predIndex) { - case 4: - return this.precpred(this.context, 8); case 5: return this.precpred(this.context, 6); case 6: @@ -47449,9 +47492,9 @@ export class MySqlParser extends antlr.Parser { case 7: return this.precpred(this.context, 3); case 8: - return this.precpred(this.context, 10); - case 9: return this.precpred(this.context, 9); + case 9: + return this.precpred(this.context, 8); case 10: return this.precpred(this.context, 7); case 11: @@ -47464,19 +47507,19 @@ export class MySqlParser extends antlr.Parser { private expressionAtom_sempred(localContext: ExpressionAtomContext | null, predIndex: number): boolean { switch (predIndex) { case 13: - return this.precpred(this.context, 3); + return this.precpred(this.context, 4); case 14: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 15: - return this.precpred(this.context, 1); + return this.precpred(this.context, 2); case 16: - return this.precpred(this.context, 13); + return this.precpred(this.context, 14); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,895,8012,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,895,8022,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -47579,3596 +47622,3600 @@ export class MySqlParser extends antlr.Parser { 16,10,16,12,16,1164,9,16,1,16,1,16,1,17,1,17,1,17,3,17,1171,8,17, 1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, 1,18,5,18,1187,8,18,10,18,12,18,1190,9,18,1,18,1,18,1,19,1,19,3, - 19,1196,8,19,1,19,1,19,3,19,1200,8,19,1,19,1,19,1,19,1,19,3,19,1206, - 8,19,1,19,5,19,1209,8,19,10,19,12,19,1212,9,19,3,19,1214,8,19,1, - 19,3,19,1217,8,19,1,19,1,19,3,19,1221,8,19,1,19,1,19,3,19,1225,8, - 19,1,19,1,19,3,19,1229,8,19,1,19,1,19,3,19,1233,8,19,1,19,5,19,1236, - 8,19,10,19,12,19,1239,9,19,3,19,1241,8,19,1,19,3,19,1244,8,19,1, - 19,3,19,1247,8,19,1,19,3,19,1250,8,19,1,19,1,19,1,19,1,19,3,19,1256, - 8,19,1,19,1,19,3,19,1260,8,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19, - 1,19,3,19,1270,8,19,3,19,1272,8,19,1,20,1,20,3,20,1276,8,20,1,20, - 1,20,1,20,1,20,1,20,3,20,1283,8,20,1,20,1,20,3,20,1287,8,20,1,20, - 3,20,1290,8,20,1,20,1,20,1,20,3,20,1295,8,20,1,20,1,20,3,20,1299, - 8,20,1,20,3,20,1302,8,20,1,20,1,20,3,20,1306,8,20,1,20,3,20,1309, - 8,20,1,21,1,21,3,21,1313,8,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, - 1,21,1,21,1,21,1,21,3,21,1326,8,21,1,21,3,21,1329,8,21,1,21,1,21, - 3,21,1333,8,21,1,21,3,21,1336,8,21,1,21,1,21,3,21,1340,8,21,1,21, - 3,21,1343,8,21,1,21,1,21,3,21,1347,8,21,1,21,3,21,1350,8,21,1,21, - 1,21,3,21,1354,8,21,1,21,3,21,1357,8,21,1,21,3,21,1360,8,21,1,21, - 1,21,3,21,1364,8,21,1,21,3,21,1367,8,21,1,21,1,21,3,21,1371,8,21, - 1,21,1,21,1,22,1,22,3,22,1377,8,22,1,22,1,22,3,22,1381,8,22,1,22, - 1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,3,22,1393,8,22,1,22, - 1,22,1,23,1,23,3,23,1399,8,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24, - 5,24,1408,8,24,10,24,12,24,1411,9,24,1,24,1,24,3,24,1415,8,24,1, - 24,1,24,1,24,1,24,1,24,1,24,3,24,1423,8,24,1,25,1,25,3,25,1427,8, - 25,1,25,1,25,1,25,3,25,1432,8,25,1,25,3,25,1435,8,25,1,25,1,25,1, - 25,3,25,1440,8,25,1,25,1,25,1,25,1,25,1,25,1,25,3,25,1448,8,25,1, - 25,1,25,1,25,3,25,1453,8,25,1,25,1,25,1,25,1,25,3,25,1459,8,25,1, - 25,1,25,1,25,3,25,1464,8,25,1,25,1,25,3,25,1468,8,25,3,25,1470,8, - 25,1,26,3,26,1473,8,26,1,26,1,26,3,26,1477,8,26,1,26,1,26,3,26,1481, - 8,26,1,26,3,26,1484,8,26,1,26,1,26,3,26,1488,8,26,1,26,1,26,3,26, - 1492,8,26,1,26,1,26,3,26,1496,8,26,1,26,1,26,1,26,1,26,3,26,1502, - 8,26,1,26,3,26,1505,8,26,1,27,1,27,1,27,1,27,1,27,3,27,1512,8,27, - 1,28,1,28,1,28,3,28,1517,8,28,1,29,1,29,1,29,1,29,3,29,1523,8,29, - 1,30,1,30,1,30,5,30,1528,8,30,10,30,12,30,1531,9,30,1,30,1,30,1, - 30,3,30,1536,8,30,1,30,1,30,1,30,1,30,5,30,1542,8,30,10,30,12,30, - 1545,9,30,3,30,1547,8,30,1,30,1,30,1,30,5,30,1552,8,30,10,30,12, - 30,1555,9,30,3,30,1557,8,30,3,30,1559,8,30,1,31,1,31,1,31,1,31,3, - 31,1565,8,31,1,32,1,32,1,32,1,32,3,32,1571,8,32,1,32,1,32,1,33,1, - 33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1588, - 8,33,1,34,1,34,1,34,1,34,1,34,3,34,1595,8,34,1,35,1,35,1,35,1,36, - 1,36,3,36,1602,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, - 1,36,3,36,1614,8,36,1,36,1,36,1,36,3,36,1619,8,36,1,36,3,36,1622, - 8,36,1,37,3,37,1625,8,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38,1,38, - 3,38,1635,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, - 1,38,3,38,1648,8,38,1,38,1,38,1,38,3,38,1653,8,38,1,39,1,39,1,39, - 1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,3,39,1669, - 8,39,1,40,1,40,1,40,1,40,5,40,1675,8,40,10,40,12,40,1678,9,40,1, - 40,1,40,1,41,1,41,1,41,1,41,1,41,3,41,1687,8,41,1,41,3,41,1690,8, - 41,1,41,1,41,5,41,1694,8,41,10,41,12,41,1697,9,41,1,41,1,41,3,41, - 1701,8,41,1,41,3,41,1704,8,41,1,41,1,41,5,41,1708,8,41,10,41,12, - 41,1711,9,41,1,41,3,41,1714,8,41,1,41,1,41,1,41,3,41,1719,8,41,1, - 41,1,41,5,41,1723,8,41,10,41,12,41,1726,9,41,1,41,3,41,1729,8,41, - 1,41,1,41,3,41,1733,8,41,1,41,3,41,1736,8,41,1,41,3,41,1739,8,41, - 1,41,1,41,5,41,1743,8,41,10,41,12,41,1746,9,41,1,41,3,41,1749,8, - 41,1,41,1,41,1,41,3,41,1754,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1, - 41,1,41,1,41,3,41,1765,8,41,1,42,3,42,1768,8,42,1,42,1,42,1,42,1, - 42,1,42,3,42,1775,8,42,1,42,3,42,1778,8,42,1,43,1,43,3,43,1782,8, - 43,1,44,1,44,5,44,1786,8,44,10,44,12,44,1789,9,44,1,45,1,45,1,45, - 1,45,1,45,1,45,1,45,1,45,1,45,3,45,1800,8,45,1,45,3,45,1803,8,45, - 1,45,1,45,1,45,3,45,1808,8,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45, - 1,45,1,45,1,45,1,45,3,45,1821,8,45,1,45,1,45,1,45,1,45,1,45,3,45, - 1828,8,45,1,45,1,45,1,45,1,45,3,45,1834,8,45,1,46,1,46,1,46,3,46, - 1839,8,46,1,46,1,46,3,46,1843,8,46,1,46,3,46,1846,8,46,1,47,1,47, - 1,47,1,47,1,47,1,47,3,47,1854,8,47,1,47,1,47,1,47,1,47,1,47,1,47, - 3,47,1862,8,47,3,47,1864,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48, - 1,48,3,48,1874,8,48,1,49,1,49,3,49,1878,8,49,1,49,3,49,1881,8,49, - 1,49,1,49,3,49,1885,8,49,1,49,1,49,1,49,3,49,1890,8,49,1,49,1,49, - 1,49,3,49,1895,8,49,1,49,1,49,1,49,3,49,1900,8,49,1,49,1,49,3,49, - 1904,8,49,1,49,1,49,3,49,1908,8,49,1,49,1,49,3,49,1912,8,49,1,49, - 1,49,3,49,1916,8,49,1,49,1,49,3,49,1920,8,49,1,49,1,49,3,49,1924, - 8,49,1,49,1,49,1,49,3,49,1929,8,49,1,49,1,49,1,49,3,49,1934,8,49, - 1,49,1,49,1,49,3,49,1939,8,49,1,49,1,49,1,49,1,49,3,49,1945,8,49, - 1,49,1,49,1,49,3,49,1950,8,49,1,49,1,49,1,49,3,49,1955,8,49,1,49, - 1,49,1,49,3,49,1960,8,49,1,49,1,49,1,49,3,49,1965,8,49,1,49,1,49, - 1,49,3,49,1970,8,49,1,49,1,49,1,49,1,49,3,49,1976,8,49,1,49,1,49, - 1,49,3,49,1981,8,49,1,49,1,49,1,49,3,49,1986,8,49,1,49,1,49,1,49, - 3,49,1991,8,49,1,49,1,49,1,49,3,49,1996,8,49,1,49,1,49,1,49,3,49, - 2001,8,49,1,49,1,49,1,49,3,49,2006,8,49,1,49,1,49,1,49,3,49,2011, - 8,49,1,49,1,49,1,49,1,49,1,49,3,49,2018,8,49,1,49,1,49,1,49,3,49, - 2023,8,49,1,49,1,49,1,49,3,49,2028,8,49,1,49,1,49,1,49,3,49,2033, - 8,49,1,49,1,49,3,49,2037,8,49,1,49,1,49,1,49,3,49,2042,8,49,1,49, - 1,49,1,49,1,49,1,49,1,49,3,49,2050,8,49,1,49,1,49,1,49,3,49,2055, - 8,49,1,49,1,49,1,49,1,49,3,49,2061,8,49,1,50,1,50,1,51,1,51,1,51, - 1,52,1,52,1,52,1,52,1,52,3,52,2073,8,52,1,52,1,52,1,52,1,52,1,52, - 3,52,2080,8,52,3,52,2082,8,52,1,52,1,52,1,52,1,52,5,52,2088,8,52, - 10,52,12,52,2091,9,52,1,52,1,52,3,52,2095,8,52,1,53,3,53,2098,8, - 53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,2106,8,53,1,53,1,53,1,53,1, - 53,3,53,2112,8,53,1,53,1,53,3,53,2116,8,53,1,53,1,53,1,53,1,53,1, - 53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,2129,8,53,1,53,1,53,1,53,1, - 53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,2141,8,53,3,53,2143,8,53,1, - 54,3,54,2146,8,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2154,8,54,1, - 54,1,54,1,54,1,54,3,54,2160,8,54,1,54,1,54,1,54,1,54,3,54,2166,8, - 54,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,2177,8,55,10, - 55,12,55,2180,9,55,1,55,1,55,5,55,2184,8,55,10,55,12,55,2187,9,55, - 1,55,1,55,1,55,1,55,5,55,2193,8,55,10,55,12,55,2196,9,55,1,55,1, - 55,3,55,2200,8,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,2209,8, - 55,10,55,12,55,2212,9,55,1,55,1,55,1,55,1,55,5,55,2218,8,55,10,55, - 12,55,2221,9,55,1,55,1,55,3,55,2225,8,55,1,55,1,55,1,55,1,55,1,55, - 1,55,1,55,1,55,5,55,2235,8,55,10,55,12,55,2238,9,55,1,55,1,55,5, - 55,2242,8,55,10,55,12,55,2245,9,55,1,55,1,55,1,55,1,55,5,55,2251, - 8,55,10,55,12,55,2254,9,55,1,55,1,55,3,55,2258,8,55,1,55,1,55,1, - 55,1,55,1,55,1,55,1,55,1,55,5,55,2268,8,55,10,55,12,55,2271,9,55, - 1,55,1,55,5,55,2275,8,55,10,55,12,55,2278,9,55,1,55,1,55,1,55,1, - 55,5,55,2284,8,55,10,55,12,55,2287,9,55,1,55,1,55,3,55,2291,8,55, - 1,55,1,55,1,55,5,55,2296,8,55,10,55,12,55,2299,9,55,1,55,1,55,1, - 55,1,55,5,55,2305,8,55,10,55,12,55,2308,9,55,1,55,1,55,3,55,2312, - 8,55,3,55,2314,8,55,1,56,1,56,1,56,3,56,2319,8,56,1,57,1,57,1,57, - 1,57,4,57,2325,8,57,11,57,12,57,2326,1,57,1,57,1,58,1,58,1,58,5, - 58,2334,8,58,10,58,12,58,2337,9,58,1,59,3,59,2340,8,59,1,59,3,59, - 2343,8,59,1,59,1,59,3,59,2347,8,59,1,59,1,59,1,59,3,59,2352,8,59, - 1,59,1,59,1,59,1,59,3,59,2358,8,59,1,59,1,59,1,59,1,59,3,59,2364, - 8,59,1,59,1,59,1,59,3,59,2369,8,59,1,59,1,59,1,59,3,59,2374,8,59, - 1,59,1,59,1,59,3,59,2379,8,59,1,59,1,59,1,59,3,59,2384,8,59,1,59, - 3,59,2387,8,59,1,60,1,60,1,60,3,60,2392,8,60,1,60,4,60,2395,8,60, - 11,60,12,60,2396,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2407, - 8,60,1,61,1,61,3,61,2411,8,61,1,61,1,61,1,61,1,61,1,61,3,61,2418, - 8,61,1,61,1,61,1,61,3,61,2423,8,61,1,61,3,61,2426,8,61,1,61,1,61, - 1,61,3,61,2431,8,61,1,61,3,61,2434,8,61,1,61,1,61,3,61,2438,8,61, - 1,61,1,61,3,61,2442,8,61,1,62,1,62,1,62,1,62,5,62,2448,8,62,10,62, - 12,62,2451,9,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1,64, - 1,64,1,64,1,64,1,64,1,64,1,64,3,64,2469,8,64,1,64,3,64,2472,8,64, - 1,64,3,64,2475,8,64,1,64,1,64,3,64,2479,8,64,1,64,1,64,1,65,1,65, - 1,65,1,65,5,65,2487,8,65,10,65,12,65,2490,9,65,1,66,1,66,1,66,1, - 66,1,66,1,66,1,66,1,66,5,66,2500,8,66,10,66,12,66,2503,9,66,1,66, - 1,66,1,67,1,67,1,67,1,67,1,67,1,67,5,67,2513,8,67,10,67,12,67,2516, - 9,67,3,67,2518,8,67,1,67,1,67,5,67,2522,8,67,10,67,12,67,2525,9, - 67,3,67,2527,8,67,1,68,1,68,3,68,2531,8,68,1,68,1,68,1,68,1,68,1, - 68,1,68,1,68,3,68,2540,8,68,1,68,3,68,2543,8,68,1,68,3,68,2546,8, - 68,1,68,1,68,1,68,3,68,2551,8,68,1,68,1,68,3,68,2555,8,68,1,68,3, - 68,2558,8,68,1,68,1,68,3,68,2562,8,68,1,68,1,68,3,68,2566,8,68,1, - 68,3,68,2569,8,68,1,68,1,68,3,68,2573,8,68,1,68,3,68,2576,8,68,1, - 68,1,68,3,68,2580,8,68,1,68,3,68,2583,8,68,1,69,1,69,1,69,1,69,3, - 69,2589,8,69,1,69,3,69,2592,8,69,1,69,1,69,1,69,3,69,2597,8,69,1, - 69,1,69,1,69,1,69,1,69,1,69,3,69,2605,8,69,1,69,1,69,1,69,1,69,3, - 69,2611,8,69,1,69,1,69,3,69,2615,8,69,1,70,1,70,3,70,2619,8,70,1, - 70,5,70,2622,8,70,10,70,12,70,2625,9,70,1,70,1,70,3,70,2629,8,70, - 1,70,1,70,1,70,1,70,1,70,3,70,2636,8,70,1,70,1,70,3,70,2640,8,70, - 1,70,1,70,1,70,1,70,1,70,1,70,1,70,5,70,2649,8,70,10,70,12,70,2652, - 9,70,1,70,1,70,1,70,1,70,1,70,3,70,2659,8,70,1,70,3,70,2662,8,70, - 1,70,1,70,5,70,2666,8,70,10,70,12,70,2669,9,70,1,70,1,70,1,70,3, - 70,2674,8,70,1,70,3,70,2677,8,70,1,70,1,70,5,70,2681,8,70,10,70, - 12,70,2684,9,70,1,70,1,70,1,70,3,70,2689,8,70,3,70,2691,8,70,1,70, - 1,70,1,70,3,70,2696,8,70,1,70,1,70,5,70,2700,8,70,10,70,12,70,2703, - 9,70,1,70,1,70,1,70,3,70,2708,8,70,3,70,2710,8,70,1,70,1,70,3,70, - 2714,8,70,1,70,3,70,2717,8,70,1,70,3,70,2720,8,70,1,70,1,70,5,70, - 2724,8,70,10,70,12,70,2727,9,70,1,70,1,70,1,70,3,70,2732,8,70,3, - 70,2734,8,70,1,70,1,70,1,70,3,70,2739,8,70,1,70,1,70,1,70,1,70,1, - 70,3,70,2746,8,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2755,8, - 70,1,70,3,70,2758,8,70,1,70,1,70,3,70,2762,8,70,1,70,1,70,1,70,3, - 70,2767,8,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2777,8, - 70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2786,8,70,1,70,1,70,1, - 70,1,70,1,70,1,70,3,70,2794,8,70,1,70,3,70,2797,8,70,1,70,1,70,1, - 70,1,70,1,70,1,70,3,70,2805,8,70,1,70,3,70,2808,8,70,1,70,1,70,1, - 70,1,70,1,70,3,70,2815,8,70,1,70,1,70,1,70,3,70,2820,8,70,1,70,1, - 70,1,70,1,70,1,70,1,70,3,70,2828,8,70,1,70,1,70,1,70,1,70,1,70,1, - 70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2844,8,70,1,70,1, - 70,1,70,3,70,2849,8,70,1,70,1,70,1,70,1,70,1,70,3,70,2856,8,70,1, - 70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1, - 70,1,70,1,70,1,70,3,70,2875,8,70,1,70,1,70,1,70,1,70,3,70,2881,8, - 70,1,71,1,71,1,71,1,71,1,71,1,71,5,71,2889,8,71,10,71,12,71,2892, - 9,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,2903,8,71, - 1,71,1,71,1,71,1,71,1,71,3,71,2910,8,71,1,71,1,71,1,71,1,71,1,71, - 3,71,2917,8,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71, - 1,71,5,71,2930,8,71,10,71,12,71,2933,9,71,1,71,1,71,1,71,1,71,1, - 71,1,71,1,71,1,71,1,71,1,71,3,71,2945,8,71,1,71,1,71,1,71,1,71,3, - 71,2951,8,71,1,71,1,71,1,71,1,71,3,71,2957,8,71,1,71,1,71,1,71,1, - 71,3,71,2963,8,71,1,71,1,71,1,71,1,71,3,71,2969,8,71,1,71,1,71,1, - 71,1,71,3,71,2975,8,71,1,71,1,71,1,71,1,71,3,71,2981,8,71,1,72,1, - 72,1,72,3,72,2986,8,72,1,72,1,72,1,73,1,73,1,73,3,73,2993,8,73,1, - 73,1,73,1,74,1,74,1,74,3,74,3000,8,74,1,74,1,74,1,74,1,74,1,74,3, - 74,3007,8,74,1,74,1,74,1,74,3,74,3012,8,74,1,74,5,74,3015,8,74,10, - 74,12,74,3018,9,74,1,75,1,75,1,75,1,75,1,75,1,75,3,75,3026,8,75, - 1,75,1,75,1,76,1,76,1,76,3,76,3033,8,76,1,76,1,76,1,77,1,77,1,77, - 3,77,3040,8,77,1,77,1,77,1,78,1,78,1,78,3,78,3047,8,78,1,78,1,78, - 1,79,1,79,1,79,1,79,1,79,3,79,3056,8,79,1,79,1,79,1,80,1,80,3,80, - 3062,8,80,1,80,1,80,3,80,3066,8,80,1,80,1,80,3,80,3070,8,80,1,81, - 1,81,3,81,3074,8,81,1,81,1,81,1,81,1,81,3,81,3080,8,81,1,81,3,81, - 3083,8,81,1,82,1,82,1,82,3,82,3088,8,82,1,82,1,82,1,83,1,83,1,83, - 3,83,3095,8,83,1,83,1,83,1,83,5,83,3100,8,83,10,83,12,83,3103,9, - 83,1,83,3,83,3106,8,83,1,84,1,84,1,84,3,84,3111,8,84,1,84,1,84,1, - 85,1,85,1,85,1,85,1,85,1,85,3,85,3121,8,85,1,85,1,85,1,85,1,85,5, - 85,3127,8,85,10,85,12,85,3130,9,85,1,85,1,85,1,85,3,85,3135,8,85, - 1,86,1,86,1,86,1,86,1,86,5,86,3142,8,86,10,86,12,86,3145,9,86,1, - 87,1,87,1,87,1,87,1,88,1,88,3,88,3153,8,88,1,88,1,88,1,89,1,89,1, - 89,1,89,1,89,3,89,3162,8,89,1,89,3,89,3165,8,89,1,90,1,90,3,90,3169, - 8,90,1,91,1,91,1,91,1,92,1,92,1,92,1,92,3,92,3178,8,92,1,93,1,93, - 3,93,3182,8,93,1,93,3,93,3185,8,93,1,93,3,93,3188,8,93,1,93,1,93, - 1,93,1,93,3,93,3194,8,93,1,93,3,93,3197,8,93,1,93,3,93,3200,8,93, - 1,93,1,93,3,93,3204,8,93,1,93,3,93,3207,8,93,1,93,3,93,3210,8,93, - 1,93,3,93,3213,8,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,5,93,3222, - 8,93,10,93,12,93,3225,9,93,3,93,3227,8,93,1,94,1,94,1,94,3,94,3232, - 8,94,1,95,1,95,1,95,1,95,3,95,3238,8,95,1,96,1,96,1,96,3,96,3243, - 8,96,1,96,4,96,3246,8,96,11,96,12,96,3247,1,97,3,97,3251,8,97,1, - 97,1,97,3,97,3255,8,97,1,98,1,98,1,98,3,98,3260,8,98,1,98,3,98,3263, - 8,98,1,98,1,98,1,98,3,98,3268,8,98,1,98,1,98,1,98,1,98,1,98,1,98, - 1,98,1,98,3,98,3278,8,98,1,98,1,98,1,98,3,98,3283,8,98,1,98,1,98, - 4,98,3287,8,98,11,98,12,98,3288,3,98,3291,8,98,1,98,1,98,4,98,3295, - 8,98,11,98,12,98,3296,3,98,3299,8,98,1,98,1,98,1,98,1,98,3,98,3305, - 8,98,1,98,1,98,1,98,1,98,5,98,3311,8,98,10,98,12,98,3314,9,98,1, - 98,1,98,3,98,3318,8,98,1,98,1,98,1,98,1,98,5,98,3324,8,98,10,98, - 12,98,3327,9,98,3,98,3329,8,98,1,99,1,99,1,99,3,99,3334,8,99,1,99, - 3,99,3337,8,99,1,99,1,99,1,99,3,99,3342,8,99,1,99,1,99,1,99,1,99, - 1,99,1,99,3,99,3350,8,99,1,99,1,99,1,99,1,99,3,99,3356,8,99,1,99, - 1,99,3,99,3360,8,99,3,99,3362,8,99,1,99,1,99,1,99,1,99,3,99,3368, - 8,99,1,99,1,99,1,99,1,99,5,99,3374,8,99,10,99,12,99,3377,9,99,1, - 99,1,99,3,99,3381,8,99,1,99,1,99,1,99,1,99,5,99,3387,8,99,10,99, - 12,99,3390,9,99,3,99,3392,8,99,1,100,1,100,1,100,3,100,3397,8,100, - 1,100,3,100,3400,8,100,1,100,1,100,3,100,3404,8,100,1,100,3,100, - 3407,8,100,1,100,3,100,3410,8,100,1,101,1,101,3,101,3414,8,101,1, - 101,3,101,3417,8,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101,3425, - 8,101,1,101,1,101,1,101,1,101,3,101,3431,8,101,1,101,1,101,3,101, - 3435,8,101,1,102,1,102,5,102,3439,8,102,10,102,12,102,3442,9,102, - 1,102,1,102,3,102,3446,8,102,1,102,1,102,3,102,3450,8,102,3,102, - 3452,8,102,1,102,1,102,5,102,3456,8,102,10,102,12,102,3459,9,102, - 1,102,3,102,3462,8,102,1,102,3,102,3465,8,102,1,102,3,102,3468,8, - 102,1,102,3,102,3471,8,102,1,102,1,102,5,102,3475,8,102,10,102,12, - 102,3478,9,102,1,102,1,102,3,102,3482,8,102,1,102,3,102,3485,8,102, - 1,102,3,102,3488,8,102,1,102,3,102,3491,8,102,1,102,3,102,3494,8, - 102,3,102,3496,8,102,1,103,3,103,3499,8,103,1,103,1,103,3,103,3503, - 8,103,1,103,3,103,3506,8,103,1,103,3,103,3509,8,103,1,104,1,104, - 1,104,1,104,1,104,1,104,3,104,3517,8,104,1,104,1,104,1,104,1,104, - 3,104,3523,8,104,1,104,5,104,3526,8,104,10,104,12,104,3529,9,104, - 1,105,1,105,1,105,1,105,1,105,1,105,3,105,3537,8,105,1,105,5,105, - 3540,8,105,10,105,12,105,3543,9,105,1,106,1,106,1,106,1,106,3,106, - 3549,8,106,1,106,3,106,3552,8,106,1,106,3,106,3555,8,106,1,106,1, - 106,3,106,3559,8,106,1,107,1,107,3,107,3563,8,107,1,108,1,108,1, - 108,1,108,3,108,3569,8,108,1,108,1,108,3,108,3573,8,108,1,109,1, - 109,1,109,5,109,3578,8,109,10,109,12,109,3581,9,109,1,109,3,109, - 3584,8,109,1,109,3,109,3587,8,109,1,109,3,109,3590,8,109,1,110,1, - 110,1,110,3,110,3595,8,110,1,111,1,111,1,111,1,111,1,111,3,111,3602, - 8,111,1,112,1,112,1,112,1,112,1,112,1,112,5,112,3610,8,112,10,112, - 12,112,3613,9,112,1,113,1,113,1,113,1,113,5,113,3619,8,113,10,113, - 12,113,3622,9,113,1,114,1,114,1,114,1,114,1,115,1,115,3,115,3630, - 8,115,1,116,1,116,1,116,1,116,1,116,1,116,5,116,3638,8,116,10,116, - 12,116,3641,9,116,3,116,3643,8,116,1,116,1,116,3,116,3647,8,116, - 1,116,1,116,1,116,1,116,3,116,3653,8,116,1,117,1,117,3,117,3657, - 8,117,1,117,3,117,3660,8,117,1,117,3,117,3663,8,117,1,117,1,117, - 1,117,3,117,3668,8,117,1,117,3,117,3671,8,117,1,117,1,117,1,117, - 1,117,1,117,3,117,3678,8,117,1,117,1,117,3,117,3682,8,117,1,117, - 3,117,3685,8,117,1,117,1,117,3,117,3689,8,117,1,118,1,118,3,118, - 3693,8,118,1,118,3,118,3696,8,118,1,118,3,118,3699,8,118,1,118,1, - 118,1,118,3,118,3704,8,118,1,118,1,118,1,118,1,118,3,118,3710,8, - 118,5,118,3712,8,118,10,118,12,118,3715,9,118,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,3,118,3724,8,118,1,118,1,118,1,118,1,118, - 3,118,3730,8,118,5,118,3732,8,118,10,118,12,118,3735,9,118,1,118, - 1,118,1,118,3,118,3740,8,118,1,118,1,118,3,118,3744,8,118,1,119, - 1,119,1,119,1,119,3,119,3750,8,119,1,119,3,119,3753,8,119,1,120, - 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,3765, - 8,120,1,120,1,120,3,120,3769,8,120,1,120,1,120,3,120,3773,8,120, - 1,121,1,121,1,121,1,121,1,121,1,121,3,121,3781,8,121,1,121,1,121, - 3,121,3785,8,121,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123, - 1,123,1,123,5,123,3797,8,123,10,123,12,123,3800,9,123,1,124,1,124, - 3,124,3804,8,124,1,124,3,124,3807,8,124,1,124,1,124,3,124,3811,8, - 124,1,124,3,124,3814,8,124,1,124,1,124,1,124,1,124,5,124,3820,8, - 124,10,124,12,124,3823,9,124,1,124,1,124,3,124,3827,8,124,1,124, - 3,124,3830,8,124,1,124,3,124,3833,8,124,1,125,1,125,3,125,3837,8, - 125,1,125,3,125,3840,8,125,1,125,1,125,1,125,1,125,1,125,5,125,3847, - 8,125,10,125,12,125,3850,9,125,1,125,1,125,3,125,3854,8,125,1,126, - 1,126,1,126,1,126,1,126,5,126,3861,8,126,10,126,12,126,3864,9,126, - 1,127,1,127,3,127,3868,8,127,1,128,1,128,1,128,5,128,3873,8,128, - 10,128,12,128,3876,9,128,1,129,1,129,5,129,3880,8,129,10,129,12, - 129,3883,9,129,1,129,1,129,1,129,5,129,3888,8,129,10,129,12,129, - 3891,9,129,1,129,1,129,1,129,3,129,3896,8,129,1,130,1,130,1,130, - 1,130,1,130,1,130,3,130,3904,8,130,1,130,3,130,3907,8,130,1,130, - 3,130,3910,8,130,1,130,1,130,1,130,5,130,3915,8,130,10,130,12,130, - 3918,9,130,3,130,3920,8,130,1,130,3,130,3923,8,130,1,130,1,130,1, - 130,1,130,1,130,3,130,3930,8,130,1,130,3,130,3933,8,130,1,130,1, - 130,3,130,3937,8,130,1,130,1,130,1,130,1,130,3,130,3943,8,130,1, - 131,1,131,1,131,1,131,1,132,1,132,1,132,1,132,3,132,3953,8,132,1, - 132,1,132,3,132,3957,8,132,1,132,1,132,1,133,1,133,1,133,1,133,1, - 133,3,133,3966,8,133,1,134,3,134,3969,8,134,1,134,1,134,3,134,3973, - 8,134,1,134,1,134,5,134,3977,8,134,10,134,12,134,3980,9,134,1,134, - 1,134,1,134,5,134,3985,8,134,10,134,12,134,3988,9,134,1,134,1,134, - 3,134,3992,8,134,1,134,1,134,3,134,3996,8,134,1,134,1,134,5,134, - 4000,8,134,10,134,12,134,4003,9,134,1,134,1,134,1,134,3,134,4008, - 8,134,1,134,3,134,4011,8,134,3,134,4013,8,134,1,134,1,134,3,134, - 4017,8,134,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,4026, - 8,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,3,136,4036, - 8,136,1,137,1,137,5,137,4040,8,137,10,137,12,137,4043,9,137,1,137, - 1,137,3,137,4047,8,137,1,137,1,137,3,137,4051,8,137,1,137,3,137, - 4054,8,137,1,137,3,137,4057,8,137,1,137,3,137,4060,8,137,1,137,3, - 137,4063,8,137,1,137,3,137,4066,8,137,1,138,1,138,3,138,4070,8,138, - 1,138,1,138,3,138,4074,8,138,1,139,1,139,1,139,1,139,1,139,1,139, - 3,139,4082,8,139,1,139,1,139,3,139,4086,8,139,1,139,3,139,4089,8, - 139,3,139,4091,8,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1, - 140,1,140,1,140,1,140,3,140,4104,8,140,1,140,3,140,4107,8,140,1, - 141,1,141,1,141,5,141,4112,8,141,10,141,12,141,4115,9,141,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,3,142,4124,8,142,1,142,3,142, - 4127,8,142,1,142,1,142,1,142,3,142,4132,8,142,3,142,4134,8,142,1, - 142,1,142,3,142,4138,8,142,1,142,1,142,1,142,1,142,1,142,1,142,3, - 142,4146,8,142,1,143,1,143,1,143,1,143,3,143,4152,8,143,1,143,1, - 143,1,143,1,144,1,144,1,144,1,144,3,144,4161,8,144,1,144,1,144,1, - 144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145,4174,8, - 145,1,146,1,146,3,146,4178,8,146,1,146,1,146,5,146,4182,8,146,10, - 146,12,146,4185,9,146,1,147,1,147,3,147,4189,8,147,1,147,1,147,3, - 147,4193,8,147,1,147,3,147,4196,8,147,1,147,1,147,3,147,4200,8,147, - 1,147,3,147,4203,8,147,1,147,1,147,1,147,1,147,1,147,1,147,3,147, - 4211,8,147,1,147,3,147,4214,8,147,3,147,4216,8,147,1,148,1,148,1, - 148,1,148,5,148,4222,8,148,10,148,12,148,4225,9,148,1,148,1,148, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,3,148,4236,8,148,1,148, - 1,148,4,148,4240,8,148,11,148,12,148,4241,3,148,4244,8,148,1,148, - 1,148,4,148,4248,8,148,11,148,12,148,4249,3,148,4252,8,148,3,148, - 4254,8,148,1,149,1,149,1,149,1,149,3,149,4260,8,149,1,149,1,149, - 1,149,1,149,1,149,1,149,3,149,4268,8,149,1,150,1,150,1,150,1,150, - 1,150,1,150,3,150,4276,8,150,1,151,1,151,3,151,4280,8,151,1,151, - 1,151,3,151,4284,8,151,1,152,1,152,1,152,1,152,1,152,5,152,4291, - 8,152,10,152,12,152,4294,9,152,1,152,1,152,3,152,4298,8,152,1,153, - 1,153,1,153,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154, - 1,154,1,154,1,154,1,154,5,154,4316,8,154,10,154,12,154,4319,9,154, - 1,155,1,155,3,155,4323,8,155,1,156,1,156,1,156,1,156,3,156,4329, - 8,156,1,156,1,156,1,156,1,156,1,156,3,156,4336,8,156,1,157,1,157, - 1,157,3,157,4341,8,157,1,158,1,158,1,158,1,158,1,158,5,158,4348, - 8,158,10,158,12,158,4351,9,158,3,158,4353,8,158,1,159,1,159,3,159, - 4357,8,159,1,160,1,160,3,160,4361,8,160,1,160,1,160,3,160,4365,8, - 160,1,160,3,160,4368,8,160,1,160,3,160,4371,8,160,1,160,3,160,4374, - 8,160,1,161,1,161,3,161,4378,8,161,1,161,1,161,3,161,4382,8,161, - 1,161,3,161,4385,8,161,1,161,3,161,4388,8,161,1,161,3,161,4391,8, - 161,1,162,1,162,1,162,1,163,1,163,3,163,4398,8,163,1,163,1,163,3, - 163,4402,8,163,1,163,1,163,1,164,1,164,1,164,1,164,1,165,1,165,1, - 165,1,165,1,165,5,165,4415,8,165,10,165,12,165,4418,9,165,1,166, - 1,166,1,166,1,167,1,167,1,167,1,167,1,167,1,168,1,168,3,168,4430, - 8,168,1,168,1,168,1,168,1,168,5,168,4436,8,168,10,168,12,168,4439, - 9,168,1,169,1,169,1,169,1,169,1,169,1,169,1,169,3,169,4448,8,169, - 1,170,1,170,3,170,4452,8,170,1,170,3,170,4455,8,170,1,170,1,170, - 1,171,1,171,3,171,4461,8,171,1,171,3,171,4464,8,171,1,171,3,171, - 4467,8,171,1,172,1,172,1,172,1,172,1,172,1,172,1,172,3,172,4476, - 8,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,3,173,4485,8,173, - 1,174,1,174,1,174,1,174,1,174,1,174,5,174,4493,8,174,10,174,12,174, - 4496,9,174,1,174,3,174,4499,8,174,1,175,1,175,1,175,1,175,1,175, - 1,175,5,175,4507,8,175,10,175,12,175,4510,9,175,1,175,3,175,4513, - 8,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,5,176,4522,8,176, - 10,176,12,176,4525,9,176,1,176,3,176,4528,8,176,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,3,177,4537,8,177,1,178,1,178,1,178,1,178, - 1,178,5,178,4544,8,178,10,178,12,178,4547,9,178,3,178,4549,8,178, - 1,178,1,178,3,178,4553,8,178,1,178,5,178,4556,8,178,10,178,12,178, - 4559,9,178,1,178,3,178,4562,8,178,1,179,1,179,1,179,1,179,1,179, - 5,179,4569,8,179,10,179,12,179,4572,9,179,3,179,4574,8,179,1,179, - 3,179,4577,8,179,1,180,1,180,1,180,1,180,1,180,3,180,4584,8,180, - 1,180,1,180,1,180,1,180,3,180,4590,8,180,1,180,1,180,1,180,1,180, - 3,180,4596,8,180,1,181,1,181,1,181,1,182,1,182,1,182,1,182,1,182, + 19,1196,8,19,1,19,1,19,3,19,1200,8,19,1,19,1,19,3,19,1204,8,19,1, + 19,1,19,3,19,1208,8,19,1,19,5,19,1211,8,19,10,19,12,19,1214,9,19, + 3,19,1216,8,19,1,19,3,19,1219,8,19,1,19,3,19,1222,8,19,1,19,3,19, + 1225,8,19,1,19,1,19,1,19,1,19,3,19,1231,8,19,1,19,1,19,3,19,1235, + 8,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,1245,8,19,1,19, + 1,19,3,19,1249,8,19,1,19,1,19,3,19,1253,8,19,1,19,1,19,1,19,1,19, + 3,19,1259,8,19,1,19,5,19,1262,8,19,10,19,12,19,1265,9,19,3,19,1267, + 8,19,1,19,3,19,1270,8,19,3,19,1272,8,19,1,20,1,20,3,20,1276,8,20, + 1,20,1,20,1,20,1,20,1,20,3,20,1283,8,20,1,20,1,20,3,20,1287,8,20, + 1,20,3,20,1290,8,20,1,20,1,20,1,20,3,20,1295,8,20,1,20,1,20,3,20, + 1299,8,20,1,20,3,20,1302,8,20,1,20,1,20,3,20,1306,8,20,1,20,3,20, + 1309,8,20,1,21,1,21,3,21,1313,8,21,1,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,21,1,21,1,21,1,21,3,21,1326,8,21,1,21,3,21,1329,8,21,1,21, + 1,21,3,21,1333,8,21,1,21,3,21,1336,8,21,1,21,1,21,3,21,1340,8,21, + 1,21,3,21,1343,8,21,1,21,1,21,3,21,1347,8,21,1,21,3,21,1350,8,21, + 1,21,1,21,3,21,1354,8,21,1,21,3,21,1357,8,21,1,21,3,21,1360,8,21, + 1,21,1,21,3,21,1364,8,21,1,21,3,21,1367,8,21,1,21,1,21,3,21,1371, + 8,21,1,21,1,21,1,22,1,22,3,22,1377,8,22,1,22,1,22,3,22,1381,8,22, + 1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,3,22,1393,8,22, + 1,22,1,22,1,23,1,23,3,23,1399,8,23,1,23,1,23,1,24,1,24,1,24,1,24, + 1,24,5,24,1408,8,24,10,24,12,24,1411,9,24,1,24,1,24,3,24,1415,8, + 24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,1423,8,24,1,25,1,25,3,25,1427, + 8,25,1,25,1,25,1,25,3,25,1432,8,25,1,25,3,25,1435,8,25,1,25,1,25, + 1,25,3,25,1440,8,25,1,25,1,25,1,25,1,25,1,25,1,25,5,25,1448,8,25, + 10,25,12,25,1451,9,25,1,25,1,25,3,25,1455,8,25,1,25,1,25,1,25,3, + 25,1460,8,25,1,25,1,25,1,25,1,25,3,25,1466,8,25,1,25,1,25,1,25,3, + 25,1471,8,25,1,25,1,25,3,25,1475,8,25,3,25,1477,8,25,1,26,3,26,1480, + 8,26,1,26,1,26,3,26,1484,8,26,1,26,1,26,3,26,1488,8,26,1,26,3,26, + 1491,8,26,1,26,1,26,3,26,1495,8,26,1,26,1,26,3,26,1499,8,26,1,26, + 1,26,3,26,1503,8,26,1,26,1,26,1,26,1,26,3,26,1509,8,26,1,26,3,26, + 1512,8,26,1,27,1,27,1,27,1,27,1,27,3,27,1519,8,27,1,28,1,28,1,28, + 3,28,1524,8,28,1,29,1,29,1,29,1,29,3,29,1530,8,29,1,30,1,30,1,30, + 5,30,1535,8,30,10,30,12,30,1538,9,30,1,30,1,30,1,30,3,30,1543,8, + 30,1,30,1,30,1,30,1,30,5,30,1549,8,30,10,30,12,30,1552,9,30,3,30, + 1554,8,30,1,30,1,30,1,30,5,30,1559,8,30,10,30,12,30,1562,9,30,3, + 30,1564,8,30,3,30,1566,8,30,1,31,1,31,1,31,1,31,3,31,1572,8,31,1, + 32,1,32,1,32,1,32,3,32,1578,8,32,1,32,1,32,1,33,1,33,1,33,1,33,1, + 33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1595,8,33,1,34,1, + 34,1,34,1,34,1,34,3,34,1602,8,34,1,35,1,35,1,35,1,36,1,36,3,36,1609, + 8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1621, + 8,36,1,36,1,36,1,36,3,36,1626,8,36,1,36,3,36,1629,8,36,1,37,3,37, + 1632,8,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38,1,38,3,38,1642,8,38, + 1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1655, + 8,38,1,38,1,38,1,38,3,38,1660,8,38,1,39,1,39,1,39,1,39,1,39,1,39, + 1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,3,39,1676,8,39,1,40,1,40, + 1,40,1,40,5,40,1682,8,40,10,40,12,40,1685,9,40,1,40,1,40,1,41,1, + 41,1,41,1,41,1,41,3,41,1694,8,41,1,41,3,41,1697,8,41,1,41,1,41,5, + 41,1701,8,41,10,41,12,41,1704,9,41,1,41,1,41,3,41,1708,8,41,1,41, + 3,41,1711,8,41,1,41,1,41,5,41,1715,8,41,10,41,12,41,1718,9,41,1, + 41,3,41,1721,8,41,1,41,1,41,1,41,3,41,1726,8,41,1,41,1,41,5,41,1730, + 8,41,10,41,12,41,1733,9,41,1,41,3,41,1736,8,41,1,41,1,41,3,41,1740, + 8,41,1,41,3,41,1743,8,41,1,41,3,41,1746,8,41,1,41,1,41,5,41,1750, + 8,41,10,41,12,41,1753,9,41,1,41,3,41,1756,8,41,1,41,1,41,1,41,3, + 41,1761,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,3,41,1772, + 8,41,1,42,3,42,1775,8,42,1,42,1,42,1,42,1,42,1,42,3,42,1782,8,42, + 1,42,3,42,1785,8,42,1,43,1,43,3,43,1789,8,43,1,44,1,44,5,44,1793, + 8,44,10,44,12,44,1796,9,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1, + 45,1,45,3,45,1807,8,45,1,45,3,45,1810,8,45,1,45,1,45,1,45,3,45,1815, + 8,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,3,45, + 1828,8,45,1,45,1,45,1,45,1,45,1,45,3,45,1835,8,45,1,45,1,45,1,45, + 1,45,3,45,1841,8,45,1,46,1,46,1,46,3,46,1846,8,46,1,46,1,46,3,46, + 1850,8,46,1,46,3,46,1853,8,46,1,47,1,47,1,47,1,47,1,47,1,47,3,47, + 1861,8,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1869,8,47,3,47,1871, + 8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1881,8,48,1,49, + 1,49,3,49,1885,8,49,1,49,3,49,1888,8,49,1,49,1,49,3,49,1892,8,49, + 1,49,1,49,1,49,3,49,1897,8,49,1,49,1,49,1,49,3,49,1902,8,49,1,49, + 1,49,1,49,3,49,1907,8,49,1,49,1,49,3,49,1911,8,49,1,49,1,49,3,49, + 1915,8,49,1,49,1,49,3,49,1919,8,49,1,49,1,49,3,49,1923,8,49,1,49, + 1,49,3,49,1927,8,49,1,49,1,49,3,49,1931,8,49,1,49,1,49,1,49,3,49, + 1936,8,49,1,49,1,49,1,49,3,49,1941,8,49,1,49,1,49,1,49,3,49,1946, + 8,49,1,49,1,49,1,49,1,49,3,49,1952,8,49,1,49,1,49,1,49,3,49,1957, + 8,49,1,49,1,49,1,49,3,49,1962,8,49,1,49,1,49,1,49,3,49,1967,8,49, + 1,49,1,49,1,49,3,49,1972,8,49,1,49,1,49,1,49,3,49,1977,8,49,1,49, + 1,49,1,49,1,49,3,49,1983,8,49,1,49,1,49,1,49,3,49,1988,8,49,1,49, + 1,49,1,49,3,49,1993,8,49,1,49,1,49,1,49,3,49,1998,8,49,1,49,1,49, + 1,49,3,49,2003,8,49,1,49,1,49,1,49,3,49,2008,8,49,1,49,1,49,1,49, + 3,49,2013,8,49,1,49,1,49,1,49,3,49,2018,8,49,1,49,1,49,1,49,1,49, + 1,49,3,49,2025,8,49,1,49,1,49,1,49,3,49,2030,8,49,1,49,1,49,1,49, + 3,49,2035,8,49,1,49,1,49,1,49,3,49,2040,8,49,1,49,1,49,3,49,2044, + 8,49,1,49,1,49,1,49,3,49,2049,8,49,1,49,1,49,1,49,1,49,1,49,1,49, + 3,49,2057,8,49,1,49,1,49,1,49,3,49,2062,8,49,1,49,1,49,1,49,1,49, + 3,49,2068,8,49,1,50,1,50,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52, + 3,52,2080,8,52,1,52,1,52,1,52,1,52,1,52,3,52,2087,8,52,3,52,2089, + 8,52,1,52,1,52,1,52,1,52,5,52,2095,8,52,10,52,12,52,2098,9,52,1, + 52,1,52,3,52,2102,8,52,1,53,3,53,2105,8,53,1,53,1,53,1,53,1,53,1, + 53,1,53,3,53,2113,8,53,1,53,1,53,1,53,1,53,3,53,2119,8,53,1,53,1, + 53,3,53,2123,8,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1, + 53,1,53,3,53,2136,8,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1, + 53,1,53,3,53,2148,8,53,3,53,2150,8,53,1,54,3,54,2153,8,54,1,54,1, + 54,1,54,1,54,1,54,1,54,3,54,2161,8,54,1,54,1,54,1,54,1,54,3,54,2167, + 8,54,1,54,1,54,1,54,1,54,3,54,2173,8,54,1,55,1,55,1,55,1,55,1,55, + 1,55,1,55,1,55,1,55,5,55,2184,8,55,10,55,12,55,2187,9,55,1,55,1, + 55,5,55,2191,8,55,10,55,12,55,2194,9,55,1,55,1,55,1,55,1,55,5,55, + 2200,8,55,10,55,12,55,2203,9,55,1,55,1,55,3,55,2207,8,55,1,55,1, + 55,1,55,1,55,1,55,1,55,1,55,5,55,2216,8,55,10,55,12,55,2219,9,55, + 1,55,1,55,1,55,1,55,5,55,2225,8,55,10,55,12,55,2228,9,55,1,55,1, + 55,3,55,2232,8,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,2242, + 8,55,10,55,12,55,2245,9,55,1,55,1,55,5,55,2249,8,55,10,55,12,55, + 2252,9,55,1,55,1,55,1,55,1,55,5,55,2258,8,55,10,55,12,55,2261,9, + 55,1,55,1,55,3,55,2265,8,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1, + 55,5,55,2275,8,55,10,55,12,55,2278,9,55,1,55,1,55,5,55,2282,8,55, + 10,55,12,55,2285,9,55,1,55,1,55,1,55,1,55,5,55,2291,8,55,10,55,12, + 55,2294,9,55,1,55,1,55,3,55,2298,8,55,1,55,1,55,1,55,5,55,2303,8, + 55,10,55,12,55,2306,9,55,1,55,1,55,1,55,1,55,5,55,2312,8,55,10,55, + 12,55,2315,9,55,1,55,1,55,3,55,2319,8,55,3,55,2321,8,55,1,56,1,56, + 1,56,3,56,2326,8,56,1,57,1,57,1,57,1,57,4,57,2332,8,57,11,57,12, + 57,2333,1,57,1,57,1,58,1,58,1,58,5,58,2341,8,58,10,58,12,58,2344, + 9,58,1,59,3,59,2347,8,59,1,59,3,59,2350,8,59,1,59,1,59,3,59,2354, + 8,59,1,59,1,59,1,59,3,59,2359,8,59,1,59,1,59,1,59,1,59,3,59,2365, + 8,59,1,59,1,59,1,59,1,59,3,59,2371,8,59,1,59,1,59,1,59,3,59,2376, + 8,59,1,59,1,59,1,59,3,59,2381,8,59,1,59,1,59,1,59,3,59,2386,8,59, + 1,59,1,59,1,59,3,59,2391,8,59,1,59,3,59,2394,8,59,1,60,1,60,1,60, + 3,60,2399,8,60,1,60,4,60,2402,8,60,11,60,12,60,2403,1,60,1,60,1, + 60,1,60,1,60,1,60,1,60,1,60,3,60,2414,8,60,1,61,1,61,3,61,2418,8, + 61,1,61,1,61,1,61,1,61,1,61,3,61,2425,8,61,1,61,1,61,1,61,3,61,2430, + 8,61,1,61,3,61,2433,8,61,1,61,1,61,1,61,3,61,2438,8,61,1,61,3,61, + 2441,8,61,1,61,1,61,3,61,2445,8,61,1,61,1,61,3,61,2449,8,61,1,62, + 1,62,1,62,1,62,5,62,2455,8,62,10,62,12,62,2458,9,62,1,63,1,63,1, + 63,1,63,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1, + 64,3,64,2476,8,64,1,64,3,64,2479,8,64,1,64,3,64,2482,8,64,1,64,1, + 64,3,64,2486,8,64,1,64,1,64,1,65,1,65,1,65,1,65,5,65,2494,8,65,10, + 65,12,65,2497,9,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,5,66, + 2507,8,66,10,66,12,66,2510,9,66,1,66,1,66,1,67,1,67,1,67,1,67,1, + 67,1,67,5,67,2520,8,67,10,67,12,67,2523,9,67,3,67,2525,8,67,1,67, + 1,67,5,67,2529,8,67,10,67,12,67,2532,9,67,3,67,2534,8,67,1,68,1, + 68,3,68,2538,8,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,2547,8, + 68,1,68,3,68,2550,8,68,1,68,3,68,2553,8,68,1,68,1,68,1,68,3,68,2558, + 8,68,1,68,1,68,3,68,2562,8,68,1,68,3,68,2565,8,68,1,68,1,68,3,68, + 2569,8,68,1,68,1,68,3,68,2573,8,68,1,68,3,68,2576,8,68,1,68,1,68, + 3,68,2580,8,68,1,68,3,68,2583,8,68,1,68,1,68,3,68,2587,8,68,1,68, + 3,68,2590,8,68,1,69,1,69,1,69,1,69,3,69,2596,8,69,1,69,3,69,2599, + 8,69,1,69,1,69,1,69,3,69,2604,8,69,1,69,1,69,1,69,1,69,1,69,1,69, + 3,69,2612,8,69,1,69,1,69,1,69,1,69,3,69,2618,8,69,1,69,1,69,3,69, + 2622,8,69,1,70,1,70,3,70,2626,8,70,1,70,5,70,2629,8,70,10,70,12, + 70,2632,9,70,1,70,1,70,3,70,2636,8,70,1,70,1,70,1,70,1,70,1,70,3, + 70,2643,8,70,1,70,1,70,3,70,2647,8,70,1,70,1,70,1,70,1,70,1,70,1, + 70,1,70,5,70,2656,8,70,10,70,12,70,2659,9,70,1,70,1,70,1,70,1,70, + 1,70,3,70,2666,8,70,1,70,3,70,2669,8,70,1,70,1,70,5,70,2673,8,70, + 10,70,12,70,2676,9,70,1,70,1,70,1,70,3,70,2681,8,70,1,70,3,70,2684, + 8,70,1,70,1,70,5,70,2688,8,70,10,70,12,70,2691,9,70,1,70,1,70,1, + 70,3,70,2696,8,70,3,70,2698,8,70,1,70,1,70,1,70,3,70,2703,8,70,1, + 70,1,70,5,70,2707,8,70,10,70,12,70,2710,9,70,1,70,1,70,1,70,3,70, + 2715,8,70,3,70,2717,8,70,1,70,1,70,3,70,2721,8,70,1,70,3,70,2724, + 8,70,1,70,3,70,2727,8,70,1,70,1,70,5,70,2731,8,70,10,70,12,70,2734, + 9,70,1,70,1,70,1,70,3,70,2739,8,70,3,70,2741,8,70,1,70,1,70,1,70, + 3,70,2746,8,70,1,70,1,70,1,70,1,70,1,70,3,70,2753,8,70,1,70,1,70, + 1,70,1,70,1,70,1,70,1,70,3,70,2762,8,70,1,70,3,70,2765,8,70,1,70, + 1,70,3,70,2769,8,70,1,70,1,70,1,70,3,70,2774,8,70,1,70,1,70,1,70, + 1,70,1,70,1,70,1,70,1,70,3,70,2784,8,70,1,70,1,70,1,70,1,70,1,70, + 1,70,1,70,3,70,2793,8,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2801, + 8,70,1,70,3,70,2804,8,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2812, + 8,70,1,70,3,70,2815,8,70,1,70,1,70,1,70,1,70,1,70,3,70,2822,8,70, + 1,70,1,70,1,70,3,70,2827,8,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70, + 2835,8,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70, + 1,70,1,70,1,70,3,70,2851,8,70,1,70,1,70,1,70,3,70,2856,8,70,1,70, + 1,70,1,70,1,70,1,70,3,70,2863,8,70,1,70,1,70,1,70,1,70,1,70,1,70, + 1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2882, + 8,70,1,70,1,70,1,70,1,70,3,70,2888,8,70,1,71,1,71,1,71,1,71,1,71, + 1,71,5,71,2896,8,71,10,71,12,71,2899,9,71,1,71,1,71,1,71,1,71,1, + 71,1,71,1,71,1,71,1,71,3,71,2910,8,71,1,71,1,71,1,71,1,71,1,71,3, + 71,2917,8,71,1,71,1,71,1,71,1,71,1,71,3,71,2924,8,71,1,71,1,71,1, + 71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,5,71,2937,8,71,10,71, + 12,71,2940,9,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71, + 3,71,2952,8,71,1,71,1,71,1,71,1,71,3,71,2958,8,71,1,71,1,71,1,71, + 1,71,3,71,2964,8,71,1,71,1,71,1,71,1,71,3,71,2970,8,71,1,71,1,71, + 1,71,1,71,3,71,2976,8,71,1,71,1,71,1,71,1,71,3,71,2982,8,71,1,71, + 1,71,1,71,1,71,3,71,2988,8,71,1,72,1,72,1,72,3,72,2993,8,72,1,72, + 1,72,1,73,1,73,1,73,3,73,3000,8,73,1,73,1,73,1,74,1,74,1,74,3,74, + 3007,8,74,1,74,1,74,1,74,1,74,1,74,3,74,3014,8,74,1,74,1,74,1,74, + 3,74,3019,8,74,1,74,5,74,3022,8,74,10,74,12,74,3025,9,74,1,75,1, + 75,1,75,1,75,1,75,1,75,3,75,3033,8,75,1,75,1,75,1,76,1,76,1,76,3, + 76,3040,8,76,1,76,1,76,1,77,1,77,1,77,3,77,3047,8,77,1,77,1,77,1, + 78,1,78,1,78,3,78,3054,8,78,1,78,1,78,1,79,1,79,1,79,1,79,1,79,3, + 79,3063,8,79,1,79,1,79,1,80,1,80,3,80,3069,8,80,1,80,1,80,3,80,3073, + 8,80,1,80,1,80,3,80,3077,8,80,1,81,1,81,3,81,3081,8,81,1,81,1,81, + 1,81,1,81,3,81,3087,8,81,1,81,3,81,3090,8,81,1,82,1,82,1,82,3,82, + 3095,8,82,1,82,1,82,1,83,1,83,1,83,3,83,3102,8,83,1,83,1,83,1,83, + 5,83,3107,8,83,10,83,12,83,3110,9,83,1,83,3,83,3113,8,83,1,84,1, + 84,1,84,3,84,3118,8,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,3, + 85,3128,8,85,1,85,1,85,1,85,1,85,5,85,3134,8,85,10,85,12,85,3137, + 9,85,1,85,1,85,1,85,3,85,3142,8,85,1,86,1,86,1,86,1,86,1,86,5,86, + 3149,8,86,10,86,12,86,3152,9,86,1,87,1,87,1,87,1,87,1,88,1,88,3, + 88,3160,8,88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,3,89,3169,8,89,1, + 89,3,89,3172,8,89,1,90,1,90,3,90,3176,8,90,1,91,1,91,1,91,1,92,1, + 92,1,92,1,92,3,92,3185,8,92,1,93,1,93,3,93,3189,8,93,1,93,3,93,3192, + 8,93,1,93,3,93,3195,8,93,1,93,1,93,1,93,1,93,3,93,3201,8,93,1,93, + 3,93,3204,8,93,1,93,3,93,3207,8,93,1,93,1,93,3,93,3211,8,93,1,93, + 3,93,3214,8,93,1,93,3,93,3217,8,93,1,93,3,93,3220,8,93,1,93,1,93, + 1,93,1,93,1,93,1,93,1,93,5,93,3229,8,93,10,93,12,93,3232,9,93,3, + 93,3234,8,93,1,94,1,94,1,94,3,94,3239,8,94,1,95,1,95,1,95,1,95,3, + 95,3245,8,95,1,96,1,96,1,96,3,96,3250,8,96,1,96,4,96,3253,8,96,11, + 96,12,96,3254,1,97,3,97,3258,8,97,1,97,1,97,3,97,3262,8,97,1,98, + 1,98,1,98,3,98,3267,8,98,1,98,3,98,3270,8,98,1,98,1,98,1,98,3,98, + 3275,8,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,3,98,3285,8,98, + 1,98,1,98,1,98,3,98,3290,8,98,1,98,1,98,4,98,3294,8,98,11,98,12, + 98,3295,3,98,3298,8,98,1,98,1,98,4,98,3302,8,98,11,98,12,98,3303, + 3,98,3306,8,98,1,98,1,98,1,98,1,98,3,98,3312,8,98,1,98,1,98,1,98, + 1,98,5,98,3318,8,98,10,98,12,98,3321,9,98,1,98,1,98,3,98,3325,8, + 98,1,98,1,98,1,98,1,98,5,98,3331,8,98,10,98,12,98,3334,9,98,3,98, + 3336,8,98,1,99,1,99,1,99,3,99,3341,8,99,1,99,3,99,3344,8,99,1,99, + 1,99,1,99,3,99,3349,8,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,3357, + 8,99,1,99,1,99,1,99,1,99,3,99,3363,8,99,1,99,1,99,3,99,3367,8,99, + 3,99,3369,8,99,1,99,1,99,1,99,1,99,3,99,3375,8,99,1,99,1,99,1,99, + 1,99,5,99,3381,8,99,10,99,12,99,3384,9,99,1,99,1,99,3,99,3388,8, + 99,1,99,1,99,1,99,1,99,5,99,3394,8,99,10,99,12,99,3397,9,99,3,99, + 3399,8,99,1,100,1,100,1,100,3,100,3404,8,100,1,100,3,100,3407,8, + 100,1,100,1,100,3,100,3411,8,100,1,100,3,100,3414,8,100,1,100,3, + 100,3417,8,100,1,101,1,101,3,101,3421,8,101,1,101,3,101,3424,8,101, + 1,101,1,101,1,101,1,101,1,101,1,101,3,101,3432,8,101,1,101,1,101, + 1,101,1,101,3,101,3438,8,101,1,101,1,101,3,101,3442,8,101,1,102, + 1,102,5,102,3446,8,102,10,102,12,102,3449,9,102,1,102,1,102,3,102, + 3453,8,102,1,102,1,102,3,102,3457,8,102,3,102,3459,8,102,1,102,1, + 102,5,102,3463,8,102,10,102,12,102,3466,9,102,1,102,3,102,3469,8, + 102,1,102,3,102,3472,8,102,1,102,3,102,3475,8,102,1,102,3,102,3478, + 8,102,1,102,1,102,5,102,3482,8,102,10,102,12,102,3485,9,102,1,102, + 1,102,3,102,3489,8,102,1,102,3,102,3492,8,102,1,102,3,102,3495,8, + 102,1,102,3,102,3498,8,102,1,102,3,102,3501,8,102,3,102,3503,8,102, + 1,103,3,103,3506,8,103,1,103,1,103,3,103,3510,8,103,1,103,3,103, + 3513,8,103,1,103,3,103,3516,8,103,1,104,1,104,1,104,1,104,1,104, + 1,104,3,104,3524,8,104,1,104,1,104,1,104,1,104,3,104,3530,8,104, + 1,104,5,104,3533,8,104,10,104,12,104,3536,9,104,1,105,1,105,1,105, + 1,105,1,105,1,105,3,105,3544,8,105,1,105,5,105,3547,8,105,10,105, + 12,105,3550,9,105,1,106,1,106,1,106,1,106,3,106,3556,8,106,1,106, + 3,106,3559,8,106,1,106,3,106,3562,8,106,1,106,1,106,3,106,3566,8, + 106,1,107,1,107,3,107,3570,8,107,1,108,1,108,1,108,1,108,3,108,3576, + 8,108,1,108,1,108,3,108,3580,8,108,1,109,1,109,1,109,5,109,3585, + 8,109,10,109,12,109,3588,9,109,1,109,3,109,3591,8,109,1,109,3,109, + 3594,8,109,1,109,3,109,3597,8,109,1,110,1,110,1,110,3,110,3602,8, + 110,1,111,1,111,1,111,1,111,1,111,3,111,3609,8,111,1,112,1,112,1, + 112,1,112,1,112,1,112,5,112,3617,8,112,10,112,12,112,3620,9,112, + 1,113,1,113,1,113,1,113,5,113,3626,8,113,10,113,12,113,3629,9,113, + 1,114,1,114,1,114,1,114,1,115,1,115,3,115,3637,8,115,1,116,1,116, + 1,116,1,116,1,116,1,116,5,116,3645,8,116,10,116,12,116,3648,9,116, + 3,116,3650,8,116,1,116,1,116,3,116,3654,8,116,1,116,1,116,1,116, + 1,116,3,116,3660,8,116,1,117,1,117,3,117,3664,8,117,1,117,3,117, + 3667,8,117,1,117,3,117,3670,8,117,1,117,1,117,1,117,3,117,3675,8, + 117,1,117,3,117,3678,8,117,1,117,1,117,1,117,1,117,1,117,3,117,3685, + 8,117,1,117,1,117,3,117,3689,8,117,1,117,3,117,3692,8,117,1,117, + 1,117,3,117,3696,8,117,1,118,1,118,3,118,3700,8,118,1,118,3,118, + 3703,8,118,1,118,3,118,3706,8,118,1,118,1,118,1,118,3,118,3711,8, + 118,1,118,1,118,1,118,1,118,3,118,3717,8,118,5,118,3719,8,118,10, + 118,12,118,3722,9,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 3,118,3731,8,118,1,118,1,118,1,118,1,118,3,118,3737,8,118,5,118, + 3739,8,118,10,118,12,118,3742,9,118,1,118,1,118,1,118,3,118,3747, + 8,118,1,118,1,118,3,118,3751,8,118,1,119,1,119,1,119,1,119,3,119, + 3757,8,119,1,119,3,119,3760,8,119,1,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,3,120,3772,8,120,1,120,1,120,3,120, + 3776,8,120,1,120,1,120,3,120,3780,8,120,1,121,1,121,1,121,1,121, + 1,121,1,121,3,121,3788,8,121,1,121,1,121,3,121,3792,8,121,1,122, + 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,5,123,3804, + 8,123,10,123,12,123,3807,9,123,1,124,1,124,3,124,3811,8,124,1,124, + 3,124,3814,8,124,1,124,1,124,3,124,3818,8,124,1,124,3,124,3821,8, + 124,1,124,1,124,1,124,1,124,5,124,3827,8,124,10,124,12,124,3830, + 9,124,1,124,1,124,3,124,3834,8,124,1,124,3,124,3837,8,124,1,124, + 3,124,3840,8,124,1,125,1,125,3,125,3844,8,125,1,125,3,125,3847,8, + 125,1,125,1,125,1,125,1,125,1,125,5,125,3854,8,125,10,125,12,125, + 3857,9,125,1,125,1,125,3,125,3861,8,125,1,126,1,126,1,126,1,126, + 1,126,5,126,3868,8,126,10,126,12,126,3871,9,126,1,127,1,127,3,127, + 3875,8,127,1,128,1,128,1,128,5,128,3880,8,128,10,128,12,128,3883, + 9,128,1,129,1,129,5,129,3887,8,129,10,129,12,129,3890,9,129,1,129, + 1,129,1,129,5,129,3895,8,129,10,129,12,129,3898,9,129,1,129,1,129, + 1,129,3,129,3903,8,129,1,130,1,130,1,130,1,130,1,130,1,130,3,130, + 3911,8,130,1,130,3,130,3914,8,130,1,130,3,130,3917,8,130,1,130,1, + 130,1,130,5,130,3922,8,130,10,130,12,130,3925,9,130,3,130,3927,8, + 130,1,130,3,130,3930,8,130,1,130,1,130,1,130,1,130,1,130,3,130,3937, + 8,130,1,130,3,130,3940,8,130,1,130,1,130,3,130,3944,8,130,1,130, + 1,130,1,130,1,130,3,130,3950,8,130,1,131,1,131,1,131,1,131,1,132, + 1,132,1,132,1,132,3,132,3960,8,132,1,132,1,132,3,132,3964,8,132, + 1,132,1,132,1,133,1,133,1,133,1,133,1,133,3,133,3973,8,133,1,134, + 3,134,3976,8,134,1,134,1,134,3,134,3980,8,134,1,134,1,134,5,134, + 3984,8,134,10,134,12,134,3987,9,134,1,134,1,134,1,134,5,134,3992, + 8,134,10,134,12,134,3995,9,134,1,134,1,134,3,134,3999,8,134,1,134, + 1,134,3,134,4003,8,134,1,134,1,134,5,134,4007,8,134,10,134,12,134, + 4010,9,134,1,134,1,134,1,134,3,134,4015,8,134,1,134,3,134,4018,8, + 134,3,134,4020,8,134,1,134,1,134,3,134,4024,8,134,1,135,1,135,1, + 135,1,135,1,135,1,135,1,135,3,135,4033,8,135,1,136,1,136,1,136,1, + 136,1,136,1,136,1,136,1,136,3,136,4043,8,136,1,137,1,137,5,137,4047, + 8,137,10,137,12,137,4050,9,137,1,137,1,137,3,137,4054,8,137,1,137, + 1,137,3,137,4058,8,137,1,137,3,137,4061,8,137,1,137,3,137,4064,8, + 137,1,137,3,137,4067,8,137,1,137,3,137,4070,8,137,1,137,3,137,4073, + 8,137,1,138,1,138,3,138,4077,8,138,1,138,1,138,3,138,4081,8,138, + 1,139,1,139,1,139,1,139,1,139,1,139,3,139,4089,8,139,1,139,1,139, + 3,139,4093,8,139,1,139,3,139,4096,8,139,3,139,4098,8,139,1,140,1, + 140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,3,140, + 4111,8,140,1,140,3,140,4114,8,140,1,141,1,141,1,141,5,141,4119,8, + 141,10,141,12,141,4122,9,141,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,3,142,4131,8,142,1,142,3,142,4134,8,142,1,142,1,142,1,142, + 3,142,4139,8,142,3,142,4141,8,142,1,142,1,142,3,142,4145,8,142,1, + 142,1,142,1,142,1,142,1,142,1,142,3,142,4153,8,142,1,143,1,143,1, + 143,1,143,3,143,4159,8,143,1,143,1,143,1,143,1,144,1,144,1,144,1, + 144,3,144,4168,8,144,1,144,1,144,1,144,1,145,1,145,1,145,1,145,1, + 145,1,145,1,145,1,145,3,145,4181,8,145,1,146,1,146,3,146,4185,8, + 146,1,146,1,146,5,146,4189,8,146,10,146,12,146,4192,9,146,1,147, + 1,147,3,147,4196,8,147,1,147,1,147,3,147,4200,8,147,1,147,3,147, + 4203,8,147,1,147,1,147,3,147,4207,8,147,1,147,3,147,4210,8,147,1, + 147,1,147,1,147,1,147,1,147,1,147,3,147,4218,8,147,1,147,3,147,4221, + 8,147,3,147,4223,8,147,1,148,1,148,1,148,1,148,5,148,4229,8,148, + 10,148,12,148,4232,9,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,3,148,4243,8,148,1,148,1,148,4,148,4247,8,148,11,148, + 12,148,4248,3,148,4251,8,148,1,148,1,148,4,148,4255,8,148,11,148, + 12,148,4256,3,148,4259,8,148,3,148,4261,8,148,1,149,1,149,1,149, + 1,149,3,149,4267,8,149,1,149,1,149,1,149,1,149,1,149,1,149,3,149, + 4275,8,149,1,150,1,150,1,150,1,150,1,150,1,150,3,150,4283,8,150, + 1,151,1,151,3,151,4287,8,151,1,151,1,151,3,151,4291,8,151,1,152, + 1,152,1,152,1,152,1,152,5,152,4298,8,152,10,152,12,152,4301,9,152, + 1,152,1,152,3,152,4305,8,152,1,153,1,153,1,153,1,154,1,154,1,154, + 1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,5,154, + 4323,8,154,10,154,12,154,4326,9,154,1,155,1,155,3,155,4330,8,155, + 1,156,1,156,1,156,1,156,3,156,4336,8,156,1,156,1,156,1,156,1,156, + 1,156,3,156,4343,8,156,1,157,1,157,1,157,3,157,4348,8,157,1,158, + 1,158,1,158,1,158,1,158,5,158,4355,8,158,10,158,12,158,4358,9,158, + 3,158,4360,8,158,1,159,1,159,3,159,4364,8,159,1,160,1,160,3,160, + 4368,8,160,1,160,1,160,3,160,4372,8,160,1,160,3,160,4375,8,160,1, + 160,3,160,4378,8,160,1,160,3,160,4381,8,160,1,161,1,161,3,161,4385, + 8,161,1,161,1,161,3,161,4389,8,161,1,161,3,161,4392,8,161,1,161, + 3,161,4395,8,161,1,161,3,161,4398,8,161,1,162,1,162,1,162,1,163, + 1,163,3,163,4405,8,163,1,163,1,163,3,163,4409,8,163,1,163,1,163, + 1,164,1,164,1,164,1,164,1,165,1,165,1,165,1,165,1,165,5,165,4422, + 8,165,10,165,12,165,4425,9,165,1,166,1,166,1,166,1,167,1,167,1,167, + 1,167,1,167,1,168,1,168,3,168,4437,8,168,1,168,1,168,1,168,1,168, + 5,168,4443,8,168,10,168,12,168,4446,9,168,1,169,1,169,1,169,1,169, + 1,169,1,169,1,169,3,169,4455,8,169,1,170,1,170,3,170,4459,8,170, + 1,170,3,170,4462,8,170,1,170,1,170,1,171,1,171,3,171,4468,8,171, + 1,171,3,171,4471,8,171,1,171,3,171,4474,8,171,1,172,1,172,1,172, + 1,172,1,172,1,172,1,172,3,172,4483,8,172,1,173,1,173,1,173,1,173, + 1,173,1,173,1,173,3,173,4492,8,173,1,174,1,174,1,174,1,174,1,174, + 1,174,5,174,4500,8,174,10,174,12,174,4503,9,174,1,174,3,174,4506, + 8,174,1,175,1,175,1,175,1,175,1,175,1,175,5,175,4514,8,175,10,175, + 12,175,4517,9,175,1,175,3,175,4520,8,175,1,176,1,176,1,176,1,176, + 1,176,1,176,1,176,5,176,4529,8,176,10,176,12,176,4532,9,176,1,176, + 3,176,4535,8,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177, + 4544,8,177,1,178,1,178,1,178,1,178,1,178,5,178,4551,8,178,10,178, + 12,178,4554,9,178,3,178,4556,8,178,1,178,1,178,3,178,4560,8,178, + 1,178,5,178,4563,8,178,10,178,12,178,4566,9,178,1,178,3,178,4569, + 8,178,1,179,1,179,1,179,1,179,1,179,5,179,4576,8,179,10,179,12,179, + 4579,9,179,3,179,4581,8,179,1,179,3,179,4584,8,179,1,180,1,180,1, + 180,1,180,1,180,3,180,4591,8,180,1,180,1,180,1,180,1,180,3,180,4597, + 8,180,1,180,1,180,1,180,1,180,3,180,4603,8,180,1,181,1,181,1,181, 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,5,182,4620,8,182,10,182,12,182,4623,9,182,3,182, - 4625,8,182,1,182,3,182,4628,8,182,1,183,1,183,1,184,1,184,1,185, - 1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186, - 1,186,3,186,4647,8,186,3,186,4649,8,186,1,187,1,187,1,187,1,187, - 1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187, - 1,187,1,187,1,187,1,187,5,187,4670,8,187,10,187,12,187,4673,9,187, - 3,187,4675,8,187,1,187,3,187,4678,8,187,1,188,1,188,1,189,1,189, - 1,190,1,190,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191, - 1,191,1,191,3,191,4697,8,191,3,191,4699,8,191,1,192,1,192,1,192, - 1,192,1,193,1,193,1,193,1,193,1,193,1,193,5,193,4711,8,193,10,193, - 12,193,4714,9,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193, - 5,193,4724,8,193,10,193,12,193,4727,9,193,1,193,1,193,1,193,1,193, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,5,182,4627,8,182, + 10,182,12,182,4630,9,182,3,182,4632,8,182,1,182,3,182,4635,8,182, + 1,183,1,183,1,184,1,184,1,185,1,185,1,186,1,186,1,186,1,186,1,186, + 1,186,1,186,1,186,1,186,1,186,1,186,3,186,4654,8,186,3,186,4656, + 8,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187, + 1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,5,187,4677, + 8,187,10,187,12,187,4680,9,187,3,187,4682,8,187,1,187,3,187,4685, + 8,187,1,188,1,188,1,189,1,189,1,190,1,190,1,191,1,191,1,191,1,191, + 1,191,1,191,1,191,1,191,1,191,1,191,1,191,3,191,4704,8,191,3,191, + 4706,8,191,1,192,1,192,1,192,1,192,1,193,1,193,1,193,1,193,1,193, + 1,193,5,193,4718,8,193,10,193,12,193,4721,9,193,1,193,1,193,1,193, + 1,193,1,193,1,193,1,193,1,193,5,193,4731,8,193,10,193,12,193,4734, + 9,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193, 1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193, 1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193, - 1,193,1,193,1,193,1,193,1,193,1,193,5,193,4761,8,193,10,193,12,193, - 4764,9,193,1,193,1,193,3,193,4768,8,193,1,194,1,194,1,194,1,194, - 1,194,1,194,1,195,1,195,1,196,1,196,1,196,1,196,1,196,1,196,1,196, + 5,193,4768,8,193,10,193,12,193,4771,9,193,1,193,1,193,3,193,4775, + 8,193,1,194,1,194,1,194,1,194,1,194,1,194,1,195,1,195,1,196,1,196, 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,1,196,1,196,3,196,4803,8,196,1,197, - 1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197, - 3,197,4817,8,197,1,198,1,198,1,198,5,198,4822,8,198,10,198,12,198, - 4825,9,198,1,198,3,198,4828,8,198,1,199,1,199,1,199,1,199,3,199, - 4834,8,199,1,200,1,200,1,200,1,200,1,200,1,200,3,200,4842,8,200, - 3,200,4844,8,200,1,201,1,201,1,201,1,201,1,202,1,202,1,202,1,202, - 1,202,3,202,4855,8,202,1,203,1,203,1,203,1,203,1,204,1,204,1,204, - 1,204,3,204,4865,8,204,1,205,1,205,1,205,1,205,1,205,3,205,4872, - 8,205,1,206,1,206,1,206,1,206,3,206,4878,8,206,1,207,1,207,1,207, - 1,207,1,208,1,208,3,208,4886,8,208,1,209,1,209,1,209,3,209,4891, - 8,209,1,209,1,209,1,209,1,209,5,209,4897,8,209,10,209,12,209,4900, - 9,209,1,209,1,209,1,209,5,209,4905,8,209,10,209,12,209,4908,9,209, - 1,209,1,209,1,209,5,209,4913,8,209,10,209,12,209,4916,9,209,1,209, - 1,209,1,209,5,209,4921,8,209,10,209,12,209,4924,9,209,1,209,5,209, - 4927,8,209,10,209,12,209,4930,9,209,1,209,1,209,3,209,4934,8,209, - 1,210,1,210,1,210,3,210,4939,8,210,1,210,4,210,4942,8,210,11,210, - 12,210,4943,1,210,1,210,4,210,4948,8,210,11,210,12,210,4949,3,210, - 4952,8,210,1,210,1,210,1,210,1,211,1,211,1,211,1,211,4,211,4961, - 8,211,11,211,12,211,4962,1,211,5,211,4966,8,211,10,211,12,211,4969, - 9,211,1,211,1,211,4,211,4973,8,211,11,211,12,211,4974,3,211,4977, - 8,211,1,211,1,211,1,211,1,212,1,212,1,212,1,213,1,213,1,213,1,214, - 1,214,1,214,3,214,4991,8,214,1,214,1,214,4,214,4995,8,214,11,214, - 12,214,4996,1,214,1,214,1,214,3,214,5002,8,214,1,215,1,215,1,215, - 3,215,5007,8,215,1,215,1,215,4,215,5011,8,215,11,215,12,215,5012, - 1,215,1,215,1,215,1,215,1,215,3,215,5020,8,215,1,216,1,216,1,216, - 1,217,1,217,1,217,3,217,5028,8,217,1,217,1,217,1,217,1,217,4,217, - 5034,8,217,11,217,12,217,5035,1,217,1,217,1,217,3,217,5041,8,217, - 1,218,1,218,1,218,1,218,3,218,5047,8,218,1,218,3,218,5050,8,218, - 1,218,1,218,1,218,1,218,1,218,1,218,3,218,5058,8,218,1,219,1,219, - 1,219,1,219,1,219,3,219,5065,8,219,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,3,220,5074,8,220,1,220,3,220,5077,8,220,1,221,1,221, - 1,221,1,221,1,221,1,221,1,222,1,222,1,222,1,222,1,222,1,222,1,222, - 5,222,5092,8,222,10,222,12,222,5095,9,222,1,222,1,222,1,223,1,223, - 1,223,3,223,5102,8,223,1,223,1,223,1,223,1,223,1,223,1,223,3,223, - 5110,8,223,1,224,1,224,3,224,5114,8,224,1,224,1,224,1,225,1,225, - 1,225,3,225,5121,8,225,1,225,1,225,4,225,5125,8,225,11,225,12,225, - 5126,1,226,1,226,1,226,1,226,4,226,5133,8,226,11,226,12,226,5134, - 1,227,1,227,1,227,3,227,5140,8,227,1,227,1,227,1,227,5,227,5145, - 8,227,10,227,12,227,5148,9,227,1,227,1,227,1,227,5,227,5153,8,227, - 10,227,12,227,5156,9,227,1,227,1,227,1,227,1,227,3,227,5162,8,227, - 1,227,5,227,5165,8,227,10,227,12,227,5168,9,227,3,227,5170,8,227, - 3,227,5172,8,227,1,227,1,227,4,227,5176,8,227,11,227,12,227,5177, - 3,227,5180,8,227,1,227,1,227,5,227,5184,8,227,10,227,12,227,5187, - 9,227,1,227,1,227,3,227,5191,8,227,1,227,1,227,1,227,1,227,1,227, - 3,227,5198,8,227,1,228,1,228,1,228,3,228,5203,8,228,1,228,1,228, - 3,228,5207,8,228,1,228,1,228,1,228,3,228,5212,8,228,5,228,5214,8, - 228,10,228,12,228,5217,9,228,1,228,1,228,1,228,3,228,5222,8,228, - 1,228,1,228,1,228,1,228,3,228,5228,8,228,1,228,5,228,5231,8,228, - 10,228,12,228,5234,9,228,3,228,5236,8,228,3,228,5238,8,228,1,228, - 1,228,4,228,5242,8,228,11,228,12,228,5243,3,228,5246,8,228,1,228, - 1,228,5,228,5250,8,228,10,228,12,228,5253,9,228,1,228,1,228,3,228, - 5257,8,228,1,229,1,229,1,229,3,229,5262,8,229,1,229,1,229,1,229, - 5,229,5267,8,229,10,229,12,229,5270,9,229,1,230,1,230,1,230,1,230, - 5,230,5276,8,230,10,230,12,230,5279,9,230,1,230,1,230,3,230,5283, - 8,230,1,230,1,230,1,230,1,230,1,230,5,230,5290,8,230,10,230,12,230, - 5293,9,230,1,230,3,230,5296,8,230,1,230,1,230,1,230,1,230,3,230, - 5302,8,230,1,230,5,230,5305,8,230,10,230,12,230,5308,9,230,3,230, - 5310,8,230,3,230,5312,8,230,1,230,1,230,1,230,1,230,5,230,5318,8, - 230,10,230,12,230,5321,9,230,3,230,5323,8,230,1,230,1,230,1,230, - 1,230,1,230,3,230,5330,8,230,3,230,5332,8,230,1,230,1,230,1,230, - 3,230,5337,8,230,1,230,1,230,1,230,5,230,5342,8,230,10,230,12,230, - 5345,9,230,1,230,1,230,1,230,1,230,5,230,5351,8,230,10,230,12,230, - 5354,9,230,1,230,1,230,1,230,3,230,5359,8,230,3,230,5361,8,230,1, - 231,1,231,1,231,1,231,1,231,3,231,5368,8,231,1,231,3,231,5371,8, - 231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,5,232,5381,8, - 232,10,232,12,232,5384,9,232,1,232,1,232,1,232,3,232,5389,8,232, - 1,233,1,233,1,233,1,233,1,233,1,233,3,233,5397,8,233,1,233,3,233, - 5400,8,233,1,233,1,233,3,233,5404,8,233,1,233,3,233,5407,8,233,1, - 233,1,233,3,233,5411,8,233,3,233,5413,8,233,1,234,1,234,1,234,1, - 234,1,234,1,234,1,234,1,234,1,234,3,234,5424,8,234,1,234,3,234,5427, - 8,234,1,234,1,234,3,234,5431,8,234,1,234,3,234,5434,8,234,1,234, - 3,234,5437,8,234,1,235,1,235,1,235,1,235,1,235,3,235,5444,8,235, - 1,236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,5,236,5454,8,236, - 10,236,12,236,5457,9,236,3,236,5459,8,236,1,237,1,237,1,237,1,237, - 1,237,3,237,5466,8,237,1,237,1,237,5,237,5470,8,237,10,237,12,237, - 5473,9,237,1,238,1,238,1,238,1,238,1,238,5,238,5480,8,238,10,238, - 12,238,5483,9,238,1,239,1,239,3,239,5487,8,239,1,239,1,239,1,239, - 5,239,5492,8,239,10,239,12,239,5495,9,239,1,239,1,239,3,239,5499, - 8,239,1,239,1,239,1,239,1,239,3,239,5505,8,239,1,239,1,239,3,239, - 5509,8,239,1,239,1,239,3,239,5513,8,239,1,239,1,239,1,239,1,239, - 1,239,1,239,3,239,5521,8,239,1,239,1,239,3,239,5525,8,239,1,239, - 1,239,3,239,5529,8,239,1,239,1,239,1,239,1,239,3,239,5535,8,239, - 3,239,5537,8,239,1,240,1,240,1,240,1,240,1,241,1,241,1,242,1,242, - 1,242,1,242,3,242,5549,8,242,1,242,1,242,1,242,3,242,5554,8,242, - 1,242,1,242,1,242,1,242,3,242,5560,8,242,1,242,1,242,1,242,1,242, - 3,242,5566,8,242,1,242,1,242,3,242,5570,8,242,1,242,1,242,1,242, - 3,242,5575,8,242,3,242,5577,8,242,1,243,1,243,1,243,1,244,1,244, - 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, - 1,244,1,244,1,244,1,244,1,244,1,244,3,244,5601,8,244,4,244,5603, - 8,244,11,244,12,244,5604,1,244,3,244,5608,8,244,1,245,1,245,1,245, - 1,245,1,245,1,245,1,245,3,245,5617,8,245,1,245,1,245,3,245,5621, - 8,245,1,245,1,245,1,245,1,245,1,245,1,245,1,245,3,245,5630,8,245, - 1,245,1,245,3,245,5634,8,245,1,245,1,245,3,245,5638,8,245,1,245, - 1,245,1,245,1,245,3,245,5644,8,245,3,245,5646,8,245,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,3,246,5655,8,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,3,246,5665,8,246,1,247,1,247,1,247, + 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, + 1,196,3,196,4810,8,196,1,197,1,197,1,197,1,197,1,197,1,197,1,197, + 1,197,1,197,1,197,1,197,1,197,3,197,4824,8,197,1,198,1,198,1,198, + 5,198,4829,8,198,10,198,12,198,4832,9,198,1,198,3,198,4835,8,198, + 1,199,1,199,1,199,1,199,3,199,4841,8,199,1,200,1,200,1,200,1,200, + 1,200,1,200,3,200,4849,8,200,3,200,4851,8,200,1,201,1,201,1,201, + 1,201,1,202,1,202,1,202,1,202,1,202,3,202,4862,8,202,1,203,1,203, + 1,203,1,203,1,204,1,204,1,204,1,204,3,204,4872,8,204,1,205,1,205, + 1,205,1,205,1,205,3,205,4879,8,205,1,206,1,206,1,206,1,206,3,206, + 4885,8,206,1,207,1,207,1,207,1,207,1,208,1,208,3,208,4893,8,208, + 1,209,1,209,1,209,3,209,4898,8,209,1,209,1,209,1,209,1,209,5,209, + 4904,8,209,10,209,12,209,4907,9,209,1,209,1,209,1,209,5,209,4912, + 8,209,10,209,12,209,4915,9,209,1,209,1,209,1,209,5,209,4920,8,209, + 10,209,12,209,4923,9,209,1,209,1,209,1,209,5,209,4928,8,209,10,209, + 12,209,4931,9,209,1,209,5,209,4934,8,209,10,209,12,209,4937,9,209, + 1,209,1,209,3,209,4941,8,209,1,210,1,210,1,210,3,210,4946,8,210, + 1,210,4,210,4949,8,210,11,210,12,210,4950,1,210,1,210,4,210,4955, + 8,210,11,210,12,210,4956,3,210,4959,8,210,1,210,1,210,1,210,1,211, + 1,211,1,211,1,211,4,211,4968,8,211,11,211,12,211,4969,1,211,5,211, + 4973,8,211,10,211,12,211,4976,9,211,1,211,1,211,4,211,4980,8,211, + 11,211,12,211,4981,3,211,4984,8,211,1,211,1,211,1,211,1,212,1,212, + 1,212,1,213,1,213,1,213,1,214,1,214,1,214,3,214,4998,8,214,1,214, + 1,214,4,214,5002,8,214,11,214,12,214,5003,1,214,1,214,1,214,3,214, + 5009,8,214,1,215,1,215,1,215,3,215,5014,8,215,1,215,1,215,4,215, + 5018,8,215,11,215,12,215,5019,1,215,1,215,1,215,1,215,1,215,3,215, + 5027,8,215,1,216,1,216,1,216,1,217,1,217,1,217,3,217,5035,8,217, + 1,217,1,217,1,217,1,217,4,217,5041,8,217,11,217,12,217,5042,1,217, + 1,217,1,217,3,217,5048,8,217,1,218,1,218,1,218,1,218,3,218,5054, + 8,218,1,218,3,218,5057,8,218,1,218,1,218,1,218,1,218,1,218,1,218, + 3,218,5065,8,218,1,219,1,219,1,219,1,219,1,219,3,219,5072,8,219, + 1,220,1,220,1,220,1,220,1,220,1,220,1,220,3,220,5081,8,220,1,220, + 3,220,5084,8,220,1,221,1,221,1,221,1,221,1,221,1,221,1,222,1,222, + 1,222,1,222,1,222,1,222,1,222,5,222,5099,8,222,10,222,12,222,5102, + 9,222,1,222,1,222,1,223,1,223,1,223,3,223,5109,8,223,1,223,1,223, + 1,223,1,223,1,223,1,223,3,223,5117,8,223,1,224,1,224,3,224,5121, + 8,224,1,224,1,224,1,225,1,225,1,225,3,225,5128,8,225,1,225,1,225, + 4,225,5132,8,225,11,225,12,225,5133,1,226,1,226,1,226,1,226,4,226, + 5140,8,226,11,226,12,226,5141,1,227,1,227,1,227,3,227,5147,8,227, + 1,227,1,227,1,227,5,227,5152,8,227,10,227,12,227,5155,9,227,1,227, + 1,227,1,227,5,227,5160,8,227,10,227,12,227,5163,9,227,1,227,1,227, + 1,227,1,227,3,227,5169,8,227,1,227,5,227,5172,8,227,10,227,12,227, + 5175,9,227,3,227,5177,8,227,3,227,5179,8,227,1,227,1,227,4,227,5183, + 8,227,11,227,12,227,5184,3,227,5187,8,227,1,227,1,227,5,227,5191, + 8,227,10,227,12,227,5194,9,227,1,227,1,227,3,227,5198,8,227,1,227, + 1,227,1,227,1,227,1,227,3,227,5205,8,227,1,228,1,228,1,228,3,228, + 5210,8,228,1,228,1,228,3,228,5214,8,228,1,228,1,228,1,228,3,228, + 5219,8,228,5,228,5221,8,228,10,228,12,228,5224,9,228,1,228,1,228, + 1,228,3,228,5229,8,228,1,228,1,228,1,228,1,228,3,228,5235,8,228, + 1,228,5,228,5238,8,228,10,228,12,228,5241,9,228,3,228,5243,8,228, + 3,228,5245,8,228,1,228,1,228,4,228,5249,8,228,11,228,12,228,5250, + 3,228,5253,8,228,1,228,1,228,5,228,5257,8,228,10,228,12,228,5260, + 9,228,1,228,1,228,3,228,5264,8,228,1,229,1,229,1,229,3,229,5269, + 8,229,1,229,1,229,1,229,5,229,5274,8,229,10,229,12,229,5277,9,229, + 1,230,1,230,1,230,1,230,5,230,5283,8,230,10,230,12,230,5286,9,230, + 1,230,1,230,3,230,5290,8,230,1,230,1,230,1,230,1,230,1,230,5,230, + 5297,8,230,10,230,12,230,5300,9,230,1,230,3,230,5303,8,230,1,230, + 1,230,1,230,1,230,3,230,5309,8,230,1,230,5,230,5312,8,230,10,230, + 12,230,5315,9,230,3,230,5317,8,230,3,230,5319,8,230,1,230,1,230, + 1,230,1,230,5,230,5325,8,230,10,230,12,230,5328,9,230,3,230,5330, + 8,230,1,230,1,230,1,230,1,230,1,230,3,230,5337,8,230,3,230,5339, + 8,230,1,230,1,230,1,230,3,230,5344,8,230,1,230,1,230,1,230,5,230, + 5349,8,230,10,230,12,230,5352,9,230,1,230,1,230,1,230,1,230,5,230, + 5358,8,230,10,230,12,230,5361,9,230,1,230,1,230,1,230,3,230,5366, + 8,230,3,230,5368,8,230,1,231,1,231,1,231,1,231,1,231,3,231,5375, + 8,231,1,231,3,231,5378,8,231,1,232,1,232,1,232,1,232,1,232,1,232, + 1,232,1,232,5,232,5388,8,232,10,232,12,232,5391,9,232,1,232,1,232, + 1,232,3,232,5396,8,232,1,233,1,233,1,233,1,233,1,233,1,233,3,233, + 5404,8,233,1,233,3,233,5407,8,233,1,233,1,233,3,233,5411,8,233,1, + 233,3,233,5414,8,233,1,233,1,233,3,233,5418,8,233,3,233,5420,8,233, + 1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,3,234,5431, + 8,234,1,234,3,234,5434,8,234,1,234,1,234,3,234,5438,8,234,1,234, + 3,234,5441,8,234,1,234,3,234,5444,8,234,1,235,1,235,1,235,1,235, + 1,235,3,235,5451,8,235,1,236,1,236,1,236,1,236,1,236,1,236,1,236, + 1,236,5,236,5461,8,236,10,236,12,236,5464,9,236,3,236,5466,8,236, + 1,237,1,237,1,237,1,237,1,237,3,237,5473,8,237,1,237,1,237,5,237, + 5477,8,237,10,237,12,237,5480,9,237,1,238,1,238,1,238,1,238,1,238, + 5,238,5487,8,238,10,238,12,238,5490,9,238,1,239,1,239,3,239,5494, + 8,239,1,239,1,239,1,239,5,239,5499,8,239,10,239,12,239,5502,9,239, + 1,239,1,239,3,239,5506,8,239,1,239,1,239,1,239,1,239,3,239,5512, + 8,239,1,239,1,239,3,239,5516,8,239,1,239,1,239,3,239,5520,8,239, + 1,239,1,239,1,239,1,239,1,239,1,239,3,239,5528,8,239,1,239,1,239, + 3,239,5532,8,239,1,239,1,239,3,239,5536,8,239,1,239,1,239,1,239, + 1,239,3,239,5542,8,239,3,239,5544,8,239,1,240,1,240,1,240,1,240, + 1,241,1,241,1,242,1,242,1,242,1,242,3,242,5556,8,242,1,242,1,242, + 1,242,3,242,5561,8,242,1,242,1,242,1,242,1,242,3,242,5567,8,242, + 1,242,1,242,1,242,1,242,3,242,5573,8,242,1,242,1,242,3,242,5577, + 8,242,1,242,1,242,1,242,3,242,5582,8,242,3,242,5584,8,242,1,243, + 1,243,1,243,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,3,244, + 5608,8,244,4,244,5610,8,244,11,244,12,244,5611,1,244,3,244,5615, + 8,244,1,245,1,245,1,245,1,245,1,245,1,245,1,245,3,245,5624,8,245, + 1,245,1,245,3,245,5628,8,245,1,245,1,245,1,245,1,245,1,245,1,245, + 1,245,3,245,5637,8,245,1,245,1,245,3,245,5641,8,245,1,245,1,245, + 3,245,5645,8,245,1,245,1,245,1,245,1,245,3,245,5651,8,245,3,245, + 5653,8,245,1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,5662, + 8,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,5672, + 8,246,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, - 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, - 3,247,5692,8,247,1,248,1,248,3,248,5696,8,248,1,248,1,248,1,248, - 3,248,5701,8,248,1,249,1,249,1,249,1,249,1,249,3,249,5708,8,249, - 1,249,3,249,5711,8,249,1,249,1,249,1,249,1,249,3,249,5717,8,249, - 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,3,250,5727,8,250, - 1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,251,3,251,5737,8,251, - 1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,3,252,5747,8,252, - 1,252,1,252,1,252,1,252,3,252,5753,8,252,1,252,1,252,1,252,1,252, - 1,252,1,252,1,252,3,252,5762,8,252,1,252,1,252,1,252,1,252,3,252, - 5768,8,252,1,252,1,252,1,252,1,252,1,252,3,252,5775,8,252,3,252, - 5777,8,252,1,253,1,253,1,253,1,254,1,254,1,254,3,254,5785,8,254, - 1,254,1,254,1,254,1,254,3,254,5791,8,254,1,254,1,254,3,254,5795, - 8,254,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,3,255,5812,8,255,1,256,1,256,1,256, - 1,257,1,257,1,257,1,257,1,257,3,257,5822,8,257,1,258,1,258,3,258, - 5826,8,258,1,258,1,258,3,258,5830,8,258,1,258,1,258,1,258,1,258, - 1,258,1,258,1,258,1,258,3,258,5840,8,258,1,258,1,258,1,258,3,258, - 5845,8,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,247,1,247,1,247,1,247,3,247,5699,8,247,1,248,1,248,3,248,5703, + 8,248,1,248,1,248,1,248,3,248,5708,8,248,1,249,1,249,1,249,1,249, + 1,249,3,249,5715,8,249,1,249,3,249,5718,8,249,1,249,1,249,1,249, + 1,249,3,249,5724,8,249,1,250,1,250,1,250,1,250,1,250,1,250,1,250, + 1,250,3,250,5734,8,250,1,251,1,251,1,251,1,251,1,251,1,251,1,251, + 1,251,3,251,5744,8,251,1,252,1,252,1,252,1,252,1,252,1,252,1,252, + 1,252,3,252,5754,8,252,1,252,1,252,1,252,1,252,3,252,5760,8,252, + 1,252,1,252,1,252,1,252,1,252,1,252,1,252,3,252,5769,8,252,1,252, + 1,252,1,252,1,252,3,252,5775,8,252,1,252,1,252,1,252,1,252,1,252, + 3,252,5782,8,252,3,252,5784,8,252,1,253,1,253,1,253,1,254,1,254, + 1,254,3,254,5792,8,254,1,254,1,254,1,254,1,254,3,254,5798,8,254, + 1,254,1,254,3,254,5802,8,254,1,255,1,255,1,255,1,255,1,255,1,255, + 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,5819, + 8,255,1,256,1,256,1,256,1,257,1,257,1,257,1,257,1,257,3,257,5829, + 8,257,1,258,1,258,3,258,5833,8,258,1,258,1,258,3,258,5837,8,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,5847,8,258, + 1,258,1,258,1,258,3,258,5852,8,258,1,258,1,258,1,258,1,258,1,258, 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, - 1,258,1,258,1,258,1,258,1,258,1,258,3,258,5917,8,258,1,259,1,259, - 1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259, - 1,259,1,259,1,259,3,259,5935,8,259,1,260,1,260,1,260,1,260,1,261, - 1,261,3,261,5943,8,261,1,261,1,261,1,261,1,261,3,261,5949,8,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,3,261, - 5961,8,261,1,261,1,261,3,261,5965,8,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,3,261,5976,8,261,1,261,1,261,3,261, - 5980,8,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,3,261,5989, - 8,261,1,262,1,262,1,262,1,262,5,262,5995,8,262,10,262,12,262,5998, - 9,262,1,263,1,263,1,263,1,263,3,263,6004,8,263,1,264,1,264,3,264, - 6008,8,264,1,264,1,264,1,264,1,265,1,265,3,265,6015,8,265,1,265, - 1,265,1,265,3,265,6020,8,265,1,265,3,265,6023,8,265,1,265,3,265, - 6026,8,265,1,266,1,266,1,267,1,267,1,267,1,267,1,267,1,267,1,267, - 3,267,6037,8,267,1,268,1,268,3,268,6041,8,268,1,268,1,268,3,268, - 6045,8,268,1,268,1,268,1,268,1,268,1,268,1,268,1,269,1,269,1,269, - 1,269,1,269,5,269,6058,8,269,10,269,12,269,6061,9,269,1,269,1,269, - 1,269,1,269,5,269,6067,8,269,10,269,12,269,6070,9,269,3,269,6072, - 8,269,1,270,1,270,1,270,1,270,1,270,1,271,1,271,1,271,1,271,1,271, - 5,271,6084,8,271,10,271,12,271,6087,9,271,1,272,1,272,1,272,1,272, - 1,272,1,272,1,273,1,273,1,273,1,273,1,274,1,274,1,274,1,274,1,274, - 3,274,6104,8,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274, - 1,274,1,274,1,274,3,274,6117,8,274,1,274,3,274,6120,8,274,1,274, - 1,274,3,274,6124,8,274,1,274,3,274,6127,8,274,3,274,6129,8,274,1, - 275,1,275,1,275,1,275,1,275,3,275,6136,8,275,1,275,1,275,1,275,1, - 275,1,275,3,275,6143,8,275,5,275,6145,8,275,10,275,12,275,6148,9, - 275,1,275,1,275,1,275,1,275,3,275,6154,8,275,1,275,1,275,1,275,1, - 275,1,275,3,275,6161,8,275,1,275,3,275,6164,8,275,1,275,1,275,1, - 275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,5,275, - 6178,8,275,10,275,12,275,6181,9,275,3,275,6183,8,275,1,276,1,276, - 1,276,1,276,1,276,1,276,1,276,1,276,3,276,6193,8,276,1,276,1,276, - 3,276,6197,8,276,1,276,1,276,1,276,1,276,3,276,6203,8,276,1,276, - 3,276,6206,8,276,1,276,3,276,6209,8,276,1,276,1,276,1,276,3,276, - 6214,8,276,1,276,1,276,3,276,6218,8,276,1,276,3,276,6221,8,276,1, - 276,1,276,1,276,1,276,1,276,3,276,6228,8,276,1,276,3,276,6231,8, - 276,1,276,1,276,1,276,1,276,3,276,6237,8,276,1,276,1,276,1,276,1, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258, + 5924,8,258,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259, + 1,259,1,259,1,259,1,259,1,259,1,259,1,259,3,259,5942,8,259,1,260, + 1,260,1,260,1,260,1,261,1,261,3,261,5950,8,261,1,261,1,261,1,261, + 1,261,3,261,5956,8,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, + 1,261,1,261,1,261,3,261,5968,8,261,1,261,1,261,3,261,5972,8,261, + 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,3,261,5983, + 8,261,1,261,1,261,3,261,5987,8,261,1,261,1,261,1,261,1,261,1,261, + 1,261,1,261,3,261,5996,8,261,1,262,1,262,1,262,1,262,5,262,6002, + 8,262,10,262,12,262,6005,9,262,1,263,1,263,1,263,1,263,3,263,6011, + 8,263,1,264,1,264,3,264,6015,8,264,1,264,1,264,1,264,1,265,1,265, + 3,265,6022,8,265,1,265,1,265,1,265,3,265,6027,8,265,1,265,3,265, + 6030,8,265,1,265,3,265,6033,8,265,1,266,1,266,1,267,1,267,1,267, + 1,267,1,267,1,267,1,267,3,267,6044,8,267,1,268,1,268,3,268,6048, + 8,268,1,268,1,268,3,268,6052,8,268,1,268,1,268,1,268,1,268,1,268, + 1,268,1,269,1,269,1,269,1,269,1,269,5,269,6065,8,269,10,269,12,269, + 6068,9,269,1,269,1,269,1,269,1,269,5,269,6074,8,269,10,269,12,269, + 6077,9,269,3,269,6079,8,269,1,270,1,270,1,270,1,270,1,270,1,271, + 1,271,1,271,1,271,1,271,5,271,6091,8,271,10,271,12,271,6094,9,271, + 1,272,1,272,1,272,1,272,1,272,1,272,1,273,1,273,1,273,1,273,1,274, + 1,274,1,274,1,274,1,274,3,274,6111,8,274,1,274,1,274,1,274,1,274, + 1,274,1,274,1,274,1,274,1,274,1,274,1,274,3,274,6124,8,274,1,274, + 3,274,6127,8,274,1,274,1,274,3,274,6131,8,274,1,274,3,274,6134,8, + 274,3,274,6136,8,274,1,275,1,275,1,275,1,275,1,275,3,275,6143,8, + 275,1,275,1,275,1,275,1,275,1,275,3,275,6150,8,275,5,275,6152,8, + 275,10,275,12,275,6155,9,275,1,275,1,275,1,275,1,275,3,275,6161, + 8,275,1,275,1,275,1,275,1,275,1,275,3,275,6168,8,275,1,275,3,275, + 6171,8,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, + 1,275,1,275,1,275,5,275,6185,8,275,10,275,12,275,6188,9,275,3,275, + 6190,8,275,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,3,276, + 6200,8,276,1,276,1,276,3,276,6204,8,276,1,276,1,276,1,276,1,276, + 3,276,6210,8,276,1,276,3,276,6213,8,276,1,276,3,276,6216,8,276,1, + 276,1,276,1,276,3,276,6221,8,276,1,276,1,276,3,276,6225,8,276,1, + 276,3,276,6228,8,276,1,276,1,276,1,276,1,276,1,276,3,276,6235,8, + 276,1,276,3,276,6238,8,276,1,276,1,276,1,276,1,276,3,276,6244,8, 276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276, 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276, - 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,3,276,6273, - 8,276,1,276,3,276,6276,8,276,1,276,1,276,1,276,1,276,1,276,1,276, - 1,276,1,276,1,276,1,276,3,276,6288,8,276,1,276,3,276,6291,8,276, 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276, - 1,276,1,276,1,276,3,276,6307,8,276,3,276,6309,8,276,1,276,1,276, - 3,276,6313,8,276,1,276,1,276,1,276,1,276,1,276,3,276,6320,8,276, - 1,276,1,276,3,276,6324,8,276,1,276,1,276,1,276,1,276,1,276,3,276, - 6331,8,276,1,276,3,276,6334,8,276,1,276,1,276,1,276,1,276,1,276, - 5,276,6341,8,276,10,276,12,276,6344,9,276,3,276,6346,8,276,1,276, - 1,276,1,276,3,276,6351,8,276,1,276,1,276,1,276,1,276,3,276,6357, - 8,276,3,276,6359,8,276,1,276,1,276,1,276,1,276,3,276,6365,8,276, - 1,276,1,276,3,276,6369,8,276,1,277,1,277,1,277,1,277,3,277,6375, - 8,277,1,277,3,277,6378,8,277,1,277,3,277,6381,8,277,1,278,1,278, - 1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,3,278,6394, - 8,278,1,278,3,278,6397,8,278,1,279,1,279,1,279,1,279,3,279,6403, - 8,279,1,280,3,280,6406,8,280,1,280,1,280,1,280,1,280,1,280,1,280, - 3,280,6414,8,280,1,280,1,280,1,280,1,280,1,280,1,280,3,280,6422, - 8,280,1,281,1,281,1,281,1,281,3,281,6428,8,281,1,281,3,281,6431, - 8,281,1,281,1,281,3,281,6435,8,281,1,282,1,282,1,282,1,282,1,282, - 1,282,1,282,1,282,1,282,1,282,1,282,1,282,3,282,6449,8,282,1,283, - 1,283,1,283,1,284,1,284,1,284,1,284,1,284,5,284,6459,8,284,10,284, - 12,284,6462,9,284,1,284,1,284,1,284,1,284,1,284,3,284,6469,8,284, - 1,284,1,284,3,284,6473,8,284,1,284,1,284,1,284,1,285,1,285,3,285, - 6480,8,285,1,285,1,285,1,285,5,285,6485,8,285,10,285,12,285,6488, - 9,285,1,286,1,286,3,286,6492,8,286,1,286,1,286,1,287,1,287,1,287, - 1,287,1,287,1,287,1,287,5,287,6503,8,287,10,287,12,287,6506,9,287, - 1,288,1,288,1,288,1,288,5,288,6512,8,288,10,288,12,288,6515,9,288, - 1,289,1,289,1,289,1,289,1,289,3,289,6522,8,289,1,290,1,290,1,290, - 3,290,6527,8,290,1,290,3,290,6530,8,290,1,291,1,291,1,291,3,291, - 6535,8,291,1,291,3,291,6538,8,291,1,292,1,292,1,293,1,293,1,294, - 1,294,1,294,1,294,1,294,1,294,3,294,6550,8,294,1,295,1,295,1,295, - 3,295,6555,8,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295, - 1,295,1,295,1,295,3,295,6568,8,295,3,295,6570,8,295,1,295,1,295, - 1,295,3,295,6575,8,295,1,295,1,295,3,295,6579,8,295,1,295,3,295, - 6582,8,295,3,295,6584,8,295,1,296,1,296,1,296,1,296,1,296,3,296, - 6591,8,296,1,297,1,297,1,297,1,297,1,297,3,297,6598,8,297,1,297, - 3,297,6601,8,297,1,297,3,297,6604,8,297,1,297,1,297,1,297,1,297, - 3,297,6610,8,297,1,297,1,297,3,297,6614,8,297,1,298,1,298,1,298, - 1,298,3,298,6620,8,298,1,299,1,299,1,299,1,299,1,299,1,299,3,299, - 6628,8,299,1,299,1,299,1,300,1,300,1,300,1,300,1,300,3,300,6637, - 8,300,1,300,1,300,1,301,1,301,1,301,1,302,1,302,1,302,1,303,1,303, - 1,303,3,303,6650,8,303,1,303,1,303,1,303,3,303,6655,8,303,1,303, - 1,303,1,303,1,303,5,303,6661,8,303,10,303,12,303,6664,9,303,3,303, - 6666,8,303,1,304,1,304,1,304,3,304,6671,8,304,1,304,1,304,1,304, - 3,304,6676,8,304,1,304,1,304,1,304,1,304,5,304,6682,8,304,10,304, - 12,304,6685,9,304,3,304,6687,8,304,1,305,1,305,1,305,1,305,1,305, - 1,305,3,305,6695,8,305,1,306,1,306,3,306,6699,8,306,1,306,1,306, - 1,306,5,306,6704,8,306,10,306,12,306,6707,9,306,1,307,1,307,1,307, - 3,307,6712,8,307,1,307,3,307,6715,8,307,1,308,1,308,3,308,6719,8, - 308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,5,308, - 6730,8,308,10,308,12,308,6733,9,308,1,308,1,308,1,308,3,308,6738, - 8,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,5,308,6748, - 8,308,10,308,12,308,6751,9,308,3,308,6753,8,308,1,309,1,309,1,310, - 1,310,1,310,1,310,1,310,3,310,6762,8,310,1,310,1,310,1,310,3,310, - 6767,8,310,1,311,1,311,1,312,1,312,1,313,1,313,1,314,1,314,1,315, - 1,315,1,316,1,316,1,317,1,317,1,318,1,318,1,318,5,318,6786,8,318, - 10,318,12,318,6789,9,318,1,319,1,319,1,320,1,320,1,321,1,321,1,322, - 1,322,1,323,1,323,1,323,5,323,6802,8,323,10,323,12,323,6805,9,323, - 1,324,1,324,1,325,1,325,1,325,5,325,6812,8,325,10,325,12,325,6815, - 9,325,1,326,1,326,3,326,6819,8,326,1,327,1,327,1,327,3,327,6824, - 8,327,3,327,6826,8,327,1,327,3,327,6829,8,327,1,327,1,327,3,327, - 6833,8,327,3,327,6835,8,327,1,328,1,328,1,328,5,328,6840,8,328,10, - 328,12,328,6843,9,328,1,329,1,329,1,329,3,329,6848,8,329,3,329,6850, - 8,329,1,329,3,329,6853,8,329,1,329,1,329,3,329,6857,8,329,3,329, - 6859,8,329,1,330,1,330,1,331,1,331,1,332,1,332,1,333,1,333,1,333, - 5,333,6870,8,333,10,333,12,333,6873,9,333,1,334,1,334,1,335,1,335, - 1,335,1,335,1,335,3,335,6882,8,335,1,335,3,335,6885,8,335,1,335, - 3,335,6888,8,335,1,336,1,336,1,336,1,336,1,337,1,337,1,337,1,338, - 1,338,1,338,1,338,3,338,6901,8,338,1,339,1,339,1,340,1,340,3,340, - 6907,8,340,1,340,3,340,6910,8,340,1,341,1,341,1,342,1,342,1,342, - 1,342,3,342,6918,8,342,1,343,1,343,1,344,1,344,1,344,3,344,6925, - 8,344,1,345,1,345,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, - 1,346,1,346,1,346,1,346,1,346,1,346,4,346,6943,8,346,11,346,12,346, - 6944,1,347,1,347,1,347,1,347,1,347,3,347,6952,8,347,3,347,6954,8, - 347,1,348,1,348,1,348,4,348,6959,8,348,11,348,12,348,6960,3,348, - 6963,8,348,1,349,1,349,3,349,6967,8,349,1,350,1,350,1,350,5,350, - 6972,8,350,10,350,12,350,6975,9,350,1,351,1,351,1,351,3,351,6980, - 8,351,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,3,352, - 6991,8,352,1,353,1,353,1,353,1,353,3,353,6997,8,353,1,354,1,354, - 1,355,1,355,3,355,7003,8,355,1,356,3,356,7006,8,356,1,356,1,356, - 3,356,7010,8,356,1,356,4,356,7013,8,356,11,356,12,356,7014,1,356, - 3,356,7018,8,356,1,356,1,356,3,356,7022,8,356,1,356,1,356,3,356, - 7026,8,356,3,356,7028,8,356,1,357,1,357,1,358,3,358,7033,8,358,1, - 358,1,358,1,359,3,359,7038,8,359,1,359,1,359,1,360,1,360,1,360,1, - 360,1,360,1,360,1,360,1,360,1,360,3,360,7051,8,360,1,360,3,360,7054, - 8,360,1,361,1,361,3,361,7058,8,361,1,361,3,361,7061,8,361,1,361, - 3,361,7064,8,361,1,361,1,361,1,361,3,361,7069,8,361,1,361,1,361, - 1,361,3,361,7074,8,361,1,361,1,361,1,361,1,361,3,361,7080,8,361, - 1,361,3,361,7083,8,361,1,361,1,361,1,361,3,361,7088,8,361,1,361, - 3,361,7091,8,361,1,361,1,361,1,361,3,361,7096,8,361,1,361,3,361, - 7099,8,361,1,361,1,361,3,361,7103,8,361,1,361,5,361,7106,8,361,10, - 361,12,361,7109,9,361,1,361,1,361,3,361,7113,8,361,1,361,5,361,7116, - 8,361,10,361,12,361,7119,9,361,1,361,1,361,3,361,7123,8,361,1,361, - 3,361,7126,8,361,1,361,5,361,7129,8,361,10,361,12,361,7132,9,361, - 1,361,1,361,3,361,7136,8,361,1,361,5,361,7139,8,361,10,361,12,361, - 7142,9,361,1,361,1,361,1,361,3,361,7147,8,361,1,361,1,361,1,361, - 3,361,7152,8,361,1,361,1,361,1,361,3,361,7157,8,361,1,361,1,361, - 1,361,3,361,7162,8,361,1,361,1,361,3,361,7166,8,361,1,361,3,361, - 7169,8,361,1,361,1,361,1,361,3,361,7174,8,361,1,361,1,361,3,361, - 7178,8,361,1,361,1,361,3,361,7182,8,361,1,362,1,362,1,362,1,362, - 5,362,7188,8,362,10,362,12,362,7191,9,362,1,362,1,362,1,363,1,363, - 3,363,7197,8,363,1,363,1,363,3,363,7201,8,363,1,363,1,363,1,363, - 3,363,7206,8,363,1,363,1,363,1,363,3,363,7211,8,363,1,363,1,363, - 3,363,7215,8,363,3,363,7217,8,363,1,363,3,363,7220,8,363,1,364,1, - 364,1,364,1,364,1,365,1,365,1,365,1,365,1,365,1,365,1,366,1,366, - 1,366,1,366,3,366,7236,8,366,1,366,1,366,1,367,1,367,1,367,1,367, - 5,367,7244,8,367,10,367,12,367,7247,9,367,1,367,1,367,1,368,1,368, - 1,368,5,368,7254,8,368,10,368,12,368,7257,9,368,1,369,1,369,1,369, - 1,369,5,369,7263,8,369,10,369,12,369,7266,9,369,1,370,1,370,1,370, - 1,370,5,370,7272,8,370,10,370,12,370,7275,9,370,1,370,1,370,1,371, - 1,371,3,371,7281,8,371,1,372,1,372,1,372,5,372,7286,8,372,10,372, - 12,372,7289,9,372,1,373,1,373,1,373,5,373,7294,8,373,10,373,12,373, - 7297,9,373,1,374,1,374,1,374,5,374,7302,8,374,10,374,12,374,7305, - 9,374,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,3,375, - 7316,8,375,1,375,1,375,1,375,1,375,1,375,3,375,7323,8,375,1,375, - 1,375,1,375,1,375,1,375,1,375,1,375,1,375,3,375,7333,8,375,1,376, - 1,376,1,376,3,376,7338,8,376,1,376,3,376,7341,8,376,1,376,1,376, - 1,376,3,376,7346,8,376,1,376,3,376,7349,8,376,1,377,1,377,1,377, - 1,378,1,378,1,378,1,378,1,379,1,379,1,379,1,380,1,380,1,380,1,380, - 1,380,1,380,3,380,7367,8,380,1,380,1,380,1,380,1,380,1,380,3,380, - 7374,8,380,1,380,1,380,1,380,3,380,7379,8,380,1,381,1,381,1,381, - 3,381,7384,8,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,276,1,276,3,276,6280,8,276,1,276,3,276,6283,8,276,1,276,1,276, + 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,3,276,6295,8,276, + 1,276,3,276,6298,8,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276, + 1,276,1,276,1,276,1,276,1,276,1,276,1,276,3,276,6314,8,276,3,276, + 6316,8,276,1,276,1,276,3,276,6320,8,276,1,276,1,276,1,276,1,276, + 1,276,3,276,6327,8,276,1,276,1,276,3,276,6331,8,276,1,276,1,276, + 1,276,1,276,1,276,3,276,6338,8,276,1,276,3,276,6341,8,276,1,276, + 1,276,1,276,1,276,1,276,5,276,6348,8,276,10,276,12,276,6351,9,276, + 3,276,6353,8,276,1,276,1,276,1,276,3,276,6358,8,276,1,276,1,276, + 1,276,1,276,3,276,6364,8,276,3,276,6366,8,276,1,276,1,276,1,276, + 1,276,3,276,6372,8,276,1,276,1,276,3,276,6376,8,276,1,277,1,277, + 1,277,1,277,3,277,6382,8,277,1,277,3,277,6385,8,277,1,277,3,277, + 6388,8,277,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, + 1,278,1,278,3,278,6401,8,278,1,278,3,278,6404,8,278,1,279,1,279, + 1,279,1,279,3,279,6410,8,279,1,280,3,280,6413,8,280,1,280,1,280, + 1,280,1,280,1,280,1,280,3,280,6421,8,280,1,280,1,280,1,280,1,280, + 1,280,1,280,3,280,6429,8,280,1,281,1,281,1,281,1,281,3,281,6435, + 8,281,1,281,3,281,6438,8,281,1,281,1,281,3,281,6442,8,281,1,282, + 1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282, + 3,282,6456,8,282,1,283,1,283,1,283,1,284,1,284,1,284,1,284,1,284, + 5,284,6466,8,284,10,284,12,284,6469,9,284,1,284,1,284,1,284,1,284, + 1,284,3,284,6476,8,284,1,284,1,284,3,284,6480,8,284,1,284,1,284, + 1,284,1,285,1,285,3,285,6487,8,285,1,285,1,285,1,285,5,285,6492, + 8,285,10,285,12,285,6495,9,285,1,286,1,286,3,286,6499,8,286,1,286, + 1,286,1,287,1,287,1,287,1,287,1,287,1,287,1,287,5,287,6510,8,287, + 10,287,12,287,6513,9,287,1,288,1,288,1,288,1,288,5,288,6519,8,288, + 10,288,12,288,6522,9,288,1,289,1,289,1,289,1,289,1,289,3,289,6529, + 8,289,1,290,1,290,1,290,3,290,6534,8,290,1,290,3,290,6537,8,290, + 1,291,1,291,1,291,3,291,6542,8,291,1,291,3,291,6545,8,291,1,292, + 1,292,1,293,1,293,1,294,1,294,1,294,1,294,1,294,1,294,3,294,6557, + 8,294,1,295,1,295,1,295,3,295,6562,8,295,1,295,1,295,1,295,1,295, + 1,295,1,295,1,295,1,295,1,295,1,295,1,295,3,295,6575,8,295,3,295, + 6577,8,295,1,295,1,295,1,295,3,295,6582,8,295,1,295,1,295,3,295, + 6586,8,295,1,295,3,295,6589,8,295,3,295,6591,8,295,1,296,1,296,1, + 296,1,296,1,296,3,296,6598,8,296,1,297,1,297,1,297,1,297,1,297,3, + 297,6605,8,297,1,297,3,297,6608,8,297,1,297,3,297,6611,8,297,1,297, + 1,297,1,297,1,297,3,297,6617,8,297,1,297,1,297,3,297,6621,8,297, + 1,298,1,298,1,298,1,298,3,298,6627,8,298,1,299,1,299,1,299,1,299, + 1,299,1,299,3,299,6635,8,299,1,299,1,299,1,300,1,300,1,300,1,300, + 1,300,3,300,6644,8,300,1,300,1,300,1,301,1,301,1,301,1,302,1,302, + 1,302,1,303,1,303,1,303,3,303,6657,8,303,1,303,1,303,1,303,3,303, + 6662,8,303,1,303,1,303,1,303,1,303,5,303,6668,8,303,10,303,12,303, + 6671,9,303,3,303,6673,8,303,1,304,1,304,1,304,3,304,6678,8,304,1, + 304,1,304,1,304,3,304,6683,8,304,1,304,1,304,1,304,1,304,5,304,6689, + 8,304,10,304,12,304,6692,9,304,3,304,6694,8,304,1,305,1,305,1,305, + 1,305,1,305,1,305,3,305,6702,8,305,1,306,1,306,3,306,6706,8,306, + 1,306,1,306,1,306,5,306,6711,8,306,10,306,12,306,6714,9,306,1,307, + 1,307,1,307,3,307,6719,8,307,1,307,3,307,6722,8,307,1,308,1,308, + 3,308,6726,8,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308, + 1,308,5,308,6737,8,308,10,308,12,308,6740,9,308,1,308,1,308,1,308, + 3,308,6745,8,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308, + 5,308,6755,8,308,10,308,12,308,6758,9,308,3,308,6760,8,308,1,309, + 1,309,1,310,1,310,1,310,1,310,1,310,3,310,6769,8,310,1,310,1,310, + 1,310,3,310,6774,8,310,1,311,1,311,1,312,1,312,1,313,1,313,1,314, + 1,314,1,315,1,315,1,316,1,316,1,317,1,317,1,318,1,318,1,318,5,318, + 6793,8,318,10,318,12,318,6796,9,318,1,319,1,319,1,320,1,320,1,321, + 1,321,1,322,1,322,1,323,1,323,1,323,5,323,6809,8,323,10,323,12,323, + 6812,9,323,1,324,1,324,1,325,1,325,1,325,5,325,6819,8,325,10,325, + 12,325,6822,9,325,1,326,1,326,3,326,6826,8,326,1,327,1,327,1,327, + 3,327,6831,8,327,3,327,6833,8,327,1,327,3,327,6836,8,327,1,327,1, + 327,3,327,6840,8,327,3,327,6842,8,327,1,328,1,328,1,328,5,328,6847, + 8,328,10,328,12,328,6850,9,328,1,329,1,329,1,329,3,329,6855,8,329, + 3,329,6857,8,329,1,329,3,329,6860,8,329,1,329,1,329,3,329,6864,8, + 329,1,329,3,329,6867,8,329,1,330,1,330,1,331,1,331,1,332,1,332,1, + 333,1,333,1,333,5,333,6878,8,333,10,333,12,333,6881,9,333,1,334, + 1,334,1,335,1,335,1,335,1,335,1,335,3,335,6890,8,335,1,335,3,335, + 6893,8,335,1,335,3,335,6896,8,335,1,336,1,336,1,336,1,336,1,337, + 1,337,1,337,1,338,1,338,1,338,1,338,3,338,6909,8,338,1,339,1,339, + 1,340,1,340,3,340,6915,8,340,1,340,3,340,6918,8,340,1,341,1,341, + 1,342,1,342,1,342,1,342,3,342,6926,8,342,1,343,1,343,1,344,1,344, + 1,344,3,344,6933,8,344,1,345,1,345,1,346,1,346,1,346,1,346,1,346, + 1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,4,346,6951, + 8,346,11,346,12,346,6952,1,347,1,347,1,347,1,347,1,347,3,347,6960, + 8,347,3,347,6962,8,347,1,348,1,348,1,348,4,348,6967,8,348,11,348, + 12,348,6968,3,348,6971,8,348,1,349,1,349,3,349,6975,8,349,1,350, + 1,350,1,350,5,350,6980,8,350,10,350,12,350,6983,9,350,1,351,1,351, + 1,351,3,351,6988,8,351,1,352,1,352,1,352,1,352,1,352,1,352,1,352, + 1,352,1,352,3,352,6999,8,352,1,353,1,353,1,353,1,353,3,353,7005, + 8,353,1,354,1,354,1,355,1,355,3,355,7011,8,355,1,356,3,356,7014, + 8,356,1,356,1,356,3,356,7018,8,356,1,356,4,356,7021,8,356,11,356, + 12,356,7022,1,356,3,356,7026,8,356,1,356,1,356,3,356,7030,8,356, + 1,356,1,356,3,356,7034,8,356,3,356,7036,8,356,1,357,1,357,1,358, + 3,358,7041,8,358,1,358,1,358,1,359,3,359,7046,8,359,1,359,1,359, + 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,3,360,7059, + 8,360,1,360,3,360,7062,8,360,1,361,1,361,3,361,7066,8,361,1,361, + 3,361,7069,8,361,1,361,3,361,7072,8,361,1,361,1,361,1,361,3,361, + 7077,8,361,1,361,1,361,1,361,3,361,7082,8,361,1,361,1,361,1,361, + 1,361,3,361,7088,8,361,1,361,3,361,7091,8,361,1,361,1,361,1,361, + 3,361,7096,8,361,1,361,3,361,7099,8,361,1,361,1,361,1,361,3,361, + 7104,8,361,1,361,3,361,7107,8,361,1,361,1,361,3,361,7111,8,361,1, + 361,5,361,7114,8,361,10,361,12,361,7117,9,361,1,361,1,361,3,361, + 7121,8,361,1,361,5,361,7124,8,361,10,361,12,361,7127,9,361,1,361, + 1,361,3,361,7131,8,361,1,361,3,361,7134,8,361,1,361,5,361,7137,8, + 361,10,361,12,361,7140,9,361,1,361,1,361,3,361,7144,8,361,1,361, + 5,361,7147,8,361,10,361,12,361,7150,9,361,1,361,1,361,1,361,3,361, + 7155,8,361,1,361,1,361,1,361,3,361,7160,8,361,1,361,1,361,1,361, + 3,361,7165,8,361,1,361,1,361,1,361,3,361,7170,8,361,1,361,1,361, + 3,361,7174,8,361,1,361,3,361,7177,8,361,1,361,1,361,1,361,3,361, + 7182,8,361,1,361,1,361,3,361,7186,8,361,1,361,1,361,3,361,7190,8, + 361,1,362,1,362,1,362,1,362,5,362,7196,8,362,10,362,12,362,7199, + 9,362,1,362,1,362,1,363,1,363,3,363,7205,8,363,1,363,1,363,3,363, + 7209,8,363,1,363,1,363,1,363,3,363,7214,8,363,1,363,1,363,1,363, + 3,363,7219,8,363,1,363,1,363,3,363,7223,8,363,3,363,7225,8,363,1, + 363,3,363,7228,8,363,1,364,1,364,1,364,1,364,1,365,1,365,1,365,1, + 365,1,365,1,365,1,366,1,366,1,366,1,366,3,366,7244,8,366,1,366,1, + 366,1,367,1,367,1,367,1,367,5,367,7252,8,367,10,367,12,367,7255, + 9,367,1,367,1,367,1,368,1,368,1,368,5,368,7262,8,368,10,368,12,368, + 7265,9,368,1,369,1,369,1,369,1,369,5,369,7271,8,369,10,369,12,369, + 7274,9,369,1,370,1,370,1,370,1,370,5,370,7280,8,370,10,370,12,370, + 7283,9,370,1,370,1,370,1,371,1,371,3,371,7289,8,371,1,372,1,372, + 1,372,5,372,7294,8,372,10,372,12,372,7297,9,372,1,373,1,373,1,373, + 5,373,7302,8,373,10,373,12,373,7305,9,373,1,374,1,374,1,374,5,374, + 7310,8,374,10,374,12,374,7313,9,374,1,375,1,375,1,375,1,375,1,375, + 1,375,1,375,1,375,1,375,3,375,7324,8,375,1,375,1,375,1,375,1,375, + 1,375,3,375,7331,8,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, + 1,375,3,375,7341,8,375,1,376,1,376,1,376,3,376,7346,8,376,1,376, + 3,376,7349,8,376,1,376,1,376,1,376,3,376,7354,8,376,1,376,3,376, + 7357,8,376,1,377,1,377,1,377,1,378,1,378,1,378,1,378,1,379,1,379, + 1,379,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380, + 3,380,7379,8,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,3,380, + 7388,8,380,1,380,3,380,7391,8,380,1,381,1,381,1,381,3,381,7396,8, + 381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, - 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, - 4,381,7416,8,381,11,381,12,381,7417,1,381,1,381,3,381,7422,8,381, - 1,381,1,381,1,381,1,381,4,381,7428,8,381,11,381,12,381,7429,1,381, - 1,381,3,381,7434,8,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, - 3,381,7443,8,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381,7451, - 8,381,1,381,1,381,1,381,3,381,7456,8,381,1,381,1,381,1,381,1,381, - 1,381,1,381,3,381,7464,8,381,1,381,1,381,1,381,3,381,7469,8,381, - 1,381,1,381,1,381,3,381,7474,8,381,3,381,7476,8,381,1,381,1,381, - 1,381,1,381,1,381,1,381,1,381,3,381,7485,8,381,1,381,1,381,1,381, - 3,381,7490,8,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381,7498, - 8,381,1,381,1,381,1,381,3,381,7503,8,381,1,381,1,381,1,381,1,381, - 1,381,1,381,3,381,7511,8,381,1,381,1,381,1,381,1,381,1,381,1,381, - 3,381,7519,8,381,1,381,3,381,7522,8,381,1,381,1,381,1,381,1,381, - 1,381,1,381,1,381,1,381,3,381,7532,8,381,1,381,1,381,1,381,1,381, - 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, - 1,381,3,381,7550,8,381,1,381,3,381,7553,8,381,1,381,3,381,7556,8, - 381,1,381,1,381,3,381,7560,8,381,1,382,1,382,1,382,1,382,1,382,1, - 383,1,383,1,383,1,383,5,383,7571,8,383,10,383,12,383,7574,9,383, - 1,383,1,383,1,383,1,383,1,383,3,383,7581,8,383,1,384,1,384,3,384, - 7585,8,384,1,385,1,385,1,385,3,385,7590,8,385,1,385,1,385,1,385, - 3,385,7595,8,385,1,385,1,385,1,385,1,385,3,385,7601,8,385,1,385, - 1,385,1,385,3,385,7606,8,385,1,385,1,385,3,385,7610,8,385,1,385, - 1,385,1,385,3,385,7615,8,385,1,385,1,385,1,385,3,385,7620,8,385, - 1,385,1,385,1,385,3,385,7625,8,385,1,385,1,385,1,385,1,385,1,385, - 1,385,5,385,7633,8,385,10,385,12,385,7636,9,385,3,385,7638,8,385, - 1,385,1,385,3,385,7642,8,385,1,385,1,385,3,385,7646,8,385,1,386, - 1,386,1,386,1,386,1,386,3,386,7653,8,386,1,386,1,386,3,386,7657, - 8,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,4,381,7428, + 8,381,11,381,12,381,7429,1,381,1,381,3,381,7434,8,381,1,381,1,381, + 1,381,1,381,4,381,7440,8,381,11,381,12,381,7441,1,381,1,381,3,381, + 7446,8,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381,7455, + 8,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381,7463,8,381,1,381, + 1,381,1,381,3,381,7468,8,381,1,381,1,381,1,381,1,381,1,381,1,381, + 3,381,7476,8,381,1,381,1,381,1,381,3,381,7481,8,381,1,381,1,381, + 1,381,3,381,7486,8,381,3,381,7488,8,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,3,381,7497,8,381,1,381,1,381,1,381,3,381,7502, + 8,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381,7510,8,381,1,381, + 1,381,1,381,3,381,7515,8,381,1,381,1,381,1,381,1,381,1,381,1,381, + 3,381,7523,8,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381,7531, + 8,381,1,381,3,381,7534,8,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,3,381,7544,8,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381, + 7562,8,381,1,381,3,381,7565,8,381,1,381,3,381,7568,8,381,1,381,1, + 381,3,381,7572,8,381,1,382,1,382,1,382,1,382,1,382,1,383,1,383,1, + 383,1,383,5,383,7583,8,383,10,383,12,383,7586,9,383,1,383,1,383, + 1,383,1,383,1,383,3,383,7593,8,383,1,384,1,384,3,384,7597,8,384, + 1,385,1,385,1,385,3,385,7602,8,385,1,385,1,385,1,385,3,385,7607, + 8,385,1,385,1,385,1,385,1,385,3,385,7613,8,385,1,385,1,385,1,385, + 3,385,7618,8,385,1,385,1,385,3,385,7622,8,385,1,385,1,385,1,385, + 3,385,7627,8,385,1,385,1,385,1,385,3,385,7632,8,385,1,385,1,385, + 1,385,3,385,7637,8,385,1,385,1,385,1,385,1,385,1,385,1,385,5,385, + 7645,8,385,10,385,12,385,7648,9,385,3,385,7650,8,385,1,385,1,385, + 3,385,7654,8,385,1,385,1,385,3,385,7658,8,385,1,386,1,386,1,386, + 1,386,1,386,3,386,7665,8,386,1,386,1,386,3,386,7669,8,386,1,386, 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,3,386,7686,8,386,1,387,1,387, - 1,387,1,387,1,387,1,387,3,387,7694,8,387,1,388,3,388,7697,8,388, - 1,388,3,388,7700,8,388,1,388,3,388,7703,8,388,1,388,3,388,7706,8, - 388,1,389,1,389,1,390,1,390,1,390,1,391,1,391,1,392,1,392,3,392, - 7717,8,392,1,393,1,393,1,393,1,393,1,393,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,3,394,7731,8,394,1,395,1,395,1,395,1,395,1,395, - 5,395,7738,8,395,10,395,12,395,7741,9,395,1,396,1,396,1,396,1,396, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,3,386,7698,8,386,1,387,1,387,1,387,1,387, + 1,387,1,387,3,387,7706,8,387,1,388,3,388,7709,8,388,1,388,3,388, + 7712,8,388,1,388,3,388,7715,8,388,1,388,3,388,7718,8,388,1,389,1, + 389,1,390,1,390,1,390,1,391,1,391,1,392,1,392,3,392,7729,8,392,1, + 393,1,393,1,393,1,393,1,393,1,394,1,394,1,394,1,394,1,394,1,394, + 1,394,3,394,7743,8,394,1,395,1,395,1,395,1,395,1,395,5,395,7750, + 8,395,10,395,12,395,7753,9,395,1,396,1,396,1,396,1,396,1,396,1,396, 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, - 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,3,396,7767, - 8,396,1,397,1,397,1,397,1,397,1,397,1,398,1,398,1,398,5,398,7777, - 8,398,10,398,12,398,7780,9,398,1,399,1,399,1,399,1,399,3,399,7786, - 8,399,1,400,1,400,1,400,1,400,1,400,1,400,3,400,7794,8,400,1,400, - 1,400,1,400,3,400,7799,8,400,1,400,1,400,1,400,1,400,5,400,7805, - 8,400,10,400,12,400,7808,9,400,1,401,1,401,1,401,1,401,1,401,1,401, - 1,401,1,401,1,401,3,401,7819,8,401,1,401,1,401,1,401,1,401,1,401, - 1,401,1,401,1,401,1,401,1,401,1,401,3,401,7832,8,401,1,401,1,401, - 1,401,1,401,3,401,7838,8,401,1,401,1,401,1,401,1,401,3,401,7844, - 8,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401, - 1,401,1,401,1,401,1,401,3,401,7860,8,401,1,401,1,401,1,401,1,401, - 3,401,7866,8,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,5,401, - 7875,8,401,10,401,12,401,7878,9,401,1,402,1,402,1,402,1,402,1,402, + 1,396,1,396,1,396,1,396,1,396,1,396,1,396,3,396,7779,8,396,1,397, + 1,397,1,397,1,397,1,397,1,398,1,398,1,398,5,398,7789,8,398,10,398, + 12,398,7792,9,398,1,399,1,399,1,399,3,399,7797,8,399,1,400,1,400, + 1,400,1,400,1,400,1,400,3,400,7805,8,400,1,400,1,400,1,400,3,400, + 7810,8,400,1,400,1,400,1,400,1,400,5,400,7816,8,400,10,400,12,400, + 7819,9,400,1,401,1,401,1,401,1,401,1,401,3,401,7826,8,401,1,401, + 1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,3,401, + 7839,8,401,1,401,1,401,1,401,1,401,3,401,7845,8,401,1,401,1,401, + 1,401,1,401,3,401,7851,8,401,1,401,1,401,1,401,1,401,1,401,1,401, + 1,401,1,401,1,401,1,401,1,401,1,401,1,401,3,401,7866,8,401,1,401, + 1,401,3,401,7870,8,401,1,401,1,401,1,401,1,401,3,401,7876,8,401, + 1,401,1,401,1,401,1,401,1,401,1,401,1,401,5,401,7885,8,401,10,401, + 12,401,7888,9,401,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, + 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,5,402,7906,8,402, + 10,402,12,402,7909,9,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, + 4,402,7918,8,402,11,402,12,402,7919,1,402,1,402,1,402,1,402,1,402, 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, - 1,402,5,402,7897,8,402,10,402,12,402,7900,9,402,1,402,1,402,1,402, - 1,402,1,402,1,402,1,402,4,402,7909,8,402,11,402,12,402,7910,1,402, - 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, - 1,402,1,402,1,402,3,402,7928,8,402,1,402,1,402,1,402,1,402,1,402, - 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,5,402, - 7945,8,402,10,402,12,402,7948,9,402,1,403,1,403,1,404,1,404,1,404, - 1,404,1,404,1,404,1,404,1,404,3,404,7960,8,404,1,405,1,405,1,405, - 1,405,1,405,1,405,1,405,3,405,7969,8,405,1,406,1,406,1,406,1,406, - 1,406,1,406,1,406,3,406,7978,8,406,1,407,1,407,1,407,1,407,1,407, - 1,407,1,407,3,407,7987,8,407,1,408,1,408,1,409,1,409,1,409,1,409, - 1,409,3,409,7996,8,409,1,410,1,410,1,411,1,411,1,412,1,412,1,413, - 1,413,1,414,1,414,1,415,1,415,1,416,1,416,1,416,0,5,208,210,800, - 802,804,417,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36, - 38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80, - 82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118, - 120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150, - 152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182, - 184,186,188,190,192,194,196,198,200,202,204,206,208,210,212,214, - 216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246, - 248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278, - 280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310, - 312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342, - 344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374, - 376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406, - 408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438, - 440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470, - 472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502, - 504,506,508,510,512,514,516,518,520,522,524,526,528,530,532,534, - 536,538,540,542,544,546,548,550,552,554,556,558,560,562,564,566, - 568,570,572,574,576,578,580,582,584,586,588,590,592,594,596,598, - 600,602,604,606,608,610,612,614,616,618,620,622,624,626,628,630, - 632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662, - 664,666,668,670,672,674,676,678,680,682,684,686,688,690,692,694, - 696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726, - 728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758, - 760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790, - 792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822, - 824,826,828,830,832,0,160,2,0,39,39,152,152,2,0,508,508,514,514, - 3,0,69,69,161,161,182,182,3,0,42,42,357,357,430,430,4,0,42,42,389, - 389,505,505,595,595,2,0,494,494,882,882,2,0,79,79,143,143,2,0,16, - 16,306,306,3,0,44,44,86,86,185,185,2,0,406,406,538,538,3,0,486,486, - 661,661,670,670,2,0,364,364,436,436,2,0,325,325,450,450,2,0,42,42, - 871,872,2,0,37,37,678,678,2,0,323,323,418,418,2,0,435,435,686,686, - 3,0,80,80,85,85,126,126,2,0,82,82,92,92,2,0,69,69,161,161,3,0,42, - 42,374,374,403,403,3,0,42,42,370,370,802,802,2,0,648,648,685,685, - 3,0,408,408,526,526,597,597,2,0,329,329,522,522,1,0,871,872,2,0, - 882,882,889,889,2,0,82,82,360,360,2,0,523,523,882,882,2,0,524,524, - 882,882,3,0,402,402,445,445,502,502,7,0,42,42,342,342,345,345,374, - 374,403,403,554,554,889,889,2,0,494,494,506,506,1,0,872,873,2,0, - 6,6,51,51,2,0,5,5,81,81,2,0,27,27,31,31,4,0,42,42,357,357,430,430, - 434,434,2,0,368,368,375,375,2,0,369,369,425,425,2,0,13,13,176,176, - 2,0,194,194,690,690,2,0,22,22,146,146,3,0,43,43,76,76,107,107,2, - 0,7,7,49,49,2,0,107,107,347,347,2,0,337,337,398,398,2,0,102,102, - 587,587,2,0,43,43,107,107,3,0,59,59,181,181,828,828,2,0,185,185, - 594,594,2,0,159,159,503,503,4,0,402,402,445,445,501,501,542,542, - 2,0,402,402,501,501,2,0,14,14,45,45,3,0,66,66,79,79,187,187,2,0, - 35,35,84,84,2,0,98,98,150,150,2,0,7,7,49,50,1,0,637,638,2,0,173, - 173,752,752,2,0,413,413,593,593,2,0,228,228,453,453,2,0,563,563, - 598,598,8,0,108,108,455,455,459,460,462,462,464,464,467,476,499, - 499,557,557,6,0,456,458,461,461,463,463,465,465,477,477,558,558, - 7,0,109,109,411,411,416,416,454,454,466,466,573,573,617,617,2,0, - 116,116,882,882,2,0,118,119,507,507,7,0,499,499,557,557,606,609, - 611,611,619,619,622,628,630,632,6,0,558,558,610,610,612,612,614, - 616,618,618,620,620,7,0,412,412,416,416,573,573,613,613,617,617, - 621,621,629,629,3,0,70,70,118,119,507,507,2,0,438,438,639,639,2, - 0,633,633,635,635,2,0,317,317,640,640,2,0,91,91,577,577,2,0,51,51, - 362,362,3,0,32,32,61,61,180,180,2,0,15,15,340,340,2,0,678,678,835, - 835,3,0,132,132,173,173,409,409,3,0,6,6,51,51,492,492,3,0,13,13, - 20,20,188,188,2,0,42,42,122,122,2,0,104,104,183,183,1,0,873,874, - 2,0,333,333,598,598,2,0,40,40,684,684,2,0,392,392,549,549,2,0,115, - 115,450,450,4,0,208,208,210,210,216,216,649,649,3,0,413,413,531, - 531,893,894,2,0,841,841,857,857,2,0,318,318,559,559,2,0,68,68,80, - 80,3,0,132,132,178,178,385,385,2,0,493,493,645,645,2,0,383,383,688, - 688,3,0,82,82,93,93,426,426,4,0,413,413,450,450,531,532,593,593, - 2,0,645,645,683,683,2,0,349,349,548,548,6,0,228,228,380,380,382, - 382,410,410,556,556,599,599,2,0,45,46,62,62,3,0,442,442,663,663, - 666,666,10,0,332,332,339,339,351,353,359,359,487,487,495,495,650, - 650,657,657,822,822,832,832,2,0,36,36,170,170,2,0,117,117,831,831, - 11,0,332,332,339,339,351,353,359,359,487,487,495,495,578,578,650, - 650,657,657,822,822,832,832,2,0,870,870,891,892,1,0,892,893,2,0, - 348,348,797,808,3,0,871,874,883,883,885,885,2,0,63,63,179,179,2, - 0,116,116,886,886,5,0,26,26,224,226,233,233,235,238,498,498,2,0, - 26,26,224,224,2,0,26,26,224,225,1,0,198,209,3,0,184,184,197,197, - 596,596,2,0,213,218,403,403,6,0,219,219,230,230,232,232,234,234, - 241,241,321,322,4,0,220,223,228,229,231,231,319,319,2,0,155,155, - 239,239,2,0,442,442,813,821,2,0,228,228,498,498,5,0,202,202,208, - 208,219,220,222,222,442,442,1,0,216,217,2,0,184,184,596,596,2,0, - 202,202,208,208,2,0,189,189,682,682,2,0,287,288,294,294,3,0,152, - 152,285,288,303,303,1,0,297,298,3,0,18,18,96,96,177,177,2,0,224, - 224,228,228,2,0,219,220,222,222,3,0,14,14,45,45,830,830,3,0,258, - 258,270,271,281,281,3,0,259,261,277,280,282,284,2,0,267,267,269, - 269,2,0,265,265,268,268,2,0,263,264,274,276,2,0,134,134,587,587, - 2,0,405,405,539,539,2,0,512,512,529,529,2,0,114,114,860,860,3,0, - 63,63,179,179,674,674,2,0,139,139,151,151,3,0,7,7,309,309,602,602, - 3,0,114,114,853,854,860,861,1,0,850,856,2,0,228,228,756,796,1,0, - 809,812,5,0,717,718,734,736,743,743,749,750,752,752,1,0,696,703, - 3,0,219,223,236,236,239,239,76,0,12,12,15,15,19,19,30,30,36,37,42, - 42,48,48,55,55,57,57,59,59,74,74,95,95,117,117,122,122,125,125,131, - 131,160,160,170,170,241,241,255,262,266,266,270,271,277,284,304, - 309,311,329,331,343,345,376,378,393,395,400,402,404,406,410,413, - 415,417,426,428,428,430,434,436,454,456,463,465,473,475,476,478, - 498,500,506,508,510,512,522,525,530,533,538,540,542,544,554,556, - 562,565,572,575,575,577,578,580,605,633,647,649,665,667,674,676, - 685,687,688,690,695,704,704,706,707,709,712,714,716,719,721,726, - 727,729,733,737,738,740,742,744,744,746,748,751,751,753,755,802, - 802,822,822,825,825,832,833,838,838,24,0,39,39,98,98,150,150,152, - 152,219,221,223,223,253,254,262,265,267,269,272,276,296,296,435, - 435,686,686,696,703,746,746,813,813,816,821,823,824,826,827,829, - 831,834,834,836,836,840,840,856,856,9371,0,837,1,0,0,0,2,847,1,0, - 0,0,4,856,1,0,0,0,6,858,1,0,0,0,8,899,1,0,0,0,10,918,1,0,0,0,12, - 929,1,0,0,0,14,945,1,0,0,0,16,950,1,0,0,0,18,962,1,0,0,0,20,997, - 1,0,0,0,22,1007,1,0,0,0,24,1009,1,0,0,0,26,1021,1,0,0,0,28,1051, - 1,0,0,0,30,1087,1,0,0,0,32,1138,1,0,0,0,34,1167,1,0,0,0,36,1174, - 1,0,0,0,38,1271,1,0,0,0,40,1273,1,0,0,0,42,1310,1,0,0,0,44,1374, - 1,0,0,0,46,1396,1,0,0,0,48,1402,1,0,0,0,50,1424,1,0,0,0,52,1504, - 1,0,0,0,54,1511,1,0,0,0,56,1513,1,0,0,0,58,1518,1,0,0,0,60,1558, - 1,0,0,0,62,1564,1,0,0,0,64,1566,1,0,0,0,66,1587,1,0,0,0,68,1594, - 1,0,0,0,70,1596,1,0,0,0,72,1621,1,0,0,0,74,1624,1,0,0,0,76,1652, - 1,0,0,0,78,1668,1,0,0,0,80,1670,1,0,0,0,82,1764,1,0,0,0,84,1767, - 1,0,0,0,86,1779,1,0,0,0,88,1783,1,0,0,0,90,1833,1,0,0,0,92,1835, - 1,0,0,0,94,1863,1,0,0,0,96,1873,1,0,0,0,98,2060,1,0,0,0,100,2062, - 1,0,0,0,102,2064,1,0,0,0,104,2067,1,0,0,0,106,2142,1,0,0,0,108,2165, - 1,0,0,0,110,2313,1,0,0,0,112,2318,1,0,0,0,114,2320,1,0,0,0,116,2330, - 1,0,0,0,118,2386,1,0,0,0,120,2406,1,0,0,0,122,2408,1,0,0,0,124,2443, - 1,0,0,0,126,2452,1,0,0,0,128,2459,1,0,0,0,130,2482,1,0,0,0,132,2491, - 1,0,0,0,134,2506,1,0,0,0,136,2528,1,0,0,0,138,2584,1,0,0,0,140,2880, - 1,0,0,0,142,2980,1,0,0,0,144,2982,1,0,0,0,146,2989,1,0,0,0,148,2996, - 1,0,0,0,150,3019,1,0,0,0,152,3029,1,0,0,0,154,3036,1,0,0,0,156,3043, - 1,0,0,0,158,3050,1,0,0,0,160,3059,1,0,0,0,162,3071,1,0,0,0,164,3084, - 1,0,0,0,166,3091,1,0,0,0,168,3107,1,0,0,0,170,3134,1,0,0,0,172,3136, - 1,0,0,0,174,3146,1,0,0,0,176,3150,1,0,0,0,178,3156,1,0,0,0,180,3168, - 1,0,0,0,182,3170,1,0,0,0,184,3177,1,0,0,0,186,3179,1,0,0,0,188,3228, - 1,0,0,0,190,3237,1,0,0,0,192,3239,1,0,0,0,194,3250,1,0,0,0,196,3256, - 1,0,0,0,198,3330,1,0,0,0,200,3393,1,0,0,0,202,3411,1,0,0,0,204,3495, - 1,0,0,0,206,3498,1,0,0,0,208,3510,1,0,0,0,210,3530,1,0,0,0,212,3558, - 1,0,0,0,214,3562,1,0,0,0,216,3564,1,0,0,0,218,3574,1,0,0,0,220,3594, - 1,0,0,0,222,3601,1,0,0,0,224,3603,1,0,0,0,226,3614,1,0,0,0,228,3623, - 1,0,0,0,230,3629,1,0,0,0,232,3652,1,0,0,0,234,3654,1,0,0,0,236,3690, - 1,0,0,0,238,3745,1,0,0,0,240,3754,1,0,0,0,242,3774,1,0,0,0,244,3786, - 1,0,0,0,246,3790,1,0,0,0,248,3801,1,0,0,0,250,3834,1,0,0,0,252,3855, - 1,0,0,0,254,3865,1,0,0,0,256,3869,1,0,0,0,258,3895,1,0,0,0,260,3942, - 1,0,0,0,262,3944,1,0,0,0,264,3948,1,0,0,0,266,3965,1,0,0,0,268,4016, - 1,0,0,0,270,4025,1,0,0,0,272,4035,1,0,0,0,274,4037,1,0,0,0,276,4067, - 1,0,0,0,278,4075,1,0,0,0,280,4092,1,0,0,0,282,4108,1,0,0,0,284,4145, - 1,0,0,0,286,4151,1,0,0,0,288,4160,1,0,0,0,290,4173,1,0,0,0,292,4177, - 1,0,0,0,294,4215,1,0,0,0,296,4253,1,0,0,0,298,4267,1,0,0,0,300,4275, - 1,0,0,0,302,4279,1,0,0,0,304,4285,1,0,0,0,306,4299,1,0,0,0,308,4302, - 1,0,0,0,310,4320,1,0,0,0,312,4324,1,0,0,0,314,4340,1,0,0,0,316,4342, - 1,0,0,0,318,4354,1,0,0,0,320,4358,1,0,0,0,322,4375,1,0,0,0,324,4392, - 1,0,0,0,326,4395,1,0,0,0,328,4405,1,0,0,0,330,4409,1,0,0,0,332,4419, - 1,0,0,0,334,4422,1,0,0,0,336,4427,1,0,0,0,338,4447,1,0,0,0,340,4449, - 1,0,0,0,342,4466,1,0,0,0,344,4475,1,0,0,0,346,4484,1,0,0,0,348,4486, - 1,0,0,0,350,4500,1,0,0,0,352,4514,1,0,0,0,354,4529,1,0,0,0,356,4538, - 1,0,0,0,358,4563,1,0,0,0,360,4578,1,0,0,0,362,4597,1,0,0,0,364,4627, - 1,0,0,0,366,4629,1,0,0,0,368,4631,1,0,0,0,370,4633,1,0,0,0,372,4648, - 1,0,0,0,374,4677,1,0,0,0,376,4679,1,0,0,0,378,4681,1,0,0,0,380,4683, - 1,0,0,0,382,4698,1,0,0,0,384,4700,1,0,0,0,386,4767,1,0,0,0,388,4769, - 1,0,0,0,390,4775,1,0,0,0,392,4802,1,0,0,0,394,4816,1,0,0,0,396,4827, - 1,0,0,0,398,4829,1,0,0,0,400,4835,1,0,0,0,402,4845,1,0,0,0,404,4849, - 1,0,0,0,406,4856,1,0,0,0,408,4860,1,0,0,0,410,4866,1,0,0,0,412,4873, - 1,0,0,0,414,4879,1,0,0,0,416,4885,1,0,0,0,418,4890,1,0,0,0,420,4935, - 1,0,0,0,422,4956,1,0,0,0,424,4981,1,0,0,0,426,4984,1,0,0,0,428,4990, - 1,0,0,0,430,5006,1,0,0,0,432,5021,1,0,0,0,434,5027,1,0,0,0,436,5057, - 1,0,0,0,438,5059,1,0,0,0,440,5066,1,0,0,0,442,5078,1,0,0,0,444,5084, - 1,0,0,0,446,5109,1,0,0,0,448,5113,1,0,0,0,450,5117,1,0,0,0,452,5128, - 1,0,0,0,454,5136,1,0,0,0,456,5199,1,0,0,0,458,5258,1,0,0,0,460,5360, - 1,0,0,0,462,5370,1,0,0,0,464,5372,1,0,0,0,466,5390,1,0,0,0,468,5414, - 1,0,0,0,470,5438,1,0,0,0,472,5445,1,0,0,0,474,5465,1,0,0,0,476,5474, - 1,0,0,0,478,5536,1,0,0,0,480,5538,1,0,0,0,482,5542,1,0,0,0,484,5576, - 1,0,0,0,486,5578,1,0,0,0,488,5581,1,0,0,0,490,5645,1,0,0,0,492,5664, - 1,0,0,0,494,5691,1,0,0,0,496,5695,1,0,0,0,498,5716,1,0,0,0,500,5726, - 1,0,0,0,502,5736,1,0,0,0,504,5776,1,0,0,0,506,5778,1,0,0,0,508,5781, - 1,0,0,0,510,5811,1,0,0,0,512,5813,1,0,0,0,514,5816,1,0,0,0,516,5916, - 1,0,0,0,518,5934,1,0,0,0,520,5936,1,0,0,0,522,5988,1,0,0,0,524,5990, - 1,0,0,0,526,5999,1,0,0,0,528,6005,1,0,0,0,530,6012,1,0,0,0,532,6027, - 1,0,0,0,534,6036,1,0,0,0,536,6038,1,0,0,0,538,6052,1,0,0,0,540,6073, - 1,0,0,0,542,6078,1,0,0,0,544,6088,1,0,0,0,546,6094,1,0,0,0,548,6128, - 1,0,0,0,550,6182,1,0,0,0,552,6368,1,0,0,0,554,6380,1,0,0,0,556,6396, - 1,0,0,0,558,6402,1,0,0,0,560,6421,1,0,0,0,562,6434,1,0,0,0,564,6448, - 1,0,0,0,566,6450,1,0,0,0,568,6453,1,0,0,0,570,6477,1,0,0,0,572,6489, - 1,0,0,0,574,6495,1,0,0,0,576,6507,1,0,0,0,578,6521,1,0,0,0,580,6523, - 1,0,0,0,582,6531,1,0,0,0,584,6539,1,0,0,0,586,6541,1,0,0,0,588,6543, - 1,0,0,0,590,6583,1,0,0,0,592,6590,1,0,0,0,594,6592,1,0,0,0,596,6615, - 1,0,0,0,598,6621,1,0,0,0,600,6631,1,0,0,0,602,6640,1,0,0,0,604,6643, - 1,0,0,0,606,6646,1,0,0,0,608,6667,1,0,0,0,610,6688,1,0,0,0,612,6696, - 1,0,0,0,614,6708,1,0,0,0,616,6716,1,0,0,0,618,6754,1,0,0,0,620,6766, - 1,0,0,0,622,6768,1,0,0,0,624,6770,1,0,0,0,626,6772,1,0,0,0,628,6774, - 1,0,0,0,630,6776,1,0,0,0,632,6778,1,0,0,0,634,6780,1,0,0,0,636,6782, - 1,0,0,0,638,6790,1,0,0,0,640,6792,1,0,0,0,642,6794,1,0,0,0,644,6796, - 1,0,0,0,646,6798,1,0,0,0,648,6806,1,0,0,0,650,6808,1,0,0,0,652,6818, - 1,0,0,0,654,6834,1,0,0,0,656,6836,1,0,0,0,658,6858,1,0,0,0,660,6860, - 1,0,0,0,662,6862,1,0,0,0,664,6864,1,0,0,0,666,6866,1,0,0,0,668,6874, - 1,0,0,0,670,6884,1,0,0,0,672,6889,1,0,0,0,674,6893,1,0,0,0,676,6900, - 1,0,0,0,678,6902,1,0,0,0,680,6909,1,0,0,0,682,6911,1,0,0,0,684,6917, - 1,0,0,0,686,6919,1,0,0,0,688,6924,1,0,0,0,690,6926,1,0,0,0,692,6928, - 1,0,0,0,694,6946,1,0,0,0,696,6962,1,0,0,0,698,6964,1,0,0,0,700,6968, - 1,0,0,0,702,6979,1,0,0,0,704,6990,1,0,0,0,706,6996,1,0,0,0,708,6998, - 1,0,0,0,710,7002,1,0,0,0,712,7027,1,0,0,0,714,7029,1,0,0,0,716,7032, - 1,0,0,0,718,7037,1,0,0,0,720,7053,1,0,0,0,722,7181,1,0,0,0,724,7183, - 1,0,0,0,726,7216,1,0,0,0,728,7221,1,0,0,0,730,7225,1,0,0,0,732,7231, - 1,0,0,0,734,7239,1,0,0,0,736,7250,1,0,0,0,738,7258,1,0,0,0,740,7267, - 1,0,0,0,742,7280,1,0,0,0,744,7282,1,0,0,0,746,7290,1,0,0,0,748,7298, - 1,0,0,0,750,7332,1,0,0,0,752,7348,1,0,0,0,754,7350,1,0,0,0,756,7353, - 1,0,0,0,758,7357,1,0,0,0,760,7378,1,0,0,0,762,7559,1,0,0,0,764,7561, - 1,0,0,0,766,7580,1,0,0,0,768,7582,1,0,0,0,770,7645,1,0,0,0,772,7685, - 1,0,0,0,774,7687,1,0,0,0,776,7696,1,0,0,0,778,7707,1,0,0,0,780,7709, - 1,0,0,0,782,7712,1,0,0,0,784,7716,1,0,0,0,786,7718,1,0,0,0,788,7730, - 1,0,0,0,790,7732,1,0,0,0,792,7766,1,0,0,0,794,7768,1,0,0,0,796,7773, - 1,0,0,0,798,7785,1,0,0,0,800,7798,1,0,0,0,802,7809,1,0,0,0,804,7927, - 1,0,0,0,806,7949,1,0,0,0,808,7959,1,0,0,0,810,7968,1,0,0,0,812,7977, - 1,0,0,0,814,7986,1,0,0,0,816,7988,1,0,0,0,818,7995,1,0,0,0,820,7997, - 1,0,0,0,822,7999,1,0,0,0,824,8001,1,0,0,0,826,8003,1,0,0,0,828,8005, - 1,0,0,0,830,8007,1,0,0,0,832,8009,1,0,0,0,834,836,3,2,1,0,835,834, - 1,0,0,0,836,839,1,0,0,0,837,835,1,0,0,0,837,838,1,0,0,0,838,840, - 1,0,0,0,839,837,1,0,0,0,840,841,5,0,0,1,841,1,1,0,0,0,842,844,3, - 4,2,0,843,845,5,869,0,0,844,843,1,0,0,0,844,845,1,0,0,0,845,848, - 1,0,0,0,846,848,3,6,3,0,847,842,1,0,0,0,847,846,1,0,0,0,848,3,1, - 0,0,0,849,857,3,8,4,0,850,857,3,10,5,0,851,857,3,12,6,0,852,857, - 3,14,7,0,853,857,3,16,8,0,854,857,3,20,10,0,855,857,3,22,11,0,856, - 849,1,0,0,0,856,850,1,0,0,0,856,851,1,0,0,0,856,852,1,0,0,0,856, - 853,1,0,0,0,856,854,1,0,0,0,856,855,1,0,0,0,857,5,1,0,0,0,858,859, - 5,869,0,0,859,7,1,0,0,0,860,900,3,24,12,0,861,900,3,26,13,0,862, - 900,3,28,14,0,863,900,3,30,15,0,864,900,3,32,16,0,865,900,3,536, - 268,0,866,900,3,36,18,0,867,900,3,38,19,0,868,900,3,40,20,0,869, - 900,3,42,21,0,870,900,3,44,22,0,871,900,3,50,25,0,872,900,3,34,17, - 0,873,900,3,120,60,0,874,900,3,122,61,0,875,900,3,124,62,0,876,900, - 3,126,63,0,877,900,3,128,64,0,878,900,3,130,65,0,879,900,3,132,66, - 0,880,900,3,134,67,0,881,900,3,136,68,0,882,900,3,138,69,0,883,900, - 3,144,72,0,884,900,3,146,73,0,885,900,3,148,74,0,886,900,3,150,75, - 0,887,900,3,152,76,0,888,900,3,154,77,0,889,900,3,156,78,0,890,900, - 3,158,79,0,891,900,3,160,80,0,892,900,3,162,81,0,893,900,3,164,82, - 0,894,900,3,166,83,0,895,900,3,168,84,0,896,900,3,170,85,0,897,900, - 3,172,86,0,898,900,3,176,88,0,899,860,1,0,0,0,899,861,1,0,0,0,899, - 862,1,0,0,0,899,863,1,0,0,0,899,864,1,0,0,0,899,865,1,0,0,0,899, - 866,1,0,0,0,899,867,1,0,0,0,899,868,1,0,0,0,899,869,1,0,0,0,899, - 870,1,0,0,0,899,871,1,0,0,0,899,872,1,0,0,0,899,873,1,0,0,0,899, - 874,1,0,0,0,899,875,1,0,0,0,899,876,1,0,0,0,899,877,1,0,0,0,899, - 878,1,0,0,0,899,879,1,0,0,0,899,880,1,0,0,0,899,881,1,0,0,0,899, - 882,1,0,0,0,899,883,1,0,0,0,899,884,1,0,0,0,899,885,1,0,0,0,899, - 886,1,0,0,0,899,887,1,0,0,0,899,888,1,0,0,0,899,889,1,0,0,0,899, - 890,1,0,0,0,899,891,1,0,0,0,899,892,1,0,0,0,899,893,1,0,0,0,899, - 894,1,0,0,0,899,895,1,0,0,0,899,896,1,0,0,0,899,897,1,0,0,0,899, - 898,1,0,0,0,900,9,1,0,0,0,901,919,3,204,102,0,902,919,3,206,103, - 0,903,919,3,186,93,0,904,919,3,214,107,0,905,919,3,180,90,0,906, - 919,3,202,101,0,907,919,3,178,89,0,908,919,3,192,96,0,909,919,3, - 196,98,0,910,919,3,198,99,0,911,919,3,200,100,0,912,919,3,182,91, - 0,913,919,3,184,92,0,914,919,3,246,123,0,915,919,3,216,108,0,916, - 919,3,612,306,0,917,919,3,614,307,0,918,901,1,0,0,0,918,902,1,0, - 0,0,918,903,1,0,0,0,918,904,1,0,0,0,918,905,1,0,0,0,918,906,1,0, - 0,0,918,907,1,0,0,0,918,908,1,0,0,0,918,909,1,0,0,0,918,910,1,0, - 0,0,918,911,1,0,0,0,918,912,1,0,0,0,918,913,1,0,0,0,918,914,1,0, - 0,0,918,915,1,0,0,0,918,916,1,0,0,0,918,917,1,0,0,0,919,11,1,0,0, - 0,920,930,3,316,158,0,921,930,3,318,159,0,922,930,3,320,160,0,923, - 930,3,322,161,0,924,930,3,324,162,0,925,930,3,326,163,0,926,930, - 3,328,164,0,927,930,3,330,165,0,928,930,3,332,166,0,929,920,1,0, - 0,0,929,921,1,0,0,0,929,922,1,0,0,0,929,923,1,0,0,0,929,924,1,0, - 0,0,929,925,1,0,0,0,929,926,1,0,0,0,929,927,1,0,0,0,929,928,1,0, - 0,0,930,13,1,0,0,0,931,946,3,348,174,0,932,946,3,350,175,0,933,946, - 3,352,176,0,934,946,3,354,177,0,935,946,3,356,178,0,936,946,3,358, - 179,0,937,946,3,360,180,0,938,946,3,362,181,0,939,946,3,398,199, - 0,940,946,3,400,200,0,941,946,3,402,201,0,942,946,3,404,202,0,943, - 946,3,406,203,0,944,946,3,408,204,0,945,931,1,0,0,0,945,932,1,0, - 0,0,945,933,1,0,0,0,945,934,1,0,0,0,945,935,1,0,0,0,945,936,1,0, - 0,0,945,937,1,0,0,0,945,938,1,0,0,0,945,939,1,0,0,0,945,940,1,0, - 0,0,945,941,1,0,0,0,945,942,1,0,0,0,945,943,1,0,0,0,945,944,1,0, - 0,0,946,15,1,0,0,0,947,951,3,410,205,0,948,951,3,412,206,0,949,951, - 3,414,207,0,950,947,1,0,0,0,950,948,1,0,0,0,950,949,1,0,0,0,951, - 17,1,0,0,0,952,963,3,418,209,0,953,963,3,420,210,0,954,963,3,422, - 211,0,955,963,3,426,213,0,956,963,3,428,214,0,957,963,3,430,215, - 0,958,963,3,434,217,0,959,963,3,424,212,0,960,963,3,432,216,0,961, - 963,3,436,218,0,962,952,1,0,0,0,962,953,1,0,0,0,962,954,1,0,0,0, - 962,955,1,0,0,0,962,956,1,0,0,0,962,957,1,0,0,0,962,958,1,0,0,0, - 962,959,1,0,0,0,962,960,1,0,0,0,962,961,1,0,0,0,963,19,1,0,0,0,964, - 998,3,454,227,0,965,998,3,456,228,0,966,998,3,458,229,0,967,998, - 3,460,230,0,968,998,3,464,232,0,969,998,3,476,238,0,970,998,3,478, - 239,0,971,998,3,466,233,0,972,998,3,468,234,0,973,998,3,470,235, - 0,974,998,3,472,236,0,975,998,3,522,261,0,976,998,3,524,262,0,977, - 998,3,526,263,0,978,998,3,528,264,0,979,998,3,530,265,0,980,998, - 3,538,269,0,981,998,3,542,271,0,982,998,3,544,272,0,983,998,3,546, - 273,0,984,998,3,548,274,0,985,998,3,550,275,0,986,998,3,552,276, - 0,987,998,3,566,283,0,988,998,3,568,284,0,989,998,3,570,285,0,990, - 998,3,572,286,0,991,998,3,574,287,0,992,998,3,576,288,0,993,998, - 3,580,290,0,994,998,3,582,291,0,995,998,3,584,292,0,996,998,3,586, - 293,0,997,964,1,0,0,0,997,965,1,0,0,0,997,966,1,0,0,0,997,967,1, - 0,0,0,997,968,1,0,0,0,997,969,1,0,0,0,997,970,1,0,0,0,997,971,1, - 0,0,0,997,972,1,0,0,0,997,973,1,0,0,0,997,974,1,0,0,0,997,975,1, - 0,0,0,997,976,1,0,0,0,997,977,1,0,0,0,997,978,1,0,0,0,997,979,1, - 0,0,0,997,980,1,0,0,0,997,981,1,0,0,0,997,982,1,0,0,0,997,983,1, - 0,0,0,997,984,1,0,0,0,997,985,1,0,0,0,997,986,1,0,0,0,997,987,1, - 0,0,0,997,988,1,0,0,0,997,989,1,0,0,0,997,990,1,0,0,0,997,991,1, - 0,0,0,997,992,1,0,0,0,997,993,1,0,0,0,997,994,1,0,0,0,997,995,1, - 0,0,0,997,996,1,0,0,0,998,21,1,0,0,0,999,1008,3,596,298,0,1000,1008, - 3,598,299,0,1001,1008,3,600,300,0,1002,1008,3,602,301,0,1003,1008, - 3,604,302,0,1004,1008,3,606,303,0,1005,1008,3,608,304,0,1006,1008, - 3,616,308,0,1007,999,1,0,0,0,1007,1000,1,0,0,0,1007,1001,1,0,0,0, - 1007,1002,1,0,0,0,1007,1003,1,0,0,0,1007,1004,1,0,0,0,1007,1005, - 1,0,0,0,1007,1006,1,0,0,0,1008,23,1,0,0,0,1009,1010,5,34,0,0,1010, - 1012,7,0,0,0,1011,1013,3,756,378,0,1012,1011,1,0,0,0,1012,1013,1, - 0,0,0,1013,1014,1,0,0,0,1014,1018,3,622,311,0,1015,1017,3,52,26, - 0,1016,1015,1,0,0,0,1017,1020,1,0,0,0,1018,1016,1,0,0,0,1018,1019, - 1,0,0,0,1019,25,1,0,0,0,1020,1018,1,0,0,0,1021,1023,5,34,0,0,1022, - 1024,3,58,29,0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025,1,0, - 0,0,1025,1027,5,385,0,0,1026,1028,3,756,378,0,1027,1026,1,0,0,0, - 1027,1028,1,0,0,0,1028,1029,1,0,0,0,1029,1030,3,698,349,0,1030,1031, - 5,119,0,0,1031,1032,5,590,0,0,1032,1039,3,60,30,0,1033,1034,5,119, - 0,0,1034,1036,5,343,0,0,1035,1037,5,114,0,0,1036,1035,1,0,0,0,1036, - 1037,1,0,0,0,1037,1038,1,0,0,0,1038,1040,5,541,0,0,1039,1033,1,0, - 0,0,1039,1040,1,0,0,0,1040,1042,1,0,0,0,1041,1043,3,68,34,0,1042, - 1041,1,0,0,0,1042,1043,1,0,0,0,1043,1046,1,0,0,0,1044,1045,5,340, - 0,0,1045,1047,5,882,0,0,1046,1044,1,0,0,0,1046,1047,1,0,0,0,1047, - 1048,1,0,0,0,1048,1049,5,371,0,0,1049,1050,3,416,208,0,1050,27,1, - 0,0,0,1051,1053,5,34,0,0,1052,1054,7,1,0,0,1053,1052,1,0,0,0,1053, - 1054,1,0,0,0,1054,1056,1,0,0,0,1055,1057,7,2,0,0,1056,1055,1,0,0, - 0,1056,1057,1,0,0,0,1057,1058,1,0,0,0,1058,1059,5,82,0,0,1059,1061, - 3,634,317,0,1060,1062,3,70,35,0,1061,1060,1,0,0,0,1061,1062,1,0, - 0,0,1062,1063,1,0,0,0,1063,1064,5,119,0,0,1064,1065,3,648,324,0, - 1065,1069,3,734,367,0,1066,1068,3,72,36,0,1067,1066,1,0,0,0,1068, - 1071,1,0,0,0,1069,1067,1,0,0,0,1069,1070,1,0,0,0,1070,1084,1,0,0, - 0,1071,1069,1,0,0,0,1072,1074,5,308,0,0,1073,1075,5,857,0,0,1074, - 1073,1,0,0,0,1074,1075,1,0,0,0,1075,1076,1,0,0,0,1076,1083,7,3,0, - 0,1077,1079,5,104,0,0,1078,1080,5,857,0,0,1079,1078,1,0,0,0,1079, - 1080,1,0,0,0,1080,1081,1,0,0,0,1081,1083,7,4,0,0,1082,1072,1,0,0, - 0,1082,1077,1,0,0,0,1083,1086,1,0,0,0,1084,1082,1,0,0,0,1084,1085, - 1,0,0,0,1085,29,1,0,0,0,1086,1084,1,0,0,0,1087,1088,5,34,0,0,1088, - 1089,5,451,0,0,1089,1090,5,74,0,0,1090,1091,3,702,351,0,1091,1092, - 5,6,0,0,1092,1093,5,671,0,0,1093,1099,5,882,0,0,1094,1096,5,428, - 0,0,1095,1097,5,857,0,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0,1097, - 1098,1,0,0,0,1098,1100,3,710,355,0,1099,1094,1,0,0,0,1099,1100,1, - 0,0,0,1100,1106,1,0,0,0,1101,1103,5,672,0,0,1102,1104,5,857,0,0, - 1103,1102,1,0,0,0,1103,1104,1,0,0,0,1104,1105,1,0,0,0,1105,1107, - 3,710,355,0,1106,1101,1,0,0,0,1106,1107,1,0,0,0,1107,1113,1,0,0, - 0,1108,1110,5,553,0,0,1109,1111,5,857,0,0,1110,1109,1,0,0,0,1110, - 1111,1,0,0,0,1111,1112,1,0,0,0,1112,1114,3,710,355,0,1113,1108,1, - 0,0,0,1113,1114,1,0,0,0,1114,1120,1,0,0,0,1115,1117,5,504,0,0,1116, - 1118,5,857,0,0,1117,1116,1,0,0,0,1117,1118,1,0,0,0,1118,1119,1,0, - 0,0,1119,1121,3,702,351,0,1120,1115,1,0,0,0,1120,1121,1,0,0,0,1121, - 1123,1,0,0,0,1122,1124,5,687,0,0,1123,1122,1,0,0,0,1123,1124,1,0, - 0,0,1124,1130,1,0,0,0,1125,1127,5,340,0,0,1126,1128,5,857,0,0,1127, - 1126,1,0,0,0,1127,1128,1,0,0,0,1128,1129,1,0,0,0,1129,1131,5,882, - 0,0,1130,1125,1,0,0,0,1130,1131,1,0,0,0,1131,1132,1,0,0,0,1132,1134, - 5,380,0,0,1133,1135,5,857,0,0,1134,1133,1,0,0,0,1134,1135,1,0,0, - 0,1135,1136,1,0,0,0,1136,1137,3,688,344,0,1137,31,1,0,0,0,1138,1140, - 5,34,0,0,1139,1141,3,58,29,0,1140,1139,1,0,0,0,1140,1141,1,0,0,0, - 1141,1142,1,0,0,0,1142,1144,5,132,0,0,1143,1145,3,756,378,0,1144, - 1143,1,0,0,0,1144,1145,1,0,0,0,1145,1146,1,0,0,0,1146,1147,3,698, - 349,0,1147,1149,5,866,0,0,1148,1150,3,74,37,0,1149,1148,1,0,0,0, - 1149,1150,1,0,0,0,1150,1155,1,0,0,0,1151,1152,5,868,0,0,1152,1154, - 3,74,37,0,1153,1151,1,0,0,0,1154,1157,1,0,0,0,1155,1153,1,0,0,0, - 1155,1156,1,0,0,0,1156,1158,1,0,0,0,1157,1155,1,0,0,0,1158,1162, - 5,867,0,0,1159,1161,3,76,38,0,1160,1159,1,0,0,0,1161,1164,1,0,0, - 0,1162,1160,1,0,0,0,1162,1163,1,0,0,0,1163,1165,1,0,0,0,1164,1162, - 1,0,0,0,1165,1166,3,416,208,0,1166,33,1,0,0,0,1167,1168,5,34,0,0, - 1168,1170,5,582,0,0,1169,1171,3,756,378,0,1170,1169,1,0,0,0,1170, - 1171,1,0,0,0,1171,1172,1,0,0,0,1172,1173,3,650,325,0,1173,35,1,0, - 0,0,1174,1175,5,34,0,0,1175,1176,5,592,0,0,1176,1177,3,702,351,0, - 1177,1178,5,67,0,0,1178,1179,5,360,0,0,1179,1180,5,692,0,0,1180, - 1181,7,5,0,0,1181,1182,5,518,0,0,1182,1183,5,866,0,0,1183,1188,3, - 78,39,0,1184,1185,5,868,0,0,1185,1187,3,78,39,0,1186,1184,1,0,0, - 0,1187,1190,1,0,0,0,1188,1186,1,0,0,0,1188,1189,1,0,0,0,1189,1191, - 1,0,0,0,1190,1188,1,0,0,0,1191,1192,5,867,0,0,1192,37,1,0,0,0,1193, - 1195,5,34,0,0,1194,1196,5,660,0,0,1195,1194,1,0,0,0,1195,1196,1, - 0,0,0,1196,1197,1,0,0,0,1197,1199,5,173,0,0,1198,1200,3,756,378, - 0,1199,1198,1,0,0,0,1199,1200,1,0,0,0,1200,1201,1,0,0,0,1201,1202, - 3,644,322,0,1202,1213,3,80,40,0,1203,1210,3,98,49,0,1204,1206,5, - 868,0,0,1205,1204,1,0,0,0,1205,1206,1,0,0,0,1206,1207,1,0,0,0,1207, - 1209,3,98,49,0,1208,1205,1,0,0,0,1209,1212,1,0,0,0,1210,1208,1,0, - 0,0,1210,1211,1,0,0,0,1211,1214,1,0,0,0,1212,1210,1,0,0,0,1213,1203, - 1,0,0,0,1213,1214,1,0,0,0,1214,1216,1,0,0,0,1215,1217,3,104,52,0, - 1216,1215,1,0,0,0,1216,1217,1,0,0,0,1217,1272,1,0,0,0,1218,1220, - 5,34,0,0,1219,1221,5,660,0,0,1220,1219,1,0,0,0,1220,1221,1,0,0,0, - 1221,1222,1,0,0,0,1222,1224,5,173,0,0,1223,1225,3,756,378,0,1224, - 1223,1,0,0,0,1224,1225,1,0,0,0,1225,1226,1,0,0,0,1226,1228,3,644, - 322,0,1227,1229,3,80,40,0,1228,1227,1,0,0,0,1228,1229,1,0,0,0,1229, - 1240,1,0,0,0,1230,1237,3,98,49,0,1231,1233,5,868,0,0,1232,1231,1, - 0,0,0,1232,1233,1,0,0,0,1233,1234,1,0,0,0,1234,1236,3,98,49,0,1235, - 1232,1,0,0,0,1236,1239,1,0,0,0,1237,1235,1,0,0,0,1237,1238,1,0,0, - 0,1238,1241,1,0,0,0,1239,1237,1,0,0,0,1240,1230,1,0,0,0,1240,1241, - 1,0,0,0,1241,1243,1,0,0,0,1242,1244,3,104,52,0,1243,1242,1,0,0,0, - 1243,1244,1,0,0,0,1244,1246,1,0,0,0,1245,1247,7,6,0,0,1246,1245, - 1,0,0,0,1246,1247,1,0,0,0,1247,1249,1,0,0,0,1248,1250,5,13,0,0,1249, - 1248,1,0,0,0,1249,1250,1,0,0,0,1250,1251,1,0,0,0,1251,1252,3,204, - 102,0,1252,1272,1,0,0,0,1253,1255,5,34,0,0,1254,1256,5,660,0,0,1255, - 1254,1,0,0,0,1255,1256,1,0,0,0,1256,1257,1,0,0,0,1257,1259,5,173, - 0,0,1258,1260,3,756,378,0,1259,1258,1,0,0,0,1259,1260,1,0,0,0,1260, - 1261,1,0,0,0,1261,1269,3,644,322,0,1262,1263,5,99,0,0,1263,1270, - 3,648,324,0,1264,1265,5,866,0,0,1265,1266,5,99,0,0,1266,1267,3,648, - 324,0,1267,1268,5,867,0,0,1268,1270,1,0,0,0,1269,1262,1,0,0,0,1269, - 1264,1,0,0,0,1270,1272,1,0,0,0,1271,1193,1,0,0,0,1271,1218,1,0,0, - 0,1271,1253,1,0,0,0,1272,39,1,0,0,0,1273,1275,5,34,0,0,1274,1276, - 5,180,0,0,1275,1274,1,0,0,0,1275,1276,1,0,0,0,1276,1277,1,0,0,0, - 1277,1278,5,658,0,0,1278,1282,3,660,330,0,1279,1280,5,6,0,0,1280, - 1281,5,361,0,0,1281,1283,5,882,0,0,1282,1279,1,0,0,0,1282,1283,1, - 0,0,0,1283,1289,1,0,0,0,1284,1286,5,314,0,0,1285,1287,5,857,0,0, - 1286,1285,1,0,0,0,1286,1287,1,0,0,0,1287,1288,1,0,0,0,1288,1290, - 3,710,355,0,1289,1284,1,0,0,0,1289,1290,1,0,0,0,1290,1294,1,0,0, - 0,1291,1292,5,399,0,0,1292,1293,5,857,0,0,1293,1295,3,710,355,0, - 1294,1291,1,0,0,0,1294,1295,1,0,0,0,1295,1301,1,0,0,0,1296,1298, - 5,380,0,0,1297,1299,5,857,0,0,1298,1297,1,0,0,0,1298,1299,1,0,0, - 0,1299,1300,1,0,0,0,1300,1302,3,688,344,0,1301,1296,1,0,0,0,1301, - 1302,1,0,0,0,1302,1308,1,0,0,0,1303,1305,5,825,0,0,1304,1306,5,857, - 0,0,1305,1304,1,0,0,0,1305,1306,1,0,0,0,1306,1307,1,0,0,0,1307,1309, - 5,882,0,0,1308,1303,1,0,0,0,1308,1309,1,0,0,0,1309,41,1,0,0,0,1310, - 1312,5,34,0,0,1311,1313,5,180,0,0,1312,1311,1,0,0,0,1312,1313,1, - 0,0,0,1313,1314,1,0,0,0,1314,1315,5,658,0,0,1315,1316,3,660,330, - 0,1316,1317,5,6,0,0,1317,1318,5,361,0,0,1318,1319,5,882,0,0,1319, - 1320,5,187,0,0,1320,1321,5,451,0,0,1321,1322,5,74,0,0,1322,1328, - 3,702,351,0,1323,1325,5,393,0,0,1324,1326,5,857,0,0,1325,1324,1, - 0,0,0,1325,1326,1,0,0,0,1326,1327,1,0,0,0,1327,1329,3,710,355,0, - 1328,1323,1,0,0,0,1328,1329,1,0,0,0,1329,1335,1,0,0,0,1330,1332, - 5,428,0,0,1331,1333,5,857,0,0,1332,1331,1,0,0,0,1332,1333,1,0,0, - 0,1333,1334,1,0,0,0,1334,1336,3,710,355,0,1335,1330,1,0,0,0,1335, - 1336,1,0,0,0,1336,1342,1,0,0,0,1337,1339,5,314,0,0,1338,1340,5,857, - 0,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340,1341,1,0,0,0,1341,1343, - 3,710,355,0,1342,1337,1,0,0,0,1342,1343,1,0,0,0,1343,1349,1,0,0, - 0,1344,1346,5,481,0,0,1345,1347,5,857,0,0,1346,1345,1,0,0,0,1346, - 1347,1,0,0,0,1347,1348,1,0,0,0,1348,1350,3,710,355,0,1349,1344,1, - 0,0,0,1349,1350,1,0,0,0,1350,1356,1,0,0,0,1351,1353,5,504,0,0,1352, - 1354,5,857,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1355,1,0, - 0,0,1355,1357,3,702,351,0,1356,1351,1,0,0,0,1356,1357,1,0,0,0,1357, - 1359,1,0,0,0,1358,1360,5,687,0,0,1359,1358,1,0,0,0,1359,1360,1,0, - 0,0,1360,1366,1,0,0,0,1361,1363,5,340,0,0,1362,1364,5,857,0,0,1363, - 1362,1,0,0,0,1363,1364,1,0,0,0,1364,1365,1,0,0,0,1365,1367,5,882, - 0,0,1366,1361,1,0,0,0,1366,1367,1,0,0,0,1367,1368,1,0,0,0,1368,1370, - 5,380,0,0,1369,1371,5,857,0,0,1370,1369,1,0,0,0,1370,1371,1,0,0, - 0,1371,1372,1,0,0,0,1372,1373,3,688,344,0,1373,43,1,0,0,0,1374,1376, - 5,34,0,0,1375,1377,3,58,29,0,1376,1375,1,0,0,0,1376,1377,1,0,0,0, - 1377,1378,1,0,0,0,1378,1380,5,178,0,0,1379,1381,3,756,378,0,1380, - 1379,1,0,0,0,1380,1381,1,0,0,0,1381,1382,1,0,0,0,1382,1383,3,698, - 349,0,1383,1384,7,7,0,0,1384,1385,7,8,0,0,1385,1386,5,119,0,0,1386, - 1387,3,648,324,0,1387,1388,5,65,0,0,1388,1389,5,52,0,0,1389,1392, - 5,586,0,0,1390,1391,7,9,0,0,1391,1393,3,698,349,0,1392,1390,1,0, - 0,0,1392,1393,1,0,0,0,1393,1394,1,0,0,0,1394,1395,3,416,208,0,1395, - 45,1,0,0,0,1396,1398,5,194,0,0,1397,1399,5,552,0,0,1398,1397,1,0, - 0,0,1398,1399,1,0,0,0,1399,1400,1,0,0,0,1400,1401,3,48,24,0,1401, - 47,1,0,0,0,1402,1414,3,702,351,0,1403,1404,5,866,0,0,1404,1409,3, - 702,351,0,1405,1406,5,868,0,0,1406,1408,3,702,351,0,1407,1405,1, - 0,0,0,1408,1411,1,0,0,0,1409,1407,1,0,0,0,1409,1410,1,0,0,0,1410, - 1412,1,0,0,0,1411,1409,1,0,0,0,1412,1413,5,867,0,0,1413,1415,1,0, - 0,0,1414,1403,1,0,0,0,1414,1415,1,0,0,0,1415,1416,1,0,0,0,1416,1417, - 5,13,0,0,1417,1418,5,866,0,0,1418,1419,3,10,5,0,1419,1422,5,867, - 0,0,1420,1421,5,868,0,0,1421,1423,3,48,24,0,1422,1420,1,0,0,0,1422, - 1423,1,0,0,0,1423,49,1,0,0,0,1424,1426,5,34,0,0,1425,1427,3,758, - 379,0,1426,1425,1,0,0,0,1426,1427,1,0,0,0,1427,1431,1,0,0,0,1428, - 1429,5,308,0,0,1429,1430,5,857,0,0,1430,1432,7,10,0,0,1431,1428, - 1,0,0,0,1431,1432,1,0,0,0,1432,1434,1,0,0,0,1433,1435,3,58,29,0, - 1434,1433,1,0,0,0,1434,1435,1,0,0,0,1435,1439,1,0,0,0,1436,1437, - 5,162,0,0,1437,1438,5,591,0,0,1438,1440,7,11,0,0,1439,1436,1,0,0, - 0,1439,1440,1,0,0,0,1440,1441,1,0,0,0,1441,1442,5,684,0,0,1442,1447, - 3,630,315,0,1443,1444,5,866,0,0,1444,1445,3,656,328,0,1445,1446, - 5,867,0,0,1446,1448,1,0,0,0,1447,1443,1,0,0,0,1447,1448,1,0,0,0, - 1448,1449,1,0,0,0,1449,1469,5,13,0,0,1450,1452,5,866,0,0,1451,1453, - 3,46,23,0,1452,1451,1,0,0,0,1452,1453,1,0,0,0,1453,1454,1,0,0,0, - 1454,1455,3,204,102,0,1455,1456,5,867,0,0,1456,1470,1,0,0,0,1457, - 1459,3,46,23,0,1458,1457,1,0,0,0,1458,1459,1,0,0,0,1459,1460,1,0, - 0,0,1460,1467,3,204,102,0,1461,1463,5,194,0,0,1462,1464,7,12,0,0, - 1463,1462,1,0,0,0,1463,1464,1,0,0,0,1464,1465,1,0,0,0,1465,1466, - 5,27,0,0,1466,1468,5,121,0,0,1467,1461,1,0,0,0,1467,1468,1,0,0,0, - 1468,1470,1,0,0,0,1469,1450,1,0,0,0,1469,1458,1,0,0,0,1470,51,1, - 0,0,0,1471,1473,5,42,0,0,1472,1471,1,0,0,0,1472,1473,1,0,0,0,1473, - 1474,1,0,0,0,1474,1476,3,54,27,0,1475,1477,5,857,0,0,1476,1475,1, - 0,0,0,1476,1477,1,0,0,0,1477,1480,1,0,0,0,1478,1481,3,684,342,0, - 1479,1481,5,42,0,0,1480,1478,1,0,0,0,1480,1479,1,0,0,0,1481,1505, - 1,0,0,0,1482,1484,5,42,0,0,1483,1482,1,0,0,0,1483,1484,1,0,0,0,1484, - 1485,1,0,0,0,1485,1487,5,28,0,0,1486,1488,5,857,0,0,1487,1486,1, - 0,0,0,1487,1488,1,0,0,0,1488,1489,1,0,0,0,1489,1505,3,686,343,0, - 1490,1492,5,42,0,0,1491,1490,1,0,0,0,1491,1492,1,0,0,0,1492,1493, - 1,0,0,0,1493,1495,5,376,0,0,1494,1496,5,857,0,0,1495,1494,1,0,0, - 0,1495,1496,1,0,0,0,1496,1497,1,0,0,0,1497,1505,5,882,0,0,1498,1499, - 5,135,0,0,1499,1501,5,515,0,0,1500,1502,5,857,0,0,1501,1500,1,0, - 0,0,1501,1502,1,0,0,0,1502,1503,1,0,0,0,1503,1505,7,13,0,0,1504, - 1472,1,0,0,0,1504,1483,1,0,0,0,1504,1491,1,0,0,0,1504,1498,1,0,0, - 0,1505,53,1,0,0,0,1506,1507,5,26,0,0,1507,1512,5,155,0,0,1508,1512, - 5,823,0,0,1509,1510,5,224,0,0,1510,1512,5,155,0,0,1511,1506,1,0, - 0,0,1511,1508,1,0,0,0,1511,1509,1,0,0,0,1512,55,1,0,0,0,1513,1516, - 7,14,0,0,1514,1515,5,866,0,0,1515,1517,5,867,0,0,1516,1514,1,0,0, - 0,1516,1517,1,0,0,0,1517,57,1,0,0,0,1518,1519,5,364,0,0,1519,1522, - 5,857,0,0,1520,1523,3,680,340,0,1521,1523,3,56,28,0,1522,1520,1, - 0,0,0,1522,1521,1,0,0,0,1523,59,1,0,0,0,1524,1525,5,311,0,0,1525, - 1529,3,62,31,0,1526,1528,3,64,32,0,1527,1526,1,0,0,0,1528,1531,1, - 0,0,0,1529,1527,1,0,0,0,1529,1530,1,0,0,0,1530,1559,1,0,0,0,1531, - 1529,1,0,0,0,1532,1535,5,387,0,0,1533,1536,3,708,354,0,1534,1536, - 3,800,400,0,1535,1533,1,0,0,0,1535,1534,1,0,0,0,1536,1537,1,0,0, - 0,1537,1546,3,66,33,0,1538,1539,5,641,0,0,1539,1543,3,62,31,0,1540, - 1542,3,64,32,0,1541,1540,1,0,0,0,1542,1545,1,0,0,0,1543,1541,1,0, - 0,0,1543,1544,1,0,0,0,1544,1547,1,0,0,0,1545,1543,1,0,0,0,1546,1538, - 1,0,0,0,1546,1547,1,0,0,0,1547,1556,1,0,0,0,1548,1549,5,379,0,0, - 1549,1553,3,62,31,0,1550,1552,3,64,32,0,1551,1550,1,0,0,0,1552,1555, - 1,0,0,0,1553,1551,1,0,0,0,1553,1554,1,0,0,0,1554,1557,1,0,0,0,1555, - 1553,1,0,0,0,1556,1548,1,0,0,0,1556,1557,1,0,0,0,1557,1559,1,0,0, - 0,1558,1524,1,0,0,0,1558,1532,1,0,0,0,1559,61,1,0,0,0,1560,1565, - 5,287,0,0,1561,1565,3,712,356,0,1562,1565,3,708,354,0,1563,1565, - 3,800,400,0,1564,1560,1,0,0,0,1564,1561,1,0,0,0,1564,1562,1,0,0, - 0,1564,1563,1,0,0,0,1565,63,1,0,0,0,1566,1567,5,853,0,0,1567,1570, - 5,87,0,0,1568,1571,3,708,354,0,1569,1571,3,800,400,0,1570,1568,1, - 0,0,0,1570,1569,1,0,0,0,1571,1572,1,0,0,0,1572,1573,3,66,33,0,1573, - 65,1,0,0,0,1574,1588,3,826,413,0,1575,1588,5,223,0,0,1576,1588,5, - 242,0,0,1577,1588,5,243,0,0,1578,1588,5,244,0,0,1579,1588,5,245, - 0,0,1580,1588,5,246,0,0,1581,1588,5,247,0,0,1582,1588,5,248,0,0, - 1583,1588,5,249,0,0,1584,1588,5,250,0,0,1585,1588,5,251,0,0,1586, - 1588,5,252,0,0,1587,1574,1,0,0,0,1587,1575,1,0,0,0,1587,1576,1,0, - 0,0,1587,1577,1,0,0,0,1587,1578,1,0,0,0,1587,1579,1,0,0,0,1587,1580, - 1,0,0,0,1587,1581,1,0,0,0,1587,1582,1,0,0,0,1587,1583,1,0,0,0,1587, - 1584,1,0,0,0,1587,1585,1,0,0,0,1587,1586,1,0,0,0,1588,67,1,0,0,0, - 1589,1595,5,375,0,0,1590,1595,5,368,0,0,1591,1592,5,368,0,0,1592, - 1593,5,119,0,0,1593,1595,5,598,0,0,1594,1589,1,0,0,0,1594,1590,1, - 0,0,0,1594,1591,1,0,0,0,1595,69,1,0,0,0,1596,1597,5,188,0,0,1597, - 1598,7,15,0,0,1598,71,1,0,0,0,1599,1601,5,443,0,0,1600,1602,5,857, - 0,0,1601,1600,1,0,0,0,1601,1602,1,0,0,0,1602,1603,1,0,0,0,1603,1622, - 3,710,355,0,1604,1622,3,70,35,0,1605,1606,5,194,0,0,1606,1607,5, - 525,0,0,1607,1622,3,702,351,0,1608,1609,5,340,0,0,1609,1622,5,882, - 0,0,1610,1622,7,16,0,0,1611,1613,5,825,0,0,1612,1614,5,857,0,0,1613, - 1612,1,0,0,0,1613,1614,1,0,0,0,1614,1615,1,0,0,0,1615,1622,5,882, - 0,0,1616,1618,5,833,0,0,1617,1619,5,857,0,0,1618,1617,1,0,0,0,1618, - 1619,1,0,0,0,1619,1620,1,0,0,0,1620,1622,5,882,0,0,1621,1599,1,0, - 0,0,1621,1604,1,0,0,0,1621,1605,1,0,0,0,1621,1608,1,0,0,0,1621,1610, - 1,0,0,0,1621,1611,1,0,0,0,1621,1616,1,0,0,0,1622,73,1,0,0,0,1623, - 1625,7,17,0,0,1624,1623,1,0,0,0,1624,1625,1,0,0,0,1625,1626,1,0, - 0,0,1626,1627,3,702,351,0,1627,1628,3,722,361,0,1628,75,1,0,0,0, - 1629,1630,5,340,0,0,1630,1653,5,882,0,0,1631,1632,5,444,0,0,1632, - 1653,5,162,0,0,1633,1635,5,114,0,0,1634,1633,1,0,0,0,1634,1635,1, - 0,0,0,1635,1636,1,0,0,0,1636,1653,5,47,0,0,1637,1638,5,354,0,0,1638, - 1648,5,162,0,0,1639,1640,5,502,0,0,1640,1648,5,162,0,0,1641,1642, - 5,136,0,0,1642,1643,5,162,0,0,1643,1648,5,360,0,0,1644,1645,5,112, - 0,0,1645,1646,5,162,0,0,1646,1648,5,360,0,0,1647,1637,1,0,0,0,1647, - 1639,1,0,0,0,1647,1641,1,0,0,0,1647,1644,1,0,0,0,1648,1653,1,0,0, - 0,1649,1650,5,162,0,0,1650,1651,5,591,0,0,1651,1653,7,11,0,0,1652, - 1629,1,0,0,0,1652,1631,1,0,0,0,1652,1634,1,0,0,0,1652,1647,1,0,0, - 0,1652,1649,1,0,0,0,1653,77,1,0,0,0,1654,1655,5,421,0,0,1655,1669, - 5,882,0,0,1656,1657,5,39,0,0,1657,1669,5,882,0,0,1658,1659,5,678, - 0,0,1659,1669,5,882,0,0,1660,1661,5,529,0,0,1661,1669,5,882,0,0, - 1662,1663,5,601,0,0,1663,1669,5,882,0,0,1664,1665,5,519,0,0,1665, - 1669,5,882,0,0,1666,1667,5,537,0,0,1667,1669,3,708,354,0,1668,1654, - 1,0,0,0,1668,1656,1,0,0,0,1668,1658,1,0,0,0,1668,1660,1,0,0,0,1668, - 1662,1,0,0,0,1668,1664,1,0,0,0,1668,1666,1,0,0,0,1669,79,1,0,0,0, - 1670,1671,5,866,0,0,1671,1676,3,82,41,0,1672,1673,5,868,0,0,1673, - 1675,3,82,41,0,1674,1672,1,0,0,0,1675,1678,1,0,0,0,1676,1674,1,0, - 0,0,1676,1677,1,0,0,0,1677,1679,1,0,0,0,1678,1676,1,0,0,0,1679,1680, - 5,867,0,0,1680,81,1,0,0,0,1681,1682,3,658,329,0,1682,1683,3,88,44, - 0,1683,1765,1,0,0,0,1684,1686,7,18,0,0,1685,1687,3,638,319,0,1686, - 1685,1,0,0,0,1686,1687,1,0,0,0,1687,1689,1,0,0,0,1688,1690,3,70, - 35,0,1689,1688,1,0,0,0,1689,1690,1,0,0,0,1690,1691,1,0,0,0,1691, - 1695,3,734,367,0,1692,1694,3,72,36,0,1693,1692,1,0,0,0,1694,1697, - 1,0,0,0,1695,1693,1,0,0,0,1695,1696,1,0,0,0,1696,1765,1,0,0,0,1697, - 1695,1,0,0,0,1698,1700,7,19,0,0,1699,1701,7,18,0,0,1700,1699,1,0, - 0,0,1700,1701,1,0,0,0,1701,1703,1,0,0,0,1702,1704,3,638,319,0,1703, - 1702,1,0,0,0,1703,1704,1,0,0,0,1704,1705,1,0,0,0,1705,1709,3,734, - 367,0,1706,1708,3,72,36,0,1707,1706,1,0,0,0,1708,1711,1,0,0,0,1709, - 1707,1,0,0,0,1709,1710,1,0,0,0,1710,1765,1,0,0,0,1711,1709,1,0,0, - 0,1712,1714,3,86,43,0,1713,1712,1,0,0,0,1713,1714,1,0,0,0,1714,1715, - 1,0,0,0,1715,1716,5,131,0,0,1716,1718,5,92,0,0,1717,1719,3,70,35, - 0,1718,1717,1,0,0,0,1718,1719,1,0,0,0,1719,1720,1,0,0,0,1720,1724, - 3,734,367,0,1721,1723,3,72,36,0,1722,1721,1,0,0,0,1723,1726,1,0, - 0,0,1724,1722,1,0,0,0,1724,1725,1,0,0,0,1725,1765,1,0,0,0,1726,1724, - 1,0,0,0,1727,1729,3,86,43,0,1728,1727,1,0,0,0,1728,1729,1,0,0,0, - 1729,1730,1,0,0,0,1730,1732,5,182,0,0,1731,1733,7,18,0,0,1732,1731, - 1,0,0,0,1732,1733,1,0,0,0,1733,1735,1,0,0,0,1734,1736,3,638,319, - 0,1735,1734,1,0,0,0,1735,1736,1,0,0,0,1736,1738,1,0,0,0,1737,1739, - 3,70,35,0,1738,1737,1,0,0,0,1738,1739,1,0,0,0,1739,1740,1,0,0,0, - 1740,1744,3,734,367,0,1741,1743,3,72,36,0,1742,1741,1,0,0,0,1743, - 1746,1,0,0,0,1744,1742,1,0,0,0,1744,1745,1,0,0,0,1745,1765,1,0,0, - 0,1746,1744,1,0,0,0,1747,1749,3,86,43,0,1748,1747,1,0,0,0,1748,1749, - 1,0,0,0,1749,1750,1,0,0,0,1750,1751,5,67,0,0,1751,1753,5,92,0,0, - 1752,1754,3,638,319,0,1753,1752,1,0,0,0,1753,1754,1,0,0,0,1754,1755, - 1,0,0,0,1755,1756,3,734,367,0,1756,1757,3,92,46,0,1757,1765,1,0, - 0,0,1758,1759,5,27,0,0,1759,1760,5,866,0,0,1760,1761,3,800,400,0, - 1761,1762,5,867,0,0,1762,1765,1,0,0,0,1763,1765,3,84,42,0,1764,1681, - 1,0,0,0,1764,1684,1,0,0,0,1764,1698,1,0,0,0,1764,1713,1,0,0,0,1764, - 1728,1,0,0,0,1764,1748,1,0,0,0,1764,1758,1,0,0,0,1764,1763,1,0,0, - 0,1765,83,1,0,0,0,1766,1768,3,86,43,0,1767,1766,1,0,0,0,1767,1768, - 1,0,0,0,1768,1769,1,0,0,0,1769,1770,5,27,0,0,1770,1771,5,866,0,0, - 1771,1772,3,800,400,0,1772,1777,5,867,0,0,1773,1775,5,114,0,0,1774, - 1773,1,0,0,0,1774,1775,1,0,0,0,1775,1776,1,0,0,0,1776,1778,5,57, - 0,0,1777,1774,1,0,0,0,1777,1778,1,0,0,0,1778,85,1,0,0,0,1779,1781, - 5,31,0,0,1780,1782,3,702,351,0,1781,1780,1,0,0,0,1781,1782,1,0,0, - 0,1782,87,1,0,0,0,1783,1787,3,722,361,0,1784,1786,3,90,45,0,1785, - 1784,1,0,0,0,1786,1789,1,0,0,0,1787,1785,1,0,0,0,1787,1788,1,0,0, - 0,1788,89,1,0,0,0,1789,1787,1,0,0,0,1790,1834,3,718,359,0,1791,1792, - 5,42,0,0,1792,1834,3,750,375,0,1793,1834,5,686,0,0,1794,1834,5,435, - 0,0,1795,1800,5,315,0,0,1796,1797,5,119,0,0,1797,1798,5,185,0,0, - 1798,1800,3,752,376,0,1799,1795,1,0,0,0,1799,1796,1,0,0,0,1800,1834, - 1,0,0,0,1801,1803,5,131,0,0,1802,1801,1,0,0,0,1802,1803,1,0,0,0, - 1803,1804,1,0,0,0,1804,1834,5,92,0,0,1805,1807,5,182,0,0,1806,1808, - 5,92,0,0,1807,1806,1,0,0,0,1807,1808,1,0,0,0,1808,1834,1,0,0,0,1809, - 1810,5,340,0,0,1810,1834,5,882,0,0,1811,1812,5,338,0,0,1812,1834, - 7,20,0,0,1813,1814,5,647,0,0,1814,1834,7,21,0,0,1815,1834,3,92,46, - 0,1816,1817,5,28,0,0,1817,1834,3,686,343,0,1818,1819,5,71,0,0,1819, - 1821,5,9,0,0,1820,1818,1,0,0,0,1820,1821,1,0,0,0,1821,1822,1,0,0, - 0,1822,1823,5,13,0,0,1823,1824,5,866,0,0,1824,1825,3,800,400,0,1825, - 1827,5,867,0,0,1826,1828,7,22,0,0,1827,1826,1,0,0,0,1827,1828,1, - 0,0,0,1828,1834,1,0,0,0,1829,1830,5,241,0,0,1830,1831,5,42,0,0,1831, - 1834,5,682,0,0,1832,1834,3,84,42,0,1833,1790,1,0,0,0,1833,1791,1, - 0,0,0,1833,1793,1,0,0,0,1833,1794,1,0,0,0,1833,1799,1,0,0,0,1833, - 1802,1,0,0,0,1833,1805,1,0,0,0,1833,1809,1,0,0,0,1833,1811,1,0,0, - 0,1833,1813,1,0,0,0,1833,1815,1,0,0,0,1833,1816,1,0,0,0,1833,1820, - 1,0,0,0,1833,1829,1,0,0,0,1833,1832,1,0,0,0,1834,91,1,0,0,0,1835, - 1836,5,138,0,0,1836,1838,3,648,324,0,1837,1839,3,734,367,0,1838, - 1837,1,0,0,0,1838,1839,1,0,0,0,1839,1842,1,0,0,0,1840,1841,5,110, - 0,0,1841,1843,7,23,0,0,1842,1840,1,0,0,0,1842,1843,1,0,0,0,1843, - 1845,1,0,0,0,1844,1846,3,94,47,0,1845,1844,1,0,0,0,1845,1846,1,0, - 0,0,1846,93,1,0,0,0,1847,1848,5,119,0,0,1848,1849,5,44,0,0,1849, - 1853,3,96,48,0,1850,1851,5,119,0,0,1851,1852,5,185,0,0,1852,1854, - 3,96,48,0,1853,1850,1,0,0,0,1853,1854,1,0,0,0,1854,1864,1,0,0,0, - 1855,1856,5,119,0,0,1856,1857,5,185,0,0,1857,1861,3,96,48,0,1858, - 1859,5,119,0,0,1859,1860,5,44,0,0,1860,1862,3,96,48,0,1861,1858, - 1,0,0,0,1861,1862,1,0,0,0,1862,1864,1,0,0,0,1863,1847,1,0,0,0,1863, - 1855,1,0,0,0,1864,95,1,0,0,0,1865,1874,5,146,0,0,1866,1874,5,22, - 0,0,1867,1868,5,155,0,0,1868,1874,5,116,0,0,1869,1870,5,502,0,0, - 1870,1874,5,305,0,0,1871,1872,5,155,0,0,1872,1874,5,42,0,0,1873, - 1865,1,0,0,0,1873,1866,1,0,0,0,1873,1867,1,0,0,0,1873,1869,1,0,0, - 0,1873,1871,1,0,0,0,1874,97,1,0,0,0,1875,1877,5,380,0,0,1876,1878, - 5,857,0,0,1877,1876,1,0,0,0,1877,1878,1,0,0,0,1878,1880,1,0,0,0, - 1879,1881,3,688,344,0,1880,1879,1,0,0,0,1880,1881,1,0,0,0,1881,2061, - 1,0,0,0,1882,1884,5,825,0,0,1883,1885,5,857,0,0,1884,1883,1,0,0, - 0,1884,1885,1,0,0,0,1885,1886,1,0,0,0,1886,2061,5,882,0,0,1887,1889, - 5,314,0,0,1888,1890,5,857,0,0,1889,1888,1,0,0,0,1889,1890,1,0,0, - 0,1890,1891,1,0,0,0,1891,2061,3,708,354,0,1892,1894,5,315,0,0,1893, - 1895,5,857,0,0,1894,1893,1,0,0,0,1894,1895,1,0,0,0,1895,1896,1,0, - 0,0,1896,2061,3,708,354,0,1897,1899,5,316,0,0,1898,1900,5,857,0, - 0,1899,1898,1,0,0,0,1899,1900,1,0,0,0,1900,1901,1,0,0,0,1901,2061, - 3,708,354,0,1902,1904,5,42,0,0,1903,1902,1,0,0,0,1903,1904,1,0,0, - 0,1904,1905,1,0,0,0,1905,1907,3,54,27,0,1906,1908,5,857,0,0,1907, - 1906,1,0,0,0,1907,1908,1,0,0,0,1908,1911,1,0,0,0,1909,1912,3,684, - 342,0,1910,1912,5,42,0,0,1911,1909,1,0,0,0,1911,1910,1,0,0,0,1912, - 2061,1,0,0,0,1913,1915,7,24,0,0,1914,1916,5,857,0,0,1915,1914,1, - 0,0,0,1915,1916,1,0,0,0,1916,1917,1,0,0,0,1917,2061,7,25,0,0,1918, - 1920,5,42,0,0,1919,1918,1,0,0,0,1919,1920,1,0,0,0,1920,1921,1,0, - 0,0,1921,1923,5,28,0,0,1922,1924,5,857,0,0,1923,1922,1,0,0,0,1923, - 1924,1,0,0,0,1924,1925,1,0,0,0,1925,2061,3,686,343,0,1926,1928,5, - 340,0,0,1927,1929,5,857,0,0,1928,1927,1,0,0,0,1928,1929,1,0,0,0, - 1929,1930,1,0,0,0,1930,2061,5,882,0,0,1931,1933,5,346,0,0,1932,1934, - 5,857,0,0,1933,1932,1,0,0,0,1933,1934,1,0,0,0,1934,1935,1,0,0,0, - 1935,2061,7,26,0,0,1936,1938,5,349,0,0,1937,1939,5,857,0,0,1938, - 1937,1,0,0,0,1938,1939,1,0,0,0,1939,1940,1,0,0,0,1940,2061,5,882, - 0,0,1941,1942,7,27,0,0,1942,1944,5,367,0,0,1943,1945,5,857,0,0,1944, - 1943,1,0,0,0,1944,1945,1,0,0,0,1945,1946,1,0,0,0,1946,2061,5,882, - 0,0,1947,1949,5,365,0,0,1948,1950,5,857,0,0,1949,1948,1,0,0,0,1949, - 1950,1,0,0,0,1950,1951,1,0,0,0,1951,2061,7,25,0,0,1952,1954,5,376, - 0,0,1953,1955,5,857,0,0,1954,1953,1,0,0,0,1954,1955,1,0,0,0,1955, - 1956,1,0,0,0,1956,2061,5,882,0,0,1957,1959,7,28,0,0,1958,1960,5, - 857,0,0,1959,1958,1,0,0,0,1959,1960,1,0,0,0,1960,1961,1,0,0,0,1961, - 2061,7,25,0,0,1962,1964,7,29,0,0,1963,1965,5,857,0,0,1964,1963,1, - 0,0,0,1964,1965,1,0,0,0,1965,1966,1,0,0,0,1966,2061,3,708,354,0, - 1967,1969,5,377,0,0,1968,1970,5,857,0,0,1969,1968,1,0,0,0,1969,1970, - 1,0,0,0,1970,1971,1,0,0,0,1971,2061,3,708,354,0,1972,1973,5,82,0, - 0,1973,1975,5,367,0,0,1974,1976,5,857,0,0,1975,1974,1,0,0,0,1975, - 1976,1,0,0,0,1976,1977,1,0,0,0,1977,2061,5,882,0,0,1978,1980,5,431, - 0,0,1979,1981,5,857,0,0,1980,1979,1,0,0,0,1980,1981,1,0,0,0,1981, - 1982,1,0,0,0,1982,2061,7,30,0,0,1983,1985,5,443,0,0,1984,1986,5, - 857,0,0,1985,1984,1,0,0,0,1985,1986,1,0,0,0,1986,1987,1,0,0,0,1987, - 2061,3,710,355,0,1988,1990,5,480,0,0,1989,1991,5,857,0,0,1990,1989, - 1,0,0,0,1990,1991,1,0,0,0,1991,1992,1,0,0,0,1992,2061,3,708,354, - 0,1993,1995,5,490,0,0,1994,1996,5,857,0,0,1995,1994,1,0,0,0,1995, - 1996,1,0,0,0,1996,1997,1,0,0,0,1997,2061,3,708,354,0,1998,2000,5, - 520,0,0,1999,2001,5,857,0,0,2000,1999,1,0,0,0,2000,2001,1,0,0,0, - 2001,2002,1,0,0,0,2002,2061,7,13,0,0,2003,2005,5,529,0,0,2004,2006, - 5,857,0,0,2005,2004,1,0,0,0,2005,2006,1,0,0,0,2006,2007,1,0,0,0, - 2007,2061,5,882,0,0,2008,2010,5,588,0,0,2009,2011,5,857,0,0,2010, - 2009,1,0,0,0,2010,2011,1,0,0,0,2011,2012,1,0,0,0,2012,2061,7,31, - 0,0,2013,2014,5,640,0,0,2014,2061,5,664,0,0,2015,2017,5,833,0,0, - 2016,2018,5,857,0,0,2017,2016,1,0,0,0,2017,2018,1,0,0,0,2018,2019, - 1,0,0,0,2019,2061,5,882,0,0,2020,2022,5,642,0,0,2021,2023,5,857, - 0,0,2022,2021,1,0,0,0,2022,2023,1,0,0,0,2023,2024,1,0,0,0,2024,2061, - 7,13,0,0,2025,2027,5,643,0,0,2026,2028,5,857,0,0,2027,2026,1,0,0, - 0,2027,2028,1,0,0,0,2028,2029,1,0,0,0,2029,2061,7,13,0,0,2030,2032, - 5,644,0,0,2031,2033,5,857,0,0,2032,2031,1,0,0,0,2032,2033,1,0,0, - 0,2033,2036,1,0,0,0,2034,2037,5,42,0,0,2035,2037,3,708,354,0,2036, - 2034,1,0,0,0,2036,2035,1,0,0,0,2037,2061,1,0,0,0,2038,2039,5,658, - 0,0,2039,2041,3,662,331,0,2040,2042,3,102,51,0,2041,2040,1,0,0,0, - 2041,2042,1,0,0,0,2042,2061,1,0,0,0,2043,2044,5,659,0,0,2044,2045, - 5,857,0,0,2045,2061,3,100,50,0,2046,2061,3,102,51,0,2047,2049,5, - 665,0,0,2048,2050,5,857,0,0,2049,2048,1,0,0,0,2049,2050,1,0,0,0, - 2050,2051,1,0,0,0,2051,2061,7,25,0,0,2052,2054,5,181,0,0,2053,2055, - 5,857,0,0,2054,2053,1,0,0,0,2054,2055,1,0,0,0,2055,2056,1,0,0,0, - 2056,2057,5,866,0,0,2057,2058,3,646,323,0,2058,2059,5,867,0,0,2059, - 2061,1,0,0,0,2060,1875,1,0,0,0,2060,1882,1,0,0,0,2060,1887,1,0,0, - 0,2060,1892,1,0,0,0,2060,1897,1,0,0,0,2060,1903,1,0,0,0,2060,1913, - 1,0,0,0,2060,1919,1,0,0,0,2060,1926,1,0,0,0,2060,1931,1,0,0,0,2060, - 1936,1,0,0,0,2060,1941,1,0,0,0,2060,1947,1,0,0,0,2060,1952,1,0,0, - 0,2060,1957,1,0,0,0,2060,1962,1,0,0,0,2060,1967,1,0,0,0,2060,1972, - 1,0,0,0,2060,1978,1,0,0,0,2060,1983,1,0,0,0,2060,1988,1,0,0,0,2060, - 1993,1,0,0,0,2060,1998,1,0,0,0,2060,2003,1,0,0,0,2060,2008,1,0,0, - 0,2060,2013,1,0,0,0,2060,2015,1,0,0,0,2060,2020,1,0,0,0,2060,2025, - 1,0,0,0,2060,2030,1,0,0,0,2060,2038,1,0,0,0,2060,2043,1,0,0,0,2060, - 2046,1,0,0,0,2060,2047,1,0,0,0,2060,2052,1,0,0,0,2061,99,1,0,0,0, - 2062,2063,7,32,0,0,2063,101,1,0,0,0,2064,2065,5,647,0,0,2065,2066, - 7,21,0,0,2066,103,1,0,0,0,2067,2068,5,130,0,0,2068,2069,5,20,0,0, - 2069,2072,3,106,53,0,2070,2071,5,528,0,0,2071,2073,3,708,354,0,2072, - 2070,1,0,0,0,2072,2073,1,0,0,0,2073,2081,1,0,0,0,2074,2075,5,652, - 0,0,2075,2076,5,20,0,0,2076,2079,3,108,54,0,2077,2078,5,653,0,0, - 2078,2080,3,708,354,0,2079,2077,1,0,0,0,2079,2080,1,0,0,0,2080,2082, - 1,0,0,0,2081,2074,1,0,0,0,2081,2082,1,0,0,0,2082,2094,1,0,0,0,2083, - 2084,5,866,0,0,2084,2089,3,110,55,0,2085,2086,5,868,0,0,2086,2088, - 3,110,55,0,2087,2085,1,0,0,0,2088,2091,1,0,0,0,2089,2087,1,0,0,0, - 2089,2090,1,0,0,0,2090,2092,1,0,0,0,2091,2089,1,0,0,0,2092,2093, - 5,867,0,0,2093,2095,1,0,0,0,2094,2083,1,0,0,0,2094,2095,1,0,0,0, - 2095,105,1,0,0,0,2096,2098,5,101,0,0,2097,2096,1,0,0,0,2097,2098, - 1,0,0,0,2098,2099,1,0,0,0,2099,2100,5,418,0,0,2100,2101,5,866,0, - 0,2101,2102,3,800,400,0,2102,2103,5,867,0,0,2103,2143,1,0,0,0,2104, - 2106,5,101,0,0,2105,2104,1,0,0,0,2105,2106,1,0,0,0,2106,2107,1,0, - 0,0,2107,2111,5,92,0,0,2108,2109,5,308,0,0,2109,2110,5,857,0,0,2110, - 2112,7,33,0,0,2111,2108,1,0,0,0,2111,2112,1,0,0,0,2112,2113,1,0, - 0,0,2113,2115,5,866,0,0,2114,2116,3,656,328,0,2115,2114,1,0,0,0, - 2115,2116,1,0,0,0,2116,2117,1,0,0,0,2117,2143,5,867,0,0,2118,2128, - 5,134,0,0,2119,2120,5,866,0,0,2120,2121,3,800,400,0,2121,2122,5, - 867,0,0,2122,2129,1,0,0,0,2123,2124,5,337,0,0,2124,2125,5,866,0, - 0,2125,2126,3,656,328,0,2126,2127,5,867,0,0,2127,2129,1,0,0,0,2128, - 2119,1,0,0,0,2128,2123,1,0,0,0,2129,2143,1,0,0,0,2130,2140,5,449, - 0,0,2131,2132,5,866,0,0,2132,2133,3,800,400,0,2133,2134,5,867,0, - 0,2134,2141,1,0,0,0,2135,2136,5,337,0,0,2136,2137,5,866,0,0,2137, - 2138,3,656,328,0,2138,2139,5,867,0,0,2139,2141,1,0,0,0,2140,2131, - 1,0,0,0,2140,2135,1,0,0,0,2141,2143,1,0,0,0,2142,2097,1,0,0,0,2142, - 2105,1,0,0,0,2142,2118,1,0,0,0,2142,2130,1,0,0,0,2143,107,1,0,0, - 0,2144,2146,5,101,0,0,2145,2144,1,0,0,0,2145,2146,1,0,0,0,2146,2147, - 1,0,0,0,2147,2148,5,418,0,0,2148,2149,5,866,0,0,2149,2150,3,800, - 400,0,2150,2151,5,867,0,0,2151,2166,1,0,0,0,2152,2154,5,101,0,0, - 2153,2152,1,0,0,0,2153,2154,1,0,0,0,2154,2155,1,0,0,0,2155,2159, - 5,92,0,0,2156,2157,5,308,0,0,2157,2158,5,857,0,0,2158,2160,7,33, - 0,0,2159,2156,1,0,0,0,2159,2160,1,0,0,0,2160,2161,1,0,0,0,2161,2162, - 5,866,0,0,2162,2163,3,656,328,0,2163,2164,5,867,0,0,2164,2166,1, - 0,0,0,2165,2145,1,0,0,0,2165,2153,1,0,0,0,2166,109,1,0,0,0,2167, - 2168,5,130,0,0,2168,2169,3,668,334,0,2169,2170,5,189,0,0,2170,2171, - 5,447,0,0,2171,2172,5,662,0,0,2172,2173,5,866,0,0,2173,2178,3,112, - 56,0,2174,2175,5,868,0,0,2175,2177,3,112,56,0,2176,2174,1,0,0,0, - 2177,2180,1,0,0,0,2178,2176,1,0,0,0,2178,2179,1,0,0,0,2179,2181, - 1,0,0,0,2180,2178,1,0,0,0,2181,2185,5,867,0,0,2182,2184,3,118,59, - 0,2183,2182,1,0,0,0,2184,2187,1,0,0,0,2185,2183,1,0,0,0,2185,2186, - 1,0,0,0,2186,2199,1,0,0,0,2187,2185,1,0,0,0,2188,2189,5,866,0,0, - 2189,2194,3,116,58,0,2190,2191,5,868,0,0,2191,2193,3,116,58,0,2192, - 2190,1,0,0,0,2193,2196,1,0,0,0,2194,2192,1,0,0,0,2194,2195,1,0,0, - 0,2195,2197,1,0,0,0,2196,2194,1,0,0,0,2197,2198,5,867,0,0,2198,2200, - 1,0,0,0,2199,2188,1,0,0,0,2199,2200,1,0,0,0,2200,2314,1,0,0,0,2201, - 2202,5,130,0,0,2202,2203,3,668,334,0,2203,2204,5,189,0,0,2204,2205, - 5,447,0,0,2205,2206,5,662,0,0,2206,2210,3,112,56,0,2207,2209,3,118, - 59,0,2208,2207,1,0,0,0,2209,2212,1,0,0,0,2210,2208,1,0,0,0,2210, - 2211,1,0,0,0,2211,2224,1,0,0,0,2212,2210,1,0,0,0,2213,2214,5,866, - 0,0,2214,2219,3,116,58,0,2215,2216,5,868,0,0,2216,2218,3,116,58, - 0,2217,2215,1,0,0,0,2218,2221,1,0,0,0,2219,2217,1,0,0,0,2219,2220, - 1,0,0,0,2220,2222,1,0,0,0,2221,2219,1,0,0,0,2222,2223,5,867,0,0, - 2223,2225,1,0,0,0,2224,2213,1,0,0,0,2224,2225,1,0,0,0,2225,2314, - 1,0,0,0,2226,2227,5,130,0,0,2227,2228,3,668,334,0,2228,2229,5,189, - 0,0,2229,2230,5,80,0,0,2230,2231,5,866,0,0,2231,2236,3,112,56,0, - 2232,2233,5,868,0,0,2233,2235,3,112,56,0,2234,2232,1,0,0,0,2235, - 2238,1,0,0,0,2236,2234,1,0,0,0,2236,2237,1,0,0,0,2237,2239,1,0,0, - 0,2238,2236,1,0,0,0,2239,2243,5,867,0,0,2240,2242,3,118,59,0,2241, - 2240,1,0,0,0,2242,2245,1,0,0,0,2243,2241,1,0,0,0,2243,2244,1,0,0, - 0,2244,2257,1,0,0,0,2245,2243,1,0,0,0,2246,2247,5,866,0,0,2247,2252, - 3,116,58,0,2248,2249,5,868,0,0,2249,2251,3,116,58,0,2250,2248,1, - 0,0,0,2251,2254,1,0,0,0,2252,2250,1,0,0,0,2252,2253,1,0,0,0,2253, - 2255,1,0,0,0,2254,2252,1,0,0,0,2255,2256,5,867,0,0,2256,2258,1,0, - 0,0,2257,2246,1,0,0,0,2257,2258,1,0,0,0,2258,2314,1,0,0,0,2259,2260, - 5,130,0,0,2260,2261,3,668,334,0,2261,2262,5,189,0,0,2262,2263,5, - 80,0,0,2263,2264,5,866,0,0,2264,2269,3,114,57,0,2265,2266,5,868, - 0,0,2266,2268,3,114,57,0,2267,2265,1,0,0,0,2268,2271,1,0,0,0,2269, - 2267,1,0,0,0,2269,2270,1,0,0,0,2270,2272,1,0,0,0,2271,2269,1,0,0, - 0,2272,2276,5,867,0,0,2273,2275,3,118,59,0,2274,2273,1,0,0,0,2275, - 2278,1,0,0,0,2276,2274,1,0,0,0,2276,2277,1,0,0,0,2277,2290,1,0,0, - 0,2278,2276,1,0,0,0,2279,2280,5,866,0,0,2280,2285,3,116,58,0,2281, - 2282,5,868,0,0,2282,2284,3,116,58,0,2283,2281,1,0,0,0,2284,2287, - 1,0,0,0,2285,2283,1,0,0,0,2285,2286,1,0,0,0,2286,2288,1,0,0,0,2287, - 2285,1,0,0,0,2288,2289,5,867,0,0,2289,2291,1,0,0,0,2290,2279,1,0, - 0,0,2290,2291,1,0,0,0,2291,2314,1,0,0,0,2292,2293,5,130,0,0,2293, - 2297,3,668,334,0,2294,2296,3,118,59,0,2295,2294,1,0,0,0,2296,2299, - 1,0,0,0,2297,2295,1,0,0,0,2297,2298,1,0,0,0,2298,2311,1,0,0,0,2299, - 2297,1,0,0,0,2300,2301,5,866,0,0,2301,2306,3,116,58,0,2302,2303, - 5,868,0,0,2303,2305,3,116,58,0,2304,2302,1,0,0,0,2305,2308,1,0,0, - 0,2306,2304,1,0,0,0,2306,2307,1,0,0,0,2307,2309,1,0,0,0,2308,2306, - 1,0,0,0,2309,2310,5,867,0,0,2310,2312,1,0,0,0,2311,2300,1,0,0,0, - 2311,2312,1,0,0,0,2312,2314,1,0,0,0,2313,2167,1,0,0,0,2313,2201, - 1,0,0,0,2313,2226,1,0,0,0,2313,2259,1,0,0,0,2313,2292,1,0,0,0,2314, - 111,1,0,0,0,2315,2319,3,720,360,0,2316,2319,3,800,400,0,2317,2319, - 5,111,0,0,2318,2315,1,0,0,0,2318,2316,1,0,0,0,2318,2317,1,0,0,0, - 2319,113,1,0,0,0,2320,2321,5,866,0,0,2321,2324,3,112,56,0,2322,2323, - 5,868,0,0,2323,2325,3,112,56,0,2324,2322,1,0,0,0,2325,2326,1,0,0, - 0,2326,2324,1,0,0,0,2326,2327,1,0,0,0,2327,2328,1,0,0,0,2328,2329, - 5,867,0,0,2329,115,1,0,0,0,2330,2331,5,652,0,0,2331,2335,3,702,351, - 0,2332,2334,3,118,59,0,2333,2332,1,0,0,0,2334,2337,1,0,0,0,2335, - 2333,1,0,0,0,2335,2336,1,0,0,0,2336,117,1,0,0,0,2337,2335,1,0,0, - 0,2338,2340,5,42,0,0,2339,2338,1,0,0,0,2339,2340,1,0,0,0,2340,2342, - 1,0,0,0,2341,2343,5,647,0,0,2342,2341,1,0,0,0,2342,2343,1,0,0,0, - 2343,2344,1,0,0,0,2344,2346,5,380,0,0,2345,2347,5,857,0,0,2346,2345, - 1,0,0,0,2346,2347,1,0,0,0,2347,2348,1,0,0,0,2348,2387,3,688,344, - 0,2349,2351,5,340,0,0,2350,2352,5,857,0,0,2351,2350,1,0,0,0,2351, - 2352,1,0,0,0,2352,2353,1,0,0,0,2353,2387,5,882,0,0,2354,2355,5,360, - 0,0,2355,2357,5,367,0,0,2356,2358,5,857,0,0,2357,2356,1,0,0,0,2357, - 2358,1,0,0,0,2358,2359,1,0,0,0,2359,2387,5,882,0,0,2360,2361,5,82, - 0,0,2361,2363,5,367,0,0,2362,2364,5,857,0,0,2363,2362,1,0,0,0,2363, - 2364,1,0,0,0,2364,2365,1,0,0,0,2365,2387,5,882,0,0,2366,2368,5,480, - 0,0,2367,2369,5,857,0,0,2368,2367,1,0,0,0,2368,2369,1,0,0,0,2369, - 2370,1,0,0,0,2370,2387,3,708,354,0,2371,2373,5,490,0,0,2372,2374, - 5,857,0,0,2373,2372,1,0,0,0,2373,2374,1,0,0,0,2374,2375,1,0,0,0, - 2375,2387,3,708,354,0,2376,2378,5,658,0,0,2377,2379,5,857,0,0,2378, - 2377,1,0,0,0,2378,2379,1,0,0,0,2379,2380,1,0,0,0,2380,2387,3,662, - 331,0,2381,2383,5,504,0,0,2382,2384,5,857,0,0,2383,2382,1,0,0,0, - 2383,2384,1,0,0,0,2384,2385,1,0,0,0,2385,2387,3,702,351,0,2386,2339, - 1,0,0,0,2386,2349,1,0,0,0,2386,2354,1,0,0,0,2386,2360,1,0,0,0,2386, - 2366,1,0,0,0,2386,2371,1,0,0,0,2386,2376,1,0,0,0,2386,2381,1,0,0, - 0,2387,119,1,0,0,0,2388,2389,5,8,0,0,2389,2391,7,0,0,0,2390,2392, - 3,624,312,0,2391,2390,1,0,0,0,2391,2392,1,0,0,0,2392,2394,1,0,0, - 0,2393,2395,3,52,26,0,2394,2393,1,0,0,0,2395,2396,1,0,0,0,2396,2394, - 1,0,0,0,2396,2397,1,0,0,0,2397,2407,1,0,0,0,2398,2399,5,8,0,0,2399, - 2400,7,0,0,0,2400,2401,3,624,312,0,2401,2402,5,677,0,0,2402,2403, - 5,360,0,0,2403,2404,5,367,0,0,2404,2405,5,496,0,0,2405,2407,1,0, - 0,0,2406,2388,1,0,0,0,2406,2398,1,0,0,0,2407,121,1,0,0,0,2408,2410, - 5,8,0,0,2409,2411,3,58,29,0,2410,2409,1,0,0,0,2410,2411,1,0,0,0, - 2411,2412,1,0,0,0,2412,2413,5,385,0,0,2413,2417,3,698,349,0,2414, - 2415,5,119,0,0,2415,2416,5,590,0,0,2416,2418,3,60,30,0,2417,2414, - 1,0,0,0,2417,2418,1,0,0,0,2418,2425,1,0,0,0,2419,2420,5,119,0,0, - 2420,2422,5,343,0,0,2421,2423,5,114,0,0,2422,2421,1,0,0,0,2422,2423, - 1,0,0,0,2423,2424,1,0,0,0,2424,2426,5,541,0,0,2425,2419,1,0,0,0, - 2425,2426,1,0,0,0,2426,2430,1,0,0,0,2427,2428,5,141,0,0,2428,2429, - 5,176,0,0,2429,2431,3,698,349,0,2430,2427,1,0,0,0,2430,2431,1,0, - 0,0,2431,2433,1,0,0,0,2432,2434,3,68,34,0,2433,2432,1,0,0,0,2433, - 2434,1,0,0,0,2434,2437,1,0,0,0,2435,2436,5,340,0,0,2436,2438,5,882, - 0,0,2437,2435,1,0,0,0,2437,2438,1,0,0,0,2438,2441,1,0,0,0,2439,2440, - 5,371,0,0,2440,2442,3,416,208,0,2441,2439,1,0,0,0,2441,2442,1,0, - 0,0,2442,123,1,0,0,0,2443,2444,5,8,0,0,2444,2445,5,409,0,0,2445, - 2449,3,628,314,0,2446,2448,3,76,38,0,2447,2446,1,0,0,0,2448,2451, - 1,0,0,0,2449,2447,1,0,0,0,2449,2450,1,0,0,0,2450,125,1,0,0,0,2451, - 2449,1,0,0,0,2452,2453,5,8,0,0,2453,2454,5,433,0,0,2454,2455,5,585, - 0,0,2455,2456,5,801,0,0,2456,2457,5,453,0,0,2457,2458,5,92,0,0,2458, - 127,1,0,0,0,2459,2460,5,8,0,0,2460,2461,5,451,0,0,2461,2462,5,74, - 0,0,2462,2463,3,702,351,0,2463,2464,5,6,0,0,2464,2465,5,671,0,0, - 2465,2471,5,882,0,0,2466,2468,5,428,0,0,2467,2469,5,857,0,0,2468, - 2467,1,0,0,0,2468,2469,1,0,0,0,2469,2470,1,0,0,0,2470,2472,3,710, - 355,0,2471,2466,1,0,0,0,2471,2472,1,0,0,0,2472,2474,1,0,0,0,2473, - 2475,5,687,0,0,2474,2473,1,0,0,0,2474,2475,1,0,0,0,2475,2476,1,0, - 0,0,2476,2478,5,380,0,0,2477,2479,5,857,0,0,2478,2477,1,0,0,0,2478, - 2479,1,0,0,0,2479,2480,1,0,0,0,2480,2481,3,688,344,0,2481,129,1, - 0,0,0,2482,2483,5,8,0,0,2483,2484,5,132,0,0,2484,2488,3,698,349, - 0,2485,2487,3,76,38,0,2486,2485,1,0,0,0,2487,2490,1,0,0,0,2488,2486, - 1,0,0,0,2488,2489,1,0,0,0,2489,131,1,0,0,0,2490,2488,1,0,0,0,2491, - 2492,5,8,0,0,2492,2493,5,592,0,0,2493,2494,3,702,351,0,2494,2495, - 5,518,0,0,2495,2496,5,866,0,0,2496,2501,3,78,39,0,2497,2498,5,868, - 0,0,2498,2500,3,78,39,0,2499,2497,1,0,0,0,2500,2503,1,0,0,0,2501, - 2499,1,0,0,0,2501,2502,1,0,0,0,2502,2504,1,0,0,0,2503,2501,1,0,0, - 0,2504,2505,5,867,0,0,2505,133,1,0,0,0,2506,2507,5,8,0,0,2507,2508, - 5,173,0,0,2508,2517,3,648,324,0,2509,2514,3,140,70,0,2510,2511,5, - 868,0,0,2511,2513,3,140,70,0,2512,2510,1,0,0,0,2513,2516,1,0,0,0, - 2514,2512,1,0,0,0,2514,2515,1,0,0,0,2515,2518,1,0,0,0,2516,2514, - 1,0,0,0,2517,2509,1,0,0,0,2517,2518,1,0,0,0,2518,2526,1,0,0,0,2519, - 2523,3,142,71,0,2520,2522,3,142,71,0,2521,2520,1,0,0,0,2522,2525, - 1,0,0,0,2523,2521,1,0,0,0,2523,2524,1,0,0,0,2524,2527,1,0,0,0,2525, - 2523,1,0,0,0,2526,2519,1,0,0,0,2526,2527,1,0,0,0,2527,135,1,0,0, - 0,2528,2530,5,8,0,0,2529,2531,5,180,0,0,2530,2529,1,0,0,0,2530,2531, - 1,0,0,0,2531,2532,1,0,0,0,2532,2533,5,658,0,0,2533,2534,3,662,331, - 0,2534,2535,7,34,0,0,2535,2536,5,361,0,0,2536,2542,5,882,0,0,2537, - 2539,5,428,0,0,2538,2540,5,857,0,0,2539,2538,1,0,0,0,2539,2540,1, - 0,0,0,2540,2541,1,0,0,0,2541,2543,3,710,355,0,2542,2537,1,0,0,0, - 2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2546,5,687,0,0,2545,2544, - 1,0,0,0,2545,2546,1,0,0,0,2546,2550,1,0,0,0,2547,2548,5,141,0,0, - 2548,2549,5,176,0,0,2549,2551,3,660,330,0,2550,2547,1,0,0,0,2550, - 2551,1,0,0,0,2551,2557,1,0,0,0,2552,2554,5,314,0,0,2553,2555,5,857, - 0,0,2554,2553,1,0,0,0,2554,2555,1,0,0,0,2555,2556,1,0,0,0,2556,2558, - 3,710,355,0,2557,2552,1,0,0,0,2557,2558,1,0,0,0,2558,2561,1,0,0, - 0,2559,2560,5,155,0,0,2560,2562,7,35,0,0,2561,2559,1,0,0,0,2561, - 2562,1,0,0,0,2562,2568,1,0,0,0,2563,2565,5,376,0,0,2564,2566,5,857, - 0,0,2565,2564,1,0,0,0,2565,2566,1,0,0,0,2566,2567,1,0,0,0,2567,2569, - 5,882,0,0,2568,2563,1,0,0,0,2568,2569,1,0,0,0,2569,2575,1,0,0,0, - 2570,2572,5,380,0,0,2571,2573,5,857,0,0,2572,2571,1,0,0,0,2572,2573, - 1,0,0,0,2573,2574,1,0,0,0,2574,2576,3,688,344,0,2575,2570,1,0,0, - 0,2575,2576,1,0,0,0,2576,2582,1,0,0,0,2577,2579,5,825,0,0,2578,2580, - 5,857,0,0,2579,2578,1,0,0,0,2579,2580,1,0,0,0,2580,2581,1,0,0,0, - 2581,2583,5,882,0,0,2582,2577,1,0,0,0,2582,2583,1,0,0,0,2583,137, - 1,0,0,0,2584,2588,5,8,0,0,2585,2586,5,308,0,0,2586,2587,5,857,0, - 0,2587,2589,7,10,0,0,2588,2585,1,0,0,0,2588,2589,1,0,0,0,2589,2591, - 1,0,0,0,2590,2592,3,58,29,0,2591,2590,1,0,0,0,2591,2592,1,0,0,0, - 2592,2596,1,0,0,0,2593,2594,5,162,0,0,2594,2595,5,591,0,0,2595,2597, - 7,11,0,0,2596,2593,1,0,0,0,2596,2597,1,0,0,0,2597,2598,1,0,0,0,2598, - 2599,5,684,0,0,2599,2604,3,632,316,0,2600,2601,5,866,0,0,2601,2602, - 3,656,328,0,2602,2603,5,867,0,0,2603,2605,1,0,0,0,2604,2600,1,0, - 0,0,2604,2605,1,0,0,0,2605,2606,1,0,0,0,2606,2607,5,13,0,0,2607, - 2614,3,204,102,0,2608,2610,5,194,0,0,2609,2611,7,12,0,0,2610,2609, - 1,0,0,0,2610,2611,1,0,0,0,2611,2612,1,0,0,0,2612,2613,5,27,0,0,2613, - 2615,5,121,0,0,2614,2608,1,0,0,0,2614,2615,1,0,0,0,2615,139,1,0, - 0,0,2616,2623,3,98,49,0,2617,2619,5,868,0,0,2618,2617,1,0,0,0,2618, - 2619,1,0,0,0,2619,2620,1,0,0,0,2620,2622,3,98,49,0,2621,2618,1,0, - 0,0,2622,2625,1,0,0,0,2623,2621,1,0,0,0,2623,2624,1,0,0,0,2624,2881, - 1,0,0,0,2625,2623,1,0,0,0,2626,2628,5,6,0,0,2627,2629,5,29,0,0,2628, - 2627,1,0,0,0,2628,2629,1,0,0,0,2629,2630,1,0,0,0,2630,2631,3,658, - 329,0,2631,2635,3,88,44,0,2632,2636,5,402,0,0,2633,2634,5,306,0, - 0,2634,2636,3,658,329,0,2635,2632,1,0,0,0,2635,2633,1,0,0,0,2635, - 2636,1,0,0,0,2636,2881,1,0,0,0,2637,2639,5,6,0,0,2638,2640,5,29, - 0,0,2639,2638,1,0,0,0,2639,2640,1,0,0,0,2640,2641,1,0,0,0,2641,2642, - 5,866,0,0,2642,2643,3,658,329,0,2643,2650,3,88,44,0,2644,2645,5, - 868,0,0,2645,2646,3,658,329,0,2646,2647,3,88,44,0,2647,2649,1,0, - 0,0,2648,2644,1,0,0,0,2649,2652,1,0,0,0,2650,2648,1,0,0,0,2650,2651, - 1,0,0,0,2651,2653,1,0,0,0,2652,2650,1,0,0,0,2653,2654,5,867,0,0, - 2654,2881,1,0,0,0,2655,2656,5,6,0,0,2656,2658,7,18,0,0,2657,2659, - 3,638,319,0,2658,2657,1,0,0,0,2658,2659,1,0,0,0,2659,2661,1,0,0, - 0,2660,2662,3,70,35,0,2661,2660,1,0,0,0,2661,2662,1,0,0,0,2662,2663, - 1,0,0,0,2663,2667,3,734,367,0,2664,2666,3,72,36,0,2665,2664,1,0, - 0,0,2666,2669,1,0,0,0,2667,2665,1,0,0,0,2667,2668,1,0,0,0,2668,2881, - 1,0,0,0,2669,2667,1,0,0,0,2670,2671,5,6,0,0,2671,2673,7,19,0,0,2672, - 2674,7,18,0,0,2673,2672,1,0,0,0,2673,2674,1,0,0,0,2674,2676,1,0, - 0,0,2675,2677,3,638,319,0,2676,2675,1,0,0,0,2676,2677,1,0,0,0,2677, - 2678,1,0,0,0,2678,2682,3,734,367,0,2679,2681,3,72,36,0,2680,2679, - 1,0,0,0,2681,2684,1,0,0,0,2682,2680,1,0,0,0,2682,2683,1,0,0,0,2683, - 2881,1,0,0,0,2684,2682,1,0,0,0,2685,2690,5,6,0,0,2686,2688,5,31, - 0,0,2687,2689,3,702,351,0,2688,2687,1,0,0,0,2688,2689,1,0,0,0,2689, - 2691,1,0,0,0,2690,2686,1,0,0,0,2690,2691,1,0,0,0,2691,2692,1,0,0, - 0,2692,2693,5,131,0,0,2693,2695,5,92,0,0,2694,2696,3,70,35,0,2695, - 2694,1,0,0,0,2695,2696,1,0,0,0,2696,2697,1,0,0,0,2697,2701,3,734, - 367,0,2698,2700,3,72,36,0,2699,2698,1,0,0,0,2700,2703,1,0,0,0,2701, - 2699,1,0,0,0,2701,2702,1,0,0,0,2702,2881,1,0,0,0,2703,2701,1,0,0, - 0,2704,2709,5,6,0,0,2705,2707,5,31,0,0,2706,2708,3,702,351,0,2707, - 2706,1,0,0,0,2707,2708,1,0,0,0,2708,2710,1,0,0,0,2709,2705,1,0,0, - 0,2709,2710,1,0,0,0,2710,2711,1,0,0,0,2711,2713,5,182,0,0,2712,2714, - 7,18,0,0,2713,2712,1,0,0,0,2713,2714,1,0,0,0,2714,2716,1,0,0,0,2715, - 2717,3,638,319,0,2716,2715,1,0,0,0,2716,2717,1,0,0,0,2717,2719,1, - 0,0,0,2718,2720,3,70,35,0,2719,2718,1,0,0,0,2719,2720,1,0,0,0,2720, - 2721,1,0,0,0,2721,2725,3,734,367,0,2722,2724,3,72,36,0,2723,2722, - 1,0,0,0,2724,2727,1,0,0,0,2725,2723,1,0,0,0,2725,2726,1,0,0,0,2726, - 2881,1,0,0,0,2727,2725,1,0,0,0,2728,2733,5,6,0,0,2729,2731,5,31, - 0,0,2730,2732,3,702,351,0,2731,2730,1,0,0,0,2731,2732,1,0,0,0,2732, - 2734,1,0,0,0,2733,2729,1,0,0,0,2733,2734,1,0,0,0,2734,2735,1,0,0, - 0,2735,2736,5,67,0,0,2736,2738,5,92,0,0,2737,2739,3,638,319,0,2738, - 2737,1,0,0,0,2738,2739,1,0,0,0,2739,2740,1,0,0,0,2740,2741,3,734, - 367,0,2741,2742,3,92,46,0,2742,2881,1,0,0,0,2743,2745,5,6,0,0,2744, - 2746,3,84,42,0,2745,2744,1,0,0,0,2745,2746,1,0,0,0,2746,2881,1,0, - 0,0,2747,2748,5,51,0,0,2748,2749,7,36,0,0,2749,2881,3,702,351,0, - 2750,2751,5,8,0,0,2751,2752,7,36,0,0,2752,2754,3,702,351,0,2753, - 2755,5,114,0,0,2754,2753,1,0,0,0,2754,2755,1,0,0,0,2755,2757,1,0, - 0,0,2756,2758,5,57,0,0,2757,2756,1,0,0,0,2757,2758,1,0,0,0,2758, - 2881,1,0,0,0,2759,2761,5,308,0,0,2760,2762,5,857,0,0,2761,2760,1, - 0,0,0,2761,2762,1,0,0,0,2762,2763,1,0,0,0,2763,2881,7,37,0,0,2764, - 2766,5,8,0,0,2765,2767,5,29,0,0,2766,2765,1,0,0,0,2766,2767,1,0, - 0,0,2767,2768,1,0,0,0,2768,2776,3,658,329,0,2769,2770,5,155,0,0, - 2770,2771,5,42,0,0,2771,2777,3,750,375,0,2772,2773,5,155,0,0,2773, - 2777,7,16,0,0,2774,2775,5,51,0,0,2775,2777,5,42,0,0,2776,2769,1, - 0,0,0,2776,2772,1,0,0,0,2776,2774,1,0,0,0,2777,2881,1,0,0,0,2778, - 2779,5,8,0,0,2779,2780,5,82,0,0,2780,2781,3,638,319,0,2781,2782, - 7,16,0,0,2782,2881,1,0,0,0,2783,2785,5,25,0,0,2784,2786,5,29,0,0, - 2785,2784,1,0,0,0,2785,2786,1,0,0,0,2786,2787,1,0,0,0,2787,2788, - 3,658,329,0,2788,2789,3,654,327,0,2789,2793,3,88,44,0,2790,2794, - 5,402,0,0,2791,2792,5,306,0,0,2792,2794,3,658,329,0,2793,2790,1, - 0,0,0,2793,2791,1,0,0,0,2793,2794,1,0,0,0,2794,2881,1,0,0,0,2795, - 2797,5,42,0,0,2796,2795,1,0,0,0,2796,2797,1,0,0,0,2797,2798,1,0, - 0,0,2798,2799,5,26,0,0,2799,2800,5,155,0,0,2800,2801,5,857,0,0,2801, - 2807,3,684,342,0,2802,2804,5,28,0,0,2803,2805,5,857,0,0,2804,2803, - 1,0,0,0,2804,2805,1,0,0,0,2805,2806,1,0,0,0,2806,2808,3,686,343, - 0,2807,2802,1,0,0,0,2807,2808,1,0,0,0,2808,2881,1,0,0,0,2809,2810, - 5,33,0,0,2810,2814,5,176,0,0,2811,2815,5,823,0,0,2812,2813,5,26, - 0,0,2813,2815,5,155,0,0,2814,2811,1,0,0,0,2814,2812,1,0,0,0,2815, - 2816,1,0,0,0,2816,2819,3,684,342,0,2817,2818,5,28,0,0,2818,2820, - 3,686,343,0,2819,2817,1,0,0,0,2819,2820,1,0,0,0,2820,2881,1,0,0, - 0,2821,2822,7,38,0,0,2822,2881,5,93,0,0,2823,2824,7,39,0,0,2824, - 2881,5,658,0,0,2825,2827,5,51,0,0,2826,2828,5,29,0,0,2827,2826,1, - 0,0,0,2827,2828,1,0,0,0,2828,2829,1,0,0,0,2829,2881,3,658,329,0, - 2830,2831,5,51,0,0,2831,2832,7,18,0,0,2832,2881,3,638,319,0,2833, - 2834,5,51,0,0,2834,2835,5,131,0,0,2835,2881,5,92,0,0,2836,2837,5, - 51,0,0,2837,2838,5,67,0,0,2838,2839,5,92,0,0,2839,2881,3,702,351, - 0,2840,2881,5,66,0,0,2841,2843,5,104,0,0,2842,2844,5,857,0,0,2843, - 2842,1,0,0,0,2843,2844,1,0,0,0,2844,2845,1,0,0,0,2845,2881,7,4,0, - 0,2846,2848,5,492,0,0,2847,2849,5,29,0,0,2848,2847,1,0,0,0,2848, - 2849,1,0,0,0,2849,2850,1,0,0,0,2850,2851,3,658,329,0,2851,2855,3, - 88,44,0,2852,2856,5,402,0,0,2853,2854,5,306,0,0,2854,2856,3,658, - 329,0,2855,2852,1,0,0,0,2855,2853,1,0,0,0,2855,2856,1,0,0,0,2856, - 2881,1,0,0,0,2857,2858,5,125,0,0,2858,2859,5,20,0,0,2859,2881,3, - 656,328,0,2860,2861,5,141,0,0,2861,2862,5,29,0,0,2862,2863,3,658, - 329,0,2863,2864,5,176,0,0,2864,2865,3,654,327,0,2865,2881,1,0,0, - 0,2866,2867,5,141,0,0,2867,2868,7,18,0,0,2868,2869,3,638,319,0,2869, - 2870,5,176,0,0,2870,2871,3,634,317,0,2871,2881,1,0,0,0,2872,2874, - 5,141,0,0,2873,2875,7,40,0,0,2874,2873,1,0,0,0,2874,2875,1,0,0,0, - 2875,2876,1,0,0,0,2876,2881,3,644,322,0,2877,2878,7,41,0,0,2878, - 2881,5,681,0,0,2879,2881,3,142,71,0,2880,2616,1,0,0,0,2880,2626, - 1,0,0,0,2880,2637,1,0,0,0,2880,2655,1,0,0,0,2880,2670,1,0,0,0,2880, - 2685,1,0,0,0,2880,2704,1,0,0,0,2880,2728,1,0,0,0,2880,2743,1,0,0, - 0,2880,2747,1,0,0,0,2880,2750,1,0,0,0,2880,2759,1,0,0,0,2880,2764, - 1,0,0,0,2880,2778,1,0,0,0,2880,2783,1,0,0,0,2880,2796,1,0,0,0,2880, - 2809,1,0,0,0,2880,2821,1,0,0,0,2880,2823,1,0,0,0,2880,2825,1,0,0, - 0,2880,2830,1,0,0,0,2880,2833,1,0,0,0,2880,2836,1,0,0,0,2880,2840, - 1,0,0,0,2880,2841,1,0,0,0,2880,2846,1,0,0,0,2880,2857,1,0,0,0,2880, - 2860,1,0,0,0,2880,2866,1,0,0,0,2880,2872,1,0,0,0,2880,2877,1,0,0, - 0,2880,2879,1,0,0,0,2881,141,1,0,0,0,2882,2883,5,6,0,0,2883,2884, - 5,130,0,0,2884,2885,5,866,0,0,2885,2890,3,110,55,0,2886,2887,5,868, - 0,0,2887,2889,3,110,55,0,2888,2886,1,0,0,0,2889,2892,1,0,0,0,2890, - 2888,1,0,0,0,2890,2891,1,0,0,0,2891,2893,1,0,0,0,2892,2890,1,0,0, - 0,2893,2894,5,867,0,0,2894,2981,1,0,0,0,2895,2896,5,51,0,0,2896, - 2897,5,130,0,0,2897,2981,3,666,333,0,2898,2899,5,369,0,0,2899,2902, - 5,130,0,0,2900,2903,3,666,333,0,2901,2903,5,7,0,0,2902,2900,1,0, - 0,0,2902,2901,1,0,0,0,2903,2904,1,0,0,0,2904,2981,5,658,0,0,2905, - 2906,5,425,0,0,2906,2909,5,130,0,0,2907,2910,3,666,333,0,2908,2910, - 5,7,0,0,2909,2907,1,0,0,0,2909,2908,1,0,0,0,2910,2911,1,0,0,0,2911, - 2981,5,658,0,0,2912,2913,5,668,0,0,2913,2916,5,130,0,0,2914,2917, - 3,666,333,0,2915,2917,5,7,0,0,2916,2914,1,0,0,0,2916,2915,1,0,0, - 0,2917,2981,1,0,0,0,2918,2919,5,335,0,0,2919,2920,5,130,0,0,2920, - 2981,3,708,354,0,2921,2922,5,561,0,0,2922,2923,5,130,0,0,2923,2924, - 3,666,333,0,2924,2925,5,88,0,0,2925,2926,5,866,0,0,2926,2931,3,110, - 55,0,2927,2928,5,868,0,0,2928,2930,3,110,55,0,2929,2927,1,0,0,0, - 2930,2933,1,0,0,0,2931,2929,1,0,0,0,2931,2932,1,0,0,0,2932,2934, - 1,0,0,0,2933,2931,1,0,0,0,2934,2935,5,867,0,0,2935,2981,1,0,0,0, - 2936,2937,5,388,0,0,2937,2938,5,130,0,0,2938,2939,3,668,334,0,2939, - 2940,5,194,0,0,2940,2941,5,173,0,0,2941,2944,3,648,324,0,2942,2943, - 7,41,0,0,2943,2945,5,681,0,0,2944,2942,1,0,0,0,2944,2945,1,0,0,0, - 2945,2981,1,0,0,0,2946,2947,5,10,0,0,2947,2950,5,130,0,0,2948,2951, - 3,666,333,0,2949,2951,5,7,0,0,2950,2948,1,0,0,0,2950,2949,1,0,0, - 0,2951,2981,1,0,0,0,2952,2953,5,27,0,0,2953,2956,5,130,0,0,2954, - 2957,3,666,333,0,2955,2957,5,7,0,0,2956,2954,1,0,0,0,2956,2955,1, - 0,0,0,2957,2981,1,0,0,0,2958,2959,5,120,0,0,2959,2962,5,130,0,0, - 2960,2963,3,666,333,0,2961,2963,5,7,0,0,2962,2960,1,0,0,0,2962,2961, - 1,0,0,0,2963,2981,1,0,0,0,2964,2965,5,550,0,0,2965,2968,5,130,0, - 0,2966,2969,3,666,333,0,2967,2969,5,7,0,0,2968,2966,1,0,0,0,2968, - 2967,1,0,0,0,2969,2981,1,0,0,0,2970,2971,5,562,0,0,2971,2974,5,130, - 0,0,2972,2975,3,666,333,0,2973,2975,5,7,0,0,2974,2972,1,0,0,0,2974, - 2973,1,0,0,0,2975,2981,1,0,0,0,2976,2977,5,560,0,0,2977,2981,5,527, - 0,0,2978,2979,5,677,0,0,2979,2981,5,527,0,0,2980,2882,1,0,0,0,2980, - 2895,1,0,0,0,2980,2898,1,0,0,0,2980,2905,1,0,0,0,2980,2912,1,0,0, - 0,2980,2918,1,0,0,0,2980,2921,1,0,0,0,2980,2936,1,0,0,0,2980,2946, - 1,0,0,0,2980,2952,1,0,0,0,2980,2958,1,0,0,0,2980,2964,1,0,0,0,2980, - 2970,1,0,0,0,2980,2976,1,0,0,0,2980,2978,1,0,0,0,2981,143,1,0,0, - 0,2982,2983,5,51,0,0,2983,2985,7,0,0,0,2984,2986,3,754,377,0,2985, - 2984,1,0,0,0,2985,2986,1,0,0,0,2986,2987,1,0,0,0,2987,2988,3,624, - 312,0,2988,145,1,0,0,0,2989,2990,5,51,0,0,2990,2992,5,385,0,0,2991, - 2993,3,754,377,0,2992,2991,1,0,0,0,2992,2993,1,0,0,0,2993,2994,1, - 0,0,0,2994,2995,3,698,349,0,2995,147,1,0,0,0,2996,2997,5,51,0,0, - 2997,2999,5,82,0,0,2998,3000,7,1,0,0,2999,2998,1,0,0,0,2999,3000, - 1,0,0,0,3000,3001,1,0,0,0,3001,3002,3,638,319,0,3002,3003,5,119, - 0,0,3003,3016,3,648,324,0,3004,3006,5,308,0,0,3005,3007,5,857,0, - 0,3006,3005,1,0,0,0,3006,3007,1,0,0,0,3007,3008,1,0,0,0,3008,3015, - 7,3,0,0,3009,3011,5,104,0,0,3010,3012,5,857,0,0,3011,3010,1,0,0, - 0,3011,3012,1,0,0,0,3012,3013,1,0,0,0,3013,3015,7,4,0,0,3014,3004, - 1,0,0,0,3014,3009,1,0,0,0,3015,3018,1,0,0,0,3016,3014,1,0,0,0,3016, - 3017,1,0,0,0,3017,149,1,0,0,0,3018,3016,1,0,0,0,3019,3020,5,51,0, - 0,3020,3021,5,451,0,0,3021,3022,5,74,0,0,3022,3023,3,702,351,0,3023, - 3025,5,380,0,0,3024,3026,5,857,0,0,3025,3024,1,0,0,0,3025,3026,1, - 0,0,0,3026,3027,1,0,0,0,3027,3028,3,688,344,0,3028,151,1,0,0,0,3029, - 3030,5,51,0,0,3030,3032,5,132,0,0,3031,3033,3,754,377,0,3032,3031, - 1,0,0,0,3032,3033,1,0,0,0,3033,3034,1,0,0,0,3034,3035,3,698,349, - 0,3035,153,1,0,0,0,3036,3037,5,51,0,0,3037,3039,5,409,0,0,3038,3040, - 3,754,377,0,3039,3038,1,0,0,0,3039,3040,1,0,0,0,3040,3041,1,0,0, - 0,3041,3042,3,628,314,0,3042,155,1,0,0,0,3043,3044,5,51,0,0,3044, - 3046,5,592,0,0,3045,3047,3,754,377,0,3046,3045,1,0,0,0,3046,3047, - 1,0,0,0,3047,3048,1,0,0,0,3048,3049,3,702,351,0,3049,157,1,0,0,0, - 3050,3051,5,51,0,0,3051,3052,5,161,0,0,3052,3053,5,137,0,0,3053, - 3055,5,835,0,0,3054,3056,3,754,377,0,3055,3054,1,0,0,0,3055,3056, - 1,0,0,0,3056,3057,1,0,0,0,3057,3058,5,883,0,0,3058,159,1,0,0,0,3059, - 3061,5,51,0,0,3060,3062,5,660,0,0,3061,3060,1,0,0,0,3061,3062,1, - 0,0,0,3062,3063,1,0,0,0,3063,3065,5,173,0,0,3064,3066,3,754,377, - 0,3065,3064,1,0,0,0,3065,3066,1,0,0,0,3066,3067,1,0,0,0,3067,3069, - 3,646,323,0,3068,3070,7,42,0,0,3069,3068,1,0,0,0,3069,3070,1,0,0, - 0,3070,161,1,0,0,0,3071,3073,5,51,0,0,3072,3074,5,180,0,0,3073,3072, - 1,0,0,0,3073,3074,1,0,0,0,3074,3075,1,0,0,0,3075,3076,5,658,0,0, - 3076,3082,3,662,331,0,3077,3079,5,380,0,0,3078,3080,5,857,0,0,3079, - 3078,1,0,0,0,3079,3080,1,0,0,0,3080,3081,1,0,0,0,3081,3083,3,688, - 344,0,3082,3077,1,0,0,0,3082,3083,1,0,0,0,3083,163,1,0,0,0,3084, - 3085,5,51,0,0,3085,3087,5,178,0,0,3086,3088,3,754,377,0,3087,3086, - 1,0,0,0,3087,3088,1,0,0,0,3088,3089,1,0,0,0,3089,3090,3,698,349, - 0,3090,165,1,0,0,0,3091,3092,5,51,0,0,3092,3094,5,684,0,0,3093,3095, - 3,754,377,0,3094,3093,1,0,0,0,3094,3095,1,0,0,0,3095,3096,1,0,0, - 0,3096,3101,3,632,316,0,3097,3098,5,868,0,0,3098,3100,3,632,316, - 0,3099,3097,1,0,0,0,3100,3103,1,0,0,0,3101,3099,1,0,0,0,3101,3102, - 1,0,0,0,3102,3105,1,0,0,0,3103,3101,1,0,0,0,3104,3106,7,42,0,0,3105, - 3104,1,0,0,0,3105,3106,1,0,0,0,3106,167,1,0,0,0,3107,3108,5,51,0, - 0,3108,3110,5,582,0,0,3109,3111,3,754,377,0,3110,3109,1,0,0,0,3110, - 3111,1,0,0,0,3111,3112,1,0,0,0,3112,3113,3,650,325,0,3113,169,1, - 0,0,0,3114,3115,5,155,0,0,3115,3116,5,42,0,0,3116,3120,5,582,0,0, - 3117,3121,5,505,0,0,3118,3121,5,7,0,0,3119,3121,3,650,325,0,3120, - 3117,1,0,0,0,3120,3118,1,0,0,0,3120,3119,1,0,0,0,3121,3122,1,0,0, - 0,3122,3123,5,176,0,0,3123,3128,3,652,326,0,3124,3125,5,868,0,0, - 3125,3127,3,652,326,0,3126,3124,1,0,0,0,3127,3130,1,0,0,0,3128,3126, - 1,0,0,0,3128,3129,1,0,0,0,3129,3135,1,0,0,0,3130,3128,1,0,0,0,3131, - 3132,5,155,0,0,3132,3133,5,582,0,0,3133,3135,3,462,231,0,3134,3114, - 1,0,0,0,3134,3131,1,0,0,0,3135,171,1,0,0,0,3136,3137,5,141,0,0,3137, - 3138,5,173,0,0,3138,3143,3,174,87,0,3139,3140,5,868,0,0,3140,3142, - 3,174,87,0,3141,3139,1,0,0,0,3142,3145,1,0,0,0,3143,3141,1,0,0,0, - 3143,3144,1,0,0,0,3144,173,1,0,0,0,3145,3143,1,0,0,0,3146,3147,3, - 648,324,0,3147,3148,5,176,0,0,3148,3149,3,644,322,0,3149,175,1,0, - 0,0,3150,3152,5,668,0,0,3151,3153,5,173,0,0,3152,3151,1,0,0,0,3152, - 3153,1,0,0,0,3153,3154,1,0,0,0,3154,3155,3,648,324,0,3155,177,1, - 0,0,0,3156,3157,5,21,0,0,3157,3164,3,698,349,0,3158,3161,5,866,0, - 0,3159,3162,3,744,372,0,3160,3162,3,736,368,0,3161,3159,1,0,0,0, - 3161,3160,1,0,0,0,3161,3162,1,0,0,0,3162,3163,1,0,0,0,3163,3165, - 5,867,0,0,3164,3158,1,0,0,0,3164,3165,1,0,0,0,3165,179,1,0,0,0,3166, - 3169,3,234,117,0,3167,3169,3,236,118,0,3168,3166,1,0,0,0,3168,3167, - 1,0,0,0,3169,181,1,0,0,0,3170,3171,5,371,0,0,3171,3172,3,736,368, - 0,3172,183,1,0,0,0,3173,3178,3,238,119,0,3174,3178,3,240,120,0,3175, - 3178,3,242,121,0,3176,3178,3,244,122,0,3177,3173,1,0,0,0,3177,3174, - 1,0,0,0,3177,3175,1,0,0,0,3177,3176,1,0,0,0,3178,185,1,0,0,0,3179, - 3181,5,86,0,0,3180,3182,7,43,0,0,3181,3180,1,0,0,0,3181,3182,1,0, - 0,0,3182,3184,1,0,0,0,3183,3185,5,79,0,0,3184,3183,1,0,0,0,3184, - 3185,1,0,0,0,3185,3187,1,0,0,0,3186,3188,5,88,0,0,3187,3186,1,0, - 0,0,3187,3188,1,0,0,0,3188,3189,1,0,0,0,3189,3196,3,648,324,0,3190, - 3191,5,130,0,0,3191,3193,5,866,0,0,3192,3194,3,666,333,0,3193,3192, - 1,0,0,0,3193,3194,1,0,0,0,3194,3195,1,0,0,0,3195,3197,5,867,0,0, - 3196,3190,1,0,0,0,3196,3197,1,0,0,0,3197,3209,1,0,0,0,3198,3200, - 3,262,131,0,3199,3198,1,0,0,0,3199,3200,1,0,0,0,3200,3203,1,0,0, - 0,3201,3204,3,738,369,0,3202,3204,3,190,95,0,3203,3201,1,0,0,0,3203, - 3202,1,0,0,0,3203,3204,1,0,0,0,3204,3206,1,0,0,0,3205,3207,3,188, - 94,0,3206,3205,1,0,0,0,3206,3207,1,0,0,0,3207,3210,1,0,0,0,3208, - 3210,3,226,113,0,3209,3199,1,0,0,0,3209,3208,1,0,0,0,3210,3212,1, - 0,0,0,3211,3213,3,188,94,0,3212,3211,1,0,0,0,3212,3213,1,0,0,0,3213, - 3226,1,0,0,0,3214,3215,5,119,0,0,3215,3216,5,373,0,0,3216,3217,5, - 92,0,0,3217,3218,5,185,0,0,3218,3223,3,228,114,0,3219,3220,5,868, - 0,0,3220,3222,3,228,114,0,3221,3219,1,0,0,0,3222,3225,1,0,0,0,3223, - 3221,1,0,0,0,3223,3224,1,0,0,0,3224,3227,1,0,0,0,3225,3223,1,0,0, - 0,3226,3214,1,0,0,0,3226,3227,1,0,0,0,3227,187,1,0,0,0,3228,3229, - 5,13,0,0,3229,3231,3,702,351,0,3230,3232,3,262,131,0,3231,3230,1, - 0,0,0,3231,3232,1,0,0,0,3232,189,1,0,0,0,3233,3238,3,204,102,0,3234, - 3235,5,173,0,0,3235,3238,3,648,324,0,3236,3238,3,224,112,0,3237, - 3233,1,0,0,0,3237,3234,1,0,0,0,3237,3236,1,0,0,0,3238,191,1,0,0, - 0,3239,3245,3,194,97,0,3240,3242,5,828,0,0,3241,3243,7,44,0,0,3242, - 3241,1,0,0,0,3242,3243,1,0,0,0,3243,3244,1,0,0,0,3244,3246,3,194, - 97,0,3245,3240,1,0,0,0,3246,3247,1,0,0,0,3247,3245,1,0,0,0,3247, - 3248,1,0,0,0,3248,193,1,0,0,0,3249,3251,5,866,0,0,3250,3249,1,0, - 0,0,3250,3251,1,0,0,0,3251,3252,1,0,0,0,3252,3254,3,274,137,0,3253, - 3255,5,867,0,0,3254,3253,1,0,0,0,3254,3255,1,0,0,0,3255,195,1,0, - 0,0,3256,3257,5,103,0,0,3257,3259,5,360,0,0,3258,3260,7,45,0,0,3259, - 3258,1,0,0,0,3259,3260,1,0,0,0,3260,3262,1,0,0,0,3261,3263,5,450, - 0,0,3262,3261,1,0,0,0,3262,3263,1,0,0,0,3263,3264,1,0,0,0,3264,3265, - 5,83,0,0,3265,3267,5,882,0,0,3266,3268,7,6,0,0,3267,3266,1,0,0,0, - 3267,3268,1,0,0,0,3268,3269,1,0,0,0,3269,3270,5,88,0,0,3270,3271, - 5,173,0,0,3271,3277,3,648,324,0,3272,3273,5,130,0,0,3273,3274,5, - 866,0,0,3274,3275,3,666,333,0,3275,3276,5,867,0,0,3276,3278,1,0, - 0,0,3277,3272,1,0,0,0,3277,3278,1,0,0,0,3278,3282,1,0,0,0,3279,3280, - 5,26,0,0,3280,3281,5,155,0,0,3281,3283,3,684,342,0,3282,3279,1,0, - 0,0,3282,3283,1,0,0,0,3283,3290,1,0,0,0,3284,3286,7,46,0,0,3285, - 3287,3,298,149,0,3286,3285,1,0,0,0,3287,3288,1,0,0,0,3288,3286,1, - 0,0,0,3288,3289,1,0,0,0,3289,3291,1,0,0,0,3290,3284,1,0,0,0,3290, - 3291,1,0,0,0,3291,3298,1,0,0,0,3292,3294,5,102,0,0,3293,3295,3,300, - 150,0,3294,3293,1,0,0,0,3295,3296,1,0,0,0,3296,3294,1,0,0,0,3296, - 3297,1,0,0,0,3297,3299,1,0,0,0,3298,3292,1,0,0,0,3298,3299,1,0,0, - 0,3299,3304,1,0,0,0,3300,3301,5,79,0,0,3301,3302,3,708,354,0,3302, - 3303,7,47,0,0,3303,3305,1,0,0,0,3304,3300,1,0,0,0,3304,3305,1,0, - 0,0,3305,3317,1,0,0,0,3306,3307,5,866,0,0,3307,3312,3,230,115,0, - 3308,3309,5,868,0,0,3309,3311,3,230,115,0,3310,3308,1,0,0,0,3311, - 3314,1,0,0,0,3312,3310,1,0,0,0,3312,3313,1,0,0,0,3313,3315,1,0,0, - 0,3314,3312,1,0,0,0,3315,3316,5,867,0,0,3316,3318,1,0,0,0,3317,3306, - 1,0,0,0,3317,3318,1,0,0,0,3318,3328,1,0,0,0,3319,3320,5,155,0,0, - 3320,3325,3,228,114,0,3321,3322,5,868,0,0,3322,3324,3,228,114,0, - 3323,3321,1,0,0,0,3324,3327,1,0,0,0,3325,3323,1,0,0,0,3325,3326, - 1,0,0,0,3326,3329,1,0,0,0,3327,3325,1,0,0,0,3328,3319,1,0,0,0,3328, - 3329,1,0,0,0,3329,197,1,0,0,0,3330,3331,5,103,0,0,3331,3333,5,695, - 0,0,3332,3334,7,45,0,0,3333,3332,1,0,0,0,3333,3334,1,0,0,0,3334, - 3336,1,0,0,0,3335,3337,5,450,0,0,3336,3335,1,0,0,0,3336,3337,1,0, - 0,0,3337,3338,1,0,0,0,3338,3339,5,83,0,0,3339,3341,5,882,0,0,3340, - 3342,7,6,0,0,3341,3340,1,0,0,0,3341,3342,1,0,0,0,3342,3343,1,0,0, - 0,3343,3344,5,88,0,0,3344,3345,5,173,0,0,3345,3349,3,648,324,0,3346, - 3347,5,26,0,0,3347,3348,5,155,0,0,3348,3350,3,684,342,0,3349,3346, - 1,0,0,0,3349,3350,1,0,0,0,3350,3361,1,0,0,0,3351,3352,5,587,0,0, - 3352,3353,5,423,0,0,3353,3355,5,20,0,0,3354,3356,5,859,0,0,3355, - 3354,1,0,0,0,3355,3356,1,0,0,0,3356,3357,1,0,0,0,3357,3359,5,882, - 0,0,3358,3360,5,858,0,0,3359,3358,1,0,0,0,3359,3360,1,0,0,0,3360, - 3362,1,0,0,0,3361,3351,1,0,0,0,3361,3362,1,0,0,0,3362,3367,1,0,0, - 0,3363,3364,5,79,0,0,3364,3365,3,708,354,0,3365,3366,7,47,0,0,3366, - 3368,1,0,0,0,3367,3363,1,0,0,0,3367,3368,1,0,0,0,3368,3380,1,0,0, - 0,3369,3370,5,866,0,0,3370,3375,3,230,115,0,3371,3372,5,868,0,0, - 3372,3374,3,230,115,0,3373,3371,1,0,0,0,3374,3377,1,0,0,0,3375,3373, - 1,0,0,0,3375,3376,1,0,0,0,3376,3378,1,0,0,0,3377,3375,1,0,0,0,3378, - 3379,5,867,0,0,3379,3381,1,0,0,0,3380,3369,1,0,0,0,3380,3381,1,0, - 0,0,3381,3391,1,0,0,0,3382,3383,5,155,0,0,3383,3388,3,228,114,0, - 3384,3385,5,868,0,0,3385,3387,3,228,114,0,3386,3384,1,0,0,0,3387, - 3390,1,0,0,0,3388,3386,1,0,0,0,3388,3389,1,0,0,0,3389,3392,1,0,0, - 0,3390,3388,1,0,0,0,3391,3382,1,0,0,0,3391,3392,1,0,0,0,3392,199, - 1,0,0,0,3393,3394,5,866,0,0,3394,3396,3,218,109,0,3395,3397,3,252, - 126,0,3396,3395,1,0,0,0,3396,3397,1,0,0,0,3397,3399,1,0,0,0,3398, - 3400,3,312,156,0,3399,3398,1,0,0,0,3399,3400,1,0,0,0,3400,3401,1, - 0,0,0,3401,3403,5,867,0,0,3402,3404,3,252,126,0,3403,3402,1,0,0, - 0,3403,3404,1,0,0,0,3404,3406,1,0,0,0,3405,3407,3,312,156,0,3406, - 3405,1,0,0,0,3406,3407,1,0,0,0,3407,3409,1,0,0,0,3408,3410,3,296, - 148,0,3409,3408,1,0,0,0,3409,3410,1,0,0,0,3410,201,1,0,0,0,3411, - 3413,5,143,0,0,3412,3414,7,48,0,0,3413,3412,1,0,0,0,3413,3414,1, - 0,0,0,3414,3416,1,0,0,0,3415,3417,5,88,0,0,3416,3415,1,0,0,0,3416, - 3417,1,0,0,0,3417,3418,1,0,0,0,3418,3424,3,648,324,0,3419,3420,5, - 130,0,0,3420,3421,5,866,0,0,3421,3422,3,666,333,0,3422,3423,5,867, - 0,0,3423,3425,1,0,0,0,3424,3419,1,0,0,0,3424,3425,1,0,0,0,3425,3434, - 1,0,0,0,3426,3427,5,866,0,0,3427,3428,3,656,328,0,3428,3429,5,867, - 0,0,3429,3431,1,0,0,0,3430,3426,1,0,0,0,3430,3431,1,0,0,0,3431,3432, - 1,0,0,0,3432,3435,3,222,111,0,3433,3435,3,226,113,0,3434,3430,1, - 0,0,0,3434,3433,1,0,0,0,3435,203,1,0,0,0,3436,3440,3,274,137,0,3437, - 3439,3,276,138,0,3438,3437,1,0,0,0,3439,3442,1,0,0,0,3440,3438,1, - 0,0,0,3440,3441,1,0,0,0,3441,3451,1,0,0,0,3442,3440,1,0,0,0,3443, - 3445,5,181,0,0,3444,3446,7,44,0,0,3445,3444,1,0,0,0,3445,3446,1, - 0,0,0,3446,3449,1,0,0,0,3447,3450,3,274,137,0,3448,3450,3,272,136, - 0,3449,3447,1,0,0,0,3449,3448,1,0,0,0,3450,3452,1,0,0,0,3451,3443, - 1,0,0,0,3451,3452,1,0,0,0,3452,3457,1,0,0,0,3453,3454,5,868,0,0, - 3454,3456,3,278,139,0,3455,3453,1,0,0,0,3456,3459,1,0,0,0,3457,3455, - 1,0,0,0,3457,3458,1,0,0,0,3458,3461,1,0,0,0,3459,3457,1,0,0,0,3460, - 3462,3,252,126,0,3461,3460,1,0,0,0,3461,3462,1,0,0,0,3462,3464,1, - 0,0,0,3463,3465,3,312,156,0,3464,3463,1,0,0,0,3464,3465,1,0,0,0, - 3465,3467,1,0,0,0,3466,3468,3,232,116,0,3467,3466,1,0,0,0,3467,3468, - 1,0,0,0,3468,3470,1,0,0,0,3469,3471,3,296,148,0,3470,3469,1,0,0, - 0,3470,3471,1,0,0,0,3471,3496,1,0,0,0,3472,3476,3,272,136,0,3473, - 3475,3,276,138,0,3474,3473,1,0,0,0,3475,3478,1,0,0,0,3476,3474,1, - 0,0,0,3476,3477,1,0,0,0,3477,3484,1,0,0,0,3478,3476,1,0,0,0,3479, - 3481,5,181,0,0,3480,3482,7,44,0,0,3481,3480,1,0,0,0,3481,3482,1, - 0,0,0,3482,3483,1,0,0,0,3483,3485,3,272,136,0,3484,3479,1,0,0,0, - 3484,3485,1,0,0,0,3485,3487,1,0,0,0,3486,3488,3,252,126,0,3487,3486, - 1,0,0,0,3487,3488,1,0,0,0,3488,3490,1,0,0,0,3489,3491,3,312,156, - 0,3490,3489,1,0,0,0,3490,3491,1,0,0,0,3491,3493,1,0,0,0,3492,3494, - 3,232,116,0,3493,3492,1,0,0,0,3493,3494,1,0,0,0,3494,3496,1,0,0, - 0,3495,3436,1,0,0,0,3495,3472,1,0,0,0,3496,205,1,0,0,0,3497,3499, - 3,46,23,0,3498,3497,1,0,0,0,3498,3499,1,0,0,0,3499,3500,1,0,0,0, - 3500,3502,3,208,104,0,3501,3503,3,252,126,0,3502,3501,1,0,0,0,3502, - 3503,1,0,0,0,3503,3505,1,0,0,0,3504,3506,3,312,156,0,3505,3504,1, - 0,0,0,3505,3506,1,0,0,0,3506,3508,1,0,0,0,3507,3509,3,296,148,0, - 3508,3507,1,0,0,0,3508,3509,1,0,0,0,3509,207,1,0,0,0,3510,3511,6, - 104,-1,0,3511,3512,3,210,105,0,3512,3527,1,0,0,0,3513,3514,10,2, - 0,0,3514,3516,5,181,0,0,3515,3517,7,44,0,0,3516,3515,1,0,0,0,3516, - 3517,1,0,0,0,3517,3518,1,0,0,0,3518,3526,3,210,105,0,3519,3520,10, - 1,0,0,3520,3522,5,59,0,0,3521,3523,7,44,0,0,3522,3521,1,0,0,0,3522, - 3523,1,0,0,0,3523,3524,1,0,0,0,3524,3526,3,210,105,0,3525,3513,1, - 0,0,0,3525,3519,1,0,0,0,3526,3529,1,0,0,0,3527,3525,1,0,0,0,3527, - 3528,1,0,0,0,3528,209,1,0,0,0,3529,3527,1,0,0,0,3530,3531,6,105, - -1,0,3531,3532,3,212,106,0,3532,3541,1,0,0,0,3533,3534,10,1,0,0, - 3534,3536,5,828,0,0,3535,3537,7,44,0,0,3536,3535,1,0,0,0,3536,3537, - 1,0,0,0,3537,3538,1,0,0,0,3538,3540,3,212,106,0,3539,3533,1,0,0, - 0,3540,3543,1,0,0,0,3541,3539,1,0,0,0,3541,3542,1,0,0,0,3542,211, - 1,0,0,0,3543,3541,1,0,0,0,3544,3559,3,220,110,0,3545,3546,5,866, - 0,0,3546,3548,3,208,104,0,3547,3549,3,252,126,0,3548,3547,1,0,0, - 0,3548,3549,1,0,0,0,3549,3551,1,0,0,0,3550,3552,3,312,156,0,3551, - 3550,1,0,0,0,3551,3552,1,0,0,0,3552,3554,1,0,0,0,3553,3555,3,296, - 148,0,3554,3553,1,0,0,0,3554,3555,1,0,0,0,3555,3556,1,0,0,0,3556, - 3557,5,867,0,0,3557,3559,1,0,0,0,3558,3544,1,0,0,0,3558,3545,1,0, - 0,0,3559,213,1,0,0,0,3560,3563,3,248,124,0,3561,3563,3,250,125,0, - 3562,3560,1,0,0,0,3562,3561,1,0,0,0,3563,215,1,0,0,0,3564,3568,3, - 224,112,0,3565,3566,5,125,0,0,3566,3567,5,20,0,0,3567,3569,3,670, - 335,0,3568,3565,1,0,0,0,3568,3569,1,0,0,0,3569,3572,1,0,0,0,3570, - 3571,5,100,0,0,3571,3573,3,314,157,0,3572,3570,1,0,0,0,3572,3573, - 1,0,0,0,3573,217,1,0,0,0,3574,3579,3,220,110,0,3575,3576,7,49,0, - 0,3576,3578,3,220,110,0,3577,3575,1,0,0,0,3578,3581,1,0,0,0,3579, - 3577,1,0,0,0,3579,3580,1,0,0,0,3580,3583,1,0,0,0,3581,3579,1,0,0, - 0,3582,3584,3,252,126,0,3583,3582,1,0,0,0,3583,3584,1,0,0,0,3584, - 3586,1,0,0,0,3585,3587,3,312,156,0,3586,3585,1,0,0,0,3586,3587,1, - 0,0,0,3587,3589,1,0,0,0,3588,3590,3,296,148,0,3589,3588,1,0,0,0, - 3589,3590,1,0,0,0,3590,219,1,0,0,0,3591,3595,3,204,102,0,3592,3595, - 3,614,307,0,3593,3595,3,216,108,0,3594,3591,1,0,0,0,3594,3592,1, - 0,0,0,3594,3593,1,0,0,0,3595,221,1,0,0,0,3596,3602,3,204,102,0,3597, - 3598,5,173,0,0,3598,3602,3,648,324,0,3599,3602,3,738,369,0,3600, - 3602,3,224,112,0,3601,3596,1,0,0,0,3601,3597,1,0,0,0,3601,3599,1, - 0,0,0,3601,3600,1,0,0,0,3602,223,1,0,0,0,3603,3604,5,189,0,0,3604, - 3605,5,586,0,0,3605,3611,3,740,370,0,3606,3607,5,868,0,0,3607,3608, - 5,586,0,0,3608,3610,3,740,370,0,3609,3606,1,0,0,0,3610,3613,1,0, - 0,0,3611,3609,1,0,0,0,3611,3612,1,0,0,0,3612,225,1,0,0,0,3613,3611, - 1,0,0,0,3614,3615,5,155,0,0,3615,3620,3,228,114,0,3616,3617,5,868, - 0,0,3617,3619,3,228,114,0,3618,3616,1,0,0,0,3619,3622,1,0,0,0,3620, - 3618,1,0,0,0,3620,3621,1,0,0,0,3621,227,1,0,0,0,3622,3620,1,0,0, - 0,3623,3624,3,658,329,0,3624,3625,5,857,0,0,3625,3626,3,742,371, - 0,3626,229,1,0,0,0,3627,3630,3,702,351,0,3628,3630,5,892,0,0,3629, - 3627,1,0,0,0,3629,3628,1,0,0,0,3630,231,1,0,0,0,3631,3632,5,65,0, - 0,3632,3642,7,50,0,0,3633,3634,5,510,0,0,3634,3639,3,648,324,0,3635, - 3636,5,868,0,0,3636,3638,3,648,324,0,3637,3635,1,0,0,0,3638,3641, - 1,0,0,0,3639,3637,1,0,0,0,3639,3640,1,0,0,0,3640,3643,1,0,0,0,3641, - 3639,1,0,0,0,3642,3633,1,0,0,0,3642,3643,1,0,0,0,3643,3646,1,0,0, - 0,3644,3645,7,51,0,0,3645,3647,5,105,0,0,3646,3644,1,0,0,0,3646, - 3647,1,0,0,0,3647,3653,1,0,0,0,3648,3649,5,104,0,0,3649,3650,5,80, - 0,0,3650,3651,5,594,0,0,3651,3653,5,491,0,0,3652,3631,1,0,0,0,3652, - 3648,1,0,0,0,3653,233,1,0,0,0,3654,3656,5,44,0,0,3655,3657,5,107, - 0,0,3656,3655,1,0,0,0,3656,3657,1,0,0,0,3657,3659,1,0,0,0,3658,3660, - 5,549,0,0,3659,3658,1,0,0,0,3659,3660,1,0,0,0,3660,3662,1,0,0,0, - 3661,3663,5,79,0,0,3662,3661,1,0,0,0,3662,3663,1,0,0,0,3663,3664, - 1,0,0,0,3664,3665,5,68,0,0,3665,3670,3,648,324,0,3666,3668,5,13, - 0,0,3667,3666,1,0,0,0,3667,3668,1,0,0,0,3668,3669,1,0,0,0,3669,3671, - 3,702,351,0,3670,3667,1,0,0,0,3670,3671,1,0,0,0,3671,3677,1,0,0, - 0,3672,3673,5,130,0,0,3673,3674,5,866,0,0,3674,3675,3,666,333,0, - 3675,3676,5,867,0,0,3676,3678,1,0,0,0,3677,3672,1,0,0,0,3677,3678, - 1,0,0,0,3678,3681,1,0,0,0,3679,3680,5,192,0,0,3680,3682,3,800,400, - 0,3681,3679,1,0,0,0,3681,3682,1,0,0,0,3682,3684,1,0,0,0,3683,3685, - 3,252,126,0,3684,3683,1,0,0,0,3684,3685,1,0,0,0,3685,3688,1,0,0, - 0,3686,3687,5,100,0,0,3687,3689,3,314,157,0,3688,3686,1,0,0,0,3688, - 3689,1,0,0,0,3689,235,1,0,0,0,3690,3692,5,44,0,0,3691,3693,5,107, - 0,0,3692,3691,1,0,0,0,3692,3693,1,0,0,0,3693,3695,1,0,0,0,3694,3696, - 5,549,0,0,3695,3694,1,0,0,0,3695,3696,1,0,0,0,3696,3698,1,0,0,0, - 3697,3699,5,79,0,0,3698,3697,1,0,0,0,3698,3699,1,0,0,0,3699,3739, - 1,0,0,0,3700,3703,3,648,324,0,3701,3702,5,865,0,0,3702,3704,5,850, - 0,0,3703,3701,1,0,0,0,3703,3704,1,0,0,0,3704,3713,1,0,0,0,3705,3706, - 5,868,0,0,3706,3709,3,648,324,0,3707,3708,5,865,0,0,3708,3710,5, - 850,0,0,3709,3707,1,0,0,0,3709,3710,1,0,0,0,3710,3712,1,0,0,0,3711, - 3705,1,0,0,0,3712,3715,1,0,0,0,3713,3711,1,0,0,0,3713,3714,1,0,0, - 0,3714,3716,1,0,0,0,3715,3713,1,0,0,0,3716,3717,5,68,0,0,3717,3718, - 3,256,128,0,3718,3740,1,0,0,0,3719,3720,5,68,0,0,3720,3723,3,648, - 324,0,3721,3722,5,865,0,0,3722,3724,5,850,0,0,3723,3721,1,0,0,0, - 3723,3724,1,0,0,0,3724,3733,1,0,0,0,3725,3726,5,868,0,0,3726,3729, - 3,648,324,0,3727,3728,5,865,0,0,3728,3730,5,850,0,0,3729,3727,1, - 0,0,0,3729,3730,1,0,0,0,3730,3732,1,0,0,0,3731,3725,1,0,0,0,3732, - 3735,1,0,0,0,3733,3731,1,0,0,0,3733,3734,1,0,0,0,3734,3736,1,0,0, - 0,3735,3733,1,0,0,0,3736,3737,5,188,0,0,3737,3738,3,256,128,0,3738, - 3740,1,0,0,0,3739,3700,1,0,0,0,3739,3719,1,0,0,0,3740,3743,1,0,0, - 0,3741,3742,5,192,0,0,3742,3744,3,800,400,0,3743,3741,1,0,0,0,3743, - 3744,1,0,0,0,3744,237,1,0,0,0,3745,3746,5,417,0,0,3746,3747,3,648, - 324,0,3747,3752,5,516,0,0,3748,3750,5,13,0,0,3749,3748,1,0,0,0,3749, - 3750,1,0,0,0,3750,3751,1,0,0,0,3751,3753,3,702,351,0,3752,3749,1, - 0,0,0,3752,3753,1,0,0,0,3753,239,1,0,0,0,3754,3755,5,417,0,0,3755, - 3756,3,648,324,0,3756,3757,5,135,0,0,3757,3764,3,638,319,0,3758, - 3759,3,810,405,0,3759,3760,5,866,0,0,3760,3761,3,744,372,0,3761, - 3762,5,867,0,0,3762,3765,1,0,0,0,3763,3765,7,52,0,0,3764,3758,1, - 0,0,0,3764,3763,1,0,0,0,3765,3768,1,0,0,0,3766,3767,5,192,0,0,3767, - 3769,3,800,400,0,3768,3766,1,0,0,0,3768,3769,1,0,0,0,3769,3772,1, - 0,0,0,3770,3771,5,100,0,0,3771,3773,3,314,157,0,3772,3770,1,0,0, - 0,3772,3773,1,0,0,0,3773,241,1,0,0,0,3774,3775,5,417,0,0,3775,3776, - 3,648,324,0,3776,3777,5,135,0,0,3777,3780,7,53,0,0,3778,3779,5,192, - 0,0,3779,3781,3,800,400,0,3780,3778,1,0,0,0,3780,3781,1,0,0,0,3781, - 3784,1,0,0,0,3782,3783,5,100,0,0,3783,3785,3,314,157,0,3784,3782, - 1,0,0,0,3784,3785,1,0,0,0,3785,243,1,0,0,0,3786,3787,5,417,0,0,3787, - 3788,3,648,324,0,3788,3789,5,334,0,0,3789,245,1,0,0,0,3790,3791, - 5,425,0,0,3791,3792,5,173,0,0,3792,3793,5,68,0,0,3793,3798,3,712, - 356,0,3794,3795,5,868,0,0,3795,3797,3,712,356,0,3796,3794,1,0,0, - 0,3797,3800,1,0,0,0,3798,3796,1,0,0,0,3798,3799,1,0,0,0,3799,247, - 1,0,0,0,3800,3798,1,0,0,0,3801,3803,5,185,0,0,3802,3804,5,107,0, - 0,3803,3802,1,0,0,0,3803,3804,1,0,0,0,3804,3806,1,0,0,0,3805,3807, - 5,79,0,0,3806,3805,1,0,0,0,3806,3807,1,0,0,0,3807,3808,1,0,0,0,3808, - 3813,3,648,324,0,3809,3811,5,13,0,0,3810,3809,1,0,0,0,3810,3811, - 1,0,0,0,3811,3812,1,0,0,0,3812,3814,3,702,351,0,3813,3810,1,0,0, - 0,3813,3814,1,0,0,0,3814,3815,1,0,0,0,3815,3816,5,155,0,0,3816,3821, - 3,228,114,0,3817,3818,5,868,0,0,3818,3820,3,228,114,0,3819,3817, - 1,0,0,0,3820,3823,1,0,0,0,3821,3819,1,0,0,0,3821,3822,1,0,0,0,3822, - 3826,1,0,0,0,3823,3821,1,0,0,0,3824,3825,5,192,0,0,3825,3827,3,800, - 400,0,3826,3824,1,0,0,0,3826,3827,1,0,0,0,3827,3829,1,0,0,0,3828, - 3830,3,252,126,0,3829,3828,1,0,0,0,3829,3830,1,0,0,0,3830,3832,1, - 0,0,0,3831,3833,3,312,156,0,3832,3831,1,0,0,0,3832,3833,1,0,0,0, - 3833,249,1,0,0,0,3834,3836,5,185,0,0,3835,3837,5,107,0,0,3836,3835, - 1,0,0,0,3836,3837,1,0,0,0,3837,3839,1,0,0,0,3838,3840,5,79,0,0,3839, - 3838,1,0,0,0,3839,3840,1,0,0,0,3840,3841,1,0,0,0,3841,3842,3,256, - 128,0,3842,3843,5,155,0,0,3843,3848,3,228,114,0,3844,3845,5,868, - 0,0,3845,3847,3,228,114,0,3846,3844,1,0,0,0,3847,3850,1,0,0,0,3848, - 3846,1,0,0,0,3848,3849,1,0,0,0,3849,3853,1,0,0,0,3850,3848,1,0,0, - 0,3851,3852,5,192,0,0,3852,3854,3,800,400,0,3853,3851,1,0,0,0,3853, - 3854,1,0,0,0,3854,251,1,0,0,0,3855,3856,5,125,0,0,3856,3857,5,20, - 0,0,3857,3862,3,254,127,0,3858,3859,5,868,0,0,3859,3861,3,254,127, - 0,3860,3858,1,0,0,0,3861,3864,1,0,0,0,3862,3860,1,0,0,0,3862,3863, - 1,0,0,0,3863,253,1,0,0,0,3864,3862,1,0,0,0,3865,3867,3,800,400,0, - 3866,3868,7,54,0,0,3867,3866,1,0,0,0,3867,3868,1,0,0,0,3868,255, - 1,0,0,0,3869,3874,3,258,129,0,3870,3871,5,868,0,0,3871,3873,3,258, - 129,0,3872,3870,1,0,0,0,3873,3876,1,0,0,0,3874,3872,1,0,0,0,3874, - 3875,1,0,0,0,3875,257,1,0,0,0,3876,3874,1,0,0,0,3877,3881,3,260, - 130,0,3878,3880,3,268,134,0,3879,3878,1,0,0,0,3880,3883,1,0,0,0, - 3881,3879,1,0,0,0,3881,3882,1,0,0,0,3882,3896,1,0,0,0,3883,3881, - 1,0,0,0,3884,3885,5,866,0,0,3885,3889,3,260,130,0,3886,3888,3,268, - 134,0,3887,3886,1,0,0,0,3888,3891,1,0,0,0,3889,3887,1,0,0,0,3889, - 3890,1,0,0,0,3890,3892,1,0,0,0,3891,3889,1,0,0,0,3892,3893,5,867, - 0,0,3893,3896,1,0,0,0,3894,3896,3,280,140,0,3895,3877,1,0,0,0,3895, - 3884,1,0,0,0,3895,3894,1,0,0,0,3896,259,1,0,0,0,3897,3903,3,648, - 324,0,3898,3899,5,130,0,0,3899,3900,5,866,0,0,3900,3901,3,666,333, - 0,3901,3902,5,867,0,0,3902,3904,1,0,0,0,3903,3898,1,0,0,0,3903,3904, - 1,0,0,0,3904,3909,1,0,0,0,3905,3907,5,13,0,0,3906,3905,1,0,0,0,3906, - 3907,1,0,0,0,3907,3908,1,0,0,0,3908,3910,3,702,351,0,3909,3906,1, - 0,0,0,3909,3910,1,0,0,0,3910,3919,1,0,0,0,3911,3916,3,264,132,0, - 3912,3913,5,868,0,0,3913,3915,3,264,132,0,3914,3912,1,0,0,0,3915, - 3918,1,0,0,0,3916,3914,1,0,0,0,3916,3917,1,0,0,0,3917,3920,1,0,0, - 0,3918,3916,1,0,0,0,3919,3911,1,0,0,0,3919,3920,1,0,0,0,3920,3943, - 1,0,0,0,3921,3923,5,95,0,0,3922,3921,1,0,0,0,3922,3923,1,0,0,0,3923, - 3929,1,0,0,0,3924,3930,3,204,102,0,3925,3926,5,866,0,0,3926,3927, - 3,204,102,0,3927,3928,5,867,0,0,3928,3930,1,0,0,0,3929,3924,1,0, - 0,0,3929,3925,1,0,0,0,3930,3932,1,0,0,0,3931,3933,5,13,0,0,3932, - 3931,1,0,0,0,3932,3933,1,0,0,0,3933,3934,1,0,0,0,3934,3936,3,702, - 351,0,3935,3937,3,262,131,0,3936,3935,1,0,0,0,3936,3937,1,0,0,0, - 3937,3943,1,0,0,0,3938,3939,5,866,0,0,3939,3940,3,256,128,0,3940, - 3941,5,867,0,0,3941,3943,1,0,0,0,3942,3897,1,0,0,0,3942,3922,1,0, - 0,0,3942,3938,1,0,0,0,3943,261,1,0,0,0,3944,3945,5,866,0,0,3945, - 3946,3,656,328,0,3946,3947,5,867,0,0,3947,263,1,0,0,0,3948,3949, - 7,55,0,0,3949,3952,7,18,0,0,3950,3951,5,65,0,0,3951,3953,3,266,133, - 0,3952,3950,1,0,0,0,3952,3953,1,0,0,0,3953,3954,1,0,0,0,3954,3956, - 5,866,0,0,3955,3957,3,636,318,0,3956,3955,1,0,0,0,3956,3957,1,0, - 0,0,3957,3958,1,0,0,0,3958,3959,5,867,0,0,3959,265,1,0,0,0,3960, - 3966,5,91,0,0,3961,3962,5,125,0,0,3962,3966,5,20,0,0,3963,3964,5, - 74,0,0,3964,3966,5,20,0,0,3965,3960,1,0,0,0,3965,3961,1,0,0,0,3965, - 3963,1,0,0,0,3966,267,1,0,0,0,3967,3969,7,56,0,0,3968,3967,1,0,0, - 0,3968,3969,1,0,0,0,3969,3970,1,0,0,0,3970,3972,5,91,0,0,3971,3973, - 5,95,0,0,3972,3971,1,0,0,0,3972,3973,1,0,0,0,3973,3974,1,0,0,0,3974, - 3978,3,260,130,0,3975,3977,3,270,135,0,3976,3975,1,0,0,0,3977,3980, - 1,0,0,0,3978,3976,1,0,0,0,3978,3979,1,0,0,0,3979,4017,1,0,0,0,3980, - 3978,1,0,0,0,3981,3982,5,172,0,0,3982,3986,3,260,130,0,3983,3985, - 3,270,135,0,3984,3983,1,0,0,0,3985,3988,1,0,0,0,3986,3984,1,0,0, - 0,3986,3987,1,0,0,0,3987,4017,1,0,0,0,3988,3986,1,0,0,0,3989,3991, - 7,57,0,0,3990,3992,5,127,0,0,3991,3990,1,0,0,0,3991,3992,1,0,0,0, - 3992,3993,1,0,0,0,3993,3995,5,91,0,0,3994,3996,5,95,0,0,3995,3994, - 1,0,0,0,3995,3996,1,0,0,0,3996,3997,1,0,0,0,3997,4001,3,260,130, - 0,3998,4000,3,270,135,0,3999,3998,1,0,0,0,4000,4003,1,0,0,0,4001, - 3999,1,0,0,0,4001,4002,1,0,0,0,4002,4017,1,0,0,0,4003,4001,1,0,0, - 0,4004,4012,5,113,0,0,4005,4008,5,84,0,0,4006,4008,7,57,0,0,4007, - 4005,1,0,0,0,4007,4006,1,0,0,0,4008,4010,1,0,0,0,4009,4011,5,127, - 0,0,4010,4009,1,0,0,0,4010,4011,1,0,0,0,4011,4013,1,0,0,0,4012,4007, - 1,0,0,0,4012,4013,1,0,0,0,4013,4014,1,0,0,0,4014,4015,5,91,0,0,4015, - 4017,3,260,130,0,4016,3968,1,0,0,0,4016,3981,1,0,0,0,4016,3989,1, - 0,0,0,4016,4004,1,0,0,0,4017,269,1,0,0,0,4018,4019,5,119,0,0,4019, - 4026,3,800,400,0,4020,4021,5,188,0,0,4021,4022,5,866,0,0,4022,4023, - 3,656,328,0,4023,4024,5,867,0,0,4024,4026,1,0,0,0,4025,4018,1,0, - 0,0,4025,4020,1,0,0,0,4026,271,1,0,0,0,4027,4028,5,866,0,0,4028, - 4029,3,274,137,0,4029,4030,5,867,0,0,4030,4036,1,0,0,0,4031,4032, - 5,866,0,0,4032,4033,3,272,136,0,4033,4034,5,867,0,0,4034,4036,1, - 0,0,0,4035,4027,1,0,0,0,4035,4031,1,0,0,0,4036,273,1,0,0,0,4037, - 4041,5,154,0,0,4038,4040,3,290,145,0,4039,4038,1,0,0,0,4040,4043, - 1,0,0,0,4041,4039,1,0,0,0,4041,4042,1,0,0,0,4042,4044,1,0,0,0,4043, - 4041,1,0,0,0,4044,4046,3,292,146,0,4045,4047,3,296,148,0,4046,4045, - 1,0,0,0,4046,4047,1,0,0,0,4047,4048,1,0,0,0,4048,4050,3,302,151, - 0,4049,4051,3,304,152,0,4050,4049,1,0,0,0,4050,4051,1,0,0,0,4051, - 4053,1,0,0,0,4052,4054,3,306,153,0,4053,4052,1,0,0,0,4053,4054,1, - 0,0,0,4054,4056,1,0,0,0,4055,4057,3,308,154,0,4056,4055,1,0,0,0, - 4056,4057,1,0,0,0,4057,4059,1,0,0,0,4058,4060,3,252,126,0,4059,4058, - 1,0,0,0,4059,4060,1,0,0,0,4060,4062,1,0,0,0,4061,4063,3,312,156, - 0,4062,4061,1,0,0,0,4062,4063,1,0,0,0,4063,4065,1,0,0,0,4064,4066, - 3,296,148,0,4065,4064,1,0,0,0,4065,4066,1,0,0,0,4066,275,1,0,0,0, - 4067,4069,5,181,0,0,4068,4070,7,44,0,0,4069,4068,1,0,0,0,4069,4070, - 1,0,0,0,4070,4073,1,0,0,0,4071,4074,3,274,137,0,4072,4074,3,272, - 136,0,4073,4071,1,0,0,0,4073,4072,1,0,0,0,4074,277,1,0,0,0,4075, - 4090,5,95,0,0,4076,4091,3,274,137,0,4077,4091,3,272,136,0,4078,4081, - 5,866,0,0,4079,4082,3,274,137,0,4080,4082,3,272,136,0,4081,4079, - 1,0,0,0,4081,4080,1,0,0,0,4082,4083,1,0,0,0,4083,4088,5,867,0,0, - 4084,4086,5,13,0,0,4085,4084,1,0,0,0,4085,4086,1,0,0,0,4086,4087, - 1,0,0,0,4087,4089,3,702,351,0,4088,4085,1,0,0,0,4088,4089,1,0,0, - 0,4089,4091,1,0,0,0,4090,4076,1,0,0,0,4090,4077,1,0,0,0,4090,4078, - 1,0,0,0,4091,279,1,0,0,0,4092,4093,5,253,0,0,4093,4094,5,866,0,0, - 4094,4095,5,882,0,0,4095,4096,5,868,0,0,4096,4097,5,882,0,0,4097, - 4098,5,337,0,0,4098,4099,5,866,0,0,4099,4100,3,282,141,0,4100,4101, - 5,867,0,0,4101,4106,5,867,0,0,4102,4104,5,13,0,0,4103,4102,1,0,0, - 0,4103,4104,1,0,0,0,4104,4105,1,0,0,0,4105,4107,3,702,351,0,4106, - 4103,1,0,0,0,4106,4107,1,0,0,0,4107,281,1,0,0,0,4108,4113,3,284, - 142,0,4109,4110,5,868,0,0,4110,4112,3,284,142,0,4111,4109,1,0,0, - 0,4112,4115,1,0,0,0,4113,4111,1,0,0,0,4113,4114,1,0,0,0,4114,283, - 1,0,0,0,4115,4113,1,0,0,0,4116,4133,3,658,329,0,4117,4118,5,65,0, - 0,4118,4134,5,256,0,0,4119,4131,3,722,361,0,4120,4121,5,257,0,0, - 4121,4123,5,882,0,0,4122,4124,3,286,143,0,4123,4122,1,0,0,0,4123, - 4124,1,0,0,0,4124,4126,1,0,0,0,4125,4127,3,288,144,0,4126,4125,1, - 0,0,0,4126,4127,1,0,0,0,4127,4132,1,0,0,0,4128,4129,5,60,0,0,4129, - 4130,5,257,0,0,4130,4132,5,882,0,0,4131,4120,1,0,0,0,4131,4128,1, - 0,0,0,4132,4134,1,0,0,0,4133,4117,1,0,0,0,4133,4119,1,0,0,0,4134, - 4146,1,0,0,0,4135,4137,5,255,0,0,4136,4138,5,257,0,0,4137,4136,1, - 0,0,0,4137,4138,1,0,0,0,4138,4139,1,0,0,0,4139,4140,5,882,0,0,4140, - 4141,5,337,0,0,4141,4142,5,866,0,0,4142,4143,3,282,141,0,4143,4144, - 5,867,0,0,4144,4146,1,0,0,0,4145,4116,1,0,0,0,4145,4135,1,0,0,0, - 4146,285,1,0,0,0,4147,4152,5,116,0,0,4148,4152,5,382,0,0,4149,4150, - 5,42,0,0,4150,4152,3,750,375,0,4151,4147,1,0,0,0,4151,4148,1,0,0, - 0,4151,4149,1,0,0,0,4152,4153,1,0,0,0,4153,4154,5,119,0,0,4154,4155, - 5,55,0,0,4155,287,1,0,0,0,4156,4161,5,116,0,0,4157,4161,5,382,0, - 0,4158,4159,5,42,0,0,4159,4161,3,750,375,0,4160,4156,1,0,0,0,4160, - 4157,1,0,0,0,4160,4158,1,0,0,0,4161,4162,1,0,0,0,4162,4163,5,119, - 0,0,4163,4164,5,382,0,0,4164,289,1,0,0,0,4165,4174,7,58,0,0,4166, - 4174,5,76,0,0,4167,4174,5,172,0,0,4168,4174,5,168,0,0,4169,4174, - 5,166,0,0,4170,4174,5,636,0,0,4171,4174,7,59,0,0,4172,4174,5,167, - 0,0,4173,4165,1,0,0,0,4173,4166,1,0,0,0,4173,4167,1,0,0,0,4173,4168, - 1,0,0,0,4173,4169,1,0,0,0,4173,4170,1,0,0,0,4173,4171,1,0,0,0,4173, - 4172,1,0,0,0,4174,291,1,0,0,0,4175,4178,5,850,0,0,4176,4178,3,294, - 147,0,4177,4175,1,0,0,0,4177,4176,1,0,0,0,4178,4183,1,0,0,0,4179, - 4180,5,868,0,0,4180,4182,3,294,147,0,4181,4179,1,0,0,0,4182,4185, - 1,0,0,0,4183,4181,1,0,0,0,4183,4184,1,0,0,0,4184,293,1,0,0,0,4185, - 4183,1,0,0,0,4186,4187,5,892,0,0,4187,4189,5,841,0,0,4188,4186,1, - 0,0,0,4188,4189,1,0,0,0,4189,4190,1,0,0,0,4190,4195,3,800,400,0, - 4191,4193,5,13,0,0,4192,4191,1,0,0,0,4192,4193,1,0,0,0,4193,4194, - 1,0,0,0,4194,4196,3,702,351,0,4195,4192,1,0,0,0,4195,4196,1,0,0, - 0,4196,4216,1,0,0,0,4197,4202,3,760,380,0,4198,4200,5,13,0,0,4199, - 4198,1,0,0,0,4199,4200,1,0,0,0,4200,4201,1,0,0,0,4201,4203,3,702, - 351,0,4202,4199,1,0,0,0,4202,4203,1,0,0,0,4203,4216,1,0,0,0,4204, - 4205,3,698,349,0,4205,4206,5,865,0,0,4206,4207,5,850,0,0,4207,4216, - 1,0,0,0,4208,4213,3,658,329,0,4209,4211,5,13,0,0,4210,4209,1,0,0, - 0,4210,4211,1,0,0,0,4211,4212,1,0,0,0,4212,4214,3,702,351,0,4213, - 4210,1,0,0,0,4213,4214,1,0,0,0,4214,4216,1,0,0,0,4215,4188,1,0,0, - 0,4215,4197,1,0,0,0,4215,4204,1,0,0,0,4215,4208,1,0,0,0,4216,295, - 1,0,0,0,4217,4218,5,88,0,0,4218,4223,3,230,115,0,4219,4220,5,868, - 0,0,4220,4222,3,230,115,0,4221,4219,1,0,0,0,4222,4225,1,0,0,0,4223, - 4221,1,0,0,0,4223,4224,1,0,0,0,4224,4254,1,0,0,0,4225,4223,1,0,0, - 0,4226,4227,5,88,0,0,4227,4228,5,372,0,0,4228,4254,5,882,0,0,4229, - 4230,5,88,0,0,4230,4231,5,128,0,0,4231,4235,5,882,0,0,4232,4233, - 5,26,0,0,4233,4234,5,155,0,0,4234,4236,3,684,342,0,4235,4232,1,0, - 0,0,4235,4236,1,0,0,0,4236,4243,1,0,0,0,4237,4239,7,46,0,0,4238, - 4240,3,298,149,0,4239,4238,1,0,0,0,4240,4241,1,0,0,0,4241,4239,1, - 0,0,0,4241,4242,1,0,0,0,4242,4244,1,0,0,0,4243,4237,1,0,0,0,4243, - 4244,1,0,0,0,4244,4251,1,0,0,0,4245,4247,5,102,0,0,4246,4248,3,300, - 150,0,4247,4246,1,0,0,0,4248,4249,1,0,0,0,4249,4247,1,0,0,0,4249, - 4250,1,0,0,0,4250,4252,1,0,0,0,4251,4245,1,0,0,0,4251,4252,1,0,0, - 0,4252,4254,1,0,0,0,4253,4217,1,0,0,0,4253,4226,1,0,0,0,4253,4229, - 1,0,0,0,4254,297,1,0,0,0,4255,4256,5,174,0,0,4256,4257,5,20,0,0, - 4257,4268,5,882,0,0,4258,4260,5,123,0,0,4259,4258,1,0,0,0,4259,4260, - 1,0,0,0,4260,4261,1,0,0,0,4261,4262,5,56,0,0,4262,4263,5,20,0,0, - 4263,4268,5,882,0,0,4264,4265,5,58,0,0,4265,4266,5,20,0,0,4266,4268, - 5,882,0,0,4267,4255,1,0,0,0,4267,4259,1,0,0,0,4267,4264,1,0,0,0, - 4268,299,1,0,0,0,4269,4270,5,171,0,0,4270,4271,5,20,0,0,4271,4276, - 5,882,0,0,4272,4273,5,174,0,0,4273,4274,5,20,0,0,4274,4276,5,882, - 0,0,4275,4269,1,0,0,0,4275,4272,1,0,0,0,4276,301,1,0,0,0,4277,4278, - 5,68,0,0,4278,4280,3,256,128,0,4279,4277,1,0,0,0,4279,4280,1,0,0, - 0,4280,4283,1,0,0,0,4281,4282,5,192,0,0,4282,4284,3,800,400,0,4283, - 4281,1,0,0,0,4283,4284,1,0,0,0,4284,303,1,0,0,0,4285,4286,5,74,0, - 0,4286,4287,5,20,0,0,4287,4292,3,310,155,0,4288,4289,5,868,0,0,4289, - 4291,3,310,155,0,4290,4288,1,0,0,0,4291,4294,1,0,0,0,4292,4290,1, - 0,0,0,4292,4293,1,0,0,0,4293,4297,1,0,0,0,4294,4292,1,0,0,0,4295, - 4296,5,194,0,0,4296,4298,5,584,0,0,4297,4295,1,0,0,0,4297,4298,1, - 0,0,0,4298,305,1,0,0,0,4299,4300,5,75,0,0,4300,4301,3,800,400,0, - 4301,307,1,0,0,0,4302,4303,5,689,0,0,4303,4304,3,778,389,0,4304, - 4305,5,13,0,0,4305,4306,5,866,0,0,4306,4307,3,776,388,0,4307,4317, - 5,867,0,0,4308,4309,5,868,0,0,4309,4310,3,778,389,0,4310,4311,5, - 13,0,0,4311,4312,5,866,0,0,4312,4313,3,776,388,0,4313,4314,5,867, - 0,0,4314,4316,1,0,0,0,4315,4308,1,0,0,0,4316,4319,1,0,0,0,4317,4315, - 1,0,0,0,4317,4318,1,0,0,0,4318,309,1,0,0,0,4319,4317,1,0,0,0,4320, - 4322,3,800,400,0,4321,4323,7,54,0,0,4322,4321,1,0,0,0,4322,4323, - 1,0,0,0,4323,311,1,0,0,0,4324,4335,5,100,0,0,4325,4326,3,314,157, - 0,4326,4327,5,868,0,0,4327,4329,1,0,0,0,4328,4325,1,0,0,0,4328,4329, - 1,0,0,0,4329,4330,1,0,0,0,4330,4336,3,314,157,0,4331,4332,3,314, - 157,0,4332,4333,5,509,0,0,4333,4334,3,314,157,0,4334,4336,1,0,0, - 0,4335,4328,1,0,0,0,4335,4331,1,0,0,0,4336,313,1,0,0,0,4337,4341, - 3,708,354,0,4338,4341,3,682,341,0,4339,4341,3,704,352,0,4340,4337, - 1,0,0,0,4340,4338,1,0,0,0,4340,4339,1,0,0,0,4341,315,1,0,0,0,4342, - 4343,5,640,0,0,4343,4352,5,664,0,0,4344,4349,3,338,169,0,4345,4346, - 5,868,0,0,4346,4348,3,338,169,0,4347,4345,1,0,0,0,4348,4351,1,0, - 0,0,4349,4347,1,0,0,0,4349,4350,1,0,0,0,4350,4353,1,0,0,0,4351,4349, - 1,0,0,0,4352,4344,1,0,0,0,4352,4353,1,0,0,0,4353,317,1,0,0,0,4354, - 4356,5,317,0,0,4355,4357,5,691,0,0,4356,4355,1,0,0,0,4356,4357,1, - 0,0,0,4357,319,1,0,0,0,4358,4360,5,341,0,0,4359,4361,5,691,0,0,4360, - 4359,1,0,0,0,4360,4361,1,0,0,0,4361,4367,1,0,0,0,4362,4364,5,11, - 0,0,4363,4365,5,502,0,0,4364,4363,1,0,0,0,4364,4365,1,0,0,0,4365, - 4366,1,0,0,0,4366,4368,5,326,0,0,4367,4362,1,0,0,0,4367,4368,1,0, - 0,0,4368,4373,1,0,0,0,4369,4371,5,502,0,0,4370,4369,1,0,0,0,4370, - 4371,1,0,0,0,4371,4372,1,0,0,0,4372,4374,5,140,0,0,4373,4370,1,0, - 0,0,4373,4374,1,0,0,0,4374,321,1,0,0,0,4375,4377,5,583,0,0,4376, - 4378,5,691,0,0,4377,4376,1,0,0,0,4377,4378,1,0,0,0,4378,4384,1,0, - 0,0,4379,4381,5,11,0,0,4380,4382,5,502,0,0,4381,4380,1,0,0,0,4381, - 4382,1,0,0,0,4382,4383,1,0,0,0,4383,4385,5,326,0,0,4384,4379,1,0, - 0,0,4384,4385,1,0,0,0,4385,4390,1,0,0,0,4386,4388,5,502,0,0,4387, - 4386,1,0,0,0,4387,4388,1,0,0,0,4388,4389,1,0,0,0,4389,4391,5,140, - 0,0,4390,4387,1,0,0,0,4390,4391,1,0,0,0,4391,323,1,0,0,0,4392,4393, - 5,589,0,0,4393,4394,3,702,351,0,4394,325,1,0,0,0,4395,4397,5,583, - 0,0,4396,4398,5,691,0,0,4397,4396,1,0,0,0,4397,4398,1,0,0,0,4398, - 4399,1,0,0,0,4399,4401,5,176,0,0,4400,4402,5,589,0,0,4401,4400,1, - 0,0,0,4401,4402,1,0,0,0,4402,4403,1,0,0,0,4403,4404,3,702,351,0, - 4404,327,1,0,0,0,4405,4406,5,140,0,0,4406,4407,5,589,0,0,4407,4408, - 3,702,351,0,4408,329,1,0,0,0,4409,4410,5,104,0,0,4410,4411,7,60, - 0,0,4411,4416,3,340,170,0,4412,4413,5,868,0,0,4413,4415,3,340,170, - 0,4414,4412,1,0,0,0,4415,4418,1,0,0,0,4416,4414,1,0,0,0,4416,4417, - 1,0,0,0,4417,331,1,0,0,0,4418,4416,1,0,0,0,4419,4420,5,183,0,0,4420, - 4421,5,752,0,0,4421,333,1,0,0,0,4422,4423,5,155,0,0,4423,4424,5, - 313,0,0,4424,4425,5,857,0,0,4425,4426,7,25,0,0,4426,335,1,0,0,0, - 4427,4429,5,155,0,0,4428,4430,7,61,0,0,4429,4428,1,0,0,0,4429,4430, - 1,0,0,0,4430,4431,1,0,0,0,4431,4432,5,664,0,0,4432,4437,3,344,172, - 0,4433,4434,5,868,0,0,4434,4436,3,344,172,0,4435,4433,1,0,0,0,4436, - 4439,1,0,0,0,4437,4435,1,0,0,0,4437,4438,1,0,0,0,4438,337,1,0,0, - 0,4439,4437,1,0,0,0,4440,4441,5,194,0,0,4441,4442,5,350,0,0,4442, - 4448,5,600,0,0,4443,4444,5,135,0,0,4444,4448,5,195,0,0,4445,4446, - 5,135,0,0,4446,4448,5,515,0,0,4447,4440,1,0,0,0,4447,4443,1,0,0, - 0,4447,4445,1,0,0,0,4448,339,1,0,0,0,4449,4454,3,648,324,0,4450, - 4452,5,13,0,0,4451,4450,1,0,0,0,4451,4452,1,0,0,0,4452,4453,1,0, - 0,0,4453,4455,3,702,351,0,4454,4451,1,0,0,0,4454,4455,1,0,0,0,4455, - 4456,1,0,0,0,4456,4457,3,342,171,0,4457,341,1,0,0,0,4458,4460,5, - 135,0,0,4459,4461,5,450,0,0,4460,4459,1,0,0,0,4460,4461,1,0,0,0, - 4461,4467,1,0,0,0,4462,4464,5,107,0,0,4463,4462,1,0,0,0,4463,4464, - 1,0,0,0,4464,4465,1,0,0,0,4465,4467,5,195,0,0,4466,4458,1,0,0,0, - 4466,4463,1,0,0,0,4467,343,1,0,0,0,4468,4469,5,440,0,0,4469,4470, - 5,448,0,0,4470,4476,3,346,173,0,4471,4472,5,135,0,0,4472,4476,5, - 195,0,0,4473,4474,5,135,0,0,4474,4476,5,515,0,0,4475,4468,1,0,0, - 0,4475,4471,1,0,0,0,4475,4473,1,0,0,0,4476,345,1,0,0,0,4477,4478, - 5,809,0,0,4478,4485,5,135,0,0,4479,4480,5,135,0,0,4480,4485,5,810, - 0,0,4481,4482,5,135,0,0,4482,4485,5,811,0,0,4483,4485,5,812,0,0, - 4484,4477,1,0,0,0,4484,4479,1,0,0,0,4484,4481,1,0,0,0,4484,4483, - 1,0,0,0,4485,347,1,0,0,0,4486,4487,5,25,0,0,4487,4488,5,453,0,0, - 4488,4489,5,176,0,0,4489,4494,3,364,182,0,4490,4491,5,868,0,0,4491, - 4493,3,364,182,0,4492,4490,1,0,0,0,4493,4496,1,0,0,0,4494,4492,1, - 0,0,0,4494,4495,1,0,0,0,4495,4498,1,0,0,0,4496,4494,1,0,0,0,4497, - 4499,3,384,192,0,4498,4497,1,0,0,0,4498,4499,1,0,0,0,4499,349,1, - 0,0,0,4500,4501,5,25,0,0,4501,4502,5,572,0,0,4502,4503,5,400,0,0, - 4503,4508,3,386,193,0,4504,4505,5,868,0,0,4505,4507,3,386,193,0, - 4506,4504,1,0,0,0,4507,4510,1,0,0,0,4508,4506,1,0,0,0,4508,4509, - 1,0,0,0,4509,4512,1,0,0,0,4510,4508,1,0,0,0,4511,4513,3,384,192, - 0,4512,4511,1,0,0,0,4512,4513,1,0,0,0,4513,351,1,0,0,0,4514,4515, - 5,25,0,0,4515,4516,5,572,0,0,4516,4517,5,605,0,0,4517,4518,5,176, - 0,0,4518,4523,3,374,187,0,4519,4520,5,868,0,0,4520,4522,3,374,187, - 0,4521,4519,1,0,0,0,4522,4525,1,0,0,0,4523,4521,1,0,0,0,4523,4524, - 1,0,0,0,4524,4527,1,0,0,0,4525,4523,1,0,0,0,4526,4528,3,384,192, - 0,4527,4526,1,0,0,0,4527,4528,1,0,0,0,4528,353,1,0,0,0,4529,4530, - 5,133,0,0,4530,4531,7,62,0,0,4531,4536,5,452,0,0,4532,4533,5,176, - 0,0,4533,4537,5,882,0,0,4534,4535,5,16,0,0,4535,4537,5,882,0,0,4536, - 4532,1,0,0,0,4536,4534,1,0,0,0,4537,355,1,0,0,0,4538,4539,5,640, - 0,0,4539,4548,7,63,0,0,4540,4545,3,390,195,0,4541,4542,5,868,0,0, - 4542,4544,3,390,195,0,4543,4541,1,0,0,0,4544,4547,1,0,0,0,4545,4543, - 1,0,0,0,4545,4546,1,0,0,0,4546,4549,1,0,0,0,4547,4545,1,0,0,0,4548, - 4540,1,0,0,0,4548,4549,1,0,0,0,4549,4552,1,0,0,0,4550,4551,5,676, - 0,0,4551,4553,3,392,196,0,4552,4550,1,0,0,0,4552,4553,1,0,0,0,4553, - 4557,1,0,0,0,4554,4556,3,394,197,0,4555,4554,1,0,0,0,4556,4559,1, - 0,0,0,4557,4555,1,0,0,0,4557,4558,1,0,0,0,4558,4561,1,0,0,0,4559, - 4557,1,0,0,0,4560,4562,3,384,192,0,4561,4560,1,0,0,0,4561,4562,1, - 0,0,0,4562,357,1,0,0,0,4563,4564,5,646,0,0,4564,4573,7,63,0,0,4565, - 4570,3,390,195,0,4566,4567,5,868,0,0,4567,4569,3,390,195,0,4568, - 4566,1,0,0,0,4569,4572,1,0,0,0,4570,4568,1,0,0,0,4570,4571,1,0,0, - 0,4571,4574,1,0,0,0,4572,4570,1,0,0,0,4573,4565,1,0,0,0,4573,4574, - 1,0,0,0,4574,4576,1,0,0,0,4575,4577,3,384,192,0,4576,4575,1,0,0, - 0,4576,4577,1,0,0,0,4577,359,1,0,0,0,4578,4579,5,640,0,0,4579,4583, - 5,415,0,0,4580,4581,5,678,0,0,4581,4582,5,857,0,0,4582,4584,5,882, - 0,0,4583,4580,1,0,0,0,4583,4584,1,0,0,0,4584,4589,1,0,0,0,4585,4586, - 5,868,0,0,4586,4587,5,529,0,0,4587,4588,5,857,0,0,4588,4590,5,882, - 0,0,4589,4585,1,0,0,0,4589,4590,1,0,0,0,4590,4595,1,0,0,0,4591,4592, - 5,868,0,0,4592,4593,5,363,0,0,4593,4594,5,857,0,0,4594,4596,5,882, - 0,0,4595,4591,1,0,0,0,4595,4596,1,0,0,0,4596,361,1,0,0,0,4597,4598, - 5,646,0,0,4598,4599,5,415,0,0,4599,363,1,0,0,0,4600,4601,3,366,183, - 0,4601,4602,5,857,0,0,4602,4603,5,882,0,0,4603,4628,1,0,0,0,4604, - 4605,3,368,184,0,4605,4606,5,857,0,0,4606,4607,3,708,354,0,4607, - 4628,1,0,0,0,4608,4609,3,370,185,0,4609,4610,5,857,0,0,4610,4611, - 7,25,0,0,4611,4628,1,0,0,0,4612,4628,3,372,186,0,4613,4614,5,424, - 0,0,4614,4615,5,857,0,0,4615,4624,5,866,0,0,4616,4621,3,702,351, - 0,4617,4618,5,868,0,0,4618,4620,3,702,351,0,4619,4617,1,0,0,0,4620, - 4623,1,0,0,0,4621,4619,1,0,0,0,4621,4622,1,0,0,0,4622,4625,1,0,0, - 0,4623,4621,1,0,0,0,4624,4616,1,0,0,0,4624,4625,1,0,0,0,4625,4626, - 1,0,0,0,4626,4628,5,867,0,0,4627,4600,1,0,0,0,4627,4604,1,0,0,0, - 4627,4608,1,0,0,0,4627,4612,1,0,0,0,4627,4613,1,0,0,0,4628,365,1, - 0,0,0,4629,4630,7,64,0,0,4630,367,1,0,0,0,4631,4632,7,65,0,0,4632, - 369,1,0,0,0,4633,4634,7,66,0,0,4634,371,1,0,0,0,4635,4636,5,543, - 0,0,4636,4637,5,857,0,0,4637,4649,7,67,0,0,4638,4639,5,574,0,0,4639, - 4640,5,857,0,0,4640,4649,7,68,0,0,4641,4642,5,310,0,0,4642,4646, - 5,857,0,0,4643,4647,5,507,0,0,4644,4647,5,450,0,0,4645,4647,3,396, - 198,0,4646,4643,1,0,0,0,4646,4644,1,0,0,0,4646,4645,1,0,0,0,4647, - 4649,1,0,0,0,4648,4635,1,0,0,0,4648,4638,1,0,0,0,4648,4641,1,0,0, - 0,4649,373,1,0,0,0,4650,4651,3,376,188,0,4651,4652,5,857,0,0,4652, - 4653,5,882,0,0,4653,4678,1,0,0,0,4654,4655,3,378,189,0,4655,4656, - 5,857,0,0,4656,4657,3,708,354,0,4657,4678,1,0,0,0,4658,4659,3,380, - 190,0,4659,4660,5,857,0,0,4660,4661,7,25,0,0,4661,4678,1,0,0,0,4662, - 4678,3,382,191,0,4663,4664,5,424,0,0,4664,4665,5,857,0,0,4665,4674, - 5,866,0,0,4666,4671,3,702,351,0,4667,4668,5,868,0,0,4668,4670,3, - 702,351,0,4669,4667,1,0,0,0,4670,4673,1,0,0,0,4671,4669,1,0,0,0, - 4671,4672,1,0,0,0,4672,4675,1,0,0,0,4673,4671,1,0,0,0,4674,4666, - 1,0,0,0,4674,4675,1,0,0,0,4675,4676,1,0,0,0,4676,4678,5,867,0,0, - 4677,4650,1,0,0,0,4677,4654,1,0,0,0,4677,4658,1,0,0,0,4677,4662, - 1,0,0,0,4677,4663,1,0,0,0,4678,375,1,0,0,0,4679,4680,7,69,0,0,4680, - 377,1,0,0,0,4681,4682,7,70,0,0,4682,379,1,0,0,0,4683,4684,7,71,0, - 0,4684,381,1,0,0,0,4685,4686,5,543,0,0,4686,4687,5,857,0,0,4687, - 4699,7,67,0,0,4688,4689,5,574,0,0,4689,4690,5,857,0,0,4690,4699, - 7,72,0,0,4691,4692,5,310,0,0,4692,4696,5,857,0,0,4693,4697,5,507, - 0,0,4694,4697,5,450,0,0,4695,4697,3,396,198,0,4696,4693,1,0,0,0, - 4696,4694,1,0,0,0,4696,4695,1,0,0,0,4697,4699,1,0,0,0,4698,4685, - 1,0,0,0,4698,4688,1,0,0,0,4698,4691,1,0,0,0,4699,383,1,0,0,0,4700, - 4701,5,65,0,0,4701,4702,5,328,0,0,4702,4703,5,882,0,0,4703,385,1, - 0,0,0,4704,4705,5,565,0,0,4705,4706,5,857,0,0,4706,4707,5,866,0, - 0,4707,4712,3,624,312,0,4708,4709,5,868,0,0,4709,4711,3,624,312, - 0,4710,4708,1,0,0,0,4711,4714,1,0,0,0,4712,4710,1,0,0,0,4712,4713, - 1,0,0,0,4713,4715,1,0,0,0,4714,4712,1,0,0,0,4715,4716,5,867,0,0, - 4716,4768,1,0,0,0,4717,4718,5,567,0,0,4718,4719,5,857,0,0,4719,4720, - 5,866,0,0,4720,4725,3,624,312,0,4721,4722,5,868,0,0,4722,4724,3, - 624,312,0,4723,4721,1,0,0,0,4724,4727,1,0,0,0,4725,4723,1,0,0,0, - 4725,4726,1,0,0,0,4726,4728,1,0,0,0,4727,4725,1,0,0,0,4728,4729, - 5,867,0,0,4729,4768,1,0,0,0,4730,4731,5,566,0,0,4731,4732,5,857, - 0,0,4732,4733,5,866,0,0,4733,4734,3,646,323,0,4734,4735,5,867,0, - 0,4735,4768,1,0,0,0,4736,4737,5,568,0,0,4737,4738,5,857,0,0,4738, - 4739,5,866,0,0,4739,4740,3,646,323,0,4740,4741,5,867,0,0,4741,4768, - 1,0,0,0,4742,4743,5,570,0,0,4743,4744,5,857,0,0,4744,4745,5,866, - 0,0,4745,4746,3,746,373,0,4746,4747,5,867,0,0,4747,4768,1,0,0,0, - 4748,4749,5,571,0,0,4749,4750,5,857,0,0,4750,4751,5,866,0,0,4751, - 4752,3,746,373,0,4752,4753,5,867,0,0,4753,4768,1,0,0,0,4754,4755, - 5,569,0,0,4755,4756,5,857,0,0,4756,4757,5,866,0,0,4757,4762,3,388, - 194,0,4758,4759,5,868,0,0,4759,4761,3,388,194,0,4760,4758,1,0,0, - 0,4761,4764,1,0,0,0,4762,4760,1,0,0,0,4762,4763,1,0,0,0,4763,4765, - 1,0,0,0,4764,4762,1,0,0,0,4765,4766,5,867,0,0,4766,4768,1,0,0,0, - 4767,4704,1,0,0,0,4767,4717,1,0,0,0,4767,4730,1,0,0,0,4767,4736, - 1,0,0,0,4767,4742,1,0,0,0,4767,4748,1,0,0,0,4767,4754,1,0,0,0,4768, - 387,1,0,0,0,4769,4770,5,866,0,0,4770,4771,3,648,324,0,4771,4772, - 5,868,0,0,4772,4773,3,648,324,0,4773,4774,5,867,0,0,4774,389,1,0, - 0,0,4775,4776,7,73,0,0,4776,391,1,0,0,0,4777,4778,7,74,0,0,4778, - 4779,5,857,0,0,4779,4803,3,396,198,0,4780,4781,5,460,0,0,4781,4782, - 5,857,0,0,4782,4783,5,882,0,0,4783,4784,5,868,0,0,4784,4785,5,461, - 0,0,4785,4786,5,857,0,0,4786,4803,3,708,354,0,4787,4788,5,611,0, - 0,4788,4789,5,857,0,0,4789,4790,5,882,0,0,4790,4791,5,868,0,0,4791, - 4792,5,612,0,0,4792,4793,5,857,0,0,4793,4803,3,708,354,0,4794,4795, - 5,557,0,0,4795,4796,5,857,0,0,4796,4797,5,882,0,0,4797,4798,5,868, - 0,0,4798,4799,5,558,0,0,4799,4800,5,857,0,0,4800,4803,3,708,354, - 0,4801,4803,5,634,0,0,4802,4777,1,0,0,0,4802,4780,1,0,0,0,4802,4787, - 1,0,0,0,4802,4794,1,0,0,0,4802,4801,1,0,0,0,4803,393,1,0,0,0,4804, - 4805,5,678,0,0,4805,4806,5,857,0,0,4806,4817,5,882,0,0,4807,4808, - 5,529,0,0,4808,4809,5,857,0,0,4809,4817,5,882,0,0,4810,4811,5,363, - 0,0,4811,4812,5,857,0,0,4812,4817,5,882,0,0,4813,4814,5,535,0,0, - 4814,4815,5,857,0,0,4815,4817,5,882,0,0,4816,4804,1,0,0,0,4816,4807, - 1,0,0,0,4816,4810,1,0,0,0,4816,4813,1,0,0,0,4817,395,1,0,0,0,4818, - 4823,3,692,346,0,4819,4820,5,868,0,0,4820,4822,3,692,346,0,4821, - 4819,1,0,0,0,4822,4825,1,0,0,0,4823,4821,1,0,0,0,4823,4824,1,0,0, - 0,4824,4828,1,0,0,0,4825,4823,1,0,0,0,4826,4828,5,882,0,0,4827,4818, - 1,0,0,0,4827,4826,1,0,0,0,4828,397,1,0,0,0,4829,4830,5,694,0,0,4830, - 4831,7,75,0,0,4831,4833,3,694,347,0,4832,4834,7,76,0,0,4833,4832, - 1,0,0,0,4833,4834,1,0,0,0,4834,399,1,0,0,0,4835,4836,5,694,0,0,4836, - 4837,5,378,0,0,4837,4843,3,694,347,0,4838,4841,5,654,0,0,4839,4840, - 5,65,0,0,4840,4842,5,489,0,0,4841,4839,1,0,0,0,4841,4842,1,0,0,0, - 4842,4844,1,0,0,0,4843,4838,1,0,0,0,4843,4844,1,0,0,0,4844,401,1, - 0,0,0,4845,4846,5,694,0,0,4846,4847,5,540,0,0,4847,4848,3,694,347, - 0,4848,403,1,0,0,0,4849,4850,5,694,0,0,4850,4851,5,341,0,0,4851, - 4854,3,694,347,0,4852,4853,5,513,0,0,4853,4855,5,533,0,0,4854,4852, - 1,0,0,0,4854,4855,1,0,0,0,4855,405,1,0,0,0,4856,4857,5,694,0,0,4857, - 4858,5,583,0,0,4858,4859,3,694,347,0,4859,407,1,0,0,0,4860,4861, - 5,694,0,0,4861,4864,5,551,0,0,4862,4863,5,33,0,0,4863,4865,3,694, - 347,0,4864,4862,1,0,0,0,4864,4865,1,0,0,0,4865,409,1,0,0,0,4866, - 4867,5,540,0,0,4867,4868,3,702,351,0,4868,4871,5,68,0,0,4869,4872, - 5,882,0,0,4870,4872,5,892,0,0,4871,4869,1,0,0,0,4871,4870,1,0,0, - 0,4872,411,1,0,0,0,4873,4874,5,717,0,0,4874,4877,3,702,351,0,4875, - 4876,5,188,0,0,4876,4878,3,748,374,0,4877,4875,1,0,0,0,4877,4878, - 1,0,0,0,4878,413,1,0,0,0,4879,4880,7,77,0,0,4880,4881,5,540,0,0, - 4881,4882,3,702,351,0,4882,415,1,0,0,0,4883,4886,3,418,209,0,4884, - 4886,3,4,2,0,4885,4883,1,0,0,0,4885,4884,1,0,0,0,4886,417,1,0,0, - 0,4887,4888,3,702,351,0,4888,4889,5,878,0,0,4889,4891,1,0,0,0,4890, - 4887,1,0,0,0,4890,4891,1,0,0,0,4891,4892,1,0,0,0,4892,4898,5,317, - 0,0,4893,4894,3,438,219,0,4894,4895,5,869,0,0,4895,4897,1,0,0,0, - 4896,4893,1,0,0,0,4897,4900,1,0,0,0,4898,4896,1,0,0,0,4898,4899, - 1,0,0,0,4899,4906,1,0,0,0,4900,4898,1,0,0,0,4901,4902,3,440,220, - 0,4902,4903,5,869,0,0,4903,4905,1,0,0,0,4904,4901,1,0,0,0,4905,4908, - 1,0,0,0,4906,4904,1,0,0,0,4906,4907,1,0,0,0,4907,4914,1,0,0,0,4908, - 4906,1,0,0,0,4909,4910,3,442,221,0,4910,4911,5,869,0,0,4911,4913, - 1,0,0,0,4912,4909,1,0,0,0,4913,4916,1,0,0,0,4914,4912,1,0,0,0,4914, - 4915,1,0,0,0,4915,4922,1,0,0,0,4916,4914,1,0,0,0,4917,4918,3,444, - 222,0,4918,4919,5,869,0,0,4919,4921,1,0,0,0,4920,4917,1,0,0,0,4921, - 4924,1,0,0,0,4922,4920,1,0,0,0,4922,4923,1,0,0,0,4923,4928,1,0,0, - 0,4924,4922,1,0,0,0,4925,4927,3,448,224,0,4926,4925,1,0,0,0,4927, - 4930,1,0,0,0,4928,4926,1,0,0,0,4928,4929,1,0,0,0,4929,4931,1,0,0, - 0,4930,4928,1,0,0,0,4931,4933,5,378,0,0,4932,4934,3,702,351,0,4933, - 4932,1,0,0,0,4933,4934,1,0,0,0,4934,419,1,0,0,0,4935,4938,5,23,0, - 0,4936,4939,3,702,351,0,4937,4939,3,800,400,0,4938,4936,1,0,0,0, - 4938,4937,1,0,0,0,4938,4939,1,0,0,0,4939,4941,1,0,0,0,4940,4942, - 3,450,225,0,4941,4940,1,0,0,0,4942,4943,1,0,0,0,4943,4941,1,0,0, - 0,4943,4944,1,0,0,0,4944,4951,1,0,0,0,4945,4947,5,53,0,0,4946,4948, - 3,448,224,0,4947,4946,1,0,0,0,4948,4949,1,0,0,0,4949,4947,1,0,0, - 0,4949,4950,1,0,0,0,4950,4952,1,0,0,0,4951,4945,1,0,0,0,4951,4952, - 1,0,0,0,4952,4953,1,0,0,0,4953,4954,5,378,0,0,4954,4955,5,23,0,0, - 4955,421,1,0,0,0,4956,4957,5,78,0,0,4957,4958,3,800,400,0,4958,4960, - 5,175,0,0,4959,4961,3,448,224,0,4960,4959,1,0,0,0,4961,4962,1,0, - 0,0,4962,4960,1,0,0,0,4962,4963,1,0,0,0,4963,4967,1,0,0,0,4964,4966, - 3,452,226,0,4965,4964,1,0,0,0,4966,4969,1,0,0,0,4967,4965,1,0,0, - 0,4967,4968,1,0,0,0,4968,4976,1,0,0,0,4969,4967,1,0,0,0,4970,4972, - 5,53,0,0,4971,4973,3,448,224,0,4972,4971,1,0,0,0,4973,4974,1,0,0, - 0,4974,4972,1,0,0,0,4974,4975,1,0,0,0,4975,4977,1,0,0,0,4976,4970, - 1,0,0,0,4976,4977,1,0,0,0,4977,4978,1,0,0,0,4978,4979,5,378,0,0, - 4979,4980,5,78,0,0,4980,423,1,0,0,0,4981,4982,5,90,0,0,4982,4983, - 3,702,351,0,4983,425,1,0,0,0,4984,4985,5,97,0,0,4985,4986,3,702, - 351,0,4986,427,1,0,0,0,4987,4988,3,702,351,0,4988,4989,5,878,0,0, - 4989,4991,1,0,0,0,4990,4987,1,0,0,0,4990,4991,1,0,0,0,4991,4992, - 1,0,0,0,4992,4994,5,106,0,0,4993,4995,3,448,224,0,4994,4993,1,0, - 0,0,4995,4996,1,0,0,0,4996,4994,1,0,0,0,4996,4997,1,0,0,0,4997,4998, - 1,0,0,0,4998,4999,5,378,0,0,4999,5001,5,106,0,0,5000,5002,3,702, - 351,0,5001,5000,1,0,0,0,5001,5002,1,0,0,0,5002,429,1,0,0,0,5003, - 5004,3,702,351,0,5004,5005,5,878,0,0,5005,5007,1,0,0,0,5006,5003, - 1,0,0,0,5006,5007,1,0,0,0,5007,5008,1,0,0,0,5008,5010,5,142,0,0, - 5009,5011,3,448,224,0,5010,5009,1,0,0,0,5011,5012,1,0,0,0,5012,5010, - 1,0,0,0,5012,5013,1,0,0,0,5013,5014,1,0,0,0,5014,5015,5,676,0,0, - 5015,5016,3,800,400,0,5016,5017,5,378,0,0,5017,5019,5,142,0,0,5018, - 5020,3,702,351,0,5019,5018,1,0,0,0,5019,5020,1,0,0,0,5020,431,1, - 0,0,0,5021,5022,5,148,0,0,5022,5023,3,800,400,0,5023,433,1,0,0,0, - 5024,5025,3,702,351,0,5025,5026,5,878,0,0,5026,5028,1,0,0,0,5027, - 5024,1,0,0,0,5027,5028,1,0,0,0,5028,5029,1,0,0,0,5029,5030,5,193, - 0,0,5030,5031,3,800,400,0,5031,5033,5,371,0,0,5032,5034,3,448,224, - 0,5033,5032,1,0,0,0,5034,5035,1,0,0,0,5035,5033,1,0,0,0,5035,5036, - 1,0,0,0,5036,5037,1,0,0,0,5037,5038,5,378,0,0,5038,5040,5,193,0, - 0,5039,5041,3,702,351,0,5040,5039,1,0,0,0,5040,5041,1,0,0,0,5041, - 435,1,0,0,0,5042,5043,5,334,0,0,5043,5058,3,702,351,0,5044,5049, - 5,64,0,0,5045,5047,5,501,0,0,5046,5045,1,0,0,0,5046,5047,1,0,0,0, - 5047,5048,1,0,0,0,5048,5050,5,68,0,0,5049,5046,1,0,0,0,5049,5050, - 1,0,0,0,5050,5051,1,0,0,0,5051,5052,3,702,351,0,5052,5053,5,88,0, - 0,5053,5054,3,700,350,0,5054,5058,1,0,0,0,5055,5056,5,516,0,0,5056, - 5058,3,702,351,0,5057,5042,1,0,0,0,5057,5044,1,0,0,0,5057,5055,1, - 0,0,0,5058,437,1,0,0,0,5059,5060,5,41,0,0,5060,5061,3,700,350,0, - 5061,5064,3,722,361,0,5062,5063,5,42,0,0,5063,5065,3,800,400,0,5064, - 5062,1,0,0,0,5064,5065,1,0,0,0,5065,439,1,0,0,0,5066,5067,5,41,0, - 0,5067,5068,3,702,351,0,5068,5069,5,30,0,0,5069,5076,5,65,0,0,5070, - 5077,3,708,354,0,5071,5073,5,164,0,0,5072,5074,5,682,0,0,5073,5072, - 1,0,0,0,5073,5074,1,0,0,0,5074,5075,1,0,0,0,5075,5077,5,882,0,0, - 5076,5070,1,0,0,0,5076,5071,1,0,0,0,5077,441,1,0,0,0,5078,5079,5, - 41,0,0,5079,5080,3,702,351,0,5080,5081,5,38,0,0,5081,5082,5,65,0, - 0,5082,5083,3,204,102,0,5083,443,1,0,0,0,5084,5085,5,41,0,0,5085, - 5086,7,78,0,0,5086,5087,5,417,0,0,5087,5088,5,65,0,0,5088,5093,3, - 446,223,0,5089,5090,5,868,0,0,5090,5092,3,446,223,0,5091,5089,1, - 0,0,0,5092,5095,1,0,0,0,5093,5091,1,0,0,0,5093,5094,1,0,0,0,5094, - 5096,1,0,0,0,5095,5093,1,0,0,0,5096,5097,3,416,208,0,5097,445,1, - 0,0,0,5098,5110,3,708,354,0,5099,5101,5,164,0,0,5100,5102,5,682, - 0,0,5101,5100,1,0,0,0,5101,5102,1,0,0,0,5102,5103,1,0,0,0,5103,5110, - 5,882,0,0,5104,5110,3,702,351,0,5105,5110,5,165,0,0,5106,5107,5, - 114,0,0,5107,5110,5,407,0,0,5108,5110,5,163,0,0,5109,5098,1,0,0, - 0,5109,5099,1,0,0,0,5109,5104,1,0,0,0,5109,5105,1,0,0,0,5109,5106, - 1,0,0,0,5109,5108,1,0,0,0,5110,447,1,0,0,0,5111,5114,3,18,9,0,5112, - 5114,3,4,2,0,5113,5111,1,0,0,0,5113,5112,1,0,0,0,5114,5115,1,0,0, - 0,5115,5116,5,869,0,0,5116,449,1,0,0,0,5117,5120,5,191,0,0,5118, - 5121,3,720,360,0,5119,5121,3,800,400,0,5120,5118,1,0,0,0,5120,5119, - 1,0,0,0,5121,5122,1,0,0,0,5122,5124,5,175,0,0,5123,5125,3,448,224, - 0,5124,5123,1,0,0,0,5125,5126,1,0,0,0,5126,5124,1,0,0,0,5126,5127, - 1,0,0,0,5127,451,1,0,0,0,5128,5129,5,54,0,0,5129,5130,3,800,400, - 0,5130,5132,5,175,0,0,5131,5133,3,448,224,0,5132,5131,1,0,0,0,5133, - 5134,1,0,0,0,5134,5132,1,0,0,0,5134,5135,1,0,0,0,5135,453,1,0,0, - 0,5136,5137,5,8,0,0,5137,5139,5,678,0,0,5138,5140,3,754,377,0,5139, - 5138,1,0,0,0,5139,5140,1,0,0,0,5140,5197,1,0,0,0,5141,5146,3,486, - 243,0,5142,5143,5,868,0,0,5143,5145,3,486,243,0,5144,5142,1,0,0, - 0,5145,5148,1,0,0,0,5146,5144,1,0,0,0,5146,5147,1,0,0,0,5147,5198, - 1,0,0,0,5148,5146,1,0,0,0,5149,5154,3,488,244,0,5150,5151,5,868, - 0,0,5151,5153,3,488,244,0,5152,5150,1,0,0,0,5153,5156,1,0,0,0,5154, - 5152,1,0,0,0,5154,5155,1,0,0,0,5155,5171,1,0,0,0,5156,5154,1,0,0, - 0,5157,5169,5,144,0,0,5158,5170,5,505,0,0,5159,5166,3,500,250,0, - 5160,5162,5,11,0,0,5161,5160,1,0,0,0,5161,5162,1,0,0,0,5162,5163, - 1,0,0,0,5163,5165,3,500,250,0,5164,5161,1,0,0,0,5165,5168,1,0,0, - 0,5166,5164,1,0,0,0,5166,5167,1,0,0,0,5167,5170,1,0,0,0,5168,5166, - 1,0,0,0,5169,5158,1,0,0,0,5169,5159,1,0,0,0,5170,5172,1,0,0,0,5171, - 5157,1,0,0,0,5171,5172,1,0,0,0,5172,5179,1,0,0,0,5173,5175,5,194, - 0,0,5174,5176,3,502,251,0,5175,5174,1,0,0,0,5176,5177,1,0,0,0,5177, - 5175,1,0,0,0,5177,5178,1,0,0,0,5178,5180,1,0,0,0,5179,5173,1,0,0, - 0,5179,5180,1,0,0,0,5180,5185,1,0,0,0,5181,5184,3,504,252,0,5182, - 5184,3,506,253,0,5183,5181,1,0,0,0,5183,5182,1,0,0,0,5184,5187,1, - 0,0,0,5185,5183,1,0,0,0,5185,5186,1,0,0,0,5186,5190,1,0,0,0,5187, - 5185,1,0,0,0,5188,5189,7,79,0,0,5189,5191,5,882,0,0,5190,5188,1, - 0,0,0,5190,5191,1,0,0,0,5191,5198,1,0,0,0,5192,5193,3,652,326,0, - 5193,5194,5,42,0,0,5194,5195,5,582,0,0,5195,5196,3,462,231,0,5196, - 5198,1,0,0,0,5197,5141,1,0,0,0,5197,5149,1,0,0,0,5197,5192,1,0,0, - 0,5198,455,1,0,0,0,5199,5200,5,34,0,0,5200,5202,5,678,0,0,5201,5203, - 3,756,378,0,5202,5201,1,0,0,0,5202,5203,1,0,0,0,5203,5204,1,0,0, - 0,5204,5206,3,680,340,0,5205,5207,3,490,245,0,5206,5205,1,0,0,0, - 5206,5207,1,0,0,0,5207,5215,1,0,0,0,5208,5209,5,868,0,0,5209,5211, - 3,680,340,0,5210,5212,3,490,245,0,5211,5210,1,0,0,0,5211,5212,1, - 0,0,0,5212,5214,1,0,0,0,5213,5208,1,0,0,0,5214,5217,1,0,0,0,5215, - 5213,1,0,0,0,5215,5216,1,0,0,0,5216,5221,1,0,0,0,5217,5215,1,0,0, - 0,5218,5219,5,42,0,0,5219,5220,5,582,0,0,5220,5222,3,462,231,0,5221, - 5218,1,0,0,0,5221,5222,1,0,0,0,5222,5237,1,0,0,0,5223,5235,5,144, - 0,0,5224,5236,5,505,0,0,5225,5232,3,500,250,0,5226,5228,5,11,0,0, - 5227,5226,1,0,0,0,5227,5228,1,0,0,0,5228,5229,1,0,0,0,5229,5231, - 3,500,250,0,5230,5227,1,0,0,0,5231,5234,1,0,0,0,5232,5230,1,0,0, - 0,5232,5233,1,0,0,0,5233,5236,1,0,0,0,5234,5232,1,0,0,0,5235,5224, - 1,0,0,0,5235,5225,1,0,0,0,5236,5238,1,0,0,0,5237,5223,1,0,0,0,5237, - 5238,1,0,0,0,5238,5245,1,0,0,0,5239,5241,5,194,0,0,5240,5242,3,502, - 251,0,5241,5240,1,0,0,0,5242,5243,1,0,0,0,5243,5241,1,0,0,0,5243, - 5244,1,0,0,0,5244,5246,1,0,0,0,5245,5239,1,0,0,0,5245,5246,1,0,0, - 0,5246,5251,1,0,0,0,5247,5250,3,504,252,0,5248,5250,3,506,253,0, - 5249,5247,1,0,0,0,5249,5248,1,0,0,0,5250,5253,1,0,0,0,5251,5249, - 1,0,0,0,5251,5252,1,0,0,0,5252,5256,1,0,0,0,5253,5251,1,0,0,0,5254, - 5255,7,79,0,0,5255,5257,5,882,0,0,5256,5254,1,0,0,0,5256,5257,1, - 0,0,0,5257,457,1,0,0,0,5258,5259,5,51,0,0,5259,5261,5,678,0,0,5260, - 5262,3,754,377,0,5261,5260,1,0,0,0,5261,5262,1,0,0,0,5262,5263,1, - 0,0,0,5263,5268,3,680,340,0,5264,5265,5,868,0,0,5265,5267,3,680, - 340,0,5266,5264,1,0,0,0,5267,5270,1,0,0,0,5268,5266,1,0,0,0,5268, - 5269,1,0,0,0,5269,459,1,0,0,0,5270,5268,1,0,0,0,5271,5272,5,73,0, - 0,5272,5277,3,514,257,0,5273,5274,5,868,0,0,5274,5276,3,514,257, - 0,5275,5273,1,0,0,0,5276,5279,1,0,0,0,5277,5275,1,0,0,0,5277,5278, - 1,0,0,0,5278,5280,1,0,0,0,5279,5277,1,0,0,0,5280,5282,5,119,0,0, - 5281,5283,3,482,241,0,5282,5281,1,0,0,0,5282,5283,1,0,0,0,5283,5284, - 1,0,0,0,5284,5285,3,518,259,0,5285,5295,5,176,0,0,5286,5291,3,494, - 247,0,5287,5288,5,868,0,0,5288,5290,3,494,247,0,5289,5287,1,0,0, - 0,5290,5293,1,0,0,0,5291,5289,1,0,0,0,5291,5292,1,0,0,0,5292,5296, - 1,0,0,0,5293,5291,1,0,0,0,5294,5296,3,650,325,0,5295,5286,1,0,0, - 0,5295,5294,1,0,0,0,5296,5311,1,0,0,0,5297,5309,5,144,0,0,5298,5310, - 5,505,0,0,5299,5306,3,500,250,0,5300,5302,5,11,0,0,5301,5300,1,0, - 0,0,5301,5302,1,0,0,0,5302,5303,1,0,0,0,5303,5305,3,500,250,0,5304, - 5301,1,0,0,0,5305,5308,1,0,0,0,5306,5304,1,0,0,0,5306,5307,1,0,0, - 0,5307,5310,1,0,0,0,5308,5306,1,0,0,0,5309,5298,1,0,0,0,5309,5299, - 1,0,0,0,5310,5312,1,0,0,0,5311,5297,1,0,0,0,5311,5312,1,0,0,0,5312, - 5322,1,0,0,0,5313,5319,5,194,0,0,5314,5315,5,73,0,0,5315,5318,5, - 121,0,0,5316,5318,3,502,251,0,5317,5314,1,0,0,0,5317,5316,1,0,0, - 0,5318,5321,1,0,0,0,5319,5317,1,0,0,0,5319,5320,1,0,0,0,5320,5323, - 1,0,0,0,5321,5319,1,0,0,0,5322,5313,1,0,0,0,5322,5323,1,0,0,0,5323, - 5331,1,0,0,0,5324,5325,5,13,0,0,5325,5329,3,680,340,0,5326,5327, - 5,194,0,0,5327,5328,5,582,0,0,5328,5330,3,462,231,0,5329,5326,1, - 0,0,0,5329,5330,1,0,0,0,5330,5332,1,0,0,0,5331,5324,1,0,0,0,5331, - 5332,1,0,0,0,5332,5361,1,0,0,0,5333,5336,5,73,0,0,5334,5335,5,547, - 0,0,5335,5337,5,119,0,0,5336,5334,1,0,0,0,5336,5337,1,0,0,0,5337, - 5338,1,0,0,0,5338,5343,3,652,326,0,5339,5340,5,868,0,0,5340,5342, - 3,652,326,0,5341,5339,1,0,0,0,5342,5345,1,0,0,0,5343,5341,1,0,0, - 0,5343,5344,1,0,0,0,5344,5346,1,0,0,0,5345,5343,1,0,0,0,5346,5347, - 5,176,0,0,5347,5352,3,652,326,0,5348,5349,5,868,0,0,5349,5351,3, - 652,326,0,5350,5348,1,0,0,0,5351,5354,1,0,0,0,5352,5350,1,0,0,0, - 5352,5353,1,0,0,0,5353,5358,1,0,0,0,5354,5352,1,0,0,0,5355,5356, - 5,194,0,0,5356,5357,5,704,0,0,5357,5359,5,121,0,0,5358,5355,1,0, - 0,0,5358,5359,1,0,0,0,5359,5361,1,0,0,0,5360,5271,1,0,0,0,5360,5333, - 1,0,0,0,5361,461,1,0,0,0,5362,5371,5,42,0,0,5363,5371,5,505,0,0, - 5364,5367,5,7,0,0,5365,5366,5,59,0,0,5366,5368,3,650,325,0,5367, - 5365,1,0,0,0,5367,5368,1,0,0,0,5368,5371,1,0,0,0,5369,5371,3,650, - 325,0,5370,5362,1,0,0,0,5370,5363,1,0,0,0,5370,5364,1,0,0,0,5370, - 5369,1,0,0,0,5371,463,1,0,0,0,5372,5373,5,73,0,0,5373,5374,5,547, - 0,0,5374,5375,5,119,0,0,5375,5376,3,680,340,0,5376,5377,5,176,0, - 0,5377,5382,3,680,340,0,5378,5379,5,868,0,0,5379,5381,3,680,340, - 0,5380,5378,1,0,0,0,5381,5384,1,0,0,0,5382,5380,1,0,0,0,5382,5383, - 1,0,0,0,5383,5388,1,0,0,0,5384,5382,1,0,0,0,5385,5386,5,194,0,0, - 5386,5387,5,73,0,0,5387,5389,5,121,0,0,5388,5385,1,0,0,0,5388,5389, - 1,0,0,0,5389,465,1,0,0,0,5390,5391,5,8,0,0,5391,5392,5,739,0,0,5392, - 5393,5,74,0,0,5393,5399,3,642,321,0,5394,5396,5,190,0,0,5395,5397, - 5,857,0,0,5396,5395,1,0,0,0,5396,5397,1,0,0,0,5397,5398,1,0,0,0, - 5398,5400,3,474,237,0,5399,5394,1,0,0,0,5399,5400,1,0,0,0,5400,5406, - 1,0,0,0,5401,5403,5,837,0,0,5402,5404,5,857,0,0,5403,5402,1,0,0, - 0,5403,5404,1,0,0,0,5404,5405,1,0,0,0,5405,5407,3,708,354,0,5406, - 5401,1,0,0,0,5406,5407,1,0,0,0,5407,5412,1,0,0,0,5408,5410,7,38, - 0,0,5409,5411,5,66,0,0,5410,5409,1,0,0,0,5410,5411,1,0,0,0,5411, - 5413,1,0,0,0,5412,5408,1,0,0,0,5412,5413,1,0,0,0,5413,467,1,0,0, - 0,5414,5415,5,34,0,0,5415,5416,5,739,0,0,5416,5417,5,74,0,0,5417, - 5418,3,640,320,0,5418,5419,5,839,0,0,5419,5420,5,857,0,0,5420,5426, - 7,80,0,0,5421,5423,5,190,0,0,5422,5424,5,857,0,0,5423,5422,1,0,0, - 0,5423,5424,1,0,0,0,5424,5425,1,0,0,0,5425,5427,3,474,237,0,5426, - 5421,1,0,0,0,5426,5427,1,0,0,0,5427,5433,1,0,0,0,5428,5430,5,837, - 0,0,5429,5431,5,857,0,0,5430,5429,1,0,0,0,5430,5431,1,0,0,0,5431, - 5432,1,0,0,0,5432,5434,3,708,354,0,5433,5428,1,0,0,0,5433,5434,1, - 0,0,0,5434,5436,1,0,0,0,5435,5437,7,38,0,0,5436,5435,1,0,0,0,5436, - 5437,1,0,0,0,5437,469,1,0,0,0,5438,5439,5,51,0,0,5439,5440,5,739, - 0,0,5440,5441,5,74,0,0,5441,5443,3,642,321,0,5442,5444,5,66,0,0, - 5443,5442,1,0,0,0,5443,5444,1,0,0,0,5444,471,1,0,0,0,5445,5446,5, - 155,0,0,5446,5447,5,739,0,0,5447,5448,5,74,0,0,5448,5458,3,642,321, - 0,5449,5450,5,65,0,0,5450,5455,3,708,354,0,5451,5452,5,868,0,0,5452, - 5454,3,708,354,0,5453,5451,1,0,0,0,5454,5457,1,0,0,0,5455,5453,1, - 0,0,0,5455,5456,1,0,0,0,5456,5459,1,0,0,0,5457,5455,1,0,0,0,5458, - 5449,1,0,0,0,5458,5459,1,0,0,0,5459,473,1,0,0,0,5460,5466,3,708, - 354,0,5461,5462,3,708,354,0,5462,5463,5,854,0,0,5463,5464,3,708, - 354,0,5464,5466,1,0,0,0,5465,5460,1,0,0,0,5465,5461,1,0,0,0,5466, - 5471,1,0,0,0,5467,5468,5,868,0,0,5468,5470,3,474,237,0,5469,5467, - 1,0,0,0,5470,5473,1,0,0,0,5471,5469,1,0,0,0,5471,5472,1,0,0,0,5472, - 475,1,0,0,0,5473,5471,1,0,0,0,5474,5475,5,141,0,0,5475,5476,5,678, - 0,0,5476,5481,3,520,260,0,5477,5478,5,868,0,0,5478,5480,3,520,260, - 0,5479,5477,1,0,0,0,5480,5483,1,0,0,0,5481,5479,1,0,0,0,5481,5482, - 1,0,0,0,5482,477,1,0,0,0,5483,5481,1,0,0,0,5484,5486,5,149,0,0,5485, - 5487,3,754,377,0,5486,5485,1,0,0,0,5486,5487,1,0,0,0,5487,5488,1, - 0,0,0,5488,5493,3,514,257,0,5489,5490,5,868,0,0,5490,5492,3,514, - 257,0,5491,5489,1,0,0,0,5492,5495,1,0,0,0,5493,5491,1,0,0,0,5493, - 5494,1,0,0,0,5494,5496,1,0,0,0,5495,5493,1,0,0,0,5496,5498,5,119, - 0,0,5497,5499,3,482,241,0,5498,5497,1,0,0,0,5498,5499,1,0,0,0,5499, - 5500,1,0,0,0,5500,5501,3,518,259,0,5501,5502,5,68,0,0,5502,5504, - 3,650,325,0,5503,5505,3,480,240,0,5504,5503,1,0,0,0,5504,5505,1, - 0,0,0,5505,5537,1,0,0,0,5506,5508,5,149,0,0,5507,5509,3,754,377, - 0,5508,5507,1,0,0,0,5508,5509,1,0,0,0,5509,5510,1,0,0,0,5510,5512, - 5,7,0,0,5511,5513,5,734,0,0,5512,5511,1,0,0,0,5512,5513,1,0,0,0, - 5513,5514,1,0,0,0,5514,5515,5,868,0,0,5515,5516,5,73,0,0,5516,5517, - 5,121,0,0,5517,5518,5,68,0,0,5518,5520,3,650,325,0,5519,5521,3,480, - 240,0,5520,5519,1,0,0,0,5520,5521,1,0,0,0,5521,5537,1,0,0,0,5522, - 5524,5,149,0,0,5523,5525,3,754,377,0,5524,5523,1,0,0,0,5524,5525, - 1,0,0,0,5525,5528,1,0,0,0,5526,5527,5,547,0,0,5527,5529,5,119,0, - 0,5528,5526,1,0,0,0,5528,5529,1,0,0,0,5529,5530,1,0,0,0,5530,5531, - 3,650,325,0,5531,5532,5,68,0,0,5532,5534,3,650,325,0,5533,5535,3, - 480,240,0,5534,5533,1,0,0,0,5534,5535,1,0,0,0,5535,5537,1,0,0,0, - 5536,5484,1,0,0,0,5536,5506,1,0,0,0,5536,5522,1,0,0,0,5537,479,1, - 0,0,0,5538,5539,5,79,0,0,5539,5540,5,674,0,0,5540,5541,5,678,0,0, - 5541,481,1,0,0,0,5542,5543,7,81,0,0,5543,483,1,0,0,0,5544,5545,5, - 155,0,0,5545,5548,5,529,0,0,5546,5547,5,65,0,0,5547,5549,3,680,340, - 0,5548,5546,1,0,0,0,5548,5549,1,0,0,0,5549,5550,1,0,0,0,5550,5553, - 5,857,0,0,5551,5554,3,794,397,0,5552,5554,5,882,0,0,5553,5551,1, - 0,0,0,5553,5552,1,0,0,0,5554,5577,1,0,0,0,5555,5556,5,155,0,0,5556, - 5559,5,529,0,0,5557,5558,5,65,0,0,5558,5560,3,680,340,0,5559,5557, - 1,0,0,0,5559,5560,1,0,0,0,5560,5565,1,0,0,0,5561,5562,5,176,0,0, - 5562,5566,5,829,0,0,5563,5564,5,857,0,0,5564,5566,5,882,0,0,5565, - 5561,1,0,0,0,5565,5563,1,0,0,0,5566,5569,1,0,0,0,5567,5568,5,143, - 0,0,5568,5570,5,882,0,0,5569,5567,1,0,0,0,5569,5570,1,0,0,0,5570, - 5574,1,0,0,0,5571,5572,5,147,0,0,5572,5573,5,36,0,0,5573,5575,5, - 529,0,0,5574,5571,1,0,0,0,5574,5575,1,0,0,0,5575,5577,1,0,0,0,5576, - 5544,1,0,0,0,5576,5555,1,0,0,0,5577,485,1,0,0,0,5578,5579,3,680, - 340,0,5579,5580,3,504,252,0,5580,487,1,0,0,0,5581,5607,3,680,340, - 0,5582,5583,5,423,0,0,5583,5584,5,20,0,0,5584,5585,5,882,0,0,5585, - 5608,3,496,248,0,5586,5587,5,423,0,0,5587,5588,5,20,0,0,5588,5589, - 5,829,0,0,5589,5590,5,529,0,0,5590,5608,3,496,248,0,5591,5592,5, - 423,0,0,5592,5593,5,194,0,0,5593,5608,3,498,249,0,5594,5595,5,369, - 0,0,5595,5596,5,511,0,0,5596,5608,5,529,0,0,5597,5598,7,82,0,0,5598, - 5600,3,512,256,0,5599,5601,3,508,254,0,5600,5599,1,0,0,0,5600,5601, - 1,0,0,0,5601,5603,1,0,0,0,5602,5597,1,0,0,0,5603,5604,1,0,0,0,5604, - 5602,1,0,0,0,5604,5605,1,0,0,0,5605,5608,1,0,0,0,5606,5608,3,510, - 255,0,5607,5582,1,0,0,0,5607,5586,1,0,0,0,5607,5591,1,0,0,0,5607, - 5594,1,0,0,0,5607,5602,1,0,0,0,5607,5606,1,0,0,0,5607,5608,1,0,0, - 0,5608,489,1,0,0,0,5609,5610,5,423,0,0,5610,5616,5,20,0,0,5611,5617, - 5,882,0,0,5612,5613,5,829,0,0,5613,5617,5,529,0,0,5614,5615,5,529, - 0,0,5615,5617,5,882,0,0,5616,5611,1,0,0,0,5616,5612,1,0,0,0,5616, - 5614,1,0,0,0,5617,5620,1,0,0,0,5618,5619,5,11,0,0,5619,5621,3,490, - 245,0,5620,5618,1,0,0,0,5620,5621,1,0,0,0,5621,5646,1,0,0,0,5622, - 5623,5,423,0,0,5623,5624,5,194,0,0,5624,5633,3,702,351,0,5625,5629, - 5,20,0,0,5626,5630,5,882,0,0,5627,5628,5,829,0,0,5628,5630,5,529, - 0,0,5629,5626,1,0,0,0,5629,5627,1,0,0,0,5630,5634,1,0,0,0,5631,5632, - 5,13,0,0,5632,5634,5,882,0,0,5633,5625,1,0,0,0,5633,5631,1,0,0,0, - 5633,5634,1,0,0,0,5634,5637,1,0,0,0,5635,5636,5,11,0,0,5636,5638, - 3,490,245,0,5637,5635,1,0,0,0,5637,5638,1,0,0,0,5638,5646,1,0,0, - 0,5639,5640,5,423,0,0,5640,5641,5,194,0,0,5641,5643,3,702,351,0, - 5642,5644,3,492,246,0,5643,5642,1,0,0,0,5643,5644,1,0,0,0,5644,5646, - 1,0,0,0,5645,5609,1,0,0,0,5645,5622,1,0,0,0,5645,5639,1,0,0,0,5646, - 491,1,0,0,0,5647,5648,5,427,0,0,5648,5649,5,708,0,0,5649,5650,5, - 423,0,0,5650,5654,5,20,0,0,5651,5652,5,829,0,0,5652,5655,5,529,0, - 0,5653,5655,5,882,0,0,5654,5651,1,0,0,0,5654,5653,1,0,0,0,5655,5665, - 1,0,0,0,5656,5657,5,427,0,0,5657,5658,5,708,0,0,5658,5659,5,423, - 0,0,5659,5660,5,194,0,0,5660,5661,3,702,351,0,5661,5662,5,13,0,0, - 5662,5663,5,882,0,0,5663,5665,1,0,0,0,5664,5647,1,0,0,0,5664,5656, - 1,0,0,0,5665,493,1,0,0,0,5666,5667,3,680,340,0,5667,5668,5,423,0, - 0,5668,5669,5,20,0,0,5669,5670,5,529,0,0,5670,5671,5,882,0,0,5671, - 5692,1,0,0,0,5672,5673,3,680,340,0,5673,5674,5,423,0,0,5674,5675, - 5,20,0,0,5675,5676,5,829,0,0,5676,5677,5,529,0,0,5677,5678,3,496, - 248,0,5678,5692,1,0,0,0,5679,5680,3,680,340,0,5680,5681,5,423,0, - 0,5681,5682,5,20,0,0,5682,5683,5,882,0,0,5683,5684,3,496,248,0,5684, - 5692,1,0,0,0,5685,5686,3,680,340,0,5686,5687,5,423,0,0,5687,5688, - 5,194,0,0,5688,5689,3,498,249,0,5689,5692,1,0,0,0,5690,5692,3,680, - 340,0,5691,5666,1,0,0,0,5691,5672,1,0,0,0,5691,5679,1,0,0,0,5691, - 5685,1,0,0,0,5691,5690,1,0,0,0,5692,495,1,0,0,0,5693,5694,5,143, - 0,0,5694,5696,5,882,0,0,5695,5693,1,0,0,0,5695,5696,1,0,0,0,5696, - 5700,1,0,0,0,5697,5698,5,147,0,0,5698,5699,5,36,0,0,5699,5701,5, - 529,0,0,5700,5697,1,0,0,0,5700,5701,1,0,0,0,5701,497,1,0,0,0,5702, - 5710,3,702,351,0,5703,5707,7,83,0,0,5704,5708,5,882,0,0,5705,5706, - 5,829,0,0,5706,5708,5,529,0,0,5707,5704,1,0,0,0,5707,5705,1,0,0, - 0,5708,5709,1,0,0,0,5709,5711,3,496,248,0,5710,5703,1,0,0,0,5710, - 5711,1,0,0,0,5711,5717,1,0,0,0,5712,5713,3,702,351,0,5713,5714,5, - 188,0,0,5714,5715,3,794,397,0,5715,5717,1,0,0,0,5716,5702,1,0,0, - 0,5716,5712,1,0,0,0,5717,499,1,0,0,0,5718,5727,5,169,0,0,5719,5727, - 5,693,0,0,5720,5721,5,331,0,0,5721,5727,5,882,0,0,5722,5723,5,441, - 0,0,5723,5727,5,882,0,0,5724,5725,5,651,0,0,5725,5727,5,882,0,0, - 5726,5718,1,0,0,0,5726,5719,1,0,0,0,5726,5720,1,0,0,0,5726,5722, - 1,0,0,0,5726,5724,1,0,0,0,5727,501,1,0,0,0,5728,5729,5,479,0,0,5729, - 5737,3,708,354,0,5730,5731,5,482,0,0,5731,5737,3,708,354,0,5732, - 5733,5,478,0,0,5733,5737,3,708,354,0,5734,5735,5,483,0,0,5735,5737, - 3,708,354,0,5736,5728,1,0,0,0,5736,5730,1,0,0,0,5736,5732,1,0,0, - 0,5736,5734,1,0,0,0,5737,503,1,0,0,0,5738,5739,5,529,0,0,5739,5746, - 5,390,0,0,5740,5747,5,42,0,0,5741,5747,5,500,0,0,5742,5743,5,87, - 0,0,5743,5744,3,708,354,0,5744,5745,5,698,0,0,5745,5747,1,0,0,0, - 5746,5740,1,0,0,0,5746,5741,1,0,0,0,5746,5742,1,0,0,0,5746,5747, - 1,0,0,0,5747,5777,1,0,0,0,5748,5749,5,529,0,0,5749,5752,5,420,0, - 0,5750,5753,5,42,0,0,5751,5753,3,708,354,0,5752,5750,1,0,0,0,5752, - 5751,1,0,0,0,5753,5777,1,0,0,0,5754,5755,5,529,0,0,5755,5756,5,581, - 0,0,5756,5761,5,87,0,0,5757,5762,5,42,0,0,5758,5759,3,708,354,0, - 5759,5760,5,698,0,0,5760,5762,1,0,0,0,5761,5757,1,0,0,0,5761,5758, - 1,0,0,0,5762,5777,1,0,0,0,5763,5764,5,529,0,0,5764,5765,5,144,0, - 0,5765,5767,5,36,0,0,5766,5768,7,84,0,0,5767,5766,1,0,0,0,5767,5768, - 1,0,0,0,5768,5777,1,0,0,0,5769,5770,5,395,0,0,5770,5777,3,708,354, - 0,5771,5774,5,530,0,0,5772,5775,3,708,354,0,5773,5775,5,669,0,0, - 5774,5772,1,0,0,0,5774,5773,1,0,0,0,5775,5777,1,0,0,0,5776,5738, - 1,0,0,0,5776,5748,1,0,0,0,5776,5754,1,0,0,0,5776,5763,1,0,0,0,5776, - 5769,1,0,0,0,5776,5771,1,0,0,0,5777,505,1,0,0,0,5778,5779,5,304, - 0,0,5779,5780,7,85,0,0,5780,507,1,0,0,0,5781,5784,5,423,0,0,5782, - 5783,5,194,0,0,5783,5785,3,702,351,0,5784,5782,1,0,0,0,5784,5785, - 1,0,0,0,5785,5794,1,0,0,0,5786,5790,5,20,0,0,5787,5791,5,882,0,0, - 5788,5789,5,829,0,0,5789,5791,5,529,0,0,5790,5787,1,0,0,0,5790,5788, - 1,0,0,0,5791,5795,1,0,0,0,5792,5793,5,13,0,0,5793,5795,5,882,0,0, - 5794,5786,1,0,0,0,5794,5792,1,0,0,0,5795,509,1,0,0,0,5796,5797,3, - 512,256,0,5797,5798,5,429,0,0,5798,5799,5,555,0,0,5799,5812,1,0, - 0,0,5800,5801,3,512,256,0,5801,5802,5,401,0,0,5802,5803,5,555,0, - 0,5803,5804,5,155,0,0,5804,5805,5,330,0,0,5805,5806,5,13,0,0,5806, - 5807,5,882,0,0,5807,5812,1,0,0,0,5808,5809,3,512,256,0,5809,5810, - 5,675,0,0,5810,5812,1,0,0,0,5811,5796,1,0,0,0,5811,5800,1,0,0,0, - 5811,5808,1,0,0,0,5812,511,1,0,0,0,5813,5814,7,86,0,0,5814,5815, - 5,394,0,0,5815,513,1,0,0,0,5816,5821,3,516,258,0,5817,5818,5,866, - 0,0,5818,5819,3,656,328,0,5819,5820,5,867,0,0,5820,5822,1,0,0,0, - 5821,5817,1,0,0,0,5821,5822,1,0,0,0,5822,515,1,0,0,0,5823,5825,5, - 7,0,0,5824,5826,5,734,0,0,5825,5824,1,0,0,0,5825,5826,1,0,0,0,5826, - 5917,1,0,0,0,5827,5829,5,8,0,0,5828,5830,5,743,0,0,5829,5828,1,0, - 0,0,5829,5830,1,0,0,0,5830,5917,1,0,0,0,5831,5839,5,34,0,0,5832, - 5833,5,660,0,0,5833,5840,5,752,0,0,5834,5840,5,743,0,0,5835,5840, - 5,684,0,0,5836,5840,5,678,0,0,5837,5840,5,658,0,0,5838,5840,5,582, - 0,0,5839,5832,1,0,0,0,5839,5834,1,0,0,0,5839,5835,1,0,0,0,5839,5836, - 1,0,0,0,5839,5837,1,0,0,0,5839,5838,1,0,0,0,5839,5840,1,0,0,0,5840, - 5917,1,0,0,0,5841,5917,5,44,0,0,5842,5844,5,51,0,0,5843,5845,5,582, - 0,0,5844,5843,1,0,0,0,5844,5845,1,0,0,0,5845,5917,1,0,0,0,5846,5917, - 5,385,0,0,5847,5917,5,717,0,0,5848,5917,5,718,0,0,5849,5850,5,73, - 0,0,5850,5917,5,121,0,0,5851,5917,5,82,0,0,5852,5917,5,86,0,0,5853, - 5854,5,104,0,0,5854,5917,5,752,0,0,5855,5917,5,735,0,0,5856,5917, - 5,547,0,0,5857,5917,5,138,0,0,5858,5917,5,736,0,0,5859,5860,5,572, - 0,0,5860,5917,7,87,0,0,5861,5917,5,154,0,0,5862,5863,5,157,0,0,5863, - 5917,7,88,0,0,5864,5917,5,749,0,0,5865,5917,5,750,0,0,5866,5917, - 5,178,0,0,5867,5917,5,185,0,0,5868,5917,5,186,0,0,5869,5917,5,705, - 0,0,5870,5917,5,706,0,0,5871,5917,5,707,0,0,5872,5917,5,709,0,0, - 5873,5917,5,710,0,0,5874,5917,5,711,0,0,5875,5917,5,712,0,0,5876, - 5917,5,714,0,0,5877,5917,5,715,0,0,5878,5917,5,716,0,0,5879,5917, - 5,719,0,0,5880,5917,5,720,0,0,5881,5917,5,721,0,0,5882,5917,5,722, - 0,0,5883,5917,5,723,0,0,5884,5917,5,724,0,0,5885,5917,5,725,0,0, - 5886,5917,5,726,0,0,5887,5917,5,727,0,0,5888,5917,5,728,0,0,5889, - 5917,5,731,0,0,5890,5917,5,732,0,0,5891,5917,5,733,0,0,5892,5917, - 5,737,0,0,5893,5917,5,738,0,0,5894,5917,5,740,0,0,5895,5917,5,741, - 0,0,5896,5917,5,742,0,0,5897,5917,5,745,0,0,5898,5917,5,746,0,0, - 5899,5917,5,747,0,0,5900,5917,5,160,0,0,5901,5917,5,748,0,0,5902, - 5917,5,836,0,0,5903,5917,5,751,0,0,5904,5917,5,753,0,0,5905,5917, - 5,838,0,0,5906,5917,5,754,0,0,5907,5917,5,755,0,0,5908,5909,5,103, - 0,0,5909,5910,5,68,0,0,5910,5917,5,744,0,0,5911,5912,5,154,0,0,5912, - 5913,5,88,0,0,5913,5917,5,744,0,0,5914,5915,5,729,0,0,5915,5917, - 5,730,0,0,5916,5823,1,0,0,0,5916,5827,1,0,0,0,5916,5831,1,0,0,0, - 5916,5841,1,0,0,0,5916,5842,1,0,0,0,5916,5846,1,0,0,0,5916,5847, - 1,0,0,0,5916,5848,1,0,0,0,5916,5849,1,0,0,0,5916,5851,1,0,0,0,5916, - 5852,1,0,0,0,5916,5853,1,0,0,0,5916,5855,1,0,0,0,5916,5856,1,0,0, - 0,5916,5857,1,0,0,0,5916,5858,1,0,0,0,5916,5859,1,0,0,0,5916,5861, - 1,0,0,0,5916,5862,1,0,0,0,5916,5864,1,0,0,0,5916,5865,1,0,0,0,5916, - 5866,1,0,0,0,5916,5867,1,0,0,0,5916,5868,1,0,0,0,5916,5869,1,0,0, - 0,5916,5870,1,0,0,0,5916,5871,1,0,0,0,5916,5872,1,0,0,0,5916,5873, - 1,0,0,0,5916,5874,1,0,0,0,5916,5875,1,0,0,0,5916,5876,1,0,0,0,5916, - 5877,1,0,0,0,5916,5878,1,0,0,0,5916,5879,1,0,0,0,5916,5880,1,0,0, - 0,5916,5881,1,0,0,0,5916,5882,1,0,0,0,5916,5883,1,0,0,0,5916,5884, - 1,0,0,0,5916,5885,1,0,0,0,5916,5886,1,0,0,0,5916,5887,1,0,0,0,5916, - 5888,1,0,0,0,5916,5889,1,0,0,0,5916,5890,1,0,0,0,5916,5891,1,0,0, - 0,5916,5892,1,0,0,0,5916,5893,1,0,0,0,5916,5894,1,0,0,0,5916,5895, - 1,0,0,0,5916,5896,1,0,0,0,5916,5897,1,0,0,0,5916,5898,1,0,0,0,5916, - 5899,1,0,0,0,5916,5900,1,0,0,0,5916,5901,1,0,0,0,5916,5902,1,0,0, - 0,5916,5903,1,0,0,0,5916,5904,1,0,0,0,5916,5905,1,0,0,0,5916,5906, - 1,0,0,0,5916,5907,1,0,0,0,5916,5908,1,0,0,0,5916,5911,1,0,0,0,5916, - 5914,1,0,0,0,5917,517,1,0,0,0,5918,5935,5,850,0,0,5919,5920,5,850, - 0,0,5920,5921,5,865,0,0,5921,5935,5,850,0,0,5922,5923,3,702,351, - 0,5923,5924,5,865,0,0,5924,5925,5,850,0,0,5925,5935,1,0,0,0,5926, - 5927,3,702,351,0,5927,5928,5,865,0,0,5928,5929,3,702,351,0,5929, - 5935,1,0,0,0,5930,5931,3,702,351,0,5931,5932,3,706,353,0,5932,5935, - 1,0,0,0,5933,5935,3,702,351,0,5934,5918,1,0,0,0,5934,5919,1,0,0, - 0,5934,5922,1,0,0,0,5934,5926,1,0,0,0,5934,5930,1,0,0,0,5934,5933, - 1,0,0,0,5935,519,1,0,0,0,5936,5937,3,680,340,0,5937,5938,5,176,0, - 0,5938,5939,3,680,340,0,5939,521,1,0,0,0,5940,5942,5,10,0,0,5941, - 5943,3,532,266,0,5942,5941,1,0,0,0,5942,5943,1,0,0,0,5943,5944,1, - 0,0,0,5944,5945,5,173,0,0,5945,5989,3,646,323,0,5946,5948,5,10,0, - 0,5947,5949,3,532,266,0,5948,5947,1,0,0,0,5948,5949,1,0,0,0,5949, - 5950,1,0,0,0,5950,5951,5,173,0,0,5951,5952,3,648,324,0,5952,5953, - 5,185,0,0,5953,5954,5,77,0,0,5954,5955,5,119,0,0,5955,5960,3,656, - 328,0,5956,5957,5,194,0,0,5957,5958,3,708,354,0,5958,5959,5,19,0, - 0,5959,5961,1,0,0,0,5960,5956,1,0,0,0,5960,5961,1,0,0,0,5961,5989, - 1,0,0,0,5962,5964,5,10,0,0,5963,5965,3,532,266,0,5964,5963,1,0,0, - 0,5964,5965,1,0,0,0,5965,5966,1,0,0,0,5966,5967,5,173,0,0,5967,5968, - 3,648,324,0,5968,5969,5,185,0,0,5969,5970,5,77,0,0,5970,5971,5,119, - 0,0,5971,5975,3,658,329,0,5972,5973,5,188,0,0,5973,5974,5,360,0, - 0,5974,5976,5,882,0,0,5975,5972,1,0,0,0,5975,5976,1,0,0,0,5976,5989, - 1,0,0,0,5977,5979,5,10,0,0,5978,5980,3,532,266,0,5979,5978,1,0,0, - 0,5979,5980,1,0,0,0,5980,5981,1,0,0,0,5981,5982,5,173,0,0,5982,5983, - 3,648,324,0,5983,5984,5,51,0,0,5984,5985,5,77,0,0,5985,5986,5,119, - 0,0,5986,5987,3,656,328,0,5987,5989,1,0,0,0,5988,5940,1,0,0,0,5988, - 5946,1,0,0,0,5988,5962,1,0,0,0,5988,5977,1,0,0,0,5989,523,1,0,0, - 0,5990,5991,5,27,0,0,5991,5992,5,173,0,0,5992,5996,3,646,323,0,5993, - 5995,3,534,267,0,5994,5993,1,0,0,0,5995,5998,1,0,0,0,5996,5994,1, - 0,0,0,5996,5997,1,0,0,0,5997,525,1,0,0,0,5998,5996,1,0,0,0,5999, - 6000,5,329,0,0,6000,6001,5,173,0,0,6001,6003,3,646,323,0,6002,6004, - 7,89,0,0,6003,6002,1,0,0,0,6003,6004,1,0,0,0,6004,527,1,0,0,0,6005, - 6007,5,120,0,0,6006,6008,3,532,266,0,6007,6006,1,0,0,0,6007,6008, - 1,0,0,0,6008,6009,1,0,0,0,6009,6010,7,60,0,0,6010,6011,3,646,323, - 0,6011,529,1,0,0,0,6012,6014,5,562,0,0,6013,6015,3,532,266,0,6014, - 6013,1,0,0,0,6014,6015,1,0,0,0,6015,6016,1,0,0,0,6016,6017,5,173, - 0,0,6017,6019,3,646,323,0,6018,6020,5,549,0,0,6019,6018,1,0,0,0, - 6019,6020,1,0,0,0,6020,6022,1,0,0,0,6021,6023,5,392,0,0,6022,6021, - 1,0,0,0,6022,6023,1,0,0,0,6023,6025,1,0,0,0,6024,6026,5,679,0,0, - 6025,6024,1,0,0,0,6025,6026,1,0,0,0,6026,531,1,0,0,0,6027,6028,7, - 90,0,0,6028,533,1,0,0,0,6029,6030,5,65,0,0,6030,6037,5,677,0,0,6031, - 6037,5,549,0,0,6032,6037,5,396,0,0,6033,6037,5,484,0,0,6034,6037, - 5,392,0,0,6035,6037,5,327,0,0,6036,6029,1,0,0,0,6036,6031,1,0,0, - 0,6036,6032,1,0,0,0,6036,6033,1,0,0,0,6036,6034,1,0,0,0,6036,6035, - 1,0,0,0,6037,535,1,0,0,0,6038,6040,5,34,0,0,6039,6041,5,307,0,0, - 6040,6039,1,0,0,0,6040,6041,1,0,0,0,6041,6042,1,0,0,0,6042,6044, - 5,409,0,0,6043,6045,3,756,378,0,6044,6043,1,0,0,0,6044,6045,1,0, - 0,0,6045,6046,1,0,0,0,6046,6047,3,626,313,0,6047,6048,5,580,0,0, - 6048,6049,7,91,0,0,6049,6050,5,603,0,0,6050,6051,5,882,0,0,6051, - 537,1,0,0,0,6052,6053,5,432,0,0,6053,6054,5,344,0,0,6054,6059,3, - 702,351,0,6055,6056,5,868,0,0,6056,6058,3,702,351,0,6057,6055,1, - 0,0,0,6058,6061,1,0,0,0,6059,6057,1,0,0,0,6059,6060,1,0,0,0,6060, - 6071,1,0,0,0,6061,6059,1,0,0,0,6062,6063,5,155,0,0,6063,6068,3,540, - 270,0,6064,6065,5,868,0,0,6065,6067,3,540,270,0,6066,6064,1,0,0, - 0,6067,6070,1,0,0,0,6068,6066,1,0,0,0,6068,6069,1,0,0,0,6069,6072, - 1,0,0,0,6070,6068,1,0,0,0,6071,6062,1,0,0,0,6071,6072,1,0,0,0,6072, - 539,1,0,0,0,6073,6074,7,92,0,0,6074,6075,3,698,349,0,6075,6076,5, - 857,0,0,6076,6077,3,800,400,0,6077,541,1,0,0,0,6078,6079,5,673,0, - 0,6079,6080,5,344,0,0,6080,6085,3,702,351,0,6081,6082,5,868,0,0, - 6082,6084,3,702,351,0,6083,6081,1,0,0,0,6084,6087,1,0,0,0,6085,6083, - 1,0,0,0,6085,6086,1,0,0,0,6086,543,1,0,0,0,6087,6085,1,0,0,0,6088, - 6089,5,432,0,0,6089,6090,5,534,0,0,6090,6091,3,702,351,0,6091,6092, - 5,603,0,0,6092,6093,5,882,0,0,6093,545,1,0,0,0,6094,6095,5,673,0, - 0,6095,6096,5,534,0,0,6096,6097,3,702,351,0,6097,547,1,0,0,0,6098, - 6099,5,713,0,0,6099,6100,5,450,0,0,6100,6101,5,360,0,0,6101,6103, - 5,367,0,0,6102,6104,5,857,0,0,6103,6102,1,0,0,0,6103,6104,1,0,0, - 0,6104,6105,1,0,0,0,6105,6129,5,882,0,0,6106,6107,5,713,0,0,6107, - 6108,5,433,0,0,6108,6109,5,68,0,0,6109,6110,3,672,336,0,6110,6111, - 5,423,0,0,6111,6112,5,20,0,0,6112,6119,5,882,0,0,6113,6114,5,360, - 0,0,6114,6116,5,367,0,0,6115,6117,5,857,0,0,6116,6115,1,0,0,0,6116, - 6117,1,0,0,0,6117,6118,1,0,0,0,6118,6120,5,882,0,0,6119,6113,1,0, - 0,0,6119,6120,1,0,0,0,6120,6126,1,0,0,0,6121,6123,5,144,0,0,6122, - 6124,5,502,0,0,6123,6122,1,0,0,0,6123,6124,1,0,0,0,6124,6125,1,0, - 0,0,6125,6127,5,169,0,0,6126,6121,1,0,0,0,6126,6127,1,0,0,0,6127, - 6129,1,0,0,0,6128,6098,1,0,0,0,6128,6106,1,0,0,0,6129,549,1,0,0, - 0,6130,6131,5,155,0,0,6131,6132,3,554,277,0,6132,6135,7,93,0,0,6133, - 6136,3,800,400,0,6134,6136,5,119,0,0,6135,6133,1,0,0,0,6135,6134, - 1,0,0,0,6136,6146,1,0,0,0,6137,6138,5,868,0,0,6138,6139,3,554,277, - 0,6139,6142,7,93,0,0,6140,6143,3,800,400,0,6141,6143,5,119,0,0,6142, - 6140,1,0,0,0,6142,6141,1,0,0,0,6143,6145,1,0,0,0,6144,6137,1,0,0, - 0,6145,6148,1,0,0,0,6146,6144,1,0,0,0,6146,6147,1,0,0,0,6147,6183, - 1,0,0,0,6148,6146,1,0,0,0,6149,6150,5,155,0,0,6150,6153,3,54,27, - 0,6151,6154,3,684,342,0,6152,6154,5,42,0,0,6153,6151,1,0,0,0,6153, - 6152,1,0,0,0,6154,6183,1,0,0,0,6155,6156,5,155,0,0,6156,6163,5,497, - 0,0,6157,6160,3,684,342,0,6158,6159,5,28,0,0,6159,6161,3,686,343, - 0,6160,6158,1,0,0,0,6160,6161,1,0,0,0,6161,6164,1,0,0,0,6162,6164, - 5,42,0,0,6163,6157,1,0,0,0,6163,6162,1,0,0,0,6164,6183,1,0,0,0,6165, - 6183,3,484,242,0,6166,6183,3,336,168,0,6167,6183,3,334,167,0,6168, - 6169,5,155,0,0,6169,6170,3,698,349,0,6170,6171,7,93,0,0,6171,6179, - 3,800,400,0,6172,6173,5,868,0,0,6173,6174,3,698,349,0,6174,6175, - 7,93,0,0,6175,6176,3,800,400,0,6176,6178,1,0,0,0,6177,6172,1,0,0, - 0,6178,6181,1,0,0,0,6179,6177,1,0,0,0,6179,6180,1,0,0,0,6180,6183, - 1,0,0,0,6181,6179,1,0,0,0,6182,6130,1,0,0,0,6182,6149,1,0,0,0,6182, - 6155,1,0,0,0,6182,6165,1,0,0,0,6182,6166,1,0,0,0,6182,6167,1,0,0, - 0,6182,6168,1,0,0,0,6183,551,1,0,0,0,6184,6185,5,157,0,0,6185,6186, - 7,62,0,0,6186,6369,5,452,0,0,6187,6188,5,157,0,0,6188,6189,7,94, - 0,0,6189,6192,5,386,0,0,6190,6191,5,80,0,0,6191,6193,5,882,0,0,6192, - 6190,1,0,0,0,6192,6193,1,0,0,0,6193,6196,1,0,0,0,6194,6195,5,68, - 0,0,6195,6197,3,708,354,0,6196,6194,1,0,0,0,6196,6197,1,0,0,0,6197, - 6205,1,0,0,0,6198,6202,5,100,0,0,6199,6200,3,708,354,0,6200,6201, - 5,868,0,0,6201,6203,1,0,0,0,6202,6199,1,0,0,0,6202,6203,1,0,0,0, - 6203,6204,1,0,0,0,6204,6206,3,708,354,0,6205,6198,1,0,0,0,6205,6206, - 1,0,0,0,6206,6208,1,0,0,0,6207,6209,3,384,192,0,6208,6207,1,0,0, - 0,6208,6209,1,0,0,0,6209,6369,1,0,0,0,6210,6211,5,157,0,0,6211,6213, - 3,556,278,0,6212,6214,3,558,279,0,6213,6212,1,0,0,0,6213,6214,1, - 0,0,0,6214,6369,1,0,0,0,6215,6217,5,157,0,0,6216,6218,5,392,0,0, - 6217,6216,1,0,0,0,6217,6218,1,0,0,0,6218,6220,1,0,0,0,6219,6221, - 5,408,0,0,6220,6219,1,0,0,0,6220,6221,1,0,0,0,6221,6222,1,0,0,0, - 6222,6223,7,46,0,0,6223,6224,7,95,0,0,6224,6227,3,648,324,0,6225, - 6226,7,95,0,0,6226,6228,3,624,312,0,6227,6225,1,0,0,0,6227,6228, - 1,0,0,0,6228,6230,1,0,0,0,6229,6231,3,558,279,0,6230,6229,1,0,0, - 0,6230,6231,1,0,0,0,6231,6369,1,0,0,0,6232,6233,5,157,0,0,6233,6234, - 5,34,0,0,6234,6236,7,0,0,0,6235,6237,3,756,378,0,6236,6235,1,0,0, - 0,6236,6237,1,0,0,0,6237,6238,1,0,0,0,6238,6369,3,622,311,0,6239, - 6240,5,157,0,0,6240,6241,5,34,0,0,6241,6242,7,96,0,0,6242,6369,3, - 698,349,0,6243,6244,5,157,0,0,6244,6245,5,34,0,0,6245,6246,5,409, - 0,0,6246,6369,3,626,313,0,6247,6248,5,157,0,0,6248,6249,5,34,0,0, - 6249,6250,5,684,0,0,6250,6369,3,630,315,0,6251,6252,5,157,0,0,6252, - 6253,5,34,0,0,6253,6254,5,173,0,0,6254,6369,3,644,322,0,6255,6256, - 5,157,0,0,6256,6257,5,34,0,0,6257,6258,5,678,0,0,6258,6369,3,680, - 340,0,6259,6260,5,157,0,0,6260,6261,5,380,0,0,6261,6262,3,688,344, - 0,6262,6263,7,97,0,0,6263,6369,1,0,0,0,6264,6265,5,157,0,0,6265, - 6369,3,560,280,0,6266,6267,5,157,0,0,6267,6275,7,98,0,0,6268,6272, - 5,100,0,0,6269,6270,3,708,354,0,6270,6271,5,868,0,0,6271,6273,1, - 0,0,0,6272,6269,1,0,0,0,6272,6273,1,0,0,0,6273,6274,1,0,0,0,6274, - 6276,3,708,354,0,6275,6268,1,0,0,0,6275,6276,1,0,0,0,6276,6369,1, - 0,0,0,6277,6278,5,157,0,0,6278,6279,5,262,0,0,6279,6280,5,866,0, - 0,6280,6281,5,850,0,0,6281,6282,5,867,0,0,6282,6369,7,98,0,0,6283, - 6284,5,157,0,0,6284,6287,3,562,281,0,6285,6286,7,95,0,0,6286,6288, - 3,624,312,0,6287,6285,1,0,0,0,6287,6288,1,0,0,0,6288,6290,1,0,0, - 0,6289,6291,3,558,279,0,6290,6289,1,0,0,0,6290,6291,1,0,0,0,6291, - 6369,1,0,0,0,6292,6293,5,157,0,0,6293,6294,5,132,0,0,6294,6295,5, - 336,0,0,6295,6369,3,698,349,0,6296,6297,5,157,0,0,6297,6298,5,409, - 0,0,6298,6299,5,336,0,0,6299,6369,3,628,314,0,6300,6301,5,157,0, - 0,6301,6308,5,414,0,0,6302,6303,5,65,0,0,6303,6306,3,652,326,0,6304, - 6305,5,188,0,0,6305,6307,3,650,325,0,6306,6304,1,0,0,0,6306,6307, - 1,0,0,0,6307,6309,1,0,0,0,6308,6302,1,0,0,0,6308,6309,1,0,0,0,6309, - 6369,1,0,0,0,6310,6312,5,157,0,0,6311,6313,5,392,0,0,6312,6311,1, - 0,0,0,6312,6313,1,0,0,0,6313,6314,1,0,0,0,6314,6315,7,99,0,0,6315, - 6316,7,95,0,0,6316,6319,3,648,324,0,6317,6318,7,95,0,0,6318,6320, - 3,624,312,0,6319,6317,1,0,0,0,6319,6320,1,0,0,0,6320,6323,1,0,0, - 0,6321,6322,5,192,0,0,6322,6324,3,800,400,0,6323,6321,1,0,0,0,6323, - 6324,1,0,0,0,6324,6369,1,0,0,0,6325,6326,5,157,0,0,6326,6327,5,516, - 0,0,6327,6330,5,752,0,0,6328,6329,7,95,0,0,6329,6331,3,624,312,0, - 6330,6328,1,0,0,0,6330,6331,1,0,0,0,6331,6333,1,0,0,0,6332,6334, - 3,558,279,0,6333,6332,1,0,0,0,6333,6334,1,0,0,0,6334,6369,1,0,0, - 0,6335,6336,5,157,0,0,6336,6345,5,545,0,0,6337,6342,3,564,282,0, - 6338,6339,5,868,0,0,6339,6341,3,564,282,0,6340,6338,1,0,0,0,6341, - 6344,1,0,0,0,6342,6340,1,0,0,0,6342,6343,1,0,0,0,6343,6346,1,0,0, - 0,6344,6342,1,0,0,0,6345,6337,1,0,0,0,6345,6346,1,0,0,0,6346,6350, - 1,0,0,0,6347,6348,5,65,0,0,6348,6349,5,548,0,0,6349,6351,3,708,354, - 0,6350,6347,1,0,0,0,6350,6351,1,0,0,0,6351,6358,1,0,0,0,6352,6353, - 5,100,0,0,6353,6356,3,708,354,0,6354,6355,5,509,0,0,6355,6357,3, - 708,354,0,6356,6354,1,0,0,0,6356,6357,1,0,0,0,6357,6359,1,0,0,0, - 6358,6352,1,0,0,0,6358,6359,1,0,0,0,6359,6369,1,0,0,0,6360,6361, - 5,157,0,0,6361,6362,7,63,0,0,6362,6364,5,645,0,0,6363,6365,3,384, - 192,0,6364,6363,1,0,0,0,6364,6365,1,0,0,0,6365,6369,1,0,0,0,6366, - 6367,5,157,0,0,6367,6369,5,564,0,0,6368,6184,1,0,0,0,6368,6187,1, - 0,0,0,6368,6210,1,0,0,0,6368,6215,1,0,0,0,6368,6232,1,0,0,0,6368, - 6239,1,0,0,0,6368,6243,1,0,0,0,6368,6247,1,0,0,0,6368,6251,1,0,0, - 0,6368,6255,1,0,0,0,6368,6259,1,0,0,0,6368,6264,1,0,0,0,6368,6266, - 1,0,0,0,6368,6277,1,0,0,0,6368,6283,1,0,0,0,6368,6292,1,0,0,0,6368, - 6296,1,0,0,0,6368,6300,1,0,0,0,6368,6310,1,0,0,0,6368,6325,1,0,0, - 0,6368,6335,1,0,0,0,6368,6360,1,0,0,0,6368,6366,1,0,0,0,6369,553, - 1,0,0,0,6370,6381,5,892,0,0,6371,6381,5,893,0,0,6372,6373,5,870, - 0,0,6373,6375,5,870,0,0,6374,6372,1,0,0,0,6374,6375,1,0,0,0,6375, - 6376,1,0,0,0,6376,6378,7,100,0,0,6377,6374,1,0,0,0,6377,6378,1,0, - 0,0,6378,6379,1,0,0,0,6379,6381,3,702,351,0,6380,6370,1,0,0,0,6380, - 6371,1,0,0,0,6380,6377,1,0,0,0,6381,555,1,0,0,0,6382,6383,5,26,0, - 0,6383,6397,5,155,0,0,6384,6397,5,823,0,0,6385,6397,5,824,0,0,6386, - 6397,5,40,0,0,6387,6397,5,153,0,0,6388,6389,5,409,0,0,6389,6397, - 5,645,0,0,6390,6391,5,132,0,0,6391,6397,5,645,0,0,6392,6394,7,61, - 0,0,6393,6392,1,0,0,0,6393,6394,1,0,0,0,6394,6395,1,0,0,0,6395,6397, - 7,101,0,0,6396,6382,1,0,0,0,6396,6384,1,0,0,0,6396,6385,1,0,0,0, - 6396,6386,1,0,0,0,6396,6387,1,0,0,0,6396,6388,1,0,0,0,6396,6390, - 1,0,0,0,6396,6393,1,0,0,0,6397,557,1,0,0,0,6398,6399,5,99,0,0,6399, - 6403,5,882,0,0,6400,6401,5,192,0,0,6401,6403,3,800,400,0,6402,6398, - 1,0,0,0,6402,6400,1,0,0,0,6403,559,1,0,0,0,6404,6406,5,647,0,0,6405, - 6404,1,0,0,0,6405,6406,1,0,0,0,6406,6407,1,0,0,0,6407,6422,5,381, - 0,0,6408,6409,5,453,0,0,6409,6422,5,645,0,0,6410,6422,5,536,0,0, - 6411,6422,5,734,0,0,6412,6414,5,408,0,0,6413,6412,1,0,0,0,6413,6414, - 1,0,0,0,6414,6415,1,0,0,0,6415,6422,5,544,0,0,6416,6422,5,546,0, - 0,6417,6418,5,598,0,0,6418,6422,5,422,0,0,6419,6422,5,312,0,0,6420, - 6422,5,356,0,0,6421,6405,1,0,0,0,6421,6408,1,0,0,0,6421,6410,1,0, - 0,0,6421,6411,1,0,0,0,6421,6413,1,0,0,0,6421,6416,1,0,0,0,6421,6417, - 1,0,0,0,6421,6419,1,0,0,0,6421,6420,1,0,0,0,6422,561,1,0,0,0,6423, - 6435,5,386,0,0,6424,6425,5,173,0,0,6425,6435,5,645,0,0,6426,6428, - 5,392,0,0,6427,6426,1,0,0,0,6427,6428,1,0,0,0,6428,6430,1,0,0,0, - 6429,6431,5,408,0,0,6430,6429,1,0,0,0,6430,6431,1,0,0,0,6431,6432, - 1,0,0,0,6432,6435,5,752,0,0,6433,6435,5,667,0,0,6434,6423,1,0,0, - 0,6434,6424,1,0,0,0,6434,6427,1,0,0,0,6434,6433,1,0,0,0,6435,563, - 1,0,0,0,6436,6449,5,7,0,0,6437,6438,5,320,0,0,6438,6449,5,437,0, - 0,6439,6440,5,355,0,0,6440,6449,5,656,0,0,6441,6449,5,358,0,0,6442, - 6449,5,439,0,0,6443,6449,5,802,0,0,6444,6445,5,521,0,0,6445,6449, - 5,397,0,0,6446,6449,5,605,0,0,6447,6449,5,655,0,0,6448,6436,1,0, - 0,0,6448,6437,1,0,0,0,6448,6439,1,0,0,0,6448,6441,1,0,0,0,6448,6442, - 1,0,0,0,6448,6443,1,0,0,0,6448,6444,1,0,0,0,6448,6446,1,0,0,0,6448, - 6447,1,0,0,0,6449,565,1,0,0,0,6450,6451,5,318,0,0,6451,6452,5,882, - 0,0,6452,567,1,0,0,0,6453,6454,5,324,0,0,6454,6472,5,82,0,0,6455, - 6460,3,588,294,0,6456,6457,5,868,0,0,6457,6459,3,588,294,0,6458, - 6456,1,0,0,0,6459,6462,1,0,0,0,6460,6458,1,0,0,0,6460,6461,1,0,0, - 0,6461,6473,1,0,0,0,6462,6460,1,0,0,0,6463,6464,3,648,324,0,6464, - 6465,5,130,0,0,6465,6468,5,866,0,0,6466,6469,3,666,333,0,6467,6469, - 5,7,0,0,6468,6466,1,0,0,0,6468,6467,1,0,0,0,6469,6470,1,0,0,0,6470, - 6471,5,867,0,0,6471,6473,1,0,0,0,6472,6455,1,0,0,0,6472,6463,1,0, - 0,0,6473,6474,1,0,0,0,6474,6475,5,80,0,0,6475,6476,3,624,312,0,6476, - 569,1,0,0,0,6477,6479,5,404,0,0,6478,6480,3,532,266,0,6479,6478, - 1,0,0,0,6479,6480,1,0,0,0,6480,6481,1,0,0,0,6481,6486,3,590,295, - 0,6482,6483,5,868,0,0,6483,6485,3,590,295,0,6484,6482,1,0,0,0,6485, - 6488,1,0,0,0,6486,6484,1,0,0,0,6486,6487,1,0,0,0,6487,571,1,0,0, - 0,6488,6486,1,0,0,0,6489,6491,5,94,0,0,6490,6492,7,102,0,0,6491, - 6490,1,0,0,0,6491,6492,1,0,0,0,6492,6493,1,0,0,0,6493,6494,3,800, - 400,0,6494,573,1,0,0,0,6495,6496,5,103,0,0,6496,6497,5,82,0,0,6497, - 6498,5,88,0,0,6498,6499,5,324,0,0,6499,6504,3,594,297,0,6500,6501, - 5,868,0,0,6501,6503,3,594,297,0,6502,6500,1,0,0,0,6503,6506,1,0, - 0,0,6504,6502,1,0,0,0,6504,6505,1,0,0,0,6505,575,1,0,0,0,6506,6504, - 1,0,0,0,6507,6508,5,575,0,0,6508,6513,3,578,289,0,6509,6510,5,868, - 0,0,6510,6512,3,578,289,0,6511,6509,1,0,0,0,6512,6515,1,0,0,0,6513, - 6511,1,0,0,0,6513,6514,1,0,0,0,6514,577,1,0,0,0,6515,6513,1,0,0, - 0,6516,6522,5,453,0,0,6517,6522,5,563,0,0,6518,6519,5,548,0,0,6519, - 6522,5,324,0,0,6520,6522,5,598,0,0,6521,6516,1,0,0,0,6521,6517,1, - 0,0,0,6521,6518,1,0,0,0,6521,6520,1,0,0,0,6522,579,1,0,0,0,6523, - 6524,5,575,0,0,6524,6529,5,531,0,0,6525,6527,3,754,377,0,6526,6525, - 1,0,0,0,6526,6527,1,0,0,0,6527,6528,1,0,0,0,6528,6530,3,702,351, - 0,6529,6526,1,0,0,0,6529,6530,1,0,0,0,6530,581,1,0,0,0,6531,6532, - 5,575,0,0,6532,6534,7,63,0,0,6533,6535,5,7,0,0,6534,6533,1,0,0,0, - 6534,6535,1,0,0,0,6535,6537,1,0,0,0,6536,6538,3,384,192,0,6537,6536, - 1,0,0,0,6537,6538,1,0,0,0,6538,583,1,0,0,0,6539,6540,5,576,0,0,6540, - 585,1,0,0,0,6541,6542,5,749,0,0,6542,587,1,0,0,0,6543,6549,3,648, - 324,0,6544,6545,7,18,0,0,6545,6546,5,866,0,0,6546,6547,3,636,318, - 0,6547,6548,5,867,0,0,6548,6550,1,0,0,0,6549,6544,1,0,0,0,6549,6550, - 1,0,0,0,6550,589,1,0,0,0,6551,6570,5,366,0,0,6552,6570,5,422,0,0, - 6553,6555,7,103,0,0,6554,6553,1,0,0,0,6554,6555,1,0,0,0,6555,6556, - 1,0,0,0,6556,6570,5,452,0,0,6557,6570,5,517,0,0,6558,6570,5,734, - 0,0,6559,6560,5,548,0,0,6560,6570,5,324,0,0,6561,6570,5,645,0,0, - 6562,6570,5,680,0,0,6563,6567,5,752,0,0,6564,6565,5,194,0,0,6565, - 6566,5,135,0,0,6566,6568,5,104,0,0,6567,6564,1,0,0,0,6567,6568,1, - 0,0,0,6568,6570,1,0,0,0,6569,6551,1,0,0,0,6569,6552,1,0,0,0,6569, - 6554,1,0,0,0,6569,6557,1,0,0,0,6569,6558,1,0,0,0,6569,6559,1,0,0, - 0,6569,6561,1,0,0,0,6569,6562,1,0,0,0,6569,6563,1,0,0,0,6570,6584, - 1,0,0,0,6571,6572,5,556,0,0,6572,6574,5,452,0,0,6573,6575,3,384, - 192,0,6574,6573,1,0,0,0,6574,6575,1,0,0,0,6575,6584,1,0,0,0,6576, - 6578,7,60,0,0,6577,6579,3,646,323,0,6578,6577,1,0,0,0,6578,6579, - 1,0,0,0,6579,6581,1,0,0,0,6580,6582,3,592,296,0,6581,6580,1,0,0, - 0,6581,6582,1,0,0,0,6582,6584,1,0,0,0,6583,6569,1,0,0,0,6583,6571, - 1,0,0,0,6583,6576,1,0,0,0,6584,591,1,0,0,0,6585,6586,5,194,0,0,6586, - 6587,5,135,0,0,6587,6591,5,104,0,0,6588,6589,5,65,0,0,6589,6591, - 5,391,0,0,6590,6585,1,0,0,0,6590,6588,1,0,0,0,6591,593,1,0,0,0,6592, - 6600,3,648,324,0,6593,6594,5,130,0,0,6594,6597,5,866,0,0,6595,6598, - 3,666,333,0,6596,6598,5,7,0,0,6597,6595,1,0,0,0,6597,6596,1,0,0, - 0,6598,6599,1,0,0,0,6599,6601,5,867,0,0,6600,6593,1,0,0,0,6600,6601, - 1,0,0,0,6601,6609,1,0,0,0,6602,6604,7,18,0,0,6603,6602,1,0,0,0,6603, - 6604,1,0,0,0,6604,6605,1,0,0,0,6605,6606,5,866,0,0,6606,6607,3,636, - 318,0,6607,6608,5,867,0,0,6608,6610,1,0,0,0,6609,6603,1,0,0,0,6609, - 6610,1,0,0,0,6610,6613,1,0,0,0,6611,6612,5,79,0,0,6612,6614,5,446, - 0,0,6613,6611,1,0,0,0,6613,6614,1,0,0,0,6614,595,1,0,0,0,6615,6616, - 7,104,0,0,6616,6619,3,648,324,0,6617,6620,3,658,329,0,6618,6620, - 5,882,0,0,6619,6617,1,0,0,0,6619,6618,1,0,0,0,6619,6620,1,0,0,0, - 6620,597,1,0,0,0,6621,6627,7,104,0,0,6622,6628,5,392,0,0,6623,6628, - 5,528,0,0,6624,6625,5,826,0,0,6625,6626,5,857,0,0,6626,6628,7,105, - 0,0,6627,6622,1,0,0,0,6627,6623,1,0,0,0,6627,6624,1,0,0,0,6627,6628, - 1,0,0,0,6628,6629,1,0,0,0,6629,6630,3,620,310,0,6630,599,1,0,0,0, - 6631,6632,7,104,0,0,6632,6636,5,10,0,0,6633,6634,5,826,0,0,6634, - 6635,5,857,0,0,6635,6637,5,666,0,0,6636,6633,1,0,0,0,6636,6637,1, - 0,0,0,6637,6638,1,0,0,0,6638,6639,3,204,102,0,6639,601,1,0,0,0,6640, - 6641,5,419,0,0,6641,6642,5,882,0,0,6642,603,1,0,0,0,6643,6644,5, - 187,0,0,6644,6645,3,624,312,0,6645,605,1,0,0,0,6646,6654,5,158,0, - 0,6647,6649,5,164,0,0,6648,6650,5,682,0,0,6649,6648,1,0,0,0,6649, - 6650,1,0,0,0,6650,6651,1,0,0,0,6651,6655,3,712,356,0,6652,6655,5, - 889,0,0,6653,6655,5,890,0,0,6654,6647,1,0,0,0,6654,6652,1,0,0,0, - 6654,6653,1,0,0,0,6655,6665,1,0,0,0,6656,6657,5,155,0,0,6657,6662, - 3,610,305,0,6658,6659,5,868,0,0,6659,6661,3,610,305,0,6660,6658, - 1,0,0,0,6661,6664,1,0,0,0,6662,6660,1,0,0,0,6662,6663,1,0,0,0,6663, - 6666,1,0,0,0,6664,6662,1,0,0,0,6665,6656,1,0,0,0,6665,6666,1,0,0, - 0,6666,607,1,0,0,0,6667,6675,5,145,0,0,6668,6670,5,164,0,0,6669, - 6671,5,682,0,0,6670,6669,1,0,0,0,6670,6671,1,0,0,0,6671,6672,1,0, - 0,0,6672,6676,3,712,356,0,6673,6676,5,889,0,0,6674,6676,5,890,0, - 0,6675,6668,1,0,0,0,6675,6673,1,0,0,0,6675,6674,1,0,0,0,6675,6676, - 1,0,0,0,6676,6686,1,0,0,0,6677,6678,5,155,0,0,6678,6683,3,610,305, - 0,6679,6680,5,868,0,0,6680,6682,3,610,305,0,6681,6679,1,0,0,0,6682, - 6685,1,0,0,0,6683,6681,1,0,0,0,6683,6684,1,0,0,0,6684,6687,1,0,0, - 0,6685,6683,1,0,0,0,6686,6677,1,0,0,0,6686,6687,1,0,0,0,6687,609, - 1,0,0,0,6688,6689,7,106,0,0,6689,6694,5,857,0,0,6690,6695,3,712, - 356,0,6691,6695,5,883,0,0,6692,6695,3,682,341,0,6693,6695,3,704, - 352,0,6694,6690,1,0,0,0,6694,6691,1,0,0,0,6694,6692,1,0,0,0,6694, - 6693,1,0,0,0,6695,611,1,0,0,0,6696,6698,5,194,0,0,6697,6699,5,552, - 0,0,6698,6697,1,0,0,0,6698,6699,1,0,0,0,6699,6700,1,0,0,0,6700,6705, - 3,48,24,0,6701,6702,5,868,0,0,6702,6704,3,48,24,0,6703,6701,1,0, - 0,0,6704,6707,1,0,0,0,6705,6703,1,0,0,0,6705,6706,1,0,0,0,6706,613, - 1,0,0,0,6707,6705,1,0,0,0,6708,6709,5,173,0,0,6709,6711,3,648,324, - 0,6710,6712,3,252,126,0,6711,6710,1,0,0,0,6711,6712,1,0,0,0,6712, - 6714,1,0,0,0,6713,6715,3,312,156,0,6714,6713,1,0,0,0,6714,6715,1, - 0,0,0,6715,615,1,0,0,0,6716,6718,5,72,0,0,6717,6719,7,107,0,0,6718, - 6717,1,0,0,0,6718,6719,1,0,0,0,6719,6720,1,0,0,0,6720,6752,5,48, - 0,0,6721,6722,3,554,277,0,6722,6723,5,857,0,0,6723,6731,7,108,0, - 0,6724,6725,5,868,0,0,6725,6726,3,554,277,0,6726,6727,5,857,0,0, - 6727,6728,7,108,0,0,6728,6730,1,0,0,0,6729,6724,1,0,0,0,6730,6733, - 1,0,0,0,6731,6729,1,0,0,0,6731,6732,1,0,0,0,6732,6753,1,0,0,0,6733, - 6731,1,0,0,0,6734,6737,5,30,0,0,6735,6738,3,708,354,0,6736,6738, - 3,554,277,0,6737,6735,1,0,0,0,6737,6736,1,0,0,0,6738,6739,1,0,0, - 0,6739,6740,3,554,277,0,6740,6741,5,857,0,0,6741,6749,3,618,309, - 0,6742,6743,5,868,0,0,6743,6744,3,554,277,0,6744,6745,5,857,0,0, - 6745,6746,3,618,309,0,6746,6748,1,0,0,0,6747,6742,1,0,0,0,6748,6751, - 1,0,0,0,6749,6747,1,0,0,0,6749,6750,1,0,0,0,6750,6753,1,0,0,0,6751, - 6749,1,0,0,0,6752,6721,1,0,0,0,6752,6734,1,0,0,0,6753,617,1,0,0, - 0,6754,6755,7,109,0,0,6755,619,1,0,0,0,6756,6762,3,204,102,0,6757, - 6762,3,180,90,0,6758,6762,3,186,93,0,6759,6762,3,202,101,0,6760, - 6762,3,214,107,0,6761,6756,1,0,0,0,6761,6757,1,0,0,0,6761,6758,1, - 0,0,0,6761,6759,1,0,0,0,6761,6760,1,0,0,0,6762,6767,1,0,0,0,6763, - 6764,5,65,0,0,6764,6765,5,349,0,0,6765,6767,3,702,351,0,6766,6761, - 1,0,0,0,6766,6763,1,0,0,0,6767,621,1,0,0,0,6768,6769,3,698,349,0, - 6769,623,1,0,0,0,6770,6771,3,698,349,0,6771,625,1,0,0,0,6772,6773, - 3,698,349,0,6773,627,1,0,0,0,6774,6775,3,698,349,0,6775,629,1,0, - 0,0,6776,6777,3,698,349,0,6777,631,1,0,0,0,6778,6779,3,698,349,0, - 6779,633,1,0,0,0,6780,6781,3,702,351,0,6781,635,1,0,0,0,6782,6787, - 3,638,319,0,6783,6784,5,868,0,0,6784,6786,3,638,319,0,6785,6783, - 1,0,0,0,6786,6789,1,0,0,0,6787,6785,1,0,0,0,6787,6788,1,0,0,0,6788, - 637,1,0,0,0,6789,6787,1,0,0,0,6790,6791,3,702,351,0,6791,639,1,0, - 0,0,6792,6793,3,702,351,0,6793,641,1,0,0,0,6794,6795,3,702,351,0, - 6795,643,1,0,0,0,6796,6797,3,698,349,0,6797,645,1,0,0,0,6798,6803, - 3,648,324,0,6799,6800,5,868,0,0,6800,6802,3,648,324,0,6801,6799, - 1,0,0,0,6802,6805,1,0,0,0,6803,6801,1,0,0,0,6803,6804,1,0,0,0,6804, - 647,1,0,0,0,6805,6803,1,0,0,0,6806,6807,3,698,349,0,6807,649,1,0, - 0,0,6808,6813,3,652,326,0,6809,6810,5,868,0,0,6810,6812,3,652,326, - 0,6811,6809,1,0,0,0,6812,6815,1,0,0,0,6813,6811,1,0,0,0,6813,6814, - 1,0,0,0,6814,651,1,0,0,0,6815,6813,1,0,0,0,6816,6819,3,680,340,0, - 6817,6819,3,702,351,0,6818,6816,1,0,0,0,6818,6817,1,0,0,0,6819,653, - 1,0,0,0,6820,6825,3,702,351,0,6821,6823,3,706,353,0,6822,6824,3, - 706,353,0,6823,6822,1,0,0,0,6823,6824,1,0,0,0,6824,6826,1,0,0,0, - 6825,6821,1,0,0,0,6825,6826,1,0,0,0,6826,6835,1,0,0,0,6827,6829, - 9,0,0,0,6828,6827,1,0,0,0,6828,6829,1,0,0,0,6829,6830,1,0,0,0,6830, - 6832,3,706,353,0,6831,6833,3,706,353,0,6832,6831,1,0,0,0,6832,6833, - 1,0,0,0,6833,6835,1,0,0,0,6834,6820,1,0,0,0,6834,6828,1,0,0,0,6835, - 655,1,0,0,0,6836,6841,3,658,329,0,6837,6838,5,868,0,0,6838,6840, - 3,658,329,0,6839,6837,1,0,0,0,6840,6843,1,0,0,0,6841,6839,1,0,0, - 0,6841,6842,1,0,0,0,6842,657,1,0,0,0,6843,6841,1,0,0,0,6844,6849, - 3,702,351,0,6845,6847,3,706,353,0,6846,6848,3,706,353,0,6847,6846, - 1,0,0,0,6847,6848,1,0,0,0,6848,6850,1,0,0,0,6849,6845,1,0,0,0,6849, - 6850,1,0,0,0,6850,6859,1,0,0,0,6851,6853,9,0,0,0,6852,6851,1,0,0, - 0,6852,6853,1,0,0,0,6853,6854,1,0,0,0,6854,6856,3,706,353,0,6855, - 6857,3,706,353,0,6856,6855,1,0,0,0,6856,6857,1,0,0,0,6857,6859,1, - 0,0,0,6858,6844,1,0,0,0,6858,6852,1,0,0,0,6859,659,1,0,0,0,6860, - 6861,3,702,351,0,6861,661,1,0,0,0,6862,6863,3,702,351,0,6863,663, - 1,0,0,0,6864,6865,3,702,351,0,6865,665,1,0,0,0,6866,6871,3,668,334, - 0,6867,6868,5,868,0,0,6868,6870,3,668,334,0,6869,6867,1,0,0,0,6870, - 6873,1,0,0,0,6871,6869,1,0,0,0,6871,6872,1,0,0,0,6872,667,1,0,0, - 0,6873,6871,1,0,0,0,6874,6875,3,702,351,0,6875,669,1,0,0,0,6876, - 6881,3,702,351,0,6877,6878,5,866,0,0,6878,6879,3,708,354,0,6879, - 6880,5,867,0,0,6880,6882,1,0,0,0,6881,6877,1,0,0,0,6881,6882,1,0, - 0,0,6882,6885,1,0,0,0,6883,6885,3,800,400,0,6884,6876,1,0,0,0,6884, - 6883,1,0,0,0,6885,6887,1,0,0,0,6886,6888,7,54,0,0,6887,6886,1,0, - 0,0,6887,6888,1,0,0,0,6888,671,1,0,0,0,6889,6890,3,674,337,0,6890, - 6891,5,878,0,0,6891,6892,3,708,354,0,6892,673,1,0,0,0,6893,6894, - 3,676,338,0,6894,6895,5,891,0,0,6895,675,1,0,0,0,6896,6901,5,882, - 0,0,6897,6901,5,889,0,0,6898,6901,5,704,0,0,6899,6901,3,830,415, - 0,6900,6896,1,0,0,0,6900,6897,1,0,0,0,6900,6898,1,0,0,0,6900,6899, - 1,0,0,0,6901,677,1,0,0,0,6902,6903,7,110,0,0,6903,679,1,0,0,0,6904, - 6906,3,676,338,0,6905,6907,3,678,339,0,6906,6905,1,0,0,0,6906,6907, - 1,0,0,0,6907,6910,1,0,0,0,6908,6910,3,56,28,0,6909,6904,1,0,0,0, - 6909,6908,1,0,0,0,6910,681,1,0,0,0,6911,6912,7,111,0,0,6912,683, - 1,0,0,0,6913,6918,5,228,0,0,6914,6918,3,820,410,0,6915,6918,5,882, - 0,0,6916,6918,5,879,0,0,6917,6913,1,0,0,0,6917,6914,1,0,0,0,6917, - 6915,1,0,0,0,6917,6916,1,0,0,0,6918,685,1,0,0,0,6919,6920,3,702, - 351,0,6920,687,1,0,0,0,6921,6925,3,690,345,0,6922,6925,5,889,0,0, - 6923,6925,5,882,0,0,6924,6921,1,0,0,0,6924,6922,1,0,0,0,6924,6923, - 1,0,0,0,6925,689,1,0,0,0,6926,6927,7,112,0,0,6927,691,1,0,0,0,6928, - 6929,3,708,354,0,6929,6930,5,854,0,0,6930,6931,3,708,354,0,6931, - 6932,5,854,0,0,6932,6933,3,708,354,0,6933,6934,5,854,0,0,6934,6935, - 3,708,354,0,6935,6936,5,854,0,0,6936,6942,3,708,354,0,6937,6938, - 5,878,0,0,6938,6939,3,708,354,0,6939,6940,5,854,0,0,6940,6941,3, - 708,354,0,6941,6943,1,0,0,0,6942,6937,1,0,0,0,6943,6944,1,0,0,0, - 6944,6942,1,0,0,0,6944,6945,1,0,0,0,6945,693,1,0,0,0,6946,6953,3, - 696,348,0,6947,6948,5,868,0,0,6948,6951,3,696,348,0,6949,6950,5, - 868,0,0,6950,6952,3,708,354,0,6951,6949,1,0,0,0,6951,6952,1,0,0, - 0,6952,6954,1,0,0,0,6953,6947,1,0,0,0,6953,6954,1,0,0,0,6954,695, - 1,0,0,0,6955,6963,5,882,0,0,6956,6963,5,887,0,0,6957,6959,5,884, - 0,0,6958,6957,1,0,0,0,6959,6960,1,0,0,0,6960,6958,1,0,0,0,6960,6961, - 1,0,0,0,6961,6963,1,0,0,0,6962,6955,1,0,0,0,6962,6956,1,0,0,0,6962, - 6958,1,0,0,0,6963,697,1,0,0,0,6964,6966,3,702,351,0,6965,6967,3, - 706,353,0,6966,6965,1,0,0,0,6966,6967,1,0,0,0,6967,699,1,0,0,0,6968, - 6973,3,702,351,0,6969,6970,5,868,0,0,6970,6972,3,702,351,0,6971, - 6969,1,0,0,0,6972,6975,1,0,0,0,6973,6971,1,0,0,0,6973,6974,1,0,0, - 0,6974,701,1,0,0,0,6975,6973,1,0,0,0,6976,6980,3,704,352,0,6977, - 6980,5,879,0,0,6978,6980,5,882,0,0,6979,6976,1,0,0,0,6979,6977,1, - 0,0,0,6979,6978,1,0,0,0,6980,703,1,0,0,0,6981,6991,5,889,0,0,6982, - 6991,3,820,410,0,6983,6991,3,822,411,0,6984,6991,3,690,345,0,6985, - 6991,3,824,412,0,6986,6991,3,826,413,0,6987,6991,3,828,414,0,6988, - 6991,3,830,415,0,6989,6991,3,792,396,0,6990,6981,1,0,0,0,6990,6982, - 1,0,0,0,6990,6983,1,0,0,0,6990,6984,1,0,0,0,6990,6985,1,0,0,0,6990, - 6986,1,0,0,0,6990,6987,1,0,0,0,6990,6988,1,0,0,0,6990,6989,1,0,0, - 0,6991,705,1,0,0,0,6992,6993,5,865,0,0,6993,6997,5,889,0,0,6994, - 6995,5,865,0,0,6995,6997,3,702,351,0,6996,6992,1,0,0,0,6996,6994, - 1,0,0,0,6997,707,1,0,0,0,6998,6999,7,113,0,0,6999,709,1,0,0,0,7000, - 7003,5,880,0,0,7001,7003,3,708,354,0,7002,7000,1,0,0,0,7002,7001, - 1,0,0,0,7003,711,1,0,0,0,7004,7006,5,888,0,0,7005,7004,1,0,0,0,7005, - 7006,1,0,0,0,7006,7007,1,0,0,0,7007,7010,5,882,0,0,7008,7010,5,881, - 0,0,7009,7005,1,0,0,0,7009,7008,1,0,0,0,7010,7012,1,0,0,0,7011,7013, - 5,882,0,0,7012,7011,1,0,0,0,7013,7014,1,0,0,0,7014,7012,1,0,0,0, - 7014,7015,1,0,0,0,7015,7028,1,0,0,0,7016,7018,5,888,0,0,7017,7016, - 1,0,0,0,7017,7018,1,0,0,0,7018,7019,1,0,0,0,7019,7022,5,882,0,0, - 7020,7022,5,881,0,0,7021,7017,1,0,0,0,7021,7020,1,0,0,0,7022,7025, - 1,0,0,0,7023,7024,5,28,0,0,7024,7026,3,686,343,0,7025,7023,1,0,0, - 0,7025,7026,1,0,0,0,7026,7028,1,0,0,0,7027,7009,1,0,0,0,7027,7021, - 1,0,0,0,7028,713,1,0,0,0,7029,7030,7,114,0,0,7030,715,1,0,0,0,7031, - 7033,5,888,0,0,7032,7031,1,0,0,0,7032,7033,1,0,0,0,7033,7034,1,0, - 0,0,7034,7035,5,884,0,0,7035,717,1,0,0,0,7036,7038,5,114,0,0,7037, - 7036,1,0,0,0,7037,7038,1,0,0,0,7038,7039,1,0,0,0,7039,7040,7,115, - 0,0,7040,719,1,0,0,0,7041,7054,3,712,356,0,7042,7054,3,708,354,0, - 7043,7044,5,854,0,0,7044,7054,3,708,354,0,7045,7054,3,716,358,0, - 7046,7054,3,714,357,0,7047,7054,5,885,0,0,7048,7054,5,887,0,0,7049, - 7051,5,114,0,0,7050,7049,1,0,0,0,7050,7051,1,0,0,0,7051,7052,1,0, - 0,0,7052,7054,7,115,0,0,7053,7041,1,0,0,0,7053,7042,1,0,0,0,7053, - 7043,1,0,0,0,7053,7045,1,0,0,0,7053,7046,1,0,0,0,7053,7047,1,0,0, - 0,7053,7048,1,0,0,0,7053,7050,1,0,0,0,7054,721,1,0,0,0,7055,7057, - 7,116,0,0,7056,7058,5,240,0,0,7057,7056,1,0,0,0,7057,7058,1,0,0, - 0,7058,7060,1,0,0,0,7059,7061,3,728,364,0,7060,7059,1,0,0,0,7060, - 7061,1,0,0,0,7061,7063,1,0,0,0,7062,7064,5,228,0,0,7063,7062,1,0, - 0,0,7063,7064,1,0,0,0,7064,7068,1,0,0,0,7065,7066,3,54,27,0,7066, - 7067,3,684,342,0,7067,7069,1,0,0,0,7068,7065,1,0,0,0,7068,7069,1, - 0,0,0,7069,7073,1,0,0,0,7070,7071,5,28,0,0,7071,7074,3,686,343,0, - 7072,7074,5,228,0,0,7073,7070,1,0,0,0,7073,7072,1,0,0,0,7073,7074, - 1,0,0,0,7074,7182,1,0,0,0,7075,7076,5,227,0,0,7076,7077,7,117,0, - 0,7077,7079,5,240,0,0,7078,7080,3,728,364,0,7079,7078,1,0,0,0,7079, - 7080,1,0,0,0,7080,7082,1,0,0,0,7081,7083,5,228,0,0,7082,7081,1,0, - 0,0,7082,7083,1,0,0,0,7083,7182,1,0,0,0,7084,7085,5,227,0,0,7085, - 7087,7,118,0,0,7086,7088,3,728,364,0,7087,7086,1,0,0,0,7087,7088, - 1,0,0,0,7088,7090,1,0,0,0,7089,7091,5,228,0,0,7090,7089,1,0,0,0, - 7090,7091,1,0,0,0,7091,7182,1,0,0,0,7092,7093,5,498,0,0,7093,7095, - 5,225,0,0,7094,7096,3,728,364,0,7095,7094,1,0,0,0,7095,7096,1,0, - 0,0,7096,7098,1,0,0,0,7097,7099,5,228,0,0,7098,7097,1,0,0,0,7098, - 7099,1,0,0,0,7099,7182,1,0,0,0,7100,7102,7,119,0,0,7101,7103,3,728, - 364,0,7102,7101,1,0,0,0,7102,7103,1,0,0,0,7103,7107,1,0,0,0,7104, - 7106,7,120,0,0,7105,7104,1,0,0,0,7106,7109,1,0,0,0,7107,7105,1,0, - 0,0,7107,7108,1,0,0,0,7108,7182,1,0,0,0,7109,7107,1,0,0,0,7110,7112, - 5,210,0,0,7111,7113,3,730,365,0,7112,7111,1,0,0,0,7112,7113,1,0, - 0,0,7113,7117,1,0,0,0,7114,7116,7,120,0,0,7115,7114,1,0,0,0,7116, - 7119,1,0,0,0,7117,7115,1,0,0,0,7117,7118,1,0,0,0,7118,7182,1,0,0, - 0,7119,7117,1,0,0,0,7120,7122,5,211,0,0,7121,7123,5,212,0,0,7122, - 7121,1,0,0,0,7122,7123,1,0,0,0,7123,7125,1,0,0,0,7124,7126,3,730, - 365,0,7125,7124,1,0,0,0,7125,7126,1,0,0,0,7126,7130,1,0,0,0,7127, - 7129,7,120,0,0,7128,7127,1,0,0,0,7129,7132,1,0,0,0,7130,7128,1,0, - 0,0,7130,7131,1,0,0,0,7131,7182,1,0,0,0,7132,7130,1,0,0,0,7133,7135, - 7,121,0,0,7134,7136,3,732,366,0,7135,7134,1,0,0,0,7135,7136,1,0, - 0,0,7136,7140,1,0,0,0,7137,7139,7,120,0,0,7138,7137,1,0,0,0,7139, - 7142,1,0,0,0,7140,7138,1,0,0,0,7140,7141,1,0,0,0,7141,7182,1,0,0, - 0,7142,7140,1,0,0,0,7143,7182,7,122,0,0,7144,7146,7,123,0,0,7145, - 7147,3,728,364,0,7146,7145,1,0,0,0,7146,7147,1,0,0,0,7147,7182,1, - 0,0,0,7148,7149,7,124,0,0,7149,7151,3,724,362,0,7150,7152,5,228, - 0,0,7151,7150,1,0,0,0,7151,7152,1,0,0,0,7152,7156,1,0,0,0,7153,7154, - 3,54,27,0,7154,7155,3,684,342,0,7155,7157,1,0,0,0,7156,7153,1,0, - 0,0,7156,7157,1,0,0,0,7157,7182,1,0,0,0,7158,7161,7,125,0,0,7159, - 7160,5,834,0,0,7160,7162,3,708,354,0,7161,7159,1,0,0,0,7161,7162, - 1,0,0,0,7162,7182,1,0,0,0,7163,7165,5,233,0,0,7164,7166,5,225,0, - 0,7165,7164,1,0,0,0,7165,7166,1,0,0,0,7166,7168,1,0,0,0,7167,7169, - 5,228,0,0,7168,7167,1,0,0,0,7168,7169,1,0,0,0,7169,7173,1,0,0,0, - 7170,7171,3,54,27,0,7171,7172,3,684,342,0,7172,7174,1,0,0,0,7173, - 7170,1,0,0,0,7173,7174,1,0,0,0,7174,7177,1,0,0,0,7175,7176,5,28, - 0,0,7176,7178,3,686,343,0,7177,7175,1,0,0,0,7177,7178,1,0,0,0,7178, - 7182,1,0,0,0,7179,7180,5,233,0,0,7180,7182,5,229,0,0,7181,7055,1, - 0,0,0,7181,7075,1,0,0,0,7181,7084,1,0,0,0,7181,7092,1,0,0,0,7181, - 7100,1,0,0,0,7181,7110,1,0,0,0,7181,7120,1,0,0,0,7181,7133,1,0,0, - 0,7181,7143,1,0,0,0,7181,7144,1,0,0,0,7181,7148,1,0,0,0,7181,7158, - 1,0,0,0,7181,7163,1,0,0,0,7181,7179,1,0,0,0,7182,723,1,0,0,0,7183, - 7184,5,866,0,0,7184,7189,5,882,0,0,7185,7186,5,868,0,0,7186,7188, - 5,882,0,0,7187,7185,1,0,0,0,7188,7191,1,0,0,0,7189,7187,1,0,0,0, - 7189,7190,1,0,0,0,7190,7192,1,0,0,0,7191,7189,1,0,0,0,7192,7193, - 5,867,0,0,7193,725,1,0,0,0,7194,7196,7,126,0,0,7195,7197,3,728,364, - 0,7196,7195,1,0,0,0,7196,7197,1,0,0,0,7197,7217,1,0,0,0,7198,7200, - 5,224,0,0,7199,7201,3,728,364,0,7200,7199,1,0,0,0,7200,7201,1,0, - 0,0,7201,7205,1,0,0,0,7202,7203,3,54,27,0,7203,7204,3,684,342,0, - 7204,7206,1,0,0,0,7205,7202,1,0,0,0,7205,7206,1,0,0,0,7206,7217, - 1,0,0,0,7207,7217,7,127,0,0,7208,7210,7,128,0,0,7209,7211,3,732, - 366,0,7210,7209,1,0,0,0,7210,7211,1,0,0,0,7211,7217,1,0,0,0,7212, - 7214,7,129,0,0,7213,7215,7,130,0,0,7214,7213,1,0,0,0,7214,7215,1, - 0,0,0,7215,7217,1,0,0,0,7216,7194,1,0,0,0,7216,7198,1,0,0,0,7216, - 7207,1,0,0,0,7216,7208,1,0,0,0,7216,7212,1,0,0,0,7217,7219,1,0,0, - 0,7218,7220,5,12,0,0,7219,7218,1,0,0,0,7219,7220,1,0,0,0,7220,727, - 1,0,0,0,7221,7222,5,866,0,0,7222,7223,3,708,354,0,7223,7224,5,867, - 0,0,7224,729,1,0,0,0,7225,7226,5,866,0,0,7226,7227,3,708,354,0,7227, - 7228,5,868,0,0,7228,7229,3,708,354,0,7229,7230,5,867,0,0,7230,731, - 1,0,0,0,7231,7232,5,866,0,0,7232,7235,3,708,354,0,7233,7234,5,868, - 0,0,7234,7236,3,708,354,0,7235,7233,1,0,0,0,7235,7236,1,0,0,0,7236, - 7237,1,0,0,0,7237,7238,5,867,0,0,7238,733,1,0,0,0,7239,7240,5,866, - 0,0,7240,7245,3,670,335,0,7241,7242,5,868,0,0,7242,7244,3,670,335, - 0,7243,7241,1,0,0,0,7244,7247,1,0,0,0,7245,7243,1,0,0,0,7245,7246, - 1,0,0,0,7246,7248,1,0,0,0,7247,7245,1,0,0,0,7248,7249,5,867,0,0, - 7249,735,1,0,0,0,7250,7255,3,800,400,0,7251,7252,5,868,0,0,7252, - 7254,3,800,400,0,7253,7251,1,0,0,0,7254,7257,1,0,0,0,7255,7253,1, - 0,0,0,7255,7256,1,0,0,0,7256,737,1,0,0,0,7257,7255,1,0,0,0,7258, - 7259,7,131,0,0,7259,7264,3,740,370,0,7260,7261,5,868,0,0,7261,7263, - 3,740,370,0,7262,7260,1,0,0,0,7263,7266,1,0,0,0,7264,7262,1,0,0, - 0,7264,7265,1,0,0,0,7265,739,1,0,0,0,7266,7264,1,0,0,0,7267,7268, - 5,866,0,0,7268,7273,3,742,371,0,7269,7270,5,868,0,0,7270,7272,3, - 742,371,0,7271,7269,1,0,0,0,7272,7275,1,0,0,0,7273,7271,1,0,0,0, - 7273,7274,1,0,0,0,7274,7276,1,0,0,0,7275,7273,1,0,0,0,7276,7277, - 5,867,0,0,7277,741,1,0,0,0,7278,7281,3,800,400,0,7279,7281,5,42, - 0,0,7280,7278,1,0,0,0,7280,7279,1,0,0,0,7281,743,1,0,0,0,7282,7287, - 3,720,360,0,7283,7284,5,868,0,0,7284,7286,3,720,360,0,7285,7283, - 1,0,0,0,7286,7289,1,0,0,0,7287,7285,1,0,0,0,7287,7288,1,0,0,0,7288, - 745,1,0,0,0,7289,7287,1,0,0,0,7290,7295,5,882,0,0,7291,7292,5,868, - 0,0,7292,7294,5,882,0,0,7293,7291,1,0,0,0,7294,7297,1,0,0,0,7295, - 7293,1,0,0,0,7295,7296,1,0,0,0,7296,747,1,0,0,0,7297,7295,1,0,0, - 0,7298,7303,5,892,0,0,7299,7300,5,868,0,0,7300,7302,5,892,0,0,7301, - 7299,1,0,0,0,7302,7305,1,0,0,0,7303,7301,1,0,0,0,7303,7304,1,0,0, - 0,7304,749,1,0,0,0,7305,7303,1,0,0,0,7306,7333,5,116,0,0,7307,7308, - 5,24,0,0,7308,7309,5,866,0,0,7309,7310,3,800,400,0,7310,7311,5,13, - 0,0,7311,7312,3,726,363,0,7312,7313,5,867,0,0,7313,7333,1,0,0,0, - 7314,7316,3,806,403,0,7315,7314,1,0,0,0,7315,7316,1,0,0,0,7316,7317, - 1,0,0,0,7317,7333,3,720,360,0,7318,7322,3,752,376,0,7319,7320,5, - 119,0,0,7320,7321,5,185,0,0,7321,7323,3,752,376,0,7322,7319,1,0, - 0,0,7322,7323,1,0,0,0,7323,7333,1,0,0,0,7324,7325,5,866,0,0,7325, - 7326,3,800,400,0,7326,7327,5,867,0,0,7327,7333,1,0,0,0,7328,7329, - 5,866,0,0,7329,7330,3,698,349,0,7330,7331,5,867,0,0,7331,7333,1, - 0,0,0,7332,7306,1,0,0,0,7332,7307,1,0,0,0,7332,7315,1,0,0,0,7332, - 7318,1,0,0,0,7332,7324,1,0,0,0,7332,7328,1,0,0,0,7333,751,1,0,0, - 0,7334,7340,7,132,0,0,7335,7337,5,866,0,0,7336,7338,3,708,354,0, - 7337,7336,1,0,0,0,7337,7338,1,0,0,0,7338,7339,1,0,0,0,7339,7341, - 5,867,0,0,7340,7335,1,0,0,0,7340,7341,1,0,0,0,7341,7349,1,0,0,0, - 7342,7343,5,295,0,0,7343,7345,5,866,0,0,7344,7346,3,708,354,0,7345, - 7344,1,0,0,0,7345,7346,1,0,0,0,7346,7347,1,0,0,0,7347,7349,5,867, - 0,0,7348,7334,1,0,0,0,7348,7342,1,0,0,0,7349,753,1,0,0,0,7350,7351, - 5,78,0,0,7351,7352,5,60,0,0,7352,755,1,0,0,0,7353,7354,5,78,0,0, - 7354,7355,5,114,0,0,7355,7356,5,60,0,0,7356,757,1,0,0,0,7357,7358, - 5,124,0,0,7358,7359,5,143,0,0,7359,759,1,0,0,0,7360,7379,3,762,381, - 0,7361,7379,3,770,385,0,7362,7379,3,772,386,0,7363,7364,3,792,396, - 0,7364,7366,5,866,0,0,7365,7367,3,796,398,0,7366,7365,1,0,0,0,7366, - 7367,1,0,0,0,7367,7368,1,0,0,0,7368,7369,5,867,0,0,7369,7379,1,0, - 0,0,7370,7371,3,628,314,0,7371,7373,5,866,0,0,7372,7374,3,796,398, - 0,7373,7372,1,0,0,0,7373,7374,1,0,0,0,7374,7375,1,0,0,0,7375,7376, - 5,867,0,0,7376,7379,1,0,0,0,7377,7379,3,794,397,0,7378,7360,1,0, - 0,0,7378,7361,1,0,0,0,7378,7362,1,0,0,0,7378,7363,1,0,0,0,7378,7370, - 1,0,0,0,7378,7377,1,0,0,0,7379,761,1,0,0,0,7380,7383,7,133,0,0,7381, - 7382,5,866,0,0,7382,7384,5,867,0,0,7383,7381,1,0,0,0,7383,7384,1, - 0,0,0,7384,7560,1,0,0,0,7385,7560,3,56,28,0,7386,7387,5,33,0,0,7387, - 7388,5,866,0,0,7388,7389,3,800,400,0,7389,7390,5,868,0,0,7390,7391, - 3,726,363,0,7391,7392,5,867,0,0,7392,7560,1,0,0,0,7393,7394,5,33, - 0,0,7394,7395,5,866,0,0,7395,7396,3,800,400,0,7396,7397,5,188,0, - 0,7397,7398,3,684,342,0,7398,7399,5,867,0,0,7399,7560,1,0,0,0,7400, - 7401,5,24,0,0,7401,7402,5,866,0,0,7402,7403,3,800,400,0,7403,7404, - 5,13,0,0,7404,7405,3,726,363,0,7405,7406,5,867,0,0,7406,7560,1,0, - 0,0,7407,7408,5,189,0,0,7408,7409,5,866,0,0,7409,7410,3,658,329, - 0,7410,7411,5,867,0,0,7411,7560,1,0,0,0,7412,7413,5,23,0,0,7413, - 7415,3,800,400,0,7414,7416,3,764,382,0,7415,7414,1,0,0,0,7416,7417, - 1,0,0,0,7417,7415,1,0,0,0,7417,7418,1,0,0,0,7418,7421,1,0,0,0,7419, - 7420,5,53,0,0,7420,7422,3,798,399,0,7421,7419,1,0,0,0,7421,7422, - 1,0,0,0,7422,7423,1,0,0,0,7423,7424,5,378,0,0,7424,7560,1,0,0,0, - 7425,7427,5,23,0,0,7426,7428,3,764,382,0,7427,7426,1,0,0,0,7428, - 7429,1,0,0,0,7429,7427,1,0,0,0,7429,7430,1,0,0,0,7430,7433,1,0,0, - 0,7431,7432,5,53,0,0,7432,7434,3,798,399,0,7433,7431,1,0,0,0,7433, - 7434,1,0,0,0,7434,7435,1,0,0,0,7435,7436,5,378,0,0,7436,7560,1,0, - 0,0,7437,7438,5,224,0,0,7438,7439,5,866,0,0,7439,7442,3,796,398, - 0,7440,7441,5,188,0,0,7441,7443,3,684,342,0,7442,7440,1,0,0,0,7442, - 7443,1,0,0,0,7443,7444,1,0,0,0,7444,7445,5,867,0,0,7445,7560,1,0, - 0,0,7446,7447,5,296,0,0,7447,7450,5,866,0,0,7448,7451,3,712,356, - 0,7449,7451,3,800,400,0,7450,7448,1,0,0,0,7450,7449,1,0,0,0,7451, - 7452,1,0,0,0,7452,7455,5,80,0,0,7453,7456,3,712,356,0,7454,7456, - 3,800,400,0,7455,7453,1,0,0,0,7455,7454,1,0,0,0,7456,7457,1,0,0, - 0,7457,7458,5,867,0,0,7458,7560,1,0,0,0,7459,7460,7,134,0,0,7460, - 7463,5,866,0,0,7461,7464,3,712,356,0,7462,7464,3,800,400,0,7463, - 7461,1,0,0,0,7463,7462,1,0,0,0,7464,7465,1,0,0,0,7465,7468,5,68, - 0,0,7466,7469,3,708,354,0,7467,7469,3,800,400,0,7468,7466,1,0,0, - 0,7468,7467,1,0,0,0,7469,7475,1,0,0,0,7470,7473,5,65,0,0,7471,7474, - 3,708,354,0,7472,7474,3,800,400,0,7473,7471,1,0,0,0,7473,7472,1, - 0,0,0,7474,7476,1,0,0,0,7475,7470,1,0,0,0,7475,7476,1,0,0,0,7476, - 7477,1,0,0,0,7477,7478,5,867,0,0,7478,7560,1,0,0,0,7479,7480,5,300, - 0,0,7480,7481,5,866,0,0,7481,7484,7,135,0,0,7482,7485,3,712,356, - 0,7483,7485,3,800,400,0,7484,7482,1,0,0,0,7484,7483,1,0,0,0,7484, - 7485,1,0,0,0,7485,7486,1,0,0,0,7486,7489,5,68,0,0,7487,7490,3,712, - 356,0,7488,7490,3,800,400,0,7489,7487,1,0,0,0,7489,7488,1,0,0,0, - 7490,7491,1,0,0,0,7491,7492,5,867,0,0,7492,7560,1,0,0,0,7493,7494, - 5,300,0,0,7494,7497,5,866,0,0,7495,7498,3,712,356,0,7496,7498,3, - 800,400,0,7497,7495,1,0,0,0,7497,7496,1,0,0,0,7498,7499,1,0,0,0, - 7499,7502,5,68,0,0,7500,7503,3,712,356,0,7501,7503,3,800,400,0,7502, - 7500,1,0,0,0,7502,7501,1,0,0,0,7503,7504,1,0,0,0,7504,7505,5,867, - 0,0,7505,7560,1,0,0,0,7506,7507,5,840,0,0,7507,7510,5,866,0,0,7508, - 7511,3,712,356,0,7509,7511,3,800,400,0,7510,7508,1,0,0,0,7510,7509, - 1,0,0,0,7511,7518,1,0,0,0,7512,7513,5,13,0,0,7513,7514,7,136,0,0, - 7514,7515,5,866,0,0,7515,7516,3,708,354,0,7516,7517,5,867,0,0,7517, - 7519,1,0,0,0,7518,7512,1,0,0,0,7518,7519,1,0,0,0,7519,7521,1,0,0, - 0,7520,7522,3,766,383,0,7521,7520,1,0,0,0,7521,7522,1,0,0,0,7522, - 7523,1,0,0,0,7523,7524,5,867,0,0,7524,7560,1,0,0,0,7525,7526,5,293, - 0,0,7526,7527,5,866,0,0,7527,7528,3,66,33,0,7528,7531,5,68,0,0,7529, - 7532,3,712,356,0,7530,7532,3,800,400,0,7531,7529,1,0,0,0,7531,7530, - 1,0,0,0,7532,7533,1,0,0,0,7533,7534,5,867,0,0,7534,7560,1,0,0,0, - 7535,7536,5,827,0,0,7536,7537,5,866,0,0,7537,7538,7,137,0,0,7538, - 7539,5,868,0,0,7539,7540,3,712,356,0,7540,7541,5,867,0,0,7541,7560, - 1,0,0,0,7542,7543,5,254,0,0,7543,7544,5,866,0,0,7544,7545,3,800, - 400,0,7545,7546,5,868,0,0,7546,7549,3,800,400,0,7547,7548,5,579, - 0,0,7548,7550,3,726,363,0,7549,7547,1,0,0,0,7549,7550,1,0,0,0,7550, - 7552,1,0,0,0,7551,7553,3,286,143,0,7552,7551,1,0,0,0,7552,7553,1, - 0,0,0,7553,7555,1,0,0,0,7554,7556,3,288,144,0,7555,7554,1,0,0,0, - 7555,7556,1,0,0,0,7556,7557,1,0,0,0,7557,7558,5,867,0,0,7558,7560, - 1,0,0,0,7559,7380,1,0,0,0,7559,7385,1,0,0,0,7559,7386,1,0,0,0,7559, - 7393,1,0,0,0,7559,7400,1,0,0,0,7559,7407,1,0,0,0,7559,7412,1,0,0, - 0,7559,7425,1,0,0,0,7559,7437,1,0,0,0,7559,7446,1,0,0,0,7559,7459, - 1,0,0,0,7559,7479,1,0,0,0,7559,7493,1,0,0,0,7559,7506,1,0,0,0,7559, - 7525,1,0,0,0,7559,7535,1,0,0,0,7559,7542,1,0,0,0,7560,763,1,0,0, - 0,7561,7562,5,191,0,0,7562,7563,3,798,399,0,7563,7564,5,175,0,0, - 7564,7565,3,798,399,0,7565,765,1,0,0,0,7566,7567,5,448,0,0,7567, - 7572,3,768,384,0,7568,7569,5,868,0,0,7569,7571,3,768,384,0,7570, - 7568,1,0,0,0,7571,7574,1,0,0,0,7572,7570,1,0,0,0,7572,7573,1,0,0, - 0,7573,7581,1,0,0,0,7574,7572,1,0,0,0,7575,7576,5,448,0,0,7576,7577, - 3,708,354,0,7577,7578,5,854,0,0,7578,7579,3,708,354,0,7579,7581, - 1,0,0,0,7580,7566,1,0,0,0,7580,7575,1,0,0,0,7581,767,1,0,0,0,7582, - 7584,3,708,354,0,7583,7585,7,138,0,0,7584,7583,1,0,0,0,7584,7585, - 1,0,0,0,7585,769,1,0,0,0,7586,7587,7,139,0,0,7587,7589,5,866,0,0, - 7588,7590,7,44,0,0,7589,7588,1,0,0,0,7589,7590,1,0,0,0,7590,7591, - 1,0,0,0,7591,7592,3,798,399,0,7592,7594,5,867,0,0,7593,7595,3,774, - 387,0,7594,7593,1,0,0,0,7594,7595,1,0,0,0,7595,7646,1,0,0,0,7596, - 7597,5,262,0,0,7597,7605,5,866,0,0,7598,7606,5,850,0,0,7599,7601, - 5,7,0,0,7600,7599,1,0,0,0,7600,7601,1,0,0,0,7601,7602,1,0,0,0,7602, - 7606,3,798,399,0,7603,7604,5,49,0,0,7604,7606,3,796,398,0,7605,7598, - 1,0,0,0,7605,7600,1,0,0,0,7605,7603,1,0,0,0,7606,7607,1,0,0,0,7607, - 7609,5,867,0,0,7608,7610,3,774,387,0,7609,7608,1,0,0,0,7609,7610, - 1,0,0,0,7610,7646,1,0,0,0,7611,7612,7,140,0,0,7612,7614,5,866,0, - 0,7613,7615,5,7,0,0,7614,7613,1,0,0,0,7614,7615,1,0,0,0,7615,7616, - 1,0,0,0,7616,7617,3,798,399,0,7617,7619,5,867,0,0,7618,7620,3,774, - 387,0,7619,7618,1,0,0,0,7619,7620,1,0,0,0,7620,7646,1,0,0,0,7621, - 7622,5,266,0,0,7622,7624,5,866,0,0,7623,7625,5,49,0,0,7624,7623, - 1,0,0,0,7624,7625,1,0,0,0,7625,7626,1,0,0,0,7626,7637,3,796,398, - 0,7627,7628,5,125,0,0,7628,7629,5,20,0,0,7629,7634,3,254,127,0,7630, - 7631,5,868,0,0,7631,7633,3,254,127,0,7632,7630,1,0,0,0,7633,7636, - 1,0,0,0,7634,7632,1,0,0,0,7634,7635,1,0,0,0,7635,7638,1,0,0,0,7636, - 7634,1,0,0,0,7637,7627,1,0,0,0,7637,7638,1,0,0,0,7638,7641,1,0,0, - 0,7639,7640,5,156,0,0,7640,7642,5,882,0,0,7641,7639,1,0,0,0,7641, - 7642,1,0,0,0,7642,7643,1,0,0,0,7643,7644,5,867,0,0,7644,7646,1,0, - 0,0,7645,7586,1,0,0,0,7645,7596,1,0,0,0,7645,7611,1,0,0,0,7645,7621, - 1,0,0,0,7646,771,1,0,0,0,7647,7648,7,141,0,0,7648,7649,5,866,0,0, - 7649,7652,3,800,400,0,7650,7651,5,868,0,0,7651,7653,3,708,354,0, - 7652,7650,1,0,0,0,7652,7653,1,0,0,0,7653,7656,1,0,0,0,7654,7655, - 5,868,0,0,7655,7657,3,708,354,0,7656,7654,1,0,0,0,7656,7657,1,0, - 0,0,7657,7658,1,0,0,0,7658,7659,5,867,0,0,7659,7660,3,774,387,0, - 7660,7686,1,0,0,0,7661,7662,7,142,0,0,7662,7663,5,866,0,0,7663,7664, - 3,800,400,0,7664,7665,5,867,0,0,7665,7666,3,774,387,0,7666,7686, - 1,0,0,0,7667,7668,7,143,0,0,7668,7669,5,866,0,0,7669,7670,5,867, - 0,0,7670,7686,3,774,387,0,7671,7672,5,273,0,0,7672,7673,5,866,0, - 0,7673,7674,3,800,400,0,7674,7675,5,868,0,0,7675,7676,3,708,354, - 0,7676,7677,5,867,0,0,7677,7678,3,774,387,0,7678,7686,1,0,0,0,7679, - 7680,5,272,0,0,7680,7681,5,866,0,0,7681,7682,3,708,354,0,7682,7683, - 5,867,0,0,7683,7684,3,774,387,0,7684,7686,1,0,0,0,7685,7647,1,0, - 0,0,7685,7661,1,0,0,0,7685,7667,1,0,0,0,7685,7671,1,0,0,0,7685,7679, - 1,0,0,0,7686,773,1,0,0,0,7687,7693,5,129,0,0,7688,7689,5,866,0,0, - 7689,7690,3,776,388,0,7690,7691,5,867,0,0,7691,7694,1,0,0,0,7692, - 7694,3,778,389,0,7693,7688,1,0,0,0,7693,7692,1,0,0,0,7694,775,1, - 0,0,0,7695,7697,3,778,389,0,7696,7695,1,0,0,0,7696,7697,1,0,0,0, - 7697,7699,1,0,0,0,7698,7700,3,790,395,0,7699,7698,1,0,0,0,7699,7700, - 1,0,0,0,7700,7702,1,0,0,0,7701,7703,3,252,126,0,7702,7701,1,0,0, - 0,7702,7703,1,0,0,0,7703,7705,1,0,0,0,7704,7706,3,780,390,0,7705, - 7704,1,0,0,0,7705,7706,1,0,0,0,7706,777,1,0,0,0,7707,7708,3,702, - 351,0,7708,779,1,0,0,0,7709,7710,3,782,391,0,7710,7711,3,784,392, - 0,7711,781,1,0,0,0,7712,7713,7,144,0,0,7713,783,1,0,0,0,7714,7717, - 3,788,394,0,7715,7717,3,786,393,0,7716,7714,1,0,0,0,7716,7715,1, - 0,0,0,7717,785,1,0,0,0,7718,7719,5,17,0,0,7719,7720,3,788,394,0, - 7720,7721,5,11,0,0,7721,7722,3,788,394,0,7722,787,1,0,0,0,7723,7724, - 5,36,0,0,7724,7731,5,586,0,0,7725,7726,5,669,0,0,7726,7731,7,145, - 0,0,7727,7728,3,800,400,0,7728,7729,7,145,0,0,7729,7731,1,0,0,0, - 7730,7723,1,0,0,0,7730,7725,1,0,0,0,7730,7727,1,0,0,0,7731,789,1, - 0,0,0,7732,7733,5,130,0,0,7733,7734,5,20,0,0,7734,7739,3,800,400, - 0,7735,7736,5,868,0,0,7736,7738,3,800,400,0,7737,7735,1,0,0,0,7738, - 7741,1,0,0,0,7739,7737,1,0,0,0,7739,7740,1,0,0,0,7740,791,1,0,0, - 0,7741,7739,1,0,0,0,7742,7767,3,832,416,0,7743,7767,5,757,0,0,7744, - 7767,5,289,0,0,7745,7767,5,285,0,0,7746,7767,5,286,0,0,7747,7767, - 5,287,0,0,7748,7767,5,290,0,0,7749,7767,5,291,0,0,7750,7767,5,292, - 0,0,7751,7767,5,78,0,0,7752,7767,5,86,0,0,7753,7767,5,288,0,0,7754, - 7767,5,294,0,0,7755,7767,5,488,0,0,7756,7767,5,295,0,0,7757,7767, - 5,142,0,0,7758,7767,5,143,0,0,7759,7767,5,297,0,0,7760,7767,5,298, - 0,0,7761,7767,5,299,0,0,7762,7767,5,300,0,0,7763,7767,5,301,0,0, - 7764,7767,5,302,0,0,7765,7767,5,303,0,0,7766,7742,1,0,0,0,7766,7743, - 1,0,0,0,7766,7744,1,0,0,0,7766,7745,1,0,0,0,7766,7746,1,0,0,0,7766, - 7747,1,0,0,0,7766,7748,1,0,0,0,7766,7749,1,0,0,0,7766,7750,1,0,0, - 0,7766,7751,1,0,0,0,7766,7752,1,0,0,0,7766,7753,1,0,0,0,7766,7754, - 1,0,0,0,7766,7755,1,0,0,0,7766,7756,1,0,0,0,7766,7757,1,0,0,0,7766, - 7758,1,0,0,0,7766,7759,1,0,0,0,7766,7760,1,0,0,0,7766,7761,1,0,0, - 0,7766,7762,1,0,0,0,7766,7763,1,0,0,0,7766,7764,1,0,0,0,7766,7765, - 1,0,0,0,7767,793,1,0,0,0,7768,7769,7,146,0,0,7769,7770,5,866,0,0, - 7770,7771,3,798,399,0,7771,7772,5,867,0,0,7772,795,1,0,0,0,7773, - 7778,3,798,399,0,7774,7775,5,868,0,0,7775,7777,3,798,399,0,7776, - 7774,1,0,0,0,7777,7780,1,0,0,0,7778,7776,1,0,0,0,7778,7779,1,0,0, - 0,7779,797,1,0,0,0,7780,7778,1,0,0,0,7781,7786,3,720,360,0,7782, - 7786,3,658,329,0,7783,7786,3,760,380,0,7784,7786,3,800,400,0,7785, - 7781,1,0,0,0,7785,7782,1,0,0,0,7785,7783,1,0,0,0,7785,7784,1,0,0, - 0,7786,799,1,0,0,0,7787,7788,6,400,-1,0,7788,7789,7,147,0,0,7789, - 7799,3,800,400,4,7790,7791,3,802,401,0,7791,7793,5,89,0,0,7792,7794, - 5,114,0,0,7793,7792,1,0,0,0,7793,7794,1,0,0,0,7794,7795,1,0,0,0, - 7795,7796,7,148,0,0,7796,7799,1,0,0,0,7797,7799,3,802,401,0,7798, - 7787,1,0,0,0,7798,7790,1,0,0,0,7798,7797,1,0,0,0,7799,7806,1,0,0, - 0,7800,7801,10,3,0,0,7801,7802,3,812,406,0,7802,7803,3,800,400,4, - 7803,7805,1,0,0,0,7804,7800,1,0,0,0,7805,7808,1,0,0,0,7806,7804, - 1,0,0,0,7806,7807,1,0,0,0,7807,801,1,0,0,0,7808,7806,1,0,0,0,7809, - 7810,6,401,-1,0,7810,7811,3,804,402,0,7811,7876,1,0,0,0,7812,7813, - 10,8,0,0,7813,7814,3,808,404,0,7814,7815,3,802,401,9,7815,7875,1, - 0,0,0,7816,7818,10,6,0,0,7817,7819,5,114,0,0,7818,7817,1,0,0,0,7818, - 7819,1,0,0,0,7819,7820,1,0,0,0,7820,7821,5,17,0,0,7821,7822,3,802, - 401,0,7822,7823,5,11,0,0,7823,7824,3,802,401,7,7824,7875,1,0,0,0, - 7825,7826,10,5,0,0,7826,7827,5,604,0,0,7827,7828,5,99,0,0,7828,7875, - 3,802,401,6,7829,7831,10,3,0,0,7830,7832,5,114,0,0,7831,7830,1,0, - 0,0,7831,7832,1,0,0,0,7832,7833,1,0,0,0,7833,7834,7,149,0,0,7834, - 7875,3,802,401,4,7835,7837,10,10,0,0,7836,7838,5,114,0,0,7837,7836, - 1,0,0,0,7837,7838,1,0,0,0,7838,7839,1,0,0,0,7839,7840,5,80,0,0,7840, - 7843,5,866,0,0,7841,7844,3,204,102,0,7842,7844,3,736,368,0,7843, - 7841,1,0,0,0,7843,7842,1,0,0,0,7844,7845,1,0,0,0,7845,7846,5,867, - 0,0,7846,7875,1,0,0,0,7847,7848,10,9,0,0,7848,7849,5,89,0,0,7849, - 7875,3,718,359,0,7850,7851,10,7,0,0,7851,7852,3,808,404,0,7852,7853, - 7,150,0,0,7853,7854,5,866,0,0,7854,7855,3,204,102,0,7855,7856,5, - 867,0,0,7856,7875,1,0,0,0,7857,7859,10,4,0,0,7858,7860,5,114,0,0, - 7859,7858,1,0,0,0,7859,7860,1,0,0,0,7860,7861,1,0,0,0,7861,7862, - 5,99,0,0,7862,7865,3,802,401,0,7863,7864,5,384,0,0,7864,7866,5,882, - 0,0,7865,7863,1,0,0,0,7865,7866,1,0,0,0,7866,7875,1,0,0,0,7867,7868, - 10,2,0,0,7868,7869,5,485,0,0,7869,7870,5,510,0,0,7870,7871,5,866, - 0,0,7871,7872,3,802,401,0,7872,7873,5,867,0,0,7873,7875,1,0,0,0, - 7874,7812,1,0,0,0,7874,7816,1,0,0,0,7874,7825,1,0,0,0,7874,7829, - 1,0,0,0,7874,7835,1,0,0,0,7874,7847,1,0,0,0,7874,7850,1,0,0,0,7874, - 7857,1,0,0,0,7874,7867,1,0,0,0,7875,7878,1,0,0,0,7876,7874,1,0,0, - 0,7876,7877,1,0,0,0,7877,803,1,0,0,0,7878,7876,1,0,0,0,7879,7880, - 6,402,-1,0,7880,7928,3,720,360,0,7881,7928,3,658,329,0,7882,7928, - 3,760,380,0,7883,7928,3,682,341,0,7884,7885,3,806,403,0,7885,7886, - 3,804,402,11,7886,7928,1,0,0,0,7887,7888,5,228,0,0,7888,7928,3,804, - 402,10,7889,7890,5,892,0,0,7890,7891,5,841,0,0,7891,7928,3,804,402, - 9,7892,7893,5,866,0,0,7893,7898,3,800,400,0,7894,7895,5,868,0,0, - 7895,7897,3,800,400,0,7896,7894,1,0,0,0,7897,7900,1,0,0,0,7898,7896, - 1,0,0,0,7898,7899,1,0,0,0,7899,7901,1,0,0,0,7900,7898,1,0,0,0,7901, - 7902,5,867,0,0,7902,7928,1,0,0,0,7903,7904,5,586,0,0,7904,7905,5, - 866,0,0,7905,7908,3,800,400,0,7906,7907,5,868,0,0,7907,7909,3,800, - 400,0,7908,7906,1,0,0,0,7909,7910,1,0,0,0,7910,7908,1,0,0,0,7910, - 7911,1,0,0,0,7911,7912,1,0,0,0,7912,7913,5,867,0,0,7913,7928,1,0, - 0,0,7914,7915,5,60,0,0,7915,7916,5,866,0,0,7916,7917,3,204,102,0, - 7917,7918,5,867,0,0,7918,7928,1,0,0,0,7919,7920,5,866,0,0,7920,7921, - 3,204,102,0,7921,7922,5,867,0,0,7922,7928,1,0,0,0,7923,7924,5,87, - 0,0,7924,7925,3,800,400,0,7925,7926,3,66,33,0,7926,7928,1,0,0,0, - 7927,7879,1,0,0,0,7927,7881,1,0,0,0,7927,7882,1,0,0,0,7927,7883, - 1,0,0,0,7927,7884,1,0,0,0,7927,7887,1,0,0,0,7927,7889,1,0,0,0,7927, - 7892,1,0,0,0,7927,7903,1,0,0,0,7927,7914,1,0,0,0,7927,7919,1,0,0, - 0,7927,7923,1,0,0,0,7928,7946,1,0,0,0,7929,7930,10,3,0,0,7930,7931, - 3,814,407,0,7931,7932,3,804,402,4,7932,7945,1,0,0,0,7933,7934,10, - 2,0,0,7934,7935,3,816,408,0,7935,7936,3,804,402,3,7936,7945,1,0, - 0,0,7937,7938,10,1,0,0,7938,7939,3,818,409,0,7939,7940,3,804,402, - 2,7940,7945,1,0,0,0,7941,7942,10,13,0,0,7942,7943,5,28,0,0,7943, - 7945,3,686,343,0,7944,7929,1,0,0,0,7944,7933,1,0,0,0,7944,7937,1, - 0,0,0,7944,7941,1,0,0,0,7945,7948,1,0,0,0,7946,7944,1,0,0,0,7946, - 7947,1,0,0,0,7947,805,1,0,0,0,7948,7946,1,0,0,0,7949,7950,7,151, - 0,0,7950,807,1,0,0,0,7951,7960,3,810,405,0,7952,7953,5,859,0,0,7953, - 7960,5,858,0,0,7954,7955,5,860,0,0,7955,7960,5,857,0,0,7956,7957, - 5,859,0,0,7957,7958,5,857,0,0,7958,7960,5,858,0,0,7959,7951,1,0, - 0,0,7959,7952,1,0,0,0,7959,7954,1,0,0,0,7959,7956,1,0,0,0,7960,809, - 1,0,0,0,7961,7969,5,857,0,0,7962,7969,5,858,0,0,7963,7969,5,859, - 0,0,7964,7965,5,859,0,0,7965,7969,5,857,0,0,7966,7967,5,858,0,0, - 7967,7969,5,857,0,0,7968,7961,1,0,0,0,7968,7962,1,0,0,0,7968,7963, - 1,0,0,0,7968,7964,1,0,0,0,7968,7966,1,0,0,0,7969,811,1,0,0,0,7970, - 7978,5,11,0,0,7971,7972,5,863,0,0,7972,7978,5,863,0,0,7973,7978, - 5,196,0,0,7974,7978,5,124,0,0,7975,7976,5,862,0,0,7976,7978,5,862, - 0,0,7977,7970,1,0,0,0,7977,7971,1,0,0,0,7977,7973,1,0,0,0,7977,7974, - 1,0,0,0,7977,7975,1,0,0,0,7978,813,1,0,0,0,7979,7980,5,859,0,0,7980, - 7987,5,859,0,0,7981,7982,5,858,0,0,7982,7987,5,858,0,0,7983,7987, - 5,863,0,0,7984,7987,5,864,0,0,7985,7987,5,862,0,0,7986,7979,1,0, - 0,0,7986,7981,1,0,0,0,7986,7983,1,0,0,0,7986,7984,1,0,0,0,7986,7985, - 1,0,0,0,7987,815,1,0,0,0,7988,7989,7,152,0,0,7989,817,1,0,0,0,7990, - 7991,5,854,0,0,7991,7996,5,858,0,0,7992,7993,5,854,0,0,7993,7994, - 5,858,0,0,7994,7996,5,858,0,0,7995,7990,1,0,0,0,7995,7992,1,0,0, - 0,7996,819,1,0,0,0,7997,7998,7,153,0,0,7998,821,1,0,0,0,7999,8000, - 7,154,0,0,8000,823,1,0,0,0,8001,8002,7,155,0,0,8002,825,1,0,0,0, - 8003,8004,7,156,0,0,8004,827,1,0,0,0,8005,8006,7,157,0,0,8006,829, - 1,0,0,0,8007,8008,7,158,0,0,8008,831,1,0,0,0,8009,8010,7,159,0,0, - 8010,833,1,0,0,0,1152,837,844,847,856,899,918,929,945,950,962,997, - 1007,1012,1018,1023,1027,1036,1039,1042,1046,1053,1056,1061,1069, - 1074,1079,1082,1084,1096,1099,1103,1106,1110,1113,1117,1120,1123, - 1127,1130,1134,1140,1144,1149,1155,1162,1170,1188,1195,1199,1205, - 1210,1213,1216,1220,1224,1228,1232,1237,1240,1243,1246,1249,1255, - 1259,1269,1271,1275,1282,1286,1289,1294,1298,1301,1305,1308,1312, - 1325,1328,1332,1335,1339,1342,1346,1349,1353,1356,1359,1363,1366, - 1370,1376,1380,1392,1398,1409,1414,1422,1426,1431,1434,1439,1447, - 1452,1458,1463,1467,1469,1472,1476,1480,1483,1487,1491,1495,1501, - 1504,1511,1516,1522,1529,1535,1543,1546,1553,1556,1558,1564,1570, - 1587,1594,1601,1613,1618,1621,1624,1634,1647,1652,1668,1676,1686, - 1689,1695,1700,1703,1709,1713,1718,1724,1728,1732,1735,1738,1744, - 1748,1753,1764,1767,1774,1777,1781,1787,1799,1802,1807,1820,1827, - 1833,1838,1842,1845,1853,1861,1863,1873,1877,1880,1884,1889,1894, - 1899,1903,1907,1911,1915,1919,1923,1928,1933,1938,1944,1949,1954, - 1959,1964,1969,1975,1980,1985,1990,1995,2000,2005,2010,2017,2022, - 2027,2032,2036,2041,2049,2054,2060,2072,2079,2081,2089,2094,2097, - 2105,2111,2115,2128,2140,2142,2145,2153,2159,2165,2178,2185,2194, - 2199,2210,2219,2224,2236,2243,2252,2257,2269,2276,2285,2290,2297, - 2306,2311,2313,2318,2326,2335,2339,2342,2346,2351,2357,2363,2368, - 2373,2378,2383,2386,2391,2396,2406,2410,2417,2422,2425,2430,2433, - 2437,2441,2449,2468,2471,2474,2478,2488,2501,2514,2517,2523,2526, - 2530,2539,2542,2545,2550,2554,2557,2561,2565,2568,2572,2575,2579, - 2582,2588,2591,2596,2604,2610,2614,2618,2623,2628,2635,2639,2650, - 2658,2661,2667,2673,2676,2682,2688,2690,2695,2701,2707,2709,2713, - 2716,2719,2725,2731,2733,2738,2745,2754,2757,2761,2766,2776,2785, - 2793,2796,2804,2807,2814,2819,2827,2843,2848,2855,2874,2880,2890, - 2902,2909,2916,2931,2944,2950,2956,2962,2968,2974,2980,2985,2992, - 2999,3006,3011,3014,3016,3025,3032,3039,3046,3055,3061,3065,3069, - 3073,3079,3082,3087,3094,3101,3105,3110,3120,3128,3134,3143,3152, - 3161,3164,3168,3177,3181,3184,3187,3193,3196,3199,3203,3206,3209, - 3212,3223,3226,3231,3237,3242,3247,3250,3254,3259,3262,3267,3277, - 3282,3288,3290,3296,3298,3304,3312,3317,3325,3328,3333,3336,3341, - 3349,3355,3359,3361,3367,3375,3380,3388,3391,3396,3399,3403,3406, - 3409,3413,3416,3424,3430,3434,3440,3445,3449,3451,3457,3461,3464, - 3467,3470,3476,3481,3484,3487,3490,3493,3495,3498,3502,3505,3508, - 3516,3522,3525,3527,3536,3541,3548,3551,3554,3558,3562,3568,3572, - 3579,3583,3586,3589,3594,3601,3611,3620,3629,3639,3642,3646,3652, - 3656,3659,3662,3667,3670,3677,3681,3684,3688,3692,3695,3698,3703, - 3709,3713,3723,3729,3733,3739,3743,3749,3752,3764,3768,3772,3780, - 3784,3798,3803,3806,3810,3813,3821,3826,3829,3832,3836,3839,3848, - 3853,3862,3867,3874,3881,3889,3895,3903,3906,3909,3916,3919,3922, - 3929,3932,3936,3942,3952,3956,3965,3968,3972,3978,3986,3991,3995, - 4001,4007,4010,4012,4016,4025,4035,4041,4046,4050,4053,4056,4059, - 4062,4065,4069,4073,4081,4085,4088,4090,4103,4106,4113,4123,4126, - 4131,4133,4137,4145,4151,4160,4173,4177,4183,4188,4192,4195,4199, - 4202,4210,4213,4215,4223,4235,4241,4243,4249,4251,4253,4259,4267, - 4275,4279,4283,4292,4297,4317,4322,4328,4335,4340,4349,4352,4356, - 4360,4364,4367,4370,4373,4377,4381,4384,4387,4390,4397,4401,4416, - 4429,4437,4447,4451,4454,4460,4463,4466,4475,4484,4494,4498,4508, - 4512,4523,4527,4536,4545,4548,4552,4557,4561,4570,4573,4576,4583, - 4589,4595,4621,4624,4627,4646,4648,4671,4674,4677,4696,4698,4712, - 4725,4762,4767,4802,4816,4823,4827,4833,4841,4843,4854,4864,4871, - 4877,4885,4890,4898,4906,4914,4922,4928,4933,4938,4943,4949,4951, - 4962,4967,4974,4976,4990,4996,5001,5006,5012,5019,5027,5035,5040, - 5046,5049,5057,5064,5073,5076,5093,5101,5109,5113,5120,5126,5134, - 5139,5146,5154,5161,5166,5169,5171,5177,5179,5183,5185,5190,5197, - 5202,5206,5211,5215,5221,5227,5232,5235,5237,5243,5245,5249,5251, - 5256,5261,5268,5277,5282,5291,5295,5301,5306,5309,5311,5317,5319, - 5322,5329,5331,5336,5343,5352,5358,5360,5367,5370,5382,5388,5396, - 5399,5403,5406,5410,5412,5423,5426,5430,5433,5436,5443,5455,5458, - 5465,5471,5481,5486,5493,5498,5504,5508,5512,5520,5524,5528,5534, - 5536,5548,5553,5559,5565,5569,5574,5576,5600,5604,5607,5616,5620, - 5629,5633,5637,5643,5645,5654,5664,5691,5695,5700,5707,5710,5716, - 5726,5736,5746,5752,5761,5767,5774,5776,5784,5790,5794,5811,5821, - 5825,5829,5839,5844,5916,5934,5942,5948,5960,5964,5975,5979,5988, - 5996,6003,6007,6014,6019,6022,6025,6036,6040,6044,6059,6068,6071, - 6085,6103,6116,6119,6123,6126,6128,6135,6142,6146,6153,6160,6163, - 6179,6182,6192,6196,6202,6205,6208,6213,6217,6220,6227,6230,6236, - 6272,6275,6287,6290,6306,6308,6312,6319,6323,6330,6333,6342,6345, - 6350,6356,6358,6364,6368,6374,6377,6380,6393,6396,6402,6405,6413, - 6421,6427,6430,6434,6448,6460,6468,6472,6479,6486,6491,6504,6513, - 6521,6526,6529,6534,6537,6549,6554,6567,6569,6574,6578,6581,6583, - 6590,6597,6600,6603,6609,6613,6619,6627,6636,6649,6654,6662,6665, - 6670,6675,6683,6686,6694,6698,6705,6711,6714,6718,6731,6737,6749, - 6752,6761,6766,6787,6803,6813,6818,6823,6825,6828,6832,6834,6841, - 6847,6849,6852,6856,6858,6871,6881,6884,6887,6900,6906,6909,6917, - 6924,6944,6951,6953,6960,6962,6966,6973,6979,6990,6996,7002,7005, - 7009,7014,7017,7021,7025,7027,7032,7037,7050,7053,7057,7060,7063, - 7068,7073,7079,7082,7087,7090,7095,7098,7102,7107,7112,7117,7122, - 7125,7130,7135,7140,7146,7151,7156,7161,7165,7168,7173,7177,7181, - 7189,7196,7200,7205,7210,7214,7216,7219,7235,7245,7255,7264,7273, - 7280,7287,7295,7303,7315,7322,7332,7337,7340,7345,7348,7366,7373, - 7378,7383,7417,7421,7429,7433,7442,7450,7455,7463,7468,7473,7475, - 7484,7489,7497,7502,7510,7518,7521,7531,7549,7552,7555,7559,7572, - 7580,7584,7589,7594,7600,7605,7609,7614,7619,7624,7634,7637,7641, - 7645,7652,7656,7685,7693,7696,7699,7702,7705,7716,7730,7739,7766, - 7778,7785,7793,7798,7806,7818,7831,7837,7843,7859,7865,7874,7876, - 7898,7910,7927,7944,7946,7959,7968,7977,7986,7995 + 3,402,7938,8,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, + 1,402,1,402,1,402,1,402,1,402,1,402,1,402,5,402,7955,8,402,10,402, + 12,402,7958,9,402,1,403,1,403,1,404,1,404,1,404,1,404,1,404,1,404, + 1,404,1,404,3,404,7970,8,404,1,405,1,405,1,405,1,405,1,405,1,405, + 1,405,3,405,7979,8,405,1,406,1,406,1,406,1,406,1,406,1,406,1,406, + 3,406,7988,8,406,1,407,1,407,1,407,1,407,1,407,1,407,1,407,3,407, + 7997,8,407,1,408,1,408,1,409,1,409,1,409,1,409,1,409,3,409,8006, + 8,409,1,410,1,410,1,411,1,411,1,412,1,412,1,413,1,413,1,414,1,414, + 1,415,1,415,1,416,1,416,1,416,0,5,208,210,800,802,804,417,0,2,4, + 6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48, + 50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92, + 94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126, + 128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158, + 160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190, + 192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222, + 224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254, + 256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286, + 288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318, + 320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350, + 352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382, + 384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414, + 416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446, + 448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478, + 480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510, + 512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542, + 544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574, + 576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606, + 608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638, + 640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670, + 672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702, + 704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734, + 736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766, + 768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798, + 800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830, + 832,0,160,2,0,39,39,152,152,2,0,508,508,514,514,3,0,69,69,161,161, + 182,182,3,0,42,42,357,357,430,430,4,0,42,42,389,389,505,505,595, + 595,2,0,494,494,882,882,2,0,79,79,143,143,2,0,16,16,306,306,3,0, + 44,44,86,86,185,185,2,0,406,406,538,538,3,0,486,486,661,661,670, + 670,2,0,364,364,436,436,2,0,325,325,450,450,2,0,42,42,871,872,2, + 0,37,37,678,678,2,0,323,323,418,418,2,0,435,435,686,686,3,0,80,80, + 85,85,126,126,2,0,82,82,92,92,2,0,69,69,161,161,3,0,42,42,374,374, + 403,403,3,0,42,42,370,370,802,802,2,0,648,648,685,685,3,0,408,408, + 526,526,597,597,2,0,329,329,522,522,1,0,871,872,2,0,882,882,889, + 889,2,0,82,82,360,360,2,0,523,523,882,882,2,0,524,524,882,882,3, + 0,402,402,445,445,502,502,7,0,42,42,342,342,345,345,374,374,403, + 403,554,554,889,889,2,0,494,494,506,506,1,0,872,873,2,0,6,6,51,51, + 2,0,5,5,81,81,2,0,27,27,31,31,4,0,42,42,357,357,430,430,434,434, + 2,0,368,368,375,375,2,0,369,369,425,425,2,0,13,13,176,176,2,0,194, + 194,690,690,2,0,22,22,146,146,3,0,43,43,76,76,107,107,2,0,7,7,49, + 49,2,0,107,107,347,347,2,0,337,337,398,398,2,0,102,102,587,587,2, + 0,43,43,107,107,3,0,59,59,181,181,828,828,2,0,185,185,594,594,2, + 0,159,159,503,503,4,0,402,402,445,445,501,501,542,542,2,0,402,402, + 501,501,2,0,14,14,45,45,3,0,66,66,79,79,187,187,2,0,35,35,84,84, + 2,0,98,98,150,150,2,0,7,7,49,50,1,0,637,638,2,0,173,173,752,752, + 2,0,413,413,593,593,2,0,228,228,453,453,2,0,563,563,598,598,8,0, + 108,108,455,455,459,460,462,462,464,464,467,476,499,499,557,557, + 6,0,456,458,461,461,463,463,465,465,477,477,558,558,7,0,109,109, + 411,411,416,416,454,454,466,466,573,573,617,617,2,0,116,116,882, + 882,2,0,118,119,507,507,7,0,499,499,557,557,606,609,611,611,619, + 619,622,628,630,632,6,0,558,558,610,610,612,612,614,616,618,618, + 620,620,7,0,412,412,416,416,573,573,613,613,617,617,621,621,629, + 629,3,0,70,70,118,119,507,507,2,0,438,438,639,639,2,0,633,633,635, + 635,2,0,317,317,640,640,2,0,91,91,577,577,2,0,51,51,362,362,3,0, + 32,32,61,61,180,180,2,0,15,15,340,340,2,0,678,678,835,835,3,0,132, + 132,173,173,409,409,3,0,6,6,51,51,492,492,3,0,13,13,20,20,188,188, + 2,0,42,42,122,122,2,0,104,104,183,183,1,0,873,874,2,0,333,333,598, + 598,2,0,40,40,684,684,2,0,392,392,549,549,2,0,115,115,450,450,4, + 0,208,208,210,210,216,216,649,649,3,0,413,413,531,531,893,894,2, + 0,841,841,857,857,2,0,318,318,559,559,2,0,68,68,80,80,3,0,132,132, + 178,178,385,385,2,0,493,493,645,645,2,0,383,383,688,688,3,0,82,82, + 93,93,426,426,4,0,413,413,450,450,531,532,593,593,2,0,645,645,683, + 683,2,0,349,349,548,548,6,0,228,228,380,380,382,382,410,410,556, + 556,599,599,2,0,45,46,62,62,3,0,442,442,663,663,666,666,10,0,332, + 332,339,339,351,353,359,359,487,487,495,495,650,650,657,657,822, + 822,832,832,2,0,36,36,170,170,2,0,117,117,831,831,11,0,332,332,339, + 339,351,353,359,359,487,487,495,495,578,578,650,650,657,657,822, + 822,832,832,2,0,870,870,891,892,1,0,892,893,2,0,348,348,797,808, + 3,0,871,874,883,883,885,885,2,0,63,63,179,179,2,0,116,116,886,886, + 5,0,26,26,224,226,233,233,235,238,498,498,2,0,26,26,224,224,2,0, + 26,26,224,225,1,0,198,209,3,0,184,184,197,197,596,596,2,0,213,218, + 403,403,6,0,219,219,230,230,232,232,234,234,241,241,321,322,4,0, + 220,223,228,229,231,231,319,319,2,0,155,155,239,239,2,0,442,442, + 813,821,2,0,228,228,498,498,5,0,202,202,208,208,219,220,222,222, + 442,442,1,0,216,217,2,0,184,184,596,596,2,0,202,202,208,208,2,0, + 189,189,682,682,2,0,287,288,294,294,3,0,152,152,285,288,303,303, + 1,0,297,298,3,0,18,18,96,96,177,177,2,0,224,224,228,228,2,0,219, + 220,222,222,3,0,14,14,45,45,830,830,3,0,258,258,270,271,281,281, + 3,0,259,261,277,280,282,284,2,0,267,267,269,269,2,0,265,265,268, + 268,2,0,263,264,274,276,2,0,134,134,587,587,2,0,405,405,539,539, + 2,0,512,512,529,529,2,0,114,114,860,860,3,0,63,63,179,179,674,674, + 2,0,139,139,151,151,3,0,7,7,309,309,602,602,3,0,114,114,853,854, + 860,861,1,0,850,856,2,0,228,228,756,796,1,0,809,812,5,0,717,718, + 734,736,743,743,749,750,752,752,1,0,696,703,3,0,219,223,236,236, + 239,239,76,0,12,12,15,15,19,19,30,30,36,37,42,42,48,48,55,55,57, + 57,59,59,74,74,95,95,117,117,122,122,125,125,131,131,160,160,170, + 170,241,241,255,262,266,266,270,271,277,284,304,309,311,329,331, + 343,345,376,378,393,395,400,402,404,406,410,413,415,417,426,428, + 428,430,434,436,454,456,463,465,473,475,476,478,498,500,506,508, + 510,512,522,525,530,533,538,540,542,544,554,556,562,565,572,575, + 575,577,578,580,605,633,647,649,665,667,674,676,685,687,688,690, + 695,704,704,706,707,709,712,714,716,719,721,726,727,729,733,737, + 738,740,742,744,744,746,748,751,751,753,755,802,802,822,822,825, + 825,832,833,838,838,24,0,39,39,98,98,150,150,152,152,219,221,223, + 223,253,254,262,265,267,269,272,276,296,296,435,435,686,686,696, + 703,746,746,813,813,816,821,823,824,826,827,829,831,834,834,836, + 836,840,840,856,856,9382,0,837,1,0,0,0,2,847,1,0,0,0,4,856,1,0,0, + 0,6,858,1,0,0,0,8,899,1,0,0,0,10,918,1,0,0,0,12,929,1,0,0,0,14,945, + 1,0,0,0,16,950,1,0,0,0,18,962,1,0,0,0,20,997,1,0,0,0,22,1007,1,0, + 0,0,24,1009,1,0,0,0,26,1021,1,0,0,0,28,1051,1,0,0,0,30,1087,1,0, + 0,0,32,1138,1,0,0,0,34,1167,1,0,0,0,36,1174,1,0,0,0,38,1271,1,0, + 0,0,40,1273,1,0,0,0,42,1310,1,0,0,0,44,1374,1,0,0,0,46,1396,1,0, + 0,0,48,1402,1,0,0,0,50,1424,1,0,0,0,52,1511,1,0,0,0,54,1518,1,0, + 0,0,56,1520,1,0,0,0,58,1525,1,0,0,0,60,1565,1,0,0,0,62,1571,1,0, + 0,0,64,1573,1,0,0,0,66,1594,1,0,0,0,68,1601,1,0,0,0,70,1603,1,0, + 0,0,72,1628,1,0,0,0,74,1631,1,0,0,0,76,1659,1,0,0,0,78,1675,1,0, + 0,0,80,1677,1,0,0,0,82,1771,1,0,0,0,84,1774,1,0,0,0,86,1786,1,0, + 0,0,88,1790,1,0,0,0,90,1840,1,0,0,0,92,1842,1,0,0,0,94,1870,1,0, + 0,0,96,1880,1,0,0,0,98,2067,1,0,0,0,100,2069,1,0,0,0,102,2071,1, + 0,0,0,104,2074,1,0,0,0,106,2149,1,0,0,0,108,2172,1,0,0,0,110,2320, + 1,0,0,0,112,2325,1,0,0,0,114,2327,1,0,0,0,116,2337,1,0,0,0,118,2393, + 1,0,0,0,120,2413,1,0,0,0,122,2415,1,0,0,0,124,2450,1,0,0,0,126,2459, + 1,0,0,0,128,2466,1,0,0,0,130,2489,1,0,0,0,132,2498,1,0,0,0,134,2513, + 1,0,0,0,136,2535,1,0,0,0,138,2591,1,0,0,0,140,2887,1,0,0,0,142,2987, + 1,0,0,0,144,2989,1,0,0,0,146,2996,1,0,0,0,148,3003,1,0,0,0,150,3026, + 1,0,0,0,152,3036,1,0,0,0,154,3043,1,0,0,0,156,3050,1,0,0,0,158,3057, + 1,0,0,0,160,3066,1,0,0,0,162,3078,1,0,0,0,164,3091,1,0,0,0,166,3098, + 1,0,0,0,168,3114,1,0,0,0,170,3141,1,0,0,0,172,3143,1,0,0,0,174,3153, + 1,0,0,0,176,3157,1,0,0,0,178,3163,1,0,0,0,180,3175,1,0,0,0,182,3177, + 1,0,0,0,184,3184,1,0,0,0,186,3186,1,0,0,0,188,3235,1,0,0,0,190,3244, + 1,0,0,0,192,3246,1,0,0,0,194,3257,1,0,0,0,196,3263,1,0,0,0,198,3337, + 1,0,0,0,200,3400,1,0,0,0,202,3418,1,0,0,0,204,3502,1,0,0,0,206,3505, + 1,0,0,0,208,3517,1,0,0,0,210,3537,1,0,0,0,212,3565,1,0,0,0,214,3569, + 1,0,0,0,216,3571,1,0,0,0,218,3581,1,0,0,0,220,3601,1,0,0,0,222,3608, + 1,0,0,0,224,3610,1,0,0,0,226,3621,1,0,0,0,228,3630,1,0,0,0,230,3636, + 1,0,0,0,232,3659,1,0,0,0,234,3661,1,0,0,0,236,3697,1,0,0,0,238,3752, + 1,0,0,0,240,3761,1,0,0,0,242,3781,1,0,0,0,244,3793,1,0,0,0,246,3797, + 1,0,0,0,248,3808,1,0,0,0,250,3841,1,0,0,0,252,3862,1,0,0,0,254,3872, + 1,0,0,0,256,3876,1,0,0,0,258,3902,1,0,0,0,260,3949,1,0,0,0,262,3951, + 1,0,0,0,264,3955,1,0,0,0,266,3972,1,0,0,0,268,4023,1,0,0,0,270,4032, + 1,0,0,0,272,4042,1,0,0,0,274,4044,1,0,0,0,276,4074,1,0,0,0,278,4082, + 1,0,0,0,280,4099,1,0,0,0,282,4115,1,0,0,0,284,4152,1,0,0,0,286,4158, + 1,0,0,0,288,4167,1,0,0,0,290,4180,1,0,0,0,292,4184,1,0,0,0,294,4222, + 1,0,0,0,296,4260,1,0,0,0,298,4274,1,0,0,0,300,4282,1,0,0,0,302,4286, + 1,0,0,0,304,4292,1,0,0,0,306,4306,1,0,0,0,308,4309,1,0,0,0,310,4327, + 1,0,0,0,312,4331,1,0,0,0,314,4347,1,0,0,0,316,4349,1,0,0,0,318,4361, + 1,0,0,0,320,4365,1,0,0,0,322,4382,1,0,0,0,324,4399,1,0,0,0,326,4402, + 1,0,0,0,328,4412,1,0,0,0,330,4416,1,0,0,0,332,4426,1,0,0,0,334,4429, + 1,0,0,0,336,4434,1,0,0,0,338,4454,1,0,0,0,340,4456,1,0,0,0,342,4473, + 1,0,0,0,344,4482,1,0,0,0,346,4491,1,0,0,0,348,4493,1,0,0,0,350,4507, + 1,0,0,0,352,4521,1,0,0,0,354,4536,1,0,0,0,356,4545,1,0,0,0,358,4570, + 1,0,0,0,360,4585,1,0,0,0,362,4604,1,0,0,0,364,4634,1,0,0,0,366,4636, + 1,0,0,0,368,4638,1,0,0,0,370,4640,1,0,0,0,372,4655,1,0,0,0,374,4684, + 1,0,0,0,376,4686,1,0,0,0,378,4688,1,0,0,0,380,4690,1,0,0,0,382,4705, + 1,0,0,0,384,4707,1,0,0,0,386,4774,1,0,0,0,388,4776,1,0,0,0,390,4782, + 1,0,0,0,392,4809,1,0,0,0,394,4823,1,0,0,0,396,4834,1,0,0,0,398,4836, + 1,0,0,0,400,4842,1,0,0,0,402,4852,1,0,0,0,404,4856,1,0,0,0,406,4863, + 1,0,0,0,408,4867,1,0,0,0,410,4873,1,0,0,0,412,4880,1,0,0,0,414,4886, + 1,0,0,0,416,4892,1,0,0,0,418,4897,1,0,0,0,420,4942,1,0,0,0,422,4963, + 1,0,0,0,424,4988,1,0,0,0,426,4991,1,0,0,0,428,4997,1,0,0,0,430,5013, + 1,0,0,0,432,5028,1,0,0,0,434,5034,1,0,0,0,436,5064,1,0,0,0,438,5066, + 1,0,0,0,440,5073,1,0,0,0,442,5085,1,0,0,0,444,5091,1,0,0,0,446,5116, + 1,0,0,0,448,5120,1,0,0,0,450,5124,1,0,0,0,452,5135,1,0,0,0,454,5143, + 1,0,0,0,456,5206,1,0,0,0,458,5265,1,0,0,0,460,5367,1,0,0,0,462,5377, + 1,0,0,0,464,5379,1,0,0,0,466,5397,1,0,0,0,468,5421,1,0,0,0,470,5445, + 1,0,0,0,472,5452,1,0,0,0,474,5472,1,0,0,0,476,5481,1,0,0,0,478,5543, + 1,0,0,0,480,5545,1,0,0,0,482,5549,1,0,0,0,484,5583,1,0,0,0,486,5585, + 1,0,0,0,488,5588,1,0,0,0,490,5652,1,0,0,0,492,5671,1,0,0,0,494,5698, + 1,0,0,0,496,5702,1,0,0,0,498,5723,1,0,0,0,500,5733,1,0,0,0,502,5743, + 1,0,0,0,504,5783,1,0,0,0,506,5785,1,0,0,0,508,5788,1,0,0,0,510,5818, + 1,0,0,0,512,5820,1,0,0,0,514,5823,1,0,0,0,516,5923,1,0,0,0,518,5941, + 1,0,0,0,520,5943,1,0,0,0,522,5995,1,0,0,0,524,5997,1,0,0,0,526,6006, + 1,0,0,0,528,6012,1,0,0,0,530,6019,1,0,0,0,532,6034,1,0,0,0,534,6043, + 1,0,0,0,536,6045,1,0,0,0,538,6059,1,0,0,0,540,6080,1,0,0,0,542,6085, + 1,0,0,0,544,6095,1,0,0,0,546,6101,1,0,0,0,548,6135,1,0,0,0,550,6189, + 1,0,0,0,552,6375,1,0,0,0,554,6387,1,0,0,0,556,6403,1,0,0,0,558,6409, + 1,0,0,0,560,6428,1,0,0,0,562,6441,1,0,0,0,564,6455,1,0,0,0,566,6457, + 1,0,0,0,568,6460,1,0,0,0,570,6484,1,0,0,0,572,6496,1,0,0,0,574,6502, + 1,0,0,0,576,6514,1,0,0,0,578,6528,1,0,0,0,580,6530,1,0,0,0,582,6538, + 1,0,0,0,584,6546,1,0,0,0,586,6548,1,0,0,0,588,6550,1,0,0,0,590,6590, + 1,0,0,0,592,6597,1,0,0,0,594,6599,1,0,0,0,596,6622,1,0,0,0,598,6628, + 1,0,0,0,600,6638,1,0,0,0,602,6647,1,0,0,0,604,6650,1,0,0,0,606,6653, + 1,0,0,0,608,6674,1,0,0,0,610,6695,1,0,0,0,612,6703,1,0,0,0,614,6715, + 1,0,0,0,616,6723,1,0,0,0,618,6761,1,0,0,0,620,6773,1,0,0,0,622,6775, + 1,0,0,0,624,6777,1,0,0,0,626,6779,1,0,0,0,628,6781,1,0,0,0,630,6783, + 1,0,0,0,632,6785,1,0,0,0,634,6787,1,0,0,0,636,6789,1,0,0,0,638,6797, + 1,0,0,0,640,6799,1,0,0,0,642,6801,1,0,0,0,644,6803,1,0,0,0,646,6805, + 1,0,0,0,648,6813,1,0,0,0,650,6815,1,0,0,0,652,6825,1,0,0,0,654,6841, + 1,0,0,0,656,6843,1,0,0,0,658,6866,1,0,0,0,660,6868,1,0,0,0,662,6870, + 1,0,0,0,664,6872,1,0,0,0,666,6874,1,0,0,0,668,6882,1,0,0,0,670,6892, + 1,0,0,0,672,6897,1,0,0,0,674,6901,1,0,0,0,676,6908,1,0,0,0,678,6910, + 1,0,0,0,680,6917,1,0,0,0,682,6919,1,0,0,0,684,6925,1,0,0,0,686,6927, + 1,0,0,0,688,6932,1,0,0,0,690,6934,1,0,0,0,692,6936,1,0,0,0,694,6954, + 1,0,0,0,696,6970,1,0,0,0,698,6972,1,0,0,0,700,6976,1,0,0,0,702,6987, + 1,0,0,0,704,6998,1,0,0,0,706,7004,1,0,0,0,708,7006,1,0,0,0,710,7010, + 1,0,0,0,712,7035,1,0,0,0,714,7037,1,0,0,0,716,7040,1,0,0,0,718,7045, + 1,0,0,0,720,7061,1,0,0,0,722,7189,1,0,0,0,724,7191,1,0,0,0,726,7224, + 1,0,0,0,728,7229,1,0,0,0,730,7233,1,0,0,0,732,7239,1,0,0,0,734,7247, + 1,0,0,0,736,7258,1,0,0,0,738,7266,1,0,0,0,740,7275,1,0,0,0,742,7288, + 1,0,0,0,744,7290,1,0,0,0,746,7298,1,0,0,0,748,7306,1,0,0,0,750,7340, + 1,0,0,0,752,7356,1,0,0,0,754,7358,1,0,0,0,756,7361,1,0,0,0,758,7365, + 1,0,0,0,760,7390,1,0,0,0,762,7571,1,0,0,0,764,7573,1,0,0,0,766,7592, + 1,0,0,0,768,7594,1,0,0,0,770,7657,1,0,0,0,772,7697,1,0,0,0,774,7699, + 1,0,0,0,776,7708,1,0,0,0,778,7719,1,0,0,0,780,7721,1,0,0,0,782,7724, + 1,0,0,0,784,7728,1,0,0,0,786,7730,1,0,0,0,788,7742,1,0,0,0,790,7744, + 1,0,0,0,792,7778,1,0,0,0,794,7780,1,0,0,0,796,7785,1,0,0,0,798,7796, + 1,0,0,0,800,7809,1,0,0,0,802,7820,1,0,0,0,804,7937,1,0,0,0,806,7959, + 1,0,0,0,808,7969,1,0,0,0,810,7978,1,0,0,0,812,7987,1,0,0,0,814,7996, + 1,0,0,0,816,7998,1,0,0,0,818,8005,1,0,0,0,820,8007,1,0,0,0,822,8009, + 1,0,0,0,824,8011,1,0,0,0,826,8013,1,0,0,0,828,8015,1,0,0,0,830,8017, + 1,0,0,0,832,8019,1,0,0,0,834,836,3,2,1,0,835,834,1,0,0,0,836,839, + 1,0,0,0,837,835,1,0,0,0,837,838,1,0,0,0,838,840,1,0,0,0,839,837, + 1,0,0,0,840,841,5,0,0,1,841,1,1,0,0,0,842,844,3,4,2,0,843,845,5, + 869,0,0,844,843,1,0,0,0,844,845,1,0,0,0,845,848,1,0,0,0,846,848, + 3,6,3,0,847,842,1,0,0,0,847,846,1,0,0,0,848,3,1,0,0,0,849,857,3, + 8,4,0,850,857,3,10,5,0,851,857,3,12,6,0,852,857,3,14,7,0,853,857, + 3,16,8,0,854,857,3,20,10,0,855,857,3,22,11,0,856,849,1,0,0,0,856, + 850,1,0,0,0,856,851,1,0,0,0,856,852,1,0,0,0,856,853,1,0,0,0,856, + 854,1,0,0,0,856,855,1,0,0,0,857,5,1,0,0,0,858,859,5,869,0,0,859, + 7,1,0,0,0,860,900,3,24,12,0,861,900,3,26,13,0,862,900,3,28,14,0, + 863,900,3,30,15,0,864,900,3,32,16,0,865,900,3,536,268,0,866,900, + 3,36,18,0,867,900,3,38,19,0,868,900,3,40,20,0,869,900,3,42,21,0, + 870,900,3,44,22,0,871,900,3,50,25,0,872,900,3,34,17,0,873,900,3, + 120,60,0,874,900,3,122,61,0,875,900,3,124,62,0,876,900,3,126,63, + 0,877,900,3,128,64,0,878,900,3,130,65,0,879,900,3,132,66,0,880,900, + 3,134,67,0,881,900,3,136,68,0,882,900,3,138,69,0,883,900,3,144,72, + 0,884,900,3,146,73,0,885,900,3,148,74,0,886,900,3,150,75,0,887,900, + 3,152,76,0,888,900,3,154,77,0,889,900,3,156,78,0,890,900,3,158,79, + 0,891,900,3,160,80,0,892,900,3,162,81,0,893,900,3,164,82,0,894,900, + 3,166,83,0,895,900,3,168,84,0,896,900,3,170,85,0,897,900,3,172,86, + 0,898,900,3,176,88,0,899,860,1,0,0,0,899,861,1,0,0,0,899,862,1,0, + 0,0,899,863,1,0,0,0,899,864,1,0,0,0,899,865,1,0,0,0,899,866,1,0, + 0,0,899,867,1,0,0,0,899,868,1,0,0,0,899,869,1,0,0,0,899,870,1,0, + 0,0,899,871,1,0,0,0,899,872,1,0,0,0,899,873,1,0,0,0,899,874,1,0, + 0,0,899,875,1,0,0,0,899,876,1,0,0,0,899,877,1,0,0,0,899,878,1,0, + 0,0,899,879,1,0,0,0,899,880,1,0,0,0,899,881,1,0,0,0,899,882,1,0, + 0,0,899,883,1,0,0,0,899,884,1,0,0,0,899,885,1,0,0,0,899,886,1,0, + 0,0,899,887,1,0,0,0,899,888,1,0,0,0,899,889,1,0,0,0,899,890,1,0, + 0,0,899,891,1,0,0,0,899,892,1,0,0,0,899,893,1,0,0,0,899,894,1,0, + 0,0,899,895,1,0,0,0,899,896,1,0,0,0,899,897,1,0,0,0,899,898,1,0, + 0,0,900,9,1,0,0,0,901,919,3,204,102,0,902,919,3,206,103,0,903,919, + 3,186,93,0,904,919,3,214,107,0,905,919,3,180,90,0,906,919,3,202, + 101,0,907,919,3,178,89,0,908,919,3,192,96,0,909,919,3,196,98,0,910, + 919,3,198,99,0,911,919,3,200,100,0,912,919,3,182,91,0,913,919,3, + 184,92,0,914,919,3,246,123,0,915,919,3,216,108,0,916,919,3,612,306, + 0,917,919,3,614,307,0,918,901,1,0,0,0,918,902,1,0,0,0,918,903,1, + 0,0,0,918,904,1,0,0,0,918,905,1,0,0,0,918,906,1,0,0,0,918,907,1, + 0,0,0,918,908,1,0,0,0,918,909,1,0,0,0,918,910,1,0,0,0,918,911,1, + 0,0,0,918,912,1,0,0,0,918,913,1,0,0,0,918,914,1,0,0,0,918,915,1, + 0,0,0,918,916,1,0,0,0,918,917,1,0,0,0,919,11,1,0,0,0,920,930,3,316, + 158,0,921,930,3,318,159,0,922,930,3,320,160,0,923,930,3,322,161, + 0,924,930,3,324,162,0,925,930,3,326,163,0,926,930,3,328,164,0,927, + 930,3,330,165,0,928,930,3,332,166,0,929,920,1,0,0,0,929,921,1,0, + 0,0,929,922,1,0,0,0,929,923,1,0,0,0,929,924,1,0,0,0,929,925,1,0, + 0,0,929,926,1,0,0,0,929,927,1,0,0,0,929,928,1,0,0,0,930,13,1,0,0, + 0,931,946,3,348,174,0,932,946,3,350,175,0,933,946,3,352,176,0,934, + 946,3,354,177,0,935,946,3,356,178,0,936,946,3,358,179,0,937,946, + 3,360,180,0,938,946,3,362,181,0,939,946,3,398,199,0,940,946,3,400, + 200,0,941,946,3,402,201,0,942,946,3,404,202,0,943,946,3,406,203, + 0,944,946,3,408,204,0,945,931,1,0,0,0,945,932,1,0,0,0,945,933,1, + 0,0,0,945,934,1,0,0,0,945,935,1,0,0,0,945,936,1,0,0,0,945,937,1, + 0,0,0,945,938,1,0,0,0,945,939,1,0,0,0,945,940,1,0,0,0,945,941,1, + 0,0,0,945,942,1,0,0,0,945,943,1,0,0,0,945,944,1,0,0,0,946,15,1,0, + 0,0,947,951,3,410,205,0,948,951,3,412,206,0,949,951,3,414,207,0, + 950,947,1,0,0,0,950,948,1,0,0,0,950,949,1,0,0,0,951,17,1,0,0,0,952, + 963,3,418,209,0,953,963,3,420,210,0,954,963,3,422,211,0,955,963, + 3,426,213,0,956,963,3,428,214,0,957,963,3,430,215,0,958,963,3,434, + 217,0,959,963,3,424,212,0,960,963,3,432,216,0,961,963,3,436,218, + 0,962,952,1,0,0,0,962,953,1,0,0,0,962,954,1,0,0,0,962,955,1,0,0, + 0,962,956,1,0,0,0,962,957,1,0,0,0,962,958,1,0,0,0,962,959,1,0,0, + 0,962,960,1,0,0,0,962,961,1,0,0,0,963,19,1,0,0,0,964,998,3,454,227, + 0,965,998,3,456,228,0,966,998,3,458,229,0,967,998,3,460,230,0,968, + 998,3,464,232,0,969,998,3,476,238,0,970,998,3,478,239,0,971,998, + 3,466,233,0,972,998,3,468,234,0,973,998,3,470,235,0,974,998,3,472, + 236,0,975,998,3,522,261,0,976,998,3,524,262,0,977,998,3,526,263, + 0,978,998,3,528,264,0,979,998,3,530,265,0,980,998,3,538,269,0,981, + 998,3,542,271,0,982,998,3,544,272,0,983,998,3,546,273,0,984,998, + 3,548,274,0,985,998,3,550,275,0,986,998,3,552,276,0,987,998,3,566, + 283,0,988,998,3,568,284,0,989,998,3,570,285,0,990,998,3,572,286, + 0,991,998,3,574,287,0,992,998,3,576,288,0,993,998,3,580,290,0,994, + 998,3,582,291,0,995,998,3,584,292,0,996,998,3,586,293,0,997,964, + 1,0,0,0,997,965,1,0,0,0,997,966,1,0,0,0,997,967,1,0,0,0,997,968, + 1,0,0,0,997,969,1,0,0,0,997,970,1,0,0,0,997,971,1,0,0,0,997,972, + 1,0,0,0,997,973,1,0,0,0,997,974,1,0,0,0,997,975,1,0,0,0,997,976, + 1,0,0,0,997,977,1,0,0,0,997,978,1,0,0,0,997,979,1,0,0,0,997,980, + 1,0,0,0,997,981,1,0,0,0,997,982,1,0,0,0,997,983,1,0,0,0,997,984, + 1,0,0,0,997,985,1,0,0,0,997,986,1,0,0,0,997,987,1,0,0,0,997,988, + 1,0,0,0,997,989,1,0,0,0,997,990,1,0,0,0,997,991,1,0,0,0,997,992, + 1,0,0,0,997,993,1,0,0,0,997,994,1,0,0,0,997,995,1,0,0,0,997,996, + 1,0,0,0,998,21,1,0,0,0,999,1008,3,598,299,0,1000,1008,3,596,298, + 0,1001,1008,3,600,300,0,1002,1008,3,602,301,0,1003,1008,3,604,302, + 0,1004,1008,3,606,303,0,1005,1008,3,608,304,0,1006,1008,3,616,308, + 0,1007,999,1,0,0,0,1007,1000,1,0,0,0,1007,1001,1,0,0,0,1007,1002, + 1,0,0,0,1007,1003,1,0,0,0,1007,1004,1,0,0,0,1007,1005,1,0,0,0,1007, + 1006,1,0,0,0,1008,23,1,0,0,0,1009,1010,5,34,0,0,1010,1012,7,0,0, + 0,1011,1013,3,756,378,0,1012,1011,1,0,0,0,1012,1013,1,0,0,0,1013, + 1014,1,0,0,0,1014,1018,3,622,311,0,1015,1017,3,52,26,0,1016,1015, + 1,0,0,0,1017,1020,1,0,0,0,1018,1016,1,0,0,0,1018,1019,1,0,0,0,1019, + 25,1,0,0,0,1020,1018,1,0,0,0,1021,1023,5,34,0,0,1022,1024,3,58,29, + 0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025,1,0,0,0,1025,1027, + 5,385,0,0,1026,1028,3,756,378,0,1027,1026,1,0,0,0,1027,1028,1,0, + 0,0,1028,1029,1,0,0,0,1029,1030,3,698,349,0,1030,1031,5,119,0,0, + 1031,1032,5,590,0,0,1032,1039,3,60,30,0,1033,1034,5,119,0,0,1034, + 1036,5,343,0,0,1035,1037,5,114,0,0,1036,1035,1,0,0,0,1036,1037,1, + 0,0,0,1037,1038,1,0,0,0,1038,1040,5,541,0,0,1039,1033,1,0,0,0,1039, + 1040,1,0,0,0,1040,1042,1,0,0,0,1041,1043,3,68,34,0,1042,1041,1,0, + 0,0,1042,1043,1,0,0,0,1043,1046,1,0,0,0,1044,1045,5,340,0,0,1045, + 1047,5,882,0,0,1046,1044,1,0,0,0,1046,1047,1,0,0,0,1047,1048,1,0, + 0,0,1048,1049,5,371,0,0,1049,1050,3,416,208,0,1050,27,1,0,0,0,1051, + 1053,5,34,0,0,1052,1054,7,1,0,0,1053,1052,1,0,0,0,1053,1054,1,0, + 0,0,1054,1056,1,0,0,0,1055,1057,7,2,0,0,1056,1055,1,0,0,0,1056,1057, + 1,0,0,0,1057,1058,1,0,0,0,1058,1059,5,82,0,0,1059,1061,3,634,317, + 0,1060,1062,3,70,35,0,1061,1060,1,0,0,0,1061,1062,1,0,0,0,1062,1063, + 1,0,0,0,1063,1064,5,119,0,0,1064,1065,3,648,324,0,1065,1069,3,734, + 367,0,1066,1068,3,72,36,0,1067,1066,1,0,0,0,1068,1071,1,0,0,0,1069, + 1067,1,0,0,0,1069,1070,1,0,0,0,1070,1084,1,0,0,0,1071,1069,1,0,0, + 0,1072,1074,5,308,0,0,1073,1075,5,857,0,0,1074,1073,1,0,0,0,1074, + 1075,1,0,0,0,1075,1076,1,0,0,0,1076,1083,7,3,0,0,1077,1079,5,104, + 0,0,1078,1080,5,857,0,0,1079,1078,1,0,0,0,1079,1080,1,0,0,0,1080, + 1081,1,0,0,0,1081,1083,7,4,0,0,1082,1072,1,0,0,0,1082,1077,1,0,0, + 0,1083,1086,1,0,0,0,1084,1082,1,0,0,0,1084,1085,1,0,0,0,1085,29, + 1,0,0,0,1086,1084,1,0,0,0,1087,1088,5,34,0,0,1088,1089,5,451,0,0, + 1089,1090,5,74,0,0,1090,1091,3,702,351,0,1091,1092,5,6,0,0,1092, + 1093,5,671,0,0,1093,1099,5,882,0,0,1094,1096,5,428,0,0,1095,1097, + 5,857,0,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0,1097,1098,1,0,0,0, + 1098,1100,3,710,355,0,1099,1094,1,0,0,0,1099,1100,1,0,0,0,1100,1106, + 1,0,0,0,1101,1103,5,672,0,0,1102,1104,5,857,0,0,1103,1102,1,0,0, + 0,1103,1104,1,0,0,0,1104,1105,1,0,0,0,1105,1107,3,710,355,0,1106, + 1101,1,0,0,0,1106,1107,1,0,0,0,1107,1113,1,0,0,0,1108,1110,5,553, + 0,0,1109,1111,5,857,0,0,1110,1109,1,0,0,0,1110,1111,1,0,0,0,1111, + 1112,1,0,0,0,1112,1114,3,710,355,0,1113,1108,1,0,0,0,1113,1114,1, + 0,0,0,1114,1120,1,0,0,0,1115,1117,5,504,0,0,1116,1118,5,857,0,0, + 1117,1116,1,0,0,0,1117,1118,1,0,0,0,1118,1119,1,0,0,0,1119,1121, + 3,702,351,0,1120,1115,1,0,0,0,1120,1121,1,0,0,0,1121,1123,1,0,0, + 0,1122,1124,5,687,0,0,1123,1122,1,0,0,0,1123,1124,1,0,0,0,1124,1130, + 1,0,0,0,1125,1127,5,340,0,0,1126,1128,5,857,0,0,1127,1126,1,0,0, + 0,1127,1128,1,0,0,0,1128,1129,1,0,0,0,1129,1131,5,882,0,0,1130,1125, + 1,0,0,0,1130,1131,1,0,0,0,1131,1132,1,0,0,0,1132,1134,5,380,0,0, + 1133,1135,5,857,0,0,1134,1133,1,0,0,0,1134,1135,1,0,0,0,1135,1136, + 1,0,0,0,1136,1137,3,688,344,0,1137,31,1,0,0,0,1138,1140,5,34,0,0, + 1139,1141,3,58,29,0,1140,1139,1,0,0,0,1140,1141,1,0,0,0,1141,1142, + 1,0,0,0,1142,1144,5,132,0,0,1143,1145,3,756,378,0,1144,1143,1,0, + 0,0,1144,1145,1,0,0,0,1145,1146,1,0,0,0,1146,1147,3,698,349,0,1147, + 1149,5,866,0,0,1148,1150,3,74,37,0,1149,1148,1,0,0,0,1149,1150,1, + 0,0,0,1150,1155,1,0,0,0,1151,1152,5,868,0,0,1152,1154,3,74,37,0, + 1153,1151,1,0,0,0,1154,1157,1,0,0,0,1155,1153,1,0,0,0,1155,1156, + 1,0,0,0,1156,1158,1,0,0,0,1157,1155,1,0,0,0,1158,1162,5,867,0,0, + 1159,1161,3,76,38,0,1160,1159,1,0,0,0,1161,1164,1,0,0,0,1162,1160, + 1,0,0,0,1162,1163,1,0,0,0,1163,1165,1,0,0,0,1164,1162,1,0,0,0,1165, + 1166,3,416,208,0,1166,33,1,0,0,0,1167,1168,5,34,0,0,1168,1170,5, + 582,0,0,1169,1171,3,756,378,0,1170,1169,1,0,0,0,1170,1171,1,0,0, + 0,1171,1172,1,0,0,0,1172,1173,3,650,325,0,1173,35,1,0,0,0,1174,1175, + 5,34,0,0,1175,1176,5,592,0,0,1176,1177,3,702,351,0,1177,1178,5,67, + 0,0,1178,1179,5,360,0,0,1179,1180,5,692,0,0,1180,1181,7,5,0,0,1181, + 1182,5,518,0,0,1182,1183,5,866,0,0,1183,1188,3,78,39,0,1184,1185, + 5,868,0,0,1185,1187,3,78,39,0,1186,1184,1,0,0,0,1187,1190,1,0,0, + 0,1188,1186,1,0,0,0,1188,1189,1,0,0,0,1189,1191,1,0,0,0,1190,1188, + 1,0,0,0,1191,1192,5,867,0,0,1192,37,1,0,0,0,1193,1195,5,34,0,0,1194, + 1196,5,660,0,0,1195,1194,1,0,0,0,1195,1196,1,0,0,0,1196,1197,1,0, + 0,0,1197,1199,5,173,0,0,1198,1200,3,756,378,0,1199,1198,1,0,0,0, + 1199,1200,1,0,0,0,1200,1201,1,0,0,0,1201,1203,3,644,322,0,1202,1204, + 3,80,40,0,1203,1202,1,0,0,0,1203,1204,1,0,0,0,1204,1215,1,0,0,0, + 1205,1212,3,98,49,0,1206,1208,5,868,0,0,1207,1206,1,0,0,0,1207,1208, + 1,0,0,0,1208,1209,1,0,0,0,1209,1211,3,98,49,0,1210,1207,1,0,0,0, + 1211,1214,1,0,0,0,1212,1210,1,0,0,0,1212,1213,1,0,0,0,1213,1216, + 1,0,0,0,1214,1212,1,0,0,0,1215,1205,1,0,0,0,1215,1216,1,0,0,0,1216, + 1218,1,0,0,0,1217,1219,3,104,52,0,1218,1217,1,0,0,0,1218,1219,1, + 0,0,0,1219,1221,1,0,0,0,1220,1222,7,6,0,0,1221,1220,1,0,0,0,1221, + 1222,1,0,0,0,1222,1224,1,0,0,0,1223,1225,5,13,0,0,1224,1223,1,0, + 0,0,1224,1225,1,0,0,0,1225,1226,1,0,0,0,1226,1227,3,204,102,0,1227, + 1272,1,0,0,0,1228,1230,5,34,0,0,1229,1231,5,660,0,0,1230,1229,1, + 0,0,0,1230,1231,1,0,0,0,1231,1232,1,0,0,0,1232,1234,5,173,0,0,1233, + 1235,3,756,378,0,1234,1233,1,0,0,0,1234,1235,1,0,0,0,1235,1236,1, + 0,0,0,1236,1244,3,644,322,0,1237,1238,5,99,0,0,1238,1245,3,648,324, + 0,1239,1240,5,866,0,0,1240,1241,5,99,0,0,1241,1242,3,648,324,0,1242, + 1243,5,867,0,0,1243,1245,1,0,0,0,1244,1237,1,0,0,0,1244,1239,1,0, + 0,0,1245,1272,1,0,0,0,1246,1248,5,34,0,0,1247,1249,5,660,0,0,1248, + 1247,1,0,0,0,1248,1249,1,0,0,0,1249,1250,1,0,0,0,1250,1252,5,173, + 0,0,1251,1253,3,756,378,0,1252,1251,1,0,0,0,1252,1253,1,0,0,0,1253, + 1254,1,0,0,0,1254,1255,3,644,322,0,1255,1266,3,80,40,0,1256,1263, + 3,98,49,0,1257,1259,5,868,0,0,1258,1257,1,0,0,0,1258,1259,1,0,0, + 0,1259,1260,1,0,0,0,1260,1262,3,98,49,0,1261,1258,1,0,0,0,1262,1265, + 1,0,0,0,1263,1261,1,0,0,0,1263,1264,1,0,0,0,1264,1267,1,0,0,0,1265, + 1263,1,0,0,0,1266,1256,1,0,0,0,1266,1267,1,0,0,0,1267,1269,1,0,0, + 0,1268,1270,3,104,52,0,1269,1268,1,0,0,0,1269,1270,1,0,0,0,1270, + 1272,1,0,0,0,1271,1193,1,0,0,0,1271,1228,1,0,0,0,1271,1246,1,0,0, + 0,1272,39,1,0,0,0,1273,1275,5,34,0,0,1274,1276,5,180,0,0,1275,1274, + 1,0,0,0,1275,1276,1,0,0,0,1276,1277,1,0,0,0,1277,1278,5,658,0,0, + 1278,1282,3,660,330,0,1279,1280,5,6,0,0,1280,1281,5,361,0,0,1281, + 1283,5,882,0,0,1282,1279,1,0,0,0,1282,1283,1,0,0,0,1283,1289,1,0, + 0,0,1284,1286,5,314,0,0,1285,1287,5,857,0,0,1286,1285,1,0,0,0,1286, + 1287,1,0,0,0,1287,1288,1,0,0,0,1288,1290,3,710,355,0,1289,1284,1, + 0,0,0,1289,1290,1,0,0,0,1290,1294,1,0,0,0,1291,1292,5,399,0,0,1292, + 1293,5,857,0,0,1293,1295,3,710,355,0,1294,1291,1,0,0,0,1294,1295, + 1,0,0,0,1295,1301,1,0,0,0,1296,1298,5,380,0,0,1297,1299,5,857,0, + 0,1298,1297,1,0,0,0,1298,1299,1,0,0,0,1299,1300,1,0,0,0,1300,1302, + 3,688,344,0,1301,1296,1,0,0,0,1301,1302,1,0,0,0,1302,1308,1,0,0, + 0,1303,1305,5,825,0,0,1304,1306,5,857,0,0,1305,1304,1,0,0,0,1305, + 1306,1,0,0,0,1306,1307,1,0,0,0,1307,1309,5,882,0,0,1308,1303,1,0, + 0,0,1308,1309,1,0,0,0,1309,41,1,0,0,0,1310,1312,5,34,0,0,1311,1313, + 5,180,0,0,1312,1311,1,0,0,0,1312,1313,1,0,0,0,1313,1314,1,0,0,0, + 1314,1315,5,658,0,0,1315,1316,3,660,330,0,1316,1317,5,6,0,0,1317, + 1318,5,361,0,0,1318,1319,5,882,0,0,1319,1320,5,187,0,0,1320,1321, + 5,451,0,0,1321,1322,5,74,0,0,1322,1328,3,702,351,0,1323,1325,5,393, + 0,0,1324,1326,5,857,0,0,1325,1324,1,0,0,0,1325,1326,1,0,0,0,1326, + 1327,1,0,0,0,1327,1329,3,710,355,0,1328,1323,1,0,0,0,1328,1329,1, + 0,0,0,1329,1335,1,0,0,0,1330,1332,5,428,0,0,1331,1333,5,857,0,0, + 1332,1331,1,0,0,0,1332,1333,1,0,0,0,1333,1334,1,0,0,0,1334,1336, + 3,710,355,0,1335,1330,1,0,0,0,1335,1336,1,0,0,0,1336,1342,1,0,0, + 0,1337,1339,5,314,0,0,1338,1340,5,857,0,0,1339,1338,1,0,0,0,1339, + 1340,1,0,0,0,1340,1341,1,0,0,0,1341,1343,3,710,355,0,1342,1337,1, + 0,0,0,1342,1343,1,0,0,0,1343,1349,1,0,0,0,1344,1346,5,481,0,0,1345, + 1347,5,857,0,0,1346,1345,1,0,0,0,1346,1347,1,0,0,0,1347,1348,1,0, + 0,0,1348,1350,3,710,355,0,1349,1344,1,0,0,0,1349,1350,1,0,0,0,1350, + 1356,1,0,0,0,1351,1353,5,504,0,0,1352,1354,5,857,0,0,1353,1352,1, + 0,0,0,1353,1354,1,0,0,0,1354,1355,1,0,0,0,1355,1357,3,702,351,0, + 1356,1351,1,0,0,0,1356,1357,1,0,0,0,1357,1359,1,0,0,0,1358,1360, + 5,687,0,0,1359,1358,1,0,0,0,1359,1360,1,0,0,0,1360,1366,1,0,0,0, + 1361,1363,5,340,0,0,1362,1364,5,857,0,0,1363,1362,1,0,0,0,1363,1364, + 1,0,0,0,1364,1365,1,0,0,0,1365,1367,5,882,0,0,1366,1361,1,0,0,0, + 1366,1367,1,0,0,0,1367,1368,1,0,0,0,1368,1370,5,380,0,0,1369,1371, + 5,857,0,0,1370,1369,1,0,0,0,1370,1371,1,0,0,0,1371,1372,1,0,0,0, + 1372,1373,3,688,344,0,1373,43,1,0,0,0,1374,1376,5,34,0,0,1375,1377, + 3,58,29,0,1376,1375,1,0,0,0,1376,1377,1,0,0,0,1377,1378,1,0,0,0, + 1378,1380,5,178,0,0,1379,1381,3,756,378,0,1380,1379,1,0,0,0,1380, + 1381,1,0,0,0,1381,1382,1,0,0,0,1382,1383,3,698,349,0,1383,1384,7, + 7,0,0,1384,1385,7,8,0,0,1385,1386,5,119,0,0,1386,1387,3,648,324, + 0,1387,1388,5,65,0,0,1388,1389,5,52,0,0,1389,1392,5,586,0,0,1390, + 1391,7,9,0,0,1391,1393,3,698,349,0,1392,1390,1,0,0,0,1392,1393,1, + 0,0,0,1393,1394,1,0,0,0,1394,1395,3,416,208,0,1395,45,1,0,0,0,1396, + 1398,5,194,0,0,1397,1399,5,552,0,0,1398,1397,1,0,0,0,1398,1399,1, + 0,0,0,1399,1400,1,0,0,0,1400,1401,3,48,24,0,1401,47,1,0,0,0,1402, + 1414,3,702,351,0,1403,1404,5,866,0,0,1404,1409,3,702,351,0,1405, + 1406,5,868,0,0,1406,1408,3,702,351,0,1407,1405,1,0,0,0,1408,1411, + 1,0,0,0,1409,1407,1,0,0,0,1409,1410,1,0,0,0,1410,1412,1,0,0,0,1411, + 1409,1,0,0,0,1412,1413,5,867,0,0,1413,1415,1,0,0,0,1414,1403,1,0, + 0,0,1414,1415,1,0,0,0,1415,1416,1,0,0,0,1416,1417,5,13,0,0,1417, + 1418,5,866,0,0,1418,1419,3,10,5,0,1419,1422,5,867,0,0,1420,1421, + 5,868,0,0,1421,1423,3,48,24,0,1422,1420,1,0,0,0,1422,1423,1,0,0, + 0,1423,49,1,0,0,0,1424,1426,5,34,0,0,1425,1427,3,758,379,0,1426, + 1425,1,0,0,0,1426,1427,1,0,0,0,1427,1431,1,0,0,0,1428,1429,5,308, + 0,0,1429,1430,5,857,0,0,1430,1432,7,10,0,0,1431,1428,1,0,0,0,1431, + 1432,1,0,0,0,1432,1434,1,0,0,0,1433,1435,3,58,29,0,1434,1433,1,0, + 0,0,1434,1435,1,0,0,0,1435,1439,1,0,0,0,1436,1437,5,162,0,0,1437, + 1438,5,591,0,0,1438,1440,7,11,0,0,1439,1436,1,0,0,0,1439,1440,1, + 0,0,0,1440,1441,1,0,0,0,1441,1442,5,684,0,0,1442,1454,3,630,315, + 0,1443,1444,5,866,0,0,1444,1449,3,654,327,0,1445,1446,5,868,0,0, + 1446,1448,3,654,327,0,1447,1445,1,0,0,0,1448,1451,1,0,0,0,1449,1447, + 1,0,0,0,1449,1450,1,0,0,0,1450,1452,1,0,0,0,1451,1449,1,0,0,0,1452, + 1453,5,867,0,0,1453,1455,1,0,0,0,1454,1443,1,0,0,0,1454,1455,1,0, + 0,0,1455,1456,1,0,0,0,1456,1476,5,13,0,0,1457,1459,5,866,0,0,1458, + 1460,3,46,23,0,1459,1458,1,0,0,0,1459,1460,1,0,0,0,1460,1461,1,0, + 0,0,1461,1462,3,204,102,0,1462,1463,5,867,0,0,1463,1477,1,0,0,0, + 1464,1466,3,46,23,0,1465,1464,1,0,0,0,1465,1466,1,0,0,0,1466,1467, + 1,0,0,0,1467,1474,3,204,102,0,1468,1470,5,194,0,0,1469,1471,7,12, + 0,0,1470,1469,1,0,0,0,1470,1471,1,0,0,0,1471,1472,1,0,0,0,1472,1473, + 5,27,0,0,1473,1475,5,121,0,0,1474,1468,1,0,0,0,1474,1475,1,0,0,0, + 1475,1477,1,0,0,0,1476,1457,1,0,0,0,1476,1465,1,0,0,0,1477,51,1, + 0,0,0,1478,1480,5,42,0,0,1479,1478,1,0,0,0,1479,1480,1,0,0,0,1480, + 1481,1,0,0,0,1481,1483,3,54,27,0,1482,1484,5,857,0,0,1483,1482,1, + 0,0,0,1483,1484,1,0,0,0,1484,1487,1,0,0,0,1485,1488,3,684,342,0, + 1486,1488,5,42,0,0,1487,1485,1,0,0,0,1487,1486,1,0,0,0,1488,1512, + 1,0,0,0,1489,1491,5,42,0,0,1490,1489,1,0,0,0,1490,1491,1,0,0,0,1491, + 1492,1,0,0,0,1492,1494,5,28,0,0,1493,1495,5,857,0,0,1494,1493,1, + 0,0,0,1494,1495,1,0,0,0,1495,1496,1,0,0,0,1496,1512,3,686,343,0, + 1497,1499,5,42,0,0,1498,1497,1,0,0,0,1498,1499,1,0,0,0,1499,1500, + 1,0,0,0,1500,1502,5,376,0,0,1501,1503,5,857,0,0,1502,1501,1,0,0, + 0,1502,1503,1,0,0,0,1503,1504,1,0,0,0,1504,1512,5,882,0,0,1505,1506, + 5,135,0,0,1506,1508,5,515,0,0,1507,1509,5,857,0,0,1508,1507,1,0, + 0,0,1508,1509,1,0,0,0,1509,1510,1,0,0,0,1510,1512,7,13,0,0,1511, + 1479,1,0,0,0,1511,1490,1,0,0,0,1511,1498,1,0,0,0,1511,1505,1,0,0, + 0,1512,53,1,0,0,0,1513,1514,5,26,0,0,1514,1519,5,155,0,0,1515,1519, + 5,823,0,0,1516,1517,5,224,0,0,1517,1519,5,155,0,0,1518,1513,1,0, + 0,0,1518,1515,1,0,0,0,1518,1516,1,0,0,0,1519,55,1,0,0,0,1520,1523, + 7,14,0,0,1521,1522,5,866,0,0,1522,1524,5,867,0,0,1523,1521,1,0,0, + 0,1523,1524,1,0,0,0,1524,57,1,0,0,0,1525,1526,5,364,0,0,1526,1529, + 5,857,0,0,1527,1530,3,680,340,0,1528,1530,3,56,28,0,1529,1527,1, + 0,0,0,1529,1528,1,0,0,0,1530,59,1,0,0,0,1531,1532,5,311,0,0,1532, + 1536,3,62,31,0,1533,1535,3,64,32,0,1534,1533,1,0,0,0,1535,1538,1, + 0,0,0,1536,1534,1,0,0,0,1536,1537,1,0,0,0,1537,1566,1,0,0,0,1538, + 1536,1,0,0,0,1539,1542,5,387,0,0,1540,1543,3,708,354,0,1541,1543, + 3,800,400,0,1542,1540,1,0,0,0,1542,1541,1,0,0,0,1543,1544,1,0,0, + 0,1544,1553,3,66,33,0,1545,1546,5,641,0,0,1546,1550,3,62,31,0,1547, + 1549,3,64,32,0,1548,1547,1,0,0,0,1549,1552,1,0,0,0,1550,1548,1,0, + 0,0,1550,1551,1,0,0,0,1551,1554,1,0,0,0,1552,1550,1,0,0,0,1553,1545, + 1,0,0,0,1553,1554,1,0,0,0,1554,1563,1,0,0,0,1555,1556,5,379,0,0, + 1556,1560,3,62,31,0,1557,1559,3,64,32,0,1558,1557,1,0,0,0,1559,1562, + 1,0,0,0,1560,1558,1,0,0,0,1560,1561,1,0,0,0,1561,1564,1,0,0,0,1562, + 1560,1,0,0,0,1563,1555,1,0,0,0,1563,1564,1,0,0,0,1564,1566,1,0,0, + 0,1565,1531,1,0,0,0,1565,1539,1,0,0,0,1566,61,1,0,0,0,1567,1572, + 5,287,0,0,1568,1572,3,712,356,0,1569,1572,3,708,354,0,1570,1572, + 3,800,400,0,1571,1567,1,0,0,0,1571,1568,1,0,0,0,1571,1569,1,0,0, + 0,1571,1570,1,0,0,0,1572,63,1,0,0,0,1573,1574,5,853,0,0,1574,1577, + 5,87,0,0,1575,1578,3,708,354,0,1576,1578,3,800,400,0,1577,1575,1, + 0,0,0,1577,1576,1,0,0,0,1578,1579,1,0,0,0,1579,1580,3,66,33,0,1580, + 65,1,0,0,0,1581,1595,3,826,413,0,1582,1595,5,223,0,0,1583,1595,5, + 242,0,0,1584,1595,5,243,0,0,1585,1595,5,244,0,0,1586,1595,5,245, + 0,0,1587,1595,5,246,0,0,1588,1595,5,247,0,0,1589,1595,5,248,0,0, + 1590,1595,5,249,0,0,1591,1595,5,250,0,0,1592,1595,5,251,0,0,1593, + 1595,5,252,0,0,1594,1581,1,0,0,0,1594,1582,1,0,0,0,1594,1583,1,0, + 0,0,1594,1584,1,0,0,0,1594,1585,1,0,0,0,1594,1586,1,0,0,0,1594,1587, + 1,0,0,0,1594,1588,1,0,0,0,1594,1589,1,0,0,0,1594,1590,1,0,0,0,1594, + 1591,1,0,0,0,1594,1592,1,0,0,0,1594,1593,1,0,0,0,1595,67,1,0,0,0, + 1596,1602,5,375,0,0,1597,1602,5,368,0,0,1598,1599,5,368,0,0,1599, + 1600,5,119,0,0,1600,1602,5,598,0,0,1601,1596,1,0,0,0,1601,1597,1, + 0,0,0,1601,1598,1,0,0,0,1602,69,1,0,0,0,1603,1604,5,188,0,0,1604, + 1605,7,15,0,0,1605,71,1,0,0,0,1606,1608,5,443,0,0,1607,1609,5,857, + 0,0,1608,1607,1,0,0,0,1608,1609,1,0,0,0,1609,1610,1,0,0,0,1610,1629, + 3,710,355,0,1611,1629,3,70,35,0,1612,1613,5,194,0,0,1613,1614,5, + 525,0,0,1614,1629,3,702,351,0,1615,1616,5,340,0,0,1616,1629,5,882, + 0,0,1617,1629,7,16,0,0,1618,1620,5,825,0,0,1619,1621,5,857,0,0,1620, + 1619,1,0,0,0,1620,1621,1,0,0,0,1621,1622,1,0,0,0,1622,1629,5,882, + 0,0,1623,1625,5,833,0,0,1624,1626,5,857,0,0,1625,1624,1,0,0,0,1625, + 1626,1,0,0,0,1626,1627,1,0,0,0,1627,1629,5,882,0,0,1628,1606,1,0, + 0,0,1628,1611,1,0,0,0,1628,1612,1,0,0,0,1628,1615,1,0,0,0,1628,1617, + 1,0,0,0,1628,1618,1,0,0,0,1628,1623,1,0,0,0,1629,73,1,0,0,0,1630, + 1632,7,17,0,0,1631,1630,1,0,0,0,1631,1632,1,0,0,0,1632,1633,1,0, + 0,0,1633,1634,3,702,351,0,1634,1635,3,722,361,0,1635,75,1,0,0,0, + 1636,1637,5,340,0,0,1637,1660,5,882,0,0,1638,1639,5,444,0,0,1639, + 1660,5,162,0,0,1640,1642,5,114,0,0,1641,1640,1,0,0,0,1641,1642,1, + 0,0,0,1642,1643,1,0,0,0,1643,1660,5,47,0,0,1644,1645,5,354,0,0,1645, + 1655,5,162,0,0,1646,1647,5,502,0,0,1647,1655,5,162,0,0,1648,1649, + 5,136,0,0,1649,1650,5,162,0,0,1650,1655,5,360,0,0,1651,1652,5,112, + 0,0,1652,1653,5,162,0,0,1653,1655,5,360,0,0,1654,1644,1,0,0,0,1654, + 1646,1,0,0,0,1654,1648,1,0,0,0,1654,1651,1,0,0,0,1655,1660,1,0,0, + 0,1656,1657,5,162,0,0,1657,1658,5,591,0,0,1658,1660,7,11,0,0,1659, + 1636,1,0,0,0,1659,1638,1,0,0,0,1659,1641,1,0,0,0,1659,1654,1,0,0, + 0,1659,1656,1,0,0,0,1660,77,1,0,0,0,1661,1662,5,421,0,0,1662,1676, + 5,882,0,0,1663,1664,5,39,0,0,1664,1676,5,882,0,0,1665,1666,5,678, + 0,0,1666,1676,5,882,0,0,1667,1668,5,529,0,0,1668,1676,5,882,0,0, + 1669,1670,5,601,0,0,1670,1676,5,882,0,0,1671,1672,5,519,0,0,1672, + 1676,5,882,0,0,1673,1674,5,537,0,0,1674,1676,3,708,354,0,1675,1661, + 1,0,0,0,1675,1663,1,0,0,0,1675,1665,1,0,0,0,1675,1667,1,0,0,0,1675, + 1669,1,0,0,0,1675,1671,1,0,0,0,1675,1673,1,0,0,0,1676,79,1,0,0,0, + 1677,1678,5,866,0,0,1678,1683,3,82,41,0,1679,1680,5,868,0,0,1680, + 1682,3,82,41,0,1681,1679,1,0,0,0,1682,1685,1,0,0,0,1683,1681,1,0, + 0,0,1683,1684,1,0,0,0,1684,1686,1,0,0,0,1685,1683,1,0,0,0,1686,1687, + 5,867,0,0,1687,81,1,0,0,0,1688,1689,3,654,327,0,1689,1690,3,88,44, + 0,1690,1772,1,0,0,0,1691,1693,7,18,0,0,1692,1694,3,638,319,0,1693, + 1692,1,0,0,0,1693,1694,1,0,0,0,1694,1696,1,0,0,0,1695,1697,3,70, + 35,0,1696,1695,1,0,0,0,1696,1697,1,0,0,0,1697,1698,1,0,0,0,1698, + 1702,3,734,367,0,1699,1701,3,72,36,0,1700,1699,1,0,0,0,1701,1704, + 1,0,0,0,1702,1700,1,0,0,0,1702,1703,1,0,0,0,1703,1772,1,0,0,0,1704, + 1702,1,0,0,0,1705,1707,7,19,0,0,1706,1708,7,18,0,0,1707,1706,1,0, + 0,0,1707,1708,1,0,0,0,1708,1710,1,0,0,0,1709,1711,3,638,319,0,1710, + 1709,1,0,0,0,1710,1711,1,0,0,0,1711,1712,1,0,0,0,1712,1716,3,734, + 367,0,1713,1715,3,72,36,0,1714,1713,1,0,0,0,1715,1718,1,0,0,0,1716, + 1714,1,0,0,0,1716,1717,1,0,0,0,1717,1772,1,0,0,0,1718,1716,1,0,0, + 0,1719,1721,3,86,43,0,1720,1719,1,0,0,0,1720,1721,1,0,0,0,1721,1722, + 1,0,0,0,1722,1723,5,131,0,0,1723,1725,5,92,0,0,1724,1726,3,70,35, + 0,1725,1724,1,0,0,0,1725,1726,1,0,0,0,1726,1727,1,0,0,0,1727,1731, + 3,734,367,0,1728,1730,3,72,36,0,1729,1728,1,0,0,0,1730,1733,1,0, + 0,0,1731,1729,1,0,0,0,1731,1732,1,0,0,0,1732,1772,1,0,0,0,1733,1731, + 1,0,0,0,1734,1736,3,86,43,0,1735,1734,1,0,0,0,1735,1736,1,0,0,0, + 1736,1737,1,0,0,0,1737,1739,5,182,0,0,1738,1740,7,18,0,0,1739,1738, + 1,0,0,0,1739,1740,1,0,0,0,1740,1742,1,0,0,0,1741,1743,3,638,319, + 0,1742,1741,1,0,0,0,1742,1743,1,0,0,0,1743,1745,1,0,0,0,1744,1746, + 3,70,35,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0, + 1747,1751,3,734,367,0,1748,1750,3,72,36,0,1749,1748,1,0,0,0,1750, + 1753,1,0,0,0,1751,1749,1,0,0,0,1751,1752,1,0,0,0,1752,1772,1,0,0, + 0,1753,1751,1,0,0,0,1754,1756,3,86,43,0,1755,1754,1,0,0,0,1755,1756, + 1,0,0,0,1756,1757,1,0,0,0,1757,1758,5,67,0,0,1758,1760,5,92,0,0, + 1759,1761,3,638,319,0,1760,1759,1,0,0,0,1760,1761,1,0,0,0,1761,1762, + 1,0,0,0,1762,1763,3,734,367,0,1763,1764,3,92,46,0,1764,1772,1,0, + 0,0,1765,1766,5,27,0,0,1766,1767,5,866,0,0,1767,1768,3,800,400,0, + 1768,1769,5,867,0,0,1769,1772,1,0,0,0,1770,1772,3,84,42,0,1771,1688, + 1,0,0,0,1771,1691,1,0,0,0,1771,1705,1,0,0,0,1771,1720,1,0,0,0,1771, + 1735,1,0,0,0,1771,1755,1,0,0,0,1771,1765,1,0,0,0,1771,1770,1,0,0, + 0,1772,83,1,0,0,0,1773,1775,3,86,43,0,1774,1773,1,0,0,0,1774,1775, + 1,0,0,0,1775,1776,1,0,0,0,1776,1777,5,27,0,0,1777,1778,5,866,0,0, + 1778,1779,3,800,400,0,1779,1784,5,867,0,0,1780,1782,5,114,0,0,1781, + 1780,1,0,0,0,1781,1782,1,0,0,0,1782,1783,1,0,0,0,1783,1785,5,57, + 0,0,1784,1781,1,0,0,0,1784,1785,1,0,0,0,1785,85,1,0,0,0,1786,1788, + 5,31,0,0,1787,1789,3,702,351,0,1788,1787,1,0,0,0,1788,1789,1,0,0, + 0,1789,87,1,0,0,0,1790,1794,3,722,361,0,1791,1793,3,90,45,0,1792, + 1791,1,0,0,0,1793,1796,1,0,0,0,1794,1792,1,0,0,0,1794,1795,1,0,0, + 0,1795,89,1,0,0,0,1796,1794,1,0,0,0,1797,1841,3,718,359,0,1798,1799, + 5,42,0,0,1799,1841,3,750,375,0,1800,1841,5,686,0,0,1801,1841,5,435, + 0,0,1802,1807,5,315,0,0,1803,1804,5,119,0,0,1804,1805,5,185,0,0, + 1805,1807,3,752,376,0,1806,1802,1,0,0,0,1806,1803,1,0,0,0,1807,1841, + 1,0,0,0,1808,1810,5,131,0,0,1809,1808,1,0,0,0,1809,1810,1,0,0,0, + 1810,1811,1,0,0,0,1811,1841,5,92,0,0,1812,1814,5,182,0,0,1813,1815, + 5,92,0,0,1814,1813,1,0,0,0,1814,1815,1,0,0,0,1815,1841,1,0,0,0,1816, + 1817,5,340,0,0,1817,1841,5,882,0,0,1818,1819,5,338,0,0,1819,1841, + 7,20,0,0,1820,1821,5,647,0,0,1821,1841,7,21,0,0,1822,1841,3,92,46, + 0,1823,1824,5,28,0,0,1824,1841,3,686,343,0,1825,1826,5,71,0,0,1826, + 1828,5,9,0,0,1827,1825,1,0,0,0,1827,1828,1,0,0,0,1828,1829,1,0,0, + 0,1829,1830,5,13,0,0,1830,1831,5,866,0,0,1831,1832,3,800,400,0,1832, + 1834,5,867,0,0,1833,1835,7,22,0,0,1834,1833,1,0,0,0,1834,1835,1, + 0,0,0,1835,1841,1,0,0,0,1836,1837,5,241,0,0,1837,1838,5,42,0,0,1838, + 1841,5,682,0,0,1839,1841,3,84,42,0,1840,1797,1,0,0,0,1840,1798,1, + 0,0,0,1840,1800,1,0,0,0,1840,1801,1,0,0,0,1840,1806,1,0,0,0,1840, + 1809,1,0,0,0,1840,1812,1,0,0,0,1840,1816,1,0,0,0,1840,1818,1,0,0, + 0,1840,1820,1,0,0,0,1840,1822,1,0,0,0,1840,1823,1,0,0,0,1840,1827, + 1,0,0,0,1840,1836,1,0,0,0,1840,1839,1,0,0,0,1841,91,1,0,0,0,1842, + 1843,5,138,0,0,1843,1845,3,648,324,0,1844,1846,3,734,367,0,1845, + 1844,1,0,0,0,1845,1846,1,0,0,0,1846,1849,1,0,0,0,1847,1848,5,110, + 0,0,1848,1850,7,23,0,0,1849,1847,1,0,0,0,1849,1850,1,0,0,0,1850, + 1852,1,0,0,0,1851,1853,3,94,47,0,1852,1851,1,0,0,0,1852,1853,1,0, + 0,0,1853,93,1,0,0,0,1854,1855,5,119,0,0,1855,1856,5,44,0,0,1856, + 1860,3,96,48,0,1857,1858,5,119,0,0,1858,1859,5,185,0,0,1859,1861, + 3,96,48,0,1860,1857,1,0,0,0,1860,1861,1,0,0,0,1861,1871,1,0,0,0, + 1862,1863,5,119,0,0,1863,1864,5,185,0,0,1864,1868,3,96,48,0,1865, + 1866,5,119,0,0,1866,1867,5,44,0,0,1867,1869,3,96,48,0,1868,1865, + 1,0,0,0,1868,1869,1,0,0,0,1869,1871,1,0,0,0,1870,1854,1,0,0,0,1870, + 1862,1,0,0,0,1871,95,1,0,0,0,1872,1881,5,146,0,0,1873,1881,5,22, + 0,0,1874,1875,5,155,0,0,1875,1881,5,116,0,0,1876,1877,5,502,0,0, + 1877,1881,5,305,0,0,1878,1879,5,155,0,0,1879,1881,5,42,0,0,1880, + 1872,1,0,0,0,1880,1873,1,0,0,0,1880,1874,1,0,0,0,1880,1876,1,0,0, + 0,1880,1878,1,0,0,0,1881,97,1,0,0,0,1882,1884,5,380,0,0,1883,1885, + 5,857,0,0,1884,1883,1,0,0,0,1884,1885,1,0,0,0,1885,1887,1,0,0,0, + 1886,1888,3,688,344,0,1887,1886,1,0,0,0,1887,1888,1,0,0,0,1888,2068, + 1,0,0,0,1889,1891,5,825,0,0,1890,1892,5,857,0,0,1891,1890,1,0,0, + 0,1891,1892,1,0,0,0,1892,1893,1,0,0,0,1893,2068,5,882,0,0,1894,1896, + 5,314,0,0,1895,1897,5,857,0,0,1896,1895,1,0,0,0,1896,1897,1,0,0, + 0,1897,1898,1,0,0,0,1898,2068,3,708,354,0,1899,1901,5,315,0,0,1900, + 1902,5,857,0,0,1901,1900,1,0,0,0,1901,1902,1,0,0,0,1902,1903,1,0, + 0,0,1903,2068,3,708,354,0,1904,1906,5,316,0,0,1905,1907,5,857,0, + 0,1906,1905,1,0,0,0,1906,1907,1,0,0,0,1907,1908,1,0,0,0,1908,2068, + 3,708,354,0,1909,1911,5,42,0,0,1910,1909,1,0,0,0,1910,1911,1,0,0, + 0,1911,1912,1,0,0,0,1912,1914,3,54,27,0,1913,1915,5,857,0,0,1914, + 1913,1,0,0,0,1914,1915,1,0,0,0,1915,1918,1,0,0,0,1916,1919,3,684, + 342,0,1917,1919,5,42,0,0,1918,1916,1,0,0,0,1918,1917,1,0,0,0,1919, + 2068,1,0,0,0,1920,1922,7,24,0,0,1921,1923,5,857,0,0,1922,1921,1, + 0,0,0,1922,1923,1,0,0,0,1923,1924,1,0,0,0,1924,2068,7,25,0,0,1925, + 1927,5,42,0,0,1926,1925,1,0,0,0,1926,1927,1,0,0,0,1927,1928,1,0, + 0,0,1928,1930,5,28,0,0,1929,1931,5,857,0,0,1930,1929,1,0,0,0,1930, + 1931,1,0,0,0,1931,1932,1,0,0,0,1932,2068,3,686,343,0,1933,1935,5, + 340,0,0,1934,1936,5,857,0,0,1935,1934,1,0,0,0,1935,1936,1,0,0,0, + 1936,1937,1,0,0,0,1937,2068,5,882,0,0,1938,1940,5,346,0,0,1939,1941, + 5,857,0,0,1940,1939,1,0,0,0,1940,1941,1,0,0,0,1941,1942,1,0,0,0, + 1942,2068,7,26,0,0,1943,1945,5,349,0,0,1944,1946,5,857,0,0,1945, + 1944,1,0,0,0,1945,1946,1,0,0,0,1946,1947,1,0,0,0,1947,2068,5,882, + 0,0,1948,1949,7,27,0,0,1949,1951,5,367,0,0,1950,1952,5,857,0,0,1951, + 1950,1,0,0,0,1951,1952,1,0,0,0,1952,1953,1,0,0,0,1953,2068,5,882, + 0,0,1954,1956,5,365,0,0,1955,1957,5,857,0,0,1956,1955,1,0,0,0,1956, + 1957,1,0,0,0,1957,1958,1,0,0,0,1958,2068,7,25,0,0,1959,1961,5,376, + 0,0,1960,1962,5,857,0,0,1961,1960,1,0,0,0,1961,1962,1,0,0,0,1962, + 1963,1,0,0,0,1963,2068,5,882,0,0,1964,1966,7,28,0,0,1965,1967,5, + 857,0,0,1966,1965,1,0,0,0,1966,1967,1,0,0,0,1967,1968,1,0,0,0,1968, + 2068,7,25,0,0,1969,1971,7,29,0,0,1970,1972,5,857,0,0,1971,1970,1, + 0,0,0,1971,1972,1,0,0,0,1972,1973,1,0,0,0,1973,2068,3,708,354,0, + 1974,1976,5,377,0,0,1975,1977,5,857,0,0,1976,1975,1,0,0,0,1976,1977, + 1,0,0,0,1977,1978,1,0,0,0,1978,2068,3,708,354,0,1979,1980,5,82,0, + 0,1980,1982,5,367,0,0,1981,1983,5,857,0,0,1982,1981,1,0,0,0,1982, + 1983,1,0,0,0,1983,1984,1,0,0,0,1984,2068,5,882,0,0,1985,1987,5,431, + 0,0,1986,1988,5,857,0,0,1987,1986,1,0,0,0,1987,1988,1,0,0,0,1988, + 1989,1,0,0,0,1989,2068,7,30,0,0,1990,1992,5,443,0,0,1991,1993,5, + 857,0,0,1992,1991,1,0,0,0,1992,1993,1,0,0,0,1993,1994,1,0,0,0,1994, + 2068,3,710,355,0,1995,1997,5,480,0,0,1996,1998,5,857,0,0,1997,1996, + 1,0,0,0,1997,1998,1,0,0,0,1998,1999,1,0,0,0,1999,2068,3,708,354, + 0,2000,2002,5,490,0,0,2001,2003,5,857,0,0,2002,2001,1,0,0,0,2002, + 2003,1,0,0,0,2003,2004,1,0,0,0,2004,2068,3,708,354,0,2005,2007,5, + 520,0,0,2006,2008,5,857,0,0,2007,2006,1,0,0,0,2007,2008,1,0,0,0, + 2008,2009,1,0,0,0,2009,2068,7,13,0,0,2010,2012,5,529,0,0,2011,2013, + 5,857,0,0,2012,2011,1,0,0,0,2012,2013,1,0,0,0,2013,2014,1,0,0,0, + 2014,2068,5,882,0,0,2015,2017,5,588,0,0,2016,2018,5,857,0,0,2017, + 2016,1,0,0,0,2017,2018,1,0,0,0,2018,2019,1,0,0,0,2019,2068,7,31, + 0,0,2020,2021,5,640,0,0,2021,2068,5,664,0,0,2022,2024,5,833,0,0, + 2023,2025,5,857,0,0,2024,2023,1,0,0,0,2024,2025,1,0,0,0,2025,2026, + 1,0,0,0,2026,2068,5,882,0,0,2027,2029,5,642,0,0,2028,2030,5,857, + 0,0,2029,2028,1,0,0,0,2029,2030,1,0,0,0,2030,2031,1,0,0,0,2031,2068, + 7,13,0,0,2032,2034,5,643,0,0,2033,2035,5,857,0,0,2034,2033,1,0,0, + 0,2034,2035,1,0,0,0,2035,2036,1,0,0,0,2036,2068,7,13,0,0,2037,2039, + 5,644,0,0,2038,2040,5,857,0,0,2039,2038,1,0,0,0,2039,2040,1,0,0, + 0,2040,2043,1,0,0,0,2041,2044,5,42,0,0,2042,2044,3,708,354,0,2043, + 2041,1,0,0,0,2043,2042,1,0,0,0,2044,2068,1,0,0,0,2045,2046,5,658, + 0,0,2046,2048,3,662,331,0,2047,2049,3,102,51,0,2048,2047,1,0,0,0, + 2048,2049,1,0,0,0,2049,2068,1,0,0,0,2050,2051,5,659,0,0,2051,2052, + 5,857,0,0,2052,2068,3,100,50,0,2053,2068,3,102,51,0,2054,2056,5, + 665,0,0,2055,2057,5,857,0,0,2056,2055,1,0,0,0,2056,2057,1,0,0,0, + 2057,2058,1,0,0,0,2058,2068,7,25,0,0,2059,2061,5,181,0,0,2060,2062, + 5,857,0,0,2061,2060,1,0,0,0,2061,2062,1,0,0,0,2062,2063,1,0,0,0, + 2063,2064,5,866,0,0,2064,2065,3,646,323,0,2065,2066,5,867,0,0,2066, + 2068,1,0,0,0,2067,1882,1,0,0,0,2067,1889,1,0,0,0,2067,1894,1,0,0, + 0,2067,1899,1,0,0,0,2067,1904,1,0,0,0,2067,1910,1,0,0,0,2067,1920, + 1,0,0,0,2067,1926,1,0,0,0,2067,1933,1,0,0,0,2067,1938,1,0,0,0,2067, + 1943,1,0,0,0,2067,1948,1,0,0,0,2067,1954,1,0,0,0,2067,1959,1,0,0, + 0,2067,1964,1,0,0,0,2067,1969,1,0,0,0,2067,1974,1,0,0,0,2067,1979, + 1,0,0,0,2067,1985,1,0,0,0,2067,1990,1,0,0,0,2067,1995,1,0,0,0,2067, + 2000,1,0,0,0,2067,2005,1,0,0,0,2067,2010,1,0,0,0,2067,2015,1,0,0, + 0,2067,2020,1,0,0,0,2067,2022,1,0,0,0,2067,2027,1,0,0,0,2067,2032, + 1,0,0,0,2067,2037,1,0,0,0,2067,2045,1,0,0,0,2067,2050,1,0,0,0,2067, + 2053,1,0,0,0,2067,2054,1,0,0,0,2067,2059,1,0,0,0,2068,99,1,0,0,0, + 2069,2070,7,32,0,0,2070,101,1,0,0,0,2071,2072,5,647,0,0,2072,2073, + 7,21,0,0,2073,103,1,0,0,0,2074,2075,5,130,0,0,2075,2076,5,20,0,0, + 2076,2079,3,106,53,0,2077,2078,5,528,0,0,2078,2080,3,708,354,0,2079, + 2077,1,0,0,0,2079,2080,1,0,0,0,2080,2088,1,0,0,0,2081,2082,5,652, + 0,0,2082,2083,5,20,0,0,2083,2086,3,108,54,0,2084,2085,5,653,0,0, + 2085,2087,3,708,354,0,2086,2084,1,0,0,0,2086,2087,1,0,0,0,2087,2089, + 1,0,0,0,2088,2081,1,0,0,0,2088,2089,1,0,0,0,2089,2101,1,0,0,0,2090, + 2091,5,866,0,0,2091,2096,3,110,55,0,2092,2093,5,868,0,0,2093,2095, + 3,110,55,0,2094,2092,1,0,0,0,2095,2098,1,0,0,0,2096,2094,1,0,0,0, + 2096,2097,1,0,0,0,2097,2099,1,0,0,0,2098,2096,1,0,0,0,2099,2100, + 5,867,0,0,2100,2102,1,0,0,0,2101,2090,1,0,0,0,2101,2102,1,0,0,0, + 2102,105,1,0,0,0,2103,2105,5,101,0,0,2104,2103,1,0,0,0,2104,2105, + 1,0,0,0,2105,2106,1,0,0,0,2106,2107,5,418,0,0,2107,2108,5,866,0, + 0,2108,2109,3,800,400,0,2109,2110,5,867,0,0,2110,2150,1,0,0,0,2111, + 2113,5,101,0,0,2112,2111,1,0,0,0,2112,2113,1,0,0,0,2113,2114,1,0, + 0,0,2114,2118,5,92,0,0,2115,2116,5,308,0,0,2116,2117,5,857,0,0,2117, + 2119,7,33,0,0,2118,2115,1,0,0,0,2118,2119,1,0,0,0,2119,2120,1,0, + 0,0,2120,2122,5,866,0,0,2121,2123,3,656,328,0,2122,2121,1,0,0,0, + 2122,2123,1,0,0,0,2123,2124,1,0,0,0,2124,2150,5,867,0,0,2125,2135, + 5,134,0,0,2126,2127,5,866,0,0,2127,2128,3,800,400,0,2128,2129,5, + 867,0,0,2129,2136,1,0,0,0,2130,2131,5,337,0,0,2131,2132,5,866,0, + 0,2132,2133,3,656,328,0,2133,2134,5,867,0,0,2134,2136,1,0,0,0,2135, + 2126,1,0,0,0,2135,2130,1,0,0,0,2136,2150,1,0,0,0,2137,2147,5,449, + 0,0,2138,2139,5,866,0,0,2139,2140,3,800,400,0,2140,2141,5,867,0, + 0,2141,2148,1,0,0,0,2142,2143,5,337,0,0,2143,2144,5,866,0,0,2144, + 2145,3,656,328,0,2145,2146,5,867,0,0,2146,2148,1,0,0,0,2147,2138, + 1,0,0,0,2147,2142,1,0,0,0,2148,2150,1,0,0,0,2149,2104,1,0,0,0,2149, + 2112,1,0,0,0,2149,2125,1,0,0,0,2149,2137,1,0,0,0,2150,107,1,0,0, + 0,2151,2153,5,101,0,0,2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,2154, + 1,0,0,0,2154,2155,5,418,0,0,2155,2156,5,866,0,0,2156,2157,3,800, + 400,0,2157,2158,5,867,0,0,2158,2173,1,0,0,0,2159,2161,5,101,0,0, + 2160,2159,1,0,0,0,2160,2161,1,0,0,0,2161,2162,1,0,0,0,2162,2166, + 5,92,0,0,2163,2164,5,308,0,0,2164,2165,5,857,0,0,2165,2167,7,33, + 0,0,2166,2163,1,0,0,0,2166,2167,1,0,0,0,2167,2168,1,0,0,0,2168,2169, + 5,866,0,0,2169,2170,3,656,328,0,2170,2171,5,867,0,0,2171,2173,1, + 0,0,0,2172,2152,1,0,0,0,2172,2160,1,0,0,0,2173,109,1,0,0,0,2174, + 2175,5,130,0,0,2175,2176,3,668,334,0,2176,2177,5,189,0,0,2177,2178, + 5,447,0,0,2178,2179,5,662,0,0,2179,2180,5,866,0,0,2180,2185,3,112, + 56,0,2181,2182,5,868,0,0,2182,2184,3,112,56,0,2183,2181,1,0,0,0, + 2184,2187,1,0,0,0,2185,2183,1,0,0,0,2185,2186,1,0,0,0,2186,2188, + 1,0,0,0,2187,2185,1,0,0,0,2188,2192,5,867,0,0,2189,2191,3,118,59, + 0,2190,2189,1,0,0,0,2191,2194,1,0,0,0,2192,2190,1,0,0,0,2192,2193, + 1,0,0,0,2193,2206,1,0,0,0,2194,2192,1,0,0,0,2195,2196,5,866,0,0, + 2196,2201,3,116,58,0,2197,2198,5,868,0,0,2198,2200,3,116,58,0,2199, + 2197,1,0,0,0,2200,2203,1,0,0,0,2201,2199,1,0,0,0,2201,2202,1,0,0, + 0,2202,2204,1,0,0,0,2203,2201,1,0,0,0,2204,2205,5,867,0,0,2205,2207, + 1,0,0,0,2206,2195,1,0,0,0,2206,2207,1,0,0,0,2207,2321,1,0,0,0,2208, + 2209,5,130,0,0,2209,2210,3,668,334,0,2210,2211,5,189,0,0,2211,2212, + 5,447,0,0,2212,2213,5,662,0,0,2213,2217,3,112,56,0,2214,2216,3,118, + 59,0,2215,2214,1,0,0,0,2216,2219,1,0,0,0,2217,2215,1,0,0,0,2217, + 2218,1,0,0,0,2218,2231,1,0,0,0,2219,2217,1,0,0,0,2220,2221,5,866, + 0,0,2221,2226,3,116,58,0,2222,2223,5,868,0,0,2223,2225,3,116,58, + 0,2224,2222,1,0,0,0,2225,2228,1,0,0,0,2226,2224,1,0,0,0,2226,2227, + 1,0,0,0,2227,2229,1,0,0,0,2228,2226,1,0,0,0,2229,2230,5,867,0,0, + 2230,2232,1,0,0,0,2231,2220,1,0,0,0,2231,2232,1,0,0,0,2232,2321, + 1,0,0,0,2233,2234,5,130,0,0,2234,2235,3,668,334,0,2235,2236,5,189, + 0,0,2236,2237,5,80,0,0,2237,2238,5,866,0,0,2238,2243,3,112,56,0, + 2239,2240,5,868,0,0,2240,2242,3,112,56,0,2241,2239,1,0,0,0,2242, + 2245,1,0,0,0,2243,2241,1,0,0,0,2243,2244,1,0,0,0,2244,2246,1,0,0, + 0,2245,2243,1,0,0,0,2246,2250,5,867,0,0,2247,2249,3,118,59,0,2248, + 2247,1,0,0,0,2249,2252,1,0,0,0,2250,2248,1,0,0,0,2250,2251,1,0,0, + 0,2251,2264,1,0,0,0,2252,2250,1,0,0,0,2253,2254,5,866,0,0,2254,2259, + 3,116,58,0,2255,2256,5,868,0,0,2256,2258,3,116,58,0,2257,2255,1, + 0,0,0,2258,2261,1,0,0,0,2259,2257,1,0,0,0,2259,2260,1,0,0,0,2260, + 2262,1,0,0,0,2261,2259,1,0,0,0,2262,2263,5,867,0,0,2263,2265,1,0, + 0,0,2264,2253,1,0,0,0,2264,2265,1,0,0,0,2265,2321,1,0,0,0,2266,2267, + 5,130,0,0,2267,2268,3,668,334,0,2268,2269,5,189,0,0,2269,2270,5, + 80,0,0,2270,2271,5,866,0,0,2271,2276,3,114,57,0,2272,2273,5,868, + 0,0,2273,2275,3,114,57,0,2274,2272,1,0,0,0,2275,2278,1,0,0,0,2276, + 2274,1,0,0,0,2276,2277,1,0,0,0,2277,2279,1,0,0,0,2278,2276,1,0,0, + 0,2279,2283,5,867,0,0,2280,2282,3,118,59,0,2281,2280,1,0,0,0,2282, + 2285,1,0,0,0,2283,2281,1,0,0,0,2283,2284,1,0,0,0,2284,2297,1,0,0, + 0,2285,2283,1,0,0,0,2286,2287,5,866,0,0,2287,2292,3,116,58,0,2288, + 2289,5,868,0,0,2289,2291,3,116,58,0,2290,2288,1,0,0,0,2291,2294, + 1,0,0,0,2292,2290,1,0,0,0,2292,2293,1,0,0,0,2293,2295,1,0,0,0,2294, + 2292,1,0,0,0,2295,2296,5,867,0,0,2296,2298,1,0,0,0,2297,2286,1,0, + 0,0,2297,2298,1,0,0,0,2298,2321,1,0,0,0,2299,2300,5,130,0,0,2300, + 2304,3,668,334,0,2301,2303,3,118,59,0,2302,2301,1,0,0,0,2303,2306, + 1,0,0,0,2304,2302,1,0,0,0,2304,2305,1,0,0,0,2305,2318,1,0,0,0,2306, + 2304,1,0,0,0,2307,2308,5,866,0,0,2308,2313,3,116,58,0,2309,2310, + 5,868,0,0,2310,2312,3,116,58,0,2311,2309,1,0,0,0,2312,2315,1,0,0, + 0,2313,2311,1,0,0,0,2313,2314,1,0,0,0,2314,2316,1,0,0,0,2315,2313, + 1,0,0,0,2316,2317,5,867,0,0,2317,2319,1,0,0,0,2318,2307,1,0,0,0, + 2318,2319,1,0,0,0,2319,2321,1,0,0,0,2320,2174,1,0,0,0,2320,2208, + 1,0,0,0,2320,2233,1,0,0,0,2320,2266,1,0,0,0,2320,2299,1,0,0,0,2321, + 111,1,0,0,0,2322,2326,3,720,360,0,2323,2326,3,800,400,0,2324,2326, + 5,111,0,0,2325,2322,1,0,0,0,2325,2323,1,0,0,0,2325,2324,1,0,0,0, + 2326,113,1,0,0,0,2327,2328,5,866,0,0,2328,2331,3,112,56,0,2329,2330, + 5,868,0,0,2330,2332,3,112,56,0,2331,2329,1,0,0,0,2332,2333,1,0,0, + 0,2333,2331,1,0,0,0,2333,2334,1,0,0,0,2334,2335,1,0,0,0,2335,2336, + 5,867,0,0,2336,115,1,0,0,0,2337,2338,5,652,0,0,2338,2342,3,702,351, + 0,2339,2341,3,118,59,0,2340,2339,1,0,0,0,2341,2344,1,0,0,0,2342, + 2340,1,0,0,0,2342,2343,1,0,0,0,2343,117,1,0,0,0,2344,2342,1,0,0, + 0,2345,2347,5,42,0,0,2346,2345,1,0,0,0,2346,2347,1,0,0,0,2347,2349, + 1,0,0,0,2348,2350,5,647,0,0,2349,2348,1,0,0,0,2349,2350,1,0,0,0, + 2350,2351,1,0,0,0,2351,2353,5,380,0,0,2352,2354,5,857,0,0,2353,2352, + 1,0,0,0,2353,2354,1,0,0,0,2354,2355,1,0,0,0,2355,2394,3,688,344, + 0,2356,2358,5,340,0,0,2357,2359,5,857,0,0,2358,2357,1,0,0,0,2358, + 2359,1,0,0,0,2359,2360,1,0,0,0,2360,2394,5,882,0,0,2361,2362,5,360, + 0,0,2362,2364,5,367,0,0,2363,2365,5,857,0,0,2364,2363,1,0,0,0,2364, + 2365,1,0,0,0,2365,2366,1,0,0,0,2366,2394,5,882,0,0,2367,2368,5,82, + 0,0,2368,2370,5,367,0,0,2369,2371,5,857,0,0,2370,2369,1,0,0,0,2370, + 2371,1,0,0,0,2371,2372,1,0,0,0,2372,2394,5,882,0,0,2373,2375,5,480, + 0,0,2374,2376,5,857,0,0,2375,2374,1,0,0,0,2375,2376,1,0,0,0,2376, + 2377,1,0,0,0,2377,2394,3,708,354,0,2378,2380,5,490,0,0,2379,2381, + 5,857,0,0,2380,2379,1,0,0,0,2380,2381,1,0,0,0,2381,2382,1,0,0,0, + 2382,2394,3,708,354,0,2383,2385,5,658,0,0,2384,2386,5,857,0,0,2385, + 2384,1,0,0,0,2385,2386,1,0,0,0,2386,2387,1,0,0,0,2387,2394,3,662, + 331,0,2388,2390,5,504,0,0,2389,2391,5,857,0,0,2390,2389,1,0,0,0, + 2390,2391,1,0,0,0,2391,2392,1,0,0,0,2392,2394,3,702,351,0,2393,2346, + 1,0,0,0,2393,2356,1,0,0,0,2393,2361,1,0,0,0,2393,2367,1,0,0,0,2393, + 2373,1,0,0,0,2393,2378,1,0,0,0,2393,2383,1,0,0,0,2393,2388,1,0,0, + 0,2394,119,1,0,0,0,2395,2396,5,8,0,0,2396,2398,7,0,0,0,2397,2399, + 3,624,312,0,2398,2397,1,0,0,0,2398,2399,1,0,0,0,2399,2401,1,0,0, + 0,2400,2402,3,52,26,0,2401,2400,1,0,0,0,2402,2403,1,0,0,0,2403,2401, + 1,0,0,0,2403,2404,1,0,0,0,2404,2414,1,0,0,0,2405,2406,5,8,0,0,2406, + 2407,7,0,0,0,2407,2408,3,624,312,0,2408,2409,5,677,0,0,2409,2410, + 5,360,0,0,2410,2411,5,367,0,0,2411,2412,5,496,0,0,2412,2414,1,0, + 0,0,2413,2395,1,0,0,0,2413,2405,1,0,0,0,2414,121,1,0,0,0,2415,2417, + 5,8,0,0,2416,2418,3,58,29,0,2417,2416,1,0,0,0,2417,2418,1,0,0,0, + 2418,2419,1,0,0,0,2419,2420,5,385,0,0,2420,2424,3,698,349,0,2421, + 2422,5,119,0,0,2422,2423,5,590,0,0,2423,2425,3,60,30,0,2424,2421, + 1,0,0,0,2424,2425,1,0,0,0,2425,2432,1,0,0,0,2426,2427,5,119,0,0, + 2427,2429,5,343,0,0,2428,2430,5,114,0,0,2429,2428,1,0,0,0,2429,2430, + 1,0,0,0,2430,2431,1,0,0,0,2431,2433,5,541,0,0,2432,2426,1,0,0,0, + 2432,2433,1,0,0,0,2433,2437,1,0,0,0,2434,2435,5,141,0,0,2435,2436, + 5,176,0,0,2436,2438,3,698,349,0,2437,2434,1,0,0,0,2437,2438,1,0, + 0,0,2438,2440,1,0,0,0,2439,2441,3,68,34,0,2440,2439,1,0,0,0,2440, + 2441,1,0,0,0,2441,2444,1,0,0,0,2442,2443,5,340,0,0,2443,2445,5,882, + 0,0,2444,2442,1,0,0,0,2444,2445,1,0,0,0,2445,2448,1,0,0,0,2446,2447, + 5,371,0,0,2447,2449,3,416,208,0,2448,2446,1,0,0,0,2448,2449,1,0, + 0,0,2449,123,1,0,0,0,2450,2451,5,8,0,0,2451,2452,5,409,0,0,2452, + 2456,3,628,314,0,2453,2455,3,76,38,0,2454,2453,1,0,0,0,2455,2458, + 1,0,0,0,2456,2454,1,0,0,0,2456,2457,1,0,0,0,2457,125,1,0,0,0,2458, + 2456,1,0,0,0,2459,2460,5,8,0,0,2460,2461,5,433,0,0,2461,2462,5,585, + 0,0,2462,2463,5,801,0,0,2463,2464,5,453,0,0,2464,2465,5,92,0,0,2465, + 127,1,0,0,0,2466,2467,5,8,0,0,2467,2468,5,451,0,0,2468,2469,5,74, + 0,0,2469,2470,3,702,351,0,2470,2471,5,6,0,0,2471,2472,5,671,0,0, + 2472,2478,5,882,0,0,2473,2475,5,428,0,0,2474,2476,5,857,0,0,2475, + 2474,1,0,0,0,2475,2476,1,0,0,0,2476,2477,1,0,0,0,2477,2479,3,710, + 355,0,2478,2473,1,0,0,0,2478,2479,1,0,0,0,2479,2481,1,0,0,0,2480, + 2482,5,687,0,0,2481,2480,1,0,0,0,2481,2482,1,0,0,0,2482,2483,1,0, + 0,0,2483,2485,5,380,0,0,2484,2486,5,857,0,0,2485,2484,1,0,0,0,2485, + 2486,1,0,0,0,2486,2487,1,0,0,0,2487,2488,3,688,344,0,2488,129,1, + 0,0,0,2489,2490,5,8,0,0,2490,2491,5,132,0,0,2491,2495,3,698,349, + 0,2492,2494,3,76,38,0,2493,2492,1,0,0,0,2494,2497,1,0,0,0,2495,2493, + 1,0,0,0,2495,2496,1,0,0,0,2496,131,1,0,0,0,2497,2495,1,0,0,0,2498, + 2499,5,8,0,0,2499,2500,5,592,0,0,2500,2501,3,702,351,0,2501,2502, + 5,518,0,0,2502,2503,5,866,0,0,2503,2508,3,78,39,0,2504,2505,5,868, + 0,0,2505,2507,3,78,39,0,2506,2504,1,0,0,0,2507,2510,1,0,0,0,2508, + 2506,1,0,0,0,2508,2509,1,0,0,0,2509,2511,1,0,0,0,2510,2508,1,0,0, + 0,2511,2512,5,867,0,0,2512,133,1,0,0,0,2513,2514,5,8,0,0,2514,2515, + 5,173,0,0,2515,2524,3,648,324,0,2516,2521,3,140,70,0,2517,2518,5, + 868,0,0,2518,2520,3,140,70,0,2519,2517,1,0,0,0,2520,2523,1,0,0,0, + 2521,2519,1,0,0,0,2521,2522,1,0,0,0,2522,2525,1,0,0,0,2523,2521, + 1,0,0,0,2524,2516,1,0,0,0,2524,2525,1,0,0,0,2525,2533,1,0,0,0,2526, + 2530,3,142,71,0,2527,2529,3,142,71,0,2528,2527,1,0,0,0,2529,2532, + 1,0,0,0,2530,2528,1,0,0,0,2530,2531,1,0,0,0,2531,2534,1,0,0,0,2532, + 2530,1,0,0,0,2533,2526,1,0,0,0,2533,2534,1,0,0,0,2534,135,1,0,0, + 0,2535,2537,5,8,0,0,2536,2538,5,180,0,0,2537,2536,1,0,0,0,2537,2538, + 1,0,0,0,2538,2539,1,0,0,0,2539,2540,5,658,0,0,2540,2541,3,662,331, + 0,2541,2542,7,34,0,0,2542,2543,5,361,0,0,2543,2549,5,882,0,0,2544, + 2546,5,428,0,0,2545,2547,5,857,0,0,2546,2545,1,0,0,0,2546,2547,1, + 0,0,0,2547,2548,1,0,0,0,2548,2550,3,710,355,0,2549,2544,1,0,0,0, + 2549,2550,1,0,0,0,2550,2552,1,0,0,0,2551,2553,5,687,0,0,2552,2551, + 1,0,0,0,2552,2553,1,0,0,0,2553,2557,1,0,0,0,2554,2555,5,141,0,0, + 2555,2556,5,176,0,0,2556,2558,3,660,330,0,2557,2554,1,0,0,0,2557, + 2558,1,0,0,0,2558,2564,1,0,0,0,2559,2561,5,314,0,0,2560,2562,5,857, + 0,0,2561,2560,1,0,0,0,2561,2562,1,0,0,0,2562,2563,1,0,0,0,2563,2565, + 3,710,355,0,2564,2559,1,0,0,0,2564,2565,1,0,0,0,2565,2568,1,0,0, + 0,2566,2567,5,155,0,0,2567,2569,7,35,0,0,2568,2566,1,0,0,0,2568, + 2569,1,0,0,0,2569,2575,1,0,0,0,2570,2572,5,376,0,0,2571,2573,5,857, + 0,0,2572,2571,1,0,0,0,2572,2573,1,0,0,0,2573,2574,1,0,0,0,2574,2576, + 5,882,0,0,2575,2570,1,0,0,0,2575,2576,1,0,0,0,2576,2582,1,0,0,0, + 2577,2579,5,380,0,0,2578,2580,5,857,0,0,2579,2578,1,0,0,0,2579,2580, + 1,0,0,0,2580,2581,1,0,0,0,2581,2583,3,688,344,0,2582,2577,1,0,0, + 0,2582,2583,1,0,0,0,2583,2589,1,0,0,0,2584,2586,5,825,0,0,2585,2587, + 5,857,0,0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2588,1,0,0,0, + 2588,2590,5,882,0,0,2589,2584,1,0,0,0,2589,2590,1,0,0,0,2590,137, + 1,0,0,0,2591,2595,5,8,0,0,2592,2593,5,308,0,0,2593,2594,5,857,0, + 0,2594,2596,7,10,0,0,2595,2592,1,0,0,0,2595,2596,1,0,0,0,2596,2598, + 1,0,0,0,2597,2599,3,58,29,0,2598,2597,1,0,0,0,2598,2599,1,0,0,0, + 2599,2603,1,0,0,0,2600,2601,5,162,0,0,2601,2602,5,591,0,0,2602,2604, + 7,11,0,0,2603,2600,1,0,0,0,2603,2604,1,0,0,0,2604,2605,1,0,0,0,2605, + 2606,5,684,0,0,2606,2611,3,632,316,0,2607,2608,5,866,0,0,2608,2609, + 3,656,328,0,2609,2610,5,867,0,0,2610,2612,1,0,0,0,2611,2607,1,0, + 0,0,2611,2612,1,0,0,0,2612,2613,1,0,0,0,2613,2614,5,13,0,0,2614, + 2621,3,204,102,0,2615,2617,5,194,0,0,2616,2618,7,12,0,0,2617,2616, + 1,0,0,0,2617,2618,1,0,0,0,2618,2619,1,0,0,0,2619,2620,5,27,0,0,2620, + 2622,5,121,0,0,2621,2615,1,0,0,0,2621,2622,1,0,0,0,2622,139,1,0, + 0,0,2623,2630,3,98,49,0,2624,2626,5,868,0,0,2625,2624,1,0,0,0,2625, + 2626,1,0,0,0,2626,2627,1,0,0,0,2627,2629,3,98,49,0,2628,2625,1,0, + 0,0,2629,2632,1,0,0,0,2630,2628,1,0,0,0,2630,2631,1,0,0,0,2631,2888, + 1,0,0,0,2632,2630,1,0,0,0,2633,2635,5,6,0,0,2634,2636,5,29,0,0,2635, + 2634,1,0,0,0,2635,2636,1,0,0,0,2636,2637,1,0,0,0,2637,2638,3,658, + 329,0,2638,2642,3,88,44,0,2639,2643,5,402,0,0,2640,2641,5,306,0, + 0,2641,2643,3,658,329,0,2642,2639,1,0,0,0,2642,2640,1,0,0,0,2642, + 2643,1,0,0,0,2643,2888,1,0,0,0,2644,2646,5,6,0,0,2645,2647,5,29, + 0,0,2646,2645,1,0,0,0,2646,2647,1,0,0,0,2647,2648,1,0,0,0,2648,2649, + 5,866,0,0,2649,2650,3,658,329,0,2650,2657,3,88,44,0,2651,2652,5, + 868,0,0,2652,2653,3,658,329,0,2653,2654,3,88,44,0,2654,2656,1,0, + 0,0,2655,2651,1,0,0,0,2656,2659,1,0,0,0,2657,2655,1,0,0,0,2657,2658, + 1,0,0,0,2658,2660,1,0,0,0,2659,2657,1,0,0,0,2660,2661,5,867,0,0, + 2661,2888,1,0,0,0,2662,2663,5,6,0,0,2663,2665,7,18,0,0,2664,2666, + 3,638,319,0,2665,2664,1,0,0,0,2665,2666,1,0,0,0,2666,2668,1,0,0, + 0,2667,2669,3,70,35,0,2668,2667,1,0,0,0,2668,2669,1,0,0,0,2669,2670, + 1,0,0,0,2670,2674,3,734,367,0,2671,2673,3,72,36,0,2672,2671,1,0, + 0,0,2673,2676,1,0,0,0,2674,2672,1,0,0,0,2674,2675,1,0,0,0,2675,2888, + 1,0,0,0,2676,2674,1,0,0,0,2677,2678,5,6,0,0,2678,2680,7,19,0,0,2679, + 2681,7,18,0,0,2680,2679,1,0,0,0,2680,2681,1,0,0,0,2681,2683,1,0, + 0,0,2682,2684,3,638,319,0,2683,2682,1,0,0,0,2683,2684,1,0,0,0,2684, + 2685,1,0,0,0,2685,2689,3,734,367,0,2686,2688,3,72,36,0,2687,2686, + 1,0,0,0,2688,2691,1,0,0,0,2689,2687,1,0,0,0,2689,2690,1,0,0,0,2690, + 2888,1,0,0,0,2691,2689,1,0,0,0,2692,2697,5,6,0,0,2693,2695,5,31, + 0,0,2694,2696,3,702,351,0,2695,2694,1,0,0,0,2695,2696,1,0,0,0,2696, + 2698,1,0,0,0,2697,2693,1,0,0,0,2697,2698,1,0,0,0,2698,2699,1,0,0, + 0,2699,2700,5,131,0,0,2700,2702,5,92,0,0,2701,2703,3,70,35,0,2702, + 2701,1,0,0,0,2702,2703,1,0,0,0,2703,2704,1,0,0,0,2704,2708,3,734, + 367,0,2705,2707,3,72,36,0,2706,2705,1,0,0,0,2707,2710,1,0,0,0,2708, + 2706,1,0,0,0,2708,2709,1,0,0,0,2709,2888,1,0,0,0,2710,2708,1,0,0, + 0,2711,2716,5,6,0,0,2712,2714,5,31,0,0,2713,2715,3,702,351,0,2714, + 2713,1,0,0,0,2714,2715,1,0,0,0,2715,2717,1,0,0,0,2716,2712,1,0,0, + 0,2716,2717,1,0,0,0,2717,2718,1,0,0,0,2718,2720,5,182,0,0,2719,2721, + 7,18,0,0,2720,2719,1,0,0,0,2720,2721,1,0,0,0,2721,2723,1,0,0,0,2722, + 2724,3,638,319,0,2723,2722,1,0,0,0,2723,2724,1,0,0,0,2724,2726,1, + 0,0,0,2725,2727,3,70,35,0,2726,2725,1,0,0,0,2726,2727,1,0,0,0,2727, + 2728,1,0,0,0,2728,2732,3,734,367,0,2729,2731,3,72,36,0,2730,2729, + 1,0,0,0,2731,2734,1,0,0,0,2732,2730,1,0,0,0,2732,2733,1,0,0,0,2733, + 2888,1,0,0,0,2734,2732,1,0,0,0,2735,2740,5,6,0,0,2736,2738,5,31, + 0,0,2737,2739,3,702,351,0,2738,2737,1,0,0,0,2738,2739,1,0,0,0,2739, + 2741,1,0,0,0,2740,2736,1,0,0,0,2740,2741,1,0,0,0,2741,2742,1,0,0, + 0,2742,2743,5,67,0,0,2743,2745,5,92,0,0,2744,2746,3,638,319,0,2745, + 2744,1,0,0,0,2745,2746,1,0,0,0,2746,2747,1,0,0,0,2747,2748,3,734, + 367,0,2748,2749,3,92,46,0,2749,2888,1,0,0,0,2750,2752,5,6,0,0,2751, + 2753,3,84,42,0,2752,2751,1,0,0,0,2752,2753,1,0,0,0,2753,2888,1,0, + 0,0,2754,2755,5,51,0,0,2755,2756,7,36,0,0,2756,2888,3,702,351,0, + 2757,2758,5,8,0,0,2758,2759,7,36,0,0,2759,2761,3,702,351,0,2760, + 2762,5,114,0,0,2761,2760,1,0,0,0,2761,2762,1,0,0,0,2762,2764,1,0, + 0,0,2763,2765,5,57,0,0,2764,2763,1,0,0,0,2764,2765,1,0,0,0,2765, + 2888,1,0,0,0,2766,2768,5,308,0,0,2767,2769,5,857,0,0,2768,2767,1, + 0,0,0,2768,2769,1,0,0,0,2769,2770,1,0,0,0,2770,2888,7,37,0,0,2771, + 2773,5,8,0,0,2772,2774,5,29,0,0,2773,2772,1,0,0,0,2773,2774,1,0, + 0,0,2774,2775,1,0,0,0,2775,2783,3,658,329,0,2776,2777,5,155,0,0, + 2777,2778,5,42,0,0,2778,2784,3,750,375,0,2779,2780,5,155,0,0,2780, + 2784,7,16,0,0,2781,2782,5,51,0,0,2782,2784,5,42,0,0,2783,2776,1, + 0,0,0,2783,2779,1,0,0,0,2783,2781,1,0,0,0,2784,2888,1,0,0,0,2785, + 2786,5,8,0,0,2786,2787,5,82,0,0,2787,2788,3,638,319,0,2788,2789, + 7,16,0,0,2789,2888,1,0,0,0,2790,2792,5,25,0,0,2791,2793,5,29,0,0, + 2792,2791,1,0,0,0,2792,2793,1,0,0,0,2793,2794,1,0,0,0,2794,2795, + 3,658,329,0,2795,2796,3,654,327,0,2796,2800,3,88,44,0,2797,2801, + 5,402,0,0,2798,2799,5,306,0,0,2799,2801,3,658,329,0,2800,2797,1, + 0,0,0,2800,2798,1,0,0,0,2800,2801,1,0,0,0,2801,2888,1,0,0,0,2802, + 2804,5,42,0,0,2803,2802,1,0,0,0,2803,2804,1,0,0,0,2804,2805,1,0, + 0,0,2805,2806,5,26,0,0,2806,2807,5,155,0,0,2807,2808,5,857,0,0,2808, + 2814,3,684,342,0,2809,2811,5,28,0,0,2810,2812,5,857,0,0,2811,2810, + 1,0,0,0,2811,2812,1,0,0,0,2812,2813,1,0,0,0,2813,2815,3,686,343, + 0,2814,2809,1,0,0,0,2814,2815,1,0,0,0,2815,2888,1,0,0,0,2816,2817, + 5,33,0,0,2817,2821,5,176,0,0,2818,2822,5,823,0,0,2819,2820,5,26, + 0,0,2820,2822,5,155,0,0,2821,2818,1,0,0,0,2821,2819,1,0,0,0,2822, + 2823,1,0,0,0,2823,2826,3,684,342,0,2824,2825,5,28,0,0,2825,2827, + 3,686,343,0,2826,2824,1,0,0,0,2826,2827,1,0,0,0,2827,2888,1,0,0, + 0,2828,2829,7,38,0,0,2829,2888,5,93,0,0,2830,2831,7,39,0,0,2831, + 2888,5,658,0,0,2832,2834,5,51,0,0,2833,2835,5,29,0,0,2834,2833,1, + 0,0,0,2834,2835,1,0,0,0,2835,2836,1,0,0,0,2836,2888,3,658,329,0, + 2837,2838,5,51,0,0,2838,2839,7,18,0,0,2839,2888,3,638,319,0,2840, + 2841,5,51,0,0,2841,2842,5,131,0,0,2842,2888,5,92,0,0,2843,2844,5, + 51,0,0,2844,2845,5,67,0,0,2845,2846,5,92,0,0,2846,2888,3,702,351, + 0,2847,2888,5,66,0,0,2848,2850,5,104,0,0,2849,2851,5,857,0,0,2850, + 2849,1,0,0,0,2850,2851,1,0,0,0,2851,2852,1,0,0,0,2852,2888,7,4,0, + 0,2853,2855,5,492,0,0,2854,2856,5,29,0,0,2855,2854,1,0,0,0,2855, + 2856,1,0,0,0,2856,2857,1,0,0,0,2857,2858,3,658,329,0,2858,2862,3, + 88,44,0,2859,2863,5,402,0,0,2860,2861,5,306,0,0,2861,2863,3,658, + 329,0,2862,2859,1,0,0,0,2862,2860,1,0,0,0,2862,2863,1,0,0,0,2863, + 2888,1,0,0,0,2864,2865,5,125,0,0,2865,2866,5,20,0,0,2866,2888,3, + 656,328,0,2867,2868,5,141,0,0,2868,2869,5,29,0,0,2869,2870,3,658, + 329,0,2870,2871,5,176,0,0,2871,2872,3,654,327,0,2872,2888,1,0,0, + 0,2873,2874,5,141,0,0,2874,2875,7,18,0,0,2875,2876,3,638,319,0,2876, + 2877,5,176,0,0,2877,2878,3,634,317,0,2878,2888,1,0,0,0,2879,2881, + 5,141,0,0,2880,2882,7,40,0,0,2881,2880,1,0,0,0,2881,2882,1,0,0,0, + 2882,2883,1,0,0,0,2883,2888,3,644,322,0,2884,2885,7,41,0,0,2885, + 2888,5,681,0,0,2886,2888,3,142,71,0,2887,2623,1,0,0,0,2887,2633, + 1,0,0,0,2887,2644,1,0,0,0,2887,2662,1,0,0,0,2887,2677,1,0,0,0,2887, + 2692,1,0,0,0,2887,2711,1,0,0,0,2887,2735,1,0,0,0,2887,2750,1,0,0, + 0,2887,2754,1,0,0,0,2887,2757,1,0,0,0,2887,2766,1,0,0,0,2887,2771, + 1,0,0,0,2887,2785,1,0,0,0,2887,2790,1,0,0,0,2887,2803,1,0,0,0,2887, + 2816,1,0,0,0,2887,2828,1,0,0,0,2887,2830,1,0,0,0,2887,2832,1,0,0, + 0,2887,2837,1,0,0,0,2887,2840,1,0,0,0,2887,2843,1,0,0,0,2887,2847, + 1,0,0,0,2887,2848,1,0,0,0,2887,2853,1,0,0,0,2887,2864,1,0,0,0,2887, + 2867,1,0,0,0,2887,2873,1,0,0,0,2887,2879,1,0,0,0,2887,2884,1,0,0, + 0,2887,2886,1,0,0,0,2888,141,1,0,0,0,2889,2890,5,6,0,0,2890,2891, + 5,130,0,0,2891,2892,5,866,0,0,2892,2897,3,110,55,0,2893,2894,5,868, + 0,0,2894,2896,3,110,55,0,2895,2893,1,0,0,0,2896,2899,1,0,0,0,2897, + 2895,1,0,0,0,2897,2898,1,0,0,0,2898,2900,1,0,0,0,2899,2897,1,0,0, + 0,2900,2901,5,867,0,0,2901,2988,1,0,0,0,2902,2903,5,51,0,0,2903, + 2904,5,130,0,0,2904,2988,3,666,333,0,2905,2906,5,369,0,0,2906,2909, + 5,130,0,0,2907,2910,3,666,333,0,2908,2910,5,7,0,0,2909,2907,1,0, + 0,0,2909,2908,1,0,0,0,2910,2911,1,0,0,0,2911,2988,5,658,0,0,2912, + 2913,5,425,0,0,2913,2916,5,130,0,0,2914,2917,3,666,333,0,2915,2917, + 5,7,0,0,2916,2914,1,0,0,0,2916,2915,1,0,0,0,2917,2918,1,0,0,0,2918, + 2988,5,658,0,0,2919,2920,5,668,0,0,2920,2923,5,130,0,0,2921,2924, + 3,666,333,0,2922,2924,5,7,0,0,2923,2921,1,0,0,0,2923,2922,1,0,0, + 0,2924,2988,1,0,0,0,2925,2926,5,335,0,0,2926,2927,5,130,0,0,2927, + 2988,3,708,354,0,2928,2929,5,561,0,0,2929,2930,5,130,0,0,2930,2931, + 3,666,333,0,2931,2932,5,88,0,0,2932,2933,5,866,0,0,2933,2938,3,110, + 55,0,2934,2935,5,868,0,0,2935,2937,3,110,55,0,2936,2934,1,0,0,0, + 2937,2940,1,0,0,0,2938,2936,1,0,0,0,2938,2939,1,0,0,0,2939,2941, + 1,0,0,0,2940,2938,1,0,0,0,2941,2942,5,867,0,0,2942,2988,1,0,0,0, + 2943,2944,5,388,0,0,2944,2945,5,130,0,0,2945,2946,3,668,334,0,2946, + 2947,5,194,0,0,2947,2948,5,173,0,0,2948,2951,3,648,324,0,2949,2950, + 7,41,0,0,2950,2952,5,681,0,0,2951,2949,1,0,0,0,2951,2952,1,0,0,0, + 2952,2988,1,0,0,0,2953,2954,5,10,0,0,2954,2957,5,130,0,0,2955,2958, + 3,666,333,0,2956,2958,5,7,0,0,2957,2955,1,0,0,0,2957,2956,1,0,0, + 0,2958,2988,1,0,0,0,2959,2960,5,27,0,0,2960,2963,5,130,0,0,2961, + 2964,3,666,333,0,2962,2964,5,7,0,0,2963,2961,1,0,0,0,2963,2962,1, + 0,0,0,2964,2988,1,0,0,0,2965,2966,5,120,0,0,2966,2969,5,130,0,0, + 2967,2970,3,666,333,0,2968,2970,5,7,0,0,2969,2967,1,0,0,0,2969,2968, + 1,0,0,0,2970,2988,1,0,0,0,2971,2972,5,550,0,0,2972,2975,5,130,0, + 0,2973,2976,3,666,333,0,2974,2976,5,7,0,0,2975,2973,1,0,0,0,2975, + 2974,1,0,0,0,2976,2988,1,0,0,0,2977,2978,5,562,0,0,2978,2981,5,130, + 0,0,2979,2982,3,666,333,0,2980,2982,5,7,0,0,2981,2979,1,0,0,0,2981, + 2980,1,0,0,0,2982,2988,1,0,0,0,2983,2984,5,560,0,0,2984,2988,5,527, + 0,0,2985,2986,5,677,0,0,2986,2988,5,527,0,0,2987,2889,1,0,0,0,2987, + 2902,1,0,0,0,2987,2905,1,0,0,0,2987,2912,1,0,0,0,2987,2919,1,0,0, + 0,2987,2925,1,0,0,0,2987,2928,1,0,0,0,2987,2943,1,0,0,0,2987,2953, + 1,0,0,0,2987,2959,1,0,0,0,2987,2965,1,0,0,0,2987,2971,1,0,0,0,2987, + 2977,1,0,0,0,2987,2983,1,0,0,0,2987,2985,1,0,0,0,2988,143,1,0,0, + 0,2989,2990,5,51,0,0,2990,2992,7,0,0,0,2991,2993,3,754,377,0,2992, + 2991,1,0,0,0,2992,2993,1,0,0,0,2993,2994,1,0,0,0,2994,2995,3,624, + 312,0,2995,145,1,0,0,0,2996,2997,5,51,0,0,2997,2999,5,385,0,0,2998, + 3000,3,754,377,0,2999,2998,1,0,0,0,2999,3000,1,0,0,0,3000,3001,1, + 0,0,0,3001,3002,3,698,349,0,3002,147,1,0,0,0,3003,3004,5,51,0,0, + 3004,3006,5,82,0,0,3005,3007,7,1,0,0,3006,3005,1,0,0,0,3006,3007, + 1,0,0,0,3007,3008,1,0,0,0,3008,3009,3,638,319,0,3009,3010,5,119, + 0,0,3010,3023,3,648,324,0,3011,3013,5,308,0,0,3012,3014,5,857,0, + 0,3013,3012,1,0,0,0,3013,3014,1,0,0,0,3014,3015,1,0,0,0,3015,3022, + 7,3,0,0,3016,3018,5,104,0,0,3017,3019,5,857,0,0,3018,3017,1,0,0, + 0,3018,3019,1,0,0,0,3019,3020,1,0,0,0,3020,3022,7,4,0,0,3021,3011, + 1,0,0,0,3021,3016,1,0,0,0,3022,3025,1,0,0,0,3023,3021,1,0,0,0,3023, + 3024,1,0,0,0,3024,149,1,0,0,0,3025,3023,1,0,0,0,3026,3027,5,51,0, + 0,3027,3028,5,451,0,0,3028,3029,5,74,0,0,3029,3030,3,702,351,0,3030, + 3032,5,380,0,0,3031,3033,5,857,0,0,3032,3031,1,0,0,0,3032,3033,1, + 0,0,0,3033,3034,1,0,0,0,3034,3035,3,688,344,0,3035,151,1,0,0,0,3036, + 3037,5,51,0,0,3037,3039,5,132,0,0,3038,3040,3,754,377,0,3039,3038, + 1,0,0,0,3039,3040,1,0,0,0,3040,3041,1,0,0,0,3041,3042,3,698,349, + 0,3042,153,1,0,0,0,3043,3044,5,51,0,0,3044,3046,5,409,0,0,3045,3047, + 3,754,377,0,3046,3045,1,0,0,0,3046,3047,1,0,0,0,3047,3048,1,0,0, + 0,3048,3049,3,628,314,0,3049,155,1,0,0,0,3050,3051,5,51,0,0,3051, + 3053,5,592,0,0,3052,3054,3,754,377,0,3053,3052,1,0,0,0,3053,3054, + 1,0,0,0,3054,3055,1,0,0,0,3055,3056,3,702,351,0,3056,157,1,0,0,0, + 3057,3058,5,51,0,0,3058,3059,5,161,0,0,3059,3060,5,137,0,0,3060, + 3062,5,835,0,0,3061,3063,3,754,377,0,3062,3061,1,0,0,0,3062,3063, + 1,0,0,0,3063,3064,1,0,0,0,3064,3065,5,883,0,0,3065,159,1,0,0,0,3066, + 3068,5,51,0,0,3067,3069,5,660,0,0,3068,3067,1,0,0,0,3068,3069,1, + 0,0,0,3069,3070,1,0,0,0,3070,3072,5,173,0,0,3071,3073,3,754,377, + 0,3072,3071,1,0,0,0,3072,3073,1,0,0,0,3073,3074,1,0,0,0,3074,3076, + 3,646,323,0,3075,3077,7,42,0,0,3076,3075,1,0,0,0,3076,3077,1,0,0, + 0,3077,161,1,0,0,0,3078,3080,5,51,0,0,3079,3081,5,180,0,0,3080,3079, + 1,0,0,0,3080,3081,1,0,0,0,3081,3082,1,0,0,0,3082,3083,5,658,0,0, + 3083,3089,3,662,331,0,3084,3086,5,380,0,0,3085,3087,5,857,0,0,3086, + 3085,1,0,0,0,3086,3087,1,0,0,0,3087,3088,1,0,0,0,3088,3090,3,688, + 344,0,3089,3084,1,0,0,0,3089,3090,1,0,0,0,3090,163,1,0,0,0,3091, + 3092,5,51,0,0,3092,3094,5,178,0,0,3093,3095,3,754,377,0,3094,3093, + 1,0,0,0,3094,3095,1,0,0,0,3095,3096,1,0,0,0,3096,3097,3,698,349, + 0,3097,165,1,0,0,0,3098,3099,5,51,0,0,3099,3101,5,684,0,0,3100,3102, + 3,754,377,0,3101,3100,1,0,0,0,3101,3102,1,0,0,0,3102,3103,1,0,0, + 0,3103,3108,3,632,316,0,3104,3105,5,868,0,0,3105,3107,3,632,316, + 0,3106,3104,1,0,0,0,3107,3110,1,0,0,0,3108,3106,1,0,0,0,3108,3109, + 1,0,0,0,3109,3112,1,0,0,0,3110,3108,1,0,0,0,3111,3113,7,42,0,0,3112, + 3111,1,0,0,0,3112,3113,1,0,0,0,3113,167,1,0,0,0,3114,3115,5,51,0, + 0,3115,3117,5,582,0,0,3116,3118,3,754,377,0,3117,3116,1,0,0,0,3117, + 3118,1,0,0,0,3118,3119,1,0,0,0,3119,3120,3,650,325,0,3120,169,1, + 0,0,0,3121,3122,5,155,0,0,3122,3123,5,42,0,0,3123,3127,5,582,0,0, + 3124,3128,5,505,0,0,3125,3128,5,7,0,0,3126,3128,3,650,325,0,3127, + 3124,1,0,0,0,3127,3125,1,0,0,0,3127,3126,1,0,0,0,3128,3129,1,0,0, + 0,3129,3130,5,176,0,0,3130,3135,3,652,326,0,3131,3132,5,868,0,0, + 3132,3134,3,652,326,0,3133,3131,1,0,0,0,3134,3137,1,0,0,0,3135,3133, + 1,0,0,0,3135,3136,1,0,0,0,3136,3142,1,0,0,0,3137,3135,1,0,0,0,3138, + 3139,5,155,0,0,3139,3140,5,582,0,0,3140,3142,3,462,231,0,3141,3121, + 1,0,0,0,3141,3138,1,0,0,0,3142,171,1,0,0,0,3143,3144,5,141,0,0,3144, + 3145,5,173,0,0,3145,3150,3,174,87,0,3146,3147,5,868,0,0,3147,3149, + 3,174,87,0,3148,3146,1,0,0,0,3149,3152,1,0,0,0,3150,3148,1,0,0,0, + 3150,3151,1,0,0,0,3151,173,1,0,0,0,3152,3150,1,0,0,0,3153,3154,3, + 648,324,0,3154,3155,5,176,0,0,3155,3156,3,644,322,0,3156,175,1,0, + 0,0,3157,3159,5,668,0,0,3158,3160,5,173,0,0,3159,3158,1,0,0,0,3159, + 3160,1,0,0,0,3160,3161,1,0,0,0,3161,3162,3,648,324,0,3162,177,1, + 0,0,0,3163,3164,5,21,0,0,3164,3171,3,698,349,0,3165,3168,5,866,0, + 0,3166,3169,3,744,372,0,3167,3169,3,736,368,0,3168,3166,1,0,0,0, + 3168,3167,1,0,0,0,3168,3169,1,0,0,0,3169,3170,1,0,0,0,3170,3172, + 5,867,0,0,3171,3165,1,0,0,0,3171,3172,1,0,0,0,3172,179,1,0,0,0,3173, + 3176,3,234,117,0,3174,3176,3,236,118,0,3175,3173,1,0,0,0,3175,3174, + 1,0,0,0,3176,181,1,0,0,0,3177,3178,5,371,0,0,3178,3179,3,736,368, + 0,3179,183,1,0,0,0,3180,3185,3,238,119,0,3181,3185,3,240,120,0,3182, + 3185,3,242,121,0,3183,3185,3,244,122,0,3184,3180,1,0,0,0,3184,3181, + 1,0,0,0,3184,3182,1,0,0,0,3184,3183,1,0,0,0,3185,185,1,0,0,0,3186, + 3188,5,86,0,0,3187,3189,7,43,0,0,3188,3187,1,0,0,0,3188,3189,1,0, + 0,0,3189,3191,1,0,0,0,3190,3192,5,79,0,0,3191,3190,1,0,0,0,3191, + 3192,1,0,0,0,3192,3194,1,0,0,0,3193,3195,5,88,0,0,3194,3193,1,0, + 0,0,3194,3195,1,0,0,0,3195,3196,1,0,0,0,3196,3203,3,648,324,0,3197, + 3198,5,130,0,0,3198,3200,5,866,0,0,3199,3201,3,666,333,0,3200,3199, + 1,0,0,0,3200,3201,1,0,0,0,3201,3202,1,0,0,0,3202,3204,5,867,0,0, + 3203,3197,1,0,0,0,3203,3204,1,0,0,0,3204,3216,1,0,0,0,3205,3207, + 3,262,131,0,3206,3205,1,0,0,0,3206,3207,1,0,0,0,3207,3210,1,0,0, + 0,3208,3211,3,738,369,0,3209,3211,3,190,95,0,3210,3208,1,0,0,0,3210, + 3209,1,0,0,0,3210,3211,1,0,0,0,3211,3213,1,0,0,0,3212,3214,3,188, + 94,0,3213,3212,1,0,0,0,3213,3214,1,0,0,0,3214,3217,1,0,0,0,3215, + 3217,3,226,113,0,3216,3206,1,0,0,0,3216,3215,1,0,0,0,3217,3219,1, + 0,0,0,3218,3220,3,188,94,0,3219,3218,1,0,0,0,3219,3220,1,0,0,0,3220, + 3233,1,0,0,0,3221,3222,5,119,0,0,3222,3223,5,373,0,0,3223,3224,5, + 92,0,0,3224,3225,5,185,0,0,3225,3230,3,228,114,0,3226,3227,5,868, + 0,0,3227,3229,3,228,114,0,3228,3226,1,0,0,0,3229,3232,1,0,0,0,3230, + 3228,1,0,0,0,3230,3231,1,0,0,0,3231,3234,1,0,0,0,3232,3230,1,0,0, + 0,3233,3221,1,0,0,0,3233,3234,1,0,0,0,3234,187,1,0,0,0,3235,3236, + 5,13,0,0,3236,3238,3,702,351,0,3237,3239,3,262,131,0,3238,3237,1, + 0,0,0,3238,3239,1,0,0,0,3239,189,1,0,0,0,3240,3245,3,204,102,0,3241, + 3242,5,173,0,0,3242,3245,3,648,324,0,3243,3245,3,224,112,0,3244, + 3240,1,0,0,0,3244,3241,1,0,0,0,3244,3243,1,0,0,0,3245,191,1,0,0, + 0,3246,3252,3,194,97,0,3247,3249,5,828,0,0,3248,3250,7,44,0,0,3249, + 3248,1,0,0,0,3249,3250,1,0,0,0,3250,3251,1,0,0,0,3251,3253,3,194, + 97,0,3252,3247,1,0,0,0,3253,3254,1,0,0,0,3254,3252,1,0,0,0,3254, + 3255,1,0,0,0,3255,193,1,0,0,0,3256,3258,5,866,0,0,3257,3256,1,0, + 0,0,3257,3258,1,0,0,0,3258,3259,1,0,0,0,3259,3261,3,274,137,0,3260, + 3262,5,867,0,0,3261,3260,1,0,0,0,3261,3262,1,0,0,0,3262,195,1,0, + 0,0,3263,3264,5,103,0,0,3264,3266,5,360,0,0,3265,3267,7,45,0,0,3266, + 3265,1,0,0,0,3266,3267,1,0,0,0,3267,3269,1,0,0,0,3268,3270,5,450, + 0,0,3269,3268,1,0,0,0,3269,3270,1,0,0,0,3270,3271,1,0,0,0,3271,3272, + 5,83,0,0,3272,3274,5,882,0,0,3273,3275,7,6,0,0,3274,3273,1,0,0,0, + 3274,3275,1,0,0,0,3275,3276,1,0,0,0,3276,3277,5,88,0,0,3277,3278, + 5,173,0,0,3278,3284,3,648,324,0,3279,3280,5,130,0,0,3280,3281,5, + 866,0,0,3281,3282,3,666,333,0,3282,3283,5,867,0,0,3283,3285,1,0, + 0,0,3284,3279,1,0,0,0,3284,3285,1,0,0,0,3285,3289,1,0,0,0,3286,3287, + 5,26,0,0,3287,3288,5,155,0,0,3288,3290,3,684,342,0,3289,3286,1,0, + 0,0,3289,3290,1,0,0,0,3290,3297,1,0,0,0,3291,3293,7,46,0,0,3292, + 3294,3,298,149,0,3293,3292,1,0,0,0,3294,3295,1,0,0,0,3295,3293,1, + 0,0,0,3295,3296,1,0,0,0,3296,3298,1,0,0,0,3297,3291,1,0,0,0,3297, + 3298,1,0,0,0,3298,3305,1,0,0,0,3299,3301,5,102,0,0,3300,3302,3,300, + 150,0,3301,3300,1,0,0,0,3302,3303,1,0,0,0,3303,3301,1,0,0,0,3303, + 3304,1,0,0,0,3304,3306,1,0,0,0,3305,3299,1,0,0,0,3305,3306,1,0,0, + 0,3306,3311,1,0,0,0,3307,3308,5,79,0,0,3308,3309,3,708,354,0,3309, + 3310,7,47,0,0,3310,3312,1,0,0,0,3311,3307,1,0,0,0,3311,3312,1,0, + 0,0,3312,3324,1,0,0,0,3313,3314,5,866,0,0,3314,3319,3,230,115,0, + 3315,3316,5,868,0,0,3316,3318,3,230,115,0,3317,3315,1,0,0,0,3318, + 3321,1,0,0,0,3319,3317,1,0,0,0,3319,3320,1,0,0,0,3320,3322,1,0,0, + 0,3321,3319,1,0,0,0,3322,3323,5,867,0,0,3323,3325,1,0,0,0,3324,3313, + 1,0,0,0,3324,3325,1,0,0,0,3325,3335,1,0,0,0,3326,3327,5,155,0,0, + 3327,3332,3,228,114,0,3328,3329,5,868,0,0,3329,3331,3,228,114,0, + 3330,3328,1,0,0,0,3331,3334,1,0,0,0,3332,3330,1,0,0,0,3332,3333, + 1,0,0,0,3333,3336,1,0,0,0,3334,3332,1,0,0,0,3335,3326,1,0,0,0,3335, + 3336,1,0,0,0,3336,197,1,0,0,0,3337,3338,5,103,0,0,3338,3340,5,695, + 0,0,3339,3341,7,45,0,0,3340,3339,1,0,0,0,3340,3341,1,0,0,0,3341, + 3343,1,0,0,0,3342,3344,5,450,0,0,3343,3342,1,0,0,0,3343,3344,1,0, + 0,0,3344,3345,1,0,0,0,3345,3346,5,83,0,0,3346,3348,5,882,0,0,3347, + 3349,7,6,0,0,3348,3347,1,0,0,0,3348,3349,1,0,0,0,3349,3350,1,0,0, + 0,3350,3351,5,88,0,0,3351,3352,5,173,0,0,3352,3356,3,648,324,0,3353, + 3354,5,26,0,0,3354,3355,5,155,0,0,3355,3357,3,684,342,0,3356,3353, + 1,0,0,0,3356,3357,1,0,0,0,3357,3368,1,0,0,0,3358,3359,5,587,0,0, + 3359,3360,5,423,0,0,3360,3362,5,20,0,0,3361,3363,5,859,0,0,3362, + 3361,1,0,0,0,3362,3363,1,0,0,0,3363,3364,1,0,0,0,3364,3366,5,882, + 0,0,3365,3367,5,858,0,0,3366,3365,1,0,0,0,3366,3367,1,0,0,0,3367, + 3369,1,0,0,0,3368,3358,1,0,0,0,3368,3369,1,0,0,0,3369,3374,1,0,0, + 0,3370,3371,5,79,0,0,3371,3372,3,708,354,0,3372,3373,7,47,0,0,3373, + 3375,1,0,0,0,3374,3370,1,0,0,0,3374,3375,1,0,0,0,3375,3387,1,0,0, + 0,3376,3377,5,866,0,0,3377,3382,3,230,115,0,3378,3379,5,868,0,0, + 3379,3381,3,230,115,0,3380,3378,1,0,0,0,3381,3384,1,0,0,0,3382,3380, + 1,0,0,0,3382,3383,1,0,0,0,3383,3385,1,0,0,0,3384,3382,1,0,0,0,3385, + 3386,5,867,0,0,3386,3388,1,0,0,0,3387,3376,1,0,0,0,3387,3388,1,0, + 0,0,3388,3398,1,0,0,0,3389,3390,5,155,0,0,3390,3395,3,228,114,0, + 3391,3392,5,868,0,0,3392,3394,3,228,114,0,3393,3391,1,0,0,0,3394, + 3397,1,0,0,0,3395,3393,1,0,0,0,3395,3396,1,0,0,0,3396,3399,1,0,0, + 0,3397,3395,1,0,0,0,3398,3389,1,0,0,0,3398,3399,1,0,0,0,3399,199, + 1,0,0,0,3400,3401,5,866,0,0,3401,3403,3,218,109,0,3402,3404,3,252, + 126,0,3403,3402,1,0,0,0,3403,3404,1,0,0,0,3404,3406,1,0,0,0,3405, + 3407,3,312,156,0,3406,3405,1,0,0,0,3406,3407,1,0,0,0,3407,3408,1, + 0,0,0,3408,3410,5,867,0,0,3409,3411,3,252,126,0,3410,3409,1,0,0, + 0,3410,3411,1,0,0,0,3411,3413,1,0,0,0,3412,3414,3,312,156,0,3413, + 3412,1,0,0,0,3413,3414,1,0,0,0,3414,3416,1,0,0,0,3415,3417,3,296, + 148,0,3416,3415,1,0,0,0,3416,3417,1,0,0,0,3417,201,1,0,0,0,3418, + 3420,5,143,0,0,3419,3421,7,48,0,0,3420,3419,1,0,0,0,3420,3421,1, + 0,0,0,3421,3423,1,0,0,0,3422,3424,5,88,0,0,3423,3422,1,0,0,0,3423, + 3424,1,0,0,0,3424,3425,1,0,0,0,3425,3431,3,648,324,0,3426,3427,5, + 130,0,0,3427,3428,5,866,0,0,3428,3429,3,666,333,0,3429,3430,5,867, + 0,0,3430,3432,1,0,0,0,3431,3426,1,0,0,0,3431,3432,1,0,0,0,3432,3441, + 1,0,0,0,3433,3434,5,866,0,0,3434,3435,3,656,328,0,3435,3436,5,867, + 0,0,3436,3438,1,0,0,0,3437,3433,1,0,0,0,3437,3438,1,0,0,0,3438,3439, + 1,0,0,0,3439,3442,3,222,111,0,3440,3442,3,226,113,0,3441,3437,1, + 0,0,0,3441,3440,1,0,0,0,3442,203,1,0,0,0,3443,3447,3,274,137,0,3444, + 3446,3,276,138,0,3445,3444,1,0,0,0,3446,3449,1,0,0,0,3447,3445,1, + 0,0,0,3447,3448,1,0,0,0,3448,3458,1,0,0,0,3449,3447,1,0,0,0,3450, + 3452,5,181,0,0,3451,3453,7,44,0,0,3452,3451,1,0,0,0,3452,3453,1, + 0,0,0,3453,3456,1,0,0,0,3454,3457,3,274,137,0,3455,3457,3,272,136, + 0,3456,3454,1,0,0,0,3456,3455,1,0,0,0,3457,3459,1,0,0,0,3458,3450, + 1,0,0,0,3458,3459,1,0,0,0,3459,3464,1,0,0,0,3460,3461,5,868,0,0, + 3461,3463,3,278,139,0,3462,3460,1,0,0,0,3463,3466,1,0,0,0,3464,3462, + 1,0,0,0,3464,3465,1,0,0,0,3465,3468,1,0,0,0,3466,3464,1,0,0,0,3467, + 3469,3,252,126,0,3468,3467,1,0,0,0,3468,3469,1,0,0,0,3469,3471,1, + 0,0,0,3470,3472,3,312,156,0,3471,3470,1,0,0,0,3471,3472,1,0,0,0, + 3472,3474,1,0,0,0,3473,3475,3,232,116,0,3474,3473,1,0,0,0,3474,3475, + 1,0,0,0,3475,3477,1,0,0,0,3476,3478,3,296,148,0,3477,3476,1,0,0, + 0,3477,3478,1,0,0,0,3478,3503,1,0,0,0,3479,3483,3,272,136,0,3480, + 3482,3,276,138,0,3481,3480,1,0,0,0,3482,3485,1,0,0,0,3483,3481,1, + 0,0,0,3483,3484,1,0,0,0,3484,3491,1,0,0,0,3485,3483,1,0,0,0,3486, + 3488,5,181,0,0,3487,3489,7,44,0,0,3488,3487,1,0,0,0,3488,3489,1, + 0,0,0,3489,3490,1,0,0,0,3490,3492,3,272,136,0,3491,3486,1,0,0,0, + 3491,3492,1,0,0,0,3492,3494,1,0,0,0,3493,3495,3,252,126,0,3494,3493, + 1,0,0,0,3494,3495,1,0,0,0,3495,3497,1,0,0,0,3496,3498,3,312,156, + 0,3497,3496,1,0,0,0,3497,3498,1,0,0,0,3498,3500,1,0,0,0,3499,3501, + 3,232,116,0,3500,3499,1,0,0,0,3500,3501,1,0,0,0,3501,3503,1,0,0, + 0,3502,3443,1,0,0,0,3502,3479,1,0,0,0,3503,205,1,0,0,0,3504,3506, + 3,46,23,0,3505,3504,1,0,0,0,3505,3506,1,0,0,0,3506,3507,1,0,0,0, + 3507,3509,3,208,104,0,3508,3510,3,252,126,0,3509,3508,1,0,0,0,3509, + 3510,1,0,0,0,3510,3512,1,0,0,0,3511,3513,3,312,156,0,3512,3511,1, + 0,0,0,3512,3513,1,0,0,0,3513,3515,1,0,0,0,3514,3516,3,296,148,0, + 3515,3514,1,0,0,0,3515,3516,1,0,0,0,3516,207,1,0,0,0,3517,3518,6, + 104,-1,0,3518,3519,3,210,105,0,3519,3534,1,0,0,0,3520,3521,10,2, + 0,0,3521,3523,5,181,0,0,3522,3524,7,44,0,0,3523,3522,1,0,0,0,3523, + 3524,1,0,0,0,3524,3525,1,0,0,0,3525,3533,3,210,105,0,3526,3527,10, + 1,0,0,3527,3529,5,59,0,0,3528,3530,7,44,0,0,3529,3528,1,0,0,0,3529, + 3530,1,0,0,0,3530,3531,1,0,0,0,3531,3533,3,210,105,0,3532,3520,1, + 0,0,0,3532,3526,1,0,0,0,3533,3536,1,0,0,0,3534,3532,1,0,0,0,3534, + 3535,1,0,0,0,3535,209,1,0,0,0,3536,3534,1,0,0,0,3537,3538,6,105, + -1,0,3538,3539,3,212,106,0,3539,3548,1,0,0,0,3540,3541,10,1,0,0, + 3541,3543,5,828,0,0,3542,3544,7,44,0,0,3543,3542,1,0,0,0,3543,3544, + 1,0,0,0,3544,3545,1,0,0,0,3545,3547,3,212,106,0,3546,3540,1,0,0, + 0,3547,3550,1,0,0,0,3548,3546,1,0,0,0,3548,3549,1,0,0,0,3549,211, + 1,0,0,0,3550,3548,1,0,0,0,3551,3566,3,220,110,0,3552,3553,5,866, + 0,0,3553,3555,3,208,104,0,3554,3556,3,252,126,0,3555,3554,1,0,0, + 0,3555,3556,1,0,0,0,3556,3558,1,0,0,0,3557,3559,3,312,156,0,3558, + 3557,1,0,0,0,3558,3559,1,0,0,0,3559,3561,1,0,0,0,3560,3562,3,296, + 148,0,3561,3560,1,0,0,0,3561,3562,1,0,0,0,3562,3563,1,0,0,0,3563, + 3564,5,867,0,0,3564,3566,1,0,0,0,3565,3551,1,0,0,0,3565,3552,1,0, + 0,0,3566,213,1,0,0,0,3567,3570,3,248,124,0,3568,3570,3,250,125,0, + 3569,3567,1,0,0,0,3569,3568,1,0,0,0,3570,215,1,0,0,0,3571,3575,3, + 224,112,0,3572,3573,5,125,0,0,3573,3574,5,20,0,0,3574,3576,3,670, + 335,0,3575,3572,1,0,0,0,3575,3576,1,0,0,0,3576,3579,1,0,0,0,3577, + 3578,5,100,0,0,3578,3580,3,314,157,0,3579,3577,1,0,0,0,3579,3580, + 1,0,0,0,3580,217,1,0,0,0,3581,3586,3,220,110,0,3582,3583,7,49,0, + 0,3583,3585,3,220,110,0,3584,3582,1,0,0,0,3585,3588,1,0,0,0,3586, + 3584,1,0,0,0,3586,3587,1,0,0,0,3587,3590,1,0,0,0,3588,3586,1,0,0, + 0,3589,3591,3,252,126,0,3590,3589,1,0,0,0,3590,3591,1,0,0,0,3591, + 3593,1,0,0,0,3592,3594,3,312,156,0,3593,3592,1,0,0,0,3593,3594,1, + 0,0,0,3594,3596,1,0,0,0,3595,3597,3,296,148,0,3596,3595,1,0,0,0, + 3596,3597,1,0,0,0,3597,219,1,0,0,0,3598,3602,3,204,102,0,3599,3602, + 3,614,307,0,3600,3602,3,216,108,0,3601,3598,1,0,0,0,3601,3599,1, + 0,0,0,3601,3600,1,0,0,0,3602,221,1,0,0,0,3603,3609,3,204,102,0,3604, + 3605,5,173,0,0,3605,3609,3,648,324,0,3606,3609,3,738,369,0,3607, + 3609,3,224,112,0,3608,3603,1,0,0,0,3608,3604,1,0,0,0,3608,3606,1, + 0,0,0,3608,3607,1,0,0,0,3609,223,1,0,0,0,3610,3611,5,189,0,0,3611, + 3612,5,586,0,0,3612,3618,3,740,370,0,3613,3614,5,868,0,0,3614,3615, + 5,586,0,0,3615,3617,3,740,370,0,3616,3613,1,0,0,0,3617,3620,1,0, + 0,0,3618,3616,1,0,0,0,3618,3619,1,0,0,0,3619,225,1,0,0,0,3620,3618, + 1,0,0,0,3621,3622,5,155,0,0,3622,3627,3,228,114,0,3623,3624,5,868, + 0,0,3624,3626,3,228,114,0,3625,3623,1,0,0,0,3626,3629,1,0,0,0,3627, + 3625,1,0,0,0,3627,3628,1,0,0,0,3628,227,1,0,0,0,3629,3627,1,0,0, + 0,3630,3631,3,658,329,0,3631,3632,5,857,0,0,3632,3633,3,742,371, + 0,3633,229,1,0,0,0,3634,3637,3,702,351,0,3635,3637,5,892,0,0,3636, + 3634,1,0,0,0,3636,3635,1,0,0,0,3637,231,1,0,0,0,3638,3639,5,65,0, + 0,3639,3649,7,50,0,0,3640,3641,5,510,0,0,3641,3646,3,648,324,0,3642, + 3643,5,868,0,0,3643,3645,3,648,324,0,3644,3642,1,0,0,0,3645,3648, + 1,0,0,0,3646,3644,1,0,0,0,3646,3647,1,0,0,0,3647,3650,1,0,0,0,3648, + 3646,1,0,0,0,3649,3640,1,0,0,0,3649,3650,1,0,0,0,3650,3653,1,0,0, + 0,3651,3652,7,51,0,0,3652,3654,5,105,0,0,3653,3651,1,0,0,0,3653, + 3654,1,0,0,0,3654,3660,1,0,0,0,3655,3656,5,104,0,0,3656,3657,5,80, + 0,0,3657,3658,5,594,0,0,3658,3660,5,491,0,0,3659,3638,1,0,0,0,3659, + 3655,1,0,0,0,3660,233,1,0,0,0,3661,3663,5,44,0,0,3662,3664,5,107, + 0,0,3663,3662,1,0,0,0,3663,3664,1,0,0,0,3664,3666,1,0,0,0,3665,3667, + 5,549,0,0,3666,3665,1,0,0,0,3666,3667,1,0,0,0,3667,3669,1,0,0,0, + 3668,3670,5,79,0,0,3669,3668,1,0,0,0,3669,3670,1,0,0,0,3670,3671, + 1,0,0,0,3671,3672,5,68,0,0,3672,3677,3,648,324,0,3673,3675,5,13, + 0,0,3674,3673,1,0,0,0,3674,3675,1,0,0,0,3675,3676,1,0,0,0,3676,3678, + 3,702,351,0,3677,3674,1,0,0,0,3677,3678,1,0,0,0,3678,3684,1,0,0, + 0,3679,3680,5,130,0,0,3680,3681,5,866,0,0,3681,3682,3,666,333,0, + 3682,3683,5,867,0,0,3683,3685,1,0,0,0,3684,3679,1,0,0,0,3684,3685, + 1,0,0,0,3685,3688,1,0,0,0,3686,3687,5,192,0,0,3687,3689,3,800,400, + 0,3688,3686,1,0,0,0,3688,3689,1,0,0,0,3689,3691,1,0,0,0,3690,3692, + 3,252,126,0,3691,3690,1,0,0,0,3691,3692,1,0,0,0,3692,3695,1,0,0, + 0,3693,3694,5,100,0,0,3694,3696,3,314,157,0,3695,3693,1,0,0,0,3695, + 3696,1,0,0,0,3696,235,1,0,0,0,3697,3699,5,44,0,0,3698,3700,5,107, + 0,0,3699,3698,1,0,0,0,3699,3700,1,0,0,0,3700,3702,1,0,0,0,3701,3703, + 5,549,0,0,3702,3701,1,0,0,0,3702,3703,1,0,0,0,3703,3705,1,0,0,0, + 3704,3706,5,79,0,0,3705,3704,1,0,0,0,3705,3706,1,0,0,0,3706,3746, + 1,0,0,0,3707,3710,3,648,324,0,3708,3709,5,865,0,0,3709,3711,5,850, + 0,0,3710,3708,1,0,0,0,3710,3711,1,0,0,0,3711,3720,1,0,0,0,3712,3713, + 5,868,0,0,3713,3716,3,648,324,0,3714,3715,5,865,0,0,3715,3717,5, + 850,0,0,3716,3714,1,0,0,0,3716,3717,1,0,0,0,3717,3719,1,0,0,0,3718, + 3712,1,0,0,0,3719,3722,1,0,0,0,3720,3718,1,0,0,0,3720,3721,1,0,0, + 0,3721,3723,1,0,0,0,3722,3720,1,0,0,0,3723,3724,5,68,0,0,3724,3725, + 3,256,128,0,3725,3747,1,0,0,0,3726,3727,5,68,0,0,3727,3730,3,648, + 324,0,3728,3729,5,865,0,0,3729,3731,5,850,0,0,3730,3728,1,0,0,0, + 3730,3731,1,0,0,0,3731,3740,1,0,0,0,3732,3733,5,868,0,0,3733,3736, + 3,648,324,0,3734,3735,5,865,0,0,3735,3737,5,850,0,0,3736,3734,1, + 0,0,0,3736,3737,1,0,0,0,3737,3739,1,0,0,0,3738,3732,1,0,0,0,3739, + 3742,1,0,0,0,3740,3738,1,0,0,0,3740,3741,1,0,0,0,3741,3743,1,0,0, + 0,3742,3740,1,0,0,0,3743,3744,5,188,0,0,3744,3745,3,256,128,0,3745, + 3747,1,0,0,0,3746,3707,1,0,0,0,3746,3726,1,0,0,0,3747,3750,1,0,0, + 0,3748,3749,5,192,0,0,3749,3751,3,800,400,0,3750,3748,1,0,0,0,3750, + 3751,1,0,0,0,3751,237,1,0,0,0,3752,3753,5,417,0,0,3753,3754,3,648, + 324,0,3754,3759,5,516,0,0,3755,3757,5,13,0,0,3756,3755,1,0,0,0,3756, + 3757,1,0,0,0,3757,3758,1,0,0,0,3758,3760,3,702,351,0,3759,3756,1, + 0,0,0,3759,3760,1,0,0,0,3760,239,1,0,0,0,3761,3762,5,417,0,0,3762, + 3763,3,648,324,0,3763,3764,5,135,0,0,3764,3771,3,638,319,0,3765, + 3766,3,810,405,0,3766,3767,5,866,0,0,3767,3768,3,744,372,0,3768, + 3769,5,867,0,0,3769,3772,1,0,0,0,3770,3772,7,52,0,0,3771,3765,1, + 0,0,0,3771,3770,1,0,0,0,3772,3775,1,0,0,0,3773,3774,5,192,0,0,3774, + 3776,3,800,400,0,3775,3773,1,0,0,0,3775,3776,1,0,0,0,3776,3779,1, + 0,0,0,3777,3778,5,100,0,0,3778,3780,3,314,157,0,3779,3777,1,0,0, + 0,3779,3780,1,0,0,0,3780,241,1,0,0,0,3781,3782,5,417,0,0,3782,3783, + 3,648,324,0,3783,3784,5,135,0,0,3784,3787,7,53,0,0,3785,3786,5,192, + 0,0,3786,3788,3,800,400,0,3787,3785,1,0,0,0,3787,3788,1,0,0,0,3788, + 3791,1,0,0,0,3789,3790,5,100,0,0,3790,3792,3,314,157,0,3791,3789, + 1,0,0,0,3791,3792,1,0,0,0,3792,243,1,0,0,0,3793,3794,5,417,0,0,3794, + 3795,3,648,324,0,3795,3796,5,334,0,0,3796,245,1,0,0,0,3797,3798, + 5,425,0,0,3798,3799,5,173,0,0,3799,3800,5,68,0,0,3800,3805,3,712, + 356,0,3801,3802,5,868,0,0,3802,3804,3,712,356,0,3803,3801,1,0,0, + 0,3804,3807,1,0,0,0,3805,3803,1,0,0,0,3805,3806,1,0,0,0,3806,247, + 1,0,0,0,3807,3805,1,0,0,0,3808,3810,5,185,0,0,3809,3811,5,107,0, + 0,3810,3809,1,0,0,0,3810,3811,1,0,0,0,3811,3813,1,0,0,0,3812,3814, + 5,79,0,0,3813,3812,1,0,0,0,3813,3814,1,0,0,0,3814,3815,1,0,0,0,3815, + 3820,3,648,324,0,3816,3818,5,13,0,0,3817,3816,1,0,0,0,3817,3818, + 1,0,0,0,3818,3819,1,0,0,0,3819,3821,3,702,351,0,3820,3817,1,0,0, + 0,3820,3821,1,0,0,0,3821,3822,1,0,0,0,3822,3823,5,155,0,0,3823,3828, + 3,228,114,0,3824,3825,5,868,0,0,3825,3827,3,228,114,0,3826,3824, + 1,0,0,0,3827,3830,1,0,0,0,3828,3826,1,0,0,0,3828,3829,1,0,0,0,3829, + 3833,1,0,0,0,3830,3828,1,0,0,0,3831,3832,5,192,0,0,3832,3834,3,800, + 400,0,3833,3831,1,0,0,0,3833,3834,1,0,0,0,3834,3836,1,0,0,0,3835, + 3837,3,252,126,0,3836,3835,1,0,0,0,3836,3837,1,0,0,0,3837,3839,1, + 0,0,0,3838,3840,3,312,156,0,3839,3838,1,0,0,0,3839,3840,1,0,0,0, + 3840,249,1,0,0,0,3841,3843,5,185,0,0,3842,3844,5,107,0,0,3843,3842, + 1,0,0,0,3843,3844,1,0,0,0,3844,3846,1,0,0,0,3845,3847,5,79,0,0,3846, + 3845,1,0,0,0,3846,3847,1,0,0,0,3847,3848,1,0,0,0,3848,3849,3,256, + 128,0,3849,3850,5,155,0,0,3850,3855,3,228,114,0,3851,3852,5,868, + 0,0,3852,3854,3,228,114,0,3853,3851,1,0,0,0,3854,3857,1,0,0,0,3855, + 3853,1,0,0,0,3855,3856,1,0,0,0,3856,3860,1,0,0,0,3857,3855,1,0,0, + 0,3858,3859,5,192,0,0,3859,3861,3,800,400,0,3860,3858,1,0,0,0,3860, + 3861,1,0,0,0,3861,251,1,0,0,0,3862,3863,5,125,0,0,3863,3864,5,20, + 0,0,3864,3869,3,254,127,0,3865,3866,5,868,0,0,3866,3868,3,254,127, + 0,3867,3865,1,0,0,0,3868,3871,1,0,0,0,3869,3867,1,0,0,0,3869,3870, + 1,0,0,0,3870,253,1,0,0,0,3871,3869,1,0,0,0,3872,3874,3,800,400,0, + 3873,3875,7,54,0,0,3874,3873,1,0,0,0,3874,3875,1,0,0,0,3875,255, + 1,0,0,0,3876,3881,3,258,129,0,3877,3878,5,868,0,0,3878,3880,3,258, + 129,0,3879,3877,1,0,0,0,3880,3883,1,0,0,0,3881,3879,1,0,0,0,3881, + 3882,1,0,0,0,3882,257,1,0,0,0,3883,3881,1,0,0,0,3884,3888,3,260, + 130,0,3885,3887,3,268,134,0,3886,3885,1,0,0,0,3887,3890,1,0,0,0, + 3888,3886,1,0,0,0,3888,3889,1,0,0,0,3889,3903,1,0,0,0,3890,3888, + 1,0,0,0,3891,3892,5,866,0,0,3892,3896,3,260,130,0,3893,3895,3,268, + 134,0,3894,3893,1,0,0,0,3895,3898,1,0,0,0,3896,3894,1,0,0,0,3896, + 3897,1,0,0,0,3897,3899,1,0,0,0,3898,3896,1,0,0,0,3899,3900,5,867, + 0,0,3900,3903,1,0,0,0,3901,3903,3,280,140,0,3902,3884,1,0,0,0,3902, + 3891,1,0,0,0,3902,3901,1,0,0,0,3903,259,1,0,0,0,3904,3910,3,648, + 324,0,3905,3906,5,130,0,0,3906,3907,5,866,0,0,3907,3908,3,666,333, + 0,3908,3909,5,867,0,0,3909,3911,1,0,0,0,3910,3905,1,0,0,0,3910,3911, + 1,0,0,0,3911,3916,1,0,0,0,3912,3914,5,13,0,0,3913,3912,1,0,0,0,3913, + 3914,1,0,0,0,3914,3915,1,0,0,0,3915,3917,3,702,351,0,3916,3913,1, + 0,0,0,3916,3917,1,0,0,0,3917,3926,1,0,0,0,3918,3923,3,264,132,0, + 3919,3920,5,868,0,0,3920,3922,3,264,132,0,3921,3919,1,0,0,0,3922, + 3925,1,0,0,0,3923,3921,1,0,0,0,3923,3924,1,0,0,0,3924,3927,1,0,0, + 0,3925,3923,1,0,0,0,3926,3918,1,0,0,0,3926,3927,1,0,0,0,3927,3950, + 1,0,0,0,3928,3930,5,95,0,0,3929,3928,1,0,0,0,3929,3930,1,0,0,0,3930, + 3936,1,0,0,0,3931,3937,3,204,102,0,3932,3933,5,866,0,0,3933,3934, + 3,204,102,0,3934,3935,5,867,0,0,3935,3937,1,0,0,0,3936,3931,1,0, + 0,0,3936,3932,1,0,0,0,3937,3939,1,0,0,0,3938,3940,5,13,0,0,3939, + 3938,1,0,0,0,3939,3940,1,0,0,0,3940,3941,1,0,0,0,3941,3943,3,702, + 351,0,3942,3944,3,262,131,0,3943,3942,1,0,0,0,3943,3944,1,0,0,0, + 3944,3950,1,0,0,0,3945,3946,5,866,0,0,3946,3947,3,256,128,0,3947, + 3948,5,867,0,0,3948,3950,1,0,0,0,3949,3904,1,0,0,0,3949,3929,1,0, + 0,0,3949,3945,1,0,0,0,3950,261,1,0,0,0,3951,3952,5,866,0,0,3952, + 3953,3,656,328,0,3953,3954,5,867,0,0,3954,263,1,0,0,0,3955,3956, + 7,55,0,0,3956,3959,7,18,0,0,3957,3958,5,65,0,0,3958,3960,3,266,133, + 0,3959,3957,1,0,0,0,3959,3960,1,0,0,0,3960,3961,1,0,0,0,3961,3963, + 5,866,0,0,3962,3964,3,636,318,0,3963,3962,1,0,0,0,3963,3964,1,0, + 0,0,3964,3965,1,0,0,0,3965,3966,5,867,0,0,3966,265,1,0,0,0,3967, + 3973,5,91,0,0,3968,3969,5,125,0,0,3969,3973,5,20,0,0,3970,3971,5, + 74,0,0,3971,3973,5,20,0,0,3972,3967,1,0,0,0,3972,3968,1,0,0,0,3972, + 3970,1,0,0,0,3973,267,1,0,0,0,3974,3976,7,56,0,0,3975,3974,1,0,0, + 0,3975,3976,1,0,0,0,3976,3977,1,0,0,0,3977,3979,5,91,0,0,3978,3980, + 5,95,0,0,3979,3978,1,0,0,0,3979,3980,1,0,0,0,3980,3981,1,0,0,0,3981, + 3985,3,260,130,0,3982,3984,3,270,135,0,3983,3982,1,0,0,0,3984,3987, + 1,0,0,0,3985,3983,1,0,0,0,3985,3986,1,0,0,0,3986,4024,1,0,0,0,3987, + 3985,1,0,0,0,3988,3989,5,172,0,0,3989,3993,3,260,130,0,3990,3992, + 3,270,135,0,3991,3990,1,0,0,0,3992,3995,1,0,0,0,3993,3991,1,0,0, + 0,3993,3994,1,0,0,0,3994,4024,1,0,0,0,3995,3993,1,0,0,0,3996,3998, + 7,57,0,0,3997,3999,5,127,0,0,3998,3997,1,0,0,0,3998,3999,1,0,0,0, + 3999,4000,1,0,0,0,4000,4002,5,91,0,0,4001,4003,5,95,0,0,4002,4001, + 1,0,0,0,4002,4003,1,0,0,0,4003,4004,1,0,0,0,4004,4008,3,260,130, + 0,4005,4007,3,270,135,0,4006,4005,1,0,0,0,4007,4010,1,0,0,0,4008, + 4006,1,0,0,0,4008,4009,1,0,0,0,4009,4024,1,0,0,0,4010,4008,1,0,0, + 0,4011,4019,5,113,0,0,4012,4015,5,84,0,0,4013,4015,7,57,0,0,4014, + 4012,1,0,0,0,4014,4013,1,0,0,0,4015,4017,1,0,0,0,4016,4018,5,127, + 0,0,4017,4016,1,0,0,0,4017,4018,1,0,0,0,4018,4020,1,0,0,0,4019,4014, + 1,0,0,0,4019,4020,1,0,0,0,4020,4021,1,0,0,0,4021,4022,5,91,0,0,4022, + 4024,3,260,130,0,4023,3975,1,0,0,0,4023,3988,1,0,0,0,4023,3996,1, + 0,0,0,4023,4011,1,0,0,0,4024,269,1,0,0,0,4025,4026,5,119,0,0,4026, + 4033,3,800,400,0,4027,4028,5,188,0,0,4028,4029,5,866,0,0,4029,4030, + 3,656,328,0,4030,4031,5,867,0,0,4031,4033,1,0,0,0,4032,4025,1,0, + 0,0,4032,4027,1,0,0,0,4033,271,1,0,0,0,4034,4035,5,866,0,0,4035, + 4036,3,274,137,0,4036,4037,5,867,0,0,4037,4043,1,0,0,0,4038,4039, + 5,866,0,0,4039,4040,3,272,136,0,4040,4041,5,867,0,0,4041,4043,1, + 0,0,0,4042,4034,1,0,0,0,4042,4038,1,0,0,0,4043,273,1,0,0,0,4044, + 4048,5,154,0,0,4045,4047,3,290,145,0,4046,4045,1,0,0,0,4047,4050, + 1,0,0,0,4048,4046,1,0,0,0,4048,4049,1,0,0,0,4049,4051,1,0,0,0,4050, + 4048,1,0,0,0,4051,4053,3,292,146,0,4052,4054,3,296,148,0,4053,4052, + 1,0,0,0,4053,4054,1,0,0,0,4054,4055,1,0,0,0,4055,4057,3,302,151, + 0,4056,4058,3,304,152,0,4057,4056,1,0,0,0,4057,4058,1,0,0,0,4058, + 4060,1,0,0,0,4059,4061,3,306,153,0,4060,4059,1,0,0,0,4060,4061,1, + 0,0,0,4061,4063,1,0,0,0,4062,4064,3,308,154,0,4063,4062,1,0,0,0, + 4063,4064,1,0,0,0,4064,4066,1,0,0,0,4065,4067,3,252,126,0,4066,4065, + 1,0,0,0,4066,4067,1,0,0,0,4067,4069,1,0,0,0,4068,4070,3,312,156, + 0,4069,4068,1,0,0,0,4069,4070,1,0,0,0,4070,4072,1,0,0,0,4071,4073, + 3,296,148,0,4072,4071,1,0,0,0,4072,4073,1,0,0,0,4073,275,1,0,0,0, + 4074,4076,5,181,0,0,4075,4077,7,44,0,0,4076,4075,1,0,0,0,4076,4077, + 1,0,0,0,4077,4080,1,0,0,0,4078,4081,3,274,137,0,4079,4081,3,272, + 136,0,4080,4078,1,0,0,0,4080,4079,1,0,0,0,4081,277,1,0,0,0,4082, + 4097,5,95,0,0,4083,4098,3,274,137,0,4084,4098,3,272,136,0,4085,4088, + 5,866,0,0,4086,4089,3,274,137,0,4087,4089,3,272,136,0,4088,4086, + 1,0,0,0,4088,4087,1,0,0,0,4089,4090,1,0,0,0,4090,4095,5,867,0,0, + 4091,4093,5,13,0,0,4092,4091,1,0,0,0,4092,4093,1,0,0,0,4093,4094, + 1,0,0,0,4094,4096,3,702,351,0,4095,4092,1,0,0,0,4095,4096,1,0,0, + 0,4096,4098,1,0,0,0,4097,4083,1,0,0,0,4097,4084,1,0,0,0,4097,4085, + 1,0,0,0,4098,279,1,0,0,0,4099,4100,5,253,0,0,4100,4101,5,866,0,0, + 4101,4102,5,882,0,0,4102,4103,5,868,0,0,4103,4104,5,882,0,0,4104, + 4105,5,337,0,0,4105,4106,5,866,0,0,4106,4107,3,282,141,0,4107,4108, + 5,867,0,0,4108,4113,5,867,0,0,4109,4111,5,13,0,0,4110,4109,1,0,0, + 0,4110,4111,1,0,0,0,4111,4112,1,0,0,0,4112,4114,3,702,351,0,4113, + 4110,1,0,0,0,4113,4114,1,0,0,0,4114,281,1,0,0,0,4115,4120,3,284, + 142,0,4116,4117,5,868,0,0,4117,4119,3,284,142,0,4118,4116,1,0,0, + 0,4119,4122,1,0,0,0,4120,4118,1,0,0,0,4120,4121,1,0,0,0,4121,283, + 1,0,0,0,4122,4120,1,0,0,0,4123,4140,3,658,329,0,4124,4125,5,65,0, + 0,4125,4141,5,256,0,0,4126,4138,3,722,361,0,4127,4128,5,257,0,0, + 4128,4130,5,882,0,0,4129,4131,3,286,143,0,4130,4129,1,0,0,0,4130, + 4131,1,0,0,0,4131,4133,1,0,0,0,4132,4134,3,288,144,0,4133,4132,1, + 0,0,0,4133,4134,1,0,0,0,4134,4139,1,0,0,0,4135,4136,5,60,0,0,4136, + 4137,5,257,0,0,4137,4139,5,882,0,0,4138,4127,1,0,0,0,4138,4135,1, + 0,0,0,4139,4141,1,0,0,0,4140,4124,1,0,0,0,4140,4126,1,0,0,0,4141, + 4153,1,0,0,0,4142,4144,5,255,0,0,4143,4145,5,257,0,0,4144,4143,1, + 0,0,0,4144,4145,1,0,0,0,4145,4146,1,0,0,0,4146,4147,5,882,0,0,4147, + 4148,5,337,0,0,4148,4149,5,866,0,0,4149,4150,3,282,141,0,4150,4151, + 5,867,0,0,4151,4153,1,0,0,0,4152,4123,1,0,0,0,4152,4142,1,0,0,0, + 4153,285,1,0,0,0,4154,4159,5,116,0,0,4155,4159,5,382,0,0,4156,4157, + 5,42,0,0,4157,4159,3,750,375,0,4158,4154,1,0,0,0,4158,4155,1,0,0, + 0,4158,4156,1,0,0,0,4159,4160,1,0,0,0,4160,4161,5,119,0,0,4161,4162, + 5,55,0,0,4162,287,1,0,0,0,4163,4168,5,116,0,0,4164,4168,5,382,0, + 0,4165,4166,5,42,0,0,4166,4168,3,750,375,0,4167,4163,1,0,0,0,4167, + 4164,1,0,0,0,4167,4165,1,0,0,0,4168,4169,1,0,0,0,4169,4170,5,119, + 0,0,4170,4171,5,382,0,0,4171,289,1,0,0,0,4172,4181,7,58,0,0,4173, + 4181,5,76,0,0,4174,4181,5,172,0,0,4175,4181,5,168,0,0,4176,4181, + 5,166,0,0,4177,4181,5,636,0,0,4178,4181,7,59,0,0,4179,4181,5,167, + 0,0,4180,4172,1,0,0,0,4180,4173,1,0,0,0,4180,4174,1,0,0,0,4180,4175, + 1,0,0,0,4180,4176,1,0,0,0,4180,4177,1,0,0,0,4180,4178,1,0,0,0,4180, + 4179,1,0,0,0,4181,291,1,0,0,0,4182,4185,5,850,0,0,4183,4185,3,294, + 147,0,4184,4182,1,0,0,0,4184,4183,1,0,0,0,4185,4190,1,0,0,0,4186, + 4187,5,868,0,0,4187,4189,3,294,147,0,4188,4186,1,0,0,0,4189,4192, + 1,0,0,0,4190,4188,1,0,0,0,4190,4191,1,0,0,0,4191,293,1,0,0,0,4192, + 4190,1,0,0,0,4193,4194,5,892,0,0,4194,4196,5,841,0,0,4195,4193,1, + 0,0,0,4195,4196,1,0,0,0,4196,4197,1,0,0,0,4197,4202,3,800,400,0, + 4198,4200,5,13,0,0,4199,4198,1,0,0,0,4199,4200,1,0,0,0,4200,4201, + 1,0,0,0,4201,4203,3,702,351,0,4202,4199,1,0,0,0,4202,4203,1,0,0, + 0,4203,4223,1,0,0,0,4204,4209,3,760,380,0,4205,4207,5,13,0,0,4206, + 4205,1,0,0,0,4206,4207,1,0,0,0,4207,4208,1,0,0,0,4208,4210,3,702, + 351,0,4209,4206,1,0,0,0,4209,4210,1,0,0,0,4210,4223,1,0,0,0,4211, + 4212,3,698,349,0,4212,4213,5,865,0,0,4213,4214,5,850,0,0,4214,4223, + 1,0,0,0,4215,4220,3,658,329,0,4216,4218,5,13,0,0,4217,4216,1,0,0, + 0,4217,4218,1,0,0,0,4218,4219,1,0,0,0,4219,4221,3,702,351,0,4220, + 4217,1,0,0,0,4220,4221,1,0,0,0,4221,4223,1,0,0,0,4222,4195,1,0,0, + 0,4222,4204,1,0,0,0,4222,4211,1,0,0,0,4222,4215,1,0,0,0,4223,295, + 1,0,0,0,4224,4225,5,88,0,0,4225,4230,3,230,115,0,4226,4227,5,868, + 0,0,4227,4229,3,230,115,0,4228,4226,1,0,0,0,4229,4232,1,0,0,0,4230, + 4228,1,0,0,0,4230,4231,1,0,0,0,4231,4261,1,0,0,0,4232,4230,1,0,0, + 0,4233,4234,5,88,0,0,4234,4235,5,372,0,0,4235,4261,5,882,0,0,4236, + 4237,5,88,0,0,4237,4238,5,128,0,0,4238,4242,5,882,0,0,4239,4240, + 5,26,0,0,4240,4241,5,155,0,0,4241,4243,3,684,342,0,4242,4239,1,0, + 0,0,4242,4243,1,0,0,0,4243,4250,1,0,0,0,4244,4246,7,46,0,0,4245, + 4247,3,298,149,0,4246,4245,1,0,0,0,4247,4248,1,0,0,0,4248,4246,1, + 0,0,0,4248,4249,1,0,0,0,4249,4251,1,0,0,0,4250,4244,1,0,0,0,4250, + 4251,1,0,0,0,4251,4258,1,0,0,0,4252,4254,5,102,0,0,4253,4255,3,300, + 150,0,4254,4253,1,0,0,0,4255,4256,1,0,0,0,4256,4254,1,0,0,0,4256, + 4257,1,0,0,0,4257,4259,1,0,0,0,4258,4252,1,0,0,0,4258,4259,1,0,0, + 0,4259,4261,1,0,0,0,4260,4224,1,0,0,0,4260,4233,1,0,0,0,4260,4236, + 1,0,0,0,4261,297,1,0,0,0,4262,4263,5,174,0,0,4263,4264,5,20,0,0, + 4264,4275,5,882,0,0,4265,4267,5,123,0,0,4266,4265,1,0,0,0,4266,4267, + 1,0,0,0,4267,4268,1,0,0,0,4268,4269,5,56,0,0,4269,4270,5,20,0,0, + 4270,4275,5,882,0,0,4271,4272,5,58,0,0,4272,4273,5,20,0,0,4273,4275, + 5,882,0,0,4274,4262,1,0,0,0,4274,4266,1,0,0,0,4274,4271,1,0,0,0, + 4275,299,1,0,0,0,4276,4277,5,171,0,0,4277,4278,5,20,0,0,4278,4283, + 5,882,0,0,4279,4280,5,174,0,0,4280,4281,5,20,0,0,4281,4283,5,882, + 0,0,4282,4276,1,0,0,0,4282,4279,1,0,0,0,4283,301,1,0,0,0,4284,4285, + 5,68,0,0,4285,4287,3,256,128,0,4286,4284,1,0,0,0,4286,4287,1,0,0, + 0,4287,4290,1,0,0,0,4288,4289,5,192,0,0,4289,4291,3,800,400,0,4290, + 4288,1,0,0,0,4290,4291,1,0,0,0,4291,303,1,0,0,0,4292,4293,5,74,0, + 0,4293,4294,5,20,0,0,4294,4299,3,310,155,0,4295,4296,5,868,0,0,4296, + 4298,3,310,155,0,4297,4295,1,0,0,0,4298,4301,1,0,0,0,4299,4297,1, + 0,0,0,4299,4300,1,0,0,0,4300,4304,1,0,0,0,4301,4299,1,0,0,0,4302, + 4303,5,194,0,0,4303,4305,5,584,0,0,4304,4302,1,0,0,0,4304,4305,1, + 0,0,0,4305,305,1,0,0,0,4306,4307,5,75,0,0,4307,4308,3,800,400,0, + 4308,307,1,0,0,0,4309,4310,5,689,0,0,4310,4311,3,778,389,0,4311, + 4312,5,13,0,0,4312,4313,5,866,0,0,4313,4314,3,776,388,0,4314,4324, + 5,867,0,0,4315,4316,5,868,0,0,4316,4317,3,778,389,0,4317,4318,5, + 13,0,0,4318,4319,5,866,0,0,4319,4320,3,776,388,0,4320,4321,5,867, + 0,0,4321,4323,1,0,0,0,4322,4315,1,0,0,0,4323,4326,1,0,0,0,4324,4322, + 1,0,0,0,4324,4325,1,0,0,0,4325,309,1,0,0,0,4326,4324,1,0,0,0,4327, + 4329,3,800,400,0,4328,4330,7,54,0,0,4329,4328,1,0,0,0,4329,4330, + 1,0,0,0,4330,311,1,0,0,0,4331,4342,5,100,0,0,4332,4333,3,314,157, + 0,4333,4334,5,868,0,0,4334,4336,1,0,0,0,4335,4332,1,0,0,0,4335,4336, + 1,0,0,0,4336,4337,1,0,0,0,4337,4343,3,314,157,0,4338,4339,3,314, + 157,0,4339,4340,5,509,0,0,4340,4341,3,314,157,0,4341,4343,1,0,0, + 0,4342,4335,1,0,0,0,4342,4338,1,0,0,0,4343,313,1,0,0,0,4344,4348, + 3,708,354,0,4345,4348,3,682,341,0,4346,4348,3,704,352,0,4347,4344, + 1,0,0,0,4347,4345,1,0,0,0,4347,4346,1,0,0,0,4348,315,1,0,0,0,4349, + 4350,5,640,0,0,4350,4359,5,664,0,0,4351,4356,3,338,169,0,4352,4353, + 5,868,0,0,4353,4355,3,338,169,0,4354,4352,1,0,0,0,4355,4358,1,0, + 0,0,4356,4354,1,0,0,0,4356,4357,1,0,0,0,4357,4360,1,0,0,0,4358,4356, + 1,0,0,0,4359,4351,1,0,0,0,4359,4360,1,0,0,0,4360,317,1,0,0,0,4361, + 4363,5,317,0,0,4362,4364,5,691,0,0,4363,4362,1,0,0,0,4363,4364,1, + 0,0,0,4364,319,1,0,0,0,4365,4367,5,341,0,0,4366,4368,5,691,0,0,4367, + 4366,1,0,0,0,4367,4368,1,0,0,0,4368,4374,1,0,0,0,4369,4371,5,11, + 0,0,4370,4372,5,502,0,0,4371,4370,1,0,0,0,4371,4372,1,0,0,0,4372, + 4373,1,0,0,0,4373,4375,5,326,0,0,4374,4369,1,0,0,0,4374,4375,1,0, + 0,0,4375,4380,1,0,0,0,4376,4378,5,502,0,0,4377,4376,1,0,0,0,4377, + 4378,1,0,0,0,4378,4379,1,0,0,0,4379,4381,5,140,0,0,4380,4377,1,0, + 0,0,4380,4381,1,0,0,0,4381,321,1,0,0,0,4382,4384,5,583,0,0,4383, + 4385,5,691,0,0,4384,4383,1,0,0,0,4384,4385,1,0,0,0,4385,4391,1,0, + 0,0,4386,4388,5,11,0,0,4387,4389,5,502,0,0,4388,4387,1,0,0,0,4388, + 4389,1,0,0,0,4389,4390,1,0,0,0,4390,4392,5,326,0,0,4391,4386,1,0, + 0,0,4391,4392,1,0,0,0,4392,4397,1,0,0,0,4393,4395,5,502,0,0,4394, + 4393,1,0,0,0,4394,4395,1,0,0,0,4395,4396,1,0,0,0,4396,4398,5,140, + 0,0,4397,4394,1,0,0,0,4397,4398,1,0,0,0,4398,323,1,0,0,0,4399,4400, + 5,589,0,0,4400,4401,3,702,351,0,4401,325,1,0,0,0,4402,4404,5,583, + 0,0,4403,4405,5,691,0,0,4404,4403,1,0,0,0,4404,4405,1,0,0,0,4405, + 4406,1,0,0,0,4406,4408,5,176,0,0,4407,4409,5,589,0,0,4408,4407,1, + 0,0,0,4408,4409,1,0,0,0,4409,4410,1,0,0,0,4410,4411,3,702,351,0, + 4411,327,1,0,0,0,4412,4413,5,140,0,0,4413,4414,5,589,0,0,4414,4415, + 3,702,351,0,4415,329,1,0,0,0,4416,4417,5,104,0,0,4417,4418,7,60, + 0,0,4418,4423,3,340,170,0,4419,4420,5,868,0,0,4420,4422,3,340,170, + 0,4421,4419,1,0,0,0,4422,4425,1,0,0,0,4423,4421,1,0,0,0,4423,4424, + 1,0,0,0,4424,331,1,0,0,0,4425,4423,1,0,0,0,4426,4427,5,183,0,0,4427, + 4428,5,752,0,0,4428,333,1,0,0,0,4429,4430,5,155,0,0,4430,4431,5, + 313,0,0,4431,4432,5,857,0,0,4432,4433,7,25,0,0,4433,335,1,0,0,0, + 4434,4436,5,155,0,0,4435,4437,7,61,0,0,4436,4435,1,0,0,0,4436,4437, + 1,0,0,0,4437,4438,1,0,0,0,4438,4439,5,664,0,0,4439,4444,3,344,172, + 0,4440,4441,5,868,0,0,4441,4443,3,344,172,0,4442,4440,1,0,0,0,4443, + 4446,1,0,0,0,4444,4442,1,0,0,0,4444,4445,1,0,0,0,4445,337,1,0,0, + 0,4446,4444,1,0,0,0,4447,4448,5,194,0,0,4448,4449,5,350,0,0,4449, + 4455,5,600,0,0,4450,4451,5,135,0,0,4451,4455,5,195,0,0,4452,4453, + 5,135,0,0,4453,4455,5,515,0,0,4454,4447,1,0,0,0,4454,4450,1,0,0, + 0,4454,4452,1,0,0,0,4455,339,1,0,0,0,4456,4461,3,648,324,0,4457, + 4459,5,13,0,0,4458,4457,1,0,0,0,4458,4459,1,0,0,0,4459,4460,1,0, + 0,0,4460,4462,3,702,351,0,4461,4458,1,0,0,0,4461,4462,1,0,0,0,4462, + 4463,1,0,0,0,4463,4464,3,342,171,0,4464,341,1,0,0,0,4465,4467,5, + 135,0,0,4466,4468,5,450,0,0,4467,4466,1,0,0,0,4467,4468,1,0,0,0, + 4468,4474,1,0,0,0,4469,4471,5,107,0,0,4470,4469,1,0,0,0,4470,4471, + 1,0,0,0,4471,4472,1,0,0,0,4472,4474,5,195,0,0,4473,4465,1,0,0,0, + 4473,4470,1,0,0,0,4474,343,1,0,0,0,4475,4476,5,440,0,0,4476,4477, + 5,448,0,0,4477,4483,3,346,173,0,4478,4479,5,135,0,0,4479,4483,5, + 195,0,0,4480,4481,5,135,0,0,4481,4483,5,515,0,0,4482,4475,1,0,0, + 0,4482,4478,1,0,0,0,4482,4480,1,0,0,0,4483,345,1,0,0,0,4484,4485, + 5,809,0,0,4485,4492,5,135,0,0,4486,4487,5,135,0,0,4487,4492,5,810, + 0,0,4488,4489,5,135,0,0,4489,4492,5,811,0,0,4490,4492,5,812,0,0, + 4491,4484,1,0,0,0,4491,4486,1,0,0,0,4491,4488,1,0,0,0,4491,4490, + 1,0,0,0,4492,347,1,0,0,0,4493,4494,5,25,0,0,4494,4495,5,453,0,0, + 4495,4496,5,176,0,0,4496,4501,3,364,182,0,4497,4498,5,868,0,0,4498, + 4500,3,364,182,0,4499,4497,1,0,0,0,4500,4503,1,0,0,0,4501,4499,1, + 0,0,0,4501,4502,1,0,0,0,4502,4505,1,0,0,0,4503,4501,1,0,0,0,4504, + 4506,3,384,192,0,4505,4504,1,0,0,0,4505,4506,1,0,0,0,4506,349,1, + 0,0,0,4507,4508,5,25,0,0,4508,4509,5,572,0,0,4509,4510,5,400,0,0, + 4510,4515,3,386,193,0,4511,4512,5,868,0,0,4512,4514,3,386,193,0, + 4513,4511,1,0,0,0,4514,4517,1,0,0,0,4515,4513,1,0,0,0,4515,4516, + 1,0,0,0,4516,4519,1,0,0,0,4517,4515,1,0,0,0,4518,4520,3,384,192, + 0,4519,4518,1,0,0,0,4519,4520,1,0,0,0,4520,351,1,0,0,0,4521,4522, + 5,25,0,0,4522,4523,5,572,0,0,4523,4524,5,605,0,0,4524,4525,5,176, + 0,0,4525,4530,3,374,187,0,4526,4527,5,868,0,0,4527,4529,3,374,187, + 0,4528,4526,1,0,0,0,4529,4532,1,0,0,0,4530,4528,1,0,0,0,4530,4531, + 1,0,0,0,4531,4534,1,0,0,0,4532,4530,1,0,0,0,4533,4535,3,384,192, + 0,4534,4533,1,0,0,0,4534,4535,1,0,0,0,4535,353,1,0,0,0,4536,4537, + 5,133,0,0,4537,4538,7,62,0,0,4538,4543,5,452,0,0,4539,4540,5,176, + 0,0,4540,4544,5,882,0,0,4541,4542,5,16,0,0,4542,4544,5,882,0,0,4543, + 4539,1,0,0,0,4543,4541,1,0,0,0,4544,355,1,0,0,0,4545,4546,5,640, + 0,0,4546,4555,7,63,0,0,4547,4552,3,390,195,0,4548,4549,5,868,0,0, + 4549,4551,3,390,195,0,4550,4548,1,0,0,0,4551,4554,1,0,0,0,4552,4550, + 1,0,0,0,4552,4553,1,0,0,0,4553,4556,1,0,0,0,4554,4552,1,0,0,0,4555, + 4547,1,0,0,0,4555,4556,1,0,0,0,4556,4559,1,0,0,0,4557,4558,5,676, + 0,0,4558,4560,3,392,196,0,4559,4557,1,0,0,0,4559,4560,1,0,0,0,4560, + 4564,1,0,0,0,4561,4563,3,394,197,0,4562,4561,1,0,0,0,4563,4566,1, + 0,0,0,4564,4562,1,0,0,0,4564,4565,1,0,0,0,4565,4568,1,0,0,0,4566, + 4564,1,0,0,0,4567,4569,3,384,192,0,4568,4567,1,0,0,0,4568,4569,1, + 0,0,0,4569,357,1,0,0,0,4570,4571,5,646,0,0,4571,4580,7,63,0,0,4572, + 4577,3,390,195,0,4573,4574,5,868,0,0,4574,4576,3,390,195,0,4575, + 4573,1,0,0,0,4576,4579,1,0,0,0,4577,4575,1,0,0,0,4577,4578,1,0,0, + 0,4578,4581,1,0,0,0,4579,4577,1,0,0,0,4580,4572,1,0,0,0,4580,4581, + 1,0,0,0,4581,4583,1,0,0,0,4582,4584,3,384,192,0,4583,4582,1,0,0, + 0,4583,4584,1,0,0,0,4584,359,1,0,0,0,4585,4586,5,640,0,0,4586,4590, + 5,415,0,0,4587,4588,5,678,0,0,4588,4589,5,857,0,0,4589,4591,5,882, + 0,0,4590,4587,1,0,0,0,4590,4591,1,0,0,0,4591,4596,1,0,0,0,4592,4593, + 5,868,0,0,4593,4594,5,529,0,0,4594,4595,5,857,0,0,4595,4597,5,882, + 0,0,4596,4592,1,0,0,0,4596,4597,1,0,0,0,4597,4602,1,0,0,0,4598,4599, + 5,868,0,0,4599,4600,5,363,0,0,4600,4601,5,857,0,0,4601,4603,5,882, + 0,0,4602,4598,1,0,0,0,4602,4603,1,0,0,0,4603,361,1,0,0,0,4604,4605, + 5,646,0,0,4605,4606,5,415,0,0,4606,363,1,0,0,0,4607,4608,3,366,183, + 0,4608,4609,5,857,0,0,4609,4610,5,882,0,0,4610,4635,1,0,0,0,4611, + 4612,3,368,184,0,4612,4613,5,857,0,0,4613,4614,3,708,354,0,4614, + 4635,1,0,0,0,4615,4616,3,370,185,0,4616,4617,5,857,0,0,4617,4618, + 7,25,0,0,4618,4635,1,0,0,0,4619,4635,3,372,186,0,4620,4621,5,424, + 0,0,4621,4622,5,857,0,0,4622,4631,5,866,0,0,4623,4628,3,702,351, + 0,4624,4625,5,868,0,0,4625,4627,3,702,351,0,4626,4624,1,0,0,0,4627, + 4630,1,0,0,0,4628,4626,1,0,0,0,4628,4629,1,0,0,0,4629,4632,1,0,0, + 0,4630,4628,1,0,0,0,4631,4623,1,0,0,0,4631,4632,1,0,0,0,4632,4633, + 1,0,0,0,4633,4635,5,867,0,0,4634,4607,1,0,0,0,4634,4611,1,0,0,0, + 4634,4615,1,0,0,0,4634,4619,1,0,0,0,4634,4620,1,0,0,0,4635,365,1, + 0,0,0,4636,4637,7,64,0,0,4637,367,1,0,0,0,4638,4639,7,65,0,0,4639, + 369,1,0,0,0,4640,4641,7,66,0,0,4641,371,1,0,0,0,4642,4643,5,543, + 0,0,4643,4644,5,857,0,0,4644,4656,7,67,0,0,4645,4646,5,574,0,0,4646, + 4647,5,857,0,0,4647,4656,7,68,0,0,4648,4649,5,310,0,0,4649,4653, + 5,857,0,0,4650,4654,5,507,0,0,4651,4654,5,450,0,0,4652,4654,3,396, + 198,0,4653,4650,1,0,0,0,4653,4651,1,0,0,0,4653,4652,1,0,0,0,4654, + 4656,1,0,0,0,4655,4642,1,0,0,0,4655,4645,1,0,0,0,4655,4648,1,0,0, + 0,4656,373,1,0,0,0,4657,4658,3,376,188,0,4658,4659,5,857,0,0,4659, + 4660,5,882,0,0,4660,4685,1,0,0,0,4661,4662,3,378,189,0,4662,4663, + 5,857,0,0,4663,4664,3,708,354,0,4664,4685,1,0,0,0,4665,4666,3,380, + 190,0,4666,4667,5,857,0,0,4667,4668,7,25,0,0,4668,4685,1,0,0,0,4669, + 4685,3,382,191,0,4670,4671,5,424,0,0,4671,4672,5,857,0,0,4672,4681, + 5,866,0,0,4673,4678,3,702,351,0,4674,4675,5,868,0,0,4675,4677,3, + 702,351,0,4676,4674,1,0,0,0,4677,4680,1,0,0,0,4678,4676,1,0,0,0, + 4678,4679,1,0,0,0,4679,4682,1,0,0,0,4680,4678,1,0,0,0,4681,4673, + 1,0,0,0,4681,4682,1,0,0,0,4682,4683,1,0,0,0,4683,4685,5,867,0,0, + 4684,4657,1,0,0,0,4684,4661,1,0,0,0,4684,4665,1,0,0,0,4684,4669, + 1,0,0,0,4684,4670,1,0,0,0,4685,375,1,0,0,0,4686,4687,7,69,0,0,4687, + 377,1,0,0,0,4688,4689,7,70,0,0,4689,379,1,0,0,0,4690,4691,7,71,0, + 0,4691,381,1,0,0,0,4692,4693,5,543,0,0,4693,4694,5,857,0,0,4694, + 4706,7,67,0,0,4695,4696,5,574,0,0,4696,4697,5,857,0,0,4697,4706, + 7,72,0,0,4698,4699,5,310,0,0,4699,4703,5,857,0,0,4700,4704,5,507, + 0,0,4701,4704,5,450,0,0,4702,4704,3,396,198,0,4703,4700,1,0,0,0, + 4703,4701,1,0,0,0,4703,4702,1,0,0,0,4704,4706,1,0,0,0,4705,4692, + 1,0,0,0,4705,4695,1,0,0,0,4705,4698,1,0,0,0,4706,383,1,0,0,0,4707, + 4708,5,65,0,0,4708,4709,5,328,0,0,4709,4710,5,882,0,0,4710,385,1, + 0,0,0,4711,4712,5,565,0,0,4712,4713,5,857,0,0,4713,4714,5,866,0, + 0,4714,4719,3,624,312,0,4715,4716,5,868,0,0,4716,4718,3,624,312, + 0,4717,4715,1,0,0,0,4718,4721,1,0,0,0,4719,4717,1,0,0,0,4719,4720, + 1,0,0,0,4720,4722,1,0,0,0,4721,4719,1,0,0,0,4722,4723,5,867,0,0, + 4723,4775,1,0,0,0,4724,4725,5,567,0,0,4725,4726,5,857,0,0,4726,4727, + 5,866,0,0,4727,4732,3,624,312,0,4728,4729,5,868,0,0,4729,4731,3, + 624,312,0,4730,4728,1,0,0,0,4731,4734,1,0,0,0,4732,4730,1,0,0,0, + 4732,4733,1,0,0,0,4733,4735,1,0,0,0,4734,4732,1,0,0,0,4735,4736, + 5,867,0,0,4736,4775,1,0,0,0,4737,4738,5,566,0,0,4738,4739,5,857, + 0,0,4739,4740,5,866,0,0,4740,4741,3,646,323,0,4741,4742,5,867,0, + 0,4742,4775,1,0,0,0,4743,4744,5,568,0,0,4744,4745,5,857,0,0,4745, + 4746,5,866,0,0,4746,4747,3,646,323,0,4747,4748,5,867,0,0,4748,4775, + 1,0,0,0,4749,4750,5,570,0,0,4750,4751,5,857,0,0,4751,4752,5,866, + 0,0,4752,4753,3,746,373,0,4753,4754,5,867,0,0,4754,4775,1,0,0,0, + 4755,4756,5,571,0,0,4756,4757,5,857,0,0,4757,4758,5,866,0,0,4758, + 4759,3,746,373,0,4759,4760,5,867,0,0,4760,4775,1,0,0,0,4761,4762, + 5,569,0,0,4762,4763,5,857,0,0,4763,4764,5,866,0,0,4764,4769,3,388, + 194,0,4765,4766,5,868,0,0,4766,4768,3,388,194,0,4767,4765,1,0,0, + 0,4768,4771,1,0,0,0,4769,4767,1,0,0,0,4769,4770,1,0,0,0,4770,4772, + 1,0,0,0,4771,4769,1,0,0,0,4772,4773,5,867,0,0,4773,4775,1,0,0,0, + 4774,4711,1,0,0,0,4774,4724,1,0,0,0,4774,4737,1,0,0,0,4774,4743, + 1,0,0,0,4774,4749,1,0,0,0,4774,4755,1,0,0,0,4774,4761,1,0,0,0,4775, + 387,1,0,0,0,4776,4777,5,866,0,0,4777,4778,3,648,324,0,4778,4779, + 5,868,0,0,4779,4780,3,648,324,0,4780,4781,5,867,0,0,4781,389,1,0, + 0,0,4782,4783,7,73,0,0,4783,391,1,0,0,0,4784,4785,7,74,0,0,4785, + 4786,5,857,0,0,4786,4810,3,396,198,0,4787,4788,5,460,0,0,4788,4789, + 5,857,0,0,4789,4790,5,882,0,0,4790,4791,5,868,0,0,4791,4792,5,461, + 0,0,4792,4793,5,857,0,0,4793,4810,3,708,354,0,4794,4795,5,611,0, + 0,4795,4796,5,857,0,0,4796,4797,5,882,0,0,4797,4798,5,868,0,0,4798, + 4799,5,612,0,0,4799,4800,5,857,0,0,4800,4810,3,708,354,0,4801,4802, + 5,557,0,0,4802,4803,5,857,0,0,4803,4804,5,882,0,0,4804,4805,5,868, + 0,0,4805,4806,5,558,0,0,4806,4807,5,857,0,0,4807,4810,3,708,354, + 0,4808,4810,5,634,0,0,4809,4784,1,0,0,0,4809,4787,1,0,0,0,4809,4794, + 1,0,0,0,4809,4801,1,0,0,0,4809,4808,1,0,0,0,4810,393,1,0,0,0,4811, + 4812,5,678,0,0,4812,4813,5,857,0,0,4813,4824,5,882,0,0,4814,4815, + 5,529,0,0,4815,4816,5,857,0,0,4816,4824,5,882,0,0,4817,4818,5,363, + 0,0,4818,4819,5,857,0,0,4819,4824,5,882,0,0,4820,4821,5,535,0,0, + 4821,4822,5,857,0,0,4822,4824,5,882,0,0,4823,4811,1,0,0,0,4823,4814, + 1,0,0,0,4823,4817,1,0,0,0,4823,4820,1,0,0,0,4824,395,1,0,0,0,4825, + 4830,3,692,346,0,4826,4827,5,868,0,0,4827,4829,3,692,346,0,4828, + 4826,1,0,0,0,4829,4832,1,0,0,0,4830,4828,1,0,0,0,4830,4831,1,0,0, + 0,4831,4835,1,0,0,0,4832,4830,1,0,0,0,4833,4835,5,882,0,0,4834,4825, + 1,0,0,0,4834,4833,1,0,0,0,4835,397,1,0,0,0,4836,4837,5,694,0,0,4837, + 4838,7,75,0,0,4838,4840,3,694,347,0,4839,4841,7,76,0,0,4840,4839, + 1,0,0,0,4840,4841,1,0,0,0,4841,399,1,0,0,0,4842,4843,5,694,0,0,4843, + 4844,5,378,0,0,4844,4850,3,694,347,0,4845,4848,5,654,0,0,4846,4847, + 5,65,0,0,4847,4849,5,489,0,0,4848,4846,1,0,0,0,4848,4849,1,0,0,0, + 4849,4851,1,0,0,0,4850,4845,1,0,0,0,4850,4851,1,0,0,0,4851,401,1, + 0,0,0,4852,4853,5,694,0,0,4853,4854,5,540,0,0,4854,4855,3,694,347, + 0,4855,403,1,0,0,0,4856,4857,5,694,0,0,4857,4858,5,341,0,0,4858, + 4861,3,694,347,0,4859,4860,5,513,0,0,4860,4862,5,533,0,0,4861,4859, + 1,0,0,0,4861,4862,1,0,0,0,4862,405,1,0,0,0,4863,4864,5,694,0,0,4864, + 4865,5,583,0,0,4865,4866,3,694,347,0,4866,407,1,0,0,0,4867,4868, + 5,694,0,0,4868,4871,5,551,0,0,4869,4870,5,33,0,0,4870,4872,3,694, + 347,0,4871,4869,1,0,0,0,4871,4872,1,0,0,0,4872,409,1,0,0,0,4873, + 4874,5,540,0,0,4874,4875,3,702,351,0,4875,4878,5,68,0,0,4876,4879, + 5,882,0,0,4877,4879,5,892,0,0,4878,4876,1,0,0,0,4878,4877,1,0,0, + 0,4879,411,1,0,0,0,4880,4881,5,717,0,0,4881,4884,3,702,351,0,4882, + 4883,5,188,0,0,4883,4885,3,748,374,0,4884,4882,1,0,0,0,4884,4885, + 1,0,0,0,4885,413,1,0,0,0,4886,4887,7,77,0,0,4887,4888,5,540,0,0, + 4888,4889,3,702,351,0,4889,415,1,0,0,0,4890,4893,3,418,209,0,4891, + 4893,3,4,2,0,4892,4890,1,0,0,0,4892,4891,1,0,0,0,4893,417,1,0,0, + 0,4894,4895,3,702,351,0,4895,4896,5,878,0,0,4896,4898,1,0,0,0,4897, + 4894,1,0,0,0,4897,4898,1,0,0,0,4898,4899,1,0,0,0,4899,4905,5,317, + 0,0,4900,4901,3,438,219,0,4901,4902,5,869,0,0,4902,4904,1,0,0,0, + 4903,4900,1,0,0,0,4904,4907,1,0,0,0,4905,4903,1,0,0,0,4905,4906, + 1,0,0,0,4906,4913,1,0,0,0,4907,4905,1,0,0,0,4908,4909,3,440,220, + 0,4909,4910,5,869,0,0,4910,4912,1,0,0,0,4911,4908,1,0,0,0,4912,4915, + 1,0,0,0,4913,4911,1,0,0,0,4913,4914,1,0,0,0,4914,4921,1,0,0,0,4915, + 4913,1,0,0,0,4916,4917,3,442,221,0,4917,4918,5,869,0,0,4918,4920, + 1,0,0,0,4919,4916,1,0,0,0,4920,4923,1,0,0,0,4921,4919,1,0,0,0,4921, + 4922,1,0,0,0,4922,4929,1,0,0,0,4923,4921,1,0,0,0,4924,4925,3,444, + 222,0,4925,4926,5,869,0,0,4926,4928,1,0,0,0,4927,4924,1,0,0,0,4928, + 4931,1,0,0,0,4929,4927,1,0,0,0,4929,4930,1,0,0,0,4930,4935,1,0,0, + 0,4931,4929,1,0,0,0,4932,4934,3,448,224,0,4933,4932,1,0,0,0,4934, + 4937,1,0,0,0,4935,4933,1,0,0,0,4935,4936,1,0,0,0,4936,4938,1,0,0, + 0,4937,4935,1,0,0,0,4938,4940,5,378,0,0,4939,4941,3,702,351,0,4940, + 4939,1,0,0,0,4940,4941,1,0,0,0,4941,419,1,0,0,0,4942,4945,5,23,0, + 0,4943,4946,3,702,351,0,4944,4946,3,800,400,0,4945,4943,1,0,0,0, + 4945,4944,1,0,0,0,4945,4946,1,0,0,0,4946,4948,1,0,0,0,4947,4949, + 3,450,225,0,4948,4947,1,0,0,0,4949,4950,1,0,0,0,4950,4948,1,0,0, + 0,4950,4951,1,0,0,0,4951,4958,1,0,0,0,4952,4954,5,53,0,0,4953,4955, + 3,448,224,0,4954,4953,1,0,0,0,4955,4956,1,0,0,0,4956,4954,1,0,0, + 0,4956,4957,1,0,0,0,4957,4959,1,0,0,0,4958,4952,1,0,0,0,4958,4959, + 1,0,0,0,4959,4960,1,0,0,0,4960,4961,5,378,0,0,4961,4962,5,23,0,0, + 4962,421,1,0,0,0,4963,4964,5,78,0,0,4964,4965,3,800,400,0,4965,4967, + 5,175,0,0,4966,4968,3,448,224,0,4967,4966,1,0,0,0,4968,4969,1,0, + 0,0,4969,4967,1,0,0,0,4969,4970,1,0,0,0,4970,4974,1,0,0,0,4971,4973, + 3,452,226,0,4972,4971,1,0,0,0,4973,4976,1,0,0,0,4974,4972,1,0,0, + 0,4974,4975,1,0,0,0,4975,4983,1,0,0,0,4976,4974,1,0,0,0,4977,4979, + 5,53,0,0,4978,4980,3,448,224,0,4979,4978,1,0,0,0,4980,4981,1,0,0, + 0,4981,4979,1,0,0,0,4981,4982,1,0,0,0,4982,4984,1,0,0,0,4983,4977, + 1,0,0,0,4983,4984,1,0,0,0,4984,4985,1,0,0,0,4985,4986,5,378,0,0, + 4986,4987,5,78,0,0,4987,423,1,0,0,0,4988,4989,5,90,0,0,4989,4990, + 3,702,351,0,4990,425,1,0,0,0,4991,4992,5,97,0,0,4992,4993,3,702, + 351,0,4993,427,1,0,0,0,4994,4995,3,702,351,0,4995,4996,5,878,0,0, + 4996,4998,1,0,0,0,4997,4994,1,0,0,0,4997,4998,1,0,0,0,4998,4999, + 1,0,0,0,4999,5001,5,106,0,0,5000,5002,3,448,224,0,5001,5000,1,0, + 0,0,5002,5003,1,0,0,0,5003,5001,1,0,0,0,5003,5004,1,0,0,0,5004,5005, + 1,0,0,0,5005,5006,5,378,0,0,5006,5008,5,106,0,0,5007,5009,3,702, + 351,0,5008,5007,1,0,0,0,5008,5009,1,0,0,0,5009,429,1,0,0,0,5010, + 5011,3,702,351,0,5011,5012,5,878,0,0,5012,5014,1,0,0,0,5013,5010, + 1,0,0,0,5013,5014,1,0,0,0,5014,5015,1,0,0,0,5015,5017,5,142,0,0, + 5016,5018,3,448,224,0,5017,5016,1,0,0,0,5018,5019,1,0,0,0,5019,5017, + 1,0,0,0,5019,5020,1,0,0,0,5020,5021,1,0,0,0,5021,5022,5,676,0,0, + 5022,5023,3,800,400,0,5023,5024,5,378,0,0,5024,5026,5,142,0,0,5025, + 5027,3,702,351,0,5026,5025,1,0,0,0,5026,5027,1,0,0,0,5027,431,1, + 0,0,0,5028,5029,5,148,0,0,5029,5030,3,800,400,0,5030,433,1,0,0,0, + 5031,5032,3,702,351,0,5032,5033,5,878,0,0,5033,5035,1,0,0,0,5034, + 5031,1,0,0,0,5034,5035,1,0,0,0,5035,5036,1,0,0,0,5036,5037,5,193, + 0,0,5037,5038,3,800,400,0,5038,5040,5,371,0,0,5039,5041,3,448,224, + 0,5040,5039,1,0,0,0,5041,5042,1,0,0,0,5042,5040,1,0,0,0,5042,5043, + 1,0,0,0,5043,5044,1,0,0,0,5044,5045,5,378,0,0,5045,5047,5,193,0, + 0,5046,5048,3,702,351,0,5047,5046,1,0,0,0,5047,5048,1,0,0,0,5048, + 435,1,0,0,0,5049,5050,5,334,0,0,5050,5065,3,702,351,0,5051,5056, + 5,64,0,0,5052,5054,5,501,0,0,5053,5052,1,0,0,0,5053,5054,1,0,0,0, + 5054,5055,1,0,0,0,5055,5057,5,68,0,0,5056,5053,1,0,0,0,5056,5057, + 1,0,0,0,5057,5058,1,0,0,0,5058,5059,3,702,351,0,5059,5060,5,88,0, + 0,5060,5061,3,700,350,0,5061,5065,1,0,0,0,5062,5063,5,516,0,0,5063, + 5065,3,702,351,0,5064,5049,1,0,0,0,5064,5051,1,0,0,0,5064,5062,1, + 0,0,0,5065,437,1,0,0,0,5066,5067,5,41,0,0,5067,5068,3,700,350,0, + 5068,5071,3,722,361,0,5069,5070,5,42,0,0,5070,5072,3,800,400,0,5071, + 5069,1,0,0,0,5071,5072,1,0,0,0,5072,439,1,0,0,0,5073,5074,5,41,0, + 0,5074,5075,3,702,351,0,5075,5076,5,30,0,0,5076,5083,5,65,0,0,5077, + 5084,3,708,354,0,5078,5080,5,164,0,0,5079,5081,5,682,0,0,5080,5079, + 1,0,0,0,5080,5081,1,0,0,0,5081,5082,1,0,0,0,5082,5084,5,882,0,0, + 5083,5077,1,0,0,0,5083,5078,1,0,0,0,5084,441,1,0,0,0,5085,5086,5, + 41,0,0,5086,5087,3,702,351,0,5087,5088,5,38,0,0,5088,5089,5,65,0, + 0,5089,5090,3,204,102,0,5090,443,1,0,0,0,5091,5092,5,41,0,0,5092, + 5093,7,78,0,0,5093,5094,5,417,0,0,5094,5095,5,65,0,0,5095,5100,3, + 446,223,0,5096,5097,5,868,0,0,5097,5099,3,446,223,0,5098,5096,1, + 0,0,0,5099,5102,1,0,0,0,5100,5098,1,0,0,0,5100,5101,1,0,0,0,5101, + 5103,1,0,0,0,5102,5100,1,0,0,0,5103,5104,3,416,208,0,5104,445,1, + 0,0,0,5105,5117,3,708,354,0,5106,5108,5,164,0,0,5107,5109,5,682, + 0,0,5108,5107,1,0,0,0,5108,5109,1,0,0,0,5109,5110,1,0,0,0,5110,5117, + 5,882,0,0,5111,5117,3,702,351,0,5112,5117,5,165,0,0,5113,5114,5, + 114,0,0,5114,5117,5,407,0,0,5115,5117,5,163,0,0,5116,5105,1,0,0, + 0,5116,5106,1,0,0,0,5116,5111,1,0,0,0,5116,5112,1,0,0,0,5116,5113, + 1,0,0,0,5116,5115,1,0,0,0,5117,447,1,0,0,0,5118,5121,3,18,9,0,5119, + 5121,3,4,2,0,5120,5118,1,0,0,0,5120,5119,1,0,0,0,5121,5122,1,0,0, + 0,5122,5123,5,869,0,0,5123,449,1,0,0,0,5124,5127,5,191,0,0,5125, + 5128,3,720,360,0,5126,5128,3,800,400,0,5127,5125,1,0,0,0,5127,5126, + 1,0,0,0,5128,5129,1,0,0,0,5129,5131,5,175,0,0,5130,5132,3,448,224, + 0,5131,5130,1,0,0,0,5132,5133,1,0,0,0,5133,5131,1,0,0,0,5133,5134, + 1,0,0,0,5134,451,1,0,0,0,5135,5136,5,54,0,0,5136,5137,3,800,400, + 0,5137,5139,5,175,0,0,5138,5140,3,448,224,0,5139,5138,1,0,0,0,5140, + 5141,1,0,0,0,5141,5139,1,0,0,0,5141,5142,1,0,0,0,5142,453,1,0,0, + 0,5143,5144,5,8,0,0,5144,5146,5,678,0,0,5145,5147,3,754,377,0,5146, + 5145,1,0,0,0,5146,5147,1,0,0,0,5147,5204,1,0,0,0,5148,5153,3,486, + 243,0,5149,5150,5,868,0,0,5150,5152,3,486,243,0,5151,5149,1,0,0, + 0,5152,5155,1,0,0,0,5153,5151,1,0,0,0,5153,5154,1,0,0,0,5154,5205, + 1,0,0,0,5155,5153,1,0,0,0,5156,5161,3,488,244,0,5157,5158,5,868, + 0,0,5158,5160,3,488,244,0,5159,5157,1,0,0,0,5160,5163,1,0,0,0,5161, + 5159,1,0,0,0,5161,5162,1,0,0,0,5162,5178,1,0,0,0,5163,5161,1,0,0, + 0,5164,5176,5,144,0,0,5165,5177,5,505,0,0,5166,5173,3,500,250,0, + 5167,5169,5,11,0,0,5168,5167,1,0,0,0,5168,5169,1,0,0,0,5169,5170, + 1,0,0,0,5170,5172,3,500,250,0,5171,5168,1,0,0,0,5172,5175,1,0,0, + 0,5173,5171,1,0,0,0,5173,5174,1,0,0,0,5174,5177,1,0,0,0,5175,5173, + 1,0,0,0,5176,5165,1,0,0,0,5176,5166,1,0,0,0,5177,5179,1,0,0,0,5178, + 5164,1,0,0,0,5178,5179,1,0,0,0,5179,5186,1,0,0,0,5180,5182,5,194, + 0,0,5181,5183,3,502,251,0,5182,5181,1,0,0,0,5183,5184,1,0,0,0,5184, + 5182,1,0,0,0,5184,5185,1,0,0,0,5185,5187,1,0,0,0,5186,5180,1,0,0, + 0,5186,5187,1,0,0,0,5187,5192,1,0,0,0,5188,5191,3,504,252,0,5189, + 5191,3,506,253,0,5190,5188,1,0,0,0,5190,5189,1,0,0,0,5191,5194,1, + 0,0,0,5192,5190,1,0,0,0,5192,5193,1,0,0,0,5193,5197,1,0,0,0,5194, + 5192,1,0,0,0,5195,5196,7,79,0,0,5196,5198,5,882,0,0,5197,5195,1, + 0,0,0,5197,5198,1,0,0,0,5198,5205,1,0,0,0,5199,5200,3,652,326,0, + 5200,5201,5,42,0,0,5201,5202,5,582,0,0,5202,5203,3,462,231,0,5203, + 5205,1,0,0,0,5204,5148,1,0,0,0,5204,5156,1,0,0,0,5204,5199,1,0,0, + 0,5205,455,1,0,0,0,5206,5207,5,34,0,0,5207,5209,5,678,0,0,5208,5210, + 3,756,378,0,5209,5208,1,0,0,0,5209,5210,1,0,0,0,5210,5211,1,0,0, + 0,5211,5213,3,680,340,0,5212,5214,3,490,245,0,5213,5212,1,0,0,0, + 5213,5214,1,0,0,0,5214,5222,1,0,0,0,5215,5216,5,868,0,0,5216,5218, + 3,680,340,0,5217,5219,3,490,245,0,5218,5217,1,0,0,0,5218,5219,1, + 0,0,0,5219,5221,1,0,0,0,5220,5215,1,0,0,0,5221,5224,1,0,0,0,5222, + 5220,1,0,0,0,5222,5223,1,0,0,0,5223,5228,1,0,0,0,5224,5222,1,0,0, + 0,5225,5226,5,42,0,0,5226,5227,5,582,0,0,5227,5229,3,462,231,0,5228, + 5225,1,0,0,0,5228,5229,1,0,0,0,5229,5244,1,0,0,0,5230,5242,5,144, + 0,0,5231,5243,5,505,0,0,5232,5239,3,500,250,0,5233,5235,5,11,0,0, + 5234,5233,1,0,0,0,5234,5235,1,0,0,0,5235,5236,1,0,0,0,5236,5238, + 3,500,250,0,5237,5234,1,0,0,0,5238,5241,1,0,0,0,5239,5237,1,0,0, + 0,5239,5240,1,0,0,0,5240,5243,1,0,0,0,5241,5239,1,0,0,0,5242,5231, + 1,0,0,0,5242,5232,1,0,0,0,5243,5245,1,0,0,0,5244,5230,1,0,0,0,5244, + 5245,1,0,0,0,5245,5252,1,0,0,0,5246,5248,5,194,0,0,5247,5249,3,502, + 251,0,5248,5247,1,0,0,0,5249,5250,1,0,0,0,5250,5248,1,0,0,0,5250, + 5251,1,0,0,0,5251,5253,1,0,0,0,5252,5246,1,0,0,0,5252,5253,1,0,0, + 0,5253,5258,1,0,0,0,5254,5257,3,504,252,0,5255,5257,3,506,253,0, + 5256,5254,1,0,0,0,5256,5255,1,0,0,0,5257,5260,1,0,0,0,5258,5256, + 1,0,0,0,5258,5259,1,0,0,0,5259,5263,1,0,0,0,5260,5258,1,0,0,0,5261, + 5262,7,79,0,0,5262,5264,5,882,0,0,5263,5261,1,0,0,0,5263,5264,1, + 0,0,0,5264,457,1,0,0,0,5265,5266,5,51,0,0,5266,5268,5,678,0,0,5267, + 5269,3,754,377,0,5268,5267,1,0,0,0,5268,5269,1,0,0,0,5269,5270,1, + 0,0,0,5270,5275,3,680,340,0,5271,5272,5,868,0,0,5272,5274,3,680, + 340,0,5273,5271,1,0,0,0,5274,5277,1,0,0,0,5275,5273,1,0,0,0,5275, + 5276,1,0,0,0,5276,459,1,0,0,0,5277,5275,1,0,0,0,5278,5279,5,73,0, + 0,5279,5284,3,514,257,0,5280,5281,5,868,0,0,5281,5283,3,514,257, + 0,5282,5280,1,0,0,0,5283,5286,1,0,0,0,5284,5282,1,0,0,0,5284,5285, + 1,0,0,0,5285,5287,1,0,0,0,5286,5284,1,0,0,0,5287,5289,5,119,0,0, + 5288,5290,3,482,241,0,5289,5288,1,0,0,0,5289,5290,1,0,0,0,5290,5291, + 1,0,0,0,5291,5292,3,518,259,0,5292,5302,5,176,0,0,5293,5298,3,494, + 247,0,5294,5295,5,868,0,0,5295,5297,3,494,247,0,5296,5294,1,0,0, + 0,5297,5300,1,0,0,0,5298,5296,1,0,0,0,5298,5299,1,0,0,0,5299,5303, + 1,0,0,0,5300,5298,1,0,0,0,5301,5303,3,650,325,0,5302,5293,1,0,0, + 0,5302,5301,1,0,0,0,5303,5318,1,0,0,0,5304,5316,5,144,0,0,5305,5317, + 5,505,0,0,5306,5313,3,500,250,0,5307,5309,5,11,0,0,5308,5307,1,0, + 0,0,5308,5309,1,0,0,0,5309,5310,1,0,0,0,5310,5312,3,500,250,0,5311, + 5308,1,0,0,0,5312,5315,1,0,0,0,5313,5311,1,0,0,0,5313,5314,1,0,0, + 0,5314,5317,1,0,0,0,5315,5313,1,0,0,0,5316,5305,1,0,0,0,5316,5306, + 1,0,0,0,5317,5319,1,0,0,0,5318,5304,1,0,0,0,5318,5319,1,0,0,0,5319, + 5329,1,0,0,0,5320,5326,5,194,0,0,5321,5322,5,73,0,0,5322,5325,5, + 121,0,0,5323,5325,3,502,251,0,5324,5321,1,0,0,0,5324,5323,1,0,0, + 0,5325,5328,1,0,0,0,5326,5324,1,0,0,0,5326,5327,1,0,0,0,5327,5330, + 1,0,0,0,5328,5326,1,0,0,0,5329,5320,1,0,0,0,5329,5330,1,0,0,0,5330, + 5338,1,0,0,0,5331,5332,5,13,0,0,5332,5336,3,680,340,0,5333,5334, + 5,194,0,0,5334,5335,5,582,0,0,5335,5337,3,462,231,0,5336,5333,1, + 0,0,0,5336,5337,1,0,0,0,5337,5339,1,0,0,0,5338,5331,1,0,0,0,5338, + 5339,1,0,0,0,5339,5368,1,0,0,0,5340,5343,5,73,0,0,5341,5342,5,547, + 0,0,5342,5344,5,119,0,0,5343,5341,1,0,0,0,5343,5344,1,0,0,0,5344, + 5345,1,0,0,0,5345,5350,3,652,326,0,5346,5347,5,868,0,0,5347,5349, + 3,652,326,0,5348,5346,1,0,0,0,5349,5352,1,0,0,0,5350,5348,1,0,0, + 0,5350,5351,1,0,0,0,5351,5353,1,0,0,0,5352,5350,1,0,0,0,5353,5354, + 5,176,0,0,5354,5359,3,652,326,0,5355,5356,5,868,0,0,5356,5358,3, + 652,326,0,5357,5355,1,0,0,0,5358,5361,1,0,0,0,5359,5357,1,0,0,0, + 5359,5360,1,0,0,0,5360,5365,1,0,0,0,5361,5359,1,0,0,0,5362,5363, + 5,194,0,0,5363,5364,5,704,0,0,5364,5366,5,121,0,0,5365,5362,1,0, + 0,0,5365,5366,1,0,0,0,5366,5368,1,0,0,0,5367,5278,1,0,0,0,5367,5340, + 1,0,0,0,5368,461,1,0,0,0,5369,5378,5,42,0,0,5370,5378,5,505,0,0, + 5371,5374,5,7,0,0,5372,5373,5,59,0,0,5373,5375,3,650,325,0,5374, + 5372,1,0,0,0,5374,5375,1,0,0,0,5375,5378,1,0,0,0,5376,5378,3,650, + 325,0,5377,5369,1,0,0,0,5377,5370,1,0,0,0,5377,5371,1,0,0,0,5377, + 5376,1,0,0,0,5378,463,1,0,0,0,5379,5380,5,73,0,0,5380,5381,5,547, + 0,0,5381,5382,5,119,0,0,5382,5383,3,680,340,0,5383,5384,5,176,0, + 0,5384,5389,3,680,340,0,5385,5386,5,868,0,0,5386,5388,3,680,340, + 0,5387,5385,1,0,0,0,5388,5391,1,0,0,0,5389,5387,1,0,0,0,5389,5390, + 1,0,0,0,5390,5395,1,0,0,0,5391,5389,1,0,0,0,5392,5393,5,194,0,0, + 5393,5394,5,73,0,0,5394,5396,5,121,0,0,5395,5392,1,0,0,0,5395,5396, + 1,0,0,0,5396,465,1,0,0,0,5397,5398,5,8,0,0,5398,5399,5,739,0,0,5399, + 5400,5,74,0,0,5400,5406,3,642,321,0,5401,5403,5,190,0,0,5402,5404, + 5,857,0,0,5403,5402,1,0,0,0,5403,5404,1,0,0,0,5404,5405,1,0,0,0, + 5405,5407,3,474,237,0,5406,5401,1,0,0,0,5406,5407,1,0,0,0,5407,5413, + 1,0,0,0,5408,5410,5,837,0,0,5409,5411,5,857,0,0,5410,5409,1,0,0, + 0,5410,5411,1,0,0,0,5411,5412,1,0,0,0,5412,5414,3,708,354,0,5413, + 5408,1,0,0,0,5413,5414,1,0,0,0,5414,5419,1,0,0,0,5415,5417,7,38, + 0,0,5416,5418,5,66,0,0,5417,5416,1,0,0,0,5417,5418,1,0,0,0,5418, + 5420,1,0,0,0,5419,5415,1,0,0,0,5419,5420,1,0,0,0,5420,467,1,0,0, + 0,5421,5422,5,34,0,0,5422,5423,5,739,0,0,5423,5424,5,74,0,0,5424, + 5425,3,640,320,0,5425,5426,5,839,0,0,5426,5427,5,857,0,0,5427,5433, + 7,80,0,0,5428,5430,5,190,0,0,5429,5431,5,857,0,0,5430,5429,1,0,0, + 0,5430,5431,1,0,0,0,5431,5432,1,0,0,0,5432,5434,3,474,237,0,5433, + 5428,1,0,0,0,5433,5434,1,0,0,0,5434,5440,1,0,0,0,5435,5437,5,837, + 0,0,5436,5438,5,857,0,0,5437,5436,1,0,0,0,5437,5438,1,0,0,0,5438, + 5439,1,0,0,0,5439,5441,3,708,354,0,5440,5435,1,0,0,0,5440,5441,1, + 0,0,0,5441,5443,1,0,0,0,5442,5444,7,38,0,0,5443,5442,1,0,0,0,5443, + 5444,1,0,0,0,5444,469,1,0,0,0,5445,5446,5,51,0,0,5446,5447,5,739, + 0,0,5447,5448,5,74,0,0,5448,5450,3,642,321,0,5449,5451,5,66,0,0, + 5450,5449,1,0,0,0,5450,5451,1,0,0,0,5451,471,1,0,0,0,5452,5453,5, + 155,0,0,5453,5454,5,739,0,0,5454,5455,5,74,0,0,5455,5465,3,642,321, + 0,5456,5457,5,65,0,0,5457,5462,3,708,354,0,5458,5459,5,868,0,0,5459, + 5461,3,708,354,0,5460,5458,1,0,0,0,5461,5464,1,0,0,0,5462,5460,1, + 0,0,0,5462,5463,1,0,0,0,5463,5466,1,0,0,0,5464,5462,1,0,0,0,5465, + 5456,1,0,0,0,5465,5466,1,0,0,0,5466,473,1,0,0,0,5467,5473,3,708, + 354,0,5468,5469,3,708,354,0,5469,5470,5,854,0,0,5470,5471,3,708, + 354,0,5471,5473,1,0,0,0,5472,5467,1,0,0,0,5472,5468,1,0,0,0,5473, + 5478,1,0,0,0,5474,5475,5,868,0,0,5475,5477,3,474,237,0,5476,5474, + 1,0,0,0,5477,5480,1,0,0,0,5478,5476,1,0,0,0,5478,5479,1,0,0,0,5479, + 475,1,0,0,0,5480,5478,1,0,0,0,5481,5482,5,141,0,0,5482,5483,5,678, + 0,0,5483,5488,3,520,260,0,5484,5485,5,868,0,0,5485,5487,3,520,260, + 0,5486,5484,1,0,0,0,5487,5490,1,0,0,0,5488,5486,1,0,0,0,5488,5489, + 1,0,0,0,5489,477,1,0,0,0,5490,5488,1,0,0,0,5491,5493,5,149,0,0,5492, + 5494,3,754,377,0,5493,5492,1,0,0,0,5493,5494,1,0,0,0,5494,5495,1, + 0,0,0,5495,5500,3,514,257,0,5496,5497,5,868,0,0,5497,5499,3,514, + 257,0,5498,5496,1,0,0,0,5499,5502,1,0,0,0,5500,5498,1,0,0,0,5500, + 5501,1,0,0,0,5501,5503,1,0,0,0,5502,5500,1,0,0,0,5503,5505,5,119, + 0,0,5504,5506,3,482,241,0,5505,5504,1,0,0,0,5505,5506,1,0,0,0,5506, + 5507,1,0,0,0,5507,5508,3,518,259,0,5508,5509,5,68,0,0,5509,5511, + 3,650,325,0,5510,5512,3,480,240,0,5511,5510,1,0,0,0,5511,5512,1, + 0,0,0,5512,5544,1,0,0,0,5513,5515,5,149,0,0,5514,5516,3,754,377, + 0,5515,5514,1,0,0,0,5515,5516,1,0,0,0,5516,5517,1,0,0,0,5517,5519, + 5,7,0,0,5518,5520,5,734,0,0,5519,5518,1,0,0,0,5519,5520,1,0,0,0, + 5520,5521,1,0,0,0,5521,5522,5,868,0,0,5522,5523,5,73,0,0,5523,5524, + 5,121,0,0,5524,5525,5,68,0,0,5525,5527,3,650,325,0,5526,5528,3,480, + 240,0,5527,5526,1,0,0,0,5527,5528,1,0,0,0,5528,5544,1,0,0,0,5529, + 5531,5,149,0,0,5530,5532,3,754,377,0,5531,5530,1,0,0,0,5531,5532, + 1,0,0,0,5532,5535,1,0,0,0,5533,5534,5,547,0,0,5534,5536,5,119,0, + 0,5535,5533,1,0,0,0,5535,5536,1,0,0,0,5536,5537,1,0,0,0,5537,5538, + 3,650,325,0,5538,5539,5,68,0,0,5539,5541,3,650,325,0,5540,5542,3, + 480,240,0,5541,5540,1,0,0,0,5541,5542,1,0,0,0,5542,5544,1,0,0,0, + 5543,5491,1,0,0,0,5543,5513,1,0,0,0,5543,5529,1,0,0,0,5544,479,1, + 0,0,0,5545,5546,5,79,0,0,5546,5547,5,674,0,0,5547,5548,5,678,0,0, + 5548,481,1,0,0,0,5549,5550,7,81,0,0,5550,483,1,0,0,0,5551,5552,5, + 155,0,0,5552,5555,5,529,0,0,5553,5554,5,65,0,0,5554,5556,3,680,340, + 0,5555,5553,1,0,0,0,5555,5556,1,0,0,0,5556,5557,1,0,0,0,5557,5560, + 5,857,0,0,5558,5561,3,794,397,0,5559,5561,5,882,0,0,5560,5558,1, + 0,0,0,5560,5559,1,0,0,0,5561,5584,1,0,0,0,5562,5563,5,155,0,0,5563, + 5566,5,529,0,0,5564,5565,5,65,0,0,5565,5567,3,680,340,0,5566,5564, + 1,0,0,0,5566,5567,1,0,0,0,5567,5572,1,0,0,0,5568,5569,5,176,0,0, + 5569,5573,5,829,0,0,5570,5571,5,857,0,0,5571,5573,5,882,0,0,5572, + 5568,1,0,0,0,5572,5570,1,0,0,0,5573,5576,1,0,0,0,5574,5575,5,143, + 0,0,5575,5577,5,882,0,0,5576,5574,1,0,0,0,5576,5577,1,0,0,0,5577, + 5581,1,0,0,0,5578,5579,5,147,0,0,5579,5580,5,36,0,0,5580,5582,5, + 529,0,0,5581,5578,1,0,0,0,5581,5582,1,0,0,0,5582,5584,1,0,0,0,5583, + 5551,1,0,0,0,5583,5562,1,0,0,0,5584,485,1,0,0,0,5585,5586,3,680, + 340,0,5586,5587,3,504,252,0,5587,487,1,0,0,0,5588,5614,3,680,340, + 0,5589,5590,5,423,0,0,5590,5591,5,20,0,0,5591,5592,5,882,0,0,5592, + 5615,3,496,248,0,5593,5594,5,423,0,0,5594,5595,5,20,0,0,5595,5596, + 5,829,0,0,5596,5597,5,529,0,0,5597,5615,3,496,248,0,5598,5599,5, + 423,0,0,5599,5600,5,194,0,0,5600,5615,3,498,249,0,5601,5602,5,369, + 0,0,5602,5603,5,511,0,0,5603,5615,5,529,0,0,5604,5605,7,82,0,0,5605, + 5607,3,512,256,0,5606,5608,3,508,254,0,5607,5606,1,0,0,0,5607,5608, + 1,0,0,0,5608,5610,1,0,0,0,5609,5604,1,0,0,0,5610,5611,1,0,0,0,5611, + 5609,1,0,0,0,5611,5612,1,0,0,0,5612,5615,1,0,0,0,5613,5615,3,510, + 255,0,5614,5589,1,0,0,0,5614,5593,1,0,0,0,5614,5598,1,0,0,0,5614, + 5601,1,0,0,0,5614,5609,1,0,0,0,5614,5613,1,0,0,0,5614,5615,1,0,0, + 0,5615,489,1,0,0,0,5616,5617,5,423,0,0,5617,5623,5,20,0,0,5618,5624, + 5,882,0,0,5619,5620,5,829,0,0,5620,5624,5,529,0,0,5621,5622,5,529, + 0,0,5622,5624,5,882,0,0,5623,5618,1,0,0,0,5623,5619,1,0,0,0,5623, + 5621,1,0,0,0,5624,5627,1,0,0,0,5625,5626,5,11,0,0,5626,5628,3,490, + 245,0,5627,5625,1,0,0,0,5627,5628,1,0,0,0,5628,5653,1,0,0,0,5629, + 5630,5,423,0,0,5630,5631,5,194,0,0,5631,5640,3,702,351,0,5632,5636, + 5,20,0,0,5633,5637,5,882,0,0,5634,5635,5,829,0,0,5635,5637,5,529, + 0,0,5636,5633,1,0,0,0,5636,5634,1,0,0,0,5637,5641,1,0,0,0,5638,5639, + 5,13,0,0,5639,5641,5,882,0,0,5640,5632,1,0,0,0,5640,5638,1,0,0,0, + 5640,5641,1,0,0,0,5641,5644,1,0,0,0,5642,5643,5,11,0,0,5643,5645, + 3,490,245,0,5644,5642,1,0,0,0,5644,5645,1,0,0,0,5645,5653,1,0,0, + 0,5646,5647,5,423,0,0,5647,5648,5,194,0,0,5648,5650,3,702,351,0, + 5649,5651,3,492,246,0,5650,5649,1,0,0,0,5650,5651,1,0,0,0,5651,5653, + 1,0,0,0,5652,5616,1,0,0,0,5652,5629,1,0,0,0,5652,5646,1,0,0,0,5653, + 491,1,0,0,0,5654,5655,5,427,0,0,5655,5656,5,708,0,0,5656,5657,5, + 423,0,0,5657,5661,5,20,0,0,5658,5659,5,829,0,0,5659,5662,5,529,0, + 0,5660,5662,5,882,0,0,5661,5658,1,0,0,0,5661,5660,1,0,0,0,5662,5672, + 1,0,0,0,5663,5664,5,427,0,0,5664,5665,5,708,0,0,5665,5666,5,423, + 0,0,5666,5667,5,194,0,0,5667,5668,3,702,351,0,5668,5669,5,13,0,0, + 5669,5670,5,882,0,0,5670,5672,1,0,0,0,5671,5654,1,0,0,0,5671,5663, + 1,0,0,0,5672,493,1,0,0,0,5673,5674,3,680,340,0,5674,5675,5,423,0, + 0,5675,5676,5,20,0,0,5676,5677,5,529,0,0,5677,5678,5,882,0,0,5678, + 5699,1,0,0,0,5679,5680,3,680,340,0,5680,5681,5,423,0,0,5681,5682, + 5,20,0,0,5682,5683,5,829,0,0,5683,5684,5,529,0,0,5684,5685,3,496, + 248,0,5685,5699,1,0,0,0,5686,5687,3,680,340,0,5687,5688,5,423,0, + 0,5688,5689,5,20,0,0,5689,5690,5,882,0,0,5690,5691,3,496,248,0,5691, + 5699,1,0,0,0,5692,5693,3,680,340,0,5693,5694,5,423,0,0,5694,5695, + 5,194,0,0,5695,5696,3,498,249,0,5696,5699,1,0,0,0,5697,5699,3,680, + 340,0,5698,5673,1,0,0,0,5698,5679,1,0,0,0,5698,5686,1,0,0,0,5698, + 5692,1,0,0,0,5698,5697,1,0,0,0,5699,495,1,0,0,0,5700,5701,5,143, + 0,0,5701,5703,5,882,0,0,5702,5700,1,0,0,0,5702,5703,1,0,0,0,5703, + 5707,1,0,0,0,5704,5705,5,147,0,0,5705,5706,5,36,0,0,5706,5708,5, + 529,0,0,5707,5704,1,0,0,0,5707,5708,1,0,0,0,5708,497,1,0,0,0,5709, + 5717,3,702,351,0,5710,5714,7,83,0,0,5711,5715,5,882,0,0,5712,5713, + 5,829,0,0,5713,5715,5,529,0,0,5714,5711,1,0,0,0,5714,5712,1,0,0, + 0,5715,5716,1,0,0,0,5716,5718,3,496,248,0,5717,5710,1,0,0,0,5717, + 5718,1,0,0,0,5718,5724,1,0,0,0,5719,5720,3,702,351,0,5720,5721,5, + 188,0,0,5721,5722,3,794,397,0,5722,5724,1,0,0,0,5723,5709,1,0,0, + 0,5723,5719,1,0,0,0,5724,499,1,0,0,0,5725,5734,5,169,0,0,5726,5734, + 5,693,0,0,5727,5728,5,331,0,0,5728,5734,5,882,0,0,5729,5730,5,441, + 0,0,5730,5734,5,882,0,0,5731,5732,5,651,0,0,5732,5734,5,882,0,0, + 5733,5725,1,0,0,0,5733,5726,1,0,0,0,5733,5727,1,0,0,0,5733,5729, + 1,0,0,0,5733,5731,1,0,0,0,5734,501,1,0,0,0,5735,5736,5,479,0,0,5736, + 5744,3,708,354,0,5737,5738,5,482,0,0,5738,5744,3,708,354,0,5739, + 5740,5,478,0,0,5740,5744,3,708,354,0,5741,5742,5,483,0,0,5742,5744, + 3,708,354,0,5743,5735,1,0,0,0,5743,5737,1,0,0,0,5743,5739,1,0,0, + 0,5743,5741,1,0,0,0,5744,503,1,0,0,0,5745,5746,5,529,0,0,5746,5753, + 5,390,0,0,5747,5754,5,42,0,0,5748,5754,5,500,0,0,5749,5750,5,87, + 0,0,5750,5751,3,708,354,0,5751,5752,5,698,0,0,5752,5754,1,0,0,0, + 5753,5747,1,0,0,0,5753,5748,1,0,0,0,5753,5749,1,0,0,0,5753,5754, + 1,0,0,0,5754,5784,1,0,0,0,5755,5756,5,529,0,0,5756,5759,5,420,0, + 0,5757,5760,5,42,0,0,5758,5760,3,708,354,0,5759,5757,1,0,0,0,5759, + 5758,1,0,0,0,5760,5784,1,0,0,0,5761,5762,5,529,0,0,5762,5763,5,581, + 0,0,5763,5768,5,87,0,0,5764,5769,5,42,0,0,5765,5766,3,708,354,0, + 5766,5767,5,698,0,0,5767,5769,1,0,0,0,5768,5764,1,0,0,0,5768,5765, + 1,0,0,0,5769,5784,1,0,0,0,5770,5771,5,529,0,0,5771,5772,5,144,0, + 0,5772,5774,5,36,0,0,5773,5775,7,84,0,0,5774,5773,1,0,0,0,5774,5775, + 1,0,0,0,5775,5784,1,0,0,0,5776,5777,5,395,0,0,5777,5784,3,708,354, + 0,5778,5781,5,530,0,0,5779,5782,3,708,354,0,5780,5782,5,669,0,0, + 5781,5779,1,0,0,0,5781,5780,1,0,0,0,5782,5784,1,0,0,0,5783,5745, + 1,0,0,0,5783,5755,1,0,0,0,5783,5761,1,0,0,0,5783,5770,1,0,0,0,5783, + 5776,1,0,0,0,5783,5778,1,0,0,0,5784,505,1,0,0,0,5785,5786,5,304, + 0,0,5786,5787,7,85,0,0,5787,507,1,0,0,0,5788,5791,5,423,0,0,5789, + 5790,5,194,0,0,5790,5792,3,702,351,0,5791,5789,1,0,0,0,5791,5792, + 1,0,0,0,5792,5801,1,0,0,0,5793,5797,5,20,0,0,5794,5798,5,882,0,0, + 5795,5796,5,829,0,0,5796,5798,5,529,0,0,5797,5794,1,0,0,0,5797,5795, + 1,0,0,0,5798,5802,1,0,0,0,5799,5800,5,13,0,0,5800,5802,5,882,0,0, + 5801,5793,1,0,0,0,5801,5799,1,0,0,0,5802,509,1,0,0,0,5803,5804,3, + 512,256,0,5804,5805,5,429,0,0,5805,5806,5,555,0,0,5806,5819,1,0, + 0,0,5807,5808,3,512,256,0,5808,5809,5,401,0,0,5809,5810,5,555,0, + 0,5810,5811,5,155,0,0,5811,5812,5,330,0,0,5812,5813,5,13,0,0,5813, + 5814,5,882,0,0,5814,5819,1,0,0,0,5815,5816,3,512,256,0,5816,5817, + 5,675,0,0,5817,5819,1,0,0,0,5818,5803,1,0,0,0,5818,5807,1,0,0,0, + 5818,5815,1,0,0,0,5819,511,1,0,0,0,5820,5821,7,86,0,0,5821,5822, + 5,394,0,0,5822,513,1,0,0,0,5823,5828,3,516,258,0,5824,5825,5,866, + 0,0,5825,5826,3,656,328,0,5826,5827,5,867,0,0,5827,5829,1,0,0,0, + 5828,5824,1,0,0,0,5828,5829,1,0,0,0,5829,515,1,0,0,0,5830,5832,5, + 7,0,0,5831,5833,5,734,0,0,5832,5831,1,0,0,0,5832,5833,1,0,0,0,5833, + 5924,1,0,0,0,5834,5836,5,8,0,0,5835,5837,5,743,0,0,5836,5835,1,0, + 0,0,5836,5837,1,0,0,0,5837,5924,1,0,0,0,5838,5846,5,34,0,0,5839, + 5840,5,660,0,0,5840,5847,5,752,0,0,5841,5847,5,743,0,0,5842,5847, + 5,684,0,0,5843,5847,5,678,0,0,5844,5847,5,658,0,0,5845,5847,5,582, + 0,0,5846,5839,1,0,0,0,5846,5841,1,0,0,0,5846,5842,1,0,0,0,5846,5843, + 1,0,0,0,5846,5844,1,0,0,0,5846,5845,1,0,0,0,5846,5847,1,0,0,0,5847, + 5924,1,0,0,0,5848,5924,5,44,0,0,5849,5851,5,51,0,0,5850,5852,5,582, + 0,0,5851,5850,1,0,0,0,5851,5852,1,0,0,0,5852,5924,1,0,0,0,5853,5924, + 5,385,0,0,5854,5924,5,717,0,0,5855,5924,5,718,0,0,5856,5857,5,73, + 0,0,5857,5924,5,121,0,0,5858,5924,5,82,0,0,5859,5924,5,86,0,0,5860, + 5861,5,104,0,0,5861,5924,5,752,0,0,5862,5924,5,735,0,0,5863,5924, + 5,547,0,0,5864,5924,5,138,0,0,5865,5924,5,736,0,0,5866,5867,5,572, + 0,0,5867,5924,7,87,0,0,5868,5924,5,154,0,0,5869,5870,5,157,0,0,5870, + 5924,7,88,0,0,5871,5924,5,749,0,0,5872,5924,5,750,0,0,5873,5924, + 5,178,0,0,5874,5924,5,185,0,0,5875,5924,5,186,0,0,5876,5924,5,705, + 0,0,5877,5924,5,706,0,0,5878,5924,5,707,0,0,5879,5924,5,709,0,0, + 5880,5924,5,710,0,0,5881,5924,5,711,0,0,5882,5924,5,712,0,0,5883, + 5924,5,714,0,0,5884,5924,5,715,0,0,5885,5924,5,716,0,0,5886,5924, + 5,719,0,0,5887,5924,5,720,0,0,5888,5924,5,721,0,0,5889,5924,5,722, + 0,0,5890,5924,5,723,0,0,5891,5924,5,724,0,0,5892,5924,5,725,0,0, + 5893,5924,5,726,0,0,5894,5924,5,727,0,0,5895,5924,5,728,0,0,5896, + 5924,5,731,0,0,5897,5924,5,732,0,0,5898,5924,5,733,0,0,5899,5924, + 5,737,0,0,5900,5924,5,738,0,0,5901,5924,5,740,0,0,5902,5924,5,741, + 0,0,5903,5924,5,742,0,0,5904,5924,5,745,0,0,5905,5924,5,746,0,0, + 5906,5924,5,747,0,0,5907,5924,5,160,0,0,5908,5924,5,748,0,0,5909, + 5924,5,836,0,0,5910,5924,5,751,0,0,5911,5924,5,753,0,0,5912,5924, + 5,838,0,0,5913,5924,5,754,0,0,5914,5924,5,755,0,0,5915,5916,5,103, + 0,0,5916,5917,5,68,0,0,5917,5924,5,744,0,0,5918,5919,5,154,0,0,5919, + 5920,5,88,0,0,5920,5924,5,744,0,0,5921,5922,5,729,0,0,5922,5924, + 5,730,0,0,5923,5830,1,0,0,0,5923,5834,1,0,0,0,5923,5838,1,0,0,0, + 5923,5848,1,0,0,0,5923,5849,1,0,0,0,5923,5853,1,0,0,0,5923,5854, + 1,0,0,0,5923,5855,1,0,0,0,5923,5856,1,0,0,0,5923,5858,1,0,0,0,5923, + 5859,1,0,0,0,5923,5860,1,0,0,0,5923,5862,1,0,0,0,5923,5863,1,0,0, + 0,5923,5864,1,0,0,0,5923,5865,1,0,0,0,5923,5866,1,0,0,0,5923,5868, + 1,0,0,0,5923,5869,1,0,0,0,5923,5871,1,0,0,0,5923,5872,1,0,0,0,5923, + 5873,1,0,0,0,5923,5874,1,0,0,0,5923,5875,1,0,0,0,5923,5876,1,0,0, + 0,5923,5877,1,0,0,0,5923,5878,1,0,0,0,5923,5879,1,0,0,0,5923,5880, + 1,0,0,0,5923,5881,1,0,0,0,5923,5882,1,0,0,0,5923,5883,1,0,0,0,5923, + 5884,1,0,0,0,5923,5885,1,0,0,0,5923,5886,1,0,0,0,5923,5887,1,0,0, + 0,5923,5888,1,0,0,0,5923,5889,1,0,0,0,5923,5890,1,0,0,0,5923,5891, + 1,0,0,0,5923,5892,1,0,0,0,5923,5893,1,0,0,0,5923,5894,1,0,0,0,5923, + 5895,1,0,0,0,5923,5896,1,0,0,0,5923,5897,1,0,0,0,5923,5898,1,0,0, + 0,5923,5899,1,0,0,0,5923,5900,1,0,0,0,5923,5901,1,0,0,0,5923,5902, + 1,0,0,0,5923,5903,1,0,0,0,5923,5904,1,0,0,0,5923,5905,1,0,0,0,5923, + 5906,1,0,0,0,5923,5907,1,0,0,0,5923,5908,1,0,0,0,5923,5909,1,0,0, + 0,5923,5910,1,0,0,0,5923,5911,1,0,0,0,5923,5912,1,0,0,0,5923,5913, + 1,0,0,0,5923,5914,1,0,0,0,5923,5915,1,0,0,0,5923,5918,1,0,0,0,5923, + 5921,1,0,0,0,5924,517,1,0,0,0,5925,5942,5,850,0,0,5926,5927,5,850, + 0,0,5927,5928,5,865,0,0,5928,5942,5,850,0,0,5929,5930,3,702,351, + 0,5930,5931,5,865,0,0,5931,5932,5,850,0,0,5932,5942,1,0,0,0,5933, + 5934,3,702,351,0,5934,5935,5,865,0,0,5935,5936,3,702,351,0,5936, + 5942,1,0,0,0,5937,5938,3,702,351,0,5938,5939,3,706,353,0,5939,5942, + 1,0,0,0,5940,5942,3,702,351,0,5941,5925,1,0,0,0,5941,5926,1,0,0, + 0,5941,5929,1,0,0,0,5941,5933,1,0,0,0,5941,5937,1,0,0,0,5941,5940, + 1,0,0,0,5942,519,1,0,0,0,5943,5944,3,680,340,0,5944,5945,5,176,0, + 0,5945,5946,3,680,340,0,5946,521,1,0,0,0,5947,5949,5,10,0,0,5948, + 5950,3,532,266,0,5949,5948,1,0,0,0,5949,5950,1,0,0,0,5950,5951,1, + 0,0,0,5951,5952,5,173,0,0,5952,5996,3,646,323,0,5953,5955,5,10,0, + 0,5954,5956,3,532,266,0,5955,5954,1,0,0,0,5955,5956,1,0,0,0,5956, + 5957,1,0,0,0,5957,5958,5,173,0,0,5958,5959,3,648,324,0,5959,5960, + 5,185,0,0,5960,5961,5,77,0,0,5961,5962,5,119,0,0,5962,5967,3,656, + 328,0,5963,5964,5,194,0,0,5964,5965,3,708,354,0,5965,5966,5,19,0, + 0,5966,5968,1,0,0,0,5967,5963,1,0,0,0,5967,5968,1,0,0,0,5968,5996, + 1,0,0,0,5969,5971,5,10,0,0,5970,5972,3,532,266,0,5971,5970,1,0,0, + 0,5971,5972,1,0,0,0,5972,5973,1,0,0,0,5973,5974,5,173,0,0,5974,5975, + 3,648,324,0,5975,5976,5,185,0,0,5976,5977,5,77,0,0,5977,5978,5,119, + 0,0,5978,5982,3,658,329,0,5979,5980,5,188,0,0,5980,5981,5,360,0, + 0,5981,5983,5,882,0,0,5982,5979,1,0,0,0,5982,5983,1,0,0,0,5983,5996, + 1,0,0,0,5984,5986,5,10,0,0,5985,5987,3,532,266,0,5986,5985,1,0,0, + 0,5986,5987,1,0,0,0,5987,5988,1,0,0,0,5988,5989,5,173,0,0,5989,5990, + 3,648,324,0,5990,5991,5,51,0,0,5991,5992,5,77,0,0,5992,5993,5,119, + 0,0,5993,5994,3,656,328,0,5994,5996,1,0,0,0,5995,5947,1,0,0,0,5995, + 5953,1,0,0,0,5995,5969,1,0,0,0,5995,5984,1,0,0,0,5996,523,1,0,0, + 0,5997,5998,5,27,0,0,5998,5999,5,173,0,0,5999,6003,3,646,323,0,6000, + 6002,3,534,267,0,6001,6000,1,0,0,0,6002,6005,1,0,0,0,6003,6001,1, + 0,0,0,6003,6004,1,0,0,0,6004,525,1,0,0,0,6005,6003,1,0,0,0,6006, + 6007,5,329,0,0,6007,6008,5,173,0,0,6008,6010,3,646,323,0,6009,6011, + 7,89,0,0,6010,6009,1,0,0,0,6010,6011,1,0,0,0,6011,527,1,0,0,0,6012, + 6014,5,120,0,0,6013,6015,3,532,266,0,6014,6013,1,0,0,0,6014,6015, + 1,0,0,0,6015,6016,1,0,0,0,6016,6017,7,60,0,0,6017,6018,3,646,323, + 0,6018,529,1,0,0,0,6019,6021,5,562,0,0,6020,6022,3,532,266,0,6021, + 6020,1,0,0,0,6021,6022,1,0,0,0,6022,6023,1,0,0,0,6023,6024,5,173, + 0,0,6024,6026,3,646,323,0,6025,6027,5,549,0,0,6026,6025,1,0,0,0, + 6026,6027,1,0,0,0,6027,6029,1,0,0,0,6028,6030,5,392,0,0,6029,6028, + 1,0,0,0,6029,6030,1,0,0,0,6030,6032,1,0,0,0,6031,6033,5,679,0,0, + 6032,6031,1,0,0,0,6032,6033,1,0,0,0,6033,531,1,0,0,0,6034,6035,7, + 90,0,0,6035,533,1,0,0,0,6036,6037,5,65,0,0,6037,6044,5,677,0,0,6038, + 6044,5,549,0,0,6039,6044,5,396,0,0,6040,6044,5,484,0,0,6041,6044, + 5,392,0,0,6042,6044,5,327,0,0,6043,6036,1,0,0,0,6043,6038,1,0,0, + 0,6043,6039,1,0,0,0,6043,6040,1,0,0,0,6043,6041,1,0,0,0,6043,6042, + 1,0,0,0,6044,535,1,0,0,0,6045,6047,5,34,0,0,6046,6048,5,307,0,0, + 6047,6046,1,0,0,0,6047,6048,1,0,0,0,6048,6049,1,0,0,0,6049,6051, + 5,409,0,0,6050,6052,3,756,378,0,6051,6050,1,0,0,0,6051,6052,1,0, + 0,0,6052,6053,1,0,0,0,6053,6054,3,626,313,0,6054,6055,5,580,0,0, + 6055,6056,7,91,0,0,6056,6057,5,603,0,0,6057,6058,5,882,0,0,6058, + 537,1,0,0,0,6059,6060,5,432,0,0,6060,6061,5,344,0,0,6061,6066,3, + 702,351,0,6062,6063,5,868,0,0,6063,6065,3,702,351,0,6064,6062,1, + 0,0,0,6065,6068,1,0,0,0,6066,6064,1,0,0,0,6066,6067,1,0,0,0,6067, + 6078,1,0,0,0,6068,6066,1,0,0,0,6069,6070,5,155,0,0,6070,6075,3,540, + 270,0,6071,6072,5,868,0,0,6072,6074,3,540,270,0,6073,6071,1,0,0, + 0,6074,6077,1,0,0,0,6075,6073,1,0,0,0,6075,6076,1,0,0,0,6076,6079, + 1,0,0,0,6077,6075,1,0,0,0,6078,6069,1,0,0,0,6078,6079,1,0,0,0,6079, + 539,1,0,0,0,6080,6081,7,92,0,0,6081,6082,3,698,349,0,6082,6083,5, + 857,0,0,6083,6084,3,800,400,0,6084,541,1,0,0,0,6085,6086,5,673,0, + 0,6086,6087,5,344,0,0,6087,6092,3,702,351,0,6088,6089,5,868,0,0, + 6089,6091,3,702,351,0,6090,6088,1,0,0,0,6091,6094,1,0,0,0,6092,6090, + 1,0,0,0,6092,6093,1,0,0,0,6093,543,1,0,0,0,6094,6092,1,0,0,0,6095, + 6096,5,432,0,0,6096,6097,5,534,0,0,6097,6098,3,702,351,0,6098,6099, + 5,603,0,0,6099,6100,5,882,0,0,6100,545,1,0,0,0,6101,6102,5,673,0, + 0,6102,6103,5,534,0,0,6103,6104,3,702,351,0,6104,547,1,0,0,0,6105, + 6106,5,713,0,0,6106,6107,5,450,0,0,6107,6108,5,360,0,0,6108,6110, + 5,367,0,0,6109,6111,5,857,0,0,6110,6109,1,0,0,0,6110,6111,1,0,0, + 0,6111,6112,1,0,0,0,6112,6136,5,882,0,0,6113,6114,5,713,0,0,6114, + 6115,5,433,0,0,6115,6116,5,68,0,0,6116,6117,3,672,336,0,6117,6118, + 5,423,0,0,6118,6119,5,20,0,0,6119,6126,5,882,0,0,6120,6121,5,360, + 0,0,6121,6123,5,367,0,0,6122,6124,5,857,0,0,6123,6122,1,0,0,0,6123, + 6124,1,0,0,0,6124,6125,1,0,0,0,6125,6127,5,882,0,0,6126,6120,1,0, + 0,0,6126,6127,1,0,0,0,6127,6133,1,0,0,0,6128,6130,5,144,0,0,6129, + 6131,5,502,0,0,6130,6129,1,0,0,0,6130,6131,1,0,0,0,6131,6132,1,0, + 0,0,6132,6134,5,169,0,0,6133,6128,1,0,0,0,6133,6134,1,0,0,0,6134, + 6136,1,0,0,0,6135,6105,1,0,0,0,6135,6113,1,0,0,0,6136,549,1,0,0, + 0,6137,6138,5,155,0,0,6138,6139,3,554,277,0,6139,6142,7,93,0,0,6140, + 6143,3,800,400,0,6141,6143,5,119,0,0,6142,6140,1,0,0,0,6142,6141, + 1,0,0,0,6143,6153,1,0,0,0,6144,6145,5,868,0,0,6145,6146,3,554,277, + 0,6146,6149,7,93,0,0,6147,6150,3,800,400,0,6148,6150,5,119,0,0,6149, + 6147,1,0,0,0,6149,6148,1,0,0,0,6150,6152,1,0,0,0,6151,6144,1,0,0, + 0,6152,6155,1,0,0,0,6153,6151,1,0,0,0,6153,6154,1,0,0,0,6154,6190, + 1,0,0,0,6155,6153,1,0,0,0,6156,6157,5,155,0,0,6157,6160,3,54,27, + 0,6158,6161,3,684,342,0,6159,6161,5,42,0,0,6160,6158,1,0,0,0,6160, + 6159,1,0,0,0,6161,6190,1,0,0,0,6162,6163,5,155,0,0,6163,6170,5,497, + 0,0,6164,6167,3,684,342,0,6165,6166,5,28,0,0,6166,6168,3,686,343, + 0,6167,6165,1,0,0,0,6167,6168,1,0,0,0,6168,6171,1,0,0,0,6169,6171, + 5,42,0,0,6170,6164,1,0,0,0,6170,6169,1,0,0,0,6171,6190,1,0,0,0,6172, + 6190,3,484,242,0,6173,6190,3,336,168,0,6174,6190,3,334,167,0,6175, + 6176,5,155,0,0,6176,6177,3,698,349,0,6177,6178,7,93,0,0,6178,6186, + 3,800,400,0,6179,6180,5,868,0,0,6180,6181,3,698,349,0,6181,6182, + 7,93,0,0,6182,6183,3,800,400,0,6183,6185,1,0,0,0,6184,6179,1,0,0, + 0,6185,6188,1,0,0,0,6186,6184,1,0,0,0,6186,6187,1,0,0,0,6187,6190, + 1,0,0,0,6188,6186,1,0,0,0,6189,6137,1,0,0,0,6189,6156,1,0,0,0,6189, + 6162,1,0,0,0,6189,6172,1,0,0,0,6189,6173,1,0,0,0,6189,6174,1,0,0, + 0,6189,6175,1,0,0,0,6190,551,1,0,0,0,6191,6192,5,157,0,0,6192,6193, + 7,62,0,0,6193,6376,5,452,0,0,6194,6195,5,157,0,0,6195,6196,7,94, + 0,0,6196,6199,5,386,0,0,6197,6198,5,80,0,0,6198,6200,5,882,0,0,6199, + 6197,1,0,0,0,6199,6200,1,0,0,0,6200,6203,1,0,0,0,6201,6202,5,68, + 0,0,6202,6204,3,708,354,0,6203,6201,1,0,0,0,6203,6204,1,0,0,0,6204, + 6212,1,0,0,0,6205,6209,5,100,0,0,6206,6207,3,708,354,0,6207,6208, + 5,868,0,0,6208,6210,1,0,0,0,6209,6206,1,0,0,0,6209,6210,1,0,0,0, + 6210,6211,1,0,0,0,6211,6213,3,708,354,0,6212,6205,1,0,0,0,6212,6213, + 1,0,0,0,6213,6215,1,0,0,0,6214,6216,3,384,192,0,6215,6214,1,0,0, + 0,6215,6216,1,0,0,0,6216,6376,1,0,0,0,6217,6218,5,157,0,0,6218,6220, + 3,556,278,0,6219,6221,3,558,279,0,6220,6219,1,0,0,0,6220,6221,1, + 0,0,0,6221,6376,1,0,0,0,6222,6224,5,157,0,0,6223,6225,5,392,0,0, + 6224,6223,1,0,0,0,6224,6225,1,0,0,0,6225,6227,1,0,0,0,6226,6228, + 5,408,0,0,6227,6226,1,0,0,0,6227,6228,1,0,0,0,6228,6229,1,0,0,0, + 6229,6230,7,46,0,0,6230,6231,7,95,0,0,6231,6234,3,648,324,0,6232, + 6233,7,95,0,0,6233,6235,3,624,312,0,6234,6232,1,0,0,0,6234,6235, + 1,0,0,0,6235,6237,1,0,0,0,6236,6238,3,558,279,0,6237,6236,1,0,0, + 0,6237,6238,1,0,0,0,6238,6376,1,0,0,0,6239,6240,5,157,0,0,6240,6241, + 5,34,0,0,6241,6243,7,0,0,0,6242,6244,3,756,378,0,6243,6242,1,0,0, + 0,6243,6244,1,0,0,0,6244,6245,1,0,0,0,6245,6376,3,624,312,0,6246, + 6247,5,157,0,0,6247,6248,5,34,0,0,6248,6249,7,96,0,0,6249,6376,3, + 698,349,0,6250,6251,5,157,0,0,6251,6252,5,34,0,0,6252,6253,5,409, + 0,0,6253,6376,3,628,314,0,6254,6255,5,157,0,0,6255,6256,5,34,0,0, + 6256,6257,5,684,0,0,6257,6376,3,632,316,0,6258,6259,5,157,0,0,6259, + 6260,5,34,0,0,6260,6261,5,173,0,0,6261,6376,3,648,324,0,6262,6263, + 5,157,0,0,6263,6264,5,34,0,0,6264,6265,5,678,0,0,6265,6376,3,680, + 340,0,6266,6267,5,157,0,0,6267,6268,5,380,0,0,6268,6269,3,688,344, + 0,6269,6270,7,97,0,0,6270,6376,1,0,0,0,6271,6272,5,157,0,0,6272, + 6376,3,560,280,0,6273,6274,5,157,0,0,6274,6282,7,98,0,0,6275,6279, + 5,100,0,0,6276,6277,3,708,354,0,6277,6278,5,868,0,0,6278,6280,1, + 0,0,0,6279,6276,1,0,0,0,6279,6280,1,0,0,0,6280,6281,1,0,0,0,6281, + 6283,3,708,354,0,6282,6275,1,0,0,0,6282,6283,1,0,0,0,6283,6376,1, + 0,0,0,6284,6285,5,157,0,0,6285,6286,5,262,0,0,6286,6287,5,866,0, + 0,6287,6288,5,850,0,0,6288,6289,5,867,0,0,6289,6376,7,98,0,0,6290, + 6291,5,157,0,0,6291,6294,3,562,281,0,6292,6293,7,95,0,0,6293,6295, + 3,624,312,0,6294,6292,1,0,0,0,6294,6295,1,0,0,0,6295,6297,1,0,0, + 0,6296,6298,3,558,279,0,6297,6296,1,0,0,0,6297,6298,1,0,0,0,6298, + 6376,1,0,0,0,6299,6300,5,157,0,0,6300,6301,5,132,0,0,6301,6302,5, + 336,0,0,6302,6376,3,698,349,0,6303,6304,5,157,0,0,6304,6305,5,409, + 0,0,6305,6306,5,336,0,0,6306,6376,3,628,314,0,6307,6308,5,157,0, + 0,6308,6315,5,414,0,0,6309,6310,5,65,0,0,6310,6313,3,652,326,0,6311, + 6312,5,188,0,0,6312,6314,3,650,325,0,6313,6311,1,0,0,0,6313,6314, + 1,0,0,0,6314,6316,1,0,0,0,6315,6309,1,0,0,0,6315,6316,1,0,0,0,6316, + 6376,1,0,0,0,6317,6319,5,157,0,0,6318,6320,5,392,0,0,6319,6318,1, + 0,0,0,6319,6320,1,0,0,0,6320,6321,1,0,0,0,6321,6322,7,99,0,0,6322, + 6323,7,95,0,0,6323,6326,3,648,324,0,6324,6325,7,95,0,0,6325,6327, + 3,624,312,0,6326,6324,1,0,0,0,6326,6327,1,0,0,0,6327,6330,1,0,0, + 0,6328,6329,5,192,0,0,6329,6331,3,800,400,0,6330,6328,1,0,0,0,6330, + 6331,1,0,0,0,6331,6376,1,0,0,0,6332,6333,5,157,0,0,6333,6334,5,516, + 0,0,6334,6337,5,752,0,0,6335,6336,7,95,0,0,6336,6338,3,624,312,0, + 6337,6335,1,0,0,0,6337,6338,1,0,0,0,6338,6340,1,0,0,0,6339,6341, + 3,558,279,0,6340,6339,1,0,0,0,6340,6341,1,0,0,0,6341,6376,1,0,0, + 0,6342,6343,5,157,0,0,6343,6352,5,545,0,0,6344,6349,3,564,282,0, + 6345,6346,5,868,0,0,6346,6348,3,564,282,0,6347,6345,1,0,0,0,6348, + 6351,1,0,0,0,6349,6347,1,0,0,0,6349,6350,1,0,0,0,6350,6353,1,0,0, + 0,6351,6349,1,0,0,0,6352,6344,1,0,0,0,6352,6353,1,0,0,0,6353,6357, + 1,0,0,0,6354,6355,5,65,0,0,6355,6356,5,548,0,0,6356,6358,3,708,354, + 0,6357,6354,1,0,0,0,6357,6358,1,0,0,0,6358,6365,1,0,0,0,6359,6360, + 5,100,0,0,6360,6363,3,708,354,0,6361,6362,5,509,0,0,6362,6364,3, + 708,354,0,6363,6361,1,0,0,0,6363,6364,1,0,0,0,6364,6366,1,0,0,0, + 6365,6359,1,0,0,0,6365,6366,1,0,0,0,6366,6376,1,0,0,0,6367,6368, + 5,157,0,0,6368,6369,7,63,0,0,6369,6371,5,645,0,0,6370,6372,3,384, + 192,0,6371,6370,1,0,0,0,6371,6372,1,0,0,0,6372,6376,1,0,0,0,6373, + 6374,5,157,0,0,6374,6376,5,564,0,0,6375,6191,1,0,0,0,6375,6194,1, + 0,0,0,6375,6217,1,0,0,0,6375,6222,1,0,0,0,6375,6239,1,0,0,0,6375, + 6246,1,0,0,0,6375,6250,1,0,0,0,6375,6254,1,0,0,0,6375,6258,1,0,0, + 0,6375,6262,1,0,0,0,6375,6266,1,0,0,0,6375,6271,1,0,0,0,6375,6273, + 1,0,0,0,6375,6284,1,0,0,0,6375,6290,1,0,0,0,6375,6299,1,0,0,0,6375, + 6303,1,0,0,0,6375,6307,1,0,0,0,6375,6317,1,0,0,0,6375,6332,1,0,0, + 0,6375,6342,1,0,0,0,6375,6367,1,0,0,0,6375,6373,1,0,0,0,6376,553, + 1,0,0,0,6377,6388,5,892,0,0,6378,6388,5,893,0,0,6379,6380,5,870, + 0,0,6380,6382,5,870,0,0,6381,6379,1,0,0,0,6381,6382,1,0,0,0,6382, + 6383,1,0,0,0,6383,6385,7,100,0,0,6384,6381,1,0,0,0,6384,6385,1,0, + 0,0,6385,6386,1,0,0,0,6386,6388,3,702,351,0,6387,6377,1,0,0,0,6387, + 6378,1,0,0,0,6387,6384,1,0,0,0,6388,555,1,0,0,0,6389,6390,5,26,0, + 0,6390,6404,5,155,0,0,6391,6404,5,823,0,0,6392,6404,5,824,0,0,6393, + 6404,5,40,0,0,6394,6404,5,153,0,0,6395,6396,5,409,0,0,6396,6404, + 5,645,0,0,6397,6398,5,132,0,0,6398,6404,5,645,0,0,6399,6401,7,61, + 0,0,6400,6399,1,0,0,0,6400,6401,1,0,0,0,6401,6402,1,0,0,0,6402,6404, + 7,101,0,0,6403,6389,1,0,0,0,6403,6391,1,0,0,0,6403,6392,1,0,0,0, + 6403,6393,1,0,0,0,6403,6394,1,0,0,0,6403,6395,1,0,0,0,6403,6397, + 1,0,0,0,6403,6400,1,0,0,0,6404,557,1,0,0,0,6405,6406,5,99,0,0,6406, + 6410,5,882,0,0,6407,6408,5,192,0,0,6408,6410,3,800,400,0,6409,6405, + 1,0,0,0,6409,6407,1,0,0,0,6410,559,1,0,0,0,6411,6413,5,647,0,0,6412, + 6411,1,0,0,0,6412,6413,1,0,0,0,6413,6414,1,0,0,0,6414,6429,5,381, + 0,0,6415,6416,5,453,0,0,6416,6429,5,645,0,0,6417,6429,5,536,0,0, + 6418,6429,5,734,0,0,6419,6421,5,408,0,0,6420,6419,1,0,0,0,6420,6421, + 1,0,0,0,6421,6422,1,0,0,0,6422,6429,5,544,0,0,6423,6429,5,546,0, + 0,6424,6425,5,598,0,0,6425,6429,5,422,0,0,6426,6429,5,312,0,0,6427, + 6429,5,356,0,0,6428,6412,1,0,0,0,6428,6415,1,0,0,0,6428,6417,1,0, + 0,0,6428,6418,1,0,0,0,6428,6420,1,0,0,0,6428,6423,1,0,0,0,6428,6424, + 1,0,0,0,6428,6426,1,0,0,0,6428,6427,1,0,0,0,6429,561,1,0,0,0,6430, + 6442,5,386,0,0,6431,6432,5,173,0,0,6432,6442,5,645,0,0,6433,6435, + 5,392,0,0,6434,6433,1,0,0,0,6434,6435,1,0,0,0,6435,6437,1,0,0,0, + 6436,6438,5,408,0,0,6437,6436,1,0,0,0,6437,6438,1,0,0,0,6438,6439, + 1,0,0,0,6439,6442,5,752,0,0,6440,6442,5,667,0,0,6441,6430,1,0,0, + 0,6441,6431,1,0,0,0,6441,6434,1,0,0,0,6441,6440,1,0,0,0,6442,563, + 1,0,0,0,6443,6456,5,7,0,0,6444,6445,5,320,0,0,6445,6456,5,437,0, + 0,6446,6447,5,355,0,0,6447,6456,5,656,0,0,6448,6456,5,358,0,0,6449, + 6456,5,439,0,0,6450,6456,5,802,0,0,6451,6452,5,521,0,0,6452,6456, + 5,397,0,0,6453,6456,5,605,0,0,6454,6456,5,655,0,0,6455,6443,1,0, + 0,0,6455,6444,1,0,0,0,6455,6446,1,0,0,0,6455,6448,1,0,0,0,6455,6449, + 1,0,0,0,6455,6450,1,0,0,0,6455,6451,1,0,0,0,6455,6453,1,0,0,0,6455, + 6454,1,0,0,0,6456,565,1,0,0,0,6457,6458,5,318,0,0,6458,6459,5,882, + 0,0,6459,567,1,0,0,0,6460,6461,5,324,0,0,6461,6479,5,82,0,0,6462, + 6467,3,588,294,0,6463,6464,5,868,0,0,6464,6466,3,588,294,0,6465, + 6463,1,0,0,0,6466,6469,1,0,0,0,6467,6465,1,0,0,0,6467,6468,1,0,0, + 0,6468,6480,1,0,0,0,6469,6467,1,0,0,0,6470,6471,3,648,324,0,6471, + 6472,5,130,0,0,6472,6475,5,866,0,0,6473,6476,3,666,333,0,6474,6476, + 5,7,0,0,6475,6473,1,0,0,0,6475,6474,1,0,0,0,6476,6477,1,0,0,0,6477, + 6478,5,867,0,0,6478,6480,1,0,0,0,6479,6462,1,0,0,0,6479,6470,1,0, + 0,0,6480,6481,1,0,0,0,6481,6482,5,80,0,0,6482,6483,3,624,312,0,6483, + 569,1,0,0,0,6484,6486,5,404,0,0,6485,6487,3,532,266,0,6486,6485, + 1,0,0,0,6486,6487,1,0,0,0,6487,6488,1,0,0,0,6488,6493,3,590,295, + 0,6489,6490,5,868,0,0,6490,6492,3,590,295,0,6491,6489,1,0,0,0,6492, + 6495,1,0,0,0,6493,6491,1,0,0,0,6493,6494,1,0,0,0,6494,571,1,0,0, + 0,6495,6493,1,0,0,0,6496,6498,5,94,0,0,6497,6499,7,102,0,0,6498, + 6497,1,0,0,0,6498,6499,1,0,0,0,6499,6500,1,0,0,0,6500,6501,3,800, + 400,0,6501,573,1,0,0,0,6502,6503,5,103,0,0,6503,6504,5,82,0,0,6504, + 6505,5,88,0,0,6505,6506,5,324,0,0,6506,6511,3,594,297,0,6507,6508, + 5,868,0,0,6508,6510,3,594,297,0,6509,6507,1,0,0,0,6510,6513,1,0, + 0,0,6511,6509,1,0,0,0,6511,6512,1,0,0,0,6512,575,1,0,0,0,6513,6511, + 1,0,0,0,6514,6515,5,575,0,0,6515,6520,3,578,289,0,6516,6517,5,868, + 0,0,6517,6519,3,578,289,0,6518,6516,1,0,0,0,6519,6522,1,0,0,0,6520, + 6518,1,0,0,0,6520,6521,1,0,0,0,6521,577,1,0,0,0,6522,6520,1,0,0, + 0,6523,6529,5,453,0,0,6524,6529,5,563,0,0,6525,6526,5,548,0,0,6526, + 6529,5,324,0,0,6527,6529,5,598,0,0,6528,6523,1,0,0,0,6528,6524,1, + 0,0,0,6528,6525,1,0,0,0,6528,6527,1,0,0,0,6529,579,1,0,0,0,6530, + 6531,5,575,0,0,6531,6536,5,531,0,0,6532,6534,3,754,377,0,6533,6532, + 1,0,0,0,6533,6534,1,0,0,0,6534,6535,1,0,0,0,6535,6537,3,702,351, + 0,6536,6533,1,0,0,0,6536,6537,1,0,0,0,6537,581,1,0,0,0,6538,6539, + 5,575,0,0,6539,6541,7,63,0,0,6540,6542,5,7,0,0,6541,6540,1,0,0,0, + 6541,6542,1,0,0,0,6542,6544,1,0,0,0,6543,6545,3,384,192,0,6544,6543, + 1,0,0,0,6544,6545,1,0,0,0,6545,583,1,0,0,0,6546,6547,5,576,0,0,6547, + 585,1,0,0,0,6548,6549,5,749,0,0,6549,587,1,0,0,0,6550,6556,3,648, + 324,0,6551,6552,7,18,0,0,6552,6553,5,866,0,0,6553,6554,3,636,318, + 0,6554,6555,5,867,0,0,6555,6557,1,0,0,0,6556,6551,1,0,0,0,6556,6557, + 1,0,0,0,6557,589,1,0,0,0,6558,6577,5,366,0,0,6559,6577,5,422,0,0, + 6560,6562,7,103,0,0,6561,6560,1,0,0,0,6561,6562,1,0,0,0,6562,6563, + 1,0,0,0,6563,6577,5,452,0,0,6564,6577,5,517,0,0,6565,6577,5,734, + 0,0,6566,6567,5,548,0,0,6567,6577,5,324,0,0,6568,6577,5,645,0,0, + 6569,6577,5,680,0,0,6570,6574,5,752,0,0,6571,6572,5,194,0,0,6572, + 6573,5,135,0,0,6573,6575,5,104,0,0,6574,6571,1,0,0,0,6574,6575,1, + 0,0,0,6575,6577,1,0,0,0,6576,6558,1,0,0,0,6576,6559,1,0,0,0,6576, + 6561,1,0,0,0,6576,6564,1,0,0,0,6576,6565,1,0,0,0,6576,6566,1,0,0, + 0,6576,6568,1,0,0,0,6576,6569,1,0,0,0,6576,6570,1,0,0,0,6577,6591, + 1,0,0,0,6578,6579,5,556,0,0,6579,6581,5,452,0,0,6580,6582,3,384, + 192,0,6581,6580,1,0,0,0,6581,6582,1,0,0,0,6582,6591,1,0,0,0,6583, + 6585,7,60,0,0,6584,6586,3,646,323,0,6585,6584,1,0,0,0,6585,6586, + 1,0,0,0,6586,6588,1,0,0,0,6587,6589,3,592,296,0,6588,6587,1,0,0, + 0,6588,6589,1,0,0,0,6589,6591,1,0,0,0,6590,6576,1,0,0,0,6590,6578, + 1,0,0,0,6590,6583,1,0,0,0,6591,591,1,0,0,0,6592,6593,5,194,0,0,6593, + 6594,5,135,0,0,6594,6598,5,104,0,0,6595,6596,5,65,0,0,6596,6598, + 5,391,0,0,6597,6592,1,0,0,0,6597,6595,1,0,0,0,6598,593,1,0,0,0,6599, + 6607,3,648,324,0,6600,6601,5,130,0,0,6601,6604,5,866,0,0,6602,6605, + 3,666,333,0,6603,6605,5,7,0,0,6604,6602,1,0,0,0,6604,6603,1,0,0, + 0,6605,6606,1,0,0,0,6606,6608,5,867,0,0,6607,6600,1,0,0,0,6607,6608, + 1,0,0,0,6608,6616,1,0,0,0,6609,6611,7,18,0,0,6610,6609,1,0,0,0,6610, + 6611,1,0,0,0,6611,6612,1,0,0,0,6612,6613,5,866,0,0,6613,6614,3,636, + 318,0,6614,6615,5,867,0,0,6615,6617,1,0,0,0,6616,6610,1,0,0,0,6616, + 6617,1,0,0,0,6617,6620,1,0,0,0,6618,6619,5,79,0,0,6619,6621,5,446, + 0,0,6620,6618,1,0,0,0,6620,6621,1,0,0,0,6621,595,1,0,0,0,6622,6623, + 7,104,0,0,6623,6626,3,648,324,0,6624,6627,3,658,329,0,6625,6627, + 5,882,0,0,6626,6624,1,0,0,0,6626,6625,1,0,0,0,6626,6627,1,0,0,0, + 6627,597,1,0,0,0,6628,6634,7,104,0,0,6629,6635,5,392,0,0,6630,6635, + 5,528,0,0,6631,6632,5,826,0,0,6632,6633,5,857,0,0,6633,6635,7,105, + 0,0,6634,6629,1,0,0,0,6634,6630,1,0,0,0,6634,6631,1,0,0,0,6634,6635, + 1,0,0,0,6635,6636,1,0,0,0,6636,6637,3,620,310,0,6637,599,1,0,0,0, + 6638,6639,7,104,0,0,6639,6643,5,10,0,0,6640,6641,5,826,0,0,6641, + 6642,5,857,0,0,6642,6644,5,666,0,0,6643,6640,1,0,0,0,6643,6644,1, + 0,0,0,6644,6645,1,0,0,0,6645,6646,3,204,102,0,6646,601,1,0,0,0,6647, + 6648,5,419,0,0,6648,6649,5,882,0,0,6649,603,1,0,0,0,6650,6651,5, + 187,0,0,6651,6652,3,624,312,0,6652,605,1,0,0,0,6653,6661,5,158,0, + 0,6654,6656,5,164,0,0,6655,6657,5,682,0,0,6656,6655,1,0,0,0,6656, + 6657,1,0,0,0,6657,6658,1,0,0,0,6658,6662,3,712,356,0,6659,6662,5, + 889,0,0,6660,6662,5,890,0,0,6661,6654,1,0,0,0,6661,6659,1,0,0,0, + 6661,6660,1,0,0,0,6662,6672,1,0,0,0,6663,6664,5,155,0,0,6664,6669, + 3,610,305,0,6665,6666,5,868,0,0,6666,6668,3,610,305,0,6667,6665, + 1,0,0,0,6668,6671,1,0,0,0,6669,6667,1,0,0,0,6669,6670,1,0,0,0,6670, + 6673,1,0,0,0,6671,6669,1,0,0,0,6672,6663,1,0,0,0,6672,6673,1,0,0, + 0,6673,607,1,0,0,0,6674,6682,5,145,0,0,6675,6677,5,164,0,0,6676, + 6678,5,682,0,0,6677,6676,1,0,0,0,6677,6678,1,0,0,0,6678,6679,1,0, + 0,0,6679,6683,3,712,356,0,6680,6683,5,889,0,0,6681,6683,5,890,0, + 0,6682,6675,1,0,0,0,6682,6680,1,0,0,0,6682,6681,1,0,0,0,6682,6683, + 1,0,0,0,6683,6693,1,0,0,0,6684,6685,5,155,0,0,6685,6690,3,610,305, + 0,6686,6687,5,868,0,0,6687,6689,3,610,305,0,6688,6686,1,0,0,0,6689, + 6692,1,0,0,0,6690,6688,1,0,0,0,6690,6691,1,0,0,0,6691,6694,1,0,0, + 0,6692,6690,1,0,0,0,6693,6684,1,0,0,0,6693,6694,1,0,0,0,6694,609, + 1,0,0,0,6695,6696,7,106,0,0,6696,6701,5,857,0,0,6697,6702,3,712, + 356,0,6698,6702,5,883,0,0,6699,6702,3,682,341,0,6700,6702,3,704, + 352,0,6701,6697,1,0,0,0,6701,6698,1,0,0,0,6701,6699,1,0,0,0,6701, + 6700,1,0,0,0,6702,611,1,0,0,0,6703,6705,5,194,0,0,6704,6706,5,552, + 0,0,6705,6704,1,0,0,0,6705,6706,1,0,0,0,6706,6707,1,0,0,0,6707,6712, + 3,48,24,0,6708,6709,5,868,0,0,6709,6711,3,48,24,0,6710,6708,1,0, + 0,0,6711,6714,1,0,0,0,6712,6710,1,0,0,0,6712,6713,1,0,0,0,6713,613, + 1,0,0,0,6714,6712,1,0,0,0,6715,6716,5,173,0,0,6716,6718,3,648,324, + 0,6717,6719,3,252,126,0,6718,6717,1,0,0,0,6718,6719,1,0,0,0,6719, + 6721,1,0,0,0,6720,6722,3,312,156,0,6721,6720,1,0,0,0,6721,6722,1, + 0,0,0,6722,615,1,0,0,0,6723,6725,5,72,0,0,6724,6726,7,107,0,0,6725, + 6724,1,0,0,0,6725,6726,1,0,0,0,6726,6727,1,0,0,0,6727,6759,5,48, + 0,0,6728,6729,3,554,277,0,6729,6730,5,857,0,0,6730,6738,7,108,0, + 0,6731,6732,5,868,0,0,6732,6733,3,554,277,0,6733,6734,5,857,0,0, + 6734,6735,7,108,0,0,6735,6737,1,0,0,0,6736,6731,1,0,0,0,6737,6740, + 1,0,0,0,6738,6736,1,0,0,0,6738,6739,1,0,0,0,6739,6760,1,0,0,0,6740, + 6738,1,0,0,0,6741,6744,5,30,0,0,6742,6745,3,708,354,0,6743,6745, + 3,554,277,0,6744,6742,1,0,0,0,6744,6743,1,0,0,0,6745,6746,1,0,0, + 0,6746,6747,3,554,277,0,6747,6748,5,857,0,0,6748,6756,3,618,309, + 0,6749,6750,5,868,0,0,6750,6751,3,554,277,0,6751,6752,5,857,0,0, + 6752,6753,3,618,309,0,6753,6755,1,0,0,0,6754,6749,1,0,0,0,6755,6758, + 1,0,0,0,6756,6754,1,0,0,0,6756,6757,1,0,0,0,6757,6760,1,0,0,0,6758, + 6756,1,0,0,0,6759,6728,1,0,0,0,6759,6741,1,0,0,0,6760,617,1,0,0, + 0,6761,6762,7,109,0,0,6762,619,1,0,0,0,6763,6769,3,204,102,0,6764, + 6769,3,180,90,0,6765,6769,3,186,93,0,6766,6769,3,202,101,0,6767, + 6769,3,214,107,0,6768,6763,1,0,0,0,6768,6764,1,0,0,0,6768,6765,1, + 0,0,0,6768,6766,1,0,0,0,6768,6767,1,0,0,0,6769,6774,1,0,0,0,6770, + 6771,5,65,0,0,6771,6772,5,349,0,0,6772,6774,3,702,351,0,6773,6768, + 1,0,0,0,6773,6770,1,0,0,0,6774,621,1,0,0,0,6775,6776,3,698,349,0, + 6776,623,1,0,0,0,6777,6778,3,698,349,0,6778,625,1,0,0,0,6779,6780, + 3,698,349,0,6780,627,1,0,0,0,6781,6782,3,698,349,0,6782,629,1,0, + 0,0,6783,6784,3,698,349,0,6784,631,1,0,0,0,6785,6786,3,698,349,0, + 6786,633,1,0,0,0,6787,6788,3,702,351,0,6788,635,1,0,0,0,6789,6794, + 3,638,319,0,6790,6791,5,868,0,0,6791,6793,3,638,319,0,6792,6790, + 1,0,0,0,6793,6796,1,0,0,0,6794,6792,1,0,0,0,6794,6795,1,0,0,0,6795, + 637,1,0,0,0,6796,6794,1,0,0,0,6797,6798,3,702,351,0,6798,639,1,0, + 0,0,6799,6800,3,702,351,0,6800,641,1,0,0,0,6801,6802,3,702,351,0, + 6802,643,1,0,0,0,6803,6804,3,698,349,0,6804,645,1,0,0,0,6805,6810, + 3,648,324,0,6806,6807,5,868,0,0,6807,6809,3,648,324,0,6808,6806, + 1,0,0,0,6809,6812,1,0,0,0,6810,6808,1,0,0,0,6810,6811,1,0,0,0,6811, + 647,1,0,0,0,6812,6810,1,0,0,0,6813,6814,3,698,349,0,6814,649,1,0, + 0,0,6815,6820,3,652,326,0,6816,6817,5,868,0,0,6817,6819,3,652,326, + 0,6818,6816,1,0,0,0,6819,6822,1,0,0,0,6820,6818,1,0,0,0,6820,6821, + 1,0,0,0,6821,651,1,0,0,0,6822,6820,1,0,0,0,6823,6826,3,680,340,0, + 6824,6826,3,702,351,0,6825,6823,1,0,0,0,6825,6824,1,0,0,0,6826,653, + 1,0,0,0,6827,6832,3,702,351,0,6828,6830,3,706,353,0,6829,6831,3, + 706,353,0,6830,6829,1,0,0,0,6830,6831,1,0,0,0,6831,6833,1,0,0,0, + 6832,6828,1,0,0,0,6832,6833,1,0,0,0,6833,6842,1,0,0,0,6834,6836, + 9,0,0,0,6835,6834,1,0,0,0,6835,6836,1,0,0,0,6836,6837,1,0,0,0,6837, + 6839,3,706,353,0,6838,6840,3,706,353,0,6839,6838,1,0,0,0,6839,6840, + 1,0,0,0,6840,6842,1,0,0,0,6841,6827,1,0,0,0,6841,6835,1,0,0,0,6842, + 655,1,0,0,0,6843,6848,3,658,329,0,6844,6845,5,868,0,0,6845,6847, + 3,658,329,0,6846,6844,1,0,0,0,6847,6850,1,0,0,0,6848,6846,1,0,0, + 0,6848,6849,1,0,0,0,6849,657,1,0,0,0,6850,6848,1,0,0,0,6851,6856, + 3,702,351,0,6852,6854,3,706,353,0,6853,6855,3,706,353,0,6854,6853, + 1,0,0,0,6854,6855,1,0,0,0,6855,6857,1,0,0,0,6856,6852,1,0,0,0,6856, + 6857,1,0,0,0,6857,6867,1,0,0,0,6858,6860,9,0,0,0,6859,6858,1,0,0, + 0,6859,6860,1,0,0,0,6860,6861,1,0,0,0,6861,6863,3,706,353,0,6862, + 6864,3,706,353,0,6863,6862,1,0,0,0,6863,6864,1,0,0,0,6864,6867,1, + 0,0,0,6865,6867,4,329,3,0,6866,6851,1,0,0,0,6866,6859,1,0,0,0,6866, + 6865,1,0,0,0,6867,659,1,0,0,0,6868,6869,3,702,351,0,6869,661,1,0, + 0,0,6870,6871,3,702,351,0,6871,663,1,0,0,0,6872,6873,3,702,351,0, + 6873,665,1,0,0,0,6874,6879,3,668,334,0,6875,6876,5,868,0,0,6876, + 6878,3,668,334,0,6877,6875,1,0,0,0,6878,6881,1,0,0,0,6879,6877,1, + 0,0,0,6879,6880,1,0,0,0,6880,667,1,0,0,0,6881,6879,1,0,0,0,6882, + 6883,3,702,351,0,6883,669,1,0,0,0,6884,6889,3,702,351,0,6885,6886, + 5,866,0,0,6886,6887,3,708,354,0,6887,6888,5,867,0,0,6888,6890,1, + 0,0,0,6889,6885,1,0,0,0,6889,6890,1,0,0,0,6890,6893,1,0,0,0,6891, + 6893,3,800,400,0,6892,6884,1,0,0,0,6892,6891,1,0,0,0,6893,6895,1, + 0,0,0,6894,6896,7,54,0,0,6895,6894,1,0,0,0,6895,6896,1,0,0,0,6896, + 671,1,0,0,0,6897,6898,3,674,337,0,6898,6899,5,878,0,0,6899,6900, + 3,708,354,0,6900,673,1,0,0,0,6901,6902,3,676,338,0,6902,6903,5,891, + 0,0,6903,675,1,0,0,0,6904,6909,5,882,0,0,6905,6909,5,889,0,0,6906, + 6909,5,704,0,0,6907,6909,3,830,415,0,6908,6904,1,0,0,0,6908,6905, + 1,0,0,0,6908,6906,1,0,0,0,6908,6907,1,0,0,0,6909,677,1,0,0,0,6910, + 6911,7,110,0,0,6911,679,1,0,0,0,6912,6914,3,676,338,0,6913,6915, + 3,678,339,0,6914,6913,1,0,0,0,6914,6915,1,0,0,0,6915,6918,1,0,0, + 0,6916,6918,3,56,28,0,6917,6912,1,0,0,0,6917,6916,1,0,0,0,6918,681, + 1,0,0,0,6919,6920,7,111,0,0,6920,683,1,0,0,0,6921,6926,5,228,0,0, + 6922,6926,3,820,410,0,6923,6926,5,882,0,0,6924,6926,5,879,0,0,6925, + 6921,1,0,0,0,6925,6922,1,0,0,0,6925,6923,1,0,0,0,6925,6924,1,0,0, + 0,6926,685,1,0,0,0,6927,6928,3,702,351,0,6928,687,1,0,0,0,6929,6933, + 3,690,345,0,6930,6933,5,889,0,0,6931,6933,5,882,0,0,6932,6929,1, + 0,0,0,6932,6930,1,0,0,0,6932,6931,1,0,0,0,6933,689,1,0,0,0,6934, + 6935,7,112,0,0,6935,691,1,0,0,0,6936,6937,3,708,354,0,6937,6938, + 5,854,0,0,6938,6939,3,708,354,0,6939,6940,5,854,0,0,6940,6941,3, + 708,354,0,6941,6942,5,854,0,0,6942,6943,3,708,354,0,6943,6944,5, + 854,0,0,6944,6950,3,708,354,0,6945,6946,5,878,0,0,6946,6947,3,708, + 354,0,6947,6948,5,854,0,0,6948,6949,3,708,354,0,6949,6951,1,0,0, + 0,6950,6945,1,0,0,0,6951,6952,1,0,0,0,6952,6950,1,0,0,0,6952,6953, + 1,0,0,0,6953,693,1,0,0,0,6954,6961,3,696,348,0,6955,6956,5,868,0, + 0,6956,6959,3,696,348,0,6957,6958,5,868,0,0,6958,6960,3,708,354, + 0,6959,6957,1,0,0,0,6959,6960,1,0,0,0,6960,6962,1,0,0,0,6961,6955, + 1,0,0,0,6961,6962,1,0,0,0,6962,695,1,0,0,0,6963,6971,5,882,0,0,6964, + 6971,5,887,0,0,6965,6967,5,884,0,0,6966,6965,1,0,0,0,6967,6968,1, + 0,0,0,6968,6966,1,0,0,0,6968,6969,1,0,0,0,6969,6971,1,0,0,0,6970, + 6963,1,0,0,0,6970,6964,1,0,0,0,6970,6966,1,0,0,0,6971,697,1,0,0, + 0,6972,6974,3,702,351,0,6973,6975,3,706,353,0,6974,6973,1,0,0,0, + 6974,6975,1,0,0,0,6975,699,1,0,0,0,6976,6981,3,702,351,0,6977,6978, + 5,868,0,0,6978,6980,3,702,351,0,6979,6977,1,0,0,0,6980,6983,1,0, + 0,0,6981,6979,1,0,0,0,6981,6982,1,0,0,0,6982,701,1,0,0,0,6983,6981, + 1,0,0,0,6984,6988,3,704,352,0,6985,6988,5,879,0,0,6986,6988,5,882, + 0,0,6987,6984,1,0,0,0,6987,6985,1,0,0,0,6987,6986,1,0,0,0,6988,703, + 1,0,0,0,6989,6999,5,889,0,0,6990,6999,3,820,410,0,6991,6999,3,822, + 411,0,6992,6999,3,690,345,0,6993,6999,3,824,412,0,6994,6999,3,826, + 413,0,6995,6999,3,828,414,0,6996,6999,3,830,415,0,6997,6999,3,792, + 396,0,6998,6989,1,0,0,0,6998,6990,1,0,0,0,6998,6991,1,0,0,0,6998, + 6992,1,0,0,0,6998,6993,1,0,0,0,6998,6994,1,0,0,0,6998,6995,1,0,0, + 0,6998,6996,1,0,0,0,6998,6997,1,0,0,0,6999,705,1,0,0,0,7000,7001, + 5,865,0,0,7001,7005,5,889,0,0,7002,7003,5,865,0,0,7003,7005,3,702, + 351,0,7004,7000,1,0,0,0,7004,7002,1,0,0,0,7005,707,1,0,0,0,7006, + 7007,7,113,0,0,7007,709,1,0,0,0,7008,7011,5,880,0,0,7009,7011,3, + 708,354,0,7010,7008,1,0,0,0,7010,7009,1,0,0,0,7011,711,1,0,0,0,7012, + 7014,5,888,0,0,7013,7012,1,0,0,0,7013,7014,1,0,0,0,7014,7015,1,0, + 0,0,7015,7018,5,882,0,0,7016,7018,5,881,0,0,7017,7013,1,0,0,0,7017, + 7016,1,0,0,0,7018,7020,1,0,0,0,7019,7021,5,882,0,0,7020,7019,1,0, + 0,0,7021,7022,1,0,0,0,7022,7020,1,0,0,0,7022,7023,1,0,0,0,7023,7036, + 1,0,0,0,7024,7026,5,888,0,0,7025,7024,1,0,0,0,7025,7026,1,0,0,0, + 7026,7027,1,0,0,0,7027,7030,5,882,0,0,7028,7030,5,881,0,0,7029,7025, + 1,0,0,0,7029,7028,1,0,0,0,7030,7033,1,0,0,0,7031,7032,5,28,0,0,7032, + 7034,3,686,343,0,7033,7031,1,0,0,0,7033,7034,1,0,0,0,7034,7036,1, + 0,0,0,7035,7017,1,0,0,0,7035,7029,1,0,0,0,7036,713,1,0,0,0,7037, + 7038,7,114,0,0,7038,715,1,0,0,0,7039,7041,5,888,0,0,7040,7039,1, + 0,0,0,7040,7041,1,0,0,0,7041,7042,1,0,0,0,7042,7043,5,884,0,0,7043, + 717,1,0,0,0,7044,7046,5,114,0,0,7045,7044,1,0,0,0,7045,7046,1,0, + 0,0,7046,7047,1,0,0,0,7047,7048,7,115,0,0,7048,719,1,0,0,0,7049, + 7062,3,712,356,0,7050,7062,3,708,354,0,7051,7052,5,854,0,0,7052, + 7062,3,708,354,0,7053,7062,3,716,358,0,7054,7062,3,714,357,0,7055, + 7062,5,885,0,0,7056,7062,5,887,0,0,7057,7059,5,114,0,0,7058,7057, + 1,0,0,0,7058,7059,1,0,0,0,7059,7060,1,0,0,0,7060,7062,7,115,0,0, + 7061,7049,1,0,0,0,7061,7050,1,0,0,0,7061,7051,1,0,0,0,7061,7053, + 1,0,0,0,7061,7054,1,0,0,0,7061,7055,1,0,0,0,7061,7056,1,0,0,0,7061, + 7058,1,0,0,0,7062,721,1,0,0,0,7063,7065,7,116,0,0,7064,7066,5,240, + 0,0,7065,7064,1,0,0,0,7065,7066,1,0,0,0,7066,7068,1,0,0,0,7067,7069, + 3,728,364,0,7068,7067,1,0,0,0,7068,7069,1,0,0,0,7069,7071,1,0,0, + 0,7070,7072,5,228,0,0,7071,7070,1,0,0,0,7071,7072,1,0,0,0,7072,7076, + 1,0,0,0,7073,7074,3,54,27,0,7074,7075,3,684,342,0,7075,7077,1,0, + 0,0,7076,7073,1,0,0,0,7076,7077,1,0,0,0,7077,7081,1,0,0,0,7078,7079, + 5,28,0,0,7079,7082,3,686,343,0,7080,7082,5,228,0,0,7081,7078,1,0, + 0,0,7081,7080,1,0,0,0,7081,7082,1,0,0,0,7082,7190,1,0,0,0,7083,7084, + 5,227,0,0,7084,7085,7,117,0,0,7085,7087,5,240,0,0,7086,7088,3,728, + 364,0,7087,7086,1,0,0,0,7087,7088,1,0,0,0,7088,7090,1,0,0,0,7089, + 7091,5,228,0,0,7090,7089,1,0,0,0,7090,7091,1,0,0,0,7091,7190,1,0, + 0,0,7092,7093,5,227,0,0,7093,7095,7,118,0,0,7094,7096,3,728,364, + 0,7095,7094,1,0,0,0,7095,7096,1,0,0,0,7096,7098,1,0,0,0,7097,7099, + 5,228,0,0,7098,7097,1,0,0,0,7098,7099,1,0,0,0,7099,7190,1,0,0,0, + 7100,7101,5,498,0,0,7101,7103,5,225,0,0,7102,7104,3,728,364,0,7103, + 7102,1,0,0,0,7103,7104,1,0,0,0,7104,7106,1,0,0,0,7105,7107,5,228, + 0,0,7106,7105,1,0,0,0,7106,7107,1,0,0,0,7107,7190,1,0,0,0,7108,7110, + 7,119,0,0,7109,7111,3,728,364,0,7110,7109,1,0,0,0,7110,7111,1,0, + 0,0,7111,7115,1,0,0,0,7112,7114,7,120,0,0,7113,7112,1,0,0,0,7114, + 7117,1,0,0,0,7115,7113,1,0,0,0,7115,7116,1,0,0,0,7116,7190,1,0,0, + 0,7117,7115,1,0,0,0,7118,7120,5,210,0,0,7119,7121,3,730,365,0,7120, + 7119,1,0,0,0,7120,7121,1,0,0,0,7121,7125,1,0,0,0,7122,7124,7,120, + 0,0,7123,7122,1,0,0,0,7124,7127,1,0,0,0,7125,7123,1,0,0,0,7125,7126, + 1,0,0,0,7126,7190,1,0,0,0,7127,7125,1,0,0,0,7128,7130,5,211,0,0, + 7129,7131,5,212,0,0,7130,7129,1,0,0,0,7130,7131,1,0,0,0,7131,7133, + 1,0,0,0,7132,7134,3,730,365,0,7133,7132,1,0,0,0,7133,7134,1,0,0, + 0,7134,7138,1,0,0,0,7135,7137,7,120,0,0,7136,7135,1,0,0,0,7137,7140, + 1,0,0,0,7138,7136,1,0,0,0,7138,7139,1,0,0,0,7139,7190,1,0,0,0,7140, + 7138,1,0,0,0,7141,7143,7,121,0,0,7142,7144,3,732,366,0,7143,7142, + 1,0,0,0,7143,7144,1,0,0,0,7144,7148,1,0,0,0,7145,7147,7,120,0,0, + 7146,7145,1,0,0,0,7147,7150,1,0,0,0,7148,7146,1,0,0,0,7148,7149, + 1,0,0,0,7149,7190,1,0,0,0,7150,7148,1,0,0,0,7151,7190,7,122,0,0, + 7152,7154,7,123,0,0,7153,7155,3,728,364,0,7154,7153,1,0,0,0,7154, + 7155,1,0,0,0,7155,7190,1,0,0,0,7156,7157,7,124,0,0,7157,7159,3,724, + 362,0,7158,7160,5,228,0,0,7159,7158,1,0,0,0,7159,7160,1,0,0,0,7160, + 7164,1,0,0,0,7161,7162,3,54,27,0,7162,7163,3,684,342,0,7163,7165, + 1,0,0,0,7164,7161,1,0,0,0,7164,7165,1,0,0,0,7165,7190,1,0,0,0,7166, + 7169,7,125,0,0,7167,7168,5,834,0,0,7168,7170,3,708,354,0,7169,7167, + 1,0,0,0,7169,7170,1,0,0,0,7170,7190,1,0,0,0,7171,7173,5,233,0,0, + 7172,7174,5,225,0,0,7173,7172,1,0,0,0,7173,7174,1,0,0,0,7174,7176, + 1,0,0,0,7175,7177,5,228,0,0,7176,7175,1,0,0,0,7176,7177,1,0,0,0, + 7177,7181,1,0,0,0,7178,7179,3,54,27,0,7179,7180,3,684,342,0,7180, + 7182,1,0,0,0,7181,7178,1,0,0,0,7181,7182,1,0,0,0,7182,7185,1,0,0, + 0,7183,7184,5,28,0,0,7184,7186,3,686,343,0,7185,7183,1,0,0,0,7185, + 7186,1,0,0,0,7186,7190,1,0,0,0,7187,7188,5,233,0,0,7188,7190,5,229, + 0,0,7189,7063,1,0,0,0,7189,7083,1,0,0,0,7189,7092,1,0,0,0,7189,7100, + 1,0,0,0,7189,7108,1,0,0,0,7189,7118,1,0,0,0,7189,7128,1,0,0,0,7189, + 7141,1,0,0,0,7189,7151,1,0,0,0,7189,7152,1,0,0,0,7189,7156,1,0,0, + 0,7189,7166,1,0,0,0,7189,7171,1,0,0,0,7189,7187,1,0,0,0,7190,723, + 1,0,0,0,7191,7192,5,866,0,0,7192,7197,5,882,0,0,7193,7194,5,868, + 0,0,7194,7196,5,882,0,0,7195,7193,1,0,0,0,7196,7199,1,0,0,0,7197, + 7195,1,0,0,0,7197,7198,1,0,0,0,7198,7200,1,0,0,0,7199,7197,1,0,0, + 0,7200,7201,5,867,0,0,7201,725,1,0,0,0,7202,7204,7,126,0,0,7203, + 7205,3,728,364,0,7204,7203,1,0,0,0,7204,7205,1,0,0,0,7205,7225,1, + 0,0,0,7206,7208,5,224,0,0,7207,7209,3,728,364,0,7208,7207,1,0,0, + 0,7208,7209,1,0,0,0,7209,7213,1,0,0,0,7210,7211,3,54,27,0,7211,7212, + 3,684,342,0,7212,7214,1,0,0,0,7213,7210,1,0,0,0,7213,7214,1,0,0, + 0,7214,7225,1,0,0,0,7215,7225,7,127,0,0,7216,7218,7,128,0,0,7217, + 7219,3,732,366,0,7218,7217,1,0,0,0,7218,7219,1,0,0,0,7219,7225,1, + 0,0,0,7220,7222,7,129,0,0,7221,7223,7,130,0,0,7222,7221,1,0,0,0, + 7222,7223,1,0,0,0,7223,7225,1,0,0,0,7224,7202,1,0,0,0,7224,7206, + 1,0,0,0,7224,7215,1,0,0,0,7224,7216,1,0,0,0,7224,7220,1,0,0,0,7225, + 7227,1,0,0,0,7226,7228,5,12,0,0,7227,7226,1,0,0,0,7227,7228,1,0, + 0,0,7228,727,1,0,0,0,7229,7230,5,866,0,0,7230,7231,3,708,354,0,7231, + 7232,5,867,0,0,7232,729,1,0,0,0,7233,7234,5,866,0,0,7234,7235,3, + 708,354,0,7235,7236,5,868,0,0,7236,7237,3,708,354,0,7237,7238,5, + 867,0,0,7238,731,1,0,0,0,7239,7240,5,866,0,0,7240,7243,3,708,354, + 0,7241,7242,5,868,0,0,7242,7244,3,708,354,0,7243,7241,1,0,0,0,7243, + 7244,1,0,0,0,7244,7245,1,0,0,0,7245,7246,5,867,0,0,7246,733,1,0, + 0,0,7247,7248,5,866,0,0,7248,7253,3,670,335,0,7249,7250,5,868,0, + 0,7250,7252,3,670,335,0,7251,7249,1,0,0,0,7252,7255,1,0,0,0,7253, + 7251,1,0,0,0,7253,7254,1,0,0,0,7254,7256,1,0,0,0,7255,7253,1,0,0, + 0,7256,7257,5,867,0,0,7257,735,1,0,0,0,7258,7263,3,800,400,0,7259, + 7260,5,868,0,0,7260,7262,3,800,400,0,7261,7259,1,0,0,0,7262,7265, + 1,0,0,0,7263,7261,1,0,0,0,7263,7264,1,0,0,0,7264,737,1,0,0,0,7265, + 7263,1,0,0,0,7266,7267,7,131,0,0,7267,7272,3,740,370,0,7268,7269, + 5,868,0,0,7269,7271,3,740,370,0,7270,7268,1,0,0,0,7271,7274,1,0, + 0,0,7272,7270,1,0,0,0,7272,7273,1,0,0,0,7273,739,1,0,0,0,7274,7272, + 1,0,0,0,7275,7276,5,866,0,0,7276,7281,3,742,371,0,7277,7278,5,868, + 0,0,7278,7280,3,742,371,0,7279,7277,1,0,0,0,7280,7283,1,0,0,0,7281, + 7279,1,0,0,0,7281,7282,1,0,0,0,7282,7284,1,0,0,0,7283,7281,1,0,0, + 0,7284,7285,5,867,0,0,7285,741,1,0,0,0,7286,7289,3,800,400,0,7287, + 7289,5,42,0,0,7288,7286,1,0,0,0,7288,7287,1,0,0,0,7289,743,1,0,0, + 0,7290,7295,3,720,360,0,7291,7292,5,868,0,0,7292,7294,3,720,360, + 0,7293,7291,1,0,0,0,7294,7297,1,0,0,0,7295,7293,1,0,0,0,7295,7296, + 1,0,0,0,7296,745,1,0,0,0,7297,7295,1,0,0,0,7298,7303,5,882,0,0,7299, + 7300,5,868,0,0,7300,7302,5,882,0,0,7301,7299,1,0,0,0,7302,7305,1, + 0,0,0,7303,7301,1,0,0,0,7303,7304,1,0,0,0,7304,747,1,0,0,0,7305, + 7303,1,0,0,0,7306,7311,5,892,0,0,7307,7308,5,868,0,0,7308,7310,5, + 892,0,0,7309,7307,1,0,0,0,7310,7313,1,0,0,0,7311,7309,1,0,0,0,7311, + 7312,1,0,0,0,7312,749,1,0,0,0,7313,7311,1,0,0,0,7314,7341,5,116, + 0,0,7315,7316,5,24,0,0,7316,7317,5,866,0,0,7317,7318,3,800,400,0, + 7318,7319,5,13,0,0,7319,7320,3,726,363,0,7320,7321,5,867,0,0,7321, + 7341,1,0,0,0,7322,7324,3,806,403,0,7323,7322,1,0,0,0,7323,7324,1, + 0,0,0,7324,7325,1,0,0,0,7325,7341,3,720,360,0,7326,7330,3,752,376, + 0,7327,7328,5,119,0,0,7328,7329,5,185,0,0,7329,7331,3,752,376,0, + 7330,7327,1,0,0,0,7330,7331,1,0,0,0,7331,7341,1,0,0,0,7332,7333, + 5,866,0,0,7333,7334,3,800,400,0,7334,7335,5,867,0,0,7335,7341,1, + 0,0,0,7336,7337,5,866,0,0,7337,7338,3,698,349,0,7338,7339,5,867, + 0,0,7339,7341,1,0,0,0,7340,7314,1,0,0,0,7340,7315,1,0,0,0,7340,7323, + 1,0,0,0,7340,7326,1,0,0,0,7340,7332,1,0,0,0,7340,7336,1,0,0,0,7341, + 751,1,0,0,0,7342,7348,7,132,0,0,7343,7345,5,866,0,0,7344,7346,3, + 708,354,0,7345,7344,1,0,0,0,7345,7346,1,0,0,0,7346,7347,1,0,0,0, + 7347,7349,5,867,0,0,7348,7343,1,0,0,0,7348,7349,1,0,0,0,7349,7357, + 1,0,0,0,7350,7351,5,295,0,0,7351,7353,5,866,0,0,7352,7354,3,708, + 354,0,7353,7352,1,0,0,0,7353,7354,1,0,0,0,7354,7355,1,0,0,0,7355, + 7357,5,867,0,0,7356,7342,1,0,0,0,7356,7350,1,0,0,0,7357,753,1,0, + 0,0,7358,7359,5,78,0,0,7359,7360,5,60,0,0,7360,755,1,0,0,0,7361, + 7362,5,78,0,0,7362,7363,5,114,0,0,7363,7364,5,60,0,0,7364,757,1, + 0,0,0,7365,7366,5,124,0,0,7366,7367,5,143,0,0,7367,759,1,0,0,0,7368, + 7391,3,762,381,0,7369,7391,3,770,385,0,7370,7391,3,772,386,0,7371, + 7378,3,792,396,0,7372,7373,5,866,0,0,7373,7379,5,867,0,0,7374,7375, + 5,866,0,0,7375,7376,3,796,398,0,7376,7377,5,867,0,0,7377,7379,1, + 0,0,0,7378,7372,1,0,0,0,7378,7374,1,0,0,0,7379,7391,1,0,0,0,7380, + 7387,3,628,314,0,7381,7382,5,866,0,0,7382,7388,5,867,0,0,7383,7384, + 5,866,0,0,7384,7385,3,796,398,0,7385,7386,5,867,0,0,7386,7388,1, + 0,0,0,7387,7381,1,0,0,0,7387,7383,1,0,0,0,7388,7391,1,0,0,0,7389, + 7391,3,794,397,0,7390,7368,1,0,0,0,7390,7369,1,0,0,0,7390,7370,1, + 0,0,0,7390,7371,1,0,0,0,7390,7380,1,0,0,0,7390,7389,1,0,0,0,7391, + 761,1,0,0,0,7392,7395,7,133,0,0,7393,7394,5,866,0,0,7394,7396,5, + 867,0,0,7395,7393,1,0,0,0,7395,7396,1,0,0,0,7396,7572,1,0,0,0,7397, + 7572,3,56,28,0,7398,7399,5,33,0,0,7399,7400,5,866,0,0,7400,7401, + 3,800,400,0,7401,7402,5,868,0,0,7402,7403,3,726,363,0,7403,7404, + 5,867,0,0,7404,7572,1,0,0,0,7405,7406,5,33,0,0,7406,7407,5,866,0, + 0,7407,7408,3,800,400,0,7408,7409,5,188,0,0,7409,7410,3,684,342, + 0,7410,7411,5,867,0,0,7411,7572,1,0,0,0,7412,7413,5,24,0,0,7413, + 7414,5,866,0,0,7414,7415,3,800,400,0,7415,7416,5,13,0,0,7416,7417, + 3,726,363,0,7417,7418,5,867,0,0,7418,7572,1,0,0,0,7419,7420,5,189, + 0,0,7420,7421,5,866,0,0,7421,7422,3,658,329,0,7422,7423,5,867,0, + 0,7423,7572,1,0,0,0,7424,7425,5,23,0,0,7425,7427,3,800,400,0,7426, + 7428,3,764,382,0,7427,7426,1,0,0,0,7428,7429,1,0,0,0,7429,7427,1, + 0,0,0,7429,7430,1,0,0,0,7430,7433,1,0,0,0,7431,7432,5,53,0,0,7432, + 7434,3,798,399,0,7433,7431,1,0,0,0,7433,7434,1,0,0,0,7434,7435,1, + 0,0,0,7435,7436,5,378,0,0,7436,7572,1,0,0,0,7437,7439,5,23,0,0,7438, + 7440,3,764,382,0,7439,7438,1,0,0,0,7440,7441,1,0,0,0,7441,7439,1, + 0,0,0,7441,7442,1,0,0,0,7442,7445,1,0,0,0,7443,7444,5,53,0,0,7444, + 7446,3,798,399,0,7445,7443,1,0,0,0,7445,7446,1,0,0,0,7446,7447,1, + 0,0,0,7447,7448,5,378,0,0,7448,7572,1,0,0,0,7449,7450,5,224,0,0, + 7450,7451,5,866,0,0,7451,7454,3,796,398,0,7452,7453,5,188,0,0,7453, + 7455,3,684,342,0,7454,7452,1,0,0,0,7454,7455,1,0,0,0,7455,7456,1, + 0,0,0,7456,7457,5,867,0,0,7457,7572,1,0,0,0,7458,7459,5,296,0,0, + 7459,7462,5,866,0,0,7460,7463,3,712,356,0,7461,7463,3,800,400,0, + 7462,7460,1,0,0,0,7462,7461,1,0,0,0,7463,7464,1,0,0,0,7464,7467, + 5,80,0,0,7465,7468,3,712,356,0,7466,7468,3,800,400,0,7467,7465,1, + 0,0,0,7467,7466,1,0,0,0,7468,7469,1,0,0,0,7469,7470,5,867,0,0,7470, + 7572,1,0,0,0,7471,7472,7,134,0,0,7472,7475,5,866,0,0,7473,7476,3, + 712,356,0,7474,7476,3,800,400,0,7475,7473,1,0,0,0,7475,7474,1,0, + 0,0,7476,7477,1,0,0,0,7477,7480,5,68,0,0,7478,7481,3,708,354,0,7479, + 7481,3,800,400,0,7480,7478,1,0,0,0,7480,7479,1,0,0,0,7481,7487,1, + 0,0,0,7482,7485,5,65,0,0,7483,7486,3,708,354,0,7484,7486,3,800,400, + 0,7485,7483,1,0,0,0,7485,7484,1,0,0,0,7486,7488,1,0,0,0,7487,7482, + 1,0,0,0,7487,7488,1,0,0,0,7488,7489,1,0,0,0,7489,7490,5,867,0,0, + 7490,7572,1,0,0,0,7491,7492,5,300,0,0,7492,7493,5,866,0,0,7493,7496, + 7,135,0,0,7494,7497,3,712,356,0,7495,7497,3,800,400,0,7496,7494, + 1,0,0,0,7496,7495,1,0,0,0,7496,7497,1,0,0,0,7497,7498,1,0,0,0,7498, + 7501,5,68,0,0,7499,7502,3,712,356,0,7500,7502,3,800,400,0,7501,7499, + 1,0,0,0,7501,7500,1,0,0,0,7502,7503,1,0,0,0,7503,7504,5,867,0,0, + 7504,7572,1,0,0,0,7505,7506,5,300,0,0,7506,7509,5,866,0,0,7507,7510, + 3,712,356,0,7508,7510,3,800,400,0,7509,7507,1,0,0,0,7509,7508,1, + 0,0,0,7510,7511,1,0,0,0,7511,7514,5,68,0,0,7512,7515,3,712,356,0, + 7513,7515,3,800,400,0,7514,7512,1,0,0,0,7514,7513,1,0,0,0,7515,7516, + 1,0,0,0,7516,7517,5,867,0,0,7517,7572,1,0,0,0,7518,7519,5,840,0, + 0,7519,7522,5,866,0,0,7520,7523,3,712,356,0,7521,7523,3,800,400, + 0,7522,7520,1,0,0,0,7522,7521,1,0,0,0,7523,7530,1,0,0,0,7524,7525, + 5,13,0,0,7525,7526,7,136,0,0,7526,7527,5,866,0,0,7527,7528,3,708, + 354,0,7528,7529,5,867,0,0,7529,7531,1,0,0,0,7530,7524,1,0,0,0,7530, + 7531,1,0,0,0,7531,7533,1,0,0,0,7532,7534,3,766,383,0,7533,7532,1, + 0,0,0,7533,7534,1,0,0,0,7534,7535,1,0,0,0,7535,7536,5,867,0,0,7536, + 7572,1,0,0,0,7537,7538,5,293,0,0,7538,7539,5,866,0,0,7539,7540,3, + 66,33,0,7540,7543,5,68,0,0,7541,7544,3,712,356,0,7542,7544,3,800, + 400,0,7543,7541,1,0,0,0,7543,7542,1,0,0,0,7544,7545,1,0,0,0,7545, + 7546,5,867,0,0,7546,7572,1,0,0,0,7547,7548,5,827,0,0,7548,7549,5, + 866,0,0,7549,7550,7,137,0,0,7550,7551,5,868,0,0,7551,7552,3,712, + 356,0,7552,7553,5,867,0,0,7553,7572,1,0,0,0,7554,7555,5,254,0,0, + 7555,7556,5,866,0,0,7556,7557,3,800,400,0,7557,7558,5,868,0,0,7558, + 7561,3,800,400,0,7559,7560,5,579,0,0,7560,7562,3,726,363,0,7561, + 7559,1,0,0,0,7561,7562,1,0,0,0,7562,7564,1,0,0,0,7563,7565,3,286, + 143,0,7564,7563,1,0,0,0,7564,7565,1,0,0,0,7565,7567,1,0,0,0,7566, + 7568,3,288,144,0,7567,7566,1,0,0,0,7567,7568,1,0,0,0,7568,7569,1, + 0,0,0,7569,7570,5,867,0,0,7570,7572,1,0,0,0,7571,7392,1,0,0,0,7571, + 7397,1,0,0,0,7571,7398,1,0,0,0,7571,7405,1,0,0,0,7571,7412,1,0,0, + 0,7571,7419,1,0,0,0,7571,7424,1,0,0,0,7571,7437,1,0,0,0,7571,7449, + 1,0,0,0,7571,7458,1,0,0,0,7571,7471,1,0,0,0,7571,7491,1,0,0,0,7571, + 7505,1,0,0,0,7571,7518,1,0,0,0,7571,7537,1,0,0,0,7571,7547,1,0,0, + 0,7571,7554,1,0,0,0,7572,763,1,0,0,0,7573,7574,5,191,0,0,7574,7575, + 3,798,399,0,7575,7576,5,175,0,0,7576,7577,3,798,399,0,7577,765,1, + 0,0,0,7578,7579,5,448,0,0,7579,7584,3,768,384,0,7580,7581,5,868, + 0,0,7581,7583,3,768,384,0,7582,7580,1,0,0,0,7583,7586,1,0,0,0,7584, + 7582,1,0,0,0,7584,7585,1,0,0,0,7585,7593,1,0,0,0,7586,7584,1,0,0, + 0,7587,7588,5,448,0,0,7588,7589,3,708,354,0,7589,7590,5,854,0,0, + 7590,7591,3,708,354,0,7591,7593,1,0,0,0,7592,7578,1,0,0,0,7592,7587, + 1,0,0,0,7593,767,1,0,0,0,7594,7596,3,708,354,0,7595,7597,7,138,0, + 0,7596,7595,1,0,0,0,7596,7597,1,0,0,0,7597,769,1,0,0,0,7598,7599, + 7,139,0,0,7599,7601,5,866,0,0,7600,7602,7,44,0,0,7601,7600,1,0,0, + 0,7601,7602,1,0,0,0,7602,7603,1,0,0,0,7603,7604,3,798,399,0,7604, + 7606,5,867,0,0,7605,7607,3,774,387,0,7606,7605,1,0,0,0,7606,7607, + 1,0,0,0,7607,7658,1,0,0,0,7608,7609,5,262,0,0,7609,7617,5,866,0, + 0,7610,7618,5,850,0,0,7611,7613,5,7,0,0,7612,7611,1,0,0,0,7612,7613, + 1,0,0,0,7613,7614,1,0,0,0,7614,7618,3,798,399,0,7615,7616,5,49,0, + 0,7616,7618,3,796,398,0,7617,7610,1,0,0,0,7617,7612,1,0,0,0,7617, + 7615,1,0,0,0,7618,7619,1,0,0,0,7619,7621,5,867,0,0,7620,7622,3,774, + 387,0,7621,7620,1,0,0,0,7621,7622,1,0,0,0,7622,7658,1,0,0,0,7623, + 7624,7,140,0,0,7624,7626,5,866,0,0,7625,7627,5,7,0,0,7626,7625,1, + 0,0,0,7626,7627,1,0,0,0,7627,7628,1,0,0,0,7628,7629,3,798,399,0, + 7629,7631,5,867,0,0,7630,7632,3,774,387,0,7631,7630,1,0,0,0,7631, + 7632,1,0,0,0,7632,7658,1,0,0,0,7633,7634,5,266,0,0,7634,7636,5,866, + 0,0,7635,7637,5,49,0,0,7636,7635,1,0,0,0,7636,7637,1,0,0,0,7637, + 7638,1,0,0,0,7638,7649,3,796,398,0,7639,7640,5,125,0,0,7640,7641, + 5,20,0,0,7641,7646,3,254,127,0,7642,7643,5,868,0,0,7643,7645,3,254, + 127,0,7644,7642,1,0,0,0,7645,7648,1,0,0,0,7646,7644,1,0,0,0,7646, + 7647,1,0,0,0,7647,7650,1,0,0,0,7648,7646,1,0,0,0,7649,7639,1,0,0, + 0,7649,7650,1,0,0,0,7650,7653,1,0,0,0,7651,7652,5,156,0,0,7652,7654, + 5,882,0,0,7653,7651,1,0,0,0,7653,7654,1,0,0,0,7654,7655,1,0,0,0, + 7655,7656,5,867,0,0,7656,7658,1,0,0,0,7657,7598,1,0,0,0,7657,7608, + 1,0,0,0,7657,7623,1,0,0,0,7657,7633,1,0,0,0,7658,771,1,0,0,0,7659, + 7660,7,141,0,0,7660,7661,5,866,0,0,7661,7664,3,800,400,0,7662,7663, + 5,868,0,0,7663,7665,3,708,354,0,7664,7662,1,0,0,0,7664,7665,1,0, + 0,0,7665,7668,1,0,0,0,7666,7667,5,868,0,0,7667,7669,3,708,354,0, + 7668,7666,1,0,0,0,7668,7669,1,0,0,0,7669,7670,1,0,0,0,7670,7671, + 5,867,0,0,7671,7672,3,774,387,0,7672,7698,1,0,0,0,7673,7674,7,142, + 0,0,7674,7675,5,866,0,0,7675,7676,3,800,400,0,7676,7677,5,867,0, + 0,7677,7678,3,774,387,0,7678,7698,1,0,0,0,7679,7680,7,143,0,0,7680, + 7681,5,866,0,0,7681,7682,5,867,0,0,7682,7698,3,774,387,0,7683,7684, + 5,273,0,0,7684,7685,5,866,0,0,7685,7686,3,800,400,0,7686,7687,5, + 868,0,0,7687,7688,3,708,354,0,7688,7689,5,867,0,0,7689,7690,3,774, + 387,0,7690,7698,1,0,0,0,7691,7692,5,272,0,0,7692,7693,5,866,0,0, + 7693,7694,3,708,354,0,7694,7695,5,867,0,0,7695,7696,3,774,387,0, + 7696,7698,1,0,0,0,7697,7659,1,0,0,0,7697,7673,1,0,0,0,7697,7679, + 1,0,0,0,7697,7683,1,0,0,0,7697,7691,1,0,0,0,7698,773,1,0,0,0,7699, + 7705,5,129,0,0,7700,7701,5,866,0,0,7701,7702,3,776,388,0,7702,7703, + 5,867,0,0,7703,7706,1,0,0,0,7704,7706,3,778,389,0,7705,7700,1,0, + 0,0,7705,7704,1,0,0,0,7706,775,1,0,0,0,7707,7709,3,778,389,0,7708, + 7707,1,0,0,0,7708,7709,1,0,0,0,7709,7711,1,0,0,0,7710,7712,3,790, + 395,0,7711,7710,1,0,0,0,7711,7712,1,0,0,0,7712,7714,1,0,0,0,7713, + 7715,3,252,126,0,7714,7713,1,0,0,0,7714,7715,1,0,0,0,7715,7717,1, + 0,0,0,7716,7718,3,780,390,0,7717,7716,1,0,0,0,7717,7718,1,0,0,0, + 7718,777,1,0,0,0,7719,7720,3,702,351,0,7720,779,1,0,0,0,7721,7722, + 3,782,391,0,7722,7723,3,784,392,0,7723,781,1,0,0,0,7724,7725,7,144, + 0,0,7725,783,1,0,0,0,7726,7729,3,788,394,0,7727,7729,3,786,393,0, + 7728,7726,1,0,0,0,7728,7727,1,0,0,0,7729,785,1,0,0,0,7730,7731,5, + 17,0,0,7731,7732,3,788,394,0,7732,7733,5,11,0,0,7733,7734,3,788, + 394,0,7734,787,1,0,0,0,7735,7736,5,36,0,0,7736,7743,5,586,0,0,7737, + 7738,5,669,0,0,7738,7743,7,145,0,0,7739,7740,3,800,400,0,7740,7741, + 7,145,0,0,7741,7743,1,0,0,0,7742,7735,1,0,0,0,7742,7737,1,0,0,0, + 7742,7739,1,0,0,0,7743,789,1,0,0,0,7744,7745,5,130,0,0,7745,7746, + 5,20,0,0,7746,7751,3,800,400,0,7747,7748,5,868,0,0,7748,7750,3,800, + 400,0,7749,7747,1,0,0,0,7750,7753,1,0,0,0,7751,7749,1,0,0,0,7751, + 7752,1,0,0,0,7752,791,1,0,0,0,7753,7751,1,0,0,0,7754,7779,3,832, + 416,0,7755,7779,5,757,0,0,7756,7779,5,289,0,0,7757,7779,5,285,0, + 0,7758,7779,5,286,0,0,7759,7779,5,287,0,0,7760,7779,5,290,0,0,7761, + 7779,5,291,0,0,7762,7779,5,292,0,0,7763,7779,5,78,0,0,7764,7779, + 5,86,0,0,7765,7779,5,288,0,0,7766,7779,5,294,0,0,7767,7779,5,488, + 0,0,7768,7779,5,295,0,0,7769,7779,5,142,0,0,7770,7779,5,143,0,0, + 7771,7779,5,297,0,0,7772,7779,5,298,0,0,7773,7779,5,299,0,0,7774, + 7779,5,300,0,0,7775,7779,5,301,0,0,7776,7779,5,302,0,0,7777,7779, + 5,303,0,0,7778,7754,1,0,0,0,7778,7755,1,0,0,0,7778,7756,1,0,0,0, + 7778,7757,1,0,0,0,7778,7758,1,0,0,0,7778,7759,1,0,0,0,7778,7760, + 1,0,0,0,7778,7761,1,0,0,0,7778,7762,1,0,0,0,7778,7763,1,0,0,0,7778, + 7764,1,0,0,0,7778,7765,1,0,0,0,7778,7766,1,0,0,0,7778,7767,1,0,0, + 0,7778,7768,1,0,0,0,7778,7769,1,0,0,0,7778,7770,1,0,0,0,7778,7771, + 1,0,0,0,7778,7772,1,0,0,0,7778,7773,1,0,0,0,7778,7774,1,0,0,0,7778, + 7775,1,0,0,0,7778,7776,1,0,0,0,7778,7777,1,0,0,0,7779,793,1,0,0, + 0,7780,7781,7,146,0,0,7781,7782,5,866,0,0,7782,7783,3,798,399,0, + 7783,7784,5,867,0,0,7784,795,1,0,0,0,7785,7790,3,798,399,0,7786, + 7787,5,868,0,0,7787,7789,3,798,399,0,7788,7786,1,0,0,0,7789,7792, + 1,0,0,0,7790,7788,1,0,0,0,7790,7791,1,0,0,0,7791,797,1,0,0,0,7792, + 7790,1,0,0,0,7793,7797,3,720,360,0,7794,7797,3,760,380,0,7795,7797, + 3,800,400,0,7796,7793,1,0,0,0,7796,7794,1,0,0,0,7796,7795,1,0,0, + 0,7797,799,1,0,0,0,7798,7799,6,400,-1,0,7799,7800,7,147,0,0,7800, + 7810,3,800,400,4,7801,7802,3,802,401,0,7802,7804,5,89,0,0,7803,7805, + 5,114,0,0,7804,7803,1,0,0,0,7804,7805,1,0,0,0,7805,7806,1,0,0,0, + 7806,7807,7,148,0,0,7807,7810,1,0,0,0,7808,7810,3,802,401,0,7809, + 7798,1,0,0,0,7809,7801,1,0,0,0,7809,7808,1,0,0,0,7810,7817,1,0,0, + 0,7811,7812,10,3,0,0,7812,7813,3,812,406,0,7813,7814,3,800,400,4, + 7814,7816,1,0,0,0,7815,7811,1,0,0,0,7816,7819,1,0,0,0,7817,7815, + 1,0,0,0,7817,7818,1,0,0,0,7818,801,1,0,0,0,7819,7817,1,0,0,0,7820, + 7821,6,401,-1,0,7821,7822,3,804,402,0,7822,7886,1,0,0,0,7823,7825, + 10,6,0,0,7824,7826,5,114,0,0,7825,7824,1,0,0,0,7825,7826,1,0,0,0, + 7826,7827,1,0,0,0,7827,7828,5,17,0,0,7828,7829,3,802,401,0,7829, + 7830,5,11,0,0,7830,7831,3,802,401,7,7831,7885,1,0,0,0,7832,7833, + 10,5,0,0,7833,7834,5,604,0,0,7834,7835,5,99,0,0,7835,7885,3,802, + 401,6,7836,7838,10,3,0,0,7837,7839,5,114,0,0,7838,7837,1,0,0,0,7838, + 7839,1,0,0,0,7839,7840,1,0,0,0,7840,7841,7,149,0,0,7841,7885,3,802, + 401,4,7842,7844,10,9,0,0,7843,7845,5,114,0,0,7844,7843,1,0,0,0,7844, + 7845,1,0,0,0,7845,7846,1,0,0,0,7846,7847,5,80,0,0,7847,7850,5,866, + 0,0,7848,7851,3,204,102,0,7849,7851,3,736,368,0,7850,7848,1,0,0, + 0,7850,7849,1,0,0,0,7851,7852,1,0,0,0,7852,7853,5,867,0,0,7853,7885, + 1,0,0,0,7854,7855,10,8,0,0,7855,7856,5,89,0,0,7856,7885,3,718,359, + 0,7857,7858,10,7,0,0,7858,7865,3,808,404,0,7859,7860,7,150,0,0,7860, + 7861,5,866,0,0,7861,7862,3,204,102,0,7862,7863,5,867,0,0,7863,7866, + 1,0,0,0,7864,7866,3,802,401,0,7865,7859,1,0,0,0,7865,7864,1,0,0, + 0,7866,7885,1,0,0,0,7867,7869,10,4,0,0,7868,7870,5,114,0,0,7869, + 7868,1,0,0,0,7869,7870,1,0,0,0,7870,7871,1,0,0,0,7871,7872,5,99, + 0,0,7872,7875,3,802,401,0,7873,7874,5,384,0,0,7874,7876,5,882,0, + 0,7875,7873,1,0,0,0,7875,7876,1,0,0,0,7876,7885,1,0,0,0,7877,7878, + 10,2,0,0,7878,7879,5,485,0,0,7879,7880,5,510,0,0,7880,7881,5,866, + 0,0,7881,7882,3,802,401,0,7882,7883,5,867,0,0,7883,7885,1,0,0,0, + 7884,7823,1,0,0,0,7884,7832,1,0,0,0,7884,7836,1,0,0,0,7884,7842, + 1,0,0,0,7884,7854,1,0,0,0,7884,7857,1,0,0,0,7884,7867,1,0,0,0,7884, + 7877,1,0,0,0,7885,7888,1,0,0,0,7886,7884,1,0,0,0,7886,7887,1,0,0, + 0,7887,803,1,0,0,0,7888,7886,1,0,0,0,7889,7890,6,402,-1,0,7890,7938, + 3,720,360,0,7891,7938,3,760,380,0,7892,7938,3,682,341,0,7893,7894, + 3,806,403,0,7894,7895,3,804,402,12,7895,7938,1,0,0,0,7896,7897,5, + 228,0,0,7897,7938,3,804,402,11,7898,7899,5,892,0,0,7899,7900,5,841, + 0,0,7900,7938,3,804,402,10,7901,7902,5,866,0,0,7902,7907,3,800,400, + 0,7903,7904,5,868,0,0,7904,7906,3,800,400,0,7905,7903,1,0,0,0,7906, + 7909,1,0,0,0,7907,7905,1,0,0,0,7907,7908,1,0,0,0,7908,7910,1,0,0, + 0,7909,7907,1,0,0,0,7910,7911,5,867,0,0,7911,7938,1,0,0,0,7912,7913, + 5,586,0,0,7913,7914,5,866,0,0,7914,7917,3,800,400,0,7915,7916,5, + 868,0,0,7916,7918,3,800,400,0,7917,7915,1,0,0,0,7918,7919,1,0,0, + 0,7919,7917,1,0,0,0,7919,7920,1,0,0,0,7920,7921,1,0,0,0,7921,7922, + 5,867,0,0,7922,7938,1,0,0,0,7923,7924,5,60,0,0,7924,7925,5,866,0, + 0,7925,7926,3,204,102,0,7926,7927,5,867,0,0,7927,7938,1,0,0,0,7928, + 7929,5,866,0,0,7929,7930,3,204,102,0,7930,7931,5,867,0,0,7931,7938, + 1,0,0,0,7932,7933,5,87,0,0,7933,7934,3,800,400,0,7934,7935,3,66, + 33,0,7935,7938,1,0,0,0,7936,7938,3,658,329,0,7937,7889,1,0,0,0,7937, + 7891,1,0,0,0,7937,7892,1,0,0,0,7937,7893,1,0,0,0,7937,7896,1,0,0, + 0,7937,7898,1,0,0,0,7937,7901,1,0,0,0,7937,7912,1,0,0,0,7937,7923, + 1,0,0,0,7937,7928,1,0,0,0,7937,7932,1,0,0,0,7937,7936,1,0,0,0,7938, + 7956,1,0,0,0,7939,7940,10,4,0,0,7940,7941,3,818,409,0,7941,7942, + 3,804,402,5,7942,7955,1,0,0,0,7943,7944,10,3,0,0,7944,7945,3,814, + 407,0,7945,7946,3,804,402,4,7946,7955,1,0,0,0,7947,7948,10,2,0,0, + 7948,7949,3,816,408,0,7949,7950,3,804,402,3,7950,7955,1,0,0,0,7951, + 7952,10,14,0,0,7952,7953,5,28,0,0,7953,7955,3,686,343,0,7954,7939, + 1,0,0,0,7954,7943,1,0,0,0,7954,7947,1,0,0,0,7954,7951,1,0,0,0,7955, + 7958,1,0,0,0,7956,7954,1,0,0,0,7956,7957,1,0,0,0,7957,805,1,0,0, + 0,7958,7956,1,0,0,0,7959,7960,7,151,0,0,7960,807,1,0,0,0,7961,7962, + 5,859,0,0,7962,7970,5,858,0,0,7963,7964,5,860,0,0,7964,7970,5,857, + 0,0,7965,7966,5,859,0,0,7966,7967,5,857,0,0,7967,7970,5,858,0,0, + 7968,7970,3,810,405,0,7969,7961,1,0,0,0,7969,7963,1,0,0,0,7969,7965, + 1,0,0,0,7969,7968,1,0,0,0,7970,809,1,0,0,0,7971,7972,5,859,0,0,7972, + 7979,5,857,0,0,7973,7974,5,858,0,0,7974,7979,5,857,0,0,7975,7979, + 5,857,0,0,7976,7979,5,858,0,0,7977,7979,5,859,0,0,7978,7971,1,0, + 0,0,7978,7973,1,0,0,0,7978,7975,1,0,0,0,7978,7976,1,0,0,0,7978,7977, + 1,0,0,0,7979,811,1,0,0,0,7980,7988,5,11,0,0,7981,7982,5,863,0,0, + 7982,7988,5,863,0,0,7983,7988,5,196,0,0,7984,7988,5,124,0,0,7985, + 7986,5,862,0,0,7986,7988,5,862,0,0,7987,7980,1,0,0,0,7987,7981,1, + 0,0,0,7987,7983,1,0,0,0,7987,7984,1,0,0,0,7987,7985,1,0,0,0,7988, + 813,1,0,0,0,7989,7990,5,859,0,0,7990,7997,5,859,0,0,7991,7992,5, + 858,0,0,7992,7997,5,858,0,0,7993,7997,5,863,0,0,7994,7997,5,864, + 0,0,7995,7997,5,862,0,0,7996,7989,1,0,0,0,7996,7991,1,0,0,0,7996, + 7993,1,0,0,0,7996,7994,1,0,0,0,7996,7995,1,0,0,0,7997,815,1,0,0, + 0,7998,7999,7,152,0,0,7999,817,1,0,0,0,8000,8001,5,854,0,0,8001, + 8006,5,858,0,0,8002,8003,5,854,0,0,8003,8004,5,858,0,0,8004,8006, + 5,858,0,0,8005,8000,1,0,0,0,8005,8002,1,0,0,0,8006,819,1,0,0,0,8007, + 8008,7,153,0,0,8008,821,1,0,0,0,8009,8010,7,154,0,0,8010,823,1,0, + 0,0,8011,8012,7,155,0,0,8012,825,1,0,0,0,8013,8014,7,156,0,0,8014, + 827,1,0,0,0,8015,8016,7,157,0,0,8016,829,1,0,0,0,8017,8018,7,158, + 0,0,8018,831,1,0,0,0,8019,8020,7,159,0,0,8020,833,1,0,0,0,1154,837, + 844,847,856,899,918,929,945,950,962,997,1007,1012,1018,1023,1027, + 1036,1039,1042,1046,1053,1056,1061,1069,1074,1079,1082,1084,1096, + 1099,1103,1106,1110,1113,1117,1120,1123,1127,1130,1134,1140,1144, + 1149,1155,1162,1170,1188,1195,1199,1203,1207,1212,1215,1218,1221, + 1224,1230,1234,1244,1248,1252,1258,1263,1266,1269,1271,1275,1282, + 1286,1289,1294,1298,1301,1305,1308,1312,1325,1328,1332,1335,1339, + 1342,1346,1349,1353,1356,1359,1363,1366,1370,1376,1380,1392,1398, + 1409,1414,1422,1426,1431,1434,1439,1449,1454,1459,1465,1470,1474, + 1476,1479,1483,1487,1490,1494,1498,1502,1508,1511,1518,1523,1529, + 1536,1542,1550,1553,1560,1563,1565,1571,1577,1594,1601,1608,1620, + 1625,1628,1631,1641,1654,1659,1675,1683,1693,1696,1702,1707,1710, + 1716,1720,1725,1731,1735,1739,1742,1745,1751,1755,1760,1771,1774, + 1781,1784,1788,1794,1806,1809,1814,1827,1834,1840,1845,1849,1852, + 1860,1868,1870,1880,1884,1887,1891,1896,1901,1906,1910,1914,1918, + 1922,1926,1930,1935,1940,1945,1951,1956,1961,1966,1971,1976,1982, + 1987,1992,1997,2002,2007,2012,2017,2024,2029,2034,2039,2043,2048, + 2056,2061,2067,2079,2086,2088,2096,2101,2104,2112,2118,2122,2135, + 2147,2149,2152,2160,2166,2172,2185,2192,2201,2206,2217,2226,2231, + 2243,2250,2259,2264,2276,2283,2292,2297,2304,2313,2318,2320,2325, + 2333,2342,2346,2349,2353,2358,2364,2370,2375,2380,2385,2390,2393, + 2398,2403,2413,2417,2424,2429,2432,2437,2440,2444,2448,2456,2475, + 2478,2481,2485,2495,2508,2521,2524,2530,2533,2537,2546,2549,2552, + 2557,2561,2564,2568,2572,2575,2579,2582,2586,2589,2595,2598,2603, + 2611,2617,2621,2625,2630,2635,2642,2646,2657,2665,2668,2674,2680, + 2683,2689,2695,2697,2702,2708,2714,2716,2720,2723,2726,2732,2738, + 2740,2745,2752,2761,2764,2768,2773,2783,2792,2800,2803,2811,2814, + 2821,2826,2834,2850,2855,2862,2881,2887,2897,2909,2916,2923,2938, + 2951,2957,2963,2969,2975,2981,2987,2992,2999,3006,3013,3018,3021, + 3023,3032,3039,3046,3053,3062,3068,3072,3076,3080,3086,3089,3094, + 3101,3108,3112,3117,3127,3135,3141,3150,3159,3168,3171,3175,3184, + 3188,3191,3194,3200,3203,3206,3210,3213,3216,3219,3230,3233,3238, + 3244,3249,3254,3257,3261,3266,3269,3274,3284,3289,3295,3297,3303, + 3305,3311,3319,3324,3332,3335,3340,3343,3348,3356,3362,3366,3368, + 3374,3382,3387,3395,3398,3403,3406,3410,3413,3416,3420,3423,3431, + 3437,3441,3447,3452,3456,3458,3464,3468,3471,3474,3477,3483,3488, + 3491,3494,3497,3500,3502,3505,3509,3512,3515,3523,3529,3532,3534, + 3543,3548,3555,3558,3561,3565,3569,3575,3579,3586,3590,3593,3596, + 3601,3608,3618,3627,3636,3646,3649,3653,3659,3663,3666,3669,3674, + 3677,3684,3688,3691,3695,3699,3702,3705,3710,3716,3720,3730,3736, + 3740,3746,3750,3756,3759,3771,3775,3779,3787,3791,3805,3810,3813, + 3817,3820,3828,3833,3836,3839,3843,3846,3855,3860,3869,3874,3881, + 3888,3896,3902,3910,3913,3916,3923,3926,3929,3936,3939,3943,3949, + 3959,3963,3972,3975,3979,3985,3993,3998,4002,4008,4014,4017,4019, + 4023,4032,4042,4048,4053,4057,4060,4063,4066,4069,4072,4076,4080, + 4088,4092,4095,4097,4110,4113,4120,4130,4133,4138,4140,4144,4152, + 4158,4167,4180,4184,4190,4195,4199,4202,4206,4209,4217,4220,4222, + 4230,4242,4248,4250,4256,4258,4260,4266,4274,4282,4286,4290,4299, + 4304,4324,4329,4335,4342,4347,4356,4359,4363,4367,4371,4374,4377, + 4380,4384,4388,4391,4394,4397,4404,4408,4423,4436,4444,4454,4458, + 4461,4467,4470,4473,4482,4491,4501,4505,4515,4519,4530,4534,4543, + 4552,4555,4559,4564,4568,4577,4580,4583,4590,4596,4602,4628,4631, + 4634,4653,4655,4678,4681,4684,4703,4705,4719,4732,4769,4774,4809, + 4823,4830,4834,4840,4848,4850,4861,4871,4878,4884,4892,4897,4905, + 4913,4921,4929,4935,4940,4945,4950,4956,4958,4969,4974,4981,4983, + 4997,5003,5008,5013,5019,5026,5034,5042,5047,5053,5056,5064,5071, + 5080,5083,5100,5108,5116,5120,5127,5133,5141,5146,5153,5161,5168, + 5173,5176,5178,5184,5186,5190,5192,5197,5204,5209,5213,5218,5222, + 5228,5234,5239,5242,5244,5250,5252,5256,5258,5263,5268,5275,5284, + 5289,5298,5302,5308,5313,5316,5318,5324,5326,5329,5336,5338,5343, + 5350,5359,5365,5367,5374,5377,5389,5395,5403,5406,5410,5413,5417, + 5419,5430,5433,5437,5440,5443,5450,5462,5465,5472,5478,5488,5493, + 5500,5505,5511,5515,5519,5527,5531,5535,5541,5543,5555,5560,5566, + 5572,5576,5581,5583,5607,5611,5614,5623,5627,5636,5640,5644,5650, + 5652,5661,5671,5698,5702,5707,5714,5717,5723,5733,5743,5753,5759, + 5768,5774,5781,5783,5791,5797,5801,5818,5828,5832,5836,5846,5851, + 5923,5941,5949,5955,5967,5971,5982,5986,5995,6003,6010,6014,6021, + 6026,6029,6032,6043,6047,6051,6066,6075,6078,6092,6110,6123,6126, + 6130,6133,6135,6142,6149,6153,6160,6167,6170,6186,6189,6199,6203, + 6209,6212,6215,6220,6224,6227,6234,6237,6243,6279,6282,6294,6297, + 6313,6315,6319,6326,6330,6337,6340,6349,6352,6357,6363,6365,6371, + 6375,6381,6384,6387,6400,6403,6409,6412,6420,6428,6434,6437,6441, + 6455,6467,6475,6479,6486,6493,6498,6511,6520,6528,6533,6536,6541, + 6544,6556,6561,6574,6576,6581,6585,6588,6590,6597,6604,6607,6610, + 6616,6620,6626,6634,6643,6656,6661,6669,6672,6677,6682,6690,6693, + 6701,6705,6712,6718,6721,6725,6738,6744,6756,6759,6768,6773,6794, + 6810,6820,6825,6830,6832,6835,6839,6841,6848,6854,6856,6859,6863, + 6866,6879,6889,6892,6895,6908,6914,6917,6925,6932,6952,6959,6961, + 6968,6970,6974,6981,6987,6998,7004,7010,7013,7017,7022,7025,7029, + 7033,7035,7040,7045,7058,7061,7065,7068,7071,7076,7081,7087,7090, + 7095,7098,7103,7106,7110,7115,7120,7125,7130,7133,7138,7143,7148, + 7154,7159,7164,7169,7173,7176,7181,7185,7189,7197,7204,7208,7213, + 7218,7222,7224,7227,7243,7253,7263,7272,7281,7288,7295,7303,7311, + 7323,7330,7340,7345,7348,7353,7356,7378,7387,7390,7395,7429,7433, + 7441,7445,7454,7462,7467,7475,7480,7485,7487,7496,7501,7509,7514, + 7522,7530,7533,7543,7561,7564,7567,7571,7584,7592,7596,7601,7606, + 7612,7617,7621,7626,7631,7636,7646,7649,7653,7657,7664,7668,7697, + 7705,7708,7711,7714,7717,7728,7742,7751,7778,7790,7796,7804,7809, + 7817,7825,7838,7844,7850,7865,7869,7875,7884,7886,7907,7919,7937, + 7954,7956,7969,7978,7987,7996,8005 ]; private static __ATN: antlr.ATN; @@ -51911,12 +51958,12 @@ export class UtilityStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public simpleDescribeStatement(): SimpleDescribeStatementContext | null { - return this.getRuleContext(0, SimpleDescribeStatementContext); - } public fullDescribeStatement(): FullDescribeStatementContext | null { return this.getRuleContext(0, FullDescribeStatementContext); } + public simpleDescribeStatement(): SimpleDescribeStatementContext | null { + return this.getRuleContext(0, SimpleDescribeStatementContext); + } public analyzeDescribeStatement(): AnalyzeDescribeStatementContext | null { return this.getRuleContext(0, AnalyzeDescribeStatementContext); } @@ -52581,8 +52628,17 @@ export class CopyCreateTableContext extends CreateTableContext { public tableNameCreate(): TableNameCreateContext { return this.getRuleContext(0, TableNameCreateContext)!; } - public createDefinitions(): CreateDefinitionsContext { - return this.getRuleContext(0, CreateDefinitionsContext)!; + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_LIKE, 0); + } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); + } + public LR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.LR_BRACKET, 0); + } + public RR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.RR_BRACKET, 0); } public KW_TEMPORARY(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_TEMPORARY, 0); @@ -52590,27 +52646,6 @@ export class CopyCreateTableContext extends CreateTableContext { public ifNotExists(): IfNotExistsContext | null { return this.getRuleContext(0, IfNotExistsContext); } - public tableOption(): TableOptionContext[]; - public tableOption(i: number): TableOptionContext | null; - public tableOption(i?: number): TableOptionContext[] | TableOptionContext | null { - if (i === undefined) { - return this.getRuleContexts(TableOptionContext); - } - - return this.getRuleContext(i, TableOptionContext); - } - public partitionDefinitions(): PartitionDefinitionsContext | null { - return this.getRuleContext(0, PartitionDefinitionsContext); - } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(MySqlParser.COMMA); - } else { - return this.getToken(MySqlParser.COMMA, i); - } - } public override enterRule(listener: MySqlParserListener): void { if(listener.enterCopyCreateTable) { listener.enterCopyCreateTable(this); @@ -52643,8 +52678,8 @@ export class ColumnCreateTableContext extends CreateTableContext { public tableNameCreate(): TableNameCreateContext { return this.getRuleContext(0, TableNameCreateContext)!; } - public selectStatement(): SelectStatementContext { - return this.getRuleContext(0, SelectStatementContext)!; + public createDefinitions(): CreateDefinitionsContext { + return this.getRuleContext(0, CreateDefinitionsContext)!; } public KW_TEMPORARY(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_TEMPORARY, 0); @@ -52652,9 +52687,6 @@ export class ColumnCreateTableContext extends CreateTableContext { public ifNotExists(): IfNotExistsContext | null { return this.getRuleContext(0, IfNotExistsContext); } - public createDefinitions(): CreateDefinitionsContext | null { - return this.getRuleContext(0, CreateDefinitionsContext); - } public tableOption(): TableOptionContext[]; public tableOption(i: number): TableOptionContext | null; public tableOption(i?: number): TableOptionContext[] | TableOptionContext | null { @@ -52667,15 +52699,6 @@ export class ColumnCreateTableContext extends CreateTableContext { public partitionDefinitions(): PartitionDefinitionsContext | null { return this.getRuleContext(0, PartitionDefinitionsContext); } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_AS, 0); - } - public KW_IGNORE(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_IGNORE, 0); - } - public KW_REPLACE(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_REPLACE, 0); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -52704,6 +52727,8 @@ export class ColumnCreateTableContext extends CreateTableContext { } } export class QueryCreateTableContext extends CreateTableContext { + public _tb?: TableNameCreateContext; + public _col?: CreateDefinitionsContext; public constructor(ctx: CreateTableContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -52714,27 +52739,51 @@ export class QueryCreateTableContext extends CreateTableContext { public KW_TABLE(): antlr.TerminalNode { return this.getToken(MySqlParser.KW_TABLE, 0)!; } + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; + } public tableNameCreate(): TableNameCreateContext { return this.getRuleContext(0, TableNameCreateContext)!; } - public KW_LIKE(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_LIKE, 0); - } - public tableName(): TableNameContext | null { - return this.getRuleContext(0, TableNameContext); - } - public LR_BRACKET(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.LR_BRACKET, 0); - } - public RR_BRACKET(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.RR_BRACKET, 0); - } public KW_TEMPORARY(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_TEMPORARY, 0); } public ifNotExists(): IfNotExistsContext | null { return this.getRuleContext(0, IfNotExistsContext); } + public tableOption(): TableOptionContext[]; + public tableOption(i: number): TableOptionContext | null; + public tableOption(i?: number): TableOptionContext[] | TableOptionContext | null { + if (i === undefined) { + return this.getRuleContexts(TableOptionContext); + } + + return this.getRuleContext(i, TableOptionContext); + } + public partitionDefinitions(): PartitionDefinitionsContext | null { + return this.getRuleContext(0, PartitionDefinitionsContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_AS, 0); + } + public createDefinitions(): CreateDefinitionsContext | null { + return this.getRuleContext(0, CreateDefinitionsContext); + } + public KW_IGNORE(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_IGNORE, 0); + } + public KW_REPLACE(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_REPLACE, 0); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(MySqlParser.COMMA); + } else { + return this.getToken(MySqlParser.COMMA, i); + } + } public override enterRule(listener: MySqlParserListener): void { if(listener.enterQueryCreateTable) { listener.enterQueryCreateTable(this); @@ -53230,8 +53279,14 @@ export class CreateViewContext extends antlr.ParserRuleContext { public KW_SECURITY(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_SECURITY, 0); } - public columnNames(): ColumnNamesContext | null { - return this.getRuleContext(0, ColumnNamesContext); + public columnNameCreate(): ColumnNameCreateContext[]; + public columnNameCreate(i: number): ColumnNameCreateContext | null; + public columnNameCreate(i?: number): ColumnNameCreateContext[] | ColumnNameCreateContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnNameCreateContext); + } + + return this.getRuleContext(i, ColumnNameCreateContext); } public KW_UNDEFINED(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_UNDEFINED, 0); @@ -53260,6 +53315,15 @@ export class CreateViewContext extends antlr.ParserRuleContext { public KW_OPTION(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_OPTION, 0); } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(MySqlParser.COMMA); + } else { + return this.getToken(MySqlParser.COMMA, i); + } + } public KW_CASCADED(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_CASCADED, 0); } @@ -54209,8 +54273,8 @@ export class CreateDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnName(): ColumnNameContext | null { - return this.getRuleContext(0, ColumnNameContext); + public columnNameCreate(): ColumnNameCreateContext | null { + return this.getRuleContext(0, ColumnNameCreateContext); } public columnDefinition(): ColumnDefinitionContext | null { return this.getRuleContext(0, ColumnDefinitionContext); @@ -73900,8 +73964,8 @@ export class ShowCreateFunctionContext extends ShowStatementContext { public KW_FUNCTION(): antlr.TerminalNode { return this.getToken(MySqlParser.KW_FUNCTION, 0)!; } - public functionNameCreate(): FunctionNameCreateContext { - return this.getRuleContext(0, FunctionNameCreateContext)!; + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; } public override enterRule(listener: MySqlParserListener): void { if(listener.enterShowCreateFunction) { @@ -74109,8 +74173,8 @@ export class ShowCreateDbContext extends ShowStatementContext { public KW_CREATE(): antlr.TerminalNode { return this.getToken(MySqlParser.KW_CREATE, 0)!; } - public databaseNameCreate(): DatabaseNameCreateContext { - return this.getRuleContext(0, DatabaseNameCreateContext)!; + public databaseName(): DatabaseNameContext { + return this.getRuleContext(0, DatabaseNameContext)!; } public KW_DATABASE(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_DATABASE, 0); @@ -74487,8 +74551,8 @@ export class ShowCreateTableContext extends ShowStatementContext { public KW_TABLE(): antlr.TerminalNode { return this.getToken(MySqlParser.KW_TABLE, 0)!; } - public tableNameCreate(): TableNameCreateContext { - return this.getRuleContext(0, TableNameCreateContext)!; + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; } public override enterRule(listener: MySqlParserListener): void { if(listener.enterShowCreateTable) { @@ -74661,8 +74725,8 @@ export class ShowCreateViewContext extends ShowStatementContext { public KW_VIEW(): antlr.TerminalNode { return this.getToken(MySqlParser.KW_VIEW, 0)!; } - public viewNameCreate(): ViewNameCreateContext { - return this.getRuleContext(0, ViewNameCreateContext)!; + public viewName(): ViewNameContext { + return this.getRuleContext(0, ViewNameContext)!; } public override enterRule(listener: MySqlParserListener): void { if(listener.enterShowCreateView) { @@ -79965,11 +80029,11 @@ export class UdfFunctionCallContext extends FunctionCallContext { public functionName(): FunctionNameContext { return this.getRuleContext(0, FunctionNameContext)!; } - public LR_BRACKET(): antlr.TerminalNode { - return this.getToken(MySqlParser.LR_BRACKET, 0)!; + public LR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.LR_BRACKET, 0); } - public RR_BRACKET(): antlr.TerminalNode { - return this.getToken(MySqlParser.RR_BRACKET, 0)!; + public RR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.RR_BRACKET, 0); } public functionArgs(): FunctionArgsContext | null { return this.getRuleContext(0, FunctionArgsContext); @@ -80052,11 +80116,11 @@ export class ScalarFunctionCallContext extends FunctionCallContext { public scalarFunctionName(): ScalarFunctionNameContext { return this.getRuleContext(0, ScalarFunctionNameContext)!; } - public LR_BRACKET(): antlr.TerminalNode { - return this.getToken(MySqlParser.LR_BRACKET, 0)!; + public LR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.LR_BRACKET, 0); } - public RR_BRACKET(): antlr.TerminalNode { - return this.getToken(MySqlParser.RR_BRACKET, 0)!; + public RR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.RR_BRACKET, 0); } public functionArgs(): FunctionArgsContext | null { return this.getRuleContext(0, FunctionArgsContext); @@ -81742,9 +81806,6 @@ export class FunctionArgContext extends antlr.ParserRuleContext { public constant(): ConstantContext | null { return this.getRuleContext(0, ConstantContext); } - public columnName(): ColumnNameContext | null { - return this.getRuleContext(0, ColumnNameContext); - } public functionCall(): FunctionCallContext | null { return this.getRuleContext(0, FunctionCallContext); } @@ -81998,54 +82059,6 @@ export class ExpressionAtomPredicateContext extends PredicateContext { } } } -export class SubqueryComparisonPredicateContext extends PredicateContext { - public _quantifier?: Token | null; - public constructor(ctx: PredicateContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public predicate(): PredicateContext { - return this.getRuleContext(0, PredicateContext)!; - } - public comparisonOperator(): ComparisonOperatorContext { - return this.getRuleContext(0, ComparisonOperatorContext)!; - } - public LR_BRACKET(): antlr.TerminalNode { - return this.getToken(MySqlParser.LR_BRACKET, 0)!; - } - public selectStatement(): SelectStatementContext { - return this.getRuleContext(0, SelectStatementContext)!; - } - public RR_BRACKET(): antlr.TerminalNode { - return this.getToken(MySqlParser.RR_BRACKET, 0)!; - } - public KW_ALL(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_ALL, 0); - } - public KW_ANY(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_ANY, 0); - } - public KW_SOME(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_SOME, 0); - } - public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSubqueryComparisonPredicate) { - listener.enterSubqueryComparisonPredicate(this); - } - } - public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSubqueryComparisonPredicate) { - listener.exitSubqueryComparisonPredicate(this); - } - } - public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSubqueryComparisonPredicate) { - return visitor.visitSubqueryComparisonPredicate(this); - } else { - return visitor.visitChildren(this); - } - } -} export class JsonMemberOfPredicateContext extends PredicateContext { public constructor(ctx: PredicateContext) { super(ctx.parent, ctx.invokingState); @@ -82091,15 +82104,13 @@ export class JsonMemberOfPredicateContext extends PredicateContext { } } export class BinaryComparisonPredicateContext extends PredicateContext { - public _left?: PredicateContext; + public _quantifier?: Token | null; + public _subQuery?: SelectStatementContext; public _right?: PredicateContext; public constructor(ctx: PredicateContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public comparisonOperator(): ComparisonOperatorContext { - return this.getRuleContext(0, ComparisonOperatorContext)!; - } public predicate(): PredicateContext[]; public predicate(i: number): PredicateContext | null; public predicate(i?: number): PredicateContext[] | PredicateContext | null { @@ -82109,6 +82120,27 @@ export class BinaryComparisonPredicateContext extends PredicateContext { return this.getRuleContext(i, PredicateContext); } + public comparisonOperator(): ComparisonOperatorContext { + return this.getRuleContext(0, ComparisonOperatorContext)!; + } + public LR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.LR_BRACKET, 0); + } + public RR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.RR_BRACKET, 0); + } + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); + } + public KW_ALL(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_ALL, 0); + } + public KW_ANY(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_ANY, 0); + } + public KW_SOME(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_SOME, 0); + } public override enterRule(listener: MySqlParserListener): void { if(listener.enterBinaryComparisonPredicate) { listener.enterBinaryComparisonPredicate(this); @@ -82924,9 +82956,6 @@ export class ComparisonOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public comparisonBase(): ComparisonBaseContext | null { - return this.getRuleContext(0, ComparisonBaseContext); - } public LESS_SYMBOL(): antlr.TerminalNode | null { return this.getToken(MySqlParser.LESS_SYMBOL, 0); } @@ -82939,6 +82968,9 @@ export class ComparisonOperatorContext extends antlr.ParserRuleContext { public EQUAL_SYMBOL(): antlr.TerminalNode | null { return this.getToken(MySqlParser.EQUAL_SYMBOL, 0); } + public comparisonBase(): ComparisonBaseContext | null { + return this.getRuleContext(0, ComparisonBaseContext); + } public override get ruleIndex(): number { return MySqlParser.RULE_comparisonOperator; } @@ -82966,15 +82998,15 @@ export class ComparisonBaseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public LESS_SYMBOL(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.LESS_SYMBOL, 0); + } public EQUAL_SYMBOL(): antlr.TerminalNode | null { return this.getToken(MySqlParser.EQUAL_SYMBOL, 0); } public GREATER_SYMBOL(): antlr.TerminalNode | null { return this.getToken(MySqlParser.GREATER_SYMBOL, 0); } - public LESS_SYMBOL(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.LESS_SYMBOL, 0); - } public override get ruleIndex(): number { return MySqlParser.RULE_comparisonBase; } diff --git a/src/lib/mysql/MySqlParserListener.ts b/src/lib/mysql/MySqlParserListener.ts index 2ec915a..1814786 100644 --- a/src/lib/mysql/MySqlParserListener.ts +++ b/src/lib/mysql/MySqlParserListener.ts @@ -3,6 +3,9 @@ import { ErrorNode, ParseTreeListener, ParserRuleContext, TerminalNode } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./MySqlParser.js"; import { SingleStatementContext } from "./MySqlParser.js"; import { SqlStatementContext } from "./MySqlParser.js"; @@ -22,9 +25,9 @@ import { CreateLogfileGroupContext } from "./MySqlParser.js"; import { CreateProcedureContext } from "./MySqlParser.js"; import { CreateRoleContext } from "./MySqlParser.js"; import { CreateServerContext } from "./MySqlParser.js"; +import { QueryCreateTableContext } from "./MySqlParser.js"; import { CopyCreateTableContext } from "./MySqlParser.js"; import { ColumnCreateTableContext } from "./MySqlParser.js"; -import { QueryCreateTableContext } from "./MySqlParser.js"; import { CreateTablespaceInnodbContext } from "./MySqlParser.js"; import { CreateTablespaceNdbContext } from "./MySqlParser.js"; import { CreateTriggerContext } from "./MySqlParser.js"; @@ -635,7 +638,6 @@ import { LogicalExpressionContext } from "./MySqlParser.js"; import { PredicateExpressionContext } from "./MySqlParser.js"; import { SoundsLikePredicateContext } from "./MySqlParser.js"; import { ExpressionAtomPredicateContext } from "./MySqlParser.js"; -import { SubqueryComparisonPredicateContext } from "./MySqlParser.js"; import { JsonMemberOfPredicateContext } from "./MySqlParser.js"; import { BinaryComparisonPredicateContext } from "./MySqlParser.js"; import { InPredicateContext } from "./MySqlParser.js"; @@ -870,6 +872,18 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitCreateServer?: (ctx: CreateServerContext) => void; + /** + * Enter a parse tree produced by the `queryCreateTable` + * labeled alternative in `MySqlParser.createTable`. + * @param ctx the parse tree + */ + enterQueryCreateTable?: (ctx: QueryCreateTableContext) => void; + /** + * Exit a parse tree produced by the `queryCreateTable` + * labeled alternative in `MySqlParser.createTable`. + * @param ctx the parse tree + */ + exitQueryCreateTable?: (ctx: QueryCreateTableContext) => void; /** * Enter a parse tree produced by the `copyCreateTable` * labeled alternative in `MySqlParser.createTable`. @@ -894,18 +908,6 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnCreateTable?: (ctx: ColumnCreateTableContext) => void; - /** - * Enter a parse tree produced by the `queryCreateTable` - * labeled alternative in `MySqlParser.createTable`. - * @param ctx the parse tree - */ - enterQueryCreateTable?: (ctx: QueryCreateTableContext) => void; - /** - * Exit a parse tree produced by the `queryCreateTable` - * labeled alternative in `MySqlParser.createTable`. - * @param ctx the parse tree - */ - exitQueryCreateTable?: (ctx: QueryCreateTableContext) => void; /** * Enter a parse tree produced by `MySqlParser.createTablespaceInnodb`. * @param ctx the parse tree @@ -7540,18 +7542,6 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitExpressionAtomPredicate?: (ctx: ExpressionAtomPredicateContext) => void; - /** - * Enter a parse tree produced by the `subqueryComparisonPredicate` - * labeled alternative in `MySqlParser.predicate`. - * @param ctx the parse tree - */ - enterSubqueryComparisonPredicate?: (ctx: SubqueryComparisonPredicateContext) => void; - /** - * Exit a parse tree produced by the `subqueryComparisonPredicate` - * labeled alternative in `MySqlParser.predicate`. - * @param ctx the parse tree - */ - exitSubqueryComparisonPredicate?: (ctx: SubqueryComparisonPredicateContext) => void; /** * Enter a parse tree produced by the `jsonMemberOfPredicate` * labeled alternative in `MySqlParser.predicate`. diff --git a/src/lib/mysql/MySqlParserVisitor.ts b/src/lib/mysql/MySqlParserVisitor.ts index 6858bfa..85b03db 100644 --- a/src/lib/mysql/MySqlParserVisitor.ts +++ b/src/lib/mysql/MySqlParserVisitor.ts @@ -3,6 +3,9 @@ import { AbstractParseTreeVisitor } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./MySqlParser.js"; import { SingleStatementContext } from "./MySqlParser.js"; import { SqlStatementContext } from "./MySqlParser.js"; @@ -22,9 +25,9 @@ import { CreateLogfileGroupContext } from "./MySqlParser.js"; import { CreateProcedureContext } from "./MySqlParser.js"; import { CreateRoleContext } from "./MySqlParser.js"; import { CreateServerContext } from "./MySqlParser.js"; +import { QueryCreateTableContext } from "./MySqlParser.js"; import { CopyCreateTableContext } from "./MySqlParser.js"; import { ColumnCreateTableContext } from "./MySqlParser.js"; -import { QueryCreateTableContext } from "./MySqlParser.js"; import { CreateTablespaceInnodbContext } from "./MySqlParser.js"; import { CreateTablespaceNdbContext } from "./MySqlParser.js"; import { CreateTriggerContext } from "./MySqlParser.js"; @@ -635,7 +638,6 @@ import { LogicalExpressionContext } from "./MySqlParser.js"; import { PredicateExpressionContext } from "./MySqlParser.js"; import { SoundsLikePredicateContext } from "./MySqlParser.js"; import { ExpressionAtomPredicateContext } from "./MySqlParser.js"; -import { SubqueryComparisonPredicateContext } from "./MySqlParser.js"; import { JsonMemberOfPredicateContext } from "./MySqlParser.js"; import { BinaryComparisonPredicateContext } from "./MySqlParser.js"; import { InPredicateContext } from "./MySqlParser.js"; @@ -797,6 +799,13 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitCreateServer?: (ctx: CreateServerContext) => Result; + /** + * Visit a parse tree produced by the `queryCreateTable` + * labeled alternative in `MySqlParser.createTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitQueryCreateTable?: (ctx: QueryCreateTableContext) => Result; /** * Visit a parse tree produced by the `copyCreateTable` * labeled alternative in `MySqlParser.createTable`. @@ -811,13 +820,6 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitColumnCreateTable?: (ctx: ColumnCreateTableContext) => Result; - /** - * Visit a parse tree produced by the `queryCreateTable` - * labeled alternative in `MySqlParser.createTable`. - * @param ctx the parse tree - * @return the visitor result - */ - visitQueryCreateTable?: (ctx: QueryCreateTableContext) => Result; /** * Visit a parse tree produced by `MySqlParser.createTablespaceInnodb`. * @param ctx the parse tree @@ -4745,13 +4747,6 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitExpressionAtomPredicate?: (ctx: ExpressionAtomPredicateContext) => Result; - /** - * Visit a parse tree produced by the `subqueryComparisonPredicate` - * labeled alternative in `MySqlParser.predicate`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSubqueryComparisonPredicate?: (ctx: SubqueryComparisonPredicateContext) => Result; /** * Visit a parse tree produced by the `jsonMemberOfPredicate` * labeled alternative in `MySqlParser.predicate`. diff --git a/src/lib/pgsql/PostgreSQLParser.interp b/src/lib/pgsql/PostgreSQLParser.interp index 529d216..88d08fe 100644 --- a/src/lib/pgsql/PostgreSQLParser.interp +++ b/src/lib/pgsql/PostgreSQLParser.interp @@ -1288,8 +1288,7 @@ tableelementlist typedtableelementlist tableelement typedtableelement -columnDefCluase -columnDef +column_def compressionCluase storageCluase columnOptions @@ -1307,7 +1306,9 @@ tableconstraint constraintelem opt_no_inherit opt_column_list -columnlist +opt_column_list_create +column_list +column_list_create opt_c_include key_match exclusionconstraintlist @@ -2062,4 +2063,4 @@ opt_returning_clause_into atn: -[4, 1, 590, 11832, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 2, 552, 7, 552, 2, 553, 7, 553, 2, 554, 7, 554, 2, 555, 7, 555, 2, 556, 7, 556, 2, 557, 7, 557, 2, 558, 7, 558, 2, 559, 7, 559, 2, 560, 7, 560, 2, 561, 7, 561, 2, 562, 7, 562, 2, 563, 7, 563, 2, 564, 7, 564, 2, 565, 7, 565, 2, 566, 7, 566, 2, 567, 7, 567, 2, 568, 7, 568, 2, 569, 7, 569, 2, 570, 7, 570, 2, 571, 7, 571, 2, 572, 7, 572, 2, 573, 7, 573, 2, 574, 7, 574, 2, 575, 7, 575, 2, 576, 7, 576, 2, 577, 7, 577, 2, 578, 7, 578, 2, 579, 7, 579, 2, 580, 7, 580, 2, 581, 7, 581, 2, 582, 7, 582, 2, 583, 7, 583, 2, 584, 7, 584, 2, 585, 7, 585, 2, 586, 7, 586, 2, 587, 7, 587, 2, 588, 7, 588, 2, 589, 7, 589, 2, 590, 7, 590, 2, 591, 7, 591, 2, 592, 7, 592, 2, 593, 7, 593, 2, 594, 7, 594, 2, 595, 7, 595, 2, 596, 7, 596, 2, 597, 7, 597, 2, 598, 7, 598, 2, 599, 7, 599, 2, 600, 7, 600, 2, 601, 7, 601, 2, 602, 7, 602, 2, 603, 7, 603, 2, 604, 7, 604, 2, 605, 7, 605, 2, 606, 7, 606, 2, 607, 7, 607, 2, 608, 7, 608, 2, 609, 7, 609, 2, 610, 7, 610, 2, 611, 7, 611, 2, 612, 7, 612, 2, 613, 7, 613, 2, 614, 7, 614, 2, 615, 7, 615, 2, 616, 7, 616, 2, 617, 7, 617, 2, 618, 7, 618, 2, 619, 7, 619, 2, 620, 7, 620, 2, 621, 7, 621, 2, 622, 7, 622, 2, 623, 7, 623, 2, 624, 7, 624, 2, 625, 7, 625, 2, 626, 7, 626, 2, 627, 7, 627, 2, 628, 7, 628, 2, 629, 7, 629, 2, 630, 7, 630, 2, 631, 7, 631, 2, 632, 7, 632, 2, 633, 7, 633, 2, 634, 7, 634, 2, 635, 7, 635, 2, 636, 7, 636, 2, 637, 7, 637, 2, 638, 7, 638, 2, 639, 7, 639, 2, 640, 7, 640, 2, 641, 7, 641, 2, 642, 7, 642, 2, 643, 7, 643, 2, 644, 7, 644, 2, 645, 7, 645, 2, 646, 7, 646, 2, 647, 7, 647, 2, 648, 7, 648, 2, 649, 7, 649, 2, 650, 7, 650, 2, 651, 7, 651, 2, 652, 7, 652, 2, 653, 7, 653, 2, 654, 7, 654, 2, 655, 7, 655, 2, 656, 7, 656, 2, 657, 7, 657, 2, 658, 7, 658, 2, 659, 7, 659, 2, 660, 7, 660, 2, 661, 7, 661, 2, 662, 7, 662, 2, 663, 7, 663, 2, 664, 7, 664, 2, 665, 7, 665, 2, 666, 7, 666, 2, 667, 7, 667, 2, 668, 7, 668, 2, 669, 7, 669, 2, 670, 7, 670, 2, 671, 7, 671, 2, 672, 7, 672, 2, 673, 7, 673, 2, 674, 7, 674, 2, 675, 7, 675, 2, 676, 7, 676, 2, 677, 7, 677, 2, 678, 7, 678, 2, 679, 7, 679, 2, 680, 7, 680, 2, 681, 7, 681, 2, 682, 7, 682, 2, 683, 7, 683, 2, 684, 7, 684, 2, 685, 7, 685, 2, 686, 7, 686, 2, 687, 7, 687, 2, 688, 7, 688, 2, 689, 7, 689, 2, 690, 7, 690, 2, 691, 7, 691, 2, 692, 7, 692, 2, 693, 7, 693, 2, 694, 7, 694, 2, 695, 7, 695, 2, 696, 7, 696, 2, 697, 7, 697, 2, 698, 7, 698, 2, 699, 7, 699, 2, 700, 7, 700, 2, 701, 7, 701, 2, 702, 7, 702, 2, 703, 7, 703, 2, 704, 7, 704, 2, 705, 7, 705, 2, 706, 7, 706, 2, 707, 7, 707, 2, 708, 7, 708, 2, 709, 7, 709, 2, 710, 7, 710, 2, 711, 7, 711, 2, 712, 7, 712, 2, 713, 7, 713, 2, 714, 7, 714, 2, 715, 7, 715, 2, 716, 7, 716, 2, 717, 7, 717, 2, 718, 7, 718, 2, 719, 7, 719, 2, 720, 7, 720, 2, 721, 7, 721, 2, 722, 7, 722, 2, 723, 7, 723, 2, 724, 7, 724, 2, 725, 7, 725, 2, 726, 7, 726, 2, 727, 7, 727, 2, 728, 7, 728, 2, 729, 7, 729, 2, 730, 7, 730, 2, 731, 7, 731, 2, 732, 7, 732, 2, 733, 7, 733, 2, 734, 7, 734, 2, 735, 7, 735, 2, 736, 7, 736, 2, 737, 7, 737, 2, 738, 7, 738, 2, 739, 7, 739, 2, 740, 7, 740, 2, 741, 7, 741, 2, 742, 7, 742, 2, 743, 7, 743, 2, 744, 7, 744, 2, 745, 7, 745, 2, 746, 7, 746, 2, 747, 7, 747, 2, 748, 7, 748, 2, 749, 7, 749, 2, 750, 7, 750, 2, 751, 7, 751, 2, 752, 7, 752, 2, 753, 7, 753, 2, 754, 7, 754, 2, 755, 7, 755, 2, 756, 7, 756, 2, 757, 7, 757, 2, 758, 7, 758, 2, 759, 7, 759, 2, 760, 7, 760, 2, 761, 7, 761, 2, 762, 7, 762, 2, 763, 7, 763, 2, 764, 7, 764, 2, 765, 7, 765, 2, 766, 7, 766, 2, 767, 7, 767, 2, 768, 7, 768, 2, 769, 7, 769, 2, 770, 7, 770, 2, 771, 7, 771, 2, 772, 7, 772, 2, 773, 7, 773, 2, 774, 7, 774, 2, 775, 7, 775, 2, 776, 7, 776, 2, 777, 7, 777, 2, 778, 7, 778, 2, 779, 7, 779, 2, 780, 7, 780, 2, 781, 7, 781, 2, 782, 7, 782, 2, 783, 7, 783, 2, 784, 7, 784, 2, 785, 7, 785, 2, 786, 7, 786, 2, 787, 7, 787, 2, 788, 7, 788, 2, 789, 7, 789, 2, 790, 7, 790, 2, 791, 7, 791, 2, 792, 7, 792, 2, 793, 7, 793, 2, 794, 7, 794, 2, 795, 7, 795, 2, 796, 7, 796, 2, 797, 7, 797, 2, 798, 7, 798, 2, 799, 7, 799, 2, 800, 7, 800, 2, 801, 7, 801, 2, 802, 7, 802, 2, 803, 7, 803, 2, 804, 7, 804, 2, 805, 7, 805, 2, 806, 7, 806, 2, 807, 7, 807, 2, 808, 7, 808, 2, 809, 7, 809, 2, 810, 7, 810, 2, 811, 7, 811, 2, 812, 7, 812, 2, 813, 7, 813, 2, 814, 7, 814, 2, 815, 7, 815, 2, 816, 7, 816, 2, 817, 7, 817, 2, 818, 7, 818, 2, 819, 7, 819, 2, 820, 7, 820, 2, 821, 7, 821, 2, 822, 7, 822, 2, 823, 7, 823, 2, 824, 7, 824, 2, 825, 7, 825, 2, 826, 7, 826, 2, 827, 7, 827, 2, 828, 7, 828, 2, 829, 7, 829, 2, 830, 7, 830, 2, 831, 7, 831, 2, 832, 7, 832, 2, 833, 7, 833, 2, 834, 7, 834, 2, 835, 7, 835, 2, 836, 7, 836, 2, 837, 7, 837, 2, 838, 7, 838, 2, 839, 7, 839, 2, 840, 7, 840, 2, 841, 7, 841, 2, 842, 7, 842, 2, 843, 7, 843, 2, 844, 7, 844, 2, 845, 7, 845, 2, 846, 7, 846, 2, 847, 7, 847, 2, 848, 7, 848, 2, 849, 7, 849, 2, 850, 7, 850, 2, 851, 7, 851, 2, 852, 7, 852, 2, 853, 7, 853, 2, 854, 7, 854, 2, 855, 7, 855, 2, 856, 7, 856, 2, 857, 7, 857, 2, 858, 7, 858, 2, 859, 7, 859, 2, 860, 7, 860, 2, 861, 7, 861, 2, 862, 7, 862, 2, 863, 7, 863, 2, 864, 7, 864, 2, 865, 7, 865, 2, 866, 7, 866, 2, 867, 7, 867, 2, 868, 7, 868, 2, 869, 7, 869, 2, 870, 7, 870, 2, 871, 7, 871, 2, 872, 7, 872, 2, 873, 7, 873, 1, 0, 5, 0, 1750, 8, 0, 10, 0, 12, 0, 1753, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 1761, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1880, 8, 3, 1, 4, 1, 4, 3, 4, 1884, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1893, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 5, 8, 1900, 8, 8, 10, 8, 12, 8, 1903, 9, 8, 1, 9, 5, 9, 1906, 8, 9, 10, 9, 12, 9, 1909, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1914, 8, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1946, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1958, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1964, 8, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1972, 8, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1980, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1986, 8, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1995, 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 2001, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 2013, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 2019, 8, 17, 1, 18, 1, 18, 5, 18, 2023, 8, 18, 10, 18, 12, 18, 2026, 9, 18, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2032, 8, 19, 1, 19, 1, 19, 3, 19, 2036, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2041, 8, 19, 1, 19, 1, 19, 3, 19, 2045, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2058, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2069, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 2075, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 3, 23, 2091, 8, 23, 1, 23, 3, 23, 2094, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 2099, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 2105, 8, 24, 1, 25, 5, 25, 2108, 8, 25, 10, 25, 12, 25, 2111, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 2119, 8, 26, 1, 27, 1, 27, 3, 27, 2123, 8, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 2135, 8, 28, 1, 29, 1, 29, 3, 29, 2139, 8, 29, 1, 29, 3, 29, 2142, 8, 29, 1, 29, 1, 29, 3, 29, 2146, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 2157, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 2175, 8, 30, 1, 31, 1, 31, 1, 31, 5, 31, 2180, 8, 31, 10, 31, 12, 31, 2183, 9, 31, 1, 32, 1, 32, 1, 32, 5, 32, 2188, 8, 32, 10, 32, 12, 32, 2191, 9, 32, 1, 33, 1, 33, 3, 33, 2195, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 2202, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 2208, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 2214, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 2221, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 2232, 8, 37, 1, 38, 1, 38, 3, 38, 2236, 8, 38, 1, 39, 1, 39, 3, 39, 2240, 8, 39, 1, 40, 1, 40, 3, 40, 2244, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 2257, 8, 42, 1, 43, 1, 43, 3, 43, 2261, 8, 43, 1, 44, 1, 44, 1, 44, 3, 44, 2266, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 2271, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 2283, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 2292, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 2304, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2309, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2320, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2326, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2331, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2341, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2346, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2353, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2358, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2363, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2374, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2380, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2385, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2393, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2402, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2417, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2423, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2429, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2434, 8, 52, 1, 53, 1, 53, 1, 53, 5, 53, 2439, 8, 53, 10, 53, 12, 53, 2442, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2453, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2459, 8, 55, 10, 55, 12, 55, 2462, 9, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 2469, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2487, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 3, 60, 2496, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2510, 8, 60, 1, 60, 1, 60, 3, 60, 2514, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2529, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2537, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2547, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2587, 8, 60, 1, 60, 3, 60, 2590, 8, 60, 1, 60, 1, 60, 3, 60, 2594, 8, 60, 1, 60, 1, 60, 3, 60, 2598, 8, 60, 1, 60, 3, 60, 2601, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2606, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2613, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2622, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2628, 8, 60, 1, 60, 1, 60, 3, 60, 2632, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2641, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2649, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2658, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2667, 8, 60, 1, 60, 1, 60, 3, 60, 2671, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2678, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2684, 8, 60, 1, 60, 1, 60, 3, 60, 2688, 8, 60, 1, 60, 1, 60, 3, 60, 2692, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2697, 8, 60, 1, 60, 3, 60, 2700, 8, 60, 1, 60, 1, 60, 3, 60, 2704, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2710, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2717, 8, 61, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2733, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 5, 68, 2745, 8, 68, 10, 68, 12, 68, 2748, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2757, 8, 69, 3, 69, 2759, 8, 69, 1, 70, 4, 70, 2762, 8, 70, 11, 70, 12, 70, 2763, 1, 71, 1, 71, 3, 71, 2768, 8, 71, 1, 71, 3, 71, 2771, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2777, 8, 71, 3, 71, 2779, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2807, 8, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 5, 74, 2815, 8, 74, 10, 74, 12, 74, 2818, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 5, 76, 2828, 8, 76, 10, 76, 12, 76, 2831, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2837, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2842, 8, 77, 1, 77, 1, 77, 3, 77, 2846, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2852, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2857, 8, 77, 1, 77, 3, 77, 2860, 8, 77, 3, 77, 2862, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 2867, 8, 78, 1, 79, 1, 79, 3, 79, 2871, 8, 79, 1, 79, 1, 79, 3, 79, 2875, 8, 79, 1, 79, 1, 79, 3, 79, 2879, 8, 79, 1, 79, 1, 79, 3, 79, 2883, 8, 79, 1, 79, 3, 79, 2886, 8, 79, 1, 79, 1, 79, 3, 79, 2890, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2898, 8, 79, 1, 79, 1, 79, 3, 79, 2902, 8, 79, 1, 79, 1, 79, 3, 79, 2906, 8, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 3, 82, 2915, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2922, 8, 83, 1, 84, 5, 84, 2925, 8, 84, 10, 84, 12, 84, 2928, 9, 84, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2934, 8, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2939, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2946, 8, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2951, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2969, 8, 85, 1, 86, 1, 86, 1, 87, 3, 87, 2974, 8, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 5, 89, 2984, 8, 89, 10, 89, 12, 89, 2987, 9, 89, 1, 90, 1, 90, 3, 90, 2991, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 3000, 8, 91, 1, 92, 1, 92, 1, 92, 5, 92, 3005, 8, 92, 10, 92, 12, 92, 3008, 9, 92, 1, 93, 1, 93, 1, 94, 1, 94, 3, 94, 3014, 8, 94, 1, 94, 1, 94, 3, 94, 3018, 8, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3023, 8, 94, 1, 94, 1, 94, 3, 94, 3027, 8, 94, 1, 94, 3, 94, 3030, 8, 94, 1, 94, 3, 94, 3033, 8, 94, 1, 94, 3, 94, 3036, 8, 94, 1, 94, 3, 94, 3039, 8, 94, 1, 94, 3, 94, 3042, 8, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3047, 8, 94, 1, 94, 3, 94, 3050, 8, 94, 1, 94, 3, 94, 3053, 8, 94, 1, 94, 3, 94, 3056, 8, 94, 1, 94, 3, 94, 3059, 8, 94, 1, 94, 3, 94, 3062, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3068, 8, 94, 1, 94, 1, 94, 3, 94, 3072, 8, 94, 1, 94, 3, 94, 3075, 8, 94, 1, 94, 3, 94, 3078, 8, 94, 1, 94, 3, 94, 3081, 8, 94, 1, 94, 3, 94, 3084, 8, 94, 3, 94, 3086, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3095, 8, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 5, 99, 3108, 8, 99, 10, 99, 12, 99, 3111, 9, 99, 1, 100, 1, 100, 1, 100, 5, 100, 3116, 8, 100, 10, 100, 12, 100, 3119, 9, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3124, 8, 101, 1, 102, 1, 102, 3, 102, 3128, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3133, 8, 103, 1, 103, 3, 103, 3136, 8, 103, 1, 103, 3, 103, 3139, 8, 103, 1, 103, 1, 103, 3, 103, 3143, 8, 103, 1, 103, 1, 103, 3, 103, 3147, 8, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 3, 104, 3154, 8, 104, 1, 104, 3, 104, 3157, 8, 104, 1, 104, 3, 104, 3160, 8, 104, 1, 104, 1, 104, 3, 104, 3164, 8, 104, 1, 104, 1, 104, 3, 104, 3168, 8, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3182, 8, 106, 1, 107, 1, 107, 1, 107, 3, 107, 3187, 8, 107, 1, 107, 1, 107, 1, 108, 5, 108, 3192, 8, 108, 10, 108, 12, 108, 3195, 9, 108, 1, 109, 1, 109, 3, 109, 3199, 8, 109, 1, 109, 1, 109, 3, 109, 3203, 8, 109, 1, 109, 3, 109, 3206, 8, 109, 1, 109, 1, 109, 3, 109, 3210, 8, 109, 1, 109, 3, 109, 3213, 8, 109, 3, 109, 3215, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3222, 8, 110, 1, 110, 3, 110, 3225, 8, 110, 1, 110, 1, 110, 3, 110, 3229, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3235, 8, 110, 1, 110, 3, 110, 3238, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3245, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3254, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3261, 8, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3266, 8, 110, 1, 110, 3, 110, 3269, 8, 110, 1, 110, 3, 110, 3272, 8, 110, 1, 110, 3, 110, 3275, 8, 110, 1, 111, 1, 111, 3, 111, 3279, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 3, 112, 3286, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3291, 8, 113, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 5, 116, 3302, 8, 116, 10, 116, 12, 116, 3305, 9, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3314, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3327, 8, 119, 1, 119, 3, 119, 3330, 8, 119, 1, 119, 3, 119, 3333, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3340, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3348, 8, 119, 1, 119, 3, 119, 3351, 8, 119, 1, 119, 3, 119, 3354, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3361, 8, 119, 1, 119, 1, 119, 3, 119, 3365, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3371, 8, 119, 1, 119, 3, 119, 3374, 8, 119, 1, 119, 3, 119, 3377, 8, 119, 1, 119, 3, 119, 3380, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3392, 8, 119, 1, 119, 3, 119, 3395, 8, 119, 1, 119, 3, 119, 3398, 8, 119, 1, 119, 1, 119, 3, 119, 3402, 8, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 5, 122, 3414, 8, 122, 10, 122, 12, 122, 3417, 9, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 5, 125, 3430, 8, 125, 10, 125, 12, 125, 3433, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3443, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3458, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3475, 8, 131, 3, 131, 3477, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 5, 135, 3496, 8, 135, 10, 135, 12, 135, 3499, 9, 135, 1, 136, 1, 136, 3, 136, 3503, 8, 136, 1, 136, 3, 136, 3506, 8, 136, 1, 136, 1, 136, 3, 136, 3510, 8, 136, 1, 136, 3, 136, 3513, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3519, 8, 136, 1, 136, 3, 136, 3522, 8, 136, 3, 136, 3524, 8, 136, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3535, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3544, 8, 139, 1, 140, 1, 140, 1, 140, 1, 141, 3, 141, 3550, 8, 141, 1, 141, 3, 141, 3553, 8, 141, 1, 141, 3, 141, 3556, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 3, 144, 3570, 8, 144, 1, 144, 3, 144, 3573, 8, 144, 1, 144, 3, 144, 3576, 8, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3581, 8, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 3, 145, 3589, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 3, 146, 3598, 8, 146, 1, 146, 1, 146, 3, 146, 3602, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3608, 8, 146, 1, 147, 1, 147, 3, 147, 3612, 8, 147, 1, 147, 3, 147, 3615, 8, 147, 1, 147, 3, 147, 3618, 8, 147, 1, 147, 3, 147, 3621, 8, 147, 1, 147, 3, 147, 3624, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3630, 8, 148, 1, 149, 1, 149, 3, 149, 3634, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3639, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3645, 8, 149, 1, 150, 1, 150, 3, 150, 3649, 8, 150, 1, 150, 3, 150, 3652, 8, 150, 1, 150, 3, 150, 3655, 8, 150, 1, 150, 3, 150, 3658, 8, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3666, 8, 152, 1, 152, 1, 152, 3, 152, 3670, 8, 152, 1, 153, 1, 153, 3, 153, 3674, 8, 153, 1, 153, 1, 153, 3, 153, 3678, 8, 153, 1, 153, 1, 153, 3, 153, 3682, 8, 153, 1, 154, 1, 154, 1, 154, 3, 154, 3687, 8, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 4, 157, 3699, 8, 157, 11, 157, 12, 157, 3700, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3710, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3727, 8, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3732, 8, 158, 1, 158, 3, 158, 3735, 8, 158, 3, 158, 3737, 8, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3747, 8, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3752, 8, 161, 10, 161, 12, 161, 3755, 9, 161, 1, 162, 1, 162, 3, 162, 3759, 8, 162, 1, 162, 3, 162, 3762, 8, 162, 1, 162, 3, 162, 3765, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3772, 8, 162, 1, 162, 3, 162, 3775, 8, 162, 3, 162, 3777, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 3, 164, 3783, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 3792, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3802, 8, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3807, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 3, 171, 3815, 8, 171, 1, 171, 1, 171, 3, 171, 3819, 8, 171, 1, 171, 1, 171, 1, 172, 5, 172, 3824, 8, 172, 10, 172, 12, 172, 3827, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 3836, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 5, 175, 3845, 8, 175, 10, 175, 12, 175, 3848, 9, 175, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 3955, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 3963, 8, 178, 1, 178, 3, 178, 3966, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3976, 8, 179, 1, 180, 4, 180, 3979, 8, 180, 11, 180, 12, 180, 3980, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 3991, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4002, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 4012, 8, 184, 10, 184, 12, 184, 4015, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 5, 186, 4025, 8, 186, 10, 186, 12, 186, 4028, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 4037, 8, 187, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 3, 191, 4049, 8, 191, 1, 191, 1, 191, 3, 191, 4053, 8, 191, 1, 191, 3, 191, 4056, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4063, 8, 191, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4071, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4081, 8, 195, 3, 195, 4083, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4089, 8, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4094, 8, 196, 1, 196, 1, 196, 3, 196, 4098, 8, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4103, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4109, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4116, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4122, 8, 196, 3, 196, 4124, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4131, 8, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4139, 8, 197, 1, 198, 1, 198, 1, 198, 3, 198, 4144, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4155, 8, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4162, 8, 200, 1, 201, 1, 201, 3, 201, 4166, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4183, 8, 203, 1, 203, 3, 203, 4186, 8, 203, 1, 203, 3, 203, 4189, 8, 203, 1, 203, 3, 203, 4192, 8, 203, 1, 203, 3, 203, 4195, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4203, 8, 204, 1, 204, 3, 204, 4206, 8, 204, 1, 204, 3, 204, 4209, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4215, 8, 205, 1, 205, 1, 205, 1, 206, 1, 206, 5, 206, 4221, 8, 206, 10, 206, 12, 206, 4224, 9, 206, 1, 206, 3, 206, 4227, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4239, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4245, 8, 206, 1, 207, 3, 207, 4248, 8, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4253, 8, 207, 1, 207, 1, 207, 3, 207, 4257, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4264, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4275, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4298, 8, 212, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 3, 217, 4318, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4327, 8, 217, 1, 217, 3, 217, 4330, 8, 217, 1, 217, 3, 217, 4333, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4343, 8, 217, 1, 217, 3, 217, 4346, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4355, 8, 217, 1, 217, 1, 217, 3, 217, 4359, 8, 217, 1, 217, 3, 217, 4362, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4370, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 4376, 8, 218, 1, 219, 1, 219, 3, 219, 4380, 8, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 5, 221, 4389, 8, 221, 10, 221, 12, 221, 4392, 9, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 4401, 8, 222, 1, 223, 1, 223, 1, 223, 1, 224, 4, 224, 4407, 8, 224, 11, 224, 12, 224, 4408, 1, 225, 1, 225, 1, 225, 3, 225, 4414, 8, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 227, 1, 227, 1, 228, 1, 228, 1, 229, 1, 229, 3, 229, 4426, 8, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 4443, 8, 233, 1, 234, 1, 234, 3, 234, 4447, 8, 234, 1, 234, 1, 234, 5, 234, 4451, 8, 234, 10, 234, 12, 234, 4454, 9, 234, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 4460, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 5, 237, 4466, 8, 237, 10, 237, 12, 237, 4469, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 4482, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 4508, 8, 239, 1, 240, 1, 240, 1, 240, 5, 240, 4513, 8, 240, 10, 240, 12, 240, 4516, 9, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 5, 242, 4527, 8, 242, 10, 242, 12, 242, 4530, 9, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 3, 244, 4540, 8, 244, 1, 244, 3, 244, 4543, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 3, 246, 4556, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4565, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4590, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4601, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4643, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4651, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4657, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 5, 248, 4666, 8, 248, 10, 248, 12, 248, 4669, 9, 248, 1, 249, 1, 249, 1, 249, 3, 249, 4674, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4682, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 5, 252, 4691, 8, 252, 10, 252, 12, 252, 4694, 9, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 5, 255, 4705, 8, 255, 10, 255, 12, 255, 4708, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4716, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4721, 8, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4732, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 4743, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 4751, 8, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 5, 259, 4759, 8, 259, 10, 259, 12, 259, 4762, 9, 259, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4768, 8, 260, 1, 260, 3, 260, 4771, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4777, 8, 260, 1, 260, 3, 260, 4780, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4795, 8, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 4808, 8, 263, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 4837, 8, 266, 1, 267, 1, 267, 1, 267, 5, 267, 4842, 8, 267, 10, 267, 12, 267, 4845, 9, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 4859, 8, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 3, 270, 4871, 8, 270, 1, 270, 1, 270, 3, 270, 4875, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4880, 8, 270, 1, 270, 1, 270, 3, 270, 4884, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4889, 8, 270, 1, 270, 1, 270, 3, 270, 4893, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4899, 8, 270, 1, 270, 1, 270, 3, 270, 4903, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4908, 8, 270, 1, 270, 1, 270, 3, 270, 4912, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4918, 8, 270, 1, 270, 1, 270, 3, 270, 4922, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4927, 8, 270, 1, 270, 1, 270, 3, 270, 4931, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4936, 8, 270, 1, 270, 1, 270, 3, 270, 4940, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4945, 8, 270, 1, 270, 1, 270, 3, 270, 4949, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4956, 8, 270, 1, 270, 1, 270, 3, 270, 4960, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4967, 8, 270, 1, 270, 1, 270, 3, 270, 4971, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4978, 8, 270, 1, 270, 1, 270, 3, 270, 4982, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4989, 8, 270, 1, 270, 1, 270, 3, 270, 4993, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4999, 8, 270, 1, 270, 1, 270, 3, 270, 5003, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5009, 8, 270, 1, 270, 1, 270, 3, 270, 5013, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5018, 8, 270, 1, 270, 1, 270, 3, 270, 5022, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5029, 8, 270, 1, 270, 1, 270, 3, 270, 5033, 8, 270, 1, 270, 1, 270, 3, 270, 5037, 8, 270, 1, 270, 1, 270, 3, 270, 5041, 8, 270, 1, 270, 1, 270, 3, 270, 5045, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5050, 8, 270, 1, 270, 1, 270, 3, 270, 5054, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5059, 8, 270, 1, 270, 1, 270, 3, 270, 5063, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5068, 8, 270, 1, 270, 1, 270, 3, 270, 5072, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5077, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5083, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5088, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5094, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5099, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5105, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5110, 8, 270, 1, 270, 1, 270, 3, 270, 5114, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5119, 8, 270, 1, 270, 1, 270, 3, 270, 5123, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5129, 8, 270, 1, 270, 1, 270, 3, 270, 5133, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5138, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5146, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5152, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5158, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5164, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5170, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5177, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5182, 8, 270, 1, 270, 1, 270, 3, 270, 5186, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5191, 8, 270, 1, 270, 1, 270, 3, 270, 5195, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5200, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5206, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5213, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5218, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5225, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5235, 8, 270, 1, 270, 1, 270, 3, 270, 5239, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5245, 8, 270, 3, 270, 5247, 8, 270, 1, 271, 1, 271, 1, 271, 5, 271, 5252, 8, 271, 10, 271, 12, 271, 5255, 9, 271, 1, 272, 3, 272, 5258, 8, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5263, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5281, 8, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5296, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5314, 8, 273, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 5, 275, 5321, 8, 275, 10, 275, 12, 275, 5324, 9, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 5332, 8, 277, 1, 278, 1, 278, 3, 278, 5336, 8, 278, 1, 279, 1, 279, 4, 279, 5340, 8, 279, 11, 279, 12, 279, 5341, 1, 280, 1, 280, 1, 280, 5, 280, 5347, 8, 280, 10, 280, 12, 280, 5350, 9, 280, 1, 281, 1, 281, 3, 281, 5354, 8, 281, 1, 281, 1, 281, 1, 281, 5, 281, 5359, 8, 281, 10, 281, 12, 281, 5362, 9, 281, 1, 281, 1, 281, 3, 281, 5366, 8, 281, 1, 281, 3, 281, 5369, 8, 281, 1, 282, 3, 282, 5372, 8, 282, 1, 282, 1, 282, 3, 282, 5376, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5447, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5543, 8, 283, 1, 284, 1, 284, 3, 284, 5547, 8, 284, 1, 285, 1, 285, 1, 285, 3, 285, 5552, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5563, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5574, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5585, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5596, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5607, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5619, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5630, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5641, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5651, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5658, 8, 285, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 5665, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 5671, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5679, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5684, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5689, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5694, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5700, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5707, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5713, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5719, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5724, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5730, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5737, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5742, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5748, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5755, 8, 289, 1, 289, 3, 289, 5758, 8, 289, 1, 290, 1, 290, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 5771, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 5780, 8, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 5792, 8, 293, 3, 293, 5794, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 5812, 8, 294, 1, 295, 1, 295, 1, 295, 5, 295, 5817, 8, 295, 10, 295, 12, 295, 5820, 9, 295, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 5, 297, 5827, 8, 297, 10, 297, 12, 297, 5830, 9, 297, 1, 298, 1, 298, 3, 298, 5834, 8, 298, 1, 298, 1, 298, 3, 298, 5838, 8, 298, 1, 298, 1, 298, 3, 298, 5842, 8, 298, 1, 298, 1, 298, 3, 298, 5846, 8, 298, 3, 298, 5848, 8, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 5908, 8, 299, 1, 300, 1, 300, 1, 300, 5, 300, 5913, 8, 300, 10, 300, 12, 300, 5916, 9, 300, 1, 301, 1, 301, 1, 301, 3, 301, 5921, 8, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 5932, 8, 303, 1, 303, 3, 303, 5935, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 5942, 8, 304, 1, 304, 3, 304, 5945, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 5955, 8, 304, 1, 304, 3, 304, 5958, 8, 304, 3, 304, 5960, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 5, 308, 5977, 8, 308, 10, 308, 12, 308, 5980, 9, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 5991, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6000, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6009, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6021, 8, 310, 3, 310, 6023, 8, 310, 1, 311, 1, 311, 1, 312, 1, 312, 3, 312, 6029, 8, 312, 1, 312, 1, 312, 3, 312, 6033, 8, 312, 1, 312, 3, 312, 6036, 8, 312, 1, 312, 3, 312, 6039, 8, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6044, 8, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6050, 8, 312, 1, 312, 3, 312, 6053, 8, 312, 1, 312, 3, 312, 6056, 8, 312, 1, 312, 3, 312, 6059, 8, 312, 1, 312, 3, 312, 6062, 8, 312, 1, 313, 1, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 5, 317, 6076, 8, 317, 10, 317, 12, 317, 6079, 9, 317, 1, 318, 3, 318, 6082, 8, 318, 1, 318, 3, 318, 6085, 8, 318, 1, 318, 3, 318, 6088, 8, 318, 1, 318, 3, 318, 6091, 8, 318, 1, 318, 3, 318, 6094, 8, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6099, 8, 318, 1, 318, 3, 318, 6102, 8, 318, 3, 318, 6104, 8, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 3, 319, 6117, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 5, 321, 6127, 8, 321, 10, 321, 12, 321, 6130, 9, 321, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6143, 8, 325, 1, 326, 1, 326, 3, 326, 6147, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6153, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6163, 8, 326, 3, 326, 6165, 8, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6170, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 5, 327, 6176, 8, 327, 10, 327, 12, 327, 6179, 9, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 3, 329, 6188, 8, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 5, 330, 6195, 8, 330, 10, 330, 12, 330, 6198, 9, 330, 1, 331, 1, 331, 1, 331, 5, 331, 6203, 8, 331, 10, 331, 12, 331, 6206, 9, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6214, 8, 332, 3, 332, 6216, 8, 332, 1, 333, 1, 333, 1, 333, 5, 333, 6221, 8, 333, 10, 333, 12, 333, 6224, 9, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6232, 8, 334, 3, 334, 6234, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6239, 8, 335, 10, 335, 12, 335, 6242, 9, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6250, 8, 336, 3, 336, 6252, 8, 336, 1, 337, 1, 337, 3, 337, 6256, 8, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 5, 338, 6263, 8, 338, 10, 338, 12, 338, 6266, 9, 338, 1, 339, 1, 339, 3, 339, 6270, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6276, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6281, 8, 339, 1, 340, 1, 340, 3, 340, 6285, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6290, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 6308, 8, 343, 1, 344, 1, 344, 1, 344, 3, 344, 6313, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 6328, 8, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 5, 347, 6335, 8, 347, 10, 347, 12, 347, 6338, 9, 347, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 5, 349, 6346, 8, 349, 10, 349, 12, 349, 6349, 9, 349, 1, 350, 4, 350, 6352, 8, 350, 11, 350, 12, 350, 6353, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 3, 351, 6391, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 6411, 8, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 6418, 8, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 5, 353, 6427, 8, 353, 10, 353, 12, 353, 6430, 9, 353, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 5, 356, 6441, 8, 356, 10, 356, 12, 356, 6444, 9, 356, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 6450, 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6458, 8, 358, 1, 359, 4, 359, 6461, 8, 359, 11, 359, 12, 359, 6462, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 3, 361, 6470, 8, 361, 1, 361, 1, 361, 3, 361, 6474, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 6479, 8, 361, 1, 361, 1, 361, 3, 361, 6483, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 6488, 8, 361, 1, 361, 1, 361, 3, 361, 6492, 8, 361, 3, 361, 6494, 8, 361, 1, 362, 1, 362, 1, 362, 3, 362, 6499, 8, 362, 1, 362, 1, 362, 3, 362, 6503, 8, 362, 1, 363, 1, 363, 1, 363, 3, 363, 6508, 8, 363, 1, 363, 1, 363, 3, 363, 6512, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6536, 8, 364, 1, 365, 1, 365, 1, 365, 5, 365, 6541, 8, 365, 10, 365, 12, 365, 6544, 9, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 5, 366, 6551, 8, 366, 10, 366, 12, 366, 6554, 9, 366, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 369, 4, 369, 6563, 8, 369, 11, 369, 12, 369, 6564, 1, 370, 1, 370, 1, 370, 3, 370, 6570, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 6583, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 6595, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 6607, 8, 371, 3, 371, 6609, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 6615, 8, 372, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 3, 374, 6622, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 6667, 8, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 6685, 8, 376, 1, 377, 1, 377, 3, 377, 6689, 8, 377, 1, 377, 1, 377, 1, 377, 3, 377, 6694, 8, 377, 1, 377, 3, 377, 6697, 8, 377, 1, 378, 1, 378, 3, 378, 6701, 8, 378, 1, 378, 1, 378, 1, 378, 3, 378, 6706, 8, 378, 1, 378, 1, 378, 1, 378, 3, 378, 6711, 8, 378, 1, 378, 3, 378, 6714, 8, 378, 1, 379, 1, 379, 1, 379, 5, 379, 6719, 8, 379, 10, 379, 12, 379, 6722, 9, 379, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 6738, 8, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6809, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6840, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6894, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6904, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6914, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6925, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6935, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6946, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6956, 8, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6961, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6970, 8, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6975, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6985, 8, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6990, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6999, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7012, 8, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7017, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7129, 8, 382, 3, 382, 7131, 8, 382, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7140, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7151, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7162, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7175, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7187, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7198, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7205, 8, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7295, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7348, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7358, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7369, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7380, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7394, 8, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 5, 388, 7407, 8, 388, 10, 388, 12, 388, 7410, 9, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 3, 389, 7420, 8, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 3, 390, 7427, 8, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7481, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7622, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7628, 8, 393, 1, 393, 3, 393, 7631, 8, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7641, 8, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7681, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7691, 8, 397, 1, 398, 1, 398, 1, 398, 5, 398, 7696, 8, 398, 10, 398, 12, 398, 7699, 9, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7721, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7730, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7739, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7748, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7781, 8, 400, 1, 401, 1, 401, 3, 401, 7785, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7795, 8, 401, 1, 401, 1, 401, 3, 401, 7799, 8, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7809, 8, 402, 1, 403, 3, 403, 7812, 8, 403, 1, 403, 1, 403, 3, 403, 7816, 8, 403, 5, 403, 7818, 8, 403, 10, 403, 12, 403, 7821, 9, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7828, 8, 404, 1, 405, 1, 405, 1, 406, 1, 406, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 3, 408, 7839, 8, 408, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7851, 8, 411, 1, 412, 1, 412, 3, 412, 7855, 8, 412, 1, 412, 3, 412, 7858, 8, 412, 1, 412, 1, 412, 3, 412, 7862, 8, 412, 1, 412, 3, 412, 7865, 8, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7870, 8, 412, 1, 412, 1, 412, 3, 412, 7874, 8, 412, 1, 412, 3, 412, 7877, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7883, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7894, 8, 412, 1, 412, 3, 412, 7897, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7904, 8, 412, 1, 412, 1, 412, 3, 412, 7908, 8, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7913, 8, 412, 1, 412, 3, 412, 7916, 8, 412, 3, 412, 7918, 8, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7932, 8, 414, 1, 415, 1, 415, 3, 415, 7936, 8, 415, 1, 415, 5, 415, 7939, 8, 415, 10, 415, 12, 415, 7942, 9, 415, 1, 416, 1, 416, 1, 417, 1, 417, 3, 417, 7948, 8, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 3, 418, 7955, 8, 418, 1, 418, 3, 418, 7958, 8, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7963, 8, 418, 1, 418, 3, 418, 7966, 8, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7975, 8, 418, 3, 418, 7977, 8, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7982, 8, 418, 1, 419, 1, 419, 3, 419, 7986, 8, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 3, 421, 7998, 8, 421, 1, 421, 3, 421, 8001, 8, 421, 1, 422, 1, 422, 1, 423, 4, 423, 8006, 8, 423, 11, 423, 12, 423, 8007, 1, 424, 1, 424, 3, 424, 8012, 8, 424, 1, 424, 1, 424, 1, 424, 3, 424, 8017, 8, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 8027, 8, 425, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 3, 427, 8037, 8, 427, 1, 427, 3, 427, 8040, 8, 427, 1, 427, 3, 427, 8043, 8, 427, 3, 427, 8045, 8, 427, 1, 428, 1, 428, 1, 428, 1, 428, 3, 428, 8051, 8, 428, 1, 429, 1, 429, 1, 429, 5, 429, 8056, 8, 429, 10, 429, 12, 429, 8059, 9, 429, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8078, 8, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8098, 8, 434, 1, 434, 1, 434, 3, 434, 8102, 8, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8107, 8, 434, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8176, 8, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8181, 8, 437, 1, 438, 1, 438, 1, 439, 1, 439, 3, 439, 8187, 8, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 3, 440, 8200, 8, 440, 1, 440, 1, 440, 3, 440, 8204, 8, 440, 1, 440, 1, 440, 3, 440, 8208, 8, 440, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8214, 8, 440, 3, 440, 8216, 8, 440, 1, 441, 1, 441, 1, 441, 1, 441, 5, 441, 8222, 8, 441, 10, 441, 12, 441, 8225, 9, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 3, 443, 8234, 8, 443, 1, 443, 3, 443, 8237, 8, 443, 1, 443, 3, 443, 8240, 8, 443, 1, 443, 3, 443, 8243, 8, 443, 1, 443, 3, 443, 8246, 8, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 3, 443, 8253, 8, 443, 1, 443, 3, 443, 8256, 8, 443, 3, 443, 8258, 8, 443, 1, 444, 1, 444, 3, 444, 8262, 8, 444, 1, 444, 3, 444, 8265, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8272, 8, 444, 3, 444, 8274, 8, 444, 1, 445, 1, 445, 1, 445, 5, 445, 8279, 8, 445, 10, 445, 12, 445, 8282, 9, 445, 1, 446, 1, 446, 1, 447, 1, 447, 3, 447, 8288, 8, 447, 1, 448, 1, 448, 3, 448, 8292, 8, 448, 1, 449, 1, 449, 3, 449, 8296, 8, 449, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 5, 451, 8303, 8, 451, 10, 451, 12, 451, 8306, 9, 451, 1, 452, 1, 452, 1, 452, 3, 452, 8311, 8, 452, 1, 453, 1, 453, 3, 453, 8315, 8, 453, 1, 454, 1, 454, 3, 454, 8319, 8, 454, 1, 455, 1, 455, 1, 455, 3, 455, 8324, 8, 455, 1, 456, 1, 456, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 3, 459, 8336, 8, 459, 1, 460, 1, 460, 1, 460, 5, 460, 8341, 8, 460, 10, 460, 12, 460, 8344, 9, 460, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 3, 462, 8353, 8, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 3, 462, 8366, 8, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 3, 463, 8377, 8, 463, 1, 464, 1, 464, 1, 464, 5, 464, 8382, 8, 464, 10, 464, 12, 464, 8385, 9, 464, 1, 465, 1, 465, 3, 465, 8389, 8, 465, 1, 466, 1, 466, 3, 466, 8393, 8, 466, 1, 467, 1, 467, 3, 467, 8397, 8, 467, 1, 468, 1, 468, 1, 468, 3, 468, 8402, 8, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 3, 470, 8415, 8, 470, 1, 471, 1, 471, 1, 471, 3, 471, 8420, 8, 471, 1, 471, 1, 471, 3, 471, 8424, 8, 471, 1, 471, 1, 471, 3, 471, 8428, 8, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 3, 471, 8435, 8, 471, 1, 471, 3, 471, 8438, 8, 471, 3, 471, 8440, 8, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 3, 473, 8448, 8, 473, 1, 473, 1, 473, 3, 473, 8452, 8, 473, 1, 474, 3, 474, 8455, 8, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 3, 474, 8462, 8, 474, 1, 474, 3, 474, 8465, 8, 474, 1, 475, 1, 475, 1, 475, 3, 475, 8470, 8, 475, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8476, 8, 476, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8482, 8, 476, 1, 476, 1, 476, 3, 476, 8486, 8, 476, 1, 477, 1, 477, 1, 478, 1, 478, 1, 478, 5, 478, 8493, 8, 478, 10, 478, 12, 478, 8496, 9, 478, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 3, 480, 8504, 8, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 3, 480, 8511, 8, 480, 1, 480, 3, 480, 8514, 8, 480, 1, 481, 1, 481, 1, 481, 1, 481, 3, 481, 8520, 8, 481, 1, 481, 1, 481, 1, 481, 3, 481, 8525, 8, 481, 1, 482, 1, 482, 1, 482, 1, 483, 3, 483, 8531, 8, 483, 1, 483, 1, 483, 1, 483, 1, 483, 3, 483, 8537, 8, 483, 1, 483, 3, 483, 8540, 8, 483, 1, 483, 3, 483, 8543, 8, 483, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 3, 485, 8550, 8, 485, 1, 485, 1, 485, 3, 485, 8554, 8, 485, 1, 485, 3, 485, 8557, 8, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 3, 487, 8572, 8, 487, 1, 487, 3, 487, 8575, 8, 487, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 3, 489, 8582, 8, 489, 1, 490, 3, 490, 8585, 8, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 3, 490, 8592, 8, 490, 1, 490, 3, 490, 8595, 8, 490, 1, 490, 3, 490, 8598, 8, 490, 1, 491, 1, 491, 1, 491, 5, 491, 8603, 8, 491, 10, 491, 12, 491, 8606, 9, 491, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 3, 492, 8617, 8, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 3, 492, 8624, 8, 492, 3, 492, 8626, 8, 492, 1, 493, 1, 493, 1, 493, 1, 494, 1, 494, 1, 494, 5, 494, 8634, 8, 494, 10, 494, 12, 494, 8637, 9, 494, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 496, 1, 496, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 5, 497, 8654, 8, 497, 10, 497, 12, 497, 8657, 9, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 3, 498, 8664, 8, 498, 1, 499, 1, 499, 3, 499, 8668, 8, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 3, 500, 8678, 8, 500, 1, 501, 1, 501, 3, 501, 8682, 8, 501, 1, 501, 1, 501, 3, 501, 8686, 8, 501, 1, 501, 1, 501, 3, 501, 8690, 8, 501, 3, 501, 8692, 8, 501, 1, 501, 1, 501, 1, 501, 3, 501, 8697, 8, 501, 1, 501, 1, 501, 3, 501, 8701, 8, 501, 1, 501, 1, 501, 3, 501, 8705, 8, 501, 3, 501, 8707, 8, 501, 3, 501, 8709, 8, 501, 1, 502, 1, 502, 3, 502, 8713, 8, 502, 1, 503, 1, 503, 3, 503, 8717, 8, 503, 1, 503, 3, 503, 8720, 8, 503, 1, 503, 3, 503, 8723, 8, 503, 1, 503, 3, 503, 8726, 8, 503, 1, 503, 3, 503, 8729, 8, 503, 3, 503, 8731, 8, 503, 1, 503, 3, 503, 8734, 8, 503, 1, 503, 3, 503, 8737, 8, 503, 1, 503, 3, 503, 8740, 8, 503, 1, 503, 3, 503, 8743, 8, 503, 1, 503, 3, 503, 8746, 8, 503, 1, 503, 3, 503, 8749, 8, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 3, 503, 8758, 8, 503, 3, 503, 8760, 8, 503, 1, 503, 1, 503, 1, 503, 3, 503, 8765, 8, 503, 5, 503, 8767, 8, 503, 10, 503, 12, 503, 8770, 9, 503, 1, 504, 1, 504, 1, 504, 3, 504, 8775, 8, 504, 1, 505, 1, 505, 3, 505, 8779, 8, 505, 1, 506, 1, 506, 3, 506, 8783, 8, 506, 1, 506, 1, 506, 1, 507, 1, 507, 1, 507, 5, 507, 8790, 8, 507, 10, 507, 12, 507, 8793, 9, 507, 1, 508, 1, 508, 3, 508, 8797, 8, 508, 1, 508, 1, 508, 3, 508, 8801, 8, 508, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, 8807, 8, 508, 1, 508, 3, 508, 8810, 8, 508, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 3, 510, 8829, 8, 510, 1, 510, 1, 510, 1, 510, 1, 511, 1, 511, 1, 511, 3, 511, 8837, 8, 511, 1, 512, 1, 512, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 3, 513, 8846, 8, 513, 1, 514, 1, 514, 3, 514, 8850, 8, 514, 1, 515, 3, 515, 8853, 8, 515, 1, 515, 1, 515, 3, 515, 8857, 8, 515, 1, 515, 1, 515, 1, 515, 3, 515, 8862, 8, 515, 1, 515, 1, 515, 1, 515, 1, 515, 3, 515, 8868, 8, 515, 1, 516, 1, 516, 1, 517, 1, 517, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 3, 518, 8880, 8, 518, 1, 519, 1, 519, 1, 520, 1, 520, 1, 521, 1, 521, 1, 521, 1, 521, 1, 522, 1, 522, 1, 522, 5, 522, 8893, 8, 522, 10, 522, 12, 522, 8896, 9, 522, 1, 523, 1, 523, 1, 523, 1, 523, 3, 523, 8902, 8, 523, 1, 523, 3, 523, 8905, 8, 523, 1, 524, 1, 524, 3, 524, 8909, 8, 524, 1, 524, 1, 524, 3, 524, 8913, 8, 524, 1, 524, 1, 524, 3, 524, 8917, 8, 524, 3, 524, 8919, 8, 524, 1, 525, 1, 525, 1, 526, 1, 526, 1, 526, 1, 526, 3, 526, 8927, 8, 526, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 3, 527, 8936, 8, 527, 1, 527, 1, 527, 1, 527, 1, 527, 3, 527, 8942, 8, 527, 3, 527, 8944, 8, 527, 1, 528, 1, 528, 1, 528, 1, 528, 1, 528, 3, 528, 8951, 8, 528, 1, 529, 1, 529, 3, 529, 8955, 8, 529, 1, 530, 1, 530, 1, 531, 1, 531, 1, 531, 1, 531, 1, 531, 3, 531, 8964, 8, 531, 1, 532, 1, 532, 3, 532, 8968, 8, 532, 1, 533, 1, 533, 1, 534, 1, 534, 1, 535, 1, 535, 1, 535, 3, 535, 8977, 8, 535, 1, 535, 1, 535, 1, 536, 1, 536, 1, 536, 5, 536, 8984, 8, 536, 10, 536, 12, 536, 8987, 9, 536, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 3, 537, 8998, 8, 537, 1, 538, 1, 538, 1, 538, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 542, 1, 542, 1, 542, 1, 543, 1, 543, 1, 543, 1, 543, 3, 543, 9026, 8, 543, 1, 544, 1, 544, 1, 545, 4, 545, 9031, 8, 545, 11, 545, 12, 545, 9032, 1, 546, 1, 546, 3, 546, 9037, 8, 546, 1, 546, 3, 546, 9040, 8, 546, 1, 547, 1, 547, 1, 547, 3, 547, 9045, 8, 547, 1, 547, 1, 547, 3, 547, 9049, 8, 547, 1, 547, 3, 547, 9052, 8, 547, 1, 548, 1, 548, 1, 548, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 5, 549, 9066, 8, 549, 10, 549, 12, 549, 9069, 9, 549, 1, 550, 1, 550, 1, 550, 1, 551, 1, 551, 1, 551, 5, 551, 9077, 8, 551, 10, 551, 12, 551, 9080, 9, 551, 1, 552, 1, 552, 3, 552, 9084, 8, 552, 1, 552, 3, 552, 9087, 8, 552, 1, 552, 3, 552, 9090, 8, 552, 1, 552, 1, 552, 3, 552, 9094, 8, 552, 1, 552, 1, 552, 3, 552, 9098, 8, 552, 1, 552, 1, 552, 3, 552, 9102, 8, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9107, 8, 552, 1, 552, 1, 552, 3, 552, 9111, 8, 552, 1, 552, 1, 552, 3, 552, 9115, 8, 552, 3, 552, 9117, 8, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9126, 8, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9131, 8, 552, 1, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9137, 8, 552, 1, 552, 1, 552, 3, 552, 9141, 8, 552, 3, 552, 9143, 8, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9150, 8, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9155, 8, 552, 1, 552, 1, 552, 1, 552, 1, 552, 5, 552, 9161, 8, 552, 10, 552, 12, 552, 9164, 9, 552, 1, 553, 3, 553, 9167, 8, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 3, 553, 9174, 8, 553, 1, 554, 1, 554, 1, 555, 1, 555, 1, 555, 3, 555, 9181, 8, 555, 1, 555, 3, 555, 9184, 8, 555, 1, 555, 1, 555, 1, 555, 1, 555, 3, 555, 9190, 8, 555, 1, 556, 1, 556, 3, 556, 9194, 8, 556, 1, 557, 1, 557, 1, 557, 1, 557, 1, 557, 1, 557, 1, 557, 3, 557, 9203, 8, 557, 1, 558, 3, 558, 9206, 8, 558, 1, 558, 1, 558, 3, 558, 9210, 8, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 3, 558, 9218, 8, 558, 1, 558, 1, 558, 1, 558, 1, 558, 3, 558, 9224, 8, 558, 3, 558, 9226, 8, 558, 1, 559, 3, 559, 9229, 8, 559, 1, 559, 1, 559, 3, 559, 9233, 8, 559, 1, 560, 1, 560, 3, 560, 9237, 8, 560, 1, 560, 1, 560, 3, 560, 9241, 8, 560, 1, 560, 1, 560, 1, 560, 1, 560, 3, 560, 9247, 8, 560, 1, 560, 3, 560, 9250, 8, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 3, 560, 9259, 8, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 3, 560, 9266, 8, 560, 3, 560, 9268, 8, 560, 1, 561, 1, 561, 1, 561, 5, 561, 9273, 8, 561, 10, 561, 12, 561, 9276, 9, 561, 1, 562, 1, 562, 1, 562, 5, 562, 9281, 8, 562, 10, 562, 12, 562, 9284, 9, 562, 1, 563, 1, 563, 3, 563, 9288, 8, 563, 1, 563, 3, 563, 9291, 8, 563, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 3, 564, 9299, 8, 564, 1, 565, 1, 565, 1, 565, 1, 565, 1, 565, 1, 566, 1, 566, 3, 566, 9308, 8, 566, 1, 566, 1, 566, 1, 566, 1, 566, 1, 566, 1, 566, 3, 566, 9316, 8, 566, 3, 566, 9318, 8, 566, 1, 567, 1, 567, 3, 567, 9322, 8, 567, 1, 568, 1, 568, 1, 568, 5, 568, 9327, 8, 568, 10, 568, 12, 568, 9330, 9, 568, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 570, 1, 570, 1, 570, 1, 571, 1, 571, 1, 571, 1, 572, 1, 572, 1, 572, 1, 572, 1, 572, 3, 572, 9348, 8, 572, 1, 573, 1, 573, 1, 574, 1, 574, 1, 574, 5, 574, 9355, 8, 574, 10, 574, 12, 574, 9358, 9, 574, 1, 575, 1, 575, 1, 575, 3, 575, 9363, 8, 575, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 3, 576, 9382, 8, 576, 1, 576, 1, 576, 1, 577, 1, 577, 1, 577, 5, 577, 9389, 8, 577, 10, 577, 12, 577, 9392, 9, 577, 1, 578, 1, 578, 1, 578, 3, 578, 9397, 8, 578, 1, 578, 1, 578, 3, 578, 9401, 8, 578, 1, 579, 4, 579, 9404, 8, 579, 11, 579, 12, 579, 9405, 1, 580, 1, 580, 1, 580, 1, 580, 1, 580, 1, 580, 1, 580, 1, 580, 3, 580, 9416, 8, 580, 1, 581, 1, 581, 1, 581, 5, 581, 9421, 8, 581, 10, 581, 12, 581, 9424, 9, 581, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 3, 582, 9432, 8, 582, 1, 583, 3, 583, 9435, 8, 583, 1, 583, 1, 583, 1, 583, 1, 583, 1, 583, 1, 583, 1, 583, 3, 583, 9444, 8, 583, 3, 583, 9446, 8, 583, 1, 583, 1, 583, 1, 583, 1, 583, 3, 583, 9452, 8, 583, 1, 584, 1, 584, 3, 584, 9456, 8, 584, 1, 584, 5, 584, 9459, 8, 584, 10, 584, 12, 584, 9462, 9, 584, 1, 585, 1, 585, 1, 585, 1, 585, 1, 585, 1, 585, 1, 585, 3, 585, 9471, 8, 585, 1, 585, 1, 585, 1, 585, 1, 585, 3, 585, 9477, 8, 585, 3, 585, 9479, 8, 585, 1, 586, 1, 586, 1, 586, 1, 586, 3, 586, 9485, 8, 586, 1, 587, 1, 587, 3, 587, 9489, 8, 587, 1, 587, 3, 587, 9492, 8, 587, 1, 588, 1, 588, 1, 588, 1, 588, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 3, 589, 9505, 8, 589, 1, 589, 1, 589, 1, 589, 1, 589, 3, 589, 9511, 8, 589, 1, 589, 1, 589, 3, 589, 9515, 8, 589, 1, 589, 1, 589, 3, 589, 9519, 8, 589, 1, 589, 3, 589, 9522, 8, 589, 1, 590, 1, 590, 1, 590, 1, 590, 1, 591, 1, 591, 3, 591, 9530, 8, 591, 1, 592, 1, 592, 3, 592, 9534, 8, 592, 1, 593, 1, 593, 3, 593, 9538, 8, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 594, 1, 594, 3, 594, 9546, 8, 594, 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 3, 595, 9553, 8, 595, 1, 596, 1, 596, 1, 596, 1, 596, 1, 596, 3, 596, 9560, 8, 596, 1, 597, 1, 597, 3, 597, 9564, 8, 597, 1, 597, 1, 597, 1, 597, 1, 597, 3, 597, 9570, 8, 597, 3, 597, 9572, 8, 597, 1, 598, 1, 598, 1, 599, 1, 599, 1, 599, 1, 599, 1, 599, 3, 599, 9581, 8, 599, 1, 599, 3, 599, 9584, 8, 599, 1, 600, 1, 600, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 3, 601, 9594, 8, 601, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9610, 8, 602, 1, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9616, 8, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9621, 8, 602, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 3, 603, 9628, 8, 603, 1, 604, 1, 604, 1, 604, 1, 605, 1, 605, 1, 606, 1, 606, 3, 606, 9637, 8, 606, 1, 607, 1, 607, 1, 607, 5, 607, 9642, 8, 607, 10, 607, 12, 607, 9645, 9, 607, 1, 608, 1, 608, 1, 608, 5, 608, 9650, 8, 608, 10, 608, 12, 608, 9653, 9, 608, 1, 609, 1, 609, 1, 609, 5, 609, 9658, 8, 609, 10, 609, 12, 609, 9661, 9, 609, 1, 610, 1, 610, 3, 610, 9665, 8, 610, 1, 610, 1, 610, 3, 610, 9669, 8, 610, 1, 611, 3, 611, 9672, 8, 611, 1, 611, 1, 611, 1, 612, 1, 612, 3, 612, 9678, 8, 612, 1, 613, 1, 613, 1, 613, 3, 613, 9683, 8, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 3, 613, 9699, 8, 613, 1, 613, 3, 613, 9702, 8, 613, 3, 613, 9704, 8, 613, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9716, 8, 614, 3, 614, 9718, 8, 614, 1, 615, 1, 615, 3, 615, 9722, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9730, 8, 615, 3, 615, 9732, 8, 615, 1, 615, 1, 615, 3, 615, 9736, 8, 615, 3, 615, 9738, 8, 615, 1, 616, 1, 616, 1, 616, 1, 616, 5, 616, 9744, 8, 616, 10, 616, 12, 616, 9747, 9, 616, 1, 617, 3, 617, 9750, 8, 617, 1, 617, 1, 617, 1, 618, 1, 618, 1, 618, 5, 618, 9757, 8, 618, 10, 618, 12, 618, 9760, 9, 618, 1, 619, 1, 619, 1, 619, 5, 619, 9765, 8, 619, 10, 619, 12, 619, 9768, 9, 619, 1, 620, 1, 620, 1, 620, 3, 620, 9773, 8, 620, 1, 621, 3, 621, 9776, 8, 621, 1, 621, 1, 621, 1, 622, 1, 622, 1, 622, 1, 622, 1, 622, 3, 622, 9785, 8, 622, 1, 623, 1, 623, 1, 623, 3, 623, 9790, 8, 623, 1, 624, 1, 624, 1, 624, 5, 624, 9795, 8, 624, 10, 624, 12, 624, 9798, 9, 624, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 3, 625, 9807, 8, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 3, 625, 9833, 8, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 3, 625, 9844, 8, 625, 5, 625, 9846, 8, 625, 10, 625, 12, 625, 9849, 9, 625, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 3, 626, 9856, 8, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 3, 626, 9878, 8, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 3, 626, 9887, 8, 626, 1, 627, 1, 627, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9897, 8, 628, 1, 628, 3, 628, 9900, 8, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9905, 8, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9910, 8, 628, 1, 628, 1, 628, 3, 628, 9914, 8, 628, 1, 628, 3, 628, 9917, 8, 628, 1, 629, 1, 629, 3, 629, 9921, 8, 629, 1, 629, 3, 629, 9924, 8, 629, 1, 629, 3, 629, 9927, 8, 629, 1, 629, 3, 629, 9930, 8, 629, 1, 630, 1, 630, 3, 630, 9934, 8, 630, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9948, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9955, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9962, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9969, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9987, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9995, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10007, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10013, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10026, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10065, 8, 631, 3, 631, 10067, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10087, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10097, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10108, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10120, 8, 631, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10127, 8, 632, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10139, 8, 633, 1, 634, 1, 634, 1, 634, 1, 634, 1, 634, 1, 635, 1, 635, 1, 635, 5, 635, 10149, 8, 635, 10, 635, 12, 635, 10152, 9, 635, 1, 636, 1, 636, 1, 636, 3, 636, 10157, 8, 636, 1, 637, 1, 637, 1, 638, 1, 638, 1, 638, 1, 638, 3, 638, 10165, 8, 638, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 3, 639, 10182, 8, 639, 1, 640, 1, 640, 1, 640, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, 1, 643, 1, 643, 1, 643, 1, 644, 1, 644, 1, 644, 5, 644, 10205, 8, 644, 10, 644, 12, 644, 10208, 9, 644, 1, 645, 1, 645, 1, 645, 1, 645, 1, 646, 1, 646, 1, 646, 3, 646, 10217, 8, 646, 1, 647, 1, 647, 3, 647, 10221, 8, 647, 1, 647, 3, 647, 10224, 8, 647, 1, 647, 3, 647, 10227, 8, 647, 1, 647, 3, 647, 10230, 8, 647, 1, 647, 1, 647, 1, 648, 1, 648, 1, 649, 1, 649, 1, 649, 1, 649, 1, 650, 1, 650, 1, 650, 3, 650, 10243, 8, 650, 1, 650, 1, 650, 1, 650, 3, 650, 10248, 8, 650, 1, 650, 1, 650, 1, 650, 3, 650, 10253, 8, 650, 3, 650, 10255, 8, 650, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 3, 651, 10263, 8, 651, 1, 652, 1, 652, 1, 652, 1, 652, 1, 652, 1, 652, 1, 652, 3, 652, 10272, 8, 652, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 3, 653, 10281, 8, 653, 1, 654, 1, 654, 1, 654, 3, 654, 10286, 8, 654, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 3, 654, 10295, 8, 654, 1, 655, 1, 655, 1, 655, 3, 655, 10300, 8, 655, 1, 655, 1, 655, 1, 656, 1, 656, 1, 656, 1, 656, 1, 656, 1, 656, 1, 657, 1, 657, 1, 658, 1, 658, 3, 658, 10314, 8, 658, 1, 659, 1, 659, 1, 660, 1, 660, 1, 660, 1, 660, 1, 660, 1, 660, 3, 660, 10324, 8, 660, 1, 661, 1, 661, 1, 661, 1, 661, 1, 661, 1, 661, 3, 661, 10332, 8, 661, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 3, 662, 10346, 8, 662, 1, 663, 1, 663, 1, 663, 5, 663, 10351, 8, 663, 10, 663, 12, 663, 10354, 9, 663, 1, 664, 1, 664, 1, 664, 5, 664, 10359, 8, 664, 10, 664, 12, 664, 10362, 9, 664, 1, 665, 1, 665, 1, 665, 5, 665, 10367, 8, 665, 10, 665, 12, 665, 10370, 9, 665, 1, 666, 1, 666, 1, 666, 1, 666, 1, 666, 3, 666, 10377, 8, 666, 1, 667, 1, 667, 3, 667, 10381, 8, 667, 1, 668, 1, 668, 1, 668, 5, 668, 10386, 8, 668, 10, 668, 12, 668, 10389, 9, 668, 1, 669, 1, 669, 1, 669, 1, 669, 1, 669, 3, 669, 10396, 8, 669, 1, 670, 1, 670, 1, 670, 5, 670, 10401, 8, 670, 10, 670, 12, 670, 10404, 9, 670, 1, 671, 1, 671, 1, 671, 3, 671, 10409, 8, 671, 1, 671, 1, 671, 1, 672, 1, 672, 1, 672, 5, 672, 10416, 8, 672, 10, 672, 12, 672, 10419, 9, 672, 1, 673, 1, 673, 1, 673, 1, 673, 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 3, 674, 10433, 8, 674, 1, 675, 1, 675, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 3, 676, 10444, 8, 676, 1, 677, 1, 677, 1, 677, 1, 677, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 3, 678, 10477, 8, 678, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 3, 679, 10486, 8, 679, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 3, 680, 10493, 8, 680, 1, 681, 1, 681, 3, 681, 10497, 8, 681, 1, 681, 1, 681, 3, 681, 10501, 8, 681, 1, 681, 1, 681, 1, 682, 4, 682, 10506, 8, 682, 11, 682, 12, 682, 10507, 1, 683, 1, 683, 1, 683, 1, 683, 1, 683, 1, 684, 1, 684, 1, 684, 1, 685, 1, 685, 1, 686, 1, 686, 3, 686, 10522, 8, 686, 1, 687, 1, 687, 1, 687, 3, 687, 10527, 8, 687, 1, 687, 1, 687, 1, 687, 3, 687, 10532, 8, 687, 1, 687, 1, 687, 3, 687, 10536, 8, 687, 3, 687, 10538, 8, 687, 1, 687, 3, 687, 10541, 8, 687, 1, 688, 1, 688, 1, 689, 4, 689, 10546, 8, 689, 11, 689, 12, 689, 10547, 1, 690, 5, 690, 10551, 8, 690, 10, 690, 12, 690, 10554, 9, 690, 1, 691, 1, 691, 1, 692, 1, 692, 1, 692, 5, 692, 10561, 8, 692, 10, 692, 12, 692, 10564, 9, 692, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 3, 693, 10571, 8, 693, 1, 693, 3, 693, 10574, 8, 693, 1, 694, 1, 694, 1, 694, 5, 694, 10579, 8, 694, 10, 694, 12, 694, 10582, 9, 694, 1, 695, 1, 695, 1, 695, 5, 695, 10587, 8, 695, 10, 695, 12, 695, 10590, 9, 695, 1, 696, 1, 696, 1, 696, 5, 696, 10595, 8, 696, 10, 696, 12, 696, 10598, 9, 696, 1, 697, 1, 697, 1, 697, 5, 697, 10603, 8, 697, 10, 697, 12, 697, 10606, 9, 697, 1, 698, 1, 698, 1, 698, 5, 698, 10611, 8, 698, 10, 698, 12, 698, 10614, 9, 698, 1, 699, 1, 699, 3, 699, 10618, 8, 699, 1, 700, 1, 700, 3, 700, 10622, 8, 700, 1, 701, 1, 701, 3, 701, 10626, 8, 701, 1, 702, 1, 702, 3, 702, 10630, 8, 702, 1, 703, 1, 703, 3, 703, 10634, 8, 703, 1, 704, 1, 704, 3, 704, 10638, 8, 704, 1, 705, 1, 705, 3, 705, 10642, 8, 705, 1, 706, 1, 706, 1, 706, 5, 706, 10647, 8, 706, 10, 706, 12, 706, 10650, 9, 706, 1, 707, 1, 707, 1, 707, 5, 707, 10655, 8, 707, 10, 707, 12, 707, 10658, 9, 707, 1, 708, 1, 708, 3, 708, 10662, 8, 708, 1, 709, 1, 709, 3, 709, 10666, 8, 709, 1, 710, 1, 710, 3, 710, 10670, 8, 710, 1, 711, 1, 711, 1, 712, 1, 712, 1, 713, 1, 713, 1, 713, 1, 713, 3, 713, 10680, 8, 713, 1, 714, 1, 714, 1, 714, 1, 714, 3, 714, 10686, 8, 714, 1, 715, 1, 715, 5, 715, 10690, 8, 715, 10, 715, 12, 715, 10693, 9, 715, 1, 716, 1, 716, 1, 717, 1, 717, 1, 718, 1, 718, 1, 719, 1, 719, 1, 720, 1, 720, 1, 720, 1, 720, 3, 720, 10707, 8, 720, 1, 721, 1, 721, 1, 721, 1, 721, 3, 721, 10713, 8, 721, 1, 722, 1, 722, 1, 722, 1, 722, 3, 722, 10719, 8, 722, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10731, 8, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10736, 8, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10744, 8, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10751, 8, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10756, 8, 723, 1, 724, 1, 724, 1, 725, 1, 725, 1, 726, 1, 726, 1, 727, 1, 727, 1, 728, 1, 728, 3, 728, 10768, 8, 728, 1, 729, 1, 729, 1, 729, 1, 729, 5, 729, 10774, 8, 729, 10, 729, 12, 729, 10777, 9, 729, 1, 729, 1, 729, 3, 729, 10781, 8, 729, 1, 730, 1, 730, 1, 730, 1, 731, 1, 731, 1, 731, 1, 731, 1, 731, 3, 731, 10791, 8, 731, 1, 732, 1, 732, 1, 733, 1, 733, 1, 734, 1, 734, 1, 734, 1, 734, 1, 734, 3, 734, 10802, 8, 734, 1, 735, 1, 735, 1, 735, 5, 735, 10807, 8, 735, 10, 735, 12, 735, 10810, 9, 735, 1, 736, 1, 736, 1, 736, 1, 736, 3, 736, 10816, 8, 736, 1, 737, 1, 737, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 3, 738, 10827, 8, 738, 1, 738, 3, 738, 10830, 8, 738, 3, 738, 10832, 8, 738, 1, 739, 1, 739, 3, 739, 10836, 8, 739, 1, 739, 3, 739, 10839, 8, 739, 1, 740, 1, 740, 1, 740, 1, 740, 3, 740, 10845, 8, 740, 1, 741, 1, 741, 1, 741, 1, 741, 3, 741, 10851, 8, 741, 1, 742, 1, 742, 3, 742, 10855, 8, 742, 1, 743, 1, 743, 1, 743, 1, 743, 3, 743, 10861, 8, 743, 1, 744, 1, 744, 1, 744, 1, 744, 1, 744, 1, 744, 3, 744, 10869, 8, 744, 1, 745, 1, 745, 3, 745, 10873, 8, 745, 1, 745, 1, 745, 1, 745, 1, 745, 1, 745, 1, 745, 3, 745, 10881, 8, 745, 1, 746, 1, 746, 1, 747, 1, 747, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 3, 748, 10938, 8, 748, 1, 749, 1, 749, 1, 750, 1, 750, 1, 751, 1, 751, 1, 751, 1, 751, 1, 752, 5, 752, 10949, 8, 752, 10, 752, 12, 752, 10952, 9, 752, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 3, 753, 10974, 8, 753, 1, 754, 1, 754, 1, 755, 1, 755, 1, 755, 1, 755, 3, 755, 10982, 8, 755, 1, 756, 1, 756, 3, 756, 10986, 8, 756, 1, 757, 1, 757, 1, 757, 1, 757, 1, 757, 1, 757, 1, 757, 1, 758, 1, 758, 1, 758, 3, 758, 10998, 8, 758, 3, 758, 11000, 8, 758, 1, 759, 1, 759, 1, 760, 4, 760, 11005, 8, 760, 11, 760, 12, 760, 11006, 1, 761, 1, 761, 1, 761, 1, 761, 1, 762, 1, 762, 1, 762, 3, 762, 11016, 8, 762, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 3, 763, 11034, 8, 763, 1, 763, 1, 763, 1, 764, 1, 764, 1, 764, 1, 764, 3, 764, 11042, 8, 764, 1, 765, 1, 765, 1, 766, 1, 766, 1, 766, 1, 766, 1, 766, 3, 766, 11051, 8, 766, 1, 767, 1, 767, 1, 767, 5, 767, 11056, 8, 767, 10, 767, 12, 767, 11059, 9, 767, 1, 768, 1, 768, 1, 768, 1, 769, 1, 769, 1, 770, 1, 770, 3, 770, 11068, 8, 770, 1, 771, 1, 771, 1, 772, 1, 772, 3, 772, 11074, 8, 772, 1, 773, 1, 773, 1, 774, 1, 774, 1, 774, 3, 774, 11081, 8, 774, 1, 775, 1, 775, 1, 775, 3, 775, 11086, 8, 775, 1, 776, 1, 776, 1, 776, 1, 776, 3, 776, 11092, 8, 776, 1, 777, 1, 777, 3, 777, 11096, 8, 777, 1, 778, 1, 778, 1, 779, 5, 779, 11101, 8, 779, 10, 779, 12, 779, 11104, 9, 779, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 3, 780, 11133, 8, 780, 1, 781, 1, 781, 1, 781, 1, 781, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 3, 782, 11146, 8, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 3, 782, 11155, 8, 782, 1, 783, 1, 783, 3, 783, 11159, 8, 783, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 785, 1, 785, 1, 785, 1, 785, 1, 785, 1, 785, 1, 786, 1, 786, 1, 786, 3, 786, 11175, 8, 786, 1, 787, 1, 787, 1, 787, 5, 787, 11180, 8, 787, 10, 787, 12, 787, 11183, 9, 787, 1, 788, 1, 788, 1, 788, 1, 788, 1, 789, 1, 789, 1, 790, 1, 790, 1, 791, 1, 791, 3, 791, 11195, 8, 791, 1, 791, 1, 791, 1, 791, 1, 791, 5, 791, 11201, 8, 791, 10, 791, 12, 791, 11204, 9, 791, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 793, 1, 793, 1, 793, 1, 793, 1, 793, 5, 793, 11221, 8, 793, 10, 793, 12, 793, 11224, 9, 793, 1, 794, 1, 794, 1, 794, 3, 794, 11229, 8, 794, 1, 795, 1, 795, 1, 795, 1, 795, 1, 795, 1, 795, 1, 795, 1, 795, 1, 796, 1, 796, 3, 796, 11241, 8, 796, 1, 797, 4, 797, 11244, 8, 797, 11, 797, 12, 797, 11245, 1, 798, 1, 798, 1, 798, 1, 798, 1, 798, 1, 799, 1, 799, 1, 799, 3, 799, 11256, 8, 799, 1, 800, 1, 800, 1, 800, 1, 801, 1, 801, 1, 801, 1, 801, 1, 801, 1, 802, 1, 802, 1, 802, 1, 802, 1, 802, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 3, 803, 11288, 8, 803, 1, 804, 1, 804, 1, 804, 3, 804, 11293, 8, 804, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 5, 805, 11300, 8, 805, 10, 805, 12, 805, 11303, 9, 805, 1, 805, 1, 805, 3, 805, 11307, 8, 805, 1, 806, 1, 806, 3, 806, 11311, 8, 806, 1, 807, 1, 807, 1, 807, 3, 807, 11316, 8, 807, 1, 808, 1, 808, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 810, 1, 810, 1, 810, 3, 810, 11332, 8, 810, 1, 811, 1, 811, 1, 811, 3, 811, 11337, 8, 811, 1, 811, 1, 811, 1, 812, 1, 812, 1, 813, 1, 813, 1, 813, 1, 813, 1, 813, 1, 813, 1, 813, 1, 813, 1, 813, 3, 813, 11352, 8, 813, 1, 813, 3, 813, 11355, 8, 813, 1, 813, 1, 813, 1, 814, 1, 814, 3, 814, 11361, 8, 814, 1, 815, 1, 815, 3, 815, 11365, 8, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 3, 815, 11374, 8, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 3, 815, 11382, 8, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 3, 815, 11391, 8, 815, 1, 815, 1, 815, 1, 815, 1, 815, 3, 815, 11397, 8, 815, 1, 816, 1, 816, 1, 817, 1, 817, 1, 817, 4, 817, 11404, 8, 817, 11, 817, 12, 817, 11405, 3, 817, 11408, 8, 817, 1, 818, 1, 818, 1, 818, 3, 818, 11413, 8, 818, 1, 819, 1, 819, 1, 819, 1, 819, 1, 820, 1, 820, 1, 820, 5, 820, 11422, 8, 820, 10, 820, 12, 820, 11425, 9, 820, 1, 821, 1, 821, 1, 821, 1, 821, 1, 821, 1, 822, 1, 822, 1, 822, 3, 822, 11435, 8, 822, 1, 823, 1, 823, 1, 823, 1, 823, 1, 823, 1, 823, 1, 823, 1, 824, 1, 824, 1, 824, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 3, 825, 11456, 8, 825, 1, 825, 1, 825, 1, 826, 1, 826, 1, 826, 3, 826, 11463, 8, 826, 1, 827, 1, 827, 1, 827, 5, 827, 11468, 8, 827, 10, 827, 12, 827, 11471, 9, 827, 1, 828, 1, 828, 1, 828, 3, 828, 11476, 8, 828, 1, 828, 3, 828, 11479, 8, 828, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 3, 829, 11490, 8, 829, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 3, 829, 11497, 8, 829, 3, 829, 11499, 8, 829, 1, 829, 1, 829, 1, 830, 1, 830, 1, 830, 1, 830, 1, 830, 3, 830, 11508, 8, 830, 1, 831, 1, 831, 1, 831, 5, 831, 11513, 8, 831, 10, 831, 12, 831, 11516, 9, 831, 1, 832, 1, 832, 1, 832, 3, 832, 11521, 8, 832, 1, 833, 1, 833, 1, 833, 1, 833, 3, 833, 11527, 8, 833, 1, 834, 1, 834, 3, 834, 11531, 8, 834, 1, 835, 1, 835, 3, 835, 11535, 8, 835, 1, 835, 1, 835, 1, 835, 1, 835, 1, 835, 1, 835, 1, 836, 1, 836, 1, 837, 1, 837, 1, 837, 3, 837, 11548, 8, 837, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 3, 838, 11563, 8, 838, 3, 838, 11565, 8, 838, 1, 839, 1, 839, 3, 839, 11569, 8, 839, 1, 839, 1, 839, 1, 839, 1, 840, 3, 840, 11575, 8, 840, 1, 840, 1, 840, 1, 840, 3, 840, 11580, 8, 840, 1, 840, 1, 840, 3, 840, 11584, 8, 840, 1, 840, 3, 840, 11587, 8, 840, 1, 840, 3, 840, 11590, 8, 840, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 4, 840, 11597, 8, 840, 11, 840, 12, 840, 11598, 1, 841, 3, 841, 11602, 8, 841, 1, 841, 1, 841, 3, 841, 11606, 8, 841, 1, 841, 1, 841, 3, 841, 11610, 8, 841, 3, 841, 11612, 8, 841, 1, 841, 3, 841, 11615, 8, 841, 1, 841, 3, 841, 11618, 8, 841, 1, 842, 1, 842, 1, 843, 1, 843, 1, 843, 1, 843, 3, 843, 11626, 8, 843, 1, 843, 1, 843, 1, 843, 1, 843, 1, 843, 3, 843, 11633, 8, 843, 1, 843, 1, 843, 1, 843, 1, 843, 1, 843, 3, 843, 11640, 8, 843, 1, 843, 1, 843, 1, 843, 1, 843, 3, 843, 11646, 8, 843, 3, 843, 11648, 8, 843, 1, 844, 1, 844, 1, 844, 1, 844, 1, 844, 3, 844, 11655, 8, 844, 1, 844, 1, 844, 1, 844, 3, 844, 11660, 8, 844, 1, 844, 1, 844, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 4, 845, 11678, 8, 845, 11, 845, 12, 845, 11679, 1, 846, 1, 846, 1, 846, 1, 846, 3, 846, 11686, 8, 846, 1, 847, 1, 847, 1, 847, 1, 847, 5, 847, 11692, 8, 847, 10, 847, 12, 847, 11695, 9, 847, 1, 847, 1, 847, 1, 848, 1, 848, 3, 848, 11701, 8, 848, 1, 849, 1, 849, 1, 849, 1, 849, 1, 850, 1, 850, 1, 850, 1, 851, 1, 851, 3, 851, 11712, 8, 851, 1, 851, 1, 851, 1, 852, 1, 852, 3, 852, 11718, 8, 852, 1, 852, 1, 852, 1, 853, 1, 853, 3, 853, 11724, 8, 853, 1, 853, 1, 853, 1, 854, 1, 854, 1, 854, 1, 854, 1, 854, 1, 854, 1, 854, 1, 854, 1, 854, 3, 854, 11737, 8, 854, 1, 854, 3, 854, 11740, 8, 854, 1, 855, 1, 855, 3, 855, 11744, 8, 855, 1, 856, 1, 856, 1, 856, 3, 856, 11749, 8, 856, 1, 857, 4, 857, 11752, 8, 857, 11, 857, 12, 857, 11753, 1, 858, 1, 858, 1, 858, 1, 858, 1, 858, 1, 859, 1, 859, 1, 859, 5, 859, 11764, 8, 859, 10, 859, 12, 859, 11767, 9, 859, 1, 860, 1, 860, 1, 860, 3, 860, 11772, 8, 860, 1, 861, 1, 861, 3, 861, 11776, 8, 861, 1, 862, 1, 862, 3, 862, 11780, 8, 862, 1, 863, 1, 863, 3, 863, 11784, 8, 863, 1, 864, 1, 864, 1, 864, 1, 865, 1, 865, 3, 865, 11791, 8, 865, 1, 866, 1, 866, 1, 867, 3, 867, 11796, 8, 867, 1, 867, 3, 867, 11799, 8, 867, 1, 867, 3, 867, 11802, 8, 867, 1, 867, 3, 867, 11805, 8, 867, 1, 867, 3, 867, 11808, 8, 867, 1, 867, 3, 867, 11811, 8, 867, 1, 867, 3, 867, 11814, 8, 867, 1, 868, 1, 868, 1, 869, 1, 869, 1, 870, 1, 870, 1, 871, 1, 871, 1, 872, 1, 872, 3, 872, 11826, 8, 872, 1, 873, 1, 873, 1, 873, 1, 873, 1, 873, 0, 1, 1250, 874, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1040, 1042, 1044, 1046, 1048, 1050, 1052, 1054, 1056, 1058, 1060, 1062, 1064, 1066, 1068, 1070, 1072, 1074, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1120, 1122, 1124, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1142, 1144, 1146, 1148, 1150, 1152, 1154, 1156, 1158, 1160, 1162, 1164, 1166, 1168, 1170, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, 1204, 1206, 1208, 1210, 1212, 1214, 1216, 1218, 1220, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1592, 1594, 1596, 1598, 1600, 1602, 1604, 1606, 1608, 1610, 1612, 1614, 1616, 1618, 1620, 1622, 1624, 1626, 1628, 1630, 1632, 1634, 1636, 1638, 1640, 1642, 1644, 1646, 1648, 1650, 1652, 1654, 1656, 1658, 1660, 1662, 1664, 1666, 1668, 1670, 1672, 1674, 1676, 1678, 1680, 1682, 1684, 1686, 1688, 1690, 1692, 1694, 1696, 1698, 1700, 1702, 1704, 1706, 1708, 1710, 1712, 1714, 1716, 1718, 1720, 1722, 1724, 1726, 1728, 1730, 1732, 1734, 1736, 1738, 1740, 1742, 1744, 1746, 0, 87, 2, 0, 195, 195, 364, 364, 1, 0, 228, 229, 1, 0, 236, 237, 1, 0, 234, 235, 1, 0, 232, 233, 1, 0, 230, 231, 1, 0, 535, 536, 1, 0, 537, 538, 1, 0, 539, 540, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 3, 0, 173, 173, 260, 260, 262, 262, 2, 0, 9, 9, 94, 94, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 92, 92, 226, 226, 2, 0, 341, 341, 414, 414, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 135, 135, 145, 145, 3, 0, 66, 66, 99, 99, 318, 318, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 3, 0, 321, 321, 357, 357, 445, 445, 2, 0, 167, 167, 314, 314, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 10, 10, 53, 53, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 356, 356, 380, 380, 2, 0, 151, 151, 254, 254, 1, 0, 31, 32, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 201, 201, 334, 334, 1, 0, 527, 528, 2, 0, 213, 213, 254, 254, 2, 0, 30, 30, 56, 56, 2, 0, 320, 320, 414, 414, 2, 0, 207, 207, 268, 268, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 1, 0, 18, 19, 2, 0, 117, 117, 122, 122, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 1, 0, 12, 13, 3, 0, 9, 9, 14, 14, 27, 27, 3, 0, 39, 39, 73, 73, 95, 95, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 10, 0, 124, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 478, 488, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 37, 0, 33, 33, 35, 35, 43, 43, 45, 45, 53, 53, 57, 57, 61, 61, 92, 92, 116, 116, 123, 123, 130, 130, 144, 144, 153, 153, 157, 157, 161, 161, 167, 167, 172, 172, 207, 207, 210, 210, 241, 241, 249, 249, 265, 265, 268, 269, 279, 279, 293, 293, 307, 307, 313, 313, 319, 319, 323, 324, 333, 333, 360, 360, 433, 434, 477, 477, 490, 502, 504, 504, 506, 518, 520, 520, 13157, 0, 1751, 1, 0, 0, 0, 2, 1756, 1, 0, 0, 0, 4, 1758, 1, 0, 0, 0, 6, 1879, 1, 0, 0, 0, 8, 1881, 1, 0, 0, 0, 10, 1885, 1, 0, 0, 0, 12, 1888, 1, 0, 0, 0, 14, 1896, 1, 0, 0, 0, 16, 1901, 1, 0, 0, 0, 18, 1907, 1, 0, 0, 0, 20, 1945, 1, 0, 0, 0, 22, 1957, 1, 0, 0, 0, 24, 1959, 1, 0, 0, 0, 26, 1967, 1, 0, 0, 0, 28, 1979, 1, 0, 0, 0, 30, 1981, 1, 0, 0, 0, 32, 1990, 1, 0, 0, 0, 34, 2018, 1, 0, 0, 0, 36, 2020, 1, 0, 0, 0, 38, 2068, 1, 0, 0, 0, 40, 2070, 1, 0, 0, 0, 42, 2078, 1, 0, 0, 0, 44, 2085, 1, 0, 0, 0, 46, 2087, 1, 0, 0, 0, 48, 2102, 1, 0, 0, 0, 50, 2109, 1, 0, 0, 0, 52, 2118, 1, 0, 0, 0, 54, 2120, 1, 0, 0, 0, 56, 2134, 1, 0, 0, 0, 58, 2138, 1, 0, 0, 0, 60, 2174, 1, 0, 0, 0, 62, 2176, 1, 0, 0, 0, 64, 2184, 1, 0, 0, 0, 66, 2194, 1, 0, 0, 0, 68, 2201, 1, 0, 0, 0, 70, 2207, 1, 0, 0, 0, 72, 2213, 1, 0, 0, 0, 74, 2231, 1, 0, 0, 0, 76, 2235, 1, 0, 0, 0, 78, 2239, 1, 0, 0, 0, 80, 2243, 1, 0, 0, 0, 82, 2245, 1, 0, 0, 0, 84, 2256, 1, 0, 0, 0, 86, 2260, 1, 0, 0, 0, 88, 2265, 1, 0, 0, 0, 90, 2270, 1, 0, 0, 0, 92, 2272, 1, 0, 0, 0, 94, 2284, 1, 0, 0, 0, 96, 2291, 1, 0, 0, 0, 98, 2293, 1, 0, 0, 0, 100, 2295, 1, 0, 0, 0, 102, 2297, 1, 0, 0, 0, 104, 2433, 1, 0, 0, 0, 106, 2435, 1, 0, 0, 0, 108, 2452, 1, 0, 0, 0, 110, 2454, 1, 0, 0, 0, 112, 2468, 1, 0, 0, 0, 114, 2470, 1, 0, 0, 0, 116, 2486, 1, 0, 0, 0, 118, 2488, 1, 0, 0, 0, 120, 2709, 1, 0, 0, 0, 122, 2716, 1, 0, 0, 0, 124, 2718, 1, 0, 0, 0, 126, 2720, 1, 0, 0, 0, 128, 2723, 1, 0, 0, 0, 130, 2732, 1, 0, 0, 0, 132, 2734, 1, 0, 0, 0, 134, 2738, 1, 0, 0, 0, 136, 2741, 1, 0, 0, 0, 138, 2749, 1, 0, 0, 0, 140, 2761, 1, 0, 0, 0, 142, 2778, 1, 0, 0, 0, 144, 2806, 1, 0, 0, 0, 146, 2808, 1, 0, 0, 0, 148, 2811, 1, 0, 0, 0, 150, 2819, 1, 0, 0, 0, 152, 2824, 1, 0, 0, 0, 154, 2861, 1, 0, 0, 0, 156, 2863, 1, 0, 0, 0, 158, 2905, 1, 0, 0, 0, 160, 2907, 1, 0, 0, 0, 162, 2909, 1, 0, 0, 0, 164, 2914, 1, 0, 0, 0, 166, 2921, 1, 0, 0, 0, 168, 2926, 1, 0, 0, 0, 170, 2968, 1, 0, 0, 0, 172, 2970, 1, 0, 0, 0, 174, 2973, 1, 0, 0, 0, 176, 2978, 1, 0, 0, 0, 178, 2980, 1, 0, 0, 0, 180, 2988, 1, 0, 0, 0, 182, 2999, 1, 0, 0, 0, 184, 3001, 1, 0, 0, 0, 186, 3009, 1, 0, 0, 0, 188, 3011, 1, 0, 0, 0, 190, 3094, 1, 0, 0, 0, 192, 3096, 1, 0, 0, 0, 194, 3098, 1, 0, 0, 0, 196, 3100, 1, 0, 0, 0, 198, 3104, 1, 0, 0, 0, 200, 3112, 1, 0, 0, 0, 202, 3123, 1, 0, 0, 0, 204, 3127, 1, 0, 0, 0, 206, 3129, 1, 0, 0, 0, 208, 3150, 1, 0, 0, 0, 210, 3171, 1, 0, 0, 0, 212, 3174, 1, 0, 0, 0, 214, 3183, 1, 0, 0, 0, 216, 3193, 1, 0, 0, 0, 218, 3214, 1, 0, 0, 0, 220, 3274, 1, 0, 0, 0, 222, 3276, 1, 0, 0, 0, 224, 3285, 1, 0, 0, 0, 226, 3290, 1, 0, 0, 0, 228, 3292, 1, 0, 0, 0, 230, 3295, 1, 0, 0, 0, 232, 3303, 1, 0, 0, 0, 234, 3306, 1, 0, 0, 0, 236, 3313, 1, 0, 0, 0, 238, 3401, 1, 0, 0, 0, 240, 3403, 1, 0, 0, 0, 242, 3406, 1, 0, 0, 0, 244, 3410, 1, 0, 0, 0, 246, 3418, 1, 0, 0, 0, 248, 3423, 1, 0, 0, 0, 250, 3426, 1, 0, 0, 0, 252, 3434, 1, 0, 0, 0, 254, 3444, 1, 0, 0, 0, 256, 3457, 1, 0, 0, 0, 258, 3459, 1, 0, 0, 0, 260, 3463, 1, 0, 0, 0, 262, 3476, 1, 0, 0, 0, 264, 3478, 1, 0, 0, 0, 266, 3483, 1, 0, 0, 0, 268, 3485, 1, 0, 0, 0, 270, 3492, 1, 0, 0, 0, 272, 3523, 1, 0, 0, 0, 274, 3525, 1, 0, 0, 0, 276, 3534, 1, 0, 0, 0, 278, 3536, 1, 0, 0, 0, 280, 3545, 1, 0, 0, 0, 282, 3549, 1, 0, 0, 0, 284, 3557, 1, 0, 0, 0, 286, 3562, 1, 0, 0, 0, 288, 3566, 1, 0, 0, 0, 290, 3585, 1, 0, 0, 0, 292, 3595, 1, 0, 0, 0, 294, 3609, 1, 0, 0, 0, 296, 3625, 1, 0, 0, 0, 298, 3631, 1, 0, 0, 0, 300, 3646, 1, 0, 0, 0, 302, 3659, 1, 0, 0, 0, 304, 3661, 1, 0, 0, 0, 306, 3671, 1, 0, 0, 0, 308, 3683, 1, 0, 0, 0, 310, 3691, 1, 0, 0, 0, 312, 3693, 1, 0, 0, 0, 314, 3698, 1, 0, 0, 0, 316, 3736, 1, 0, 0, 0, 318, 3738, 1, 0, 0, 0, 320, 3746, 1, 0, 0, 0, 322, 3748, 1, 0, 0, 0, 324, 3756, 1, 0, 0, 0, 326, 3778, 1, 0, 0, 0, 328, 3780, 1, 0, 0, 0, 330, 3784, 1, 0, 0, 0, 332, 3791, 1, 0, 0, 0, 334, 3793, 1, 0, 0, 0, 336, 3795, 1, 0, 0, 0, 338, 3797, 1, 0, 0, 0, 340, 3808, 1, 0, 0, 0, 342, 3811, 1, 0, 0, 0, 344, 3825, 1, 0, 0, 0, 346, 3835, 1, 0, 0, 0, 348, 3837, 1, 0, 0, 0, 350, 3846, 1, 0, 0, 0, 352, 3849, 1, 0, 0, 0, 354, 3954, 1, 0, 0, 0, 356, 3956, 1, 0, 0, 0, 358, 3975, 1, 0, 0, 0, 360, 3978, 1, 0, 0, 0, 362, 3982, 1, 0, 0, 0, 364, 4001, 1, 0, 0, 0, 366, 4003, 1, 0, 0, 0, 368, 4008, 1, 0, 0, 0, 370, 4016, 1, 0, 0, 0, 372, 4021, 1, 0, 0, 0, 374, 4036, 1, 0, 0, 0, 376, 4038, 1, 0, 0, 0, 378, 4041, 1, 0, 0, 0, 380, 4043, 1, 0, 0, 0, 382, 4045, 1, 0, 0, 0, 384, 4064, 1, 0, 0, 0, 386, 4067, 1, 0, 0, 0, 388, 4072, 1, 0, 0, 0, 390, 4074, 1, 0, 0, 0, 392, 4123, 1, 0, 0, 0, 394, 4125, 1, 0, 0, 0, 396, 4143, 1, 0, 0, 0, 398, 4145, 1, 0, 0, 0, 400, 4150, 1, 0, 0, 0, 402, 4165, 1, 0, 0, 0, 404, 4167, 1, 0, 0, 0, 406, 4176, 1, 0, 0, 0, 408, 4196, 1, 0, 0, 0, 410, 4210, 1, 0, 0, 0, 412, 4244, 1, 0, 0, 0, 414, 4274, 1, 0, 0, 0, 416, 4276, 1, 0, 0, 0, 418, 4281, 1, 0, 0, 0, 420, 4287, 1, 0, 0, 0, 422, 4290, 1, 0, 0, 0, 424, 4293, 1, 0, 0, 0, 426, 4299, 1, 0, 0, 0, 428, 4302, 1, 0, 0, 0, 430, 4304, 1, 0, 0, 0, 432, 4313, 1, 0, 0, 0, 434, 4369, 1, 0, 0, 0, 436, 4375, 1, 0, 0, 0, 438, 4377, 1, 0, 0, 0, 440, 4383, 1, 0, 0, 0, 442, 4385, 1, 0, 0, 0, 444, 4400, 1, 0, 0, 0, 446, 4402, 1, 0, 0, 0, 448, 4406, 1, 0, 0, 0, 450, 4410, 1, 0, 0, 0, 452, 4417, 1, 0, 0, 0, 454, 4419, 1, 0, 0, 0, 456, 4421, 1, 0, 0, 0, 458, 4423, 1, 0, 0, 0, 460, 4429, 1, 0, 0, 0, 462, 4431, 1, 0, 0, 0, 464, 4433, 1, 0, 0, 0, 466, 4442, 1, 0, 0, 0, 468, 4446, 1, 0, 0, 0, 470, 4459, 1, 0, 0, 0, 472, 4461, 1, 0, 0, 0, 474, 4467, 1, 0, 0, 0, 476, 4481, 1, 0, 0, 0, 478, 4507, 1, 0, 0, 0, 480, 4509, 1, 0, 0, 0, 482, 4517, 1, 0, 0, 0, 484, 4523, 1, 0, 0, 0, 486, 4531, 1, 0, 0, 0, 488, 4542, 1, 0, 0, 0, 490, 4544, 1, 0, 0, 0, 492, 4656, 1, 0, 0, 0, 494, 4658, 1, 0, 0, 0, 496, 4662, 1, 0, 0, 0, 498, 4670, 1, 0, 0, 0, 500, 4681, 1, 0, 0, 0, 502, 4683, 1, 0, 0, 0, 504, 4687, 1, 0, 0, 0, 506, 4695, 1, 0, 0, 0, 508, 4699, 1, 0, 0, 0, 510, 4701, 1, 0, 0, 0, 512, 4731, 1, 0, 0, 0, 514, 4733, 1, 0, 0, 0, 516, 4737, 1, 0, 0, 0, 518, 4755, 1, 0, 0, 0, 520, 4794, 1, 0, 0, 0, 522, 4796, 1, 0, 0, 0, 524, 4798, 1, 0, 0, 0, 526, 4807, 1, 0, 0, 0, 528, 4809, 1, 0, 0, 0, 530, 4811, 1, 0, 0, 0, 532, 4836, 1, 0, 0, 0, 534, 4838, 1, 0, 0, 0, 536, 4858, 1, 0, 0, 0, 538, 4860, 1, 0, 0, 0, 540, 5246, 1, 0, 0, 0, 542, 5248, 1, 0, 0, 0, 544, 5280, 1, 0, 0, 0, 546, 5313, 1, 0, 0, 0, 548, 5315, 1, 0, 0, 0, 550, 5317, 1, 0, 0, 0, 552, 5325, 1, 0, 0, 0, 554, 5329, 1, 0, 0, 0, 556, 5333, 1, 0, 0, 0, 558, 5339, 1, 0, 0, 0, 560, 5343, 1, 0, 0, 0, 562, 5351, 1, 0, 0, 0, 564, 5371, 1, 0, 0, 0, 566, 5542, 1, 0, 0, 0, 568, 5546, 1, 0, 0, 0, 570, 5657, 1, 0, 0, 0, 572, 5659, 1, 0, 0, 0, 574, 5664, 1, 0, 0, 0, 576, 5670, 1, 0, 0, 0, 578, 5757, 1, 0, 0, 0, 580, 5759, 1, 0, 0, 0, 582, 5761, 1, 0, 0, 0, 584, 5763, 1, 0, 0, 0, 586, 5793, 1, 0, 0, 0, 588, 5811, 1, 0, 0, 0, 590, 5813, 1, 0, 0, 0, 592, 5821, 1, 0, 0, 0, 594, 5823, 1, 0, 0, 0, 596, 5847, 1, 0, 0, 0, 598, 5907, 1, 0, 0, 0, 600, 5909, 1, 0, 0, 0, 602, 5920, 1, 0, 0, 0, 604, 5922, 1, 0, 0, 0, 606, 5926, 1, 0, 0, 0, 608, 5959, 1, 0, 0, 0, 610, 5961, 1, 0, 0, 0, 612, 5965, 1, 0, 0, 0, 614, 5969, 1, 0, 0, 0, 616, 5978, 1, 0, 0, 0, 618, 5990, 1, 0, 0, 0, 620, 6022, 1, 0, 0, 0, 622, 6024, 1, 0, 0, 0, 624, 6026, 1, 0, 0, 0, 626, 6063, 1, 0, 0, 0, 628, 6065, 1, 0, 0, 0, 630, 6067, 1, 0, 0, 0, 632, 6069, 1, 0, 0, 0, 634, 6072, 1, 0, 0, 0, 636, 6103, 1, 0, 0, 0, 638, 6116, 1, 0, 0, 0, 640, 6118, 1, 0, 0, 0, 642, 6123, 1, 0, 0, 0, 644, 6131, 1, 0, 0, 0, 646, 6134, 1, 0, 0, 0, 648, 6136, 1, 0, 0, 0, 650, 6142, 1, 0, 0, 0, 652, 6144, 1, 0, 0, 0, 654, 6171, 1, 0, 0, 0, 656, 6182, 1, 0, 0, 0, 658, 6185, 1, 0, 0, 0, 660, 6191, 1, 0, 0, 0, 662, 6199, 1, 0, 0, 0, 664, 6215, 1, 0, 0, 0, 666, 6217, 1, 0, 0, 0, 668, 6233, 1, 0, 0, 0, 670, 6235, 1, 0, 0, 0, 672, 6251, 1, 0, 0, 0, 674, 6253, 1, 0, 0, 0, 676, 6259, 1, 0, 0, 0, 678, 6280, 1, 0, 0, 0, 680, 6289, 1, 0, 0, 0, 682, 6291, 1, 0, 0, 0, 684, 6293, 1, 0, 0, 0, 686, 6307, 1, 0, 0, 0, 688, 6309, 1, 0, 0, 0, 690, 6314, 1, 0, 0, 0, 692, 6316, 1, 0, 0, 0, 694, 6331, 1, 0, 0, 0, 696, 6339, 1, 0, 0, 0, 698, 6342, 1, 0, 0, 0, 700, 6351, 1, 0, 0, 0, 702, 6390, 1, 0, 0, 0, 704, 6417, 1, 0, 0, 0, 706, 6419, 1, 0, 0, 0, 708, 6431, 1, 0, 0, 0, 710, 6434, 1, 0, 0, 0, 712, 6437, 1, 0, 0, 0, 714, 6445, 1, 0, 0, 0, 716, 6457, 1, 0, 0, 0, 718, 6460, 1, 0, 0, 0, 720, 6464, 1, 0, 0, 0, 722, 6493, 1, 0, 0, 0, 724, 6495, 1, 0, 0, 0, 726, 6504, 1, 0, 0, 0, 728, 6535, 1, 0, 0, 0, 730, 6542, 1, 0, 0, 0, 732, 6547, 1, 0, 0, 0, 734, 6555, 1, 0, 0, 0, 736, 6558, 1, 0, 0, 0, 738, 6562, 1, 0, 0, 0, 740, 6569, 1, 0, 0, 0, 742, 6608, 1, 0, 0, 0, 744, 6614, 1, 0, 0, 0, 746, 6616, 1, 0, 0, 0, 748, 6619, 1, 0, 0, 0, 750, 6666, 1, 0, 0, 0, 752, 6684, 1, 0, 0, 0, 754, 6696, 1, 0, 0, 0, 756, 6713, 1, 0, 0, 0, 758, 6715, 1, 0, 0, 0, 760, 6723, 1, 0, 0, 0, 762, 6737, 1, 0, 0, 0, 764, 7130, 1, 0, 0, 0, 766, 7132, 1, 0, 0, 0, 768, 7204, 1, 0, 0, 0, 770, 7206, 1, 0, 0, 0, 772, 7393, 1, 0, 0, 0, 774, 7395, 1, 0, 0, 0, 776, 7403, 1, 0, 0, 0, 778, 7419, 1, 0, 0, 0, 780, 7426, 1, 0, 0, 0, 782, 7428, 1, 0, 0, 0, 784, 7621, 1, 0, 0, 0, 786, 7623, 1, 0, 0, 0, 788, 7632, 1, 0, 0, 0, 790, 7640, 1, 0, 0, 0, 792, 7680, 1, 0, 0, 0, 794, 7682, 1, 0, 0, 0, 796, 7692, 1, 0, 0, 0, 798, 7700, 1, 0, 0, 0, 800, 7780, 1, 0, 0, 0, 802, 7782, 1, 0, 0, 0, 804, 7808, 1, 0, 0, 0, 806, 7811, 1, 0, 0, 0, 808, 7827, 1, 0, 0, 0, 810, 7829, 1, 0, 0, 0, 812, 7831, 1, 0, 0, 0, 814, 7833, 1, 0, 0, 0, 816, 7835, 1, 0, 0, 0, 818, 7840, 1, 0, 0, 0, 820, 7843, 1, 0, 0, 0, 822, 7850, 1, 0, 0, 0, 824, 7917, 1, 0, 0, 0, 826, 7919, 1, 0, 0, 0, 828, 7931, 1, 0, 0, 0, 830, 7933, 1, 0, 0, 0, 832, 7943, 1, 0, 0, 0, 834, 7945, 1, 0, 0, 0, 836, 7951, 1, 0, 0, 0, 838, 7983, 1, 0, 0, 0, 840, 7990, 1, 0, 0, 0, 842, 7993, 1, 0, 0, 0, 844, 8002, 1, 0, 0, 0, 846, 8005, 1, 0, 0, 0, 848, 8009, 1, 0, 0, 0, 850, 8026, 1, 0, 0, 0, 852, 8028, 1, 0, 0, 0, 854, 8030, 1, 0, 0, 0, 856, 8046, 1, 0, 0, 0, 858, 8052, 1, 0, 0, 0, 860, 8060, 1, 0, 0, 0, 862, 8062, 1, 0, 0, 0, 864, 8068, 1, 0, 0, 0, 866, 8073, 1, 0, 0, 0, 868, 8082, 1, 0, 0, 0, 870, 8108, 1, 0, 0, 0, 872, 8110, 1, 0, 0, 0, 874, 8180, 1, 0, 0, 0, 876, 8182, 1, 0, 0, 0, 878, 8184, 1, 0, 0, 0, 880, 8215, 1, 0, 0, 0, 882, 8217, 1, 0, 0, 0, 884, 8228, 1, 0, 0, 0, 886, 8257, 1, 0, 0, 0, 888, 8273, 1, 0, 0, 0, 890, 8275, 1, 0, 0, 0, 892, 8283, 1, 0, 0, 0, 894, 8285, 1, 0, 0, 0, 896, 8291, 1, 0, 0, 0, 898, 8295, 1, 0, 0, 0, 900, 8297, 1, 0, 0, 0, 902, 8299, 1, 0, 0, 0, 904, 8310, 1, 0, 0, 0, 906, 8312, 1, 0, 0, 0, 908, 8316, 1, 0, 0, 0, 910, 8320, 1, 0, 0, 0, 912, 8325, 1, 0, 0, 0, 914, 8327, 1, 0, 0, 0, 916, 8329, 1, 0, 0, 0, 918, 8333, 1, 0, 0, 0, 920, 8337, 1, 0, 0, 0, 922, 8345, 1, 0, 0, 0, 924, 8365, 1, 0, 0, 0, 926, 8376, 1, 0, 0, 0, 928, 8378, 1, 0, 0, 0, 930, 8386, 1, 0, 0, 0, 932, 8392, 1, 0, 0, 0, 934, 8396, 1, 0, 0, 0, 936, 8398, 1, 0, 0, 0, 938, 8406, 1, 0, 0, 0, 940, 8414, 1, 0, 0, 0, 942, 8439, 1, 0, 0, 0, 944, 8441, 1, 0, 0, 0, 946, 8445, 1, 0, 0, 0, 948, 8454, 1, 0, 0, 0, 950, 8466, 1, 0, 0, 0, 952, 8475, 1, 0, 0, 0, 954, 8487, 1, 0, 0, 0, 956, 8489, 1, 0, 0, 0, 958, 8497, 1, 0, 0, 0, 960, 8500, 1, 0, 0, 0, 962, 8524, 1, 0, 0, 0, 964, 8526, 1, 0, 0, 0, 966, 8530, 1, 0, 0, 0, 968, 8544, 1, 0, 0, 0, 970, 8547, 1, 0, 0, 0, 972, 8558, 1, 0, 0, 0, 974, 8574, 1, 0, 0, 0, 976, 8576, 1, 0, 0, 0, 978, 8581, 1, 0, 0, 0, 980, 8584, 1, 0, 0, 0, 982, 8599, 1, 0, 0, 0, 984, 8625, 1, 0, 0, 0, 986, 8627, 1, 0, 0, 0, 988, 8630, 1, 0, 0, 0, 990, 8638, 1, 0, 0, 0, 992, 8646, 1, 0, 0, 0, 994, 8655, 1, 0, 0, 0, 996, 8663, 1, 0, 0, 0, 998, 8667, 1, 0, 0, 0, 1000, 8677, 1, 0, 0, 0, 1002, 8708, 1, 0, 0, 0, 1004, 8712, 1, 0, 0, 0, 1006, 8759, 1, 0, 0, 0, 1008, 8774, 1, 0, 0, 0, 1010, 8776, 1, 0, 0, 0, 1012, 8780, 1, 0, 0, 0, 1014, 8786, 1, 0, 0, 0, 1016, 8794, 1, 0, 0, 0, 1018, 8811, 1, 0, 0, 0, 1020, 8819, 1, 0, 0, 0, 1022, 8836, 1, 0, 0, 0, 1024, 8838, 1, 0, 0, 0, 1026, 8840, 1, 0, 0, 0, 1028, 8849, 1, 0, 0, 0, 1030, 8867, 1, 0, 0, 0, 1032, 8869, 1, 0, 0, 0, 1034, 8871, 1, 0, 0, 0, 1036, 8873, 1, 0, 0, 0, 1038, 8881, 1, 0, 0, 0, 1040, 8883, 1, 0, 0, 0, 1042, 8885, 1, 0, 0, 0, 1044, 8889, 1, 0, 0, 0, 1046, 8897, 1, 0, 0, 0, 1048, 8918, 1, 0, 0, 0, 1050, 8920, 1, 0, 0, 0, 1052, 8922, 1, 0, 0, 0, 1054, 8928, 1, 0, 0, 0, 1056, 8945, 1, 0, 0, 0, 1058, 8954, 1, 0, 0, 0, 1060, 8956, 1, 0, 0, 0, 1062, 8963, 1, 0, 0, 0, 1064, 8967, 1, 0, 0, 0, 1066, 8969, 1, 0, 0, 0, 1068, 8971, 1, 0, 0, 0, 1070, 8973, 1, 0, 0, 0, 1072, 8980, 1, 0, 0, 0, 1074, 8997, 1, 0, 0, 0, 1076, 8999, 1, 0, 0, 0, 1078, 9002, 1, 0, 0, 0, 1080, 9007, 1, 0, 0, 0, 1082, 9012, 1, 0, 0, 0, 1084, 9018, 1, 0, 0, 0, 1086, 9025, 1, 0, 0, 0, 1088, 9027, 1, 0, 0, 0, 1090, 9030, 1, 0, 0, 0, 1092, 9034, 1, 0, 0, 0, 1094, 9041, 1, 0, 0, 0, 1096, 9053, 1, 0, 0, 0, 1098, 9056, 1, 0, 0, 0, 1100, 9070, 1, 0, 0, 0, 1102, 9073, 1, 0, 0, 0, 1104, 9142, 1, 0, 0, 0, 1106, 9166, 1, 0, 0, 0, 1108, 9175, 1, 0, 0, 0, 1110, 9189, 1, 0, 0, 0, 1112, 9191, 1, 0, 0, 0, 1114, 9202, 1, 0, 0, 0, 1116, 9225, 1, 0, 0, 0, 1118, 9228, 1, 0, 0, 0, 1120, 9267, 1, 0, 0, 0, 1122, 9269, 1, 0, 0, 0, 1124, 9277, 1, 0, 0, 0, 1126, 9285, 1, 0, 0, 0, 1128, 9292, 1, 0, 0, 0, 1130, 9300, 1, 0, 0, 0, 1132, 9317, 1, 0, 0, 0, 1134, 9319, 1, 0, 0, 0, 1136, 9323, 1, 0, 0, 0, 1138, 9331, 1, 0, 0, 0, 1140, 9336, 1, 0, 0, 0, 1142, 9339, 1, 0, 0, 0, 1144, 9342, 1, 0, 0, 0, 1146, 9349, 1, 0, 0, 0, 1148, 9351, 1, 0, 0, 0, 1150, 9359, 1, 0, 0, 0, 1152, 9364, 1, 0, 0, 0, 1154, 9385, 1, 0, 0, 0, 1156, 9393, 1, 0, 0, 0, 1158, 9403, 1, 0, 0, 0, 1160, 9415, 1, 0, 0, 0, 1162, 9417, 1, 0, 0, 0, 1164, 9431, 1, 0, 0, 0, 1166, 9451, 1, 0, 0, 0, 1168, 9460, 1, 0, 0, 0, 1170, 9478, 1, 0, 0, 0, 1172, 9484, 1, 0, 0, 0, 1174, 9486, 1, 0, 0, 0, 1176, 9493, 1, 0, 0, 0, 1178, 9521, 1, 0, 0, 0, 1180, 9523, 1, 0, 0, 0, 1182, 9529, 1, 0, 0, 0, 1184, 9533, 1, 0, 0, 0, 1186, 9535, 1, 0, 0, 0, 1188, 9543, 1, 0, 0, 0, 1190, 9547, 1, 0, 0, 0, 1192, 9554, 1, 0, 0, 0, 1194, 9571, 1, 0, 0, 0, 1196, 9573, 1, 0, 0, 0, 1198, 9575, 1, 0, 0, 0, 1200, 9585, 1, 0, 0, 0, 1202, 9593, 1, 0, 0, 0, 1204, 9620, 1, 0, 0, 0, 1206, 9622, 1, 0, 0, 0, 1208, 9629, 1, 0, 0, 0, 1210, 9632, 1, 0, 0, 0, 1212, 9634, 1, 0, 0, 0, 1214, 9638, 1, 0, 0, 0, 1216, 9646, 1, 0, 0, 0, 1218, 9654, 1, 0, 0, 0, 1220, 9662, 1, 0, 0, 0, 1222, 9671, 1, 0, 0, 0, 1224, 9675, 1, 0, 0, 0, 1226, 9679, 1, 0, 0, 0, 1228, 9705, 1, 0, 0, 0, 1230, 9719, 1, 0, 0, 0, 1232, 9739, 1, 0, 0, 0, 1234, 9749, 1, 0, 0, 0, 1236, 9753, 1, 0, 0, 0, 1238, 9761, 1, 0, 0, 0, 1240, 9769, 1, 0, 0, 0, 1242, 9775, 1, 0, 0, 0, 1244, 9779, 1, 0, 0, 0, 1246, 9786, 1, 0, 0, 0, 1248, 9791, 1, 0, 0, 0, 1250, 9806, 1, 0, 0, 0, 1252, 9886, 1, 0, 0, 0, 1254, 9888, 1, 0, 0, 0, 1256, 9890, 1, 0, 0, 0, 1258, 9929, 1, 0, 0, 0, 1260, 9933, 1, 0, 0, 0, 1262, 10119, 1, 0, 0, 0, 1264, 10126, 1, 0, 0, 0, 1266, 10138, 1, 0, 0, 0, 1268, 10140, 1, 0, 0, 0, 1270, 10145, 1, 0, 0, 0, 1272, 10153, 1, 0, 0, 0, 1274, 10158, 1, 0, 0, 0, 1276, 10164, 1, 0, 0, 0, 1278, 10181, 1, 0, 0, 0, 1280, 10183, 1, 0, 0, 0, 1282, 10186, 1, 0, 0, 0, 1284, 10192, 1, 0, 0, 0, 1286, 10198, 1, 0, 0, 0, 1288, 10201, 1, 0, 0, 0, 1290, 10209, 1, 0, 0, 0, 1292, 10213, 1, 0, 0, 0, 1294, 10218, 1, 0, 0, 0, 1296, 10233, 1, 0, 0, 0, 1298, 10235, 1, 0, 0, 0, 1300, 10254, 1, 0, 0, 0, 1302, 10262, 1, 0, 0, 0, 1304, 10271, 1, 0, 0, 0, 1306, 10273, 1, 0, 0, 0, 1308, 10294, 1, 0, 0, 0, 1310, 10296, 1, 0, 0, 0, 1312, 10303, 1, 0, 0, 0, 1314, 10309, 1, 0, 0, 0, 1316, 10313, 1, 0, 0, 0, 1318, 10315, 1, 0, 0, 0, 1320, 10323, 1, 0, 0, 0, 1322, 10331, 1, 0, 0, 0, 1324, 10345, 1, 0, 0, 0, 1326, 10347, 1, 0, 0, 0, 1328, 10355, 1, 0, 0, 0, 1330, 10363, 1, 0, 0, 0, 1332, 10376, 1, 0, 0, 0, 1334, 10380, 1, 0, 0, 0, 1336, 10382, 1, 0, 0, 0, 1338, 10395, 1, 0, 0, 0, 1340, 10397, 1, 0, 0, 0, 1342, 10405, 1, 0, 0, 0, 1344, 10412, 1, 0, 0, 0, 1346, 10420, 1, 0, 0, 0, 1348, 10432, 1, 0, 0, 0, 1350, 10434, 1, 0, 0, 0, 1352, 10436, 1, 0, 0, 0, 1354, 10445, 1, 0, 0, 0, 1356, 10476, 1, 0, 0, 0, 1358, 10485, 1, 0, 0, 0, 1360, 10492, 1, 0, 0, 0, 1362, 10494, 1, 0, 0, 0, 1364, 10505, 1, 0, 0, 0, 1366, 10509, 1, 0, 0, 0, 1368, 10514, 1, 0, 0, 0, 1370, 10517, 1, 0, 0, 0, 1372, 10519, 1, 0, 0, 0, 1374, 10540, 1, 0, 0, 0, 1376, 10542, 1, 0, 0, 0, 1378, 10545, 1, 0, 0, 0, 1380, 10552, 1, 0, 0, 0, 1382, 10555, 1, 0, 0, 0, 1384, 10557, 1, 0, 0, 0, 1386, 10573, 1, 0, 0, 0, 1388, 10575, 1, 0, 0, 0, 1390, 10583, 1, 0, 0, 0, 1392, 10591, 1, 0, 0, 0, 1394, 10599, 1, 0, 0, 0, 1396, 10607, 1, 0, 0, 0, 1398, 10615, 1, 0, 0, 0, 1400, 10619, 1, 0, 0, 0, 1402, 10623, 1, 0, 0, 0, 1404, 10627, 1, 0, 0, 0, 1406, 10631, 1, 0, 0, 0, 1408, 10635, 1, 0, 0, 0, 1410, 10639, 1, 0, 0, 0, 1412, 10643, 1, 0, 0, 0, 1414, 10651, 1, 0, 0, 0, 1416, 10659, 1, 0, 0, 0, 1418, 10663, 1, 0, 0, 0, 1420, 10667, 1, 0, 0, 0, 1422, 10671, 1, 0, 0, 0, 1424, 10673, 1, 0, 0, 0, 1426, 10679, 1, 0, 0, 0, 1428, 10685, 1, 0, 0, 0, 1430, 10687, 1, 0, 0, 0, 1432, 10694, 1, 0, 0, 0, 1434, 10696, 1, 0, 0, 0, 1436, 10698, 1, 0, 0, 0, 1438, 10700, 1, 0, 0, 0, 1440, 10706, 1, 0, 0, 0, 1442, 10712, 1, 0, 0, 0, 1444, 10718, 1, 0, 0, 0, 1446, 10755, 1, 0, 0, 0, 1448, 10757, 1, 0, 0, 0, 1450, 10759, 1, 0, 0, 0, 1452, 10761, 1, 0, 0, 0, 1454, 10763, 1, 0, 0, 0, 1456, 10765, 1, 0, 0, 0, 1458, 10780, 1, 0, 0, 0, 1460, 10782, 1, 0, 0, 0, 1462, 10790, 1, 0, 0, 0, 1464, 10792, 1, 0, 0, 0, 1466, 10794, 1, 0, 0, 0, 1468, 10801, 1, 0, 0, 0, 1470, 10803, 1, 0, 0, 0, 1472, 10815, 1, 0, 0, 0, 1474, 10817, 1, 0, 0, 0, 1476, 10831, 1, 0, 0, 0, 1478, 10835, 1, 0, 0, 0, 1480, 10844, 1, 0, 0, 0, 1482, 10850, 1, 0, 0, 0, 1484, 10854, 1, 0, 0, 0, 1486, 10860, 1, 0, 0, 0, 1488, 10868, 1, 0, 0, 0, 1490, 10880, 1, 0, 0, 0, 1492, 10882, 1, 0, 0, 0, 1494, 10884, 1, 0, 0, 0, 1496, 10937, 1, 0, 0, 0, 1498, 10939, 1, 0, 0, 0, 1500, 10941, 1, 0, 0, 0, 1502, 10943, 1, 0, 0, 0, 1504, 10950, 1, 0, 0, 0, 1506, 10973, 1, 0, 0, 0, 1508, 10975, 1, 0, 0, 0, 1510, 10981, 1, 0, 0, 0, 1512, 10985, 1, 0, 0, 0, 1514, 10987, 1, 0, 0, 0, 1516, 10994, 1, 0, 0, 0, 1518, 11001, 1, 0, 0, 0, 1520, 11004, 1, 0, 0, 0, 1522, 11008, 1, 0, 0, 0, 1524, 11015, 1, 0, 0, 0, 1526, 11017, 1, 0, 0, 0, 1528, 11041, 1, 0, 0, 0, 1530, 11043, 1, 0, 0, 0, 1532, 11050, 1, 0, 0, 0, 1534, 11052, 1, 0, 0, 0, 1536, 11060, 1, 0, 0, 0, 1538, 11063, 1, 0, 0, 0, 1540, 11067, 1, 0, 0, 0, 1542, 11069, 1, 0, 0, 0, 1544, 11073, 1, 0, 0, 0, 1546, 11075, 1, 0, 0, 0, 1548, 11080, 1, 0, 0, 0, 1550, 11085, 1, 0, 0, 0, 1552, 11091, 1, 0, 0, 0, 1554, 11095, 1, 0, 0, 0, 1556, 11097, 1, 0, 0, 0, 1558, 11102, 1, 0, 0, 0, 1560, 11132, 1, 0, 0, 0, 1562, 11134, 1, 0, 0, 0, 1564, 11154, 1, 0, 0, 0, 1566, 11158, 1, 0, 0, 0, 1568, 11160, 1, 0, 0, 0, 1570, 11165, 1, 0, 0, 0, 1572, 11174, 1, 0, 0, 0, 1574, 11176, 1, 0, 0, 0, 1576, 11184, 1, 0, 0, 0, 1578, 11188, 1, 0, 0, 0, 1580, 11190, 1, 0, 0, 0, 1582, 11194, 1, 0, 0, 0, 1584, 11205, 1, 0, 0, 0, 1586, 11222, 1, 0, 0, 0, 1588, 11228, 1, 0, 0, 0, 1590, 11230, 1, 0, 0, 0, 1592, 11240, 1, 0, 0, 0, 1594, 11243, 1, 0, 0, 0, 1596, 11247, 1, 0, 0, 0, 1598, 11255, 1, 0, 0, 0, 1600, 11257, 1, 0, 0, 0, 1602, 11260, 1, 0, 0, 0, 1604, 11265, 1, 0, 0, 0, 1606, 11270, 1, 0, 0, 0, 1608, 11292, 1, 0, 0, 0, 1610, 11306, 1, 0, 0, 0, 1612, 11310, 1, 0, 0, 0, 1614, 11315, 1, 0, 0, 0, 1616, 11317, 1, 0, 0, 0, 1618, 11319, 1, 0, 0, 0, 1620, 11331, 1, 0, 0, 0, 1622, 11333, 1, 0, 0, 0, 1624, 11340, 1, 0, 0, 0, 1626, 11342, 1, 0, 0, 0, 1628, 11360, 1, 0, 0, 0, 1630, 11396, 1, 0, 0, 0, 1632, 11398, 1, 0, 0, 0, 1634, 11407, 1, 0, 0, 0, 1636, 11412, 1, 0, 0, 0, 1638, 11414, 1, 0, 0, 0, 1640, 11418, 1, 0, 0, 0, 1642, 11426, 1, 0, 0, 0, 1644, 11434, 1, 0, 0, 0, 1646, 11436, 1, 0, 0, 0, 1648, 11443, 1, 0, 0, 0, 1650, 11446, 1, 0, 0, 0, 1652, 11462, 1, 0, 0, 0, 1654, 11464, 1, 0, 0, 0, 1656, 11478, 1, 0, 0, 0, 1658, 11480, 1, 0, 0, 0, 1660, 11507, 1, 0, 0, 0, 1662, 11509, 1, 0, 0, 0, 1664, 11520, 1, 0, 0, 0, 1666, 11526, 1, 0, 0, 0, 1668, 11530, 1, 0, 0, 0, 1670, 11532, 1, 0, 0, 0, 1672, 11542, 1, 0, 0, 0, 1674, 11547, 1, 0, 0, 0, 1676, 11564, 1, 0, 0, 0, 1678, 11566, 1, 0, 0, 0, 1680, 11574, 1, 0, 0, 0, 1682, 11611, 1, 0, 0, 0, 1684, 11619, 1, 0, 0, 0, 1686, 11647, 1, 0, 0, 0, 1688, 11649, 1, 0, 0, 0, 1690, 11663, 1, 0, 0, 0, 1692, 11685, 1, 0, 0, 0, 1694, 11687, 1, 0, 0, 0, 1696, 11700, 1, 0, 0, 0, 1698, 11702, 1, 0, 0, 0, 1700, 11706, 1, 0, 0, 0, 1702, 11709, 1, 0, 0, 0, 1704, 11715, 1, 0, 0, 0, 1706, 11721, 1, 0, 0, 0, 1708, 11739, 1, 0, 0, 0, 1710, 11743, 1, 0, 0, 0, 1712, 11748, 1, 0, 0, 0, 1714, 11751, 1, 0, 0, 0, 1716, 11755, 1, 0, 0, 0, 1718, 11760, 1, 0, 0, 0, 1720, 11771, 1, 0, 0, 0, 1722, 11775, 1, 0, 0, 0, 1724, 11779, 1, 0, 0, 0, 1726, 11783, 1, 0, 0, 0, 1728, 11785, 1, 0, 0, 0, 1730, 11790, 1, 0, 0, 0, 1732, 11792, 1, 0, 0, 0, 1734, 11795, 1, 0, 0, 0, 1736, 11815, 1, 0, 0, 0, 1738, 11817, 1, 0, 0, 0, 1740, 11819, 1, 0, 0, 0, 1742, 11821, 1, 0, 0, 0, 1744, 11823, 1, 0, 0, 0, 1746, 11827, 1, 0, 0, 0, 1748, 1750, 3, 4, 2, 0, 1749, 1748, 1, 0, 0, 0, 1750, 1753, 1, 0, 0, 0, 1751, 1749, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1754, 1755, 5, 0, 0, 1, 1755, 1, 1, 0, 0, 0, 1756, 1757, 3, 1502, 751, 0, 1757, 3, 1, 0, 0, 0, 1758, 1760, 3, 6, 3, 0, 1759, 1761, 5, 7, 0, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 5, 1, 0, 0, 0, 1762, 1880, 3, 486, 243, 0, 1763, 1880, 3, 862, 431, 0, 1764, 1880, 3, 854, 427, 0, 1765, 1880, 3, 856, 428, 0, 1766, 1880, 3, 614, 307, 0, 1767, 1880, 3, 868, 434, 0, 1768, 1880, 3, 512, 256, 0, 1769, 1880, 3, 348, 174, 0, 1770, 1880, 3, 354, 177, 0, 1771, 1880, 3, 364, 182, 0, 1772, 1880, 3, 390, 195, 0, 1773, 1880, 3, 714, 357, 0, 1774, 1880, 3, 42, 21, 0, 1775, 1880, 3, 768, 384, 0, 1776, 1880, 3, 772, 386, 0, 1777, 1880, 3, 784, 392, 0, 1778, 1880, 3, 774, 387, 0, 1779, 1880, 3, 782, 391, 0, 1780, 1880, 3, 408, 204, 0, 1781, 1880, 3, 410, 205, 0, 1782, 1880, 3, 308, 154, 0, 1783, 1880, 3, 864, 432, 0, 1784, 1880, 3, 104, 52, 0, 1785, 1880, 3, 762, 381, 0, 1786, 1880, 3, 150, 75, 0, 1787, 1880, 3, 792, 396, 0, 1788, 1880, 3, 30, 15, 0, 1789, 1880, 3, 32, 16, 0, 1790, 1880, 3, 26, 13, 0, 1791, 1880, 3, 800, 400, 0, 1792, 1880, 3, 290, 145, 0, 1793, 1880, 3, 874, 437, 0, 1794, 1880, 3, 872, 436, 0, 1795, 1880, 3, 404, 202, 0, 1796, 1880, 3, 888, 444, 0, 1797, 1880, 3, 10, 5, 0, 1798, 1880, 3, 100, 50, 0, 1799, 1880, 3, 156, 78, 0, 1800, 1880, 3, 880, 440, 0, 1801, 1880, 3, 566, 283, 0, 1802, 1880, 3, 94, 47, 0, 1803, 1880, 3, 158, 79, 0, 1804, 1880, 3, 430, 215, 0, 1805, 1880, 3, 292, 146, 0, 1806, 1880, 3, 490, 245, 0, 1807, 1880, 3, 742, 371, 0, 1808, 1880, 3, 878, 439, 0, 1809, 1880, 3, 866, 433, 0, 1810, 1880, 3, 342, 171, 0, 1811, 1880, 3, 356, 178, 0, 1812, 1880, 3, 382, 191, 0, 1813, 1880, 3, 392, 196, 0, 1814, 1880, 3, 652, 326, 0, 1815, 1880, 3, 40, 20, 0, 1816, 1880, 3, 298, 149, 0, 1817, 1880, 3, 516, 258, 0, 1818, 1880, 3, 530, 265, 0, 1819, 1880, 3, 786, 393, 0, 1820, 1880, 3, 532, 266, 0, 1821, 1880, 3, 406, 203, 0, 1822, 1880, 3, 324, 162, 0, 1823, 1880, 3, 46, 23, 0, 1824, 1880, 3, 306, 153, 0, 1825, 1880, 3, 188, 94, 0, 1826, 1880, 3, 794, 397, 0, 1827, 1880, 3, 288, 144, 0, 1828, 1880, 3, 338, 169, 0, 1829, 1880, 3, 748, 374, 0, 1830, 1880, 3, 434, 217, 0, 1831, 1880, 3, 478, 239, 0, 1832, 1880, 3, 12, 6, 0, 1833, 1880, 3, 24, 12, 0, 1834, 1880, 3, 400, 200, 0, 1835, 1880, 3, 842, 421, 0, 1836, 1880, 3, 946, 473, 0, 1837, 1880, 3, 990, 495, 0, 1838, 1880, 3, 492, 246, 0, 1839, 1880, 3, 966, 483, 0, 1840, 1880, 3, 102, 51, 0, 1841, 1880, 3, 736, 368, 0, 1842, 1880, 3, 540, 270, 0, 1843, 1880, 3, 942, 471, 0, 1844, 1880, 3, 924, 462, 0, 1845, 1880, 3, 576, 288, 0, 1846, 1880, 3, 584, 292, 0, 1847, 1880, 3, 606, 303, 0, 1848, 1880, 3, 1680, 840, 0, 1849, 1880, 3, 394, 197, 0, 1850, 1880, 3, 624, 312, 0, 1851, 1880, 3, 948, 474, 0, 1852, 1880, 3, 820, 410, 0, 1853, 1880, 3, 304, 152, 0, 1854, 1880, 3, 840, 420, 0, 1855, 1880, 3, 970, 485, 0, 1856, 1880, 3, 816, 408, 0, 1857, 1880, 3, 936, 468, 0, 1858, 1880, 3, 538, 269, 0, 1859, 1880, 3, 752, 376, 0, 1860, 1880, 3, 724, 362, 0, 1861, 1880, 3, 722, 361, 0, 1862, 1880, 3, 726, 363, 0, 1863, 1880, 3, 764, 382, 0, 1864, 1880, 3, 586, 293, 0, 1865, 1880, 3, 608, 304, 0, 1866, 1880, 3, 802, 401, 0, 1867, 1880, 3, 570, 285, 0, 1868, 1880, 3, 998, 499, 0, 1869, 1880, 3, 824, 412, 0, 1870, 1880, 3, 562, 281, 0, 1871, 1880, 3, 822, 411, 0, 1872, 1880, 3, 980, 490, 0, 1873, 1880, 3, 886, 443, 0, 1874, 1880, 3, 82, 41, 0, 1875, 1880, 3, 54, 27, 0, 1876, 1880, 3, 92, 46, 0, 1877, 1880, 3, 836, 418, 0, 1878, 1880, 3, 8, 4, 0, 1879, 1762, 1, 0, 0, 0, 1879, 1763, 1, 0, 0, 0, 1879, 1764, 1, 0, 0, 0, 1879, 1765, 1, 0, 0, 0, 1879, 1766, 1, 0, 0, 0, 1879, 1767, 1, 0, 0, 0, 1879, 1768, 1, 0, 0, 0, 1879, 1769, 1, 0, 0, 0, 1879, 1770, 1, 0, 0, 0, 1879, 1771, 1, 0, 0, 0, 1879, 1772, 1, 0, 0, 0, 1879, 1773, 1, 0, 0, 0, 1879, 1774, 1, 0, 0, 0, 1879, 1775, 1, 0, 0, 0, 1879, 1776, 1, 0, 0, 0, 1879, 1777, 1, 0, 0, 0, 1879, 1778, 1, 0, 0, 0, 1879, 1779, 1, 0, 0, 0, 1879, 1780, 1, 0, 0, 0, 1879, 1781, 1, 0, 0, 0, 1879, 1782, 1, 0, 0, 0, 1879, 1783, 1, 0, 0, 0, 1879, 1784, 1, 0, 0, 0, 1879, 1785, 1, 0, 0, 0, 1879, 1786, 1, 0, 0, 0, 1879, 1787, 1, 0, 0, 0, 1879, 1788, 1, 0, 0, 0, 1879, 1789, 1, 0, 0, 0, 1879, 1790, 1, 0, 0, 0, 1879, 1791, 1, 0, 0, 0, 1879, 1792, 1, 0, 0, 0, 1879, 1793, 1, 0, 0, 0, 1879, 1794, 1, 0, 0, 0, 1879, 1795, 1, 0, 0, 0, 1879, 1796, 1, 0, 0, 0, 1879, 1797, 1, 0, 0, 0, 1879, 1798, 1, 0, 0, 0, 1879, 1799, 1, 0, 0, 0, 1879, 1800, 1, 0, 0, 0, 1879, 1801, 1, 0, 0, 0, 1879, 1802, 1, 0, 0, 0, 1879, 1803, 1, 0, 0, 0, 1879, 1804, 1, 0, 0, 0, 1879, 1805, 1, 0, 0, 0, 1879, 1806, 1, 0, 0, 0, 1879, 1807, 1, 0, 0, 0, 1879, 1808, 1, 0, 0, 0, 1879, 1809, 1, 0, 0, 0, 1879, 1810, 1, 0, 0, 0, 1879, 1811, 1, 0, 0, 0, 1879, 1812, 1, 0, 0, 0, 1879, 1813, 1, 0, 0, 0, 1879, 1814, 1, 0, 0, 0, 1879, 1815, 1, 0, 0, 0, 1879, 1816, 1, 0, 0, 0, 1879, 1817, 1, 0, 0, 0, 1879, 1818, 1, 0, 0, 0, 1879, 1819, 1, 0, 0, 0, 1879, 1820, 1, 0, 0, 0, 1879, 1821, 1, 0, 0, 0, 1879, 1822, 1, 0, 0, 0, 1879, 1823, 1, 0, 0, 0, 1879, 1824, 1, 0, 0, 0, 1879, 1825, 1, 0, 0, 0, 1879, 1826, 1, 0, 0, 0, 1879, 1827, 1, 0, 0, 0, 1879, 1828, 1, 0, 0, 0, 1879, 1829, 1, 0, 0, 0, 1879, 1830, 1, 0, 0, 0, 1879, 1831, 1, 0, 0, 0, 1879, 1832, 1, 0, 0, 0, 1879, 1833, 1, 0, 0, 0, 1879, 1834, 1, 0, 0, 0, 1879, 1835, 1, 0, 0, 0, 1879, 1836, 1, 0, 0, 0, 1879, 1837, 1, 0, 0, 0, 1879, 1838, 1, 0, 0, 0, 1879, 1839, 1, 0, 0, 0, 1879, 1840, 1, 0, 0, 0, 1879, 1841, 1, 0, 0, 0, 1879, 1842, 1, 0, 0, 0, 1879, 1843, 1, 0, 0, 0, 1879, 1844, 1, 0, 0, 0, 1879, 1845, 1, 0, 0, 0, 1879, 1846, 1, 0, 0, 0, 1879, 1847, 1, 0, 0, 0, 1879, 1848, 1, 0, 0, 0, 1879, 1849, 1, 0, 0, 0, 1879, 1850, 1, 0, 0, 0, 1879, 1851, 1, 0, 0, 0, 1879, 1852, 1, 0, 0, 0, 1879, 1853, 1, 0, 0, 0, 1879, 1854, 1, 0, 0, 0, 1879, 1855, 1, 0, 0, 0, 1879, 1856, 1, 0, 0, 0, 1879, 1857, 1, 0, 0, 0, 1879, 1858, 1, 0, 0, 0, 1879, 1859, 1, 0, 0, 0, 1879, 1860, 1, 0, 0, 0, 1879, 1861, 1, 0, 0, 0, 1879, 1862, 1, 0, 0, 0, 1879, 1863, 1, 0, 0, 0, 1879, 1864, 1, 0, 0, 0, 1879, 1865, 1, 0, 0, 0, 1879, 1866, 1, 0, 0, 0, 1879, 1867, 1, 0, 0, 0, 1879, 1868, 1, 0, 0, 0, 1879, 1869, 1, 0, 0, 0, 1879, 1870, 1, 0, 0, 0, 1879, 1871, 1, 0, 0, 0, 1879, 1872, 1, 0, 0, 0, 1879, 1873, 1, 0, 0, 0, 1879, 1874, 1, 0, 0, 0, 1879, 1875, 1, 0, 0, 0, 1879, 1876, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1878, 1, 0, 0, 0, 1880, 7, 1, 0, 0, 0, 1881, 1883, 5, 581, 0, 0, 1882, 1884, 5, 582, 0, 0, 1883, 1882, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 9, 1, 0, 0, 0, 1885, 1886, 5, 433, 0, 0, 1886, 1887, 3, 1256, 628, 0, 1887, 11, 1, 0, 0, 0, 1888, 1889, 5, 46, 0, 0, 1889, 1890, 5, 318, 0, 0, 1890, 1892, 3, 1466, 733, 0, 1891, 1893, 3, 14, 7, 0, 1892, 1891, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 3, 16, 8, 0, 1895, 13, 1, 0, 0, 0, 1896, 1897, 5, 105, 0, 0, 1897, 15, 1, 0, 0, 0, 1898, 1900, 3, 22, 11, 0, 1899, 1898, 1, 0, 0, 0, 1900, 1903, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 17, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1904, 1906, 3, 20, 10, 0, 1905, 1904, 1, 0, 0, 0, 1906, 1909, 1, 0, 0, 0, 1907, 1905, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 19, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1913, 5, 287, 0, 0, 1911, 1914, 3, 1456, 728, 0, 1912, 1914, 5, 78, 0, 0, 1913, 1911, 1, 0, 0, 0, 1913, 1912, 1, 0, 0, 0, 1914, 1946, 1, 0, 0, 0, 1915, 1916, 7, 0, 0, 0, 1916, 1917, 5, 287, 0, 0, 1917, 1946, 3, 1456, 728, 0, 1918, 1946, 7, 1, 0, 0, 1919, 1946, 7, 2, 0, 0, 1920, 1946, 7, 3, 0, 0, 1921, 1946, 7, 4, 0, 0, 1922, 1946, 7, 5, 0, 0, 1923, 1946, 7, 6, 0, 0, 1924, 1946, 7, 7, 0, 0, 1925, 1946, 7, 8, 0, 0, 1926, 1927, 5, 164, 0, 0, 1927, 1928, 5, 74, 0, 0, 1928, 1946, 3, 1462, 731, 0, 1929, 1930, 5, 371, 0, 0, 1930, 1931, 5, 368, 0, 0, 1931, 1946, 3, 1456, 728, 0, 1932, 1933, 5, 68, 0, 0, 1933, 1934, 5, 318, 0, 0, 1934, 1946, 3, 1414, 707, 0, 1935, 1936, 5, 68, 0, 0, 1936, 1937, 5, 66, 0, 0, 1937, 1946, 3, 1414, 707, 0, 1938, 1939, 5, 318, 0, 0, 1939, 1946, 3, 1470, 735, 0, 1940, 1941, 5, 134, 0, 0, 1941, 1946, 3, 1414, 707, 0, 1942, 1943, 5, 99, 0, 0, 1943, 1946, 3, 1470, 735, 0, 1944, 1946, 3, 1490, 745, 0, 1945, 1910, 1, 0, 0, 0, 1945, 1915, 1, 0, 0, 0, 1945, 1918, 1, 0, 0, 0, 1945, 1919, 1, 0, 0, 0, 1945, 1920, 1, 0, 0, 0, 1945, 1921, 1, 0, 0, 0, 1945, 1922, 1, 0, 0, 0, 1945, 1923, 1, 0, 0, 0, 1945, 1924, 1, 0, 0, 0, 1945, 1925, 1, 0, 0, 0, 1945, 1926, 1, 0, 0, 0, 1945, 1929, 1, 0, 0, 0, 1945, 1932, 1, 0, 0, 0, 1945, 1935, 1, 0, 0, 0, 1945, 1938, 1, 0, 0, 0, 1945, 1940, 1, 0, 0, 0, 1945, 1942, 1, 0, 0, 0, 1945, 1944, 1, 0, 0, 0, 1946, 21, 1, 0, 0, 0, 1947, 1958, 3, 20, 10, 0, 1948, 1949, 5, 348, 0, 0, 1949, 1958, 3, 1454, 727, 0, 1950, 1951, 5, 134, 0, 0, 1951, 1958, 3, 1470, 735, 0, 1952, 1953, 5, 318, 0, 0, 1953, 1958, 3, 1470, 735, 0, 1954, 1955, 5, 68, 0, 0, 1955, 1956, 7, 9, 0, 0, 1956, 1958, 3, 1470, 735, 0, 1957, 1947, 1, 0, 0, 0, 1957, 1948, 1, 0, 0, 0, 1957, 1950, 1, 0, 0, 0, 1957, 1952, 1, 0, 0, 0, 1957, 1954, 1, 0, 0, 0, 1958, 23, 1, 0, 0, 0, 1959, 1960, 5, 46, 0, 0, 1960, 1961, 5, 99, 0, 0, 1961, 1963, 3, 1466, 733, 0, 1962, 1964, 3, 14, 7, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 3, 16, 8, 0, 1966, 25, 1, 0, 0, 0, 1967, 1968, 5, 138, 0, 0, 1968, 1969, 7, 10, 0, 0, 1969, 1971, 3, 1468, 734, 0, 1970, 1972, 3, 14, 7, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 3, 18, 9, 0, 1974, 27, 1, 0, 0, 0, 1975, 1980, 1, 0, 0, 0, 1976, 1977, 5, 68, 0, 0, 1977, 1978, 5, 175, 0, 0, 1978, 1980, 3, 1418, 709, 0, 1979, 1975, 1, 0, 0, 0, 1979, 1976, 1, 0, 0, 0, 1980, 29, 1, 0, 0, 0, 1981, 1982, 5, 138, 0, 0, 1982, 1985, 7, 10, 0, 0, 1983, 1986, 5, 30, 0, 0, 1984, 1986, 3, 1468, 734, 0, 1985, 1983, 1, 0, 0, 0, 1985, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1988, 3, 28, 14, 0, 1988, 1989, 3, 88, 44, 0, 1989, 31, 1, 0, 0, 0, 1990, 1991, 5, 138, 0, 0, 1991, 1992, 5, 442, 0, 0, 1992, 1994, 3, 1424, 712, 0, 1993, 1995, 3, 658, 329, 0, 1994, 1993, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 3, 34, 17, 0, 1997, 33, 1, 0, 0, 0, 1998, 2000, 3, 36, 18, 0, 1999, 2001, 5, 315, 0, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2019, 1, 0, 0, 0, 2002, 2003, 5, 309, 0, 0, 2003, 2004, 5, 94, 0, 0, 2004, 2019, 3, 1422, 711, 0, 2005, 2006, 5, 282, 0, 0, 2006, 2007, 5, 94, 0, 0, 2007, 2019, 3, 1468, 734, 0, 2008, 2009, 5, 333, 0, 0, 2009, 2010, 5, 323, 0, 0, 2010, 2019, 3, 48, 24, 0, 2011, 2013, 5, 269, 0, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 5, 462, 0, 0, 2015, 2016, 5, 80, 0, 0, 2016, 2017, 5, 204, 0, 0, 2017, 2019, 3, 1434, 717, 0, 2018, 1998, 1, 0, 0, 0, 2018, 2002, 1, 0, 0, 0, 2018, 2005, 1, 0, 0, 0, 2018, 2008, 1, 0, 0, 0, 2018, 2012, 1, 0, 0, 0, 2019, 35, 1, 0, 0, 0, 2020, 2024, 3, 38, 19, 0, 2021, 2023, 3, 38, 19, 0, 2022, 2021, 1, 0, 0, 0, 2023, 2026, 1, 0, 0, 0, 2024, 2022, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 37, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2027, 2069, 5, 222, 0, 0, 2028, 2069, 5, 338, 0, 0, 2029, 2069, 5, 377, 0, 0, 2030, 2032, 5, 77, 0, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2069, 5, 250, 0, 0, 2034, 2036, 5, 205, 0, 0, 2035, 2034, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2038, 5, 327, 0, 0, 2038, 2045, 5, 243, 0, 0, 2039, 2041, 5, 205, 0, 0, 2040, 2039, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2043, 5, 327, 0, 0, 2043, 2045, 5, 181, 0, 0, 2044, 2035, 1, 0, 0, 0, 2044, 2040, 1, 0, 0, 0, 2045, 2069, 1, 0, 0, 0, 2046, 2047, 5, 460, 0, 0, 2047, 2069, 7, 11, 0, 0, 2048, 2049, 5, 170, 0, 0, 2049, 2069, 3, 1436, 718, 0, 2050, 2051, 5, 320, 0, 0, 2051, 2069, 3, 1434, 717, 0, 2052, 2053, 5, 333, 0, 0, 2053, 2054, 3, 1434, 717, 0, 2054, 2057, 7, 12, 0, 0, 2055, 2058, 3, 1434, 717, 0, 2056, 2058, 5, 53, 0, 0, 2057, 2055, 1, 0, 0, 0, 2057, 2056, 1, 0, 0, 0, 2058, 2069, 1, 0, 0, 0, 2059, 2060, 5, 333, 0, 0, 2060, 2061, 3, 1434, 717, 0, 2061, 2062, 5, 64, 0, 0, 2062, 2063, 5, 434, 0, 0, 2063, 2069, 1, 0, 0, 0, 2064, 2065, 5, 313, 0, 0, 2065, 2069, 3, 1434, 717, 0, 2066, 2067, 5, 313, 0, 0, 2067, 2069, 5, 30, 0, 0, 2068, 2027, 1, 0, 0, 0, 2068, 2028, 1, 0, 0, 0, 2068, 2029, 1, 0, 0, 0, 2068, 2031, 1, 0, 0, 0, 2068, 2044, 1, 0, 0, 0, 2068, 2046, 1, 0, 0, 0, 2068, 2048, 1, 0, 0, 0, 2068, 2050, 1, 0, 0, 0, 2068, 2052, 1, 0, 0, 0, 2068, 2059, 1, 0, 0, 0, 2068, 2064, 1, 0, 0, 0, 2068, 2066, 1, 0, 0, 0, 2069, 39, 1, 0, 0, 0, 2070, 2071, 5, 46, 0, 0, 2071, 2072, 5, 66, 0, 0, 2072, 2074, 3, 1464, 732, 0, 2073, 2075, 3, 14, 7, 0, 2074, 2073, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2077, 3, 16, 8, 0, 2077, 41, 1, 0, 0, 0, 2078, 2079, 5, 138, 0, 0, 2079, 2080, 5, 66, 0, 0, 2080, 2081, 3, 1468, 734, 0, 2081, 2082, 3, 44, 22, 0, 2082, 2083, 5, 99, 0, 0, 2083, 2084, 3, 1470, 735, 0, 2084, 43, 1, 0, 0, 0, 2085, 2086, 7, 13, 0, 0, 2086, 45, 1, 0, 0, 0, 2087, 2088, 5, 46, 0, 0, 2088, 2090, 5, 323, 0, 0, 2089, 2091, 3, 514, 257, 0, 2090, 2089, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2098, 1, 0, 0, 0, 2092, 2094, 3, 48, 24, 0, 2093, 2092, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2096, 5, 106, 0, 0, 2096, 2099, 3, 1468, 734, 0, 2097, 2099, 3, 48, 24, 0, 2098, 2093, 1, 0, 0, 0, 2098, 2097, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2101, 3, 50, 25, 0, 2101, 47, 1, 0, 0, 0, 2102, 2104, 3, 1472, 736, 0, 2103, 2105, 3, 558, 279, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 49, 1, 0, 0, 0, 2106, 2108, 3, 52, 26, 0, 2107, 2106, 1, 0, 0, 0, 2108, 2111, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 51, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2119, 3, 188, 94, 0, 2113, 2119, 3, 624, 312, 0, 2114, 2119, 3, 306, 153, 0, 2115, 2119, 3, 434, 217, 0, 2116, 2119, 3, 584, 292, 0, 2117, 2119, 3, 836, 418, 0, 2118, 2112, 1, 0, 0, 0, 2118, 2113, 1, 0, 0, 0, 2118, 2114, 1, 0, 0, 0, 2118, 2115, 1, 0, 0, 0, 2118, 2116, 1, 0, 0, 0, 2118, 2117, 1, 0, 0, 0, 2119, 53, 1, 0, 0, 0, 2120, 2122, 5, 333, 0, 0, 2121, 2123, 7, 14, 0, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2125, 3, 56, 28, 0, 2125, 55, 1, 0, 0, 0, 2126, 2127, 5, 356, 0, 0, 2127, 2135, 3, 830, 415, 0, 2128, 2129, 5, 332, 0, 0, 2129, 2130, 5, 154, 0, 0, 2130, 2131, 5, 36, 0, 0, 2131, 2132, 5, 356, 0, 0, 2132, 2135, 3, 830, 415, 0, 2133, 2135, 3, 60, 30, 0, 2134, 2126, 1, 0, 0, 0, 2134, 2128, 1, 0, 0, 0, 2134, 2133, 1, 0, 0, 0, 2135, 57, 1, 0, 0, 0, 2136, 2139, 5, 30, 0, 0, 2137, 2139, 3, 62, 31, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2137, 1, 0, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2142, 7, 12, 0, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2145, 1, 0, 0, 0, 2143, 2146, 5, 53, 0, 0, 2144, 2146, 3, 64, 32, 0, 2145, 2143, 1, 0, 0, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 59, 1, 0, 0, 0, 2147, 2148, 5, 418, 0, 0, 2148, 2149, 5, 386, 0, 0, 2149, 2175, 3, 74, 37, 0, 2150, 2151, 5, 152, 0, 0, 2151, 2175, 3, 1456, 728, 0, 2152, 2153, 5, 323, 0, 0, 2153, 2175, 3, 1420, 710, 0, 2154, 2156, 5, 267, 0, 0, 2155, 2157, 3, 76, 38, 0, 2156, 2155, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2175, 1, 0, 0, 0, 2158, 2159, 5, 318, 0, 0, 2159, 2175, 3, 80, 40, 0, 2160, 2161, 5, 332, 0, 0, 2161, 2162, 5, 106, 0, 0, 2162, 2175, 3, 80, 40, 0, 2163, 2164, 5, 383, 0, 0, 2164, 2165, 5, 279, 0, 0, 2165, 2175, 3, 1274, 637, 0, 2166, 2167, 5, 356, 0, 0, 2167, 2168, 5, 337, 0, 0, 2168, 2175, 3, 1456, 728, 0, 2169, 2170, 3, 62, 31, 0, 2170, 2171, 5, 64, 0, 0, 2171, 2172, 5, 434, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2175, 3, 58, 29, 0, 2174, 2147, 1, 0, 0, 0, 2174, 2150, 1, 0, 0, 0, 2174, 2152, 1, 0, 0, 0, 2174, 2154, 1, 0, 0, 0, 2174, 2158, 1, 0, 0, 0, 2174, 2160, 1, 0, 0, 0, 2174, 2163, 1, 0, 0, 0, 2174, 2166, 1, 0, 0, 0, 2174, 2169, 1, 0, 0, 0, 2174, 2173, 1, 0, 0, 0, 2175, 61, 1, 0, 0, 0, 2176, 2181, 3, 1472, 736, 0, 2177, 2178, 5, 11, 0, 0, 2178, 2180, 3, 1472, 736, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2183, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 63, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2184, 2189, 3, 66, 33, 0, 2185, 2186, 5, 6, 0, 0, 2186, 2188, 3, 66, 33, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2191, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 65, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 2195, 3, 72, 36, 0, 2193, 2195, 3, 320, 160, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2193, 1, 0, 0, 0, 2195, 67, 1, 0, 0, 0, 2196, 2197, 5, 300, 0, 0, 2197, 2202, 7, 15, 0, 0, 2198, 2199, 5, 310, 0, 0, 2199, 2202, 5, 300, 0, 0, 2200, 2202, 5, 330, 0, 0, 2201, 2196, 1, 0, 0, 0, 2201, 2198, 1, 0, 0, 0, 2201, 2200, 1, 0, 0, 0, 2202, 69, 1, 0, 0, 0, 2203, 2208, 5, 96, 0, 0, 2204, 2208, 5, 60, 0, 0, 2205, 2208, 5, 80, 0, 0, 2206, 2208, 3, 78, 39, 0, 2207, 2203, 1, 0, 0, 0, 2207, 2204, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2206, 1, 0, 0, 0, 2208, 71, 1, 0, 0, 0, 2209, 2214, 5, 96, 0, 0, 2210, 2214, 5, 60, 0, 0, 2211, 2214, 5, 80, 0, 0, 2212, 2214, 3, 80, 40, 0, 2213, 2209, 1, 0, 0, 0, 2213, 2210, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2213, 2212, 1, 0, 0, 0, 2214, 73, 1, 0, 0, 0, 2215, 2232, 3, 1456, 728, 0, 2216, 2232, 3, 1490, 745, 0, 2217, 2218, 3, 1200, 600, 0, 2218, 2220, 3, 1456, 728, 0, 2219, 2221, 3, 1204, 602, 0, 2220, 2219, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 2232, 1, 0, 0, 0, 2222, 2223, 3, 1200, 600, 0, 2223, 2224, 5, 2, 0, 0, 2224, 2225, 3, 1454, 727, 0, 2225, 2226, 5, 3, 0, 0, 2226, 2227, 3, 1456, 728, 0, 2227, 2232, 1, 0, 0, 0, 2228, 2232, 3, 320, 160, 0, 2229, 2232, 5, 53, 0, 0, 2230, 2232, 5, 254, 0, 0, 2231, 2215, 1, 0, 0, 0, 2231, 2216, 1, 0, 0, 0, 2231, 2217, 1, 0, 0, 0, 2231, 2222, 1, 0, 0, 0, 2231, 2228, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2231, 2230, 1, 0, 0, 0, 2232, 75, 1, 0, 0, 0, 2233, 2236, 3, 1456, 728, 0, 2234, 2236, 5, 53, 0, 0, 2235, 2233, 1, 0, 0, 0, 2235, 2234, 1, 0, 0, 0, 2236, 77, 1, 0, 0, 0, 2237, 2240, 3, 1484, 742, 0, 2238, 2240, 3, 1456, 728, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2238, 1, 0, 0, 0, 2240, 79, 1, 0, 0, 0, 2241, 2244, 3, 1486, 743, 0, 2242, 2244, 3, 1456, 728, 0, 2243, 2241, 1, 0, 0, 0, 2243, 2242, 1, 0, 0, 0, 2244, 81, 1, 0, 0, 0, 2245, 2246, 5, 313, 0, 0, 2246, 2247, 3, 84, 42, 0, 2247, 83, 1, 0, 0, 0, 2248, 2249, 5, 418, 0, 0, 2249, 2257, 5, 386, 0, 0, 2250, 2251, 5, 356, 0, 0, 2251, 2252, 5, 244, 0, 0, 2252, 2257, 5, 251, 0, 0, 2253, 2254, 5, 332, 0, 0, 2254, 2257, 5, 106, 0, 0, 2255, 2257, 3, 86, 43, 0, 2256, 2248, 1, 0, 0, 0, 2256, 2250, 1, 0, 0, 0, 2256, 2253, 1, 0, 0, 0, 2256, 2255, 1, 0, 0, 0, 2257, 85, 1, 0, 0, 0, 2258, 2261, 5, 30, 0, 0, 2259, 2261, 3, 62, 31, 0, 2260, 2258, 1, 0, 0, 0, 2260, 2259, 1, 0, 0, 0, 2261, 87, 1, 0, 0, 0, 2262, 2263, 5, 333, 0, 0, 2263, 2266, 3, 56, 28, 0, 2264, 2266, 3, 82, 41, 0, 2265, 2262, 1, 0, 0, 0, 2265, 2264, 1, 0, 0, 0, 2266, 89, 1, 0, 0, 0, 2267, 2268, 5, 333, 0, 0, 2268, 2271, 3, 60, 30, 0, 2269, 2271, 3, 82, 41, 0, 2270, 2267, 1, 0, 0, 0, 2270, 2269, 1, 0, 0, 0, 2271, 91, 1, 0, 0, 0, 2272, 2282, 5, 335, 0, 0, 2273, 2283, 3, 62, 31, 0, 2274, 2275, 5, 418, 0, 0, 2275, 2283, 5, 386, 0, 0, 2276, 2277, 5, 356, 0, 0, 2277, 2278, 5, 244, 0, 0, 2278, 2283, 5, 251, 0, 0, 2279, 2280, 5, 332, 0, 0, 2280, 2283, 5, 106, 0, 0, 2281, 2283, 5, 30, 0, 0, 2282, 2273, 1, 0, 0, 0, 2282, 2274, 1, 0, 0, 0, 2282, 2276, 1, 0, 0, 0, 2282, 2279, 1, 0, 0, 0, 2282, 2281, 1, 0, 0, 0, 2283, 93, 1, 0, 0, 0, 2284, 2285, 5, 333, 0, 0, 2285, 2286, 5, 165, 0, 0, 2286, 2287, 3, 96, 48, 0, 2287, 2288, 3, 98, 49, 0, 2288, 95, 1, 0, 0, 0, 2289, 2292, 5, 30, 0, 0, 2290, 2292, 3, 1388, 694, 0, 2291, 2289, 1, 0, 0, 0, 2291, 2290, 1, 0, 0, 0, 2292, 97, 1, 0, 0, 0, 2293, 2294, 7, 16, 0, 0, 2294, 99, 1, 0, 0, 0, 2295, 2296, 5, 155, 0, 0, 2296, 101, 1, 0, 0, 0, 2297, 2298, 5, 187, 0, 0, 2298, 2299, 7, 17, 0, 0, 2299, 103, 1, 0, 0, 0, 2300, 2301, 5, 138, 0, 0, 2301, 2303, 5, 92, 0, 0, 2302, 2304, 3, 746, 373, 0, 2303, 2302, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2308, 3, 1116, 558, 0, 2306, 2309, 3, 106, 53, 0, 2307, 2309, 3, 116, 58, 0, 2308, 2306, 1, 0, 0, 0, 2308, 2307, 1, 0, 0, 0, 2309, 2434, 1, 0, 0, 0, 2310, 2311, 5, 138, 0, 0, 2311, 2312, 5, 92, 0, 0, 2312, 2313, 5, 30, 0, 0, 2313, 2314, 5, 68, 0, 0, 2314, 2315, 5, 351, 0, 0, 2315, 2319, 3, 1400, 700, 0, 2316, 2317, 5, 281, 0, 0, 2317, 2318, 5, 147, 0, 0, 2318, 2320, 3, 1470, 735, 0, 2319, 2316, 1, 0, 0, 0, 2319, 2320, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2322, 5, 333, 0, 0, 2322, 2323, 5, 351, 0, 0, 2323, 2325, 3, 1398, 699, 0, 2324, 2326, 3, 976, 488, 0, 2325, 2324, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2434, 1, 0, 0, 0, 2327, 2328, 5, 138, 0, 0, 2328, 2330, 5, 92, 0, 0, 2329, 2331, 3, 746, 373, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 3, 1404, 702, 0, 2333, 2334, 5, 435, 0, 0, 2334, 2335, 5, 285, 0, 0, 2335, 2340, 3, 1410, 705, 0, 2336, 2337, 5, 62, 0, 0, 2337, 2338, 5, 422, 0, 0, 2338, 2341, 3, 108, 54, 0, 2339, 2341, 5, 53, 0, 0, 2340, 2336, 1, 0, 0, 0, 2340, 2339, 1, 0, 0, 0, 2341, 2434, 1, 0, 0, 0, 2342, 2343, 5, 138, 0, 0, 2343, 2345, 5, 92, 0, 0, 2344, 2346, 3, 746, 373, 0, 2345, 2344, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 3, 1404, 702, 0, 2348, 2349, 5, 436, 0, 0, 2349, 2350, 5, 285, 0, 0, 2350, 2352, 3, 1410, 705, 0, 2351, 2353, 7, 18, 0, 0, 2352, 2351, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2434, 1, 0, 0, 0, 2354, 2355, 5, 138, 0, 0, 2355, 2357, 5, 226, 0, 0, 2356, 2358, 3, 746, 373, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2362, 3, 1410, 705, 0, 2360, 2363, 3, 106, 53, 0, 2361, 2363, 3, 118, 59, 0, 2362, 2360, 1, 0, 0, 0, 2362, 2361, 1, 0, 0, 0, 2363, 2434, 1, 0, 0, 0, 2364, 2365, 5, 138, 0, 0, 2365, 2366, 5, 226, 0, 0, 2366, 2367, 5, 30, 0, 0, 2367, 2368, 5, 68, 0, 0, 2368, 2369, 5, 351, 0, 0, 2369, 2373, 3, 1400, 700, 0, 2370, 2371, 5, 281, 0, 0, 2371, 2372, 5, 147, 0, 0, 2372, 2374, 3, 1470, 735, 0, 2373, 2370, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 5, 333, 0, 0, 2376, 2377, 5, 351, 0, 0, 2377, 2379, 3, 1398, 699, 0, 2378, 2380, 3, 976, 488, 0, 2379, 2378, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2434, 1, 0, 0, 0, 2381, 2382, 5, 138, 0, 0, 2382, 2384, 5, 328, 0, 0, 2383, 2385, 3, 746, 373, 0, 2384, 2383, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2387, 3, 1410, 705, 0, 2387, 2388, 3, 106, 53, 0, 2388, 2434, 1, 0, 0, 0, 2389, 2390, 5, 138, 0, 0, 2390, 2392, 5, 376, 0, 0, 2391, 2393, 3, 746, 373, 0, 2392, 2391, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2395, 3, 1408, 704, 0, 2395, 2396, 3, 106, 53, 0, 2396, 2434, 1, 0, 0, 0, 2397, 2398, 5, 138, 0, 0, 2398, 2399, 5, 259, 0, 0, 2399, 2401, 5, 376, 0, 0, 2400, 2402, 3, 746, 373, 0, 2401, 2400, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2404, 3, 1408, 704, 0, 2404, 2405, 3, 106, 53, 0, 2405, 2434, 1, 0, 0, 0, 2406, 2407, 5, 138, 0, 0, 2407, 2408, 5, 259, 0, 0, 2408, 2409, 5, 376, 0, 0, 2409, 2410, 5, 30, 0, 0, 2410, 2411, 5, 68, 0, 0, 2411, 2412, 5, 351, 0, 0, 2412, 2416, 3, 1400, 700, 0, 2413, 2414, 5, 281, 0, 0, 2414, 2415, 5, 147, 0, 0, 2415, 2417, 3, 1470, 735, 0, 2416, 2413, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 5, 333, 0, 0, 2419, 2420, 5, 351, 0, 0, 2420, 2422, 3, 1398, 699, 0, 2421, 2423, 3, 976, 488, 0, 2422, 2421, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2434, 1, 0, 0, 0, 2424, 2425, 5, 138, 0, 0, 2425, 2426, 5, 63, 0, 0, 2426, 2428, 5, 92, 0, 0, 2427, 2429, 3, 746, 373, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2431, 3, 1116, 558, 0, 2431, 2432, 3, 106, 53, 0, 2432, 2434, 1, 0, 0, 0, 2433, 2300, 1, 0, 0, 0, 2433, 2310, 1, 0, 0, 0, 2433, 2327, 1, 0, 0, 0, 2433, 2342, 1, 0, 0, 0, 2433, 2354, 1, 0, 0, 0, 2433, 2364, 1, 0, 0, 0, 2433, 2381, 1, 0, 0, 0, 2433, 2389, 1, 0, 0, 0, 2433, 2397, 1, 0, 0, 0, 2433, 2406, 1, 0, 0, 0, 2433, 2424, 1, 0, 0, 0, 2434, 105, 1, 0, 0, 0, 2435, 2440, 3, 120, 60, 0, 2436, 2437, 5, 6, 0, 0, 2437, 2439, 3, 120, 60, 0, 2438, 2436, 1, 0, 0, 0, 2439, 2442, 1, 0, 0, 0, 2440, 2438, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 107, 1, 0, 0, 0, 2442, 2440, 1, 0, 0, 0, 2443, 2444, 5, 68, 0, 0, 2444, 2453, 3, 1176, 588, 0, 2445, 2446, 5, 64, 0, 0, 2446, 2447, 3, 110, 55, 0, 2447, 2448, 5, 94, 0, 0, 2448, 2449, 3, 110, 55, 0, 2449, 2453, 1, 0, 0, 0, 2450, 2451, 5, 105, 0, 0, 2451, 2453, 3, 114, 57, 0, 2452, 2443, 1, 0, 0, 0, 2452, 2445, 1, 0, 0, 0, 2452, 2450, 1, 0, 0, 0, 2453, 109, 1, 0, 0, 0, 2454, 2455, 5, 2, 0, 0, 2455, 2460, 3, 112, 56, 0, 2456, 2457, 5, 6, 0, 0, 2457, 2459, 3, 112, 56, 0, 2458, 2456, 1, 0, 0, 0, 2459, 2462, 1, 0, 0, 0, 2460, 2458, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2463, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2463, 2464, 5, 3, 0, 0, 2464, 111, 1, 0, 0, 0, 2465, 2469, 3, 1176, 588, 0, 2466, 2469, 5, 262, 0, 0, 2467, 2469, 5, 260, 0, 0, 2468, 2465, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2468, 2467, 1, 0, 0, 0, 2469, 113, 1, 0, 0, 0, 2470, 2471, 5, 2, 0, 0, 2471, 2472, 5, 533, 0, 0, 2472, 2473, 3, 320, 160, 0, 2473, 2474, 5, 6, 0, 0, 2474, 2475, 5, 534, 0, 0, 2475, 2476, 3, 320, 160, 0, 2476, 2477, 5, 3, 0, 0, 2477, 115, 1, 0, 0, 0, 2478, 2479, 5, 435, 0, 0, 2479, 2480, 5, 285, 0, 0, 2480, 2481, 3, 1410, 705, 0, 2481, 2482, 3, 144, 72, 0, 2482, 2487, 1, 0, 0, 0, 2483, 2484, 5, 436, 0, 0, 2484, 2485, 5, 285, 0, 0, 2485, 2487, 3, 1410, 705, 0, 2486, 2478, 1, 0, 0, 0, 2486, 2483, 1, 0, 0, 0, 2487, 117, 1, 0, 0, 0, 2488, 2489, 5, 435, 0, 0, 2489, 2490, 5, 285, 0, 0, 2490, 2491, 3, 1410, 705, 0, 2491, 119, 1, 0, 0, 0, 2492, 2495, 5, 133, 0, 0, 2493, 2494, 5, 45, 0, 0, 2494, 2496, 3, 1434, 717, 0, 2495, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2710, 3, 238, 119, 0, 2498, 2499, 5, 138, 0, 0, 2499, 2500, 5, 45, 0, 0, 2500, 2501, 3, 1434, 717, 0, 2501, 2502, 3, 474, 237, 0, 2502, 2710, 1, 0, 0, 0, 2503, 2504, 5, 372, 0, 0, 2504, 2505, 5, 45, 0, 0, 2505, 2710, 3, 1434, 717, 0, 2506, 2507, 5, 191, 0, 0, 2507, 2509, 5, 45, 0, 0, 2508, 2510, 3, 746, 373, 0, 2509, 2508, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2513, 3, 1434, 717, 0, 2512, 2514, 3, 124, 62, 0, 2513, 2512, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2710, 1, 0, 0, 0, 2515, 2516, 5, 333, 0, 0, 2516, 2517, 5, 379, 0, 0, 2517, 2710, 5, 277, 0, 0, 2518, 2519, 5, 158, 0, 0, 2519, 2520, 5, 80, 0, 0, 2520, 2710, 3, 1434, 717, 0, 2521, 2522, 5, 333, 0, 0, 2522, 2523, 5, 379, 0, 0, 2523, 2710, 5, 158, 0, 0, 2524, 2525, 5, 333, 0, 0, 2525, 2710, 7, 19, 0, 0, 2526, 2528, 5, 193, 0, 0, 2527, 2529, 7, 20, 0, 0, 2528, 2527, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2710, 5, 357, 0, 0, 2531, 2532, 5, 186, 0, 0, 2532, 2536, 5, 357, 0, 0, 2533, 2537, 5, 30, 0, 0, 2534, 2537, 5, 99, 0, 0, 2535, 2537, 3, 1434, 717, 0, 2536, 2533, 1, 0, 0, 0, 2536, 2534, 1, 0, 0, 0, 2536, 2535, 1, 0, 0, 0, 2537, 2710, 1, 0, 0, 0, 2538, 2539, 5, 193, 0, 0, 2539, 2540, 7, 20, 0, 0, 2540, 2541, 5, 321, 0, 0, 2541, 2710, 3, 1434, 717, 0, 2542, 2543, 5, 186, 0, 0, 2543, 2544, 5, 321, 0, 0, 2544, 2710, 3, 1434, 717, 0, 2545, 2547, 5, 269, 0, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2549, 5, 228, 0, 0, 2549, 2710, 3, 1410, 705, 0, 2550, 2551, 5, 275, 0, 0, 2551, 2710, 3, 556, 278, 0, 2552, 2553, 5, 77, 0, 0, 2553, 2710, 5, 275, 0, 0, 2554, 2555, 5, 282, 0, 0, 2555, 2556, 5, 94, 0, 0, 2556, 2710, 3, 1468, 734, 0, 2557, 2558, 5, 333, 0, 0, 2558, 2559, 5, 351, 0, 0, 2559, 2710, 3, 1398, 699, 0, 2560, 2561, 5, 333, 0, 0, 2561, 2710, 3, 132, 66, 0, 2562, 2563, 5, 313, 0, 0, 2563, 2710, 3, 132, 66, 0, 2564, 2565, 5, 312, 0, 0, 2565, 2566, 5, 219, 0, 0, 2566, 2710, 3, 130, 65, 0, 2567, 2568, 5, 193, 0, 0, 2568, 2569, 5, 414, 0, 0, 2569, 2570, 5, 251, 0, 0, 2570, 2710, 5, 327, 0, 0, 2571, 2572, 5, 186, 0, 0, 2572, 2573, 5, 414, 0, 0, 2573, 2574, 5, 251, 0, 0, 2574, 2710, 5, 327, 0, 0, 2575, 2576, 5, 209, 0, 0, 2576, 2577, 5, 414, 0, 0, 2577, 2578, 5, 251, 0, 0, 2578, 2710, 5, 327, 0, 0, 2579, 2580, 5, 269, 0, 0, 2580, 2581, 5, 209, 0, 0, 2581, 2582, 5, 414, 0, 0, 2582, 2583, 5, 251, 0, 0, 2583, 2710, 5, 327, 0, 0, 2584, 2586, 5, 191, 0, 0, 2585, 2587, 5, 44, 0, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2590, 3, 746, 373, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2593, 3, 1430, 715, 0, 2592, 2594, 3, 124, 62, 0, 2593, 2592, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2710, 1, 0, 0, 0, 2595, 2597, 5, 133, 0, 0, 2596, 2598, 5, 44, 0, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2600, 1, 0, 0, 0, 2599, 2601, 3, 514, 257, 0, 2600, 2599, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2710, 3, 206, 103, 0, 2603, 2605, 5, 138, 0, 0, 2604, 2606, 5, 44, 0, 0, 2605, 2604, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2608, 3, 1430, 715, 0, 2608, 2609, 3, 122, 61, 0, 2609, 2710, 1, 0, 0, 0, 2610, 2612, 5, 138, 0, 0, 2611, 2613, 5, 44, 0, 0, 2612, 2611, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 3, 1430, 715, 0, 2615, 2616, 7, 21, 0, 0, 2616, 2617, 5, 77, 0, 0, 2617, 2618, 5, 78, 0, 0, 2618, 2710, 1, 0, 0, 0, 2619, 2621, 5, 138, 0, 0, 2620, 2622, 5, 44, 0, 0, 2621, 2620, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2624, 3, 1430, 715, 0, 2624, 2625, 5, 191, 0, 0, 2625, 2627, 5, 437, 0, 0, 2626, 2628, 3, 746, 373, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2710, 1, 0, 0, 0, 2629, 2631, 5, 138, 0, 0, 2630, 2632, 5, 44, 0, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2634, 3, 1430, 715, 0, 2634, 2635, 5, 333, 0, 0, 2635, 2636, 5, 342, 0, 0, 2636, 2637, 3, 1462, 731, 0, 2637, 2710, 1, 0, 0, 0, 2638, 2640, 5, 138, 0, 0, 2639, 2641, 5, 44, 0, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 3, 1430, 715, 0, 2643, 2644, 7, 22, 0, 0, 2644, 2645, 3, 132, 66, 0, 2645, 2710, 1, 0, 0, 0, 2646, 2648, 5, 138, 0, 0, 2647, 2649, 5, 44, 0, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 3, 1430, 715, 0, 2651, 2652, 5, 333, 0, 0, 2652, 2653, 5, 345, 0, 0, 2653, 2654, 3, 1472, 736, 0, 2654, 2710, 1, 0, 0, 0, 2655, 2657, 5, 138, 0, 0, 2656, 2658, 5, 44, 0, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 3, 1430, 715, 0, 2660, 2661, 5, 133, 0, 0, 2661, 2662, 5, 438, 0, 0, 2662, 2663, 3, 224, 112, 0, 2663, 2664, 5, 36, 0, 0, 2664, 2666, 5, 219, 0, 0, 2665, 2667, 3, 312, 156, 0, 2666, 2665, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2710, 1, 0, 0, 0, 2668, 2670, 5, 138, 0, 0, 2669, 2671, 5, 44, 0, 0, 2670, 2669, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2673, 3, 1430, 715, 0, 2673, 2674, 3, 140, 70, 0, 2674, 2710, 1, 0, 0, 0, 2675, 2677, 5, 138, 0, 0, 2676, 2678, 5, 44, 0, 0, 2677, 2676, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 3, 1430, 715, 0, 2680, 2681, 5, 191, 0, 0, 2681, 2683, 5, 219, 0, 0, 2682, 2684, 3, 746, 373, 0, 2683, 2682, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2710, 1, 0, 0, 0, 2685, 2687, 5, 138, 0, 0, 2686, 2688, 5, 44, 0, 0, 2687, 2686, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2691, 3, 1430, 715, 0, 2690, 2692, 3, 766, 383, 0, 2691, 2690, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2694, 5, 360, 0, 0, 2694, 2696, 3, 1166, 583, 0, 2695, 2697, 3, 126, 63, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2699, 1, 0, 0, 0, 2698, 2700, 3, 128, 64, 0, 2699, 2698, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2710, 1, 0, 0, 0, 2701, 2703, 5, 138, 0, 0, 2702, 2704, 5, 44, 0, 0, 2703, 2702, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2706, 3, 1430, 715, 0, 2706, 2707, 3, 370, 185, 0, 2707, 2710, 1, 0, 0, 0, 2708, 2710, 3, 370, 185, 0, 2709, 2492, 1, 0, 0, 0, 2709, 2498, 1, 0, 0, 0, 2709, 2503, 1, 0, 0, 0, 2709, 2506, 1, 0, 0, 0, 2709, 2515, 1, 0, 0, 0, 2709, 2518, 1, 0, 0, 0, 2709, 2521, 1, 0, 0, 0, 2709, 2524, 1, 0, 0, 0, 2709, 2526, 1, 0, 0, 0, 2709, 2531, 1, 0, 0, 0, 2709, 2538, 1, 0, 0, 0, 2709, 2542, 1, 0, 0, 0, 2709, 2546, 1, 0, 0, 0, 2709, 2550, 1, 0, 0, 0, 2709, 2552, 1, 0, 0, 0, 2709, 2554, 1, 0, 0, 0, 2709, 2557, 1, 0, 0, 0, 2709, 2560, 1, 0, 0, 0, 2709, 2562, 1, 0, 0, 0, 2709, 2564, 1, 0, 0, 0, 2709, 2567, 1, 0, 0, 0, 2709, 2571, 1, 0, 0, 0, 2709, 2575, 1, 0, 0, 0, 2709, 2579, 1, 0, 0, 0, 2709, 2584, 1, 0, 0, 0, 2709, 2595, 1, 0, 0, 0, 2709, 2603, 1, 0, 0, 0, 2709, 2610, 1, 0, 0, 0, 2709, 2619, 1, 0, 0, 0, 2709, 2629, 1, 0, 0, 0, 2709, 2638, 1, 0, 0, 0, 2709, 2646, 1, 0, 0, 0, 2709, 2655, 1, 0, 0, 0, 2709, 2668, 1, 0, 0, 0, 2709, 2675, 1, 0, 0, 0, 2709, 2685, 1, 0, 0, 0, 2709, 2701, 1, 0, 0, 0, 2709, 2708, 1, 0, 0, 0, 2710, 121, 1, 0, 0, 0, 2711, 2712, 5, 333, 0, 0, 2712, 2713, 5, 53, 0, 0, 2713, 2717, 3, 1210, 605, 0, 2714, 2715, 5, 191, 0, 0, 2715, 2717, 5, 53, 0, 0, 2716, 2711, 1, 0, 0, 0, 2716, 2714, 1, 0, 0, 0, 2717, 123, 1, 0, 0, 0, 2718, 2719, 7, 23, 0, 0, 2719, 125, 1, 0, 0, 0, 2720, 2721, 5, 43, 0, 0, 2721, 2722, 3, 556, 278, 0, 2722, 127, 1, 0, 0, 0, 2723, 2724, 5, 100, 0, 0, 2724, 2725, 3, 1210, 605, 0, 2725, 129, 1, 0, 0, 0, 2726, 2733, 5, 270, 0, 0, 2727, 2733, 5, 113, 0, 0, 2728, 2733, 5, 53, 0, 0, 2729, 2730, 5, 100, 0, 0, 2730, 2731, 5, 226, 0, 0, 2731, 2733, 3, 1434, 717, 0, 2732, 2726, 1, 0, 0, 0, 2732, 2727, 1, 0, 0, 0, 2732, 2728, 1, 0, 0, 0, 2732, 2729, 1, 0, 0, 0, 2733, 131, 1, 0, 0, 0, 2734, 2735, 5, 2, 0, 0, 2735, 2736, 3, 136, 68, 0, 2736, 2737, 5, 3, 0, 0, 2737, 133, 1, 0, 0, 0, 2738, 2739, 5, 105, 0, 0, 2739, 2740, 3, 132, 66, 0, 2740, 135, 1, 0, 0, 0, 2741, 2746, 3, 138, 69, 0, 2742, 2743, 5, 6, 0, 0, 2743, 2745, 3, 138, 69, 0, 2744, 2742, 1, 0, 0, 0, 2745, 2748, 1, 0, 0, 0, 2746, 2744, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 137, 1, 0, 0, 0, 2748, 2746, 1, 0, 0, 0, 2749, 2758, 3, 1488, 744, 0, 2750, 2751, 5, 10, 0, 0, 2751, 2759, 3, 500, 250, 0, 2752, 2753, 5, 11, 0, 0, 2753, 2756, 3, 1488, 744, 0, 2754, 2755, 5, 10, 0, 0, 2755, 2757, 3, 500, 250, 0, 2756, 2754, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2759, 1, 0, 0, 0, 2758, 2750, 1, 0, 0, 0, 2758, 2752, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 139, 1, 0, 0, 0, 2760, 2762, 3, 142, 71, 0, 2761, 2760, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2761, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 141, 1, 0, 0, 0, 2765, 2770, 5, 314, 0, 0, 2766, 2768, 3, 14, 7, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2771, 3, 320, 160, 0, 2770, 2767, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2779, 1, 0, 0, 0, 2772, 2776, 5, 333, 0, 0, 2773, 2777, 3, 316, 158, 0, 2774, 2775, 5, 438, 0, 0, 2775, 2777, 3, 224, 112, 0, 2776, 2773, 1, 0, 0, 0, 2776, 2774, 1, 0, 0, 0, 2777, 2779, 1, 0, 0, 0, 2778, 2765, 1, 0, 0, 0, 2778, 2772, 1, 0, 0, 0, 2779, 143, 1, 0, 0, 0, 2780, 2781, 5, 62, 0, 0, 2781, 2782, 5, 422, 0, 0, 2782, 2783, 5, 105, 0, 0, 2783, 2784, 5, 2, 0, 0, 2784, 2785, 3, 148, 74, 0, 2785, 2786, 5, 3, 0, 0, 2786, 2807, 1, 0, 0, 0, 2787, 2788, 5, 62, 0, 0, 2788, 2789, 5, 422, 0, 0, 2789, 2790, 5, 68, 0, 0, 2790, 2791, 5, 2, 0, 0, 2791, 2792, 3, 1326, 663, 0, 2792, 2793, 5, 3, 0, 0, 2793, 2807, 1, 0, 0, 0, 2794, 2795, 5, 62, 0, 0, 2795, 2796, 5, 422, 0, 0, 2796, 2797, 5, 64, 0, 0, 2797, 2798, 5, 2, 0, 0, 2798, 2799, 3, 1326, 663, 0, 2799, 2800, 5, 3, 0, 0, 2800, 2801, 5, 94, 0, 0, 2801, 2802, 5, 2, 0, 0, 2802, 2803, 3, 1326, 663, 0, 2803, 2804, 5, 3, 0, 0, 2804, 2807, 1, 0, 0, 0, 2805, 2807, 5, 53, 0, 0, 2806, 2780, 1, 0, 0, 0, 2806, 2787, 1, 0, 0, 0, 2806, 2794, 1, 0, 0, 0, 2806, 2805, 1, 0, 0, 0, 2807, 145, 1, 0, 0, 0, 2808, 2809, 3, 1486, 743, 0, 2809, 2810, 3, 1454, 727, 0, 2810, 147, 1, 0, 0, 0, 2811, 2816, 3, 146, 73, 0, 2812, 2813, 5, 6, 0, 0, 2813, 2815, 3, 146, 73, 0, 2814, 2812, 1, 0, 0, 0, 2815, 2818, 1, 0, 0, 0, 2816, 2814, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 149, 1, 0, 0, 0, 2818, 2816, 1, 0, 0, 0, 2819, 2820, 5, 138, 0, 0, 2820, 2821, 5, 360, 0, 0, 2821, 2822, 3, 556, 278, 0, 2822, 2823, 3, 152, 76, 0, 2823, 151, 1, 0, 0, 0, 2824, 2829, 3, 154, 77, 0, 2825, 2826, 5, 6, 0, 0, 2826, 2828, 3, 154, 77, 0, 2827, 2825, 1, 0, 0, 0, 2828, 2831, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2830, 1, 0, 0, 0, 2830, 153, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2832, 2833, 5, 133, 0, 0, 2833, 2834, 5, 143, 0, 0, 2834, 2836, 3, 1150, 575, 0, 2835, 2837, 3, 124, 62, 0, 2836, 2835, 1, 0, 0, 0, 2836, 2837, 1, 0, 0, 0, 2837, 2862, 1, 0, 0, 0, 2838, 2839, 5, 191, 0, 0, 2839, 2841, 5, 143, 0, 0, 2840, 2842, 3, 746, 373, 0, 2841, 2840, 1, 0, 0, 0, 2841, 2842, 1, 0, 0, 0, 2842, 2843, 1, 0, 0, 0, 2843, 2845, 3, 1472, 736, 0, 2844, 2846, 3, 124, 62, 0, 2845, 2844, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2862, 1, 0, 0, 0, 2847, 2848, 5, 138, 0, 0, 2848, 2849, 5, 143, 0, 0, 2849, 2851, 3, 1472, 736, 0, 2850, 2852, 3, 766, 383, 0, 2851, 2850, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2854, 5, 360, 0, 0, 2854, 2856, 3, 1166, 583, 0, 2855, 2857, 3, 126, 63, 0, 2856, 2855, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2860, 3, 124, 62, 0, 2859, 2858, 1, 0, 0, 0, 2859, 2860, 1, 0, 0, 0, 2860, 2862, 1, 0, 0, 0, 2861, 2832, 1, 0, 0, 0, 2861, 2838, 1, 0, 0, 0, 2861, 2847, 1, 0, 0, 0, 2862, 155, 1, 0, 0, 0, 2863, 2866, 5, 157, 0, 0, 2864, 2867, 3, 992, 496, 0, 2865, 2867, 5, 30, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2865, 1, 0, 0, 0, 2867, 157, 1, 0, 0, 0, 2868, 2870, 5, 169, 0, 0, 2869, 2871, 3, 172, 86, 0, 2870, 2869, 1, 0, 0, 0, 2870, 2871, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2874, 3, 1404, 702, 0, 2873, 2875, 3, 242, 121, 0, 2874, 2873, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2878, 3, 160, 80, 0, 2877, 2879, 3, 162, 81, 0, 2878, 2877, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 2880, 1, 0, 0, 0, 2880, 2882, 3, 164, 82, 0, 2881, 2883, 3, 174, 87, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2885, 1, 0, 0, 0, 2884, 2886, 3, 14, 7, 0, 2885, 2884, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2889, 3, 166, 83, 0, 2888, 2890, 3, 1142, 571, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2906, 1, 0, 0, 0, 2891, 2892, 5, 169, 0, 0, 2892, 2893, 5, 2, 0, 0, 2893, 2894, 3, 940, 470, 0, 2894, 2895, 5, 3, 0, 0, 2895, 2897, 5, 94, 0, 0, 2896, 2898, 3, 162, 81, 0, 2897, 2896, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2901, 3, 164, 82, 0, 2900, 2902, 3, 14, 7, 0, 2901, 2900, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2904, 3, 166, 83, 0, 2904, 2906, 1, 0, 0, 0, 2905, 2868, 1, 0, 0, 0, 2905, 2891, 1, 0, 0, 0, 2906, 159, 1, 0, 0, 0, 2907, 2908, 7, 24, 0, 0, 2908, 161, 1, 0, 0, 0, 2909, 2910, 5, 297, 0, 0, 2910, 163, 1, 0, 0, 0, 2911, 2915, 3, 1456, 728, 0, 2912, 2915, 5, 343, 0, 0, 2913, 2915, 5, 344, 0, 0, 2914, 2911, 1, 0, 0, 0, 2914, 2912, 1, 0, 0, 0, 2914, 2913, 1, 0, 0, 0, 2915, 165, 1, 0, 0, 0, 2916, 2922, 3, 168, 84, 0, 2917, 2918, 5, 2, 0, 0, 2918, 2919, 3, 178, 89, 0, 2919, 2920, 5, 3, 0, 0, 2920, 2922, 1, 0, 0, 0, 2921, 2916, 1, 0, 0, 0, 2921, 2917, 1, 0, 0, 0, 2922, 167, 1, 0, 0, 0, 2923, 2925, 3, 170, 85, 0, 2924, 2923, 1, 0, 0, 0, 2925, 2928, 1, 0, 0, 0, 2926, 2924, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 169, 1, 0, 0, 0, 2928, 2926, 1, 0, 0, 0, 2929, 2969, 5, 107, 0, 0, 2930, 2969, 5, 112, 0, 0, 2931, 2933, 5, 183, 0, 0, 2932, 2934, 3, 870, 435, 0, 2933, 2932, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2969, 3, 1456, 728, 0, 2936, 2938, 5, 78, 0, 0, 2937, 2939, 3, 870, 435, 0, 2938, 2937, 1, 0, 0, 0, 2938, 2939, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2969, 3, 1456, 728, 0, 2941, 2969, 5, 171, 0, 0, 2942, 2969, 5, 216, 0, 0, 2943, 2945, 5, 298, 0, 0, 2944, 2946, 3, 870, 435, 0, 2945, 2944, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2969, 3, 1456, 728, 0, 2948, 2950, 5, 197, 0, 0, 2949, 2951, 3, 870, 435, 0, 2950, 2949, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2969, 3, 1456, 728, 0, 2953, 2954, 5, 209, 0, 0, 2954, 2955, 5, 298, 0, 0, 2955, 2969, 3, 244, 122, 0, 2956, 2957, 5, 209, 0, 0, 2957, 2958, 5, 298, 0, 0, 2958, 2969, 5, 9, 0, 0, 2959, 2960, 5, 209, 0, 0, 2960, 2961, 5, 77, 0, 0, 2961, 2962, 5, 78, 0, 0, 2962, 2969, 3, 244, 122, 0, 2963, 2964, 5, 209, 0, 0, 2964, 2965, 5, 78, 0, 0, 2965, 2969, 3, 244, 122, 0, 2966, 2967, 5, 194, 0, 0, 2967, 2969, 3, 1456, 728, 0, 2968, 2929, 1, 0, 0, 0, 2968, 2930, 1, 0, 0, 0, 2968, 2931, 1, 0, 0, 0, 2968, 2936, 1, 0, 0, 0, 2968, 2941, 1, 0, 0, 0, 2968, 2942, 1, 0, 0, 0, 2968, 2943, 1, 0, 0, 0, 2968, 2948, 1, 0, 0, 0, 2968, 2953, 1, 0, 0, 0, 2968, 2956, 1, 0, 0, 0, 2968, 2959, 1, 0, 0, 0, 2968, 2963, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2969, 171, 1, 0, 0, 0, 2970, 2971, 5, 107, 0, 0, 2971, 173, 1, 0, 0, 0, 2972, 2974, 3, 176, 88, 0, 2973, 2972, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 2975, 1, 0, 0, 0, 2975, 2976, 5, 184, 0, 0, 2976, 2977, 3, 1456, 728, 0, 2977, 175, 1, 0, 0, 0, 2978, 2979, 5, 100, 0, 0, 2979, 177, 1, 0, 0, 0, 2980, 2985, 3, 180, 90, 0, 2981, 2982, 5, 6, 0, 0, 2982, 2984, 3, 180, 90, 0, 2983, 2981, 1, 0, 0, 0, 2984, 2987, 1, 0, 0, 0, 2985, 2983, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 179, 1, 0, 0, 0, 2987, 2985, 1, 0, 0, 0, 2988, 2990, 3, 1488, 744, 0, 2989, 2991, 3, 182, 91, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 181, 1, 0, 0, 0, 2992, 3000, 3, 72, 36, 0, 2993, 3000, 3, 320, 160, 0, 2994, 3000, 5, 9, 0, 0, 2995, 2996, 5, 2, 0, 0, 2996, 2997, 3, 184, 92, 0, 2997, 2998, 5, 3, 0, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2992, 1, 0, 0, 0, 2999, 2993, 1, 0, 0, 0, 2999, 2994, 1, 0, 0, 0, 2999, 2995, 1, 0, 0, 0, 3000, 183, 1, 0, 0, 0, 3001, 3006, 3, 186, 93, 0, 3002, 3003, 5, 6, 0, 0, 3003, 3005, 3, 186, 93, 0, 3004, 3002, 1, 0, 0, 0, 3005, 3008, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 185, 1, 0, 0, 0, 3008, 3006, 1, 0, 0, 0, 3009, 3010, 3, 70, 35, 0, 3010, 187, 1, 0, 0, 0, 3011, 3013, 5, 46, 0, 0, 3012, 3014, 3, 190, 95, 0, 3013, 3012, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 3015, 1, 0, 0, 0, 3015, 3017, 5, 92, 0, 0, 3016, 3018, 3, 514, 257, 0, 3017, 3016, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3085, 3, 1402, 701, 0, 3020, 3022, 5, 2, 0, 0, 3021, 3023, 3, 192, 96, 0, 3022, 3021, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3026, 5, 3, 0, 0, 3025, 3027, 3, 264, 132, 0, 3026, 3025, 1, 0, 0, 0, 3026, 3027, 1, 0, 0, 0, 3027, 3029, 1, 0, 0, 0, 3028, 3030, 3, 266, 133, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3032, 1, 0, 0, 0, 3031, 3033, 3, 274, 137, 0, 3032, 3031, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3035, 1, 0, 0, 0, 3034, 3036, 3, 276, 138, 0, 3035, 3034, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3039, 3, 278, 139, 0, 3038, 3037, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3041, 1, 0, 0, 0, 3040, 3042, 3, 280, 140, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3086, 1, 0, 0, 0, 3043, 3044, 5, 275, 0, 0, 3044, 3046, 3, 556, 278, 0, 3045, 3047, 3, 196, 98, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3049, 1, 0, 0, 0, 3048, 3050, 3, 266, 133, 0, 3049, 3048, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 3052, 1, 0, 0, 0, 3051, 3053, 3, 274, 137, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3055, 1, 0, 0, 0, 3054, 3056, 3, 276, 138, 0, 3055, 3054, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3058, 1, 0, 0, 0, 3057, 3059, 3, 278, 139, 0, 3058, 3057, 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 3061, 1, 0, 0, 0, 3060, 3062, 3, 280, 140, 0, 3061, 3060, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3086, 1, 0, 0, 0, 3063, 3064, 5, 285, 0, 0, 3064, 3065, 5, 275, 0, 0, 3065, 3067, 3, 1410, 705, 0, 3066, 3068, 3, 196, 98, 0, 3067, 3066, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3071, 3, 144, 72, 0, 3070, 3072, 3, 266, 133, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3074, 1, 0, 0, 0, 3073, 3075, 3, 274, 137, 0, 3074, 3073, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3077, 1, 0, 0, 0, 3076, 3078, 3, 276, 138, 0, 3077, 3076, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3081, 3, 278, 139, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3084, 3, 280, 140, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3086, 1, 0, 0, 0, 3085, 3020, 1, 0, 0, 0, 3085, 3043, 1, 0, 0, 0, 3085, 3063, 1, 0, 0, 0, 3086, 189, 1, 0, 0, 0, 3087, 3095, 5, 354, 0, 0, 3088, 3095, 5, 352, 0, 0, 3089, 3090, 5, 254, 0, 0, 3090, 3095, 7, 25, 0, 0, 3091, 3092, 5, 213, 0, 0, 3092, 3095, 7, 25, 0, 0, 3093, 3095, 5, 367, 0, 0, 3094, 3087, 1, 0, 0, 0, 3094, 3088, 1, 0, 0, 0, 3094, 3089, 1, 0, 0, 0, 3094, 3091, 1, 0, 0, 0, 3094, 3093, 1, 0, 0, 0, 3095, 191, 1, 0, 0, 0, 3096, 3097, 3, 198, 99, 0, 3097, 193, 1, 0, 0, 0, 3098, 3099, 3, 198, 99, 0, 3099, 195, 1, 0, 0, 0, 3100, 3101, 5, 2, 0, 0, 3101, 3102, 3, 200, 100, 0, 3102, 3103, 5, 3, 0, 0, 3103, 197, 1, 0, 0, 0, 3104, 3109, 3, 202, 101, 0, 3105, 3106, 5, 6, 0, 0, 3106, 3108, 3, 202, 101, 0, 3107, 3105, 1, 0, 0, 0, 3108, 3111, 1, 0, 0, 0, 3109, 3107, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 199, 1, 0, 0, 0, 3111, 3109, 1, 0, 0, 0, 3112, 3117, 3, 204, 102, 0, 3113, 3114, 5, 6, 0, 0, 3114, 3116, 3, 204, 102, 0, 3115, 3113, 1, 0, 0, 0, 3116, 3119, 1, 0, 0, 0, 3117, 3115, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 201, 1, 0, 0, 0, 3119, 3117, 1, 0, 0, 0, 3120, 3124, 3, 208, 104, 0, 3121, 3124, 3, 230, 115, 0, 3122, 3124, 3, 236, 118, 0, 3123, 3120, 1, 0, 0, 0, 3123, 3121, 1, 0, 0, 0, 3123, 3122, 1, 0, 0, 0, 3124, 203, 1, 0, 0, 0, 3125, 3128, 3, 214, 107, 0, 3126, 3128, 3, 236, 118, 0, 3127, 3125, 1, 0, 0, 0, 3127, 3126, 1, 0, 0, 0, 3128, 205, 1, 0, 0, 0, 3129, 3130, 3, 1430, 715, 0, 3130, 3132, 3, 1166, 583, 0, 3131, 3133, 3, 366, 183, 0, 3132, 3131, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3135, 1, 0, 0, 0, 3134, 3136, 3, 212, 106, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3138, 1, 0, 0, 0, 3137, 3139, 3, 210, 105, 0, 3138, 3137, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 3142, 1, 0, 0, 0, 3140, 3141, 5, 43, 0, 0, 3141, 3143, 3, 556, 278, 0, 3142, 3140, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3146, 1, 0, 0, 0, 3144, 3145, 5, 105, 0, 0, 3145, 3147, 5, 280, 0, 0, 3146, 3144, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 3, 216, 108, 0, 3149, 207, 1, 0, 0, 0, 3150, 3151, 3, 1430, 715, 0, 3151, 3153, 3, 1166, 583, 0, 3152, 3154, 3, 366, 183, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3156, 1, 0, 0, 0, 3155, 3157, 3, 212, 106, 0, 3156, 3155, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3159, 1, 0, 0, 0, 3158, 3160, 3, 210, 105, 0, 3159, 3158, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3163, 1, 0, 0, 0, 3161, 3162, 5, 43, 0, 0, 3162, 3164, 3, 556, 278, 0, 3163, 3161, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3167, 1, 0, 0, 0, 3165, 3166, 5, 105, 0, 0, 3166, 3168, 5, 280, 0, 0, 3167, 3165, 1, 0, 0, 0, 3167, 3168, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3170, 3, 216, 108, 0, 3170, 209, 1, 0, 0, 0, 3171, 3172, 5, 543, 0, 0, 3172, 3173, 3, 1472, 736, 0, 3173, 211, 1, 0, 0, 0, 3174, 3181, 5, 345, 0, 0, 3175, 3182, 5, 544, 0, 0, 3176, 3182, 5, 205, 0, 0, 3177, 3182, 5, 545, 0, 0, 3178, 3182, 5, 546, 0, 0, 3179, 3182, 5, 53, 0, 0, 3180, 3182, 3, 1472, 736, 0, 3181, 3175, 1, 0, 0, 0, 3181, 3176, 1, 0, 0, 0, 3181, 3177, 1, 0, 0, 0, 3181, 3178, 1, 0, 0, 0, 3181, 3179, 1, 0, 0, 0, 3181, 3180, 1, 0, 0, 0, 3182, 213, 1, 0, 0, 0, 3183, 3186, 3, 1430, 715, 0, 3184, 3185, 5, 105, 0, 0, 3185, 3187, 5, 280, 0, 0, 3186, 3184, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3189, 3, 216, 108, 0, 3189, 215, 1, 0, 0, 0, 3190, 3192, 3, 218, 109, 0, 3191, 3190, 1, 0, 0, 0, 3192, 3195, 1, 0, 0, 0, 3193, 3191, 1, 0, 0, 0, 3193, 3194, 1, 0, 0, 0, 3194, 217, 1, 0, 0, 0, 3195, 3193, 1, 0, 0, 0, 3196, 3197, 5, 45, 0, 0, 3197, 3199, 3, 1434, 717, 0, 3198, 3196, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3202, 3, 220, 110, 0, 3201, 3203, 3, 226, 113, 0, 3202, 3201, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3205, 1, 0, 0, 0, 3204, 3206, 3, 228, 114, 0, 3205, 3204, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3215, 1, 0, 0, 0, 3207, 3209, 3, 220, 110, 0, 3208, 3210, 3, 226, 113, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3212, 1, 0, 0, 0, 3211, 3213, 3, 228, 114, 0, 3212, 3211, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3215, 1, 0, 0, 0, 3214, 3198, 1, 0, 0, 0, 3214, 3207, 1, 0, 0, 0, 3215, 219, 1, 0, 0, 0, 3216, 3217, 5, 77, 0, 0, 3217, 3275, 5, 78, 0, 0, 3218, 3275, 5, 78, 0, 0, 3219, 3221, 5, 98, 0, 0, 3220, 3222, 3, 708, 354, 0, 3221, 3220, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 1, 0, 0, 0, 3223, 3225, 3, 284, 142, 0, 3224, 3223, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3275, 1, 0, 0, 0, 3226, 3228, 5, 98, 0, 0, 3227, 3229, 3, 222, 111, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3275, 3, 282, 141, 0, 3231, 3232, 5, 85, 0, 0, 3232, 3234, 5, 245, 0, 0, 3233, 3235, 3, 708, 354, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 284, 142, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3275, 1, 0, 0, 0, 3239, 3240, 5, 42, 0, 0, 3240, 3241, 5, 2, 0, 0, 3241, 3242, 3, 1210, 605, 0, 3242, 3244, 5, 3, 0, 0, 3243, 3245, 3, 240, 120, 0, 3244, 3243, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3275, 1, 0, 0, 0, 3246, 3247, 5, 53, 0, 0, 3247, 3275, 3, 1250, 625, 0, 3248, 3249, 5, 438, 0, 0, 3249, 3250, 3, 224, 112, 0, 3250, 3260, 5, 36, 0, 0, 3251, 3253, 5, 219, 0, 0, 3252, 3254, 3, 312, 156, 0, 3253, 3252, 1, 0, 0, 0, 3253, 3254, 1, 0, 0, 0, 3254, 3261, 1, 0, 0, 0, 3255, 3256, 5, 2, 0, 0, 3256, 3257, 3, 1210, 605, 0, 3257, 3258, 5, 3, 0, 0, 3258, 3259, 5, 440, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3251, 1, 0, 0, 0, 3260, 3255, 1, 0, 0, 0, 3261, 3275, 1, 0, 0, 0, 3262, 3263, 5, 86, 0, 0, 3263, 3265, 3, 1410, 705, 0, 3264, 3266, 3, 242, 121, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3268, 1, 0, 0, 0, 3267, 3269, 3, 248, 124, 0, 3268, 3267, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3271, 1, 0, 0, 0, 3270, 3272, 3, 256, 128, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3275, 1, 0, 0, 0, 3273, 3275, 3, 644, 322, 0, 3274, 3216, 1, 0, 0, 0, 3274, 3218, 1, 0, 0, 0, 3274, 3219, 1, 0, 0, 0, 3274, 3226, 1, 0, 0, 0, 3274, 3231, 1, 0, 0, 0, 3274, 3239, 1, 0, 0, 0, 3274, 3246, 1, 0, 0, 0, 3274, 3248, 1, 0, 0, 0, 3274, 3262, 1, 0, 0, 0, 3274, 3273, 1, 0, 0, 0, 3275, 221, 1, 0, 0, 0, 3276, 3278, 5, 273, 0, 0, 3277, 3279, 5, 77, 0, 0, 3278, 3277, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3281, 5, 56, 0, 0, 3281, 223, 1, 0, 0, 0, 3282, 3286, 5, 139, 0, 0, 3283, 3284, 5, 147, 0, 0, 3284, 3286, 5, 53, 0, 0, 3285, 3282, 1, 0, 0, 0, 3285, 3283, 1, 0, 0, 0, 3286, 225, 1, 0, 0, 0, 3287, 3291, 5, 54, 0, 0, 3288, 3289, 5, 77, 0, 0, 3289, 3291, 5, 54, 0, 0, 3290, 3287, 1, 0, 0, 0, 3290, 3288, 1, 0, 0, 0, 3291, 227, 1, 0, 0, 0, 3292, 3293, 5, 69, 0, 0, 3293, 3294, 7, 16, 0, 0, 3294, 229, 1, 0, 0, 0, 3295, 3296, 5, 120, 0, 0, 3296, 3297, 3, 1410, 705, 0, 3297, 3298, 3, 232, 116, 0, 3298, 231, 1, 0, 0, 0, 3299, 3300, 7, 26, 0, 0, 3300, 3302, 3, 234, 117, 0, 3301, 3299, 1, 0, 0, 0, 3302, 3305, 1, 0, 0, 0, 3303, 3301, 1, 0, 0, 0, 3303, 3304, 1, 0, 0, 0, 3304, 233, 1, 0, 0, 0, 3305, 3303, 1, 0, 0, 0, 3306, 3307, 7, 27, 0, 0, 3307, 235, 1, 0, 0, 0, 3308, 3309, 5, 45, 0, 0, 3309, 3310, 3, 1434, 717, 0, 3310, 3311, 3, 238, 119, 0, 3311, 3314, 1, 0, 0, 0, 3312, 3314, 3, 238, 119, 0, 3313, 3308, 1, 0, 0, 0, 3313, 3312, 1, 0, 0, 0, 3314, 237, 1, 0, 0, 0, 3315, 3316, 5, 42, 0, 0, 3316, 3317, 5, 2, 0, 0, 3317, 3318, 3, 1210, 605, 0, 3318, 3319, 5, 3, 0, 0, 3319, 3320, 3, 474, 237, 0, 3320, 3402, 1, 0, 0, 0, 3321, 3339, 5, 98, 0, 0, 3322, 3323, 5, 2, 0, 0, 3323, 3324, 3, 244, 122, 0, 3324, 3326, 5, 3, 0, 0, 3325, 3327, 3, 246, 123, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3330, 3, 708, 354, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 1, 0, 0, 0, 3331, 3333, 3, 284, 142, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 3, 474, 237, 0, 3335, 3340, 1, 0, 0, 0, 3336, 3337, 3, 286, 143, 0, 3337, 3338, 3, 474, 237, 0, 3338, 3340, 1, 0, 0, 0, 3339, 3322, 1, 0, 0, 0, 3339, 3336, 1, 0, 0, 0, 3340, 3402, 1, 0, 0, 0, 3341, 3342, 5, 85, 0, 0, 3342, 3360, 5, 245, 0, 0, 3343, 3344, 5, 2, 0, 0, 3344, 3345, 3, 244, 122, 0, 3345, 3347, 5, 3, 0, 0, 3346, 3348, 3, 246, 123, 0, 3347, 3346, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3350, 1, 0, 0, 0, 3349, 3351, 3, 708, 354, 0, 3350, 3349, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3353, 1, 0, 0, 0, 3352, 3354, 3, 284, 142, 0, 3353, 3352, 1, 0, 0, 0, 3353, 3354, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3356, 3, 474, 237, 0, 3356, 3361, 1, 0, 0, 0, 3357, 3358, 3, 286, 143, 0, 3358, 3359, 3, 474, 237, 0, 3359, 3361, 1, 0, 0, 0, 3360, 3343, 1, 0, 0, 0, 3360, 3357, 1, 0, 0, 0, 3361, 3402, 1, 0, 0, 0, 3362, 3364, 5, 199, 0, 0, 3363, 3365, 3, 632, 316, 0, 3364, 3363, 1, 0, 0, 0, 3364, 3365, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3367, 5, 2, 0, 0, 3367, 3368, 3, 250, 125, 0, 3368, 3370, 5, 3, 0, 0, 3369, 3371, 3, 246, 123, 0, 3370, 3369, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3373, 1, 0, 0, 0, 3372, 3374, 3, 708, 354, 0, 3373, 3372, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3376, 1, 0, 0, 0, 3375, 3377, 3, 284, 142, 0, 3376, 3375, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3379, 1, 0, 0, 0, 3378, 3380, 3, 254, 127, 0, 3379, 3378, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3382, 3, 474, 237, 0, 3382, 3402, 1, 0, 0, 0, 3383, 3384, 5, 63, 0, 0, 3384, 3385, 5, 245, 0, 0, 3385, 3386, 5, 2, 0, 0, 3386, 3387, 3, 244, 122, 0, 3387, 3388, 5, 3, 0, 0, 3388, 3389, 5, 86, 0, 0, 3389, 3391, 3, 1410, 705, 0, 3390, 3392, 3, 242, 121, 0, 3391, 3390, 1, 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 3394, 1, 0, 0, 0, 3393, 3395, 3, 248, 124, 0, 3394, 3393, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3397, 1, 0, 0, 0, 3396, 3398, 3, 256, 128, 0, 3397, 3396, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3400, 3, 474, 237, 0, 3400, 3402, 1, 0, 0, 0, 3401, 3315, 1, 0, 0, 0, 3401, 3321, 1, 0, 0, 0, 3401, 3341, 1, 0, 0, 0, 3401, 3362, 1, 0, 0, 0, 3401, 3383, 1, 0, 0, 0, 3402, 239, 1, 0, 0, 0, 3403, 3404, 5, 269, 0, 0, 3404, 3405, 5, 228, 0, 0, 3405, 241, 1, 0, 0, 0, 3406, 3407, 5, 2, 0, 0, 3407, 3408, 3, 244, 122, 0, 3408, 3409, 5, 3, 0, 0, 3409, 243, 1, 0, 0, 0, 3410, 3415, 3, 1430, 715, 0, 3411, 3412, 5, 6, 0, 0, 3412, 3414, 3, 1430, 715, 0, 3413, 3411, 1, 0, 0, 0, 3414, 3417, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 245, 1, 0, 0, 0, 3417, 3415, 1, 0, 0, 0, 3418, 3419, 5, 441, 0, 0, 3419, 3420, 5, 2, 0, 0, 3420, 3421, 3, 244, 122, 0, 3421, 3422, 5, 3, 0, 0, 3422, 247, 1, 0, 0, 0, 3423, 3424, 5, 258, 0, 0, 3424, 3425, 7, 28, 0, 0, 3425, 249, 1, 0, 0, 0, 3426, 3431, 3, 252, 126, 0, 3427, 3428, 5, 6, 0, 0, 3428, 3430, 3, 252, 126, 0, 3429, 3427, 1, 0, 0, 0, 3430, 3433, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 251, 1, 0, 0, 0, 3433, 3431, 1, 0, 0, 0, 3434, 3435, 3, 638, 319, 0, 3435, 3442, 5, 105, 0, 0, 3436, 3443, 3, 730, 365, 0, 3437, 3438, 5, 278, 0, 0, 3438, 3439, 5, 2, 0, 0, 3439, 3440, 3, 730, 365, 0, 3440, 3441, 5, 3, 0, 0, 3441, 3443, 1, 0, 0, 0, 3442, 3436, 1, 0, 0, 0, 3442, 3437, 1, 0, 0, 0, 3443, 253, 1, 0, 0, 0, 3444, 3445, 5, 103, 0, 0, 3445, 3446, 5, 2, 0, 0, 3446, 3447, 3, 1210, 605, 0, 3447, 3448, 5, 3, 0, 0, 3448, 255, 1, 0, 0, 0, 3449, 3458, 3, 258, 129, 0, 3450, 3458, 3, 260, 130, 0, 3451, 3452, 3, 258, 129, 0, 3452, 3453, 3, 260, 130, 0, 3453, 3458, 1, 0, 0, 0, 3454, 3455, 3, 260, 130, 0, 3455, 3456, 3, 258, 129, 0, 3456, 3458, 1, 0, 0, 0, 3457, 3449, 1, 0, 0, 0, 3457, 3450, 1, 0, 0, 0, 3457, 3451, 1, 0, 0, 0, 3457, 3454, 1, 0, 0, 0, 3458, 257, 1, 0, 0, 0, 3459, 3460, 5, 80, 0, 0, 3460, 3461, 5, 369, 0, 0, 3461, 3462, 3, 262, 131, 0, 3462, 259, 1, 0, 0, 0, 3463, 3464, 5, 80, 0, 0, 3464, 3465, 5, 182, 0, 0, 3465, 3466, 3, 262, 131, 0, 3466, 261, 1, 0, 0, 0, 3467, 3468, 5, 269, 0, 0, 3468, 3477, 5, 132, 0, 0, 3469, 3477, 5, 315, 0, 0, 3470, 3477, 5, 150, 0, 0, 3471, 3472, 5, 333, 0, 0, 3472, 3474, 7, 29, 0, 0, 3473, 3475, 3, 244, 122, 0, 3474, 3473, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3477, 1, 0, 0, 0, 3476, 3467, 1, 0, 0, 0, 3476, 3469, 1, 0, 0, 0, 3476, 3470, 1, 0, 0, 0, 3476, 3471, 1, 0, 0, 0, 3477, 263, 1, 0, 0, 0, 3478, 3479, 5, 238, 0, 0, 3479, 3480, 5, 2, 0, 0, 3480, 3481, 3, 1388, 694, 0, 3481, 3482, 5, 3, 0, 0, 3482, 265, 1, 0, 0, 0, 3483, 3484, 3, 268, 134, 0, 3484, 267, 1, 0, 0, 0, 3485, 3486, 5, 285, 0, 0, 3486, 3487, 5, 147, 0, 0, 3487, 3488, 3, 1472, 736, 0, 3488, 3489, 5, 2, 0, 0, 3489, 3490, 3, 270, 135, 0, 3490, 3491, 5, 3, 0, 0, 3491, 269, 1, 0, 0, 0, 3492, 3497, 3, 272, 136, 0, 3493, 3494, 5, 6, 0, 0, 3494, 3496, 3, 272, 136, 0, 3495, 3493, 1, 0, 0, 0, 3496, 3499, 1, 0, 0, 0, 3497, 3495, 1, 0, 0, 0, 3497, 3498, 1, 0, 0, 0, 3498, 271, 1, 0, 0, 0, 3499, 3497, 1, 0, 0, 0, 3500, 3502, 3, 1430, 715, 0, 3501, 3503, 3, 644, 322, 0, 3502, 3501, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3505, 1, 0, 0, 0, 3504, 3506, 3, 646, 323, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3524, 1, 0, 0, 0, 3507, 3509, 3, 1260, 630, 0, 3508, 3510, 3, 644, 322, 0, 3509, 3508, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3512, 1, 0, 0, 0, 3511, 3513, 3, 646, 323, 0, 3512, 3511, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 3524, 1, 0, 0, 0, 3514, 3515, 5, 2, 0, 0, 3515, 3516, 3, 1210, 605, 0, 3516, 3518, 5, 3, 0, 0, 3517, 3519, 3, 644, 322, 0, 3518, 3517, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3521, 1, 0, 0, 0, 3520, 3522, 3, 646, 323, 0, 3521, 3520, 1, 0, 0, 0, 3521, 3522, 1, 0, 0, 0, 3522, 3524, 1, 0, 0, 0, 3523, 3500, 1, 0, 0, 0, 3523, 3507, 1, 0, 0, 0, 3523, 3514, 1, 0, 0, 0, 3524, 273, 1, 0, 0, 0, 3525, 3526, 5, 100, 0, 0, 3526, 3527, 3, 1434, 717, 0, 3527, 275, 1, 0, 0, 0, 3528, 3529, 5, 105, 0, 0, 3529, 3535, 3, 132, 66, 0, 3530, 3531, 5, 379, 0, 0, 3531, 3535, 5, 277, 0, 0, 3532, 3533, 5, 105, 0, 0, 3533, 3535, 5, 277, 0, 0, 3534, 3528, 1, 0, 0, 0, 3534, 3530, 1, 0, 0, 0, 3534, 3532, 1, 0, 0, 0, 3535, 277, 1, 0, 0, 0, 3536, 3537, 5, 80, 0, 0, 3537, 3543, 5, 161, 0, 0, 3538, 3544, 5, 191, 0, 0, 3539, 3540, 5, 182, 0, 0, 3540, 3544, 5, 320, 0, 0, 3541, 3542, 5, 292, 0, 0, 3542, 3544, 5, 320, 0, 0, 3543, 3538, 1, 0, 0, 0, 3543, 3539, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 279, 1, 0, 0, 0, 3545, 3546, 5, 351, 0, 0, 3546, 3547, 3, 1400, 700, 0, 3547, 281, 1, 0, 0, 0, 3548, 3550, 3, 640, 320, 0, 3549, 3548, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3552, 1, 0, 0, 0, 3551, 3553, 3, 1012, 506, 0, 3552, 3551, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3555, 1, 0, 0, 0, 3554, 3556, 3, 284, 142, 0, 3555, 3554, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 283, 1, 0, 0, 0, 3557, 3558, 5, 100, 0, 0, 3558, 3559, 5, 226, 0, 0, 3559, 3560, 5, 351, 0, 0, 3560, 3561, 3, 1400, 700, 0, 3561, 285, 1, 0, 0, 0, 3562, 3563, 5, 100, 0, 0, 3563, 3564, 5, 226, 0, 0, 3564, 3565, 3, 1434, 717, 0, 3565, 287, 1, 0, 0, 0, 3566, 3567, 5, 46, 0, 0, 3567, 3572, 5, 342, 0, 0, 3568, 3570, 3, 514, 257, 0, 3569, 3568, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3573, 3, 556, 278, 0, 3572, 3569, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3576, 3, 916, 458, 0, 3575, 3574, 1, 0, 0, 0, 3575, 3576, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3580, 5, 80, 0, 0, 3578, 3581, 3, 1330, 665, 0, 3579, 3581, 3, 1326, 663, 0, 3580, 3578, 1, 0, 0, 0, 3580, 3579, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3583, 5, 64, 0, 0, 3583, 3584, 3, 1102, 551, 0, 3584, 289, 1, 0, 0, 0, 3585, 3586, 5, 138, 0, 0, 3586, 3588, 5, 342, 0, 0, 3587, 3589, 3, 746, 373, 0, 3588, 3587, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3591, 3, 556, 278, 0, 3591, 3592, 5, 333, 0, 0, 3592, 3593, 5, 342, 0, 0, 3593, 3594, 3, 1462, 731, 0, 3594, 291, 1, 0, 0, 0, 3595, 3597, 5, 46, 0, 0, 3596, 3598, 3, 190, 95, 0, 3597, 3596, 1, 0, 0, 0, 3597, 3598, 1, 0, 0, 0, 3598, 3599, 1, 0, 0, 0, 3599, 3601, 5, 92, 0, 0, 3600, 3602, 3, 514, 257, 0, 3601, 3600, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3604, 3, 294, 147, 0, 3604, 3605, 5, 36, 0, 0, 3605, 3607, 3, 998, 499, 0, 3606, 3608, 3, 296, 148, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 293, 1, 0, 0, 0, 3609, 3611, 3, 1402, 701, 0, 3610, 3612, 3, 242, 121, 0, 3611, 3610, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 3614, 1, 0, 0, 0, 3613, 3615, 3, 274, 137, 0, 3614, 3613, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3617, 1, 0, 0, 0, 3616, 3618, 3, 276, 138, 0, 3617, 3616, 1, 0, 0, 0, 3617, 3618, 1, 0, 0, 0, 3618, 3620, 1, 0, 0, 0, 3619, 3621, 3, 278, 139, 0, 3620, 3619, 1, 0, 0, 0, 3620, 3621, 1, 0, 0, 0, 3621, 3623, 1, 0, 0, 0, 3622, 3624, 3, 280, 140, 0, 3623, 3622, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 295, 1, 0, 0, 0, 3625, 3629, 5, 105, 0, 0, 3626, 3630, 5, 174, 0, 0, 3627, 3628, 5, 269, 0, 0, 3628, 3630, 5, 174, 0, 0, 3629, 3626, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 297, 1, 0, 0, 0, 3631, 3633, 5, 46, 0, 0, 3632, 3634, 3, 302, 151, 0, 3633, 3632, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3636, 5, 259, 0, 0, 3636, 3638, 5, 376, 0, 0, 3637, 3639, 3, 514, 257, 0, 3638, 3637, 1, 0, 0, 0, 3638, 3639, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3641, 3, 300, 150, 0, 3641, 3642, 5, 36, 0, 0, 3642, 3644, 3, 998, 499, 0, 3643, 3645, 3, 296, 148, 0, 3644, 3643, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 299, 1, 0, 0, 0, 3646, 3648, 3, 1406, 703, 0, 3647, 3649, 3, 242, 121, 0, 3648, 3647, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3651, 1, 0, 0, 0, 3650, 3652, 3, 274, 137, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3654, 1, 0, 0, 0, 3653, 3655, 3, 134, 67, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3657, 1, 0, 0, 0, 3656, 3658, 3, 280, 140, 0, 3657, 3656, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 301, 1, 0, 0, 0, 3659, 3660, 5, 367, 0, 0, 3660, 303, 1, 0, 0, 0, 3661, 3662, 5, 305, 0, 0, 3662, 3663, 5, 259, 0, 0, 3663, 3665, 5, 376, 0, 0, 3664, 3666, 3, 628, 314, 0, 3665, 3664, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3669, 3, 1408, 704, 0, 3668, 3670, 3, 296, 148, 0, 3669, 3668, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 305, 1, 0, 0, 0, 3671, 3673, 5, 46, 0, 0, 3672, 3674, 3, 190, 95, 0, 3673, 3672, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3677, 5, 328, 0, 0, 3676, 3678, 3, 514, 257, 0, 3677, 3676, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3681, 3, 1410, 705, 0, 3680, 3682, 3, 310, 155, 0, 3681, 3680, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 307, 1, 0, 0, 0, 3683, 3684, 5, 138, 0, 0, 3684, 3686, 5, 328, 0, 0, 3685, 3687, 3, 746, 373, 0, 3686, 3685, 1, 0, 0, 0, 3686, 3687, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3689, 3, 1410, 705, 0, 3689, 3690, 3, 314, 157, 0, 3690, 309, 1, 0, 0, 0, 3691, 3692, 3, 314, 157, 0, 3692, 311, 1, 0, 0, 0, 3693, 3694, 5, 2, 0, 0, 3694, 3695, 3, 314, 157, 0, 3695, 3696, 5, 3, 0, 0, 3696, 313, 1, 0, 0, 0, 3697, 3699, 3, 316, 158, 0, 3698, 3697, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3698, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 315, 1, 0, 0, 0, 3702, 3703, 5, 36, 0, 0, 3703, 3737, 3, 1170, 585, 0, 3704, 3705, 5, 148, 0, 0, 3705, 3737, 3, 320, 160, 0, 3706, 3737, 5, 173, 0, 0, 3707, 3709, 5, 225, 0, 0, 3708, 3710, 3, 318, 159, 0, 3709, 3708, 1, 0, 0, 0, 3709, 3710, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3737, 3, 320, 160, 0, 3712, 3713, 5, 260, 0, 0, 3713, 3737, 3, 320, 160, 0, 3714, 3715, 5, 262, 0, 0, 3715, 3737, 3, 320, 160, 0, 3716, 3717, 5, 269, 0, 0, 3717, 3737, 7, 30, 0, 0, 3718, 3719, 5, 281, 0, 0, 3719, 3720, 5, 147, 0, 0, 3720, 3737, 3, 1430, 715, 0, 3721, 3722, 5, 328, 0, 0, 3722, 3723, 5, 266, 0, 0, 3723, 3737, 3, 556, 278, 0, 3724, 3726, 5, 340, 0, 0, 3725, 3727, 3, 14, 7, 0, 3726, 3725, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3737, 3, 320, 160, 0, 3729, 3731, 5, 314, 0, 0, 3730, 3732, 3, 14, 7, 0, 3731, 3730, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3734, 1, 0, 0, 0, 3733, 3735, 3, 320, 160, 0, 3734, 3733, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3737, 1, 0, 0, 0, 3736, 3702, 1, 0, 0, 0, 3736, 3704, 1, 0, 0, 0, 3736, 3706, 1, 0, 0, 0, 3736, 3707, 1, 0, 0, 0, 3736, 3712, 1, 0, 0, 0, 3736, 3714, 1, 0, 0, 0, 3736, 3716, 1, 0, 0, 0, 3736, 3718, 1, 0, 0, 0, 3736, 3721, 1, 0, 0, 0, 3736, 3724, 1, 0, 0, 0, 3736, 3729, 1, 0, 0, 0, 3737, 317, 1, 0, 0, 0, 3738, 3739, 5, 147, 0, 0, 3739, 319, 1, 0, 0, 0, 3740, 3747, 3, 1452, 726, 0, 3741, 3742, 5, 12, 0, 0, 3742, 3747, 3, 1452, 726, 0, 3743, 3744, 5, 13, 0, 0, 3744, 3747, 3, 1452, 726, 0, 3745, 3747, 3, 1462, 731, 0, 3746, 3740, 1, 0, 0, 0, 3746, 3741, 1, 0, 0, 0, 3746, 3743, 1, 0, 0, 0, 3746, 3745, 1, 0, 0, 0, 3747, 321, 1, 0, 0, 0, 3748, 3753, 3, 320, 160, 0, 3749, 3750, 5, 6, 0, 0, 3750, 3752, 3, 320, 160, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3755, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 323, 1, 0, 0, 0, 3755, 3753, 1, 0, 0, 0, 3756, 3758, 5, 46, 0, 0, 3757, 3759, 3, 656, 328, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3761, 1, 0, 0, 0, 3760, 3762, 3, 326, 163, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3764, 1, 0, 0, 0, 3763, 3765, 3, 336, 168, 0, 3764, 3763, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3766, 1, 0, 0, 0, 3766, 3767, 5, 247, 0, 0, 3767, 3776, 3, 1434, 717, 0, 3768, 3769, 5, 215, 0, 0, 3769, 3771, 3, 328, 164, 0, 3770, 3772, 3, 330, 165, 0, 3771, 3770, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3774, 1, 0, 0, 0, 3773, 3775, 3, 334, 167, 0, 3774, 3773, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3777, 1, 0, 0, 0, 3776, 3768, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 325, 1, 0, 0, 0, 3778, 3779, 5, 359, 0, 0, 3779, 327, 1, 0, 0, 0, 3780, 3782, 3, 1434, 717, 0, 3781, 3783, 3, 558, 279, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 329, 1, 0, 0, 0, 3784, 3785, 5, 239, 0, 0, 3785, 3786, 3, 328, 164, 0, 3786, 331, 1, 0, 0, 0, 3787, 3788, 5, 373, 0, 0, 3788, 3792, 3, 328, 164, 0, 3789, 3790, 5, 269, 0, 0, 3790, 3792, 5, 373, 0, 0, 3791, 3787, 1, 0, 0, 0, 3791, 3789, 1, 0, 0, 0, 3792, 333, 1, 0, 0, 0, 3793, 3794, 3, 332, 166, 0, 3794, 335, 1, 0, 0, 0, 3795, 3796, 5, 295, 0, 0, 3796, 337, 1, 0, 0, 0, 3797, 3798, 5, 46, 0, 0, 3798, 3799, 5, 351, 0, 0, 3799, 3801, 3, 1400, 700, 0, 3800, 3802, 3, 340, 170, 0, 3801, 3800, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3803, 1, 0, 0, 0, 3803, 3804, 5, 255, 0, 0, 3804, 3806, 3, 1456, 728, 0, 3805, 3807, 3, 134, 67, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 339, 1, 0, 0, 0, 3808, 3809, 5, 282, 0, 0, 3809, 3810, 3, 1468, 734, 0, 3810, 341, 1, 0, 0, 0, 3811, 3812, 5, 46, 0, 0, 3812, 3814, 5, 204, 0, 0, 3813, 3815, 3, 514, 257, 0, 3814, 3813, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3816, 1, 0, 0, 0, 3816, 3818, 3, 1434, 717, 0, 3817, 3819, 3, 14, 7, 0, 3818, 3817, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3821, 3, 344, 172, 0, 3821, 343, 1, 0, 0, 0, 3822, 3824, 3, 346, 173, 0, 3823, 3822, 1, 0, 0, 0, 3824, 3827, 1, 0, 0, 0, 3825, 3823, 1, 0, 0, 0, 3825, 3826, 1, 0, 0, 0, 3826, 345, 1, 0, 0, 0, 3827, 3825, 1, 0, 0, 0, 3828, 3829, 5, 323, 0, 0, 3829, 3836, 3, 1420, 710, 0, 3830, 3831, 5, 375, 0, 0, 3831, 3836, 3, 80, 40, 0, 3832, 3833, 5, 64, 0, 0, 3833, 3836, 3, 80, 40, 0, 3834, 3836, 5, 150, 0, 0, 3835, 3828, 1, 0, 0, 0, 3835, 3830, 1, 0, 0, 0, 3835, 3832, 1, 0, 0, 0, 3835, 3834, 1, 0, 0, 0, 3836, 347, 1, 0, 0, 0, 3837, 3838, 5, 138, 0, 0, 3838, 3839, 5, 204, 0, 0, 3839, 3840, 3, 1434, 717, 0, 3840, 3841, 5, 369, 0, 0, 3841, 3842, 3, 350, 175, 0, 3842, 349, 1, 0, 0, 0, 3843, 3845, 3, 352, 176, 0, 3844, 3843, 1, 0, 0, 0, 3845, 3848, 1, 0, 0, 0, 3846, 3844, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 351, 1, 0, 0, 0, 3848, 3846, 1, 0, 0, 0, 3849, 3850, 5, 94, 0, 0, 3850, 3851, 3, 80, 40, 0, 3851, 353, 1, 0, 0, 0, 3852, 3853, 5, 138, 0, 0, 3853, 3854, 5, 204, 0, 0, 3854, 3855, 3, 1434, 717, 0, 3855, 3856, 3, 44, 22, 0, 3856, 3857, 3, 546, 273, 0, 3857, 3955, 1, 0, 0, 0, 3858, 3859, 5, 138, 0, 0, 3859, 3860, 5, 204, 0, 0, 3860, 3861, 3, 1434, 717, 0, 3861, 3862, 3, 44, 22, 0, 3862, 3863, 3, 544, 272, 0, 3863, 3955, 1, 0, 0, 0, 3864, 3865, 5, 138, 0, 0, 3865, 3866, 5, 204, 0, 0, 3866, 3867, 3, 1434, 717, 0, 3867, 3868, 3, 44, 22, 0, 3868, 3869, 5, 136, 0, 0, 3869, 3870, 3, 696, 348, 0, 3870, 3955, 1, 0, 0, 0, 3871, 3872, 5, 138, 0, 0, 3872, 3873, 5, 204, 0, 0, 3873, 3874, 3, 1434, 717, 0, 3874, 3875, 3, 44, 22, 0, 3875, 3876, 5, 41, 0, 0, 3876, 3877, 5, 2, 0, 0, 3877, 3878, 3, 1166, 583, 0, 3878, 3879, 5, 36, 0, 0, 3879, 3880, 3, 1166, 583, 0, 3880, 3881, 5, 3, 0, 0, 3881, 3955, 1, 0, 0, 0, 3882, 3883, 5, 138, 0, 0, 3883, 3884, 5, 204, 0, 0, 3884, 3885, 3, 1434, 717, 0, 3885, 3886, 3, 44, 22, 0, 3886, 3887, 5, 189, 0, 0, 3887, 3888, 3, 1166, 583, 0, 3888, 3955, 1, 0, 0, 0, 3889, 3890, 5, 138, 0, 0, 3890, 3891, 5, 204, 0, 0, 3891, 3892, 3, 1434, 717, 0, 3892, 3893, 3, 44, 22, 0, 3893, 3894, 5, 211, 0, 0, 3894, 3895, 3, 672, 336, 0, 3895, 3955, 1, 0, 0, 0, 3896, 3897, 5, 138, 0, 0, 3897, 3898, 5, 204, 0, 0, 3898, 3899, 3, 1434, 717, 0, 3899, 3900, 3, 44, 22, 0, 3900, 3901, 5, 278, 0, 0, 3901, 3902, 3, 734, 367, 0, 3902, 3955, 1, 0, 0, 0, 3903, 3904, 5, 138, 0, 0, 3904, 3905, 5, 204, 0, 0, 3905, 3906, 3, 1434, 717, 0, 3906, 3907, 3, 44, 22, 0, 3907, 3908, 5, 278, 0, 0, 3908, 3909, 5, 156, 0, 0, 3909, 3910, 3, 556, 278, 0, 3910, 3911, 5, 100, 0, 0, 3911, 3912, 3, 1434, 717, 0, 3912, 3955, 1, 0, 0, 0, 3913, 3914, 5, 138, 0, 0, 3914, 3915, 5, 204, 0, 0, 3915, 3916, 3, 1434, 717, 0, 3916, 3917, 3, 44, 22, 0, 3917, 3918, 5, 278, 0, 0, 3918, 3919, 5, 206, 0, 0, 3919, 3920, 3, 556, 278, 0, 3920, 3921, 5, 100, 0, 0, 3921, 3922, 3, 1434, 717, 0, 3922, 3955, 1, 0, 0, 0, 3923, 3924, 5, 138, 0, 0, 3924, 3925, 5, 204, 0, 0, 3925, 3926, 3, 1434, 717, 0, 3926, 3927, 3, 44, 22, 0, 3927, 3928, 5, 296, 0, 0, 3928, 3929, 3, 668, 334, 0, 3929, 3955, 1, 0, 0, 0, 3930, 3931, 5, 138, 0, 0, 3931, 3932, 5, 204, 0, 0, 3932, 3933, 3, 1434, 717, 0, 3933, 3934, 3, 44, 22, 0, 3934, 3935, 5, 442, 0, 0, 3935, 3936, 3, 664, 332, 0, 3936, 3955, 1, 0, 0, 0, 3937, 3938, 5, 138, 0, 0, 3938, 3939, 5, 204, 0, 0, 3939, 3940, 3, 1434, 717, 0, 3940, 3941, 3, 44, 22, 0, 3941, 3942, 5, 443, 0, 0, 3942, 3943, 5, 62, 0, 0, 3943, 3944, 3, 1166, 583, 0, 3944, 3945, 5, 247, 0, 0, 3945, 3946, 3, 1434, 717, 0, 3946, 3955, 1, 0, 0, 0, 3947, 3948, 5, 138, 0, 0, 3948, 3949, 5, 204, 0, 0, 3949, 3950, 3, 1434, 717, 0, 3950, 3951, 3, 44, 22, 0, 3951, 3952, 5, 360, 0, 0, 3952, 3953, 3, 1166, 583, 0, 3953, 3955, 1, 0, 0, 0, 3954, 3852, 1, 0, 0, 0, 3954, 3858, 1, 0, 0, 0, 3954, 3864, 1, 0, 0, 0, 3954, 3871, 1, 0, 0, 0, 3954, 3882, 1, 0, 0, 0, 3954, 3889, 1, 0, 0, 0, 3954, 3896, 1, 0, 0, 0, 3954, 3903, 1, 0, 0, 0, 3954, 3913, 1, 0, 0, 0, 3954, 3923, 1, 0, 0, 0, 3954, 3930, 1, 0, 0, 0, 3954, 3937, 1, 0, 0, 0, 3954, 3947, 1, 0, 0, 0, 3955, 355, 1, 0, 0, 0, 3956, 3957, 5, 46, 0, 0, 3957, 3958, 5, 63, 0, 0, 3958, 3959, 5, 174, 0, 0, 3959, 3960, 5, 381, 0, 0, 3960, 3962, 3, 1434, 717, 0, 3961, 3963, 3, 362, 181, 0, 3962, 3961, 1, 0, 0, 0, 3962, 3963, 1, 0, 0, 0, 3963, 3965, 1, 0, 0, 0, 3964, 3966, 3, 366, 183, 0, 3965, 3964, 1, 0, 0, 0, 3965, 3966, 1, 0, 0, 0, 3966, 357, 1, 0, 0, 0, 3967, 3968, 5, 215, 0, 0, 3968, 3976, 3, 328, 164, 0, 3969, 3970, 5, 269, 0, 0, 3970, 3976, 5, 215, 0, 0, 3971, 3972, 5, 373, 0, 0, 3972, 3976, 3, 328, 164, 0, 3973, 3974, 5, 269, 0, 0, 3974, 3976, 5, 373, 0, 0, 3975, 3967, 1, 0, 0, 0, 3975, 3969, 1, 0, 0, 0, 3975, 3971, 1, 0, 0, 0, 3975, 3973, 1, 0, 0, 0, 3976, 359, 1, 0, 0, 0, 3977, 3979, 3, 358, 179, 0, 3978, 3977, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3978, 1, 0, 0, 0, 3980, 3981, 1, 0, 0, 0, 3981, 361, 1, 0, 0, 0, 3982, 3983, 3, 360, 180, 0, 3983, 363, 1, 0, 0, 0, 3984, 3985, 5, 138, 0, 0, 3985, 3986, 5, 63, 0, 0, 3986, 3987, 5, 174, 0, 0, 3987, 3988, 5, 381, 0, 0, 3988, 3990, 3, 1434, 717, 0, 3989, 3991, 3, 362, 181, 0, 3990, 3989, 1, 0, 0, 0, 3990, 3991, 1, 0, 0, 0, 3991, 3992, 1, 0, 0, 0, 3992, 3993, 3, 370, 185, 0, 3993, 4002, 1, 0, 0, 0, 3994, 3995, 5, 138, 0, 0, 3995, 3996, 5, 63, 0, 0, 3996, 3997, 5, 174, 0, 0, 3997, 3998, 5, 381, 0, 0, 3998, 3999, 3, 1434, 717, 0, 3999, 4000, 3, 360, 180, 0, 4000, 4002, 1, 0, 0, 0, 4001, 3984, 1, 0, 0, 0, 4001, 3994, 1, 0, 0, 0, 4002, 365, 1, 0, 0, 0, 4003, 4004, 5, 280, 0, 0, 4004, 4005, 5, 2, 0, 0, 4005, 4006, 3, 368, 184, 0, 4006, 4007, 5, 3, 0, 0, 4007, 367, 1, 0, 0, 0, 4008, 4013, 3, 376, 188, 0, 4009, 4010, 5, 6, 0, 0, 4010, 4012, 3, 376, 188, 0, 4011, 4009, 1, 0, 0, 0, 4012, 4015, 1, 0, 0, 0, 4013, 4011, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 369, 1, 0, 0, 0, 4015, 4013, 1, 0, 0, 0, 4016, 4017, 5, 280, 0, 0, 4017, 4018, 5, 2, 0, 0, 4018, 4019, 3, 372, 186, 0, 4019, 4020, 5, 3, 0, 0, 4020, 371, 1, 0, 0, 0, 4021, 4026, 3, 374, 187, 0, 4022, 4023, 5, 6, 0, 0, 4023, 4025, 3, 374, 187, 0, 4024, 4022, 1, 0, 0, 0, 4025, 4028, 1, 0, 0, 0, 4026, 4024, 1, 0, 0, 0, 4026, 4027, 1, 0, 0, 0, 4027, 373, 1, 0, 0, 0, 4028, 4026, 1, 0, 0, 0, 4029, 4037, 3, 376, 188, 0, 4030, 4031, 5, 333, 0, 0, 4031, 4037, 3, 376, 188, 0, 4032, 4033, 5, 133, 0, 0, 4033, 4037, 3, 376, 188, 0, 4034, 4035, 5, 191, 0, 0, 4035, 4037, 3, 376, 188, 0, 4036, 4029, 1, 0, 0, 0, 4036, 4030, 1, 0, 0, 0, 4036, 4032, 1, 0, 0, 0, 4036, 4034, 1, 0, 0, 0, 4037, 375, 1, 0, 0, 0, 4038, 4039, 3, 378, 189, 0, 4039, 4040, 3, 380, 190, 0, 4040, 377, 1, 0, 0, 0, 4041, 4042, 3, 1488, 744, 0, 4042, 379, 1, 0, 0, 0, 4043, 4044, 3, 1456, 728, 0, 4044, 381, 1, 0, 0, 0, 4045, 4046, 5, 46, 0, 0, 4046, 4048, 5, 331, 0, 0, 4047, 4049, 3, 514, 257, 0, 4048, 4047, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4052, 3, 1434, 717, 0, 4051, 4053, 3, 384, 192, 0, 4052, 4051, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4055, 1, 0, 0, 0, 4054, 4056, 3, 388, 194, 0, 4055, 4054, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4058, 5, 63, 0, 0, 4058, 4059, 5, 174, 0, 0, 4059, 4060, 5, 381, 0, 0, 4060, 4062, 3, 1434, 717, 0, 4061, 4063, 3, 366, 183, 0, 4062, 4061, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 383, 1, 0, 0, 0, 4064, 4065, 5, 360, 0, 0, 4065, 4066, 3, 1456, 728, 0, 4066, 385, 1, 0, 0, 0, 4067, 4070, 5, 375, 0, 0, 4068, 4071, 3, 1456, 728, 0, 4069, 4071, 5, 78, 0, 0, 4070, 4068, 1, 0, 0, 0, 4070, 4069, 1, 0, 0, 0, 4071, 387, 1, 0, 0, 0, 4072, 4073, 3, 386, 193, 0, 4073, 389, 1, 0, 0, 0, 4074, 4075, 5, 138, 0, 0, 4075, 4076, 5, 331, 0, 0, 4076, 4082, 3, 1434, 717, 0, 4077, 4083, 3, 370, 185, 0, 4078, 4080, 3, 386, 193, 0, 4079, 4081, 3, 370, 185, 0, 4080, 4079, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4083, 1, 0, 0, 0, 4082, 4077, 1, 0, 0, 0, 4082, 4078, 1, 0, 0, 0, 4083, 391, 1, 0, 0, 0, 4084, 4085, 5, 46, 0, 0, 4085, 4086, 5, 63, 0, 0, 4086, 4088, 5, 92, 0, 0, 4087, 4089, 3, 514, 257, 0, 4088, 4087, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4090, 1, 0, 0, 0, 4090, 4091, 3, 1402, 701, 0, 4091, 4093, 5, 2, 0, 0, 4092, 4094, 3, 194, 97, 0, 4093, 4092, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 4095, 1, 0, 0, 0, 4095, 4097, 5, 3, 0, 0, 4096, 4098, 3, 264, 132, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4100, 5, 331, 0, 0, 4100, 4102, 3, 1434, 717, 0, 4101, 4103, 3, 366, 183, 0, 4102, 4101, 1, 0, 0, 0, 4102, 4103, 1, 0, 0, 0, 4103, 4124, 1, 0, 0, 0, 4104, 4105, 5, 46, 0, 0, 4105, 4106, 5, 63, 0, 0, 4106, 4108, 5, 92, 0, 0, 4107, 4109, 3, 514, 257, 0, 4108, 4107, 1, 0, 0, 0, 4108, 4109, 1, 0, 0, 0, 4109, 4110, 1, 0, 0, 0, 4110, 4111, 3, 1402, 701, 0, 4111, 4112, 5, 285, 0, 0, 4112, 4113, 5, 275, 0, 0, 4113, 4115, 3, 1404, 702, 0, 4114, 4116, 3, 196, 98, 0, 4115, 4114, 1, 0, 0, 0, 4115, 4116, 1, 0, 0, 0, 4116, 4117, 1, 0, 0, 0, 4117, 4118, 3, 144, 72, 0, 4118, 4119, 5, 331, 0, 0, 4119, 4121, 3, 1434, 717, 0, 4120, 4122, 3, 366, 183, 0, 4121, 4120, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 4124, 1, 0, 0, 0, 4123, 4084, 1, 0, 0, 0, 4123, 4104, 1, 0, 0, 0, 4124, 393, 1, 0, 0, 0, 4125, 4126, 5, 444, 0, 0, 4126, 4127, 5, 63, 0, 0, 4127, 4128, 5, 323, 0, 0, 4128, 4130, 3, 1420, 710, 0, 4129, 4131, 3, 398, 199, 0, 4130, 4129, 1, 0, 0, 0, 4130, 4131, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 4133, 5, 64, 0, 0, 4133, 4134, 5, 331, 0, 0, 4134, 4135, 3, 1434, 717, 0, 4135, 4136, 5, 71, 0, 0, 4136, 4138, 3, 1434, 717, 0, 4137, 4139, 3, 366, 183, 0, 4138, 4137, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 395, 1, 0, 0, 0, 4140, 4141, 5, 74, 0, 0, 4141, 4144, 5, 94, 0, 0, 4142, 4144, 5, 59, 0, 0, 4143, 4140, 1, 0, 0, 0, 4143, 4142, 1, 0, 0, 0, 4144, 397, 1, 0, 0, 0, 4145, 4146, 3, 396, 198, 0, 4146, 4147, 5, 2, 0, 0, 4147, 4148, 3, 1122, 561, 0, 4148, 4149, 5, 3, 0, 0, 4149, 399, 1, 0, 0, 0, 4150, 4151, 5, 46, 0, 0, 4151, 4152, 5, 99, 0, 0, 4152, 4154, 5, 257, 0, 0, 4153, 4155, 3, 514, 257, 0, 4154, 4153, 1, 0, 0, 0, 4154, 4155, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4157, 5, 62, 0, 0, 4157, 4158, 3, 402, 201, 0, 4158, 4159, 5, 331, 0, 0, 4159, 4161, 3, 1434, 717, 0, 4160, 4162, 3, 366, 183, 0, 4161, 4160, 1, 0, 0, 0, 4161, 4162, 1, 0, 0, 0, 4162, 401, 1, 0, 0, 0, 4163, 4166, 3, 1468, 734, 0, 4164, 4166, 5, 99, 0, 0, 4165, 4163, 1, 0, 0, 0, 4165, 4164, 1, 0, 0, 0, 4166, 403, 1, 0, 0, 0, 4167, 4168, 5, 138, 0, 0, 4168, 4169, 5, 99, 0, 0, 4169, 4170, 5, 257, 0, 0, 4170, 4171, 5, 62, 0, 0, 4171, 4172, 3, 402, 201, 0, 4172, 4173, 5, 331, 0, 0, 4173, 4174, 3, 1434, 717, 0, 4174, 4175, 3, 370, 185, 0, 4175, 405, 1, 0, 0, 0, 4176, 4177, 5, 46, 0, 0, 4177, 4178, 5, 445, 0, 0, 4178, 4179, 3, 1434, 717, 0, 4179, 4180, 5, 80, 0, 0, 4180, 4182, 3, 1410, 705, 0, 4181, 4183, 3, 424, 212, 0, 4182, 4181, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 4185, 1, 0, 0, 0, 4184, 4186, 3, 426, 213, 0, 4185, 4184, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4188, 1, 0, 0, 0, 4187, 4189, 3, 420, 210, 0, 4188, 4187, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4191, 1, 0, 0, 0, 4190, 4192, 3, 416, 208, 0, 4191, 4190, 1, 0, 0, 0, 4191, 4192, 1, 0, 0, 0, 4192, 4194, 1, 0, 0, 0, 4193, 4195, 3, 418, 209, 0, 4194, 4193, 1, 0, 0, 0, 4194, 4195, 1, 0, 0, 0, 4195, 407, 1, 0, 0, 0, 4196, 4197, 5, 138, 0, 0, 4197, 4198, 5, 445, 0, 0, 4198, 4199, 3, 1434, 717, 0, 4199, 4200, 5, 80, 0, 0, 4200, 4202, 3, 1410, 705, 0, 4201, 4203, 3, 422, 211, 0, 4202, 4201, 1, 0, 0, 0, 4202, 4203, 1, 0, 0, 0, 4203, 4205, 1, 0, 0, 0, 4204, 4206, 3, 416, 208, 0, 4205, 4204, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4208, 1, 0, 0, 0, 4207, 4209, 3, 418, 209, 0, 4208, 4207, 1, 0, 0, 0, 4208, 4209, 1, 0, 0, 0, 4209, 409, 1, 0, 0, 0, 4210, 4211, 5, 138, 0, 0, 4211, 4212, 5, 296, 0, 0, 4212, 4214, 3, 1426, 713, 0, 4213, 4215, 3, 658, 329, 0, 4214, 4213, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 4216, 1, 0, 0, 0, 4216, 4217, 3, 412, 206, 0, 4217, 411, 1, 0, 0, 0, 4218, 4222, 3, 414, 207, 0, 4219, 4221, 3, 414, 207, 0, 4220, 4219, 1, 0, 0, 0, 4221, 4224, 1, 0, 0, 0, 4222, 4220, 1, 0, 0, 0, 4222, 4223, 1, 0, 0, 0, 4223, 4226, 1, 0, 0, 0, 4224, 4222, 1, 0, 0, 0, 4225, 4227, 5, 315, 0, 0, 4226, 4225, 1, 0, 0, 0, 4226, 4227, 1, 0, 0, 0, 4227, 4245, 1, 0, 0, 0, 4228, 4229, 5, 309, 0, 0, 4229, 4230, 5, 94, 0, 0, 4230, 4245, 3, 1428, 714, 0, 4231, 4232, 5, 282, 0, 0, 4232, 4233, 5, 94, 0, 0, 4233, 4245, 3, 1468, 734, 0, 4234, 4235, 5, 333, 0, 0, 4235, 4236, 5, 323, 0, 0, 4236, 4245, 3, 48, 24, 0, 4237, 4239, 5, 269, 0, 0, 4238, 4237, 1, 0, 0, 0, 4238, 4239, 1, 0, 0, 0, 4239, 4240, 1, 0, 0, 0, 4240, 4241, 5, 462, 0, 0, 4241, 4242, 5, 80, 0, 0, 4242, 4243, 5, 204, 0, 0, 4243, 4245, 3, 1434, 717, 0, 4244, 4218, 1, 0, 0, 0, 4244, 4228, 1, 0, 0, 0, 4244, 4231, 1, 0, 0, 0, 4244, 4234, 1, 0, 0, 0, 4244, 4238, 1, 0, 0, 0, 4245, 413, 1, 0, 0, 0, 4246, 4248, 5, 205, 0, 0, 4247, 4246, 1, 0, 0, 0, 4247, 4248, 1, 0, 0, 0, 4248, 4249, 1, 0, 0, 0, 4249, 4250, 5, 327, 0, 0, 4250, 4257, 5, 243, 0, 0, 4251, 4253, 5, 205, 0, 0, 4252, 4251, 1, 0, 0, 0, 4252, 4253, 1, 0, 0, 0, 4253, 4254, 1, 0, 0, 0, 4254, 4255, 5, 327, 0, 0, 4255, 4257, 5, 181, 0, 0, 4256, 4247, 1, 0, 0, 0, 4256, 4252, 1, 0, 0, 0, 4257, 4275, 1, 0, 0, 0, 4258, 4259, 5, 333, 0, 0, 4259, 4260, 3, 1434, 717, 0, 4260, 4263, 7, 31, 0, 0, 4261, 4264, 3, 1434, 717, 0, 4262, 4264, 5, 53, 0, 0, 4263, 4261, 1, 0, 0, 0, 4263, 4262, 1, 0, 0, 0, 4264, 4275, 1, 0, 0, 0, 4265, 4266, 5, 333, 0, 0, 4266, 4267, 3, 1434, 717, 0, 4267, 4268, 5, 64, 0, 0, 4268, 4269, 5, 434, 0, 0, 4269, 4275, 1, 0, 0, 0, 4270, 4271, 5, 313, 0, 0, 4271, 4275, 3, 1434, 717, 0, 4272, 4273, 5, 313, 0, 0, 4273, 4275, 5, 30, 0, 0, 4274, 4256, 1, 0, 0, 0, 4274, 4258, 1, 0, 0, 0, 4274, 4265, 1, 0, 0, 0, 4274, 4270, 1, 0, 0, 0, 4274, 4272, 1, 0, 0, 0, 4275, 415, 1, 0, 0, 0, 4276, 4277, 5, 100, 0, 0, 4277, 4278, 5, 2, 0, 0, 4278, 4279, 3, 1210, 605, 0, 4279, 4280, 5, 3, 0, 0, 4280, 417, 1, 0, 0, 0, 4281, 4282, 5, 105, 0, 0, 4282, 4283, 5, 42, 0, 0, 4283, 4284, 5, 2, 0, 0, 4284, 4285, 3, 1210, 605, 0, 4285, 4286, 5, 3, 0, 0, 4286, 419, 1, 0, 0, 0, 4287, 4288, 5, 94, 0, 0, 4288, 4289, 3, 1470, 735, 0, 4289, 421, 1, 0, 0, 0, 4290, 4291, 5, 94, 0, 0, 4291, 4292, 3, 1470, 735, 0, 4292, 423, 1, 0, 0, 0, 4293, 4297, 5, 36, 0, 0, 4294, 4298, 5, 541, 0, 0, 4295, 4298, 5, 542, 0, 0, 4296, 4298, 3, 1490, 745, 0, 4297, 4294, 1, 0, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4296, 1, 0, 0, 0, 4298, 425, 1, 0, 0, 0, 4299, 4300, 5, 62, 0, 0, 4300, 4301, 3, 428, 214, 0, 4301, 427, 1, 0, 0, 0, 4302, 4303, 7, 32, 0, 0, 4303, 429, 1, 0, 0, 0, 4304, 4305, 5, 46, 0, 0, 4305, 4306, 5, 131, 0, 0, 4306, 4307, 5, 446, 0, 0, 4307, 4308, 3, 1434, 717, 0, 4308, 4309, 5, 360, 0, 0, 4309, 4310, 3, 432, 216, 0, 4310, 4311, 5, 215, 0, 0, 4311, 4312, 3, 328, 164, 0, 4312, 431, 1, 0, 0, 0, 4313, 4314, 7, 33, 0, 0, 4314, 433, 1, 0, 0, 0, 4315, 4317, 5, 46, 0, 0, 4316, 4318, 3, 656, 328, 0, 4317, 4316, 1, 0, 0, 0, 4317, 4318, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 4320, 5, 357, 0, 0, 4320, 4321, 3, 1434, 717, 0, 4321, 4322, 3, 436, 218, 0, 4322, 4323, 3, 442, 221, 0, 4323, 4324, 5, 80, 0, 0, 4324, 4326, 3, 1404, 702, 0, 4325, 4327, 3, 446, 223, 0, 4326, 4325, 1, 0, 0, 0, 4326, 4327, 1, 0, 0, 0, 4327, 4329, 1, 0, 0, 0, 4328, 4330, 3, 458, 229, 0, 4329, 4328, 1, 0, 0, 0, 4329, 4330, 1, 0, 0, 0, 4330, 4332, 1, 0, 0, 0, 4331, 4333, 3, 464, 232, 0, 4332, 4331, 1, 0, 0, 0, 4332, 4333, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 4335, 5, 202, 0, 0, 4335, 4336, 3, 466, 233, 0, 4336, 4337, 5, 2, 0, 0, 4337, 4338, 3, 468, 234, 0, 4338, 4339, 5, 3, 0, 0, 4339, 4370, 1, 0, 0, 0, 4340, 4342, 5, 46, 0, 0, 4341, 4343, 3, 656, 328, 0, 4342, 4341, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 4345, 1, 0, 0, 0, 4344, 4346, 5, 45, 0, 0, 4345, 4344, 1, 0, 0, 0, 4345, 4346, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4348, 5, 357, 0, 0, 4348, 4349, 3, 1434, 717, 0, 4349, 4350, 3, 436, 218, 0, 4350, 4351, 3, 442, 221, 0, 4351, 4352, 5, 80, 0, 0, 4352, 4354, 3, 1404, 702, 0, 4353, 4355, 3, 472, 236, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4356, 1, 0, 0, 0, 4356, 4358, 3, 474, 237, 0, 4357, 4359, 3, 438, 219, 0, 4358, 4357, 1, 0, 0, 0, 4358, 4359, 1, 0, 0, 0, 4359, 4361, 1, 0, 0, 0, 4360, 4362, 3, 464, 232, 0, 4361, 4360, 1, 0, 0, 0, 4361, 4362, 1, 0, 0, 0, 4362, 4363, 1, 0, 0, 0, 4363, 4364, 5, 202, 0, 0, 4364, 4365, 3, 466, 233, 0, 4365, 4366, 5, 2, 0, 0, 4366, 4367, 3, 468, 234, 0, 4367, 4368, 5, 3, 0, 0, 4368, 4370, 1, 0, 0, 0, 4369, 4315, 1, 0, 0, 0, 4369, 4340, 1, 0, 0, 0, 4370, 435, 1, 0, 0, 0, 4371, 4376, 5, 145, 0, 0, 4372, 4376, 5, 135, 0, 0, 4373, 4374, 5, 242, 0, 0, 4374, 4376, 5, 275, 0, 0, 4375, 4371, 1, 0, 0, 0, 4375, 4372, 1, 0, 0, 0, 4375, 4373, 1, 0, 0, 0, 4376, 437, 1, 0, 0, 0, 4377, 4379, 5, 62, 0, 0, 4378, 4380, 5, 192, 0, 0, 4379, 4378, 1, 0, 0, 0, 4379, 4380, 1, 0, 0, 0, 4380, 4381, 1, 0, 0, 0, 4381, 4382, 3, 440, 220, 0, 4382, 439, 1, 0, 0, 0, 4383, 4384, 7, 34, 0, 0, 4384, 441, 1, 0, 0, 0, 4385, 4390, 3, 444, 222, 0, 4386, 4387, 5, 82, 0, 0, 4387, 4389, 3, 444, 222, 0, 4388, 4386, 1, 0, 0, 0, 4389, 4392, 1, 0, 0, 0, 4390, 4388, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 443, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4393, 4401, 5, 241, 0, 0, 4394, 4401, 5, 182, 0, 0, 4395, 4401, 5, 369, 0, 0, 4396, 4397, 5, 369, 0, 0, 4397, 4398, 5, 275, 0, 0, 4398, 4401, 3, 244, 122, 0, 4399, 4401, 5, 358, 0, 0, 4400, 4393, 1, 0, 0, 0, 4400, 4394, 1, 0, 0, 0, 4400, 4395, 1, 0, 0, 0, 4400, 4396, 1, 0, 0, 0, 4400, 4399, 1, 0, 0, 0, 4401, 445, 1, 0, 0, 0, 4402, 4403, 5, 447, 0, 0, 4403, 4404, 3, 448, 224, 0, 4404, 447, 1, 0, 0, 0, 4405, 4407, 3, 450, 225, 0, 4406, 4405, 1, 0, 0, 0, 4407, 4408, 1, 0, 0, 0, 4408, 4406, 1, 0, 0, 0, 4408, 4409, 1, 0, 0, 0, 4409, 449, 1, 0, 0, 0, 4410, 4411, 3, 452, 226, 0, 4411, 4413, 3, 454, 227, 0, 4412, 4414, 3, 870, 435, 0, 4413, 4412, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 4415, 1, 0, 0, 0, 4415, 4416, 3, 456, 228, 0, 4416, 451, 1, 0, 0, 0, 4417, 4418, 7, 35, 0, 0, 4418, 453, 1, 0, 0, 0, 4419, 4420, 7, 36, 0, 0, 4420, 455, 1, 0, 0, 0, 4421, 4422, 3, 1472, 736, 0, 4422, 457, 1, 0, 0, 0, 4423, 4425, 5, 62, 0, 0, 4424, 4426, 3, 460, 230, 0, 4425, 4424, 1, 0, 0, 0, 4425, 4426, 1, 0, 0, 0, 4426, 4427, 1, 0, 0, 0, 4427, 4428, 3, 462, 231, 0, 4428, 459, 1, 0, 0, 0, 4429, 4430, 5, 192, 0, 0, 4430, 461, 1, 0, 0, 0, 4431, 4432, 7, 34, 0, 0, 4432, 463, 1, 0, 0, 0, 4433, 4434, 5, 102, 0, 0, 4434, 4435, 5, 2, 0, 0, 4435, 4436, 3, 1210, 605, 0, 4436, 4437, 5, 3, 0, 0, 4437, 465, 1, 0, 0, 0, 4438, 4439, 5, 211, 0, 0, 4439, 4443, 3, 1442, 721, 0, 4440, 4441, 5, 296, 0, 0, 4441, 4443, 3, 1426, 713, 0, 4442, 4438, 1, 0, 0, 0, 4442, 4440, 1, 0, 0, 0, 4443, 467, 1, 0, 0, 0, 4444, 4447, 3, 470, 235, 0, 4445, 4447, 1, 0, 0, 0, 4446, 4444, 1, 0, 0, 0, 4446, 4445, 1, 0, 0, 0, 4447, 4452, 1, 0, 0, 0, 4448, 4449, 5, 6, 0, 0, 4449, 4451, 3, 470, 235, 0, 4450, 4448, 1, 0, 0, 0, 4451, 4454, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 469, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4455, 4460, 3, 1454, 727, 0, 4456, 4460, 3, 1452, 726, 0, 4457, 4460, 3, 1456, 728, 0, 4458, 4460, 3, 1488, 744, 0, 4459, 4455, 1, 0, 0, 0, 4459, 4456, 1, 0, 0, 0, 4459, 4457, 1, 0, 0, 0, 4459, 4458, 1, 0, 0, 0, 4460, 471, 1, 0, 0, 0, 4461, 4462, 5, 64, 0, 0, 4462, 4463, 3, 1410, 705, 0, 4463, 473, 1, 0, 0, 0, 4464, 4466, 3, 476, 238, 0, 4465, 4464, 1, 0, 0, 0, 4466, 4469, 1, 0, 0, 0, 4467, 4465, 1, 0, 0, 0, 4467, 4468, 1, 0, 0, 0, 4468, 475, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4470, 4471, 5, 77, 0, 0, 4471, 4482, 5, 54, 0, 0, 4472, 4482, 5, 54, 0, 0, 4473, 4474, 5, 69, 0, 0, 4474, 4482, 5, 221, 0, 0, 4475, 4476, 5, 69, 0, 0, 4476, 4482, 5, 180, 0, 0, 4477, 4478, 5, 77, 0, 0, 4478, 4482, 5, 371, 0, 0, 4479, 4480, 5, 269, 0, 0, 4480, 4482, 5, 228, 0, 0, 4481, 4470, 1, 0, 0, 0, 4481, 4472, 1, 0, 0, 0, 4481, 4473, 1, 0, 0, 0, 4481, 4475, 1, 0, 0, 0, 4481, 4477, 1, 0, 0, 0, 4481, 4479, 1, 0, 0, 0, 4482, 477, 1, 0, 0, 0, 4483, 4484, 5, 46, 0, 0, 4484, 4485, 5, 198, 0, 0, 4485, 4486, 5, 357, 0, 0, 4486, 4487, 3, 1434, 717, 0, 4487, 4488, 5, 80, 0, 0, 4488, 4489, 3, 1488, 744, 0, 4489, 4490, 5, 202, 0, 0, 4490, 4491, 3, 466, 233, 0, 4491, 4492, 5, 2, 0, 0, 4492, 4493, 5, 3, 0, 0, 4493, 4508, 1, 0, 0, 0, 4494, 4495, 5, 46, 0, 0, 4495, 4496, 5, 198, 0, 0, 4496, 4497, 5, 357, 0, 0, 4497, 4498, 3, 1434, 717, 0, 4498, 4499, 5, 80, 0, 0, 4499, 4500, 3, 1488, 744, 0, 4500, 4501, 5, 102, 0, 0, 4501, 4502, 3, 480, 240, 0, 4502, 4503, 5, 202, 0, 0, 4503, 4504, 3, 466, 233, 0, 4504, 4505, 5, 2, 0, 0, 4505, 4506, 5, 3, 0, 0, 4506, 4508, 1, 0, 0, 0, 4507, 4483, 1, 0, 0, 0, 4507, 4494, 1, 0, 0, 0, 4508, 479, 1, 0, 0, 0, 4509, 4514, 3, 482, 241, 0, 4510, 4511, 5, 33, 0, 0, 4511, 4513, 3, 482, 241, 0, 4512, 4510, 1, 0, 0, 0, 4513, 4516, 1, 0, 0, 0, 4514, 4512, 1, 0, 0, 0, 4514, 4515, 1, 0, 0, 0, 4515, 481, 1, 0, 0, 0, 4516, 4514, 1, 0, 0, 0, 4517, 4518, 3, 1472, 736, 0, 4518, 4519, 5, 68, 0, 0, 4519, 4520, 5, 2, 0, 0, 4520, 4521, 3, 484, 242, 0, 4521, 4522, 5, 3, 0, 0, 4522, 483, 1, 0, 0, 0, 4523, 4528, 3, 1456, 728, 0, 4524, 4525, 5, 6, 0, 0, 4525, 4527, 3, 1456, 728, 0, 4526, 4524, 1, 0, 0, 0, 4527, 4530, 1, 0, 0, 0, 4528, 4526, 1, 0, 0, 0, 4528, 4529, 1, 0, 0, 0, 4529, 485, 1, 0, 0, 0, 4530, 4528, 1, 0, 0, 0, 4531, 4532, 5, 138, 0, 0, 4532, 4533, 5, 198, 0, 0, 4533, 4534, 5, 357, 0, 0, 4534, 4535, 3, 1434, 717, 0, 4535, 4536, 3, 488, 244, 0, 4536, 487, 1, 0, 0, 0, 4537, 4539, 5, 193, 0, 0, 4538, 4540, 7, 20, 0, 0, 4539, 4538, 1, 0, 0, 0, 4539, 4540, 1, 0, 0, 0, 4540, 4543, 1, 0, 0, 0, 4541, 4543, 5, 186, 0, 0, 4542, 4537, 1, 0, 0, 0, 4542, 4541, 1, 0, 0, 0, 4543, 489, 1, 0, 0, 0, 4544, 4545, 5, 46, 0, 0, 4545, 4546, 5, 140, 0, 0, 4546, 4547, 3, 556, 278, 0, 4547, 4548, 5, 42, 0, 0, 4548, 4549, 5, 2, 0, 0, 4549, 4550, 3, 1210, 605, 0, 4550, 4551, 5, 3, 0, 0, 4551, 4552, 3, 474, 237, 0, 4552, 491, 1, 0, 0, 0, 4553, 4555, 5, 46, 0, 0, 4554, 4556, 3, 656, 328, 0, 4555, 4554, 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 4557, 1, 0, 0, 0, 4557, 4558, 5, 136, 0, 0, 4558, 4559, 3, 1442, 721, 0, 4559, 4560, 3, 692, 346, 0, 4560, 4561, 3, 494, 247, 0, 4561, 4657, 1, 0, 0, 0, 4562, 4564, 5, 46, 0, 0, 4563, 4565, 3, 656, 328, 0, 4564, 4563, 1, 0, 0, 0, 4564, 4565, 1, 0, 0, 0, 4565, 4566, 1, 0, 0, 0, 4566, 4567, 5, 136, 0, 0, 4567, 4568, 3, 1442, 721, 0, 4568, 4569, 3, 502, 251, 0, 4569, 4657, 1, 0, 0, 0, 4570, 4571, 5, 46, 0, 0, 4571, 4572, 5, 278, 0, 0, 4572, 4573, 3, 730, 365, 0, 4573, 4574, 3, 494, 247, 0, 4574, 4657, 1, 0, 0, 0, 4575, 4576, 5, 46, 0, 0, 4576, 4577, 5, 360, 0, 0, 4577, 4578, 3, 556, 278, 0, 4578, 4579, 3, 494, 247, 0, 4579, 4657, 1, 0, 0, 0, 4580, 4581, 5, 46, 0, 0, 4581, 4582, 5, 360, 0, 0, 4582, 4657, 3, 556, 278, 0, 4583, 4584, 5, 46, 0, 0, 4584, 4585, 5, 360, 0, 0, 4585, 4586, 3, 556, 278, 0, 4586, 4587, 5, 36, 0, 0, 4587, 4589, 5, 2, 0, 0, 4588, 4590, 3, 1146, 573, 0, 4589, 4588, 1, 0, 0, 0, 4589, 4590, 1, 0, 0, 0, 4590, 4591, 1, 0, 0, 0, 4591, 4592, 5, 3, 0, 0, 4592, 4657, 1, 0, 0, 0, 4593, 4594, 5, 46, 0, 0, 4594, 4595, 5, 360, 0, 0, 4595, 4596, 3, 556, 278, 0, 4596, 4597, 5, 36, 0, 0, 4597, 4598, 5, 196, 0, 0, 4598, 4600, 5, 2, 0, 0, 4599, 4601, 3, 508, 254, 0, 4600, 4599, 1, 0, 0, 0, 4600, 4601, 1, 0, 0, 0, 4601, 4602, 1, 0, 0, 0, 4602, 4603, 5, 3, 0, 0, 4603, 4657, 1, 0, 0, 0, 4604, 4605, 5, 46, 0, 0, 4605, 4606, 5, 360, 0, 0, 4606, 4607, 3, 556, 278, 0, 4607, 4608, 5, 36, 0, 0, 4608, 4609, 5, 299, 0, 0, 4609, 4610, 3, 494, 247, 0, 4610, 4657, 1, 0, 0, 0, 4611, 4612, 5, 46, 0, 0, 4612, 4613, 5, 355, 0, 0, 4613, 4614, 5, 325, 0, 0, 4614, 4615, 5, 283, 0, 0, 4615, 4616, 3, 556, 278, 0, 4616, 4617, 3, 494, 247, 0, 4617, 4657, 1, 0, 0, 0, 4618, 4619, 5, 46, 0, 0, 4619, 4620, 5, 355, 0, 0, 4620, 4621, 5, 325, 0, 0, 4621, 4622, 5, 185, 0, 0, 4622, 4623, 3, 556, 278, 0, 4623, 4624, 3, 494, 247, 0, 4624, 4657, 1, 0, 0, 0, 4625, 4626, 5, 46, 0, 0, 4626, 4627, 5, 355, 0, 0, 4627, 4628, 5, 325, 0, 0, 4628, 4629, 5, 353, 0, 0, 4629, 4630, 3, 556, 278, 0, 4630, 4631, 3, 494, 247, 0, 4631, 4657, 1, 0, 0, 0, 4632, 4633, 5, 46, 0, 0, 4633, 4634, 5, 355, 0, 0, 4634, 4635, 5, 325, 0, 0, 4635, 4636, 5, 163, 0, 0, 4636, 4637, 3, 556, 278, 0, 4637, 4638, 3, 494, 247, 0, 4638, 4657, 1, 0, 0, 0, 4639, 4640, 5, 46, 0, 0, 4640, 4642, 5, 108, 0, 0, 4641, 4643, 3, 514, 257, 0, 4642, 4641, 1, 0, 0, 0, 4642, 4643, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4645, 3, 556, 278, 0, 4645, 4646, 3, 494, 247, 0, 4646, 4657, 1, 0, 0, 0, 4647, 4648, 5, 46, 0, 0, 4648, 4650, 5, 108, 0, 0, 4649, 4651, 3, 514, 257, 0, 4650, 4649, 1, 0, 0, 0, 4650, 4651, 1, 0, 0, 0, 4651, 4652, 1, 0, 0, 0, 4652, 4653, 3, 556, 278, 0, 4653, 4654, 5, 64, 0, 0, 4654, 4655, 3, 556, 278, 0, 4655, 4657, 1, 0, 0, 0, 4656, 4553, 1, 0, 0, 0, 4656, 4562, 1, 0, 0, 0, 4656, 4570, 1, 0, 0, 0, 4656, 4575, 1, 0, 0, 0, 4656, 4580, 1, 0, 0, 0, 4656, 4583, 1, 0, 0, 0, 4656, 4593, 1, 0, 0, 0, 4656, 4604, 1, 0, 0, 0, 4656, 4611, 1, 0, 0, 0, 4656, 4618, 1, 0, 0, 0, 4656, 4625, 1, 0, 0, 0, 4656, 4632, 1, 0, 0, 0, 4656, 4639, 1, 0, 0, 0, 4656, 4647, 1, 0, 0, 0, 4657, 493, 1, 0, 0, 0, 4658, 4659, 5, 2, 0, 0, 4659, 4660, 3, 496, 248, 0, 4660, 4661, 5, 3, 0, 0, 4661, 495, 1, 0, 0, 0, 4662, 4667, 3, 498, 249, 0, 4663, 4664, 5, 6, 0, 0, 4664, 4666, 3, 498, 249, 0, 4665, 4663, 1, 0, 0, 0, 4666, 4669, 1, 0, 0, 0, 4667, 4665, 1, 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 497, 1, 0, 0, 0, 4669, 4667, 1, 0, 0, 0, 4670, 4673, 3, 1488, 744, 0, 4671, 4672, 5, 10, 0, 0, 4672, 4674, 3, 500, 250, 0, 4673, 4671, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 499, 1, 0, 0, 0, 4675, 4682, 3, 686, 343, 0, 4676, 4682, 3, 1500, 750, 0, 4677, 4682, 3, 1322, 661, 0, 4678, 4682, 3, 320, 160, 0, 4679, 4682, 3, 1456, 728, 0, 4680, 4682, 5, 407, 0, 0, 4681, 4675, 1, 0, 0, 0, 4681, 4676, 1, 0, 0, 0, 4681, 4677, 1, 0, 0, 0, 4681, 4678, 1, 0, 0, 0, 4681, 4679, 1, 0, 0, 0, 4681, 4680, 1, 0, 0, 0, 4682, 501, 1, 0, 0, 0, 4683, 4684, 5, 2, 0, 0, 4684, 4685, 3, 504, 252, 0, 4685, 4686, 5, 3, 0, 0, 4686, 503, 1, 0, 0, 0, 4687, 4692, 3, 506, 253, 0, 4688, 4689, 5, 6, 0, 0, 4689, 4691, 3, 506, 253, 0, 4690, 4688, 1, 0, 0, 0, 4691, 4694, 1, 0, 0, 0, 4692, 4690, 1, 0, 0, 0, 4692, 4693, 1, 0, 0, 0, 4693, 505, 1, 0, 0, 0, 4694, 4692, 1, 0, 0, 0, 4695, 4696, 3, 1490, 745, 0, 4696, 4697, 5, 10, 0, 0, 4697, 4698, 3, 500, 250, 0, 4698, 507, 1, 0, 0, 0, 4699, 4700, 3, 510, 255, 0, 4700, 509, 1, 0, 0, 0, 4701, 4706, 3, 1456, 728, 0, 4702, 4703, 5, 6, 0, 0, 4703, 4705, 3, 1456, 728, 0, 4704, 4702, 1, 0, 0, 0, 4705, 4708, 1, 0, 0, 0, 4706, 4704, 1, 0, 0, 0, 4706, 4707, 1, 0, 0, 0, 4707, 511, 1, 0, 0, 0, 4708, 4706, 1, 0, 0, 0, 4709, 4710, 5, 138, 0, 0, 4710, 4711, 5, 360, 0, 0, 4711, 4712, 3, 556, 278, 0, 4712, 4713, 5, 133, 0, 0, 4713, 4715, 5, 450, 0, 0, 4714, 4716, 3, 514, 257, 0, 4715, 4714, 1, 0, 0, 0, 4715, 4716, 1, 0, 0, 0, 4716, 4717, 1, 0, 0, 0, 4717, 4720, 3, 1456, 728, 0, 4718, 4719, 7, 37, 0, 0, 4719, 4721, 3, 1456, 728, 0, 4720, 4718, 1, 0, 0, 0, 4720, 4721, 1, 0, 0, 0, 4721, 4732, 1, 0, 0, 0, 4722, 4723, 5, 138, 0, 0, 4723, 4724, 5, 360, 0, 0, 4724, 4725, 3, 556, 278, 0, 4725, 4726, 5, 309, 0, 0, 4726, 4727, 5, 450, 0, 0, 4727, 4728, 3, 1456, 728, 0, 4728, 4729, 5, 94, 0, 0, 4729, 4730, 3, 1456, 728, 0, 4730, 4732, 1, 0, 0, 0, 4731, 4709, 1, 0, 0, 0, 4731, 4722, 1, 0, 0, 0, 4732, 513, 1, 0, 0, 0, 4733, 4734, 5, 220, 0, 0, 4734, 4735, 5, 77, 0, 0, 4735, 4736, 5, 396, 0, 0, 4736, 515, 1, 0, 0, 0, 4737, 4738, 5, 46, 0, 0, 4738, 4739, 5, 278, 0, 0, 4739, 4740, 5, 156, 0, 0, 4740, 4742, 3, 556, 278, 0, 4741, 4743, 3, 522, 261, 0, 4742, 4741, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4744, 1, 0, 0, 0, 4744, 4745, 5, 62, 0, 0, 4745, 4746, 5, 360, 0, 0, 4746, 4747, 3, 1166, 583, 0, 4747, 4748, 5, 100, 0, 0, 4748, 4750, 3, 1434, 717, 0, 4749, 4751, 3, 524, 262, 0, 4750, 4749, 1, 0, 0, 0, 4750, 4751, 1, 0, 0, 0, 4751, 4752, 1, 0, 0, 0, 4752, 4753, 5, 36, 0, 0, 4753, 4754, 3, 518, 259, 0, 4754, 517, 1, 0, 0, 0, 4755, 4760, 3, 520, 260, 0, 4756, 4757, 5, 6, 0, 0, 4757, 4759, 3, 520, 260, 0, 4758, 4756, 1, 0, 0, 0, 4759, 4762, 1, 0, 0, 0, 4760, 4758, 1, 0, 0, 0, 4760, 4761, 1, 0, 0, 0, 4761, 519, 1, 0, 0, 0, 4762, 4760, 1, 0, 0, 0, 4763, 4764, 5, 278, 0, 0, 4764, 4765, 3, 1454, 727, 0, 4765, 4767, 3, 730, 365, 0, 4766, 4768, 3, 526, 263, 0, 4767, 4766, 1, 0, 0, 0, 4767, 4768, 1, 0, 0, 0, 4768, 4770, 1, 0, 0, 0, 4769, 4771, 3, 528, 264, 0, 4770, 4769, 1, 0, 0, 0, 4770, 4771, 1, 0, 0, 0, 4771, 4795, 1, 0, 0, 0, 4772, 4773, 5, 278, 0, 0, 4773, 4774, 3, 1454, 727, 0, 4774, 4776, 3, 734, 367, 0, 4775, 4777, 3, 526, 263, 0, 4776, 4775, 1, 0, 0, 0, 4776, 4777, 1, 0, 0, 0, 4777, 4779, 1, 0, 0, 0, 4778, 4780, 3, 528, 264, 0, 4779, 4778, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 4795, 1, 0, 0, 0, 4781, 4782, 5, 211, 0, 0, 4782, 4783, 3, 1454, 727, 0, 4783, 4784, 3, 672, 336, 0, 4784, 4795, 1, 0, 0, 0, 4785, 4786, 5, 211, 0, 0, 4786, 4787, 3, 1454, 727, 0, 4787, 4788, 5, 2, 0, 0, 4788, 4789, 3, 1340, 670, 0, 4789, 4790, 5, 3, 0, 0, 4790, 4791, 3, 672, 336, 0, 4791, 4795, 1, 0, 0, 0, 4792, 4793, 5, 345, 0, 0, 4793, 4795, 3, 1166, 583, 0, 4794, 4763, 1, 0, 0, 0, 4794, 4772, 1, 0, 0, 0, 4794, 4781, 1, 0, 0, 0, 4794, 4785, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4795, 521, 1, 0, 0, 0, 4796, 4797, 5, 53, 0, 0, 4797, 523, 1, 0, 0, 0, 4798, 4799, 5, 206, 0, 0, 4799, 4800, 3, 556, 278, 0, 4800, 525, 1, 0, 0, 0, 4801, 4802, 5, 62, 0, 0, 4802, 4808, 5, 325, 0, 0, 4803, 4804, 5, 62, 0, 0, 4804, 4805, 5, 83, 0, 0, 4805, 4806, 5, 147, 0, 0, 4806, 4808, 3, 556, 278, 0, 4807, 4801, 1, 0, 0, 0, 4807, 4803, 1, 0, 0, 0, 4808, 527, 1, 0, 0, 0, 4809, 4810, 5, 302, 0, 0, 4810, 529, 1, 0, 0, 0, 4811, 4812, 5, 46, 0, 0, 4812, 4813, 5, 278, 0, 0, 4813, 4814, 5, 206, 0, 0, 4814, 4815, 3, 556, 278, 0, 4815, 4816, 5, 100, 0, 0, 4816, 4817, 3, 1434, 717, 0, 4817, 531, 1, 0, 0, 0, 4818, 4819, 5, 138, 0, 0, 4819, 4820, 5, 278, 0, 0, 4820, 4821, 5, 206, 0, 0, 4821, 4822, 3, 556, 278, 0, 4822, 4823, 5, 100, 0, 0, 4823, 4824, 3, 1434, 717, 0, 4824, 4825, 5, 133, 0, 0, 4825, 4826, 3, 518, 259, 0, 4826, 4837, 1, 0, 0, 0, 4827, 4828, 5, 138, 0, 0, 4828, 4829, 5, 278, 0, 0, 4829, 4830, 5, 206, 0, 0, 4830, 4831, 3, 556, 278, 0, 4831, 4832, 5, 100, 0, 0, 4832, 4833, 3, 1434, 717, 0, 4833, 4834, 5, 191, 0, 0, 4834, 4835, 3, 534, 267, 0, 4835, 4837, 1, 0, 0, 0, 4836, 4818, 1, 0, 0, 0, 4836, 4827, 1, 0, 0, 0, 4837, 533, 1, 0, 0, 0, 4838, 4843, 3, 536, 268, 0, 4839, 4840, 5, 6, 0, 0, 4840, 4842, 3, 536, 268, 0, 4841, 4839, 1, 0, 0, 0, 4842, 4845, 1, 0, 0, 0, 4843, 4841, 1, 0, 0, 0, 4843, 4844, 1, 0, 0, 0, 4844, 535, 1, 0, 0, 0, 4845, 4843, 1, 0, 0, 0, 4846, 4847, 5, 278, 0, 0, 4847, 4848, 3, 1454, 727, 0, 4848, 4849, 5, 2, 0, 0, 4849, 4850, 3, 1340, 670, 0, 4850, 4851, 5, 3, 0, 0, 4851, 4859, 1, 0, 0, 0, 4852, 4853, 5, 211, 0, 0, 4853, 4854, 3, 1454, 727, 0, 4854, 4855, 5, 2, 0, 0, 4855, 4856, 3, 1340, 670, 0, 4856, 4857, 5, 3, 0, 0, 4857, 4859, 1, 0, 0, 0, 4858, 4846, 1, 0, 0, 0, 4858, 4852, 1, 0, 0, 0, 4859, 537, 1, 0, 0, 0, 4860, 4861, 5, 301, 0, 0, 4861, 4862, 5, 281, 0, 0, 4862, 4863, 5, 147, 0, 0, 4863, 4864, 3, 1470, 735, 0, 4864, 4865, 5, 94, 0, 0, 4865, 4866, 3, 1468, 734, 0, 4866, 539, 1, 0, 0, 0, 4867, 4868, 5, 191, 0, 0, 4868, 4870, 5, 92, 0, 0, 4869, 4871, 3, 746, 373, 0, 4870, 4869, 1, 0, 0, 0, 4870, 4871, 1, 0, 0, 0, 4871, 4872, 1, 0, 0, 0, 4872, 4874, 3, 1390, 695, 0, 4873, 4875, 3, 124, 62, 0, 4874, 4873, 1, 0, 0, 0, 4874, 4875, 1, 0, 0, 0, 4875, 5247, 1, 0, 0, 0, 4876, 4877, 5, 191, 0, 0, 4877, 4879, 5, 328, 0, 0, 4878, 4880, 3, 746, 373, 0, 4879, 4878, 1, 0, 0, 0, 4879, 4880, 1, 0, 0, 0, 4880, 4881, 1, 0, 0, 0, 4881, 4883, 3, 1414, 707, 0, 4882, 4884, 3, 124, 62, 0, 4883, 4882, 1, 0, 0, 0, 4883, 4884, 1, 0, 0, 0, 4884, 5247, 1, 0, 0, 0, 4885, 4886, 5, 191, 0, 0, 4886, 4888, 5, 376, 0, 0, 4887, 4889, 3, 746, 373, 0, 4888, 4887, 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4892, 3, 542, 271, 0, 4891, 4893, 3, 124, 62, 0, 4892, 4891, 1, 0, 0, 0, 4892, 4893, 1, 0, 0, 0, 4893, 5247, 1, 0, 0, 0, 4894, 4895, 5, 191, 0, 0, 4895, 4896, 5, 259, 0, 0, 4896, 4898, 5, 376, 0, 0, 4897, 4899, 3, 746, 373, 0, 4898, 4897, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4900, 1, 0, 0, 0, 4900, 4902, 3, 542, 271, 0, 4901, 4903, 3, 124, 62, 0, 4902, 4901, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 5247, 1, 0, 0, 0, 4904, 4905, 5, 191, 0, 0, 4905, 4907, 5, 226, 0, 0, 4906, 4908, 3, 746, 373, 0, 4907, 4906, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4909, 1, 0, 0, 0, 4909, 4911, 3, 1414, 707, 0, 4910, 4912, 3, 124, 62, 0, 4911, 4910, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 5247, 1, 0, 0, 0, 4913, 4914, 5, 191, 0, 0, 4914, 4915, 5, 63, 0, 0, 4915, 4917, 5, 92, 0, 0, 4916, 4918, 3, 746, 373, 0, 4917, 4916, 1, 0, 0, 0, 4917, 4918, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 4921, 3, 1390, 695, 0, 4920, 4922, 3, 124, 62, 0, 4921, 4920, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, 4922, 5247, 1, 0, 0, 0, 4923, 4924, 5, 191, 0, 0, 4924, 4926, 5, 108, 0, 0, 4925, 4927, 3, 746, 373, 0, 4926, 4925, 1, 0, 0, 0, 4926, 4927, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 4930, 3, 1414, 707, 0, 4929, 4931, 3, 124, 62, 0, 4930, 4929, 1, 0, 0, 0, 4930, 4931, 1, 0, 0, 0, 4931, 5247, 1, 0, 0, 0, 4932, 4933, 5, 191, 0, 0, 4933, 4935, 5, 168, 0, 0, 4934, 4936, 3, 746, 373, 0, 4935, 4934, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 4939, 3, 1414, 707, 0, 4938, 4940, 3, 124, 62, 0, 4939, 4938, 1, 0, 0, 0, 4939, 4940, 1, 0, 0, 0, 4940, 5247, 1, 0, 0, 0, 4941, 4942, 5, 191, 0, 0, 4942, 4944, 5, 342, 0, 0, 4943, 4945, 3, 746, 373, 0, 4944, 4943, 1, 0, 0, 0, 4944, 4945, 1, 0, 0, 0, 4945, 4946, 1, 0, 0, 0, 4946, 4948, 3, 1414, 707, 0, 4947, 4949, 3, 124, 62, 0, 4948, 4947, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 5247, 1, 0, 0, 0, 4950, 4951, 5, 191, 0, 0, 4951, 4952, 5, 355, 0, 0, 4952, 4953, 5, 325, 0, 0, 4953, 4955, 5, 283, 0, 0, 4954, 4956, 3, 746, 373, 0, 4955, 4954, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 4957, 1, 0, 0, 0, 4957, 4959, 3, 1414, 707, 0, 4958, 4960, 3, 124, 62, 0, 4959, 4958, 1, 0, 0, 0, 4959, 4960, 1, 0, 0, 0, 4960, 5247, 1, 0, 0, 0, 4961, 4962, 5, 191, 0, 0, 4962, 4963, 5, 355, 0, 0, 4963, 4964, 5, 325, 0, 0, 4964, 4966, 5, 185, 0, 0, 4965, 4967, 3, 746, 373, 0, 4966, 4965, 1, 0, 0, 0, 4966, 4967, 1, 0, 0, 0, 4967, 4968, 1, 0, 0, 0, 4968, 4970, 3, 1414, 707, 0, 4969, 4971, 3, 124, 62, 0, 4970, 4969, 1, 0, 0, 0, 4970, 4971, 1, 0, 0, 0, 4971, 5247, 1, 0, 0, 0, 4972, 4973, 5, 191, 0, 0, 4973, 4974, 5, 355, 0, 0, 4974, 4975, 5, 325, 0, 0, 4975, 4977, 5, 353, 0, 0, 4976, 4978, 3, 746, 373, 0, 4977, 4976, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4979, 1, 0, 0, 0, 4979, 4981, 3, 1414, 707, 0, 4980, 4982, 3, 124, 62, 0, 4981, 4980, 1, 0, 0, 0, 4981, 4982, 1, 0, 0, 0, 4982, 5247, 1, 0, 0, 0, 4983, 4984, 5, 191, 0, 0, 4984, 4985, 5, 355, 0, 0, 4985, 4986, 5, 325, 0, 0, 4986, 4988, 5, 163, 0, 0, 4987, 4989, 3, 746, 373, 0, 4988, 4987, 1, 0, 0, 0, 4988, 4989, 1, 0, 0, 0, 4989, 4990, 1, 0, 0, 0, 4990, 4992, 3, 1414, 707, 0, 4991, 4993, 3, 124, 62, 0, 4992, 4991, 1, 0, 0, 0, 4992, 4993, 1, 0, 0, 0, 4993, 5247, 1, 0, 0, 0, 4994, 4995, 5, 191, 0, 0, 4995, 4996, 5, 131, 0, 0, 4996, 4998, 5, 446, 0, 0, 4997, 4999, 3, 746, 373, 0, 4998, 4997, 1, 0, 0, 0, 4998, 4999, 1, 0, 0, 0, 4999, 5000, 1, 0, 0, 0, 5000, 5002, 3, 1414, 707, 0, 5001, 5003, 3, 124, 62, 0, 5002, 5001, 1, 0, 0, 0, 5002, 5003, 1, 0, 0, 0, 5003, 5247, 1, 0, 0, 0, 5004, 5005, 5, 191, 0, 0, 5005, 5006, 5, 198, 0, 0, 5006, 5008, 5, 357, 0, 0, 5007, 5009, 3, 746, 373, 0, 5008, 5007, 1, 0, 0, 0, 5008, 5009, 1, 0, 0, 0, 5009, 5010, 1, 0, 0, 0, 5010, 5012, 3, 1414, 707, 0, 5011, 5013, 3, 124, 62, 0, 5012, 5011, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5247, 1, 0, 0, 0, 5014, 5015, 5, 191, 0, 0, 5015, 5017, 5, 204, 0, 0, 5016, 5018, 3, 746, 373, 0, 5017, 5016, 1, 0, 0, 0, 5017, 5018, 1, 0, 0, 0, 5018, 5019, 1, 0, 0, 0, 5019, 5021, 3, 1414, 707, 0, 5020, 5022, 3, 124, 62, 0, 5021, 5020, 1, 0, 0, 0, 5021, 5022, 1, 0, 0, 0, 5022, 5247, 1, 0, 0, 0, 5023, 5024, 5, 191, 0, 0, 5024, 5025, 5, 63, 0, 0, 5025, 5026, 5, 174, 0, 0, 5026, 5028, 5, 381, 0, 0, 5027, 5029, 3, 746, 373, 0, 5028, 5027, 1, 0, 0, 0, 5028, 5029, 1, 0, 0, 0, 5029, 5030, 1, 0, 0, 0, 5030, 5032, 3, 1414, 707, 0, 5031, 5033, 3, 124, 62, 0, 5032, 5031, 1, 0, 0, 0, 5032, 5033, 1, 0, 0, 0, 5033, 5247, 1, 0, 0, 0, 5034, 5036, 5, 191, 0, 0, 5035, 5037, 3, 336, 168, 0, 5036, 5035, 1, 0, 0, 0, 5036, 5037, 1, 0, 0, 0, 5037, 5038, 1, 0, 0, 0, 5038, 5040, 5, 247, 0, 0, 5039, 5041, 3, 746, 373, 0, 5040, 5039, 1, 0, 0, 0, 5040, 5041, 1, 0, 0, 0, 5041, 5042, 1, 0, 0, 0, 5042, 5044, 3, 1414, 707, 0, 5043, 5045, 3, 124, 62, 0, 5044, 5043, 1, 0, 0, 0, 5044, 5045, 1, 0, 0, 0, 5045, 5247, 1, 0, 0, 0, 5046, 5047, 5, 191, 0, 0, 5047, 5049, 5, 452, 0, 0, 5048, 5050, 3, 746, 373, 0, 5049, 5048, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5051, 1, 0, 0, 0, 5051, 5053, 3, 1414, 707, 0, 5052, 5054, 3, 124, 62, 0, 5053, 5052, 1, 0, 0, 0, 5053, 5054, 1, 0, 0, 0, 5054, 5247, 1, 0, 0, 0, 5055, 5056, 5, 191, 0, 0, 5056, 5058, 5, 331, 0, 0, 5057, 5059, 3, 746, 373, 0, 5058, 5057, 1, 0, 0, 0, 5058, 5059, 1, 0, 0, 0, 5059, 5060, 1, 0, 0, 0, 5060, 5062, 3, 1414, 707, 0, 5061, 5063, 3, 124, 62, 0, 5062, 5061, 1, 0, 0, 0, 5062, 5063, 1, 0, 0, 0, 5063, 5247, 1, 0, 0, 0, 5064, 5065, 5, 191, 0, 0, 5065, 5067, 5, 323, 0, 0, 5066, 5068, 3, 746, 373, 0, 5067, 5066, 1, 0, 0, 0, 5067, 5068, 1, 0, 0, 0, 5068, 5069, 1, 0, 0, 0, 5069, 5071, 3, 1392, 696, 0, 5070, 5072, 3, 124, 62, 0, 5071, 5070, 1, 0, 0, 0, 5071, 5072, 1, 0, 0, 0, 5072, 5247, 1, 0, 0, 0, 5073, 5074, 5, 191, 0, 0, 5074, 5076, 5, 445, 0, 0, 5075, 5077, 3, 746, 373, 0, 5076, 5075, 1, 0, 0, 0, 5076, 5077, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 3, 1434, 717, 0, 5079, 5080, 5, 80, 0, 0, 5080, 5082, 3, 556, 278, 0, 5081, 5083, 3, 124, 62, 0, 5082, 5081, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5247, 1, 0, 0, 0, 5084, 5085, 5, 191, 0, 0, 5085, 5087, 5, 321, 0, 0, 5086, 5088, 3, 746, 373, 0, 5087, 5086, 1, 0, 0, 0, 5087, 5088, 1, 0, 0, 0, 5088, 5089, 1, 0, 0, 0, 5089, 5090, 3, 1434, 717, 0, 5090, 5091, 5, 80, 0, 0, 5091, 5093, 3, 556, 278, 0, 5092, 5094, 3, 124, 62, 0, 5093, 5092, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5247, 1, 0, 0, 0, 5095, 5096, 5, 191, 0, 0, 5096, 5098, 5, 357, 0, 0, 5097, 5099, 3, 746, 373, 0, 5098, 5097, 1, 0, 0, 0, 5098, 5099, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5101, 3, 1434, 717, 0, 5101, 5102, 5, 80, 0, 0, 5102, 5104, 3, 556, 278, 0, 5103, 5105, 3, 124, 62, 0, 5104, 5103, 1, 0, 0, 0, 5104, 5105, 1, 0, 0, 0, 5105, 5247, 1, 0, 0, 0, 5106, 5107, 5, 191, 0, 0, 5107, 5109, 5, 360, 0, 0, 5108, 5110, 3, 746, 373, 0, 5109, 5108, 1, 0, 0, 0, 5109, 5110, 1, 0, 0, 0, 5110, 5111, 1, 0, 0, 0, 5111, 5113, 3, 560, 280, 0, 5112, 5114, 3, 124, 62, 0, 5113, 5112, 1, 0, 0, 0, 5113, 5114, 1, 0, 0, 0, 5114, 5247, 1, 0, 0, 0, 5115, 5116, 5, 191, 0, 0, 5116, 5118, 5, 189, 0, 0, 5117, 5119, 3, 746, 373, 0, 5118, 5117, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5120, 1, 0, 0, 0, 5120, 5122, 3, 560, 280, 0, 5121, 5123, 3, 124, 62, 0, 5122, 5121, 1, 0, 0, 0, 5122, 5123, 1, 0, 0, 0, 5123, 5247, 1, 0, 0, 0, 5124, 5125, 5, 191, 0, 0, 5125, 5126, 5, 226, 0, 0, 5126, 5128, 5, 109, 0, 0, 5127, 5129, 3, 746, 373, 0, 5128, 5127, 1, 0, 0, 0, 5128, 5129, 1, 0, 0, 0, 5129, 5130, 1, 0, 0, 0, 5130, 5132, 3, 550, 275, 0, 5131, 5133, 3, 124, 62, 0, 5132, 5131, 1, 0, 0, 0, 5132, 5133, 1, 0, 0, 0, 5133, 5247, 1, 0, 0, 0, 5134, 5135, 5, 191, 0, 0, 5135, 5137, 5, 41, 0, 0, 5136, 5138, 3, 746, 373, 0, 5137, 5136, 1, 0, 0, 0, 5137, 5138, 1, 0, 0, 0, 5138, 5139, 1, 0, 0, 0, 5139, 5140, 5, 2, 0, 0, 5140, 5141, 3, 1166, 583, 0, 5141, 5142, 5, 36, 0, 0, 5142, 5143, 3, 1166, 583, 0, 5143, 5145, 5, 3, 0, 0, 5144, 5146, 3, 124, 62, 0, 5145, 5144, 1, 0, 0, 0, 5145, 5146, 1, 0, 0, 0, 5146, 5247, 1, 0, 0, 0, 5147, 5148, 5, 191, 0, 0, 5148, 5149, 5, 278, 0, 0, 5149, 5151, 5, 156, 0, 0, 5150, 5152, 3, 746, 373, 0, 5151, 5150, 1, 0, 0, 0, 5151, 5152, 1, 0, 0, 0, 5152, 5153, 1, 0, 0, 0, 5153, 5154, 3, 556, 278, 0, 5154, 5155, 5, 100, 0, 0, 5155, 5157, 3, 1434, 717, 0, 5156, 5158, 3, 124, 62, 0, 5157, 5156, 1, 0, 0, 0, 5157, 5158, 1, 0, 0, 0, 5158, 5247, 1, 0, 0, 0, 5159, 5160, 5, 191, 0, 0, 5160, 5161, 5, 278, 0, 0, 5161, 5163, 5, 206, 0, 0, 5162, 5164, 3, 746, 373, 0, 5163, 5162, 1, 0, 0, 0, 5163, 5164, 1, 0, 0, 0, 5164, 5165, 1, 0, 0, 0, 5165, 5166, 3, 556, 278, 0, 5166, 5167, 5, 100, 0, 0, 5167, 5169, 3, 1434, 717, 0, 5168, 5170, 3, 124, 62, 0, 5169, 5168, 1, 0, 0, 0, 5169, 5170, 1, 0, 0, 0, 5170, 5247, 1, 0, 0, 0, 5171, 5172, 5, 191, 0, 0, 5172, 5173, 5, 281, 0, 0, 5173, 5174, 5, 147, 0, 0, 5174, 5176, 3, 1470, 735, 0, 5175, 5177, 3, 124, 62, 0, 5176, 5175, 1, 0, 0, 0, 5176, 5177, 1, 0, 0, 0, 5177, 5247, 1, 0, 0, 0, 5178, 5179, 5, 191, 0, 0, 5179, 5181, 5, 376, 0, 0, 5180, 5182, 3, 746, 373, 0, 5181, 5180, 1, 0, 0, 0, 5181, 5182, 1, 0, 0, 0, 5182, 5183, 1, 0, 0, 0, 5183, 5185, 3, 542, 271, 0, 5184, 5186, 3, 124, 62, 0, 5185, 5184, 1, 0, 0, 0, 5185, 5186, 1, 0, 0, 0, 5186, 5247, 1, 0, 0, 0, 5187, 5188, 5, 191, 0, 0, 5188, 5190, 5, 451, 0, 0, 5189, 5191, 3, 746, 373, 0, 5190, 5189, 1, 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5192, 1, 0, 0, 0, 5192, 5194, 3, 1434, 717, 0, 5193, 5195, 3, 124, 62, 0, 5194, 5193, 1, 0, 0, 0, 5194, 5195, 1, 0, 0, 0, 5195, 5247, 1, 0, 0, 0, 5196, 5197, 5, 191, 0, 0, 5197, 5199, 5, 351, 0, 0, 5198, 5200, 3, 746, 373, 0, 5199, 5198, 1, 0, 0, 0, 5199, 5200, 1, 0, 0, 0, 5200, 5201, 1, 0, 0, 0, 5201, 5247, 3, 1400, 700, 0, 5202, 5203, 5, 191, 0, 0, 5203, 5205, 5, 443, 0, 0, 5204, 5206, 3, 746, 373, 0, 5205, 5204, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 5207, 1, 0, 0, 0, 5207, 5208, 5, 62, 0, 0, 5208, 5209, 3, 1166, 583, 0, 5209, 5210, 5, 247, 0, 0, 5210, 5212, 3, 1434, 717, 0, 5211, 5213, 3, 124, 62, 0, 5212, 5211, 1, 0, 0, 0, 5212, 5213, 1, 0, 0, 0, 5213, 5247, 1, 0, 0, 0, 5214, 5215, 5, 191, 0, 0, 5215, 5217, 7, 38, 0, 0, 5216, 5218, 3, 746, 373, 0, 5217, 5216, 1, 0, 0, 0, 5217, 5218, 1, 0, 0, 0, 5218, 5219, 1, 0, 0, 0, 5219, 5247, 3, 1470, 735, 0, 5220, 5221, 5, 191, 0, 0, 5221, 5222, 5, 99, 0, 0, 5222, 5224, 5, 257, 0, 0, 5223, 5225, 3, 746, 373, 0, 5224, 5223, 1, 0, 0, 0, 5224, 5225, 1, 0, 0, 0, 5225, 5226, 1, 0, 0, 0, 5226, 5227, 5, 62, 0, 0, 5227, 5228, 3, 402, 201, 0, 5228, 5229, 5, 331, 0, 0, 5229, 5230, 3, 1434, 717, 0, 5230, 5247, 1, 0, 0, 0, 5231, 5232, 5, 191, 0, 0, 5232, 5234, 5, 175, 0, 0, 5233, 5235, 3, 746, 373, 0, 5234, 5233, 1, 0, 0, 0, 5234, 5235, 1, 0, 0, 0, 5235, 5236, 1, 0, 0, 0, 5236, 5244, 3, 1418, 709, 0, 5237, 5239, 3, 14, 7, 0, 5238, 5237, 1, 0, 0, 0, 5238, 5239, 1, 0, 0, 0, 5239, 5240, 1, 0, 0, 0, 5240, 5241, 5, 2, 0, 0, 5241, 5242, 3, 858, 429, 0, 5242, 5243, 5, 3, 0, 0, 5243, 5245, 1, 0, 0, 0, 5244, 5238, 1, 0, 0, 0, 5244, 5245, 1, 0, 0, 0, 5245, 5247, 1, 0, 0, 0, 5246, 4867, 1, 0, 0, 0, 5246, 4876, 1, 0, 0, 0, 5246, 4885, 1, 0, 0, 0, 5246, 4894, 1, 0, 0, 0, 5246, 4904, 1, 0, 0, 0, 5246, 4913, 1, 0, 0, 0, 5246, 4923, 1, 0, 0, 0, 5246, 4932, 1, 0, 0, 0, 5246, 4941, 1, 0, 0, 0, 5246, 4950, 1, 0, 0, 0, 5246, 4961, 1, 0, 0, 0, 5246, 4972, 1, 0, 0, 0, 5246, 4983, 1, 0, 0, 0, 5246, 4994, 1, 0, 0, 0, 5246, 5004, 1, 0, 0, 0, 5246, 5014, 1, 0, 0, 0, 5246, 5023, 1, 0, 0, 0, 5246, 5034, 1, 0, 0, 0, 5246, 5046, 1, 0, 0, 0, 5246, 5055, 1, 0, 0, 0, 5246, 5064, 1, 0, 0, 0, 5246, 5073, 1, 0, 0, 0, 5246, 5084, 1, 0, 0, 0, 5246, 5095, 1, 0, 0, 0, 5246, 5106, 1, 0, 0, 0, 5246, 5115, 1, 0, 0, 0, 5246, 5124, 1, 0, 0, 0, 5246, 5134, 1, 0, 0, 0, 5246, 5147, 1, 0, 0, 0, 5246, 5159, 1, 0, 0, 0, 5246, 5171, 1, 0, 0, 0, 5246, 5178, 1, 0, 0, 0, 5246, 5187, 1, 0, 0, 0, 5246, 5196, 1, 0, 0, 0, 5246, 5202, 1, 0, 0, 0, 5246, 5214, 1, 0, 0, 0, 5246, 5220, 1, 0, 0, 0, 5246, 5231, 1, 0, 0, 0, 5247, 541, 1, 0, 0, 0, 5248, 5253, 3, 1408, 704, 0, 5249, 5250, 5, 6, 0, 0, 5250, 5252, 3, 1408, 704, 0, 5251, 5249, 1, 0, 0, 0, 5252, 5255, 1, 0, 0, 0, 5253, 5251, 1, 0, 0, 0, 5253, 5254, 1, 0, 0, 0, 5254, 543, 1, 0, 0, 0, 5255, 5253, 1, 0, 0, 0, 5256, 5258, 5, 63, 0, 0, 5257, 5256, 1, 0, 0, 0, 5257, 5258, 1, 0, 0, 0, 5258, 5259, 1, 0, 0, 0, 5259, 5260, 5, 92, 0, 0, 5260, 5281, 3, 1404, 702, 0, 5261, 5263, 5, 259, 0, 0, 5262, 5261, 1, 0, 0, 0, 5262, 5263, 1, 0, 0, 0, 5263, 5264, 1, 0, 0, 0, 5264, 5265, 5, 376, 0, 0, 5265, 5281, 3, 1408, 704, 0, 5266, 5267, 5, 226, 0, 0, 5267, 5281, 3, 556, 278, 0, 5268, 5269, 5, 108, 0, 0, 5269, 5281, 3, 556, 278, 0, 5270, 5271, 5, 168, 0, 0, 5271, 5281, 3, 556, 278, 0, 5272, 5273, 5, 342, 0, 0, 5273, 5281, 3, 556, 278, 0, 5274, 5275, 5, 328, 0, 0, 5275, 5281, 3, 556, 278, 0, 5276, 5277, 5, 355, 0, 0, 5277, 5278, 5, 325, 0, 0, 5278, 5279, 7, 39, 0, 0, 5279, 5281, 3, 556, 278, 0, 5280, 5257, 1, 0, 0, 0, 5280, 5262, 1, 0, 0, 0, 5280, 5266, 1, 0, 0, 0, 5280, 5268, 1, 0, 0, 0, 5280, 5270, 1, 0, 0, 0, 5280, 5272, 1, 0, 0, 0, 5280, 5274, 1, 0, 0, 0, 5280, 5276, 1, 0, 0, 0, 5281, 545, 1, 0, 0, 0, 5282, 5283, 5, 131, 0, 0, 5283, 5284, 5, 446, 0, 0, 5284, 5314, 3, 1434, 717, 0, 5285, 5286, 5, 198, 0, 0, 5286, 5287, 5, 357, 0, 0, 5287, 5314, 3, 1434, 717, 0, 5288, 5289, 5, 204, 0, 0, 5289, 5314, 3, 1434, 717, 0, 5290, 5291, 5, 63, 0, 0, 5291, 5292, 5, 174, 0, 0, 5292, 5293, 5, 381, 0, 0, 5293, 5314, 3, 1434, 717, 0, 5294, 5296, 3, 336, 168, 0, 5295, 5294, 1, 0, 0, 0, 5295, 5296, 1, 0, 0, 0, 5296, 5297, 1, 0, 0, 0, 5297, 5298, 5, 247, 0, 0, 5298, 5314, 3, 1434, 717, 0, 5299, 5300, 5, 452, 0, 0, 5300, 5314, 3, 1434, 717, 0, 5301, 5302, 5, 323, 0, 0, 5302, 5314, 3, 1420, 710, 0, 5303, 5304, 5, 331, 0, 0, 5304, 5314, 3, 1434, 717, 0, 5305, 5306, 5, 175, 0, 0, 5306, 5314, 3, 1418, 709, 0, 5307, 5308, 5, 318, 0, 0, 5308, 5314, 3, 1434, 717, 0, 5309, 5310, 5, 451, 0, 0, 5310, 5314, 3, 1434, 717, 0, 5311, 5312, 5, 351, 0, 0, 5312, 5314, 3, 1400, 700, 0, 5313, 5282, 1, 0, 0, 0, 5313, 5285, 1, 0, 0, 0, 5313, 5288, 1, 0, 0, 0, 5313, 5290, 1, 0, 0, 0, 5313, 5295, 1, 0, 0, 0, 5313, 5299, 1, 0, 0, 0, 5313, 5301, 1, 0, 0, 0, 5313, 5303, 1, 0, 0, 0, 5313, 5305, 1, 0, 0, 0, 5313, 5307, 1, 0, 0, 0, 5313, 5309, 1, 0, 0, 0, 5313, 5311, 1, 0, 0, 0, 5314, 547, 1, 0, 0, 0, 5315, 5316, 7, 40, 0, 0, 5316, 549, 1, 0, 0, 0, 5317, 5322, 3, 556, 278, 0, 5318, 5319, 5, 6, 0, 0, 5319, 5321, 3, 556, 278, 0, 5320, 5318, 1, 0, 0, 0, 5321, 5324, 1, 0, 0, 0, 5322, 5320, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 551, 1, 0, 0, 0, 5324, 5322, 1, 0, 0, 0, 5325, 5326, 3, 554, 277, 0, 5326, 5327, 5, 11, 0, 0, 5327, 5328, 3, 1430, 715, 0, 5328, 553, 1, 0, 0, 0, 5329, 5331, 3, 1472, 736, 0, 5330, 5332, 3, 558, 279, 0, 5331, 5330, 1, 0, 0, 0, 5331, 5332, 1, 0, 0, 0, 5332, 555, 1, 0, 0, 0, 5333, 5335, 3, 1472, 736, 0, 5334, 5336, 3, 558, 279, 0, 5335, 5334, 1, 0, 0, 0, 5335, 5336, 1, 0, 0, 0, 5336, 557, 1, 0, 0, 0, 5337, 5338, 5, 11, 0, 0, 5338, 5340, 3, 1436, 718, 0, 5339, 5337, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5339, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 559, 1, 0, 0, 0, 5343, 5348, 3, 1166, 583, 0, 5344, 5345, 5, 6, 0, 0, 5345, 5347, 3, 1166, 583, 0, 5346, 5344, 1, 0, 0, 0, 5347, 5350, 1, 0, 0, 0, 5348, 5346, 1, 0, 0, 0, 5348, 5349, 1, 0, 0, 0, 5349, 561, 1, 0, 0, 0, 5350, 5348, 1, 0, 0, 0, 5351, 5353, 5, 358, 0, 0, 5352, 5354, 5, 92, 0, 0, 5353, 5352, 1, 0, 0, 0, 5353, 5354, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5360, 3, 564, 282, 0, 5356, 5357, 5, 6, 0, 0, 5357, 5359, 3, 564, 282, 0, 5358, 5356, 1, 0, 0, 0, 5359, 5362, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5360, 5361, 1, 0, 0, 0, 5361, 5365, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5363, 5364, 7, 41, 0, 0, 5364, 5366, 5, 219, 0, 0, 5365, 5363, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 5368, 1, 0, 0, 0, 5367, 5369, 3, 124, 62, 0, 5368, 5367, 1, 0, 0, 0, 5368, 5369, 1, 0, 0, 0, 5369, 563, 1, 0, 0, 0, 5370, 5372, 5, 81, 0, 0, 5371, 5370, 1, 0, 0, 0, 5371, 5372, 1, 0, 0, 0, 5372, 5373, 1, 0, 0, 0, 5373, 5375, 3, 1404, 702, 0, 5374, 5376, 5, 9, 0, 0, 5375, 5374, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 565, 1, 0, 0, 0, 5377, 5378, 5, 159, 0, 0, 5378, 5379, 5, 80, 0, 0, 5379, 5380, 3, 544, 272, 0, 5380, 5381, 5, 116, 0, 0, 5381, 5382, 3, 568, 284, 0, 5382, 5543, 1, 0, 0, 0, 5383, 5384, 5, 159, 0, 0, 5384, 5385, 5, 80, 0, 0, 5385, 5386, 5, 44, 0, 0, 5386, 5387, 3, 552, 276, 0, 5387, 5388, 5, 116, 0, 0, 5388, 5389, 3, 568, 284, 0, 5389, 5543, 1, 0, 0, 0, 5390, 5391, 5, 159, 0, 0, 5391, 5392, 5, 80, 0, 0, 5392, 5393, 3, 546, 273, 0, 5393, 5394, 5, 116, 0, 0, 5394, 5395, 3, 568, 284, 0, 5395, 5543, 1, 0, 0, 0, 5396, 5397, 5, 159, 0, 0, 5397, 5398, 5, 80, 0, 0, 5398, 5399, 5, 360, 0, 0, 5399, 5400, 3, 1166, 583, 0, 5400, 5401, 5, 116, 0, 0, 5401, 5402, 3, 568, 284, 0, 5402, 5543, 1, 0, 0, 0, 5403, 5404, 5, 159, 0, 0, 5404, 5405, 5, 80, 0, 0, 5405, 5406, 5, 189, 0, 0, 5406, 5407, 3, 1166, 583, 0, 5407, 5408, 5, 116, 0, 0, 5408, 5409, 3, 568, 284, 0, 5409, 5543, 1, 0, 0, 0, 5410, 5411, 5, 159, 0, 0, 5411, 5412, 5, 80, 0, 0, 5412, 5413, 5, 136, 0, 0, 5413, 5414, 3, 696, 348, 0, 5414, 5415, 5, 116, 0, 0, 5415, 5416, 3, 568, 284, 0, 5416, 5543, 1, 0, 0, 0, 5417, 5418, 5, 159, 0, 0, 5418, 5419, 5, 80, 0, 0, 5419, 5420, 5, 211, 0, 0, 5420, 5421, 3, 672, 336, 0, 5421, 5422, 5, 116, 0, 0, 5422, 5423, 3, 568, 284, 0, 5423, 5543, 1, 0, 0, 0, 5424, 5425, 5, 159, 0, 0, 5425, 5426, 5, 80, 0, 0, 5426, 5427, 5, 278, 0, 0, 5427, 5428, 3, 734, 367, 0, 5428, 5429, 5, 116, 0, 0, 5429, 5430, 3, 568, 284, 0, 5430, 5543, 1, 0, 0, 0, 5431, 5432, 5, 159, 0, 0, 5432, 5433, 5, 80, 0, 0, 5433, 5434, 5, 45, 0, 0, 5434, 5435, 3, 1434, 717, 0, 5435, 5436, 5, 80, 0, 0, 5436, 5437, 3, 1404, 702, 0, 5437, 5438, 5, 116, 0, 0, 5438, 5439, 3, 568, 284, 0, 5439, 5543, 1, 0, 0, 0, 5440, 5441, 5, 159, 0, 0, 5441, 5442, 5, 80, 0, 0, 5442, 5443, 5, 45, 0, 0, 5443, 5444, 3, 1434, 717, 0, 5444, 5446, 5, 80, 0, 0, 5445, 5447, 5, 189, 0, 0, 5446, 5445, 1, 0, 0, 0, 5446, 5447, 1, 0, 0, 0, 5447, 5448, 1, 0, 0, 0, 5448, 5449, 3, 556, 278, 0, 5449, 5450, 5, 116, 0, 0, 5450, 5451, 3, 568, 284, 0, 5451, 5543, 1, 0, 0, 0, 5452, 5453, 5, 159, 0, 0, 5453, 5454, 5, 80, 0, 0, 5454, 5455, 5, 445, 0, 0, 5455, 5456, 3, 1434, 717, 0, 5456, 5457, 5, 80, 0, 0, 5457, 5458, 3, 556, 278, 0, 5458, 5459, 5, 116, 0, 0, 5459, 5460, 3, 568, 284, 0, 5460, 5543, 1, 0, 0, 0, 5461, 5462, 5, 159, 0, 0, 5462, 5463, 5, 80, 0, 0, 5463, 5464, 5, 321, 0, 0, 5464, 5465, 3, 1434, 717, 0, 5465, 5466, 5, 80, 0, 0, 5466, 5467, 3, 556, 278, 0, 5467, 5468, 5, 116, 0, 0, 5468, 5469, 3, 568, 284, 0, 5469, 5543, 1, 0, 0, 0, 5470, 5471, 5, 159, 0, 0, 5471, 5472, 5, 80, 0, 0, 5472, 5473, 5, 357, 0, 0, 5473, 5474, 3, 1434, 717, 0, 5474, 5475, 5, 80, 0, 0, 5475, 5476, 3, 556, 278, 0, 5476, 5477, 5, 116, 0, 0, 5477, 5478, 3, 568, 284, 0, 5478, 5543, 1, 0, 0, 0, 5479, 5480, 5, 159, 0, 0, 5480, 5481, 5, 80, 0, 0, 5481, 5482, 5, 296, 0, 0, 5482, 5483, 3, 668, 334, 0, 5483, 5484, 5, 116, 0, 0, 5484, 5485, 3, 568, 284, 0, 5485, 5543, 1, 0, 0, 0, 5486, 5487, 5, 159, 0, 0, 5487, 5488, 5, 80, 0, 0, 5488, 5489, 5, 442, 0, 0, 5489, 5490, 3, 664, 332, 0, 5490, 5491, 5, 116, 0, 0, 5491, 5492, 3, 568, 284, 0, 5492, 5543, 1, 0, 0, 0, 5493, 5494, 5, 159, 0, 0, 5494, 5495, 5, 80, 0, 0, 5495, 5496, 5, 443, 0, 0, 5496, 5497, 5, 62, 0, 0, 5497, 5498, 3, 1166, 583, 0, 5498, 5499, 5, 247, 0, 0, 5499, 5500, 3, 1434, 717, 0, 5500, 5501, 5, 116, 0, 0, 5501, 5502, 3, 568, 284, 0, 5502, 5543, 1, 0, 0, 0, 5503, 5504, 5, 159, 0, 0, 5504, 5505, 5, 80, 0, 0, 5505, 5506, 5, 278, 0, 0, 5506, 5507, 5, 156, 0, 0, 5507, 5508, 3, 556, 278, 0, 5508, 5509, 5, 100, 0, 0, 5509, 5510, 3, 1434, 717, 0, 5510, 5511, 5, 116, 0, 0, 5511, 5512, 3, 568, 284, 0, 5512, 5543, 1, 0, 0, 0, 5513, 5514, 5, 159, 0, 0, 5514, 5515, 5, 80, 0, 0, 5515, 5516, 5, 278, 0, 0, 5516, 5517, 5, 206, 0, 0, 5517, 5518, 3, 556, 278, 0, 5518, 5519, 5, 100, 0, 0, 5519, 5520, 3, 1434, 717, 0, 5520, 5521, 5, 116, 0, 0, 5521, 5522, 3, 568, 284, 0, 5522, 5543, 1, 0, 0, 0, 5523, 5524, 5, 159, 0, 0, 5524, 5525, 5, 80, 0, 0, 5525, 5526, 5, 248, 0, 0, 5526, 5527, 5, 274, 0, 0, 5527, 5528, 3, 320, 160, 0, 5528, 5529, 5, 116, 0, 0, 5529, 5530, 3, 568, 284, 0, 5530, 5543, 1, 0, 0, 0, 5531, 5532, 5, 159, 0, 0, 5532, 5533, 5, 80, 0, 0, 5533, 5534, 5, 41, 0, 0, 5534, 5535, 5, 2, 0, 0, 5535, 5536, 3, 1166, 583, 0, 5536, 5537, 5, 36, 0, 0, 5537, 5538, 3, 1166, 583, 0, 5538, 5539, 5, 3, 0, 0, 5539, 5540, 5, 116, 0, 0, 5540, 5541, 3, 568, 284, 0, 5541, 5543, 1, 0, 0, 0, 5542, 5377, 1, 0, 0, 0, 5542, 5383, 1, 0, 0, 0, 5542, 5390, 1, 0, 0, 0, 5542, 5396, 1, 0, 0, 0, 5542, 5403, 1, 0, 0, 0, 5542, 5410, 1, 0, 0, 0, 5542, 5417, 1, 0, 0, 0, 5542, 5424, 1, 0, 0, 0, 5542, 5431, 1, 0, 0, 0, 5542, 5440, 1, 0, 0, 0, 5542, 5452, 1, 0, 0, 0, 5542, 5461, 1, 0, 0, 0, 5542, 5470, 1, 0, 0, 0, 5542, 5479, 1, 0, 0, 0, 5542, 5486, 1, 0, 0, 0, 5542, 5493, 1, 0, 0, 0, 5542, 5503, 1, 0, 0, 0, 5542, 5513, 1, 0, 0, 0, 5542, 5523, 1, 0, 0, 0, 5542, 5531, 1, 0, 0, 0, 5543, 567, 1, 0, 0, 0, 5544, 5547, 3, 1456, 728, 0, 5545, 5547, 5, 78, 0, 0, 5546, 5544, 1, 0, 0, 0, 5546, 5545, 1, 0, 0, 0, 5547, 569, 1, 0, 0, 0, 5548, 5549, 5, 327, 0, 0, 5549, 5551, 5, 246, 0, 0, 5550, 5552, 3, 572, 286, 0, 5551, 5550, 1, 0, 0, 0, 5551, 5552, 1, 0, 0, 0, 5552, 5553, 1, 0, 0, 0, 5553, 5554, 5, 80, 0, 0, 5554, 5555, 5, 44, 0, 0, 5555, 5556, 3, 1430, 715, 0, 5556, 5557, 5, 116, 0, 0, 5557, 5558, 3, 574, 287, 0, 5558, 5658, 1, 0, 0, 0, 5559, 5560, 5, 327, 0, 0, 5560, 5562, 5, 246, 0, 0, 5561, 5563, 3, 572, 286, 0, 5562, 5561, 1, 0, 0, 0, 5562, 5563, 1, 0, 0, 0, 5563, 5564, 1, 0, 0, 0, 5564, 5565, 5, 80, 0, 0, 5565, 5566, 5, 360, 0, 0, 5566, 5567, 3, 1166, 583, 0, 5567, 5568, 5, 116, 0, 0, 5568, 5569, 3, 574, 287, 0, 5569, 5658, 1, 0, 0, 0, 5570, 5571, 5, 327, 0, 0, 5571, 5573, 5, 246, 0, 0, 5572, 5574, 3, 572, 286, 0, 5573, 5572, 1, 0, 0, 0, 5573, 5574, 1, 0, 0, 0, 5574, 5575, 1, 0, 0, 0, 5575, 5576, 5, 80, 0, 0, 5576, 5577, 5, 189, 0, 0, 5577, 5578, 3, 1166, 583, 0, 5578, 5579, 5, 116, 0, 0, 5579, 5580, 3, 574, 287, 0, 5580, 5658, 1, 0, 0, 0, 5581, 5582, 5, 327, 0, 0, 5582, 5584, 5, 246, 0, 0, 5583, 5585, 3, 572, 286, 0, 5584, 5583, 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 5586, 1, 0, 0, 0, 5586, 5587, 5, 80, 0, 0, 5587, 5588, 5, 136, 0, 0, 5588, 5589, 3, 696, 348, 0, 5589, 5590, 5, 116, 0, 0, 5590, 5591, 3, 574, 287, 0, 5591, 5658, 1, 0, 0, 0, 5592, 5593, 5, 327, 0, 0, 5593, 5595, 5, 246, 0, 0, 5594, 5596, 3, 572, 286, 0, 5595, 5594, 1, 0, 0, 0, 5595, 5596, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5598, 5, 80, 0, 0, 5598, 5599, 5, 211, 0, 0, 5599, 5600, 3, 672, 336, 0, 5600, 5601, 5, 116, 0, 0, 5601, 5602, 3, 574, 287, 0, 5602, 5658, 1, 0, 0, 0, 5603, 5604, 5, 327, 0, 0, 5604, 5606, 5, 246, 0, 0, 5605, 5607, 3, 572, 286, 0, 5606, 5605, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5609, 5, 80, 0, 0, 5609, 5610, 5, 248, 0, 0, 5610, 5611, 5, 274, 0, 0, 5611, 5612, 3, 320, 160, 0, 5612, 5613, 5, 116, 0, 0, 5613, 5614, 3, 574, 287, 0, 5614, 5658, 1, 0, 0, 0, 5615, 5616, 5, 327, 0, 0, 5616, 5618, 5, 246, 0, 0, 5617, 5619, 3, 572, 286, 0, 5618, 5617, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, 5620, 1, 0, 0, 0, 5620, 5621, 5, 80, 0, 0, 5621, 5622, 5, 296, 0, 0, 5622, 5623, 3, 668, 334, 0, 5623, 5624, 5, 116, 0, 0, 5624, 5625, 3, 574, 287, 0, 5625, 5658, 1, 0, 0, 0, 5626, 5627, 5, 327, 0, 0, 5627, 5629, 5, 246, 0, 0, 5628, 5630, 3, 572, 286, 0, 5629, 5628, 1, 0, 0, 0, 5629, 5630, 1, 0, 0, 0, 5630, 5631, 1, 0, 0, 0, 5631, 5632, 5, 80, 0, 0, 5632, 5633, 5, 442, 0, 0, 5633, 5634, 3, 664, 332, 0, 5634, 5635, 5, 116, 0, 0, 5635, 5636, 3, 574, 287, 0, 5636, 5658, 1, 0, 0, 0, 5637, 5638, 5, 327, 0, 0, 5638, 5640, 5, 246, 0, 0, 5639, 5641, 3, 572, 286, 0, 5640, 5639, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5642, 1, 0, 0, 0, 5642, 5643, 5, 80, 0, 0, 5643, 5644, 3, 544, 272, 0, 5644, 5645, 5, 116, 0, 0, 5645, 5646, 3, 574, 287, 0, 5646, 5658, 1, 0, 0, 0, 5647, 5648, 5, 327, 0, 0, 5648, 5650, 5, 246, 0, 0, 5649, 5651, 3, 572, 286, 0, 5650, 5649, 1, 0, 0, 0, 5650, 5651, 1, 0, 0, 0, 5651, 5652, 1, 0, 0, 0, 5652, 5653, 5, 80, 0, 0, 5653, 5654, 3, 546, 273, 0, 5654, 5655, 5, 116, 0, 0, 5655, 5656, 3, 574, 287, 0, 5656, 5658, 1, 0, 0, 0, 5657, 5548, 1, 0, 0, 0, 5657, 5559, 1, 0, 0, 0, 5657, 5570, 1, 0, 0, 0, 5657, 5581, 1, 0, 0, 0, 5657, 5592, 1, 0, 0, 0, 5657, 5603, 1, 0, 0, 0, 5657, 5615, 1, 0, 0, 0, 5657, 5626, 1, 0, 0, 0, 5657, 5637, 1, 0, 0, 0, 5657, 5647, 1, 0, 0, 0, 5658, 571, 1, 0, 0, 0, 5659, 5660, 5, 62, 0, 0, 5660, 5661, 3, 80, 40, 0, 5661, 573, 1, 0, 0, 0, 5662, 5665, 3, 1456, 728, 0, 5663, 5665, 5, 78, 0, 0, 5664, 5662, 1, 0, 0, 0, 5664, 5663, 1, 0, 0, 0, 5665, 575, 1, 0, 0, 0, 5666, 5667, 5, 61, 0, 0, 5667, 5671, 3, 578, 289, 0, 5668, 5669, 5, 265, 0, 0, 5669, 5671, 3, 578, 289, 0, 5670, 5666, 1, 0, 0, 0, 5670, 5668, 1, 0, 0, 0, 5671, 577, 1, 0, 0, 0, 5672, 5758, 3, 992, 496, 0, 5673, 5674, 3, 580, 290, 0, 5674, 5675, 3, 992, 496, 0, 5675, 5758, 1, 0, 0, 0, 5676, 5678, 5, 268, 0, 0, 5677, 5679, 3, 582, 291, 0, 5678, 5677, 1, 0, 0, 0, 5678, 5679, 1, 0, 0, 0, 5679, 5680, 1, 0, 0, 0, 5680, 5758, 3, 992, 496, 0, 5681, 5683, 5, 293, 0, 0, 5682, 5684, 3, 582, 291, 0, 5683, 5682, 1, 0, 0, 0, 5683, 5684, 1, 0, 0, 0, 5684, 5685, 1, 0, 0, 0, 5685, 5758, 3, 992, 496, 0, 5686, 5688, 5, 207, 0, 0, 5687, 5689, 3, 582, 291, 0, 5688, 5687, 1, 0, 0, 0, 5688, 5689, 1, 0, 0, 0, 5689, 5690, 1, 0, 0, 0, 5690, 5758, 3, 992, 496, 0, 5691, 5693, 5, 249, 0, 0, 5692, 5694, 3, 582, 291, 0, 5693, 5692, 1, 0, 0, 0, 5693, 5694, 1, 0, 0, 0, 5694, 5695, 1, 0, 0, 0, 5695, 5758, 3, 992, 496, 0, 5696, 5697, 5, 130, 0, 0, 5697, 5699, 3, 1462, 731, 0, 5698, 5700, 3, 582, 291, 0, 5699, 5698, 1, 0, 0, 0, 5699, 5700, 1, 0, 0, 0, 5700, 5701, 1, 0, 0, 0, 5701, 5702, 3, 992, 496, 0, 5702, 5758, 1, 0, 0, 0, 5703, 5704, 5, 307, 0, 0, 5704, 5706, 3, 1462, 731, 0, 5705, 5707, 3, 582, 291, 0, 5706, 5705, 1, 0, 0, 0, 5706, 5707, 1, 0, 0, 0, 5707, 5708, 1, 0, 0, 0, 5708, 5709, 3, 992, 496, 0, 5709, 5758, 1, 0, 0, 0, 5710, 5712, 3, 1462, 731, 0, 5711, 5713, 3, 582, 291, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 5714, 1, 0, 0, 0, 5714, 5715, 3, 992, 496, 0, 5715, 5758, 1, 0, 0, 0, 5716, 5718, 5, 30, 0, 0, 5717, 5719, 3, 582, 291, 0, 5718, 5717, 1, 0, 0, 0, 5718, 5719, 1, 0, 0, 0, 5719, 5720, 1, 0, 0, 0, 5720, 5758, 3, 992, 496, 0, 5721, 5723, 5, 210, 0, 0, 5722, 5724, 3, 582, 291, 0, 5723, 5722, 1, 0, 0, 0, 5723, 5724, 1, 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 5758, 3, 992, 496, 0, 5726, 5727, 5, 210, 0, 0, 5727, 5729, 3, 1462, 731, 0, 5728, 5730, 3, 582, 291, 0, 5729, 5728, 1, 0, 0, 0, 5729, 5730, 1, 0, 0, 0, 5730, 5731, 1, 0, 0, 0, 5731, 5732, 3, 992, 496, 0, 5732, 5758, 1, 0, 0, 0, 5733, 5734, 5, 210, 0, 0, 5734, 5736, 5, 30, 0, 0, 5735, 5737, 3, 582, 291, 0, 5736, 5735, 1, 0, 0, 0, 5736, 5737, 1, 0, 0, 0, 5737, 5738, 1, 0, 0, 0, 5738, 5758, 3, 992, 496, 0, 5739, 5741, 5, 144, 0, 0, 5740, 5742, 3, 582, 291, 0, 5741, 5740, 1, 0, 0, 0, 5741, 5742, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 5758, 3, 992, 496, 0, 5744, 5745, 5, 144, 0, 0, 5745, 5747, 3, 1462, 731, 0, 5746, 5748, 3, 582, 291, 0, 5747, 5746, 1, 0, 0, 0, 5747, 5748, 1, 0, 0, 0, 5748, 5749, 1, 0, 0, 0, 5749, 5750, 3, 992, 496, 0, 5750, 5758, 1, 0, 0, 0, 5751, 5752, 5, 144, 0, 0, 5752, 5754, 5, 30, 0, 0, 5753, 5755, 3, 582, 291, 0, 5754, 5753, 1, 0, 0, 0, 5754, 5755, 1, 0, 0, 0, 5755, 5756, 1, 0, 0, 0, 5756, 5758, 3, 992, 496, 0, 5757, 5672, 1, 0, 0, 0, 5757, 5673, 1, 0, 0, 0, 5757, 5676, 1, 0, 0, 0, 5757, 5681, 1, 0, 0, 0, 5757, 5686, 1, 0, 0, 0, 5757, 5691, 1, 0, 0, 0, 5757, 5696, 1, 0, 0, 0, 5757, 5703, 1, 0, 0, 0, 5757, 5710, 1, 0, 0, 0, 5757, 5716, 1, 0, 0, 0, 5757, 5721, 1, 0, 0, 0, 5757, 5726, 1, 0, 0, 0, 5757, 5733, 1, 0, 0, 0, 5757, 5739, 1, 0, 0, 0, 5757, 5744, 1, 0, 0, 0, 5757, 5751, 1, 0, 0, 0, 5758, 579, 1, 0, 0, 0, 5759, 5760, 7, 42, 0, 0, 5760, 581, 1, 0, 0, 0, 5761, 5762, 3, 580, 290, 0, 5762, 583, 1, 0, 0, 0, 5763, 5764, 5, 65, 0, 0, 5764, 5765, 3, 588, 294, 0, 5765, 5766, 5, 80, 0, 0, 5766, 5767, 3, 598, 299, 0, 5767, 5768, 5, 94, 0, 0, 5768, 5770, 3, 600, 300, 0, 5769, 5771, 3, 604, 302, 0, 5770, 5769, 1, 0, 0, 0, 5770, 5771, 1, 0, 0, 0, 5771, 585, 1, 0, 0, 0, 5772, 5773, 5, 317, 0, 0, 5773, 5774, 3, 588, 294, 0, 5774, 5775, 5, 80, 0, 0, 5775, 5776, 3, 598, 299, 0, 5776, 5777, 5, 64, 0, 0, 5777, 5779, 3, 600, 300, 0, 5778, 5780, 3, 124, 62, 0, 5779, 5778, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5794, 1, 0, 0, 0, 5781, 5782, 5, 317, 0, 0, 5782, 5783, 5, 65, 0, 0, 5783, 5784, 5, 279, 0, 0, 5784, 5785, 5, 62, 0, 0, 5785, 5786, 3, 588, 294, 0, 5786, 5787, 5, 80, 0, 0, 5787, 5788, 3, 598, 299, 0, 5788, 5789, 5, 64, 0, 0, 5789, 5791, 3, 600, 300, 0, 5790, 5792, 3, 124, 62, 0, 5791, 5790, 1, 0, 0, 0, 5791, 5792, 1, 0, 0, 0, 5792, 5794, 1, 0, 0, 0, 5793, 5772, 1, 0, 0, 0, 5793, 5781, 1, 0, 0, 0, 5794, 587, 1, 0, 0, 0, 5795, 5812, 3, 594, 297, 0, 5796, 5812, 5, 30, 0, 0, 5797, 5798, 5, 30, 0, 0, 5798, 5812, 5, 294, 0, 0, 5799, 5800, 5, 30, 0, 0, 5800, 5801, 5, 2, 0, 0, 5801, 5802, 3, 244, 122, 0, 5802, 5803, 5, 3, 0, 0, 5803, 5812, 1, 0, 0, 0, 5804, 5805, 5, 30, 0, 0, 5805, 5806, 5, 294, 0, 0, 5806, 5807, 5, 2, 0, 0, 5807, 5808, 3, 244, 122, 0, 5808, 5809, 5, 3, 0, 0, 5809, 5812, 1, 0, 0, 0, 5810, 5812, 3, 590, 295, 0, 5811, 5795, 1, 0, 0, 0, 5811, 5796, 1, 0, 0, 0, 5811, 5797, 1, 0, 0, 0, 5811, 5799, 1, 0, 0, 0, 5811, 5804, 1, 0, 0, 0, 5811, 5810, 1, 0, 0, 0, 5812, 589, 1, 0, 0, 0, 5813, 5818, 3, 592, 296, 0, 5814, 5815, 5, 6, 0, 0, 5815, 5817, 3, 592, 296, 0, 5816, 5814, 1, 0, 0, 0, 5817, 5820, 1, 0, 0, 0, 5818, 5816, 1, 0, 0, 0, 5818, 5819, 1, 0, 0, 0, 5819, 591, 1, 0, 0, 0, 5820, 5818, 1, 0, 0, 0, 5821, 5822, 7, 43, 0, 0, 5822, 593, 1, 0, 0, 0, 5823, 5828, 3, 596, 298, 0, 5824, 5825, 5, 6, 0, 0, 5825, 5827, 3, 596, 298, 0, 5826, 5824, 1, 0, 0, 0, 5827, 5830, 1, 0, 0, 0, 5828, 5826, 1, 0, 0, 0, 5828, 5829, 1, 0, 0, 0, 5829, 595, 1, 0, 0, 0, 5830, 5828, 1, 0, 0, 0, 5831, 5833, 5, 88, 0, 0, 5832, 5834, 3, 242, 121, 0, 5833, 5832, 1, 0, 0, 0, 5833, 5834, 1, 0, 0, 0, 5834, 5848, 1, 0, 0, 0, 5835, 5837, 5, 86, 0, 0, 5836, 5838, 3, 242, 121, 0, 5837, 5836, 1, 0, 0, 0, 5837, 5838, 1, 0, 0, 0, 5838, 5848, 1, 0, 0, 0, 5839, 5841, 5, 46, 0, 0, 5840, 5842, 3, 242, 121, 0, 5841, 5840, 1, 0, 0, 0, 5841, 5842, 1, 0, 0, 0, 5842, 5848, 1, 0, 0, 0, 5843, 5845, 3, 1472, 736, 0, 5844, 5846, 3, 242, 121, 0, 5845, 5844, 1, 0, 0, 0, 5845, 5846, 1, 0, 0, 0, 5846, 5848, 1, 0, 0, 0, 5847, 5831, 1, 0, 0, 0, 5847, 5835, 1, 0, 0, 0, 5847, 5839, 1, 0, 0, 0, 5847, 5843, 1, 0, 0, 0, 5848, 597, 1, 0, 0, 0, 5849, 5908, 3, 1388, 694, 0, 5850, 5851, 5, 92, 0, 0, 5851, 5908, 3, 1390, 695, 0, 5852, 5853, 5, 328, 0, 0, 5853, 5908, 3, 1388, 694, 0, 5854, 5855, 5, 63, 0, 0, 5855, 5856, 5, 174, 0, 0, 5856, 5857, 5, 381, 0, 0, 5857, 5908, 3, 1414, 707, 0, 5858, 5859, 5, 63, 0, 0, 5859, 5860, 5, 331, 0, 0, 5860, 5908, 3, 1414, 707, 0, 5861, 5862, 5, 211, 0, 0, 5862, 5908, 3, 670, 335, 0, 5863, 5864, 5, 296, 0, 0, 5864, 5908, 3, 666, 333, 0, 5865, 5866, 5, 442, 0, 0, 5866, 5908, 3, 662, 331, 0, 5867, 5868, 5, 175, 0, 0, 5868, 5908, 3, 1394, 697, 0, 5869, 5870, 5, 189, 0, 0, 5870, 5908, 3, 550, 275, 0, 5871, 5872, 5, 247, 0, 0, 5872, 5908, 3, 1414, 707, 0, 5873, 5874, 5, 248, 0, 0, 5874, 5875, 5, 274, 0, 0, 5875, 5908, 3, 322, 161, 0, 5876, 5877, 5, 323, 0, 0, 5877, 5908, 3, 1392, 696, 0, 5878, 5879, 5, 351, 0, 0, 5879, 5908, 3, 1412, 706, 0, 5880, 5881, 5, 360, 0, 0, 5881, 5908, 3, 550, 275, 0, 5882, 5883, 5, 30, 0, 0, 5883, 5884, 5, 350, 0, 0, 5884, 5885, 5, 68, 0, 0, 5885, 5886, 5, 323, 0, 0, 5886, 5908, 3, 1392, 696, 0, 5887, 5888, 5, 30, 0, 0, 5888, 5889, 5, 329, 0, 0, 5889, 5890, 5, 68, 0, 0, 5890, 5891, 5, 323, 0, 0, 5891, 5908, 3, 1392, 696, 0, 5892, 5893, 5, 30, 0, 0, 5893, 5894, 5, 212, 0, 0, 5894, 5895, 5, 68, 0, 0, 5895, 5896, 5, 323, 0, 0, 5896, 5908, 3, 1392, 696, 0, 5897, 5898, 5, 30, 0, 0, 5898, 5899, 5, 457, 0, 0, 5899, 5900, 5, 68, 0, 0, 5900, 5901, 5, 323, 0, 0, 5901, 5908, 3, 1392, 696, 0, 5902, 5903, 5, 30, 0, 0, 5903, 5904, 5, 455, 0, 0, 5904, 5905, 5, 68, 0, 0, 5905, 5906, 5, 323, 0, 0, 5906, 5908, 3, 1392, 696, 0, 5907, 5849, 1, 0, 0, 0, 5907, 5850, 1, 0, 0, 0, 5907, 5852, 1, 0, 0, 0, 5907, 5854, 1, 0, 0, 0, 5907, 5858, 1, 0, 0, 0, 5907, 5861, 1, 0, 0, 0, 5907, 5863, 1, 0, 0, 0, 5907, 5865, 1, 0, 0, 0, 5907, 5867, 1, 0, 0, 0, 5907, 5869, 1, 0, 0, 0, 5907, 5871, 1, 0, 0, 0, 5907, 5873, 1, 0, 0, 0, 5907, 5876, 1, 0, 0, 0, 5907, 5878, 1, 0, 0, 0, 5907, 5880, 1, 0, 0, 0, 5907, 5882, 1, 0, 0, 0, 5907, 5887, 1, 0, 0, 0, 5907, 5892, 1, 0, 0, 0, 5907, 5897, 1, 0, 0, 0, 5907, 5902, 1, 0, 0, 0, 5908, 599, 1, 0, 0, 0, 5909, 5914, 3, 602, 301, 0, 5910, 5911, 5, 6, 0, 0, 5911, 5913, 3, 602, 301, 0, 5912, 5910, 1, 0, 0, 0, 5913, 5916, 1, 0, 0, 0, 5914, 5912, 1, 0, 0, 0, 5914, 5915, 1, 0, 0, 0, 5915, 601, 1, 0, 0, 0, 5916, 5914, 1, 0, 0, 0, 5917, 5921, 3, 1468, 734, 0, 5918, 5919, 5, 66, 0, 0, 5919, 5921, 3, 1468, 734, 0, 5920, 5917, 1, 0, 0, 0, 5920, 5918, 1, 0, 0, 0, 5921, 603, 1, 0, 0, 0, 5922, 5923, 5, 105, 0, 0, 5923, 5924, 5, 65, 0, 0, 5924, 5925, 5, 279, 0, 0, 5925, 605, 1, 0, 0, 0, 5926, 5927, 5, 65, 0, 0, 5927, 5928, 3, 594, 297, 0, 5928, 5929, 5, 94, 0, 0, 5929, 5931, 3, 1470, 735, 0, 5930, 5932, 3, 610, 305, 0, 5931, 5930, 1, 0, 0, 0, 5931, 5932, 1, 0, 0, 0, 5932, 5934, 1, 0, 0, 0, 5933, 5935, 3, 612, 306, 0, 5934, 5933, 1, 0, 0, 0, 5934, 5935, 1, 0, 0, 0, 5935, 607, 1, 0, 0, 0, 5936, 5937, 5, 317, 0, 0, 5937, 5938, 3, 594, 297, 0, 5938, 5939, 5, 64, 0, 0, 5939, 5941, 3, 1470, 735, 0, 5940, 5942, 3, 612, 306, 0, 5941, 5940, 1, 0, 0, 0, 5941, 5942, 1, 0, 0, 0, 5942, 5944, 1, 0, 0, 0, 5943, 5945, 3, 124, 62, 0, 5944, 5943, 1, 0, 0, 0, 5944, 5945, 1, 0, 0, 0, 5945, 5960, 1, 0, 0, 0, 5946, 5947, 5, 317, 0, 0, 5947, 5948, 5, 134, 0, 0, 5948, 5949, 5, 279, 0, 0, 5949, 5950, 5, 62, 0, 0, 5950, 5951, 3, 594, 297, 0, 5951, 5952, 5, 64, 0, 0, 5952, 5954, 3, 1470, 735, 0, 5953, 5955, 3, 612, 306, 0, 5954, 5953, 1, 0, 0, 0, 5954, 5955, 1, 0, 0, 0, 5955, 5957, 1, 0, 0, 0, 5956, 5958, 3, 124, 62, 0, 5957, 5956, 1, 0, 0, 0, 5957, 5958, 1, 0, 0, 0, 5958, 5960, 1, 0, 0, 0, 5959, 5936, 1, 0, 0, 0, 5959, 5946, 1, 0, 0, 0, 5960, 609, 1, 0, 0, 0, 5961, 5962, 5, 105, 0, 0, 5962, 5963, 5, 134, 0, 0, 5963, 5964, 5, 279, 0, 0, 5964, 611, 1, 0, 0, 0, 5965, 5966, 5, 214, 0, 0, 5966, 5967, 5, 147, 0, 0, 5967, 5968, 3, 1468, 734, 0, 5968, 613, 1, 0, 0, 0, 5969, 5970, 5, 138, 0, 0, 5970, 5971, 5, 53, 0, 0, 5971, 5972, 5, 294, 0, 0, 5972, 5973, 3, 616, 308, 0, 5973, 5974, 3, 620, 310, 0, 5974, 615, 1, 0, 0, 0, 5975, 5977, 3, 618, 309, 0, 5976, 5975, 1, 0, 0, 0, 5977, 5980, 1, 0, 0, 0, 5978, 5976, 1, 0, 0, 0, 5978, 5979, 1, 0, 0, 0, 5979, 617, 1, 0, 0, 0, 5980, 5978, 1, 0, 0, 0, 5981, 5982, 5, 68, 0, 0, 5982, 5983, 5, 323, 0, 0, 5983, 5991, 3, 1392, 696, 0, 5984, 5985, 5, 62, 0, 0, 5985, 5986, 5, 318, 0, 0, 5986, 5991, 3, 1470, 735, 0, 5987, 5988, 5, 62, 0, 0, 5988, 5989, 5, 99, 0, 0, 5989, 5991, 3, 1470, 735, 0, 5990, 5981, 1, 0, 0, 0, 5990, 5984, 1, 0, 0, 0, 5990, 5987, 1, 0, 0, 0, 5991, 619, 1, 0, 0, 0, 5992, 5993, 5, 65, 0, 0, 5993, 5994, 3, 588, 294, 0, 5994, 5995, 5, 80, 0, 0, 5995, 5996, 3, 622, 311, 0, 5996, 5997, 5, 94, 0, 0, 5997, 5999, 3, 600, 300, 0, 5998, 6000, 3, 604, 302, 0, 5999, 5998, 1, 0, 0, 0, 5999, 6000, 1, 0, 0, 0, 6000, 6023, 1, 0, 0, 0, 6001, 6002, 5, 317, 0, 0, 6002, 6003, 3, 588, 294, 0, 6003, 6004, 5, 80, 0, 0, 6004, 6005, 3, 622, 311, 0, 6005, 6006, 5, 64, 0, 0, 6006, 6008, 3, 600, 300, 0, 6007, 6009, 3, 124, 62, 0, 6008, 6007, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 6023, 1, 0, 0, 0, 6010, 6011, 5, 317, 0, 0, 6011, 6012, 5, 65, 0, 0, 6012, 6013, 5, 279, 0, 0, 6013, 6014, 5, 62, 0, 0, 6014, 6015, 3, 588, 294, 0, 6015, 6016, 5, 80, 0, 0, 6016, 6017, 3, 622, 311, 0, 6017, 6018, 5, 64, 0, 0, 6018, 6020, 3, 600, 300, 0, 6019, 6021, 3, 124, 62, 0, 6020, 6019, 1, 0, 0, 0, 6020, 6021, 1, 0, 0, 0, 6021, 6023, 1, 0, 0, 0, 6022, 5992, 1, 0, 0, 0, 6022, 6001, 1, 0, 0, 0, 6022, 6010, 1, 0, 0, 0, 6023, 621, 1, 0, 0, 0, 6024, 6025, 7, 44, 0, 0, 6025, 623, 1, 0, 0, 0, 6026, 6028, 5, 46, 0, 0, 6027, 6029, 3, 626, 313, 0, 6028, 6027, 1, 0, 0, 0, 6028, 6029, 1, 0, 0, 0, 6029, 6030, 1, 0, 0, 0, 6030, 6032, 5, 226, 0, 0, 6031, 6033, 3, 628, 314, 0, 6032, 6031, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 6035, 1, 0, 0, 0, 6034, 6036, 3, 514, 257, 0, 6035, 6034, 1, 0, 0, 0, 6035, 6036, 1, 0, 0, 0, 6036, 6038, 1, 0, 0, 0, 6037, 6039, 3, 630, 315, 0, 6038, 6037, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, 6040, 1, 0, 0, 0, 6040, 6041, 5, 80, 0, 0, 6041, 6043, 3, 1116, 558, 0, 6042, 6044, 3, 632, 316, 0, 6043, 6042, 1, 0, 0, 0, 6043, 6044, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6046, 5, 2, 0, 0, 6046, 6047, 3, 634, 317, 0, 6047, 6049, 5, 3, 0, 0, 6048, 6050, 3, 640, 320, 0, 6049, 6048, 1, 0, 0, 0, 6049, 6050, 1, 0, 0, 0, 6050, 6052, 1, 0, 0, 0, 6051, 6053, 3, 222, 111, 0, 6052, 6051, 1, 0, 0, 0, 6052, 6053, 1, 0, 0, 0, 6053, 6055, 1, 0, 0, 0, 6054, 6056, 3, 134, 67, 0, 6055, 6054, 1, 0, 0, 0, 6055, 6056, 1, 0, 0, 0, 6056, 6058, 1, 0, 0, 0, 6057, 6059, 3, 280, 140, 0, 6058, 6057, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6061, 1, 0, 0, 0, 6060, 6062, 3, 1142, 571, 0, 6061, 6060, 1, 0, 0, 0, 6061, 6062, 1, 0, 0, 0, 6062, 625, 1, 0, 0, 0, 6063, 6064, 5, 98, 0, 0, 6064, 627, 1, 0, 0, 0, 6065, 6066, 5, 109, 0, 0, 6066, 629, 1, 0, 0, 0, 6067, 6068, 3, 1434, 717, 0, 6068, 631, 1, 0, 0, 0, 6069, 6070, 5, 100, 0, 0, 6070, 6071, 3, 1434, 717, 0, 6071, 633, 1, 0, 0, 0, 6072, 6077, 3, 638, 319, 0, 6073, 6074, 5, 6, 0, 0, 6074, 6076, 3, 638, 319, 0, 6075, 6073, 1, 0, 0, 0, 6076, 6079, 1, 0, 0, 0, 6077, 6075, 1, 0, 0, 0, 6077, 6078, 1, 0, 0, 0, 6078, 635, 1, 0, 0, 0, 6079, 6077, 1, 0, 0, 0, 6080, 6082, 3, 644, 322, 0, 6081, 6080, 1, 0, 0, 0, 6081, 6082, 1, 0, 0, 0, 6082, 6084, 1, 0, 0, 0, 6083, 6085, 3, 646, 323, 0, 6084, 6083, 1, 0, 0, 0, 6084, 6085, 1, 0, 0, 0, 6085, 6087, 1, 0, 0, 0, 6086, 6088, 3, 648, 324, 0, 6087, 6086, 1, 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 6090, 1, 0, 0, 0, 6089, 6091, 3, 650, 325, 0, 6090, 6089, 1, 0, 0, 0, 6090, 6091, 1, 0, 0, 0, 6091, 6104, 1, 0, 0, 0, 6092, 6094, 3, 644, 322, 0, 6093, 6092, 1, 0, 0, 0, 6093, 6094, 1, 0, 0, 0, 6094, 6095, 1, 0, 0, 0, 6095, 6096, 3, 556, 278, 0, 6096, 6098, 3, 132, 66, 0, 6097, 6099, 3, 648, 324, 0, 6098, 6097, 1, 0, 0, 0, 6098, 6099, 1, 0, 0, 0, 6099, 6101, 1, 0, 0, 0, 6100, 6102, 3, 650, 325, 0, 6101, 6100, 1, 0, 0, 0, 6101, 6102, 1, 0, 0, 0, 6102, 6104, 1, 0, 0, 0, 6103, 6081, 1, 0, 0, 0, 6103, 6093, 1, 0, 0, 0, 6104, 637, 1, 0, 0, 0, 6105, 6106, 3, 1430, 715, 0, 6106, 6107, 3, 636, 318, 0, 6107, 6117, 1, 0, 0, 0, 6108, 6109, 3, 1260, 630, 0, 6109, 6110, 3, 636, 318, 0, 6110, 6117, 1, 0, 0, 0, 6111, 6112, 5, 2, 0, 0, 6112, 6113, 3, 1210, 605, 0, 6113, 6114, 5, 3, 0, 0, 6114, 6115, 3, 636, 318, 0, 6115, 6117, 1, 0, 0, 0, 6116, 6105, 1, 0, 0, 0, 6116, 6108, 1, 0, 0, 0, 6116, 6111, 1, 0, 0, 0, 6117, 639, 1, 0, 0, 0, 6118, 6119, 5, 441, 0, 0, 6119, 6120, 5, 2, 0, 0, 6120, 6121, 3, 642, 321, 0, 6121, 6122, 5, 3, 0, 0, 6122, 641, 1, 0, 0, 0, 6123, 6128, 3, 638, 319, 0, 6124, 6125, 5, 6, 0, 0, 6125, 6127, 3, 638, 319, 0, 6126, 6124, 1, 0, 0, 0, 6127, 6130, 1, 0, 0, 0, 6128, 6126, 1, 0, 0, 0, 6128, 6129, 1, 0, 0, 0, 6129, 643, 1, 0, 0, 0, 6130, 6128, 1, 0, 0, 0, 6131, 6132, 5, 43, 0, 0, 6132, 6133, 3, 556, 278, 0, 6133, 645, 1, 0, 0, 0, 6134, 6135, 3, 556, 278, 0, 6135, 647, 1, 0, 0, 0, 6136, 6137, 7, 45, 0, 0, 6137, 649, 1, 0, 0, 0, 6138, 6139, 5, 273, 0, 0, 6139, 6143, 5, 207, 0, 0, 6140, 6141, 5, 273, 0, 0, 6141, 6143, 5, 249, 0, 0, 6142, 6138, 1, 0, 0, 0, 6142, 6140, 1, 0, 0, 0, 6143, 651, 1, 0, 0, 0, 6144, 6146, 5, 46, 0, 0, 6145, 6147, 3, 656, 328, 0, 6146, 6145, 1, 0, 0, 0, 6146, 6147, 1, 0, 0, 0, 6147, 6152, 1, 0, 0, 0, 6148, 6149, 5, 211, 0, 0, 6149, 6153, 3, 1440, 720, 0, 6150, 6151, 5, 296, 0, 0, 6151, 6153, 3, 1428, 714, 0, 6152, 6148, 1, 0, 0, 0, 6152, 6150, 1, 0, 0, 0, 6153, 6154, 1, 0, 0, 0, 6154, 6164, 3, 674, 337, 0, 6155, 6162, 5, 316, 0, 0, 6156, 6163, 3, 684, 342, 0, 6157, 6158, 5, 92, 0, 0, 6158, 6159, 5, 2, 0, 0, 6159, 6160, 3, 712, 356, 0, 6160, 6161, 5, 3, 0, 0, 6161, 6163, 1, 0, 0, 0, 6162, 6156, 1, 0, 0, 0, 6162, 6157, 1, 0, 0, 0, 6163, 6165, 1, 0, 0, 0, 6164, 6155, 1, 0, 0, 0, 6164, 6165, 1, 0, 0, 0, 6165, 6166, 1, 0, 0, 0, 6166, 6169, 3, 700, 350, 0, 6167, 6168, 5, 105, 0, 0, 6168, 6170, 3, 654, 327, 0, 6169, 6167, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 653, 1, 0, 0, 0, 6171, 6172, 5, 2, 0, 0, 6172, 6177, 3, 1472, 736, 0, 6173, 6174, 5, 6, 0, 0, 6174, 6176, 3, 1472, 736, 0, 6175, 6173, 1, 0, 0, 0, 6176, 6179, 1, 0, 0, 0, 6177, 6175, 1, 0, 0, 0, 6177, 6178, 1, 0, 0, 0, 6178, 6180, 1, 0, 0, 0, 6179, 6177, 1, 0, 0, 0, 6180, 6181, 5, 3, 0, 0, 6181, 655, 1, 0, 0, 0, 6182, 6183, 5, 82, 0, 0, 6183, 6184, 5, 311, 0, 0, 6184, 657, 1, 0, 0, 0, 6185, 6187, 5, 2, 0, 0, 6186, 6188, 3, 660, 330, 0, 6187, 6186, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6189, 1, 0, 0, 0, 6189, 6190, 5, 3, 0, 0, 6190, 659, 1, 0, 0, 0, 6191, 6196, 3, 678, 339, 0, 6192, 6193, 5, 6, 0, 0, 6193, 6195, 3, 678, 339, 0, 6194, 6192, 1, 0, 0, 0, 6195, 6198, 1, 0, 0, 0, 6196, 6194, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 661, 1, 0, 0, 0, 6198, 6196, 1, 0, 0, 0, 6199, 6204, 3, 664, 332, 0, 6200, 6201, 5, 6, 0, 0, 6201, 6203, 3, 664, 332, 0, 6202, 6200, 1, 0, 0, 0, 6203, 6206, 1, 0, 0, 0, 6204, 6202, 1, 0, 0, 0, 6204, 6205, 1, 0, 0, 0, 6205, 663, 1, 0, 0, 0, 6206, 6204, 1, 0, 0, 0, 6207, 6208, 3, 1424, 712, 0, 6208, 6209, 3, 658, 329, 0, 6209, 6216, 1, 0, 0, 0, 6210, 6216, 3, 1498, 749, 0, 6211, 6213, 3, 1472, 736, 0, 6212, 6214, 3, 1378, 689, 0, 6213, 6212, 1, 0, 0, 0, 6213, 6214, 1, 0, 0, 0, 6214, 6216, 1, 0, 0, 0, 6215, 6207, 1, 0, 0, 0, 6215, 6210, 1, 0, 0, 0, 6215, 6211, 1, 0, 0, 0, 6216, 665, 1, 0, 0, 0, 6217, 6222, 3, 668, 334, 0, 6218, 6219, 5, 6, 0, 0, 6219, 6221, 3, 668, 334, 0, 6220, 6218, 1, 0, 0, 0, 6221, 6224, 1, 0, 0, 0, 6222, 6220, 1, 0, 0, 0, 6222, 6223, 1, 0, 0, 0, 6223, 667, 1, 0, 0, 0, 6224, 6222, 1, 0, 0, 0, 6225, 6226, 3, 1426, 713, 0, 6226, 6227, 3, 658, 329, 0, 6227, 6234, 1, 0, 0, 0, 6228, 6234, 3, 1498, 749, 0, 6229, 6231, 3, 1472, 736, 0, 6230, 6232, 3, 1378, 689, 0, 6231, 6230, 1, 0, 0, 0, 6231, 6232, 1, 0, 0, 0, 6232, 6234, 1, 0, 0, 0, 6233, 6225, 1, 0, 0, 0, 6233, 6228, 1, 0, 0, 0, 6233, 6229, 1, 0, 0, 0, 6234, 669, 1, 0, 0, 0, 6235, 6240, 3, 672, 336, 0, 6236, 6237, 5, 6, 0, 0, 6237, 6239, 3, 672, 336, 0, 6238, 6236, 1, 0, 0, 0, 6239, 6242, 1, 0, 0, 0, 6240, 6238, 1, 0, 0, 0, 6240, 6241, 1, 0, 0, 0, 6241, 671, 1, 0, 0, 0, 6242, 6240, 1, 0, 0, 0, 6243, 6244, 3, 1442, 721, 0, 6244, 6245, 3, 658, 329, 0, 6245, 6252, 1, 0, 0, 0, 6246, 6252, 3, 1498, 749, 0, 6247, 6249, 3, 1472, 736, 0, 6248, 6250, 3, 1378, 689, 0, 6249, 6248, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 6252, 1, 0, 0, 0, 6251, 6243, 1, 0, 0, 0, 6251, 6246, 1, 0, 0, 0, 6251, 6247, 1, 0, 0, 0, 6252, 673, 1, 0, 0, 0, 6253, 6255, 5, 2, 0, 0, 6254, 6256, 3, 676, 338, 0, 6255, 6254, 1, 0, 0, 0, 6255, 6256, 1, 0, 0, 0, 6256, 6257, 1, 0, 0, 0, 6257, 6258, 5, 3, 0, 0, 6258, 675, 1, 0, 0, 0, 6259, 6264, 3, 688, 344, 0, 6260, 6261, 5, 6, 0, 0, 6261, 6263, 3, 688, 344, 0, 6262, 6260, 1, 0, 0, 0, 6263, 6266, 1, 0, 0, 0, 6264, 6262, 1, 0, 0, 0, 6264, 6265, 1, 0, 0, 0, 6265, 677, 1, 0, 0, 0, 6266, 6264, 1, 0, 0, 0, 6267, 6269, 3, 680, 340, 0, 6268, 6270, 3, 682, 341, 0, 6269, 6268, 1, 0, 0, 0, 6269, 6270, 1, 0, 0, 0, 6270, 6271, 1, 0, 0, 0, 6271, 6272, 3, 686, 343, 0, 6272, 6281, 1, 0, 0, 0, 6273, 6275, 3, 682, 341, 0, 6274, 6276, 3, 680, 340, 0, 6275, 6274, 1, 0, 0, 0, 6275, 6276, 1, 0, 0, 0, 6276, 6277, 1, 0, 0, 0, 6277, 6278, 3, 686, 343, 0, 6278, 6281, 1, 0, 0, 0, 6279, 6281, 3, 686, 343, 0, 6280, 6267, 1, 0, 0, 0, 6280, 6273, 1, 0, 0, 0, 6280, 6279, 1, 0, 0, 0, 6281, 679, 1, 0, 0, 0, 6282, 6284, 5, 68, 0, 0, 6283, 6285, 5, 453, 0, 0, 6284, 6283, 1, 0, 0, 0, 6284, 6285, 1, 0, 0, 0, 6285, 6290, 1, 0, 0, 0, 6286, 6290, 5, 453, 0, 0, 6287, 6290, 5, 400, 0, 0, 6288, 6290, 5, 101, 0, 0, 6289, 6282, 1, 0, 0, 0, 6289, 6286, 1, 0, 0, 0, 6289, 6287, 1, 0, 0, 0, 6289, 6288, 1, 0, 0, 0, 6290, 681, 1, 0, 0, 0, 6291, 6292, 3, 1480, 740, 0, 6292, 683, 1, 0, 0, 0, 6293, 6294, 3, 686, 343, 0, 6294, 685, 1, 0, 0, 0, 6295, 6308, 3, 1166, 583, 0, 6296, 6297, 3, 1480, 740, 0, 6297, 6298, 3, 558, 279, 0, 6298, 6299, 5, 27, 0, 0, 6299, 6300, 5, 360, 0, 0, 6300, 6308, 1, 0, 0, 0, 6301, 6302, 5, 415, 0, 0, 6302, 6303, 3, 1480, 740, 0, 6303, 6304, 3, 558, 279, 0, 6304, 6305, 5, 27, 0, 0, 6305, 6306, 5, 360, 0, 0, 6306, 6308, 1, 0, 0, 0, 6307, 6295, 1, 0, 0, 0, 6307, 6296, 1, 0, 0, 0, 6307, 6301, 1, 0, 0, 0, 6308, 687, 1, 0, 0, 0, 6309, 6312, 3, 678, 339, 0, 6310, 6311, 7, 46, 0, 0, 6311, 6313, 3, 1210, 605, 0, 6312, 6310, 1, 0, 0, 0, 6312, 6313, 1, 0, 0, 0, 6313, 689, 1, 0, 0, 0, 6314, 6315, 3, 678, 339, 0, 6315, 691, 1, 0, 0, 0, 6316, 6327, 5, 2, 0, 0, 6317, 6328, 5, 9, 0, 0, 6318, 6328, 3, 694, 347, 0, 6319, 6320, 5, 83, 0, 0, 6320, 6321, 5, 147, 0, 0, 6321, 6328, 3, 694, 347, 0, 6322, 6323, 3, 694, 347, 0, 6323, 6324, 5, 83, 0, 0, 6324, 6325, 5, 147, 0, 0, 6325, 6326, 3, 694, 347, 0, 6326, 6328, 1, 0, 0, 0, 6327, 6317, 1, 0, 0, 0, 6327, 6318, 1, 0, 0, 0, 6327, 6319, 1, 0, 0, 0, 6327, 6322, 1, 0, 0, 0, 6328, 6329, 1, 0, 0, 0, 6329, 6330, 5, 3, 0, 0, 6330, 693, 1, 0, 0, 0, 6331, 6336, 3, 690, 345, 0, 6332, 6333, 5, 6, 0, 0, 6333, 6335, 3, 690, 345, 0, 6334, 6332, 1, 0, 0, 0, 6335, 6338, 1, 0, 0, 0, 6336, 6334, 1, 0, 0, 0, 6336, 6337, 1, 0, 0, 0, 6337, 695, 1, 0, 0, 0, 6338, 6336, 1, 0, 0, 0, 6339, 6340, 3, 1442, 721, 0, 6340, 6341, 3, 692, 346, 0, 6341, 697, 1, 0, 0, 0, 6342, 6347, 3, 696, 348, 0, 6343, 6344, 5, 6, 0, 0, 6344, 6346, 3, 696, 348, 0, 6345, 6343, 1, 0, 0, 0, 6346, 6349, 1, 0, 0, 0, 6347, 6345, 1, 0, 0, 0, 6347, 6348, 1, 0, 0, 0, 6348, 699, 1, 0, 0, 0, 6349, 6347, 1, 0, 0, 0, 6350, 6352, 3, 704, 352, 0, 6351, 6350, 1, 0, 0, 0, 6352, 6353, 1, 0, 0, 0, 6353, 6351, 1, 0, 0, 0, 6353, 6354, 1, 0, 0, 0, 6354, 701, 1, 0, 0, 0, 6355, 6356, 5, 149, 0, 0, 6356, 6357, 5, 80, 0, 0, 6357, 6358, 5, 78, 0, 0, 6358, 6391, 5, 458, 0, 0, 6359, 6360, 5, 316, 0, 0, 6360, 6361, 5, 78, 0, 0, 6361, 6362, 5, 80, 0, 0, 6362, 6363, 5, 78, 0, 0, 6363, 6391, 5, 458, 0, 0, 6364, 6391, 5, 346, 0, 0, 6365, 6391, 5, 222, 0, 0, 6366, 6391, 5, 338, 0, 0, 6367, 6391, 5, 377, 0, 0, 6368, 6369, 5, 205, 0, 0, 6369, 6370, 5, 327, 0, 0, 6370, 6391, 5, 181, 0, 0, 6371, 6372, 5, 205, 0, 0, 6372, 6373, 5, 327, 0, 0, 6373, 6391, 5, 243, 0, 0, 6374, 6375, 5, 327, 0, 0, 6375, 6391, 5, 181, 0, 0, 6376, 6377, 5, 327, 0, 0, 6377, 6391, 5, 243, 0, 0, 6378, 6391, 5, 250, 0, 0, 6379, 6380, 5, 77, 0, 0, 6380, 6391, 5, 250, 0, 0, 6381, 6382, 5, 170, 0, 0, 6382, 6391, 3, 320, 160, 0, 6383, 6384, 5, 320, 0, 0, 6384, 6391, 3, 320, 160, 0, 6385, 6386, 5, 459, 0, 0, 6386, 6391, 3, 556, 278, 0, 6387, 6391, 3, 90, 45, 0, 6388, 6389, 5, 460, 0, 0, 6389, 6391, 3, 1472, 736, 0, 6390, 6355, 1, 0, 0, 0, 6390, 6359, 1, 0, 0, 0, 6390, 6364, 1, 0, 0, 0, 6390, 6365, 1, 0, 0, 0, 6390, 6366, 1, 0, 0, 0, 6390, 6367, 1, 0, 0, 0, 6390, 6368, 1, 0, 0, 0, 6390, 6371, 1, 0, 0, 0, 6390, 6374, 1, 0, 0, 0, 6390, 6376, 1, 0, 0, 0, 6390, 6378, 1, 0, 0, 0, 6390, 6379, 1, 0, 0, 0, 6390, 6381, 1, 0, 0, 0, 6390, 6383, 1, 0, 0, 0, 6390, 6385, 1, 0, 0, 0, 6390, 6387, 1, 0, 0, 0, 6390, 6388, 1, 0, 0, 0, 6391, 703, 1, 0, 0, 0, 6392, 6393, 5, 36, 0, 0, 6393, 6394, 3, 1456, 728, 0, 6394, 6395, 5, 6, 0, 0, 6395, 6396, 3, 1456, 728, 0, 6396, 6418, 1, 0, 0, 0, 6397, 6398, 5, 247, 0, 0, 6398, 6418, 3, 80, 40, 0, 6399, 6400, 5, 443, 0, 0, 6400, 6418, 3, 706, 353, 0, 6401, 6418, 5, 104, 0, 0, 6402, 6403, 5, 333, 0, 0, 6403, 6410, 3, 1472, 736, 0, 6404, 6405, 5, 94, 0, 0, 6405, 6411, 3, 1472, 736, 0, 6406, 6407, 5, 10, 0, 0, 6407, 6411, 3, 1472, 736, 0, 6408, 6409, 5, 64, 0, 0, 6409, 6411, 5, 434, 0, 0, 6410, 6404, 1, 0, 0, 0, 6410, 6406, 1, 0, 0, 0, 6410, 6408, 1, 0, 0, 0, 6411, 6418, 1, 0, 0, 0, 6412, 6413, 5, 36, 0, 0, 6413, 6418, 3, 1472, 736, 0, 6414, 6418, 3, 6, 3, 0, 6415, 6418, 3, 702, 351, 0, 6416, 6418, 3, 1472, 736, 0, 6417, 6392, 1, 0, 0, 0, 6417, 6397, 1, 0, 0, 0, 6417, 6399, 1, 0, 0, 0, 6417, 6401, 1, 0, 0, 0, 6417, 6402, 1, 0, 0, 0, 6417, 6412, 1, 0, 0, 0, 6417, 6414, 1, 0, 0, 0, 6417, 6415, 1, 0, 0, 0, 6417, 6416, 1, 0, 0, 0, 6418, 705, 1, 0, 0, 0, 6419, 6420, 5, 62, 0, 0, 6420, 6421, 5, 360, 0, 0, 6421, 6428, 3, 1166, 583, 0, 6422, 6423, 5, 6, 0, 0, 6423, 6424, 5, 62, 0, 0, 6424, 6425, 5, 360, 0, 0, 6425, 6427, 3, 1166, 583, 0, 6426, 6422, 1, 0, 0, 0, 6427, 6430, 1, 0, 0, 0, 6428, 6426, 1, 0, 0, 0, 6428, 6429, 1, 0, 0, 0, 6429, 707, 1, 0, 0, 0, 6430, 6428, 1, 0, 0, 0, 6431, 6432, 5, 105, 0, 0, 6432, 6433, 3, 494, 247, 0, 6433, 709, 1, 0, 0, 0, 6434, 6435, 3, 1430, 715, 0, 6435, 6436, 3, 686, 343, 0, 6436, 711, 1, 0, 0, 0, 6437, 6442, 3, 710, 355, 0, 6438, 6439, 5, 6, 0, 0, 6439, 6441, 3, 710, 355, 0, 6440, 6438, 1, 0, 0, 0, 6441, 6444, 1, 0, 0, 0, 6442, 6440, 1, 0, 0, 0, 6442, 6443, 1, 0, 0, 0, 6443, 713, 1, 0, 0, 0, 6444, 6442, 1, 0, 0, 0, 6445, 6446, 5, 138, 0, 0, 6446, 6447, 3, 716, 358, 0, 6447, 6449, 3, 718, 359, 0, 6448, 6450, 3, 720, 360, 0, 6449, 6448, 1, 0, 0, 0, 6449, 6450, 1, 0, 0, 0, 6450, 715, 1, 0, 0, 0, 6451, 6452, 5, 211, 0, 0, 6452, 6458, 3, 672, 336, 0, 6453, 6454, 5, 296, 0, 0, 6454, 6458, 3, 668, 334, 0, 6455, 6456, 5, 442, 0, 0, 6456, 6458, 3, 664, 332, 0, 6457, 6451, 1, 0, 0, 0, 6457, 6453, 1, 0, 0, 0, 6457, 6455, 1, 0, 0, 0, 6458, 717, 1, 0, 0, 0, 6459, 6461, 3, 702, 351, 0, 6460, 6459, 1, 0, 0, 0, 6461, 6462, 1, 0, 0, 0, 6462, 6460, 1, 0, 0, 0, 6462, 6463, 1, 0, 0, 0, 6463, 719, 1, 0, 0, 0, 6464, 6465, 5, 315, 0, 0, 6465, 721, 1, 0, 0, 0, 6466, 6467, 5, 191, 0, 0, 6467, 6469, 5, 211, 0, 0, 6468, 6470, 3, 746, 373, 0, 6469, 6468, 1, 0, 0, 0, 6469, 6470, 1, 0, 0, 0, 6470, 6471, 1, 0, 0, 0, 6471, 6473, 3, 670, 335, 0, 6472, 6474, 3, 124, 62, 0, 6473, 6472, 1, 0, 0, 0, 6473, 6474, 1, 0, 0, 0, 6474, 6494, 1, 0, 0, 0, 6475, 6476, 5, 191, 0, 0, 6476, 6478, 5, 296, 0, 0, 6477, 6479, 3, 746, 373, 0, 6478, 6477, 1, 0, 0, 0, 6478, 6479, 1, 0, 0, 0, 6479, 6480, 1, 0, 0, 0, 6480, 6482, 3, 666, 333, 0, 6481, 6483, 3, 124, 62, 0, 6482, 6481, 1, 0, 0, 0, 6482, 6483, 1, 0, 0, 0, 6483, 6494, 1, 0, 0, 0, 6484, 6485, 5, 191, 0, 0, 6485, 6487, 5, 442, 0, 0, 6486, 6488, 3, 746, 373, 0, 6487, 6486, 1, 0, 0, 0, 6487, 6488, 1, 0, 0, 0, 6488, 6489, 1, 0, 0, 0, 6489, 6491, 3, 662, 331, 0, 6490, 6492, 3, 124, 62, 0, 6491, 6490, 1, 0, 0, 0, 6491, 6492, 1, 0, 0, 0, 6492, 6494, 1, 0, 0, 0, 6493, 6466, 1, 0, 0, 0, 6493, 6475, 1, 0, 0, 0, 6493, 6484, 1, 0, 0, 0, 6494, 723, 1, 0, 0, 0, 6495, 6496, 5, 191, 0, 0, 6496, 6498, 5, 136, 0, 0, 6497, 6499, 3, 746, 373, 0, 6498, 6497, 1, 0, 0, 0, 6498, 6499, 1, 0, 0, 0, 6499, 6500, 1, 0, 0, 0, 6500, 6502, 3, 698, 349, 0, 6501, 6503, 3, 124, 62, 0, 6502, 6501, 1, 0, 0, 0, 6502, 6503, 1, 0, 0, 0, 6503, 725, 1, 0, 0, 0, 6504, 6505, 5, 191, 0, 0, 6505, 6507, 5, 278, 0, 0, 6506, 6508, 3, 746, 373, 0, 6507, 6506, 1, 0, 0, 0, 6507, 6508, 1, 0, 0, 0, 6508, 6509, 1, 0, 0, 0, 6509, 6511, 3, 732, 366, 0, 6510, 6512, 3, 124, 62, 0, 6511, 6510, 1, 0, 0, 0, 6511, 6512, 1, 0, 0, 0, 6512, 727, 1, 0, 0, 0, 6513, 6514, 5, 2, 0, 0, 6514, 6515, 3, 1166, 583, 0, 6515, 6516, 5, 3, 0, 0, 6516, 6536, 1, 0, 0, 0, 6517, 6518, 5, 2, 0, 0, 6518, 6519, 3, 1166, 583, 0, 6519, 6520, 5, 6, 0, 0, 6520, 6521, 3, 1166, 583, 0, 6521, 6522, 5, 3, 0, 0, 6522, 6536, 1, 0, 0, 0, 6523, 6524, 5, 2, 0, 0, 6524, 6525, 5, 407, 0, 0, 6525, 6526, 5, 6, 0, 0, 6526, 6527, 3, 1166, 583, 0, 6527, 6528, 5, 3, 0, 0, 6528, 6536, 1, 0, 0, 0, 6529, 6530, 5, 2, 0, 0, 6530, 6531, 3, 1166, 583, 0, 6531, 6532, 5, 6, 0, 0, 6532, 6533, 5, 407, 0, 0, 6533, 6534, 5, 3, 0, 0, 6534, 6536, 1, 0, 0, 0, 6535, 6513, 1, 0, 0, 0, 6535, 6517, 1, 0, 0, 0, 6535, 6523, 1, 0, 0, 0, 6535, 6529, 1, 0, 0, 0, 6536, 729, 1, 0, 0, 0, 6537, 6538, 3, 1472, 736, 0, 6538, 6539, 5, 11, 0, 0, 6539, 6541, 1, 0, 0, 0, 6540, 6537, 1, 0, 0, 0, 6541, 6544, 1, 0, 0, 0, 6542, 6540, 1, 0, 0, 0, 6542, 6543, 1, 0, 0, 0, 6543, 6545, 1, 0, 0, 0, 6544, 6542, 1, 0, 0, 0, 6545, 6546, 3, 1316, 658, 0, 6546, 731, 1, 0, 0, 0, 6547, 6552, 3, 734, 367, 0, 6548, 6549, 5, 6, 0, 0, 6549, 6551, 3, 734, 367, 0, 6550, 6548, 1, 0, 0, 0, 6551, 6554, 1, 0, 0, 0, 6552, 6550, 1, 0, 0, 0, 6552, 6553, 1, 0, 0, 0, 6553, 733, 1, 0, 0, 0, 6554, 6552, 1, 0, 0, 0, 6555, 6556, 3, 730, 365, 0, 6556, 6557, 3, 728, 364, 0, 6557, 735, 1, 0, 0, 0, 6558, 6559, 5, 57, 0, 0, 6559, 6560, 3, 738, 369, 0, 6560, 737, 1, 0, 0, 0, 6561, 6563, 3, 740, 370, 0, 6562, 6561, 1, 0, 0, 0, 6563, 6564, 1, 0, 0, 0, 6564, 6562, 1, 0, 0, 0, 6564, 6565, 1, 0, 0, 0, 6565, 739, 1, 0, 0, 0, 6566, 6570, 3, 1456, 728, 0, 6567, 6568, 5, 247, 0, 0, 6568, 6570, 3, 80, 40, 0, 6569, 6566, 1, 0, 0, 0, 6569, 6567, 1, 0, 0, 0, 6570, 741, 1, 0, 0, 0, 6571, 6572, 5, 46, 0, 0, 6572, 6573, 5, 41, 0, 0, 6573, 6574, 5, 2, 0, 0, 6574, 6575, 3, 1166, 583, 0, 6575, 6576, 5, 36, 0, 0, 6576, 6577, 3, 1166, 583, 0, 6577, 6578, 5, 3, 0, 0, 6578, 6579, 5, 105, 0, 0, 6579, 6580, 5, 211, 0, 0, 6580, 6582, 3, 672, 336, 0, 6581, 6583, 3, 744, 372, 0, 6582, 6581, 1, 0, 0, 0, 6582, 6583, 1, 0, 0, 0, 6583, 6609, 1, 0, 0, 0, 6584, 6585, 5, 46, 0, 0, 6585, 6586, 5, 41, 0, 0, 6586, 6587, 5, 2, 0, 0, 6587, 6588, 3, 1166, 583, 0, 6588, 6589, 5, 36, 0, 0, 6589, 6590, 3, 1166, 583, 0, 6590, 6591, 5, 3, 0, 0, 6591, 6592, 5, 379, 0, 0, 6592, 6594, 5, 211, 0, 0, 6593, 6595, 3, 744, 372, 0, 6594, 6593, 1, 0, 0, 0, 6594, 6595, 1, 0, 0, 0, 6595, 6609, 1, 0, 0, 0, 6596, 6597, 5, 46, 0, 0, 6597, 6598, 5, 41, 0, 0, 6598, 6599, 5, 2, 0, 0, 6599, 6600, 3, 1166, 583, 0, 6600, 6601, 5, 36, 0, 0, 6601, 6602, 3, 1166, 583, 0, 6602, 6603, 5, 3, 0, 0, 6603, 6604, 5, 105, 0, 0, 6604, 6606, 5, 400, 0, 0, 6605, 6607, 3, 744, 372, 0, 6606, 6605, 1, 0, 0, 0, 6606, 6607, 1, 0, 0, 0, 6607, 6609, 1, 0, 0, 0, 6608, 6571, 1, 0, 0, 0, 6608, 6584, 1, 0, 0, 0, 6608, 6596, 1, 0, 0, 0, 6609, 743, 1, 0, 0, 0, 6610, 6611, 5, 36, 0, 0, 6611, 6615, 5, 223, 0, 0, 6612, 6613, 5, 36, 0, 0, 6613, 6615, 5, 141, 0, 0, 6614, 6610, 1, 0, 0, 0, 6614, 6612, 1, 0, 0, 0, 6615, 745, 1, 0, 0, 0, 6616, 6617, 5, 220, 0, 0, 6617, 6618, 5, 396, 0, 0, 6618, 747, 1, 0, 0, 0, 6619, 6621, 5, 46, 0, 0, 6620, 6622, 3, 656, 328, 0, 6621, 6620, 1, 0, 0, 0, 6621, 6622, 1, 0, 0, 0, 6622, 6623, 1, 0, 0, 0, 6623, 6624, 5, 443, 0, 0, 6624, 6625, 5, 62, 0, 0, 6625, 6626, 3, 1166, 583, 0, 6626, 6627, 5, 247, 0, 0, 6627, 6628, 3, 1434, 717, 0, 6628, 6629, 5, 2, 0, 0, 6629, 6630, 3, 750, 375, 0, 6630, 6631, 5, 3, 0, 0, 6631, 749, 1, 0, 0, 0, 6632, 6633, 5, 64, 0, 0, 6633, 6634, 5, 461, 0, 0, 6634, 6635, 5, 105, 0, 0, 6635, 6636, 5, 211, 0, 0, 6636, 6637, 3, 672, 336, 0, 6637, 6638, 5, 6, 0, 0, 6638, 6639, 5, 94, 0, 0, 6639, 6640, 5, 461, 0, 0, 6640, 6641, 5, 105, 0, 0, 6641, 6642, 5, 211, 0, 0, 6642, 6643, 3, 672, 336, 0, 6643, 6667, 1, 0, 0, 0, 6644, 6645, 5, 94, 0, 0, 6645, 6646, 5, 461, 0, 0, 6646, 6647, 5, 105, 0, 0, 6647, 6648, 5, 211, 0, 0, 6648, 6649, 3, 672, 336, 0, 6649, 6650, 5, 6, 0, 0, 6650, 6651, 5, 64, 0, 0, 6651, 6652, 5, 461, 0, 0, 6652, 6653, 5, 105, 0, 0, 6653, 6654, 5, 211, 0, 0, 6654, 6655, 3, 672, 336, 0, 6655, 6667, 1, 0, 0, 0, 6656, 6657, 5, 64, 0, 0, 6657, 6658, 5, 461, 0, 0, 6658, 6659, 5, 105, 0, 0, 6659, 6660, 5, 211, 0, 0, 6660, 6667, 3, 672, 336, 0, 6661, 6662, 5, 94, 0, 0, 6662, 6663, 5, 461, 0, 0, 6663, 6664, 5, 105, 0, 0, 6664, 6665, 5, 211, 0, 0, 6665, 6667, 3, 672, 336, 0, 6666, 6632, 1, 0, 0, 0, 6666, 6644, 1, 0, 0, 0, 6666, 6656, 1, 0, 0, 0, 6666, 6661, 1, 0, 0, 0, 6667, 751, 1, 0, 0, 0, 6668, 6669, 5, 306, 0, 0, 6669, 6685, 3, 754, 377, 0, 6670, 6671, 5, 306, 0, 0, 6671, 6685, 3, 756, 378, 0, 6672, 6673, 5, 306, 0, 0, 6673, 6674, 5, 2, 0, 0, 6674, 6675, 3, 758, 379, 0, 6675, 6676, 5, 3, 0, 0, 6676, 6677, 3, 754, 377, 0, 6677, 6685, 1, 0, 0, 0, 6678, 6679, 5, 306, 0, 0, 6679, 6680, 5, 2, 0, 0, 6680, 6681, 3, 758, 379, 0, 6681, 6682, 5, 3, 0, 0, 6682, 6683, 3, 756, 378, 0, 6683, 6685, 1, 0, 0, 0, 6684, 6668, 1, 0, 0, 0, 6684, 6670, 1, 0, 0, 0, 6684, 6672, 1, 0, 0, 0, 6684, 6678, 1, 0, 0, 0, 6685, 753, 1, 0, 0, 0, 6686, 6688, 5, 226, 0, 0, 6687, 6689, 3, 628, 314, 0, 6688, 6687, 1, 0, 0, 0, 6688, 6689, 1, 0, 0, 0, 6689, 6690, 1, 0, 0, 0, 6690, 6697, 3, 1410, 705, 0, 6691, 6693, 5, 92, 0, 0, 6692, 6694, 3, 628, 314, 0, 6693, 6692, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 6695, 1, 0, 0, 0, 6695, 6697, 3, 1404, 702, 0, 6696, 6686, 1, 0, 0, 0, 6696, 6691, 1, 0, 0, 0, 6697, 755, 1, 0, 0, 0, 6698, 6700, 5, 323, 0, 0, 6699, 6701, 3, 628, 314, 0, 6700, 6699, 1, 0, 0, 0, 6700, 6701, 1, 0, 0, 0, 6701, 6702, 1, 0, 0, 0, 6702, 6714, 3, 1420, 710, 0, 6703, 6705, 5, 349, 0, 0, 6704, 6706, 3, 628, 314, 0, 6705, 6704, 1, 0, 0, 0, 6705, 6706, 1, 0, 0, 0, 6706, 6707, 1, 0, 0, 0, 6707, 6714, 3, 1434, 717, 0, 6708, 6710, 5, 175, 0, 0, 6709, 6711, 3, 628, 314, 0, 6710, 6709, 1, 0, 0, 0, 6710, 6711, 1, 0, 0, 0, 6711, 6712, 1, 0, 0, 0, 6712, 6714, 3, 1418, 709, 0, 6713, 6698, 1, 0, 0, 0, 6713, 6703, 1, 0, 0, 0, 6713, 6708, 1, 0, 0, 0, 6714, 757, 1, 0, 0, 0, 6715, 6720, 3, 760, 380, 0, 6716, 6717, 5, 6, 0, 0, 6717, 6719, 3, 760, 380, 0, 6718, 6716, 1, 0, 0, 0, 6719, 6722, 1, 0, 0, 0, 6720, 6718, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 759, 1, 0, 0, 0, 6722, 6720, 1, 0, 0, 0, 6723, 6724, 5, 128, 0, 0, 6724, 761, 1, 0, 0, 0, 6725, 6726, 5, 138, 0, 0, 6726, 6727, 5, 351, 0, 0, 6727, 6728, 3, 1400, 700, 0, 6728, 6729, 5, 333, 0, 0, 6729, 6730, 3, 132, 66, 0, 6730, 6738, 1, 0, 0, 0, 6731, 6732, 5, 138, 0, 0, 6732, 6733, 5, 351, 0, 0, 6733, 6734, 3, 1400, 700, 0, 6734, 6735, 5, 313, 0, 0, 6735, 6736, 3, 132, 66, 0, 6736, 6738, 1, 0, 0, 0, 6737, 6725, 1, 0, 0, 0, 6737, 6731, 1, 0, 0, 0, 6738, 763, 1, 0, 0, 0, 6739, 6740, 5, 138, 0, 0, 6740, 6741, 5, 136, 0, 0, 6741, 6742, 3, 696, 348, 0, 6742, 6743, 5, 309, 0, 0, 6743, 6744, 5, 94, 0, 0, 6744, 6745, 3, 1434, 717, 0, 6745, 7131, 1, 0, 0, 0, 6746, 6747, 5, 138, 0, 0, 6747, 6748, 5, 108, 0, 0, 6748, 6749, 3, 556, 278, 0, 6749, 6750, 5, 309, 0, 0, 6750, 6751, 5, 94, 0, 0, 6751, 6752, 3, 1434, 717, 0, 6752, 7131, 1, 0, 0, 0, 6753, 6754, 5, 138, 0, 0, 6754, 6755, 5, 168, 0, 0, 6755, 6756, 3, 556, 278, 0, 6756, 6757, 5, 309, 0, 0, 6757, 6758, 5, 94, 0, 0, 6758, 6759, 3, 1434, 717, 0, 6759, 7131, 1, 0, 0, 0, 6760, 6761, 5, 138, 0, 0, 6761, 6762, 5, 175, 0, 0, 6762, 6763, 3, 1418, 709, 0, 6763, 6764, 5, 309, 0, 0, 6764, 6765, 5, 94, 0, 0, 6765, 6766, 3, 1416, 708, 0, 6766, 7131, 1, 0, 0, 0, 6767, 6768, 5, 138, 0, 0, 6768, 6769, 5, 189, 0, 0, 6769, 6770, 3, 556, 278, 0, 6770, 6771, 5, 309, 0, 0, 6771, 6772, 5, 94, 0, 0, 6772, 6773, 3, 1434, 717, 0, 6773, 7131, 1, 0, 0, 0, 6774, 6775, 5, 138, 0, 0, 6775, 6776, 5, 189, 0, 0, 6776, 6777, 3, 556, 278, 0, 6777, 6778, 5, 309, 0, 0, 6778, 6779, 5, 45, 0, 0, 6779, 6780, 3, 1434, 717, 0, 6780, 6781, 5, 94, 0, 0, 6781, 6782, 3, 1434, 717, 0, 6782, 7131, 1, 0, 0, 0, 6783, 6784, 5, 138, 0, 0, 6784, 6785, 5, 63, 0, 0, 6785, 6786, 5, 174, 0, 0, 6786, 6787, 5, 381, 0, 0, 6787, 6788, 3, 1434, 717, 0, 6788, 6789, 5, 309, 0, 0, 6789, 6790, 5, 94, 0, 0, 6790, 6791, 3, 1434, 717, 0, 6791, 7131, 1, 0, 0, 0, 6792, 6793, 5, 138, 0, 0, 6793, 6794, 5, 211, 0, 0, 6794, 6795, 3, 672, 336, 0, 6795, 6796, 5, 309, 0, 0, 6796, 6797, 5, 94, 0, 0, 6797, 6798, 3, 1440, 720, 0, 6798, 7131, 1, 0, 0, 0, 6799, 6800, 5, 138, 0, 0, 6800, 6801, 5, 66, 0, 0, 6801, 6802, 3, 1466, 733, 0, 6802, 6803, 5, 309, 0, 0, 6803, 6804, 5, 94, 0, 0, 6804, 6805, 3, 1466, 733, 0, 6805, 7131, 1, 0, 0, 0, 6806, 6808, 5, 138, 0, 0, 6807, 6809, 3, 336, 168, 0, 6808, 6807, 1, 0, 0, 0, 6808, 6809, 1, 0, 0, 0, 6809, 6810, 1, 0, 0, 0, 6810, 6811, 5, 247, 0, 0, 6811, 6812, 3, 1434, 717, 0, 6812, 6813, 5, 309, 0, 0, 6813, 6814, 5, 94, 0, 0, 6814, 6815, 3, 1434, 717, 0, 6815, 7131, 1, 0, 0, 0, 6816, 6817, 5, 138, 0, 0, 6817, 6818, 5, 278, 0, 0, 6818, 6819, 5, 156, 0, 0, 6819, 6820, 3, 556, 278, 0, 6820, 6821, 5, 100, 0, 0, 6821, 6822, 3, 1434, 717, 0, 6822, 6823, 5, 309, 0, 0, 6823, 6824, 5, 94, 0, 0, 6824, 6825, 3, 1434, 717, 0, 6825, 7131, 1, 0, 0, 0, 6826, 6827, 5, 138, 0, 0, 6827, 6828, 5, 278, 0, 0, 6828, 6829, 5, 206, 0, 0, 6829, 6830, 3, 556, 278, 0, 6830, 6831, 5, 100, 0, 0, 6831, 6832, 3, 1434, 717, 0, 6832, 6833, 5, 309, 0, 0, 6833, 6834, 5, 94, 0, 0, 6834, 6835, 3, 1434, 717, 0, 6835, 7131, 1, 0, 0, 0, 6836, 6837, 5, 138, 0, 0, 6837, 6839, 5, 445, 0, 0, 6838, 6840, 3, 746, 373, 0, 6839, 6838, 1, 0, 0, 0, 6839, 6840, 1, 0, 0, 0, 6840, 6841, 1, 0, 0, 0, 6841, 6842, 3, 1434, 717, 0, 6842, 6843, 5, 80, 0, 0, 6843, 6844, 3, 1410, 705, 0, 6844, 6845, 5, 309, 0, 0, 6845, 6846, 5, 94, 0, 0, 6846, 6847, 3, 1434, 717, 0, 6847, 7131, 1, 0, 0, 0, 6848, 6849, 5, 138, 0, 0, 6849, 6850, 5, 296, 0, 0, 6850, 6851, 3, 668, 334, 0, 6851, 6852, 5, 309, 0, 0, 6852, 6853, 5, 94, 0, 0, 6853, 6854, 3, 1428, 714, 0, 6854, 7131, 1, 0, 0, 0, 6855, 6856, 5, 138, 0, 0, 6856, 6857, 5, 452, 0, 0, 6857, 6858, 3, 1434, 717, 0, 6858, 6859, 5, 309, 0, 0, 6859, 6860, 5, 94, 0, 0, 6860, 6861, 3, 1434, 717, 0, 6861, 7131, 1, 0, 0, 0, 6862, 6863, 5, 138, 0, 0, 6863, 6864, 5, 442, 0, 0, 6864, 6865, 3, 664, 332, 0, 6865, 6866, 5, 309, 0, 0, 6866, 6867, 5, 94, 0, 0, 6867, 6868, 3, 1434, 717, 0, 6868, 7131, 1, 0, 0, 0, 6869, 6870, 5, 138, 0, 0, 6870, 6871, 5, 323, 0, 0, 6871, 6872, 3, 1420, 710, 0, 6872, 6873, 5, 309, 0, 0, 6873, 6874, 5, 94, 0, 0, 6874, 6875, 3, 48, 24, 0, 6875, 7131, 1, 0, 0, 0, 6876, 6877, 5, 138, 0, 0, 6877, 6878, 5, 331, 0, 0, 6878, 6879, 3, 1434, 717, 0, 6879, 6880, 5, 309, 0, 0, 6880, 6881, 5, 94, 0, 0, 6881, 6882, 3, 1434, 717, 0, 6882, 7131, 1, 0, 0, 0, 6883, 6884, 5, 138, 0, 0, 6884, 6885, 5, 451, 0, 0, 6885, 6886, 3, 1434, 717, 0, 6886, 6887, 5, 309, 0, 0, 6887, 6888, 5, 94, 0, 0, 6888, 6889, 3, 1434, 717, 0, 6889, 7131, 1, 0, 0, 0, 6890, 6891, 5, 138, 0, 0, 6891, 6893, 5, 92, 0, 0, 6892, 6894, 3, 746, 373, 0, 6893, 6892, 1, 0, 0, 0, 6893, 6894, 1, 0, 0, 0, 6894, 6895, 1, 0, 0, 0, 6895, 6896, 3, 1116, 558, 0, 6896, 6897, 5, 309, 0, 0, 6897, 6898, 5, 94, 0, 0, 6898, 6899, 3, 1402, 701, 0, 6899, 7131, 1, 0, 0, 0, 6900, 6901, 5, 138, 0, 0, 6901, 6903, 5, 328, 0, 0, 6902, 6904, 3, 746, 373, 0, 6903, 6902, 1, 0, 0, 0, 6903, 6904, 1, 0, 0, 0, 6904, 6905, 1, 0, 0, 0, 6905, 6906, 3, 1410, 705, 0, 6906, 6907, 5, 309, 0, 0, 6907, 6908, 5, 94, 0, 0, 6908, 6909, 3, 1434, 717, 0, 6909, 7131, 1, 0, 0, 0, 6910, 6911, 5, 138, 0, 0, 6911, 6913, 5, 376, 0, 0, 6912, 6914, 3, 746, 373, 0, 6913, 6912, 1, 0, 0, 0, 6913, 6914, 1, 0, 0, 0, 6914, 6915, 1, 0, 0, 0, 6915, 6916, 3, 1408, 704, 0, 6916, 6917, 5, 309, 0, 0, 6917, 6918, 5, 94, 0, 0, 6918, 6919, 3, 1406, 703, 0, 6919, 7131, 1, 0, 0, 0, 6920, 6921, 5, 138, 0, 0, 6921, 6922, 5, 259, 0, 0, 6922, 6924, 5, 376, 0, 0, 6923, 6925, 3, 746, 373, 0, 6924, 6923, 1, 0, 0, 0, 6924, 6925, 1, 0, 0, 0, 6925, 6926, 1, 0, 0, 0, 6926, 6927, 3, 1408, 704, 0, 6927, 6928, 5, 309, 0, 0, 6928, 6929, 5, 94, 0, 0, 6929, 6930, 3, 1406, 703, 0, 6930, 7131, 1, 0, 0, 0, 6931, 6932, 5, 138, 0, 0, 6932, 6934, 5, 226, 0, 0, 6933, 6935, 3, 746, 373, 0, 6934, 6933, 1, 0, 0, 0, 6934, 6935, 1, 0, 0, 0, 6935, 6936, 1, 0, 0, 0, 6936, 6937, 3, 1410, 705, 0, 6937, 6938, 5, 309, 0, 0, 6938, 6939, 5, 94, 0, 0, 6939, 6940, 3, 1434, 717, 0, 6940, 7131, 1, 0, 0, 0, 6941, 6942, 5, 138, 0, 0, 6942, 6943, 5, 63, 0, 0, 6943, 6945, 5, 92, 0, 0, 6944, 6946, 3, 746, 373, 0, 6945, 6944, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 6947, 1, 0, 0, 0, 6947, 6948, 3, 1116, 558, 0, 6948, 6949, 5, 309, 0, 0, 6949, 6950, 5, 94, 0, 0, 6950, 6951, 3, 1402, 701, 0, 6951, 7131, 1, 0, 0, 0, 6952, 6953, 5, 138, 0, 0, 6953, 6955, 5, 92, 0, 0, 6954, 6956, 3, 746, 373, 0, 6955, 6954, 1, 0, 0, 0, 6955, 6956, 1, 0, 0, 0, 6956, 6957, 1, 0, 0, 0, 6957, 6958, 3, 1116, 558, 0, 6958, 6960, 5, 309, 0, 0, 6959, 6961, 5, 44, 0, 0, 6960, 6959, 1, 0, 0, 0, 6960, 6961, 1, 0, 0, 0, 6961, 6962, 1, 0, 0, 0, 6962, 6963, 3, 1430, 715, 0, 6963, 6964, 5, 94, 0, 0, 6964, 6965, 3, 1432, 716, 0, 6965, 7131, 1, 0, 0, 0, 6966, 6967, 5, 138, 0, 0, 6967, 6969, 5, 376, 0, 0, 6968, 6970, 3, 746, 373, 0, 6969, 6968, 1, 0, 0, 0, 6969, 6970, 1, 0, 0, 0, 6970, 6971, 1, 0, 0, 0, 6971, 6972, 3, 1408, 704, 0, 6972, 6974, 5, 309, 0, 0, 6973, 6975, 5, 44, 0, 0, 6974, 6973, 1, 0, 0, 0, 6974, 6975, 1, 0, 0, 0, 6975, 6976, 1, 0, 0, 0, 6976, 6977, 3, 1430, 715, 0, 6977, 6978, 5, 94, 0, 0, 6978, 6979, 3, 1432, 716, 0, 6979, 7131, 1, 0, 0, 0, 6980, 6981, 5, 138, 0, 0, 6981, 6982, 5, 259, 0, 0, 6982, 6984, 5, 376, 0, 0, 6983, 6985, 3, 746, 373, 0, 6984, 6983, 1, 0, 0, 0, 6984, 6985, 1, 0, 0, 0, 6985, 6986, 1, 0, 0, 0, 6986, 6987, 3, 1408, 704, 0, 6987, 6989, 5, 309, 0, 0, 6988, 6990, 5, 44, 0, 0, 6989, 6988, 1, 0, 0, 0, 6989, 6990, 1, 0, 0, 0, 6990, 6991, 1, 0, 0, 0, 6991, 6992, 3, 1430, 715, 0, 6992, 6993, 5, 94, 0, 0, 6993, 6994, 3, 1432, 716, 0, 6994, 7131, 1, 0, 0, 0, 6995, 6996, 5, 138, 0, 0, 6996, 6998, 5, 92, 0, 0, 6997, 6999, 3, 746, 373, 0, 6998, 6997, 1, 0, 0, 0, 6998, 6999, 1, 0, 0, 0, 6999, 7000, 1, 0, 0, 0, 7000, 7001, 3, 1116, 558, 0, 7001, 7002, 5, 309, 0, 0, 7002, 7003, 5, 45, 0, 0, 7003, 7004, 3, 1434, 717, 0, 7004, 7005, 5, 94, 0, 0, 7005, 7006, 3, 1434, 717, 0, 7006, 7131, 1, 0, 0, 0, 7007, 7008, 5, 138, 0, 0, 7008, 7009, 5, 63, 0, 0, 7009, 7011, 5, 92, 0, 0, 7010, 7012, 3, 746, 373, 0, 7011, 7010, 1, 0, 0, 0, 7011, 7012, 1, 0, 0, 0, 7012, 7013, 1, 0, 0, 0, 7013, 7014, 3, 1116, 558, 0, 7014, 7016, 5, 309, 0, 0, 7015, 7017, 5, 44, 0, 0, 7016, 7015, 1, 0, 0, 0, 7016, 7017, 1, 0, 0, 0, 7017, 7018, 1, 0, 0, 0, 7018, 7019, 3, 1430, 715, 0, 7019, 7020, 5, 94, 0, 0, 7020, 7021, 3, 1432, 716, 0, 7021, 7131, 1, 0, 0, 0, 7022, 7023, 5, 138, 0, 0, 7023, 7024, 5, 321, 0, 0, 7024, 7025, 3, 1434, 717, 0, 7025, 7026, 5, 80, 0, 0, 7026, 7027, 3, 1410, 705, 0, 7027, 7028, 5, 309, 0, 0, 7028, 7029, 5, 94, 0, 0, 7029, 7030, 3, 1434, 717, 0, 7030, 7131, 1, 0, 0, 0, 7031, 7032, 5, 138, 0, 0, 7032, 7033, 5, 357, 0, 0, 7033, 7034, 3, 1434, 717, 0, 7034, 7035, 5, 80, 0, 0, 7035, 7036, 3, 1410, 705, 0, 7036, 7037, 5, 309, 0, 0, 7037, 7038, 5, 94, 0, 0, 7038, 7039, 3, 1434, 717, 0, 7039, 7131, 1, 0, 0, 0, 7040, 7041, 5, 138, 0, 0, 7041, 7042, 5, 198, 0, 0, 7042, 7043, 5, 357, 0, 0, 7043, 7044, 3, 1434, 717, 0, 7044, 7045, 5, 309, 0, 0, 7045, 7046, 5, 94, 0, 0, 7046, 7047, 3, 1434, 717, 0, 7047, 7131, 1, 0, 0, 0, 7048, 7049, 5, 138, 0, 0, 7049, 7050, 5, 318, 0, 0, 7050, 7051, 3, 1466, 733, 0, 7051, 7052, 5, 309, 0, 0, 7052, 7053, 5, 94, 0, 0, 7053, 7054, 3, 1466, 733, 0, 7054, 7131, 1, 0, 0, 0, 7055, 7056, 5, 138, 0, 0, 7056, 7057, 5, 99, 0, 0, 7057, 7058, 3, 1466, 733, 0, 7058, 7059, 5, 309, 0, 0, 7059, 7060, 5, 94, 0, 0, 7060, 7061, 3, 1466, 733, 0, 7061, 7131, 1, 0, 0, 0, 7062, 7063, 5, 138, 0, 0, 7063, 7064, 5, 351, 0, 0, 7064, 7065, 3, 1400, 700, 0, 7065, 7066, 5, 309, 0, 0, 7066, 7067, 5, 94, 0, 0, 7067, 7068, 3, 1398, 699, 0, 7068, 7131, 1, 0, 0, 0, 7069, 7070, 5, 138, 0, 0, 7070, 7071, 5, 342, 0, 0, 7071, 7072, 3, 556, 278, 0, 7072, 7073, 5, 309, 0, 0, 7073, 7074, 5, 94, 0, 0, 7074, 7075, 3, 1434, 717, 0, 7075, 7131, 1, 0, 0, 0, 7076, 7077, 5, 138, 0, 0, 7077, 7078, 5, 355, 0, 0, 7078, 7079, 5, 325, 0, 0, 7079, 7080, 5, 283, 0, 0, 7080, 7081, 3, 556, 278, 0, 7081, 7082, 5, 309, 0, 0, 7082, 7083, 5, 94, 0, 0, 7083, 7084, 3, 1434, 717, 0, 7084, 7131, 1, 0, 0, 0, 7085, 7086, 5, 138, 0, 0, 7086, 7087, 5, 355, 0, 0, 7087, 7088, 5, 325, 0, 0, 7088, 7089, 5, 185, 0, 0, 7089, 7090, 3, 556, 278, 0, 7090, 7091, 5, 309, 0, 0, 7091, 7092, 5, 94, 0, 0, 7092, 7093, 3, 1434, 717, 0, 7093, 7131, 1, 0, 0, 0, 7094, 7095, 5, 138, 0, 0, 7095, 7096, 5, 355, 0, 0, 7096, 7097, 5, 325, 0, 0, 7097, 7098, 5, 353, 0, 0, 7098, 7099, 3, 556, 278, 0, 7099, 7100, 5, 309, 0, 0, 7100, 7101, 5, 94, 0, 0, 7101, 7102, 3, 1434, 717, 0, 7102, 7131, 1, 0, 0, 0, 7103, 7104, 5, 138, 0, 0, 7104, 7105, 5, 355, 0, 0, 7105, 7106, 5, 325, 0, 0, 7106, 7107, 5, 163, 0, 0, 7107, 7108, 3, 556, 278, 0, 7108, 7109, 5, 309, 0, 0, 7109, 7110, 5, 94, 0, 0, 7110, 7111, 3, 1434, 717, 0, 7111, 7131, 1, 0, 0, 0, 7112, 7113, 5, 138, 0, 0, 7113, 7114, 5, 360, 0, 0, 7114, 7115, 3, 556, 278, 0, 7115, 7116, 5, 309, 0, 0, 7116, 7117, 5, 94, 0, 0, 7117, 7118, 3, 1434, 717, 0, 7118, 7131, 1, 0, 0, 0, 7119, 7120, 5, 138, 0, 0, 7120, 7121, 5, 360, 0, 0, 7121, 7122, 3, 556, 278, 0, 7122, 7123, 5, 309, 0, 0, 7123, 7124, 5, 143, 0, 0, 7124, 7125, 3, 1434, 717, 0, 7125, 7126, 5, 94, 0, 0, 7126, 7128, 3, 1434, 717, 0, 7127, 7129, 3, 124, 62, 0, 7128, 7127, 1, 0, 0, 0, 7128, 7129, 1, 0, 0, 0, 7129, 7131, 1, 0, 0, 0, 7130, 6739, 1, 0, 0, 0, 7130, 6746, 1, 0, 0, 0, 7130, 6753, 1, 0, 0, 0, 7130, 6760, 1, 0, 0, 0, 7130, 6767, 1, 0, 0, 0, 7130, 6774, 1, 0, 0, 0, 7130, 6783, 1, 0, 0, 0, 7130, 6792, 1, 0, 0, 0, 7130, 6799, 1, 0, 0, 0, 7130, 6806, 1, 0, 0, 0, 7130, 6816, 1, 0, 0, 0, 7130, 6826, 1, 0, 0, 0, 7130, 6836, 1, 0, 0, 0, 7130, 6848, 1, 0, 0, 0, 7130, 6855, 1, 0, 0, 0, 7130, 6862, 1, 0, 0, 0, 7130, 6869, 1, 0, 0, 0, 7130, 6876, 1, 0, 0, 0, 7130, 6883, 1, 0, 0, 0, 7130, 6890, 1, 0, 0, 0, 7130, 6900, 1, 0, 0, 0, 7130, 6910, 1, 0, 0, 0, 7130, 6920, 1, 0, 0, 0, 7130, 6931, 1, 0, 0, 0, 7130, 6941, 1, 0, 0, 0, 7130, 6952, 1, 0, 0, 0, 7130, 6966, 1, 0, 0, 0, 7130, 6980, 1, 0, 0, 0, 7130, 6995, 1, 0, 0, 0, 7130, 7007, 1, 0, 0, 0, 7130, 7022, 1, 0, 0, 0, 7130, 7031, 1, 0, 0, 0, 7130, 7040, 1, 0, 0, 0, 7130, 7048, 1, 0, 0, 0, 7130, 7055, 1, 0, 0, 0, 7130, 7062, 1, 0, 0, 0, 7130, 7069, 1, 0, 0, 0, 7130, 7076, 1, 0, 0, 0, 7130, 7085, 1, 0, 0, 0, 7130, 7094, 1, 0, 0, 0, 7130, 7103, 1, 0, 0, 0, 7130, 7112, 1, 0, 0, 0, 7130, 7119, 1, 0, 0, 0, 7131, 765, 1, 0, 0, 0, 7132, 7133, 5, 333, 0, 0, 7133, 7134, 5, 174, 0, 0, 7134, 767, 1, 0, 0, 0, 7135, 7136, 5, 138, 0, 0, 7136, 7137, 5, 211, 0, 0, 7137, 7139, 3, 672, 336, 0, 7138, 7140, 3, 770, 385, 0, 7139, 7138, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7141, 1, 0, 0, 0, 7141, 7142, 5, 462, 0, 0, 7142, 7143, 5, 80, 0, 0, 7143, 7144, 5, 204, 0, 0, 7144, 7145, 3, 1434, 717, 0, 7145, 7205, 1, 0, 0, 0, 7146, 7147, 5, 138, 0, 0, 7147, 7148, 5, 296, 0, 0, 7148, 7150, 3, 668, 334, 0, 7149, 7151, 3, 770, 385, 0, 7150, 7149, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7152, 1, 0, 0, 0, 7152, 7153, 5, 462, 0, 0, 7153, 7154, 5, 80, 0, 0, 7154, 7155, 5, 204, 0, 0, 7155, 7156, 3, 1434, 717, 0, 7156, 7205, 1, 0, 0, 0, 7157, 7158, 5, 138, 0, 0, 7158, 7159, 5, 442, 0, 0, 7159, 7161, 3, 664, 332, 0, 7160, 7162, 3, 770, 385, 0, 7161, 7160, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7163, 1, 0, 0, 0, 7163, 7164, 5, 462, 0, 0, 7164, 7165, 5, 80, 0, 0, 7165, 7166, 5, 204, 0, 0, 7166, 7167, 3, 1434, 717, 0, 7167, 7205, 1, 0, 0, 0, 7168, 7169, 5, 138, 0, 0, 7169, 7170, 5, 357, 0, 0, 7170, 7171, 3, 1434, 717, 0, 7171, 7172, 5, 80, 0, 0, 7172, 7174, 3, 1410, 705, 0, 7173, 7175, 3, 770, 385, 0, 7174, 7173, 1, 0, 0, 0, 7174, 7175, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7177, 5, 462, 0, 0, 7177, 7178, 5, 80, 0, 0, 7178, 7179, 5, 204, 0, 0, 7179, 7180, 3, 1434, 717, 0, 7180, 7205, 1, 0, 0, 0, 7181, 7182, 5, 138, 0, 0, 7182, 7183, 5, 259, 0, 0, 7183, 7184, 5, 376, 0, 0, 7184, 7186, 3, 1408, 704, 0, 7185, 7187, 3, 770, 385, 0, 7186, 7185, 1, 0, 0, 0, 7186, 7187, 1, 0, 0, 0, 7187, 7188, 1, 0, 0, 0, 7188, 7189, 5, 462, 0, 0, 7189, 7190, 5, 80, 0, 0, 7190, 7191, 5, 204, 0, 0, 7191, 7192, 3, 1434, 717, 0, 7192, 7205, 1, 0, 0, 0, 7193, 7194, 5, 138, 0, 0, 7194, 7195, 5, 226, 0, 0, 7195, 7197, 3, 1410, 705, 0, 7196, 7198, 3, 770, 385, 0, 7197, 7196, 1, 0, 0, 0, 7197, 7198, 1, 0, 0, 0, 7198, 7199, 1, 0, 0, 0, 7199, 7200, 5, 462, 0, 0, 7200, 7201, 5, 80, 0, 0, 7201, 7202, 5, 204, 0, 0, 7202, 7203, 3, 1434, 717, 0, 7203, 7205, 1, 0, 0, 0, 7204, 7135, 1, 0, 0, 0, 7204, 7146, 1, 0, 0, 0, 7204, 7157, 1, 0, 0, 0, 7204, 7168, 1, 0, 0, 0, 7204, 7181, 1, 0, 0, 0, 7204, 7193, 1, 0, 0, 0, 7205, 769, 1, 0, 0, 0, 7206, 7207, 5, 269, 0, 0, 7207, 771, 1, 0, 0, 0, 7208, 7209, 5, 138, 0, 0, 7209, 7210, 5, 136, 0, 0, 7210, 7211, 3, 696, 348, 0, 7211, 7212, 5, 333, 0, 0, 7212, 7213, 5, 323, 0, 0, 7213, 7214, 3, 48, 24, 0, 7214, 7394, 1, 0, 0, 0, 7215, 7216, 5, 138, 0, 0, 7216, 7217, 5, 108, 0, 0, 7217, 7218, 3, 556, 278, 0, 7218, 7219, 5, 333, 0, 0, 7219, 7220, 5, 323, 0, 0, 7220, 7221, 3, 48, 24, 0, 7221, 7394, 1, 0, 0, 0, 7222, 7223, 5, 138, 0, 0, 7223, 7224, 5, 168, 0, 0, 7224, 7225, 3, 556, 278, 0, 7225, 7226, 5, 333, 0, 0, 7226, 7227, 5, 323, 0, 0, 7227, 7228, 3, 48, 24, 0, 7228, 7394, 1, 0, 0, 0, 7229, 7230, 5, 138, 0, 0, 7230, 7231, 5, 189, 0, 0, 7231, 7232, 3, 556, 278, 0, 7232, 7233, 5, 333, 0, 0, 7233, 7234, 5, 323, 0, 0, 7234, 7235, 3, 48, 24, 0, 7235, 7394, 1, 0, 0, 0, 7236, 7237, 5, 138, 0, 0, 7237, 7238, 5, 204, 0, 0, 7238, 7239, 3, 1434, 717, 0, 7239, 7240, 5, 333, 0, 0, 7240, 7241, 5, 323, 0, 0, 7241, 7242, 3, 48, 24, 0, 7242, 7394, 1, 0, 0, 0, 7243, 7244, 5, 138, 0, 0, 7244, 7245, 5, 211, 0, 0, 7245, 7246, 3, 672, 336, 0, 7246, 7247, 5, 333, 0, 0, 7247, 7248, 5, 323, 0, 0, 7248, 7249, 3, 48, 24, 0, 7249, 7394, 1, 0, 0, 0, 7250, 7251, 5, 138, 0, 0, 7251, 7252, 5, 278, 0, 0, 7252, 7253, 3, 734, 367, 0, 7253, 7254, 5, 333, 0, 0, 7254, 7255, 5, 323, 0, 0, 7255, 7256, 3, 48, 24, 0, 7256, 7394, 1, 0, 0, 0, 7257, 7258, 5, 138, 0, 0, 7258, 7259, 5, 278, 0, 0, 7259, 7260, 5, 156, 0, 0, 7260, 7261, 3, 556, 278, 0, 7261, 7262, 5, 100, 0, 0, 7262, 7263, 3, 1434, 717, 0, 7263, 7264, 5, 333, 0, 0, 7264, 7265, 5, 323, 0, 0, 7265, 7266, 3, 48, 24, 0, 7266, 7394, 1, 0, 0, 0, 7267, 7268, 5, 138, 0, 0, 7268, 7269, 5, 278, 0, 0, 7269, 7270, 5, 206, 0, 0, 7270, 7271, 3, 556, 278, 0, 7271, 7272, 5, 100, 0, 0, 7272, 7273, 3, 1434, 717, 0, 7273, 7274, 5, 333, 0, 0, 7274, 7275, 5, 323, 0, 0, 7275, 7276, 3, 48, 24, 0, 7276, 7394, 1, 0, 0, 0, 7277, 7278, 5, 138, 0, 0, 7278, 7279, 5, 296, 0, 0, 7279, 7280, 3, 668, 334, 0, 7280, 7281, 5, 333, 0, 0, 7281, 7282, 5, 323, 0, 0, 7282, 7283, 3, 48, 24, 0, 7283, 7394, 1, 0, 0, 0, 7284, 7285, 5, 138, 0, 0, 7285, 7286, 5, 442, 0, 0, 7286, 7287, 3, 664, 332, 0, 7287, 7288, 5, 333, 0, 0, 7288, 7289, 5, 323, 0, 0, 7289, 7290, 3, 48, 24, 0, 7290, 7394, 1, 0, 0, 0, 7291, 7292, 5, 138, 0, 0, 7292, 7294, 5, 92, 0, 0, 7293, 7295, 3, 746, 373, 0, 7294, 7293, 1, 0, 0, 0, 7294, 7295, 1, 0, 0, 0, 7295, 7296, 1, 0, 0, 0, 7296, 7297, 3, 1116, 558, 0, 7297, 7298, 5, 333, 0, 0, 7298, 7299, 5, 323, 0, 0, 7299, 7300, 3, 48, 24, 0, 7300, 7394, 1, 0, 0, 0, 7301, 7302, 5, 138, 0, 0, 7302, 7303, 5, 342, 0, 0, 7303, 7304, 3, 556, 278, 0, 7304, 7305, 5, 333, 0, 0, 7305, 7306, 5, 323, 0, 0, 7306, 7307, 3, 48, 24, 0, 7307, 7394, 1, 0, 0, 0, 7308, 7309, 5, 138, 0, 0, 7309, 7310, 5, 355, 0, 0, 7310, 7311, 5, 325, 0, 0, 7311, 7312, 5, 283, 0, 0, 7312, 7313, 3, 556, 278, 0, 7313, 7314, 5, 333, 0, 0, 7314, 7315, 5, 323, 0, 0, 7315, 7316, 3, 48, 24, 0, 7316, 7394, 1, 0, 0, 0, 7317, 7318, 5, 138, 0, 0, 7318, 7319, 5, 355, 0, 0, 7319, 7320, 5, 325, 0, 0, 7320, 7321, 5, 185, 0, 0, 7321, 7322, 3, 556, 278, 0, 7322, 7323, 5, 333, 0, 0, 7323, 7324, 5, 323, 0, 0, 7324, 7325, 3, 48, 24, 0, 7325, 7394, 1, 0, 0, 0, 7326, 7327, 5, 138, 0, 0, 7327, 7328, 5, 355, 0, 0, 7328, 7329, 5, 325, 0, 0, 7329, 7330, 5, 353, 0, 0, 7330, 7331, 3, 556, 278, 0, 7331, 7332, 5, 333, 0, 0, 7332, 7333, 5, 323, 0, 0, 7333, 7334, 3, 48, 24, 0, 7334, 7394, 1, 0, 0, 0, 7335, 7336, 5, 138, 0, 0, 7336, 7337, 5, 355, 0, 0, 7337, 7338, 5, 325, 0, 0, 7338, 7339, 5, 163, 0, 0, 7339, 7340, 3, 556, 278, 0, 7340, 7341, 5, 333, 0, 0, 7341, 7342, 5, 323, 0, 0, 7342, 7343, 3, 48, 24, 0, 7343, 7394, 1, 0, 0, 0, 7344, 7345, 5, 138, 0, 0, 7345, 7347, 5, 328, 0, 0, 7346, 7348, 3, 746, 373, 0, 7347, 7346, 1, 0, 0, 0, 7347, 7348, 1, 0, 0, 0, 7348, 7349, 1, 0, 0, 0, 7349, 7350, 3, 1410, 705, 0, 7350, 7351, 5, 333, 0, 0, 7351, 7352, 5, 323, 0, 0, 7352, 7353, 3, 48, 24, 0, 7353, 7394, 1, 0, 0, 0, 7354, 7355, 5, 138, 0, 0, 7355, 7357, 5, 376, 0, 0, 7356, 7358, 3, 746, 373, 0, 7357, 7356, 1, 0, 0, 0, 7357, 7358, 1, 0, 0, 0, 7358, 7359, 1, 0, 0, 0, 7359, 7360, 3, 1408, 704, 0, 7360, 7361, 5, 333, 0, 0, 7361, 7362, 5, 323, 0, 0, 7362, 7363, 3, 48, 24, 0, 7363, 7394, 1, 0, 0, 0, 7364, 7365, 5, 138, 0, 0, 7365, 7366, 5, 259, 0, 0, 7366, 7368, 5, 376, 0, 0, 7367, 7369, 3, 746, 373, 0, 7368, 7367, 1, 0, 0, 0, 7368, 7369, 1, 0, 0, 0, 7369, 7370, 1, 0, 0, 0, 7370, 7371, 3, 1408, 704, 0, 7371, 7372, 5, 333, 0, 0, 7372, 7373, 5, 323, 0, 0, 7373, 7374, 3, 48, 24, 0, 7374, 7394, 1, 0, 0, 0, 7375, 7376, 5, 138, 0, 0, 7376, 7377, 5, 63, 0, 0, 7377, 7379, 5, 92, 0, 0, 7378, 7380, 3, 746, 373, 0, 7379, 7378, 1, 0, 0, 0, 7379, 7380, 1, 0, 0, 0, 7380, 7381, 1, 0, 0, 0, 7381, 7382, 3, 1116, 558, 0, 7382, 7383, 5, 333, 0, 0, 7383, 7384, 5, 323, 0, 0, 7384, 7385, 3, 48, 24, 0, 7385, 7394, 1, 0, 0, 0, 7386, 7387, 5, 138, 0, 0, 7387, 7388, 5, 360, 0, 0, 7388, 7389, 3, 556, 278, 0, 7389, 7390, 5, 333, 0, 0, 7390, 7391, 5, 323, 0, 0, 7391, 7392, 3, 48, 24, 0, 7392, 7394, 1, 0, 0, 0, 7393, 7208, 1, 0, 0, 0, 7393, 7215, 1, 0, 0, 0, 7393, 7222, 1, 0, 0, 0, 7393, 7229, 1, 0, 0, 0, 7393, 7236, 1, 0, 0, 0, 7393, 7243, 1, 0, 0, 0, 7393, 7250, 1, 0, 0, 0, 7393, 7257, 1, 0, 0, 0, 7393, 7267, 1, 0, 0, 0, 7393, 7277, 1, 0, 0, 0, 7393, 7284, 1, 0, 0, 0, 7393, 7291, 1, 0, 0, 0, 7393, 7301, 1, 0, 0, 0, 7393, 7308, 1, 0, 0, 0, 7393, 7317, 1, 0, 0, 0, 7393, 7326, 1, 0, 0, 0, 7393, 7335, 1, 0, 0, 0, 7393, 7344, 1, 0, 0, 0, 7393, 7354, 1, 0, 0, 0, 7393, 7364, 1, 0, 0, 0, 7393, 7375, 1, 0, 0, 0, 7393, 7386, 1, 0, 0, 0, 7394, 773, 1, 0, 0, 0, 7395, 7396, 5, 138, 0, 0, 7396, 7397, 5, 278, 0, 0, 7397, 7398, 3, 734, 367, 0, 7398, 7399, 5, 333, 0, 0, 7399, 7400, 5, 2, 0, 0, 7400, 7401, 3, 776, 388, 0, 7401, 7402, 5, 3, 0, 0, 7402, 775, 1, 0, 0, 0, 7403, 7408, 3, 778, 389, 0, 7404, 7405, 5, 6, 0, 0, 7405, 7407, 3, 778, 389, 0, 7406, 7404, 1, 0, 0, 0, 7407, 7410, 1, 0, 0, 0, 7408, 7406, 1, 0, 0, 0, 7408, 7409, 1, 0, 0, 0, 7409, 777, 1, 0, 0, 0, 7410, 7408, 1, 0, 0, 0, 7411, 7412, 3, 1488, 744, 0, 7412, 7413, 5, 10, 0, 0, 7413, 7414, 5, 407, 0, 0, 7414, 7420, 1, 0, 0, 0, 7415, 7416, 3, 1488, 744, 0, 7416, 7417, 5, 10, 0, 0, 7417, 7418, 3, 780, 390, 0, 7418, 7420, 1, 0, 0, 0, 7419, 7411, 1, 0, 0, 0, 7419, 7415, 1, 0, 0, 0, 7420, 779, 1, 0, 0, 0, 7421, 7427, 3, 686, 343, 0, 7422, 7427, 3, 1500, 750, 0, 7423, 7427, 3, 1322, 661, 0, 7424, 7427, 3, 320, 160, 0, 7425, 7427, 3, 1456, 728, 0, 7426, 7421, 1, 0, 0, 0, 7426, 7422, 1, 0, 0, 0, 7426, 7423, 1, 0, 0, 0, 7426, 7424, 1, 0, 0, 0, 7426, 7425, 1, 0, 0, 0, 7427, 781, 1, 0, 0, 0, 7428, 7429, 5, 138, 0, 0, 7429, 7430, 5, 360, 0, 0, 7430, 7431, 3, 556, 278, 0, 7431, 7432, 5, 333, 0, 0, 7432, 7433, 5, 2, 0, 0, 7433, 7434, 3, 776, 388, 0, 7434, 7435, 5, 3, 0, 0, 7435, 783, 1, 0, 0, 0, 7436, 7437, 5, 138, 0, 0, 7437, 7438, 5, 136, 0, 0, 7438, 7439, 3, 696, 348, 0, 7439, 7440, 5, 282, 0, 0, 7440, 7441, 5, 94, 0, 0, 7441, 7442, 3, 1468, 734, 0, 7442, 7622, 1, 0, 0, 0, 7443, 7444, 5, 138, 0, 0, 7444, 7445, 5, 108, 0, 0, 7445, 7446, 3, 556, 278, 0, 7446, 7447, 5, 282, 0, 0, 7447, 7448, 5, 94, 0, 0, 7448, 7449, 3, 1468, 734, 0, 7449, 7622, 1, 0, 0, 0, 7450, 7451, 5, 138, 0, 0, 7451, 7452, 5, 168, 0, 0, 7452, 7453, 3, 556, 278, 0, 7453, 7454, 5, 282, 0, 0, 7454, 7455, 5, 94, 0, 0, 7455, 7456, 3, 1468, 734, 0, 7456, 7622, 1, 0, 0, 0, 7457, 7458, 5, 138, 0, 0, 7458, 7459, 5, 175, 0, 0, 7459, 7460, 3, 1418, 709, 0, 7460, 7461, 5, 282, 0, 0, 7461, 7462, 5, 94, 0, 0, 7462, 7463, 3, 1468, 734, 0, 7463, 7622, 1, 0, 0, 0, 7464, 7465, 5, 138, 0, 0, 7465, 7466, 5, 189, 0, 0, 7466, 7467, 3, 556, 278, 0, 7467, 7468, 5, 282, 0, 0, 7468, 7469, 5, 94, 0, 0, 7469, 7470, 3, 1468, 734, 0, 7470, 7622, 1, 0, 0, 0, 7471, 7472, 5, 138, 0, 0, 7472, 7473, 5, 211, 0, 0, 7473, 7474, 3, 672, 336, 0, 7474, 7475, 5, 282, 0, 0, 7475, 7476, 5, 94, 0, 0, 7476, 7477, 3, 1468, 734, 0, 7477, 7622, 1, 0, 0, 0, 7478, 7480, 5, 138, 0, 0, 7479, 7481, 3, 336, 168, 0, 7480, 7479, 1, 0, 0, 0, 7480, 7481, 1, 0, 0, 0, 7481, 7482, 1, 0, 0, 0, 7482, 7483, 5, 247, 0, 0, 7483, 7484, 3, 1434, 717, 0, 7484, 7485, 5, 282, 0, 0, 7485, 7486, 5, 94, 0, 0, 7486, 7487, 3, 1468, 734, 0, 7487, 7622, 1, 0, 0, 0, 7488, 7489, 5, 138, 0, 0, 7489, 7490, 5, 248, 0, 0, 7490, 7491, 5, 274, 0, 0, 7491, 7492, 3, 320, 160, 0, 7492, 7493, 5, 282, 0, 0, 7493, 7494, 5, 94, 0, 0, 7494, 7495, 3, 1468, 734, 0, 7495, 7622, 1, 0, 0, 0, 7496, 7497, 5, 138, 0, 0, 7497, 7498, 5, 278, 0, 0, 7498, 7499, 3, 734, 367, 0, 7499, 7500, 5, 282, 0, 0, 7500, 7501, 5, 94, 0, 0, 7501, 7502, 3, 1468, 734, 0, 7502, 7622, 1, 0, 0, 0, 7503, 7504, 5, 138, 0, 0, 7504, 7505, 5, 278, 0, 0, 7505, 7506, 5, 156, 0, 0, 7506, 7507, 3, 556, 278, 0, 7507, 7508, 5, 100, 0, 0, 7508, 7509, 3, 1434, 717, 0, 7509, 7510, 5, 282, 0, 0, 7510, 7511, 5, 94, 0, 0, 7511, 7512, 3, 1468, 734, 0, 7512, 7622, 1, 0, 0, 0, 7513, 7514, 5, 138, 0, 0, 7514, 7515, 5, 278, 0, 0, 7515, 7516, 5, 206, 0, 0, 7516, 7517, 3, 556, 278, 0, 7517, 7518, 5, 100, 0, 0, 7518, 7519, 3, 1434, 717, 0, 7519, 7520, 5, 282, 0, 0, 7520, 7521, 5, 94, 0, 0, 7521, 7522, 3, 1468, 734, 0, 7522, 7622, 1, 0, 0, 0, 7523, 7524, 5, 138, 0, 0, 7524, 7525, 5, 296, 0, 0, 7525, 7526, 3, 668, 334, 0, 7526, 7527, 5, 282, 0, 0, 7527, 7528, 5, 94, 0, 0, 7528, 7529, 3, 1468, 734, 0, 7529, 7622, 1, 0, 0, 0, 7530, 7531, 5, 138, 0, 0, 7531, 7532, 5, 442, 0, 0, 7532, 7533, 3, 664, 332, 0, 7533, 7534, 5, 282, 0, 0, 7534, 7535, 5, 94, 0, 0, 7535, 7536, 3, 1468, 734, 0, 7536, 7622, 1, 0, 0, 0, 7537, 7538, 5, 138, 0, 0, 7538, 7539, 5, 323, 0, 0, 7539, 7540, 3, 1420, 710, 0, 7540, 7541, 5, 282, 0, 0, 7541, 7542, 5, 94, 0, 0, 7542, 7543, 3, 1468, 734, 0, 7543, 7622, 1, 0, 0, 0, 7544, 7545, 5, 138, 0, 0, 7545, 7546, 5, 360, 0, 0, 7546, 7547, 3, 556, 278, 0, 7547, 7548, 5, 282, 0, 0, 7548, 7549, 5, 94, 0, 0, 7549, 7550, 3, 1468, 734, 0, 7550, 7622, 1, 0, 0, 0, 7551, 7552, 5, 138, 0, 0, 7552, 7553, 5, 351, 0, 0, 7553, 7554, 3, 1400, 700, 0, 7554, 7555, 5, 282, 0, 0, 7555, 7556, 5, 94, 0, 0, 7556, 7557, 3, 1468, 734, 0, 7557, 7622, 1, 0, 0, 0, 7558, 7559, 5, 138, 0, 0, 7559, 7560, 5, 342, 0, 0, 7560, 7561, 3, 556, 278, 0, 7561, 7562, 5, 282, 0, 0, 7562, 7563, 5, 94, 0, 0, 7563, 7564, 3, 1468, 734, 0, 7564, 7622, 1, 0, 0, 0, 7565, 7566, 5, 138, 0, 0, 7566, 7567, 5, 355, 0, 0, 7567, 7568, 5, 325, 0, 0, 7568, 7569, 5, 185, 0, 0, 7569, 7570, 3, 556, 278, 0, 7570, 7571, 5, 282, 0, 0, 7571, 7572, 5, 94, 0, 0, 7572, 7573, 3, 1468, 734, 0, 7573, 7622, 1, 0, 0, 0, 7574, 7575, 5, 138, 0, 0, 7575, 7576, 5, 355, 0, 0, 7576, 7577, 5, 325, 0, 0, 7577, 7578, 5, 163, 0, 0, 7578, 7579, 3, 556, 278, 0, 7579, 7580, 5, 282, 0, 0, 7580, 7581, 5, 94, 0, 0, 7581, 7582, 3, 1468, 734, 0, 7582, 7622, 1, 0, 0, 0, 7583, 7584, 5, 138, 0, 0, 7584, 7585, 5, 63, 0, 0, 7585, 7586, 5, 174, 0, 0, 7586, 7587, 5, 381, 0, 0, 7587, 7588, 3, 1434, 717, 0, 7588, 7589, 5, 282, 0, 0, 7589, 7590, 5, 94, 0, 0, 7590, 7591, 3, 1468, 734, 0, 7591, 7622, 1, 0, 0, 0, 7592, 7593, 5, 138, 0, 0, 7593, 7594, 5, 331, 0, 0, 7594, 7595, 3, 1434, 717, 0, 7595, 7596, 5, 282, 0, 0, 7596, 7597, 5, 94, 0, 0, 7597, 7598, 3, 1468, 734, 0, 7598, 7622, 1, 0, 0, 0, 7599, 7600, 5, 138, 0, 0, 7600, 7601, 5, 198, 0, 0, 7601, 7602, 5, 357, 0, 0, 7602, 7603, 3, 1434, 717, 0, 7603, 7604, 5, 282, 0, 0, 7604, 7605, 5, 94, 0, 0, 7605, 7606, 3, 1468, 734, 0, 7606, 7622, 1, 0, 0, 0, 7607, 7608, 5, 138, 0, 0, 7608, 7609, 5, 452, 0, 0, 7609, 7610, 3, 1434, 717, 0, 7610, 7611, 5, 282, 0, 0, 7611, 7612, 5, 94, 0, 0, 7612, 7613, 3, 1468, 734, 0, 7613, 7622, 1, 0, 0, 0, 7614, 7615, 5, 138, 0, 0, 7615, 7616, 5, 451, 0, 0, 7616, 7617, 3, 1434, 717, 0, 7617, 7618, 5, 282, 0, 0, 7618, 7619, 5, 94, 0, 0, 7619, 7620, 3, 1468, 734, 0, 7620, 7622, 1, 0, 0, 0, 7621, 7436, 1, 0, 0, 0, 7621, 7443, 1, 0, 0, 0, 7621, 7450, 1, 0, 0, 0, 7621, 7457, 1, 0, 0, 0, 7621, 7464, 1, 0, 0, 0, 7621, 7471, 1, 0, 0, 0, 7621, 7478, 1, 0, 0, 0, 7621, 7488, 1, 0, 0, 0, 7621, 7496, 1, 0, 0, 0, 7621, 7503, 1, 0, 0, 0, 7621, 7513, 1, 0, 0, 0, 7621, 7523, 1, 0, 0, 0, 7621, 7530, 1, 0, 0, 0, 7621, 7537, 1, 0, 0, 0, 7621, 7544, 1, 0, 0, 0, 7621, 7551, 1, 0, 0, 0, 7621, 7558, 1, 0, 0, 0, 7621, 7565, 1, 0, 0, 0, 7621, 7574, 1, 0, 0, 0, 7621, 7583, 1, 0, 0, 0, 7621, 7592, 1, 0, 0, 0, 7621, 7599, 1, 0, 0, 0, 7621, 7607, 1, 0, 0, 0, 7621, 7614, 1, 0, 0, 0, 7622, 785, 1, 0, 0, 0, 7623, 7624, 5, 46, 0, 0, 7624, 7625, 5, 452, 0, 0, 7625, 7627, 3, 1434, 717, 0, 7626, 7628, 3, 788, 394, 0, 7627, 7626, 1, 0, 0, 0, 7627, 7628, 1, 0, 0, 0, 7628, 7630, 1, 0, 0, 0, 7629, 7631, 3, 708, 354, 0, 7630, 7629, 1, 0, 0, 0, 7630, 7631, 1, 0, 0, 0, 7631, 787, 1, 0, 0, 0, 7632, 7633, 3, 790, 395, 0, 7633, 789, 1, 0, 0, 0, 7634, 7635, 5, 62, 0, 0, 7635, 7636, 5, 92, 0, 0, 7636, 7641, 3, 1122, 561, 0, 7637, 7638, 5, 62, 0, 0, 7638, 7639, 5, 30, 0, 0, 7639, 7641, 5, 350, 0, 0, 7640, 7634, 1, 0, 0, 0, 7640, 7637, 1, 0, 0, 0, 7641, 791, 1, 0, 0, 0, 7642, 7643, 5, 138, 0, 0, 7643, 7644, 5, 452, 0, 0, 7644, 7645, 3, 1434, 717, 0, 7645, 7646, 5, 333, 0, 0, 7646, 7647, 3, 494, 247, 0, 7647, 7681, 1, 0, 0, 0, 7648, 7649, 5, 138, 0, 0, 7649, 7650, 5, 452, 0, 0, 7650, 7651, 3, 1434, 717, 0, 7651, 7652, 5, 133, 0, 0, 7652, 7653, 3, 1124, 562, 0, 7653, 7681, 1, 0, 0, 0, 7654, 7655, 5, 138, 0, 0, 7655, 7656, 5, 452, 0, 0, 7656, 7657, 3, 1434, 717, 0, 7657, 7658, 5, 333, 0, 0, 7658, 7659, 3, 1124, 562, 0, 7659, 7681, 1, 0, 0, 0, 7660, 7661, 5, 138, 0, 0, 7661, 7662, 5, 452, 0, 0, 7662, 7663, 3, 1434, 717, 0, 7663, 7664, 5, 191, 0, 0, 7664, 7665, 3, 1124, 562, 0, 7665, 7681, 1, 0, 0, 0, 7666, 7667, 5, 138, 0, 0, 7667, 7668, 5, 452, 0, 0, 7668, 7669, 3, 1434, 717, 0, 7669, 7670, 5, 282, 0, 0, 7670, 7671, 5, 94, 0, 0, 7671, 7672, 3, 1468, 734, 0, 7672, 7681, 1, 0, 0, 0, 7673, 7674, 5, 138, 0, 0, 7674, 7675, 5, 452, 0, 0, 7675, 7676, 3, 1434, 717, 0, 7676, 7677, 5, 309, 0, 0, 7677, 7678, 5, 94, 0, 0, 7678, 7679, 3, 1434, 717, 0, 7679, 7681, 1, 0, 0, 0, 7680, 7642, 1, 0, 0, 0, 7680, 7648, 1, 0, 0, 0, 7680, 7654, 1, 0, 0, 0, 7680, 7660, 1, 0, 0, 0, 7680, 7666, 1, 0, 0, 0, 7680, 7673, 1, 0, 0, 0, 7681, 793, 1, 0, 0, 0, 7682, 7683, 5, 46, 0, 0, 7683, 7684, 5, 451, 0, 0, 7684, 7685, 3, 1434, 717, 0, 7685, 7686, 5, 164, 0, 0, 7686, 7687, 3, 1456, 728, 0, 7687, 7688, 5, 452, 0, 0, 7688, 7690, 3, 796, 398, 0, 7689, 7691, 3, 708, 354, 0, 7690, 7689, 1, 0, 0, 0, 7690, 7691, 1, 0, 0, 0, 7691, 795, 1, 0, 0, 0, 7692, 7697, 3, 798, 399, 0, 7693, 7694, 5, 6, 0, 0, 7694, 7696, 3, 798, 399, 0, 7695, 7693, 1, 0, 0, 0, 7696, 7699, 1, 0, 0, 0, 7697, 7695, 1, 0, 0, 0, 7697, 7698, 1, 0, 0, 0, 7698, 797, 1, 0, 0, 0, 7699, 7697, 1, 0, 0, 0, 7700, 7701, 3, 1488, 744, 0, 7701, 799, 1, 0, 0, 0, 7702, 7703, 5, 138, 0, 0, 7703, 7704, 5, 451, 0, 0, 7704, 7705, 3, 1434, 717, 0, 7705, 7706, 5, 333, 0, 0, 7706, 7707, 3, 494, 247, 0, 7707, 7781, 1, 0, 0, 0, 7708, 7709, 5, 138, 0, 0, 7709, 7710, 5, 451, 0, 0, 7710, 7711, 3, 1434, 717, 0, 7711, 7712, 5, 164, 0, 0, 7712, 7713, 3, 1456, 728, 0, 7713, 7781, 1, 0, 0, 0, 7714, 7715, 5, 138, 0, 0, 7715, 7716, 5, 451, 0, 0, 7716, 7717, 3, 1434, 717, 0, 7717, 7718, 5, 305, 0, 0, 7718, 7720, 5, 452, 0, 0, 7719, 7721, 3, 708, 354, 0, 7720, 7719, 1, 0, 0, 0, 7720, 7721, 1, 0, 0, 0, 7721, 7781, 1, 0, 0, 0, 7722, 7723, 5, 138, 0, 0, 7723, 7724, 5, 451, 0, 0, 7724, 7725, 3, 1434, 717, 0, 7725, 7726, 5, 333, 0, 0, 7726, 7727, 5, 452, 0, 0, 7727, 7729, 3, 796, 398, 0, 7728, 7730, 3, 708, 354, 0, 7729, 7728, 1, 0, 0, 0, 7729, 7730, 1, 0, 0, 0, 7730, 7781, 1, 0, 0, 0, 7731, 7732, 5, 138, 0, 0, 7732, 7733, 5, 451, 0, 0, 7733, 7734, 3, 1434, 717, 0, 7734, 7735, 5, 133, 0, 0, 7735, 7736, 5, 452, 0, 0, 7736, 7738, 3, 796, 398, 0, 7737, 7739, 3, 708, 354, 0, 7738, 7737, 1, 0, 0, 0, 7738, 7739, 1, 0, 0, 0, 7739, 7781, 1, 0, 0, 0, 7740, 7741, 5, 138, 0, 0, 7741, 7742, 5, 451, 0, 0, 7742, 7743, 3, 1434, 717, 0, 7743, 7744, 5, 191, 0, 0, 7744, 7745, 5, 452, 0, 0, 7745, 7747, 3, 796, 398, 0, 7746, 7748, 3, 708, 354, 0, 7747, 7746, 1, 0, 0, 0, 7747, 7748, 1, 0, 0, 0, 7748, 7781, 1, 0, 0, 0, 7749, 7750, 5, 138, 0, 0, 7750, 7751, 5, 451, 0, 0, 7751, 7752, 3, 1434, 717, 0, 7752, 7753, 5, 193, 0, 0, 7753, 7781, 1, 0, 0, 0, 7754, 7755, 5, 138, 0, 0, 7755, 7756, 5, 451, 0, 0, 7756, 7757, 3, 1434, 717, 0, 7757, 7758, 5, 186, 0, 0, 7758, 7781, 1, 0, 0, 0, 7759, 7760, 5, 138, 0, 0, 7760, 7761, 5, 451, 0, 0, 7761, 7762, 3, 1434, 717, 0, 7762, 7763, 5, 333, 0, 0, 7763, 7764, 3, 494, 247, 0, 7764, 7781, 1, 0, 0, 0, 7765, 7766, 5, 138, 0, 0, 7766, 7767, 5, 451, 0, 0, 7767, 7768, 3, 1434, 717, 0, 7768, 7769, 5, 465, 0, 0, 7769, 7770, 5, 2, 0, 0, 7770, 7771, 3, 506, 253, 0, 7771, 7772, 5, 3, 0, 0, 7772, 7781, 1, 0, 0, 0, 7773, 7774, 5, 138, 0, 0, 7774, 7775, 5, 451, 0, 0, 7775, 7776, 3, 1434, 717, 0, 7776, 7777, 5, 282, 0, 0, 7777, 7778, 5, 94, 0, 0, 7778, 7779, 3, 1468, 734, 0, 7779, 7781, 1, 0, 0, 0, 7780, 7702, 1, 0, 0, 0, 7780, 7708, 1, 0, 0, 0, 7780, 7714, 1, 0, 0, 0, 7780, 7722, 1, 0, 0, 0, 7780, 7731, 1, 0, 0, 0, 7780, 7740, 1, 0, 0, 0, 7780, 7749, 1, 0, 0, 0, 7780, 7754, 1, 0, 0, 0, 7780, 7759, 1, 0, 0, 0, 7780, 7765, 1, 0, 0, 0, 7780, 7773, 1, 0, 0, 0, 7781, 801, 1, 0, 0, 0, 7782, 7784, 5, 46, 0, 0, 7783, 7785, 3, 656, 328, 0, 7784, 7783, 1, 0, 0, 0, 7784, 7785, 1, 0, 0, 0, 7785, 7786, 1, 0, 0, 0, 7786, 7787, 5, 321, 0, 0, 7787, 7788, 3, 1434, 717, 0, 7788, 7789, 5, 36, 0, 0, 7789, 7790, 5, 80, 0, 0, 7790, 7791, 3, 812, 406, 0, 7791, 7792, 5, 94, 0, 0, 7792, 7794, 3, 1410, 705, 0, 7793, 7795, 3, 1142, 571, 0, 7794, 7793, 1, 0, 0, 0, 7794, 7795, 1, 0, 0, 0, 7795, 7796, 1, 0, 0, 0, 7796, 7798, 5, 57, 0, 0, 7797, 7799, 3, 814, 407, 0, 7798, 7797, 1, 0, 0, 0, 7798, 7799, 1, 0, 0, 0, 7799, 7800, 1, 0, 0, 0, 7800, 7801, 3, 804, 402, 0, 7801, 803, 1, 0, 0, 0, 7802, 7809, 5, 270, 0, 0, 7803, 7809, 3, 808, 404, 0, 7804, 7805, 5, 2, 0, 0, 7805, 7806, 3, 806, 403, 0, 7806, 7807, 5, 3, 0, 0, 7807, 7809, 1, 0, 0, 0, 7808, 7802, 1, 0, 0, 0, 7808, 7803, 1, 0, 0, 0, 7808, 7804, 1, 0, 0, 0, 7809, 805, 1, 0, 0, 0, 7810, 7812, 3, 810, 405, 0, 7811, 7810, 1, 0, 0, 0, 7811, 7812, 1, 0, 0, 0, 7812, 7819, 1, 0, 0, 0, 7813, 7815, 5, 7, 0, 0, 7814, 7816, 3, 810, 405, 0, 7815, 7814, 1, 0, 0, 0, 7815, 7816, 1, 0, 0, 0, 7816, 7818, 1, 0, 0, 0, 7817, 7813, 1, 0, 0, 0, 7818, 7821, 1, 0, 0, 0, 7819, 7817, 1, 0, 0, 0, 7819, 7820, 1, 0, 0, 0, 7820, 807, 1, 0, 0, 0, 7821, 7819, 1, 0, 0, 0, 7822, 7828, 3, 998, 499, 0, 7823, 7828, 3, 948, 474, 0, 7824, 7828, 3, 980, 490, 0, 7825, 7828, 3, 966, 483, 0, 7826, 7828, 3, 816, 408, 0, 7827, 7822, 1, 0, 0, 0, 7827, 7823, 1, 0, 0, 0, 7827, 7824, 1, 0, 0, 0, 7827, 7825, 1, 0, 0, 0, 7827, 7826, 1, 0, 0, 0, 7828, 809, 1, 0, 0, 0, 7829, 7830, 3, 808, 404, 0, 7830, 811, 1, 0, 0, 0, 7831, 7832, 7, 47, 0, 0, 7832, 813, 1, 0, 0, 0, 7833, 7834, 7, 48, 0, 0, 7834, 815, 1, 0, 0, 0, 7835, 7836, 5, 271, 0, 0, 7836, 7838, 3, 1472, 736, 0, 7837, 7839, 3, 818, 409, 0, 7838, 7837, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 817, 1, 0, 0, 0, 7840, 7841, 5, 6, 0, 0, 7841, 7842, 3, 1456, 728, 0, 7842, 819, 1, 0, 0, 0, 7843, 7844, 5, 252, 0, 0, 7844, 7845, 3, 1472, 736, 0, 7845, 821, 1, 0, 0, 0, 7846, 7847, 5, 366, 0, 0, 7847, 7851, 3, 1472, 736, 0, 7848, 7849, 5, 366, 0, 0, 7849, 7851, 5, 9, 0, 0, 7850, 7846, 1, 0, 0, 0, 7850, 7848, 1, 0, 0, 0, 7851, 823, 1, 0, 0, 0, 7852, 7854, 5, 129, 0, 0, 7853, 7855, 3, 826, 413, 0, 7854, 7853, 1, 0, 0, 0, 7854, 7855, 1, 0, 0, 0, 7855, 7857, 1, 0, 0, 0, 7856, 7858, 3, 834, 417, 0, 7857, 7856, 1, 0, 0, 0, 7857, 7858, 1, 0, 0, 0, 7858, 7918, 1, 0, 0, 0, 7859, 7861, 5, 146, 0, 0, 7860, 7862, 3, 826, 413, 0, 7861, 7860, 1, 0, 0, 0, 7861, 7862, 1, 0, 0, 0, 7862, 7864, 1, 0, 0, 0, 7863, 7865, 3, 832, 416, 0, 7864, 7863, 1, 0, 0, 0, 7864, 7865, 1, 0, 0, 0, 7865, 7918, 1, 0, 0, 0, 7866, 7867, 5, 340, 0, 0, 7867, 7869, 5, 356, 0, 0, 7868, 7870, 3, 832, 416, 0, 7869, 7868, 1, 0, 0, 0, 7869, 7870, 1, 0, 0, 0, 7870, 7918, 1, 0, 0, 0, 7871, 7873, 5, 454, 0, 0, 7872, 7874, 3, 826, 413, 0, 7873, 7872, 1, 0, 0, 0, 7873, 7874, 1, 0, 0, 0, 7874, 7876, 1, 0, 0, 0, 7875, 7877, 3, 834, 417, 0, 7876, 7875, 1, 0, 0, 0, 7876, 7877, 1, 0, 0, 0, 7877, 7918, 1, 0, 0, 0, 7878, 7879, 5, 322, 0, 0, 7879, 7918, 3, 1472, 736, 0, 7880, 7882, 5, 308, 0, 0, 7881, 7883, 5, 322, 0, 0, 7882, 7881, 1, 0, 0, 0, 7882, 7883, 1, 0, 0, 0, 7883, 7884, 1, 0, 0, 0, 7884, 7918, 3, 1472, 736, 0, 7885, 7886, 5, 290, 0, 0, 7886, 7887, 5, 356, 0, 0, 7887, 7918, 3, 1456, 728, 0, 7888, 7889, 5, 161, 0, 0, 7889, 7890, 5, 291, 0, 0, 7890, 7918, 3, 1456, 728, 0, 7891, 7893, 5, 161, 0, 0, 7892, 7894, 3, 826, 413, 0, 7893, 7892, 1, 0, 0, 0, 7893, 7894, 1, 0, 0, 0, 7894, 7896, 1, 0, 0, 0, 7895, 7897, 3, 834, 417, 0, 7896, 7895, 1, 0, 0, 0, 7896, 7897, 1, 0, 0, 0, 7897, 7918, 1, 0, 0, 0, 7898, 7899, 5, 319, 0, 0, 7899, 7900, 5, 291, 0, 0, 7900, 7918, 3, 1456, 728, 0, 7901, 7903, 5, 319, 0, 0, 7902, 7904, 3, 826, 413, 0, 7903, 7902, 1, 0, 0, 0, 7903, 7904, 1, 0, 0, 0, 7904, 7905, 1, 0, 0, 0, 7905, 7907, 5, 94, 0, 0, 7906, 7908, 5, 322, 0, 0, 7907, 7906, 1, 0, 0, 0, 7907, 7908, 1, 0, 0, 0, 7908, 7909, 1, 0, 0, 0, 7909, 7918, 3, 1472, 736, 0, 7910, 7912, 5, 319, 0, 0, 7911, 7913, 3, 826, 413, 0, 7912, 7911, 1, 0, 0, 0, 7912, 7913, 1, 0, 0, 0, 7913, 7915, 1, 0, 0, 0, 7914, 7916, 3, 834, 417, 0, 7915, 7914, 1, 0, 0, 0, 7915, 7916, 1, 0, 0, 0, 7916, 7918, 1, 0, 0, 0, 7917, 7852, 1, 0, 0, 0, 7917, 7859, 1, 0, 0, 0, 7917, 7866, 1, 0, 0, 0, 7917, 7871, 1, 0, 0, 0, 7917, 7878, 1, 0, 0, 0, 7917, 7880, 1, 0, 0, 0, 7917, 7885, 1, 0, 0, 0, 7917, 7888, 1, 0, 0, 0, 7917, 7891, 1, 0, 0, 0, 7917, 7898, 1, 0, 0, 0, 7917, 7901, 1, 0, 0, 0, 7917, 7910, 1, 0, 0, 0, 7918, 825, 1, 0, 0, 0, 7919, 7920, 7, 49, 0, 0, 7920, 827, 1, 0, 0, 0, 7921, 7922, 5, 244, 0, 0, 7922, 7923, 5, 251, 0, 0, 7923, 7932, 3, 68, 34, 0, 7924, 7925, 5, 300, 0, 0, 7925, 7932, 5, 81, 0, 0, 7926, 7927, 5, 300, 0, 0, 7927, 7932, 5, 382, 0, 0, 7928, 7932, 5, 54, 0, 0, 7929, 7930, 5, 77, 0, 0, 7930, 7932, 5, 54, 0, 0, 7931, 7921, 1, 0, 0, 0, 7931, 7924, 1, 0, 0, 0, 7931, 7926, 1, 0, 0, 0, 7931, 7928, 1, 0, 0, 0, 7931, 7929, 1, 0, 0, 0, 7932, 829, 1, 0, 0, 0, 7933, 7940, 3, 828, 414, 0, 7934, 7936, 5, 6, 0, 0, 7935, 7934, 1, 0, 0, 0, 7935, 7936, 1, 0, 0, 0, 7936, 7937, 1, 0, 0, 0, 7937, 7939, 3, 828, 414, 0, 7938, 7935, 1, 0, 0, 0, 7939, 7942, 1, 0, 0, 0, 7940, 7938, 1, 0, 0, 0, 7940, 7941, 1, 0, 0, 0, 7941, 831, 1, 0, 0, 0, 7942, 7940, 1, 0, 0, 0, 7943, 7944, 3, 830, 415, 0, 7944, 833, 1, 0, 0, 0, 7945, 7947, 5, 33, 0, 0, 7946, 7948, 5, 269, 0, 0, 7947, 7946, 1, 0, 0, 0, 7947, 7948, 1, 0, 0, 0, 7948, 7949, 1, 0, 0, 0, 7949, 7950, 5, 153, 0, 0, 7950, 835, 1, 0, 0, 0, 7951, 7954, 5, 46, 0, 0, 7952, 7953, 5, 82, 0, 0, 7953, 7955, 5, 311, 0, 0, 7954, 7952, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7957, 1, 0, 0, 0, 7956, 7958, 3, 190, 95, 0, 7957, 7956, 1, 0, 0, 0, 7957, 7958, 1, 0, 0, 0, 7958, 7976, 1, 0, 0, 0, 7959, 7960, 5, 376, 0, 0, 7960, 7962, 3, 1406, 703, 0, 7961, 7963, 3, 242, 121, 0, 7962, 7961, 1, 0, 0, 0, 7962, 7963, 1, 0, 0, 0, 7963, 7965, 1, 0, 0, 0, 7964, 7966, 3, 134, 67, 0, 7965, 7964, 1, 0, 0, 0, 7965, 7966, 1, 0, 0, 0, 7966, 7977, 1, 0, 0, 0, 7967, 7968, 5, 303, 0, 0, 7968, 7969, 5, 376, 0, 0, 7969, 7970, 3, 1406, 703, 0, 7970, 7971, 5, 2, 0, 0, 7971, 7972, 3, 244, 122, 0, 7972, 7974, 5, 3, 0, 0, 7973, 7975, 3, 134, 67, 0, 7974, 7973, 1, 0, 0, 0, 7974, 7975, 1, 0, 0, 0, 7975, 7977, 1, 0, 0, 0, 7976, 7959, 1, 0, 0, 0, 7976, 7967, 1, 0, 0, 0, 7977, 7978, 1, 0, 0, 0, 7978, 7979, 5, 36, 0, 0, 7979, 7981, 3, 998, 499, 0, 7980, 7982, 3, 838, 419, 0, 7981, 7980, 1, 0, 0, 0, 7981, 7982, 1, 0, 0, 0, 7982, 837, 1, 0, 0, 0, 7983, 7985, 5, 105, 0, 0, 7984, 7986, 7, 50, 0, 0, 7985, 7984, 1, 0, 0, 0, 7985, 7986, 1, 0, 0, 0, 7986, 7987, 1, 0, 0, 0, 7987, 7988, 5, 42, 0, 0, 7988, 7989, 5, 279, 0, 0, 7989, 839, 1, 0, 0, 0, 7990, 7991, 5, 253, 0, 0, 7991, 7992, 3, 1438, 719, 0, 7992, 841, 1, 0, 0, 0, 7993, 7994, 5, 46, 0, 0, 7994, 7995, 5, 175, 0, 0, 7995, 7997, 3, 1416, 708, 0, 7996, 7998, 3, 14, 7, 0, 7997, 7996, 1, 0, 0, 0, 7997, 7998, 1, 0, 0, 0, 7998, 8000, 1, 0, 0, 0, 7999, 8001, 3, 844, 422, 0, 8000, 7999, 1, 0, 0, 0, 8000, 8001, 1, 0, 0, 0, 8001, 843, 1, 0, 0, 0, 8002, 8003, 3, 846, 423, 0, 8003, 845, 1, 0, 0, 0, 8004, 8006, 3, 848, 424, 0, 8005, 8004, 1, 0, 0, 0, 8006, 8007, 1, 0, 0, 0, 8007, 8005, 1, 0, 0, 0, 8007, 8008, 1, 0, 0, 0, 8008, 847, 1, 0, 0, 0, 8009, 8011, 3, 850, 425, 0, 8010, 8012, 3, 852, 426, 0, 8011, 8010, 1, 0, 0, 0, 8011, 8012, 1, 0, 0, 0, 8012, 8016, 1, 0, 0, 0, 8013, 8017, 3, 1462, 731, 0, 8014, 8017, 3, 72, 36, 0, 8015, 8017, 5, 53, 0, 0, 8016, 8013, 1, 0, 0, 0, 8016, 8014, 1, 0, 0, 0, 8016, 8015, 1, 0, 0, 0, 8017, 849, 1, 0, 0, 0, 8018, 8019, 5, 164, 0, 0, 8019, 8027, 5, 74, 0, 0, 8020, 8027, 5, 194, 0, 0, 8021, 8027, 5, 255, 0, 0, 8022, 8027, 5, 282, 0, 0, 8023, 8027, 5, 351, 0, 0, 8024, 8027, 5, 353, 0, 0, 8025, 8027, 3, 1490, 745, 0, 8026, 8018, 1, 0, 0, 0, 8026, 8020, 1, 0, 0, 0, 8026, 8021, 1, 0, 0, 0, 8026, 8022, 1, 0, 0, 0, 8026, 8023, 1, 0, 0, 0, 8026, 8024, 1, 0, 0, 0, 8026, 8025, 1, 0, 0, 0, 8027, 851, 1, 0, 0, 0, 8028, 8029, 5, 10, 0, 0, 8029, 853, 1, 0, 0, 0, 8030, 8031, 5, 138, 0, 0, 8031, 8032, 5, 175, 0, 0, 8032, 8044, 3, 1418, 709, 0, 8033, 8034, 5, 333, 0, 0, 8034, 8035, 5, 351, 0, 0, 8035, 8037, 3, 1398, 699, 0, 8036, 8033, 1, 0, 0, 0, 8036, 8037, 1, 0, 0, 0, 8037, 8045, 1, 0, 0, 0, 8038, 8040, 5, 105, 0, 0, 8039, 8038, 1, 0, 0, 0, 8039, 8040, 1, 0, 0, 0, 8040, 8041, 1, 0, 0, 0, 8041, 8043, 3, 844, 422, 0, 8042, 8039, 1, 0, 0, 0, 8042, 8043, 1, 0, 0, 0, 8043, 8045, 1, 0, 0, 0, 8044, 8036, 1, 0, 0, 0, 8044, 8042, 1, 0, 0, 0, 8045, 855, 1, 0, 0, 0, 8046, 8047, 5, 138, 0, 0, 8047, 8048, 5, 175, 0, 0, 8048, 8050, 3, 1418, 709, 0, 8049, 8051, 3, 88, 44, 0, 8050, 8049, 1, 0, 0, 0, 8050, 8051, 1, 0, 0, 0, 8051, 857, 1, 0, 0, 0, 8052, 8057, 3, 860, 430, 0, 8053, 8054, 5, 6, 0, 0, 8054, 8056, 3, 860, 430, 0, 8055, 8053, 1, 0, 0, 0, 8056, 8059, 1, 0, 0, 0, 8057, 8055, 1, 0, 0, 0, 8057, 8058, 1, 0, 0, 0, 8058, 859, 1, 0, 0, 0, 8059, 8057, 1, 0, 0, 0, 8060, 8061, 5, 209, 0, 0, 8061, 861, 1, 0, 0, 0, 8062, 8063, 5, 138, 0, 0, 8063, 8064, 5, 108, 0, 0, 8064, 8065, 3, 556, 278, 0, 8065, 8066, 5, 305, 0, 0, 8066, 8067, 5, 375, 0, 0, 8067, 863, 1, 0, 0, 0, 8068, 8069, 5, 138, 0, 0, 8069, 8070, 5, 349, 0, 0, 8070, 8071, 7, 22, 0, 0, 8071, 8072, 3, 58, 29, 0, 8072, 865, 1, 0, 0, 0, 8073, 8074, 5, 46, 0, 0, 8074, 8075, 5, 189, 0, 0, 8075, 8077, 3, 556, 278, 0, 8076, 8078, 3, 870, 435, 0, 8077, 8076, 1, 0, 0, 0, 8077, 8078, 1, 0, 0, 0, 8078, 8079, 1, 0, 0, 0, 8079, 8080, 3, 1166, 583, 0, 8080, 8081, 3, 216, 108, 0, 8081, 867, 1, 0, 0, 0, 8082, 8083, 5, 138, 0, 0, 8083, 8084, 5, 189, 0, 0, 8084, 8106, 3, 556, 278, 0, 8085, 8107, 3, 122, 61, 0, 8086, 8087, 5, 191, 0, 0, 8087, 8088, 5, 77, 0, 0, 8088, 8107, 5, 78, 0, 0, 8089, 8090, 5, 333, 0, 0, 8090, 8091, 5, 77, 0, 0, 8091, 8107, 5, 78, 0, 0, 8092, 8093, 5, 133, 0, 0, 8093, 8107, 3, 236, 118, 0, 8094, 8095, 5, 191, 0, 0, 8095, 8097, 5, 45, 0, 0, 8096, 8098, 3, 746, 373, 0, 8097, 8096, 1, 0, 0, 0, 8097, 8098, 1, 0, 0, 0, 8098, 8099, 1, 0, 0, 0, 8099, 8101, 3, 1434, 717, 0, 8100, 8102, 3, 124, 62, 0, 8101, 8100, 1, 0, 0, 0, 8101, 8102, 1, 0, 0, 0, 8102, 8107, 1, 0, 0, 0, 8103, 8104, 5, 372, 0, 0, 8104, 8105, 5, 45, 0, 0, 8105, 8107, 3, 1434, 717, 0, 8106, 8085, 1, 0, 0, 0, 8106, 8086, 1, 0, 0, 0, 8106, 8089, 1, 0, 0, 0, 8106, 8092, 1, 0, 0, 0, 8106, 8094, 1, 0, 0, 0, 8106, 8103, 1, 0, 0, 0, 8107, 869, 1, 0, 0, 0, 8108, 8109, 5, 36, 0, 0, 8109, 871, 1, 0, 0, 0, 8110, 8111, 5, 138, 0, 0, 8111, 8112, 5, 355, 0, 0, 8112, 8113, 5, 325, 0, 0, 8113, 8114, 5, 185, 0, 0, 8114, 8115, 3, 556, 278, 0, 8115, 8116, 3, 494, 247, 0, 8116, 873, 1, 0, 0, 0, 8117, 8118, 5, 138, 0, 0, 8118, 8119, 5, 355, 0, 0, 8119, 8120, 5, 325, 0, 0, 8120, 8121, 5, 163, 0, 0, 8121, 8122, 3, 556, 278, 0, 8122, 8123, 5, 133, 0, 0, 8123, 8124, 5, 257, 0, 0, 8124, 8125, 5, 62, 0, 0, 8125, 8126, 3, 1414, 707, 0, 8126, 8127, 3, 876, 438, 0, 8127, 8128, 3, 550, 275, 0, 8128, 8181, 1, 0, 0, 0, 8129, 8130, 5, 138, 0, 0, 8130, 8131, 5, 355, 0, 0, 8131, 8132, 5, 325, 0, 0, 8132, 8133, 5, 163, 0, 0, 8133, 8134, 3, 556, 278, 0, 8134, 8135, 5, 138, 0, 0, 8135, 8136, 5, 257, 0, 0, 8136, 8137, 5, 62, 0, 0, 8137, 8138, 3, 1414, 707, 0, 8138, 8139, 3, 876, 438, 0, 8139, 8140, 3, 550, 275, 0, 8140, 8181, 1, 0, 0, 0, 8141, 8142, 5, 138, 0, 0, 8142, 8143, 5, 355, 0, 0, 8143, 8144, 5, 325, 0, 0, 8144, 8145, 5, 163, 0, 0, 8145, 8146, 3, 556, 278, 0, 8146, 8147, 5, 138, 0, 0, 8147, 8148, 5, 257, 0, 0, 8148, 8149, 5, 311, 0, 0, 8149, 8150, 3, 556, 278, 0, 8150, 8151, 3, 876, 438, 0, 8151, 8152, 3, 556, 278, 0, 8152, 8181, 1, 0, 0, 0, 8153, 8154, 5, 138, 0, 0, 8154, 8155, 5, 355, 0, 0, 8155, 8156, 5, 325, 0, 0, 8156, 8157, 5, 163, 0, 0, 8157, 8158, 3, 556, 278, 0, 8158, 8159, 5, 138, 0, 0, 8159, 8160, 5, 257, 0, 0, 8160, 8161, 5, 62, 0, 0, 8161, 8162, 3, 1414, 707, 0, 8162, 8163, 5, 311, 0, 0, 8163, 8164, 3, 556, 278, 0, 8164, 8165, 3, 876, 438, 0, 8165, 8166, 3, 556, 278, 0, 8166, 8181, 1, 0, 0, 0, 8167, 8168, 5, 138, 0, 0, 8168, 8169, 5, 355, 0, 0, 8169, 8170, 5, 325, 0, 0, 8170, 8171, 5, 163, 0, 0, 8171, 8172, 3, 556, 278, 0, 8172, 8173, 5, 191, 0, 0, 8173, 8175, 5, 257, 0, 0, 8174, 8176, 3, 746, 373, 0, 8175, 8174, 1, 0, 0, 0, 8175, 8176, 1, 0, 0, 0, 8176, 8177, 1, 0, 0, 0, 8177, 8178, 5, 62, 0, 0, 8178, 8179, 3, 1414, 707, 0, 8179, 8181, 1, 0, 0, 0, 8180, 8117, 1, 0, 0, 0, 8180, 8129, 1, 0, 0, 0, 8180, 8141, 1, 0, 0, 0, 8180, 8153, 1, 0, 0, 0, 8180, 8167, 1, 0, 0, 0, 8181, 875, 1, 0, 0, 0, 8182, 8183, 5, 105, 0, 0, 8183, 877, 1, 0, 0, 0, 8184, 8186, 5, 46, 0, 0, 8185, 8187, 3, 522, 261, 0, 8186, 8185, 1, 0, 0, 0, 8186, 8187, 1, 0, 0, 0, 8187, 8188, 1, 0, 0, 0, 8188, 8189, 5, 168, 0, 0, 8189, 8190, 3, 556, 278, 0, 8190, 8191, 5, 62, 0, 0, 8191, 8192, 3, 1456, 728, 0, 8192, 8193, 5, 94, 0, 0, 8193, 8194, 3, 1456, 728, 0, 8194, 8195, 5, 64, 0, 0, 8195, 8196, 3, 556, 278, 0, 8196, 879, 1, 0, 0, 0, 8197, 8199, 5, 158, 0, 0, 8198, 8200, 3, 906, 453, 0, 8199, 8198, 1, 0, 0, 0, 8199, 8200, 1, 0, 0, 0, 8200, 8201, 1, 0, 0, 0, 8201, 8203, 3, 1404, 702, 0, 8202, 8204, 3, 884, 442, 0, 8203, 8202, 1, 0, 0, 0, 8203, 8204, 1, 0, 0, 0, 8204, 8216, 1, 0, 0, 0, 8205, 8207, 5, 158, 0, 0, 8206, 8208, 3, 906, 453, 0, 8207, 8206, 1, 0, 0, 0, 8207, 8208, 1, 0, 0, 0, 8208, 8216, 1, 0, 0, 0, 8209, 8210, 5, 158, 0, 0, 8210, 8211, 3, 882, 441, 0, 8211, 8213, 3, 1404, 702, 0, 8212, 8214, 3, 884, 442, 0, 8213, 8212, 1, 0, 0, 0, 8213, 8214, 1, 0, 0, 0, 8214, 8216, 1, 0, 0, 0, 8215, 8197, 1, 0, 0, 0, 8215, 8205, 1, 0, 0, 0, 8215, 8209, 1, 0, 0, 0, 8216, 881, 1, 0, 0, 0, 8217, 8218, 5, 2, 0, 0, 8218, 8223, 3, 906, 453, 0, 8219, 8220, 5, 6, 0, 0, 8220, 8222, 3, 906, 453, 0, 8221, 8219, 1, 0, 0, 0, 8222, 8225, 1, 0, 0, 0, 8223, 8221, 1, 0, 0, 0, 8223, 8224, 1, 0, 0, 0, 8224, 8226, 1, 0, 0, 0, 8225, 8223, 1, 0, 0, 0, 8226, 8227, 5, 3, 0, 0, 8227, 883, 1, 0, 0, 0, 8228, 8229, 5, 100, 0, 0, 8229, 8230, 3, 1434, 717, 0, 8230, 885, 1, 0, 0, 0, 8231, 8233, 5, 370, 0, 0, 8232, 8234, 3, 912, 456, 0, 8233, 8232, 1, 0, 0, 0, 8233, 8234, 1, 0, 0, 0, 8234, 8236, 1, 0, 0, 0, 8235, 8237, 3, 914, 457, 0, 8236, 8235, 1, 0, 0, 0, 8236, 8237, 1, 0, 0, 0, 8237, 8239, 1, 0, 0, 0, 8238, 8240, 3, 906, 453, 0, 8239, 8238, 1, 0, 0, 0, 8239, 8240, 1, 0, 0, 0, 8240, 8242, 1, 0, 0, 0, 8241, 8243, 3, 900, 450, 0, 8242, 8241, 1, 0, 0, 0, 8242, 8243, 1, 0, 0, 0, 8243, 8245, 1, 0, 0, 0, 8244, 8246, 3, 922, 461, 0, 8245, 8244, 1, 0, 0, 0, 8245, 8246, 1, 0, 0, 0, 8246, 8258, 1, 0, 0, 0, 8247, 8252, 5, 370, 0, 0, 8248, 8249, 5, 2, 0, 0, 8249, 8250, 3, 890, 445, 0, 8250, 8251, 5, 3, 0, 0, 8251, 8253, 1, 0, 0, 0, 8252, 8248, 1, 0, 0, 0, 8252, 8253, 1, 0, 0, 0, 8253, 8255, 1, 0, 0, 0, 8254, 8256, 3, 922, 461, 0, 8255, 8254, 1, 0, 0, 0, 8255, 8256, 1, 0, 0, 0, 8256, 8258, 1, 0, 0, 0, 8257, 8231, 1, 0, 0, 0, 8257, 8247, 1, 0, 0, 0, 8258, 887, 1, 0, 0, 0, 8259, 8261, 3, 892, 446, 0, 8260, 8262, 3, 906, 453, 0, 8261, 8260, 1, 0, 0, 0, 8261, 8262, 1, 0, 0, 0, 8262, 8264, 1, 0, 0, 0, 8263, 8265, 3, 922, 461, 0, 8264, 8263, 1, 0, 0, 0, 8264, 8265, 1, 0, 0, 0, 8265, 8274, 1, 0, 0, 0, 8266, 8267, 3, 892, 446, 0, 8267, 8268, 5, 2, 0, 0, 8268, 8269, 3, 902, 451, 0, 8269, 8271, 5, 3, 0, 0, 8270, 8272, 3, 922, 461, 0, 8271, 8270, 1, 0, 0, 0, 8271, 8272, 1, 0, 0, 0, 8272, 8274, 1, 0, 0, 0, 8273, 8259, 1, 0, 0, 0, 8273, 8266, 1, 0, 0, 0, 8274, 889, 1, 0, 0, 0, 8275, 8280, 3, 894, 447, 0, 8276, 8277, 5, 6, 0, 0, 8277, 8279, 3, 894, 447, 0, 8278, 8276, 1, 0, 0, 0, 8279, 8282, 1, 0, 0, 0, 8280, 8278, 1, 0, 0, 0, 8280, 8281, 1, 0, 0, 0, 8281, 891, 1, 0, 0, 0, 8282, 8280, 1, 0, 0, 0, 8283, 8284, 7, 51, 0, 0, 8284, 893, 1, 0, 0, 0, 8285, 8287, 3, 896, 448, 0, 8286, 8288, 3, 898, 449, 0, 8287, 8286, 1, 0, 0, 0, 8287, 8288, 1, 0, 0, 0, 8288, 895, 1, 0, 0, 0, 8289, 8292, 3, 1486, 743, 0, 8290, 8292, 3, 892, 446, 0, 8291, 8289, 1, 0, 0, 0, 8291, 8290, 1, 0, 0, 0, 8292, 897, 1, 0, 0, 0, 8293, 8296, 3, 72, 36, 0, 8294, 8296, 3, 320, 160, 0, 8295, 8293, 1, 0, 0, 0, 8295, 8294, 1, 0, 0, 0, 8296, 899, 1, 0, 0, 0, 8297, 8298, 3, 892, 446, 0, 8298, 901, 1, 0, 0, 0, 8299, 8304, 3, 904, 452, 0, 8300, 8301, 5, 6, 0, 0, 8301, 8303, 3, 904, 452, 0, 8302, 8300, 1, 0, 0, 0, 8303, 8306, 1, 0, 0, 0, 8304, 8302, 1, 0, 0, 0, 8304, 8305, 1, 0, 0, 0, 8305, 903, 1, 0, 0, 0, 8306, 8304, 1, 0, 0, 0, 8307, 8311, 3, 906, 453, 0, 8308, 8311, 3, 908, 454, 0, 8309, 8311, 3, 910, 455, 0, 8310, 8307, 1, 0, 0, 0, 8310, 8308, 1, 0, 0, 0, 8310, 8309, 1, 0, 0, 0, 8311, 905, 1, 0, 0, 0, 8312, 8314, 5, 128, 0, 0, 8313, 8315, 7, 52, 0, 0, 8314, 8313, 1, 0, 0, 0, 8314, 8315, 1, 0, 0, 0, 8315, 907, 1, 0, 0, 0, 8316, 8318, 5, 547, 0, 0, 8317, 8319, 7, 52, 0, 0, 8318, 8317, 1, 0, 0, 0, 8318, 8319, 1, 0, 0, 0, 8319, 909, 1, 0, 0, 0, 8320, 8323, 5, 548, 0, 0, 8321, 8324, 3, 320, 160, 0, 8322, 8324, 3, 1456, 728, 0, 8323, 8321, 1, 0, 0, 0, 8323, 8322, 1, 0, 0, 0, 8324, 911, 1, 0, 0, 0, 8325, 8326, 5, 113, 0, 0, 8326, 913, 1, 0, 0, 0, 8327, 8328, 5, 112, 0, 0, 8328, 915, 1, 0, 0, 0, 8329, 8330, 5, 2, 0, 0, 8330, 8331, 3, 244, 122, 0, 8331, 8332, 5, 3, 0, 0, 8332, 917, 1, 0, 0, 0, 8333, 8335, 3, 1404, 702, 0, 8334, 8336, 3, 916, 458, 0, 8335, 8334, 1, 0, 0, 0, 8335, 8336, 1, 0, 0, 0, 8336, 919, 1, 0, 0, 0, 8337, 8342, 3, 918, 459, 0, 8338, 8339, 5, 6, 0, 0, 8339, 8341, 3, 918, 459, 0, 8340, 8338, 1, 0, 0, 0, 8341, 8344, 1, 0, 0, 0, 8342, 8340, 1, 0, 0, 0, 8342, 8343, 1, 0, 0, 0, 8343, 921, 1, 0, 0, 0, 8344, 8342, 1, 0, 0, 0, 8345, 8346, 3, 920, 460, 0, 8346, 923, 1, 0, 0, 0, 8347, 8348, 5, 203, 0, 0, 8348, 8366, 3, 926, 463, 0, 8349, 8350, 5, 203, 0, 0, 8350, 8352, 3, 892, 446, 0, 8351, 8353, 3, 906, 453, 0, 8352, 8351, 1, 0, 0, 0, 8352, 8353, 1, 0, 0, 0, 8353, 8354, 1, 0, 0, 0, 8354, 8355, 3, 926, 463, 0, 8355, 8366, 1, 0, 0, 0, 8356, 8357, 5, 203, 0, 0, 8357, 8358, 5, 128, 0, 0, 8358, 8366, 3, 926, 463, 0, 8359, 8360, 5, 203, 0, 0, 8360, 8361, 5, 2, 0, 0, 8361, 8362, 3, 928, 464, 0, 8362, 8363, 5, 3, 0, 0, 8363, 8364, 3, 926, 463, 0, 8364, 8366, 1, 0, 0, 0, 8365, 8347, 1, 0, 0, 0, 8365, 8349, 1, 0, 0, 0, 8365, 8356, 1, 0, 0, 0, 8365, 8359, 1, 0, 0, 0, 8366, 925, 1, 0, 0, 0, 8367, 8377, 3, 998, 499, 0, 8368, 8377, 3, 948, 474, 0, 8369, 8377, 3, 980, 490, 0, 8370, 8377, 3, 966, 483, 0, 8371, 8377, 3, 990, 495, 0, 8372, 8377, 3, 292, 146, 0, 8373, 8377, 3, 298, 149, 0, 8374, 8377, 3, 304, 152, 0, 8375, 8377, 3, 942, 471, 0, 8376, 8367, 1, 0, 0, 0, 8376, 8368, 1, 0, 0, 0, 8376, 8369, 1, 0, 0, 0, 8376, 8370, 1, 0, 0, 0, 8376, 8371, 1, 0, 0, 0, 8376, 8372, 1, 0, 0, 0, 8376, 8373, 1, 0, 0, 0, 8376, 8374, 1, 0, 0, 0, 8376, 8375, 1, 0, 0, 0, 8377, 927, 1, 0, 0, 0, 8378, 8383, 3, 930, 465, 0, 8379, 8380, 5, 6, 0, 0, 8380, 8382, 3, 930, 465, 0, 8381, 8379, 1, 0, 0, 0, 8382, 8385, 1, 0, 0, 0, 8383, 8381, 1, 0, 0, 0, 8383, 8384, 1, 0, 0, 0, 8384, 929, 1, 0, 0, 0, 8385, 8383, 1, 0, 0, 0, 8386, 8388, 3, 932, 466, 0, 8387, 8389, 3, 934, 467, 0, 8388, 8387, 1, 0, 0, 0, 8388, 8389, 1, 0, 0, 0, 8389, 931, 1, 0, 0, 0, 8390, 8393, 3, 1486, 743, 0, 8391, 8393, 3, 892, 446, 0, 8392, 8390, 1, 0, 0, 0, 8392, 8391, 1, 0, 0, 0, 8393, 933, 1, 0, 0, 0, 8394, 8397, 3, 72, 36, 0, 8395, 8397, 3, 320, 160, 0, 8396, 8394, 1, 0, 0, 0, 8396, 8395, 1, 0, 0, 0, 8397, 935, 1, 0, 0, 0, 8398, 8399, 5, 290, 0, 0, 8399, 8401, 3, 1434, 717, 0, 8400, 8402, 3, 938, 469, 0, 8401, 8400, 1, 0, 0, 0, 8401, 8402, 1, 0, 0, 0, 8402, 8403, 1, 0, 0, 0, 8403, 8404, 5, 36, 0, 0, 8404, 8405, 3, 940, 470, 0, 8405, 937, 1, 0, 0, 0, 8406, 8407, 5, 2, 0, 0, 8407, 8408, 3, 1340, 670, 0, 8408, 8409, 5, 3, 0, 0, 8409, 939, 1, 0, 0, 0, 8410, 8415, 3, 998, 499, 0, 8411, 8415, 3, 948, 474, 0, 8412, 8415, 3, 980, 490, 0, 8413, 8415, 3, 966, 483, 0, 8414, 8410, 1, 0, 0, 0, 8414, 8411, 1, 0, 0, 0, 8414, 8412, 1, 0, 0, 0, 8414, 8413, 1, 0, 0, 0, 8415, 941, 1, 0, 0, 0, 8416, 8417, 5, 202, 0, 0, 8417, 8419, 3, 1434, 717, 0, 8418, 8420, 3, 944, 472, 0, 8419, 8418, 1, 0, 0, 0, 8419, 8420, 1, 0, 0, 0, 8420, 8440, 1, 0, 0, 0, 8421, 8423, 5, 46, 0, 0, 8422, 8424, 3, 190, 95, 0, 8423, 8422, 1, 0, 0, 0, 8423, 8424, 1, 0, 0, 0, 8424, 8425, 1, 0, 0, 0, 8425, 8427, 5, 92, 0, 0, 8426, 8428, 3, 514, 257, 0, 8427, 8426, 1, 0, 0, 0, 8427, 8428, 1, 0, 0, 0, 8428, 8429, 1, 0, 0, 0, 8429, 8430, 3, 294, 147, 0, 8430, 8431, 5, 36, 0, 0, 8431, 8432, 5, 202, 0, 0, 8432, 8434, 3, 1434, 717, 0, 8433, 8435, 3, 944, 472, 0, 8434, 8433, 1, 0, 0, 0, 8434, 8435, 1, 0, 0, 0, 8435, 8437, 1, 0, 0, 0, 8436, 8438, 3, 296, 148, 0, 8437, 8436, 1, 0, 0, 0, 8437, 8438, 1, 0, 0, 0, 8438, 8440, 1, 0, 0, 0, 8439, 8416, 1, 0, 0, 0, 8439, 8421, 1, 0, 0, 0, 8440, 943, 1, 0, 0, 0, 8441, 8442, 5, 2, 0, 0, 8442, 8443, 3, 1326, 663, 0, 8443, 8444, 5, 3, 0, 0, 8444, 945, 1, 0, 0, 0, 8445, 8447, 5, 177, 0, 0, 8446, 8448, 5, 290, 0, 0, 8447, 8446, 1, 0, 0, 0, 8447, 8448, 1, 0, 0, 0, 8448, 8451, 1, 0, 0, 0, 8449, 8452, 3, 1434, 717, 0, 8450, 8452, 5, 30, 0, 0, 8451, 8449, 1, 0, 0, 0, 8451, 8450, 1, 0, 0, 0, 8452, 947, 1, 0, 0, 0, 8453, 8455, 3, 1024, 512, 0, 8454, 8453, 1, 0, 0, 0, 8454, 8455, 1, 0, 0, 0, 8455, 8456, 1, 0, 0, 0, 8456, 8457, 5, 241, 0, 0, 8457, 8458, 5, 71, 0, 0, 8458, 8459, 3, 950, 475, 0, 8459, 8461, 3, 952, 476, 0, 8460, 8462, 3, 960, 480, 0, 8461, 8460, 1, 0, 0, 0, 8461, 8462, 1, 0, 0, 0, 8462, 8464, 1, 0, 0, 0, 8463, 8465, 3, 964, 482, 0, 8464, 8463, 1, 0, 0, 0, 8464, 8465, 1, 0, 0, 0, 8465, 949, 1, 0, 0, 0, 8466, 8469, 3, 1404, 702, 0, 8467, 8468, 5, 36, 0, 0, 8468, 8470, 3, 1472, 736, 0, 8469, 8467, 1, 0, 0, 0, 8469, 8470, 1, 0, 0, 0, 8470, 951, 1, 0, 0, 0, 8471, 8472, 5, 2, 0, 0, 8472, 8473, 3, 956, 478, 0, 8473, 8474, 5, 3, 0, 0, 8474, 8476, 1, 0, 0, 0, 8475, 8471, 1, 0, 0, 0, 8475, 8476, 1, 0, 0, 0, 8476, 8481, 1, 0, 0, 0, 8477, 8478, 5, 463, 0, 0, 8478, 8479, 3, 954, 477, 0, 8479, 8480, 5, 450, 0, 0, 8480, 8482, 1, 0, 0, 0, 8481, 8477, 1, 0, 0, 0, 8481, 8482, 1, 0, 0, 0, 8482, 8485, 1, 0, 0, 0, 8483, 8486, 3, 1692, 846, 0, 8484, 8486, 3, 998, 499, 0, 8485, 8483, 1, 0, 0, 0, 8485, 8484, 1, 0, 0, 0, 8486, 953, 1, 0, 0, 0, 8487, 8488, 7, 53, 0, 0, 8488, 955, 1, 0, 0, 0, 8489, 8494, 3, 958, 479, 0, 8490, 8491, 5, 6, 0, 0, 8491, 8493, 3, 958, 479, 0, 8492, 8490, 1, 0, 0, 0, 8493, 8496, 1, 0, 0, 0, 8494, 8492, 1, 0, 0, 0, 8494, 8495, 1, 0, 0, 0, 8495, 957, 1, 0, 0, 0, 8496, 8494, 1, 0, 0, 0, 8497, 8498, 3, 1430, 715, 0, 8498, 8499, 3, 1380, 690, 0, 8499, 959, 1, 0, 0, 0, 8500, 8501, 5, 80, 0, 0, 8501, 8503, 5, 464, 0, 0, 8502, 8504, 3, 962, 481, 0, 8503, 8502, 1, 0, 0, 0, 8503, 8504, 1, 0, 0, 0, 8504, 8505, 1, 0, 0, 0, 8505, 8513, 5, 57, 0, 0, 8506, 8507, 5, 369, 0, 0, 8507, 8508, 5, 333, 0, 0, 8508, 8510, 3, 982, 491, 0, 8509, 8511, 3, 1142, 571, 0, 8510, 8509, 1, 0, 0, 0, 8510, 8511, 1, 0, 0, 0, 8511, 8514, 1, 0, 0, 0, 8512, 8514, 5, 270, 0, 0, 8513, 8506, 1, 0, 0, 0, 8513, 8512, 1, 0, 0, 0, 8514, 961, 1, 0, 0, 0, 8515, 8516, 5, 2, 0, 0, 8516, 8517, 3, 634, 317, 0, 8517, 8519, 5, 3, 0, 0, 8518, 8520, 3, 1142, 571, 0, 8519, 8518, 1, 0, 0, 0, 8519, 8520, 1, 0, 0, 0, 8520, 8525, 1, 0, 0, 0, 8521, 8522, 5, 80, 0, 0, 8522, 8523, 5, 45, 0, 0, 8523, 8525, 3, 1434, 717, 0, 8524, 8515, 1, 0, 0, 0, 8524, 8521, 1, 0, 0, 0, 8525, 963, 1, 0, 0, 0, 8526, 8527, 5, 87, 0, 0, 8527, 8528, 3, 1384, 692, 0, 8528, 965, 1, 0, 0, 0, 8529, 8531, 3, 1024, 512, 0, 8530, 8529, 1, 0, 0, 0, 8530, 8531, 1, 0, 0, 0, 8531, 8532, 1, 0, 0, 0, 8532, 8533, 5, 182, 0, 0, 8533, 8534, 5, 64, 0, 0, 8534, 8536, 3, 1126, 563, 0, 8535, 8537, 3, 968, 484, 0, 8536, 8535, 1, 0, 0, 0, 8536, 8537, 1, 0, 0, 0, 8537, 8539, 1, 0, 0, 0, 8538, 8540, 3, 1144, 572, 0, 8539, 8538, 1, 0, 0, 0, 8539, 8540, 1, 0, 0, 0, 8540, 8542, 1, 0, 0, 0, 8541, 8543, 3, 964, 482, 0, 8542, 8541, 1, 0, 0, 0, 8542, 8543, 1, 0, 0, 0, 8543, 967, 1, 0, 0, 0, 8544, 8545, 5, 100, 0, 0, 8545, 8546, 3, 1102, 551, 0, 8546, 969, 1, 0, 0, 0, 8547, 8549, 5, 256, 0, 0, 8548, 8550, 3, 1032, 516, 0, 8549, 8548, 1, 0, 0, 0, 8549, 8550, 1, 0, 0, 0, 8550, 8551, 1, 0, 0, 0, 8551, 8553, 3, 1122, 561, 0, 8552, 8554, 3, 972, 486, 0, 8553, 8552, 1, 0, 0, 0, 8553, 8554, 1, 0, 0, 0, 8554, 8556, 1, 0, 0, 0, 8555, 8557, 3, 976, 488, 0, 8556, 8555, 1, 0, 0, 0, 8556, 8557, 1, 0, 0, 0, 8557, 971, 1, 0, 0, 0, 8558, 8559, 5, 68, 0, 0, 8559, 8560, 3, 974, 487, 0, 8560, 8561, 5, 263, 0, 0, 8561, 973, 1, 0, 0, 0, 8562, 8563, 5, 131, 0, 0, 8563, 8575, 7, 54, 0, 0, 8564, 8565, 5, 414, 0, 0, 8565, 8575, 7, 54, 0, 0, 8566, 8571, 5, 334, 0, 0, 8567, 8568, 5, 369, 0, 0, 8568, 8572, 5, 201, 0, 0, 8569, 8570, 5, 414, 0, 0, 8570, 8572, 5, 201, 0, 0, 8571, 8567, 1, 0, 0, 0, 8571, 8569, 1, 0, 0, 0, 8571, 8572, 1, 0, 0, 0, 8572, 8575, 1, 0, 0, 0, 8573, 8575, 5, 201, 0, 0, 8574, 8562, 1, 0, 0, 0, 8574, 8564, 1, 0, 0, 0, 8574, 8566, 1, 0, 0, 0, 8574, 8573, 1, 0, 0, 0, 8575, 975, 1, 0, 0, 0, 8576, 8577, 5, 272, 0, 0, 8577, 977, 1, 0, 0, 0, 8578, 8582, 5, 272, 0, 0, 8579, 8580, 5, 465, 0, 0, 8580, 8582, 5, 466, 0, 0, 8581, 8578, 1, 0, 0, 0, 8581, 8579, 1, 0, 0, 0, 8582, 979, 1, 0, 0, 0, 8583, 8585, 3, 1024, 512, 0, 8584, 8583, 1, 0, 0, 0, 8584, 8585, 1, 0, 0, 0, 8585, 8586, 1, 0, 0, 0, 8586, 8587, 5, 369, 0, 0, 8587, 8588, 3, 1126, 563, 0, 8588, 8589, 5, 333, 0, 0, 8589, 8591, 3, 982, 491, 0, 8590, 8592, 3, 1100, 550, 0, 8591, 8590, 1, 0, 0, 0, 8591, 8592, 1, 0, 0, 0, 8592, 8594, 1, 0, 0, 0, 8593, 8595, 3, 1144, 572, 0, 8594, 8593, 1, 0, 0, 0, 8594, 8595, 1, 0, 0, 0, 8595, 8597, 1, 0, 0, 0, 8596, 8598, 3, 964, 482, 0, 8597, 8596, 1, 0, 0, 0, 8597, 8598, 1, 0, 0, 0, 8598, 981, 1, 0, 0, 0, 8599, 8604, 3, 984, 492, 0, 8600, 8601, 5, 6, 0, 0, 8601, 8603, 3, 984, 492, 0, 8602, 8600, 1, 0, 0, 0, 8603, 8606, 1, 0, 0, 0, 8604, 8602, 1, 0, 0, 0, 8604, 8605, 1, 0, 0, 0, 8605, 983, 1, 0, 0, 0, 8606, 8604, 1, 0, 0, 0, 8607, 8608, 3, 986, 493, 0, 8608, 8609, 5, 10, 0, 0, 8609, 8610, 3, 1210, 605, 0, 8610, 8626, 1, 0, 0, 0, 8611, 8612, 5, 2, 0, 0, 8612, 8613, 3, 988, 494, 0, 8613, 8614, 5, 3, 0, 0, 8614, 8623, 5, 10, 0, 0, 8615, 8617, 5, 414, 0, 0, 8616, 8615, 1, 0, 0, 0, 8616, 8617, 1, 0, 0, 0, 8617, 8618, 1, 0, 0, 0, 8618, 8624, 3, 1210, 605, 0, 8619, 8620, 5, 2, 0, 0, 8620, 8621, 3, 1004, 502, 0, 8621, 8622, 5, 3, 0, 0, 8622, 8624, 1, 0, 0, 0, 8623, 8616, 1, 0, 0, 0, 8623, 8619, 1, 0, 0, 0, 8624, 8626, 1, 0, 0, 0, 8625, 8607, 1, 0, 0, 0, 8625, 8611, 1, 0, 0, 0, 8626, 985, 1, 0, 0, 0, 8627, 8628, 3, 1430, 715, 0, 8628, 8629, 3, 1380, 690, 0, 8629, 987, 1, 0, 0, 0, 8630, 8635, 3, 986, 493, 0, 8631, 8632, 5, 6, 0, 0, 8632, 8634, 3, 986, 493, 0, 8633, 8631, 1, 0, 0, 0, 8634, 8637, 1, 0, 0, 0, 8635, 8633, 1, 0, 0, 0, 8635, 8636, 1, 0, 0, 0, 8636, 989, 1, 0, 0, 0, 8637, 8635, 1, 0, 0, 0, 8638, 8639, 5, 178, 0, 0, 8639, 8640, 3, 992, 496, 0, 8640, 8641, 3, 994, 497, 0, 8641, 8642, 5, 172, 0, 0, 8642, 8643, 3, 996, 498, 0, 8643, 8644, 5, 62, 0, 0, 8644, 8645, 3, 998, 499, 0, 8645, 991, 1, 0, 0, 0, 8646, 8647, 3, 1434, 717, 0, 8647, 993, 1, 0, 0, 0, 8648, 8649, 5, 269, 0, 0, 8649, 8654, 5, 324, 0, 0, 8650, 8654, 5, 324, 0, 0, 8651, 8654, 5, 107, 0, 0, 8652, 8654, 5, 240, 0, 0, 8653, 8648, 1, 0, 0, 0, 8653, 8650, 1, 0, 0, 0, 8653, 8651, 1, 0, 0, 0, 8653, 8652, 1, 0, 0, 0, 8654, 8657, 1, 0, 0, 0, 8655, 8653, 1, 0, 0, 0, 8655, 8656, 1, 0, 0, 0, 8656, 995, 1, 0, 0, 0, 8657, 8655, 1, 0, 0, 0, 8658, 8664, 1, 0, 0, 0, 8659, 8660, 5, 105, 0, 0, 8660, 8664, 5, 217, 0, 0, 8661, 8662, 5, 379, 0, 0, 8662, 8664, 5, 217, 0, 0, 8663, 8658, 1, 0, 0, 0, 8663, 8659, 1, 0, 0, 0, 8663, 8661, 1, 0, 0, 0, 8664, 997, 1, 0, 0, 0, 8665, 8668, 3, 1002, 501, 0, 8666, 8668, 3, 1000, 500, 0, 8667, 8665, 1, 0, 0, 0, 8667, 8666, 1, 0, 0, 0, 8668, 999, 1, 0, 0, 0, 8669, 8670, 5, 2, 0, 0, 8670, 8671, 3, 1002, 501, 0, 8671, 8672, 5, 3, 0, 0, 8672, 8678, 1, 0, 0, 0, 8673, 8674, 5, 2, 0, 0, 8674, 8675, 3, 1000, 500, 0, 8675, 8676, 5, 3, 0, 0, 8676, 8678, 1, 0, 0, 0, 8677, 8669, 1, 0, 0, 0, 8677, 8673, 1, 0, 0, 0, 8678, 1001, 1, 0, 0, 0, 8679, 8681, 3, 1004, 502, 0, 8680, 8682, 3, 1040, 520, 0, 8681, 8680, 1, 0, 0, 0, 8681, 8682, 1, 0, 0, 0, 8682, 8691, 1, 0, 0, 0, 8683, 8685, 3, 1086, 543, 0, 8684, 8686, 3, 1050, 525, 0, 8685, 8684, 1, 0, 0, 0, 8685, 8686, 1, 0, 0, 0, 8686, 8692, 1, 0, 0, 0, 8687, 8689, 3, 1048, 524, 0, 8688, 8690, 3, 1088, 544, 0, 8689, 8688, 1, 0, 0, 0, 8689, 8690, 1, 0, 0, 0, 8690, 8692, 1, 0, 0, 0, 8691, 8683, 1, 0, 0, 0, 8691, 8687, 1, 0, 0, 0, 8691, 8692, 1, 0, 0, 0, 8692, 8709, 1, 0, 0, 0, 8693, 8694, 3, 1012, 506, 0, 8694, 8696, 3, 1004, 502, 0, 8695, 8697, 3, 1040, 520, 0, 8696, 8695, 1, 0, 0, 0, 8696, 8697, 1, 0, 0, 0, 8697, 8706, 1, 0, 0, 0, 8698, 8700, 3, 1086, 543, 0, 8699, 8701, 3, 1050, 525, 0, 8700, 8699, 1, 0, 0, 0, 8700, 8701, 1, 0, 0, 0, 8701, 8707, 1, 0, 0, 0, 8702, 8704, 3, 1048, 524, 0, 8703, 8705, 3, 1088, 544, 0, 8704, 8703, 1, 0, 0, 0, 8704, 8705, 1, 0, 0, 0, 8705, 8707, 1, 0, 0, 0, 8706, 8698, 1, 0, 0, 0, 8706, 8702, 1, 0, 0, 0, 8706, 8707, 1, 0, 0, 0, 8707, 8709, 1, 0, 0, 0, 8708, 8679, 1, 0, 0, 0, 8708, 8693, 1, 0, 0, 0, 8709, 1003, 1, 0, 0, 0, 8710, 8713, 3, 1006, 503, 0, 8711, 8713, 3, 1000, 500, 0, 8712, 8710, 1, 0, 0, 0, 8712, 8711, 1, 0, 0, 0, 8713, 1005, 1, 0, 0, 0, 8714, 8730, 5, 88, 0, 0, 8715, 8717, 3, 1038, 519, 0, 8716, 8715, 1, 0, 0, 0, 8716, 8717, 1, 0, 0, 0, 8717, 8719, 1, 0, 0, 0, 8718, 8720, 3, 1026, 513, 0, 8719, 8718, 1, 0, 0, 0, 8719, 8720, 1, 0, 0, 0, 8720, 8722, 1, 0, 0, 0, 8721, 8723, 3, 1382, 691, 0, 8722, 8721, 1, 0, 0, 0, 8722, 8723, 1, 0, 0, 0, 8723, 8731, 1, 0, 0, 0, 8724, 8726, 3, 1036, 518, 0, 8725, 8724, 1, 0, 0, 0, 8725, 8726, 1, 0, 0, 0, 8726, 8728, 1, 0, 0, 0, 8727, 8729, 3, 1384, 692, 0, 8728, 8727, 1, 0, 0, 0, 8728, 8729, 1, 0, 0, 0, 8729, 8731, 1, 0, 0, 0, 8730, 8716, 1, 0, 0, 0, 8730, 8725, 1, 0, 0, 0, 8731, 8733, 1, 0, 0, 0, 8732, 8734, 3, 1026, 513, 0, 8733, 8732, 1, 0, 0, 0, 8733, 8734, 1, 0, 0, 0, 8734, 8736, 1, 0, 0, 0, 8735, 8737, 3, 1100, 550, 0, 8736, 8735, 1, 0, 0, 0, 8736, 8737, 1, 0, 0, 0, 8737, 8739, 1, 0, 0, 0, 8738, 8740, 3, 1142, 571, 0, 8739, 8738, 1, 0, 0, 0, 8739, 8740, 1, 0, 0, 0, 8740, 8742, 1, 0, 0, 0, 8741, 8743, 3, 1070, 535, 0, 8742, 8741, 1, 0, 0, 0, 8742, 8743, 1, 0, 0, 0, 8743, 8745, 1, 0, 0, 0, 8744, 8746, 3, 1084, 542, 0, 8745, 8744, 1, 0, 0, 0, 8745, 8746, 1, 0, 0, 0, 8746, 8748, 1, 0, 0, 0, 8747, 8749, 3, 1286, 643, 0, 8748, 8747, 1, 0, 0, 0, 8748, 8749, 1, 0, 0, 0, 8749, 8760, 1, 0, 0, 0, 8750, 8760, 3, 1098, 549, 0, 8751, 8752, 5, 92, 0, 0, 8752, 8760, 3, 1116, 558, 0, 8753, 8754, 3, 1000, 500, 0, 8754, 8757, 3, 1010, 505, 0, 8755, 8758, 3, 1006, 503, 0, 8756, 8758, 3, 1000, 500, 0, 8757, 8755, 1, 0, 0, 0, 8757, 8756, 1, 0, 0, 0, 8758, 8760, 1, 0, 0, 0, 8759, 8714, 1, 0, 0, 0, 8759, 8750, 1, 0, 0, 0, 8759, 8751, 1, 0, 0, 0, 8759, 8753, 1, 0, 0, 0, 8760, 8768, 1, 0, 0, 0, 8761, 8764, 3, 1010, 505, 0, 8762, 8765, 3, 1006, 503, 0, 8763, 8765, 3, 1000, 500, 0, 8764, 8762, 1, 0, 0, 0, 8764, 8763, 1, 0, 0, 0, 8765, 8767, 1, 0, 0, 0, 8766, 8761, 1, 0, 0, 0, 8767, 8770, 1, 0, 0, 0, 8768, 8766, 1, 0, 0, 0, 8768, 8769, 1, 0, 0, 0, 8769, 1007, 1, 0, 0, 0, 8770, 8768, 1, 0, 0, 0, 8771, 8775, 5, 97, 0, 0, 8772, 8775, 5, 70, 0, 0, 8773, 8775, 5, 59, 0, 0, 8774, 8771, 1, 0, 0, 0, 8774, 8772, 1, 0, 0, 0, 8774, 8773, 1, 0, 0, 0, 8775, 1009, 1, 0, 0, 0, 8776, 8778, 3, 1008, 504, 0, 8777, 8779, 3, 1034, 517, 0, 8778, 8777, 1, 0, 0, 0, 8778, 8779, 1, 0, 0, 0, 8779, 1011, 1, 0, 0, 0, 8780, 8782, 5, 105, 0, 0, 8781, 8783, 5, 303, 0, 0, 8782, 8781, 1, 0, 0, 0, 8782, 8783, 1, 0, 0, 0, 8783, 8784, 1, 0, 0, 0, 8784, 8785, 3, 1014, 507, 0, 8785, 1013, 1, 0, 0, 0, 8786, 8791, 3, 1016, 508, 0, 8787, 8788, 5, 6, 0, 0, 8788, 8790, 3, 1016, 508, 0, 8789, 8787, 1, 0, 0, 0, 8790, 8793, 1, 0, 0, 0, 8791, 8789, 1, 0, 0, 0, 8791, 8792, 1, 0, 0, 0, 8792, 1015, 1, 0, 0, 0, 8793, 8791, 1, 0, 0, 0, 8794, 8796, 3, 1434, 717, 0, 8795, 8797, 3, 916, 458, 0, 8796, 8795, 1, 0, 0, 0, 8796, 8797, 1, 0, 0, 0, 8797, 8798, 1, 0, 0, 0, 8798, 8800, 5, 36, 0, 0, 8799, 8801, 3, 1022, 511, 0, 8800, 8799, 1, 0, 0, 0, 8800, 8801, 1, 0, 0, 0, 8801, 8802, 1, 0, 0, 0, 8802, 8803, 5, 2, 0, 0, 8803, 8804, 3, 940, 470, 0, 8804, 8806, 5, 3, 0, 0, 8805, 8807, 3, 1018, 509, 0, 8806, 8805, 1, 0, 0, 0, 8806, 8807, 1, 0, 0, 0, 8807, 8809, 1, 0, 0, 0, 8808, 8810, 3, 1020, 510, 0, 8809, 8808, 1, 0, 0, 0, 8809, 8810, 1, 0, 0, 0, 8810, 1017, 1, 0, 0, 0, 8811, 8812, 5, 325, 0, 0, 8812, 8813, 7, 55, 0, 0, 8813, 8814, 5, 207, 0, 0, 8814, 8815, 5, 147, 0, 0, 8815, 8816, 3, 244, 122, 0, 8816, 8817, 5, 333, 0, 0, 8817, 8818, 3, 1430, 715, 0, 8818, 1019, 1, 0, 0, 0, 8819, 8820, 5, 173, 0, 0, 8820, 8821, 3, 244, 122, 0, 8821, 8822, 5, 333, 0, 0, 8822, 8828, 3, 1430, 715, 0, 8823, 8824, 5, 94, 0, 0, 8824, 8825, 3, 1434, 717, 0, 8825, 8826, 5, 53, 0, 0, 8826, 8827, 3, 1434, 717, 0, 8827, 8829, 1, 0, 0, 0, 8828, 8823, 1, 0, 0, 0, 8828, 8829, 1, 0, 0, 0, 8829, 8830, 1, 0, 0, 0, 8830, 8831, 5, 100, 0, 0, 8831, 8832, 3, 1430, 715, 0, 8832, 1021, 1, 0, 0, 0, 8833, 8837, 5, 259, 0, 0, 8834, 8835, 5, 77, 0, 0, 8835, 8837, 5, 259, 0, 0, 8836, 8833, 1, 0, 0, 0, 8836, 8834, 1, 0, 0, 0, 8837, 1023, 1, 0, 0, 0, 8838, 8839, 3, 1012, 506, 0, 8839, 1025, 1, 0, 0, 0, 8840, 8845, 5, 71, 0, 0, 8841, 8842, 3, 1028, 514, 0, 8842, 8843, 3, 1030, 515, 0, 8843, 8846, 1, 0, 0, 0, 8844, 8846, 3, 1672, 836, 0, 8845, 8841, 1, 0, 0, 0, 8845, 8844, 1, 0, 0, 0, 8846, 1027, 1, 0, 0, 0, 8847, 8850, 1, 0, 0, 0, 8848, 8850, 5, 346, 0, 0, 8849, 8847, 1, 0, 0, 0, 8849, 8848, 1, 0, 0, 0, 8850, 1029, 1, 0, 0, 0, 8851, 8853, 7, 56, 0, 0, 8852, 8851, 1, 0, 0, 0, 8852, 8853, 1, 0, 0, 0, 8853, 8854, 1, 0, 0, 0, 8854, 8856, 7, 25, 0, 0, 8855, 8857, 3, 1032, 516, 0, 8856, 8855, 1, 0, 0, 0, 8856, 8857, 1, 0, 0, 0, 8857, 8858, 1, 0, 0, 0, 8858, 8868, 3, 1402, 701, 0, 8859, 8861, 5, 367, 0, 0, 8860, 8862, 3, 1032, 516, 0, 8861, 8860, 1, 0, 0, 0, 8861, 8862, 1, 0, 0, 0, 8862, 8863, 1, 0, 0, 0, 8863, 8868, 3, 1402, 701, 0, 8864, 8865, 5, 92, 0, 0, 8865, 8868, 3, 1402, 701, 0, 8866, 8868, 3, 1402, 701, 0, 8867, 8852, 1, 0, 0, 0, 8867, 8859, 1, 0, 0, 0, 8867, 8864, 1, 0, 0, 0, 8867, 8866, 1, 0, 0, 0, 8868, 1031, 1, 0, 0, 0, 8869, 8870, 5, 92, 0, 0, 8870, 1033, 1, 0, 0, 0, 8871, 8872, 7, 57, 0, 0, 8872, 1035, 1, 0, 0, 0, 8873, 8879, 5, 56, 0, 0, 8874, 8875, 5, 80, 0, 0, 8875, 8876, 5, 2, 0, 0, 8876, 8877, 3, 1326, 663, 0, 8877, 8878, 5, 3, 0, 0, 8878, 8880, 1, 0, 0, 0, 8879, 8874, 1, 0, 0, 0, 8879, 8880, 1, 0, 0, 0, 8880, 1037, 1, 0, 0, 0, 8881, 8882, 5, 30, 0, 0, 8882, 1039, 1, 0, 0, 0, 8883, 8884, 3, 1042, 521, 0, 8884, 1041, 1, 0, 0, 0, 8885, 8886, 5, 83, 0, 0, 8886, 8887, 5, 147, 0, 0, 8887, 8888, 3, 1044, 522, 0, 8888, 1043, 1, 0, 0, 0, 8889, 8894, 3, 1046, 523, 0, 8890, 8891, 5, 6, 0, 0, 8891, 8893, 3, 1046, 523, 0, 8892, 8890, 1, 0, 0, 0, 8893, 8896, 1, 0, 0, 0, 8894, 8892, 1, 0, 0, 0, 8894, 8895, 1, 0, 0, 0, 8895, 1045, 1, 0, 0, 0, 8896, 8894, 1, 0, 0, 0, 8897, 8901, 3, 1334, 667, 0, 8898, 8899, 5, 100, 0, 0, 8899, 8902, 3, 1322, 661, 0, 8900, 8902, 3, 648, 324, 0, 8901, 8898, 1, 0, 0, 0, 8901, 8900, 1, 0, 0, 0, 8901, 8902, 1, 0, 0, 0, 8902, 8904, 1, 0, 0, 0, 8903, 8905, 3, 650, 325, 0, 8904, 8903, 1, 0, 0, 0, 8904, 8905, 1, 0, 0, 0, 8905, 1047, 1, 0, 0, 0, 8906, 8908, 3, 1052, 526, 0, 8907, 8909, 3, 1056, 528, 0, 8908, 8907, 1, 0, 0, 0, 8908, 8909, 1, 0, 0, 0, 8909, 8919, 1, 0, 0, 0, 8910, 8912, 3, 1056, 528, 0, 8911, 8913, 3, 1054, 527, 0, 8912, 8911, 1, 0, 0, 0, 8912, 8913, 1, 0, 0, 0, 8913, 8919, 1, 0, 0, 0, 8914, 8916, 3, 1054, 527, 0, 8915, 8917, 3, 1056, 528, 0, 8916, 8915, 1, 0, 0, 0, 8916, 8917, 1, 0, 0, 0, 8917, 8919, 1, 0, 0, 0, 8918, 8906, 1, 0, 0, 0, 8918, 8910, 1, 0, 0, 0, 8918, 8914, 1, 0, 0, 0, 8919, 1049, 1, 0, 0, 0, 8920, 8921, 3, 1048, 524, 0, 8921, 1051, 1, 0, 0, 0, 8922, 8923, 5, 74, 0, 0, 8923, 8926, 3, 1058, 529, 0, 8924, 8925, 5, 6, 0, 0, 8925, 8927, 3, 1060, 530, 0, 8926, 8924, 1, 0, 0, 0, 8926, 8927, 1, 0, 0, 0, 8927, 1053, 1, 0, 0, 0, 8928, 8929, 5, 61, 0, 0, 8929, 8943, 3, 1068, 534, 0, 8930, 8931, 3, 1062, 531, 0, 8931, 8935, 3, 1066, 533, 0, 8932, 8936, 5, 81, 0, 0, 8933, 8934, 5, 105, 0, 0, 8934, 8936, 5, 467, 0, 0, 8935, 8932, 1, 0, 0, 0, 8935, 8933, 1, 0, 0, 0, 8936, 8944, 1, 0, 0, 0, 8937, 8941, 3, 1066, 533, 0, 8938, 8942, 5, 81, 0, 0, 8939, 8940, 5, 105, 0, 0, 8940, 8942, 5, 467, 0, 0, 8941, 8938, 1, 0, 0, 0, 8941, 8939, 1, 0, 0, 0, 8942, 8944, 1, 0, 0, 0, 8943, 8930, 1, 0, 0, 0, 8943, 8937, 1, 0, 0, 0, 8944, 1055, 1, 0, 0, 0, 8945, 8950, 5, 79, 0, 0, 8946, 8947, 3, 1062, 531, 0, 8947, 8948, 3, 1066, 533, 0, 8948, 8951, 1, 0, 0, 0, 8949, 8951, 3, 1060, 530, 0, 8950, 8946, 1, 0, 0, 0, 8950, 8949, 1, 0, 0, 0, 8951, 1057, 1, 0, 0, 0, 8952, 8955, 3, 1210, 605, 0, 8953, 8955, 5, 30, 0, 0, 8954, 8952, 1, 0, 0, 0, 8954, 8953, 1, 0, 0, 0, 8955, 1059, 1, 0, 0, 0, 8956, 8957, 3, 1210, 605, 0, 8957, 1061, 1, 0, 0, 0, 8958, 8959, 5, 12, 0, 0, 8959, 8964, 3, 1064, 532, 0, 8960, 8961, 5, 13, 0, 0, 8961, 8964, 3, 1064, 532, 0, 8962, 8964, 3, 1252, 626, 0, 8963, 8958, 1, 0, 0, 0, 8963, 8960, 1, 0, 0, 0, 8963, 8962, 1, 0, 0, 0, 8964, 1063, 1, 0, 0, 0, 8965, 8968, 3, 1454, 727, 0, 8966, 8968, 3, 1452, 726, 0, 8967, 8965, 1, 0, 0, 0, 8967, 8966, 1, 0, 0, 0, 8968, 1065, 1, 0, 0, 0, 8969, 8970, 7, 58, 0, 0, 8970, 1067, 1, 0, 0, 0, 8971, 8972, 7, 59, 0, 0, 8972, 1069, 1, 0, 0, 0, 8973, 8974, 5, 66, 0, 0, 8974, 8976, 5, 147, 0, 0, 8975, 8977, 3, 1034, 517, 0, 8976, 8975, 1, 0, 0, 0, 8976, 8977, 1, 0, 0, 0, 8977, 8978, 1, 0, 0, 0, 8978, 8979, 3, 1072, 536, 0, 8979, 1071, 1, 0, 0, 0, 8980, 8985, 3, 1074, 537, 0, 8981, 8982, 5, 6, 0, 0, 8982, 8984, 3, 1074, 537, 0, 8983, 8981, 1, 0, 0, 0, 8984, 8987, 1, 0, 0, 0, 8985, 8983, 1, 0, 0, 0, 8985, 8986, 1, 0, 0, 0, 8986, 1073, 1, 0, 0, 0, 8987, 8985, 1, 0, 0, 0, 8988, 8998, 3, 1334, 667, 0, 8989, 8998, 3, 1076, 538, 0, 8990, 8998, 3, 1080, 540, 0, 8991, 8998, 3, 1078, 539, 0, 8992, 8998, 3, 1082, 541, 0, 8993, 8994, 5, 2, 0, 0, 8994, 8995, 3, 1328, 664, 0, 8995, 8996, 5, 3, 0, 0, 8996, 8998, 1, 0, 0, 0, 8997, 8988, 1, 0, 0, 0, 8997, 8989, 1, 0, 0, 0, 8997, 8990, 1, 0, 0, 0, 8997, 8991, 1, 0, 0, 0, 8997, 8992, 1, 0, 0, 0, 8997, 8993, 1, 0, 0, 0, 8998, 1075, 1, 0, 0, 0, 8999, 9000, 5, 2, 0, 0, 9000, 9001, 5, 3, 0, 0, 9001, 1077, 1, 0, 0, 0, 9002, 9003, 5, 468, 0, 0, 9003, 9004, 5, 2, 0, 0, 9004, 9005, 3, 1328, 664, 0, 9005, 9006, 5, 3, 0, 0, 9006, 1079, 1, 0, 0, 0, 9007, 9008, 5, 469, 0, 0, 9008, 9009, 5, 2, 0, 0, 9009, 9010, 3, 1328, 664, 0, 9010, 9011, 5, 3, 0, 0, 9011, 1081, 1, 0, 0, 0, 9012, 9013, 5, 470, 0, 0, 9013, 9014, 5, 471, 0, 0, 9014, 9015, 5, 2, 0, 0, 9015, 9016, 3, 1072, 536, 0, 9016, 9017, 5, 3, 0, 0, 9017, 1083, 1, 0, 0, 0, 9018, 9019, 5, 67, 0, 0, 9019, 9020, 3, 1210, 605, 0, 9020, 1085, 1, 0, 0, 0, 9021, 9026, 3, 1090, 545, 0, 9022, 9023, 5, 62, 0, 0, 9023, 9024, 5, 300, 0, 0, 9024, 9026, 5, 81, 0, 0, 9025, 9021, 1, 0, 0, 0, 9025, 9022, 1, 0, 0, 0, 9026, 1087, 1, 0, 0, 0, 9027, 9028, 3, 1086, 543, 0, 9028, 1089, 1, 0, 0, 0, 9029, 9031, 3, 1092, 546, 0, 9030, 9029, 1, 0, 0, 0, 9031, 9032, 1, 0, 0, 0, 9032, 9030, 1, 0, 0, 0, 9032, 9033, 1, 0, 0, 0, 9033, 1091, 1, 0, 0, 0, 9034, 9036, 3, 1094, 547, 0, 9035, 9037, 3, 1096, 548, 0, 9036, 9035, 1, 0, 0, 0, 9036, 9037, 1, 0, 0, 0, 9037, 9039, 1, 0, 0, 0, 9038, 9040, 3, 978, 489, 0, 9039, 9038, 1, 0, 0, 0, 9039, 9040, 1, 0, 0, 0, 9040, 1093, 1, 0, 0, 0, 9041, 9051, 5, 62, 0, 0, 9042, 9043, 5, 269, 0, 0, 9043, 9045, 5, 245, 0, 0, 9044, 9042, 1, 0, 0, 0, 9044, 9045, 1, 0, 0, 0, 9045, 9046, 1, 0, 0, 0, 9046, 9052, 5, 369, 0, 0, 9047, 9049, 5, 245, 0, 0, 9048, 9047, 1, 0, 0, 0, 9048, 9049, 1, 0, 0, 0, 9049, 9050, 1, 0, 0, 0, 9050, 9052, 5, 334, 0, 0, 9051, 9044, 1, 0, 0, 0, 9051, 9048, 1, 0, 0, 0, 9052, 1095, 1, 0, 0, 0, 9053, 9054, 5, 275, 0, 0, 9054, 9055, 3, 1388, 694, 0, 9055, 1097, 1, 0, 0, 0, 9056, 9057, 5, 422, 0, 0, 9057, 9058, 5, 2, 0, 0, 9058, 9059, 3, 1326, 663, 0, 9059, 9067, 5, 3, 0, 0, 9060, 9061, 5, 6, 0, 0, 9061, 9062, 5, 2, 0, 0, 9062, 9063, 3, 1326, 663, 0, 9063, 9064, 5, 3, 0, 0, 9064, 9066, 1, 0, 0, 0, 9065, 9060, 1, 0, 0, 0, 9066, 9069, 1, 0, 0, 0, 9067, 9065, 1, 0, 0, 0, 9067, 9068, 1, 0, 0, 0, 9068, 1099, 1, 0, 0, 0, 9069, 9067, 1, 0, 0, 0, 9070, 9071, 5, 64, 0, 0, 9071, 9072, 3, 1102, 551, 0, 9072, 1101, 1, 0, 0, 0, 9073, 9078, 3, 1104, 552, 0, 9074, 9075, 5, 6, 0, 0, 9075, 9077, 3, 1104, 552, 0, 9076, 9074, 1, 0, 0, 0, 9077, 9080, 1, 0, 0, 0, 9078, 9076, 1, 0, 0, 0, 9078, 9079, 1, 0, 0, 0, 9079, 1103, 1, 0, 0, 0, 9080, 9078, 1, 0, 0, 0, 9081, 9084, 3, 1116, 558, 0, 9082, 9084, 3, 1118, 559, 0, 9083, 9081, 1, 0, 0, 0, 9083, 9082, 1, 0, 0, 0, 9084, 9086, 1, 0, 0, 0, 9085, 9087, 3, 1108, 554, 0, 9086, 9085, 1, 0, 0, 0, 9086, 9087, 1, 0, 0, 0, 9087, 9089, 1, 0, 0, 0, 9088, 9090, 3, 1128, 564, 0, 9089, 9088, 1, 0, 0, 0, 9089, 9090, 1, 0, 0, 0, 9090, 9143, 1, 0, 0, 0, 9091, 9093, 3, 1132, 566, 0, 9092, 9094, 3, 1110, 555, 0, 9093, 9092, 1, 0, 0, 0, 9093, 9094, 1, 0, 0, 0, 9094, 9143, 1, 0, 0, 0, 9095, 9097, 3, 1152, 576, 0, 9096, 9098, 3, 1108, 554, 0, 9097, 9096, 1, 0, 0, 0, 9097, 9098, 1, 0, 0, 0, 9098, 9143, 1, 0, 0, 0, 9099, 9101, 3, 1000, 500, 0, 9100, 9102, 3, 1108, 554, 0, 9101, 9100, 1, 0, 0, 0, 9101, 9102, 1, 0, 0, 0, 9102, 9143, 1, 0, 0, 0, 9103, 9116, 5, 72, 0, 0, 9104, 9106, 3, 1152, 576, 0, 9105, 9107, 3, 1108, 554, 0, 9106, 9105, 1, 0, 0, 0, 9106, 9107, 1, 0, 0, 0, 9107, 9117, 1, 0, 0, 0, 9108, 9110, 3, 1132, 566, 0, 9109, 9111, 3, 1110, 555, 0, 9110, 9109, 1, 0, 0, 0, 9110, 9111, 1, 0, 0, 0, 9111, 9117, 1, 0, 0, 0, 9112, 9114, 3, 1000, 500, 0, 9113, 9115, 3, 1108, 554, 0, 9114, 9113, 1, 0, 0, 0, 9114, 9115, 1, 0, 0, 0, 9115, 9117, 1, 0, 0, 0, 9116, 9104, 1, 0, 0, 0, 9116, 9108, 1, 0, 0, 0, 9116, 9112, 1, 0, 0, 0, 9117, 9143, 1, 0, 0, 0, 9118, 9119, 5, 2, 0, 0, 9119, 9136, 3, 1104, 552, 0, 9120, 9121, 5, 110, 0, 0, 9121, 9122, 5, 118, 0, 0, 9122, 9137, 3, 1104, 552, 0, 9123, 9125, 5, 121, 0, 0, 9124, 9126, 3, 1112, 556, 0, 9125, 9124, 1, 0, 0, 0, 9125, 9126, 1, 0, 0, 0, 9126, 9127, 1, 0, 0, 0, 9127, 9128, 5, 118, 0, 0, 9128, 9137, 3, 1104, 552, 0, 9129, 9131, 3, 1112, 556, 0, 9130, 9129, 1, 0, 0, 0, 9130, 9131, 1, 0, 0, 0, 9131, 9132, 1, 0, 0, 0, 9132, 9133, 5, 118, 0, 0, 9133, 9134, 3, 1104, 552, 0, 9134, 9135, 3, 1114, 557, 0, 9135, 9137, 1, 0, 0, 0, 9136, 9120, 1, 0, 0, 0, 9136, 9123, 1, 0, 0, 0, 9136, 9130, 1, 0, 0, 0, 9136, 9137, 1, 0, 0, 0, 9137, 9138, 1, 0, 0, 0, 9138, 9140, 5, 3, 0, 0, 9139, 9141, 3, 1108, 554, 0, 9140, 9139, 1, 0, 0, 0, 9140, 9141, 1, 0, 0, 0, 9141, 9143, 1, 0, 0, 0, 9142, 9083, 1, 0, 0, 0, 9142, 9091, 1, 0, 0, 0, 9142, 9095, 1, 0, 0, 0, 9142, 9099, 1, 0, 0, 0, 9142, 9103, 1, 0, 0, 0, 9142, 9118, 1, 0, 0, 0, 9143, 9162, 1, 0, 0, 0, 9144, 9145, 5, 110, 0, 0, 9145, 9146, 5, 118, 0, 0, 9146, 9161, 3, 1104, 552, 0, 9147, 9149, 5, 121, 0, 0, 9148, 9150, 3, 1112, 556, 0, 9149, 9148, 1, 0, 0, 0, 9149, 9150, 1, 0, 0, 0, 9150, 9151, 1, 0, 0, 0, 9151, 9152, 5, 118, 0, 0, 9152, 9161, 3, 1104, 552, 0, 9153, 9155, 3, 1112, 556, 0, 9154, 9153, 1, 0, 0, 0, 9154, 9155, 1, 0, 0, 0, 9155, 9156, 1, 0, 0, 0, 9156, 9157, 5, 118, 0, 0, 9157, 9158, 3, 1104, 552, 0, 9158, 9159, 3, 1114, 557, 0, 9159, 9161, 1, 0, 0, 0, 9160, 9144, 1, 0, 0, 0, 9160, 9147, 1, 0, 0, 0, 9160, 9154, 1, 0, 0, 0, 9161, 9164, 1, 0, 0, 0, 9162, 9160, 1, 0, 0, 0, 9162, 9163, 1, 0, 0, 0, 9163, 1105, 1, 0, 0, 0, 9164, 9162, 1, 0, 0, 0, 9165, 9167, 5, 36, 0, 0, 9166, 9165, 1, 0, 0, 0, 9166, 9167, 1, 0, 0, 0, 9167, 9168, 1, 0, 0, 0, 9168, 9173, 3, 1472, 736, 0, 9169, 9170, 5, 2, 0, 0, 9170, 9171, 3, 1414, 707, 0, 9171, 9172, 5, 3, 0, 0, 9172, 9174, 1, 0, 0, 0, 9173, 9169, 1, 0, 0, 0, 9173, 9174, 1, 0, 0, 0, 9174, 1107, 1, 0, 0, 0, 9175, 9176, 3, 1106, 553, 0, 9176, 1109, 1, 0, 0, 0, 9177, 9190, 3, 1106, 553, 0, 9178, 9180, 5, 36, 0, 0, 9179, 9181, 3, 1472, 736, 0, 9180, 9179, 1, 0, 0, 0, 9180, 9181, 1, 0, 0, 0, 9181, 9184, 1, 0, 0, 0, 9182, 9184, 3, 1472, 736, 0, 9183, 9178, 1, 0, 0, 0, 9183, 9182, 1, 0, 0, 0, 9184, 9185, 1, 0, 0, 0, 9185, 9186, 5, 2, 0, 0, 9186, 9187, 3, 1148, 574, 0, 9187, 9188, 5, 3, 0, 0, 9188, 9190, 1, 0, 0, 0, 9189, 9177, 1, 0, 0, 0, 9189, 9183, 1, 0, 0, 0, 9190, 1111, 1, 0, 0, 0, 9191, 9193, 7, 60, 0, 0, 9192, 9194, 5, 123, 0, 0, 9193, 9192, 1, 0, 0, 0, 9193, 9194, 1, 0, 0, 0, 9194, 1113, 1, 0, 0, 0, 9195, 9196, 5, 100, 0, 0, 9196, 9197, 5, 2, 0, 0, 9197, 9198, 3, 244, 122, 0, 9198, 9199, 5, 3, 0, 0, 9199, 9203, 1, 0, 0, 0, 9200, 9201, 5, 80, 0, 0, 9201, 9203, 3, 1210, 605, 0, 9202, 9195, 1, 0, 0, 0, 9202, 9200, 1, 0, 0, 0, 9203, 1115, 1, 0, 0, 0, 9204, 9206, 5, 81, 0, 0, 9205, 9204, 1, 0, 0, 0, 9205, 9206, 1, 0, 0, 0, 9206, 9207, 1, 0, 0, 0, 9207, 9209, 3, 1404, 702, 0, 9208, 9210, 5, 9, 0, 0, 9209, 9208, 1, 0, 0, 0, 9209, 9210, 1, 0, 0, 0, 9210, 9226, 1, 0, 0, 0, 9211, 9217, 5, 81, 0, 0, 9212, 9218, 3, 1404, 702, 0, 9213, 9214, 5, 2, 0, 0, 9214, 9215, 3, 1404, 702, 0, 9215, 9216, 5, 3, 0, 0, 9216, 9218, 1, 0, 0, 0, 9217, 9212, 1, 0, 0, 0, 9217, 9213, 1, 0, 0, 0, 9218, 9226, 1, 0, 0, 0, 9219, 9220, 5, 68, 0, 0, 9220, 9223, 5, 323, 0, 0, 9221, 9224, 3, 1420, 710, 0, 9222, 9224, 5, 111, 0, 0, 9223, 9221, 1, 0, 0, 0, 9223, 9222, 1, 0, 0, 0, 9224, 9226, 1, 0, 0, 0, 9225, 9205, 1, 0, 0, 0, 9225, 9211, 1, 0, 0, 0, 9225, 9219, 1, 0, 0, 0, 9226, 1117, 1, 0, 0, 0, 9227, 9229, 5, 81, 0, 0, 9228, 9227, 1, 0, 0, 0, 9228, 9229, 1, 0, 0, 0, 9229, 9230, 1, 0, 0, 0, 9230, 9232, 3, 1408, 704, 0, 9231, 9233, 5, 9, 0, 0, 9232, 9231, 1, 0, 0, 0, 9232, 9233, 1, 0, 0, 0, 9233, 1119, 1, 0, 0, 0, 9234, 9236, 5, 92, 0, 0, 9235, 9237, 5, 81, 0, 0, 9236, 9235, 1, 0, 0, 0, 9236, 9237, 1, 0, 0, 0, 9237, 9238, 1, 0, 0, 0, 9238, 9240, 3, 1404, 702, 0, 9239, 9241, 5, 9, 0, 0, 9240, 9239, 1, 0, 0, 0, 9240, 9241, 1, 0, 0, 0, 9241, 9246, 1, 0, 0, 0, 9242, 9243, 5, 2, 0, 0, 9243, 9244, 3, 244, 122, 0, 9244, 9245, 5, 3, 0, 0, 9245, 9247, 1, 0, 0, 0, 9246, 9242, 1, 0, 0, 0, 9246, 9247, 1, 0, 0, 0, 9247, 9249, 1, 0, 0, 0, 9248, 9250, 3, 1142, 571, 0, 9249, 9248, 1, 0, 0, 0, 9249, 9250, 1, 0, 0, 0, 9250, 9268, 1, 0, 0, 0, 9251, 9252, 5, 92, 0, 0, 9252, 9258, 5, 81, 0, 0, 9253, 9259, 3, 1404, 702, 0, 9254, 9255, 5, 2, 0, 0, 9255, 9256, 3, 1404, 702, 0, 9256, 9257, 5, 3, 0, 0, 9257, 9259, 1, 0, 0, 0, 9258, 9253, 1, 0, 0, 0, 9258, 9254, 1, 0, 0, 0, 9259, 9268, 1, 0, 0, 0, 9260, 9261, 5, 350, 0, 0, 9261, 9262, 5, 68, 0, 0, 9262, 9265, 5, 323, 0, 0, 9263, 9266, 3, 1420, 710, 0, 9264, 9266, 5, 111, 0, 0, 9265, 9263, 1, 0, 0, 0, 9265, 9264, 1, 0, 0, 0, 9266, 9268, 1, 0, 0, 0, 9267, 9234, 1, 0, 0, 0, 9267, 9251, 1, 0, 0, 0, 9267, 9260, 1, 0, 0, 0, 9268, 1121, 1, 0, 0, 0, 9269, 9274, 3, 1116, 558, 0, 9270, 9271, 5, 6, 0, 0, 9271, 9273, 3, 1116, 558, 0, 9272, 9270, 1, 0, 0, 0, 9273, 9276, 1, 0, 0, 0, 9274, 9272, 1, 0, 0, 0, 9274, 9275, 1, 0, 0, 0, 9275, 1123, 1, 0, 0, 0, 9276, 9274, 1, 0, 0, 0, 9277, 9282, 3, 1120, 560, 0, 9278, 9279, 5, 6, 0, 0, 9279, 9281, 3, 1120, 560, 0, 9280, 9278, 1, 0, 0, 0, 9281, 9284, 1, 0, 0, 0, 9282, 9280, 1, 0, 0, 0, 9282, 9283, 1, 0, 0, 0, 9283, 1125, 1, 0, 0, 0, 9284, 9282, 1, 0, 0, 0, 9285, 9290, 3, 1116, 558, 0, 9286, 9288, 5, 36, 0, 0, 9287, 9286, 1, 0, 0, 0, 9287, 9288, 1, 0, 0, 0, 9288, 9289, 1, 0, 0, 0, 9289, 9291, 3, 1472, 736, 0, 9290, 9287, 1, 0, 0, 0, 9290, 9291, 1, 0, 0, 0, 9291, 1127, 1, 0, 0, 0, 9292, 9293, 5, 472, 0, 0, 9293, 9294, 3, 1442, 721, 0, 9294, 9295, 5, 2, 0, 0, 9295, 9296, 3, 1326, 663, 0, 9296, 9298, 5, 3, 0, 0, 9297, 9299, 3, 1130, 565, 0, 9298, 9297, 1, 0, 0, 0, 9298, 9299, 1, 0, 0, 0, 9299, 1129, 1, 0, 0, 0, 9300, 9301, 5, 310, 0, 0, 9301, 9302, 5, 2, 0, 0, 9302, 9303, 3, 1210, 605, 0, 9303, 9304, 5, 3, 0, 0, 9304, 1131, 1, 0, 0, 0, 9305, 9307, 3, 1260, 630, 0, 9306, 9308, 3, 1140, 570, 0, 9307, 9306, 1, 0, 0, 0, 9307, 9308, 1, 0, 0, 0, 9308, 9318, 1, 0, 0, 0, 9309, 9310, 5, 320, 0, 0, 9310, 9311, 5, 64, 0, 0, 9311, 9312, 5, 2, 0, 0, 9312, 9313, 3, 1136, 568, 0, 9313, 9315, 5, 3, 0, 0, 9314, 9316, 3, 1140, 570, 0, 9315, 9314, 1, 0, 0, 0, 9315, 9316, 1, 0, 0, 0, 9316, 9318, 1, 0, 0, 0, 9317, 9305, 1, 0, 0, 0, 9317, 9309, 1, 0, 0, 0, 9318, 1133, 1, 0, 0, 0, 9319, 9321, 3, 1260, 630, 0, 9320, 9322, 3, 1138, 569, 0, 9321, 9320, 1, 0, 0, 0, 9321, 9322, 1, 0, 0, 0, 9322, 1135, 1, 0, 0, 0, 9323, 9328, 3, 1134, 567, 0, 9324, 9325, 5, 6, 0, 0, 9325, 9327, 3, 1134, 567, 0, 9326, 9324, 1, 0, 0, 0, 9327, 9330, 1, 0, 0, 0, 9328, 9326, 1, 0, 0, 0, 9328, 9329, 1, 0, 0, 0, 9329, 1137, 1, 0, 0, 0, 9330, 9328, 1, 0, 0, 0, 9331, 9332, 5, 36, 0, 0, 9332, 9333, 5, 2, 0, 0, 9333, 9334, 3, 1148, 574, 0, 9334, 9335, 5, 3, 0, 0, 9335, 1139, 1, 0, 0, 0, 9336, 9337, 5, 105, 0, 0, 9337, 9338, 5, 473, 0, 0, 9338, 1141, 1, 0, 0, 0, 9339, 9340, 5, 103, 0, 0, 9340, 9341, 3, 1334, 667, 0, 9341, 1143, 1, 0, 0, 0, 9342, 9347, 5, 103, 0, 0, 9343, 9344, 5, 434, 0, 0, 9344, 9345, 5, 275, 0, 0, 9345, 9348, 3, 992, 496, 0, 9346, 9348, 3, 1210, 605, 0, 9347, 9343, 1, 0, 0, 0, 9347, 9346, 1, 0, 0, 0, 9348, 1145, 1, 0, 0, 0, 9349, 9350, 3, 1148, 574, 0, 9350, 1147, 1, 0, 0, 0, 9351, 9356, 3, 1150, 575, 0, 9352, 9353, 5, 6, 0, 0, 9353, 9355, 3, 1150, 575, 0, 9354, 9352, 1, 0, 0, 0, 9355, 9358, 1, 0, 0, 0, 9356, 9354, 1, 0, 0, 0, 9356, 9357, 1, 0, 0, 0, 9357, 1149, 1, 0, 0, 0, 9358, 9356, 1, 0, 0, 0, 9359, 9360, 3, 1472, 736, 0, 9360, 9362, 3, 1166, 583, 0, 9361, 9363, 3, 126, 63, 0, 9362, 9361, 1, 0, 0, 0, 9362, 9363, 1, 0, 0, 0, 9363, 1151, 1, 0, 0, 0, 9364, 9365, 5, 474, 0, 0, 9365, 9381, 5, 2, 0, 0, 9366, 9367, 3, 1252, 626, 0, 9367, 9368, 3, 1278, 639, 0, 9368, 9369, 5, 475, 0, 0, 9369, 9370, 3, 1154, 577, 0, 9370, 9382, 1, 0, 0, 0, 9371, 9372, 5, 476, 0, 0, 9372, 9373, 5, 2, 0, 0, 9373, 9374, 3, 1162, 581, 0, 9374, 9375, 5, 3, 0, 0, 9375, 9376, 5, 6, 0, 0, 9376, 9377, 3, 1252, 626, 0, 9377, 9378, 3, 1278, 639, 0, 9378, 9379, 5, 475, 0, 0, 9379, 9380, 3, 1154, 577, 0, 9380, 9382, 1, 0, 0, 0, 9381, 9366, 1, 0, 0, 0, 9381, 9371, 1, 0, 0, 0, 9382, 9383, 1, 0, 0, 0, 9383, 9384, 5, 3, 0, 0, 9384, 1153, 1, 0, 0, 0, 9385, 9390, 3, 1156, 578, 0, 9386, 9387, 5, 6, 0, 0, 9387, 9389, 3, 1156, 578, 0, 9388, 9386, 1, 0, 0, 0, 9389, 9392, 1, 0, 0, 0, 9390, 9388, 1, 0, 0, 0, 9390, 9391, 1, 0, 0, 0, 9391, 1155, 1, 0, 0, 0, 9392, 9390, 1, 0, 0, 0, 9393, 9400, 3, 1472, 736, 0, 9394, 9396, 3, 1166, 583, 0, 9395, 9397, 3, 1158, 579, 0, 9396, 9395, 1, 0, 0, 0, 9396, 9397, 1, 0, 0, 0, 9397, 9401, 1, 0, 0, 0, 9398, 9399, 5, 62, 0, 0, 9399, 9401, 5, 473, 0, 0, 9400, 9394, 1, 0, 0, 0, 9400, 9398, 1, 0, 0, 0, 9401, 1157, 1, 0, 0, 0, 9402, 9404, 3, 1160, 580, 0, 9403, 9402, 1, 0, 0, 0, 9404, 9405, 1, 0, 0, 0, 9405, 9403, 1, 0, 0, 0, 9405, 9406, 1, 0, 0, 0, 9406, 1159, 1, 0, 0, 0, 9407, 9408, 5, 53, 0, 0, 9408, 9416, 3, 1210, 605, 0, 9409, 9410, 3, 1490, 745, 0, 9410, 9411, 3, 1210, 605, 0, 9411, 9416, 1, 0, 0, 0, 9412, 9413, 5, 77, 0, 0, 9413, 9416, 5, 78, 0, 0, 9414, 9416, 5, 78, 0, 0, 9415, 9407, 1, 0, 0, 0, 9415, 9409, 1, 0, 0, 0, 9415, 9412, 1, 0, 0, 0, 9415, 9414, 1, 0, 0, 0, 9416, 1161, 1, 0, 0, 0, 9417, 9422, 3, 1164, 582, 0, 9418, 9419, 5, 6, 0, 0, 9419, 9421, 3, 1164, 582, 0, 9420, 9418, 1, 0, 0, 0, 9421, 9424, 1, 0, 0, 0, 9422, 9420, 1, 0, 0, 0, 9422, 9423, 1, 0, 0, 0, 9423, 1163, 1, 0, 0, 0, 9424, 9422, 1, 0, 0, 0, 9425, 9426, 3, 1250, 625, 0, 9426, 9427, 5, 36, 0, 0, 9427, 9428, 3, 1488, 744, 0, 9428, 9432, 1, 0, 0, 0, 9429, 9430, 5, 53, 0, 0, 9430, 9432, 3, 1250, 625, 0, 9431, 9425, 1, 0, 0, 0, 9431, 9429, 1, 0, 0, 0, 9432, 1165, 1, 0, 0, 0, 9433, 9435, 5, 415, 0, 0, 9434, 9433, 1, 0, 0, 0, 9434, 9435, 1, 0, 0, 0, 9435, 9436, 1, 0, 0, 0, 9436, 9445, 3, 1170, 585, 0, 9437, 9446, 3, 1168, 584, 0, 9438, 9443, 5, 35, 0, 0, 9439, 9440, 5, 4, 0, 0, 9440, 9441, 3, 1454, 727, 0, 9441, 9442, 5, 5, 0, 0, 9442, 9444, 1, 0, 0, 0, 9443, 9439, 1, 0, 0, 0, 9443, 9444, 1, 0, 0, 0, 9444, 9446, 1, 0, 0, 0, 9445, 9437, 1, 0, 0, 0, 9445, 9438, 1, 0, 0, 0, 9446, 9452, 1, 0, 0, 0, 9447, 9448, 3, 1410, 705, 0, 9448, 9449, 5, 27, 0, 0, 9449, 9450, 7, 61, 0, 0, 9450, 9452, 1, 0, 0, 0, 9451, 9434, 1, 0, 0, 0, 9451, 9447, 1, 0, 0, 0, 9452, 1167, 1, 0, 0, 0, 9453, 9455, 5, 4, 0, 0, 9454, 9456, 3, 1454, 727, 0, 9455, 9454, 1, 0, 0, 0, 9455, 9456, 1, 0, 0, 0, 9456, 9457, 1, 0, 0, 0, 9457, 9459, 5, 5, 0, 0, 9458, 9453, 1, 0, 0, 0, 9459, 9462, 1, 0, 0, 0, 9460, 9458, 1, 0, 0, 0, 9460, 9461, 1, 0, 0, 0, 9461, 1169, 1, 0, 0, 0, 9462, 9460, 1, 0, 0, 0, 9463, 9479, 3, 1174, 587, 0, 9464, 9479, 3, 1178, 589, 0, 9465, 9479, 3, 1182, 591, 0, 9466, 9479, 3, 1190, 595, 0, 9467, 9479, 3, 1198, 599, 0, 9468, 9476, 3, 1200, 600, 0, 9469, 9471, 3, 1204, 602, 0, 9470, 9469, 1, 0, 0, 0, 9470, 9471, 1, 0, 0, 0, 9471, 9477, 1, 0, 0, 0, 9472, 9473, 5, 2, 0, 0, 9473, 9474, 3, 1454, 727, 0, 9474, 9475, 5, 3, 0, 0, 9475, 9477, 1, 0, 0, 0, 9476, 9470, 1, 0, 0, 0, 9476, 9472, 1, 0, 0, 0, 9477, 9479, 1, 0, 0, 0, 9478, 9463, 1, 0, 0, 0, 9478, 9464, 1, 0, 0, 0, 9478, 9465, 1, 0, 0, 0, 9478, 9466, 1, 0, 0, 0, 9478, 9467, 1, 0, 0, 0, 9478, 9468, 1, 0, 0, 0, 9479, 1171, 1, 0, 0, 0, 9480, 9485, 3, 1178, 589, 0, 9481, 9485, 3, 1184, 592, 0, 9482, 9485, 3, 1192, 596, 0, 9483, 9485, 3, 1198, 599, 0, 9484, 9480, 1, 0, 0, 0, 9484, 9481, 1, 0, 0, 0, 9484, 9482, 1, 0, 0, 0, 9484, 9483, 1, 0, 0, 0, 9485, 1173, 1, 0, 0, 0, 9486, 9488, 3, 1480, 740, 0, 9487, 9489, 3, 558, 279, 0, 9488, 9487, 1, 0, 0, 0, 9488, 9489, 1, 0, 0, 0, 9489, 9491, 1, 0, 0, 0, 9490, 9492, 3, 1176, 588, 0, 9491, 9490, 1, 0, 0, 0, 9491, 9492, 1, 0, 0, 0, 9492, 1175, 1, 0, 0, 0, 9493, 9494, 5, 2, 0, 0, 9494, 9495, 3, 1326, 663, 0, 9495, 9496, 5, 3, 0, 0, 9496, 1177, 1, 0, 0, 0, 9497, 9522, 5, 401, 0, 0, 9498, 9522, 5, 402, 0, 0, 9499, 9522, 5, 416, 0, 0, 9500, 9522, 5, 388, 0, 0, 9501, 9522, 5, 413, 0, 0, 9502, 9504, 5, 398, 0, 0, 9503, 9505, 3, 1180, 590, 0, 9504, 9503, 1, 0, 0, 0, 9504, 9505, 1, 0, 0, 0, 9505, 9522, 1, 0, 0, 0, 9506, 9507, 5, 190, 0, 0, 9507, 9522, 5, 412, 0, 0, 9508, 9510, 5, 395, 0, 0, 9509, 9511, 3, 1176, 588, 0, 9510, 9509, 1, 0, 0, 0, 9510, 9511, 1, 0, 0, 0, 9511, 9522, 1, 0, 0, 0, 9512, 9514, 5, 394, 0, 0, 9513, 9515, 3, 1176, 588, 0, 9514, 9513, 1, 0, 0, 0, 9514, 9515, 1, 0, 0, 0, 9515, 9522, 1, 0, 0, 0, 9516, 9518, 5, 409, 0, 0, 9517, 9519, 3, 1176, 588, 0, 9518, 9517, 1, 0, 0, 0, 9518, 9519, 1, 0, 0, 0, 9519, 9522, 1, 0, 0, 0, 9520, 9522, 5, 390, 0, 0, 9521, 9497, 1, 0, 0, 0, 9521, 9498, 1, 0, 0, 0, 9521, 9499, 1, 0, 0, 0, 9521, 9500, 1, 0, 0, 0, 9521, 9501, 1, 0, 0, 0, 9521, 9502, 1, 0, 0, 0, 9521, 9506, 1, 0, 0, 0, 9521, 9508, 1, 0, 0, 0, 9521, 9512, 1, 0, 0, 0, 9521, 9516, 1, 0, 0, 0, 9521, 9520, 1, 0, 0, 0, 9522, 1179, 1, 0, 0, 0, 9523, 9524, 5, 2, 0, 0, 9524, 9525, 3, 1454, 727, 0, 9525, 9526, 5, 3, 0, 0, 9526, 1181, 1, 0, 0, 0, 9527, 9530, 3, 1186, 593, 0, 9528, 9530, 3, 1188, 594, 0, 9529, 9527, 1, 0, 0, 0, 9529, 9528, 1, 0, 0, 0, 9530, 1183, 1, 0, 0, 0, 9531, 9534, 3, 1186, 593, 0, 9532, 9534, 3, 1188, 594, 0, 9533, 9531, 1, 0, 0, 0, 9533, 9532, 1, 0, 0, 0, 9534, 1185, 1, 0, 0, 0, 9535, 9537, 5, 389, 0, 0, 9536, 9538, 3, 1196, 598, 0, 9537, 9536, 1, 0, 0, 0, 9537, 9538, 1, 0, 0, 0, 9538, 9539, 1, 0, 0, 0, 9539, 9540, 5, 2, 0, 0, 9540, 9541, 3, 1326, 663, 0, 9541, 9542, 5, 3, 0, 0, 9542, 1187, 1, 0, 0, 0, 9543, 9545, 5, 389, 0, 0, 9544, 9546, 3, 1196, 598, 0, 9545, 9544, 1, 0, 0, 0, 9545, 9546, 1, 0, 0, 0, 9546, 1189, 1, 0, 0, 0, 9547, 9552, 3, 1194, 597, 0, 9548, 9549, 5, 2, 0, 0, 9549, 9550, 3, 1454, 727, 0, 9550, 9551, 5, 3, 0, 0, 9551, 9553, 1, 0, 0, 0, 9552, 9548, 1, 0, 0, 0, 9552, 9553, 1, 0, 0, 0, 9553, 1191, 1, 0, 0, 0, 9554, 9559, 3, 1194, 597, 0, 9555, 9556, 5, 2, 0, 0, 9556, 9557, 3, 1454, 727, 0, 9557, 9558, 5, 3, 0, 0, 9558, 9560, 1, 0, 0, 0, 9559, 9555, 1, 0, 0, 0, 9559, 9560, 1, 0, 0, 0, 9560, 1193, 1, 0, 0, 0, 9561, 9563, 7, 62, 0, 0, 9562, 9564, 3, 1196, 598, 0, 9563, 9562, 1, 0, 0, 0, 9563, 9564, 1, 0, 0, 0, 9564, 9572, 1, 0, 0, 0, 9565, 9572, 5, 423, 0, 0, 9566, 9567, 5, 405, 0, 0, 9567, 9569, 7, 63, 0, 0, 9568, 9570, 3, 1196, 598, 0, 9569, 9568, 1, 0, 0, 0, 9569, 9570, 1, 0, 0, 0, 9570, 9572, 1, 0, 0, 0, 9571, 9561, 1, 0, 0, 0, 9571, 9565, 1, 0, 0, 0, 9571, 9566, 1, 0, 0, 0, 9572, 1195, 1, 0, 0, 0, 9573, 9574, 5, 374, 0, 0, 9574, 1197, 1, 0, 0, 0, 9575, 9580, 7, 64, 0, 0, 9576, 9577, 5, 2, 0, 0, 9577, 9578, 3, 1454, 727, 0, 9578, 9579, 5, 3, 0, 0, 9579, 9581, 1, 0, 0, 0, 9580, 9576, 1, 0, 0, 0, 9580, 9581, 1, 0, 0, 0, 9581, 9583, 1, 0, 0, 0, 9582, 9584, 3, 1202, 601, 0, 9583, 9582, 1, 0, 0, 0, 9583, 9584, 1, 0, 0, 0, 9584, 1199, 1, 0, 0, 0, 9585, 9586, 5, 403, 0, 0, 9586, 1201, 1, 0, 0, 0, 9587, 9588, 5, 105, 0, 0, 9588, 9589, 5, 418, 0, 0, 9589, 9594, 5, 386, 0, 0, 9590, 9591, 5, 379, 0, 0, 9591, 9592, 5, 418, 0, 0, 9592, 9594, 5, 386, 0, 0, 9593, 9587, 1, 0, 0, 0, 9593, 9590, 1, 0, 0, 0, 9594, 1203, 1, 0, 0, 0, 9595, 9621, 5, 384, 0, 0, 9596, 9621, 5, 264, 0, 0, 9597, 9621, 5, 176, 0, 0, 9598, 9621, 5, 218, 0, 0, 9599, 9621, 5, 261, 0, 0, 9600, 9621, 3, 1206, 603, 0, 9601, 9602, 5, 384, 0, 0, 9602, 9603, 5, 94, 0, 0, 9603, 9621, 5, 264, 0, 0, 9604, 9605, 5, 176, 0, 0, 9605, 9609, 5, 94, 0, 0, 9606, 9610, 5, 218, 0, 0, 9607, 9610, 5, 261, 0, 0, 9608, 9610, 3, 1206, 603, 0, 9609, 9606, 1, 0, 0, 0, 9609, 9607, 1, 0, 0, 0, 9609, 9608, 1, 0, 0, 0, 9610, 9621, 1, 0, 0, 0, 9611, 9612, 5, 218, 0, 0, 9612, 9615, 5, 94, 0, 0, 9613, 9616, 5, 261, 0, 0, 9614, 9616, 3, 1206, 603, 0, 9615, 9613, 1, 0, 0, 0, 9615, 9614, 1, 0, 0, 0, 9616, 9621, 1, 0, 0, 0, 9617, 9618, 5, 261, 0, 0, 9618, 9619, 5, 94, 0, 0, 9619, 9621, 3, 1206, 603, 0, 9620, 9595, 1, 0, 0, 0, 9620, 9596, 1, 0, 0, 0, 9620, 9597, 1, 0, 0, 0, 9620, 9598, 1, 0, 0, 0, 9620, 9599, 1, 0, 0, 0, 9620, 9600, 1, 0, 0, 0, 9620, 9601, 1, 0, 0, 0, 9620, 9604, 1, 0, 0, 0, 9620, 9611, 1, 0, 0, 0, 9620, 9617, 1, 0, 0, 0, 9621, 1205, 1, 0, 0, 0, 9622, 9627, 5, 326, 0, 0, 9623, 9624, 5, 2, 0, 0, 9624, 9625, 3, 1454, 727, 0, 9625, 9626, 5, 3, 0, 0, 9626, 9628, 1, 0, 0, 0, 9627, 9623, 1, 0, 0, 0, 9627, 9628, 1, 0, 0, 0, 9628, 1207, 1, 0, 0, 0, 9629, 9630, 5, 197, 0, 0, 9630, 9631, 3, 1210, 605, 0, 9631, 1209, 1, 0, 0, 0, 9632, 9633, 3, 1212, 606, 0, 9633, 1211, 1, 0, 0, 0, 9634, 9636, 3, 1214, 607, 0, 9635, 9637, 3, 1320, 660, 0, 9636, 9635, 1, 0, 0, 0, 9636, 9637, 1, 0, 0, 0, 9637, 1213, 1, 0, 0, 0, 9638, 9643, 3, 1216, 608, 0, 9639, 9640, 7, 65, 0, 0, 9640, 9642, 3, 1216, 608, 0, 9641, 9639, 1, 0, 0, 0, 9642, 9645, 1, 0, 0, 0, 9643, 9641, 1, 0, 0, 0, 9643, 9644, 1, 0, 0, 0, 9644, 1215, 1, 0, 0, 0, 9645, 9643, 1, 0, 0, 0, 9646, 9651, 3, 1218, 609, 0, 9647, 9648, 5, 82, 0, 0, 9648, 9650, 3, 1218, 609, 0, 9649, 9647, 1, 0, 0, 0, 9650, 9653, 1, 0, 0, 0, 9651, 9649, 1, 0, 0, 0, 9651, 9652, 1, 0, 0, 0, 9652, 1217, 1, 0, 0, 0, 9653, 9651, 1, 0, 0, 0, 9654, 9659, 3, 1220, 610, 0, 9655, 9656, 5, 33, 0, 0, 9656, 9658, 3, 1220, 610, 0, 9657, 9655, 1, 0, 0, 0, 9658, 9661, 1, 0, 0, 0, 9659, 9657, 1, 0, 0, 0, 9659, 9660, 1, 0, 0, 0, 9660, 1219, 1, 0, 0, 0, 9661, 9659, 1, 0, 0, 0, 9662, 9668, 3, 1222, 611, 0, 9663, 9665, 5, 77, 0, 0, 9664, 9663, 1, 0, 0, 0, 9664, 9665, 1, 0, 0, 0, 9665, 9666, 1, 0, 0, 0, 9666, 9667, 5, 68, 0, 0, 9667, 9669, 3, 1360, 680, 0, 9668, 9664, 1, 0, 0, 0, 9668, 9669, 1, 0, 0, 0, 9669, 1221, 1, 0, 0, 0, 9670, 9672, 5, 77, 0, 0, 9671, 9670, 1, 0, 0, 0, 9671, 9672, 1, 0, 0, 0, 9672, 9673, 1, 0, 0, 0, 9673, 9674, 3, 1224, 612, 0, 9674, 1223, 1, 0, 0, 0, 9675, 9677, 3, 1226, 613, 0, 9676, 9678, 7, 66, 0, 0, 9677, 9676, 1, 0, 0, 0, 9677, 9678, 1, 0, 0, 0, 9678, 1225, 1, 0, 0, 0, 9679, 9703, 3, 1228, 614, 0, 9680, 9682, 5, 116, 0, 0, 9681, 9683, 5, 77, 0, 0, 9682, 9681, 1, 0, 0, 0, 9682, 9683, 1, 0, 0, 0, 9683, 9701, 1, 0, 0, 0, 9684, 9702, 5, 78, 0, 0, 9685, 9702, 5, 96, 0, 0, 9686, 9702, 5, 60, 0, 0, 9687, 9702, 5, 365, 0, 0, 9688, 9689, 5, 56, 0, 0, 9689, 9690, 5, 64, 0, 0, 9690, 9702, 3, 1210, 605, 0, 9691, 9692, 5, 275, 0, 0, 9692, 9693, 5, 2, 0, 0, 9693, 9694, 3, 1340, 670, 0, 9694, 9695, 5, 3, 0, 0, 9695, 9702, 1, 0, 0, 0, 9696, 9702, 5, 188, 0, 0, 9697, 9699, 3, 1350, 675, 0, 9698, 9697, 1, 0, 0, 0, 9698, 9699, 1, 0, 0, 0, 9699, 9700, 1, 0, 0, 0, 9700, 9702, 5, 478, 0, 0, 9701, 9684, 1, 0, 0, 0, 9701, 9685, 1, 0, 0, 0, 9701, 9686, 1, 0, 0, 0, 9701, 9687, 1, 0, 0, 0, 9701, 9688, 1, 0, 0, 0, 9701, 9691, 1, 0, 0, 0, 9701, 9696, 1, 0, 0, 0, 9701, 9698, 1, 0, 0, 0, 9702, 9704, 1, 0, 0, 0, 9703, 9680, 1, 0, 0, 0, 9703, 9704, 1, 0, 0, 0, 9704, 1227, 1, 0, 0, 0, 9705, 9717, 3, 1230, 615, 0, 9706, 9707, 7, 67, 0, 0, 9707, 9718, 3, 1230, 615, 0, 9708, 9709, 3, 1324, 662, 0, 9709, 9715, 3, 1314, 657, 0, 9710, 9716, 3, 1000, 500, 0, 9711, 9712, 5, 2, 0, 0, 9712, 9713, 3, 1210, 605, 0, 9713, 9714, 5, 3, 0, 0, 9714, 9716, 1, 0, 0, 0, 9715, 9710, 1, 0, 0, 0, 9715, 9711, 1, 0, 0, 0, 9716, 9718, 1, 0, 0, 0, 9717, 9706, 1, 0, 0, 0, 9717, 9708, 1, 0, 0, 0, 9717, 9718, 1, 0, 0, 0, 9718, 1229, 1, 0, 0, 0, 9719, 9737, 3, 1232, 616, 0, 9720, 9722, 5, 77, 0, 0, 9721, 9720, 1, 0, 0, 0, 9721, 9722, 1, 0, 0, 0, 9722, 9731, 1, 0, 0, 0, 9723, 9732, 5, 120, 0, 0, 9724, 9732, 5, 114, 0, 0, 9725, 9726, 5, 127, 0, 0, 9726, 9732, 5, 94, 0, 0, 9727, 9729, 5, 387, 0, 0, 9728, 9730, 5, 91, 0, 0, 9729, 9728, 1, 0, 0, 0, 9729, 9730, 1, 0, 0, 0, 9730, 9732, 1, 0, 0, 0, 9731, 9723, 1, 0, 0, 0, 9731, 9724, 1, 0, 0, 0, 9731, 9725, 1, 0, 0, 0, 9731, 9727, 1, 0, 0, 0, 9732, 9733, 1, 0, 0, 0, 9733, 9735, 3, 1232, 616, 0, 9734, 9736, 3, 1208, 604, 0, 9735, 9734, 1, 0, 0, 0, 9735, 9736, 1, 0, 0, 0, 9736, 9738, 1, 0, 0, 0, 9737, 9721, 1, 0, 0, 0, 9737, 9738, 1, 0, 0, 0, 9738, 1231, 1, 0, 0, 0, 9739, 9745, 3, 1234, 617, 0, 9740, 9741, 3, 1320, 660, 0, 9741, 9742, 3, 1234, 617, 0, 9742, 9744, 1, 0, 0, 0, 9743, 9740, 1, 0, 0, 0, 9744, 9747, 1, 0, 0, 0, 9745, 9743, 1, 0, 0, 0, 9745, 9746, 1, 0, 0, 0, 9746, 1233, 1, 0, 0, 0, 9747, 9745, 1, 0, 0, 0, 9748, 9750, 3, 1320, 660, 0, 9749, 9748, 1, 0, 0, 0, 9749, 9750, 1, 0, 0, 0, 9750, 9751, 1, 0, 0, 0, 9751, 9752, 3, 1236, 618, 0, 9752, 1235, 1, 0, 0, 0, 9753, 9758, 3, 1238, 619, 0, 9754, 9755, 7, 68, 0, 0, 9755, 9757, 3, 1238, 619, 0, 9756, 9754, 1, 0, 0, 0, 9757, 9760, 1, 0, 0, 0, 9758, 9756, 1, 0, 0, 0, 9758, 9759, 1, 0, 0, 0, 9759, 1237, 1, 0, 0, 0, 9760, 9758, 1, 0, 0, 0, 9761, 9766, 3, 1240, 620, 0, 9762, 9763, 7, 69, 0, 0, 9763, 9765, 3, 1240, 620, 0, 9764, 9762, 1, 0, 0, 0, 9765, 9768, 1, 0, 0, 0, 9766, 9764, 1, 0, 0, 0, 9766, 9767, 1, 0, 0, 0, 9767, 1239, 1, 0, 0, 0, 9768, 9766, 1, 0, 0, 0, 9769, 9772, 3, 1242, 621, 0, 9770, 9771, 5, 15, 0, 0, 9771, 9773, 3, 1210, 605, 0, 9772, 9770, 1, 0, 0, 0, 9772, 9773, 1, 0, 0, 0, 9773, 1241, 1, 0, 0, 0, 9774, 9776, 7, 68, 0, 0, 9775, 9774, 1, 0, 0, 0, 9775, 9776, 1, 0, 0, 0, 9776, 9777, 1, 0, 0, 0, 9777, 9778, 3, 1244, 622, 0, 9778, 1243, 1, 0, 0, 0, 9779, 9784, 3, 1246, 623, 0, 9780, 9781, 5, 142, 0, 0, 9781, 9782, 5, 418, 0, 0, 9782, 9783, 5, 386, 0, 0, 9783, 9785, 3, 1210, 605, 0, 9784, 9780, 1, 0, 0, 0, 9784, 9785, 1, 0, 0, 0, 9785, 1245, 1, 0, 0, 0, 9786, 9789, 3, 1248, 624, 0, 9787, 9788, 5, 43, 0, 0, 9788, 9790, 3, 556, 278, 0, 9789, 9787, 1, 0, 0, 0, 9789, 9790, 1, 0, 0, 0, 9790, 1247, 1, 0, 0, 0, 9791, 9796, 3, 1252, 626, 0, 9792, 9793, 5, 26, 0, 0, 9793, 9795, 3, 1166, 583, 0, 9794, 9792, 1, 0, 0, 0, 9795, 9798, 1, 0, 0, 0, 9796, 9794, 1, 0, 0, 0, 9796, 9797, 1, 0, 0, 0, 9797, 1249, 1, 0, 0, 0, 9798, 9796, 1, 0, 0, 0, 9799, 9800, 6, 625, -1, 0, 9800, 9807, 3, 1252, 626, 0, 9801, 9802, 7, 68, 0, 0, 9802, 9807, 3, 1250, 625, 9, 9803, 9804, 3, 1320, 660, 0, 9804, 9805, 3, 1250, 625, 3, 9805, 9807, 1, 0, 0, 0, 9806, 9799, 1, 0, 0, 0, 9806, 9801, 1, 0, 0, 0, 9806, 9803, 1, 0, 0, 0, 9807, 9847, 1, 0, 0, 0, 9808, 9809, 10, 8, 0, 0, 9809, 9810, 5, 15, 0, 0, 9810, 9846, 3, 1250, 625, 9, 9811, 9812, 10, 7, 0, 0, 9812, 9813, 7, 69, 0, 0, 9813, 9846, 3, 1250, 625, 8, 9814, 9815, 10, 6, 0, 0, 9815, 9816, 7, 68, 0, 0, 9816, 9846, 3, 1250, 625, 7, 9817, 9818, 10, 5, 0, 0, 9818, 9819, 3, 1320, 660, 0, 9819, 9820, 3, 1250, 625, 6, 9820, 9846, 1, 0, 0, 0, 9821, 9822, 10, 4, 0, 0, 9822, 9823, 7, 67, 0, 0, 9823, 9846, 3, 1250, 625, 5, 9824, 9825, 10, 10, 0, 0, 9825, 9826, 5, 26, 0, 0, 9826, 9846, 3, 1166, 583, 0, 9827, 9828, 10, 2, 0, 0, 9828, 9846, 3, 1320, 660, 0, 9829, 9830, 10, 1, 0, 0, 9830, 9832, 5, 116, 0, 0, 9831, 9833, 5, 77, 0, 0, 9832, 9831, 1, 0, 0, 0, 9832, 9833, 1, 0, 0, 0, 9833, 9843, 1, 0, 0, 0, 9834, 9835, 5, 56, 0, 0, 9835, 9836, 5, 64, 0, 0, 9836, 9844, 3, 1250, 625, 0, 9837, 9838, 5, 275, 0, 0, 9838, 9839, 5, 2, 0, 0, 9839, 9840, 3, 1340, 670, 0, 9840, 9841, 5, 3, 0, 0, 9841, 9844, 1, 0, 0, 0, 9842, 9844, 5, 188, 0, 0, 9843, 9834, 1, 0, 0, 0, 9843, 9837, 1, 0, 0, 0, 9843, 9842, 1, 0, 0, 0, 9844, 9846, 1, 0, 0, 0, 9845, 9808, 1, 0, 0, 0, 9845, 9811, 1, 0, 0, 0, 9845, 9814, 1, 0, 0, 0, 9845, 9817, 1, 0, 0, 0, 9845, 9821, 1, 0, 0, 0, 9845, 9824, 1, 0, 0, 0, 9845, 9827, 1, 0, 0, 0, 9845, 9829, 1, 0, 0, 0, 9846, 9849, 1, 0, 0, 0, 9847, 9845, 1, 0, 0, 0, 9847, 9848, 1, 0, 0, 0, 9848, 1251, 1, 0, 0, 0, 9849, 9847, 1, 0, 0, 0, 9850, 9851, 5, 396, 0, 0, 9851, 9887, 3, 1000, 500, 0, 9852, 9855, 5, 35, 0, 0, 9853, 9856, 3, 1000, 500, 0, 9854, 9856, 3, 1342, 671, 0, 9855, 9853, 1, 0, 0, 0, 9855, 9854, 1, 0, 0, 0, 9856, 9887, 1, 0, 0, 0, 9857, 9858, 5, 28, 0, 0, 9858, 9887, 3, 1380, 690, 0, 9859, 9860, 5, 470, 0, 0, 9860, 9861, 5, 2, 0, 0, 9861, 9862, 3, 1326, 663, 0, 9862, 9863, 5, 3, 0, 0, 9863, 9887, 1, 0, 0, 0, 9864, 9865, 5, 98, 0, 0, 9865, 9887, 3, 1000, 500, 0, 9866, 9887, 3, 1446, 723, 0, 9867, 9887, 3, 1254, 627, 0, 9868, 9869, 5, 2, 0, 0, 9869, 9870, 3, 1210, 605, 0, 9870, 9871, 5, 3, 0, 0, 9871, 9872, 3, 1380, 690, 0, 9872, 9887, 1, 0, 0, 0, 9873, 9887, 3, 1362, 681, 0, 9874, 9887, 3, 1258, 629, 0, 9875, 9877, 3, 1000, 500, 0, 9876, 9878, 3, 1378, 689, 0, 9877, 9876, 1, 0, 0, 0, 9877, 9878, 1, 0, 0, 0, 9878, 9887, 1, 0, 0, 0, 9879, 9887, 3, 1310, 655, 0, 9880, 9887, 3, 1312, 656, 0, 9881, 9882, 3, 1308, 654, 0, 9882, 9883, 5, 125, 0, 0, 9883, 9884, 3, 1308, 654, 0, 9884, 9887, 1, 0, 0, 0, 9885, 9887, 3, 1372, 686, 0, 9886, 9850, 1, 0, 0, 0, 9886, 9852, 1, 0, 0, 0, 9886, 9857, 1, 0, 0, 0, 9886, 9859, 1, 0, 0, 0, 9886, 9864, 1, 0, 0, 0, 9886, 9866, 1, 0, 0, 0, 9886, 9867, 1, 0, 0, 0, 9886, 9868, 1, 0, 0, 0, 9886, 9873, 1, 0, 0, 0, 9886, 9874, 1, 0, 0, 0, 9886, 9875, 1, 0, 0, 0, 9886, 9879, 1, 0, 0, 0, 9886, 9880, 1, 0, 0, 0, 9886, 9881, 1, 0, 0, 0, 9886, 9885, 1, 0, 0, 0, 9887, 1253, 1, 0, 0, 0, 9888, 9889, 5, 574, 0, 0, 9889, 1255, 1, 0, 0, 0, 9890, 9916, 3, 1442, 721, 0, 9891, 9913, 5, 2, 0, 0, 9892, 9896, 3, 1336, 668, 0, 9893, 9894, 5, 6, 0, 0, 9894, 9895, 5, 101, 0, 0, 9895, 9897, 3, 1338, 669, 0, 9896, 9893, 1, 0, 0, 0, 9896, 9897, 1, 0, 0, 0, 9897, 9899, 1, 0, 0, 0, 9898, 9900, 3, 1040, 520, 0, 9899, 9898, 1, 0, 0, 0, 9899, 9900, 1, 0, 0, 0, 9900, 9914, 1, 0, 0, 0, 9901, 9902, 5, 101, 0, 0, 9902, 9904, 3, 1338, 669, 0, 9903, 9905, 3, 1040, 520, 0, 9904, 9903, 1, 0, 0, 0, 9904, 9905, 1, 0, 0, 0, 9905, 9914, 1, 0, 0, 0, 9906, 9907, 7, 57, 0, 0, 9907, 9909, 3, 1336, 668, 0, 9908, 9910, 3, 1040, 520, 0, 9909, 9908, 1, 0, 0, 0, 9909, 9910, 1, 0, 0, 0, 9910, 9914, 1, 0, 0, 0, 9911, 9914, 5, 9, 0, 0, 9912, 9914, 1, 0, 0, 0, 9913, 9892, 1, 0, 0, 0, 9913, 9901, 1, 0, 0, 0, 9913, 9906, 1, 0, 0, 0, 9913, 9911, 1, 0, 0, 0, 9913, 9912, 1, 0, 0, 0, 9914, 9915, 1, 0, 0, 0, 9915, 9917, 5, 3, 0, 0, 9916, 9891, 1, 0, 0, 0, 9916, 9917, 1, 0, 0, 0, 9917, 1257, 1, 0, 0, 0, 9918, 9920, 3, 1256, 628, 0, 9919, 9921, 3, 1282, 641, 0, 9920, 9919, 1, 0, 0, 0, 9920, 9921, 1, 0, 0, 0, 9921, 9923, 1, 0, 0, 0, 9922, 9924, 3, 1284, 642, 0, 9923, 9922, 1, 0, 0, 0, 9923, 9924, 1, 0, 0, 0, 9924, 9926, 1, 0, 0, 0, 9925, 9927, 3, 1292, 646, 0, 9926, 9925, 1, 0, 0, 0, 9926, 9927, 1, 0, 0, 0, 9927, 9930, 1, 0, 0, 0, 9928, 9930, 3, 1262, 631, 0, 9929, 9918, 1, 0, 0, 0, 9929, 9928, 1, 0, 0, 0, 9930, 1259, 1, 0, 0, 0, 9931, 9934, 3, 1256, 628, 0, 9932, 9934, 3, 1262, 631, 0, 9933, 9931, 1, 0, 0, 0, 9933, 9932, 1, 0, 0, 0, 9934, 1261, 1, 0, 0, 0, 9935, 9936, 5, 108, 0, 0, 9936, 9937, 5, 62, 0, 0, 9937, 9938, 5, 2, 0, 0, 9938, 9939, 3, 1210, 605, 0, 9939, 9940, 5, 3, 0, 0, 9940, 10120, 1, 0, 0, 0, 9941, 10120, 5, 48, 0, 0, 9942, 9947, 5, 50, 0, 0, 9943, 9944, 5, 2, 0, 0, 9944, 9945, 3, 1454, 727, 0, 9945, 9946, 5, 3, 0, 0, 9946, 9948, 1, 0, 0, 0, 9947, 9943, 1, 0, 0, 0, 9947, 9948, 1, 0, 0, 0, 9948, 10120, 1, 0, 0, 0, 9949, 9954, 5, 51, 0, 0, 9950, 9951, 5, 2, 0, 0, 9951, 9952, 3, 1454, 727, 0, 9952, 9953, 5, 3, 0, 0, 9953, 9955, 1, 0, 0, 0, 9954, 9950, 1, 0, 0, 0, 9954, 9955, 1, 0, 0, 0, 9955, 10120, 1, 0, 0, 0, 9956, 9961, 5, 75, 0, 0, 9957, 9958, 5, 2, 0, 0, 9958, 9959, 3, 1454, 727, 0, 9959, 9960, 5, 3, 0, 0, 9960, 9962, 1, 0, 0, 0, 9961, 9957, 1, 0, 0, 0, 9961, 9962, 1, 0, 0, 0, 9962, 10120, 1, 0, 0, 0, 9963, 9968, 5, 76, 0, 0, 9964, 9965, 5, 2, 0, 0, 9965, 9966, 3, 1454, 727, 0, 9966, 9967, 5, 3, 0, 0, 9967, 9969, 1, 0, 0, 0, 9968, 9964, 1, 0, 0, 0, 9968, 9969, 1, 0, 0, 0, 9969, 10120, 1, 0, 0, 0, 9970, 10120, 5, 49, 0, 0, 9971, 10120, 5, 52, 0, 0, 9972, 10120, 5, 89, 0, 0, 9973, 10120, 5, 99, 0, 0, 9974, 10120, 5, 47, 0, 0, 9975, 10120, 5, 111, 0, 0, 9976, 9977, 5, 41, 0, 0, 9977, 9978, 5, 2, 0, 0, 9978, 9979, 3, 1210, 605, 0, 9979, 9980, 5, 36, 0, 0, 9980, 9981, 3, 1166, 583, 0, 9981, 9982, 5, 3, 0, 0, 9982, 10120, 1, 0, 0, 0, 9983, 9984, 5, 397, 0, 0, 9984, 9986, 5, 2, 0, 0, 9985, 9987, 3, 1346, 673, 0, 9986, 9985, 1, 0, 0, 0, 9986, 9987, 1, 0, 0, 0, 9987, 9988, 1, 0, 0, 0, 9988, 10120, 5, 3, 0, 0, 9989, 9990, 5, 489, 0, 0, 9990, 9991, 5, 2, 0, 0, 9991, 9994, 3, 1210, 605, 0, 9992, 9993, 5, 6, 0, 0, 9993, 9995, 3, 1350, 675, 0, 9994, 9992, 1, 0, 0, 0, 9994, 9995, 1, 0, 0, 0, 9995, 9996, 1, 0, 0, 0, 9996, 9997, 5, 3, 0, 0, 9997, 10120, 1, 0, 0, 0, 9998, 9999, 5, 410, 0, 0, 9999, 10000, 5, 2, 0, 0, 10000, 10001, 3, 1352, 676, 0, 10001, 10002, 5, 3, 0, 0, 10002, 10120, 1, 0, 0, 0, 10003, 10004, 5, 411, 0, 0, 10004, 10006, 5, 2, 0, 0, 10005, 10007, 3, 1354, 677, 0, 10006, 10005, 1, 0, 0, 0, 10006, 10007, 1, 0, 0, 0, 10007, 10008, 1, 0, 0, 0, 10008, 10120, 5, 3, 0, 0, 10009, 10010, 5, 417, 0, 0, 10010, 10012, 5, 2, 0, 0, 10011, 10013, 3, 1356, 678, 0, 10012, 10011, 1, 0, 0, 0, 10012, 10013, 1, 0, 0, 0, 10013, 10014, 1, 0, 0, 0, 10014, 10120, 5, 3, 0, 0, 10015, 10016, 5, 420, 0, 0, 10016, 10017, 5, 2, 0, 0, 10017, 10018, 3, 1210, 605, 0, 10018, 10019, 5, 36, 0, 0, 10019, 10020, 3, 1166, 583, 0, 10020, 10021, 5, 3, 0, 0, 10021, 10120, 1, 0, 0, 0, 10022, 10023, 5, 421, 0, 0, 10023, 10025, 5, 2, 0, 0, 10024, 10026, 7, 70, 0, 0, 10025, 10024, 1, 0, 0, 0, 10025, 10026, 1, 0, 0, 0, 10026, 10027, 1, 0, 0, 0, 10027, 10028, 3, 1358, 679, 0, 10028, 10029, 5, 3, 0, 0, 10029, 10120, 1, 0, 0, 0, 10030, 10031, 5, 408, 0, 0, 10031, 10032, 5, 2, 0, 0, 10032, 10033, 3, 1210, 605, 0, 10033, 10034, 5, 6, 0, 0, 10034, 10035, 3, 1210, 605, 0, 10035, 10036, 5, 3, 0, 0, 10036, 10120, 1, 0, 0, 0, 10037, 10038, 5, 393, 0, 0, 10038, 10039, 5, 2, 0, 0, 10039, 10040, 3, 1326, 663, 0, 10040, 10041, 5, 3, 0, 0, 10041, 10120, 1, 0, 0, 0, 10042, 10043, 5, 399, 0, 0, 10043, 10044, 5, 2, 0, 0, 10044, 10045, 3, 1326, 663, 0, 10045, 10046, 5, 3, 0, 0, 10046, 10120, 1, 0, 0, 0, 10047, 10048, 5, 404, 0, 0, 10048, 10049, 5, 2, 0, 0, 10049, 10050, 3, 1326, 663, 0, 10050, 10051, 5, 3, 0, 0, 10051, 10120, 1, 0, 0, 0, 10052, 10053, 5, 425, 0, 0, 10053, 10054, 5, 2, 0, 0, 10054, 10055, 3, 1326, 663, 0, 10055, 10056, 5, 3, 0, 0, 10056, 10120, 1, 0, 0, 0, 10057, 10058, 5, 426, 0, 0, 10058, 10059, 5, 2, 0, 0, 10059, 10060, 5, 266, 0, 0, 10060, 10066, 3, 1488, 744, 0, 10061, 10064, 5, 6, 0, 0, 10062, 10065, 3, 1268, 634, 0, 10063, 10065, 3, 1326, 663, 0, 10064, 10062, 1, 0, 0, 0, 10064, 10063, 1, 0, 0, 0, 10065, 10067, 1, 0, 0, 0, 10066, 10061, 1, 0, 0, 0, 10066, 10067, 1, 0, 0, 0, 10067, 10068, 1, 0, 0, 0, 10068, 10069, 5, 3, 0, 0, 10069, 10120, 1, 0, 0, 0, 10070, 10071, 5, 427, 0, 0, 10071, 10072, 5, 2, 0, 0, 10072, 10073, 3, 1252, 626, 0, 10073, 10074, 3, 1278, 639, 0, 10074, 10075, 5, 3, 0, 0, 10075, 10120, 1, 0, 0, 0, 10076, 10077, 5, 428, 0, 0, 10077, 10078, 5, 2, 0, 0, 10078, 10079, 3, 1270, 635, 0, 10079, 10080, 5, 3, 0, 0, 10080, 10120, 1, 0, 0, 0, 10081, 10082, 5, 429, 0, 0, 10082, 10083, 5, 2, 0, 0, 10083, 10084, 3, 1274, 637, 0, 10084, 10086, 3, 1210, 605, 0, 10085, 10087, 3, 1276, 638, 0, 10086, 10085, 1, 0, 0, 0, 10086, 10087, 1, 0, 0, 0, 10087, 10088, 1, 0, 0, 0, 10088, 10089, 5, 3, 0, 0, 10089, 10120, 1, 0, 0, 0, 10090, 10091, 5, 430, 0, 0, 10091, 10092, 5, 2, 0, 0, 10092, 10093, 5, 266, 0, 0, 10093, 10096, 3, 1488, 744, 0, 10094, 10095, 5, 6, 0, 0, 10095, 10097, 3, 1210, 605, 0, 10096, 10094, 1, 0, 0, 0, 10096, 10097, 1, 0, 0, 0, 10097, 10098, 1, 0, 0, 0, 10098, 10099, 5, 3, 0, 0, 10099, 10120, 1, 0, 0, 0, 10100, 10101, 5, 431, 0, 0, 10101, 10102, 5, 2, 0, 0, 10102, 10103, 5, 383, 0, 0, 10103, 10104, 3, 1210, 605, 0, 10104, 10105, 5, 6, 0, 0, 10105, 10107, 3, 1264, 632, 0, 10106, 10108, 3, 1266, 633, 0, 10107, 10106, 1, 0, 0, 0, 10107, 10108, 1, 0, 0, 0, 10108, 10109, 1, 0, 0, 0, 10109, 10110, 5, 3, 0, 0, 10110, 10120, 1, 0, 0, 0, 10111, 10112, 5, 432, 0, 0, 10112, 10113, 5, 2, 0, 0, 10113, 10114, 3, 1274, 637, 0, 10114, 10115, 3, 1210, 605, 0, 10115, 10116, 5, 36, 0, 0, 10116, 10117, 3, 1170, 585, 0, 10117, 10118, 5, 3, 0, 0, 10118, 10120, 1, 0, 0, 0, 10119, 9935, 1, 0, 0, 0, 10119, 9941, 1, 0, 0, 0, 10119, 9942, 1, 0, 0, 0, 10119, 9949, 1, 0, 0, 0, 10119, 9956, 1, 0, 0, 0, 10119, 9963, 1, 0, 0, 0, 10119, 9970, 1, 0, 0, 0, 10119, 9971, 1, 0, 0, 0, 10119, 9972, 1, 0, 0, 0, 10119, 9973, 1, 0, 0, 0, 10119, 9974, 1, 0, 0, 0, 10119, 9975, 1, 0, 0, 0, 10119, 9976, 1, 0, 0, 0, 10119, 9983, 1, 0, 0, 0, 10119, 9989, 1, 0, 0, 0, 10119, 9998, 1, 0, 0, 0, 10119, 10003, 1, 0, 0, 0, 10119, 10009, 1, 0, 0, 0, 10119, 10015, 1, 0, 0, 0, 10119, 10022, 1, 0, 0, 0, 10119, 10030, 1, 0, 0, 0, 10119, 10037, 1, 0, 0, 0, 10119, 10042, 1, 0, 0, 0, 10119, 10047, 1, 0, 0, 0, 10119, 10052, 1, 0, 0, 0, 10119, 10057, 1, 0, 0, 0, 10119, 10070, 1, 0, 0, 0, 10119, 10076, 1, 0, 0, 0, 10119, 10081, 1, 0, 0, 0, 10119, 10090, 1, 0, 0, 0, 10119, 10100, 1, 0, 0, 0, 10119, 10111, 1, 0, 0, 0, 10120, 1263, 1, 0, 0, 0, 10121, 10122, 5, 375, 0, 0, 10122, 10127, 3, 1210, 605, 0, 10123, 10124, 5, 375, 0, 0, 10124, 10125, 5, 269, 0, 0, 10125, 10127, 5, 450, 0, 0, 10126, 10121, 1, 0, 0, 0, 10126, 10123, 1, 0, 0, 0, 10127, 1265, 1, 0, 0, 0, 10128, 10129, 5, 6, 0, 0, 10129, 10130, 5, 339, 0, 0, 10130, 10139, 5, 385, 0, 0, 10131, 10132, 5, 6, 0, 0, 10132, 10133, 5, 339, 0, 0, 10133, 10139, 5, 269, 0, 0, 10134, 10135, 5, 6, 0, 0, 10135, 10136, 5, 339, 0, 0, 10136, 10137, 5, 269, 0, 0, 10137, 10139, 5, 450, 0, 0, 10138, 10128, 1, 0, 0, 0, 10138, 10131, 1, 0, 0, 0, 10138, 10134, 1, 0, 0, 0, 10139, 1267, 1, 0, 0, 0, 10140, 10141, 5, 424, 0, 0, 10141, 10142, 5, 2, 0, 0, 10142, 10143, 3, 1270, 635, 0, 10143, 10144, 5, 3, 0, 0, 10144, 1269, 1, 0, 0, 0, 10145, 10150, 3, 1272, 636, 0, 10146, 10147, 5, 6, 0, 0, 10147, 10149, 3, 1272, 636, 0, 10148, 10146, 1, 0, 0, 0, 10149, 10152, 1, 0, 0, 0, 10150, 10148, 1, 0, 0, 0, 10150, 10151, 1, 0, 0, 0, 10151, 1271, 1, 0, 0, 0, 10152, 10150, 1, 0, 0, 0, 10153, 10156, 3, 1210, 605, 0, 10154, 10155, 5, 36, 0, 0, 10155, 10157, 3, 1488, 744, 0, 10156, 10154, 1, 0, 0, 0, 10156, 10157, 1, 0, 0, 0, 10157, 1273, 1, 0, 0, 0, 10158, 10159, 7, 71, 0, 0, 10159, 1275, 1, 0, 0, 0, 10160, 10161, 5, 292, 0, 0, 10161, 10165, 5, 378, 0, 0, 10162, 10163, 5, 347, 0, 0, 10163, 10165, 5, 378, 0, 0, 10164, 10160, 1, 0, 0, 0, 10164, 10162, 1, 0, 0, 0, 10165, 1277, 1, 0, 0, 0, 10166, 10167, 5, 286, 0, 0, 10167, 10182, 3, 1252, 626, 0, 10168, 10169, 5, 286, 0, 0, 10169, 10170, 3, 1252, 626, 0, 10170, 10171, 3, 1280, 640, 0, 10171, 10182, 1, 0, 0, 0, 10172, 10173, 5, 286, 0, 0, 10173, 10174, 3, 1280, 640, 0, 10174, 10175, 3, 1252, 626, 0, 10175, 10182, 1, 0, 0, 0, 10176, 10177, 5, 286, 0, 0, 10177, 10178, 3, 1280, 640, 0, 10178, 10179, 3, 1252, 626, 0, 10179, 10180, 3, 1280, 640, 0, 10180, 10182, 1, 0, 0, 0, 10181, 10166, 1, 0, 0, 0, 10181, 10168, 1, 0, 0, 0, 10181, 10172, 1, 0, 0, 0, 10181, 10176, 1, 0, 0, 0, 10182, 1279, 1, 0, 0, 0, 10183, 10184, 5, 147, 0, 0, 10184, 10185, 7, 72, 0, 0, 10185, 1281, 1, 0, 0, 0, 10186, 10187, 5, 479, 0, 0, 10187, 10188, 5, 66, 0, 0, 10188, 10189, 5, 2, 0, 0, 10189, 10190, 3, 1042, 521, 0, 10190, 10191, 5, 3, 0, 0, 10191, 1283, 1, 0, 0, 0, 10192, 10193, 5, 480, 0, 0, 10193, 10194, 5, 2, 0, 0, 10194, 10195, 5, 103, 0, 0, 10195, 10196, 3, 1210, 605, 0, 10196, 10197, 5, 3, 0, 0, 10197, 1285, 1, 0, 0, 0, 10198, 10199, 5, 104, 0, 0, 10199, 10200, 3, 1288, 644, 0, 10200, 1287, 1, 0, 0, 0, 10201, 10206, 3, 1290, 645, 0, 10202, 10203, 5, 6, 0, 0, 10203, 10205, 3, 1290, 645, 0, 10204, 10202, 1, 0, 0, 0, 10205, 10208, 1, 0, 0, 0, 10206, 10204, 1, 0, 0, 0, 10206, 10207, 1, 0, 0, 0, 10207, 1289, 1, 0, 0, 0, 10208, 10206, 1, 0, 0, 0, 10209, 10210, 3, 1472, 736, 0, 10210, 10211, 5, 36, 0, 0, 10211, 10212, 3, 1294, 647, 0, 10212, 1291, 1, 0, 0, 0, 10213, 10216, 5, 124, 0, 0, 10214, 10217, 3, 1294, 647, 0, 10215, 10217, 3, 1472, 736, 0, 10216, 10214, 1, 0, 0, 0, 10216, 10215, 1, 0, 0, 0, 10217, 1293, 1, 0, 0, 0, 10218, 10220, 5, 2, 0, 0, 10219, 10221, 3, 1296, 648, 0, 10220, 10219, 1, 0, 0, 0, 10220, 10221, 1, 0, 0, 0, 10221, 10223, 1, 0, 0, 0, 10222, 10224, 3, 1298, 649, 0, 10223, 10222, 1, 0, 0, 0, 10223, 10224, 1, 0, 0, 0, 10224, 10226, 1, 0, 0, 0, 10225, 10227, 3, 1040, 520, 0, 10226, 10225, 1, 0, 0, 0, 10226, 10227, 1, 0, 0, 0, 10227, 10229, 1, 0, 0, 0, 10228, 10230, 3, 1300, 650, 0, 10229, 10228, 1, 0, 0, 0, 10229, 10230, 1, 0, 0, 0, 10230, 10231, 1, 0, 0, 0, 10231, 10232, 5, 3, 0, 0, 10232, 1295, 1, 0, 0, 0, 10233, 10234, 3, 1472, 736, 0, 10234, 1297, 1, 0, 0, 0, 10235, 10236, 5, 285, 0, 0, 10236, 10237, 5, 147, 0, 0, 10237, 10238, 3, 1326, 663, 0, 10238, 1299, 1, 0, 0, 0, 10239, 10240, 5, 299, 0, 0, 10240, 10242, 3, 1302, 651, 0, 10241, 10243, 3, 1306, 653, 0, 10242, 10241, 1, 0, 0, 0, 10242, 10243, 1, 0, 0, 0, 10243, 10255, 1, 0, 0, 0, 10244, 10245, 5, 320, 0, 0, 10245, 10247, 3, 1302, 651, 0, 10246, 10248, 3, 1306, 653, 0, 10247, 10246, 1, 0, 0, 0, 10247, 10248, 1, 0, 0, 0, 10248, 10255, 1, 0, 0, 0, 10249, 10250, 5, 481, 0, 0, 10250, 10252, 3, 1302, 651, 0, 10251, 10253, 3, 1306, 653, 0, 10252, 10251, 1, 0, 0, 0, 10252, 10253, 1, 0, 0, 0, 10253, 10255, 1, 0, 0, 0, 10254, 10239, 1, 0, 0, 0, 10254, 10244, 1, 0, 0, 0, 10254, 10249, 1, 0, 0, 0, 10255, 1301, 1, 0, 0, 0, 10256, 10263, 3, 1304, 652, 0, 10257, 10258, 5, 387, 0, 0, 10258, 10259, 3, 1304, 652, 0, 10259, 10260, 5, 33, 0, 0, 10260, 10261, 3, 1304, 652, 0, 10261, 10263, 1, 0, 0, 0, 10262, 10256, 1, 0, 0, 0, 10262, 10257, 1, 0, 0, 0, 10263, 1303, 1, 0, 0, 0, 10264, 10265, 5, 362, 0, 0, 10265, 10272, 7, 73, 0, 0, 10266, 10267, 5, 434, 0, 0, 10267, 10272, 5, 414, 0, 0, 10268, 10269, 3, 1210, 605, 0, 10269, 10270, 7, 73, 0, 0, 10270, 10272, 1, 0, 0, 0, 10271, 10264, 1, 0, 0, 0, 10271, 10266, 1, 0, 0, 0, 10271, 10268, 1, 0, 0, 0, 10272, 1305, 1, 0, 0, 0, 10273, 10280, 5, 199, 0, 0, 10274, 10275, 5, 434, 0, 0, 10275, 10281, 5, 414, 0, 0, 10276, 10281, 5, 66, 0, 0, 10277, 10281, 5, 467, 0, 0, 10278, 10279, 5, 269, 0, 0, 10279, 10281, 5, 482, 0, 0, 10280, 10274, 1, 0, 0, 0, 10280, 10276, 1, 0, 0, 0, 10280, 10277, 1, 0, 0, 0, 10280, 10278, 1, 0, 0, 0, 10281, 1307, 1, 0, 0, 0, 10282, 10283, 5, 414, 0, 0, 10283, 10285, 5, 2, 0, 0, 10284, 10286, 3, 1326, 663, 0, 10285, 10284, 1, 0, 0, 0, 10285, 10286, 1, 0, 0, 0, 10286, 10287, 1, 0, 0, 0, 10287, 10295, 5, 3, 0, 0, 10288, 10289, 5, 2, 0, 0, 10289, 10290, 3, 1326, 663, 0, 10290, 10291, 5, 6, 0, 0, 10291, 10292, 3, 1210, 605, 0, 10292, 10293, 5, 3, 0, 0, 10293, 10295, 1, 0, 0, 0, 10294, 10282, 1, 0, 0, 0, 10294, 10288, 1, 0, 0, 0, 10295, 1309, 1, 0, 0, 0, 10296, 10297, 5, 414, 0, 0, 10297, 10299, 5, 2, 0, 0, 10298, 10300, 3, 1326, 663, 0, 10299, 10298, 1, 0, 0, 0, 10299, 10300, 1, 0, 0, 0, 10300, 10301, 1, 0, 0, 0, 10301, 10302, 5, 3, 0, 0, 10302, 1311, 1, 0, 0, 0, 10303, 10304, 5, 2, 0, 0, 10304, 10305, 3, 1210, 605, 0, 10305, 10306, 5, 6, 0, 0, 10306, 10307, 3, 1326, 663, 0, 10307, 10308, 5, 3, 0, 0, 10308, 1313, 1, 0, 0, 0, 10309, 10310, 7, 74, 0, 0, 10310, 1315, 1, 0, 0, 0, 10311, 10314, 5, 29, 0, 0, 10312, 10314, 3, 1318, 659, 0, 10313, 10311, 1, 0, 0, 0, 10313, 10312, 1, 0, 0, 0, 10314, 1317, 1, 0, 0, 0, 10315, 10316, 7, 75, 0, 0, 10316, 1319, 1, 0, 0, 0, 10317, 10324, 5, 29, 0, 0, 10318, 10319, 5, 278, 0, 0, 10319, 10320, 5, 2, 0, 0, 10320, 10321, 3, 730, 365, 0, 10321, 10322, 5, 3, 0, 0, 10322, 10324, 1, 0, 0, 0, 10323, 10317, 1, 0, 0, 0, 10323, 10318, 1, 0, 0, 0, 10324, 1321, 1, 0, 0, 0, 10325, 10332, 3, 1316, 658, 0, 10326, 10327, 5, 278, 0, 0, 10327, 10328, 5, 2, 0, 0, 10328, 10329, 3, 730, 365, 0, 10329, 10330, 5, 3, 0, 0, 10330, 10332, 1, 0, 0, 0, 10331, 10325, 1, 0, 0, 0, 10331, 10326, 1, 0, 0, 0, 10332, 1323, 1, 0, 0, 0, 10333, 10346, 3, 1316, 658, 0, 10334, 10335, 5, 278, 0, 0, 10335, 10336, 5, 2, 0, 0, 10336, 10337, 3, 730, 365, 0, 10337, 10338, 5, 3, 0, 0, 10338, 10346, 1, 0, 0, 0, 10339, 10346, 5, 120, 0, 0, 10340, 10341, 5, 77, 0, 0, 10341, 10346, 5, 120, 0, 0, 10342, 10346, 5, 114, 0, 0, 10343, 10344, 5, 77, 0, 0, 10344, 10346, 5, 114, 0, 0, 10345, 10333, 1, 0, 0, 0, 10345, 10334, 1, 0, 0, 0, 10345, 10339, 1, 0, 0, 0, 10345, 10340, 1, 0, 0, 0, 10345, 10342, 1, 0, 0, 0, 10345, 10343, 1, 0, 0, 0, 10346, 1325, 1, 0, 0, 0, 10347, 10352, 3, 1210, 605, 0, 10348, 10349, 5, 6, 0, 0, 10349, 10351, 3, 1210, 605, 0, 10350, 10348, 1, 0, 0, 0, 10351, 10354, 1, 0, 0, 0, 10352, 10350, 1, 0, 0, 0, 10352, 10353, 1, 0, 0, 0, 10353, 1327, 1, 0, 0, 0, 10354, 10352, 1, 0, 0, 0, 10355, 10360, 3, 1334, 667, 0, 10356, 10357, 5, 6, 0, 0, 10357, 10359, 3, 1334, 667, 0, 10358, 10356, 1, 0, 0, 0, 10359, 10362, 1, 0, 0, 0, 10360, 10358, 1, 0, 0, 0, 10360, 10361, 1, 0, 0, 0, 10361, 1329, 1, 0, 0, 0, 10362, 10360, 1, 0, 0, 0, 10363, 10368, 3, 1332, 666, 0, 10364, 10365, 5, 6, 0, 0, 10365, 10367, 3, 1332, 666, 0, 10366, 10364, 1, 0, 0, 0, 10367, 10370, 1, 0, 0, 0, 10368, 10366, 1, 0, 0, 0, 10368, 10369, 1, 0, 0, 0, 10369, 1331, 1, 0, 0, 0, 10370, 10368, 1, 0, 0, 0, 10371, 10377, 3, 1430, 715, 0, 10372, 10373, 5, 2, 0, 0, 10373, 10374, 3, 1210, 605, 0, 10374, 10375, 5, 3, 0, 0, 10375, 10377, 1, 0, 0, 0, 10376, 10371, 1, 0, 0, 0, 10376, 10372, 1, 0, 0, 0, 10377, 1333, 1, 0, 0, 0, 10378, 10381, 3, 1430, 715, 0, 10379, 10381, 3, 1210, 605, 0, 10380, 10378, 1, 0, 0, 0, 10380, 10379, 1, 0, 0, 0, 10381, 1335, 1, 0, 0, 0, 10382, 10387, 3, 1338, 669, 0, 10383, 10384, 5, 6, 0, 0, 10384, 10386, 3, 1338, 669, 0, 10385, 10383, 1, 0, 0, 0, 10386, 10389, 1, 0, 0, 0, 10387, 10385, 1, 0, 0, 0, 10387, 10388, 1, 0, 0, 0, 10388, 1337, 1, 0, 0, 0, 10389, 10387, 1, 0, 0, 0, 10390, 10396, 3, 1210, 605, 0, 10391, 10392, 3, 682, 341, 0, 10392, 10393, 7, 76, 0, 0, 10393, 10394, 3, 1210, 605, 0, 10394, 10396, 1, 0, 0, 0, 10395, 10390, 1, 0, 0, 0, 10395, 10391, 1, 0, 0, 0, 10396, 1339, 1, 0, 0, 0, 10397, 10402, 3, 1166, 583, 0, 10398, 10399, 5, 6, 0, 0, 10399, 10401, 3, 1166, 583, 0, 10400, 10398, 1, 0, 0, 0, 10401, 10404, 1, 0, 0, 0, 10402, 10400, 1, 0, 0, 0, 10402, 10403, 1, 0, 0, 0, 10403, 1341, 1, 0, 0, 0, 10404, 10402, 1, 0, 0, 0, 10405, 10408, 5, 4, 0, 0, 10406, 10409, 3, 1326, 663, 0, 10407, 10409, 3, 1344, 672, 0, 10408, 10406, 1, 0, 0, 0, 10408, 10407, 1, 0, 0, 0, 10408, 10409, 1, 0, 0, 0, 10409, 10410, 1, 0, 0, 0, 10410, 10411, 5, 5, 0, 0, 10411, 1343, 1, 0, 0, 0, 10412, 10417, 3, 1342, 671, 0, 10413, 10414, 5, 6, 0, 0, 10414, 10416, 3, 1342, 671, 0, 10415, 10413, 1, 0, 0, 0, 10416, 10419, 1, 0, 0, 0, 10417, 10415, 1, 0, 0, 0, 10417, 10418, 1, 0, 0, 0, 10418, 1345, 1, 0, 0, 0, 10419, 10417, 1, 0, 0, 0, 10420, 10421, 3, 1348, 674, 0, 10421, 10422, 5, 64, 0, 0, 10422, 10423, 3, 1210, 605, 0, 10423, 1347, 1, 0, 0, 0, 10424, 10433, 3, 1490, 745, 0, 10425, 10433, 5, 384, 0, 0, 10426, 10433, 5, 264, 0, 0, 10427, 10433, 5, 176, 0, 0, 10428, 10433, 5, 218, 0, 0, 10429, 10433, 5, 261, 0, 0, 10430, 10433, 5, 326, 0, 0, 10431, 10433, 3, 1456, 728, 0, 10432, 10424, 1, 0, 0, 0, 10432, 10425, 1, 0, 0, 0, 10432, 10426, 1, 0, 0, 0, 10432, 10427, 1, 0, 0, 0, 10432, 10428, 1, 0, 0, 0, 10432, 10429, 1, 0, 0, 0, 10432, 10430, 1, 0, 0, 0, 10432, 10431, 1, 0, 0, 0, 10433, 1349, 1, 0, 0, 0, 10434, 10435, 7, 77, 0, 0, 10435, 1351, 1, 0, 0, 0, 10436, 10437, 3, 1210, 605, 0, 10437, 10438, 5, 84, 0, 0, 10438, 10439, 3, 1210, 605, 0, 10439, 10440, 5, 64, 0, 0, 10440, 10443, 3, 1210, 605, 0, 10441, 10442, 5, 62, 0, 0, 10442, 10444, 3, 1210, 605, 0, 10443, 10441, 1, 0, 0, 0, 10443, 10444, 1, 0, 0, 0, 10444, 1353, 1, 0, 0, 0, 10445, 10446, 3, 1250, 625, 0, 10446, 10447, 5, 68, 0, 0, 10447, 10448, 3, 1250, 625, 0, 10448, 1355, 1, 0, 0, 0, 10449, 10450, 3, 1210, 605, 0, 10450, 10451, 5, 64, 0, 0, 10451, 10452, 3, 1210, 605, 0, 10452, 10453, 5, 62, 0, 0, 10453, 10454, 3, 1210, 605, 0, 10454, 10477, 1, 0, 0, 0, 10455, 10456, 3, 1210, 605, 0, 10456, 10457, 5, 62, 0, 0, 10457, 10458, 3, 1210, 605, 0, 10458, 10459, 5, 64, 0, 0, 10459, 10460, 3, 1210, 605, 0, 10460, 10477, 1, 0, 0, 0, 10461, 10462, 3, 1210, 605, 0, 10462, 10463, 5, 64, 0, 0, 10463, 10464, 3, 1210, 605, 0, 10464, 10477, 1, 0, 0, 0, 10465, 10466, 3, 1210, 605, 0, 10466, 10467, 5, 62, 0, 0, 10467, 10468, 3, 1210, 605, 0, 10468, 10477, 1, 0, 0, 0, 10469, 10470, 3, 1210, 605, 0, 10470, 10471, 5, 127, 0, 0, 10471, 10472, 3, 1210, 605, 0, 10472, 10473, 5, 197, 0, 0, 10473, 10474, 3, 1210, 605, 0, 10474, 10477, 1, 0, 0, 0, 10475, 10477, 3, 1326, 663, 0, 10476, 10449, 1, 0, 0, 0, 10476, 10455, 1, 0, 0, 0, 10476, 10461, 1, 0, 0, 0, 10476, 10465, 1, 0, 0, 0, 10476, 10469, 1, 0, 0, 0, 10476, 10475, 1, 0, 0, 0, 10477, 1357, 1, 0, 0, 0, 10478, 10479, 3, 1210, 605, 0, 10479, 10480, 5, 64, 0, 0, 10480, 10481, 3, 1326, 663, 0, 10481, 10486, 1, 0, 0, 0, 10482, 10483, 5, 64, 0, 0, 10483, 10486, 3, 1326, 663, 0, 10484, 10486, 3, 1326, 663, 0, 10485, 10478, 1, 0, 0, 0, 10485, 10482, 1, 0, 0, 0, 10485, 10484, 1, 0, 0, 0, 10486, 1359, 1, 0, 0, 0, 10487, 10493, 3, 1000, 500, 0, 10488, 10489, 5, 2, 0, 0, 10489, 10490, 3, 1326, 663, 0, 10490, 10491, 5, 3, 0, 0, 10491, 10493, 1, 0, 0, 0, 10492, 10487, 1, 0, 0, 0, 10492, 10488, 1, 0, 0, 0, 10493, 1361, 1, 0, 0, 0, 10494, 10496, 5, 40, 0, 0, 10495, 10497, 3, 1370, 685, 0, 10496, 10495, 1, 0, 0, 0, 10496, 10497, 1, 0, 0, 0, 10497, 10498, 1, 0, 0, 0, 10498, 10500, 3, 1364, 682, 0, 10499, 10501, 3, 1368, 684, 0, 10500, 10499, 1, 0, 0, 0, 10500, 10501, 1, 0, 0, 0, 10501, 10502, 1, 0, 0, 0, 10502, 10503, 5, 454, 0, 0, 10503, 1363, 1, 0, 0, 0, 10504, 10506, 3, 1366, 683, 0, 10505, 10504, 1, 0, 0, 0, 10506, 10507, 1, 0, 0, 0, 10507, 10505, 1, 0, 0, 0, 10507, 10508, 1, 0, 0, 0, 10508, 1365, 1, 0, 0, 0, 10509, 10510, 5, 102, 0, 0, 10510, 10511, 3, 1210, 605, 0, 10511, 10512, 5, 93, 0, 0, 10512, 10513, 3, 1210, 605, 0, 10513, 1367, 1, 0, 0, 0, 10514, 10515, 5, 58, 0, 0, 10515, 10516, 3, 1210, 605, 0, 10516, 1369, 1, 0, 0, 0, 10517, 10518, 3, 1210, 605, 0, 10518, 1371, 1, 0, 0, 0, 10519, 10521, 3, 1472, 736, 0, 10520, 10522, 3, 1378, 689, 0, 10521, 10520, 1, 0, 0, 0, 10521, 10522, 1, 0, 0, 0, 10522, 1373, 1, 0, 0, 0, 10523, 10526, 5, 11, 0, 0, 10524, 10527, 3, 1436, 718, 0, 10525, 10527, 5, 9, 0, 0, 10526, 10524, 1, 0, 0, 0, 10526, 10525, 1, 0, 0, 0, 10527, 10541, 1, 0, 0, 0, 10528, 10537, 5, 4, 0, 0, 10529, 10538, 3, 1210, 605, 0, 10530, 10532, 3, 1376, 688, 0, 10531, 10530, 1, 0, 0, 0, 10531, 10532, 1, 0, 0, 0, 10532, 10533, 1, 0, 0, 0, 10533, 10535, 5, 8, 0, 0, 10534, 10536, 3, 1376, 688, 0, 10535, 10534, 1, 0, 0, 0, 10535, 10536, 1, 0, 0, 0, 10536, 10538, 1, 0, 0, 0, 10537, 10529, 1, 0, 0, 0, 10537, 10531, 1, 0, 0, 0, 10538, 10539, 1, 0, 0, 0, 10539, 10541, 5, 5, 0, 0, 10540, 10523, 1, 0, 0, 0, 10540, 10528, 1, 0, 0, 0, 10541, 1375, 1, 0, 0, 0, 10542, 10543, 3, 1210, 605, 0, 10543, 1377, 1, 0, 0, 0, 10544, 10546, 3, 1374, 687, 0, 10545, 10544, 1, 0, 0, 0, 10546, 10547, 1, 0, 0, 0, 10547, 10545, 1, 0, 0, 0, 10547, 10548, 1, 0, 0, 0, 10548, 1379, 1, 0, 0, 0, 10549, 10551, 3, 1374, 687, 0, 10550, 10549, 1, 0, 0, 0, 10551, 10554, 1, 0, 0, 0, 10552, 10550, 1, 0, 0, 0, 10552, 10553, 1, 0, 0, 0, 10553, 1381, 1, 0, 0, 0, 10554, 10552, 1, 0, 0, 0, 10555, 10556, 3, 1384, 692, 0, 10556, 1383, 1, 0, 0, 0, 10557, 10562, 3, 1386, 693, 0, 10558, 10559, 5, 6, 0, 0, 10559, 10561, 3, 1386, 693, 0, 10560, 10558, 1, 0, 0, 0, 10561, 10564, 1, 0, 0, 0, 10562, 10560, 1, 0, 0, 0, 10562, 10563, 1, 0, 0, 0, 10563, 1385, 1, 0, 0, 0, 10564, 10562, 1, 0, 0, 0, 10565, 10570, 3, 1334, 667, 0, 10566, 10567, 5, 36, 0, 0, 10567, 10571, 3, 1488, 744, 0, 10568, 10571, 3, 1490, 745, 0, 10569, 10571, 1, 0, 0, 0, 10570, 10566, 1, 0, 0, 0, 10570, 10568, 1, 0, 0, 0, 10570, 10569, 1, 0, 0, 0, 10571, 10574, 1, 0, 0, 0, 10572, 10574, 5, 9, 0, 0, 10573, 10565, 1, 0, 0, 0, 10573, 10572, 1, 0, 0, 0, 10574, 1387, 1, 0, 0, 0, 10575, 10580, 3, 1410, 705, 0, 10576, 10577, 5, 6, 0, 0, 10577, 10579, 3, 1410, 705, 0, 10578, 10576, 1, 0, 0, 0, 10579, 10582, 1, 0, 0, 0, 10580, 10578, 1, 0, 0, 0, 10580, 10581, 1, 0, 0, 0, 10581, 1389, 1, 0, 0, 0, 10582, 10580, 1, 0, 0, 0, 10583, 10588, 3, 1404, 702, 0, 10584, 10585, 5, 6, 0, 0, 10585, 10587, 3, 1404, 702, 0, 10586, 10584, 1, 0, 0, 0, 10587, 10590, 1, 0, 0, 0, 10588, 10586, 1, 0, 0, 0, 10588, 10589, 1, 0, 0, 0, 10589, 1391, 1, 0, 0, 0, 10590, 10588, 1, 0, 0, 0, 10591, 10596, 3, 1420, 710, 0, 10592, 10593, 5, 6, 0, 0, 10593, 10595, 3, 1420, 710, 0, 10594, 10592, 1, 0, 0, 0, 10595, 10598, 1, 0, 0, 0, 10596, 10594, 1, 0, 0, 0, 10596, 10597, 1, 0, 0, 0, 10597, 1393, 1, 0, 0, 0, 10598, 10596, 1, 0, 0, 0, 10599, 10604, 3, 1418, 709, 0, 10600, 10601, 5, 6, 0, 0, 10601, 10603, 3, 1418, 709, 0, 10602, 10600, 1, 0, 0, 0, 10603, 10606, 1, 0, 0, 0, 10604, 10602, 1, 0, 0, 0, 10604, 10605, 1, 0, 0, 0, 10605, 1395, 1, 0, 0, 0, 10606, 10604, 1, 0, 0, 0, 10607, 10612, 3, 1426, 713, 0, 10608, 10609, 5, 6, 0, 0, 10609, 10611, 3, 1426, 713, 0, 10610, 10608, 1, 0, 0, 0, 10611, 10614, 1, 0, 0, 0, 10612, 10610, 1, 0, 0, 0, 10612, 10613, 1, 0, 0, 0, 10613, 1397, 1, 0, 0, 0, 10614, 10612, 1, 0, 0, 0, 10615, 10617, 3, 1472, 736, 0, 10616, 10618, 3, 1378, 689, 0, 10617, 10616, 1, 0, 0, 0, 10617, 10618, 1, 0, 0, 0, 10618, 1399, 1, 0, 0, 0, 10619, 10621, 3, 1472, 736, 0, 10620, 10622, 3, 1378, 689, 0, 10621, 10620, 1, 0, 0, 0, 10621, 10622, 1, 0, 0, 0, 10622, 1401, 1, 0, 0, 0, 10623, 10625, 3, 1472, 736, 0, 10624, 10626, 3, 1378, 689, 0, 10625, 10624, 1, 0, 0, 0, 10625, 10626, 1, 0, 0, 0, 10626, 1403, 1, 0, 0, 0, 10627, 10629, 3, 1472, 736, 0, 10628, 10630, 3, 1378, 689, 0, 10629, 10628, 1, 0, 0, 0, 10629, 10630, 1, 0, 0, 0, 10630, 1405, 1, 0, 0, 0, 10631, 10633, 3, 1472, 736, 0, 10632, 10634, 3, 1378, 689, 0, 10633, 10632, 1, 0, 0, 0, 10633, 10634, 1, 0, 0, 0, 10634, 1407, 1, 0, 0, 0, 10635, 10637, 3, 1472, 736, 0, 10636, 10638, 3, 558, 279, 0, 10637, 10636, 1, 0, 0, 0, 10637, 10638, 1, 0, 0, 0, 10638, 1409, 1, 0, 0, 0, 10639, 10641, 3, 1472, 736, 0, 10640, 10642, 3, 1378, 689, 0, 10641, 10640, 1, 0, 0, 0, 10641, 10642, 1, 0, 0, 0, 10642, 1411, 1, 0, 0, 0, 10643, 10648, 3, 1400, 700, 0, 10644, 10645, 5, 6, 0, 0, 10645, 10647, 3, 1400, 700, 0, 10646, 10644, 1, 0, 0, 0, 10647, 10650, 1, 0, 0, 0, 10648, 10646, 1, 0, 0, 0, 10648, 10649, 1, 0, 0, 0, 10649, 1413, 1, 0, 0, 0, 10650, 10648, 1, 0, 0, 0, 10651, 10656, 3, 1434, 717, 0, 10652, 10653, 5, 6, 0, 0, 10653, 10655, 3, 1434, 717, 0, 10654, 10652, 1, 0, 0, 0, 10655, 10658, 1, 0, 0, 0, 10656, 10654, 1, 0, 0, 0, 10656, 10657, 1, 0, 0, 0, 10657, 1415, 1, 0, 0, 0, 10658, 10656, 1, 0, 0, 0, 10659, 10661, 3, 1472, 736, 0, 10660, 10662, 3, 558, 279, 0, 10661, 10660, 1, 0, 0, 0, 10661, 10662, 1, 0, 0, 0, 10662, 1417, 1, 0, 0, 0, 10663, 10665, 3, 1472, 736, 0, 10664, 10666, 3, 558, 279, 0, 10665, 10664, 1, 0, 0, 0, 10665, 10666, 1, 0, 0, 0, 10666, 1419, 1, 0, 0, 0, 10667, 10669, 3, 1472, 736, 0, 10668, 10670, 3, 558, 279, 0, 10669, 10668, 1, 0, 0, 0, 10669, 10670, 1, 0, 0, 0, 10670, 1421, 1, 0, 0, 0, 10671, 10672, 3, 1472, 736, 0, 10672, 1423, 1, 0, 0, 0, 10673, 10674, 3, 1472, 736, 0, 10674, 1425, 1, 0, 0, 0, 10675, 10680, 3, 1480, 740, 0, 10676, 10677, 3, 1472, 736, 0, 10677, 10678, 3, 1378, 689, 0, 10678, 10680, 1, 0, 0, 0, 10679, 10675, 1, 0, 0, 0, 10679, 10676, 1, 0, 0, 0, 10680, 1427, 1, 0, 0, 0, 10681, 10686, 3, 1480, 740, 0, 10682, 10683, 3, 1472, 736, 0, 10683, 10684, 3, 1378, 689, 0, 10684, 10686, 1, 0, 0, 0, 10685, 10681, 1, 0, 0, 0, 10685, 10682, 1, 0, 0, 0, 10686, 1429, 1, 0, 0, 0, 10687, 10691, 3, 1472, 736, 0, 10688, 10690, 3, 1374, 687, 0, 10689, 10688, 1, 0, 0, 0, 10690, 10693, 1, 0, 0, 0, 10691, 10689, 1, 0, 0, 0, 10691, 10692, 1, 0, 0, 0, 10692, 1431, 1, 0, 0, 0, 10693, 10691, 1, 0, 0, 0, 10694, 10695, 3, 1472, 736, 0, 10695, 1433, 1, 0, 0, 0, 10696, 10697, 3, 1472, 736, 0, 10697, 1435, 1, 0, 0, 0, 10698, 10699, 3, 1488, 744, 0, 10699, 1437, 1, 0, 0, 0, 10700, 10701, 3, 1456, 728, 0, 10701, 1439, 1, 0, 0, 0, 10702, 10707, 3, 1480, 740, 0, 10703, 10704, 3, 1472, 736, 0, 10704, 10705, 3, 1378, 689, 0, 10705, 10707, 1, 0, 0, 0, 10706, 10702, 1, 0, 0, 0, 10706, 10703, 1, 0, 0, 0, 10707, 1441, 1, 0, 0, 0, 10708, 10713, 3, 1480, 740, 0, 10709, 10710, 3, 1472, 736, 0, 10710, 10711, 3, 1378, 689, 0, 10711, 10713, 1, 0, 0, 0, 10712, 10708, 1, 0, 0, 0, 10712, 10709, 1, 0, 0, 0, 10713, 1443, 1, 0, 0, 0, 10714, 10719, 3, 1482, 741, 0, 10715, 10716, 3, 1472, 736, 0, 10716, 10717, 3, 1378, 689, 0, 10717, 10719, 1, 0, 0, 0, 10718, 10714, 1, 0, 0, 0, 10718, 10715, 1, 0, 0, 0, 10719, 1445, 1, 0, 0, 0, 10720, 10756, 3, 1454, 727, 0, 10721, 10756, 3, 1452, 726, 0, 10722, 10756, 3, 1456, 728, 0, 10723, 10756, 3, 1450, 725, 0, 10724, 10756, 3, 1448, 724, 0, 10725, 10735, 3, 1442, 721, 0, 10726, 10736, 3, 1456, 728, 0, 10727, 10728, 5, 2, 0, 0, 10728, 10730, 3, 1336, 668, 0, 10729, 10731, 3, 1040, 520, 0, 10730, 10729, 1, 0, 0, 0, 10730, 10731, 1, 0, 0, 0, 10731, 10732, 1, 0, 0, 0, 10732, 10733, 5, 3, 0, 0, 10733, 10734, 3, 1456, 728, 0, 10734, 10736, 1, 0, 0, 0, 10735, 10726, 1, 0, 0, 0, 10735, 10727, 1, 0, 0, 0, 10736, 10756, 1, 0, 0, 0, 10737, 10738, 3, 1172, 586, 0, 10738, 10739, 3, 1456, 728, 0, 10739, 10756, 1, 0, 0, 0, 10740, 10750, 3, 1200, 600, 0, 10741, 10743, 3, 1456, 728, 0, 10742, 10744, 3, 1204, 602, 0, 10743, 10742, 1, 0, 0, 0, 10743, 10744, 1, 0, 0, 0, 10744, 10751, 1, 0, 0, 0, 10745, 10746, 5, 2, 0, 0, 10746, 10747, 3, 1454, 727, 0, 10747, 10748, 5, 3, 0, 0, 10748, 10749, 3, 1456, 728, 0, 10749, 10751, 1, 0, 0, 0, 10750, 10741, 1, 0, 0, 0, 10750, 10745, 1, 0, 0, 0, 10751, 10756, 1, 0, 0, 0, 10752, 10756, 5, 96, 0, 0, 10753, 10756, 5, 60, 0, 0, 10754, 10756, 5, 78, 0, 0, 10755, 10720, 1, 0, 0, 0, 10755, 10721, 1, 0, 0, 0, 10755, 10722, 1, 0, 0, 0, 10755, 10723, 1, 0, 0, 0, 10755, 10724, 1, 0, 0, 0, 10755, 10725, 1, 0, 0, 0, 10755, 10737, 1, 0, 0, 0, 10755, 10740, 1, 0, 0, 0, 10755, 10752, 1, 0, 0, 0, 10755, 10753, 1, 0, 0, 0, 10755, 10754, 1, 0, 0, 0, 10756, 1447, 1, 0, 0, 0, 10757, 10758, 5, 567, 0, 0, 10758, 1449, 1, 0, 0, 0, 10759, 10760, 5, 563, 0, 0, 10760, 1451, 1, 0, 0, 0, 10761, 10762, 5, 573, 0, 0, 10762, 1453, 1, 0, 0, 0, 10763, 10764, 5, 571, 0, 0, 10764, 1455, 1, 0, 0, 0, 10765, 10767, 3, 1458, 729, 0, 10766, 10768, 3, 1460, 730, 0, 10767, 10766, 1, 0, 0, 0, 10767, 10768, 1, 0, 0, 0, 10768, 1457, 1, 0, 0, 0, 10769, 10781, 5, 558, 0, 0, 10770, 10781, 5, 560, 0, 0, 10771, 10775, 5, 562, 0, 0, 10772, 10774, 5, 588, 0, 0, 10773, 10772, 1, 0, 0, 0, 10774, 10777, 1, 0, 0, 0, 10775, 10773, 1, 0, 0, 0, 10775, 10776, 1, 0, 0, 0, 10776, 10778, 1, 0, 0, 0, 10777, 10775, 1, 0, 0, 0, 10778, 10781, 5, 589, 0, 0, 10779, 10781, 5, 584, 0, 0, 10780, 10769, 1, 0, 0, 0, 10780, 10770, 1, 0, 0, 0, 10780, 10771, 1, 0, 0, 0, 10780, 10779, 1, 0, 0, 0, 10781, 1459, 1, 0, 0, 0, 10782, 10783, 5, 487, 0, 0, 10783, 10784, 3, 1458, 729, 0, 10784, 1461, 1, 0, 0, 0, 10785, 10791, 3, 1454, 727, 0, 10786, 10787, 5, 12, 0, 0, 10787, 10791, 3, 1454, 727, 0, 10788, 10789, 5, 13, 0, 0, 10789, 10791, 3, 1454, 727, 0, 10790, 10785, 1, 0, 0, 0, 10790, 10786, 1, 0, 0, 0, 10790, 10788, 1, 0, 0, 0, 10791, 1463, 1, 0, 0, 0, 10792, 10793, 3, 1468, 734, 0, 10793, 1465, 1, 0, 0, 0, 10794, 10795, 3, 1468, 734, 0, 10795, 1467, 1, 0, 0, 0, 10796, 10802, 3, 1486, 743, 0, 10797, 10802, 5, 52, 0, 0, 10798, 10802, 5, 49, 0, 0, 10799, 10802, 5, 89, 0, 0, 10800, 10802, 5, 524, 0, 0, 10801, 10796, 1, 0, 0, 0, 10801, 10797, 1, 0, 0, 0, 10801, 10798, 1, 0, 0, 0, 10801, 10799, 1, 0, 0, 0, 10801, 10800, 1, 0, 0, 0, 10802, 1469, 1, 0, 0, 0, 10803, 10808, 3, 1468, 734, 0, 10804, 10805, 5, 6, 0, 0, 10805, 10807, 3, 1468, 734, 0, 10806, 10804, 1, 0, 0, 0, 10807, 10810, 1, 0, 0, 0, 10808, 10806, 1, 0, 0, 0, 10808, 10809, 1, 0, 0, 0, 10809, 1471, 1, 0, 0, 0, 10810, 10808, 1, 0, 0, 0, 10811, 10816, 3, 1490, 745, 0, 10812, 10816, 3, 1494, 747, 0, 10813, 10816, 3, 1496, 748, 0, 10814, 10816, 3, 1732, 866, 0, 10815, 10811, 1, 0, 0, 0, 10815, 10812, 1, 0, 0, 0, 10815, 10813, 1, 0, 0, 0, 10815, 10814, 1, 0, 0, 0, 10816, 1473, 1, 0, 0, 0, 10817, 10818, 3, 1490, 745, 0, 10818, 1475, 1, 0, 0, 0, 10819, 10832, 3, 708, 354, 0, 10820, 10821, 5, 2, 0, 0, 10821, 10822, 3, 1210, 605, 0, 10822, 10823, 5, 3, 0, 0, 10823, 10824, 1, 0, 0, 0, 10824, 10826, 3, 1490, 745, 0, 10825, 10827, 3, 648, 324, 0, 10826, 10825, 1, 0, 0, 0, 10826, 10827, 1, 0, 0, 0, 10827, 10829, 1, 0, 0, 0, 10828, 10830, 3, 650, 325, 0, 10829, 10828, 1, 0, 0, 0, 10829, 10830, 1, 0, 0, 0, 10830, 10832, 1, 0, 0, 0, 10831, 10819, 1, 0, 0, 0, 10831, 10820, 1, 0, 0, 0, 10832, 1477, 1, 0, 0, 0, 10833, 10834, 5, 105, 0, 0, 10834, 10836, 3, 132, 66, 0, 10835, 10833, 1, 0, 0, 0, 10835, 10836, 1, 0, 0, 0, 10836, 10838, 1, 0, 0, 0, 10837, 10839, 3, 284, 142, 0, 10838, 10837, 1, 0, 0, 0, 10838, 10839, 1, 0, 0, 0, 10839, 1479, 1, 0, 0, 0, 10840, 10845, 3, 1490, 745, 0, 10841, 10845, 3, 1494, 747, 0, 10842, 10845, 3, 1732, 866, 0, 10843, 10845, 3, 1498, 749, 0, 10844, 10840, 1, 0, 0, 0, 10844, 10841, 1, 0, 0, 0, 10844, 10842, 1, 0, 0, 0, 10844, 10843, 1, 0, 0, 0, 10845, 1481, 1, 0, 0, 0, 10846, 10851, 3, 1490, 745, 0, 10847, 10851, 3, 1494, 747, 0, 10848, 10851, 3, 1732, 866, 0, 10849, 10851, 3, 1498, 749, 0, 10850, 10846, 1, 0, 0, 0, 10850, 10847, 1, 0, 0, 0, 10850, 10848, 1, 0, 0, 0, 10850, 10849, 1, 0, 0, 0, 10851, 1483, 1, 0, 0, 0, 10852, 10855, 3, 1430, 715, 0, 10853, 10855, 3, 1498, 749, 0, 10854, 10852, 1, 0, 0, 0, 10854, 10853, 1, 0, 0, 0, 10855, 1485, 1, 0, 0, 0, 10856, 10861, 3, 1490, 745, 0, 10857, 10861, 3, 1494, 747, 0, 10858, 10861, 3, 1496, 748, 0, 10859, 10861, 3, 1498, 749, 0, 10860, 10856, 1, 0, 0, 0, 10860, 10857, 1, 0, 0, 0, 10860, 10858, 1, 0, 0, 0, 10860, 10859, 1, 0, 0, 0, 10861, 1487, 1, 0, 0, 0, 10862, 10869, 3, 1490, 745, 0, 10863, 10869, 3, 1732, 866, 0, 10864, 10869, 3, 1494, 747, 0, 10865, 10869, 3, 1496, 748, 0, 10866, 10869, 3, 1498, 749, 0, 10867, 10869, 3, 1500, 750, 0, 10868, 10862, 1, 0, 0, 0, 10868, 10863, 1, 0, 0, 0, 10868, 10864, 1, 0, 0, 0, 10868, 10865, 1, 0, 0, 0, 10868, 10866, 1, 0, 0, 0, 10868, 10867, 1, 0, 0, 0, 10869, 1489, 1, 0, 0, 0, 10870, 10872, 5, 549, 0, 0, 10871, 10873, 3, 1460, 730, 0, 10872, 10871, 1, 0, 0, 0, 10872, 10873, 1, 0, 0, 0, 10873, 10881, 1, 0, 0, 0, 10874, 10881, 3, 1456, 728, 0, 10875, 10881, 5, 550, 0, 0, 10876, 10881, 5, 554, 0, 0, 10877, 10881, 3, 1254, 627, 0, 10878, 10881, 3, 1492, 746, 0, 10879, 10881, 3, 1732, 866, 0, 10880, 10870, 1, 0, 0, 0, 10880, 10874, 1, 0, 0, 0, 10880, 10875, 1, 0, 0, 0, 10880, 10876, 1, 0, 0, 0, 10880, 10877, 1, 0, 0, 0, 10880, 10878, 1, 0, 0, 0, 10880, 10879, 1, 0, 0, 0, 10881, 1491, 1, 0, 0, 0, 10882, 10883, 5, 575, 0, 0, 10883, 1493, 1, 0, 0, 0, 10884, 10885, 7, 78, 0, 0, 10885, 1495, 1, 0, 0, 0, 10886, 10938, 5, 387, 0, 0, 10887, 10938, 5, 388, 0, 0, 10888, 10938, 3, 1182, 591, 0, 10889, 10938, 5, 390, 0, 0, 10890, 10938, 5, 391, 0, 0, 10891, 10938, 3, 1190, 595, 0, 10892, 10938, 5, 393, 0, 0, 10893, 10938, 5, 394, 0, 0, 10894, 10938, 5, 395, 0, 0, 10895, 10938, 5, 396, 0, 0, 10896, 10938, 5, 397, 0, 0, 10897, 10938, 5, 398, 0, 0, 10898, 10938, 5, 399, 0, 0, 10899, 10938, 5, 470, 0, 0, 10900, 10938, 5, 400, 0, 0, 10901, 10938, 5, 401, 0, 0, 10902, 10938, 5, 402, 0, 0, 10903, 10938, 5, 403, 0, 0, 10904, 10938, 5, 404, 0, 0, 10905, 10938, 5, 405, 0, 0, 10906, 10938, 5, 406, 0, 0, 10907, 10938, 5, 407, 0, 0, 10908, 10938, 5, 489, 0, 0, 10909, 10938, 5, 408, 0, 0, 10910, 10938, 3, 1178, 589, 0, 10911, 10938, 5, 453, 0, 0, 10912, 10938, 5, 410, 0, 0, 10913, 10938, 5, 411, 0, 0, 10914, 10938, 5, 412, 0, 0, 10915, 10938, 5, 413, 0, 0, 10916, 10938, 5, 414, 0, 0, 10917, 10938, 5, 415, 0, 0, 10918, 10938, 5, 416, 0, 0, 10919, 10938, 5, 417, 0, 0, 10920, 10938, 5, 418, 0, 0, 10921, 10938, 5, 419, 0, 0, 10922, 10938, 5, 420, 0, 0, 10923, 10938, 5, 421, 0, 0, 10924, 10938, 5, 422, 0, 0, 10925, 10938, 5, 423, 0, 0, 10926, 10938, 5, 424, 0, 0, 10927, 10938, 5, 425, 0, 0, 10928, 10938, 5, 426, 0, 0, 10929, 10938, 5, 427, 0, 0, 10930, 10938, 5, 428, 0, 0, 10931, 10938, 5, 476, 0, 0, 10932, 10938, 5, 429, 0, 0, 10933, 10938, 5, 430, 0, 0, 10934, 10938, 5, 431, 0, 0, 10935, 10938, 5, 432, 0, 0, 10936, 10938, 5, 474, 0, 0, 10937, 10886, 1, 0, 0, 0, 10937, 10887, 1, 0, 0, 0, 10937, 10888, 1, 0, 0, 0, 10937, 10889, 1, 0, 0, 0, 10937, 10890, 1, 0, 0, 0, 10937, 10891, 1, 0, 0, 0, 10937, 10892, 1, 0, 0, 0, 10937, 10893, 1, 0, 0, 0, 10937, 10894, 1, 0, 0, 0, 10937, 10895, 1, 0, 0, 0, 10937, 10896, 1, 0, 0, 0, 10937, 10897, 1, 0, 0, 0, 10937, 10898, 1, 0, 0, 0, 10937, 10899, 1, 0, 0, 0, 10937, 10900, 1, 0, 0, 0, 10937, 10901, 1, 0, 0, 0, 10937, 10902, 1, 0, 0, 0, 10937, 10903, 1, 0, 0, 0, 10937, 10904, 1, 0, 0, 0, 10937, 10905, 1, 0, 0, 0, 10937, 10906, 1, 0, 0, 0, 10937, 10907, 1, 0, 0, 0, 10937, 10908, 1, 0, 0, 0, 10937, 10909, 1, 0, 0, 0, 10937, 10910, 1, 0, 0, 0, 10937, 10911, 1, 0, 0, 0, 10937, 10912, 1, 0, 0, 0, 10937, 10913, 1, 0, 0, 0, 10937, 10914, 1, 0, 0, 0, 10937, 10915, 1, 0, 0, 0, 10937, 10916, 1, 0, 0, 0, 10937, 10917, 1, 0, 0, 0, 10937, 10918, 1, 0, 0, 0, 10937, 10919, 1, 0, 0, 0, 10937, 10920, 1, 0, 0, 0, 10937, 10921, 1, 0, 0, 0, 10937, 10922, 1, 0, 0, 0, 10937, 10923, 1, 0, 0, 0, 10937, 10924, 1, 0, 0, 0, 10937, 10925, 1, 0, 0, 0, 10937, 10926, 1, 0, 0, 0, 10937, 10927, 1, 0, 0, 0, 10937, 10928, 1, 0, 0, 0, 10937, 10929, 1, 0, 0, 0, 10937, 10930, 1, 0, 0, 0, 10937, 10931, 1, 0, 0, 0, 10937, 10932, 1, 0, 0, 0, 10937, 10933, 1, 0, 0, 0, 10937, 10934, 1, 0, 0, 0, 10937, 10935, 1, 0, 0, 0, 10937, 10936, 1, 0, 0, 0, 10938, 1497, 1, 0, 0, 0, 10939, 10940, 7, 79, 0, 0, 10940, 1499, 1, 0, 0, 0, 10941, 10942, 7, 80, 0, 0, 10942, 1501, 1, 0, 0, 0, 10943, 10944, 3, 1504, 752, 0, 10944, 10945, 3, 1514, 757, 0, 10945, 10946, 3, 1512, 756, 0, 10946, 1503, 1, 0, 0, 0, 10947, 10949, 3, 1506, 753, 0, 10948, 10947, 1, 0, 0, 0, 10949, 10952, 1, 0, 0, 0, 10950, 10948, 1, 0, 0, 0, 10950, 10951, 1, 0, 0, 0, 10951, 1505, 1, 0, 0, 0, 10952, 10950, 1, 0, 0, 0, 10953, 10954, 3, 1508, 754, 0, 10954, 10955, 5, 279, 0, 0, 10955, 10956, 5, 490, 0, 0, 10956, 10974, 1, 0, 0, 0, 10957, 10958, 3, 1508, 754, 0, 10958, 10959, 5, 491, 0, 0, 10959, 10960, 3, 1510, 755, 0, 10960, 10974, 1, 0, 0, 0, 10961, 10962, 3, 1508, 754, 0, 10962, 10963, 5, 492, 0, 0, 10963, 10964, 5, 493, 0, 0, 10964, 10974, 1, 0, 0, 0, 10965, 10966, 3, 1508, 754, 0, 10966, 10967, 5, 492, 0, 0, 10967, 10968, 5, 494, 0, 0, 10968, 10974, 1, 0, 0, 0, 10969, 10970, 3, 1508, 754, 0, 10970, 10971, 5, 492, 0, 0, 10971, 10972, 5, 495, 0, 0, 10972, 10974, 1, 0, 0, 0, 10973, 10953, 1, 0, 0, 0, 10973, 10957, 1, 0, 0, 0, 10973, 10961, 1, 0, 0, 0, 10973, 10965, 1, 0, 0, 0, 10973, 10969, 1, 0, 0, 0, 10974, 1507, 1, 0, 0, 0, 10975, 10976, 5, 29, 0, 0, 10976, 1509, 1, 0, 0, 0, 10977, 10982, 3, 1456, 728, 0, 10978, 10982, 3, 1500, 750, 0, 10979, 10982, 3, 1732, 866, 0, 10980, 10982, 3, 1494, 747, 0, 10981, 10977, 1, 0, 0, 0, 10981, 10978, 1, 0, 0, 0, 10981, 10979, 1, 0, 0, 0, 10981, 10980, 1, 0, 0, 0, 10982, 1511, 1, 0, 0, 0, 10983, 10986, 1, 0, 0, 0, 10984, 10986, 5, 7, 0, 0, 10985, 10983, 1, 0, 0, 0, 10985, 10984, 1, 0, 0, 0, 10986, 1513, 1, 0, 0, 0, 10987, 10988, 3, 1516, 758, 0, 10988, 10989, 5, 146, 0, 0, 10989, 10990, 3, 1558, 779, 0, 10990, 10991, 3, 1712, 856, 0, 10991, 10992, 5, 454, 0, 0, 10992, 10993, 3, 1726, 863, 0, 10993, 1515, 1, 0, 0, 0, 10994, 10999, 3, 1722, 861, 0, 10995, 10997, 3, 1518, 759, 0, 10996, 10998, 3, 1520, 760, 0, 10997, 10996, 1, 0, 0, 0, 10997, 10998, 1, 0, 0, 0, 10998, 11000, 1, 0, 0, 0, 10999, 10995, 1, 0, 0, 0, 10999, 11000, 1, 0, 0, 0, 11000, 1517, 1, 0, 0, 0, 11001, 11002, 5, 178, 0, 0, 11002, 1519, 1, 0, 0, 0, 11003, 11005, 3, 1524, 762, 0, 11004, 11003, 1, 0, 0, 0, 11005, 11006, 1, 0, 0, 0, 11006, 11004, 1, 0, 0, 0, 11006, 11007, 1, 0, 0, 0, 11007, 1521, 1, 0, 0, 0, 11008, 11009, 5, 18, 0, 0, 11009, 11010, 3, 1730, 865, 0, 11010, 11011, 5, 19, 0, 0, 11011, 1523, 1, 0, 0, 0, 11012, 11016, 3, 1526, 763, 0, 11013, 11016, 5, 178, 0, 0, 11014, 11016, 3, 1522, 761, 0, 11015, 11012, 1, 0, 0, 0, 11015, 11013, 1, 0, 0, 0, 11015, 11014, 1, 0, 0, 0, 11016, 1525, 1, 0, 0, 0, 11017, 11033, 3, 1542, 771, 0, 11018, 11019, 5, 496, 0, 0, 11019, 11020, 5, 62, 0, 0, 11020, 11034, 3, 1540, 770, 0, 11021, 11022, 3, 1544, 772, 0, 11022, 11023, 3, 1546, 773, 0, 11023, 11024, 3, 1548, 774, 0, 11024, 11025, 3, 1550, 775, 0, 11025, 11026, 3, 1552, 776, 0, 11026, 11034, 1, 0, 0, 0, 11027, 11028, 3, 1528, 764, 0, 11028, 11029, 5, 172, 0, 0, 11029, 11030, 3, 1532, 766, 0, 11030, 11031, 3, 1538, 769, 0, 11031, 11032, 3, 1530, 765, 0, 11032, 11034, 1, 0, 0, 0, 11033, 11018, 1, 0, 0, 0, 11033, 11021, 1, 0, 0, 0, 11033, 11027, 1, 0, 0, 0, 11034, 11035, 1, 0, 0, 0, 11035, 11036, 5, 7, 0, 0, 11036, 1527, 1, 0, 0, 0, 11037, 11042, 1, 0, 0, 0, 11038, 11039, 5, 269, 0, 0, 11039, 11042, 5, 324, 0, 0, 11040, 11042, 5, 324, 0, 0, 11041, 11037, 1, 0, 0, 0, 11041, 11038, 1, 0, 0, 0, 11041, 11040, 1, 0, 0, 0, 11042, 1529, 1, 0, 0, 0, 11043, 11044, 3, 998, 499, 0, 11044, 1531, 1, 0, 0, 0, 11045, 11051, 1, 0, 0, 0, 11046, 11047, 5, 2, 0, 0, 11047, 11048, 3, 1534, 767, 0, 11048, 11049, 5, 3, 0, 0, 11049, 11051, 1, 0, 0, 0, 11050, 11045, 1, 0, 0, 0, 11050, 11046, 1, 0, 0, 0, 11051, 1533, 1, 0, 0, 0, 11052, 11057, 3, 1536, 768, 0, 11053, 11054, 5, 6, 0, 0, 11054, 11056, 3, 1536, 768, 0, 11055, 11053, 1, 0, 0, 0, 11056, 11059, 1, 0, 0, 0, 11057, 11055, 1, 0, 0, 0, 11057, 11058, 1, 0, 0, 0, 11058, 1535, 1, 0, 0, 0, 11059, 11057, 1, 0, 0, 0, 11060, 11061, 3, 1542, 771, 0, 11061, 11062, 3, 1546, 773, 0, 11062, 1537, 1, 0, 0, 0, 11063, 11064, 7, 81, 0, 0, 11064, 1539, 1, 0, 0, 0, 11065, 11068, 5, 28, 0, 0, 11066, 11068, 3, 1472, 736, 0, 11067, 11065, 1, 0, 0, 0, 11067, 11066, 1, 0, 0, 0, 11068, 1541, 1, 0, 0, 0, 11069, 11070, 3, 1730, 865, 0, 11070, 1543, 1, 0, 0, 0, 11071, 11074, 1, 0, 0, 0, 11072, 11074, 5, 497, 0, 0, 11073, 11071, 1, 0, 0, 0, 11073, 11072, 1, 0, 0, 0, 11074, 1545, 1, 0, 0, 0, 11075, 11076, 3, 1166, 583, 0, 11076, 1547, 1, 0, 0, 0, 11077, 11081, 1, 0, 0, 0, 11078, 11079, 5, 43, 0, 0, 11079, 11081, 3, 556, 278, 0, 11080, 11077, 1, 0, 0, 0, 11080, 11078, 1, 0, 0, 0, 11081, 1549, 1, 0, 0, 0, 11082, 11086, 1, 0, 0, 0, 11083, 11084, 5, 77, 0, 0, 11084, 11086, 5, 78, 0, 0, 11085, 11082, 1, 0, 0, 0, 11085, 11083, 1, 0, 0, 0, 11086, 1551, 1, 0, 0, 0, 11087, 11092, 1, 0, 0, 0, 11088, 11089, 3, 1554, 777, 0, 11089, 11090, 3, 1734, 867, 0, 11090, 11092, 1, 0, 0, 0, 11091, 11087, 1, 0, 0, 0, 11091, 11088, 1, 0, 0, 0, 11092, 1553, 1, 0, 0, 0, 11093, 11096, 3, 1556, 778, 0, 11094, 11096, 5, 53, 0, 0, 11095, 11093, 1, 0, 0, 0, 11095, 11094, 1, 0, 0, 0, 11096, 1555, 1, 0, 0, 0, 11097, 11098, 7, 82, 0, 0, 11098, 1557, 1, 0, 0, 0, 11099, 11101, 3, 1560, 780, 0, 11100, 11099, 1, 0, 0, 0, 11101, 11104, 1, 0, 0, 0, 11102, 11100, 1, 0, 0, 0, 11102, 11103, 1, 0, 0, 0, 11103, 1559, 1, 0, 0, 0, 11104, 11102, 1, 0, 0, 0, 11105, 11106, 3, 1514, 757, 0, 11106, 11107, 5, 7, 0, 0, 11107, 11133, 1, 0, 0, 0, 11108, 11133, 3, 1626, 813, 0, 11109, 11133, 3, 1630, 815, 0, 11110, 11133, 3, 1568, 784, 0, 11111, 11133, 3, 1584, 792, 0, 11112, 11133, 3, 1590, 795, 0, 11113, 11133, 3, 1600, 800, 0, 11114, 11133, 3, 1602, 801, 0, 11115, 11133, 3, 1604, 802, 0, 11116, 11133, 3, 1618, 809, 0, 11117, 11133, 3, 1622, 811, 0, 11118, 11133, 3, 1642, 821, 0, 11119, 11133, 3, 1648, 824, 0, 11120, 11133, 3, 1650, 825, 0, 11121, 11133, 3, 1562, 781, 0, 11122, 11133, 3, 1564, 782, 0, 11123, 11133, 3, 1570, 785, 0, 11124, 11133, 3, 1658, 829, 0, 11125, 11133, 3, 1670, 835, 0, 11126, 11133, 3, 1678, 839, 0, 11127, 11133, 3, 1698, 849, 0, 11128, 11133, 3, 1700, 850, 0, 11129, 11133, 3, 1702, 851, 0, 11130, 11133, 3, 1704, 852, 0, 11131, 11133, 3, 1708, 854, 0, 11132, 11105, 1, 0, 0, 0, 11132, 11108, 1, 0, 0, 0, 11132, 11109, 1, 0, 0, 0, 11132, 11110, 1, 0, 0, 0, 11132, 11111, 1, 0, 0, 0, 11132, 11112, 1, 0, 0, 0, 11132, 11113, 1, 0, 0, 0, 11132, 11114, 1, 0, 0, 0, 11132, 11115, 1, 0, 0, 0, 11132, 11116, 1, 0, 0, 0, 11132, 11117, 1, 0, 0, 0, 11132, 11118, 1, 0, 0, 0, 11132, 11119, 1, 0, 0, 0, 11132, 11120, 1, 0, 0, 0, 11132, 11121, 1, 0, 0, 0, 11132, 11122, 1, 0, 0, 0, 11132, 11123, 1, 0, 0, 0, 11132, 11124, 1, 0, 0, 0, 11132, 11125, 1, 0, 0, 0, 11132, 11126, 1, 0, 0, 0, 11132, 11127, 1, 0, 0, 0, 11132, 11128, 1, 0, 0, 0, 11132, 11129, 1, 0, 0, 0, 11132, 11130, 1, 0, 0, 0, 11132, 11131, 1, 0, 0, 0, 11133, 1561, 1, 0, 0, 0, 11134, 11135, 5, 498, 0, 0, 11135, 11136, 3, 1738, 869, 0, 11136, 11137, 5, 7, 0, 0, 11137, 1563, 1, 0, 0, 0, 11138, 11139, 5, 433, 0, 0, 11139, 11145, 3, 1730, 865, 0, 11140, 11141, 5, 2, 0, 0, 11141, 11142, 3, 1566, 783, 0, 11142, 11143, 5, 3, 0, 0, 11143, 11144, 5, 7, 0, 0, 11144, 11146, 1, 0, 0, 0, 11145, 11140, 1, 0, 0, 0, 11145, 11146, 1, 0, 0, 0, 11146, 11155, 1, 0, 0, 0, 11147, 11148, 5, 57, 0, 0, 11148, 11149, 3, 1730, 865, 0, 11149, 11150, 5, 2, 0, 0, 11150, 11151, 3, 1566, 783, 0, 11151, 11152, 5, 3, 0, 0, 11152, 11153, 5, 7, 0, 0, 11153, 11155, 1, 0, 0, 0, 11154, 11138, 1, 0, 0, 0, 11154, 11147, 1, 0, 0, 0, 11155, 1565, 1, 0, 0, 0, 11156, 11159, 1, 0, 0, 0, 11157, 11159, 3, 1326, 663, 0, 11158, 11156, 1, 0, 0, 0, 11158, 11157, 1, 0, 0, 0, 11159, 1567, 1, 0, 0, 0, 11160, 11161, 3, 1582, 791, 0, 11161, 11162, 3, 1556, 778, 0, 11162, 11163, 3, 1734, 867, 0, 11163, 11164, 5, 7, 0, 0, 11164, 1569, 1, 0, 0, 0, 11165, 11166, 5, 499, 0, 0, 11166, 11167, 3, 1572, 786, 0, 11167, 11168, 5, 500, 0, 0, 11168, 11169, 3, 1574, 787, 0, 11169, 11170, 5, 7, 0, 0, 11170, 1571, 1, 0, 0, 0, 11171, 11175, 1, 0, 0, 0, 11172, 11175, 5, 434, 0, 0, 11173, 11175, 5, 501, 0, 0, 11174, 11171, 1, 0, 0, 0, 11174, 11172, 1, 0, 0, 0, 11174, 11173, 1, 0, 0, 0, 11175, 1573, 1, 0, 0, 0, 11176, 11181, 3, 1576, 788, 0, 11177, 11178, 5, 6, 0, 0, 11178, 11180, 3, 1576, 788, 0, 11179, 11177, 1, 0, 0, 0, 11180, 11183, 1, 0, 0, 0, 11181, 11179, 1, 0, 0, 0, 11181, 11182, 1, 0, 0, 0, 11182, 1575, 1, 0, 0, 0, 11183, 11181, 1, 0, 0, 0, 11184, 11185, 3, 1580, 790, 0, 11185, 11186, 3, 1556, 778, 0, 11186, 11187, 3, 1578, 789, 0, 11187, 1577, 1, 0, 0, 0, 11188, 11189, 3, 1472, 736, 0, 11189, 1579, 1, 0, 0, 0, 11190, 11191, 3, 1582, 791, 0, 11191, 1581, 1, 0, 0, 0, 11192, 11195, 3, 556, 278, 0, 11193, 11195, 5, 28, 0, 0, 11194, 11192, 1, 0, 0, 0, 11194, 11193, 1, 0, 0, 0, 11195, 11202, 1, 0, 0, 0, 11196, 11197, 5, 4, 0, 0, 11197, 11198, 3, 1740, 870, 0, 11198, 11199, 5, 5, 0, 0, 11199, 11201, 1, 0, 0, 0, 11200, 11196, 1, 0, 0, 0, 11201, 11204, 1, 0, 0, 0, 11202, 11200, 1, 0, 0, 0, 11202, 11203, 1, 0, 0, 0, 11203, 1583, 1, 0, 0, 0, 11204, 11202, 1, 0, 0, 0, 11205, 11206, 5, 220, 0, 0, 11206, 11207, 3, 1736, 868, 0, 11207, 11208, 5, 93, 0, 0, 11208, 11209, 3, 1558, 779, 0, 11209, 11210, 3, 1586, 793, 0, 11210, 11211, 3, 1588, 794, 0, 11211, 11212, 5, 454, 0, 0, 11212, 11213, 5, 220, 0, 0, 11213, 11214, 5, 7, 0, 0, 11214, 1585, 1, 0, 0, 0, 11215, 11216, 5, 502, 0, 0, 11216, 11217, 3, 1210, 605, 0, 11217, 11218, 5, 93, 0, 0, 11218, 11219, 3, 1558, 779, 0, 11219, 11221, 1, 0, 0, 0, 11220, 11215, 1, 0, 0, 0, 11221, 11224, 1, 0, 0, 0, 11222, 11220, 1, 0, 0, 0, 11222, 11223, 1, 0, 0, 0, 11223, 1587, 1, 0, 0, 0, 11224, 11222, 1, 0, 0, 0, 11225, 11229, 1, 0, 0, 0, 11226, 11227, 5, 58, 0, 0, 11227, 11229, 3, 1558, 779, 0, 11228, 11225, 1, 0, 0, 0, 11228, 11226, 1, 0, 0, 0, 11229, 1589, 1, 0, 0, 0, 11230, 11231, 5, 40, 0, 0, 11231, 11232, 3, 1592, 796, 0, 11232, 11233, 3, 1594, 797, 0, 11233, 11234, 3, 1598, 799, 0, 11234, 11235, 5, 454, 0, 0, 11235, 11236, 5, 40, 0, 0, 11236, 11237, 5, 7, 0, 0, 11237, 1591, 1, 0, 0, 0, 11238, 11241, 1, 0, 0, 0, 11239, 11241, 3, 1734, 867, 0, 11240, 11238, 1, 0, 0, 0, 11240, 11239, 1, 0, 0, 0, 11241, 1593, 1, 0, 0, 0, 11242, 11244, 3, 1596, 798, 0, 11243, 11242, 1, 0, 0, 0, 11244, 11245, 1, 0, 0, 0, 11245, 11243, 1, 0, 0, 0, 11245, 11246, 1, 0, 0, 0, 11246, 1595, 1, 0, 0, 0, 11247, 11248, 5, 102, 0, 0, 11248, 11249, 3, 1326, 663, 0, 11249, 11250, 5, 93, 0, 0, 11250, 11251, 3, 1558, 779, 0, 11251, 1597, 1, 0, 0, 0, 11252, 11256, 1, 0, 0, 0, 11253, 11254, 5, 58, 0, 0, 11254, 11256, 3, 1558, 779, 0, 11255, 11252, 1, 0, 0, 0, 11255, 11253, 1, 0, 0, 0, 11256, 1599, 1, 0, 0, 0, 11257, 11258, 3, 1724, 862, 0, 11258, 11259, 3, 1646, 823, 0, 11259, 1601, 1, 0, 0, 0, 11260, 11261, 3, 1724, 862, 0, 11261, 11262, 5, 503, 0, 0, 11262, 11263, 3, 1742, 871, 0, 11263, 11264, 3, 1646, 823, 0, 11264, 1603, 1, 0, 0, 0, 11265, 11266, 3, 1724, 862, 0, 11266, 11267, 5, 62, 0, 0, 11267, 11268, 3, 1606, 803, 0, 11268, 11269, 3, 1646, 823, 0, 11269, 1605, 1, 0, 0, 0, 11270, 11271, 3, 1616, 808, 0, 11271, 11287, 5, 68, 0, 0, 11272, 11273, 3, 992, 496, 0, 11273, 11274, 3, 1610, 805, 0, 11274, 11288, 1, 0, 0, 0, 11275, 11288, 3, 998, 499, 0, 11276, 11288, 3, 924, 462, 0, 11277, 11278, 5, 202, 0, 0, 11278, 11279, 3, 1210, 605, 0, 11279, 11280, 3, 1608, 804, 0, 11280, 11288, 1, 0, 0, 0, 11281, 11282, 3, 1612, 806, 0, 11282, 11283, 3, 1210, 605, 0, 11283, 11284, 5, 24, 0, 0, 11284, 11285, 3, 1210, 605, 0, 11285, 11286, 3, 1614, 807, 0, 11286, 11288, 1, 0, 0, 0, 11287, 11272, 1, 0, 0, 0, 11287, 11275, 1, 0, 0, 0, 11287, 11276, 1, 0, 0, 0, 11287, 11277, 1, 0, 0, 0, 11287, 11281, 1, 0, 0, 0, 11288, 1607, 1, 0, 0, 0, 11289, 11293, 1, 0, 0, 0, 11290, 11291, 5, 100, 0, 0, 11291, 11293, 3, 1326, 663, 0, 11292, 11289, 1, 0, 0, 0, 11292, 11290, 1, 0, 0, 0, 11293, 1609, 1, 0, 0, 0, 11294, 11307, 1, 0, 0, 0, 11295, 11296, 5, 2, 0, 0, 11296, 11301, 3, 1210, 605, 0, 11297, 11298, 5, 6, 0, 0, 11298, 11300, 3, 1210, 605, 0, 11299, 11297, 1, 0, 0, 0, 11300, 11303, 1, 0, 0, 0, 11301, 11299, 1, 0, 0, 0, 11301, 11302, 1, 0, 0, 0, 11302, 11304, 1, 0, 0, 0, 11303, 11301, 1, 0, 0, 0, 11304, 11305, 5, 3, 0, 0, 11305, 11307, 1, 0, 0, 0, 11306, 11294, 1, 0, 0, 0, 11306, 11295, 1, 0, 0, 0, 11307, 1611, 1, 0, 0, 0, 11308, 11311, 1, 0, 0, 0, 11309, 11311, 5, 504, 0, 0, 11310, 11308, 1, 0, 0, 0, 11310, 11309, 1, 0, 0, 0, 11311, 1613, 1, 0, 0, 0, 11312, 11316, 1, 0, 0, 0, 11313, 11314, 5, 147, 0, 0, 11314, 11316, 3, 1210, 605, 0, 11315, 11312, 1, 0, 0, 0, 11315, 11313, 1, 0, 0, 0, 11316, 1615, 1, 0, 0, 0, 11317, 11318, 3, 550, 275, 0, 11318, 1617, 1, 0, 0, 0, 11319, 11320, 3, 1724, 862, 0, 11320, 11321, 5, 505, 0, 0, 11321, 11322, 3, 1616, 808, 0, 11322, 11323, 3, 1620, 810, 0, 11323, 11324, 5, 68, 0, 0, 11324, 11325, 5, 35, 0, 0, 11325, 11326, 3, 1210, 605, 0, 11326, 11327, 3, 1646, 823, 0, 11327, 1619, 1, 0, 0, 0, 11328, 11332, 1, 0, 0, 0, 11329, 11330, 5, 506, 0, 0, 11330, 11332, 3, 1454, 727, 0, 11331, 11328, 1, 0, 0, 0, 11331, 11329, 1, 0, 0, 0, 11332, 1621, 1, 0, 0, 0, 11333, 11334, 3, 1624, 812, 0, 11334, 11336, 3, 1726, 863, 0, 11335, 11337, 3, 1728, 864, 0, 11336, 11335, 1, 0, 0, 0, 11336, 11337, 1, 0, 0, 0, 11337, 11338, 1, 0, 0, 0, 11338, 11339, 5, 7, 0, 0, 11339, 1623, 1, 0, 0, 0, 11340, 11341, 7, 83, 0, 0, 11341, 1625, 1, 0, 0, 0, 11342, 11354, 5, 508, 0, 0, 11343, 11344, 5, 268, 0, 0, 11344, 11355, 3, 1734, 867, 0, 11345, 11351, 5, 509, 0, 0, 11346, 11347, 5, 202, 0, 0, 11347, 11348, 3, 1210, 605, 0, 11348, 11349, 3, 1608, 804, 0, 11349, 11352, 1, 0, 0, 0, 11350, 11352, 3, 998, 499, 0, 11351, 11346, 1, 0, 0, 0, 11351, 11350, 1, 0, 0, 0, 11352, 11355, 1, 0, 0, 0, 11353, 11355, 3, 1628, 814, 0, 11354, 11343, 1, 0, 0, 0, 11354, 11345, 1, 0, 0, 0, 11354, 11353, 1, 0, 0, 0, 11355, 11356, 1, 0, 0, 0, 11356, 11357, 5, 7, 0, 0, 11357, 1627, 1, 0, 0, 0, 11358, 11361, 1, 0, 0, 0, 11359, 11361, 3, 1734, 867, 0, 11360, 11358, 1, 0, 0, 0, 11360, 11359, 1, 0, 0, 0, 11361, 1629, 1, 0, 0, 0, 11362, 11364, 5, 510, 0, 0, 11363, 11365, 3, 1632, 816, 0, 11364, 11363, 1, 0, 0, 0, 11364, 11365, 1, 0, 0, 0, 11365, 11366, 1, 0, 0, 0, 11366, 11367, 3, 1456, 728, 0, 11367, 11368, 3, 1634, 817, 0, 11368, 11369, 3, 1636, 818, 0, 11369, 11370, 5, 7, 0, 0, 11370, 11397, 1, 0, 0, 0, 11371, 11373, 5, 510, 0, 0, 11372, 11374, 3, 1632, 816, 0, 11373, 11372, 1, 0, 0, 0, 11373, 11374, 1, 0, 0, 0, 11374, 11375, 1, 0, 0, 0, 11375, 11376, 3, 1490, 745, 0, 11376, 11377, 3, 1636, 818, 0, 11377, 11378, 5, 7, 0, 0, 11378, 11397, 1, 0, 0, 0, 11379, 11381, 5, 510, 0, 0, 11380, 11382, 3, 1632, 816, 0, 11381, 11380, 1, 0, 0, 0, 11381, 11382, 1, 0, 0, 0, 11382, 11383, 1, 0, 0, 0, 11383, 11384, 5, 511, 0, 0, 11384, 11385, 3, 1456, 728, 0, 11385, 11386, 3, 1636, 818, 0, 11386, 11387, 5, 7, 0, 0, 11387, 11397, 1, 0, 0, 0, 11388, 11390, 5, 510, 0, 0, 11389, 11391, 3, 1632, 816, 0, 11390, 11389, 1, 0, 0, 0, 11390, 11391, 1, 0, 0, 0, 11391, 11392, 1, 0, 0, 0, 11392, 11393, 3, 1636, 818, 0, 11393, 11394, 5, 7, 0, 0, 11394, 11397, 1, 0, 0, 0, 11395, 11397, 5, 510, 0, 0, 11396, 11362, 1, 0, 0, 0, 11396, 11371, 1, 0, 0, 0, 11396, 11379, 1, 0, 0, 0, 11396, 11388, 1, 0, 0, 0, 11396, 11395, 1, 0, 0, 0, 11397, 1631, 1, 0, 0, 0, 11398, 11399, 7, 84, 0, 0, 11399, 1633, 1, 0, 0, 0, 11400, 11408, 1, 0, 0, 0, 11401, 11402, 5, 6, 0, 0, 11402, 11404, 3, 1210, 605, 0, 11403, 11401, 1, 0, 0, 0, 11404, 11405, 1, 0, 0, 0, 11405, 11403, 1, 0, 0, 0, 11405, 11406, 1, 0, 0, 0, 11406, 11408, 1, 0, 0, 0, 11407, 11400, 1, 0, 0, 0, 11407, 11403, 1, 0, 0, 0, 11408, 1635, 1, 0, 0, 0, 11409, 11413, 1, 0, 0, 0, 11410, 11411, 5, 100, 0, 0, 11411, 11413, 3, 1640, 820, 0, 11412, 11409, 1, 0, 0, 0, 11412, 11410, 1, 0, 0, 0, 11413, 1637, 1, 0, 0, 0, 11414, 11415, 3, 1490, 745, 0, 11415, 11416, 5, 10, 0, 0, 11416, 11417, 3, 1210, 605, 0, 11417, 1639, 1, 0, 0, 0, 11418, 11423, 3, 1638, 819, 0, 11419, 11420, 5, 6, 0, 0, 11420, 11422, 3, 1638, 819, 0, 11421, 11419, 1, 0, 0, 0, 11422, 11425, 1, 0, 0, 0, 11423, 11421, 1, 0, 0, 0, 11423, 11424, 1, 0, 0, 0, 11424, 1641, 1, 0, 0, 0, 11425, 11423, 1, 0, 0, 0, 11426, 11427, 5, 518, 0, 0, 11427, 11428, 3, 1734, 867, 0, 11428, 11429, 3, 1644, 822, 0, 11429, 11430, 5, 7, 0, 0, 11430, 1643, 1, 0, 0, 0, 11431, 11435, 1, 0, 0, 0, 11432, 11433, 5, 6, 0, 0, 11433, 11435, 3, 1734, 867, 0, 11434, 11431, 1, 0, 0, 0, 11434, 11432, 1, 0, 0, 0, 11435, 1645, 1, 0, 0, 0, 11436, 11437, 5, 519, 0, 0, 11437, 11438, 3, 1558, 779, 0, 11438, 11439, 5, 454, 0, 0, 11439, 11440, 5, 519, 0, 0, 11440, 11441, 3, 1726, 863, 0, 11441, 11442, 5, 7, 0, 0, 11442, 1647, 1, 0, 0, 0, 11443, 11444, 3, 1744, 872, 0, 11444, 11445, 5, 7, 0, 0, 11445, 1649, 1, 0, 0, 0, 11446, 11447, 5, 202, 0, 0, 11447, 11455, 3, 1210, 605, 0, 11448, 11449, 3, 1656, 828, 0, 11449, 11450, 3, 1652, 826, 0, 11450, 11456, 1, 0, 0, 0, 11451, 11452, 3, 1652, 826, 0, 11452, 11453, 3, 1656, 828, 0, 11453, 11456, 1, 0, 0, 0, 11454, 11456, 1, 0, 0, 0, 11455, 11448, 1, 0, 0, 0, 11455, 11451, 1, 0, 0, 0, 11455, 11454, 1, 0, 0, 0, 11456, 11457, 1, 0, 0, 0, 11457, 11458, 5, 7, 0, 0, 11458, 1651, 1, 0, 0, 0, 11459, 11463, 1, 0, 0, 0, 11460, 11461, 5, 100, 0, 0, 11461, 11463, 3, 1654, 827, 0, 11462, 11459, 1, 0, 0, 0, 11462, 11460, 1, 0, 0, 0, 11463, 1653, 1, 0, 0, 0, 11464, 11469, 3, 1210, 605, 0, 11465, 11466, 5, 6, 0, 0, 11466, 11468, 3, 1210, 605, 0, 11467, 11465, 1, 0, 0, 0, 11468, 11471, 1, 0, 0, 0, 11469, 11467, 1, 0, 0, 0, 11469, 11470, 1, 0, 0, 0, 11470, 1655, 1, 0, 0, 0, 11471, 11469, 1, 0, 0, 0, 11472, 11479, 1, 0, 0, 0, 11473, 11475, 5, 71, 0, 0, 11474, 11476, 5, 346, 0, 0, 11475, 11474, 1, 0, 0, 0, 11475, 11476, 1, 0, 0, 0, 11476, 11477, 1, 0, 0, 0, 11477, 11479, 3, 1672, 836, 0, 11478, 11472, 1, 0, 0, 0, 11478, 11473, 1, 0, 0, 0, 11479, 1657, 1, 0, 0, 0, 11480, 11498, 5, 520, 0, 0, 11481, 11482, 3, 1710, 855, 0, 11482, 11483, 3, 1666, 833, 0, 11483, 11489, 5, 62, 0, 0, 11484, 11490, 3, 998, 499, 0, 11485, 11486, 5, 202, 0, 0, 11486, 11487, 3, 1734, 867, 0, 11487, 11488, 3, 1664, 832, 0, 11488, 11490, 1, 0, 0, 0, 11489, 11484, 1, 0, 0, 0, 11489, 11485, 1, 0, 0, 0, 11490, 11499, 1, 0, 0, 0, 11491, 11496, 3, 1472, 736, 0, 11492, 11493, 5, 2, 0, 0, 11493, 11494, 3, 1662, 831, 0, 11494, 11495, 5, 3, 0, 0, 11495, 11497, 1, 0, 0, 0, 11496, 11492, 1, 0, 0, 0, 11496, 11497, 1, 0, 0, 0, 11497, 11499, 1, 0, 0, 0, 11498, 11481, 1, 0, 0, 0, 11498, 11491, 1, 0, 0, 0, 11499, 11500, 1, 0, 0, 0, 11500, 11501, 5, 7, 0, 0, 11501, 1659, 1, 0, 0, 0, 11502, 11503, 3, 1472, 736, 0, 11503, 11504, 5, 20, 0, 0, 11504, 11505, 3, 1210, 605, 0, 11505, 11508, 1, 0, 0, 0, 11506, 11508, 3, 1210, 605, 0, 11507, 11502, 1, 0, 0, 0, 11507, 11506, 1, 0, 0, 0, 11508, 1661, 1, 0, 0, 0, 11509, 11514, 3, 1660, 830, 0, 11510, 11511, 5, 6, 0, 0, 11511, 11513, 3, 1660, 830, 0, 11512, 11510, 1, 0, 0, 0, 11513, 11516, 1, 0, 0, 0, 11514, 11512, 1, 0, 0, 0, 11514, 11515, 1, 0, 0, 0, 11515, 1663, 1, 0, 0, 0, 11516, 11514, 1, 0, 0, 0, 11517, 11521, 1, 0, 0, 0, 11518, 11519, 5, 100, 0, 0, 11519, 11521, 3, 1326, 663, 0, 11520, 11517, 1, 0, 0, 0, 11520, 11518, 1, 0, 0, 0, 11521, 1665, 1, 0, 0, 0, 11522, 11527, 1, 0, 0, 0, 11523, 11524, 3, 1668, 834, 0, 11524, 11525, 5, 324, 0, 0, 11525, 11527, 1, 0, 0, 0, 11526, 11522, 1, 0, 0, 0, 11526, 11523, 1, 0, 0, 0, 11527, 1667, 1, 0, 0, 0, 11528, 11531, 1, 0, 0, 0, 11529, 11531, 5, 269, 0, 0, 11530, 11528, 1, 0, 0, 0, 11530, 11529, 1, 0, 0, 0, 11531, 1669, 1, 0, 0, 0, 11532, 11534, 5, 61, 0, 0, 11533, 11535, 3, 1676, 838, 0, 11534, 11533, 1, 0, 0, 0, 11534, 11535, 1, 0, 0, 0, 11535, 11536, 1, 0, 0, 0, 11536, 11537, 3, 1674, 837, 0, 11537, 11538, 3, 1710, 855, 0, 11538, 11539, 5, 71, 0, 0, 11539, 11540, 3, 1672, 836, 0, 11540, 11541, 5, 7, 0, 0, 11541, 1671, 1, 0, 0, 0, 11542, 11543, 3, 1326, 663, 0, 11543, 1673, 1, 0, 0, 0, 11544, 11548, 1, 0, 0, 0, 11545, 11548, 5, 64, 0, 0, 11546, 11548, 5, 68, 0, 0, 11547, 11544, 1, 0, 0, 0, 11547, 11545, 1, 0, 0, 0, 11547, 11546, 1, 0, 0, 0, 11548, 1675, 1, 0, 0, 0, 11549, 11565, 5, 268, 0, 0, 11550, 11565, 5, 293, 0, 0, 11551, 11565, 5, 207, 0, 0, 11552, 11565, 5, 249, 0, 0, 11553, 11554, 5, 130, 0, 0, 11554, 11565, 3, 1210, 605, 0, 11555, 11556, 5, 307, 0, 0, 11556, 11565, 3, 1210, 605, 0, 11557, 11565, 3, 1210, 605, 0, 11558, 11565, 5, 30, 0, 0, 11559, 11562, 7, 85, 0, 0, 11560, 11563, 3, 1210, 605, 0, 11561, 11563, 5, 30, 0, 0, 11562, 11560, 1, 0, 0, 0, 11562, 11561, 1, 0, 0, 0, 11562, 11563, 1, 0, 0, 0, 11563, 11565, 1, 0, 0, 0, 11564, 11549, 1, 0, 0, 0, 11564, 11550, 1, 0, 0, 0, 11564, 11551, 1, 0, 0, 0, 11564, 11552, 1, 0, 0, 0, 11564, 11553, 1, 0, 0, 0, 11564, 11555, 1, 0, 0, 0, 11564, 11557, 1, 0, 0, 0, 11564, 11558, 1, 0, 0, 0, 11564, 11559, 1, 0, 0, 0, 11565, 1677, 1, 0, 0, 0, 11566, 11568, 5, 265, 0, 0, 11567, 11569, 3, 1676, 838, 0, 11568, 11567, 1, 0, 0, 0, 11568, 11569, 1, 0, 0, 0, 11569, 11570, 1, 0, 0, 0, 11570, 11571, 3, 1710, 855, 0, 11571, 11572, 5, 7, 0, 0, 11572, 1679, 1, 0, 0, 0, 11573, 11575, 3, 1012, 506, 0, 11574, 11573, 1, 0, 0, 0, 11574, 11575, 1, 0, 0, 0, 11575, 11576, 1, 0, 0, 0, 11576, 11577, 5, 525, 0, 0, 11577, 11579, 5, 71, 0, 0, 11578, 11580, 5, 81, 0, 0, 11579, 11578, 1, 0, 0, 0, 11579, 11580, 1, 0, 0, 0, 11580, 11581, 1, 0, 0, 0, 11581, 11583, 3, 1404, 702, 0, 11582, 11584, 5, 9, 0, 0, 11583, 11582, 1, 0, 0, 0, 11583, 11584, 1, 0, 0, 0, 11584, 11589, 1, 0, 0, 0, 11585, 11587, 5, 36, 0, 0, 11586, 11585, 1, 0, 0, 0, 11586, 11587, 1, 0, 0, 0, 11587, 11588, 1, 0, 0, 0, 11588, 11590, 3, 1472, 736, 0, 11589, 11586, 1, 0, 0, 0, 11589, 11590, 1, 0, 0, 0, 11590, 11591, 1, 0, 0, 0, 11591, 11592, 5, 100, 0, 0, 11592, 11593, 3, 1682, 841, 0, 11593, 11594, 5, 80, 0, 0, 11594, 11596, 3, 1684, 842, 0, 11595, 11597, 3, 1686, 843, 0, 11596, 11595, 1, 0, 0, 0, 11597, 11598, 1, 0, 0, 0, 11598, 11596, 1, 0, 0, 0, 11598, 11599, 1, 0, 0, 0, 11599, 1681, 1, 0, 0, 0, 11600, 11602, 5, 81, 0, 0, 11601, 11600, 1, 0, 0, 0, 11601, 11602, 1, 0, 0, 0, 11602, 11603, 1, 0, 0, 0, 11603, 11605, 3, 1404, 702, 0, 11604, 11606, 5, 9, 0, 0, 11605, 11604, 1, 0, 0, 0, 11605, 11606, 1, 0, 0, 0, 11606, 11612, 1, 0, 0, 0, 11607, 11610, 3, 1002, 501, 0, 11608, 11610, 3, 1098, 549, 0, 11609, 11607, 1, 0, 0, 0, 11609, 11608, 1, 0, 0, 0, 11610, 11612, 1, 0, 0, 0, 11611, 11601, 1, 0, 0, 0, 11611, 11609, 1, 0, 0, 0, 11612, 11617, 1, 0, 0, 0, 11613, 11615, 5, 36, 0, 0, 11614, 11613, 1, 0, 0, 0, 11614, 11615, 1, 0, 0, 0, 11615, 11616, 1, 0, 0, 0, 11616, 11618, 3, 1472, 736, 0, 11617, 11614, 1, 0, 0, 0, 11617, 11618, 1, 0, 0, 0, 11618, 1683, 1, 0, 0, 0, 11619, 11620, 3, 1210, 605, 0, 11620, 1685, 1, 0, 0, 0, 11621, 11622, 5, 102, 0, 0, 11622, 11625, 5, 526, 0, 0, 11623, 11624, 5, 33, 0, 0, 11624, 11626, 3, 1210, 605, 0, 11625, 11623, 1, 0, 0, 0, 11625, 11626, 1, 0, 0, 0, 11626, 11627, 1, 0, 0, 0, 11627, 11632, 5, 93, 0, 0, 11628, 11633, 3, 1690, 845, 0, 11629, 11633, 5, 182, 0, 0, 11630, 11631, 5, 57, 0, 0, 11631, 11633, 5, 270, 0, 0, 11632, 11628, 1, 0, 0, 0, 11632, 11629, 1, 0, 0, 0, 11632, 11630, 1, 0, 0, 0, 11633, 11648, 1, 0, 0, 0, 11634, 11635, 5, 102, 0, 0, 11635, 11636, 5, 77, 0, 0, 11636, 11639, 5, 526, 0, 0, 11637, 11638, 5, 33, 0, 0, 11638, 11640, 3, 1210, 605, 0, 11639, 11637, 1, 0, 0, 0, 11639, 11640, 1, 0, 0, 0, 11640, 11641, 1, 0, 0, 0, 11641, 11645, 5, 93, 0, 0, 11642, 11646, 3, 1688, 844, 0, 11643, 11644, 5, 57, 0, 0, 11644, 11646, 5, 270, 0, 0, 11645, 11642, 1, 0, 0, 0, 11645, 11643, 1, 0, 0, 0, 11646, 11648, 1, 0, 0, 0, 11647, 11621, 1, 0, 0, 0, 11647, 11634, 1, 0, 0, 0, 11648, 1687, 1, 0, 0, 0, 11649, 11654, 5, 241, 0, 0, 11650, 11651, 5, 2, 0, 0, 11651, 11652, 3, 244, 122, 0, 11652, 11653, 5, 3, 0, 0, 11653, 11655, 1, 0, 0, 0, 11654, 11650, 1, 0, 0, 0, 11654, 11655, 1, 0, 0, 0, 11655, 11659, 1, 0, 0, 0, 11656, 11657, 5, 463, 0, 0, 11657, 11658, 7, 53, 0, 0, 11658, 11660, 5, 450, 0, 0, 11659, 11656, 1, 0, 0, 0, 11659, 11660, 1, 0, 0, 0, 11660, 11661, 1, 0, 0, 0, 11661, 11662, 3, 1692, 846, 0, 11662, 1689, 1, 0, 0, 0, 11663, 11664, 5, 369, 0, 0, 11664, 11677, 5, 333, 0, 0, 11665, 11666, 3, 1430, 715, 0, 11666, 11667, 5, 10, 0, 0, 11667, 11668, 3, 1696, 848, 0, 11668, 11678, 1, 0, 0, 0, 11669, 11670, 5, 2, 0, 0, 11670, 11671, 3, 244, 122, 0, 11671, 11672, 5, 3, 0, 0, 11672, 11673, 5, 10, 0, 0, 11673, 11674, 5, 2, 0, 0, 11674, 11675, 3, 1694, 847, 0, 11675, 11676, 5, 3, 0, 0, 11676, 11678, 1, 0, 0, 0, 11677, 11665, 1, 0, 0, 0, 11677, 11669, 1, 0, 0, 0, 11678, 11679, 1, 0, 0, 0, 11679, 11677, 1, 0, 0, 0, 11679, 11680, 1, 0, 0, 0, 11680, 1691, 1, 0, 0, 0, 11681, 11682, 5, 422, 0, 0, 11682, 11686, 3, 1694, 847, 0, 11683, 11684, 5, 53, 0, 0, 11684, 11686, 5, 422, 0, 0, 11685, 11681, 1, 0, 0, 0, 11685, 11683, 1, 0, 0, 0, 11686, 1693, 1, 0, 0, 0, 11687, 11688, 5, 2, 0, 0, 11688, 11693, 3, 1696, 848, 0, 11689, 11690, 5, 6, 0, 0, 11690, 11692, 3, 1696, 848, 0, 11691, 11689, 1, 0, 0, 0, 11692, 11695, 1, 0, 0, 0, 11693, 11691, 1, 0, 0, 0, 11693, 11694, 1, 0, 0, 0, 11694, 11696, 1, 0, 0, 0, 11695, 11693, 1, 0, 0, 0, 11696, 11697, 5, 3, 0, 0, 11697, 1695, 1, 0, 0, 0, 11698, 11701, 3, 1046, 523, 0, 11699, 11701, 5, 53, 0, 0, 11700, 11698, 1, 0, 0, 0, 11700, 11699, 1, 0, 0, 0, 11701, 1697, 1, 0, 0, 0, 11702, 11703, 5, 157, 0, 0, 11703, 11704, 3, 1710, 855, 0, 11704, 11705, 5, 7, 0, 0, 11705, 1699, 1, 0, 0, 0, 11706, 11707, 5, 78, 0, 0, 11707, 11708, 5, 7, 0, 0, 11708, 1701, 1, 0, 0, 0, 11709, 11711, 5, 161, 0, 0, 11710, 11712, 3, 1706, 853, 0, 11711, 11710, 1, 0, 0, 0, 11711, 11712, 1, 0, 0, 0, 11712, 11713, 1, 0, 0, 0, 11713, 11714, 5, 7, 0, 0, 11714, 1703, 1, 0, 0, 0, 11715, 11717, 5, 319, 0, 0, 11716, 11718, 3, 1706, 853, 0, 11717, 11716, 1, 0, 0, 0, 11717, 11718, 1, 0, 0, 0, 11718, 11719, 1, 0, 0, 0, 11719, 11720, 5, 7, 0, 0, 11720, 1705, 1, 0, 0, 0, 11721, 11723, 5, 33, 0, 0, 11722, 11724, 5, 269, 0, 0, 11723, 11722, 1, 0, 0, 0, 11723, 11724, 1, 0, 0, 0, 11724, 11725, 1, 0, 0, 0, 11725, 11726, 5, 153, 0, 0, 11726, 1707, 1, 0, 0, 0, 11727, 11728, 5, 333, 0, 0, 11728, 11729, 3, 556, 278, 0, 11729, 11730, 5, 94, 0, 0, 11730, 11731, 5, 53, 0, 0, 11731, 11732, 5, 7, 0, 0, 11732, 11740, 1, 0, 0, 0, 11733, 11736, 5, 313, 0, 0, 11734, 11737, 3, 556, 278, 0, 11735, 11737, 5, 30, 0, 0, 11736, 11734, 1, 0, 0, 0, 11736, 11735, 1, 0, 0, 0, 11737, 11738, 1, 0, 0, 0, 11738, 11740, 5, 7, 0, 0, 11739, 11727, 1, 0, 0, 0, 11739, 11733, 1, 0, 0, 0, 11740, 1709, 1, 0, 0, 0, 11741, 11744, 3, 1472, 736, 0, 11742, 11744, 5, 28, 0, 0, 11743, 11741, 1, 0, 0, 0, 11743, 11742, 1, 0, 0, 0, 11744, 1711, 1, 0, 0, 0, 11745, 11749, 1, 0, 0, 0, 11746, 11747, 5, 517, 0, 0, 11747, 11749, 3, 1714, 857, 0, 11748, 11745, 1, 0, 0, 0, 11748, 11746, 1, 0, 0, 0, 11749, 1713, 1, 0, 0, 0, 11750, 11752, 3, 1716, 858, 0, 11751, 11750, 1, 0, 0, 0, 11752, 11753, 1, 0, 0, 0, 11753, 11751, 1, 0, 0, 0, 11753, 11754, 1, 0, 0, 0, 11754, 1715, 1, 0, 0, 0, 11755, 11756, 5, 102, 0, 0, 11756, 11757, 3, 1718, 859, 0, 11757, 11758, 5, 93, 0, 0, 11758, 11759, 3, 1558, 779, 0, 11759, 1717, 1, 0, 0, 0, 11760, 11765, 3, 1720, 860, 0, 11761, 11762, 5, 82, 0, 0, 11762, 11764, 3, 1720, 860, 0, 11763, 11761, 1, 0, 0, 0, 11764, 11767, 1, 0, 0, 0, 11765, 11763, 1, 0, 0, 0, 11765, 11766, 1, 0, 0, 0, 11766, 1719, 1, 0, 0, 0, 11767, 11765, 1, 0, 0, 0, 11768, 11772, 3, 1730, 865, 0, 11769, 11770, 5, 511, 0, 0, 11770, 11772, 3, 1456, 728, 0, 11771, 11768, 1, 0, 0, 0, 11771, 11769, 1, 0, 0, 0, 11772, 1721, 1, 0, 0, 0, 11773, 11776, 1, 0, 0, 0, 11774, 11776, 3, 1522, 761, 0, 11775, 11773, 1, 0, 0, 0, 11775, 11774, 1, 0, 0, 0, 11776, 1723, 1, 0, 0, 0, 11777, 11780, 1, 0, 0, 0, 11778, 11780, 3, 1522, 761, 0, 11779, 11777, 1, 0, 0, 0, 11779, 11778, 1, 0, 0, 0, 11780, 1725, 1, 0, 0, 0, 11781, 11784, 1, 0, 0, 0, 11782, 11784, 3, 1730, 865, 0, 11783, 11781, 1, 0, 0, 0, 11783, 11782, 1, 0, 0, 0, 11784, 1727, 1, 0, 0, 0, 11785, 11786, 5, 102, 0, 0, 11786, 11787, 3, 1738, 869, 0, 11787, 1729, 1, 0, 0, 0, 11788, 11791, 3, 1472, 736, 0, 11789, 11791, 3, 1732, 866, 0, 11790, 11788, 1, 0, 0, 0, 11790, 11789, 1, 0, 0, 0, 11791, 1731, 1, 0, 0, 0, 11792, 11793, 7, 86, 0, 0, 11793, 1733, 1, 0, 0, 0, 11794, 11796, 3, 1382, 691, 0, 11795, 11794, 1, 0, 0, 0, 11795, 11796, 1, 0, 0, 0, 11796, 11798, 1, 0, 0, 0, 11797, 11799, 3, 1026, 513, 0, 11798, 11797, 1, 0, 0, 0, 11798, 11799, 1, 0, 0, 0, 11799, 11801, 1, 0, 0, 0, 11800, 11802, 3, 1100, 550, 0, 11801, 11800, 1, 0, 0, 0, 11801, 11802, 1, 0, 0, 0, 11802, 11804, 1, 0, 0, 0, 11803, 11805, 3, 1142, 571, 0, 11804, 11803, 1, 0, 0, 0, 11804, 11805, 1, 0, 0, 0, 11805, 11807, 1, 0, 0, 0, 11806, 11808, 3, 1070, 535, 0, 11807, 11806, 1, 0, 0, 0, 11807, 11808, 1, 0, 0, 0, 11808, 11810, 1, 0, 0, 0, 11809, 11811, 3, 1084, 542, 0, 11810, 11809, 1, 0, 0, 0, 11810, 11811, 1, 0, 0, 0, 11811, 11813, 1, 0, 0, 0, 11812, 11814, 3, 1286, 643, 0, 11813, 11812, 1, 0, 0, 0, 11813, 11814, 1, 0, 0, 0, 11814, 1735, 1, 0, 0, 0, 11815, 11816, 3, 1734, 867, 0, 11816, 1737, 1, 0, 0, 0, 11817, 11818, 3, 1734, 867, 0, 11818, 1739, 1, 0, 0, 0, 11819, 11820, 3, 1210, 605, 0, 11820, 1741, 1, 0, 0, 0, 11821, 11822, 3, 1210, 605, 0, 11822, 1743, 1, 0, 0, 0, 11823, 11825, 3, 6, 3, 0, 11824, 11826, 3, 1746, 873, 0, 11825, 11824, 1, 0, 0, 0, 11825, 11826, 1, 0, 0, 0, 11826, 1745, 1, 0, 0, 0, 11827, 11828, 5, 71, 0, 0, 11828, 11829, 3, 1028, 514, 0, 11829, 11830, 3, 1672, 836, 0, 11830, 1747, 1, 0, 0, 0, 1283, 1751, 1760, 1879, 1883, 1892, 1901, 1907, 1913, 1945, 1957, 1963, 1971, 1979, 1985, 1994, 2000, 2012, 2018, 2024, 2031, 2035, 2040, 2044, 2057, 2068, 2074, 2090, 2093, 2098, 2104, 2109, 2118, 2122, 2134, 2138, 2141, 2145, 2156, 2174, 2181, 2189, 2194, 2201, 2207, 2213, 2220, 2231, 2235, 2239, 2243, 2256, 2260, 2265, 2270, 2282, 2291, 2303, 2308, 2319, 2325, 2330, 2340, 2345, 2352, 2357, 2362, 2373, 2379, 2384, 2392, 2401, 2416, 2422, 2428, 2433, 2440, 2452, 2460, 2468, 2486, 2495, 2509, 2513, 2528, 2536, 2546, 2586, 2589, 2593, 2597, 2600, 2605, 2612, 2621, 2627, 2631, 2640, 2648, 2657, 2666, 2670, 2677, 2683, 2687, 2691, 2696, 2699, 2703, 2709, 2716, 2732, 2746, 2756, 2758, 2763, 2767, 2770, 2776, 2778, 2806, 2816, 2829, 2836, 2841, 2845, 2851, 2856, 2859, 2861, 2866, 2870, 2874, 2878, 2882, 2885, 2889, 2897, 2901, 2905, 2914, 2921, 2926, 2933, 2938, 2945, 2950, 2968, 2973, 2985, 2990, 2999, 3006, 3013, 3017, 3022, 3026, 3029, 3032, 3035, 3038, 3041, 3046, 3049, 3052, 3055, 3058, 3061, 3067, 3071, 3074, 3077, 3080, 3083, 3085, 3094, 3109, 3117, 3123, 3127, 3132, 3135, 3138, 3142, 3146, 3153, 3156, 3159, 3163, 3167, 3181, 3186, 3193, 3198, 3202, 3205, 3209, 3212, 3214, 3221, 3224, 3228, 3234, 3237, 3244, 3253, 3260, 3265, 3268, 3271, 3274, 3278, 3285, 3290, 3303, 3313, 3326, 3329, 3332, 3339, 3347, 3350, 3353, 3360, 3364, 3370, 3373, 3376, 3379, 3391, 3394, 3397, 3401, 3415, 3431, 3442, 3457, 3474, 3476, 3497, 3502, 3505, 3509, 3512, 3518, 3521, 3523, 3534, 3543, 3549, 3552, 3555, 3569, 3572, 3575, 3580, 3588, 3597, 3601, 3607, 3611, 3614, 3617, 3620, 3623, 3629, 3633, 3638, 3644, 3648, 3651, 3654, 3657, 3665, 3669, 3673, 3677, 3681, 3686, 3700, 3709, 3726, 3731, 3734, 3736, 3746, 3753, 3758, 3761, 3764, 3771, 3774, 3776, 3782, 3791, 3801, 3806, 3814, 3818, 3825, 3835, 3846, 3954, 3962, 3965, 3975, 3980, 3990, 4001, 4013, 4026, 4036, 4048, 4052, 4055, 4062, 4070, 4080, 4082, 4088, 4093, 4097, 4102, 4108, 4115, 4121, 4123, 4130, 4138, 4143, 4154, 4161, 4165, 4182, 4185, 4188, 4191, 4194, 4202, 4205, 4208, 4214, 4222, 4226, 4238, 4244, 4247, 4252, 4256, 4263, 4274, 4297, 4317, 4326, 4329, 4332, 4342, 4345, 4354, 4358, 4361, 4369, 4375, 4379, 4390, 4400, 4408, 4413, 4425, 4442, 4446, 4452, 4459, 4467, 4481, 4507, 4514, 4528, 4539, 4542, 4555, 4564, 4589, 4600, 4642, 4650, 4656, 4667, 4673, 4681, 4692, 4706, 4715, 4720, 4731, 4742, 4750, 4760, 4767, 4770, 4776, 4779, 4794, 4807, 4836, 4843, 4858, 4870, 4874, 4879, 4883, 4888, 4892, 4898, 4902, 4907, 4911, 4917, 4921, 4926, 4930, 4935, 4939, 4944, 4948, 4955, 4959, 4966, 4970, 4977, 4981, 4988, 4992, 4998, 5002, 5008, 5012, 5017, 5021, 5028, 5032, 5036, 5040, 5044, 5049, 5053, 5058, 5062, 5067, 5071, 5076, 5082, 5087, 5093, 5098, 5104, 5109, 5113, 5118, 5122, 5128, 5132, 5137, 5145, 5151, 5157, 5163, 5169, 5176, 5181, 5185, 5190, 5194, 5199, 5205, 5212, 5217, 5224, 5234, 5238, 5244, 5246, 5253, 5257, 5262, 5280, 5295, 5313, 5322, 5331, 5335, 5341, 5348, 5353, 5360, 5365, 5368, 5371, 5375, 5446, 5542, 5546, 5551, 5562, 5573, 5584, 5595, 5606, 5618, 5629, 5640, 5650, 5657, 5664, 5670, 5678, 5683, 5688, 5693, 5699, 5706, 5712, 5718, 5723, 5729, 5736, 5741, 5747, 5754, 5757, 5770, 5779, 5791, 5793, 5811, 5818, 5828, 5833, 5837, 5841, 5845, 5847, 5907, 5914, 5920, 5931, 5934, 5941, 5944, 5954, 5957, 5959, 5978, 5990, 5999, 6008, 6020, 6022, 6028, 6032, 6035, 6038, 6043, 6049, 6052, 6055, 6058, 6061, 6077, 6081, 6084, 6087, 6090, 6093, 6098, 6101, 6103, 6116, 6128, 6142, 6146, 6152, 6162, 6164, 6169, 6177, 6187, 6196, 6204, 6213, 6215, 6222, 6231, 6233, 6240, 6249, 6251, 6255, 6264, 6269, 6275, 6280, 6284, 6289, 6307, 6312, 6327, 6336, 6347, 6353, 6390, 6410, 6417, 6428, 6442, 6449, 6457, 6462, 6469, 6473, 6478, 6482, 6487, 6491, 6493, 6498, 6502, 6507, 6511, 6535, 6542, 6552, 6564, 6569, 6582, 6594, 6606, 6608, 6614, 6621, 6666, 6684, 6688, 6693, 6696, 6700, 6705, 6710, 6713, 6720, 6737, 6808, 6839, 6893, 6903, 6913, 6924, 6934, 6945, 6955, 6960, 6969, 6974, 6984, 6989, 6998, 7011, 7016, 7128, 7130, 7139, 7150, 7161, 7174, 7186, 7197, 7204, 7294, 7347, 7357, 7368, 7379, 7393, 7408, 7419, 7426, 7480, 7621, 7627, 7630, 7640, 7680, 7690, 7697, 7720, 7729, 7738, 7747, 7780, 7784, 7794, 7798, 7808, 7811, 7815, 7819, 7827, 7838, 7850, 7854, 7857, 7861, 7864, 7869, 7873, 7876, 7882, 7893, 7896, 7903, 7907, 7912, 7915, 7917, 7931, 7935, 7940, 7947, 7954, 7957, 7962, 7965, 7974, 7976, 7981, 7985, 7997, 8000, 8007, 8011, 8016, 8026, 8036, 8039, 8042, 8044, 8050, 8057, 8077, 8097, 8101, 8106, 8175, 8180, 8186, 8199, 8203, 8207, 8213, 8215, 8223, 8233, 8236, 8239, 8242, 8245, 8252, 8255, 8257, 8261, 8264, 8271, 8273, 8280, 8287, 8291, 8295, 8304, 8310, 8314, 8318, 8323, 8335, 8342, 8352, 8365, 8376, 8383, 8388, 8392, 8396, 8401, 8414, 8419, 8423, 8427, 8434, 8437, 8439, 8447, 8451, 8454, 8461, 8464, 8469, 8475, 8481, 8485, 8494, 8503, 8510, 8513, 8519, 8524, 8530, 8536, 8539, 8542, 8549, 8553, 8556, 8571, 8574, 8581, 8584, 8591, 8594, 8597, 8604, 8616, 8623, 8625, 8635, 8653, 8655, 8663, 8667, 8677, 8681, 8685, 8689, 8691, 8696, 8700, 8704, 8706, 8708, 8712, 8716, 8719, 8722, 8725, 8728, 8730, 8733, 8736, 8739, 8742, 8745, 8748, 8757, 8759, 8764, 8768, 8774, 8778, 8782, 8791, 8796, 8800, 8806, 8809, 8828, 8836, 8845, 8849, 8852, 8856, 8861, 8867, 8879, 8894, 8901, 8904, 8908, 8912, 8916, 8918, 8926, 8935, 8941, 8943, 8950, 8954, 8963, 8967, 8976, 8985, 8997, 9025, 9032, 9036, 9039, 9044, 9048, 9051, 9067, 9078, 9083, 9086, 9089, 9093, 9097, 9101, 9106, 9110, 9114, 9116, 9125, 9130, 9136, 9140, 9142, 9149, 9154, 9160, 9162, 9166, 9173, 9180, 9183, 9189, 9193, 9202, 9205, 9209, 9217, 9223, 9225, 9228, 9232, 9236, 9240, 9246, 9249, 9258, 9265, 9267, 9274, 9282, 9287, 9290, 9298, 9307, 9315, 9317, 9321, 9328, 9347, 9356, 9362, 9381, 9390, 9396, 9400, 9405, 9415, 9422, 9431, 9434, 9443, 9445, 9451, 9455, 9460, 9470, 9476, 9478, 9484, 9488, 9491, 9504, 9510, 9514, 9518, 9521, 9529, 9533, 9537, 9545, 9552, 9559, 9563, 9569, 9571, 9580, 9583, 9593, 9609, 9615, 9620, 9627, 9636, 9643, 9651, 9659, 9664, 9668, 9671, 9677, 9682, 9698, 9701, 9703, 9715, 9717, 9721, 9729, 9731, 9735, 9737, 9745, 9749, 9758, 9766, 9772, 9775, 9784, 9789, 9796, 9806, 9832, 9843, 9845, 9847, 9855, 9877, 9886, 9896, 9899, 9904, 9909, 9913, 9916, 9920, 9923, 9926, 9929, 9933, 9947, 9954, 9961, 9968, 9986, 9994, 10006, 10012, 10025, 10064, 10066, 10086, 10096, 10107, 10119, 10126, 10138, 10150, 10156, 10164, 10181, 10206, 10216, 10220, 10223, 10226, 10229, 10242, 10247, 10252, 10254, 10262, 10271, 10280, 10285, 10294, 10299, 10313, 10323, 10331, 10345, 10352, 10360, 10368, 10376, 10380, 10387, 10395, 10402, 10408, 10417, 10432, 10443, 10476, 10485, 10492, 10496, 10500, 10507, 10521, 10526, 10531, 10535, 10537, 10540, 10547, 10552, 10562, 10570, 10573, 10580, 10588, 10596, 10604, 10612, 10617, 10621, 10625, 10629, 10633, 10637, 10641, 10648, 10656, 10661, 10665, 10669, 10679, 10685, 10691, 10706, 10712, 10718, 10730, 10735, 10743, 10750, 10755, 10767, 10775, 10780, 10790, 10801, 10808, 10815, 10826, 10829, 10831, 10835, 10838, 10844, 10850, 10854, 10860, 10868, 10872, 10880, 10937, 10950, 10973, 10981, 10985, 10997, 10999, 11006, 11015, 11033, 11041, 11050, 11057, 11067, 11073, 11080, 11085, 11091, 11095, 11102, 11132, 11145, 11154, 11158, 11174, 11181, 11194, 11202, 11222, 11228, 11240, 11245, 11255, 11287, 11292, 11301, 11306, 11310, 11315, 11331, 11336, 11351, 11354, 11360, 11364, 11373, 11381, 11390, 11396, 11405, 11407, 11412, 11423, 11434, 11455, 11462, 11469, 11475, 11478, 11489, 11496, 11498, 11507, 11514, 11520, 11526, 11530, 11534, 11547, 11562, 11564, 11568, 11574, 11579, 11583, 11586, 11589, 11598, 11601, 11605, 11609, 11611, 11614, 11617, 11625, 11632, 11639, 11645, 11647, 11654, 11659, 11677, 11679, 11685, 11693, 11700, 11711, 11717, 11723, 11736, 11739, 11743, 11748, 11753, 11765, 11771, 11775, 11779, 11783, 11790, 11795, 11798, 11801, 11804, 11807, 11810, 11813, 11825] \ No newline at end of file +[4, 1, 590, 11834, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 2, 552, 7, 552, 2, 553, 7, 553, 2, 554, 7, 554, 2, 555, 7, 555, 2, 556, 7, 556, 2, 557, 7, 557, 2, 558, 7, 558, 2, 559, 7, 559, 2, 560, 7, 560, 2, 561, 7, 561, 2, 562, 7, 562, 2, 563, 7, 563, 2, 564, 7, 564, 2, 565, 7, 565, 2, 566, 7, 566, 2, 567, 7, 567, 2, 568, 7, 568, 2, 569, 7, 569, 2, 570, 7, 570, 2, 571, 7, 571, 2, 572, 7, 572, 2, 573, 7, 573, 2, 574, 7, 574, 2, 575, 7, 575, 2, 576, 7, 576, 2, 577, 7, 577, 2, 578, 7, 578, 2, 579, 7, 579, 2, 580, 7, 580, 2, 581, 7, 581, 2, 582, 7, 582, 2, 583, 7, 583, 2, 584, 7, 584, 2, 585, 7, 585, 2, 586, 7, 586, 2, 587, 7, 587, 2, 588, 7, 588, 2, 589, 7, 589, 2, 590, 7, 590, 2, 591, 7, 591, 2, 592, 7, 592, 2, 593, 7, 593, 2, 594, 7, 594, 2, 595, 7, 595, 2, 596, 7, 596, 2, 597, 7, 597, 2, 598, 7, 598, 2, 599, 7, 599, 2, 600, 7, 600, 2, 601, 7, 601, 2, 602, 7, 602, 2, 603, 7, 603, 2, 604, 7, 604, 2, 605, 7, 605, 2, 606, 7, 606, 2, 607, 7, 607, 2, 608, 7, 608, 2, 609, 7, 609, 2, 610, 7, 610, 2, 611, 7, 611, 2, 612, 7, 612, 2, 613, 7, 613, 2, 614, 7, 614, 2, 615, 7, 615, 2, 616, 7, 616, 2, 617, 7, 617, 2, 618, 7, 618, 2, 619, 7, 619, 2, 620, 7, 620, 2, 621, 7, 621, 2, 622, 7, 622, 2, 623, 7, 623, 2, 624, 7, 624, 2, 625, 7, 625, 2, 626, 7, 626, 2, 627, 7, 627, 2, 628, 7, 628, 2, 629, 7, 629, 2, 630, 7, 630, 2, 631, 7, 631, 2, 632, 7, 632, 2, 633, 7, 633, 2, 634, 7, 634, 2, 635, 7, 635, 2, 636, 7, 636, 2, 637, 7, 637, 2, 638, 7, 638, 2, 639, 7, 639, 2, 640, 7, 640, 2, 641, 7, 641, 2, 642, 7, 642, 2, 643, 7, 643, 2, 644, 7, 644, 2, 645, 7, 645, 2, 646, 7, 646, 2, 647, 7, 647, 2, 648, 7, 648, 2, 649, 7, 649, 2, 650, 7, 650, 2, 651, 7, 651, 2, 652, 7, 652, 2, 653, 7, 653, 2, 654, 7, 654, 2, 655, 7, 655, 2, 656, 7, 656, 2, 657, 7, 657, 2, 658, 7, 658, 2, 659, 7, 659, 2, 660, 7, 660, 2, 661, 7, 661, 2, 662, 7, 662, 2, 663, 7, 663, 2, 664, 7, 664, 2, 665, 7, 665, 2, 666, 7, 666, 2, 667, 7, 667, 2, 668, 7, 668, 2, 669, 7, 669, 2, 670, 7, 670, 2, 671, 7, 671, 2, 672, 7, 672, 2, 673, 7, 673, 2, 674, 7, 674, 2, 675, 7, 675, 2, 676, 7, 676, 2, 677, 7, 677, 2, 678, 7, 678, 2, 679, 7, 679, 2, 680, 7, 680, 2, 681, 7, 681, 2, 682, 7, 682, 2, 683, 7, 683, 2, 684, 7, 684, 2, 685, 7, 685, 2, 686, 7, 686, 2, 687, 7, 687, 2, 688, 7, 688, 2, 689, 7, 689, 2, 690, 7, 690, 2, 691, 7, 691, 2, 692, 7, 692, 2, 693, 7, 693, 2, 694, 7, 694, 2, 695, 7, 695, 2, 696, 7, 696, 2, 697, 7, 697, 2, 698, 7, 698, 2, 699, 7, 699, 2, 700, 7, 700, 2, 701, 7, 701, 2, 702, 7, 702, 2, 703, 7, 703, 2, 704, 7, 704, 2, 705, 7, 705, 2, 706, 7, 706, 2, 707, 7, 707, 2, 708, 7, 708, 2, 709, 7, 709, 2, 710, 7, 710, 2, 711, 7, 711, 2, 712, 7, 712, 2, 713, 7, 713, 2, 714, 7, 714, 2, 715, 7, 715, 2, 716, 7, 716, 2, 717, 7, 717, 2, 718, 7, 718, 2, 719, 7, 719, 2, 720, 7, 720, 2, 721, 7, 721, 2, 722, 7, 722, 2, 723, 7, 723, 2, 724, 7, 724, 2, 725, 7, 725, 2, 726, 7, 726, 2, 727, 7, 727, 2, 728, 7, 728, 2, 729, 7, 729, 2, 730, 7, 730, 2, 731, 7, 731, 2, 732, 7, 732, 2, 733, 7, 733, 2, 734, 7, 734, 2, 735, 7, 735, 2, 736, 7, 736, 2, 737, 7, 737, 2, 738, 7, 738, 2, 739, 7, 739, 2, 740, 7, 740, 2, 741, 7, 741, 2, 742, 7, 742, 2, 743, 7, 743, 2, 744, 7, 744, 2, 745, 7, 745, 2, 746, 7, 746, 2, 747, 7, 747, 2, 748, 7, 748, 2, 749, 7, 749, 2, 750, 7, 750, 2, 751, 7, 751, 2, 752, 7, 752, 2, 753, 7, 753, 2, 754, 7, 754, 2, 755, 7, 755, 2, 756, 7, 756, 2, 757, 7, 757, 2, 758, 7, 758, 2, 759, 7, 759, 2, 760, 7, 760, 2, 761, 7, 761, 2, 762, 7, 762, 2, 763, 7, 763, 2, 764, 7, 764, 2, 765, 7, 765, 2, 766, 7, 766, 2, 767, 7, 767, 2, 768, 7, 768, 2, 769, 7, 769, 2, 770, 7, 770, 2, 771, 7, 771, 2, 772, 7, 772, 2, 773, 7, 773, 2, 774, 7, 774, 2, 775, 7, 775, 2, 776, 7, 776, 2, 777, 7, 777, 2, 778, 7, 778, 2, 779, 7, 779, 2, 780, 7, 780, 2, 781, 7, 781, 2, 782, 7, 782, 2, 783, 7, 783, 2, 784, 7, 784, 2, 785, 7, 785, 2, 786, 7, 786, 2, 787, 7, 787, 2, 788, 7, 788, 2, 789, 7, 789, 2, 790, 7, 790, 2, 791, 7, 791, 2, 792, 7, 792, 2, 793, 7, 793, 2, 794, 7, 794, 2, 795, 7, 795, 2, 796, 7, 796, 2, 797, 7, 797, 2, 798, 7, 798, 2, 799, 7, 799, 2, 800, 7, 800, 2, 801, 7, 801, 2, 802, 7, 802, 2, 803, 7, 803, 2, 804, 7, 804, 2, 805, 7, 805, 2, 806, 7, 806, 2, 807, 7, 807, 2, 808, 7, 808, 2, 809, 7, 809, 2, 810, 7, 810, 2, 811, 7, 811, 2, 812, 7, 812, 2, 813, 7, 813, 2, 814, 7, 814, 2, 815, 7, 815, 2, 816, 7, 816, 2, 817, 7, 817, 2, 818, 7, 818, 2, 819, 7, 819, 2, 820, 7, 820, 2, 821, 7, 821, 2, 822, 7, 822, 2, 823, 7, 823, 2, 824, 7, 824, 2, 825, 7, 825, 2, 826, 7, 826, 2, 827, 7, 827, 2, 828, 7, 828, 2, 829, 7, 829, 2, 830, 7, 830, 2, 831, 7, 831, 2, 832, 7, 832, 2, 833, 7, 833, 2, 834, 7, 834, 2, 835, 7, 835, 2, 836, 7, 836, 2, 837, 7, 837, 2, 838, 7, 838, 2, 839, 7, 839, 2, 840, 7, 840, 2, 841, 7, 841, 2, 842, 7, 842, 2, 843, 7, 843, 2, 844, 7, 844, 2, 845, 7, 845, 2, 846, 7, 846, 2, 847, 7, 847, 2, 848, 7, 848, 2, 849, 7, 849, 2, 850, 7, 850, 2, 851, 7, 851, 2, 852, 7, 852, 2, 853, 7, 853, 2, 854, 7, 854, 2, 855, 7, 855, 2, 856, 7, 856, 2, 857, 7, 857, 2, 858, 7, 858, 2, 859, 7, 859, 2, 860, 7, 860, 2, 861, 7, 861, 2, 862, 7, 862, 2, 863, 7, 863, 2, 864, 7, 864, 2, 865, 7, 865, 2, 866, 7, 866, 2, 867, 7, 867, 2, 868, 7, 868, 2, 869, 7, 869, 2, 870, 7, 870, 2, 871, 7, 871, 2, 872, 7, 872, 2, 873, 7, 873, 2, 874, 7, 874, 1, 0, 5, 0, 1752, 8, 0, 10, 0, 12, 0, 1755, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 1763, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1882, 8, 3, 1, 4, 1, 4, 3, 4, 1886, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1895, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 5, 8, 1902, 8, 8, 10, 8, 12, 8, 1905, 9, 8, 1, 9, 5, 9, 1908, 8, 9, 10, 9, 12, 9, 1911, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1916, 8, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1948, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1960, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1966, 8, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1974, 8, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1982, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1988, 8, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1997, 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 2003, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 2015, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 2021, 8, 17, 1, 18, 1, 18, 5, 18, 2025, 8, 18, 10, 18, 12, 18, 2028, 9, 18, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2034, 8, 19, 1, 19, 1, 19, 3, 19, 2038, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2043, 8, 19, 1, 19, 1, 19, 3, 19, 2047, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2060, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2071, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 2077, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 3, 23, 2093, 8, 23, 1, 23, 3, 23, 2096, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 2101, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 2107, 8, 24, 1, 25, 5, 25, 2110, 8, 25, 10, 25, 12, 25, 2113, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 2121, 8, 26, 1, 27, 1, 27, 3, 27, 2125, 8, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 2137, 8, 28, 1, 29, 1, 29, 3, 29, 2141, 8, 29, 1, 29, 3, 29, 2144, 8, 29, 1, 29, 1, 29, 3, 29, 2148, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 2159, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 2177, 8, 30, 1, 31, 1, 31, 1, 31, 5, 31, 2182, 8, 31, 10, 31, 12, 31, 2185, 9, 31, 1, 32, 1, 32, 1, 32, 5, 32, 2190, 8, 32, 10, 32, 12, 32, 2193, 9, 32, 1, 33, 1, 33, 3, 33, 2197, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 2204, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 2210, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 2216, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 2223, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 2234, 8, 37, 1, 38, 1, 38, 3, 38, 2238, 8, 38, 1, 39, 1, 39, 3, 39, 2242, 8, 39, 1, 40, 1, 40, 3, 40, 2246, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 2259, 8, 42, 1, 43, 1, 43, 3, 43, 2263, 8, 43, 1, 44, 1, 44, 1, 44, 3, 44, 2268, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 2273, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 2285, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 2294, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 2306, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2311, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2322, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2328, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2333, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2343, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2348, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2355, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2360, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2365, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2376, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2382, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2387, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2395, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2404, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2419, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2425, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2431, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2436, 8, 52, 1, 53, 1, 53, 1, 53, 5, 53, 2441, 8, 53, 10, 53, 12, 53, 2444, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2455, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2461, 8, 55, 10, 55, 12, 55, 2464, 9, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 2471, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2489, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 3, 60, 2498, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2512, 8, 60, 1, 60, 1, 60, 3, 60, 2516, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2531, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2539, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2549, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2589, 8, 60, 1, 60, 3, 60, 2592, 8, 60, 1, 60, 1, 60, 3, 60, 2596, 8, 60, 1, 60, 1, 60, 3, 60, 2600, 8, 60, 1, 60, 3, 60, 2603, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2608, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2615, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2624, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2630, 8, 60, 1, 60, 1, 60, 3, 60, 2634, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2643, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2651, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2660, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2669, 8, 60, 1, 60, 1, 60, 3, 60, 2673, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2680, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2686, 8, 60, 1, 60, 1, 60, 3, 60, 2690, 8, 60, 1, 60, 1, 60, 3, 60, 2694, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2699, 8, 60, 1, 60, 3, 60, 2702, 8, 60, 1, 60, 1, 60, 3, 60, 2706, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2712, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2719, 8, 61, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2735, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 5, 68, 2747, 8, 68, 10, 68, 12, 68, 2750, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2759, 8, 69, 3, 69, 2761, 8, 69, 1, 70, 4, 70, 2764, 8, 70, 11, 70, 12, 70, 2765, 1, 71, 1, 71, 3, 71, 2770, 8, 71, 1, 71, 3, 71, 2773, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2779, 8, 71, 3, 71, 2781, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2809, 8, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 5, 74, 2817, 8, 74, 10, 74, 12, 74, 2820, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 5, 76, 2830, 8, 76, 10, 76, 12, 76, 2833, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2839, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2844, 8, 77, 1, 77, 1, 77, 3, 77, 2848, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2854, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2859, 8, 77, 1, 77, 3, 77, 2862, 8, 77, 3, 77, 2864, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 2869, 8, 78, 1, 79, 1, 79, 3, 79, 2873, 8, 79, 1, 79, 1, 79, 3, 79, 2877, 8, 79, 1, 79, 1, 79, 3, 79, 2881, 8, 79, 1, 79, 1, 79, 3, 79, 2885, 8, 79, 1, 79, 3, 79, 2888, 8, 79, 1, 79, 1, 79, 3, 79, 2892, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2900, 8, 79, 1, 79, 1, 79, 3, 79, 2904, 8, 79, 1, 79, 1, 79, 3, 79, 2908, 8, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 3, 82, 2917, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2924, 8, 83, 1, 84, 5, 84, 2927, 8, 84, 10, 84, 12, 84, 2930, 9, 84, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2936, 8, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2941, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2948, 8, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2953, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2971, 8, 85, 1, 86, 1, 86, 1, 87, 3, 87, 2976, 8, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 5, 89, 2986, 8, 89, 10, 89, 12, 89, 2989, 9, 89, 1, 90, 1, 90, 3, 90, 2993, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 3002, 8, 91, 1, 92, 1, 92, 1, 92, 5, 92, 3007, 8, 92, 10, 92, 12, 92, 3010, 9, 92, 1, 93, 1, 93, 1, 94, 1, 94, 3, 94, 3016, 8, 94, 1, 94, 1, 94, 3, 94, 3020, 8, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3025, 8, 94, 1, 94, 1, 94, 3, 94, 3029, 8, 94, 1, 94, 3, 94, 3032, 8, 94, 1, 94, 3, 94, 3035, 8, 94, 1, 94, 3, 94, 3038, 8, 94, 1, 94, 3, 94, 3041, 8, 94, 1, 94, 3, 94, 3044, 8, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3049, 8, 94, 1, 94, 3, 94, 3052, 8, 94, 1, 94, 3, 94, 3055, 8, 94, 1, 94, 3, 94, 3058, 8, 94, 1, 94, 3, 94, 3061, 8, 94, 1, 94, 3, 94, 3064, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3070, 8, 94, 1, 94, 1, 94, 3, 94, 3074, 8, 94, 1, 94, 3, 94, 3077, 8, 94, 1, 94, 3, 94, 3080, 8, 94, 1, 94, 3, 94, 3083, 8, 94, 1, 94, 3, 94, 3086, 8, 94, 3, 94, 3088, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3097, 8, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 5, 99, 3110, 8, 99, 10, 99, 12, 99, 3113, 9, 99, 1, 100, 1, 100, 1, 100, 5, 100, 3118, 8, 100, 10, 100, 12, 100, 3121, 9, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3126, 8, 101, 1, 102, 1, 102, 3, 102, 3130, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3135, 8, 103, 1, 103, 3, 103, 3138, 8, 103, 1, 103, 3, 103, 3141, 8, 103, 1, 103, 1, 103, 3, 103, 3145, 8, 103, 1, 103, 1, 103, 3, 103, 3149, 8, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3163, 8, 105, 1, 106, 1, 106, 1, 106, 3, 106, 3168, 8, 106, 1, 106, 1, 106, 1, 107, 5, 107, 3173, 8, 107, 10, 107, 12, 107, 3176, 9, 107, 1, 108, 1, 108, 3, 108, 3180, 8, 108, 1, 108, 1, 108, 3, 108, 3184, 8, 108, 1, 108, 3, 108, 3187, 8, 108, 1, 108, 1, 108, 3, 108, 3191, 8, 108, 1, 108, 3, 108, 3194, 8, 108, 3, 108, 3196, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3203, 8, 109, 1, 109, 3, 109, 3206, 8, 109, 1, 109, 1, 109, 3, 109, 3210, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3216, 8, 109, 1, 109, 3, 109, 3219, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3226, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3235, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3242, 8, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3247, 8, 109, 1, 109, 3, 109, 3250, 8, 109, 1, 109, 3, 109, 3253, 8, 109, 1, 109, 3, 109, 3256, 8, 109, 1, 110, 1, 110, 3, 110, 3260, 8, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 3267, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 3272, 8, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 5, 115, 3283, 8, 115, 10, 115, 12, 115, 3286, 9, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3295, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3308, 8, 118, 1, 118, 3, 118, 3311, 8, 118, 1, 118, 3, 118, 3314, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3321, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3329, 8, 118, 1, 118, 3, 118, 3332, 8, 118, 1, 118, 3, 118, 3335, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3342, 8, 118, 1, 118, 1, 118, 3, 118, 3346, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3352, 8, 118, 1, 118, 3, 118, 3355, 8, 118, 1, 118, 3, 118, 3358, 8, 118, 1, 118, 3, 118, 3361, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3373, 8, 118, 1, 118, 3, 118, 3376, 8, 118, 1, 118, 3, 118, 3379, 8, 118, 1, 118, 1, 118, 3, 118, 3383, 8, 118, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 5, 122, 3399, 8, 122, 10, 122, 12, 122, 3402, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 3407, 8, 123, 10, 123, 12, 123, 3410, 9, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 5, 126, 3423, 8, 126, 10, 126, 12, 126, 3426, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3436, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3451, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3468, 8, 132, 3, 132, 3470, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 5, 136, 3489, 8, 136, 10, 136, 12, 136, 3492, 9, 136, 1, 137, 1, 137, 3, 137, 3496, 8, 137, 1, 137, 3, 137, 3499, 8, 137, 1, 137, 1, 137, 3, 137, 3503, 8, 137, 1, 137, 3, 137, 3506, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 3512, 8, 137, 1, 137, 3, 137, 3515, 8, 137, 3, 137, 3517, 8, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3528, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3537, 8, 140, 1, 141, 1, 141, 1, 141, 1, 142, 3, 142, 3543, 8, 142, 1, 142, 3, 142, 3546, 8, 142, 1, 142, 3, 142, 3549, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 3, 145, 3563, 8, 145, 1, 145, 3, 145, 3566, 8, 145, 1, 145, 3, 145, 3569, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3574, 8, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 3, 146, 3582, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 3591, 8, 147, 1, 147, 1, 147, 3, 147, 3595, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3601, 8, 147, 1, 148, 1, 148, 3, 148, 3605, 8, 148, 1, 148, 3, 148, 3608, 8, 148, 1, 148, 3, 148, 3611, 8, 148, 1, 148, 3, 148, 3614, 8, 148, 1, 148, 3, 148, 3617, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3623, 8, 149, 1, 150, 1, 150, 3, 150, 3627, 8, 150, 1, 150, 1, 150, 1, 150, 3, 150, 3632, 8, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 3638, 8, 150, 1, 151, 1, 151, 3, 151, 3642, 8, 151, 1, 151, 3, 151, 3645, 8, 151, 1, 151, 3, 151, 3648, 8, 151, 1, 151, 3, 151, 3651, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3659, 8, 153, 1, 153, 1, 153, 3, 153, 3663, 8, 153, 1, 154, 1, 154, 3, 154, 3667, 8, 154, 1, 154, 1, 154, 3, 154, 3671, 8, 154, 1, 154, 1, 154, 3, 154, 3675, 8, 154, 1, 155, 1, 155, 1, 155, 3, 155, 3680, 8, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 4, 158, 3692, 8, 158, 11, 158, 12, 158, 3693, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3703, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3720, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3725, 8, 159, 1, 159, 3, 159, 3728, 8, 159, 3, 159, 3730, 8, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 3740, 8, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3745, 8, 162, 10, 162, 12, 162, 3748, 9, 162, 1, 163, 1, 163, 3, 163, 3752, 8, 163, 1, 163, 3, 163, 3755, 8, 163, 1, 163, 3, 163, 3758, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3765, 8, 163, 1, 163, 3, 163, 3768, 8, 163, 3, 163, 3770, 8, 163, 1, 164, 1, 164, 1, 165, 1, 165, 3, 165, 3776, 8, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 3785, 8, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3795, 8, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3800, 8, 170, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 3, 172, 3808, 8, 172, 1, 172, 1, 172, 3, 172, 3812, 8, 172, 1, 172, 1, 172, 1, 173, 5, 173, 3817, 8, 173, 10, 173, 12, 173, 3820, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 3829, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 5, 176, 3838, 8, 176, 10, 176, 12, 176, 3841, 9, 176, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 3948, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3956, 8, 179, 1, 179, 3, 179, 3959, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3969, 8, 180, 1, 181, 4, 181, 3972, 8, 181, 11, 181, 12, 181, 3973, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 3984, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 3995, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4005, 8, 185, 10, 185, 12, 185, 4008, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4018, 8, 187, 10, 187, 12, 187, 4021, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4030, 8, 188, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4042, 8, 192, 1, 192, 1, 192, 3, 192, 4046, 8, 192, 1, 192, 3, 192, 4049, 8, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 4056, 8, 192, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 3, 194, 4064, 8, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4074, 8, 196, 3, 196, 4076, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4082, 8, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4087, 8, 197, 1, 197, 1, 197, 3, 197, 4091, 8, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4096, 8, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4102, 8, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4109, 8, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4115, 8, 197, 3, 197, 4117, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 4124, 8, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 4132, 8, 198, 1, 199, 1, 199, 1, 199, 3, 199, 4137, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 4148, 8, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 4155, 8, 201, 1, 202, 1, 202, 3, 202, 4159, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4176, 8, 204, 1, 204, 3, 204, 4179, 8, 204, 1, 204, 3, 204, 4182, 8, 204, 1, 204, 3, 204, 4185, 8, 204, 1, 204, 3, 204, 4188, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4196, 8, 205, 1, 205, 3, 205, 4199, 8, 205, 1, 205, 3, 205, 4202, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4208, 8, 206, 1, 206, 1, 206, 1, 207, 1, 207, 5, 207, 4214, 8, 207, 10, 207, 12, 207, 4217, 9, 207, 1, 207, 3, 207, 4220, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4232, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4238, 8, 207, 1, 208, 3, 208, 4241, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4246, 8, 208, 1, 208, 1, 208, 3, 208, 4250, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4257, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4268, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4291, 8, 213, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 3, 218, 4311, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 4320, 8, 218, 1, 218, 3, 218, 4323, 8, 218, 1, 218, 3, 218, 4326, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 4336, 8, 218, 1, 218, 3, 218, 4339, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 4348, 8, 218, 1, 218, 1, 218, 3, 218, 4352, 8, 218, 1, 218, 3, 218, 4355, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 4363, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 4369, 8, 219, 1, 220, 1, 220, 3, 220, 4373, 8, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 5, 222, 4382, 8, 222, 10, 222, 12, 222, 4385, 9, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 4394, 8, 223, 1, 224, 1, 224, 1, 224, 1, 225, 4, 225, 4400, 8, 225, 11, 225, 12, 225, 4401, 1, 226, 1, 226, 1, 226, 3, 226, 4407, 8, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 228, 1, 228, 1, 229, 1, 229, 1, 230, 1, 230, 3, 230, 4419, 8, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 4436, 8, 234, 1, 235, 1, 235, 3, 235, 4440, 8, 235, 1, 235, 1, 235, 5, 235, 4444, 8, 235, 10, 235, 12, 235, 4447, 9, 235, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 4453, 8, 236, 1, 237, 1, 237, 1, 237, 1, 238, 5, 238, 4459, 8, 238, 10, 238, 12, 238, 4462, 9, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 4475, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 4501, 8, 240, 1, 241, 1, 241, 1, 241, 5, 241, 4506, 8, 241, 10, 241, 12, 241, 4509, 9, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 5, 243, 4520, 8, 243, 10, 243, 12, 243, 4523, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 3, 245, 4533, 8, 245, 1, 245, 3, 245, 4536, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 3, 247, 4549, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 4558, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 4583, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 4594, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 4636, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 4644, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 4650, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 5, 249, 4659, 8, 249, 10, 249, 12, 249, 4662, 9, 249, 1, 250, 1, 250, 1, 250, 3, 250, 4667, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 4675, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 5, 253, 4684, 8, 253, 10, 253, 12, 253, 4687, 9, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 5, 256, 4698, 8, 256, 10, 256, 12, 256, 4701, 9, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4709, 8, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4714, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4725, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 4736, 8, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 4744, 8, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 5, 260, 4752, 8, 260, 10, 260, 12, 260, 4755, 9, 260, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4761, 8, 261, 1, 261, 3, 261, 4764, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4770, 8, 261, 1, 261, 3, 261, 4773, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4788, 8, 261, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4801, 8, 264, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 4830, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 4835, 8, 268, 10, 268, 12, 268, 4838, 9, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 4852, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 3, 271, 4864, 8, 271, 1, 271, 1, 271, 3, 271, 4868, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4873, 8, 271, 1, 271, 1, 271, 3, 271, 4877, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4882, 8, 271, 1, 271, 1, 271, 3, 271, 4886, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4892, 8, 271, 1, 271, 1, 271, 3, 271, 4896, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4901, 8, 271, 1, 271, 1, 271, 3, 271, 4905, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4911, 8, 271, 1, 271, 1, 271, 3, 271, 4915, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4920, 8, 271, 1, 271, 1, 271, 3, 271, 4924, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4929, 8, 271, 1, 271, 1, 271, 3, 271, 4933, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4938, 8, 271, 1, 271, 1, 271, 3, 271, 4942, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4949, 8, 271, 1, 271, 1, 271, 3, 271, 4953, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4960, 8, 271, 1, 271, 1, 271, 3, 271, 4964, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4971, 8, 271, 1, 271, 1, 271, 3, 271, 4975, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4982, 8, 271, 1, 271, 1, 271, 3, 271, 4986, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4992, 8, 271, 1, 271, 1, 271, 3, 271, 4996, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5002, 8, 271, 1, 271, 1, 271, 3, 271, 5006, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5011, 8, 271, 1, 271, 1, 271, 3, 271, 5015, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5022, 8, 271, 1, 271, 1, 271, 3, 271, 5026, 8, 271, 1, 271, 1, 271, 3, 271, 5030, 8, 271, 1, 271, 1, 271, 3, 271, 5034, 8, 271, 1, 271, 1, 271, 3, 271, 5038, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5043, 8, 271, 1, 271, 1, 271, 3, 271, 5047, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5052, 8, 271, 1, 271, 1, 271, 3, 271, 5056, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5061, 8, 271, 1, 271, 1, 271, 3, 271, 5065, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5070, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5076, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5081, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5087, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5092, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5098, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5103, 8, 271, 1, 271, 1, 271, 3, 271, 5107, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5112, 8, 271, 1, 271, 1, 271, 3, 271, 5116, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5122, 8, 271, 1, 271, 1, 271, 3, 271, 5126, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5131, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5139, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5145, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5151, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5157, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5163, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5170, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5175, 8, 271, 1, 271, 1, 271, 3, 271, 5179, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5184, 8, 271, 1, 271, 1, 271, 3, 271, 5188, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5193, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5199, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5206, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5211, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5218, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5228, 8, 271, 1, 271, 1, 271, 3, 271, 5232, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5238, 8, 271, 3, 271, 5240, 8, 271, 1, 272, 1, 272, 1, 272, 5, 272, 5245, 8, 272, 10, 272, 12, 272, 5248, 9, 272, 1, 273, 3, 273, 5251, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5256, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5274, 8, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5289, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5307, 8, 274, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 5, 276, 5314, 8, 276, 10, 276, 12, 276, 5317, 9, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 3, 278, 5325, 8, 278, 1, 279, 1, 279, 3, 279, 5329, 8, 279, 1, 280, 1, 280, 4, 280, 5333, 8, 280, 11, 280, 12, 280, 5334, 1, 281, 1, 281, 1, 281, 5, 281, 5340, 8, 281, 10, 281, 12, 281, 5343, 9, 281, 1, 282, 1, 282, 3, 282, 5347, 8, 282, 1, 282, 1, 282, 1, 282, 5, 282, 5352, 8, 282, 10, 282, 12, 282, 5355, 9, 282, 1, 282, 1, 282, 3, 282, 5359, 8, 282, 1, 282, 3, 282, 5362, 8, 282, 1, 283, 3, 283, 5365, 8, 283, 1, 283, 1, 283, 3, 283, 5369, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5440, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5536, 8, 284, 1, 285, 1, 285, 3, 285, 5540, 8, 285, 1, 286, 1, 286, 1, 286, 3, 286, 5545, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5556, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5567, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5578, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5589, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5600, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5612, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5623, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5634, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5644, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5651, 8, 286, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 3, 288, 5658, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5664, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5672, 8, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5677, 8, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5682, 8, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5687, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5693, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5700, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5706, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5712, 8, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5717, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5723, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5730, 8, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5735, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5741, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5748, 8, 290, 1, 290, 3, 290, 5751, 8, 290, 1, 291, 1, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 5764, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 5773, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 5785, 8, 294, 3, 294, 5787, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 5805, 8, 295, 1, 296, 1, 296, 1, 296, 5, 296, 5810, 8, 296, 10, 296, 12, 296, 5813, 9, 296, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 5820, 8, 298, 10, 298, 12, 298, 5823, 9, 298, 1, 299, 1, 299, 3, 299, 5827, 8, 299, 1, 299, 1, 299, 3, 299, 5831, 8, 299, 1, 299, 1, 299, 3, 299, 5835, 8, 299, 1, 299, 1, 299, 3, 299, 5839, 8, 299, 3, 299, 5841, 8, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 5901, 8, 300, 1, 301, 1, 301, 1, 301, 5, 301, 5906, 8, 301, 10, 301, 12, 301, 5909, 9, 301, 1, 302, 1, 302, 1, 302, 3, 302, 5914, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 5925, 8, 304, 1, 304, 3, 304, 5928, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 5935, 8, 305, 1, 305, 3, 305, 5938, 8, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 5948, 8, 305, 1, 305, 3, 305, 5951, 8, 305, 3, 305, 5953, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 5, 309, 5970, 8, 309, 10, 309, 12, 309, 5973, 9, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 5984, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 5993, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6002, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6014, 8, 311, 3, 311, 6016, 8, 311, 1, 312, 1, 312, 1, 313, 1, 313, 3, 313, 6022, 8, 313, 1, 313, 1, 313, 3, 313, 6026, 8, 313, 1, 313, 3, 313, 6029, 8, 313, 1, 313, 3, 313, 6032, 8, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6037, 8, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6043, 8, 313, 1, 313, 3, 313, 6046, 8, 313, 1, 313, 3, 313, 6049, 8, 313, 1, 313, 3, 313, 6052, 8, 313, 1, 313, 3, 313, 6055, 8, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 5, 318, 6069, 8, 318, 10, 318, 12, 318, 6072, 9, 318, 1, 319, 3, 319, 6075, 8, 319, 1, 319, 3, 319, 6078, 8, 319, 1, 319, 3, 319, 6081, 8, 319, 1, 319, 3, 319, 6084, 8, 319, 1, 319, 3, 319, 6087, 8, 319, 1, 319, 1, 319, 1, 319, 3, 319, 6092, 8, 319, 1, 319, 3, 319, 6095, 8, 319, 3, 319, 6097, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 3, 320, 6110, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 5, 322, 6120, 8, 322, 10, 322, 12, 322, 6123, 9, 322, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6136, 8, 326, 1, 327, 1, 327, 3, 327, 6140, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6146, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6156, 8, 327, 3, 327, 6158, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6163, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 5, 328, 6169, 8, 328, 10, 328, 12, 328, 6172, 9, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 3, 330, 6181, 8, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 5, 331, 6188, 8, 331, 10, 331, 12, 331, 6191, 9, 331, 1, 332, 1, 332, 1, 332, 5, 332, 6196, 8, 332, 10, 332, 12, 332, 6199, 9, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 6207, 8, 333, 3, 333, 6209, 8, 333, 1, 334, 1, 334, 1, 334, 5, 334, 6214, 8, 334, 10, 334, 12, 334, 6217, 9, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 6225, 8, 335, 3, 335, 6227, 8, 335, 1, 336, 1, 336, 1, 336, 5, 336, 6232, 8, 336, 10, 336, 12, 336, 6235, 9, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6243, 8, 337, 3, 337, 6245, 8, 337, 1, 338, 1, 338, 3, 338, 6249, 8, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 5, 339, 6256, 8, 339, 10, 339, 12, 339, 6259, 9, 339, 1, 340, 1, 340, 3, 340, 6263, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6269, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6274, 8, 340, 1, 341, 1, 341, 3, 341, 6278, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6283, 8, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 6301, 8, 344, 1, 345, 1, 345, 1, 345, 3, 345, 6306, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 3, 347, 6321, 8, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 5, 348, 6328, 8, 348, 10, 348, 12, 348, 6331, 9, 348, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 5, 350, 6339, 8, 350, 10, 350, 12, 350, 6342, 9, 350, 1, 351, 4, 351, 6345, 8, 351, 11, 351, 12, 351, 6346, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 6384, 8, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 6404, 8, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 6411, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 5, 354, 6420, 8, 354, 10, 354, 12, 354, 6423, 9, 354, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 5, 357, 6434, 8, 357, 10, 357, 12, 357, 6437, 9, 357, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6443, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 6451, 8, 359, 1, 360, 4, 360, 6454, 8, 360, 11, 360, 12, 360, 6455, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 3, 362, 6463, 8, 362, 1, 362, 1, 362, 3, 362, 6467, 8, 362, 1, 362, 1, 362, 1, 362, 3, 362, 6472, 8, 362, 1, 362, 1, 362, 3, 362, 6476, 8, 362, 1, 362, 1, 362, 1, 362, 3, 362, 6481, 8, 362, 1, 362, 1, 362, 3, 362, 6485, 8, 362, 3, 362, 6487, 8, 362, 1, 363, 1, 363, 1, 363, 3, 363, 6492, 8, 363, 1, 363, 1, 363, 3, 363, 6496, 8, 363, 1, 364, 1, 364, 1, 364, 3, 364, 6501, 8, 364, 1, 364, 1, 364, 3, 364, 6505, 8, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 3, 365, 6529, 8, 365, 1, 366, 1, 366, 1, 366, 5, 366, 6534, 8, 366, 10, 366, 12, 366, 6537, 9, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 5, 367, 6544, 8, 367, 10, 367, 12, 367, 6547, 9, 367, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 370, 4, 370, 6556, 8, 370, 11, 370, 12, 370, 6557, 1, 371, 1, 371, 1, 371, 3, 371, 6563, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 6576, 8, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 6588, 8, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 6600, 8, 372, 3, 372, 6602, 8, 372, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 6608, 8, 373, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 3, 375, 6615, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 6660, 8, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 6678, 8, 377, 1, 378, 1, 378, 3, 378, 6682, 8, 378, 1, 378, 1, 378, 1, 378, 3, 378, 6687, 8, 378, 1, 378, 3, 378, 6690, 8, 378, 1, 379, 1, 379, 3, 379, 6694, 8, 379, 1, 379, 1, 379, 1, 379, 3, 379, 6699, 8, 379, 1, 379, 1, 379, 1, 379, 3, 379, 6704, 8, 379, 1, 379, 3, 379, 6707, 8, 379, 1, 380, 1, 380, 1, 380, 5, 380, 6712, 8, 380, 10, 380, 12, 380, 6715, 9, 380, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6731, 8, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6802, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6833, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6887, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6897, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6907, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6918, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6928, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6939, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6949, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6954, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6963, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6968, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6978, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6983, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6992, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7005, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7010, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7122, 8, 383, 3, 383, 7124, 8, 383, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7133, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7144, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7155, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7168, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7180, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7191, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7198, 8, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7288, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7341, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7351, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7362, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7373, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7387, 8, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 5, 389, 7400, 8, 389, 10, 389, 12, 389, 7403, 9, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 3, 390, 7413, 8, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7420, 8, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7474, 8, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7615, 8, 393, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7621, 8, 394, 1, 394, 3, 394, 7624, 8, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7634, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7674, 8, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7684, 8, 398, 1, 399, 1, 399, 1, 399, 5, 399, 7689, 8, 399, 10, 399, 12, 399, 7692, 9, 399, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7714, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7723, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7732, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7741, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7774, 8, 401, 1, 402, 1, 402, 3, 402, 7778, 8, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7788, 8, 402, 1, 402, 1, 402, 3, 402, 7792, 8, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7802, 8, 403, 1, 404, 3, 404, 7805, 8, 404, 1, 404, 1, 404, 3, 404, 7809, 8, 404, 5, 404, 7811, 8, 404, 10, 404, 12, 404, 7814, 9, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7821, 8, 405, 1, 406, 1, 406, 1, 407, 1, 407, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 3, 409, 7832, 8, 409, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7844, 8, 412, 1, 413, 1, 413, 3, 413, 7848, 8, 413, 1, 413, 3, 413, 7851, 8, 413, 1, 413, 1, 413, 3, 413, 7855, 8, 413, 1, 413, 3, 413, 7858, 8, 413, 1, 413, 1, 413, 1, 413, 3, 413, 7863, 8, 413, 1, 413, 1, 413, 3, 413, 7867, 8, 413, 1, 413, 3, 413, 7870, 8, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 7876, 8, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 7887, 8, 413, 1, 413, 3, 413, 7890, 8, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 7897, 8, 413, 1, 413, 1, 413, 3, 413, 7901, 8, 413, 1, 413, 1, 413, 1, 413, 3, 413, 7906, 8, 413, 1, 413, 3, 413, 7909, 8, 413, 3, 413, 7911, 8, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 7925, 8, 415, 1, 416, 1, 416, 3, 416, 7929, 8, 416, 1, 416, 5, 416, 7932, 8, 416, 10, 416, 12, 416, 7935, 9, 416, 1, 417, 1, 417, 1, 418, 1, 418, 3, 418, 7941, 8, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 3, 419, 7948, 8, 419, 1, 419, 3, 419, 7951, 8, 419, 1, 419, 1, 419, 1, 419, 3, 419, 7956, 8, 419, 1, 419, 3, 419, 7959, 8, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 3, 419, 7968, 8, 419, 3, 419, 7970, 8, 419, 1, 419, 1, 419, 1, 419, 3, 419, 7975, 8, 419, 1, 420, 1, 420, 3, 420, 7979, 8, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 3, 422, 7991, 8, 422, 1, 422, 3, 422, 7994, 8, 422, 1, 423, 1, 423, 1, 424, 4, 424, 7999, 8, 424, 11, 424, 12, 424, 8000, 1, 425, 1, 425, 3, 425, 8005, 8, 425, 1, 425, 1, 425, 1, 425, 3, 425, 8010, 8, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 3, 426, 8020, 8, 426, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 3, 428, 8030, 8, 428, 1, 428, 3, 428, 8033, 8, 428, 1, 428, 3, 428, 8036, 8, 428, 3, 428, 8038, 8, 428, 1, 429, 1, 429, 1, 429, 1, 429, 3, 429, 8044, 8, 429, 1, 430, 1, 430, 1, 430, 5, 430, 8049, 8, 430, 10, 430, 12, 430, 8052, 9, 430, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8071, 8, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 3, 435, 8091, 8, 435, 1, 435, 1, 435, 3, 435, 8095, 8, 435, 1, 435, 1, 435, 1, 435, 3, 435, 8100, 8, 435, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8169, 8, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8174, 8, 438, 1, 439, 1, 439, 1, 440, 1, 440, 3, 440, 8180, 8, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8193, 8, 441, 1, 441, 1, 441, 3, 441, 8197, 8, 441, 1, 441, 1, 441, 3, 441, 8201, 8, 441, 1, 441, 1, 441, 1, 441, 1, 441, 3, 441, 8207, 8, 441, 3, 441, 8209, 8, 441, 1, 442, 1, 442, 1, 442, 1, 442, 5, 442, 8215, 8, 442, 10, 442, 12, 442, 8218, 9, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 3, 444, 8227, 8, 444, 1, 444, 3, 444, 8230, 8, 444, 1, 444, 3, 444, 8233, 8, 444, 1, 444, 3, 444, 8236, 8, 444, 1, 444, 3, 444, 8239, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8246, 8, 444, 1, 444, 3, 444, 8249, 8, 444, 3, 444, 8251, 8, 444, 1, 445, 1, 445, 3, 445, 8255, 8, 445, 1, 445, 3, 445, 8258, 8, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8265, 8, 445, 3, 445, 8267, 8, 445, 1, 446, 1, 446, 1, 446, 5, 446, 8272, 8, 446, 10, 446, 12, 446, 8275, 9, 446, 1, 447, 1, 447, 1, 448, 1, 448, 3, 448, 8281, 8, 448, 1, 449, 1, 449, 3, 449, 8285, 8, 449, 1, 450, 1, 450, 3, 450, 8289, 8, 450, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 5, 452, 8296, 8, 452, 10, 452, 12, 452, 8299, 9, 452, 1, 453, 1, 453, 1, 453, 3, 453, 8304, 8, 453, 1, 454, 1, 454, 3, 454, 8308, 8, 454, 1, 455, 1, 455, 3, 455, 8312, 8, 455, 1, 456, 1, 456, 1, 456, 3, 456, 8317, 8, 456, 1, 457, 1, 457, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 3, 460, 8329, 8, 460, 1, 461, 1, 461, 1, 461, 5, 461, 8334, 8, 461, 10, 461, 12, 461, 8337, 9, 461, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 3, 463, 8346, 8, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 3, 463, 8359, 8, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8370, 8, 464, 1, 465, 1, 465, 1, 465, 5, 465, 8375, 8, 465, 10, 465, 12, 465, 8378, 9, 465, 1, 466, 1, 466, 3, 466, 8382, 8, 466, 1, 467, 1, 467, 3, 467, 8386, 8, 467, 1, 468, 1, 468, 3, 468, 8390, 8, 468, 1, 469, 1, 469, 1, 469, 3, 469, 8395, 8, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 3, 471, 8408, 8, 471, 1, 472, 1, 472, 1, 472, 3, 472, 8413, 8, 472, 1, 472, 1, 472, 3, 472, 8417, 8, 472, 1, 472, 1, 472, 3, 472, 8421, 8, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 3, 472, 8428, 8, 472, 1, 472, 3, 472, 8431, 8, 472, 3, 472, 8433, 8, 472, 1, 473, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 3, 474, 8441, 8, 474, 1, 474, 1, 474, 3, 474, 8445, 8, 474, 1, 475, 3, 475, 8448, 8, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 3, 475, 8455, 8, 475, 1, 475, 3, 475, 8458, 8, 475, 1, 476, 1, 476, 1, 476, 3, 476, 8463, 8, 476, 1, 477, 1, 477, 1, 477, 1, 477, 3, 477, 8469, 8, 477, 1, 477, 1, 477, 1, 477, 1, 477, 3, 477, 8475, 8, 477, 1, 477, 1, 477, 3, 477, 8479, 8, 477, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 5, 479, 8486, 8, 479, 10, 479, 12, 479, 8489, 9, 479, 1, 480, 1, 480, 1, 480, 1, 481, 1, 481, 1, 481, 3, 481, 8497, 8, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 3, 481, 8504, 8, 481, 1, 481, 3, 481, 8507, 8, 481, 1, 482, 1, 482, 1, 482, 1, 482, 3, 482, 8513, 8, 482, 1, 482, 1, 482, 1, 482, 3, 482, 8518, 8, 482, 1, 483, 1, 483, 1, 483, 1, 484, 3, 484, 8524, 8, 484, 1, 484, 1, 484, 1, 484, 1, 484, 3, 484, 8530, 8, 484, 1, 484, 3, 484, 8533, 8, 484, 1, 484, 3, 484, 8536, 8, 484, 1, 485, 1, 485, 1, 485, 1, 486, 1, 486, 3, 486, 8543, 8, 486, 1, 486, 1, 486, 3, 486, 8547, 8, 486, 1, 486, 3, 486, 8550, 8, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 3, 488, 8565, 8, 488, 1, 488, 3, 488, 8568, 8, 488, 1, 489, 1, 489, 1, 490, 1, 490, 1, 490, 3, 490, 8575, 8, 490, 1, 491, 3, 491, 8578, 8, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 3, 491, 8585, 8, 491, 1, 491, 3, 491, 8588, 8, 491, 1, 491, 3, 491, 8591, 8, 491, 1, 492, 1, 492, 1, 492, 5, 492, 8596, 8, 492, 10, 492, 12, 492, 8599, 9, 492, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 3, 493, 8610, 8, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 3, 493, 8617, 8, 493, 3, 493, 8619, 8, 493, 1, 494, 1, 494, 1, 494, 1, 495, 1, 495, 1, 495, 5, 495, 8627, 8, 495, 10, 495, 12, 495, 8630, 9, 495, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 497, 1, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 5, 498, 8647, 8, 498, 10, 498, 12, 498, 8650, 9, 498, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 3, 499, 8657, 8, 499, 1, 500, 1, 500, 3, 500, 8661, 8, 500, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 3, 501, 8671, 8, 501, 1, 502, 1, 502, 3, 502, 8675, 8, 502, 1, 502, 1, 502, 3, 502, 8679, 8, 502, 1, 502, 1, 502, 3, 502, 8683, 8, 502, 3, 502, 8685, 8, 502, 1, 502, 1, 502, 1, 502, 3, 502, 8690, 8, 502, 1, 502, 1, 502, 3, 502, 8694, 8, 502, 1, 502, 1, 502, 3, 502, 8698, 8, 502, 3, 502, 8700, 8, 502, 3, 502, 8702, 8, 502, 1, 503, 1, 503, 3, 503, 8706, 8, 503, 1, 504, 1, 504, 3, 504, 8710, 8, 504, 1, 504, 3, 504, 8713, 8, 504, 1, 504, 3, 504, 8716, 8, 504, 1, 504, 3, 504, 8719, 8, 504, 1, 504, 3, 504, 8722, 8, 504, 3, 504, 8724, 8, 504, 1, 504, 3, 504, 8727, 8, 504, 1, 504, 3, 504, 8730, 8, 504, 1, 504, 3, 504, 8733, 8, 504, 1, 504, 3, 504, 8736, 8, 504, 1, 504, 3, 504, 8739, 8, 504, 1, 504, 3, 504, 8742, 8, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 3, 504, 8751, 8, 504, 3, 504, 8753, 8, 504, 1, 504, 1, 504, 1, 504, 3, 504, 8758, 8, 504, 5, 504, 8760, 8, 504, 10, 504, 12, 504, 8763, 9, 504, 1, 505, 1, 505, 1, 505, 3, 505, 8768, 8, 505, 1, 506, 1, 506, 3, 506, 8772, 8, 506, 1, 507, 1, 507, 3, 507, 8776, 8, 507, 1, 507, 1, 507, 1, 508, 1, 508, 1, 508, 5, 508, 8783, 8, 508, 10, 508, 12, 508, 8786, 9, 508, 1, 509, 1, 509, 3, 509, 8790, 8, 509, 1, 509, 1, 509, 3, 509, 8794, 8, 509, 1, 509, 1, 509, 1, 509, 1, 509, 3, 509, 8800, 8, 509, 1, 509, 3, 509, 8803, 8, 509, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 3, 511, 8822, 8, 511, 1, 511, 1, 511, 1, 511, 1, 512, 1, 512, 1, 512, 3, 512, 8830, 8, 512, 1, 513, 1, 513, 1, 514, 1, 514, 1, 514, 1, 514, 1, 514, 3, 514, 8839, 8, 514, 1, 515, 1, 515, 3, 515, 8843, 8, 515, 1, 516, 3, 516, 8846, 8, 516, 1, 516, 1, 516, 3, 516, 8850, 8, 516, 1, 516, 1, 516, 1, 516, 3, 516, 8855, 8, 516, 1, 516, 1, 516, 1, 516, 1, 516, 3, 516, 8861, 8, 516, 1, 517, 1, 517, 1, 518, 1, 518, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 3, 519, 8873, 8, 519, 1, 520, 1, 520, 1, 521, 1, 521, 1, 522, 1, 522, 1, 522, 1, 522, 1, 523, 1, 523, 1, 523, 5, 523, 8886, 8, 523, 10, 523, 12, 523, 8889, 9, 523, 1, 524, 1, 524, 1, 524, 1, 524, 3, 524, 8895, 8, 524, 1, 524, 3, 524, 8898, 8, 524, 1, 525, 1, 525, 3, 525, 8902, 8, 525, 1, 525, 1, 525, 3, 525, 8906, 8, 525, 1, 525, 1, 525, 3, 525, 8910, 8, 525, 3, 525, 8912, 8, 525, 1, 526, 1, 526, 1, 527, 1, 527, 1, 527, 1, 527, 3, 527, 8920, 8, 527, 1, 528, 1, 528, 1, 528, 1, 528, 1, 528, 1, 528, 1, 528, 3, 528, 8929, 8, 528, 1, 528, 1, 528, 1, 528, 1, 528, 3, 528, 8935, 8, 528, 3, 528, 8937, 8, 528, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 3, 529, 8944, 8, 529, 1, 530, 1, 530, 3, 530, 8948, 8, 530, 1, 531, 1, 531, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 3, 532, 8957, 8, 532, 1, 533, 1, 533, 3, 533, 8961, 8, 533, 1, 534, 1, 534, 1, 535, 1, 535, 1, 536, 1, 536, 1, 536, 3, 536, 8970, 8, 536, 1, 536, 1, 536, 1, 537, 1, 537, 1, 537, 5, 537, 8977, 8, 537, 10, 537, 12, 537, 8980, 9, 537, 1, 538, 1, 538, 1, 538, 1, 538, 1, 538, 1, 538, 1, 538, 1, 538, 1, 538, 3, 538, 8991, 8, 538, 1, 539, 1, 539, 1, 539, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 543, 1, 543, 1, 543, 1, 544, 1, 544, 1, 544, 1, 544, 3, 544, 9019, 8, 544, 1, 545, 1, 545, 1, 546, 4, 546, 9024, 8, 546, 11, 546, 12, 546, 9025, 1, 547, 1, 547, 3, 547, 9030, 8, 547, 1, 547, 3, 547, 9033, 8, 547, 1, 548, 1, 548, 1, 548, 3, 548, 9038, 8, 548, 1, 548, 1, 548, 3, 548, 9042, 8, 548, 1, 548, 3, 548, 9045, 8, 548, 1, 549, 1, 549, 1, 549, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 5, 550, 9059, 8, 550, 10, 550, 12, 550, 9062, 9, 550, 1, 551, 1, 551, 1, 551, 1, 552, 1, 552, 1, 552, 5, 552, 9070, 8, 552, 10, 552, 12, 552, 9073, 9, 552, 1, 553, 1, 553, 3, 553, 9077, 8, 553, 1, 553, 3, 553, 9080, 8, 553, 1, 553, 3, 553, 9083, 8, 553, 1, 553, 1, 553, 3, 553, 9087, 8, 553, 1, 553, 1, 553, 3, 553, 9091, 8, 553, 1, 553, 1, 553, 3, 553, 9095, 8, 553, 1, 553, 1, 553, 1, 553, 3, 553, 9100, 8, 553, 1, 553, 1, 553, 3, 553, 9104, 8, 553, 1, 553, 1, 553, 3, 553, 9108, 8, 553, 3, 553, 9110, 8, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 3, 553, 9119, 8, 553, 1, 553, 1, 553, 1, 553, 3, 553, 9124, 8, 553, 1, 553, 1, 553, 1, 553, 1, 553, 3, 553, 9130, 8, 553, 1, 553, 1, 553, 3, 553, 9134, 8, 553, 3, 553, 9136, 8, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 3, 553, 9143, 8, 553, 1, 553, 1, 553, 1, 553, 3, 553, 9148, 8, 553, 1, 553, 1, 553, 1, 553, 1, 553, 5, 553, 9154, 8, 553, 10, 553, 12, 553, 9157, 9, 553, 1, 554, 3, 554, 9160, 8, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 3, 554, 9167, 8, 554, 1, 555, 1, 555, 1, 556, 1, 556, 1, 556, 3, 556, 9174, 8, 556, 1, 556, 3, 556, 9177, 8, 556, 1, 556, 1, 556, 1, 556, 1, 556, 3, 556, 9183, 8, 556, 1, 557, 1, 557, 3, 557, 9187, 8, 557, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 3, 558, 9196, 8, 558, 1, 559, 3, 559, 9199, 8, 559, 1, 559, 1, 559, 3, 559, 9203, 8, 559, 1, 559, 1, 559, 1, 559, 1, 559, 1, 559, 1, 559, 3, 559, 9211, 8, 559, 1, 559, 1, 559, 1, 559, 1, 559, 3, 559, 9217, 8, 559, 3, 559, 9219, 8, 559, 1, 560, 3, 560, 9222, 8, 560, 1, 560, 1, 560, 3, 560, 9226, 8, 560, 1, 560, 3, 560, 9229, 8, 560, 1, 560, 3, 560, 9232, 8, 560, 1, 561, 1, 561, 3, 561, 9236, 8, 561, 1, 561, 1, 561, 3, 561, 9240, 8, 561, 1, 561, 1, 561, 1, 561, 1, 561, 3, 561, 9246, 8, 561, 1, 561, 3, 561, 9249, 8, 561, 1, 561, 1, 561, 1, 561, 1, 561, 1, 561, 1, 561, 1, 561, 3, 561, 9258, 8, 561, 1, 561, 1, 561, 1, 561, 1, 561, 1, 561, 3, 561, 9265, 8, 561, 3, 561, 9267, 8, 561, 1, 562, 1, 562, 1, 562, 5, 562, 9272, 8, 562, 10, 562, 12, 562, 9275, 9, 562, 1, 563, 1, 563, 1, 563, 5, 563, 9280, 8, 563, 10, 563, 12, 563, 9283, 9, 563, 1, 564, 1, 564, 3, 564, 9287, 8, 564, 1, 564, 3, 564, 9290, 8, 564, 1, 565, 1, 565, 1, 565, 1, 565, 1, 565, 1, 565, 3, 565, 9298, 8, 565, 1, 566, 1, 566, 1, 566, 1, 566, 1, 566, 1, 567, 1, 567, 3, 567, 9307, 8, 567, 1, 567, 1, 567, 1, 567, 1, 567, 1, 567, 1, 567, 3, 567, 9315, 8, 567, 3, 567, 9317, 8, 567, 1, 568, 1, 568, 3, 568, 9321, 8, 568, 1, 569, 1, 569, 1, 569, 5, 569, 9326, 8, 569, 10, 569, 12, 569, 9329, 9, 569, 1, 570, 1, 570, 1, 570, 1, 570, 1, 570, 1, 571, 1, 571, 1, 571, 1, 572, 1, 572, 1, 572, 1, 573, 1, 573, 1, 573, 1, 573, 1, 573, 3, 573, 9347, 8, 573, 1, 574, 1, 574, 1, 575, 1, 575, 1, 575, 5, 575, 9354, 8, 575, 10, 575, 12, 575, 9357, 9, 575, 1, 576, 1, 576, 1, 576, 3, 576, 9362, 8, 576, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 3, 577, 9381, 8, 577, 1, 577, 1, 577, 1, 578, 1, 578, 1, 578, 5, 578, 9388, 8, 578, 10, 578, 12, 578, 9391, 9, 578, 1, 579, 1, 579, 1, 579, 3, 579, 9396, 8, 579, 1, 579, 1, 579, 3, 579, 9400, 8, 579, 1, 580, 4, 580, 9403, 8, 580, 11, 580, 12, 580, 9404, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 3, 581, 9415, 8, 581, 1, 582, 1, 582, 1, 582, 5, 582, 9420, 8, 582, 10, 582, 12, 582, 9423, 9, 582, 1, 583, 1, 583, 1, 583, 1, 583, 1, 583, 1, 583, 3, 583, 9431, 8, 583, 1, 584, 3, 584, 9434, 8, 584, 1, 584, 1, 584, 1, 584, 1, 584, 1, 584, 1, 584, 1, 584, 3, 584, 9443, 8, 584, 3, 584, 9445, 8, 584, 1, 584, 1, 584, 1, 584, 1, 584, 3, 584, 9451, 8, 584, 1, 585, 1, 585, 3, 585, 9455, 8, 585, 1, 585, 5, 585, 9458, 8, 585, 10, 585, 12, 585, 9461, 9, 585, 1, 586, 1, 586, 1, 586, 1, 586, 1, 586, 1, 586, 1, 586, 3, 586, 9470, 8, 586, 1, 586, 1, 586, 1, 586, 1, 586, 3, 586, 9476, 8, 586, 3, 586, 9478, 8, 586, 1, 587, 1, 587, 1, 587, 1, 587, 3, 587, 9484, 8, 587, 1, 588, 1, 588, 3, 588, 9488, 8, 588, 1, 588, 3, 588, 9491, 8, 588, 1, 589, 1, 589, 1, 589, 1, 589, 1, 590, 1, 590, 1, 590, 1, 590, 1, 590, 1, 590, 1, 590, 3, 590, 9504, 8, 590, 1, 590, 1, 590, 1, 590, 1, 590, 3, 590, 9510, 8, 590, 1, 590, 1, 590, 3, 590, 9514, 8, 590, 1, 590, 1, 590, 3, 590, 9518, 8, 590, 1, 590, 3, 590, 9521, 8, 590, 1, 591, 1, 591, 1, 591, 1, 591, 1, 592, 1, 592, 3, 592, 9529, 8, 592, 1, 593, 1, 593, 3, 593, 9533, 8, 593, 1, 594, 1, 594, 3, 594, 9537, 8, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 595, 1, 595, 3, 595, 9545, 8, 595, 1, 596, 1, 596, 1, 596, 1, 596, 1, 596, 3, 596, 9552, 8, 596, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 3, 597, 9559, 8, 597, 1, 598, 1, 598, 3, 598, 9563, 8, 598, 1, 598, 1, 598, 1, 598, 1, 598, 3, 598, 9569, 8, 598, 3, 598, 9571, 8, 598, 1, 599, 1, 599, 1, 600, 1, 600, 1, 600, 1, 600, 1, 600, 3, 600, 9580, 8, 600, 1, 600, 3, 600, 9583, 8, 600, 1, 601, 1, 601, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9593, 8, 602, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 3, 603, 9609, 8, 603, 1, 603, 1, 603, 1, 603, 1, 603, 3, 603, 9615, 8, 603, 1, 603, 1, 603, 1, 603, 3, 603, 9620, 8, 603, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 3, 604, 9627, 8, 604, 1, 605, 1, 605, 1, 605, 1, 606, 1, 606, 1, 607, 1, 607, 3, 607, 9636, 8, 607, 1, 608, 1, 608, 1, 608, 5, 608, 9641, 8, 608, 10, 608, 12, 608, 9644, 9, 608, 1, 609, 1, 609, 1, 609, 5, 609, 9649, 8, 609, 10, 609, 12, 609, 9652, 9, 609, 1, 610, 1, 610, 1, 610, 5, 610, 9657, 8, 610, 10, 610, 12, 610, 9660, 9, 610, 1, 611, 1, 611, 3, 611, 9664, 8, 611, 1, 611, 1, 611, 3, 611, 9668, 8, 611, 1, 612, 3, 612, 9671, 8, 612, 1, 612, 1, 612, 1, 613, 1, 613, 3, 613, 9677, 8, 613, 1, 614, 1, 614, 1, 614, 3, 614, 9682, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9698, 8, 614, 1, 614, 3, 614, 9701, 8, 614, 3, 614, 9703, 8, 614, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9715, 8, 615, 3, 615, 9717, 8, 615, 1, 616, 1, 616, 3, 616, 9721, 8, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 3, 616, 9729, 8, 616, 3, 616, 9731, 8, 616, 1, 616, 1, 616, 3, 616, 9735, 8, 616, 3, 616, 9737, 8, 616, 1, 617, 1, 617, 1, 617, 1, 617, 5, 617, 9743, 8, 617, 10, 617, 12, 617, 9746, 9, 617, 1, 618, 3, 618, 9749, 8, 618, 1, 618, 1, 618, 1, 619, 1, 619, 1, 619, 5, 619, 9756, 8, 619, 10, 619, 12, 619, 9759, 9, 619, 1, 620, 1, 620, 1, 620, 5, 620, 9764, 8, 620, 10, 620, 12, 620, 9767, 9, 620, 1, 621, 1, 621, 1, 621, 3, 621, 9772, 8, 621, 1, 622, 3, 622, 9775, 8, 622, 1, 622, 1, 622, 1, 623, 1, 623, 1, 623, 1, 623, 1, 623, 3, 623, 9784, 8, 623, 1, 624, 1, 624, 1, 624, 3, 624, 9789, 8, 624, 1, 625, 1, 625, 1, 625, 5, 625, 9794, 8, 625, 10, 625, 12, 625, 9797, 9, 625, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 3, 626, 9806, 8, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 3, 626, 9832, 8, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 3, 626, 9843, 8, 626, 5, 626, 9845, 8, 626, 10, 626, 12, 626, 9848, 9, 626, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 3, 627, 9855, 8, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 3, 627, 9877, 8, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 3, 627, 9886, 8, 627, 1, 628, 1, 628, 1, 629, 1, 629, 1, 629, 1, 629, 1, 629, 1, 629, 3, 629, 9896, 8, 629, 1, 629, 3, 629, 9899, 8, 629, 1, 629, 1, 629, 1, 629, 3, 629, 9904, 8, 629, 1, 629, 1, 629, 1, 629, 3, 629, 9909, 8, 629, 1, 629, 1, 629, 3, 629, 9913, 8, 629, 1, 629, 3, 629, 9916, 8, 629, 1, 630, 1, 630, 3, 630, 9920, 8, 630, 1, 630, 3, 630, 9923, 8, 630, 1, 630, 3, 630, 9926, 8, 630, 1, 630, 3, 630, 9929, 8, 630, 1, 631, 1, 631, 3, 631, 9933, 8, 631, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 9947, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 9954, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 9961, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 9968, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 9986, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 9994, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10006, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10012, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10025, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10064, 8, 632, 3, 632, 10066, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10086, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10096, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10107, 8, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10119, 8, 632, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10126, 8, 633, 1, 634, 1, 634, 1, 634, 1, 634, 1, 634, 1, 634, 1, 634, 1, 634, 1, 634, 1, 634, 3, 634, 10138, 8, 634, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 636, 1, 636, 1, 636, 5, 636, 10148, 8, 636, 10, 636, 12, 636, 10151, 9, 636, 1, 637, 1, 637, 1, 637, 3, 637, 10156, 8, 637, 1, 638, 1, 638, 1, 639, 1, 639, 1, 639, 1, 639, 3, 639, 10164, 8, 639, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 1, 640, 3, 640, 10181, 8, 640, 1, 641, 1, 641, 1, 641, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, 1, 643, 1, 643, 1, 643, 1, 643, 1, 643, 1, 643, 1, 644, 1, 644, 1, 644, 1, 645, 1, 645, 1, 645, 5, 645, 10204, 8, 645, 10, 645, 12, 645, 10207, 9, 645, 1, 646, 1, 646, 1, 646, 1, 646, 1, 647, 1, 647, 1, 647, 3, 647, 10216, 8, 647, 1, 648, 1, 648, 3, 648, 10220, 8, 648, 1, 648, 3, 648, 10223, 8, 648, 1, 648, 3, 648, 10226, 8, 648, 1, 648, 3, 648, 10229, 8, 648, 1, 648, 1, 648, 1, 649, 1, 649, 1, 650, 1, 650, 1, 650, 1, 650, 1, 651, 1, 651, 1, 651, 3, 651, 10242, 8, 651, 1, 651, 1, 651, 1, 651, 3, 651, 10247, 8, 651, 1, 651, 1, 651, 1, 651, 3, 651, 10252, 8, 651, 3, 651, 10254, 8, 651, 1, 652, 1, 652, 1, 652, 1, 652, 1, 652, 1, 652, 3, 652, 10262, 8, 652, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 3, 653, 10271, 8, 653, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 3, 654, 10280, 8, 654, 1, 655, 1, 655, 1, 655, 3, 655, 10285, 8, 655, 1, 655, 1, 655, 1, 655, 1, 655, 1, 655, 1, 655, 1, 655, 3, 655, 10294, 8, 655, 1, 656, 1, 656, 1, 656, 3, 656, 10299, 8, 656, 1, 656, 1, 656, 1, 657, 1, 657, 1, 657, 1, 657, 1, 657, 1, 657, 1, 658, 1, 658, 1, 659, 1, 659, 3, 659, 10313, 8, 659, 1, 660, 1, 660, 1, 661, 1, 661, 1, 661, 1, 661, 1, 661, 1, 661, 3, 661, 10323, 8, 661, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 3, 662, 10331, 8, 662, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 3, 663, 10345, 8, 663, 1, 664, 1, 664, 1, 664, 5, 664, 10350, 8, 664, 10, 664, 12, 664, 10353, 9, 664, 1, 665, 1, 665, 1, 665, 5, 665, 10358, 8, 665, 10, 665, 12, 665, 10361, 9, 665, 1, 666, 1, 666, 1, 666, 5, 666, 10366, 8, 666, 10, 666, 12, 666, 10369, 9, 666, 1, 667, 1, 667, 1, 667, 1, 667, 1, 667, 3, 667, 10376, 8, 667, 1, 668, 1, 668, 3, 668, 10380, 8, 668, 1, 669, 1, 669, 1, 669, 5, 669, 10385, 8, 669, 10, 669, 12, 669, 10388, 9, 669, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 3, 670, 10395, 8, 670, 1, 671, 1, 671, 1, 671, 5, 671, 10400, 8, 671, 10, 671, 12, 671, 10403, 9, 671, 1, 672, 1, 672, 1, 672, 3, 672, 10408, 8, 672, 1, 672, 1, 672, 1, 673, 1, 673, 1, 673, 5, 673, 10415, 8, 673, 10, 673, 12, 673, 10418, 9, 673, 1, 674, 1, 674, 1, 674, 1, 674, 1, 675, 1, 675, 1, 675, 1, 675, 1, 675, 1, 675, 1, 675, 1, 675, 3, 675, 10432, 8, 675, 1, 676, 1, 676, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 3, 677, 10443, 8, 677, 1, 678, 1, 678, 1, 678, 1, 678, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 3, 679, 10476, 8, 679, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 3, 680, 10485, 8, 680, 1, 681, 1, 681, 1, 681, 1, 681, 1, 681, 3, 681, 10492, 8, 681, 1, 682, 1, 682, 3, 682, 10496, 8, 682, 1, 682, 1, 682, 3, 682, 10500, 8, 682, 1, 682, 1, 682, 1, 683, 4, 683, 10505, 8, 683, 11, 683, 12, 683, 10506, 1, 684, 1, 684, 1, 684, 1, 684, 1, 684, 1, 685, 1, 685, 1, 685, 1, 686, 1, 686, 1, 687, 1, 687, 3, 687, 10521, 8, 687, 1, 688, 1, 688, 1, 688, 3, 688, 10526, 8, 688, 1, 688, 1, 688, 1, 688, 3, 688, 10531, 8, 688, 1, 688, 1, 688, 3, 688, 10535, 8, 688, 3, 688, 10537, 8, 688, 1, 688, 3, 688, 10540, 8, 688, 1, 689, 1, 689, 1, 690, 4, 690, 10545, 8, 690, 11, 690, 12, 690, 10546, 1, 691, 5, 691, 10550, 8, 691, 10, 691, 12, 691, 10553, 9, 691, 1, 692, 1, 692, 1, 693, 1, 693, 1, 693, 5, 693, 10560, 8, 693, 10, 693, 12, 693, 10563, 9, 693, 1, 694, 1, 694, 1, 694, 1, 694, 1, 694, 3, 694, 10570, 8, 694, 1, 694, 3, 694, 10573, 8, 694, 1, 695, 1, 695, 1, 695, 5, 695, 10578, 8, 695, 10, 695, 12, 695, 10581, 9, 695, 1, 696, 1, 696, 1, 696, 5, 696, 10586, 8, 696, 10, 696, 12, 696, 10589, 9, 696, 1, 697, 1, 697, 1, 697, 5, 697, 10594, 8, 697, 10, 697, 12, 697, 10597, 9, 697, 1, 698, 1, 698, 1, 698, 5, 698, 10602, 8, 698, 10, 698, 12, 698, 10605, 9, 698, 1, 699, 1, 699, 1, 699, 5, 699, 10610, 8, 699, 10, 699, 12, 699, 10613, 9, 699, 1, 700, 1, 700, 3, 700, 10617, 8, 700, 1, 701, 1, 701, 3, 701, 10621, 8, 701, 1, 702, 1, 702, 3, 702, 10625, 8, 702, 1, 703, 1, 703, 3, 703, 10629, 8, 703, 1, 704, 1, 704, 3, 704, 10633, 8, 704, 1, 705, 1, 705, 3, 705, 10637, 8, 705, 1, 706, 1, 706, 3, 706, 10641, 8, 706, 1, 707, 1, 707, 1, 707, 5, 707, 10646, 8, 707, 10, 707, 12, 707, 10649, 9, 707, 1, 708, 1, 708, 1, 708, 5, 708, 10654, 8, 708, 10, 708, 12, 708, 10657, 9, 708, 1, 709, 1, 709, 3, 709, 10661, 8, 709, 1, 710, 1, 710, 3, 710, 10665, 8, 710, 1, 711, 1, 711, 3, 711, 10669, 8, 711, 1, 712, 1, 712, 1, 713, 1, 713, 1, 714, 1, 714, 1, 714, 1, 714, 3, 714, 10679, 8, 714, 1, 715, 1, 715, 1, 715, 1, 715, 3, 715, 10685, 8, 715, 1, 716, 1, 716, 5, 716, 10689, 8, 716, 10, 716, 12, 716, 10692, 9, 716, 1, 716, 3, 716, 10695, 8, 716, 1, 717, 1, 717, 1, 718, 1, 718, 1, 719, 1, 719, 1, 720, 1, 720, 1, 721, 1, 721, 1, 721, 1, 721, 3, 721, 10709, 8, 721, 1, 722, 1, 722, 1, 722, 1, 722, 3, 722, 10715, 8, 722, 1, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10721, 8, 723, 1, 724, 1, 724, 1, 724, 1, 724, 1, 724, 1, 724, 1, 724, 1, 724, 1, 724, 1, 724, 3, 724, 10733, 8, 724, 1, 724, 1, 724, 1, 724, 3, 724, 10738, 8, 724, 1, 724, 1, 724, 1, 724, 1, 724, 1, 724, 1, 724, 3, 724, 10746, 8, 724, 1, 724, 1, 724, 1, 724, 1, 724, 1, 724, 3, 724, 10753, 8, 724, 1, 724, 1, 724, 1, 724, 3, 724, 10758, 8, 724, 1, 725, 1, 725, 1, 726, 1, 726, 1, 727, 1, 727, 1, 728, 1, 728, 1, 729, 1, 729, 3, 729, 10770, 8, 729, 1, 730, 1, 730, 1, 730, 1, 730, 5, 730, 10776, 8, 730, 10, 730, 12, 730, 10779, 9, 730, 1, 730, 1, 730, 3, 730, 10783, 8, 730, 1, 731, 1, 731, 1, 731, 1, 732, 1, 732, 1, 732, 1, 732, 1, 732, 3, 732, 10793, 8, 732, 1, 733, 1, 733, 1, 734, 1, 734, 1, 735, 1, 735, 1, 735, 1, 735, 1, 735, 3, 735, 10804, 8, 735, 1, 736, 1, 736, 1, 736, 5, 736, 10809, 8, 736, 10, 736, 12, 736, 10812, 9, 736, 1, 737, 1, 737, 1, 737, 1, 737, 3, 737, 10818, 8, 737, 1, 738, 1, 738, 1, 739, 1, 739, 1, 739, 1, 739, 1, 739, 1, 739, 1, 739, 3, 739, 10829, 8, 739, 1, 739, 3, 739, 10832, 8, 739, 3, 739, 10834, 8, 739, 1, 740, 1, 740, 3, 740, 10838, 8, 740, 1, 740, 3, 740, 10841, 8, 740, 1, 741, 1, 741, 1, 741, 1, 741, 3, 741, 10847, 8, 741, 1, 742, 1, 742, 1, 742, 1, 742, 3, 742, 10853, 8, 742, 1, 743, 1, 743, 3, 743, 10857, 8, 743, 1, 744, 1, 744, 1, 744, 1, 744, 3, 744, 10863, 8, 744, 1, 745, 1, 745, 1, 745, 1, 745, 1, 745, 1, 745, 3, 745, 10871, 8, 745, 1, 746, 1, 746, 3, 746, 10875, 8, 746, 1, 746, 1, 746, 1, 746, 1, 746, 1, 746, 1, 746, 3, 746, 10883, 8, 746, 1, 747, 1, 747, 1, 748, 1, 748, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 3, 749, 10940, 8, 749, 1, 750, 1, 750, 1, 751, 1, 751, 1, 752, 1, 752, 1, 752, 1, 752, 1, 753, 5, 753, 10951, 8, 753, 10, 753, 12, 753, 10954, 9, 753, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 3, 754, 10976, 8, 754, 1, 755, 1, 755, 1, 756, 1, 756, 1, 756, 1, 756, 3, 756, 10984, 8, 756, 1, 757, 1, 757, 3, 757, 10988, 8, 757, 1, 758, 1, 758, 1, 758, 1, 758, 1, 758, 1, 758, 1, 758, 1, 759, 1, 759, 1, 759, 3, 759, 11000, 8, 759, 3, 759, 11002, 8, 759, 1, 760, 1, 760, 1, 761, 4, 761, 11007, 8, 761, 11, 761, 12, 761, 11008, 1, 762, 1, 762, 1, 762, 1, 762, 1, 763, 1, 763, 1, 763, 3, 763, 11018, 8, 763, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 1, 764, 3, 764, 11036, 8, 764, 1, 764, 1, 764, 1, 765, 1, 765, 1, 765, 1, 765, 3, 765, 11044, 8, 765, 1, 766, 1, 766, 1, 767, 1, 767, 1, 767, 1, 767, 1, 767, 3, 767, 11053, 8, 767, 1, 768, 1, 768, 1, 768, 5, 768, 11058, 8, 768, 10, 768, 12, 768, 11061, 9, 768, 1, 769, 1, 769, 1, 769, 1, 770, 1, 770, 1, 771, 1, 771, 3, 771, 11070, 8, 771, 1, 772, 1, 772, 1, 773, 1, 773, 3, 773, 11076, 8, 773, 1, 774, 1, 774, 1, 775, 1, 775, 1, 775, 3, 775, 11083, 8, 775, 1, 776, 1, 776, 1, 776, 3, 776, 11088, 8, 776, 1, 777, 1, 777, 1, 777, 1, 777, 3, 777, 11094, 8, 777, 1, 778, 1, 778, 3, 778, 11098, 8, 778, 1, 779, 1, 779, 1, 780, 5, 780, 11103, 8, 780, 10, 780, 12, 780, 11106, 9, 780, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 3, 781, 11135, 8, 781, 1, 782, 1, 782, 1, 782, 1, 782, 1, 783, 1, 783, 1, 783, 1, 783, 1, 783, 1, 783, 1, 783, 3, 783, 11148, 8, 783, 1, 783, 1, 783, 1, 783, 1, 783, 1, 783, 1, 783, 1, 783, 3, 783, 11157, 8, 783, 1, 784, 1, 784, 3, 784, 11161, 8, 784, 1, 785, 1, 785, 1, 785, 1, 785, 1, 785, 1, 786, 1, 786, 1, 786, 1, 786, 1, 786, 1, 786, 1, 787, 1, 787, 1, 787, 3, 787, 11177, 8, 787, 1, 788, 1, 788, 1, 788, 5, 788, 11182, 8, 788, 10, 788, 12, 788, 11185, 9, 788, 1, 789, 1, 789, 1, 789, 1, 789, 1, 790, 1, 790, 1, 791, 1, 791, 1, 792, 1, 792, 3, 792, 11197, 8, 792, 1, 792, 1, 792, 1, 792, 1, 792, 5, 792, 11203, 8, 792, 10, 792, 12, 792, 11206, 9, 792, 1, 793, 1, 793, 1, 793, 1, 793, 1, 793, 1, 793, 1, 793, 1, 793, 1, 793, 1, 793, 1, 794, 1, 794, 1, 794, 1, 794, 1, 794, 5, 794, 11223, 8, 794, 10, 794, 12, 794, 11226, 9, 794, 1, 795, 1, 795, 1, 795, 3, 795, 11231, 8, 795, 1, 796, 1, 796, 1, 796, 1, 796, 1, 796, 1, 796, 1, 796, 1, 796, 1, 797, 1, 797, 3, 797, 11243, 8, 797, 1, 798, 4, 798, 11246, 8, 798, 11, 798, 12, 798, 11247, 1, 799, 1, 799, 1, 799, 1, 799, 1, 799, 1, 800, 1, 800, 1, 800, 3, 800, 11258, 8, 800, 1, 801, 1, 801, 1, 801, 1, 802, 1, 802, 1, 802, 1, 802, 1, 802, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 3, 804, 11290, 8, 804, 1, 805, 1, 805, 1, 805, 3, 805, 11295, 8, 805, 1, 806, 1, 806, 1, 806, 1, 806, 1, 806, 5, 806, 11302, 8, 806, 10, 806, 12, 806, 11305, 9, 806, 1, 806, 1, 806, 3, 806, 11309, 8, 806, 1, 807, 1, 807, 3, 807, 11313, 8, 807, 1, 808, 1, 808, 1, 808, 3, 808, 11318, 8, 808, 1, 809, 1, 809, 1, 810, 1, 810, 1, 810, 1, 810, 1, 810, 1, 810, 1, 810, 1, 810, 1, 810, 1, 811, 1, 811, 1, 811, 3, 811, 11334, 8, 811, 1, 812, 1, 812, 1, 812, 3, 812, 11339, 8, 812, 1, 812, 1, 812, 1, 813, 1, 813, 1, 814, 1, 814, 1, 814, 1, 814, 1, 814, 1, 814, 1, 814, 1, 814, 1, 814, 3, 814, 11354, 8, 814, 1, 814, 3, 814, 11357, 8, 814, 1, 814, 1, 814, 1, 815, 1, 815, 3, 815, 11363, 8, 815, 1, 816, 1, 816, 3, 816, 11367, 8, 816, 1, 816, 1, 816, 1, 816, 1, 816, 1, 816, 1, 816, 1, 816, 3, 816, 11376, 8, 816, 1, 816, 1, 816, 1, 816, 1, 816, 1, 816, 1, 816, 3, 816, 11384, 8, 816, 1, 816, 1, 816, 1, 816, 1, 816, 1, 816, 1, 816, 1, 816, 3, 816, 11393, 8, 816, 1, 816, 1, 816, 1, 816, 1, 816, 3, 816, 11399, 8, 816, 1, 817, 1, 817, 1, 818, 1, 818, 1, 818, 4, 818, 11406, 8, 818, 11, 818, 12, 818, 11407, 3, 818, 11410, 8, 818, 1, 819, 1, 819, 1, 819, 3, 819, 11415, 8, 819, 1, 820, 1, 820, 1, 820, 1, 820, 1, 821, 1, 821, 1, 821, 5, 821, 11424, 8, 821, 10, 821, 12, 821, 11427, 9, 821, 1, 822, 1, 822, 1, 822, 1, 822, 1, 822, 1, 823, 1, 823, 1, 823, 3, 823, 11437, 8, 823, 1, 824, 1, 824, 1, 824, 1, 824, 1, 824, 1, 824, 1, 824, 1, 825, 1, 825, 1, 825, 1, 826, 1, 826, 1, 826, 1, 826, 1, 826, 1, 826, 1, 826, 1, 826, 1, 826, 3, 826, 11458, 8, 826, 1, 826, 1, 826, 1, 827, 1, 827, 1, 827, 3, 827, 11465, 8, 827, 1, 828, 1, 828, 1, 828, 5, 828, 11470, 8, 828, 10, 828, 12, 828, 11473, 9, 828, 1, 829, 1, 829, 1, 829, 3, 829, 11478, 8, 829, 1, 829, 3, 829, 11481, 8, 829, 1, 830, 1, 830, 1, 830, 1, 830, 1, 830, 1, 830, 1, 830, 1, 830, 1, 830, 3, 830, 11492, 8, 830, 1, 830, 1, 830, 1, 830, 1, 830, 1, 830, 3, 830, 11499, 8, 830, 3, 830, 11501, 8, 830, 1, 830, 1, 830, 1, 831, 1, 831, 1, 831, 1, 831, 1, 831, 3, 831, 11510, 8, 831, 1, 832, 1, 832, 1, 832, 5, 832, 11515, 8, 832, 10, 832, 12, 832, 11518, 9, 832, 1, 833, 1, 833, 1, 833, 3, 833, 11523, 8, 833, 1, 834, 1, 834, 1, 834, 1, 834, 3, 834, 11529, 8, 834, 1, 835, 1, 835, 3, 835, 11533, 8, 835, 1, 836, 1, 836, 3, 836, 11537, 8, 836, 1, 836, 1, 836, 1, 836, 1, 836, 1, 836, 1, 836, 1, 837, 1, 837, 1, 838, 1, 838, 1, 838, 3, 838, 11550, 8, 838, 1, 839, 1, 839, 1, 839, 1, 839, 1, 839, 1, 839, 1, 839, 1, 839, 1, 839, 1, 839, 1, 839, 1, 839, 1, 839, 3, 839, 11565, 8, 839, 3, 839, 11567, 8, 839, 1, 840, 1, 840, 3, 840, 11571, 8, 840, 1, 840, 1, 840, 1, 840, 1, 841, 3, 841, 11577, 8, 841, 1, 841, 1, 841, 1, 841, 3, 841, 11582, 8, 841, 1, 841, 1, 841, 3, 841, 11586, 8, 841, 1, 841, 3, 841, 11589, 8, 841, 1, 841, 3, 841, 11592, 8, 841, 1, 841, 1, 841, 1, 841, 1, 841, 1, 841, 4, 841, 11599, 8, 841, 11, 841, 12, 841, 11600, 1, 842, 3, 842, 11604, 8, 842, 1, 842, 1, 842, 3, 842, 11608, 8, 842, 1, 842, 1, 842, 3, 842, 11612, 8, 842, 3, 842, 11614, 8, 842, 1, 842, 3, 842, 11617, 8, 842, 1, 842, 3, 842, 11620, 8, 842, 1, 843, 1, 843, 1, 844, 1, 844, 1, 844, 1, 844, 3, 844, 11628, 8, 844, 1, 844, 1, 844, 1, 844, 1, 844, 1, 844, 3, 844, 11635, 8, 844, 1, 844, 1, 844, 1, 844, 1, 844, 1, 844, 3, 844, 11642, 8, 844, 1, 844, 1, 844, 1, 844, 1, 844, 3, 844, 11648, 8, 844, 3, 844, 11650, 8, 844, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 3, 845, 11657, 8, 845, 1, 845, 1, 845, 1, 845, 3, 845, 11662, 8, 845, 1, 845, 1, 845, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 4, 846, 11680, 8, 846, 11, 846, 12, 846, 11681, 1, 847, 1, 847, 1, 847, 1, 847, 3, 847, 11688, 8, 847, 1, 848, 1, 848, 1, 848, 1, 848, 5, 848, 11694, 8, 848, 10, 848, 12, 848, 11697, 9, 848, 1, 848, 1, 848, 1, 849, 1, 849, 3, 849, 11703, 8, 849, 1, 850, 1, 850, 1, 850, 1, 850, 1, 851, 1, 851, 1, 851, 1, 852, 1, 852, 3, 852, 11714, 8, 852, 1, 852, 1, 852, 1, 853, 1, 853, 3, 853, 11720, 8, 853, 1, 853, 1, 853, 1, 854, 1, 854, 3, 854, 11726, 8, 854, 1, 854, 1, 854, 1, 855, 1, 855, 1, 855, 1, 855, 1, 855, 1, 855, 1, 855, 1, 855, 1, 855, 3, 855, 11739, 8, 855, 1, 855, 3, 855, 11742, 8, 855, 1, 856, 1, 856, 3, 856, 11746, 8, 856, 1, 857, 1, 857, 1, 857, 3, 857, 11751, 8, 857, 1, 858, 4, 858, 11754, 8, 858, 11, 858, 12, 858, 11755, 1, 859, 1, 859, 1, 859, 1, 859, 1, 859, 1, 860, 1, 860, 1, 860, 5, 860, 11766, 8, 860, 10, 860, 12, 860, 11769, 9, 860, 1, 861, 1, 861, 1, 861, 3, 861, 11774, 8, 861, 1, 862, 1, 862, 3, 862, 11778, 8, 862, 1, 863, 1, 863, 3, 863, 11782, 8, 863, 1, 864, 1, 864, 3, 864, 11786, 8, 864, 1, 865, 1, 865, 1, 865, 1, 866, 1, 866, 3, 866, 11793, 8, 866, 1, 867, 1, 867, 1, 868, 3, 868, 11798, 8, 868, 1, 868, 3, 868, 11801, 8, 868, 1, 868, 3, 868, 11804, 8, 868, 1, 868, 3, 868, 11807, 8, 868, 1, 868, 3, 868, 11810, 8, 868, 1, 868, 3, 868, 11813, 8, 868, 1, 868, 3, 868, 11816, 8, 868, 1, 869, 1, 869, 1, 870, 1, 870, 1, 871, 1, 871, 1, 872, 1, 872, 1, 873, 1, 873, 3, 873, 11828, 8, 873, 1, 874, 1, 874, 1, 874, 1, 874, 1, 874, 0, 1, 1252, 875, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1040, 1042, 1044, 1046, 1048, 1050, 1052, 1054, 1056, 1058, 1060, 1062, 1064, 1066, 1068, 1070, 1072, 1074, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1120, 1122, 1124, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1142, 1144, 1146, 1148, 1150, 1152, 1154, 1156, 1158, 1160, 1162, 1164, 1166, 1168, 1170, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, 1204, 1206, 1208, 1210, 1212, 1214, 1216, 1218, 1220, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1592, 1594, 1596, 1598, 1600, 1602, 1604, 1606, 1608, 1610, 1612, 1614, 1616, 1618, 1620, 1622, 1624, 1626, 1628, 1630, 1632, 1634, 1636, 1638, 1640, 1642, 1644, 1646, 1648, 1650, 1652, 1654, 1656, 1658, 1660, 1662, 1664, 1666, 1668, 1670, 1672, 1674, 1676, 1678, 1680, 1682, 1684, 1686, 1688, 1690, 1692, 1694, 1696, 1698, 1700, 1702, 1704, 1706, 1708, 1710, 1712, 1714, 1716, 1718, 1720, 1722, 1724, 1726, 1728, 1730, 1732, 1734, 1736, 1738, 1740, 1742, 1744, 1746, 1748, 0, 87, 2, 0, 195, 195, 364, 364, 1, 0, 228, 229, 1, 0, 236, 237, 1, 0, 234, 235, 1, 0, 232, 233, 1, 0, 230, 231, 1, 0, 535, 536, 1, 0, 537, 538, 1, 0, 539, 540, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 3, 0, 173, 173, 260, 260, 262, 262, 2, 0, 9, 9, 94, 94, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 92, 92, 226, 226, 2, 0, 341, 341, 414, 414, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 135, 135, 145, 145, 3, 0, 66, 66, 99, 99, 318, 318, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 3, 0, 321, 321, 357, 357, 445, 445, 2, 0, 167, 167, 314, 314, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 10, 10, 53, 53, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 356, 356, 380, 380, 2, 0, 151, 151, 254, 254, 1, 0, 31, 32, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 201, 201, 334, 334, 1, 0, 527, 528, 2, 0, 213, 213, 254, 254, 2, 0, 30, 30, 56, 56, 2, 0, 320, 320, 414, 414, 2, 0, 207, 207, 268, 268, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 1, 0, 18, 19, 2, 0, 117, 117, 122, 122, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 1, 0, 12, 13, 3, 0, 9, 9, 14, 14, 27, 27, 3, 0, 39, 39, 73, 73, 95, 95, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 10, 0, 124, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 478, 488, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 37, 0, 33, 33, 35, 35, 43, 43, 45, 45, 53, 53, 57, 57, 61, 61, 92, 92, 116, 116, 123, 123, 130, 130, 144, 144, 153, 153, 157, 157, 161, 161, 167, 167, 172, 172, 207, 207, 210, 210, 241, 241, 249, 249, 265, 265, 268, 269, 279, 279, 293, 293, 307, 307, 313, 313, 319, 319, 323, 324, 333, 333, 360, 360, 433, 434, 477, 477, 490, 502, 504, 504, 506, 518, 520, 520, 13157, 0, 1753, 1, 0, 0, 0, 2, 1758, 1, 0, 0, 0, 4, 1760, 1, 0, 0, 0, 6, 1881, 1, 0, 0, 0, 8, 1883, 1, 0, 0, 0, 10, 1887, 1, 0, 0, 0, 12, 1890, 1, 0, 0, 0, 14, 1898, 1, 0, 0, 0, 16, 1903, 1, 0, 0, 0, 18, 1909, 1, 0, 0, 0, 20, 1947, 1, 0, 0, 0, 22, 1959, 1, 0, 0, 0, 24, 1961, 1, 0, 0, 0, 26, 1969, 1, 0, 0, 0, 28, 1981, 1, 0, 0, 0, 30, 1983, 1, 0, 0, 0, 32, 1992, 1, 0, 0, 0, 34, 2020, 1, 0, 0, 0, 36, 2022, 1, 0, 0, 0, 38, 2070, 1, 0, 0, 0, 40, 2072, 1, 0, 0, 0, 42, 2080, 1, 0, 0, 0, 44, 2087, 1, 0, 0, 0, 46, 2089, 1, 0, 0, 0, 48, 2104, 1, 0, 0, 0, 50, 2111, 1, 0, 0, 0, 52, 2120, 1, 0, 0, 0, 54, 2122, 1, 0, 0, 0, 56, 2136, 1, 0, 0, 0, 58, 2140, 1, 0, 0, 0, 60, 2176, 1, 0, 0, 0, 62, 2178, 1, 0, 0, 0, 64, 2186, 1, 0, 0, 0, 66, 2196, 1, 0, 0, 0, 68, 2203, 1, 0, 0, 0, 70, 2209, 1, 0, 0, 0, 72, 2215, 1, 0, 0, 0, 74, 2233, 1, 0, 0, 0, 76, 2237, 1, 0, 0, 0, 78, 2241, 1, 0, 0, 0, 80, 2245, 1, 0, 0, 0, 82, 2247, 1, 0, 0, 0, 84, 2258, 1, 0, 0, 0, 86, 2262, 1, 0, 0, 0, 88, 2267, 1, 0, 0, 0, 90, 2272, 1, 0, 0, 0, 92, 2274, 1, 0, 0, 0, 94, 2286, 1, 0, 0, 0, 96, 2293, 1, 0, 0, 0, 98, 2295, 1, 0, 0, 0, 100, 2297, 1, 0, 0, 0, 102, 2299, 1, 0, 0, 0, 104, 2435, 1, 0, 0, 0, 106, 2437, 1, 0, 0, 0, 108, 2454, 1, 0, 0, 0, 110, 2456, 1, 0, 0, 0, 112, 2470, 1, 0, 0, 0, 114, 2472, 1, 0, 0, 0, 116, 2488, 1, 0, 0, 0, 118, 2490, 1, 0, 0, 0, 120, 2711, 1, 0, 0, 0, 122, 2718, 1, 0, 0, 0, 124, 2720, 1, 0, 0, 0, 126, 2722, 1, 0, 0, 0, 128, 2725, 1, 0, 0, 0, 130, 2734, 1, 0, 0, 0, 132, 2736, 1, 0, 0, 0, 134, 2740, 1, 0, 0, 0, 136, 2743, 1, 0, 0, 0, 138, 2751, 1, 0, 0, 0, 140, 2763, 1, 0, 0, 0, 142, 2780, 1, 0, 0, 0, 144, 2808, 1, 0, 0, 0, 146, 2810, 1, 0, 0, 0, 148, 2813, 1, 0, 0, 0, 150, 2821, 1, 0, 0, 0, 152, 2826, 1, 0, 0, 0, 154, 2863, 1, 0, 0, 0, 156, 2865, 1, 0, 0, 0, 158, 2907, 1, 0, 0, 0, 160, 2909, 1, 0, 0, 0, 162, 2911, 1, 0, 0, 0, 164, 2916, 1, 0, 0, 0, 166, 2923, 1, 0, 0, 0, 168, 2928, 1, 0, 0, 0, 170, 2970, 1, 0, 0, 0, 172, 2972, 1, 0, 0, 0, 174, 2975, 1, 0, 0, 0, 176, 2980, 1, 0, 0, 0, 178, 2982, 1, 0, 0, 0, 180, 2990, 1, 0, 0, 0, 182, 3001, 1, 0, 0, 0, 184, 3003, 1, 0, 0, 0, 186, 3011, 1, 0, 0, 0, 188, 3013, 1, 0, 0, 0, 190, 3096, 1, 0, 0, 0, 192, 3098, 1, 0, 0, 0, 194, 3100, 1, 0, 0, 0, 196, 3102, 1, 0, 0, 0, 198, 3106, 1, 0, 0, 0, 200, 3114, 1, 0, 0, 0, 202, 3125, 1, 0, 0, 0, 204, 3129, 1, 0, 0, 0, 206, 3131, 1, 0, 0, 0, 208, 3152, 1, 0, 0, 0, 210, 3155, 1, 0, 0, 0, 212, 3164, 1, 0, 0, 0, 214, 3174, 1, 0, 0, 0, 216, 3195, 1, 0, 0, 0, 218, 3255, 1, 0, 0, 0, 220, 3257, 1, 0, 0, 0, 222, 3266, 1, 0, 0, 0, 224, 3271, 1, 0, 0, 0, 226, 3273, 1, 0, 0, 0, 228, 3276, 1, 0, 0, 0, 230, 3284, 1, 0, 0, 0, 232, 3287, 1, 0, 0, 0, 234, 3294, 1, 0, 0, 0, 236, 3382, 1, 0, 0, 0, 238, 3384, 1, 0, 0, 0, 240, 3387, 1, 0, 0, 0, 242, 3391, 1, 0, 0, 0, 244, 3395, 1, 0, 0, 0, 246, 3403, 1, 0, 0, 0, 248, 3411, 1, 0, 0, 0, 250, 3416, 1, 0, 0, 0, 252, 3419, 1, 0, 0, 0, 254, 3427, 1, 0, 0, 0, 256, 3437, 1, 0, 0, 0, 258, 3450, 1, 0, 0, 0, 260, 3452, 1, 0, 0, 0, 262, 3456, 1, 0, 0, 0, 264, 3469, 1, 0, 0, 0, 266, 3471, 1, 0, 0, 0, 268, 3476, 1, 0, 0, 0, 270, 3478, 1, 0, 0, 0, 272, 3485, 1, 0, 0, 0, 274, 3516, 1, 0, 0, 0, 276, 3518, 1, 0, 0, 0, 278, 3527, 1, 0, 0, 0, 280, 3529, 1, 0, 0, 0, 282, 3538, 1, 0, 0, 0, 284, 3542, 1, 0, 0, 0, 286, 3550, 1, 0, 0, 0, 288, 3555, 1, 0, 0, 0, 290, 3559, 1, 0, 0, 0, 292, 3578, 1, 0, 0, 0, 294, 3588, 1, 0, 0, 0, 296, 3602, 1, 0, 0, 0, 298, 3618, 1, 0, 0, 0, 300, 3624, 1, 0, 0, 0, 302, 3639, 1, 0, 0, 0, 304, 3652, 1, 0, 0, 0, 306, 3654, 1, 0, 0, 0, 308, 3664, 1, 0, 0, 0, 310, 3676, 1, 0, 0, 0, 312, 3684, 1, 0, 0, 0, 314, 3686, 1, 0, 0, 0, 316, 3691, 1, 0, 0, 0, 318, 3729, 1, 0, 0, 0, 320, 3731, 1, 0, 0, 0, 322, 3739, 1, 0, 0, 0, 324, 3741, 1, 0, 0, 0, 326, 3749, 1, 0, 0, 0, 328, 3771, 1, 0, 0, 0, 330, 3773, 1, 0, 0, 0, 332, 3777, 1, 0, 0, 0, 334, 3784, 1, 0, 0, 0, 336, 3786, 1, 0, 0, 0, 338, 3788, 1, 0, 0, 0, 340, 3790, 1, 0, 0, 0, 342, 3801, 1, 0, 0, 0, 344, 3804, 1, 0, 0, 0, 346, 3818, 1, 0, 0, 0, 348, 3828, 1, 0, 0, 0, 350, 3830, 1, 0, 0, 0, 352, 3839, 1, 0, 0, 0, 354, 3842, 1, 0, 0, 0, 356, 3947, 1, 0, 0, 0, 358, 3949, 1, 0, 0, 0, 360, 3968, 1, 0, 0, 0, 362, 3971, 1, 0, 0, 0, 364, 3975, 1, 0, 0, 0, 366, 3994, 1, 0, 0, 0, 368, 3996, 1, 0, 0, 0, 370, 4001, 1, 0, 0, 0, 372, 4009, 1, 0, 0, 0, 374, 4014, 1, 0, 0, 0, 376, 4029, 1, 0, 0, 0, 378, 4031, 1, 0, 0, 0, 380, 4034, 1, 0, 0, 0, 382, 4036, 1, 0, 0, 0, 384, 4038, 1, 0, 0, 0, 386, 4057, 1, 0, 0, 0, 388, 4060, 1, 0, 0, 0, 390, 4065, 1, 0, 0, 0, 392, 4067, 1, 0, 0, 0, 394, 4116, 1, 0, 0, 0, 396, 4118, 1, 0, 0, 0, 398, 4136, 1, 0, 0, 0, 400, 4138, 1, 0, 0, 0, 402, 4143, 1, 0, 0, 0, 404, 4158, 1, 0, 0, 0, 406, 4160, 1, 0, 0, 0, 408, 4169, 1, 0, 0, 0, 410, 4189, 1, 0, 0, 0, 412, 4203, 1, 0, 0, 0, 414, 4237, 1, 0, 0, 0, 416, 4267, 1, 0, 0, 0, 418, 4269, 1, 0, 0, 0, 420, 4274, 1, 0, 0, 0, 422, 4280, 1, 0, 0, 0, 424, 4283, 1, 0, 0, 0, 426, 4286, 1, 0, 0, 0, 428, 4292, 1, 0, 0, 0, 430, 4295, 1, 0, 0, 0, 432, 4297, 1, 0, 0, 0, 434, 4306, 1, 0, 0, 0, 436, 4362, 1, 0, 0, 0, 438, 4368, 1, 0, 0, 0, 440, 4370, 1, 0, 0, 0, 442, 4376, 1, 0, 0, 0, 444, 4378, 1, 0, 0, 0, 446, 4393, 1, 0, 0, 0, 448, 4395, 1, 0, 0, 0, 450, 4399, 1, 0, 0, 0, 452, 4403, 1, 0, 0, 0, 454, 4410, 1, 0, 0, 0, 456, 4412, 1, 0, 0, 0, 458, 4414, 1, 0, 0, 0, 460, 4416, 1, 0, 0, 0, 462, 4422, 1, 0, 0, 0, 464, 4424, 1, 0, 0, 0, 466, 4426, 1, 0, 0, 0, 468, 4435, 1, 0, 0, 0, 470, 4439, 1, 0, 0, 0, 472, 4452, 1, 0, 0, 0, 474, 4454, 1, 0, 0, 0, 476, 4460, 1, 0, 0, 0, 478, 4474, 1, 0, 0, 0, 480, 4500, 1, 0, 0, 0, 482, 4502, 1, 0, 0, 0, 484, 4510, 1, 0, 0, 0, 486, 4516, 1, 0, 0, 0, 488, 4524, 1, 0, 0, 0, 490, 4535, 1, 0, 0, 0, 492, 4537, 1, 0, 0, 0, 494, 4649, 1, 0, 0, 0, 496, 4651, 1, 0, 0, 0, 498, 4655, 1, 0, 0, 0, 500, 4663, 1, 0, 0, 0, 502, 4674, 1, 0, 0, 0, 504, 4676, 1, 0, 0, 0, 506, 4680, 1, 0, 0, 0, 508, 4688, 1, 0, 0, 0, 510, 4692, 1, 0, 0, 0, 512, 4694, 1, 0, 0, 0, 514, 4724, 1, 0, 0, 0, 516, 4726, 1, 0, 0, 0, 518, 4730, 1, 0, 0, 0, 520, 4748, 1, 0, 0, 0, 522, 4787, 1, 0, 0, 0, 524, 4789, 1, 0, 0, 0, 526, 4791, 1, 0, 0, 0, 528, 4800, 1, 0, 0, 0, 530, 4802, 1, 0, 0, 0, 532, 4804, 1, 0, 0, 0, 534, 4829, 1, 0, 0, 0, 536, 4831, 1, 0, 0, 0, 538, 4851, 1, 0, 0, 0, 540, 4853, 1, 0, 0, 0, 542, 5239, 1, 0, 0, 0, 544, 5241, 1, 0, 0, 0, 546, 5273, 1, 0, 0, 0, 548, 5306, 1, 0, 0, 0, 550, 5308, 1, 0, 0, 0, 552, 5310, 1, 0, 0, 0, 554, 5318, 1, 0, 0, 0, 556, 5322, 1, 0, 0, 0, 558, 5326, 1, 0, 0, 0, 560, 5332, 1, 0, 0, 0, 562, 5336, 1, 0, 0, 0, 564, 5344, 1, 0, 0, 0, 566, 5364, 1, 0, 0, 0, 568, 5535, 1, 0, 0, 0, 570, 5539, 1, 0, 0, 0, 572, 5650, 1, 0, 0, 0, 574, 5652, 1, 0, 0, 0, 576, 5657, 1, 0, 0, 0, 578, 5663, 1, 0, 0, 0, 580, 5750, 1, 0, 0, 0, 582, 5752, 1, 0, 0, 0, 584, 5754, 1, 0, 0, 0, 586, 5756, 1, 0, 0, 0, 588, 5786, 1, 0, 0, 0, 590, 5804, 1, 0, 0, 0, 592, 5806, 1, 0, 0, 0, 594, 5814, 1, 0, 0, 0, 596, 5816, 1, 0, 0, 0, 598, 5840, 1, 0, 0, 0, 600, 5900, 1, 0, 0, 0, 602, 5902, 1, 0, 0, 0, 604, 5913, 1, 0, 0, 0, 606, 5915, 1, 0, 0, 0, 608, 5919, 1, 0, 0, 0, 610, 5952, 1, 0, 0, 0, 612, 5954, 1, 0, 0, 0, 614, 5958, 1, 0, 0, 0, 616, 5962, 1, 0, 0, 0, 618, 5971, 1, 0, 0, 0, 620, 5983, 1, 0, 0, 0, 622, 6015, 1, 0, 0, 0, 624, 6017, 1, 0, 0, 0, 626, 6019, 1, 0, 0, 0, 628, 6056, 1, 0, 0, 0, 630, 6058, 1, 0, 0, 0, 632, 6060, 1, 0, 0, 0, 634, 6062, 1, 0, 0, 0, 636, 6065, 1, 0, 0, 0, 638, 6096, 1, 0, 0, 0, 640, 6109, 1, 0, 0, 0, 642, 6111, 1, 0, 0, 0, 644, 6116, 1, 0, 0, 0, 646, 6124, 1, 0, 0, 0, 648, 6127, 1, 0, 0, 0, 650, 6129, 1, 0, 0, 0, 652, 6135, 1, 0, 0, 0, 654, 6137, 1, 0, 0, 0, 656, 6164, 1, 0, 0, 0, 658, 6175, 1, 0, 0, 0, 660, 6178, 1, 0, 0, 0, 662, 6184, 1, 0, 0, 0, 664, 6192, 1, 0, 0, 0, 666, 6208, 1, 0, 0, 0, 668, 6210, 1, 0, 0, 0, 670, 6226, 1, 0, 0, 0, 672, 6228, 1, 0, 0, 0, 674, 6244, 1, 0, 0, 0, 676, 6246, 1, 0, 0, 0, 678, 6252, 1, 0, 0, 0, 680, 6273, 1, 0, 0, 0, 682, 6282, 1, 0, 0, 0, 684, 6284, 1, 0, 0, 0, 686, 6286, 1, 0, 0, 0, 688, 6300, 1, 0, 0, 0, 690, 6302, 1, 0, 0, 0, 692, 6307, 1, 0, 0, 0, 694, 6309, 1, 0, 0, 0, 696, 6324, 1, 0, 0, 0, 698, 6332, 1, 0, 0, 0, 700, 6335, 1, 0, 0, 0, 702, 6344, 1, 0, 0, 0, 704, 6383, 1, 0, 0, 0, 706, 6410, 1, 0, 0, 0, 708, 6412, 1, 0, 0, 0, 710, 6424, 1, 0, 0, 0, 712, 6427, 1, 0, 0, 0, 714, 6430, 1, 0, 0, 0, 716, 6438, 1, 0, 0, 0, 718, 6450, 1, 0, 0, 0, 720, 6453, 1, 0, 0, 0, 722, 6457, 1, 0, 0, 0, 724, 6486, 1, 0, 0, 0, 726, 6488, 1, 0, 0, 0, 728, 6497, 1, 0, 0, 0, 730, 6528, 1, 0, 0, 0, 732, 6535, 1, 0, 0, 0, 734, 6540, 1, 0, 0, 0, 736, 6548, 1, 0, 0, 0, 738, 6551, 1, 0, 0, 0, 740, 6555, 1, 0, 0, 0, 742, 6562, 1, 0, 0, 0, 744, 6601, 1, 0, 0, 0, 746, 6607, 1, 0, 0, 0, 748, 6609, 1, 0, 0, 0, 750, 6612, 1, 0, 0, 0, 752, 6659, 1, 0, 0, 0, 754, 6677, 1, 0, 0, 0, 756, 6689, 1, 0, 0, 0, 758, 6706, 1, 0, 0, 0, 760, 6708, 1, 0, 0, 0, 762, 6716, 1, 0, 0, 0, 764, 6730, 1, 0, 0, 0, 766, 7123, 1, 0, 0, 0, 768, 7125, 1, 0, 0, 0, 770, 7197, 1, 0, 0, 0, 772, 7199, 1, 0, 0, 0, 774, 7386, 1, 0, 0, 0, 776, 7388, 1, 0, 0, 0, 778, 7396, 1, 0, 0, 0, 780, 7412, 1, 0, 0, 0, 782, 7419, 1, 0, 0, 0, 784, 7421, 1, 0, 0, 0, 786, 7614, 1, 0, 0, 0, 788, 7616, 1, 0, 0, 0, 790, 7625, 1, 0, 0, 0, 792, 7633, 1, 0, 0, 0, 794, 7673, 1, 0, 0, 0, 796, 7675, 1, 0, 0, 0, 798, 7685, 1, 0, 0, 0, 800, 7693, 1, 0, 0, 0, 802, 7773, 1, 0, 0, 0, 804, 7775, 1, 0, 0, 0, 806, 7801, 1, 0, 0, 0, 808, 7804, 1, 0, 0, 0, 810, 7820, 1, 0, 0, 0, 812, 7822, 1, 0, 0, 0, 814, 7824, 1, 0, 0, 0, 816, 7826, 1, 0, 0, 0, 818, 7828, 1, 0, 0, 0, 820, 7833, 1, 0, 0, 0, 822, 7836, 1, 0, 0, 0, 824, 7843, 1, 0, 0, 0, 826, 7910, 1, 0, 0, 0, 828, 7912, 1, 0, 0, 0, 830, 7924, 1, 0, 0, 0, 832, 7926, 1, 0, 0, 0, 834, 7936, 1, 0, 0, 0, 836, 7938, 1, 0, 0, 0, 838, 7944, 1, 0, 0, 0, 840, 7976, 1, 0, 0, 0, 842, 7983, 1, 0, 0, 0, 844, 7986, 1, 0, 0, 0, 846, 7995, 1, 0, 0, 0, 848, 7998, 1, 0, 0, 0, 850, 8002, 1, 0, 0, 0, 852, 8019, 1, 0, 0, 0, 854, 8021, 1, 0, 0, 0, 856, 8023, 1, 0, 0, 0, 858, 8039, 1, 0, 0, 0, 860, 8045, 1, 0, 0, 0, 862, 8053, 1, 0, 0, 0, 864, 8055, 1, 0, 0, 0, 866, 8061, 1, 0, 0, 0, 868, 8066, 1, 0, 0, 0, 870, 8075, 1, 0, 0, 0, 872, 8101, 1, 0, 0, 0, 874, 8103, 1, 0, 0, 0, 876, 8173, 1, 0, 0, 0, 878, 8175, 1, 0, 0, 0, 880, 8177, 1, 0, 0, 0, 882, 8208, 1, 0, 0, 0, 884, 8210, 1, 0, 0, 0, 886, 8221, 1, 0, 0, 0, 888, 8250, 1, 0, 0, 0, 890, 8266, 1, 0, 0, 0, 892, 8268, 1, 0, 0, 0, 894, 8276, 1, 0, 0, 0, 896, 8278, 1, 0, 0, 0, 898, 8284, 1, 0, 0, 0, 900, 8288, 1, 0, 0, 0, 902, 8290, 1, 0, 0, 0, 904, 8292, 1, 0, 0, 0, 906, 8303, 1, 0, 0, 0, 908, 8305, 1, 0, 0, 0, 910, 8309, 1, 0, 0, 0, 912, 8313, 1, 0, 0, 0, 914, 8318, 1, 0, 0, 0, 916, 8320, 1, 0, 0, 0, 918, 8322, 1, 0, 0, 0, 920, 8326, 1, 0, 0, 0, 922, 8330, 1, 0, 0, 0, 924, 8338, 1, 0, 0, 0, 926, 8358, 1, 0, 0, 0, 928, 8369, 1, 0, 0, 0, 930, 8371, 1, 0, 0, 0, 932, 8379, 1, 0, 0, 0, 934, 8385, 1, 0, 0, 0, 936, 8389, 1, 0, 0, 0, 938, 8391, 1, 0, 0, 0, 940, 8399, 1, 0, 0, 0, 942, 8407, 1, 0, 0, 0, 944, 8432, 1, 0, 0, 0, 946, 8434, 1, 0, 0, 0, 948, 8438, 1, 0, 0, 0, 950, 8447, 1, 0, 0, 0, 952, 8459, 1, 0, 0, 0, 954, 8468, 1, 0, 0, 0, 956, 8480, 1, 0, 0, 0, 958, 8482, 1, 0, 0, 0, 960, 8490, 1, 0, 0, 0, 962, 8493, 1, 0, 0, 0, 964, 8517, 1, 0, 0, 0, 966, 8519, 1, 0, 0, 0, 968, 8523, 1, 0, 0, 0, 970, 8537, 1, 0, 0, 0, 972, 8540, 1, 0, 0, 0, 974, 8551, 1, 0, 0, 0, 976, 8567, 1, 0, 0, 0, 978, 8569, 1, 0, 0, 0, 980, 8574, 1, 0, 0, 0, 982, 8577, 1, 0, 0, 0, 984, 8592, 1, 0, 0, 0, 986, 8618, 1, 0, 0, 0, 988, 8620, 1, 0, 0, 0, 990, 8623, 1, 0, 0, 0, 992, 8631, 1, 0, 0, 0, 994, 8639, 1, 0, 0, 0, 996, 8648, 1, 0, 0, 0, 998, 8656, 1, 0, 0, 0, 1000, 8660, 1, 0, 0, 0, 1002, 8670, 1, 0, 0, 0, 1004, 8701, 1, 0, 0, 0, 1006, 8705, 1, 0, 0, 0, 1008, 8752, 1, 0, 0, 0, 1010, 8767, 1, 0, 0, 0, 1012, 8769, 1, 0, 0, 0, 1014, 8773, 1, 0, 0, 0, 1016, 8779, 1, 0, 0, 0, 1018, 8787, 1, 0, 0, 0, 1020, 8804, 1, 0, 0, 0, 1022, 8812, 1, 0, 0, 0, 1024, 8829, 1, 0, 0, 0, 1026, 8831, 1, 0, 0, 0, 1028, 8833, 1, 0, 0, 0, 1030, 8842, 1, 0, 0, 0, 1032, 8860, 1, 0, 0, 0, 1034, 8862, 1, 0, 0, 0, 1036, 8864, 1, 0, 0, 0, 1038, 8866, 1, 0, 0, 0, 1040, 8874, 1, 0, 0, 0, 1042, 8876, 1, 0, 0, 0, 1044, 8878, 1, 0, 0, 0, 1046, 8882, 1, 0, 0, 0, 1048, 8890, 1, 0, 0, 0, 1050, 8911, 1, 0, 0, 0, 1052, 8913, 1, 0, 0, 0, 1054, 8915, 1, 0, 0, 0, 1056, 8921, 1, 0, 0, 0, 1058, 8938, 1, 0, 0, 0, 1060, 8947, 1, 0, 0, 0, 1062, 8949, 1, 0, 0, 0, 1064, 8956, 1, 0, 0, 0, 1066, 8960, 1, 0, 0, 0, 1068, 8962, 1, 0, 0, 0, 1070, 8964, 1, 0, 0, 0, 1072, 8966, 1, 0, 0, 0, 1074, 8973, 1, 0, 0, 0, 1076, 8990, 1, 0, 0, 0, 1078, 8992, 1, 0, 0, 0, 1080, 8995, 1, 0, 0, 0, 1082, 9000, 1, 0, 0, 0, 1084, 9005, 1, 0, 0, 0, 1086, 9011, 1, 0, 0, 0, 1088, 9018, 1, 0, 0, 0, 1090, 9020, 1, 0, 0, 0, 1092, 9023, 1, 0, 0, 0, 1094, 9027, 1, 0, 0, 0, 1096, 9034, 1, 0, 0, 0, 1098, 9046, 1, 0, 0, 0, 1100, 9049, 1, 0, 0, 0, 1102, 9063, 1, 0, 0, 0, 1104, 9066, 1, 0, 0, 0, 1106, 9135, 1, 0, 0, 0, 1108, 9159, 1, 0, 0, 0, 1110, 9168, 1, 0, 0, 0, 1112, 9182, 1, 0, 0, 0, 1114, 9184, 1, 0, 0, 0, 1116, 9195, 1, 0, 0, 0, 1118, 9218, 1, 0, 0, 0, 1120, 9221, 1, 0, 0, 0, 1122, 9266, 1, 0, 0, 0, 1124, 9268, 1, 0, 0, 0, 1126, 9276, 1, 0, 0, 0, 1128, 9284, 1, 0, 0, 0, 1130, 9291, 1, 0, 0, 0, 1132, 9299, 1, 0, 0, 0, 1134, 9316, 1, 0, 0, 0, 1136, 9318, 1, 0, 0, 0, 1138, 9322, 1, 0, 0, 0, 1140, 9330, 1, 0, 0, 0, 1142, 9335, 1, 0, 0, 0, 1144, 9338, 1, 0, 0, 0, 1146, 9341, 1, 0, 0, 0, 1148, 9348, 1, 0, 0, 0, 1150, 9350, 1, 0, 0, 0, 1152, 9358, 1, 0, 0, 0, 1154, 9363, 1, 0, 0, 0, 1156, 9384, 1, 0, 0, 0, 1158, 9392, 1, 0, 0, 0, 1160, 9402, 1, 0, 0, 0, 1162, 9414, 1, 0, 0, 0, 1164, 9416, 1, 0, 0, 0, 1166, 9430, 1, 0, 0, 0, 1168, 9450, 1, 0, 0, 0, 1170, 9459, 1, 0, 0, 0, 1172, 9477, 1, 0, 0, 0, 1174, 9483, 1, 0, 0, 0, 1176, 9485, 1, 0, 0, 0, 1178, 9492, 1, 0, 0, 0, 1180, 9520, 1, 0, 0, 0, 1182, 9522, 1, 0, 0, 0, 1184, 9528, 1, 0, 0, 0, 1186, 9532, 1, 0, 0, 0, 1188, 9534, 1, 0, 0, 0, 1190, 9542, 1, 0, 0, 0, 1192, 9546, 1, 0, 0, 0, 1194, 9553, 1, 0, 0, 0, 1196, 9570, 1, 0, 0, 0, 1198, 9572, 1, 0, 0, 0, 1200, 9574, 1, 0, 0, 0, 1202, 9584, 1, 0, 0, 0, 1204, 9592, 1, 0, 0, 0, 1206, 9619, 1, 0, 0, 0, 1208, 9621, 1, 0, 0, 0, 1210, 9628, 1, 0, 0, 0, 1212, 9631, 1, 0, 0, 0, 1214, 9633, 1, 0, 0, 0, 1216, 9637, 1, 0, 0, 0, 1218, 9645, 1, 0, 0, 0, 1220, 9653, 1, 0, 0, 0, 1222, 9661, 1, 0, 0, 0, 1224, 9670, 1, 0, 0, 0, 1226, 9674, 1, 0, 0, 0, 1228, 9678, 1, 0, 0, 0, 1230, 9704, 1, 0, 0, 0, 1232, 9718, 1, 0, 0, 0, 1234, 9738, 1, 0, 0, 0, 1236, 9748, 1, 0, 0, 0, 1238, 9752, 1, 0, 0, 0, 1240, 9760, 1, 0, 0, 0, 1242, 9768, 1, 0, 0, 0, 1244, 9774, 1, 0, 0, 0, 1246, 9778, 1, 0, 0, 0, 1248, 9785, 1, 0, 0, 0, 1250, 9790, 1, 0, 0, 0, 1252, 9805, 1, 0, 0, 0, 1254, 9885, 1, 0, 0, 0, 1256, 9887, 1, 0, 0, 0, 1258, 9889, 1, 0, 0, 0, 1260, 9928, 1, 0, 0, 0, 1262, 9932, 1, 0, 0, 0, 1264, 10118, 1, 0, 0, 0, 1266, 10125, 1, 0, 0, 0, 1268, 10137, 1, 0, 0, 0, 1270, 10139, 1, 0, 0, 0, 1272, 10144, 1, 0, 0, 0, 1274, 10152, 1, 0, 0, 0, 1276, 10157, 1, 0, 0, 0, 1278, 10163, 1, 0, 0, 0, 1280, 10180, 1, 0, 0, 0, 1282, 10182, 1, 0, 0, 0, 1284, 10185, 1, 0, 0, 0, 1286, 10191, 1, 0, 0, 0, 1288, 10197, 1, 0, 0, 0, 1290, 10200, 1, 0, 0, 0, 1292, 10208, 1, 0, 0, 0, 1294, 10212, 1, 0, 0, 0, 1296, 10217, 1, 0, 0, 0, 1298, 10232, 1, 0, 0, 0, 1300, 10234, 1, 0, 0, 0, 1302, 10253, 1, 0, 0, 0, 1304, 10261, 1, 0, 0, 0, 1306, 10270, 1, 0, 0, 0, 1308, 10272, 1, 0, 0, 0, 1310, 10293, 1, 0, 0, 0, 1312, 10295, 1, 0, 0, 0, 1314, 10302, 1, 0, 0, 0, 1316, 10308, 1, 0, 0, 0, 1318, 10312, 1, 0, 0, 0, 1320, 10314, 1, 0, 0, 0, 1322, 10322, 1, 0, 0, 0, 1324, 10330, 1, 0, 0, 0, 1326, 10344, 1, 0, 0, 0, 1328, 10346, 1, 0, 0, 0, 1330, 10354, 1, 0, 0, 0, 1332, 10362, 1, 0, 0, 0, 1334, 10375, 1, 0, 0, 0, 1336, 10379, 1, 0, 0, 0, 1338, 10381, 1, 0, 0, 0, 1340, 10394, 1, 0, 0, 0, 1342, 10396, 1, 0, 0, 0, 1344, 10404, 1, 0, 0, 0, 1346, 10411, 1, 0, 0, 0, 1348, 10419, 1, 0, 0, 0, 1350, 10431, 1, 0, 0, 0, 1352, 10433, 1, 0, 0, 0, 1354, 10435, 1, 0, 0, 0, 1356, 10444, 1, 0, 0, 0, 1358, 10475, 1, 0, 0, 0, 1360, 10484, 1, 0, 0, 0, 1362, 10491, 1, 0, 0, 0, 1364, 10493, 1, 0, 0, 0, 1366, 10504, 1, 0, 0, 0, 1368, 10508, 1, 0, 0, 0, 1370, 10513, 1, 0, 0, 0, 1372, 10516, 1, 0, 0, 0, 1374, 10518, 1, 0, 0, 0, 1376, 10539, 1, 0, 0, 0, 1378, 10541, 1, 0, 0, 0, 1380, 10544, 1, 0, 0, 0, 1382, 10551, 1, 0, 0, 0, 1384, 10554, 1, 0, 0, 0, 1386, 10556, 1, 0, 0, 0, 1388, 10572, 1, 0, 0, 0, 1390, 10574, 1, 0, 0, 0, 1392, 10582, 1, 0, 0, 0, 1394, 10590, 1, 0, 0, 0, 1396, 10598, 1, 0, 0, 0, 1398, 10606, 1, 0, 0, 0, 1400, 10614, 1, 0, 0, 0, 1402, 10618, 1, 0, 0, 0, 1404, 10622, 1, 0, 0, 0, 1406, 10626, 1, 0, 0, 0, 1408, 10630, 1, 0, 0, 0, 1410, 10634, 1, 0, 0, 0, 1412, 10638, 1, 0, 0, 0, 1414, 10642, 1, 0, 0, 0, 1416, 10650, 1, 0, 0, 0, 1418, 10658, 1, 0, 0, 0, 1420, 10662, 1, 0, 0, 0, 1422, 10666, 1, 0, 0, 0, 1424, 10670, 1, 0, 0, 0, 1426, 10672, 1, 0, 0, 0, 1428, 10678, 1, 0, 0, 0, 1430, 10684, 1, 0, 0, 0, 1432, 10694, 1, 0, 0, 0, 1434, 10696, 1, 0, 0, 0, 1436, 10698, 1, 0, 0, 0, 1438, 10700, 1, 0, 0, 0, 1440, 10702, 1, 0, 0, 0, 1442, 10708, 1, 0, 0, 0, 1444, 10714, 1, 0, 0, 0, 1446, 10720, 1, 0, 0, 0, 1448, 10757, 1, 0, 0, 0, 1450, 10759, 1, 0, 0, 0, 1452, 10761, 1, 0, 0, 0, 1454, 10763, 1, 0, 0, 0, 1456, 10765, 1, 0, 0, 0, 1458, 10767, 1, 0, 0, 0, 1460, 10782, 1, 0, 0, 0, 1462, 10784, 1, 0, 0, 0, 1464, 10792, 1, 0, 0, 0, 1466, 10794, 1, 0, 0, 0, 1468, 10796, 1, 0, 0, 0, 1470, 10803, 1, 0, 0, 0, 1472, 10805, 1, 0, 0, 0, 1474, 10817, 1, 0, 0, 0, 1476, 10819, 1, 0, 0, 0, 1478, 10833, 1, 0, 0, 0, 1480, 10837, 1, 0, 0, 0, 1482, 10846, 1, 0, 0, 0, 1484, 10852, 1, 0, 0, 0, 1486, 10856, 1, 0, 0, 0, 1488, 10862, 1, 0, 0, 0, 1490, 10870, 1, 0, 0, 0, 1492, 10882, 1, 0, 0, 0, 1494, 10884, 1, 0, 0, 0, 1496, 10886, 1, 0, 0, 0, 1498, 10939, 1, 0, 0, 0, 1500, 10941, 1, 0, 0, 0, 1502, 10943, 1, 0, 0, 0, 1504, 10945, 1, 0, 0, 0, 1506, 10952, 1, 0, 0, 0, 1508, 10975, 1, 0, 0, 0, 1510, 10977, 1, 0, 0, 0, 1512, 10983, 1, 0, 0, 0, 1514, 10987, 1, 0, 0, 0, 1516, 10989, 1, 0, 0, 0, 1518, 10996, 1, 0, 0, 0, 1520, 11003, 1, 0, 0, 0, 1522, 11006, 1, 0, 0, 0, 1524, 11010, 1, 0, 0, 0, 1526, 11017, 1, 0, 0, 0, 1528, 11019, 1, 0, 0, 0, 1530, 11043, 1, 0, 0, 0, 1532, 11045, 1, 0, 0, 0, 1534, 11052, 1, 0, 0, 0, 1536, 11054, 1, 0, 0, 0, 1538, 11062, 1, 0, 0, 0, 1540, 11065, 1, 0, 0, 0, 1542, 11069, 1, 0, 0, 0, 1544, 11071, 1, 0, 0, 0, 1546, 11075, 1, 0, 0, 0, 1548, 11077, 1, 0, 0, 0, 1550, 11082, 1, 0, 0, 0, 1552, 11087, 1, 0, 0, 0, 1554, 11093, 1, 0, 0, 0, 1556, 11097, 1, 0, 0, 0, 1558, 11099, 1, 0, 0, 0, 1560, 11104, 1, 0, 0, 0, 1562, 11134, 1, 0, 0, 0, 1564, 11136, 1, 0, 0, 0, 1566, 11156, 1, 0, 0, 0, 1568, 11160, 1, 0, 0, 0, 1570, 11162, 1, 0, 0, 0, 1572, 11167, 1, 0, 0, 0, 1574, 11176, 1, 0, 0, 0, 1576, 11178, 1, 0, 0, 0, 1578, 11186, 1, 0, 0, 0, 1580, 11190, 1, 0, 0, 0, 1582, 11192, 1, 0, 0, 0, 1584, 11196, 1, 0, 0, 0, 1586, 11207, 1, 0, 0, 0, 1588, 11224, 1, 0, 0, 0, 1590, 11230, 1, 0, 0, 0, 1592, 11232, 1, 0, 0, 0, 1594, 11242, 1, 0, 0, 0, 1596, 11245, 1, 0, 0, 0, 1598, 11249, 1, 0, 0, 0, 1600, 11257, 1, 0, 0, 0, 1602, 11259, 1, 0, 0, 0, 1604, 11262, 1, 0, 0, 0, 1606, 11267, 1, 0, 0, 0, 1608, 11272, 1, 0, 0, 0, 1610, 11294, 1, 0, 0, 0, 1612, 11308, 1, 0, 0, 0, 1614, 11312, 1, 0, 0, 0, 1616, 11317, 1, 0, 0, 0, 1618, 11319, 1, 0, 0, 0, 1620, 11321, 1, 0, 0, 0, 1622, 11333, 1, 0, 0, 0, 1624, 11335, 1, 0, 0, 0, 1626, 11342, 1, 0, 0, 0, 1628, 11344, 1, 0, 0, 0, 1630, 11362, 1, 0, 0, 0, 1632, 11398, 1, 0, 0, 0, 1634, 11400, 1, 0, 0, 0, 1636, 11409, 1, 0, 0, 0, 1638, 11414, 1, 0, 0, 0, 1640, 11416, 1, 0, 0, 0, 1642, 11420, 1, 0, 0, 0, 1644, 11428, 1, 0, 0, 0, 1646, 11436, 1, 0, 0, 0, 1648, 11438, 1, 0, 0, 0, 1650, 11445, 1, 0, 0, 0, 1652, 11448, 1, 0, 0, 0, 1654, 11464, 1, 0, 0, 0, 1656, 11466, 1, 0, 0, 0, 1658, 11480, 1, 0, 0, 0, 1660, 11482, 1, 0, 0, 0, 1662, 11509, 1, 0, 0, 0, 1664, 11511, 1, 0, 0, 0, 1666, 11522, 1, 0, 0, 0, 1668, 11528, 1, 0, 0, 0, 1670, 11532, 1, 0, 0, 0, 1672, 11534, 1, 0, 0, 0, 1674, 11544, 1, 0, 0, 0, 1676, 11549, 1, 0, 0, 0, 1678, 11566, 1, 0, 0, 0, 1680, 11568, 1, 0, 0, 0, 1682, 11576, 1, 0, 0, 0, 1684, 11613, 1, 0, 0, 0, 1686, 11621, 1, 0, 0, 0, 1688, 11649, 1, 0, 0, 0, 1690, 11651, 1, 0, 0, 0, 1692, 11665, 1, 0, 0, 0, 1694, 11687, 1, 0, 0, 0, 1696, 11689, 1, 0, 0, 0, 1698, 11702, 1, 0, 0, 0, 1700, 11704, 1, 0, 0, 0, 1702, 11708, 1, 0, 0, 0, 1704, 11711, 1, 0, 0, 0, 1706, 11717, 1, 0, 0, 0, 1708, 11723, 1, 0, 0, 0, 1710, 11741, 1, 0, 0, 0, 1712, 11745, 1, 0, 0, 0, 1714, 11750, 1, 0, 0, 0, 1716, 11753, 1, 0, 0, 0, 1718, 11757, 1, 0, 0, 0, 1720, 11762, 1, 0, 0, 0, 1722, 11773, 1, 0, 0, 0, 1724, 11777, 1, 0, 0, 0, 1726, 11781, 1, 0, 0, 0, 1728, 11785, 1, 0, 0, 0, 1730, 11787, 1, 0, 0, 0, 1732, 11792, 1, 0, 0, 0, 1734, 11794, 1, 0, 0, 0, 1736, 11797, 1, 0, 0, 0, 1738, 11817, 1, 0, 0, 0, 1740, 11819, 1, 0, 0, 0, 1742, 11821, 1, 0, 0, 0, 1744, 11823, 1, 0, 0, 0, 1746, 11825, 1, 0, 0, 0, 1748, 11829, 1, 0, 0, 0, 1750, 1752, 3, 4, 2, 0, 1751, 1750, 1, 0, 0, 0, 1752, 1755, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1756, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1756, 1757, 5, 0, 0, 1, 1757, 1, 1, 0, 0, 0, 1758, 1759, 3, 1504, 752, 0, 1759, 3, 1, 0, 0, 0, 1760, 1762, 3, 6, 3, 0, 1761, 1763, 5, 7, 0, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 5, 1, 0, 0, 0, 1764, 1882, 3, 488, 244, 0, 1765, 1882, 3, 864, 432, 0, 1766, 1882, 3, 856, 428, 0, 1767, 1882, 3, 858, 429, 0, 1768, 1882, 3, 616, 308, 0, 1769, 1882, 3, 870, 435, 0, 1770, 1882, 3, 514, 257, 0, 1771, 1882, 3, 350, 175, 0, 1772, 1882, 3, 356, 178, 0, 1773, 1882, 3, 366, 183, 0, 1774, 1882, 3, 392, 196, 0, 1775, 1882, 3, 716, 358, 0, 1776, 1882, 3, 42, 21, 0, 1777, 1882, 3, 770, 385, 0, 1778, 1882, 3, 774, 387, 0, 1779, 1882, 3, 786, 393, 0, 1780, 1882, 3, 776, 388, 0, 1781, 1882, 3, 784, 392, 0, 1782, 1882, 3, 410, 205, 0, 1783, 1882, 3, 412, 206, 0, 1784, 1882, 3, 310, 155, 0, 1785, 1882, 3, 866, 433, 0, 1786, 1882, 3, 104, 52, 0, 1787, 1882, 3, 764, 382, 0, 1788, 1882, 3, 150, 75, 0, 1789, 1882, 3, 794, 397, 0, 1790, 1882, 3, 30, 15, 0, 1791, 1882, 3, 32, 16, 0, 1792, 1882, 3, 26, 13, 0, 1793, 1882, 3, 802, 401, 0, 1794, 1882, 3, 292, 146, 0, 1795, 1882, 3, 876, 438, 0, 1796, 1882, 3, 874, 437, 0, 1797, 1882, 3, 406, 203, 0, 1798, 1882, 3, 890, 445, 0, 1799, 1882, 3, 10, 5, 0, 1800, 1882, 3, 100, 50, 0, 1801, 1882, 3, 156, 78, 0, 1802, 1882, 3, 882, 441, 0, 1803, 1882, 3, 568, 284, 0, 1804, 1882, 3, 94, 47, 0, 1805, 1882, 3, 158, 79, 0, 1806, 1882, 3, 432, 216, 0, 1807, 1882, 3, 294, 147, 0, 1808, 1882, 3, 492, 246, 0, 1809, 1882, 3, 744, 372, 0, 1810, 1882, 3, 880, 440, 0, 1811, 1882, 3, 868, 434, 0, 1812, 1882, 3, 344, 172, 0, 1813, 1882, 3, 358, 179, 0, 1814, 1882, 3, 384, 192, 0, 1815, 1882, 3, 394, 197, 0, 1816, 1882, 3, 654, 327, 0, 1817, 1882, 3, 40, 20, 0, 1818, 1882, 3, 300, 150, 0, 1819, 1882, 3, 518, 259, 0, 1820, 1882, 3, 532, 266, 0, 1821, 1882, 3, 788, 394, 0, 1822, 1882, 3, 534, 267, 0, 1823, 1882, 3, 408, 204, 0, 1824, 1882, 3, 326, 163, 0, 1825, 1882, 3, 46, 23, 0, 1826, 1882, 3, 308, 154, 0, 1827, 1882, 3, 188, 94, 0, 1828, 1882, 3, 796, 398, 0, 1829, 1882, 3, 290, 145, 0, 1830, 1882, 3, 340, 170, 0, 1831, 1882, 3, 750, 375, 0, 1832, 1882, 3, 436, 218, 0, 1833, 1882, 3, 480, 240, 0, 1834, 1882, 3, 12, 6, 0, 1835, 1882, 3, 24, 12, 0, 1836, 1882, 3, 402, 201, 0, 1837, 1882, 3, 844, 422, 0, 1838, 1882, 3, 948, 474, 0, 1839, 1882, 3, 992, 496, 0, 1840, 1882, 3, 494, 247, 0, 1841, 1882, 3, 968, 484, 0, 1842, 1882, 3, 102, 51, 0, 1843, 1882, 3, 738, 369, 0, 1844, 1882, 3, 542, 271, 0, 1845, 1882, 3, 944, 472, 0, 1846, 1882, 3, 926, 463, 0, 1847, 1882, 3, 578, 289, 0, 1848, 1882, 3, 586, 293, 0, 1849, 1882, 3, 608, 304, 0, 1850, 1882, 3, 1682, 841, 0, 1851, 1882, 3, 396, 198, 0, 1852, 1882, 3, 626, 313, 0, 1853, 1882, 3, 950, 475, 0, 1854, 1882, 3, 822, 411, 0, 1855, 1882, 3, 306, 153, 0, 1856, 1882, 3, 842, 421, 0, 1857, 1882, 3, 972, 486, 0, 1858, 1882, 3, 818, 409, 0, 1859, 1882, 3, 938, 469, 0, 1860, 1882, 3, 540, 270, 0, 1861, 1882, 3, 754, 377, 0, 1862, 1882, 3, 726, 363, 0, 1863, 1882, 3, 724, 362, 0, 1864, 1882, 3, 728, 364, 0, 1865, 1882, 3, 766, 383, 0, 1866, 1882, 3, 588, 294, 0, 1867, 1882, 3, 610, 305, 0, 1868, 1882, 3, 804, 402, 0, 1869, 1882, 3, 572, 286, 0, 1870, 1882, 3, 1000, 500, 0, 1871, 1882, 3, 826, 413, 0, 1872, 1882, 3, 564, 282, 0, 1873, 1882, 3, 824, 412, 0, 1874, 1882, 3, 982, 491, 0, 1875, 1882, 3, 888, 444, 0, 1876, 1882, 3, 82, 41, 0, 1877, 1882, 3, 54, 27, 0, 1878, 1882, 3, 92, 46, 0, 1879, 1882, 3, 838, 419, 0, 1880, 1882, 3, 8, 4, 0, 1881, 1764, 1, 0, 0, 0, 1881, 1765, 1, 0, 0, 0, 1881, 1766, 1, 0, 0, 0, 1881, 1767, 1, 0, 0, 0, 1881, 1768, 1, 0, 0, 0, 1881, 1769, 1, 0, 0, 0, 1881, 1770, 1, 0, 0, 0, 1881, 1771, 1, 0, 0, 0, 1881, 1772, 1, 0, 0, 0, 1881, 1773, 1, 0, 0, 0, 1881, 1774, 1, 0, 0, 0, 1881, 1775, 1, 0, 0, 0, 1881, 1776, 1, 0, 0, 0, 1881, 1777, 1, 0, 0, 0, 1881, 1778, 1, 0, 0, 0, 1881, 1779, 1, 0, 0, 0, 1881, 1780, 1, 0, 0, 0, 1881, 1781, 1, 0, 0, 0, 1881, 1782, 1, 0, 0, 0, 1881, 1783, 1, 0, 0, 0, 1881, 1784, 1, 0, 0, 0, 1881, 1785, 1, 0, 0, 0, 1881, 1786, 1, 0, 0, 0, 1881, 1787, 1, 0, 0, 0, 1881, 1788, 1, 0, 0, 0, 1881, 1789, 1, 0, 0, 0, 1881, 1790, 1, 0, 0, 0, 1881, 1791, 1, 0, 0, 0, 1881, 1792, 1, 0, 0, 0, 1881, 1793, 1, 0, 0, 0, 1881, 1794, 1, 0, 0, 0, 1881, 1795, 1, 0, 0, 0, 1881, 1796, 1, 0, 0, 0, 1881, 1797, 1, 0, 0, 0, 1881, 1798, 1, 0, 0, 0, 1881, 1799, 1, 0, 0, 0, 1881, 1800, 1, 0, 0, 0, 1881, 1801, 1, 0, 0, 0, 1881, 1802, 1, 0, 0, 0, 1881, 1803, 1, 0, 0, 0, 1881, 1804, 1, 0, 0, 0, 1881, 1805, 1, 0, 0, 0, 1881, 1806, 1, 0, 0, 0, 1881, 1807, 1, 0, 0, 0, 1881, 1808, 1, 0, 0, 0, 1881, 1809, 1, 0, 0, 0, 1881, 1810, 1, 0, 0, 0, 1881, 1811, 1, 0, 0, 0, 1881, 1812, 1, 0, 0, 0, 1881, 1813, 1, 0, 0, 0, 1881, 1814, 1, 0, 0, 0, 1881, 1815, 1, 0, 0, 0, 1881, 1816, 1, 0, 0, 0, 1881, 1817, 1, 0, 0, 0, 1881, 1818, 1, 0, 0, 0, 1881, 1819, 1, 0, 0, 0, 1881, 1820, 1, 0, 0, 0, 1881, 1821, 1, 0, 0, 0, 1881, 1822, 1, 0, 0, 0, 1881, 1823, 1, 0, 0, 0, 1881, 1824, 1, 0, 0, 0, 1881, 1825, 1, 0, 0, 0, 1881, 1826, 1, 0, 0, 0, 1881, 1827, 1, 0, 0, 0, 1881, 1828, 1, 0, 0, 0, 1881, 1829, 1, 0, 0, 0, 1881, 1830, 1, 0, 0, 0, 1881, 1831, 1, 0, 0, 0, 1881, 1832, 1, 0, 0, 0, 1881, 1833, 1, 0, 0, 0, 1881, 1834, 1, 0, 0, 0, 1881, 1835, 1, 0, 0, 0, 1881, 1836, 1, 0, 0, 0, 1881, 1837, 1, 0, 0, 0, 1881, 1838, 1, 0, 0, 0, 1881, 1839, 1, 0, 0, 0, 1881, 1840, 1, 0, 0, 0, 1881, 1841, 1, 0, 0, 0, 1881, 1842, 1, 0, 0, 0, 1881, 1843, 1, 0, 0, 0, 1881, 1844, 1, 0, 0, 0, 1881, 1845, 1, 0, 0, 0, 1881, 1846, 1, 0, 0, 0, 1881, 1847, 1, 0, 0, 0, 1881, 1848, 1, 0, 0, 0, 1881, 1849, 1, 0, 0, 0, 1881, 1850, 1, 0, 0, 0, 1881, 1851, 1, 0, 0, 0, 1881, 1852, 1, 0, 0, 0, 1881, 1853, 1, 0, 0, 0, 1881, 1854, 1, 0, 0, 0, 1881, 1855, 1, 0, 0, 0, 1881, 1856, 1, 0, 0, 0, 1881, 1857, 1, 0, 0, 0, 1881, 1858, 1, 0, 0, 0, 1881, 1859, 1, 0, 0, 0, 1881, 1860, 1, 0, 0, 0, 1881, 1861, 1, 0, 0, 0, 1881, 1862, 1, 0, 0, 0, 1881, 1863, 1, 0, 0, 0, 1881, 1864, 1, 0, 0, 0, 1881, 1865, 1, 0, 0, 0, 1881, 1866, 1, 0, 0, 0, 1881, 1867, 1, 0, 0, 0, 1881, 1868, 1, 0, 0, 0, 1881, 1869, 1, 0, 0, 0, 1881, 1870, 1, 0, 0, 0, 1881, 1871, 1, 0, 0, 0, 1881, 1872, 1, 0, 0, 0, 1881, 1873, 1, 0, 0, 0, 1881, 1874, 1, 0, 0, 0, 1881, 1875, 1, 0, 0, 0, 1881, 1876, 1, 0, 0, 0, 1881, 1877, 1, 0, 0, 0, 1881, 1878, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1880, 1, 0, 0, 0, 1882, 7, 1, 0, 0, 0, 1883, 1885, 5, 581, 0, 0, 1884, 1886, 5, 582, 0, 0, 1885, 1884, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 9, 1, 0, 0, 0, 1887, 1888, 5, 433, 0, 0, 1888, 1889, 3, 1258, 629, 0, 1889, 11, 1, 0, 0, 0, 1890, 1891, 5, 46, 0, 0, 1891, 1892, 5, 318, 0, 0, 1892, 1894, 3, 1468, 734, 0, 1893, 1895, 3, 14, 7, 0, 1894, 1893, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 3, 16, 8, 0, 1897, 13, 1, 0, 0, 0, 1898, 1899, 5, 105, 0, 0, 1899, 15, 1, 0, 0, 0, 1900, 1902, 3, 22, 11, 0, 1901, 1900, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 17, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1908, 3, 20, 10, 0, 1907, 1906, 1, 0, 0, 0, 1908, 1911, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 19, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1912, 1915, 5, 287, 0, 0, 1913, 1916, 3, 1458, 729, 0, 1914, 1916, 5, 78, 0, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1914, 1, 0, 0, 0, 1916, 1948, 1, 0, 0, 0, 1917, 1918, 7, 0, 0, 0, 1918, 1919, 5, 287, 0, 0, 1919, 1948, 3, 1458, 729, 0, 1920, 1948, 7, 1, 0, 0, 1921, 1948, 7, 2, 0, 0, 1922, 1948, 7, 3, 0, 0, 1923, 1948, 7, 4, 0, 0, 1924, 1948, 7, 5, 0, 0, 1925, 1948, 7, 6, 0, 0, 1926, 1948, 7, 7, 0, 0, 1927, 1948, 7, 8, 0, 0, 1928, 1929, 5, 164, 0, 0, 1929, 1930, 5, 74, 0, 0, 1930, 1948, 3, 1464, 732, 0, 1931, 1932, 5, 371, 0, 0, 1932, 1933, 5, 368, 0, 0, 1933, 1948, 3, 1458, 729, 0, 1934, 1935, 5, 68, 0, 0, 1935, 1936, 5, 318, 0, 0, 1936, 1948, 3, 1416, 708, 0, 1937, 1938, 5, 68, 0, 0, 1938, 1939, 5, 66, 0, 0, 1939, 1948, 3, 1416, 708, 0, 1940, 1941, 5, 318, 0, 0, 1941, 1948, 3, 1472, 736, 0, 1942, 1943, 5, 134, 0, 0, 1943, 1948, 3, 1416, 708, 0, 1944, 1945, 5, 99, 0, 0, 1945, 1948, 3, 1472, 736, 0, 1946, 1948, 3, 1492, 746, 0, 1947, 1912, 1, 0, 0, 0, 1947, 1917, 1, 0, 0, 0, 1947, 1920, 1, 0, 0, 0, 1947, 1921, 1, 0, 0, 0, 1947, 1922, 1, 0, 0, 0, 1947, 1923, 1, 0, 0, 0, 1947, 1924, 1, 0, 0, 0, 1947, 1925, 1, 0, 0, 0, 1947, 1926, 1, 0, 0, 0, 1947, 1927, 1, 0, 0, 0, 1947, 1928, 1, 0, 0, 0, 1947, 1931, 1, 0, 0, 0, 1947, 1934, 1, 0, 0, 0, 1947, 1937, 1, 0, 0, 0, 1947, 1940, 1, 0, 0, 0, 1947, 1942, 1, 0, 0, 0, 1947, 1944, 1, 0, 0, 0, 1947, 1946, 1, 0, 0, 0, 1948, 21, 1, 0, 0, 0, 1949, 1960, 3, 20, 10, 0, 1950, 1951, 5, 348, 0, 0, 1951, 1960, 3, 1456, 728, 0, 1952, 1953, 5, 134, 0, 0, 1953, 1960, 3, 1472, 736, 0, 1954, 1955, 5, 318, 0, 0, 1955, 1960, 3, 1472, 736, 0, 1956, 1957, 5, 68, 0, 0, 1957, 1958, 7, 9, 0, 0, 1958, 1960, 3, 1472, 736, 0, 1959, 1949, 1, 0, 0, 0, 1959, 1950, 1, 0, 0, 0, 1959, 1952, 1, 0, 0, 0, 1959, 1954, 1, 0, 0, 0, 1959, 1956, 1, 0, 0, 0, 1960, 23, 1, 0, 0, 0, 1961, 1962, 5, 46, 0, 0, 1962, 1963, 5, 99, 0, 0, 1963, 1965, 3, 1468, 734, 0, 1964, 1966, 3, 14, 7, 0, 1965, 1964, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 3, 16, 8, 0, 1968, 25, 1, 0, 0, 0, 1969, 1970, 5, 138, 0, 0, 1970, 1971, 7, 10, 0, 0, 1971, 1973, 3, 1470, 735, 0, 1972, 1974, 3, 14, 7, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1976, 3, 18, 9, 0, 1976, 27, 1, 0, 0, 0, 1977, 1982, 1, 0, 0, 0, 1978, 1979, 5, 68, 0, 0, 1979, 1980, 5, 175, 0, 0, 1980, 1982, 3, 1420, 710, 0, 1981, 1977, 1, 0, 0, 0, 1981, 1978, 1, 0, 0, 0, 1982, 29, 1, 0, 0, 0, 1983, 1984, 5, 138, 0, 0, 1984, 1987, 7, 10, 0, 0, 1985, 1988, 5, 30, 0, 0, 1986, 1988, 3, 1470, 735, 0, 1987, 1985, 1, 0, 0, 0, 1987, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1990, 3, 28, 14, 0, 1990, 1991, 3, 88, 44, 0, 1991, 31, 1, 0, 0, 0, 1992, 1993, 5, 138, 0, 0, 1993, 1994, 5, 442, 0, 0, 1994, 1996, 3, 1426, 713, 0, 1995, 1997, 3, 660, 330, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 3, 34, 17, 0, 1999, 33, 1, 0, 0, 0, 2000, 2002, 3, 36, 18, 0, 2001, 2003, 5, 315, 0, 0, 2002, 2001, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2021, 1, 0, 0, 0, 2004, 2005, 5, 309, 0, 0, 2005, 2006, 5, 94, 0, 0, 2006, 2021, 3, 1424, 712, 0, 2007, 2008, 5, 282, 0, 0, 2008, 2009, 5, 94, 0, 0, 2009, 2021, 3, 1470, 735, 0, 2010, 2011, 5, 333, 0, 0, 2011, 2012, 5, 323, 0, 0, 2012, 2021, 3, 48, 24, 0, 2013, 2015, 5, 269, 0, 0, 2014, 2013, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2017, 5, 462, 0, 0, 2017, 2018, 5, 80, 0, 0, 2018, 2019, 5, 204, 0, 0, 2019, 2021, 3, 1436, 718, 0, 2020, 2000, 1, 0, 0, 0, 2020, 2004, 1, 0, 0, 0, 2020, 2007, 1, 0, 0, 0, 2020, 2010, 1, 0, 0, 0, 2020, 2014, 1, 0, 0, 0, 2021, 35, 1, 0, 0, 0, 2022, 2026, 3, 38, 19, 0, 2023, 2025, 3, 38, 19, 0, 2024, 2023, 1, 0, 0, 0, 2025, 2028, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 37, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2029, 2071, 5, 222, 0, 0, 2030, 2071, 5, 338, 0, 0, 2031, 2071, 5, 377, 0, 0, 2032, 2034, 5, 77, 0, 0, 2033, 2032, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2071, 5, 250, 0, 0, 2036, 2038, 5, 205, 0, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2040, 5, 327, 0, 0, 2040, 2047, 5, 243, 0, 0, 2041, 2043, 5, 205, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2045, 5, 327, 0, 0, 2045, 2047, 5, 181, 0, 0, 2046, 2037, 1, 0, 0, 0, 2046, 2042, 1, 0, 0, 0, 2047, 2071, 1, 0, 0, 0, 2048, 2049, 5, 460, 0, 0, 2049, 2071, 7, 11, 0, 0, 2050, 2051, 5, 170, 0, 0, 2051, 2071, 3, 1438, 719, 0, 2052, 2053, 5, 320, 0, 0, 2053, 2071, 3, 1436, 718, 0, 2054, 2055, 5, 333, 0, 0, 2055, 2056, 3, 1436, 718, 0, 2056, 2059, 7, 12, 0, 0, 2057, 2060, 3, 1436, 718, 0, 2058, 2060, 5, 53, 0, 0, 2059, 2057, 1, 0, 0, 0, 2059, 2058, 1, 0, 0, 0, 2060, 2071, 1, 0, 0, 0, 2061, 2062, 5, 333, 0, 0, 2062, 2063, 3, 1436, 718, 0, 2063, 2064, 5, 64, 0, 0, 2064, 2065, 5, 434, 0, 0, 2065, 2071, 1, 0, 0, 0, 2066, 2067, 5, 313, 0, 0, 2067, 2071, 3, 1436, 718, 0, 2068, 2069, 5, 313, 0, 0, 2069, 2071, 5, 30, 0, 0, 2070, 2029, 1, 0, 0, 0, 2070, 2030, 1, 0, 0, 0, 2070, 2031, 1, 0, 0, 0, 2070, 2033, 1, 0, 0, 0, 2070, 2046, 1, 0, 0, 0, 2070, 2048, 1, 0, 0, 0, 2070, 2050, 1, 0, 0, 0, 2070, 2052, 1, 0, 0, 0, 2070, 2054, 1, 0, 0, 0, 2070, 2061, 1, 0, 0, 0, 2070, 2066, 1, 0, 0, 0, 2070, 2068, 1, 0, 0, 0, 2071, 39, 1, 0, 0, 0, 2072, 2073, 5, 46, 0, 0, 2073, 2074, 5, 66, 0, 0, 2074, 2076, 3, 1466, 733, 0, 2075, 2077, 3, 14, 7, 0, 2076, 2075, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2079, 3, 16, 8, 0, 2079, 41, 1, 0, 0, 0, 2080, 2081, 5, 138, 0, 0, 2081, 2082, 5, 66, 0, 0, 2082, 2083, 3, 1470, 735, 0, 2083, 2084, 3, 44, 22, 0, 2084, 2085, 5, 99, 0, 0, 2085, 2086, 3, 1472, 736, 0, 2086, 43, 1, 0, 0, 0, 2087, 2088, 7, 13, 0, 0, 2088, 45, 1, 0, 0, 0, 2089, 2090, 5, 46, 0, 0, 2090, 2092, 5, 323, 0, 0, 2091, 2093, 3, 516, 258, 0, 2092, 2091, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2100, 1, 0, 0, 0, 2094, 2096, 3, 48, 24, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2098, 5, 106, 0, 0, 2098, 2101, 3, 1470, 735, 0, 2099, 2101, 3, 48, 24, 0, 2100, 2095, 1, 0, 0, 0, 2100, 2099, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2103, 3, 50, 25, 0, 2103, 47, 1, 0, 0, 0, 2104, 2106, 3, 1474, 737, 0, 2105, 2107, 3, 560, 280, 0, 2106, 2105, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 49, 1, 0, 0, 0, 2108, 2110, 3, 52, 26, 0, 2109, 2108, 1, 0, 0, 0, 2110, 2113, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 51, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2114, 2121, 3, 188, 94, 0, 2115, 2121, 3, 626, 313, 0, 2116, 2121, 3, 308, 154, 0, 2117, 2121, 3, 436, 218, 0, 2118, 2121, 3, 586, 293, 0, 2119, 2121, 3, 838, 419, 0, 2120, 2114, 1, 0, 0, 0, 2120, 2115, 1, 0, 0, 0, 2120, 2116, 1, 0, 0, 0, 2120, 2117, 1, 0, 0, 0, 2120, 2118, 1, 0, 0, 0, 2120, 2119, 1, 0, 0, 0, 2121, 53, 1, 0, 0, 0, 2122, 2124, 5, 333, 0, 0, 2123, 2125, 7, 14, 0, 0, 2124, 2123, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2127, 3, 56, 28, 0, 2127, 55, 1, 0, 0, 0, 2128, 2129, 5, 356, 0, 0, 2129, 2137, 3, 832, 416, 0, 2130, 2131, 5, 332, 0, 0, 2131, 2132, 5, 154, 0, 0, 2132, 2133, 5, 36, 0, 0, 2133, 2134, 5, 356, 0, 0, 2134, 2137, 3, 832, 416, 0, 2135, 2137, 3, 60, 30, 0, 2136, 2128, 1, 0, 0, 0, 2136, 2130, 1, 0, 0, 0, 2136, 2135, 1, 0, 0, 0, 2137, 57, 1, 0, 0, 0, 2138, 2141, 5, 30, 0, 0, 2139, 2141, 3, 62, 31, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2139, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2144, 7, 12, 0, 0, 2143, 2142, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2147, 1, 0, 0, 0, 2145, 2148, 5, 53, 0, 0, 2146, 2148, 3, 64, 32, 0, 2147, 2145, 1, 0, 0, 0, 2147, 2146, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 59, 1, 0, 0, 0, 2149, 2150, 5, 418, 0, 0, 2150, 2151, 5, 386, 0, 0, 2151, 2177, 3, 74, 37, 0, 2152, 2153, 5, 152, 0, 0, 2153, 2177, 3, 1458, 729, 0, 2154, 2155, 5, 323, 0, 0, 2155, 2177, 3, 1422, 711, 0, 2156, 2158, 5, 267, 0, 0, 2157, 2159, 3, 76, 38, 0, 2158, 2157, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2177, 1, 0, 0, 0, 2160, 2161, 5, 318, 0, 0, 2161, 2177, 3, 80, 40, 0, 2162, 2163, 5, 332, 0, 0, 2163, 2164, 5, 106, 0, 0, 2164, 2177, 3, 80, 40, 0, 2165, 2166, 5, 383, 0, 0, 2166, 2167, 5, 279, 0, 0, 2167, 2177, 3, 1276, 638, 0, 2168, 2169, 5, 356, 0, 0, 2169, 2170, 5, 337, 0, 0, 2170, 2177, 3, 1458, 729, 0, 2171, 2172, 3, 62, 31, 0, 2172, 2173, 5, 64, 0, 0, 2173, 2174, 5, 434, 0, 0, 2174, 2177, 1, 0, 0, 0, 2175, 2177, 3, 58, 29, 0, 2176, 2149, 1, 0, 0, 0, 2176, 2152, 1, 0, 0, 0, 2176, 2154, 1, 0, 0, 0, 2176, 2156, 1, 0, 0, 0, 2176, 2160, 1, 0, 0, 0, 2176, 2162, 1, 0, 0, 0, 2176, 2165, 1, 0, 0, 0, 2176, 2168, 1, 0, 0, 0, 2176, 2171, 1, 0, 0, 0, 2176, 2175, 1, 0, 0, 0, 2177, 61, 1, 0, 0, 0, 2178, 2183, 3, 1474, 737, 0, 2179, 2180, 5, 11, 0, 0, 2180, 2182, 3, 1474, 737, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 63, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2191, 3, 66, 33, 0, 2187, 2188, 5, 6, 0, 0, 2188, 2190, 3, 66, 33, 0, 2189, 2187, 1, 0, 0, 0, 2190, 2193, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 65, 1, 0, 0, 0, 2193, 2191, 1, 0, 0, 0, 2194, 2197, 3, 72, 36, 0, 2195, 2197, 3, 322, 161, 0, 2196, 2194, 1, 0, 0, 0, 2196, 2195, 1, 0, 0, 0, 2197, 67, 1, 0, 0, 0, 2198, 2199, 5, 300, 0, 0, 2199, 2204, 7, 15, 0, 0, 2200, 2201, 5, 310, 0, 0, 2201, 2204, 5, 300, 0, 0, 2202, 2204, 5, 330, 0, 0, 2203, 2198, 1, 0, 0, 0, 2203, 2200, 1, 0, 0, 0, 2203, 2202, 1, 0, 0, 0, 2204, 69, 1, 0, 0, 0, 2205, 2210, 5, 96, 0, 0, 2206, 2210, 5, 60, 0, 0, 2207, 2210, 5, 80, 0, 0, 2208, 2210, 3, 78, 39, 0, 2209, 2205, 1, 0, 0, 0, 2209, 2206, 1, 0, 0, 0, 2209, 2207, 1, 0, 0, 0, 2209, 2208, 1, 0, 0, 0, 2210, 71, 1, 0, 0, 0, 2211, 2216, 5, 96, 0, 0, 2212, 2216, 5, 60, 0, 0, 2213, 2216, 5, 80, 0, 0, 2214, 2216, 3, 80, 40, 0, 2215, 2211, 1, 0, 0, 0, 2215, 2212, 1, 0, 0, 0, 2215, 2213, 1, 0, 0, 0, 2215, 2214, 1, 0, 0, 0, 2216, 73, 1, 0, 0, 0, 2217, 2234, 3, 1458, 729, 0, 2218, 2234, 3, 1492, 746, 0, 2219, 2220, 3, 1202, 601, 0, 2220, 2222, 3, 1458, 729, 0, 2221, 2223, 3, 1206, 603, 0, 2222, 2221, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2234, 1, 0, 0, 0, 2224, 2225, 3, 1202, 601, 0, 2225, 2226, 5, 2, 0, 0, 2226, 2227, 3, 1456, 728, 0, 2227, 2228, 5, 3, 0, 0, 2228, 2229, 3, 1458, 729, 0, 2229, 2234, 1, 0, 0, 0, 2230, 2234, 3, 322, 161, 0, 2231, 2234, 5, 53, 0, 0, 2232, 2234, 5, 254, 0, 0, 2233, 2217, 1, 0, 0, 0, 2233, 2218, 1, 0, 0, 0, 2233, 2219, 1, 0, 0, 0, 2233, 2224, 1, 0, 0, 0, 2233, 2230, 1, 0, 0, 0, 2233, 2231, 1, 0, 0, 0, 2233, 2232, 1, 0, 0, 0, 2234, 75, 1, 0, 0, 0, 2235, 2238, 3, 1458, 729, 0, 2236, 2238, 5, 53, 0, 0, 2237, 2235, 1, 0, 0, 0, 2237, 2236, 1, 0, 0, 0, 2238, 77, 1, 0, 0, 0, 2239, 2242, 3, 1486, 743, 0, 2240, 2242, 3, 1458, 729, 0, 2241, 2239, 1, 0, 0, 0, 2241, 2240, 1, 0, 0, 0, 2242, 79, 1, 0, 0, 0, 2243, 2246, 3, 1488, 744, 0, 2244, 2246, 3, 1458, 729, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2244, 1, 0, 0, 0, 2246, 81, 1, 0, 0, 0, 2247, 2248, 5, 313, 0, 0, 2248, 2249, 3, 84, 42, 0, 2249, 83, 1, 0, 0, 0, 2250, 2251, 5, 418, 0, 0, 2251, 2259, 5, 386, 0, 0, 2252, 2253, 5, 356, 0, 0, 2253, 2254, 5, 244, 0, 0, 2254, 2259, 5, 251, 0, 0, 2255, 2256, 5, 332, 0, 0, 2256, 2259, 5, 106, 0, 0, 2257, 2259, 3, 86, 43, 0, 2258, 2250, 1, 0, 0, 0, 2258, 2252, 1, 0, 0, 0, 2258, 2255, 1, 0, 0, 0, 2258, 2257, 1, 0, 0, 0, 2259, 85, 1, 0, 0, 0, 2260, 2263, 5, 30, 0, 0, 2261, 2263, 3, 62, 31, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2261, 1, 0, 0, 0, 2263, 87, 1, 0, 0, 0, 2264, 2265, 5, 333, 0, 0, 2265, 2268, 3, 56, 28, 0, 2266, 2268, 3, 82, 41, 0, 2267, 2264, 1, 0, 0, 0, 2267, 2266, 1, 0, 0, 0, 2268, 89, 1, 0, 0, 0, 2269, 2270, 5, 333, 0, 0, 2270, 2273, 3, 60, 30, 0, 2271, 2273, 3, 82, 41, 0, 2272, 2269, 1, 0, 0, 0, 2272, 2271, 1, 0, 0, 0, 2273, 91, 1, 0, 0, 0, 2274, 2284, 5, 335, 0, 0, 2275, 2285, 3, 62, 31, 0, 2276, 2277, 5, 418, 0, 0, 2277, 2285, 5, 386, 0, 0, 2278, 2279, 5, 356, 0, 0, 2279, 2280, 5, 244, 0, 0, 2280, 2285, 5, 251, 0, 0, 2281, 2282, 5, 332, 0, 0, 2282, 2285, 5, 106, 0, 0, 2283, 2285, 5, 30, 0, 0, 2284, 2275, 1, 0, 0, 0, 2284, 2276, 1, 0, 0, 0, 2284, 2278, 1, 0, 0, 0, 2284, 2281, 1, 0, 0, 0, 2284, 2283, 1, 0, 0, 0, 2285, 93, 1, 0, 0, 0, 2286, 2287, 5, 333, 0, 0, 2287, 2288, 5, 165, 0, 0, 2288, 2289, 3, 96, 48, 0, 2289, 2290, 3, 98, 49, 0, 2290, 95, 1, 0, 0, 0, 2291, 2294, 5, 30, 0, 0, 2292, 2294, 3, 1390, 695, 0, 2293, 2291, 1, 0, 0, 0, 2293, 2292, 1, 0, 0, 0, 2294, 97, 1, 0, 0, 0, 2295, 2296, 7, 16, 0, 0, 2296, 99, 1, 0, 0, 0, 2297, 2298, 5, 155, 0, 0, 2298, 101, 1, 0, 0, 0, 2299, 2300, 5, 187, 0, 0, 2300, 2301, 7, 17, 0, 0, 2301, 103, 1, 0, 0, 0, 2302, 2303, 5, 138, 0, 0, 2303, 2305, 5, 92, 0, 0, 2304, 2306, 3, 748, 374, 0, 2305, 2304, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, 2310, 3, 1118, 559, 0, 2308, 2311, 3, 106, 53, 0, 2309, 2311, 3, 116, 58, 0, 2310, 2308, 1, 0, 0, 0, 2310, 2309, 1, 0, 0, 0, 2311, 2436, 1, 0, 0, 0, 2312, 2313, 5, 138, 0, 0, 2313, 2314, 5, 92, 0, 0, 2314, 2315, 5, 30, 0, 0, 2315, 2316, 5, 68, 0, 0, 2316, 2317, 5, 351, 0, 0, 2317, 2321, 3, 1402, 701, 0, 2318, 2319, 5, 281, 0, 0, 2319, 2320, 5, 147, 0, 0, 2320, 2322, 3, 1472, 736, 0, 2321, 2318, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2324, 5, 333, 0, 0, 2324, 2325, 5, 351, 0, 0, 2325, 2327, 3, 1400, 700, 0, 2326, 2328, 3, 978, 489, 0, 2327, 2326, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2436, 1, 0, 0, 0, 2329, 2330, 5, 138, 0, 0, 2330, 2332, 5, 92, 0, 0, 2331, 2333, 3, 748, 374, 0, 2332, 2331, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 3, 1406, 703, 0, 2335, 2336, 5, 435, 0, 0, 2336, 2337, 5, 285, 0, 0, 2337, 2342, 3, 1412, 706, 0, 2338, 2339, 5, 62, 0, 0, 2339, 2340, 5, 422, 0, 0, 2340, 2343, 3, 108, 54, 0, 2341, 2343, 5, 53, 0, 0, 2342, 2338, 1, 0, 0, 0, 2342, 2341, 1, 0, 0, 0, 2343, 2436, 1, 0, 0, 0, 2344, 2345, 5, 138, 0, 0, 2345, 2347, 5, 92, 0, 0, 2346, 2348, 3, 748, 374, 0, 2347, 2346, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2350, 3, 1406, 703, 0, 2350, 2351, 5, 436, 0, 0, 2351, 2352, 5, 285, 0, 0, 2352, 2354, 3, 1412, 706, 0, 2353, 2355, 7, 18, 0, 0, 2354, 2353, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2436, 1, 0, 0, 0, 2356, 2357, 5, 138, 0, 0, 2357, 2359, 5, 226, 0, 0, 2358, 2360, 3, 748, 374, 0, 2359, 2358, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2364, 3, 1412, 706, 0, 2362, 2365, 3, 106, 53, 0, 2363, 2365, 3, 118, 59, 0, 2364, 2362, 1, 0, 0, 0, 2364, 2363, 1, 0, 0, 0, 2365, 2436, 1, 0, 0, 0, 2366, 2367, 5, 138, 0, 0, 2367, 2368, 5, 226, 0, 0, 2368, 2369, 5, 30, 0, 0, 2369, 2370, 5, 68, 0, 0, 2370, 2371, 5, 351, 0, 0, 2371, 2375, 3, 1402, 701, 0, 2372, 2373, 5, 281, 0, 0, 2373, 2374, 5, 147, 0, 0, 2374, 2376, 3, 1472, 736, 0, 2375, 2372, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2378, 5, 333, 0, 0, 2378, 2379, 5, 351, 0, 0, 2379, 2381, 3, 1402, 701, 0, 2380, 2382, 3, 978, 489, 0, 2381, 2380, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2436, 1, 0, 0, 0, 2383, 2384, 5, 138, 0, 0, 2384, 2386, 5, 328, 0, 0, 2385, 2387, 3, 748, 374, 0, 2386, 2385, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2389, 3, 1412, 706, 0, 2389, 2390, 3, 106, 53, 0, 2390, 2436, 1, 0, 0, 0, 2391, 2392, 5, 138, 0, 0, 2392, 2394, 5, 376, 0, 0, 2393, 2395, 3, 748, 374, 0, 2394, 2393, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2397, 3, 1410, 705, 0, 2397, 2398, 3, 106, 53, 0, 2398, 2436, 1, 0, 0, 0, 2399, 2400, 5, 138, 0, 0, 2400, 2401, 5, 259, 0, 0, 2401, 2403, 5, 376, 0, 0, 2402, 2404, 3, 748, 374, 0, 2403, 2402, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2406, 3, 1410, 705, 0, 2406, 2407, 3, 106, 53, 0, 2407, 2436, 1, 0, 0, 0, 2408, 2409, 5, 138, 0, 0, 2409, 2410, 5, 259, 0, 0, 2410, 2411, 5, 376, 0, 0, 2411, 2412, 5, 30, 0, 0, 2412, 2413, 5, 68, 0, 0, 2413, 2414, 5, 351, 0, 0, 2414, 2418, 3, 1402, 701, 0, 2415, 2416, 5, 281, 0, 0, 2416, 2417, 5, 147, 0, 0, 2417, 2419, 3, 1472, 736, 0, 2418, 2415, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2421, 5, 333, 0, 0, 2421, 2422, 5, 351, 0, 0, 2422, 2424, 3, 1400, 700, 0, 2423, 2425, 3, 978, 489, 0, 2424, 2423, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2436, 1, 0, 0, 0, 2426, 2427, 5, 138, 0, 0, 2427, 2428, 5, 63, 0, 0, 2428, 2430, 5, 92, 0, 0, 2429, 2431, 3, 748, 374, 0, 2430, 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2433, 3, 1118, 559, 0, 2433, 2434, 3, 106, 53, 0, 2434, 2436, 1, 0, 0, 0, 2435, 2302, 1, 0, 0, 0, 2435, 2312, 1, 0, 0, 0, 2435, 2329, 1, 0, 0, 0, 2435, 2344, 1, 0, 0, 0, 2435, 2356, 1, 0, 0, 0, 2435, 2366, 1, 0, 0, 0, 2435, 2383, 1, 0, 0, 0, 2435, 2391, 1, 0, 0, 0, 2435, 2399, 1, 0, 0, 0, 2435, 2408, 1, 0, 0, 0, 2435, 2426, 1, 0, 0, 0, 2436, 105, 1, 0, 0, 0, 2437, 2442, 3, 120, 60, 0, 2438, 2439, 5, 6, 0, 0, 2439, 2441, 3, 120, 60, 0, 2440, 2438, 1, 0, 0, 0, 2441, 2444, 1, 0, 0, 0, 2442, 2440, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 107, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2446, 5, 68, 0, 0, 2446, 2455, 3, 1178, 589, 0, 2447, 2448, 5, 64, 0, 0, 2448, 2449, 3, 110, 55, 0, 2449, 2450, 5, 94, 0, 0, 2450, 2451, 3, 110, 55, 0, 2451, 2455, 1, 0, 0, 0, 2452, 2453, 5, 105, 0, 0, 2453, 2455, 3, 114, 57, 0, 2454, 2445, 1, 0, 0, 0, 2454, 2447, 1, 0, 0, 0, 2454, 2452, 1, 0, 0, 0, 2455, 109, 1, 0, 0, 0, 2456, 2457, 5, 2, 0, 0, 2457, 2462, 3, 112, 56, 0, 2458, 2459, 5, 6, 0, 0, 2459, 2461, 3, 112, 56, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2464, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2465, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2466, 5, 3, 0, 0, 2466, 111, 1, 0, 0, 0, 2467, 2471, 3, 1178, 589, 0, 2468, 2471, 5, 262, 0, 0, 2469, 2471, 5, 260, 0, 0, 2470, 2467, 1, 0, 0, 0, 2470, 2468, 1, 0, 0, 0, 2470, 2469, 1, 0, 0, 0, 2471, 113, 1, 0, 0, 0, 2472, 2473, 5, 2, 0, 0, 2473, 2474, 5, 533, 0, 0, 2474, 2475, 3, 322, 161, 0, 2475, 2476, 5, 6, 0, 0, 2476, 2477, 5, 534, 0, 0, 2477, 2478, 3, 322, 161, 0, 2478, 2479, 5, 3, 0, 0, 2479, 115, 1, 0, 0, 0, 2480, 2481, 5, 435, 0, 0, 2481, 2482, 5, 285, 0, 0, 2482, 2483, 3, 1412, 706, 0, 2483, 2484, 3, 144, 72, 0, 2484, 2489, 1, 0, 0, 0, 2485, 2486, 5, 436, 0, 0, 2486, 2487, 5, 285, 0, 0, 2487, 2489, 3, 1412, 706, 0, 2488, 2480, 1, 0, 0, 0, 2488, 2485, 1, 0, 0, 0, 2489, 117, 1, 0, 0, 0, 2490, 2491, 5, 435, 0, 0, 2491, 2492, 5, 285, 0, 0, 2492, 2493, 3, 1412, 706, 0, 2493, 119, 1, 0, 0, 0, 2494, 2497, 5, 133, 0, 0, 2495, 2496, 5, 45, 0, 0, 2496, 2498, 3, 1436, 718, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2712, 3, 236, 118, 0, 2500, 2501, 5, 138, 0, 0, 2501, 2502, 5, 45, 0, 0, 2502, 2503, 3, 1436, 718, 0, 2503, 2504, 3, 476, 238, 0, 2504, 2712, 1, 0, 0, 0, 2505, 2506, 5, 372, 0, 0, 2506, 2507, 5, 45, 0, 0, 2507, 2712, 3, 1436, 718, 0, 2508, 2509, 5, 191, 0, 0, 2509, 2511, 5, 45, 0, 0, 2510, 2512, 3, 748, 374, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2515, 3, 1436, 718, 0, 2514, 2516, 3, 124, 62, 0, 2515, 2514, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2712, 1, 0, 0, 0, 2517, 2518, 5, 333, 0, 0, 2518, 2519, 5, 379, 0, 0, 2519, 2712, 5, 277, 0, 0, 2520, 2521, 5, 158, 0, 0, 2521, 2522, 5, 80, 0, 0, 2522, 2712, 3, 1436, 718, 0, 2523, 2524, 5, 333, 0, 0, 2524, 2525, 5, 379, 0, 0, 2525, 2712, 5, 158, 0, 0, 2526, 2527, 5, 333, 0, 0, 2527, 2712, 7, 19, 0, 0, 2528, 2530, 5, 193, 0, 0, 2529, 2531, 7, 20, 0, 0, 2530, 2529, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2712, 5, 357, 0, 0, 2533, 2534, 5, 186, 0, 0, 2534, 2538, 5, 357, 0, 0, 2535, 2539, 5, 30, 0, 0, 2536, 2539, 5, 99, 0, 0, 2537, 2539, 3, 1436, 718, 0, 2538, 2535, 1, 0, 0, 0, 2538, 2536, 1, 0, 0, 0, 2538, 2537, 1, 0, 0, 0, 2539, 2712, 1, 0, 0, 0, 2540, 2541, 5, 193, 0, 0, 2541, 2542, 7, 20, 0, 0, 2542, 2543, 5, 321, 0, 0, 2543, 2712, 3, 1436, 718, 0, 2544, 2545, 5, 186, 0, 0, 2545, 2546, 5, 321, 0, 0, 2546, 2712, 3, 1436, 718, 0, 2547, 2549, 5, 269, 0, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2551, 5, 228, 0, 0, 2551, 2712, 3, 1412, 706, 0, 2552, 2553, 5, 275, 0, 0, 2553, 2712, 3, 558, 279, 0, 2554, 2555, 5, 77, 0, 0, 2555, 2712, 5, 275, 0, 0, 2556, 2557, 5, 282, 0, 0, 2557, 2558, 5, 94, 0, 0, 2558, 2712, 3, 1470, 735, 0, 2559, 2560, 5, 333, 0, 0, 2560, 2561, 5, 351, 0, 0, 2561, 2712, 3, 1400, 700, 0, 2562, 2563, 5, 333, 0, 0, 2563, 2712, 3, 132, 66, 0, 2564, 2565, 5, 313, 0, 0, 2565, 2712, 3, 132, 66, 0, 2566, 2567, 5, 312, 0, 0, 2567, 2568, 5, 219, 0, 0, 2568, 2712, 3, 130, 65, 0, 2569, 2570, 5, 193, 0, 0, 2570, 2571, 5, 414, 0, 0, 2571, 2572, 5, 251, 0, 0, 2572, 2712, 5, 327, 0, 0, 2573, 2574, 5, 186, 0, 0, 2574, 2575, 5, 414, 0, 0, 2575, 2576, 5, 251, 0, 0, 2576, 2712, 5, 327, 0, 0, 2577, 2578, 5, 209, 0, 0, 2578, 2579, 5, 414, 0, 0, 2579, 2580, 5, 251, 0, 0, 2580, 2712, 5, 327, 0, 0, 2581, 2582, 5, 269, 0, 0, 2582, 2583, 5, 209, 0, 0, 2583, 2584, 5, 414, 0, 0, 2584, 2585, 5, 251, 0, 0, 2585, 2712, 5, 327, 0, 0, 2586, 2588, 5, 191, 0, 0, 2587, 2589, 5, 44, 0, 0, 2588, 2587, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2592, 3, 748, 374, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 3, 1432, 716, 0, 2594, 2596, 3, 124, 62, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2712, 1, 0, 0, 0, 2597, 2599, 5, 133, 0, 0, 2598, 2600, 5, 44, 0, 0, 2599, 2598, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2602, 1, 0, 0, 0, 2601, 2603, 3, 516, 258, 0, 2602, 2601, 1, 0, 0, 0, 2602, 2603, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2712, 3, 206, 103, 0, 2605, 2607, 5, 138, 0, 0, 2606, 2608, 5, 44, 0, 0, 2607, 2606, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2610, 3, 1432, 716, 0, 2610, 2611, 3, 122, 61, 0, 2611, 2712, 1, 0, 0, 0, 2612, 2614, 5, 138, 0, 0, 2613, 2615, 5, 44, 0, 0, 2614, 2613, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2616, 1, 0, 0, 0, 2616, 2617, 3, 1432, 716, 0, 2617, 2618, 7, 21, 0, 0, 2618, 2619, 5, 77, 0, 0, 2619, 2620, 5, 78, 0, 0, 2620, 2712, 1, 0, 0, 0, 2621, 2623, 5, 138, 0, 0, 2622, 2624, 5, 44, 0, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2626, 3, 1432, 716, 0, 2626, 2627, 5, 191, 0, 0, 2627, 2629, 5, 437, 0, 0, 2628, 2630, 3, 748, 374, 0, 2629, 2628, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2712, 1, 0, 0, 0, 2631, 2633, 5, 138, 0, 0, 2632, 2634, 5, 44, 0, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 3, 1432, 716, 0, 2636, 2637, 5, 333, 0, 0, 2637, 2638, 5, 342, 0, 0, 2638, 2639, 3, 1464, 732, 0, 2639, 2712, 1, 0, 0, 0, 2640, 2642, 5, 138, 0, 0, 2641, 2643, 5, 44, 0, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2645, 3, 1432, 716, 0, 2645, 2646, 7, 22, 0, 0, 2646, 2647, 3, 132, 66, 0, 2647, 2712, 1, 0, 0, 0, 2648, 2650, 5, 138, 0, 0, 2649, 2651, 5, 44, 0, 0, 2650, 2649, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2653, 3, 1432, 716, 0, 2653, 2654, 5, 333, 0, 0, 2654, 2655, 5, 345, 0, 0, 2655, 2656, 3, 1474, 737, 0, 2656, 2712, 1, 0, 0, 0, 2657, 2659, 5, 138, 0, 0, 2658, 2660, 5, 44, 0, 0, 2659, 2658, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2662, 3, 1432, 716, 0, 2662, 2663, 5, 133, 0, 0, 2663, 2664, 5, 438, 0, 0, 2664, 2665, 3, 222, 111, 0, 2665, 2666, 5, 36, 0, 0, 2666, 2668, 5, 219, 0, 0, 2667, 2669, 3, 314, 157, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2712, 1, 0, 0, 0, 2670, 2672, 5, 138, 0, 0, 2671, 2673, 5, 44, 0, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 3, 1432, 716, 0, 2675, 2676, 3, 140, 70, 0, 2676, 2712, 1, 0, 0, 0, 2677, 2679, 5, 138, 0, 0, 2678, 2680, 5, 44, 0, 0, 2679, 2678, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2682, 3, 1432, 716, 0, 2682, 2683, 5, 191, 0, 0, 2683, 2685, 5, 219, 0, 0, 2684, 2686, 3, 748, 374, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2712, 1, 0, 0, 0, 2687, 2689, 5, 138, 0, 0, 2688, 2690, 5, 44, 0, 0, 2689, 2688, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2693, 3, 1432, 716, 0, 2692, 2694, 3, 768, 384, 0, 2693, 2692, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2696, 5, 360, 0, 0, 2696, 2698, 3, 1168, 584, 0, 2697, 2699, 3, 126, 63, 0, 2698, 2697, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2701, 1, 0, 0, 0, 2700, 2702, 3, 128, 64, 0, 2701, 2700, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2712, 1, 0, 0, 0, 2703, 2705, 5, 138, 0, 0, 2704, 2706, 5, 44, 0, 0, 2705, 2704, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 2708, 3, 1432, 716, 0, 2708, 2709, 3, 372, 186, 0, 2709, 2712, 1, 0, 0, 0, 2710, 2712, 3, 372, 186, 0, 2711, 2494, 1, 0, 0, 0, 2711, 2500, 1, 0, 0, 0, 2711, 2505, 1, 0, 0, 0, 2711, 2508, 1, 0, 0, 0, 2711, 2517, 1, 0, 0, 0, 2711, 2520, 1, 0, 0, 0, 2711, 2523, 1, 0, 0, 0, 2711, 2526, 1, 0, 0, 0, 2711, 2528, 1, 0, 0, 0, 2711, 2533, 1, 0, 0, 0, 2711, 2540, 1, 0, 0, 0, 2711, 2544, 1, 0, 0, 0, 2711, 2548, 1, 0, 0, 0, 2711, 2552, 1, 0, 0, 0, 2711, 2554, 1, 0, 0, 0, 2711, 2556, 1, 0, 0, 0, 2711, 2559, 1, 0, 0, 0, 2711, 2562, 1, 0, 0, 0, 2711, 2564, 1, 0, 0, 0, 2711, 2566, 1, 0, 0, 0, 2711, 2569, 1, 0, 0, 0, 2711, 2573, 1, 0, 0, 0, 2711, 2577, 1, 0, 0, 0, 2711, 2581, 1, 0, 0, 0, 2711, 2586, 1, 0, 0, 0, 2711, 2597, 1, 0, 0, 0, 2711, 2605, 1, 0, 0, 0, 2711, 2612, 1, 0, 0, 0, 2711, 2621, 1, 0, 0, 0, 2711, 2631, 1, 0, 0, 0, 2711, 2640, 1, 0, 0, 0, 2711, 2648, 1, 0, 0, 0, 2711, 2657, 1, 0, 0, 0, 2711, 2670, 1, 0, 0, 0, 2711, 2677, 1, 0, 0, 0, 2711, 2687, 1, 0, 0, 0, 2711, 2703, 1, 0, 0, 0, 2711, 2710, 1, 0, 0, 0, 2712, 121, 1, 0, 0, 0, 2713, 2714, 5, 333, 0, 0, 2714, 2715, 5, 53, 0, 0, 2715, 2719, 3, 1212, 606, 0, 2716, 2717, 5, 191, 0, 0, 2717, 2719, 5, 53, 0, 0, 2718, 2713, 1, 0, 0, 0, 2718, 2716, 1, 0, 0, 0, 2719, 123, 1, 0, 0, 0, 2720, 2721, 7, 23, 0, 0, 2721, 125, 1, 0, 0, 0, 2722, 2723, 5, 43, 0, 0, 2723, 2724, 3, 558, 279, 0, 2724, 127, 1, 0, 0, 0, 2725, 2726, 5, 100, 0, 0, 2726, 2727, 3, 1212, 606, 0, 2727, 129, 1, 0, 0, 0, 2728, 2735, 5, 270, 0, 0, 2729, 2735, 5, 113, 0, 0, 2730, 2735, 5, 53, 0, 0, 2731, 2732, 5, 100, 0, 0, 2732, 2733, 5, 226, 0, 0, 2733, 2735, 3, 1436, 718, 0, 2734, 2728, 1, 0, 0, 0, 2734, 2729, 1, 0, 0, 0, 2734, 2730, 1, 0, 0, 0, 2734, 2731, 1, 0, 0, 0, 2735, 131, 1, 0, 0, 0, 2736, 2737, 5, 2, 0, 0, 2737, 2738, 3, 136, 68, 0, 2738, 2739, 5, 3, 0, 0, 2739, 133, 1, 0, 0, 0, 2740, 2741, 5, 105, 0, 0, 2741, 2742, 3, 132, 66, 0, 2742, 135, 1, 0, 0, 0, 2743, 2748, 3, 138, 69, 0, 2744, 2745, 5, 6, 0, 0, 2745, 2747, 3, 138, 69, 0, 2746, 2744, 1, 0, 0, 0, 2747, 2750, 1, 0, 0, 0, 2748, 2746, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 137, 1, 0, 0, 0, 2750, 2748, 1, 0, 0, 0, 2751, 2760, 3, 1490, 745, 0, 2752, 2753, 5, 10, 0, 0, 2753, 2761, 3, 502, 251, 0, 2754, 2755, 5, 11, 0, 0, 2755, 2758, 3, 1490, 745, 0, 2756, 2757, 5, 10, 0, 0, 2757, 2759, 3, 502, 251, 0, 2758, 2756, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2761, 1, 0, 0, 0, 2760, 2752, 1, 0, 0, 0, 2760, 2754, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 139, 1, 0, 0, 0, 2762, 2764, 3, 142, 71, 0, 2763, 2762, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 141, 1, 0, 0, 0, 2767, 2772, 5, 314, 0, 0, 2768, 2770, 3, 14, 7, 0, 2769, 2768, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2773, 3, 322, 161, 0, 2772, 2769, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2781, 1, 0, 0, 0, 2774, 2778, 5, 333, 0, 0, 2775, 2779, 3, 318, 159, 0, 2776, 2777, 5, 438, 0, 0, 2777, 2779, 3, 222, 111, 0, 2778, 2775, 1, 0, 0, 0, 2778, 2776, 1, 0, 0, 0, 2779, 2781, 1, 0, 0, 0, 2780, 2767, 1, 0, 0, 0, 2780, 2774, 1, 0, 0, 0, 2781, 143, 1, 0, 0, 0, 2782, 2783, 5, 62, 0, 0, 2783, 2784, 5, 422, 0, 0, 2784, 2785, 5, 105, 0, 0, 2785, 2786, 5, 2, 0, 0, 2786, 2787, 3, 148, 74, 0, 2787, 2788, 5, 3, 0, 0, 2788, 2809, 1, 0, 0, 0, 2789, 2790, 5, 62, 0, 0, 2790, 2791, 5, 422, 0, 0, 2791, 2792, 5, 68, 0, 0, 2792, 2793, 5, 2, 0, 0, 2793, 2794, 3, 1328, 664, 0, 2794, 2795, 5, 3, 0, 0, 2795, 2809, 1, 0, 0, 0, 2796, 2797, 5, 62, 0, 0, 2797, 2798, 5, 422, 0, 0, 2798, 2799, 5, 64, 0, 0, 2799, 2800, 5, 2, 0, 0, 2800, 2801, 3, 1328, 664, 0, 2801, 2802, 5, 3, 0, 0, 2802, 2803, 5, 94, 0, 0, 2803, 2804, 5, 2, 0, 0, 2804, 2805, 3, 1328, 664, 0, 2805, 2806, 5, 3, 0, 0, 2806, 2809, 1, 0, 0, 0, 2807, 2809, 5, 53, 0, 0, 2808, 2782, 1, 0, 0, 0, 2808, 2789, 1, 0, 0, 0, 2808, 2796, 1, 0, 0, 0, 2808, 2807, 1, 0, 0, 0, 2809, 145, 1, 0, 0, 0, 2810, 2811, 3, 1488, 744, 0, 2811, 2812, 3, 1456, 728, 0, 2812, 147, 1, 0, 0, 0, 2813, 2818, 3, 146, 73, 0, 2814, 2815, 5, 6, 0, 0, 2815, 2817, 3, 146, 73, 0, 2816, 2814, 1, 0, 0, 0, 2817, 2820, 1, 0, 0, 0, 2818, 2816, 1, 0, 0, 0, 2818, 2819, 1, 0, 0, 0, 2819, 149, 1, 0, 0, 0, 2820, 2818, 1, 0, 0, 0, 2821, 2822, 5, 138, 0, 0, 2822, 2823, 5, 360, 0, 0, 2823, 2824, 3, 558, 279, 0, 2824, 2825, 3, 152, 76, 0, 2825, 151, 1, 0, 0, 0, 2826, 2831, 3, 154, 77, 0, 2827, 2828, 5, 6, 0, 0, 2828, 2830, 3, 154, 77, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2833, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 153, 1, 0, 0, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2835, 5, 133, 0, 0, 2835, 2836, 5, 143, 0, 0, 2836, 2838, 3, 1152, 576, 0, 2837, 2839, 3, 124, 62, 0, 2838, 2837, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2864, 1, 0, 0, 0, 2840, 2841, 5, 191, 0, 0, 2841, 2843, 5, 143, 0, 0, 2842, 2844, 3, 748, 374, 0, 2843, 2842, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2847, 3, 1474, 737, 0, 2846, 2848, 3, 124, 62, 0, 2847, 2846, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 2864, 1, 0, 0, 0, 2849, 2850, 5, 138, 0, 0, 2850, 2851, 5, 143, 0, 0, 2851, 2853, 3, 1474, 737, 0, 2852, 2854, 3, 768, 384, 0, 2853, 2852, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2855, 1, 0, 0, 0, 2855, 2856, 5, 360, 0, 0, 2856, 2858, 3, 1168, 584, 0, 2857, 2859, 3, 126, 63, 0, 2858, 2857, 1, 0, 0, 0, 2858, 2859, 1, 0, 0, 0, 2859, 2861, 1, 0, 0, 0, 2860, 2862, 3, 124, 62, 0, 2861, 2860, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 2864, 1, 0, 0, 0, 2863, 2834, 1, 0, 0, 0, 2863, 2840, 1, 0, 0, 0, 2863, 2849, 1, 0, 0, 0, 2864, 155, 1, 0, 0, 0, 2865, 2868, 5, 157, 0, 0, 2866, 2869, 3, 994, 497, 0, 2867, 2869, 5, 30, 0, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2867, 1, 0, 0, 0, 2869, 157, 1, 0, 0, 0, 2870, 2872, 5, 169, 0, 0, 2871, 2873, 3, 172, 86, 0, 2872, 2871, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2876, 3, 1406, 703, 0, 2875, 2877, 3, 240, 120, 0, 2876, 2875, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2880, 3, 160, 80, 0, 2879, 2881, 3, 162, 81, 0, 2880, 2879, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2884, 3, 164, 82, 0, 2883, 2885, 3, 174, 87, 0, 2884, 2883, 1, 0, 0, 0, 2884, 2885, 1, 0, 0, 0, 2885, 2887, 1, 0, 0, 0, 2886, 2888, 3, 14, 7, 0, 2887, 2886, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2891, 3, 166, 83, 0, 2890, 2892, 3, 1144, 572, 0, 2891, 2890, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2908, 1, 0, 0, 0, 2893, 2894, 5, 169, 0, 0, 2894, 2895, 5, 2, 0, 0, 2895, 2896, 3, 942, 471, 0, 2896, 2897, 5, 3, 0, 0, 2897, 2899, 5, 94, 0, 0, 2898, 2900, 3, 162, 81, 0, 2899, 2898, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2901, 1, 0, 0, 0, 2901, 2903, 3, 164, 82, 0, 2902, 2904, 3, 14, 7, 0, 2903, 2902, 1, 0, 0, 0, 2903, 2904, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 2906, 3, 166, 83, 0, 2906, 2908, 1, 0, 0, 0, 2907, 2870, 1, 0, 0, 0, 2907, 2893, 1, 0, 0, 0, 2908, 159, 1, 0, 0, 0, 2909, 2910, 7, 24, 0, 0, 2910, 161, 1, 0, 0, 0, 2911, 2912, 5, 297, 0, 0, 2912, 163, 1, 0, 0, 0, 2913, 2917, 3, 1458, 729, 0, 2914, 2917, 5, 343, 0, 0, 2915, 2917, 5, 344, 0, 0, 2916, 2913, 1, 0, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2915, 1, 0, 0, 0, 2917, 165, 1, 0, 0, 0, 2918, 2924, 3, 168, 84, 0, 2919, 2920, 5, 2, 0, 0, 2920, 2921, 3, 178, 89, 0, 2921, 2922, 5, 3, 0, 0, 2922, 2924, 1, 0, 0, 0, 2923, 2918, 1, 0, 0, 0, 2923, 2919, 1, 0, 0, 0, 2924, 167, 1, 0, 0, 0, 2925, 2927, 3, 170, 85, 0, 2926, 2925, 1, 0, 0, 0, 2927, 2930, 1, 0, 0, 0, 2928, 2926, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 169, 1, 0, 0, 0, 2930, 2928, 1, 0, 0, 0, 2931, 2971, 5, 107, 0, 0, 2932, 2971, 5, 112, 0, 0, 2933, 2935, 5, 183, 0, 0, 2934, 2936, 3, 872, 436, 0, 2935, 2934, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2937, 1, 0, 0, 0, 2937, 2971, 3, 1458, 729, 0, 2938, 2940, 5, 78, 0, 0, 2939, 2941, 3, 872, 436, 0, 2940, 2939, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2971, 3, 1458, 729, 0, 2943, 2971, 5, 171, 0, 0, 2944, 2971, 5, 216, 0, 0, 2945, 2947, 5, 298, 0, 0, 2946, 2948, 3, 872, 436, 0, 2947, 2946, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2949, 1, 0, 0, 0, 2949, 2971, 3, 1458, 729, 0, 2950, 2952, 5, 197, 0, 0, 2951, 2953, 3, 872, 436, 0, 2952, 2951, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2971, 3, 1458, 729, 0, 2955, 2956, 5, 209, 0, 0, 2956, 2957, 5, 298, 0, 0, 2957, 2971, 3, 244, 122, 0, 2958, 2959, 5, 209, 0, 0, 2959, 2960, 5, 298, 0, 0, 2960, 2971, 5, 9, 0, 0, 2961, 2962, 5, 209, 0, 0, 2962, 2963, 5, 77, 0, 0, 2963, 2964, 5, 78, 0, 0, 2964, 2971, 3, 244, 122, 0, 2965, 2966, 5, 209, 0, 0, 2966, 2967, 5, 78, 0, 0, 2967, 2971, 3, 244, 122, 0, 2968, 2969, 5, 194, 0, 0, 2969, 2971, 3, 1458, 729, 0, 2970, 2931, 1, 0, 0, 0, 2970, 2932, 1, 0, 0, 0, 2970, 2933, 1, 0, 0, 0, 2970, 2938, 1, 0, 0, 0, 2970, 2943, 1, 0, 0, 0, 2970, 2944, 1, 0, 0, 0, 2970, 2945, 1, 0, 0, 0, 2970, 2950, 1, 0, 0, 0, 2970, 2955, 1, 0, 0, 0, 2970, 2958, 1, 0, 0, 0, 2970, 2961, 1, 0, 0, 0, 2970, 2965, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2971, 171, 1, 0, 0, 0, 2972, 2973, 5, 107, 0, 0, 2973, 173, 1, 0, 0, 0, 2974, 2976, 3, 176, 88, 0, 2975, 2974, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2978, 5, 184, 0, 0, 2978, 2979, 3, 1458, 729, 0, 2979, 175, 1, 0, 0, 0, 2980, 2981, 5, 100, 0, 0, 2981, 177, 1, 0, 0, 0, 2982, 2987, 3, 180, 90, 0, 2983, 2984, 5, 6, 0, 0, 2984, 2986, 3, 180, 90, 0, 2985, 2983, 1, 0, 0, 0, 2986, 2989, 1, 0, 0, 0, 2987, 2985, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 179, 1, 0, 0, 0, 2989, 2987, 1, 0, 0, 0, 2990, 2992, 3, 1490, 745, 0, 2991, 2993, 3, 182, 91, 0, 2992, 2991, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 181, 1, 0, 0, 0, 2994, 3002, 3, 72, 36, 0, 2995, 3002, 3, 322, 161, 0, 2996, 3002, 5, 9, 0, 0, 2997, 2998, 5, 2, 0, 0, 2998, 2999, 3, 184, 92, 0, 2999, 3000, 5, 3, 0, 0, 3000, 3002, 1, 0, 0, 0, 3001, 2994, 1, 0, 0, 0, 3001, 2995, 1, 0, 0, 0, 3001, 2996, 1, 0, 0, 0, 3001, 2997, 1, 0, 0, 0, 3002, 183, 1, 0, 0, 0, 3003, 3008, 3, 186, 93, 0, 3004, 3005, 5, 6, 0, 0, 3005, 3007, 3, 186, 93, 0, 3006, 3004, 1, 0, 0, 0, 3007, 3010, 1, 0, 0, 0, 3008, 3006, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 185, 1, 0, 0, 0, 3010, 3008, 1, 0, 0, 0, 3011, 3012, 3, 70, 35, 0, 3012, 187, 1, 0, 0, 0, 3013, 3015, 5, 46, 0, 0, 3014, 3016, 3, 190, 95, 0, 3015, 3014, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3019, 5, 92, 0, 0, 3018, 3020, 3, 516, 258, 0, 3019, 3018, 1, 0, 0, 0, 3019, 3020, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3087, 3, 1404, 702, 0, 3022, 3024, 5, 2, 0, 0, 3023, 3025, 3, 192, 96, 0, 3024, 3023, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3026, 1, 0, 0, 0, 3026, 3028, 5, 3, 0, 0, 3027, 3029, 3, 266, 133, 0, 3028, 3027, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 3031, 1, 0, 0, 0, 3030, 3032, 3, 268, 134, 0, 3031, 3030, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3034, 1, 0, 0, 0, 3033, 3035, 3, 276, 138, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3037, 1, 0, 0, 0, 3036, 3038, 3, 278, 139, 0, 3037, 3036, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3040, 1, 0, 0, 0, 3039, 3041, 3, 280, 140, 0, 3040, 3039, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3043, 1, 0, 0, 0, 3042, 3044, 3, 282, 141, 0, 3043, 3042, 1, 0, 0, 0, 3043, 3044, 1, 0, 0, 0, 3044, 3088, 1, 0, 0, 0, 3045, 3046, 5, 275, 0, 0, 3046, 3048, 3, 558, 279, 0, 3047, 3049, 3, 196, 98, 0, 3048, 3047, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 3051, 1, 0, 0, 0, 3050, 3052, 3, 268, 134, 0, 3051, 3050, 1, 0, 0, 0, 3051, 3052, 1, 0, 0, 0, 3052, 3054, 1, 0, 0, 0, 3053, 3055, 3, 276, 138, 0, 3054, 3053, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3057, 1, 0, 0, 0, 3056, 3058, 3, 278, 139, 0, 3057, 3056, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 3060, 1, 0, 0, 0, 3059, 3061, 3, 280, 140, 0, 3060, 3059, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3063, 1, 0, 0, 0, 3062, 3064, 3, 282, 141, 0, 3063, 3062, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3088, 1, 0, 0, 0, 3065, 3066, 5, 285, 0, 0, 3066, 3067, 5, 275, 0, 0, 3067, 3069, 3, 1412, 706, 0, 3068, 3070, 3, 196, 98, 0, 3069, 3068, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3073, 3, 144, 72, 0, 3072, 3074, 3, 268, 134, 0, 3073, 3072, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3076, 1, 0, 0, 0, 3075, 3077, 3, 276, 138, 0, 3076, 3075, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3079, 1, 0, 0, 0, 3078, 3080, 3, 278, 139, 0, 3079, 3078, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3082, 1, 0, 0, 0, 3081, 3083, 3, 280, 140, 0, 3082, 3081, 1, 0, 0, 0, 3082, 3083, 1, 0, 0, 0, 3083, 3085, 1, 0, 0, 0, 3084, 3086, 3, 282, 141, 0, 3085, 3084, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3088, 1, 0, 0, 0, 3087, 3022, 1, 0, 0, 0, 3087, 3045, 1, 0, 0, 0, 3087, 3065, 1, 0, 0, 0, 3088, 189, 1, 0, 0, 0, 3089, 3097, 5, 354, 0, 0, 3090, 3097, 5, 352, 0, 0, 3091, 3092, 5, 254, 0, 0, 3092, 3097, 7, 25, 0, 0, 3093, 3094, 5, 213, 0, 0, 3094, 3097, 7, 25, 0, 0, 3095, 3097, 5, 367, 0, 0, 3096, 3089, 1, 0, 0, 0, 3096, 3090, 1, 0, 0, 0, 3096, 3091, 1, 0, 0, 0, 3096, 3093, 1, 0, 0, 0, 3096, 3095, 1, 0, 0, 0, 3097, 191, 1, 0, 0, 0, 3098, 3099, 3, 198, 99, 0, 3099, 193, 1, 0, 0, 0, 3100, 3101, 3, 198, 99, 0, 3101, 195, 1, 0, 0, 0, 3102, 3103, 5, 2, 0, 0, 3103, 3104, 3, 200, 100, 0, 3104, 3105, 5, 3, 0, 0, 3105, 197, 1, 0, 0, 0, 3106, 3111, 3, 202, 101, 0, 3107, 3108, 5, 6, 0, 0, 3108, 3110, 3, 202, 101, 0, 3109, 3107, 1, 0, 0, 0, 3110, 3113, 1, 0, 0, 0, 3111, 3109, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 199, 1, 0, 0, 0, 3113, 3111, 1, 0, 0, 0, 3114, 3119, 3, 204, 102, 0, 3115, 3116, 5, 6, 0, 0, 3116, 3118, 3, 204, 102, 0, 3117, 3115, 1, 0, 0, 0, 3118, 3121, 1, 0, 0, 0, 3119, 3117, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 201, 1, 0, 0, 0, 3121, 3119, 1, 0, 0, 0, 3122, 3126, 3, 206, 103, 0, 3123, 3126, 3, 228, 114, 0, 3124, 3126, 3, 234, 117, 0, 3125, 3122, 1, 0, 0, 0, 3125, 3123, 1, 0, 0, 0, 3125, 3124, 1, 0, 0, 0, 3126, 203, 1, 0, 0, 0, 3127, 3130, 3, 212, 106, 0, 3128, 3130, 3, 234, 117, 0, 3129, 3127, 1, 0, 0, 0, 3129, 3128, 1, 0, 0, 0, 3130, 205, 1, 0, 0, 0, 3131, 3132, 3, 1434, 717, 0, 3132, 3134, 3, 1168, 584, 0, 3133, 3135, 3, 368, 184, 0, 3134, 3133, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3137, 1, 0, 0, 0, 3136, 3138, 3, 210, 105, 0, 3137, 3136, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3140, 1, 0, 0, 0, 3139, 3141, 3, 208, 104, 0, 3140, 3139, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3144, 1, 0, 0, 0, 3142, 3143, 5, 43, 0, 0, 3143, 3145, 3, 558, 279, 0, 3144, 3142, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3148, 1, 0, 0, 0, 3146, 3147, 5, 105, 0, 0, 3147, 3149, 5, 280, 0, 0, 3148, 3146, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 3, 214, 107, 0, 3151, 207, 1, 0, 0, 0, 3152, 3153, 5, 543, 0, 0, 3153, 3154, 3, 1474, 737, 0, 3154, 209, 1, 0, 0, 0, 3155, 3162, 5, 345, 0, 0, 3156, 3163, 5, 544, 0, 0, 3157, 3163, 5, 205, 0, 0, 3158, 3163, 5, 545, 0, 0, 3159, 3163, 5, 546, 0, 0, 3160, 3163, 5, 53, 0, 0, 3161, 3163, 3, 1474, 737, 0, 3162, 3156, 1, 0, 0, 0, 3162, 3157, 1, 0, 0, 0, 3162, 3158, 1, 0, 0, 0, 3162, 3159, 1, 0, 0, 0, 3162, 3160, 1, 0, 0, 0, 3162, 3161, 1, 0, 0, 0, 3163, 211, 1, 0, 0, 0, 3164, 3167, 3, 1434, 717, 0, 3165, 3166, 5, 105, 0, 0, 3166, 3168, 5, 280, 0, 0, 3167, 3165, 1, 0, 0, 0, 3167, 3168, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3170, 3, 214, 107, 0, 3170, 213, 1, 0, 0, 0, 3171, 3173, 3, 216, 108, 0, 3172, 3171, 1, 0, 0, 0, 3173, 3176, 1, 0, 0, 0, 3174, 3172, 1, 0, 0, 0, 3174, 3175, 1, 0, 0, 0, 3175, 215, 1, 0, 0, 0, 3176, 3174, 1, 0, 0, 0, 3177, 3178, 5, 45, 0, 0, 3178, 3180, 3, 1436, 718, 0, 3179, 3177, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3181, 1, 0, 0, 0, 3181, 3183, 3, 218, 109, 0, 3182, 3184, 3, 224, 112, 0, 3183, 3182, 1, 0, 0, 0, 3183, 3184, 1, 0, 0, 0, 3184, 3186, 1, 0, 0, 0, 3185, 3187, 3, 226, 113, 0, 3186, 3185, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3196, 1, 0, 0, 0, 3188, 3190, 3, 218, 109, 0, 3189, 3191, 3, 224, 112, 0, 3190, 3189, 1, 0, 0, 0, 3190, 3191, 1, 0, 0, 0, 3191, 3193, 1, 0, 0, 0, 3192, 3194, 3, 226, 113, 0, 3193, 3192, 1, 0, 0, 0, 3193, 3194, 1, 0, 0, 0, 3194, 3196, 1, 0, 0, 0, 3195, 3179, 1, 0, 0, 0, 3195, 3188, 1, 0, 0, 0, 3196, 217, 1, 0, 0, 0, 3197, 3198, 5, 77, 0, 0, 3198, 3256, 5, 78, 0, 0, 3199, 3256, 5, 78, 0, 0, 3200, 3202, 5, 98, 0, 0, 3201, 3203, 3, 710, 355, 0, 3202, 3201, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3205, 1, 0, 0, 0, 3204, 3206, 3, 286, 143, 0, 3205, 3204, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3256, 1, 0, 0, 0, 3207, 3209, 5, 98, 0, 0, 3208, 3210, 3, 220, 110, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3256, 3, 284, 142, 0, 3212, 3213, 5, 85, 0, 0, 3213, 3215, 5, 245, 0, 0, 3214, 3216, 3, 710, 355, 0, 3215, 3214, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3218, 1, 0, 0, 0, 3217, 3219, 3, 286, 143, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3256, 1, 0, 0, 0, 3220, 3221, 5, 42, 0, 0, 3221, 3222, 5, 2, 0, 0, 3222, 3223, 3, 1212, 606, 0, 3223, 3225, 5, 3, 0, 0, 3224, 3226, 3, 238, 119, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3256, 1, 0, 0, 0, 3227, 3228, 5, 53, 0, 0, 3228, 3256, 3, 1252, 626, 0, 3229, 3230, 5, 438, 0, 0, 3230, 3231, 3, 222, 111, 0, 3231, 3241, 5, 36, 0, 0, 3232, 3234, 5, 219, 0, 0, 3233, 3235, 3, 314, 157, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3242, 1, 0, 0, 0, 3236, 3237, 5, 2, 0, 0, 3237, 3238, 3, 1212, 606, 0, 3238, 3239, 5, 3, 0, 0, 3239, 3240, 5, 440, 0, 0, 3240, 3242, 1, 0, 0, 0, 3241, 3232, 1, 0, 0, 0, 3241, 3236, 1, 0, 0, 0, 3242, 3256, 1, 0, 0, 0, 3243, 3244, 5, 86, 0, 0, 3244, 3246, 3, 1412, 706, 0, 3245, 3247, 3, 240, 120, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 250, 125, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 258, 129, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3256, 1, 0, 0, 0, 3254, 3256, 3, 646, 323, 0, 3255, 3197, 1, 0, 0, 0, 3255, 3199, 1, 0, 0, 0, 3255, 3200, 1, 0, 0, 0, 3255, 3207, 1, 0, 0, 0, 3255, 3212, 1, 0, 0, 0, 3255, 3220, 1, 0, 0, 0, 3255, 3227, 1, 0, 0, 0, 3255, 3229, 1, 0, 0, 0, 3255, 3243, 1, 0, 0, 0, 3255, 3254, 1, 0, 0, 0, 3256, 219, 1, 0, 0, 0, 3257, 3259, 5, 273, 0, 0, 3258, 3260, 5, 77, 0, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3262, 5, 56, 0, 0, 3262, 221, 1, 0, 0, 0, 3263, 3267, 5, 139, 0, 0, 3264, 3265, 5, 147, 0, 0, 3265, 3267, 5, 53, 0, 0, 3266, 3263, 1, 0, 0, 0, 3266, 3264, 1, 0, 0, 0, 3267, 223, 1, 0, 0, 0, 3268, 3272, 5, 54, 0, 0, 3269, 3270, 5, 77, 0, 0, 3270, 3272, 5, 54, 0, 0, 3271, 3268, 1, 0, 0, 0, 3271, 3269, 1, 0, 0, 0, 3272, 225, 1, 0, 0, 0, 3273, 3274, 5, 69, 0, 0, 3274, 3275, 7, 16, 0, 0, 3275, 227, 1, 0, 0, 0, 3276, 3277, 5, 120, 0, 0, 3277, 3278, 3, 1412, 706, 0, 3278, 3279, 3, 230, 115, 0, 3279, 229, 1, 0, 0, 0, 3280, 3281, 7, 26, 0, 0, 3281, 3283, 3, 232, 116, 0, 3282, 3280, 1, 0, 0, 0, 3283, 3286, 1, 0, 0, 0, 3284, 3282, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 231, 1, 0, 0, 0, 3286, 3284, 1, 0, 0, 0, 3287, 3288, 7, 27, 0, 0, 3288, 233, 1, 0, 0, 0, 3289, 3290, 5, 45, 0, 0, 3290, 3291, 3, 1436, 718, 0, 3291, 3292, 3, 236, 118, 0, 3292, 3295, 1, 0, 0, 0, 3293, 3295, 3, 236, 118, 0, 3294, 3289, 1, 0, 0, 0, 3294, 3293, 1, 0, 0, 0, 3295, 235, 1, 0, 0, 0, 3296, 3297, 5, 42, 0, 0, 3297, 3298, 5, 2, 0, 0, 3298, 3299, 3, 1212, 606, 0, 3299, 3300, 5, 3, 0, 0, 3300, 3301, 3, 476, 238, 0, 3301, 3383, 1, 0, 0, 0, 3302, 3320, 5, 98, 0, 0, 3303, 3304, 5, 2, 0, 0, 3304, 3305, 3, 244, 122, 0, 3305, 3307, 5, 3, 0, 0, 3306, 3308, 3, 248, 124, 0, 3307, 3306, 1, 0, 0, 0, 3307, 3308, 1, 0, 0, 0, 3308, 3310, 1, 0, 0, 0, 3309, 3311, 3, 710, 355, 0, 3310, 3309, 1, 0, 0, 0, 3310, 3311, 1, 0, 0, 0, 3311, 3313, 1, 0, 0, 0, 3312, 3314, 3, 286, 143, 0, 3313, 3312, 1, 0, 0, 0, 3313, 3314, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3316, 3, 476, 238, 0, 3316, 3321, 1, 0, 0, 0, 3317, 3318, 3, 288, 144, 0, 3318, 3319, 3, 476, 238, 0, 3319, 3321, 1, 0, 0, 0, 3320, 3303, 1, 0, 0, 0, 3320, 3317, 1, 0, 0, 0, 3321, 3383, 1, 0, 0, 0, 3322, 3323, 5, 85, 0, 0, 3323, 3341, 5, 245, 0, 0, 3324, 3325, 5, 2, 0, 0, 3325, 3326, 3, 244, 122, 0, 3326, 3328, 5, 3, 0, 0, 3327, 3329, 3, 248, 124, 0, 3328, 3327, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3331, 1, 0, 0, 0, 3330, 3332, 3, 710, 355, 0, 3331, 3330, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3334, 1, 0, 0, 0, 3333, 3335, 3, 286, 143, 0, 3334, 3333, 1, 0, 0, 0, 3334, 3335, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 3337, 3, 476, 238, 0, 3337, 3342, 1, 0, 0, 0, 3338, 3339, 3, 288, 144, 0, 3339, 3340, 3, 476, 238, 0, 3340, 3342, 1, 0, 0, 0, 3341, 3324, 1, 0, 0, 0, 3341, 3338, 1, 0, 0, 0, 3342, 3383, 1, 0, 0, 0, 3343, 3345, 5, 199, 0, 0, 3344, 3346, 3, 634, 317, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3348, 5, 2, 0, 0, 3348, 3349, 3, 252, 126, 0, 3349, 3351, 5, 3, 0, 0, 3350, 3352, 3, 248, 124, 0, 3351, 3350, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3354, 1, 0, 0, 0, 3353, 3355, 3, 710, 355, 0, 3354, 3353, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3357, 1, 0, 0, 0, 3356, 3358, 3, 286, 143, 0, 3357, 3356, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3360, 1, 0, 0, 0, 3359, 3361, 3, 256, 128, 0, 3360, 3359, 1, 0, 0, 0, 3360, 3361, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 3363, 3, 476, 238, 0, 3363, 3383, 1, 0, 0, 0, 3364, 3365, 5, 63, 0, 0, 3365, 3366, 5, 245, 0, 0, 3366, 3367, 5, 2, 0, 0, 3367, 3368, 3, 244, 122, 0, 3368, 3369, 5, 3, 0, 0, 3369, 3370, 5, 86, 0, 0, 3370, 3372, 3, 1412, 706, 0, 3371, 3373, 3, 240, 120, 0, 3372, 3371, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3375, 1, 0, 0, 0, 3374, 3376, 3, 250, 125, 0, 3375, 3374, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3378, 1, 0, 0, 0, 3377, 3379, 3, 258, 129, 0, 3378, 3377, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3381, 3, 476, 238, 0, 3381, 3383, 1, 0, 0, 0, 3382, 3296, 1, 0, 0, 0, 3382, 3302, 1, 0, 0, 0, 3382, 3322, 1, 0, 0, 0, 3382, 3343, 1, 0, 0, 0, 3382, 3364, 1, 0, 0, 0, 3383, 237, 1, 0, 0, 0, 3384, 3385, 5, 269, 0, 0, 3385, 3386, 5, 228, 0, 0, 3386, 239, 1, 0, 0, 0, 3387, 3388, 5, 2, 0, 0, 3388, 3389, 3, 244, 122, 0, 3389, 3390, 5, 3, 0, 0, 3390, 241, 1, 0, 0, 0, 3391, 3392, 5, 2, 0, 0, 3392, 3393, 3, 246, 123, 0, 3393, 3394, 5, 3, 0, 0, 3394, 243, 1, 0, 0, 0, 3395, 3400, 3, 1432, 716, 0, 3396, 3397, 5, 6, 0, 0, 3397, 3399, 3, 1432, 716, 0, 3398, 3396, 1, 0, 0, 0, 3399, 3402, 1, 0, 0, 0, 3400, 3398, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 245, 1, 0, 0, 0, 3402, 3400, 1, 0, 0, 0, 3403, 3408, 3, 1434, 717, 0, 3404, 3405, 5, 6, 0, 0, 3405, 3407, 3, 1434, 717, 0, 3406, 3404, 1, 0, 0, 0, 3407, 3410, 1, 0, 0, 0, 3408, 3406, 1, 0, 0, 0, 3408, 3409, 1, 0, 0, 0, 3409, 247, 1, 0, 0, 0, 3410, 3408, 1, 0, 0, 0, 3411, 3412, 5, 441, 0, 0, 3412, 3413, 5, 2, 0, 0, 3413, 3414, 3, 244, 122, 0, 3414, 3415, 5, 3, 0, 0, 3415, 249, 1, 0, 0, 0, 3416, 3417, 5, 258, 0, 0, 3417, 3418, 7, 28, 0, 0, 3418, 251, 1, 0, 0, 0, 3419, 3424, 3, 254, 127, 0, 3420, 3421, 5, 6, 0, 0, 3421, 3423, 3, 254, 127, 0, 3422, 3420, 1, 0, 0, 0, 3423, 3426, 1, 0, 0, 0, 3424, 3422, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 253, 1, 0, 0, 0, 3426, 3424, 1, 0, 0, 0, 3427, 3428, 3, 640, 320, 0, 3428, 3435, 5, 105, 0, 0, 3429, 3436, 3, 732, 366, 0, 3430, 3431, 5, 278, 0, 0, 3431, 3432, 5, 2, 0, 0, 3432, 3433, 3, 732, 366, 0, 3433, 3434, 5, 3, 0, 0, 3434, 3436, 1, 0, 0, 0, 3435, 3429, 1, 0, 0, 0, 3435, 3430, 1, 0, 0, 0, 3436, 255, 1, 0, 0, 0, 3437, 3438, 5, 103, 0, 0, 3438, 3439, 5, 2, 0, 0, 3439, 3440, 3, 1212, 606, 0, 3440, 3441, 5, 3, 0, 0, 3441, 257, 1, 0, 0, 0, 3442, 3451, 3, 260, 130, 0, 3443, 3451, 3, 262, 131, 0, 3444, 3445, 3, 260, 130, 0, 3445, 3446, 3, 262, 131, 0, 3446, 3451, 1, 0, 0, 0, 3447, 3448, 3, 262, 131, 0, 3448, 3449, 3, 260, 130, 0, 3449, 3451, 1, 0, 0, 0, 3450, 3442, 1, 0, 0, 0, 3450, 3443, 1, 0, 0, 0, 3450, 3444, 1, 0, 0, 0, 3450, 3447, 1, 0, 0, 0, 3451, 259, 1, 0, 0, 0, 3452, 3453, 5, 80, 0, 0, 3453, 3454, 5, 369, 0, 0, 3454, 3455, 3, 264, 132, 0, 3455, 261, 1, 0, 0, 0, 3456, 3457, 5, 80, 0, 0, 3457, 3458, 5, 182, 0, 0, 3458, 3459, 3, 264, 132, 0, 3459, 263, 1, 0, 0, 0, 3460, 3461, 5, 269, 0, 0, 3461, 3470, 5, 132, 0, 0, 3462, 3470, 5, 315, 0, 0, 3463, 3470, 5, 150, 0, 0, 3464, 3465, 5, 333, 0, 0, 3465, 3467, 7, 29, 0, 0, 3466, 3468, 3, 244, 122, 0, 3467, 3466, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 3470, 1, 0, 0, 0, 3469, 3460, 1, 0, 0, 0, 3469, 3462, 1, 0, 0, 0, 3469, 3463, 1, 0, 0, 0, 3469, 3464, 1, 0, 0, 0, 3470, 265, 1, 0, 0, 0, 3471, 3472, 5, 238, 0, 0, 3472, 3473, 5, 2, 0, 0, 3473, 3474, 3, 1390, 695, 0, 3474, 3475, 5, 3, 0, 0, 3475, 267, 1, 0, 0, 0, 3476, 3477, 3, 270, 135, 0, 3477, 269, 1, 0, 0, 0, 3478, 3479, 5, 285, 0, 0, 3479, 3480, 5, 147, 0, 0, 3480, 3481, 3, 1474, 737, 0, 3481, 3482, 5, 2, 0, 0, 3482, 3483, 3, 272, 136, 0, 3483, 3484, 5, 3, 0, 0, 3484, 271, 1, 0, 0, 0, 3485, 3490, 3, 274, 137, 0, 3486, 3487, 5, 6, 0, 0, 3487, 3489, 3, 274, 137, 0, 3488, 3486, 1, 0, 0, 0, 3489, 3492, 1, 0, 0, 0, 3490, 3488, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 273, 1, 0, 0, 0, 3492, 3490, 1, 0, 0, 0, 3493, 3495, 3, 1432, 716, 0, 3494, 3496, 3, 646, 323, 0, 3495, 3494, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3498, 1, 0, 0, 0, 3497, 3499, 3, 648, 324, 0, 3498, 3497, 1, 0, 0, 0, 3498, 3499, 1, 0, 0, 0, 3499, 3517, 1, 0, 0, 0, 3500, 3502, 3, 1262, 631, 0, 3501, 3503, 3, 646, 323, 0, 3502, 3501, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3505, 1, 0, 0, 0, 3504, 3506, 3, 648, 324, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3517, 1, 0, 0, 0, 3507, 3508, 5, 2, 0, 0, 3508, 3509, 3, 1212, 606, 0, 3509, 3511, 5, 3, 0, 0, 3510, 3512, 3, 646, 323, 0, 3511, 3510, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3514, 1, 0, 0, 0, 3513, 3515, 3, 648, 324, 0, 3514, 3513, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 3517, 1, 0, 0, 0, 3516, 3493, 1, 0, 0, 0, 3516, 3500, 1, 0, 0, 0, 3516, 3507, 1, 0, 0, 0, 3517, 275, 1, 0, 0, 0, 3518, 3519, 5, 100, 0, 0, 3519, 3520, 3, 1436, 718, 0, 3520, 277, 1, 0, 0, 0, 3521, 3522, 5, 105, 0, 0, 3522, 3528, 3, 132, 66, 0, 3523, 3524, 5, 379, 0, 0, 3524, 3528, 5, 277, 0, 0, 3525, 3526, 5, 105, 0, 0, 3526, 3528, 5, 277, 0, 0, 3527, 3521, 1, 0, 0, 0, 3527, 3523, 1, 0, 0, 0, 3527, 3525, 1, 0, 0, 0, 3528, 279, 1, 0, 0, 0, 3529, 3530, 5, 80, 0, 0, 3530, 3536, 5, 161, 0, 0, 3531, 3537, 5, 191, 0, 0, 3532, 3533, 5, 182, 0, 0, 3533, 3537, 5, 320, 0, 0, 3534, 3535, 5, 292, 0, 0, 3535, 3537, 5, 320, 0, 0, 3536, 3531, 1, 0, 0, 0, 3536, 3532, 1, 0, 0, 0, 3536, 3534, 1, 0, 0, 0, 3537, 281, 1, 0, 0, 0, 3538, 3539, 5, 351, 0, 0, 3539, 3540, 3, 1402, 701, 0, 3540, 283, 1, 0, 0, 0, 3541, 3543, 3, 642, 321, 0, 3542, 3541, 1, 0, 0, 0, 3542, 3543, 1, 0, 0, 0, 3543, 3545, 1, 0, 0, 0, 3544, 3546, 3, 1014, 507, 0, 3545, 3544, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3548, 1, 0, 0, 0, 3547, 3549, 3, 286, 143, 0, 3548, 3547, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 285, 1, 0, 0, 0, 3550, 3551, 5, 100, 0, 0, 3551, 3552, 5, 226, 0, 0, 3552, 3553, 5, 351, 0, 0, 3553, 3554, 3, 1402, 701, 0, 3554, 287, 1, 0, 0, 0, 3555, 3556, 5, 100, 0, 0, 3556, 3557, 5, 226, 0, 0, 3557, 3558, 3, 1436, 718, 0, 3558, 289, 1, 0, 0, 0, 3559, 3560, 5, 46, 0, 0, 3560, 3565, 5, 342, 0, 0, 3561, 3563, 3, 516, 258, 0, 3562, 3561, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3566, 3, 558, 279, 0, 3565, 3562, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3569, 3, 918, 459, 0, 3568, 3567, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3573, 5, 80, 0, 0, 3571, 3574, 3, 1332, 666, 0, 3572, 3574, 3, 1328, 664, 0, 3573, 3571, 1, 0, 0, 0, 3573, 3572, 1, 0, 0, 0, 3574, 3575, 1, 0, 0, 0, 3575, 3576, 5, 64, 0, 0, 3576, 3577, 3, 1104, 552, 0, 3577, 291, 1, 0, 0, 0, 3578, 3579, 5, 138, 0, 0, 3579, 3581, 5, 342, 0, 0, 3580, 3582, 3, 748, 374, 0, 3581, 3580, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3584, 3, 558, 279, 0, 3584, 3585, 5, 333, 0, 0, 3585, 3586, 5, 342, 0, 0, 3586, 3587, 3, 1464, 732, 0, 3587, 293, 1, 0, 0, 0, 3588, 3590, 5, 46, 0, 0, 3589, 3591, 3, 190, 95, 0, 3590, 3589, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 3594, 5, 92, 0, 0, 3593, 3595, 3, 516, 258, 0, 3594, 3593, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3597, 3, 296, 148, 0, 3597, 3598, 5, 36, 0, 0, 3598, 3600, 3, 1000, 500, 0, 3599, 3601, 3, 298, 149, 0, 3600, 3599, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 295, 1, 0, 0, 0, 3602, 3604, 3, 1404, 702, 0, 3603, 3605, 3, 242, 121, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 276, 138, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3611, 3, 278, 139, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3613, 1, 0, 0, 0, 3612, 3614, 3, 280, 140, 0, 3613, 3612, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3616, 1, 0, 0, 0, 3615, 3617, 3, 282, 141, 0, 3616, 3615, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 297, 1, 0, 0, 0, 3618, 3622, 5, 105, 0, 0, 3619, 3623, 5, 174, 0, 0, 3620, 3621, 5, 269, 0, 0, 3621, 3623, 5, 174, 0, 0, 3622, 3619, 1, 0, 0, 0, 3622, 3620, 1, 0, 0, 0, 3623, 299, 1, 0, 0, 0, 3624, 3626, 5, 46, 0, 0, 3625, 3627, 3, 304, 152, 0, 3626, 3625, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 3629, 5, 259, 0, 0, 3629, 3631, 5, 376, 0, 0, 3630, 3632, 3, 516, 258, 0, 3631, 3630, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3634, 3, 302, 151, 0, 3634, 3635, 5, 36, 0, 0, 3635, 3637, 3, 1000, 500, 0, 3636, 3638, 3, 298, 149, 0, 3637, 3636, 1, 0, 0, 0, 3637, 3638, 1, 0, 0, 0, 3638, 301, 1, 0, 0, 0, 3639, 3641, 3, 1408, 704, 0, 3640, 3642, 3, 242, 121, 0, 3641, 3640, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3644, 1, 0, 0, 0, 3643, 3645, 3, 276, 138, 0, 3644, 3643, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 3647, 1, 0, 0, 0, 3646, 3648, 3, 134, 67, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3650, 1, 0, 0, 0, 3649, 3651, 3, 282, 141, 0, 3650, 3649, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 303, 1, 0, 0, 0, 3652, 3653, 5, 367, 0, 0, 3653, 305, 1, 0, 0, 0, 3654, 3655, 5, 305, 0, 0, 3655, 3656, 5, 259, 0, 0, 3656, 3658, 5, 376, 0, 0, 3657, 3659, 3, 630, 315, 0, 3658, 3657, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3662, 3, 1410, 705, 0, 3661, 3663, 3, 298, 149, 0, 3662, 3661, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 307, 1, 0, 0, 0, 3664, 3666, 5, 46, 0, 0, 3665, 3667, 3, 190, 95, 0, 3666, 3665, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3670, 5, 328, 0, 0, 3669, 3671, 3, 516, 258, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3674, 3, 1412, 706, 0, 3673, 3675, 3, 312, 156, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 309, 1, 0, 0, 0, 3676, 3677, 5, 138, 0, 0, 3677, 3679, 5, 328, 0, 0, 3678, 3680, 3, 748, 374, 0, 3679, 3678, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3682, 3, 1412, 706, 0, 3682, 3683, 3, 316, 158, 0, 3683, 311, 1, 0, 0, 0, 3684, 3685, 3, 316, 158, 0, 3685, 313, 1, 0, 0, 0, 3686, 3687, 5, 2, 0, 0, 3687, 3688, 3, 316, 158, 0, 3688, 3689, 5, 3, 0, 0, 3689, 315, 1, 0, 0, 0, 3690, 3692, 3, 318, 159, 0, 3691, 3690, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3691, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 317, 1, 0, 0, 0, 3695, 3696, 5, 36, 0, 0, 3696, 3730, 3, 1172, 586, 0, 3697, 3698, 5, 148, 0, 0, 3698, 3730, 3, 322, 161, 0, 3699, 3730, 5, 173, 0, 0, 3700, 3702, 5, 225, 0, 0, 3701, 3703, 3, 320, 160, 0, 3702, 3701, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3730, 3, 322, 161, 0, 3705, 3706, 5, 260, 0, 0, 3706, 3730, 3, 322, 161, 0, 3707, 3708, 5, 262, 0, 0, 3708, 3730, 3, 322, 161, 0, 3709, 3710, 5, 269, 0, 0, 3710, 3730, 7, 30, 0, 0, 3711, 3712, 5, 281, 0, 0, 3712, 3713, 5, 147, 0, 0, 3713, 3730, 3, 1432, 716, 0, 3714, 3715, 5, 328, 0, 0, 3715, 3716, 5, 266, 0, 0, 3716, 3730, 3, 558, 279, 0, 3717, 3719, 5, 340, 0, 0, 3718, 3720, 3, 14, 7, 0, 3719, 3718, 1, 0, 0, 0, 3719, 3720, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3730, 3, 322, 161, 0, 3722, 3724, 5, 314, 0, 0, 3723, 3725, 3, 14, 7, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3727, 1, 0, 0, 0, 3726, 3728, 3, 322, 161, 0, 3727, 3726, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3730, 1, 0, 0, 0, 3729, 3695, 1, 0, 0, 0, 3729, 3697, 1, 0, 0, 0, 3729, 3699, 1, 0, 0, 0, 3729, 3700, 1, 0, 0, 0, 3729, 3705, 1, 0, 0, 0, 3729, 3707, 1, 0, 0, 0, 3729, 3709, 1, 0, 0, 0, 3729, 3711, 1, 0, 0, 0, 3729, 3714, 1, 0, 0, 0, 3729, 3717, 1, 0, 0, 0, 3729, 3722, 1, 0, 0, 0, 3730, 319, 1, 0, 0, 0, 3731, 3732, 5, 147, 0, 0, 3732, 321, 1, 0, 0, 0, 3733, 3740, 3, 1454, 727, 0, 3734, 3735, 5, 12, 0, 0, 3735, 3740, 3, 1454, 727, 0, 3736, 3737, 5, 13, 0, 0, 3737, 3740, 3, 1454, 727, 0, 3738, 3740, 3, 1464, 732, 0, 3739, 3733, 1, 0, 0, 0, 3739, 3734, 1, 0, 0, 0, 3739, 3736, 1, 0, 0, 0, 3739, 3738, 1, 0, 0, 0, 3740, 323, 1, 0, 0, 0, 3741, 3746, 3, 322, 161, 0, 3742, 3743, 5, 6, 0, 0, 3743, 3745, 3, 322, 161, 0, 3744, 3742, 1, 0, 0, 0, 3745, 3748, 1, 0, 0, 0, 3746, 3744, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 325, 1, 0, 0, 0, 3748, 3746, 1, 0, 0, 0, 3749, 3751, 5, 46, 0, 0, 3750, 3752, 3, 658, 329, 0, 3751, 3750, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3754, 1, 0, 0, 0, 3753, 3755, 3, 328, 164, 0, 3754, 3753, 1, 0, 0, 0, 3754, 3755, 1, 0, 0, 0, 3755, 3757, 1, 0, 0, 0, 3756, 3758, 3, 338, 169, 0, 3757, 3756, 1, 0, 0, 0, 3757, 3758, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3760, 5, 247, 0, 0, 3760, 3769, 3, 1436, 718, 0, 3761, 3762, 5, 215, 0, 0, 3762, 3764, 3, 330, 165, 0, 3763, 3765, 3, 332, 166, 0, 3764, 3763, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3767, 1, 0, 0, 0, 3766, 3768, 3, 336, 168, 0, 3767, 3766, 1, 0, 0, 0, 3767, 3768, 1, 0, 0, 0, 3768, 3770, 1, 0, 0, 0, 3769, 3761, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 327, 1, 0, 0, 0, 3771, 3772, 5, 359, 0, 0, 3772, 329, 1, 0, 0, 0, 3773, 3775, 3, 1436, 718, 0, 3774, 3776, 3, 560, 280, 0, 3775, 3774, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 331, 1, 0, 0, 0, 3777, 3778, 5, 239, 0, 0, 3778, 3779, 3, 330, 165, 0, 3779, 333, 1, 0, 0, 0, 3780, 3781, 5, 373, 0, 0, 3781, 3785, 3, 330, 165, 0, 3782, 3783, 5, 269, 0, 0, 3783, 3785, 5, 373, 0, 0, 3784, 3780, 1, 0, 0, 0, 3784, 3782, 1, 0, 0, 0, 3785, 335, 1, 0, 0, 0, 3786, 3787, 3, 334, 167, 0, 3787, 337, 1, 0, 0, 0, 3788, 3789, 5, 295, 0, 0, 3789, 339, 1, 0, 0, 0, 3790, 3791, 5, 46, 0, 0, 3791, 3792, 5, 351, 0, 0, 3792, 3794, 3, 1402, 701, 0, 3793, 3795, 3, 342, 171, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3797, 5, 255, 0, 0, 3797, 3799, 3, 1458, 729, 0, 3798, 3800, 3, 134, 67, 0, 3799, 3798, 1, 0, 0, 0, 3799, 3800, 1, 0, 0, 0, 3800, 341, 1, 0, 0, 0, 3801, 3802, 5, 282, 0, 0, 3802, 3803, 3, 1470, 735, 0, 3803, 343, 1, 0, 0, 0, 3804, 3805, 5, 46, 0, 0, 3805, 3807, 5, 204, 0, 0, 3806, 3808, 3, 516, 258, 0, 3807, 3806, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3811, 3, 1436, 718, 0, 3810, 3812, 3, 14, 7, 0, 3811, 3810, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 3, 346, 173, 0, 3814, 345, 1, 0, 0, 0, 3815, 3817, 3, 348, 174, 0, 3816, 3815, 1, 0, 0, 0, 3817, 3820, 1, 0, 0, 0, 3818, 3816, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 347, 1, 0, 0, 0, 3820, 3818, 1, 0, 0, 0, 3821, 3822, 5, 323, 0, 0, 3822, 3829, 3, 1422, 711, 0, 3823, 3824, 5, 375, 0, 0, 3824, 3829, 3, 80, 40, 0, 3825, 3826, 5, 64, 0, 0, 3826, 3829, 3, 80, 40, 0, 3827, 3829, 5, 150, 0, 0, 3828, 3821, 1, 0, 0, 0, 3828, 3823, 1, 0, 0, 0, 3828, 3825, 1, 0, 0, 0, 3828, 3827, 1, 0, 0, 0, 3829, 349, 1, 0, 0, 0, 3830, 3831, 5, 138, 0, 0, 3831, 3832, 5, 204, 0, 0, 3832, 3833, 3, 1436, 718, 0, 3833, 3834, 5, 369, 0, 0, 3834, 3835, 3, 352, 176, 0, 3835, 351, 1, 0, 0, 0, 3836, 3838, 3, 354, 177, 0, 3837, 3836, 1, 0, 0, 0, 3838, 3841, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3839, 3840, 1, 0, 0, 0, 3840, 353, 1, 0, 0, 0, 3841, 3839, 1, 0, 0, 0, 3842, 3843, 5, 94, 0, 0, 3843, 3844, 3, 80, 40, 0, 3844, 355, 1, 0, 0, 0, 3845, 3846, 5, 138, 0, 0, 3846, 3847, 5, 204, 0, 0, 3847, 3848, 3, 1436, 718, 0, 3848, 3849, 3, 44, 22, 0, 3849, 3850, 3, 548, 274, 0, 3850, 3948, 1, 0, 0, 0, 3851, 3852, 5, 138, 0, 0, 3852, 3853, 5, 204, 0, 0, 3853, 3854, 3, 1436, 718, 0, 3854, 3855, 3, 44, 22, 0, 3855, 3856, 3, 546, 273, 0, 3856, 3948, 1, 0, 0, 0, 3857, 3858, 5, 138, 0, 0, 3858, 3859, 5, 204, 0, 0, 3859, 3860, 3, 1436, 718, 0, 3860, 3861, 3, 44, 22, 0, 3861, 3862, 5, 136, 0, 0, 3862, 3863, 3, 698, 349, 0, 3863, 3948, 1, 0, 0, 0, 3864, 3865, 5, 138, 0, 0, 3865, 3866, 5, 204, 0, 0, 3866, 3867, 3, 1436, 718, 0, 3867, 3868, 3, 44, 22, 0, 3868, 3869, 5, 41, 0, 0, 3869, 3870, 5, 2, 0, 0, 3870, 3871, 3, 1168, 584, 0, 3871, 3872, 5, 36, 0, 0, 3872, 3873, 3, 1168, 584, 0, 3873, 3874, 5, 3, 0, 0, 3874, 3948, 1, 0, 0, 0, 3875, 3876, 5, 138, 0, 0, 3876, 3877, 5, 204, 0, 0, 3877, 3878, 3, 1436, 718, 0, 3878, 3879, 3, 44, 22, 0, 3879, 3880, 5, 189, 0, 0, 3880, 3881, 3, 1168, 584, 0, 3881, 3948, 1, 0, 0, 0, 3882, 3883, 5, 138, 0, 0, 3883, 3884, 5, 204, 0, 0, 3884, 3885, 3, 1436, 718, 0, 3885, 3886, 3, 44, 22, 0, 3886, 3887, 5, 211, 0, 0, 3887, 3888, 3, 674, 337, 0, 3888, 3948, 1, 0, 0, 0, 3889, 3890, 5, 138, 0, 0, 3890, 3891, 5, 204, 0, 0, 3891, 3892, 3, 1436, 718, 0, 3892, 3893, 3, 44, 22, 0, 3893, 3894, 5, 278, 0, 0, 3894, 3895, 3, 736, 368, 0, 3895, 3948, 1, 0, 0, 0, 3896, 3897, 5, 138, 0, 0, 3897, 3898, 5, 204, 0, 0, 3898, 3899, 3, 1436, 718, 0, 3899, 3900, 3, 44, 22, 0, 3900, 3901, 5, 278, 0, 0, 3901, 3902, 5, 156, 0, 0, 3902, 3903, 3, 558, 279, 0, 3903, 3904, 5, 100, 0, 0, 3904, 3905, 3, 1436, 718, 0, 3905, 3948, 1, 0, 0, 0, 3906, 3907, 5, 138, 0, 0, 3907, 3908, 5, 204, 0, 0, 3908, 3909, 3, 1436, 718, 0, 3909, 3910, 3, 44, 22, 0, 3910, 3911, 5, 278, 0, 0, 3911, 3912, 5, 206, 0, 0, 3912, 3913, 3, 558, 279, 0, 3913, 3914, 5, 100, 0, 0, 3914, 3915, 3, 1436, 718, 0, 3915, 3948, 1, 0, 0, 0, 3916, 3917, 5, 138, 0, 0, 3917, 3918, 5, 204, 0, 0, 3918, 3919, 3, 1436, 718, 0, 3919, 3920, 3, 44, 22, 0, 3920, 3921, 5, 296, 0, 0, 3921, 3922, 3, 670, 335, 0, 3922, 3948, 1, 0, 0, 0, 3923, 3924, 5, 138, 0, 0, 3924, 3925, 5, 204, 0, 0, 3925, 3926, 3, 1436, 718, 0, 3926, 3927, 3, 44, 22, 0, 3927, 3928, 5, 442, 0, 0, 3928, 3929, 3, 666, 333, 0, 3929, 3948, 1, 0, 0, 0, 3930, 3931, 5, 138, 0, 0, 3931, 3932, 5, 204, 0, 0, 3932, 3933, 3, 1436, 718, 0, 3933, 3934, 3, 44, 22, 0, 3934, 3935, 5, 443, 0, 0, 3935, 3936, 5, 62, 0, 0, 3936, 3937, 3, 1168, 584, 0, 3937, 3938, 5, 247, 0, 0, 3938, 3939, 3, 1436, 718, 0, 3939, 3948, 1, 0, 0, 0, 3940, 3941, 5, 138, 0, 0, 3941, 3942, 5, 204, 0, 0, 3942, 3943, 3, 1436, 718, 0, 3943, 3944, 3, 44, 22, 0, 3944, 3945, 5, 360, 0, 0, 3945, 3946, 3, 1168, 584, 0, 3946, 3948, 1, 0, 0, 0, 3947, 3845, 1, 0, 0, 0, 3947, 3851, 1, 0, 0, 0, 3947, 3857, 1, 0, 0, 0, 3947, 3864, 1, 0, 0, 0, 3947, 3875, 1, 0, 0, 0, 3947, 3882, 1, 0, 0, 0, 3947, 3889, 1, 0, 0, 0, 3947, 3896, 1, 0, 0, 0, 3947, 3906, 1, 0, 0, 0, 3947, 3916, 1, 0, 0, 0, 3947, 3923, 1, 0, 0, 0, 3947, 3930, 1, 0, 0, 0, 3947, 3940, 1, 0, 0, 0, 3948, 357, 1, 0, 0, 0, 3949, 3950, 5, 46, 0, 0, 3950, 3951, 5, 63, 0, 0, 3951, 3952, 5, 174, 0, 0, 3952, 3953, 5, 381, 0, 0, 3953, 3955, 3, 1436, 718, 0, 3954, 3956, 3, 364, 182, 0, 3955, 3954, 1, 0, 0, 0, 3955, 3956, 1, 0, 0, 0, 3956, 3958, 1, 0, 0, 0, 3957, 3959, 3, 368, 184, 0, 3958, 3957, 1, 0, 0, 0, 3958, 3959, 1, 0, 0, 0, 3959, 359, 1, 0, 0, 0, 3960, 3961, 5, 215, 0, 0, 3961, 3969, 3, 330, 165, 0, 3962, 3963, 5, 269, 0, 0, 3963, 3969, 5, 215, 0, 0, 3964, 3965, 5, 373, 0, 0, 3965, 3969, 3, 330, 165, 0, 3966, 3967, 5, 269, 0, 0, 3967, 3969, 5, 373, 0, 0, 3968, 3960, 1, 0, 0, 0, 3968, 3962, 1, 0, 0, 0, 3968, 3964, 1, 0, 0, 0, 3968, 3966, 1, 0, 0, 0, 3969, 361, 1, 0, 0, 0, 3970, 3972, 3, 360, 180, 0, 3971, 3970, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3971, 1, 0, 0, 0, 3973, 3974, 1, 0, 0, 0, 3974, 363, 1, 0, 0, 0, 3975, 3976, 3, 362, 181, 0, 3976, 365, 1, 0, 0, 0, 3977, 3978, 5, 138, 0, 0, 3978, 3979, 5, 63, 0, 0, 3979, 3980, 5, 174, 0, 0, 3980, 3981, 5, 381, 0, 0, 3981, 3983, 3, 1436, 718, 0, 3982, 3984, 3, 364, 182, 0, 3983, 3982, 1, 0, 0, 0, 3983, 3984, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 3986, 3, 372, 186, 0, 3986, 3995, 1, 0, 0, 0, 3987, 3988, 5, 138, 0, 0, 3988, 3989, 5, 63, 0, 0, 3989, 3990, 5, 174, 0, 0, 3990, 3991, 5, 381, 0, 0, 3991, 3992, 3, 1436, 718, 0, 3992, 3993, 3, 362, 181, 0, 3993, 3995, 1, 0, 0, 0, 3994, 3977, 1, 0, 0, 0, 3994, 3987, 1, 0, 0, 0, 3995, 367, 1, 0, 0, 0, 3996, 3997, 5, 280, 0, 0, 3997, 3998, 5, 2, 0, 0, 3998, 3999, 3, 370, 185, 0, 3999, 4000, 5, 3, 0, 0, 4000, 369, 1, 0, 0, 0, 4001, 4006, 3, 378, 189, 0, 4002, 4003, 5, 6, 0, 0, 4003, 4005, 3, 378, 189, 0, 4004, 4002, 1, 0, 0, 0, 4005, 4008, 1, 0, 0, 0, 4006, 4004, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 371, 1, 0, 0, 0, 4008, 4006, 1, 0, 0, 0, 4009, 4010, 5, 280, 0, 0, 4010, 4011, 5, 2, 0, 0, 4011, 4012, 3, 374, 187, 0, 4012, 4013, 5, 3, 0, 0, 4013, 373, 1, 0, 0, 0, 4014, 4019, 3, 376, 188, 0, 4015, 4016, 5, 6, 0, 0, 4016, 4018, 3, 376, 188, 0, 4017, 4015, 1, 0, 0, 0, 4018, 4021, 1, 0, 0, 0, 4019, 4017, 1, 0, 0, 0, 4019, 4020, 1, 0, 0, 0, 4020, 375, 1, 0, 0, 0, 4021, 4019, 1, 0, 0, 0, 4022, 4030, 3, 378, 189, 0, 4023, 4024, 5, 333, 0, 0, 4024, 4030, 3, 378, 189, 0, 4025, 4026, 5, 133, 0, 0, 4026, 4030, 3, 378, 189, 0, 4027, 4028, 5, 191, 0, 0, 4028, 4030, 3, 378, 189, 0, 4029, 4022, 1, 0, 0, 0, 4029, 4023, 1, 0, 0, 0, 4029, 4025, 1, 0, 0, 0, 4029, 4027, 1, 0, 0, 0, 4030, 377, 1, 0, 0, 0, 4031, 4032, 3, 380, 190, 0, 4032, 4033, 3, 382, 191, 0, 4033, 379, 1, 0, 0, 0, 4034, 4035, 3, 1490, 745, 0, 4035, 381, 1, 0, 0, 0, 4036, 4037, 3, 1458, 729, 0, 4037, 383, 1, 0, 0, 0, 4038, 4039, 5, 46, 0, 0, 4039, 4041, 5, 331, 0, 0, 4040, 4042, 3, 516, 258, 0, 4041, 4040, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4043, 1, 0, 0, 0, 4043, 4045, 3, 1436, 718, 0, 4044, 4046, 3, 386, 193, 0, 4045, 4044, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4048, 1, 0, 0, 0, 4047, 4049, 3, 390, 195, 0, 4048, 4047, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4051, 5, 63, 0, 0, 4051, 4052, 5, 174, 0, 0, 4052, 4053, 5, 381, 0, 0, 4053, 4055, 3, 1436, 718, 0, 4054, 4056, 3, 368, 184, 0, 4055, 4054, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 385, 1, 0, 0, 0, 4057, 4058, 5, 360, 0, 0, 4058, 4059, 3, 1458, 729, 0, 4059, 387, 1, 0, 0, 0, 4060, 4063, 5, 375, 0, 0, 4061, 4064, 3, 1458, 729, 0, 4062, 4064, 5, 78, 0, 0, 4063, 4061, 1, 0, 0, 0, 4063, 4062, 1, 0, 0, 0, 4064, 389, 1, 0, 0, 0, 4065, 4066, 3, 388, 194, 0, 4066, 391, 1, 0, 0, 0, 4067, 4068, 5, 138, 0, 0, 4068, 4069, 5, 331, 0, 0, 4069, 4075, 3, 1436, 718, 0, 4070, 4076, 3, 372, 186, 0, 4071, 4073, 3, 388, 194, 0, 4072, 4074, 3, 372, 186, 0, 4073, 4072, 1, 0, 0, 0, 4073, 4074, 1, 0, 0, 0, 4074, 4076, 1, 0, 0, 0, 4075, 4070, 1, 0, 0, 0, 4075, 4071, 1, 0, 0, 0, 4076, 393, 1, 0, 0, 0, 4077, 4078, 5, 46, 0, 0, 4078, 4079, 5, 63, 0, 0, 4079, 4081, 5, 92, 0, 0, 4080, 4082, 3, 516, 258, 0, 4081, 4080, 1, 0, 0, 0, 4081, 4082, 1, 0, 0, 0, 4082, 4083, 1, 0, 0, 0, 4083, 4084, 3, 1404, 702, 0, 4084, 4086, 5, 2, 0, 0, 4085, 4087, 3, 194, 97, 0, 4086, 4085, 1, 0, 0, 0, 4086, 4087, 1, 0, 0, 0, 4087, 4088, 1, 0, 0, 0, 4088, 4090, 5, 3, 0, 0, 4089, 4091, 3, 266, 133, 0, 4090, 4089, 1, 0, 0, 0, 4090, 4091, 1, 0, 0, 0, 4091, 4092, 1, 0, 0, 0, 4092, 4093, 5, 331, 0, 0, 4093, 4095, 3, 1436, 718, 0, 4094, 4096, 3, 368, 184, 0, 4095, 4094, 1, 0, 0, 0, 4095, 4096, 1, 0, 0, 0, 4096, 4117, 1, 0, 0, 0, 4097, 4098, 5, 46, 0, 0, 4098, 4099, 5, 63, 0, 0, 4099, 4101, 5, 92, 0, 0, 4100, 4102, 3, 516, 258, 0, 4101, 4100, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 4103, 1, 0, 0, 0, 4103, 4104, 3, 1404, 702, 0, 4104, 4105, 5, 285, 0, 0, 4105, 4106, 5, 275, 0, 0, 4106, 4108, 3, 1406, 703, 0, 4107, 4109, 3, 196, 98, 0, 4108, 4107, 1, 0, 0, 0, 4108, 4109, 1, 0, 0, 0, 4109, 4110, 1, 0, 0, 0, 4110, 4111, 3, 144, 72, 0, 4111, 4112, 5, 331, 0, 0, 4112, 4114, 3, 1436, 718, 0, 4113, 4115, 3, 368, 184, 0, 4114, 4113, 1, 0, 0, 0, 4114, 4115, 1, 0, 0, 0, 4115, 4117, 1, 0, 0, 0, 4116, 4077, 1, 0, 0, 0, 4116, 4097, 1, 0, 0, 0, 4117, 395, 1, 0, 0, 0, 4118, 4119, 5, 444, 0, 0, 4119, 4120, 5, 63, 0, 0, 4120, 4121, 5, 323, 0, 0, 4121, 4123, 3, 1422, 711, 0, 4122, 4124, 3, 400, 200, 0, 4123, 4122, 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 4125, 1, 0, 0, 0, 4125, 4126, 5, 64, 0, 0, 4126, 4127, 5, 331, 0, 0, 4127, 4128, 3, 1436, 718, 0, 4128, 4129, 5, 71, 0, 0, 4129, 4131, 3, 1436, 718, 0, 4130, 4132, 3, 368, 184, 0, 4131, 4130, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 397, 1, 0, 0, 0, 4133, 4134, 5, 74, 0, 0, 4134, 4137, 5, 94, 0, 0, 4135, 4137, 5, 59, 0, 0, 4136, 4133, 1, 0, 0, 0, 4136, 4135, 1, 0, 0, 0, 4137, 399, 1, 0, 0, 0, 4138, 4139, 3, 398, 199, 0, 4139, 4140, 5, 2, 0, 0, 4140, 4141, 3, 1124, 562, 0, 4141, 4142, 5, 3, 0, 0, 4142, 401, 1, 0, 0, 0, 4143, 4144, 5, 46, 0, 0, 4144, 4145, 5, 99, 0, 0, 4145, 4147, 5, 257, 0, 0, 4146, 4148, 3, 516, 258, 0, 4147, 4146, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4149, 1, 0, 0, 0, 4149, 4150, 5, 62, 0, 0, 4150, 4151, 3, 404, 202, 0, 4151, 4152, 5, 331, 0, 0, 4152, 4154, 3, 1436, 718, 0, 4153, 4155, 3, 368, 184, 0, 4154, 4153, 1, 0, 0, 0, 4154, 4155, 1, 0, 0, 0, 4155, 403, 1, 0, 0, 0, 4156, 4159, 3, 1470, 735, 0, 4157, 4159, 5, 99, 0, 0, 4158, 4156, 1, 0, 0, 0, 4158, 4157, 1, 0, 0, 0, 4159, 405, 1, 0, 0, 0, 4160, 4161, 5, 138, 0, 0, 4161, 4162, 5, 99, 0, 0, 4162, 4163, 5, 257, 0, 0, 4163, 4164, 5, 62, 0, 0, 4164, 4165, 3, 404, 202, 0, 4165, 4166, 5, 331, 0, 0, 4166, 4167, 3, 1436, 718, 0, 4167, 4168, 3, 372, 186, 0, 4168, 407, 1, 0, 0, 0, 4169, 4170, 5, 46, 0, 0, 4170, 4171, 5, 445, 0, 0, 4171, 4172, 3, 1436, 718, 0, 4172, 4173, 5, 80, 0, 0, 4173, 4175, 3, 1412, 706, 0, 4174, 4176, 3, 426, 213, 0, 4175, 4174, 1, 0, 0, 0, 4175, 4176, 1, 0, 0, 0, 4176, 4178, 1, 0, 0, 0, 4177, 4179, 3, 428, 214, 0, 4178, 4177, 1, 0, 0, 0, 4178, 4179, 1, 0, 0, 0, 4179, 4181, 1, 0, 0, 0, 4180, 4182, 3, 422, 211, 0, 4181, 4180, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4184, 1, 0, 0, 0, 4183, 4185, 3, 418, 209, 0, 4184, 4183, 1, 0, 0, 0, 4184, 4185, 1, 0, 0, 0, 4185, 4187, 1, 0, 0, 0, 4186, 4188, 3, 420, 210, 0, 4187, 4186, 1, 0, 0, 0, 4187, 4188, 1, 0, 0, 0, 4188, 409, 1, 0, 0, 0, 4189, 4190, 5, 138, 0, 0, 4190, 4191, 5, 445, 0, 0, 4191, 4192, 3, 1436, 718, 0, 4192, 4193, 5, 80, 0, 0, 4193, 4195, 3, 1412, 706, 0, 4194, 4196, 3, 424, 212, 0, 4195, 4194, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 4198, 1, 0, 0, 0, 4197, 4199, 3, 418, 209, 0, 4198, 4197, 1, 0, 0, 0, 4198, 4199, 1, 0, 0, 0, 4199, 4201, 1, 0, 0, 0, 4200, 4202, 3, 420, 210, 0, 4201, 4200, 1, 0, 0, 0, 4201, 4202, 1, 0, 0, 0, 4202, 411, 1, 0, 0, 0, 4203, 4204, 5, 138, 0, 0, 4204, 4205, 5, 296, 0, 0, 4205, 4207, 3, 1428, 714, 0, 4206, 4208, 3, 660, 330, 0, 4207, 4206, 1, 0, 0, 0, 4207, 4208, 1, 0, 0, 0, 4208, 4209, 1, 0, 0, 0, 4209, 4210, 3, 414, 207, 0, 4210, 413, 1, 0, 0, 0, 4211, 4215, 3, 416, 208, 0, 4212, 4214, 3, 416, 208, 0, 4213, 4212, 1, 0, 0, 0, 4214, 4217, 1, 0, 0, 0, 4215, 4213, 1, 0, 0, 0, 4215, 4216, 1, 0, 0, 0, 4216, 4219, 1, 0, 0, 0, 4217, 4215, 1, 0, 0, 0, 4218, 4220, 5, 315, 0, 0, 4219, 4218, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 4238, 1, 0, 0, 0, 4221, 4222, 5, 309, 0, 0, 4222, 4223, 5, 94, 0, 0, 4223, 4238, 3, 1430, 715, 0, 4224, 4225, 5, 282, 0, 0, 4225, 4226, 5, 94, 0, 0, 4226, 4238, 3, 1470, 735, 0, 4227, 4228, 5, 333, 0, 0, 4228, 4229, 5, 323, 0, 0, 4229, 4238, 3, 48, 24, 0, 4230, 4232, 5, 269, 0, 0, 4231, 4230, 1, 0, 0, 0, 4231, 4232, 1, 0, 0, 0, 4232, 4233, 1, 0, 0, 0, 4233, 4234, 5, 462, 0, 0, 4234, 4235, 5, 80, 0, 0, 4235, 4236, 5, 204, 0, 0, 4236, 4238, 3, 1436, 718, 0, 4237, 4211, 1, 0, 0, 0, 4237, 4221, 1, 0, 0, 0, 4237, 4224, 1, 0, 0, 0, 4237, 4227, 1, 0, 0, 0, 4237, 4231, 1, 0, 0, 0, 4238, 415, 1, 0, 0, 0, 4239, 4241, 5, 205, 0, 0, 4240, 4239, 1, 0, 0, 0, 4240, 4241, 1, 0, 0, 0, 4241, 4242, 1, 0, 0, 0, 4242, 4243, 5, 327, 0, 0, 4243, 4250, 5, 243, 0, 0, 4244, 4246, 5, 205, 0, 0, 4245, 4244, 1, 0, 0, 0, 4245, 4246, 1, 0, 0, 0, 4246, 4247, 1, 0, 0, 0, 4247, 4248, 5, 327, 0, 0, 4248, 4250, 5, 181, 0, 0, 4249, 4240, 1, 0, 0, 0, 4249, 4245, 1, 0, 0, 0, 4250, 4268, 1, 0, 0, 0, 4251, 4252, 5, 333, 0, 0, 4252, 4253, 3, 1436, 718, 0, 4253, 4256, 7, 31, 0, 0, 4254, 4257, 3, 1436, 718, 0, 4255, 4257, 5, 53, 0, 0, 4256, 4254, 1, 0, 0, 0, 4256, 4255, 1, 0, 0, 0, 4257, 4268, 1, 0, 0, 0, 4258, 4259, 5, 333, 0, 0, 4259, 4260, 3, 1436, 718, 0, 4260, 4261, 5, 64, 0, 0, 4261, 4262, 5, 434, 0, 0, 4262, 4268, 1, 0, 0, 0, 4263, 4264, 5, 313, 0, 0, 4264, 4268, 3, 1436, 718, 0, 4265, 4266, 5, 313, 0, 0, 4266, 4268, 5, 30, 0, 0, 4267, 4249, 1, 0, 0, 0, 4267, 4251, 1, 0, 0, 0, 4267, 4258, 1, 0, 0, 0, 4267, 4263, 1, 0, 0, 0, 4267, 4265, 1, 0, 0, 0, 4268, 417, 1, 0, 0, 0, 4269, 4270, 5, 100, 0, 0, 4270, 4271, 5, 2, 0, 0, 4271, 4272, 3, 1212, 606, 0, 4272, 4273, 5, 3, 0, 0, 4273, 419, 1, 0, 0, 0, 4274, 4275, 5, 105, 0, 0, 4275, 4276, 5, 42, 0, 0, 4276, 4277, 5, 2, 0, 0, 4277, 4278, 3, 1212, 606, 0, 4278, 4279, 5, 3, 0, 0, 4279, 421, 1, 0, 0, 0, 4280, 4281, 5, 94, 0, 0, 4281, 4282, 3, 1472, 736, 0, 4282, 423, 1, 0, 0, 0, 4283, 4284, 5, 94, 0, 0, 4284, 4285, 3, 1472, 736, 0, 4285, 425, 1, 0, 0, 0, 4286, 4290, 5, 36, 0, 0, 4287, 4291, 5, 541, 0, 0, 4288, 4291, 5, 542, 0, 0, 4289, 4291, 3, 1492, 746, 0, 4290, 4287, 1, 0, 0, 0, 4290, 4288, 1, 0, 0, 0, 4290, 4289, 1, 0, 0, 0, 4291, 427, 1, 0, 0, 0, 4292, 4293, 5, 62, 0, 0, 4293, 4294, 3, 430, 215, 0, 4294, 429, 1, 0, 0, 0, 4295, 4296, 7, 32, 0, 0, 4296, 431, 1, 0, 0, 0, 4297, 4298, 5, 46, 0, 0, 4298, 4299, 5, 131, 0, 0, 4299, 4300, 5, 446, 0, 0, 4300, 4301, 3, 1436, 718, 0, 4301, 4302, 5, 360, 0, 0, 4302, 4303, 3, 434, 217, 0, 4303, 4304, 5, 215, 0, 0, 4304, 4305, 3, 330, 165, 0, 4305, 433, 1, 0, 0, 0, 4306, 4307, 7, 33, 0, 0, 4307, 435, 1, 0, 0, 0, 4308, 4310, 5, 46, 0, 0, 4309, 4311, 3, 658, 329, 0, 4310, 4309, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 4312, 1, 0, 0, 0, 4312, 4313, 5, 357, 0, 0, 4313, 4314, 3, 1436, 718, 0, 4314, 4315, 3, 438, 219, 0, 4315, 4316, 3, 444, 222, 0, 4316, 4317, 5, 80, 0, 0, 4317, 4319, 3, 1406, 703, 0, 4318, 4320, 3, 448, 224, 0, 4319, 4318, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4322, 1, 0, 0, 0, 4321, 4323, 3, 460, 230, 0, 4322, 4321, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 4325, 1, 0, 0, 0, 4324, 4326, 3, 466, 233, 0, 4325, 4324, 1, 0, 0, 0, 4325, 4326, 1, 0, 0, 0, 4326, 4327, 1, 0, 0, 0, 4327, 4328, 5, 202, 0, 0, 4328, 4329, 3, 468, 234, 0, 4329, 4330, 5, 2, 0, 0, 4330, 4331, 3, 470, 235, 0, 4331, 4332, 5, 3, 0, 0, 4332, 4363, 1, 0, 0, 0, 4333, 4335, 5, 46, 0, 0, 4334, 4336, 3, 658, 329, 0, 4335, 4334, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4338, 1, 0, 0, 0, 4337, 4339, 5, 45, 0, 0, 4338, 4337, 1, 0, 0, 0, 4338, 4339, 1, 0, 0, 0, 4339, 4340, 1, 0, 0, 0, 4340, 4341, 5, 357, 0, 0, 4341, 4342, 3, 1436, 718, 0, 4342, 4343, 3, 438, 219, 0, 4343, 4344, 3, 444, 222, 0, 4344, 4345, 5, 80, 0, 0, 4345, 4347, 3, 1406, 703, 0, 4346, 4348, 3, 474, 237, 0, 4347, 4346, 1, 0, 0, 0, 4347, 4348, 1, 0, 0, 0, 4348, 4349, 1, 0, 0, 0, 4349, 4351, 3, 476, 238, 0, 4350, 4352, 3, 440, 220, 0, 4351, 4350, 1, 0, 0, 0, 4351, 4352, 1, 0, 0, 0, 4352, 4354, 1, 0, 0, 0, 4353, 4355, 3, 466, 233, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4356, 1, 0, 0, 0, 4356, 4357, 5, 202, 0, 0, 4357, 4358, 3, 468, 234, 0, 4358, 4359, 5, 2, 0, 0, 4359, 4360, 3, 470, 235, 0, 4360, 4361, 5, 3, 0, 0, 4361, 4363, 1, 0, 0, 0, 4362, 4308, 1, 0, 0, 0, 4362, 4333, 1, 0, 0, 0, 4363, 437, 1, 0, 0, 0, 4364, 4369, 5, 145, 0, 0, 4365, 4369, 5, 135, 0, 0, 4366, 4367, 5, 242, 0, 0, 4367, 4369, 5, 275, 0, 0, 4368, 4364, 1, 0, 0, 0, 4368, 4365, 1, 0, 0, 0, 4368, 4366, 1, 0, 0, 0, 4369, 439, 1, 0, 0, 0, 4370, 4372, 5, 62, 0, 0, 4371, 4373, 5, 192, 0, 0, 4372, 4371, 1, 0, 0, 0, 4372, 4373, 1, 0, 0, 0, 4373, 4374, 1, 0, 0, 0, 4374, 4375, 3, 442, 221, 0, 4375, 441, 1, 0, 0, 0, 4376, 4377, 7, 34, 0, 0, 4377, 443, 1, 0, 0, 0, 4378, 4383, 3, 446, 223, 0, 4379, 4380, 5, 82, 0, 0, 4380, 4382, 3, 446, 223, 0, 4381, 4379, 1, 0, 0, 0, 4382, 4385, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4383, 4384, 1, 0, 0, 0, 4384, 445, 1, 0, 0, 0, 4385, 4383, 1, 0, 0, 0, 4386, 4394, 5, 241, 0, 0, 4387, 4394, 5, 182, 0, 0, 4388, 4394, 5, 369, 0, 0, 4389, 4390, 5, 369, 0, 0, 4390, 4391, 5, 275, 0, 0, 4391, 4394, 3, 244, 122, 0, 4392, 4394, 5, 358, 0, 0, 4393, 4386, 1, 0, 0, 0, 4393, 4387, 1, 0, 0, 0, 4393, 4388, 1, 0, 0, 0, 4393, 4389, 1, 0, 0, 0, 4393, 4392, 1, 0, 0, 0, 4394, 447, 1, 0, 0, 0, 4395, 4396, 5, 447, 0, 0, 4396, 4397, 3, 450, 225, 0, 4397, 449, 1, 0, 0, 0, 4398, 4400, 3, 452, 226, 0, 4399, 4398, 1, 0, 0, 0, 4400, 4401, 1, 0, 0, 0, 4401, 4399, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 451, 1, 0, 0, 0, 4403, 4404, 3, 454, 227, 0, 4404, 4406, 3, 456, 228, 0, 4405, 4407, 3, 872, 436, 0, 4406, 4405, 1, 0, 0, 0, 4406, 4407, 1, 0, 0, 0, 4407, 4408, 1, 0, 0, 0, 4408, 4409, 3, 458, 229, 0, 4409, 453, 1, 0, 0, 0, 4410, 4411, 7, 35, 0, 0, 4411, 455, 1, 0, 0, 0, 4412, 4413, 7, 36, 0, 0, 4413, 457, 1, 0, 0, 0, 4414, 4415, 3, 1474, 737, 0, 4415, 459, 1, 0, 0, 0, 4416, 4418, 5, 62, 0, 0, 4417, 4419, 3, 462, 231, 0, 4418, 4417, 1, 0, 0, 0, 4418, 4419, 1, 0, 0, 0, 4419, 4420, 1, 0, 0, 0, 4420, 4421, 3, 464, 232, 0, 4421, 461, 1, 0, 0, 0, 4422, 4423, 5, 192, 0, 0, 4423, 463, 1, 0, 0, 0, 4424, 4425, 7, 34, 0, 0, 4425, 465, 1, 0, 0, 0, 4426, 4427, 5, 102, 0, 0, 4427, 4428, 5, 2, 0, 0, 4428, 4429, 3, 1212, 606, 0, 4429, 4430, 5, 3, 0, 0, 4430, 467, 1, 0, 0, 0, 4431, 4432, 5, 211, 0, 0, 4432, 4436, 3, 1444, 722, 0, 4433, 4434, 5, 296, 0, 0, 4434, 4436, 3, 1428, 714, 0, 4435, 4431, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4436, 469, 1, 0, 0, 0, 4437, 4440, 3, 472, 236, 0, 4438, 4440, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4439, 4438, 1, 0, 0, 0, 4440, 4445, 1, 0, 0, 0, 4441, 4442, 5, 6, 0, 0, 4442, 4444, 3, 472, 236, 0, 4443, 4441, 1, 0, 0, 0, 4444, 4447, 1, 0, 0, 0, 4445, 4443, 1, 0, 0, 0, 4445, 4446, 1, 0, 0, 0, 4446, 471, 1, 0, 0, 0, 4447, 4445, 1, 0, 0, 0, 4448, 4453, 3, 1456, 728, 0, 4449, 4453, 3, 1454, 727, 0, 4450, 4453, 3, 1458, 729, 0, 4451, 4453, 3, 1490, 745, 0, 4452, 4448, 1, 0, 0, 0, 4452, 4449, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4451, 1, 0, 0, 0, 4453, 473, 1, 0, 0, 0, 4454, 4455, 5, 64, 0, 0, 4455, 4456, 3, 1412, 706, 0, 4456, 475, 1, 0, 0, 0, 4457, 4459, 3, 478, 239, 0, 4458, 4457, 1, 0, 0, 0, 4459, 4462, 1, 0, 0, 0, 4460, 4458, 1, 0, 0, 0, 4460, 4461, 1, 0, 0, 0, 4461, 477, 1, 0, 0, 0, 4462, 4460, 1, 0, 0, 0, 4463, 4464, 5, 77, 0, 0, 4464, 4475, 5, 54, 0, 0, 4465, 4475, 5, 54, 0, 0, 4466, 4467, 5, 69, 0, 0, 4467, 4475, 5, 221, 0, 0, 4468, 4469, 5, 69, 0, 0, 4469, 4475, 5, 180, 0, 0, 4470, 4471, 5, 77, 0, 0, 4471, 4475, 5, 371, 0, 0, 4472, 4473, 5, 269, 0, 0, 4473, 4475, 5, 228, 0, 0, 4474, 4463, 1, 0, 0, 0, 4474, 4465, 1, 0, 0, 0, 4474, 4466, 1, 0, 0, 0, 4474, 4468, 1, 0, 0, 0, 4474, 4470, 1, 0, 0, 0, 4474, 4472, 1, 0, 0, 0, 4475, 479, 1, 0, 0, 0, 4476, 4477, 5, 46, 0, 0, 4477, 4478, 5, 198, 0, 0, 4478, 4479, 5, 357, 0, 0, 4479, 4480, 3, 1436, 718, 0, 4480, 4481, 5, 80, 0, 0, 4481, 4482, 3, 1490, 745, 0, 4482, 4483, 5, 202, 0, 0, 4483, 4484, 3, 468, 234, 0, 4484, 4485, 5, 2, 0, 0, 4485, 4486, 5, 3, 0, 0, 4486, 4501, 1, 0, 0, 0, 4487, 4488, 5, 46, 0, 0, 4488, 4489, 5, 198, 0, 0, 4489, 4490, 5, 357, 0, 0, 4490, 4491, 3, 1436, 718, 0, 4491, 4492, 5, 80, 0, 0, 4492, 4493, 3, 1490, 745, 0, 4493, 4494, 5, 102, 0, 0, 4494, 4495, 3, 482, 241, 0, 4495, 4496, 5, 202, 0, 0, 4496, 4497, 3, 468, 234, 0, 4497, 4498, 5, 2, 0, 0, 4498, 4499, 5, 3, 0, 0, 4499, 4501, 1, 0, 0, 0, 4500, 4476, 1, 0, 0, 0, 4500, 4487, 1, 0, 0, 0, 4501, 481, 1, 0, 0, 0, 4502, 4507, 3, 484, 242, 0, 4503, 4504, 5, 33, 0, 0, 4504, 4506, 3, 484, 242, 0, 4505, 4503, 1, 0, 0, 0, 4506, 4509, 1, 0, 0, 0, 4507, 4505, 1, 0, 0, 0, 4507, 4508, 1, 0, 0, 0, 4508, 483, 1, 0, 0, 0, 4509, 4507, 1, 0, 0, 0, 4510, 4511, 3, 1474, 737, 0, 4511, 4512, 5, 68, 0, 0, 4512, 4513, 5, 2, 0, 0, 4513, 4514, 3, 486, 243, 0, 4514, 4515, 5, 3, 0, 0, 4515, 485, 1, 0, 0, 0, 4516, 4521, 3, 1458, 729, 0, 4517, 4518, 5, 6, 0, 0, 4518, 4520, 3, 1458, 729, 0, 4519, 4517, 1, 0, 0, 0, 4520, 4523, 1, 0, 0, 0, 4521, 4519, 1, 0, 0, 0, 4521, 4522, 1, 0, 0, 0, 4522, 487, 1, 0, 0, 0, 4523, 4521, 1, 0, 0, 0, 4524, 4525, 5, 138, 0, 0, 4525, 4526, 5, 198, 0, 0, 4526, 4527, 5, 357, 0, 0, 4527, 4528, 3, 1436, 718, 0, 4528, 4529, 3, 490, 245, 0, 4529, 489, 1, 0, 0, 0, 4530, 4532, 5, 193, 0, 0, 4531, 4533, 7, 20, 0, 0, 4532, 4531, 1, 0, 0, 0, 4532, 4533, 1, 0, 0, 0, 4533, 4536, 1, 0, 0, 0, 4534, 4536, 5, 186, 0, 0, 4535, 4530, 1, 0, 0, 0, 4535, 4534, 1, 0, 0, 0, 4536, 491, 1, 0, 0, 0, 4537, 4538, 5, 46, 0, 0, 4538, 4539, 5, 140, 0, 0, 4539, 4540, 3, 558, 279, 0, 4540, 4541, 5, 42, 0, 0, 4541, 4542, 5, 2, 0, 0, 4542, 4543, 3, 1212, 606, 0, 4543, 4544, 5, 3, 0, 0, 4544, 4545, 3, 476, 238, 0, 4545, 493, 1, 0, 0, 0, 4546, 4548, 5, 46, 0, 0, 4547, 4549, 3, 658, 329, 0, 4548, 4547, 1, 0, 0, 0, 4548, 4549, 1, 0, 0, 0, 4549, 4550, 1, 0, 0, 0, 4550, 4551, 5, 136, 0, 0, 4551, 4552, 3, 1444, 722, 0, 4552, 4553, 3, 694, 347, 0, 4553, 4554, 3, 496, 248, 0, 4554, 4650, 1, 0, 0, 0, 4555, 4557, 5, 46, 0, 0, 4556, 4558, 3, 658, 329, 0, 4557, 4556, 1, 0, 0, 0, 4557, 4558, 1, 0, 0, 0, 4558, 4559, 1, 0, 0, 0, 4559, 4560, 5, 136, 0, 0, 4560, 4561, 3, 1444, 722, 0, 4561, 4562, 3, 504, 252, 0, 4562, 4650, 1, 0, 0, 0, 4563, 4564, 5, 46, 0, 0, 4564, 4565, 5, 278, 0, 0, 4565, 4566, 3, 732, 366, 0, 4566, 4567, 3, 496, 248, 0, 4567, 4650, 1, 0, 0, 0, 4568, 4569, 5, 46, 0, 0, 4569, 4570, 5, 360, 0, 0, 4570, 4571, 3, 558, 279, 0, 4571, 4572, 3, 496, 248, 0, 4572, 4650, 1, 0, 0, 0, 4573, 4574, 5, 46, 0, 0, 4574, 4575, 5, 360, 0, 0, 4575, 4650, 3, 558, 279, 0, 4576, 4577, 5, 46, 0, 0, 4577, 4578, 5, 360, 0, 0, 4578, 4579, 3, 558, 279, 0, 4579, 4580, 5, 36, 0, 0, 4580, 4582, 5, 2, 0, 0, 4581, 4583, 3, 1148, 574, 0, 4582, 4581, 1, 0, 0, 0, 4582, 4583, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 4585, 5, 3, 0, 0, 4585, 4650, 1, 0, 0, 0, 4586, 4587, 5, 46, 0, 0, 4587, 4588, 5, 360, 0, 0, 4588, 4589, 3, 558, 279, 0, 4589, 4590, 5, 36, 0, 0, 4590, 4591, 5, 196, 0, 0, 4591, 4593, 5, 2, 0, 0, 4592, 4594, 3, 510, 255, 0, 4593, 4592, 1, 0, 0, 0, 4593, 4594, 1, 0, 0, 0, 4594, 4595, 1, 0, 0, 0, 4595, 4596, 5, 3, 0, 0, 4596, 4650, 1, 0, 0, 0, 4597, 4598, 5, 46, 0, 0, 4598, 4599, 5, 360, 0, 0, 4599, 4600, 3, 558, 279, 0, 4600, 4601, 5, 36, 0, 0, 4601, 4602, 5, 299, 0, 0, 4602, 4603, 3, 496, 248, 0, 4603, 4650, 1, 0, 0, 0, 4604, 4605, 5, 46, 0, 0, 4605, 4606, 5, 355, 0, 0, 4606, 4607, 5, 325, 0, 0, 4607, 4608, 5, 283, 0, 0, 4608, 4609, 3, 558, 279, 0, 4609, 4610, 3, 496, 248, 0, 4610, 4650, 1, 0, 0, 0, 4611, 4612, 5, 46, 0, 0, 4612, 4613, 5, 355, 0, 0, 4613, 4614, 5, 325, 0, 0, 4614, 4615, 5, 185, 0, 0, 4615, 4616, 3, 558, 279, 0, 4616, 4617, 3, 496, 248, 0, 4617, 4650, 1, 0, 0, 0, 4618, 4619, 5, 46, 0, 0, 4619, 4620, 5, 355, 0, 0, 4620, 4621, 5, 325, 0, 0, 4621, 4622, 5, 353, 0, 0, 4622, 4623, 3, 558, 279, 0, 4623, 4624, 3, 496, 248, 0, 4624, 4650, 1, 0, 0, 0, 4625, 4626, 5, 46, 0, 0, 4626, 4627, 5, 355, 0, 0, 4627, 4628, 5, 325, 0, 0, 4628, 4629, 5, 163, 0, 0, 4629, 4630, 3, 558, 279, 0, 4630, 4631, 3, 496, 248, 0, 4631, 4650, 1, 0, 0, 0, 4632, 4633, 5, 46, 0, 0, 4633, 4635, 5, 108, 0, 0, 4634, 4636, 3, 516, 258, 0, 4635, 4634, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4638, 3, 558, 279, 0, 4638, 4639, 3, 496, 248, 0, 4639, 4650, 1, 0, 0, 0, 4640, 4641, 5, 46, 0, 0, 4641, 4643, 5, 108, 0, 0, 4642, 4644, 3, 516, 258, 0, 4643, 4642, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4645, 1, 0, 0, 0, 4645, 4646, 3, 558, 279, 0, 4646, 4647, 5, 64, 0, 0, 4647, 4648, 3, 558, 279, 0, 4648, 4650, 1, 0, 0, 0, 4649, 4546, 1, 0, 0, 0, 4649, 4555, 1, 0, 0, 0, 4649, 4563, 1, 0, 0, 0, 4649, 4568, 1, 0, 0, 0, 4649, 4573, 1, 0, 0, 0, 4649, 4576, 1, 0, 0, 0, 4649, 4586, 1, 0, 0, 0, 4649, 4597, 1, 0, 0, 0, 4649, 4604, 1, 0, 0, 0, 4649, 4611, 1, 0, 0, 0, 4649, 4618, 1, 0, 0, 0, 4649, 4625, 1, 0, 0, 0, 4649, 4632, 1, 0, 0, 0, 4649, 4640, 1, 0, 0, 0, 4650, 495, 1, 0, 0, 0, 4651, 4652, 5, 2, 0, 0, 4652, 4653, 3, 498, 249, 0, 4653, 4654, 5, 3, 0, 0, 4654, 497, 1, 0, 0, 0, 4655, 4660, 3, 500, 250, 0, 4656, 4657, 5, 6, 0, 0, 4657, 4659, 3, 500, 250, 0, 4658, 4656, 1, 0, 0, 0, 4659, 4662, 1, 0, 0, 0, 4660, 4658, 1, 0, 0, 0, 4660, 4661, 1, 0, 0, 0, 4661, 499, 1, 0, 0, 0, 4662, 4660, 1, 0, 0, 0, 4663, 4666, 3, 1490, 745, 0, 4664, 4665, 5, 10, 0, 0, 4665, 4667, 3, 502, 251, 0, 4666, 4664, 1, 0, 0, 0, 4666, 4667, 1, 0, 0, 0, 4667, 501, 1, 0, 0, 0, 4668, 4675, 3, 688, 344, 0, 4669, 4675, 3, 1502, 751, 0, 4670, 4675, 3, 1324, 662, 0, 4671, 4675, 3, 322, 161, 0, 4672, 4675, 3, 1458, 729, 0, 4673, 4675, 5, 407, 0, 0, 4674, 4668, 1, 0, 0, 0, 4674, 4669, 1, 0, 0, 0, 4674, 4670, 1, 0, 0, 0, 4674, 4671, 1, 0, 0, 0, 4674, 4672, 1, 0, 0, 0, 4674, 4673, 1, 0, 0, 0, 4675, 503, 1, 0, 0, 0, 4676, 4677, 5, 2, 0, 0, 4677, 4678, 3, 506, 253, 0, 4678, 4679, 5, 3, 0, 0, 4679, 505, 1, 0, 0, 0, 4680, 4685, 3, 508, 254, 0, 4681, 4682, 5, 6, 0, 0, 4682, 4684, 3, 508, 254, 0, 4683, 4681, 1, 0, 0, 0, 4684, 4687, 1, 0, 0, 0, 4685, 4683, 1, 0, 0, 0, 4685, 4686, 1, 0, 0, 0, 4686, 507, 1, 0, 0, 0, 4687, 4685, 1, 0, 0, 0, 4688, 4689, 3, 1492, 746, 0, 4689, 4690, 5, 10, 0, 0, 4690, 4691, 3, 502, 251, 0, 4691, 509, 1, 0, 0, 0, 4692, 4693, 3, 512, 256, 0, 4693, 511, 1, 0, 0, 0, 4694, 4699, 3, 1458, 729, 0, 4695, 4696, 5, 6, 0, 0, 4696, 4698, 3, 1458, 729, 0, 4697, 4695, 1, 0, 0, 0, 4698, 4701, 1, 0, 0, 0, 4699, 4697, 1, 0, 0, 0, 4699, 4700, 1, 0, 0, 0, 4700, 513, 1, 0, 0, 0, 4701, 4699, 1, 0, 0, 0, 4702, 4703, 5, 138, 0, 0, 4703, 4704, 5, 360, 0, 0, 4704, 4705, 3, 558, 279, 0, 4705, 4706, 5, 133, 0, 0, 4706, 4708, 5, 450, 0, 0, 4707, 4709, 3, 516, 258, 0, 4708, 4707, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4710, 1, 0, 0, 0, 4710, 4713, 3, 1458, 729, 0, 4711, 4712, 7, 37, 0, 0, 4712, 4714, 3, 1458, 729, 0, 4713, 4711, 1, 0, 0, 0, 4713, 4714, 1, 0, 0, 0, 4714, 4725, 1, 0, 0, 0, 4715, 4716, 5, 138, 0, 0, 4716, 4717, 5, 360, 0, 0, 4717, 4718, 3, 558, 279, 0, 4718, 4719, 5, 309, 0, 0, 4719, 4720, 5, 450, 0, 0, 4720, 4721, 3, 1458, 729, 0, 4721, 4722, 5, 94, 0, 0, 4722, 4723, 3, 1458, 729, 0, 4723, 4725, 1, 0, 0, 0, 4724, 4702, 1, 0, 0, 0, 4724, 4715, 1, 0, 0, 0, 4725, 515, 1, 0, 0, 0, 4726, 4727, 5, 220, 0, 0, 4727, 4728, 5, 77, 0, 0, 4728, 4729, 5, 396, 0, 0, 4729, 517, 1, 0, 0, 0, 4730, 4731, 5, 46, 0, 0, 4731, 4732, 5, 278, 0, 0, 4732, 4733, 5, 156, 0, 0, 4733, 4735, 3, 558, 279, 0, 4734, 4736, 3, 524, 262, 0, 4735, 4734, 1, 0, 0, 0, 4735, 4736, 1, 0, 0, 0, 4736, 4737, 1, 0, 0, 0, 4737, 4738, 5, 62, 0, 0, 4738, 4739, 5, 360, 0, 0, 4739, 4740, 3, 1168, 584, 0, 4740, 4741, 5, 100, 0, 0, 4741, 4743, 3, 1436, 718, 0, 4742, 4744, 3, 526, 263, 0, 4743, 4742, 1, 0, 0, 0, 4743, 4744, 1, 0, 0, 0, 4744, 4745, 1, 0, 0, 0, 4745, 4746, 5, 36, 0, 0, 4746, 4747, 3, 520, 260, 0, 4747, 519, 1, 0, 0, 0, 4748, 4753, 3, 522, 261, 0, 4749, 4750, 5, 6, 0, 0, 4750, 4752, 3, 522, 261, 0, 4751, 4749, 1, 0, 0, 0, 4752, 4755, 1, 0, 0, 0, 4753, 4751, 1, 0, 0, 0, 4753, 4754, 1, 0, 0, 0, 4754, 521, 1, 0, 0, 0, 4755, 4753, 1, 0, 0, 0, 4756, 4757, 5, 278, 0, 0, 4757, 4758, 3, 1456, 728, 0, 4758, 4760, 3, 732, 366, 0, 4759, 4761, 3, 528, 264, 0, 4760, 4759, 1, 0, 0, 0, 4760, 4761, 1, 0, 0, 0, 4761, 4763, 1, 0, 0, 0, 4762, 4764, 3, 530, 265, 0, 4763, 4762, 1, 0, 0, 0, 4763, 4764, 1, 0, 0, 0, 4764, 4788, 1, 0, 0, 0, 4765, 4766, 5, 278, 0, 0, 4766, 4767, 3, 1456, 728, 0, 4767, 4769, 3, 736, 368, 0, 4768, 4770, 3, 528, 264, 0, 4769, 4768, 1, 0, 0, 0, 4769, 4770, 1, 0, 0, 0, 4770, 4772, 1, 0, 0, 0, 4771, 4773, 3, 530, 265, 0, 4772, 4771, 1, 0, 0, 0, 4772, 4773, 1, 0, 0, 0, 4773, 4788, 1, 0, 0, 0, 4774, 4775, 5, 211, 0, 0, 4775, 4776, 3, 1456, 728, 0, 4776, 4777, 3, 674, 337, 0, 4777, 4788, 1, 0, 0, 0, 4778, 4779, 5, 211, 0, 0, 4779, 4780, 3, 1456, 728, 0, 4780, 4781, 5, 2, 0, 0, 4781, 4782, 3, 1342, 671, 0, 4782, 4783, 5, 3, 0, 0, 4783, 4784, 3, 674, 337, 0, 4784, 4788, 1, 0, 0, 0, 4785, 4786, 5, 345, 0, 0, 4786, 4788, 3, 1168, 584, 0, 4787, 4756, 1, 0, 0, 0, 4787, 4765, 1, 0, 0, 0, 4787, 4774, 1, 0, 0, 0, 4787, 4778, 1, 0, 0, 0, 4787, 4785, 1, 0, 0, 0, 4788, 523, 1, 0, 0, 0, 4789, 4790, 5, 53, 0, 0, 4790, 525, 1, 0, 0, 0, 4791, 4792, 5, 206, 0, 0, 4792, 4793, 3, 558, 279, 0, 4793, 527, 1, 0, 0, 0, 4794, 4795, 5, 62, 0, 0, 4795, 4801, 5, 325, 0, 0, 4796, 4797, 5, 62, 0, 0, 4797, 4798, 5, 83, 0, 0, 4798, 4799, 5, 147, 0, 0, 4799, 4801, 3, 558, 279, 0, 4800, 4794, 1, 0, 0, 0, 4800, 4796, 1, 0, 0, 0, 4801, 529, 1, 0, 0, 0, 4802, 4803, 5, 302, 0, 0, 4803, 531, 1, 0, 0, 0, 4804, 4805, 5, 46, 0, 0, 4805, 4806, 5, 278, 0, 0, 4806, 4807, 5, 206, 0, 0, 4807, 4808, 3, 558, 279, 0, 4808, 4809, 5, 100, 0, 0, 4809, 4810, 3, 1436, 718, 0, 4810, 533, 1, 0, 0, 0, 4811, 4812, 5, 138, 0, 0, 4812, 4813, 5, 278, 0, 0, 4813, 4814, 5, 206, 0, 0, 4814, 4815, 3, 558, 279, 0, 4815, 4816, 5, 100, 0, 0, 4816, 4817, 3, 1436, 718, 0, 4817, 4818, 5, 133, 0, 0, 4818, 4819, 3, 520, 260, 0, 4819, 4830, 1, 0, 0, 0, 4820, 4821, 5, 138, 0, 0, 4821, 4822, 5, 278, 0, 0, 4822, 4823, 5, 206, 0, 0, 4823, 4824, 3, 558, 279, 0, 4824, 4825, 5, 100, 0, 0, 4825, 4826, 3, 1436, 718, 0, 4826, 4827, 5, 191, 0, 0, 4827, 4828, 3, 536, 268, 0, 4828, 4830, 1, 0, 0, 0, 4829, 4811, 1, 0, 0, 0, 4829, 4820, 1, 0, 0, 0, 4830, 535, 1, 0, 0, 0, 4831, 4836, 3, 538, 269, 0, 4832, 4833, 5, 6, 0, 0, 4833, 4835, 3, 538, 269, 0, 4834, 4832, 1, 0, 0, 0, 4835, 4838, 1, 0, 0, 0, 4836, 4834, 1, 0, 0, 0, 4836, 4837, 1, 0, 0, 0, 4837, 537, 1, 0, 0, 0, 4838, 4836, 1, 0, 0, 0, 4839, 4840, 5, 278, 0, 0, 4840, 4841, 3, 1456, 728, 0, 4841, 4842, 5, 2, 0, 0, 4842, 4843, 3, 1342, 671, 0, 4843, 4844, 5, 3, 0, 0, 4844, 4852, 1, 0, 0, 0, 4845, 4846, 5, 211, 0, 0, 4846, 4847, 3, 1456, 728, 0, 4847, 4848, 5, 2, 0, 0, 4848, 4849, 3, 1342, 671, 0, 4849, 4850, 5, 3, 0, 0, 4850, 4852, 1, 0, 0, 0, 4851, 4839, 1, 0, 0, 0, 4851, 4845, 1, 0, 0, 0, 4852, 539, 1, 0, 0, 0, 4853, 4854, 5, 301, 0, 0, 4854, 4855, 5, 281, 0, 0, 4855, 4856, 5, 147, 0, 0, 4856, 4857, 3, 1472, 736, 0, 4857, 4858, 5, 94, 0, 0, 4858, 4859, 3, 1470, 735, 0, 4859, 541, 1, 0, 0, 0, 4860, 4861, 5, 191, 0, 0, 4861, 4863, 5, 92, 0, 0, 4862, 4864, 3, 748, 374, 0, 4863, 4862, 1, 0, 0, 0, 4863, 4864, 1, 0, 0, 0, 4864, 4865, 1, 0, 0, 0, 4865, 4867, 3, 1392, 696, 0, 4866, 4868, 3, 124, 62, 0, 4867, 4866, 1, 0, 0, 0, 4867, 4868, 1, 0, 0, 0, 4868, 5240, 1, 0, 0, 0, 4869, 4870, 5, 191, 0, 0, 4870, 4872, 5, 328, 0, 0, 4871, 4873, 3, 748, 374, 0, 4872, 4871, 1, 0, 0, 0, 4872, 4873, 1, 0, 0, 0, 4873, 4874, 1, 0, 0, 0, 4874, 4876, 3, 1416, 708, 0, 4875, 4877, 3, 124, 62, 0, 4876, 4875, 1, 0, 0, 0, 4876, 4877, 1, 0, 0, 0, 4877, 5240, 1, 0, 0, 0, 4878, 4879, 5, 191, 0, 0, 4879, 4881, 5, 376, 0, 0, 4880, 4882, 3, 748, 374, 0, 4881, 4880, 1, 0, 0, 0, 4881, 4882, 1, 0, 0, 0, 4882, 4883, 1, 0, 0, 0, 4883, 4885, 3, 544, 272, 0, 4884, 4886, 3, 124, 62, 0, 4885, 4884, 1, 0, 0, 0, 4885, 4886, 1, 0, 0, 0, 4886, 5240, 1, 0, 0, 0, 4887, 4888, 5, 191, 0, 0, 4888, 4889, 5, 259, 0, 0, 4889, 4891, 5, 376, 0, 0, 4890, 4892, 3, 748, 374, 0, 4891, 4890, 1, 0, 0, 0, 4891, 4892, 1, 0, 0, 0, 4892, 4893, 1, 0, 0, 0, 4893, 4895, 3, 544, 272, 0, 4894, 4896, 3, 124, 62, 0, 4895, 4894, 1, 0, 0, 0, 4895, 4896, 1, 0, 0, 0, 4896, 5240, 1, 0, 0, 0, 4897, 4898, 5, 191, 0, 0, 4898, 4900, 5, 226, 0, 0, 4899, 4901, 3, 748, 374, 0, 4900, 4899, 1, 0, 0, 0, 4900, 4901, 1, 0, 0, 0, 4901, 4902, 1, 0, 0, 0, 4902, 4904, 3, 1416, 708, 0, 4903, 4905, 3, 124, 62, 0, 4904, 4903, 1, 0, 0, 0, 4904, 4905, 1, 0, 0, 0, 4905, 5240, 1, 0, 0, 0, 4906, 4907, 5, 191, 0, 0, 4907, 4908, 5, 63, 0, 0, 4908, 4910, 5, 92, 0, 0, 4909, 4911, 3, 748, 374, 0, 4910, 4909, 1, 0, 0, 0, 4910, 4911, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4914, 3, 1392, 696, 0, 4913, 4915, 3, 124, 62, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 5240, 1, 0, 0, 0, 4916, 4917, 5, 191, 0, 0, 4917, 4919, 5, 108, 0, 0, 4918, 4920, 3, 748, 374, 0, 4919, 4918, 1, 0, 0, 0, 4919, 4920, 1, 0, 0, 0, 4920, 4921, 1, 0, 0, 0, 4921, 4923, 3, 1416, 708, 0, 4922, 4924, 3, 124, 62, 0, 4923, 4922, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 5240, 1, 0, 0, 0, 4925, 4926, 5, 191, 0, 0, 4926, 4928, 5, 168, 0, 0, 4927, 4929, 3, 748, 374, 0, 4928, 4927, 1, 0, 0, 0, 4928, 4929, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 4932, 3, 1416, 708, 0, 4931, 4933, 3, 124, 62, 0, 4932, 4931, 1, 0, 0, 0, 4932, 4933, 1, 0, 0, 0, 4933, 5240, 1, 0, 0, 0, 4934, 4935, 5, 191, 0, 0, 4935, 4937, 5, 342, 0, 0, 4936, 4938, 3, 748, 374, 0, 4937, 4936, 1, 0, 0, 0, 4937, 4938, 1, 0, 0, 0, 4938, 4939, 1, 0, 0, 0, 4939, 4941, 3, 1416, 708, 0, 4940, 4942, 3, 124, 62, 0, 4941, 4940, 1, 0, 0, 0, 4941, 4942, 1, 0, 0, 0, 4942, 5240, 1, 0, 0, 0, 4943, 4944, 5, 191, 0, 0, 4944, 4945, 5, 355, 0, 0, 4945, 4946, 5, 325, 0, 0, 4946, 4948, 5, 283, 0, 0, 4947, 4949, 3, 748, 374, 0, 4948, 4947, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 4950, 1, 0, 0, 0, 4950, 4952, 3, 1416, 708, 0, 4951, 4953, 3, 124, 62, 0, 4952, 4951, 1, 0, 0, 0, 4952, 4953, 1, 0, 0, 0, 4953, 5240, 1, 0, 0, 0, 4954, 4955, 5, 191, 0, 0, 4955, 4956, 5, 355, 0, 0, 4956, 4957, 5, 325, 0, 0, 4957, 4959, 5, 185, 0, 0, 4958, 4960, 3, 748, 374, 0, 4959, 4958, 1, 0, 0, 0, 4959, 4960, 1, 0, 0, 0, 4960, 4961, 1, 0, 0, 0, 4961, 4963, 3, 1416, 708, 0, 4962, 4964, 3, 124, 62, 0, 4963, 4962, 1, 0, 0, 0, 4963, 4964, 1, 0, 0, 0, 4964, 5240, 1, 0, 0, 0, 4965, 4966, 5, 191, 0, 0, 4966, 4967, 5, 355, 0, 0, 4967, 4968, 5, 325, 0, 0, 4968, 4970, 5, 353, 0, 0, 4969, 4971, 3, 748, 374, 0, 4970, 4969, 1, 0, 0, 0, 4970, 4971, 1, 0, 0, 0, 4971, 4972, 1, 0, 0, 0, 4972, 4974, 3, 1416, 708, 0, 4973, 4975, 3, 124, 62, 0, 4974, 4973, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 5240, 1, 0, 0, 0, 4976, 4977, 5, 191, 0, 0, 4977, 4978, 5, 355, 0, 0, 4978, 4979, 5, 325, 0, 0, 4979, 4981, 5, 163, 0, 0, 4980, 4982, 3, 748, 374, 0, 4981, 4980, 1, 0, 0, 0, 4981, 4982, 1, 0, 0, 0, 4982, 4983, 1, 0, 0, 0, 4983, 4985, 3, 1416, 708, 0, 4984, 4986, 3, 124, 62, 0, 4985, 4984, 1, 0, 0, 0, 4985, 4986, 1, 0, 0, 0, 4986, 5240, 1, 0, 0, 0, 4987, 4988, 5, 191, 0, 0, 4988, 4989, 5, 131, 0, 0, 4989, 4991, 5, 446, 0, 0, 4990, 4992, 3, 748, 374, 0, 4991, 4990, 1, 0, 0, 0, 4991, 4992, 1, 0, 0, 0, 4992, 4993, 1, 0, 0, 0, 4993, 4995, 3, 1416, 708, 0, 4994, 4996, 3, 124, 62, 0, 4995, 4994, 1, 0, 0, 0, 4995, 4996, 1, 0, 0, 0, 4996, 5240, 1, 0, 0, 0, 4997, 4998, 5, 191, 0, 0, 4998, 4999, 5, 198, 0, 0, 4999, 5001, 5, 357, 0, 0, 5000, 5002, 3, 748, 374, 0, 5001, 5000, 1, 0, 0, 0, 5001, 5002, 1, 0, 0, 0, 5002, 5003, 1, 0, 0, 0, 5003, 5005, 3, 1416, 708, 0, 5004, 5006, 3, 124, 62, 0, 5005, 5004, 1, 0, 0, 0, 5005, 5006, 1, 0, 0, 0, 5006, 5240, 1, 0, 0, 0, 5007, 5008, 5, 191, 0, 0, 5008, 5010, 5, 204, 0, 0, 5009, 5011, 3, 748, 374, 0, 5010, 5009, 1, 0, 0, 0, 5010, 5011, 1, 0, 0, 0, 5011, 5012, 1, 0, 0, 0, 5012, 5014, 3, 1416, 708, 0, 5013, 5015, 3, 124, 62, 0, 5014, 5013, 1, 0, 0, 0, 5014, 5015, 1, 0, 0, 0, 5015, 5240, 1, 0, 0, 0, 5016, 5017, 5, 191, 0, 0, 5017, 5018, 5, 63, 0, 0, 5018, 5019, 5, 174, 0, 0, 5019, 5021, 5, 381, 0, 0, 5020, 5022, 3, 748, 374, 0, 5021, 5020, 1, 0, 0, 0, 5021, 5022, 1, 0, 0, 0, 5022, 5023, 1, 0, 0, 0, 5023, 5025, 3, 1416, 708, 0, 5024, 5026, 3, 124, 62, 0, 5025, 5024, 1, 0, 0, 0, 5025, 5026, 1, 0, 0, 0, 5026, 5240, 1, 0, 0, 0, 5027, 5029, 5, 191, 0, 0, 5028, 5030, 3, 338, 169, 0, 5029, 5028, 1, 0, 0, 0, 5029, 5030, 1, 0, 0, 0, 5030, 5031, 1, 0, 0, 0, 5031, 5033, 5, 247, 0, 0, 5032, 5034, 3, 748, 374, 0, 5033, 5032, 1, 0, 0, 0, 5033, 5034, 1, 0, 0, 0, 5034, 5035, 1, 0, 0, 0, 5035, 5037, 3, 1416, 708, 0, 5036, 5038, 3, 124, 62, 0, 5037, 5036, 1, 0, 0, 0, 5037, 5038, 1, 0, 0, 0, 5038, 5240, 1, 0, 0, 0, 5039, 5040, 5, 191, 0, 0, 5040, 5042, 5, 452, 0, 0, 5041, 5043, 3, 748, 374, 0, 5042, 5041, 1, 0, 0, 0, 5042, 5043, 1, 0, 0, 0, 5043, 5044, 1, 0, 0, 0, 5044, 5046, 3, 1416, 708, 0, 5045, 5047, 3, 124, 62, 0, 5046, 5045, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 5240, 1, 0, 0, 0, 5048, 5049, 5, 191, 0, 0, 5049, 5051, 5, 331, 0, 0, 5050, 5052, 3, 748, 374, 0, 5051, 5050, 1, 0, 0, 0, 5051, 5052, 1, 0, 0, 0, 5052, 5053, 1, 0, 0, 0, 5053, 5055, 3, 1416, 708, 0, 5054, 5056, 3, 124, 62, 0, 5055, 5054, 1, 0, 0, 0, 5055, 5056, 1, 0, 0, 0, 5056, 5240, 1, 0, 0, 0, 5057, 5058, 5, 191, 0, 0, 5058, 5060, 5, 323, 0, 0, 5059, 5061, 3, 748, 374, 0, 5060, 5059, 1, 0, 0, 0, 5060, 5061, 1, 0, 0, 0, 5061, 5062, 1, 0, 0, 0, 5062, 5064, 3, 1394, 697, 0, 5063, 5065, 3, 124, 62, 0, 5064, 5063, 1, 0, 0, 0, 5064, 5065, 1, 0, 0, 0, 5065, 5240, 1, 0, 0, 0, 5066, 5067, 5, 191, 0, 0, 5067, 5069, 5, 445, 0, 0, 5068, 5070, 3, 748, 374, 0, 5069, 5068, 1, 0, 0, 0, 5069, 5070, 1, 0, 0, 0, 5070, 5071, 1, 0, 0, 0, 5071, 5072, 3, 1436, 718, 0, 5072, 5073, 5, 80, 0, 0, 5073, 5075, 3, 558, 279, 0, 5074, 5076, 3, 124, 62, 0, 5075, 5074, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 5240, 1, 0, 0, 0, 5077, 5078, 5, 191, 0, 0, 5078, 5080, 5, 321, 0, 0, 5079, 5081, 3, 748, 374, 0, 5080, 5079, 1, 0, 0, 0, 5080, 5081, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 3, 1436, 718, 0, 5083, 5084, 5, 80, 0, 0, 5084, 5086, 3, 558, 279, 0, 5085, 5087, 3, 124, 62, 0, 5086, 5085, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 5240, 1, 0, 0, 0, 5088, 5089, 5, 191, 0, 0, 5089, 5091, 5, 357, 0, 0, 5090, 5092, 3, 748, 374, 0, 5091, 5090, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5093, 1, 0, 0, 0, 5093, 5094, 3, 1436, 718, 0, 5094, 5095, 5, 80, 0, 0, 5095, 5097, 3, 558, 279, 0, 5096, 5098, 3, 124, 62, 0, 5097, 5096, 1, 0, 0, 0, 5097, 5098, 1, 0, 0, 0, 5098, 5240, 1, 0, 0, 0, 5099, 5100, 5, 191, 0, 0, 5100, 5102, 5, 360, 0, 0, 5101, 5103, 3, 748, 374, 0, 5102, 5101, 1, 0, 0, 0, 5102, 5103, 1, 0, 0, 0, 5103, 5104, 1, 0, 0, 0, 5104, 5106, 3, 562, 281, 0, 5105, 5107, 3, 124, 62, 0, 5106, 5105, 1, 0, 0, 0, 5106, 5107, 1, 0, 0, 0, 5107, 5240, 1, 0, 0, 0, 5108, 5109, 5, 191, 0, 0, 5109, 5111, 5, 189, 0, 0, 5110, 5112, 3, 748, 374, 0, 5111, 5110, 1, 0, 0, 0, 5111, 5112, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 5115, 3, 562, 281, 0, 5114, 5116, 3, 124, 62, 0, 5115, 5114, 1, 0, 0, 0, 5115, 5116, 1, 0, 0, 0, 5116, 5240, 1, 0, 0, 0, 5117, 5118, 5, 191, 0, 0, 5118, 5119, 5, 226, 0, 0, 5119, 5121, 5, 109, 0, 0, 5120, 5122, 3, 748, 374, 0, 5121, 5120, 1, 0, 0, 0, 5121, 5122, 1, 0, 0, 0, 5122, 5123, 1, 0, 0, 0, 5123, 5125, 3, 552, 276, 0, 5124, 5126, 3, 124, 62, 0, 5125, 5124, 1, 0, 0, 0, 5125, 5126, 1, 0, 0, 0, 5126, 5240, 1, 0, 0, 0, 5127, 5128, 5, 191, 0, 0, 5128, 5130, 5, 41, 0, 0, 5129, 5131, 3, 748, 374, 0, 5130, 5129, 1, 0, 0, 0, 5130, 5131, 1, 0, 0, 0, 5131, 5132, 1, 0, 0, 0, 5132, 5133, 5, 2, 0, 0, 5133, 5134, 3, 1168, 584, 0, 5134, 5135, 5, 36, 0, 0, 5135, 5136, 3, 1168, 584, 0, 5136, 5138, 5, 3, 0, 0, 5137, 5139, 3, 124, 62, 0, 5138, 5137, 1, 0, 0, 0, 5138, 5139, 1, 0, 0, 0, 5139, 5240, 1, 0, 0, 0, 5140, 5141, 5, 191, 0, 0, 5141, 5142, 5, 278, 0, 0, 5142, 5144, 5, 156, 0, 0, 5143, 5145, 3, 748, 374, 0, 5144, 5143, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, 5146, 1, 0, 0, 0, 5146, 5147, 3, 558, 279, 0, 5147, 5148, 5, 100, 0, 0, 5148, 5150, 3, 1436, 718, 0, 5149, 5151, 3, 124, 62, 0, 5150, 5149, 1, 0, 0, 0, 5150, 5151, 1, 0, 0, 0, 5151, 5240, 1, 0, 0, 0, 5152, 5153, 5, 191, 0, 0, 5153, 5154, 5, 278, 0, 0, 5154, 5156, 5, 206, 0, 0, 5155, 5157, 3, 748, 374, 0, 5156, 5155, 1, 0, 0, 0, 5156, 5157, 1, 0, 0, 0, 5157, 5158, 1, 0, 0, 0, 5158, 5159, 3, 558, 279, 0, 5159, 5160, 5, 100, 0, 0, 5160, 5162, 3, 1436, 718, 0, 5161, 5163, 3, 124, 62, 0, 5162, 5161, 1, 0, 0, 0, 5162, 5163, 1, 0, 0, 0, 5163, 5240, 1, 0, 0, 0, 5164, 5165, 5, 191, 0, 0, 5165, 5166, 5, 281, 0, 0, 5166, 5167, 5, 147, 0, 0, 5167, 5169, 3, 1472, 736, 0, 5168, 5170, 3, 124, 62, 0, 5169, 5168, 1, 0, 0, 0, 5169, 5170, 1, 0, 0, 0, 5170, 5240, 1, 0, 0, 0, 5171, 5172, 5, 191, 0, 0, 5172, 5174, 5, 376, 0, 0, 5173, 5175, 3, 748, 374, 0, 5174, 5173, 1, 0, 0, 0, 5174, 5175, 1, 0, 0, 0, 5175, 5176, 1, 0, 0, 0, 5176, 5178, 3, 544, 272, 0, 5177, 5179, 3, 124, 62, 0, 5178, 5177, 1, 0, 0, 0, 5178, 5179, 1, 0, 0, 0, 5179, 5240, 1, 0, 0, 0, 5180, 5181, 5, 191, 0, 0, 5181, 5183, 5, 451, 0, 0, 5182, 5184, 3, 748, 374, 0, 5183, 5182, 1, 0, 0, 0, 5183, 5184, 1, 0, 0, 0, 5184, 5185, 1, 0, 0, 0, 5185, 5187, 3, 1436, 718, 0, 5186, 5188, 3, 124, 62, 0, 5187, 5186, 1, 0, 0, 0, 5187, 5188, 1, 0, 0, 0, 5188, 5240, 1, 0, 0, 0, 5189, 5190, 5, 191, 0, 0, 5190, 5192, 5, 351, 0, 0, 5191, 5193, 3, 748, 374, 0, 5192, 5191, 1, 0, 0, 0, 5192, 5193, 1, 0, 0, 0, 5193, 5194, 1, 0, 0, 0, 5194, 5240, 3, 1402, 701, 0, 5195, 5196, 5, 191, 0, 0, 5196, 5198, 5, 443, 0, 0, 5197, 5199, 3, 748, 374, 0, 5198, 5197, 1, 0, 0, 0, 5198, 5199, 1, 0, 0, 0, 5199, 5200, 1, 0, 0, 0, 5200, 5201, 5, 62, 0, 0, 5201, 5202, 3, 1168, 584, 0, 5202, 5203, 5, 247, 0, 0, 5203, 5205, 3, 1436, 718, 0, 5204, 5206, 3, 124, 62, 0, 5205, 5204, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 5240, 1, 0, 0, 0, 5207, 5208, 5, 191, 0, 0, 5208, 5210, 7, 38, 0, 0, 5209, 5211, 3, 748, 374, 0, 5210, 5209, 1, 0, 0, 0, 5210, 5211, 1, 0, 0, 0, 5211, 5212, 1, 0, 0, 0, 5212, 5240, 3, 1472, 736, 0, 5213, 5214, 5, 191, 0, 0, 5214, 5215, 5, 99, 0, 0, 5215, 5217, 5, 257, 0, 0, 5216, 5218, 3, 748, 374, 0, 5217, 5216, 1, 0, 0, 0, 5217, 5218, 1, 0, 0, 0, 5218, 5219, 1, 0, 0, 0, 5219, 5220, 5, 62, 0, 0, 5220, 5221, 3, 404, 202, 0, 5221, 5222, 5, 331, 0, 0, 5222, 5223, 3, 1436, 718, 0, 5223, 5240, 1, 0, 0, 0, 5224, 5225, 5, 191, 0, 0, 5225, 5227, 5, 175, 0, 0, 5226, 5228, 3, 748, 374, 0, 5227, 5226, 1, 0, 0, 0, 5227, 5228, 1, 0, 0, 0, 5228, 5229, 1, 0, 0, 0, 5229, 5237, 3, 1420, 710, 0, 5230, 5232, 3, 14, 7, 0, 5231, 5230, 1, 0, 0, 0, 5231, 5232, 1, 0, 0, 0, 5232, 5233, 1, 0, 0, 0, 5233, 5234, 5, 2, 0, 0, 5234, 5235, 3, 860, 430, 0, 5235, 5236, 5, 3, 0, 0, 5236, 5238, 1, 0, 0, 0, 5237, 5231, 1, 0, 0, 0, 5237, 5238, 1, 0, 0, 0, 5238, 5240, 1, 0, 0, 0, 5239, 4860, 1, 0, 0, 0, 5239, 4869, 1, 0, 0, 0, 5239, 4878, 1, 0, 0, 0, 5239, 4887, 1, 0, 0, 0, 5239, 4897, 1, 0, 0, 0, 5239, 4906, 1, 0, 0, 0, 5239, 4916, 1, 0, 0, 0, 5239, 4925, 1, 0, 0, 0, 5239, 4934, 1, 0, 0, 0, 5239, 4943, 1, 0, 0, 0, 5239, 4954, 1, 0, 0, 0, 5239, 4965, 1, 0, 0, 0, 5239, 4976, 1, 0, 0, 0, 5239, 4987, 1, 0, 0, 0, 5239, 4997, 1, 0, 0, 0, 5239, 5007, 1, 0, 0, 0, 5239, 5016, 1, 0, 0, 0, 5239, 5027, 1, 0, 0, 0, 5239, 5039, 1, 0, 0, 0, 5239, 5048, 1, 0, 0, 0, 5239, 5057, 1, 0, 0, 0, 5239, 5066, 1, 0, 0, 0, 5239, 5077, 1, 0, 0, 0, 5239, 5088, 1, 0, 0, 0, 5239, 5099, 1, 0, 0, 0, 5239, 5108, 1, 0, 0, 0, 5239, 5117, 1, 0, 0, 0, 5239, 5127, 1, 0, 0, 0, 5239, 5140, 1, 0, 0, 0, 5239, 5152, 1, 0, 0, 0, 5239, 5164, 1, 0, 0, 0, 5239, 5171, 1, 0, 0, 0, 5239, 5180, 1, 0, 0, 0, 5239, 5189, 1, 0, 0, 0, 5239, 5195, 1, 0, 0, 0, 5239, 5207, 1, 0, 0, 0, 5239, 5213, 1, 0, 0, 0, 5239, 5224, 1, 0, 0, 0, 5240, 543, 1, 0, 0, 0, 5241, 5246, 3, 1410, 705, 0, 5242, 5243, 5, 6, 0, 0, 5243, 5245, 3, 1410, 705, 0, 5244, 5242, 1, 0, 0, 0, 5245, 5248, 1, 0, 0, 0, 5246, 5244, 1, 0, 0, 0, 5246, 5247, 1, 0, 0, 0, 5247, 545, 1, 0, 0, 0, 5248, 5246, 1, 0, 0, 0, 5249, 5251, 5, 63, 0, 0, 5250, 5249, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5252, 1, 0, 0, 0, 5252, 5253, 5, 92, 0, 0, 5253, 5274, 3, 1406, 703, 0, 5254, 5256, 5, 259, 0, 0, 5255, 5254, 1, 0, 0, 0, 5255, 5256, 1, 0, 0, 0, 5256, 5257, 1, 0, 0, 0, 5257, 5258, 5, 376, 0, 0, 5258, 5274, 3, 1410, 705, 0, 5259, 5260, 5, 226, 0, 0, 5260, 5274, 3, 558, 279, 0, 5261, 5262, 5, 108, 0, 0, 5262, 5274, 3, 558, 279, 0, 5263, 5264, 5, 168, 0, 0, 5264, 5274, 3, 558, 279, 0, 5265, 5266, 5, 342, 0, 0, 5266, 5274, 3, 558, 279, 0, 5267, 5268, 5, 328, 0, 0, 5268, 5274, 3, 558, 279, 0, 5269, 5270, 5, 355, 0, 0, 5270, 5271, 5, 325, 0, 0, 5271, 5272, 7, 39, 0, 0, 5272, 5274, 3, 558, 279, 0, 5273, 5250, 1, 0, 0, 0, 5273, 5255, 1, 0, 0, 0, 5273, 5259, 1, 0, 0, 0, 5273, 5261, 1, 0, 0, 0, 5273, 5263, 1, 0, 0, 0, 5273, 5265, 1, 0, 0, 0, 5273, 5267, 1, 0, 0, 0, 5273, 5269, 1, 0, 0, 0, 5274, 547, 1, 0, 0, 0, 5275, 5276, 5, 131, 0, 0, 5276, 5277, 5, 446, 0, 0, 5277, 5307, 3, 1436, 718, 0, 5278, 5279, 5, 198, 0, 0, 5279, 5280, 5, 357, 0, 0, 5280, 5307, 3, 1436, 718, 0, 5281, 5282, 5, 204, 0, 0, 5282, 5307, 3, 1436, 718, 0, 5283, 5284, 5, 63, 0, 0, 5284, 5285, 5, 174, 0, 0, 5285, 5286, 5, 381, 0, 0, 5286, 5307, 3, 1436, 718, 0, 5287, 5289, 3, 338, 169, 0, 5288, 5287, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5290, 1, 0, 0, 0, 5290, 5291, 5, 247, 0, 0, 5291, 5307, 3, 1436, 718, 0, 5292, 5293, 5, 452, 0, 0, 5293, 5307, 3, 1436, 718, 0, 5294, 5295, 5, 323, 0, 0, 5295, 5307, 3, 1422, 711, 0, 5296, 5297, 5, 331, 0, 0, 5297, 5307, 3, 1436, 718, 0, 5298, 5299, 5, 175, 0, 0, 5299, 5307, 3, 1420, 710, 0, 5300, 5301, 5, 318, 0, 0, 5301, 5307, 3, 1436, 718, 0, 5302, 5303, 5, 451, 0, 0, 5303, 5307, 3, 1436, 718, 0, 5304, 5305, 5, 351, 0, 0, 5305, 5307, 3, 1402, 701, 0, 5306, 5275, 1, 0, 0, 0, 5306, 5278, 1, 0, 0, 0, 5306, 5281, 1, 0, 0, 0, 5306, 5283, 1, 0, 0, 0, 5306, 5288, 1, 0, 0, 0, 5306, 5292, 1, 0, 0, 0, 5306, 5294, 1, 0, 0, 0, 5306, 5296, 1, 0, 0, 0, 5306, 5298, 1, 0, 0, 0, 5306, 5300, 1, 0, 0, 0, 5306, 5302, 1, 0, 0, 0, 5306, 5304, 1, 0, 0, 0, 5307, 549, 1, 0, 0, 0, 5308, 5309, 7, 40, 0, 0, 5309, 551, 1, 0, 0, 0, 5310, 5315, 3, 558, 279, 0, 5311, 5312, 5, 6, 0, 0, 5312, 5314, 3, 558, 279, 0, 5313, 5311, 1, 0, 0, 0, 5314, 5317, 1, 0, 0, 0, 5315, 5313, 1, 0, 0, 0, 5315, 5316, 1, 0, 0, 0, 5316, 553, 1, 0, 0, 0, 5317, 5315, 1, 0, 0, 0, 5318, 5319, 3, 556, 278, 0, 5319, 5320, 5, 11, 0, 0, 5320, 5321, 3, 1432, 716, 0, 5321, 555, 1, 0, 0, 0, 5322, 5324, 3, 1474, 737, 0, 5323, 5325, 3, 560, 280, 0, 5324, 5323, 1, 0, 0, 0, 5324, 5325, 1, 0, 0, 0, 5325, 557, 1, 0, 0, 0, 5326, 5328, 3, 1474, 737, 0, 5327, 5329, 3, 560, 280, 0, 5328, 5327, 1, 0, 0, 0, 5328, 5329, 1, 0, 0, 0, 5329, 559, 1, 0, 0, 0, 5330, 5331, 5, 11, 0, 0, 5331, 5333, 3, 1438, 719, 0, 5332, 5330, 1, 0, 0, 0, 5333, 5334, 1, 0, 0, 0, 5334, 5332, 1, 0, 0, 0, 5334, 5335, 1, 0, 0, 0, 5335, 561, 1, 0, 0, 0, 5336, 5341, 3, 1168, 584, 0, 5337, 5338, 5, 6, 0, 0, 5338, 5340, 3, 1168, 584, 0, 5339, 5337, 1, 0, 0, 0, 5340, 5343, 1, 0, 0, 0, 5341, 5339, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 563, 1, 0, 0, 0, 5343, 5341, 1, 0, 0, 0, 5344, 5346, 5, 358, 0, 0, 5345, 5347, 5, 92, 0, 0, 5346, 5345, 1, 0, 0, 0, 5346, 5347, 1, 0, 0, 0, 5347, 5348, 1, 0, 0, 0, 5348, 5353, 3, 566, 283, 0, 5349, 5350, 5, 6, 0, 0, 5350, 5352, 3, 566, 283, 0, 5351, 5349, 1, 0, 0, 0, 5352, 5355, 1, 0, 0, 0, 5353, 5351, 1, 0, 0, 0, 5353, 5354, 1, 0, 0, 0, 5354, 5358, 1, 0, 0, 0, 5355, 5353, 1, 0, 0, 0, 5356, 5357, 7, 41, 0, 0, 5357, 5359, 5, 219, 0, 0, 5358, 5356, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5361, 1, 0, 0, 0, 5360, 5362, 3, 124, 62, 0, 5361, 5360, 1, 0, 0, 0, 5361, 5362, 1, 0, 0, 0, 5362, 565, 1, 0, 0, 0, 5363, 5365, 5, 81, 0, 0, 5364, 5363, 1, 0, 0, 0, 5364, 5365, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 5368, 3, 1406, 703, 0, 5367, 5369, 5, 9, 0, 0, 5368, 5367, 1, 0, 0, 0, 5368, 5369, 1, 0, 0, 0, 5369, 567, 1, 0, 0, 0, 5370, 5371, 5, 159, 0, 0, 5371, 5372, 5, 80, 0, 0, 5372, 5373, 3, 546, 273, 0, 5373, 5374, 5, 116, 0, 0, 5374, 5375, 3, 570, 285, 0, 5375, 5536, 1, 0, 0, 0, 5376, 5377, 5, 159, 0, 0, 5377, 5378, 5, 80, 0, 0, 5378, 5379, 5, 44, 0, 0, 5379, 5380, 3, 554, 277, 0, 5380, 5381, 5, 116, 0, 0, 5381, 5382, 3, 570, 285, 0, 5382, 5536, 1, 0, 0, 0, 5383, 5384, 5, 159, 0, 0, 5384, 5385, 5, 80, 0, 0, 5385, 5386, 3, 548, 274, 0, 5386, 5387, 5, 116, 0, 0, 5387, 5388, 3, 570, 285, 0, 5388, 5536, 1, 0, 0, 0, 5389, 5390, 5, 159, 0, 0, 5390, 5391, 5, 80, 0, 0, 5391, 5392, 5, 360, 0, 0, 5392, 5393, 3, 1168, 584, 0, 5393, 5394, 5, 116, 0, 0, 5394, 5395, 3, 570, 285, 0, 5395, 5536, 1, 0, 0, 0, 5396, 5397, 5, 159, 0, 0, 5397, 5398, 5, 80, 0, 0, 5398, 5399, 5, 189, 0, 0, 5399, 5400, 3, 1168, 584, 0, 5400, 5401, 5, 116, 0, 0, 5401, 5402, 3, 570, 285, 0, 5402, 5536, 1, 0, 0, 0, 5403, 5404, 5, 159, 0, 0, 5404, 5405, 5, 80, 0, 0, 5405, 5406, 5, 136, 0, 0, 5406, 5407, 3, 698, 349, 0, 5407, 5408, 5, 116, 0, 0, 5408, 5409, 3, 570, 285, 0, 5409, 5536, 1, 0, 0, 0, 5410, 5411, 5, 159, 0, 0, 5411, 5412, 5, 80, 0, 0, 5412, 5413, 5, 211, 0, 0, 5413, 5414, 3, 674, 337, 0, 5414, 5415, 5, 116, 0, 0, 5415, 5416, 3, 570, 285, 0, 5416, 5536, 1, 0, 0, 0, 5417, 5418, 5, 159, 0, 0, 5418, 5419, 5, 80, 0, 0, 5419, 5420, 5, 278, 0, 0, 5420, 5421, 3, 736, 368, 0, 5421, 5422, 5, 116, 0, 0, 5422, 5423, 3, 570, 285, 0, 5423, 5536, 1, 0, 0, 0, 5424, 5425, 5, 159, 0, 0, 5425, 5426, 5, 80, 0, 0, 5426, 5427, 5, 45, 0, 0, 5427, 5428, 3, 1436, 718, 0, 5428, 5429, 5, 80, 0, 0, 5429, 5430, 3, 1406, 703, 0, 5430, 5431, 5, 116, 0, 0, 5431, 5432, 3, 570, 285, 0, 5432, 5536, 1, 0, 0, 0, 5433, 5434, 5, 159, 0, 0, 5434, 5435, 5, 80, 0, 0, 5435, 5436, 5, 45, 0, 0, 5436, 5437, 3, 1436, 718, 0, 5437, 5439, 5, 80, 0, 0, 5438, 5440, 5, 189, 0, 0, 5439, 5438, 1, 0, 0, 0, 5439, 5440, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5442, 3, 558, 279, 0, 5442, 5443, 5, 116, 0, 0, 5443, 5444, 3, 570, 285, 0, 5444, 5536, 1, 0, 0, 0, 5445, 5446, 5, 159, 0, 0, 5446, 5447, 5, 80, 0, 0, 5447, 5448, 5, 445, 0, 0, 5448, 5449, 3, 1436, 718, 0, 5449, 5450, 5, 80, 0, 0, 5450, 5451, 3, 558, 279, 0, 5451, 5452, 5, 116, 0, 0, 5452, 5453, 3, 570, 285, 0, 5453, 5536, 1, 0, 0, 0, 5454, 5455, 5, 159, 0, 0, 5455, 5456, 5, 80, 0, 0, 5456, 5457, 5, 321, 0, 0, 5457, 5458, 3, 1436, 718, 0, 5458, 5459, 5, 80, 0, 0, 5459, 5460, 3, 558, 279, 0, 5460, 5461, 5, 116, 0, 0, 5461, 5462, 3, 570, 285, 0, 5462, 5536, 1, 0, 0, 0, 5463, 5464, 5, 159, 0, 0, 5464, 5465, 5, 80, 0, 0, 5465, 5466, 5, 357, 0, 0, 5466, 5467, 3, 1436, 718, 0, 5467, 5468, 5, 80, 0, 0, 5468, 5469, 3, 558, 279, 0, 5469, 5470, 5, 116, 0, 0, 5470, 5471, 3, 570, 285, 0, 5471, 5536, 1, 0, 0, 0, 5472, 5473, 5, 159, 0, 0, 5473, 5474, 5, 80, 0, 0, 5474, 5475, 5, 296, 0, 0, 5475, 5476, 3, 670, 335, 0, 5476, 5477, 5, 116, 0, 0, 5477, 5478, 3, 570, 285, 0, 5478, 5536, 1, 0, 0, 0, 5479, 5480, 5, 159, 0, 0, 5480, 5481, 5, 80, 0, 0, 5481, 5482, 5, 442, 0, 0, 5482, 5483, 3, 666, 333, 0, 5483, 5484, 5, 116, 0, 0, 5484, 5485, 3, 570, 285, 0, 5485, 5536, 1, 0, 0, 0, 5486, 5487, 5, 159, 0, 0, 5487, 5488, 5, 80, 0, 0, 5488, 5489, 5, 443, 0, 0, 5489, 5490, 5, 62, 0, 0, 5490, 5491, 3, 1168, 584, 0, 5491, 5492, 5, 247, 0, 0, 5492, 5493, 3, 1436, 718, 0, 5493, 5494, 5, 116, 0, 0, 5494, 5495, 3, 570, 285, 0, 5495, 5536, 1, 0, 0, 0, 5496, 5497, 5, 159, 0, 0, 5497, 5498, 5, 80, 0, 0, 5498, 5499, 5, 278, 0, 0, 5499, 5500, 5, 156, 0, 0, 5500, 5501, 3, 558, 279, 0, 5501, 5502, 5, 100, 0, 0, 5502, 5503, 3, 1436, 718, 0, 5503, 5504, 5, 116, 0, 0, 5504, 5505, 3, 570, 285, 0, 5505, 5536, 1, 0, 0, 0, 5506, 5507, 5, 159, 0, 0, 5507, 5508, 5, 80, 0, 0, 5508, 5509, 5, 278, 0, 0, 5509, 5510, 5, 206, 0, 0, 5510, 5511, 3, 558, 279, 0, 5511, 5512, 5, 100, 0, 0, 5512, 5513, 3, 1436, 718, 0, 5513, 5514, 5, 116, 0, 0, 5514, 5515, 3, 570, 285, 0, 5515, 5536, 1, 0, 0, 0, 5516, 5517, 5, 159, 0, 0, 5517, 5518, 5, 80, 0, 0, 5518, 5519, 5, 248, 0, 0, 5519, 5520, 5, 274, 0, 0, 5520, 5521, 3, 322, 161, 0, 5521, 5522, 5, 116, 0, 0, 5522, 5523, 3, 570, 285, 0, 5523, 5536, 1, 0, 0, 0, 5524, 5525, 5, 159, 0, 0, 5525, 5526, 5, 80, 0, 0, 5526, 5527, 5, 41, 0, 0, 5527, 5528, 5, 2, 0, 0, 5528, 5529, 3, 1168, 584, 0, 5529, 5530, 5, 36, 0, 0, 5530, 5531, 3, 1168, 584, 0, 5531, 5532, 5, 3, 0, 0, 5532, 5533, 5, 116, 0, 0, 5533, 5534, 3, 570, 285, 0, 5534, 5536, 1, 0, 0, 0, 5535, 5370, 1, 0, 0, 0, 5535, 5376, 1, 0, 0, 0, 5535, 5383, 1, 0, 0, 0, 5535, 5389, 1, 0, 0, 0, 5535, 5396, 1, 0, 0, 0, 5535, 5403, 1, 0, 0, 0, 5535, 5410, 1, 0, 0, 0, 5535, 5417, 1, 0, 0, 0, 5535, 5424, 1, 0, 0, 0, 5535, 5433, 1, 0, 0, 0, 5535, 5445, 1, 0, 0, 0, 5535, 5454, 1, 0, 0, 0, 5535, 5463, 1, 0, 0, 0, 5535, 5472, 1, 0, 0, 0, 5535, 5479, 1, 0, 0, 0, 5535, 5486, 1, 0, 0, 0, 5535, 5496, 1, 0, 0, 0, 5535, 5506, 1, 0, 0, 0, 5535, 5516, 1, 0, 0, 0, 5535, 5524, 1, 0, 0, 0, 5536, 569, 1, 0, 0, 0, 5537, 5540, 3, 1458, 729, 0, 5538, 5540, 5, 78, 0, 0, 5539, 5537, 1, 0, 0, 0, 5539, 5538, 1, 0, 0, 0, 5540, 571, 1, 0, 0, 0, 5541, 5542, 5, 327, 0, 0, 5542, 5544, 5, 246, 0, 0, 5543, 5545, 3, 574, 287, 0, 5544, 5543, 1, 0, 0, 0, 5544, 5545, 1, 0, 0, 0, 5545, 5546, 1, 0, 0, 0, 5546, 5547, 5, 80, 0, 0, 5547, 5548, 5, 44, 0, 0, 5548, 5549, 3, 1432, 716, 0, 5549, 5550, 5, 116, 0, 0, 5550, 5551, 3, 576, 288, 0, 5551, 5651, 1, 0, 0, 0, 5552, 5553, 5, 327, 0, 0, 5553, 5555, 5, 246, 0, 0, 5554, 5556, 3, 574, 287, 0, 5555, 5554, 1, 0, 0, 0, 5555, 5556, 1, 0, 0, 0, 5556, 5557, 1, 0, 0, 0, 5557, 5558, 5, 80, 0, 0, 5558, 5559, 5, 360, 0, 0, 5559, 5560, 3, 1168, 584, 0, 5560, 5561, 5, 116, 0, 0, 5561, 5562, 3, 576, 288, 0, 5562, 5651, 1, 0, 0, 0, 5563, 5564, 5, 327, 0, 0, 5564, 5566, 5, 246, 0, 0, 5565, 5567, 3, 574, 287, 0, 5566, 5565, 1, 0, 0, 0, 5566, 5567, 1, 0, 0, 0, 5567, 5568, 1, 0, 0, 0, 5568, 5569, 5, 80, 0, 0, 5569, 5570, 5, 189, 0, 0, 5570, 5571, 3, 1168, 584, 0, 5571, 5572, 5, 116, 0, 0, 5572, 5573, 3, 576, 288, 0, 5573, 5651, 1, 0, 0, 0, 5574, 5575, 5, 327, 0, 0, 5575, 5577, 5, 246, 0, 0, 5576, 5578, 3, 574, 287, 0, 5577, 5576, 1, 0, 0, 0, 5577, 5578, 1, 0, 0, 0, 5578, 5579, 1, 0, 0, 0, 5579, 5580, 5, 80, 0, 0, 5580, 5581, 5, 136, 0, 0, 5581, 5582, 3, 698, 349, 0, 5582, 5583, 5, 116, 0, 0, 5583, 5584, 3, 576, 288, 0, 5584, 5651, 1, 0, 0, 0, 5585, 5586, 5, 327, 0, 0, 5586, 5588, 5, 246, 0, 0, 5587, 5589, 3, 574, 287, 0, 5588, 5587, 1, 0, 0, 0, 5588, 5589, 1, 0, 0, 0, 5589, 5590, 1, 0, 0, 0, 5590, 5591, 5, 80, 0, 0, 5591, 5592, 5, 211, 0, 0, 5592, 5593, 3, 674, 337, 0, 5593, 5594, 5, 116, 0, 0, 5594, 5595, 3, 576, 288, 0, 5595, 5651, 1, 0, 0, 0, 5596, 5597, 5, 327, 0, 0, 5597, 5599, 5, 246, 0, 0, 5598, 5600, 3, 574, 287, 0, 5599, 5598, 1, 0, 0, 0, 5599, 5600, 1, 0, 0, 0, 5600, 5601, 1, 0, 0, 0, 5601, 5602, 5, 80, 0, 0, 5602, 5603, 5, 248, 0, 0, 5603, 5604, 5, 274, 0, 0, 5604, 5605, 3, 322, 161, 0, 5605, 5606, 5, 116, 0, 0, 5606, 5607, 3, 576, 288, 0, 5607, 5651, 1, 0, 0, 0, 5608, 5609, 5, 327, 0, 0, 5609, 5611, 5, 246, 0, 0, 5610, 5612, 3, 574, 287, 0, 5611, 5610, 1, 0, 0, 0, 5611, 5612, 1, 0, 0, 0, 5612, 5613, 1, 0, 0, 0, 5613, 5614, 5, 80, 0, 0, 5614, 5615, 5, 296, 0, 0, 5615, 5616, 3, 670, 335, 0, 5616, 5617, 5, 116, 0, 0, 5617, 5618, 3, 576, 288, 0, 5618, 5651, 1, 0, 0, 0, 5619, 5620, 5, 327, 0, 0, 5620, 5622, 5, 246, 0, 0, 5621, 5623, 3, 574, 287, 0, 5622, 5621, 1, 0, 0, 0, 5622, 5623, 1, 0, 0, 0, 5623, 5624, 1, 0, 0, 0, 5624, 5625, 5, 80, 0, 0, 5625, 5626, 5, 442, 0, 0, 5626, 5627, 3, 666, 333, 0, 5627, 5628, 5, 116, 0, 0, 5628, 5629, 3, 576, 288, 0, 5629, 5651, 1, 0, 0, 0, 5630, 5631, 5, 327, 0, 0, 5631, 5633, 5, 246, 0, 0, 5632, 5634, 3, 574, 287, 0, 5633, 5632, 1, 0, 0, 0, 5633, 5634, 1, 0, 0, 0, 5634, 5635, 1, 0, 0, 0, 5635, 5636, 5, 80, 0, 0, 5636, 5637, 3, 546, 273, 0, 5637, 5638, 5, 116, 0, 0, 5638, 5639, 3, 576, 288, 0, 5639, 5651, 1, 0, 0, 0, 5640, 5641, 5, 327, 0, 0, 5641, 5643, 5, 246, 0, 0, 5642, 5644, 3, 574, 287, 0, 5643, 5642, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 5645, 1, 0, 0, 0, 5645, 5646, 5, 80, 0, 0, 5646, 5647, 3, 548, 274, 0, 5647, 5648, 5, 116, 0, 0, 5648, 5649, 3, 576, 288, 0, 5649, 5651, 1, 0, 0, 0, 5650, 5541, 1, 0, 0, 0, 5650, 5552, 1, 0, 0, 0, 5650, 5563, 1, 0, 0, 0, 5650, 5574, 1, 0, 0, 0, 5650, 5585, 1, 0, 0, 0, 5650, 5596, 1, 0, 0, 0, 5650, 5608, 1, 0, 0, 0, 5650, 5619, 1, 0, 0, 0, 5650, 5630, 1, 0, 0, 0, 5650, 5640, 1, 0, 0, 0, 5651, 573, 1, 0, 0, 0, 5652, 5653, 5, 62, 0, 0, 5653, 5654, 3, 80, 40, 0, 5654, 575, 1, 0, 0, 0, 5655, 5658, 3, 1458, 729, 0, 5656, 5658, 5, 78, 0, 0, 5657, 5655, 1, 0, 0, 0, 5657, 5656, 1, 0, 0, 0, 5658, 577, 1, 0, 0, 0, 5659, 5660, 5, 61, 0, 0, 5660, 5664, 3, 580, 290, 0, 5661, 5662, 5, 265, 0, 0, 5662, 5664, 3, 580, 290, 0, 5663, 5659, 1, 0, 0, 0, 5663, 5661, 1, 0, 0, 0, 5664, 579, 1, 0, 0, 0, 5665, 5751, 3, 994, 497, 0, 5666, 5667, 3, 582, 291, 0, 5667, 5668, 3, 994, 497, 0, 5668, 5751, 1, 0, 0, 0, 5669, 5671, 5, 268, 0, 0, 5670, 5672, 3, 584, 292, 0, 5671, 5670, 1, 0, 0, 0, 5671, 5672, 1, 0, 0, 0, 5672, 5673, 1, 0, 0, 0, 5673, 5751, 3, 994, 497, 0, 5674, 5676, 5, 293, 0, 0, 5675, 5677, 3, 584, 292, 0, 5676, 5675, 1, 0, 0, 0, 5676, 5677, 1, 0, 0, 0, 5677, 5678, 1, 0, 0, 0, 5678, 5751, 3, 994, 497, 0, 5679, 5681, 5, 207, 0, 0, 5680, 5682, 3, 584, 292, 0, 5681, 5680, 1, 0, 0, 0, 5681, 5682, 1, 0, 0, 0, 5682, 5683, 1, 0, 0, 0, 5683, 5751, 3, 994, 497, 0, 5684, 5686, 5, 249, 0, 0, 5685, 5687, 3, 584, 292, 0, 5686, 5685, 1, 0, 0, 0, 5686, 5687, 1, 0, 0, 0, 5687, 5688, 1, 0, 0, 0, 5688, 5751, 3, 994, 497, 0, 5689, 5690, 5, 130, 0, 0, 5690, 5692, 3, 1464, 732, 0, 5691, 5693, 3, 584, 292, 0, 5692, 5691, 1, 0, 0, 0, 5692, 5693, 1, 0, 0, 0, 5693, 5694, 1, 0, 0, 0, 5694, 5695, 3, 994, 497, 0, 5695, 5751, 1, 0, 0, 0, 5696, 5697, 5, 307, 0, 0, 5697, 5699, 3, 1464, 732, 0, 5698, 5700, 3, 584, 292, 0, 5699, 5698, 1, 0, 0, 0, 5699, 5700, 1, 0, 0, 0, 5700, 5701, 1, 0, 0, 0, 5701, 5702, 3, 994, 497, 0, 5702, 5751, 1, 0, 0, 0, 5703, 5705, 3, 1464, 732, 0, 5704, 5706, 3, 584, 292, 0, 5705, 5704, 1, 0, 0, 0, 5705, 5706, 1, 0, 0, 0, 5706, 5707, 1, 0, 0, 0, 5707, 5708, 3, 994, 497, 0, 5708, 5751, 1, 0, 0, 0, 5709, 5711, 5, 30, 0, 0, 5710, 5712, 3, 584, 292, 0, 5711, 5710, 1, 0, 0, 0, 5711, 5712, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 5751, 3, 994, 497, 0, 5714, 5716, 5, 210, 0, 0, 5715, 5717, 3, 584, 292, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 5718, 1, 0, 0, 0, 5718, 5751, 3, 994, 497, 0, 5719, 5720, 5, 210, 0, 0, 5720, 5722, 3, 1464, 732, 0, 5721, 5723, 3, 584, 292, 0, 5722, 5721, 1, 0, 0, 0, 5722, 5723, 1, 0, 0, 0, 5723, 5724, 1, 0, 0, 0, 5724, 5725, 3, 994, 497, 0, 5725, 5751, 1, 0, 0, 0, 5726, 5727, 5, 210, 0, 0, 5727, 5729, 5, 30, 0, 0, 5728, 5730, 3, 584, 292, 0, 5729, 5728, 1, 0, 0, 0, 5729, 5730, 1, 0, 0, 0, 5730, 5731, 1, 0, 0, 0, 5731, 5751, 3, 994, 497, 0, 5732, 5734, 5, 144, 0, 0, 5733, 5735, 3, 584, 292, 0, 5734, 5733, 1, 0, 0, 0, 5734, 5735, 1, 0, 0, 0, 5735, 5736, 1, 0, 0, 0, 5736, 5751, 3, 994, 497, 0, 5737, 5738, 5, 144, 0, 0, 5738, 5740, 3, 1464, 732, 0, 5739, 5741, 3, 584, 292, 0, 5740, 5739, 1, 0, 0, 0, 5740, 5741, 1, 0, 0, 0, 5741, 5742, 1, 0, 0, 0, 5742, 5743, 3, 994, 497, 0, 5743, 5751, 1, 0, 0, 0, 5744, 5745, 5, 144, 0, 0, 5745, 5747, 5, 30, 0, 0, 5746, 5748, 3, 584, 292, 0, 5747, 5746, 1, 0, 0, 0, 5747, 5748, 1, 0, 0, 0, 5748, 5749, 1, 0, 0, 0, 5749, 5751, 3, 994, 497, 0, 5750, 5665, 1, 0, 0, 0, 5750, 5666, 1, 0, 0, 0, 5750, 5669, 1, 0, 0, 0, 5750, 5674, 1, 0, 0, 0, 5750, 5679, 1, 0, 0, 0, 5750, 5684, 1, 0, 0, 0, 5750, 5689, 1, 0, 0, 0, 5750, 5696, 1, 0, 0, 0, 5750, 5703, 1, 0, 0, 0, 5750, 5709, 1, 0, 0, 0, 5750, 5714, 1, 0, 0, 0, 5750, 5719, 1, 0, 0, 0, 5750, 5726, 1, 0, 0, 0, 5750, 5732, 1, 0, 0, 0, 5750, 5737, 1, 0, 0, 0, 5750, 5744, 1, 0, 0, 0, 5751, 581, 1, 0, 0, 0, 5752, 5753, 7, 42, 0, 0, 5753, 583, 1, 0, 0, 0, 5754, 5755, 3, 582, 291, 0, 5755, 585, 1, 0, 0, 0, 5756, 5757, 5, 65, 0, 0, 5757, 5758, 3, 590, 295, 0, 5758, 5759, 5, 80, 0, 0, 5759, 5760, 3, 600, 300, 0, 5760, 5761, 5, 94, 0, 0, 5761, 5763, 3, 602, 301, 0, 5762, 5764, 3, 606, 303, 0, 5763, 5762, 1, 0, 0, 0, 5763, 5764, 1, 0, 0, 0, 5764, 587, 1, 0, 0, 0, 5765, 5766, 5, 317, 0, 0, 5766, 5767, 3, 590, 295, 0, 5767, 5768, 5, 80, 0, 0, 5768, 5769, 3, 600, 300, 0, 5769, 5770, 5, 64, 0, 0, 5770, 5772, 3, 602, 301, 0, 5771, 5773, 3, 124, 62, 0, 5772, 5771, 1, 0, 0, 0, 5772, 5773, 1, 0, 0, 0, 5773, 5787, 1, 0, 0, 0, 5774, 5775, 5, 317, 0, 0, 5775, 5776, 5, 65, 0, 0, 5776, 5777, 5, 279, 0, 0, 5777, 5778, 5, 62, 0, 0, 5778, 5779, 3, 590, 295, 0, 5779, 5780, 5, 80, 0, 0, 5780, 5781, 3, 600, 300, 0, 5781, 5782, 5, 64, 0, 0, 5782, 5784, 3, 602, 301, 0, 5783, 5785, 3, 124, 62, 0, 5784, 5783, 1, 0, 0, 0, 5784, 5785, 1, 0, 0, 0, 5785, 5787, 1, 0, 0, 0, 5786, 5765, 1, 0, 0, 0, 5786, 5774, 1, 0, 0, 0, 5787, 589, 1, 0, 0, 0, 5788, 5805, 3, 596, 298, 0, 5789, 5805, 5, 30, 0, 0, 5790, 5791, 5, 30, 0, 0, 5791, 5805, 5, 294, 0, 0, 5792, 5793, 5, 30, 0, 0, 5793, 5794, 5, 2, 0, 0, 5794, 5795, 3, 244, 122, 0, 5795, 5796, 5, 3, 0, 0, 5796, 5805, 1, 0, 0, 0, 5797, 5798, 5, 30, 0, 0, 5798, 5799, 5, 294, 0, 0, 5799, 5800, 5, 2, 0, 0, 5800, 5801, 3, 244, 122, 0, 5801, 5802, 5, 3, 0, 0, 5802, 5805, 1, 0, 0, 0, 5803, 5805, 3, 592, 296, 0, 5804, 5788, 1, 0, 0, 0, 5804, 5789, 1, 0, 0, 0, 5804, 5790, 1, 0, 0, 0, 5804, 5792, 1, 0, 0, 0, 5804, 5797, 1, 0, 0, 0, 5804, 5803, 1, 0, 0, 0, 5805, 591, 1, 0, 0, 0, 5806, 5811, 3, 594, 297, 0, 5807, 5808, 5, 6, 0, 0, 5808, 5810, 3, 594, 297, 0, 5809, 5807, 1, 0, 0, 0, 5810, 5813, 1, 0, 0, 0, 5811, 5809, 1, 0, 0, 0, 5811, 5812, 1, 0, 0, 0, 5812, 593, 1, 0, 0, 0, 5813, 5811, 1, 0, 0, 0, 5814, 5815, 7, 43, 0, 0, 5815, 595, 1, 0, 0, 0, 5816, 5821, 3, 598, 299, 0, 5817, 5818, 5, 6, 0, 0, 5818, 5820, 3, 598, 299, 0, 5819, 5817, 1, 0, 0, 0, 5820, 5823, 1, 0, 0, 0, 5821, 5819, 1, 0, 0, 0, 5821, 5822, 1, 0, 0, 0, 5822, 597, 1, 0, 0, 0, 5823, 5821, 1, 0, 0, 0, 5824, 5826, 5, 88, 0, 0, 5825, 5827, 3, 240, 120, 0, 5826, 5825, 1, 0, 0, 0, 5826, 5827, 1, 0, 0, 0, 5827, 5841, 1, 0, 0, 0, 5828, 5830, 5, 86, 0, 0, 5829, 5831, 3, 240, 120, 0, 5830, 5829, 1, 0, 0, 0, 5830, 5831, 1, 0, 0, 0, 5831, 5841, 1, 0, 0, 0, 5832, 5834, 5, 46, 0, 0, 5833, 5835, 3, 240, 120, 0, 5834, 5833, 1, 0, 0, 0, 5834, 5835, 1, 0, 0, 0, 5835, 5841, 1, 0, 0, 0, 5836, 5838, 3, 1474, 737, 0, 5837, 5839, 3, 240, 120, 0, 5838, 5837, 1, 0, 0, 0, 5838, 5839, 1, 0, 0, 0, 5839, 5841, 1, 0, 0, 0, 5840, 5824, 1, 0, 0, 0, 5840, 5828, 1, 0, 0, 0, 5840, 5832, 1, 0, 0, 0, 5840, 5836, 1, 0, 0, 0, 5841, 599, 1, 0, 0, 0, 5842, 5901, 3, 1390, 695, 0, 5843, 5844, 5, 92, 0, 0, 5844, 5901, 3, 1392, 696, 0, 5845, 5846, 5, 328, 0, 0, 5846, 5901, 3, 1390, 695, 0, 5847, 5848, 5, 63, 0, 0, 5848, 5849, 5, 174, 0, 0, 5849, 5850, 5, 381, 0, 0, 5850, 5901, 3, 1416, 708, 0, 5851, 5852, 5, 63, 0, 0, 5852, 5853, 5, 331, 0, 0, 5853, 5901, 3, 1416, 708, 0, 5854, 5855, 5, 211, 0, 0, 5855, 5901, 3, 672, 336, 0, 5856, 5857, 5, 296, 0, 0, 5857, 5901, 3, 668, 334, 0, 5858, 5859, 5, 442, 0, 0, 5859, 5901, 3, 664, 332, 0, 5860, 5861, 5, 175, 0, 0, 5861, 5901, 3, 1396, 698, 0, 5862, 5863, 5, 189, 0, 0, 5863, 5901, 3, 552, 276, 0, 5864, 5865, 5, 247, 0, 0, 5865, 5901, 3, 1416, 708, 0, 5866, 5867, 5, 248, 0, 0, 5867, 5868, 5, 274, 0, 0, 5868, 5901, 3, 324, 162, 0, 5869, 5870, 5, 323, 0, 0, 5870, 5901, 3, 1394, 697, 0, 5871, 5872, 5, 351, 0, 0, 5872, 5901, 3, 1414, 707, 0, 5873, 5874, 5, 360, 0, 0, 5874, 5901, 3, 552, 276, 0, 5875, 5876, 5, 30, 0, 0, 5876, 5877, 5, 350, 0, 0, 5877, 5878, 5, 68, 0, 0, 5878, 5879, 5, 323, 0, 0, 5879, 5901, 3, 1394, 697, 0, 5880, 5881, 5, 30, 0, 0, 5881, 5882, 5, 329, 0, 0, 5882, 5883, 5, 68, 0, 0, 5883, 5884, 5, 323, 0, 0, 5884, 5901, 3, 1394, 697, 0, 5885, 5886, 5, 30, 0, 0, 5886, 5887, 5, 212, 0, 0, 5887, 5888, 5, 68, 0, 0, 5888, 5889, 5, 323, 0, 0, 5889, 5901, 3, 1394, 697, 0, 5890, 5891, 5, 30, 0, 0, 5891, 5892, 5, 457, 0, 0, 5892, 5893, 5, 68, 0, 0, 5893, 5894, 5, 323, 0, 0, 5894, 5901, 3, 1394, 697, 0, 5895, 5896, 5, 30, 0, 0, 5896, 5897, 5, 455, 0, 0, 5897, 5898, 5, 68, 0, 0, 5898, 5899, 5, 323, 0, 0, 5899, 5901, 3, 1394, 697, 0, 5900, 5842, 1, 0, 0, 0, 5900, 5843, 1, 0, 0, 0, 5900, 5845, 1, 0, 0, 0, 5900, 5847, 1, 0, 0, 0, 5900, 5851, 1, 0, 0, 0, 5900, 5854, 1, 0, 0, 0, 5900, 5856, 1, 0, 0, 0, 5900, 5858, 1, 0, 0, 0, 5900, 5860, 1, 0, 0, 0, 5900, 5862, 1, 0, 0, 0, 5900, 5864, 1, 0, 0, 0, 5900, 5866, 1, 0, 0, 0, 5900, 5869, 1, 0, 0, 0, 5900, 5871, 1, 0, 0, 0, 5900, 5873, 1, 0, 0, 0, 5900, 5875, 1, 0, 0, 0, 5900, 5880, 1, 0, 0, 0, 5900, 5885, 1, 0, 0, 0, 5900, 5890, 1, 0, 0, 0, 5900, 5895, 1, 0, 0, 0, 5901, 601, 1, 0, 0, 0, 5902, 5907, 3, 604, 302, 0, 5903, 5904, 5, 6, 0, 0, 5904, 5906, 3, 604, 302, 0, 5905, 5903, 1, 0, 0, 0, 5906, 5909, 1, 0, 0, 0, 5907, 5905, 1, 0, 0, 0, 5907, 5908, 1, 0, 0, 0, 5908, 603, 1, 0, 0, 0, 5909, 5907, 1, 0, 0, 0, 5910, 5914, 3, 1470, 735, 0, 5911, 5912, 5, 66, 0, 0, 5912, 5914, 3, 1470, 735, 0, 5913, 5910, 1, 0, 0, 0, 5913, 5911, 1, 0, 0, 0, 5914, 605, 1, 0, 0, 0, 5915, 5916, 5, 105, 0, 0, 5916, 5917, 5, 65, 0, 0, 5917, 5918, 5, 279, 0, 0, 5918, 607, 1, 0, 0, 0, 5919, 5920, 5, 65, 0, 0, 5920, 5921, 3, 596, 298, 0, 5921, 5922, 5, 94, 0, 0, 5922, 5924, 3, 1472, 736, 0, 5923, 5925, 3, 612, 306, 0, 5924, 5923, 1, 0, 0, 0, 5924, 5925, 1, 0, 0, 0, 5925, 5927, 1, 0, 0, 0, 5926, 5928, 3, 614, 307, 0, 5927, 5926, 1, 0, 0, 0, 5927, 5928, 1, 0, 0, 0, 5928, 609, 1, 0, 0, 0, 5929, 5930, 5, 317, 0, 0, 5930, 5931, 3, 596, 298, 0, 5931, 5932, 5, 64, 0, 0, 5932, 5934, 3, 1472, 736, 0, 5933, 5935, 3, 614, 307, 0, 5934, 5933, 1, 0, 0, 0, 5934, 5935, 1, 0, 0, 0, 5935, 5937, 1, 0, 0, 0, 5936, 5938, 3, 124, 62, 0, 5937, 5936, 1, 0, 0, 0, 5937, 5938, 1, 0, 0, 0, 5938, 5953, 1, 0, 0, 0, 5939, 5940, 5, 317, 0, 0, 5940, 5941, 5, 134, 0, 0, 5941, 5942, 5, 279, 0, 0, 5942, 5943, 5, 62, 0, 0, 5943, 5944, 3, 596, 298, 0, 5944, 5945, 5, 64, 0, 0, 5945, 5947, 3, 1472, 736, 0, 5946, 5948, 3, 614, 307, 0, 5947, 5946, 1, 0, 0, 0, 5947, 5948, 1, 0, 0, 0, 5948, 5950, 1, 0, 0, 0, 5949, 5951, 3, 124, 62, 0, 5950, 5949, 1, 0, 0, 0, 5950, 5951, 1, 0, 0, 0, 5951, 5953, 1, 0, 0, 0, 5952, 5929, 1, 0, 0, 0, 5952, 5939, 1, 0, 0, 0, 5953, 611, 1, 0, 0, 0, 5954, 5955, 5, 105, 0, 0, 5955, 5956, 5, 134, 0, 0, 5956, 5957, 5, 279, 0, 0, 5957, 613, 1, 0, 0, 0, 5958, 5959, 5, 214, 0, 0, 5959, 5960, 5, 147, 0, 0, 5960, 5961, 3, 1470, 735, 0, 5961, 615, 1, 0, 0, 0, 5962, 5963, 5, 138, 0, 0, 5963, 5964, 5, 53, 0, 0, 5964, 5965, 5, 294, 0, 0, 5965, 5966, 3, 618, 309, 0, 5966, 5967, 3, 622, 311, 0, 5967, 617, 1, 0, 0, 0, 5968, 5970, 3, 620, 310, 0, 5969, 5968, 1, 0, 0, 0, 5970, 5973, 1, 0, 0, 0, 5971, 5969, 1, 0, 0, 0, 5971, 5972, 1, 0, 0, 0, 5972, 619, 1, 0, 0, 0, 5973, 5971, 1, 0, 0, 0, 5974, 5975, 5, 68, 0, 0, 5975, 5976, 5, 323, 0, 0, 5976, 5984, 3, 1394, 697, 0, 5977, 5978, 5, 62, 0, 0, 5978, 5979, 5, 318, 0, 0, 5979, 5984, 3, 1472, 736, 0, 5980, 5981, 5, 62, 0, 0, 5981, 5982, 5, 99, 0, 0, 5982, 5984, 3, 1472, 736, 0, 5983, 5974, 1, 0, 0, 0, 5983, 5977, 1, 0, 0, 0, 5983, 5980, 1, 0, 0, 0, 5984, 621, 1, 0, 0, 0, 5985, 5986, 5, 65, 0, 0, 5986, 5987, 3, 590, 295, 0, 5987, 5988, 5, 80, 0, 0, 5988, 5989, 3, 624, 312, 0, 5989, 5990, 5, 94, 0, 0, 5990, 5992, 3, 602, 301, 0, 5991, 5993, 3, 606, 303, 0, 5992, 5991, 1, 0, 0, 0, 5992, 5993, 1, 0, 0, 0, 5993, 6016, 1, 0, 0, 0, 5994, 5995, 5, 317, 0, 0, 5995, 5996, 3, 590, 295, 0, 5996, 5997, 5, 80, 0, 0, 5997, 5998, 3, 624, 312, 0, 5998, 5999, 5, 64, 0, 0, 5999, 6001, 3, 602, 301, 0, 6000, 6002, 3, 124, 62, 0, 6001, 6000, 1, 0, 0, 0, 6001, 6002, 1, 0, 0, 0, 6002, 6016, 1, 0, 0, 0, 6003, 6004, 5, 317, 0, 0, 6004, 6005, 5, 65, 0, 0, 6005, 6006, 5, 279, 0, 0, 6006, 6007, 5, 62, 0, 0, 6007, 6008, 3, 590, 295, 0, 6008, 6009, 5, 80, 0, 0, 6009, 6010, 3, 624, 312, 0, 6010, 6011, 5, 64, 0, 0, 6011, 6013, 3, 602, 301, 0, 6012, 6014, 3, 124, 62, 0, 6013, 6012, 1, 0, 0, 0, 6013, 6014, 1, 0, 0, 0, 6014, 6016, 1, 0, 0, 0, 6015, 5985, 1, 0, 0, 0, 6015, 5994, 1, 0, 0, 0, 6015, 6003, 1, 0, 0, 0, 6016, 623, 1, 0, 0, 0, 6017, 6018, 7, 44, 0, 0, 6018, 625, 1, 0, 0, 0, 6019, 6021, 5, 46, 0, 0, 6020, 6022, 3, 628, 314, 0, 6021, 6020, 1, 0, 0, 0, 6021, 6022, 1, 0, 0, 0, 6022, 6023, 1, 0, 0, 0, 6023, 6025, 5, 226, 0, 0, 6024, 6026, 3, 630, 315, 0, 6025, 6024, 1, 0, 0, 0, 6025, 6026, 1, 0, 0, 0, 6026, 6028, 1, 0, 0, 0, 6027, 6029, 3, 516, 258, 0, 6028, 6027, 1, 0, 0, 0, 6028, 6029, 1, 0, 0, 0, 6029, 6031, 1, 0, 0, 0, 6030, 6032, 3, 632, 316, 0, 6031, 6030, 1, 0, 0, 0, 6031, 6032, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 6034, 5, 80, 0, 0, 6034, 6036, 3, 1118, 559, 0, 6035, 6037, 3, 634, 317, 0, 6036, 6035, 1, 0, 0, 0, 6036, 6037, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6039, 5, 2, 0, 0, 6039, 6040, 3, 636, 318, 0, 6040, 6042, 5, 3, 0, 0, 6041, 6043, 3, 642, 321, 0, 6042, 6041, 1, 0, 0, 0, 6042, 6043, 1, 0, 0, 0, 6043, 6045, 1, 0, 0, 0, 6044, 6046, 3, 220, 110, 0, 6045, 6044, 1, 0, 0, 0, 6045, 6046, 1, 0, 0, 0, 6046, 6048, 1, 0, 0, 0, 6047, 6049, 3, 134, 67, 0, 6048, 6047, 1, 0, 0, 0, 6048, 6049, 1, 0, 0, 0, 6049, 6051, 1, 0, 0, 0, 6050, 6052, 3, 282, 141, 0, 6051, 6050, 1, 0, 0, 0, 6051, 6052, 1, 0, 0, 0, 6052, 6054, 1, 0, 0, 0, 6053, 6055, 3, 1144, 572, 0, 6054, 6053, 1, 0, 0, 0, 6054, 6055, 1, 0, 0, 0, 6055, 627, 1, 0, 0, 0, 6056, 6057, 5, 98, 0, 0, 6057, 629, 1, 0, 0, 0, 6058, 6059, 5, 109, 0, 0, 6059, 631, 1, 0, 0, 0, 6060, 6061, 3, 1436, 718, 0, 6061, 633, 1, 0, 0, 0, 6062, 6063, 5, 100, 0, 0, 6063, 6064, 3, 1436, 718, 0, 6064, 635, 1, 0, 0, 0, 6065, 6070, 3, 640, 320, 0, 6066, 6067, 5, 6, 0, 0, 6067, 6069, 3, 640, 320, 0, 6068, 6066, 1, 0, 0, 0, 6069, 6072, 1, 0, 0, 0, 6070, 6068, 1, 0, 0, 0, 6070, 6071, 1, 0, 0, 0, 6071, 637, 1, 0, 0, 0, 6072, 6070, 1, 0, 0, 0, 6073, 6075, 3, 646, 323, 0, 6074, 6073, 1, 0, 0, 0, 6074, 6075, 1, 0, 0, 0, 6075, 6077, 1, 0, 0, 0, 6076, 6078, 3, 648, 324, 0, 6077, 6076, 1, 0, 0, 0, 6077, 6078, 1, 0, 0, 0, 6078, 6080, 1, 0, 0, 0, 6079, 6081, 3, 650, 325, 0, 6080, 6079, 1, 0, 0, 0, 6080, 6081, 1, 0, 0, 0, 6081, 6083, 1, 0, 0, 0, 6082, 6084, 3, 652, 326, 0, 6083, 6082, 1, 0, 0, 0, 6083, 6084, 1, 0, 0, 0, 6084, 6097, 1, 0, 0, 0, 6085, 6087, 3, 646, 323, 0, 6086, 6085, 1, 0, 0, 0, 6086, 6087, 1, 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 6089, 3, 558, 279, 0, 6089, 6091, 3, 132, 66, 0, 6090, 6092, 3, 650, 325, 0, 6091, 6090, 1, 0, 0, 0, 6091, 6092, 1, 0, 0, 0, 6092, 6094, 1, 0, 0, 0, 6093, 6095, 3, 652, 326, 0, 6094, 6093, 1, 0, 0, 0, 6094, 6095, 1, 0, 0, 0, 6095, 6097, 1, 0, 0, 0, 6096, 6074, 1, 0, 0, 0, 6096, 6086, 1, 0, 0, 0, 6097, 639, 1, 0, 0, 0, 6098, 6099, 3, 1432, 716, 0, 6099, 6100, 3, 638, 319, 0, 6100, 6110, 1, 0, 0, 0, 6101, 6102, 3, 1262, 631, 0, 6102, 6103, 3, 638, 319, 0, 6103, 6110, 1, 0, 0, 0, 6104, 6105, 5, 2, 0, 0, 6105, 6106, 3, 1212, 606, 0, 6106, 6107, 5, 3, 0, 0, 6107, 6108, 3, 638, 319, 0, 6108, 6110, 1, 0, 0, 0, 6109, 6098, 1, 0, 0, 0, 6109, 6101, 1, 0, 0, 0, 6109, 6104, 1, 0, 0, 0, 6110, 641, 1, 0, 0, 0, 6111, 6112, 5, 441, 0, 0, 6112, 6113, 5, 2, 0, 0, 6113, 6114, 3, 644, 322, 0, 6114, 6115, 5, 3, 0, 0, 6115, 643, 1, 0, 0, 0, 6116, 6121, 3, 640, 320, 0, 6117, 6118, 5, 6, 0, 0, 6118, 6120, 3, 640, 320, 0, 6119, 6117, 1, 0, 0, 0, 6120, 6123, 1, 0, 0, 0, 6121, 6119, 1, 0, 0, 0, 6121, 6122, 1, 0, 0, 0, 6122, 645, 1, 0, 0, 0, 6123, 6121, 1, 0, 0, 0, 6124, 6125, 5, 43, 0, 0, 6125, 6126, 3, 558, 279, 0, 6126, 647, 1, 0, 0, 0, 6127, 6128, 3, 558, 279, 0, 6128, 649, 1, 0, 0, 0, 6129, 6130, 7, 45, 0, 0, 6130, 651, 1, 0, 0, 0, 6131, 6132, 5, 273, 0, 0, 6132, 6136, 5, 207, 0, 0, 6133, 6134, 5, 273, 0, 0, 6134, 6136, 5, 249, 0, 0, 6135, 6131, 1, 0, 0, 0, 6135, 6133, 1, 0, 0, 0, 6136, 653, 1, 0, 0, 0, 6137, 6139, 5, 46, 0, 0, 6138, 6140, 3, 658, 329, 0, 6139, 6138, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 6145, 1, 0, 0, 0, 6141, 6142, 5, 211, 0, 0, 6142, 6146, 3, 1442, 721, 0, 6143, 6144, 5, 296, 0, 0, 6144, 6146, 3, 1430, 715, 0, 6145, 6141, 1, 0, 0, 0, 6145, 6143, 1, 0, 0, 0, 6146, 6147, 1, 0, 0, 0, 6147, 6157, 3, 676, 338, 0, 6148, 6155, 5, 316, 0, 0, 6149, 6156, 3, 686, 343, 0, 6150, 6151, 5, 92, 0, 0, 6151, 6152, 5, 2, 0, 0, 6152, 6153, 3, 714, 357, 0, 6153, 6154, 5, 3, 0, 0, 6154, 6156, 1, 0, 0, 0, 6155, 6149, 1, 0, 0, 0, 6155, 6150, 1, 0, 0, 0, 6156, 6158, 1, 0, 0, 0, 6157, 6148, 1, 0, 0, 0, 6157, 6158, 1, 0, 0, 0, 6158, 6159, 1, 0, 0, 0, 6159, 6162, 3, 702, 351, 0, 6160, 6161, 5, 105, 0, 0, 6161, 6163, 3, 656, 328, 0, 6162, 6160, 1, 0, 0, 0, 6162, 6163, 1, 0, 0, 0, 6163, 655, 1, 0, 0, 0, 6164, 6165, 5, 2, 0, 0, 6165, 6170, 3, 1474, 737, 0, 6166, 6167, 5, 6, 0, 0, 6167, 6169, 3, 1474, 737, 0, 6168, 6166, 1, 0, 0, 0, 6169, 6172, 1, 0, 0, 0, 6170, 6168, 1, 0, 0, 0, 6170, 6171, 1, 0, 0, 0, 6171, 6173, 1, 0, 0, 0, 6172, 6170, 1, 0, 0, 0, 6173, 6174, 5, 3, 0, 0, 6174, 657, 1, 0, 0, 0, 6175, 6176, 5, 82, 0, 0, 6176, 6177, 5, 311, 0, 0, 6177, 659, 1, 0, 0, 0, 6178, 6180, 5, 2, 0, 0, 6179, 6181, 3, 662, 331, 0, 6180, 6179, 1, 0, 0, 0, 6180, 6181, 1, 0, 0, 0, 6181, 6182, 1, 0, 0, 0, 6182, 6183, 5, 3, 0, 0, 6183, 661, 1, 0, 0, 0, 6184, 6189, 3, 680, 340, 0, 6185, 6186, 5, 6, 0, 0, 6186, 6188, 3, 680, 340, 0, 6187, 6185, 1, 0, 0, 0, 6188, 6191, 1, 0, 0, 0, 6189, 6187, 1, 0, 0, 0, 6189, 6190, 1, 0, 0, 0, 6190, 663, 1, 0, 0, 0, 6191, 6189, 1, 0, 0, 0, 6192, 6197, 3, 666, 333, 0, 6193, 6194, 5, 6, 0, 0, 6194, 6196, 3, 666, 333, 0, 6195, 6193, 1, 0, 0, 0, 6196, 6199, 1, 0, 0, 0, 6197, 6195, 1, 0, 0, 0, 6197, 6198, 1, 0, 0, 0, 6198, 665, 1, 0, 0, 0, 6199, 6197, 1, 0, 0, 0, 6200, 6201, 3, 1426, 713, 0, 6201, 6202, 3, 660, 330, 0, 6202, 6209, 1, 0, 0, 0, 6203, 6209, 3, 1500, 750, 0, 6204, 6206, 3, 1474, 737, 0, 6205, 6207, 3, 1380, 690, 0, 6206, 6205, 1, 0, 0, 0, 6206, 6207, 1, 0, 0, 0, 6207, 6209, 1, 0, 0, 0, 6208, 6200, 1, 0, 0, 0, 6208, 6203, 1, 0, 0, 0, 6208, 6204, 1, 0, 0, 0, 6209, 667, 1, 0, 0, 0, 6210, 6215, 3, 670, 335, 0, 6211, 6212, 5, 6, 0, 0, 6212, 6214, 3, 670, 335, 0, 6213, 6211, 1, 0, 0, 0, 6214, 6217, 1, 0, 0, 0, 6215, 6213, 1, 0, 0, 0, 6215, 6216, 1, 0, 0, 0, 6216, 669, 1, 0, 0, 0, 6217, 6215, 1, 0, 0, 0, 6218, 6219, 3, 1428, 714, 0, 6219, 6220, 3, 660, 330, 0, 6220, 6227, 1, 0, 0, 0, 6221, 6227, 3, 1500, 750, 0, 6222, 6224, 3, 1474, 737, 0, 6223, 6225, 3, 1380, 690, 0, 6224, 6223, 1, 0, 0, 0, 6224, 6225, 1, 0, 0, 0, 6225, 6227, 1, 0, 0, 0, 6226, 6218, 1, 0, 0, 0, 6226, 6221, 1, 0, 0, 0, 6226, 6222, 1, 0, 0, 0, 6227, 671, 1, 0, 0, 0, 6228, 6233, 3, 674, 337, 0, 6229, 6230, 5, 6, 0, 0, 6230, 6232, 3, 674, 337, 0, 6231, 6229, 1, 0, 0, 0, 6232, 6235, 1, 0, 0, 0, 6233, 6231, 1, 0, 0, 0, 6233, 6234, 1, 0, 0, 0, 6234, 673, 1, 0, 0, 0, 6235, 6233, 1, 0, 0, 0, 6236, 6237, 3, 1444, 722, 0, 6237, 6238, 3, 660, 330, 0, 6238, 6245, 1, 0, 0, 0, 6239, 6245, 3, 1500, 750, 0, 6240, 6242, 3, 1474, 737, 0, 6241, 6243, 3, 1380, 690, 0, 6242, 6241, 1, 0, 0, 0, 6242, 6243, 1, 0, 0, 0, 6243, 6245, 1, 0, 0, 0, 6244, 6236, 1, 0, 0, 0, 6244, 6239, 1, 0, 0, 0, 6244, 6240, 1, 0, 0, 0, 6245, 675, 1, 0, 0, 0, 6246, 6248, 5, 2, 0, 0, 6247, 6249, 3, 678, 339, 0, 6248, 6247, 1, 0, 0, 0, 6248, 6249, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 6251, 5, 3, 0, 0, 6251, 677, 1, 0, 0, 0, 6252, 6257, 3, 690, 345, 0, 6253, 6254, 5, 6, 0, 0, 6254, 6256, 3, 690, 345, 0, 6255, 6253, 1, 0, 0, 0, 6256, 6259, 1, 0, 0, 0, 6257, 6255, 1, 0, 0, 0, 6257, 6258, 1, 0, 0, 0, 6258, 679, 1, 0, 0, 0, 6259, 6257, 1, 0, 0, 0, 6260, 6262, 3, 682, 341, 0, 6261, 6263, 3, 684, 342, 0, 6262, 6261, 1, 0, 0, 0, 6262, 6263, 1, 0, 0, 0, 6263, 6264, 1, 0, 0, 0, 6264, 6265, 3, 688, 344, 0, 6265, 6274, 1, 0, 0, 0, 6266, 6268, 3, 684, 342, 0, 6267, 6269, 3, 682, 341, 0, 6268, 6267, 1, 0, 0, 0, 6268, 6269, 1, 0, 0, 0, 6269, 6270, 1, 0, 0, 0, 6270, 6271, 3, 688, 344, 0, 6271, 6274, 1, 0, 0, 0, 6272, 6274, 3, 688, 344, 0, 6273, 6260, 1, 0, 0, 0, 6273, 6266, 1, 0, 0, 0, 6273, 6272, 1, 0, 0, 0, 6274, 681, 1, 0, 0, 0, 6275, 6277, 5, 68, 0, 0, 6276, 6278, 5, 453, 0, 0, 6277, 6276, 1, 0, 0, 0, 6277, 6278, 1, 0, 0, 0, 6278, 6283, 1, 0, 0, 0, 6279, 6283, 5, 453, 0, 0, 6280, 6283, 5, 400, 0, 0, 6281, 6283, 5, 101, 0, 0, 6282, 6275, 1, 0, 0, 0, 6282, 6279, 1, 0, 0, 0, 6282, 6280, 1, 0, 0, 0, 6282, 6281, 1, 0, 0, 0, 6283, 683, 1, 0, 0, 0, 6284, 6285, 3, 1482, 741, 0, 6285, 685, 1, 0, 0, 0, 6286, 6287, 3, 688, 344, 0, 6287, 687, 1, 0, 0, 0, 6288, 6301, 3, 1168, 584, 0, 6289, 6290, 3, 1482, 741, 0, 6290, 6291, 3, 560, 280, 0, 6291, 6292, 5, 27, 0, 0, 6292, 6293, 5, 360, 0, 0, 6293, 6301, 1, 0, 0, 0, 6294, 6295, 5, 415, 0, 0, 6295, 6296, 3, 1482, 741, 0, 6296, 6297, 3, 560, 280, 0, 6297, 6298, 5, 27, 0, 0, 6298, 6299, 5, 360, 0, 0, 6299, 6301, 1, 0, 0, 0, 6300, 6288, 1, 0, 0, 0, 6300, 6289, 1, 0, 0, 0, 6300, 6294, 1, 0, 0, 0, 6301, 689, 1, 0, 0, 0, 6302, 6305, 3, 680, 340, 0, 6303, 6304, 7, 46, 0, 0, 6304, 6306, 3, 1212, 606, 0, 6305, 6303, 1, 0, 0, 0, 6305, 6306, 1, 0, 0, 0, 6306, 691, 1, 0, 0, 0, 6307, 6308, 3, 680, 340, 0, 6308, 693, 1, 0, 0, 0, 6309, 6320, 5, 2, 0, 0, 6310, 6321, 5, 9, 0, 0, 6311, 6321, 3, 696, 348, 0, 6312, 6313, 5, 83, 0, 0, 6313, 6314, 5, 147, 0, 0, 6314, 6321, 3, 696, 348, 0, 6315, 6316, 3, 696, 348, 0, 6316, 6317, 5, 83, 0, 0, 6317, 6318, 5, 147, 0, 0, 6318, 6319, 3, 696, 348, 0, 6319, 6321, 1, 0, 0, 0, 6320, 6310, 1, 0, 0, 0, 6320, 6311, 1, 0, 0, 0, 6320, 6312, 1, 0, 0, 0, 6320, 6315, 1, 0, 0, 0, 6321, 6322, 1, 0, 0, 0, 6322, 6323, 5, 3, 0, 0, 6323, 695, 1, 0, 0, 0, 6324, 6329, 3, 692, 346, 0, 6325, 6326, 5, 6, 0, 0, 6326, 6328, 3, 692, 346, 0, 6327, 6325, 1, 0, 0, 0, 6328, 6331, 1, 0, 0, 0, 6329, 6327, 1, 0, 0, 0, 6329, 6330, 1, 0, 0, 0, 6330, 697, 1, 0, 0, 0, 6331, 6329, 1, 0, 0, 0, 6332, 6333, 3, 1444, 722, 0, 6333, 6334, 3, 694, 347, 0, 6334, 699, 1, 0, 0, 0, 6335, 6340, 3, 698, 349, 0, 6336, 6337, 5, 6, 0, 0, 6337, 6339, 3, 698, 349, 0, 6338, 6336, 1, 0, 0, 0, 6339, 6342, 1, 0, 0, 0, 6340, 6338, 1, 0, 0, 0, 6340, 6341, 1, 0, 0, 0, 6341, 701, 1, 0, 0, 0, 6342, 6340, 1, 0, 0, 0, 6343, 6345, 3, 706, 353, 0, 6344, 6343, 1, 0, 0, 0, 6345, 6346, 1, 0, 0, 0, 6346, 6344, 1, 0, 0, 0, 6346, 6347, 1, 0, 0, 0, 6347, 703, 1, 0, 0, 0, 6348, 6349, 5, 149, 0, 0, 6349, 6350, 5, 80, 0, 0, 6350, 6351, 5, 78, 0, 0, 6351, 6384, 5, 458, 0, 0, 6352, 6353, 5, 316, 0, 0, 6353, 6354, 5, 78, 0, 0, 6354, 6355, 5, 80, 0, 0, 6355, 6356, 5, 78, 0, 0, 6356, 6384, 5, 458, 0, 0, 6357, 6384, 5, 346, 0, 0, 6358, 6384, 5, 222, 0, 0, 6359, 6384, 5, 338, 0, 0, 6360, 6384, 5, 377, 0, 0, 6361, 6362, 5, 205, 0, 0, 6362, 6363, 5, 327, 0, 0, 6363, 6384, 5, 181, 0, 0, 6364, 6365, 5, 205, 0, 0, 6365, 6366, 5, 327, 0, 0, 6366, 6384, 5, 243, 0, 0, 6367, 6368, 5, 327, 0, 0, 6368, 6384, 5, 181, 0, 0, 6369, 6370, 5, 327, 0, 0, 6370, 6384, 5, 243, 0, 0, 6371, 6384, 5, 250, 0, 0, 6372, 6373, 5, 77, 0, 0, 6373, 6384, 5, 250, 0, 0, 6374, 6375, 5, 170, 0, 0, 6375, 6384, 3, 322, 161, 0, 6376, 6377, 5, 320, 0, 0, 6377, 6384, 3, 322, 161, 0, 6378, 6379, 5, 459, 0, 0, 6379, 6384, 3, 558, 279, 0, 6380, 6384, 3, 90, 45, 0, 6381, 6382, 5, 460, 0, 0, 6382, 6384, 3, 1474, 737, 0, 6383, 6348, 1, 0, 0, 0, 6383, 6352, 1, 0, 0, 0, 6383, 6357, 1, 0, 0, 0, 6383, 6358, 1, 0, 0, 0, 6383, 6359, 1, 0, 0, 0, 6383, 6360, 1, 0, 0, 0, 6383, 6361, 1, 0, 0, 0, 6383, 6364, 1, 0, 0, 0, 6383, 6367, 1, 0, 0, 0, 6383, 6369, 1, 0, 0, 0, 6383, 6371, 1, 0, 0, 0, 6383, 6372, 1, 0, 0, 0, 6383, 6374, 1, 0, 0, 0, 6383, 6376, 1, 0, 0, 0, 6383, 6378, 1, 0, 0, 0, 6383, 6380, 1, 0, 0, 0, 6383, 6381, 1, 0, 0, 0, 6384, 705, 1, 0, 0, 0, 6385, 6386, 5, 36, 0, 0, 6386, 6387, 3, 1458, 729, 0, 6387, 6388, 5, 6, 0, 0, 6388, 6389, 3, 1458, 729, 0, 6389, 6411, 1, 0, 0, 0, 6390, 6391, 5, 247, 0, 0, 6391, 6411, 3, 80, 40, 0, 6392, 6393, 5, 443, 0, 0, 6393, 6411, 3, 708, 354, 0, 6394, 6411, 5, 104, 0, 0, 6395, 6396, 5, 333, 0, 0, 6396, 6403, 3, 1474, 737, 0, 6397, 6398, 5, 94, 0, 0, 6398, 6404, 3, 1474, 737, 0, 6399, 6400, 5, 10, 0, 0, 6400, 6404, 3, 1474, 737, 0, 6401, 6402, 5, 64, 0, 0, 6402, 6404, 5, 434, 0, 0, 6403, 6397, 1, 0, 0, 0, 6403, 6399, 1, 0, 0, 0, 6403, 6401, 1, 0, 0, 0, 6404, 6411, 1, 0, 0, 0, 6405, 6406, 5, 36, 0, 0, 6406, 6411, 3, 1474, 737, 0, 6407, 6411, 3, 6, 3, 0, 6408, 6411, 3, 704, 352, 0, 6409, 6411, 3, 1474, 737, 0, 6410, 6385, 1, 0, 0, 0, 6410, 6390, 1, 0, 0, 0, 6410, 6392, 1, 0, 0, 0, 6410, 6394, 1, 0, 0, 0, 6410, 6395, 1, 0, 0, 0, 6410, 6405, 1, 0, 0, 0, 6410, 6407, 1, 0, 0, 0, 6410, 6408, 1, 0, 0, 0, 6410, 6409, 1, 0, 0, 0, 6411, 707, 1, 0, 0, 0, 6412, 6413, 5, 62, 0, 0, 6413, 6414, 5, 360, 0, 0, 6414, 6421, 3, 1168, 584, 0, 6415, 6416, 5, 6, 0, 0, 6416, 6417, 5, 62, 0, 0, 6417, 6418, 5, 360, 0, 0, 6418, 6420, 3, 1168, 584, 0, 6419, 6415, 1, 0, 0, 0, 6420, 6423, 1, 0, 0, 0, 6421, 6419, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 709, 1, 0, 0, 0, 6423, 6421, 1, 0, 0, 0, 6424, 6425, 5, 105, 0, 0, 6425, 6426, 3, 496, 248, 0, 6426, 711, 1, 0, 0, 0, 6427, 6428, 3, 1432, 716, 0, 6428, 6429, 3, 688, 344, 0, 6429, 713, 1, 0, 0, 0, 6430, 6435, 3, 712, 356, 0, 6431, 6432, 5, 6, 0, 0, 6432, 6434, 3, 712, 356, 0, 6433, 6431, 1, 0, 0, 0, 6434, 6437, 1, 0, 0, 0, 6435, 6433, 1, 0, 0, 0, 6435, 6436, 1, 0, 0, 0, 6436, 715, 1, 0, 0, 0, 6437, 6435, 1, 0, 0, 0, 6438, 6439, 5, 138, 0, 0, 6439, 6440, 3, 718, 359, 0, 6440, 6442, 3, 720, 360, 0, 6441, 6443, 3, 722, 361, 0, 6442, 6441, 1, 0, 0, 0, 6442, 6443, 1, 0, 0, 0, 6443, 717, 1, 0, 0, 0, 6444, 6445, 5, 211, 0, 0, 6445, 6451, 3, 674, 337, 0, 6446, 6447, 5, 296, 0, 0, 6447, 6451, 3, 670, 335, 0, 6448, 6449, 5, 442, 0, 0, 6449, 6451, 3, 666, 333, 0, 6450, 6444, 1, 0, 0, 0, 6450, 6446, 1, 0, 0, 0, 6450, 6448, 1, 0, 0, 0, 6451, 719, 1, 0, 0, 0, 6452, 6454, 3, 704, 352, 0, 6453, 6452, 1, 0, 0, 0, 6454, 6455, 1, 0, 0, 0, 6455, 6453, 1, 0, 0, 0, 6455, 6456, 1, 0, 0, 0, 6456, 721, 1, 0, 0, 0, 6457, 6458, 5, 315, 0, 0, 6458, 723, 1, 0, 0, 0, 6459, 6460, 5, 191, 0, 0, 6460, 6462, 5, 211, 0, 0, 6461, 6463, 3, 748, 374, 0, 6462, 6461, 1, 0, 0, 0, 6462, 6463, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6466, 3, 672, 336, 0, 6465, 6467, 3, 124, 62, 0, 6466, 6465, 1, 0, 0, 0, 6466, 6467, 1, 0, 0, 0, 6467, 6487, 1, 0, 0, 0, 6468, 6469, 5, 191, 0, 0, 6469, 6471, 5, 296, 0, 0, 6470, 6472, 3, 748, 374, 0, 6471, 6470, 1, 0, 0, 0, 6471, 6472, 1, 0, 0, 0, 6472, 6473, 1, 0, 0, 0, 6473, 6475, 3, 668, 334, 0, 6474, 6476, 3, 124, 62, 0, 6475, 6474, 1, 0, 0, 0, 6475, 6476, 1, 0, 0, 0, 6476, 6487, 1, 0, 0, 0, 6477, 6478, 5, 191, 0, 0, 6478, 6480, 5, 442, 0, 0, 6479, 6481, 3, 748, 374, 0, 6480, 6479, 1, 0, 0, 0, 6480, 6481, 1, 0, 0, 0, 6481, 6482, 1, 0, 0, 0, 6482, 6484, 3, 664, 332, 0, 6483, 6485, 3, 124, 62, 0, 6484, 6483, 1, 0, 0, 0, 6484, 6485, 1, 0, 0, 0, 6485, 6487, 1, 0, 0, 0, 6486, 6459, 1, 0, 0, 0, 6486, 6468, 1, 0, 0, 0, 6486, 6477, 1, 0, 0, 0, 6487, 725, 1, 0, 0, 0, 6488, 6489, 5, 191, 0, 0, 6489, 6491, 5, 136, 0, 0, 6490, 6492, 3, 748, 374, 0, 6491, 6490, 1, 0, 0, 0, 6491, 6492, 1, 0, 0, 0, 6492, 6493, 1, 0, 0, 0, 6493, 6495, 3, 700, 350, 0, 6494, 6496, 3, 124, 62, 0, 6495, 6494, 1, 0, 0, 0, 6495, 6496, 1, 0, 0, 0, 6496, 727, 1, 0, 0, 0, 6497, 6498, 5, 191, 0, 0, 6498, 6500, 5, 278, 0, 0, 6499, 6501, 3, 748, 374, 0, 6500, 6499, 1, 0, 0, 0, 6500, 6501, 1, 0, 0, 0, 6501, 6502, 1, 0, 0, 0, 6502, 6504, 3, 734, 367, 0, 6503, 6505, 3, 124, 62, 0, 6504, 6503, 1, 0, 0, 0, 6504, 6505, 1, 0, 0, 0, 6505, 729, 1, 0, 0, 0, 6506, 6507, 5, 2, 0, 0, 6507, 6508, 3, 1168, 584, 0, 6508, 6509, 5, 3, 0, 0, 6509, 6529, 1, 0, 0, 0, 6510, 6511, 5, 2, 0, 0, 6511, 6512, 3, 1168, 584, 0, 6512, 6513, 5, 6, 0, 0, 6513, 6514, 3, 1168, 584, 0, 6514, 6515, 5, 3, 0, 0, 6515, 6529, 1, 0, 0, 0, 6516, 6517, 5, 2, 0, 0, 6517, 6518, 5, 407, 0, 0, 6518, 6519, 5, 6, 0, 0, 6519, 6520, 3, 1168, 584, 0, 6520, 6521, 5, 3, 0, 0, 6521, 6529, 1, 0, 0, 0, 6522, 6523, 5, 2, 0, 0, 6523, 6524, 3, 1168, 584, 0, 6524, 6525, 5, 6, 0, 0, 6525, 6526, 5, 407, 0, 0, 6526, 6527, 5, 3, 0, 0, 6527, 6529, 1, 0, 0, 0, 6528, 6506, 1, 0, 0, 0, 6528, 6510, 1, 0, 0, 0, 6528, 6516, 1, 0, 0, 0, 6528, 6522, 1, 0, 0, 0, 6529, 731, 1, 0, 0, 0, 6530, 6531, 3, 1474, 737, 0, 6531, 6532, 5, 11, 0, 0, 6532, 6534, 1, 0, 0, 0, 6533, 6530, 1, 0, 0, 0, 6534, 6537, 1, 0, 0, 0, 6535, 6533, 1, 0, 0, 0, 6535, 6536, 1, 0, 0, 0, 6536, 6538, 1, 0, 0, 0, 6537, 6535, 1, 0, 0, 0, 6538, 6539, 3, 1318, 659, 0, 6539, 733, 1, 0, 0, 0, 6540, 6545, 3, 736, 368, 0, 6541, 6542, 5, 6, 0, 0, 6542, 6544, 3, 736, 368, 0, 6543, 6541, 1, 0, 0, 0, 6544, 6547, 1, 0, 0, 0, 6545, 6543, 1, 0, 0, 0, 6545, 6546, 1, 0, 0, 0, 6546, 735, 1, 0, 0, 0, 6547, 6545, 1, 0, 0, 0, 6548, 6549, 3, 732, 366, 0, 6549, 6550, 3, 730, 365, 0, 6550, 737, 1, 0, 0, 0, 6551, 6552, 5, 57, 0, 0, 6552, 6553, 3, 740, 370, 0, 6553, 739, 1, 0, 0, 0, 6554, 6556, 3, 742, 371, 0, 6555, 6554, 1, 0, 0, 0, 6556, 6557, 1, 0, 0, 0, 6557, 6555, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 741, 1, 0, 0, 0, 6559, 6563, 3, 1458, 729, 0, 6560, 6561, 5, 247, 0, 0, 6561, 6563, 3, 80, 40, 0, 6562, 6559, 1, 0, 0, 0, 6562, 6560, 1, 0, 0, 0, 6563, 743, 1, 0, 0, 0, 6564, 6565, 5, 46, 0, 0, 6565, 6566, 5, 41, 0, 0, 6566, 6567, 5, 2, 0, 0, 6567, 6568, 3, 1168, 584, 0, 6568, 6569, 5, 36, 0, 0, 6569, 6570, 3, 1168, 584, 0, 6570, 6571, 5, 3, 0, 0, 6571, 6572, 5, 105, 0, 0, 6572, 6573, 5, 211, 0, 0, 6573, 6575, 3, 674, 337, 0, 6574, 6576, 3, 746, 373, 0, 6575, 6574, 1, 0, 0, 0, 6575, 6576, 1, 0, 0, 0, 6576, 6602, 1, 0, 0, 0, 6577, 6578, 5, 46, 0, 0, 6578, 6579, 5, 41, 0, 0, 6579, 6580, 5, 2, 0, 0, 6580, 6581, 3, 1168, 584, 0, 6581, 6582, 5, 36, 0, 0, 6582, 6583, 3, 1168, 584, 0, 6583, 6584, 5, 3, 0, 0, 6584, 6585, 5, 379, 0, 0, 6585, 6587, 5, 211, 0, 0, 6586, 6588, 3, 746, 373, 0, 6587, 6586, 1, 0, 0, 0, 6587, 6588, 1, 0, 0, 0, 6588, 6602, 1, 0, 0, 0, 6589, 6590, 5, 46, 0, 0, 6590, 6591, 5, 41, 0, 0, 6591, 6592, 5, 2, 0, 0, 6592, 6593, 3, 1168, 584, 0, 6593, 6594, 5, 36, 0, 0, 6594, 6595, 3, 1168, 584, 0, 6595, 6596, 5, 3, 0, 0, 6596, 6597, 5, 105, 0, 0, 6597, 6599, 5, 400, 0, 0, 6598, 6600, 3, 746, 373, 0, 6599, 6598, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 6602, 1, 0, 0, 0, 6601, 6564, 1, 0, 0, 0, 6601, 6577, 1, 0, 0, 0, 6601, 6589, 1, 0, 0, 0, 6602, 745, 1, 0, 0, 0, 6603, 6604, 5, 36, 0, 0, 6604, 6608, 5, 223, 0, 0, 6605, 6606, 5, 36, 0, 0, 6606, 6608, 5, 141, 0, 0, 6607, 6603, 1, 0, 0, 0, 6607, 6605, 1, 0, 0, 0, 6608, 747, 1, 0, 0, 0, 6609, 6610, 5, 220, 0, 0, 6610, 6611, 5, 396, 0, 0, 6611, 749, 1, 0, 0, 0, 6612, 6614, 5, 46, 0, 0, 6613, 6615, 3, 658, 329, 0, 6614, 6613, 1, 0, 0, 0, 6614, 6615, 1, 0, 0, 0, 6615, 6616, 1, 0, 0, 0, 6616, 6617, 5, 443, 0, 0, 6617, 6618, 5, 62, 0, 0, 6618, 6619, 3, 1168, 584, 0, 6619, 6620, 5, 247, 0, 0, 6620, 6621, 3, 1436, 718, 0, 6621, 6622, 5, 2, 0, 0, 6622, 6623, 3, 752, 376, 0, 6623, 6624, 5, 3, 0, 0, 6624, 751, 1, 0, 0, 0, 6625, 6626, 5, 64, 0, 0, 6626, 6627, 5, 461, 0, 0, 6627, 6628, 5, 105, 0, 0, 6628, 6629, 5, 211, 0, 0, 6629, 6630, 3, 674, 337, 0, 6630, 6631, 5, 6, 0, 0, 6631, 6632, 5, 94, 0, 0, 6632, 6633, 5, 461, 0, 0, 6633, 6634, 5, 105, 0, 0, 6634, 6635, 5, 211, 0, 0, 6635, 6636, 3, 674, 337, 0, 6636, 6660, 1, 0, 0, 0, 6637, 6638, 5, 94, 0, 0, 6638, 6639, 5, 461, 0, 0, 6639, 6640, 5, 105, 0, 0, 6640, 6641, 5, 211, 0, 0, 6641, 6642, 3, 674, 337, 0, 6642, 6643, 5, 6, 0, 0, 6643, 6644, 5, 64, 0, 0, 6644, 6645, 5, 461, 0, 0, 6645, 6646, 5, 105, 0, 0, 6646, 6647, 5, 211, 0, 0, 6647, 6648, 3, 674, 337, 0, 6648, 6660, 1, 0, 0, 0, 6649, 6650, 5, 64, 0, 0, 6650, 6651, 5, 461, 0, 0, 6651, 6652, 5, 105, 0, 0, 6652, 6653, 5, 211, 0, 0, 6653, 6660, 3, 674, 337, 0, 6654, 6655, 5, 94, 0, 0, 6655, 6656, 5, 461, 0, 0, 6656, 6657, 5, 105, 0, 0, 6657, 6658, 5, 211, 0, 0, 6658, 6660, 3, 674, 337, 0, 6659, 6625, 1, 0, 0, 0, 6659, 6637, 1, 0, 0, 0, 6659, 6649, 1, 0, 0, 0, 6659, 6654, 1, 0, 0, 0, 6660, 753, 1, 0, 0, 0, 6661, 6662, 5, 306, 0, 0, 6662, 6678, 3, 756, 378, 0, 6663, 6664, 5, 306, 0, 0, 6664, 6678, 3, 758, 379, 0, 6665, 6666, 5, 306, 0, 0, 6666, 6667, 5, 2, 0, 0, 6667, 6668, 3, 760, 380, 0, 6668, 6669, 5, 3, 0, 0, 6669, 6670, 3, 756, 378, 0, 6670, 6678, 1, 0, 0, 0, 6671, 6672, 5, 306, 0, 0, 6672, 6673, 5, 2, 0, 0, 6673, 6674, 3, 760, 380, 0, 6674, 6675, 5, 3, 0, 0, 6675, 6676, 3, 758, 379, 0, 6676, 6678, 1, 0, 0, 0, 6677, 6661, 1, 0, 0, 0, 6677, 6663, 1, 0, 0, 0, 6677, 6665, 1, 0, 0, 0, 6677, 6671, 1, 0, 0, 0, 6678, 755, 1, 0, 0, 0, 6679, 6681, 5, 226, 0, 0, 6680, 6682, 3, 630, 315, 0, 6681, 6680, 1, 0, 0, 0, 6681, 6682, 1, 0, 0, 0, 6682, 6683, 1, 0, 0, 0, 6683, 6690, 3, 1412, 706, 0, 6684, 6686, 5, 92, 0, 0, 6685, 6687, 3, 630, 315, 0, 6686, 6685, 1, 0, 0, 0, 6686, 6687, 1, 0, 0, 0, 6687, 6688, 1, 0, 0, 0, 6688, 6690, 3, 1406, 703, 0, 6689, 6679, 1, 0, 0, 0, 6689, 6684, 1, 0, 0, 0, 6690, 757, 1, 0, 0, 0, 6691, 6693, 5, 323, 0, 0, 6692, 6694, 3, 630, 315, 0, 6693, 6692, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 6695, 1, 0, 0, 0, 6695, 6707, 3, 1422, 711, 0, 6696, 6698, 5, 349, 0, 0, 6697, 6699, 3, 630, 315, 0, 6698, 6697, 1, 0, 0, 0, 6698, 6699, 1, 0, 0, 0, 6699, 6700, 1, 0, 0, 0, 6700, 6707, 3, 1436, 718, 0, 6701, 6703, 5, 175, 0, 0, 6702, 6704, 3, 630, 315, 0, 6703, 6702, 1, 0, 0, 0, 6703, 6704, 1, 0, 0, 0, 6704, 6705, 1, 0, 0, 0, 6705, 6707, 3, 1420, 710, 0, 6706, 6691, 1, 0, 0, 0, 6706, 6696, 1, 0, 0, 0, 6706, 6701, 1, 0, 0, 0, 6707, 759, 1, 0, 0, 0, 6708, 6713, 3, 762, 381, 0, 6709, 6710, 5, 6, 0, 0, 6710, 6712, 3, 762, 381, 0, 6711, 6709, 1, 0, 0, 0, 6712, 6715, 1, 0, 0, 0, 6713, 6711, 1, 0, 0, 0, 6713, 6714, 1, 0, 0, 0, 6714, 761, 1, 0, 0, 0, 6715, 6713, 1, 0, 0, 0, 6716, 6717, 5, 128, 0, 0, 6717, 763, 1, 0, 0, 0, 6718, 6719, 5, 138, 0, 0, 6719, 6720, 5, 351, 0, 0, 6720, 6721, 3, 1402, 701, 0, 6721, 6722, 5, 333, 0, 0, 6722, 6723, 3, 132, 66, 0, 6723, 6731, 1, 0, 0, 0, 6724, 6725, 5, 138, 0, 0, 6725, 6726, 5, 351, 0, 0, 6726, 6727, 3, 1402, 701, 0, 6727, 6728, 5, 313, 0, 0, 6728, 6729, 3, 132, 66, 0, 6729, 6731, 1, 0, 0, 0, 6730, 6718, 1, 0, 0, 0, 6730, 6724, 1, 0, 0, 0, 6731, 765, 1, 0, 0, 0, 6732, 6733, 5, 138, 0, 0, 6733, 6734, 5, 136, 0, 0, 6734, 6735, 3, 698, 349, 0, 6735, 6736, 5, 309, 0, 0, 6736, 6737, 5, 94, 0, 0, 6737, 6738, 3, 1436, 718, 0, 6738, 7124, 1, 0, 0, 0, 6739, 6740, 5, 138, 0, 0, 6740, 6741, 5, 108, 0, 0, 6741, 6742, 3, 558, 279, 0, 6742, 6743, 5, 309, 0, 0, 6743, 6744, 5, 94, 0, 0, 6744, 6745, 3, 1436, 718, 0, 6745, 7124, 1, 0, 0, 0, 6746, 6747, 5, 138, 0, 0, 6747, 6748, 5, 168, 0, 0, 6748, 6749, 3, 558, 279, 0, 6749, 6750, 5, 309, 0, 0, 6750, 6751, 5, 94, 0, 0, 6751, 6752, 3, 1436, 718, 0, 6752, 7124, 1, 0, 0, 0, 6753, 6754, 5, 138, 0, 0, 6754, 6755, 5, 175, 0, 0, 6755, 6756, 3, 1420, 710, 0, 6756, 6757, 5, 309, 0, 0, 6757, 6758, 5, 94, 0, 0, 6758, 6759, 3, 1418, 709, 0, 6759, 7124, 1, 0, 0, 0, 6760, 6761, 5, 138, 0, 0, 6761, 6762, 5, 189, 0, 0, 6762, 6763, 3, 558, 279, 0, 6763, 6764, 5, 309, 0, 0, 6764, 6765, 5, 94, 0, 0, 6765, 6766, 3, 1436, 718, 0, 6766, 7124, 1, 0, 0, 0, 6767, 6768, 5, 138, 0, 0, 6768, 6769, 5, 189, 0, 0, 6769, 6770, 3, 558, 279, 0, 6770, 6771, 5, 309, 0, 0, 6771, 6772, 5, 45, 0, 0, 6772, 6773, 3, 1436, 718, 0, 6773, 6774, 5, 94, 0, 0, 6774, 6775, 3, 1436, 718, 0, 6775, 7124, 1, 0, 0, 0, 6776, 6777, 5, 138, 0, 0, 6777, 6778, 5, 63, 0, 0, 6778, 6779, 5, 174, 0, 0, 6779, 6780, 5, 381, 0, 0, 6780, 6781, 3, 1436, 718, 0, 6781, 6782, 5, 309, 0, 0, 6782, 6783, 5, 94, 0, 0, 6783, 6784, 3, 1436, 718, 0, 6784, 7124, 1, 0, 0, 0, 6785, 6786, 5, 138, 0, 0, 6786, 6787, 5, 211, 0, 0, 6787, 6788, 3, 674, 337, 0, 6788, 6789, 5, 309, 0, 0, 6789, 6790, 5, 94, 0, 0, 6790, 6791, 3, 1442, 721, 0, 6791, 7124, 1, 0, 0, 0, 6792, 6793, 5, 138, 0, 0, 6793, 6794, 5, 66, 0, 0, 6794, 6795, 3, 1468, 734, 0, 6795, 6796, 5, 309, 0, 0, 6796, 6797, 5, 94, 0, 0, 6797, 6798, 3, 1468, 734, 0, 6798, 7124, 1, 0, 0, 0, 6799, 6801, 5, 138, 0, 0, 6800, 6802, 3, 338, 169, 0, 6801, 6800, 1, 0, 0, 0, 6801, 6802, 1, 0, 0, 0, 6802, 6803, 1, 0, 0, 0, 6803, 6804, 5, 247, 0, 0, 6804, 6805, 3, 1436, 718, 0, 6805, 6806, 5, 309, 0, 0, 6806, 6807, 5, 94, 0, 0, 6807, 6808, 3, 1436, 718, 0, 6808, 7124, 1, 0, 0, 0, 6809, 6810, 5, 138, 0, 0, 6810, 6811, 5, 278, 0, 0, 6811, 6812, 5, 156, 0, 0, 6812, 6813, 3, 558, 279, 0, 6813, 6814, 5, 100, 0, 0, 6814, 6815, 3, 1436, 718, 0, 6815, 6816, 5, 309, 0, 0, 6816, 6817, 5, 94, 0, 0, 6817, 6818, 3, 1436, 718, 0, 6818, 7124, 1, 0, 0, 0, 6819, 6820, 5, 138, 0, 0, 6820, 6821, 5, 278, 0, 0, 6821, 6822, 5, 206, 0, 0, 6822, 6823, 3, 558, 279, 0, 6823, 6824, 5, 100, 0, 0, 6824, 6825, 3, 1436, 718, 0, 6825, 6826, 5, 309, 0, 0, 6826, 6827, 5, 94, 0, 0, 6827, 6828, 3, 1436, 718, 0, 6828, 7124, 1, 0, 0, 0, 6829, 6830, 5, 138, 0, 0, 6830, 6832, 5, 445, 0, 0, 6831, 6833, 3, 748, 374, 0, 6832, 6831, 1, 0, 0, 0, 6832, 6833, 1, 0, 0, 0, 6833, 6834, 1, 0, 0, 0, 6834, 6835, 3, 1436, 718, 0, 6835, 6836, 5, 80, 0, 0, 6836, 6837, 3, 1412, 706, 0, 6837, 6838, 5, 309, 0, 0, 6838, 6839, 5, 94, 0, 0, 6839, 6840, 3, 1436, 718, 0, 6840, 7124, 1, 0, 0, 0, 6841, 6842, 5, 138, 0, 0, 6842, 6843, 5, 296, 0, 0, 6843, 6844, 3, 670, 335, 0, 6844, 6845, 5, 309, 0, 0, 6845, 6846, 5, 94, 0, 0, 6846, 6847, 3, 1430, 715, 0, 6847, 7124, 1, 0, 0, 0, 6848, 6849, 5, 138, 0, 0, 6849, 6850, 5, 452, 0, 0, 6850, 6851, 3, 1436, 718, 0, 6851, 6852, 5, 309, 0, 0, 6852, 6853, 5, 94, 0, 0, 6853, 6854, 3, 1436, 718, 0, 6854, 7124, 1, 0, 0, 0, 6855, 6856, 5, 138, 0, 0, 6856, 6857, 5, 442, 0, 0, 6857, 6858, 3, 666, 333, 0, 6858, 6859, 5, 309, 0, 0, 6859, 6860, 5, 94, 0, 0, 6860, 6861, 3, 1436, 718, 0, 6861, 7124, 1, 0, 0, 0, 6862, 6863, 5, 138, 0, 0, 6863, 6864, 5, 323, 0, 0, 6864, 6865, 3, 1422, 711, 0, 6865, 6866, 5, 309, 0, 0, 6866, 6867, 5, 94, 0, 0, 6867, 6868, 3, 48, 24, 0, 6868, 7124, 1, 0, 0, 0, 6869, 6870, 5, 138, 0, 0, 6870, 6871, 5, 331, 0, 0, 6871, 6872, 3, 1436, 718, 0, 6872, 6873, 5, 309, 0, 0, 6873, 6874, 5, 94, 0, 0, 6874, 6875, 3, 1436, 718, 0, 6875, 7124, 1, 0, 0, 0, 6876, 6877, 5, 138, 0, 0, 6877, 6878, 5, 451, 0, 0, 6878, 6879, 3, 1436, 718, 0, 6879, 6880, 5, 309, 0, 0, 6880, 6881, 5, 94, 0, 0, 6881, 6882, 3, 1436, 718, 0, 6882, 7124, 1, 0, 0, 0, 6883, 6884, 5, 138, 0, 0, 6884, 6886, 5, 92, 0, 0, 6885, 6887, 3, 748, 374, 0, 6886, 6885, 1, 0, 0, 0, 6886, 6887, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 6889, 3, 1118, 559, 0, 6889, 6890, 5, 309, 0, 0, 6890, 6891, 5, 94, 0, 0, 6891, 6892, 3, 1404, 702, 0, 6892, 7124, 1, 0, 0, 0, 6893, 6894, 5, 138, 0, 0, 6894, 6896, 5, 328, 0, 0, 6895, 6897, 3, 748, 374, 0, 6896, 6895, 1, 0, 0, 0, 6896, 6897, 1, 0, 0, 0, 6897, 6898, 1, 0, 0, 0, 6898, 6899, 3, 1412, 706, 0, 6899, 6900, 5, 309, 0, 0, 6900, 6901, 5, 94, 0, 0, 6901, 6902, 3, 1436, 718, 0, 6902, 7124, 1, 0, 0, 0, 6903, 6904, 5, 138, 0, 0, 6904, 6906, 5, 376, 0, 0, 6905, 6907, 3, 748, 374, 0, 6906, 6905, 1, 0, 0, 0, 6906, 6907, 1, 0, 0, 0, 6907, 6908, 1, 0, 0, 0, 6908, 6909, 3, 1410, 705, 0, 6909, 6910, 5, 309, 0, 0, 6910, 6911, 5, 94, 0, 0, 6911, 6912, 3, 1408, 704, 0, 6912, 7124, 1, 0, 0, 0, 6913, 6914, 5, 138, 0, 0, 6914, 6915, 5, 259, 0, 0, 6915, 6917, 5, 376, 0, 0, 6916, 6918, 3, 748, 374, 0, 6917, 6916, 1, 0, 0, 0, 6917, 6918, 1, 0, 0, 0, 6918, 6919, 1, 0, 0, 0, 6919, 6920, 3, 1410, 705, 0, 6920, 6921, 5, 309, 0, 0, 6921, 6922, 5, 94, 0, 0, 6922, 6923, 3, 1408, 704, 0, 6923, 7124, 1, 0, 0, 0, 6924, 6925, 5, 138, 0, 0, 6925, 6927, 5, 226, 0, 0, 6926, 6928, 3, 748, 374, 0, 6927, 6926, 1, 0, 0, 0, 6927, 6928, 1, 0, 0, 0, 6928, 6929, 1, 0, 0, 0, 6929, 6930, 3, 1412, 706, 0, 6930, 6931, 5, 309, 0, 0, 6931, 6932, 5, 94, 0, 0, 6932, 6933, 3, 1436, 718, 0, 6933, 7124, 1, 0, 0, 0, 6934, 6935, 5, 138, 0, 0, 6935, 6936, 5, 63, 0, 0, 6936, 6938, 5, 92, 0, 0, 6937, 6939, 3, 748, 374, 0, 6938, 6937, 1, 0, 0, 0, 6938, 6939, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 6941, 3, 1118, 559, 0, 6941, 6942, 5, 309, 0, 0, 6942, 6943, 5, 94, 0, 0, 6943, 6944, 3, 1404, 702, 0, 6944, 7124, 1, 0, 0, 0, 6945, 6946, 5, 138, 0, 0, 6946, 6948, 5, 92, 0, 0, 6947, 6949, 3, 748, 374, 0, 6948, 6947, 1, 0, 0, 0, 6948, 6949, 1, 0, 0, 0, 6949, 6950, 1, 0, 0, 0, 6950, 6951, 3, 1118, 559, 0, 6951, 6953, 5, 309, 0, 0, 6952, 6954, 5, 44, 0, 0, 6953, 6952, 1, 0, 0, 0, 6953, 6954, 1, 0, 0, 0, 6954, 6955, 1, 0, 0, 0, 6955, 6956, 3, 1432, 716, 0, 6956, 6957, 5, 94, 0, 0, 6957, 6958, 3, 1434, 717, 0, 6958, 7124, 1, 0, 0, 0, 6959, 6960, 5, 138, 0, 0, 6960, 6962, 5, 376, 0, 0, 6961, 6963, 3, 748, 374, 0, 6962, 6961, 1, 0, 0, 0, 6962, 6963, 1, 0, 0, 0, 6963, 6964, 1, 0, 0, 0, 6964, 6965, 3, 1410, 705, 0, 6965, 6967, 5, 309, 0, 0, 6966, 6968, 5, 44, 0, 0, 6967, 6966, 1, 0, 0, 0, 6967, 6968, 1, 0, 0, 0, 6968, 6969, 1, 0, 0, 0, 6969, 6970, 3, 1432, 716, 0, 6970, 6971, 5, 94, 0, 0, 6971, 6972, 3, 1434, 717, 0, 6972, 7124, 1, 0, 0, 0, 6973, 6974, 5, 138, 0, 0, 6974, 6975, 5, 259, 0, 0, 6975, 6977, 5, 376, 0, 0, 6976, 6978, 3, 748, 374, 0, 6977, 6976, 1, 0, 0, 0, 6977, 6978, 1, 0, 0, 0, 6978, 6979, 1, 0, 0, 0, 6979, 6980, 3, 1410, 705, 0, 6980, 6982, 5, 309, 0, 0, 6981, 6983, 5, 44, 0, 0, 6982, 6981, 1, 0, 0, 0, 6982, 6983, 1, 0, 0, 0, 6983, 6984, 1, 0, 0, 0, 6984, 6985, 3, 1432, 716, 0, 6985, 6986, 5, 94, 0, 0, 6986, 6987, 3, 1434, 717, 0, 6987, 7124, 1, 0, 0, 0, 6988, 6989, 5, 138, 0, 0, 6989, 6991, 5, 92, 0, 0, 6990, 6992, 3, 748, 374, 0, 6991, 6990, 1, 0, 0, 0, 6991, 6992, 1, 0, 0, 0, 6992, 6993, 1, 0, 0, 0, 6993, 6994, 3, 1118, 559, 0, 6994, 6995, 5, 309, 0, 0, 6995, 6996, 5, 45, 0, 0, 6996, 6997, 3, 1436, 718, 0, 6997, 6998, 5, 94, 0, 0, 6998, 6999, 3, 1436, 718, 0, 6999, 7124, 1, 0, 0, 0, 7000, 7001, 5, 138, 0, 0, 7001, 7002, 5, 63, 0, 0, 7002, 7004, 5, 92, 0, 0, 7003, 7005, 3, 748, 374, 0, 7004, 7003, 1, 0, 0, 0, 7004, 7005, 1, 0, 0, 0, 7005, 7006, 1, 0, 0, 0, 7006, 7007, 3, 1118, 559, 0, 7007, 7009, 5, 309, 0, 0, 7008, 7010, 5, 44, 0, 0, 7009, 7008, 1, 0, 0, 0, 7009, 7010, 1, 0, 0, 0, 7010, 7011, 1, 0, 0, 0, 7011, 7012, 3, 1432, 716, 0, 7012, 7013, 5, 94, 0, 0, 7013, 7014, 3, 1434, 717, 0, 7014, 7124, 1, 0, 0, 0, 7015, 7016, 5, 138, 0, 0, 7016, 7017, 5, 321, 0, 0, 7017, 7018, 3, 1436, 718, 0, 7018, 7019, 5, 80, 0, 0, 7019, 7020, 3, 1412, 706, 0, 7020, 7021, 5, 309, 0, 0, 7021, 7022, 5, 94, 0, 0, 7022, 7023, 3, 1436, 718, 0, 7023, 7124, 1, 0, 0, 0, 7024, 7025, 5, 138, 0, 0, 7025, 7026, 5, 357, 0, 0, 7026, 7027, 3, 1436, 718, 0, 7027, 7028, 5, 80, 0, 0, 7028, 7029, 3, 1412, 706, 0, 7029, 7030, 5, 309, 0, 0, 7030, 7031, 5, 94, 0, 0, 7031, 7032, 3, 1436, 718, 0, 7032, 7124, 1, 0, 0, 0, 7033, 7034, 5, 138, 0, 0, 7034, 7035, 5, 198, 0, 0, 7035, 7036, 5, 357, 0, 0, 7036, 7037, 3, 1436, 718, 0, 7037, 7038, 5, 309, 0, 0, 7038, 7039, 5, 94, 0, 0, 7039, 7040, 3, 1436, 718, 0, 7040, 7124, 1, 0, 0, 0, 7041, 7042, 5, 138, 0, 0, 7042, 7043, 5, 318, 0, 0, 7043, 7044, 3, 1468, 734, 0, 7044, 7045, 5, 309, 0, 0, 7045, 7046, 5, 94, 0, 0, 7046, 7047, 3, 1468, 734, 0, 7047, 7124, 1, 0, 0, 0, 7048, 7049, 5, 138, 0, 0, 7049, 7050, 5, 99, 0, 0, 7050, 7051, 3, 1468, 734, 0, 7051, 7052, 5, 309, 0, 0, 7052, 7053, 5, 94, 0, 0, 7053, 7054, 3, 1468, 734, 0, 7054, 7124, 1, 0, 0, 0, 7055, 7056, 5, 138, 0, 0, 7056, 7057, 5, 351, 0, 0, 7057, 7058, 3, 1402, 701, 0, 7058, 7059, 5, 309, 0, 0, 7059, 7060, 5, 94, 0, 0, 7060, 7061, 3, 1400, 700, 0, 7061, 7124, 1, 0, 0, 0, 7062, 7063, 5, 138, 0, 0, 7063, 7064, 5, 342, 0, 0, 7064, 7065, 3, 558, 279, 0, 7065, 7066, 5, 309, 0, 0, 7066, 7067, 5, 94, 0, 0, 7067, 7068, 3, 1436, 718, 0, 7068, 7124, 1, 0, 0, 0, 7069, 7070, 5, 138, 0, 0, 7070, 7071, 5, 355, 0, 0, 7071, 7072, 5, 325, 0, 0, 7072, 7073, 5, 283, 0, 0, 7073, 7074, 3, 558, 279, 0, 7074, 7075, 5, 309, 0, 0, 7075, 7076, 5, 94, 0, 0, 7076, 7077, 3, 1436, 718, 0, 7077, 7124, 1, 0, 0, 0, 7078, 7079, 5, 138, 0, 0, 7079, 7080, 5, 355, 0, 0, 7080, 7081, 5, 325, 0, 0, 7081, 7082, 5, 185, 0, 0, 7082, 7083, 3, 558, 279, 0, 7083, 7084, 5, 309, 0, 0, 7084, 7085, 5, 94, 0, 0, 7085, 7086, 3, 1436, 718, 0, 7086, 7124, 1, 0, 0, 0, 7087, 7088, 5, 138, 0, 0, 7088, 7089, 5, 355, 0, 0, 7089, 7090, 5, 325, 0, 0, 7090, 7091, 5, 353, 0, 0, 7091, 7092, 3, 558, 279, 0, 7092, 7093, 5, 309, 0, 0, 7093, 7094, 5, 94, 0, 0, 7094, 7095, 3, 1436, 718, 0, 7095, 7124, 1, 0, 0, 0, 7096, 7097, 5, 138, 0, 0, 7097, 7098, 5, 355, 0, 0, 7098, 7099, 5, 325, 0, 0, 7099, 7100, 5, 163, 0, 0, 7100, 7101, 3, 558, 279, 0, 7101, 7102, 5, 309, 0, 0, 7102, 7103, 5, 94, 0, 0, 7103, 7104, 3, 1436, 718, 0, 7104, 7124, 1, 0, 0, 0, 7105, 7106, 5, 138, 0, 0, 7106, 7107, 5, 360, 0, 0, 7107, 7108, 3, 558, 279, 0, 7108, 7109, 5, 309, 0, 0, 7109, 7110, 5, 94, 0, 0, 7110, 7111, 3, 1436, 718, 0, 7111, 7124, 1, 0, 0, 0, 7112, 7113, 5, 138, 0, 0, 7113, 7114, 5, 360, 0, 0, 7114, 7115, 3, 558, 279, 0, 7115, 7116, 5, 309, 0, 0, 7116, 7117, 5, 143, 0, 0, 7117, 7118, 3, 1436, 718, 0, 7118, 7119, 5, 94, 0, 0, 7119, 7121, 3, 1436, 718, 0, 7120, 7122, 3, 124, 62, 0, 7121, 7120, 1, 0, 0, 0, 7121, 7122, 1, 0, 0, 0, 7122, 7124, 1, 0, 0, 0, 7123, 6732, 1, 0, 0, 0, 7123, 6739, 1, 0, 0, 0, 7123, 6746, 1, 0, 0, 0, 7123, 6753, 1, 0, 0, 0, 7123, 6760, 1, 0, 0, 0, 7123, 6767, 1, 0, 0, 0, 7123, 6776, 1, 0, 0, 0, 7123, 6785, 1, 0, 0, 0, 7123, 6792, 1, 0, 0, 0, 7123, 6799, 1, 0, 0, 0, 7123, 6809, 1, 0, 0, 0, 7123, 6819, 1, 0, 0, 0, 7123, 6829, 1, 0, 0, 0, 7123, 6841, 1, 0, 0, 0, 7123, 6848, 1, 0, 0, 0, 7123, 6855, 1, 0, 0, 0, 7123, 6862, 1, 0, 0, 0, 7123, 6869, 1, 0, 0, 0, 7123, 6876, 1, 0, 0, 0, 7123, 6883, 1, 0, 0, 0, 7123, 6893, 1, 0, 0, 0, 7123, 6903, 1, 0, 0, 0, 7123, 6913, 1, 0, 0, 0, 7123, 6924, 1, 0, 0, 0, 7123, 6934, 1, 0, 0, 0, 7123, 6945, 1, 0, 0, 0, 7123, 6959, 1, 0, 0, 0, 7123, 6973, 1, 0, 0, 0, 7123, 6988, 1, 0, 0, 0, 7123, 7000, 1, 0, 0, 0, 7123, 7015, 1, 0, 0, 0, 7123, 7024, 1, 0, 0, 0, 7123, 7033, 1, 0, 0, 0, 7123, 7041, 1, 0, 0, 0, 7123, 7048, 1, 0, 0, 0, 7123, 7055, 1, 0, 0, 0, 7123, 7062, 1, 0, 0, 0, 7123, 7069, 1, 0, 0, 0, 7123, 7078, 1, 0, 0, 0, 7123, 7087, 1, 0, 0, 0, 7123, 7096, 1, 0, 0, 0, 7123, 7105, 1, 0, 0, 0, 7123, 7112, 1, 0, 0, 0, 7124, 767, 1, 0, 0, 0, 7125, 7126, 5, 333, 0, 0, 7126, 7127, 5, 174, 0, 0, 7127, 769, 1, 0, 0, 0, 7128, 7129, 5, 138, 0, 0, 7129, 7130, 5, 211, 0, 0, 7130, 7132, 3, 674, 337, 0, 7131, 7133, 3, 772, 386, 0, 7132, 7131, 1, 0, 0, 0, 7132, 7133, 1, 0, 0, 0, 7133, 7134, 1, 0, 0, 0, 7134, 7135, 5, 462, 0, 0, 7135, 7136, 5, 80, 0, 0, 7136, 7137, 5, 204, 0, 0, 7137, 7138, 3, 1436, 718, 0, 7138, 7198, 1, 0, 0, 0, 7139, 7140, 5, 138, 0, 0, 7140, 7141, 5, 296, 0, 0, 7141, 7143, 3, 670, 335, 0, 7142, 7144, 3, 772, 386, 0, 7143, 7142, 1, 0, 0, 0, 7143, 7144, 1, 0, 0, 0, 7144, 7145, 1, 0, 0, 0, 7145, 7146, 5, 462, 0, 0, 7146, 7147, 5, 80, 0, 0, 7147, 7148, 5, 204, 0, 0, 7148, 7149, 3, 1436, 718, 0, 7149, 7198, 1, 0, 0, 0, 7150, 7151, 5, 138, 0, 0, 7151, 7152, 5, 442, 0, 0, 7152, 7154, 3, 666, 333, 0, 7153, 7155, 3, 772, 386, 0, 7154, 7153, 1, 0, 0, 0, 7154, 7155, 1, 0, 0, 0, 7155, 7156, 1, 0, 0, 0, 7156, 7157, 5, 462, 0, 0, 7157, 7158, 5, 80, 0, 0, 7158, 7159, 5, 204, 0, 0, 7159, 7160, 3, 1436, 718, 0, 7160, 7198, 1, 0, 0, 0, 7161, 7162, 5, 138, 0, 0, 7162, 7163, 5, 357, 0, 0, 7163, 7164, 3, 1436, 718, 0, 7164, 7165, 5, 80, 0, 0, 7165, 7167, 3, 1412, 706, 0, 7166, 7168, 3, 772, 386, 0, 7167, 7166, 1, 0, 0, 0, 7167, 7168, 1, 0, 0, 0, 7168, 7169, 1, 0, 0, 0, 7169, 7170, 5, 462, 0, 0, 7170, 7171, 5, 80, 0, 0, 7171, 7172, 5, 204, 0, 0, 7172, 7173, 3, 1436, 718, 0, 7173, 7198, 1, 0, 0, 0, 7174, 7175, 5, 138, 0, 0, 7175, 7176, 5, 259, 0, 0, 7176, 7177, 5, 376, 0, 0, 7177, 7179, 3, 1410, 705, 0, 7178, 7180, 3, 772, 386, 0, 7179, 7178, 1, 0, 0, 0, 7179, 7180, 1, 0, 0, 0, 7180, 7181, 1, 0, 0, 0, 7181, 7182, 5, 462, 0, 0, 7182, 7183, 5, 80, 0, 0, 7183, 7184, 5, 204, 0, 0, 7184, 7185, 3, 1436, 718, 0, 7185, 7198, 1, 0, 0, 0, 7186, 7187, 5, 138, 0, 0, 7187, 7188, 5, 226, 0, 0, 7188, 7190, 3, 1412, 706, 0, 7189, 7191, 3, 772, 386, 0, 7190, 7189, 1, 0, 0, 0, 7190, 7191, 1, 0, 0, 0, 7191, 7192, 1, 0, 0, 0, 7192, 7193, 5, 462, 0, 0, 7193, 7194, 5, 80, 0, 0, 7194, 7195, 5, 204, 0, 0, 7195, 7196, 3, 1436, 718, 0, 7196, 7198, 1, 0, 0, 0, 7197, 7128, 1, 0, 0, 0, 7197, 7139, 1, 0, 0, 0, 7197, 7150, 1, 0, 0, 0, 7197, 7161, 1, 0, 0, 0, 7197, 7174, 1, 0, 0, 0, 7197, 7186, 1, 0, 0, 0, 7198, 771, 1, 0, 0, 0, 7199, 7200, 5, 269, 0, 0, 7200, 773, 1, 0, 0, 0, 7201, 7202, 5, 138, 0, 0, 7202, 7203, 5, 136, 0, 0, 7203, 7204, 3, 698, 349, 0, 7204, 7205, 5, 333, 0, 0, 7205, 7206, 5, 323, 0, 0, 7206, 7207, 3, 1422, 711, 0, 7207, 7387, 1, 0, 0, 0, 7208, 7209, 5, 138, 0, 0, 7209, 7210, 5, 108, 0, 0, 7210, 7211, 3, 558, 279, 0, 7211, 7212, 5, 333, 0, 0, 7212, 7213, 5, 323, 0, 0, 7213, 7214, 3, 1422, 711, 0, 7214, 7387, 1, 0, 0, 0, 7215, 7216, 5, 138, 0, 0, 7216, 7217, 5, 168, 0, 0, 7217, 7218, 3, 558, 279, 0, 7218, 7219, 5, 333, 0, 0, 7219, 7220, 5, 323, 0, 0, 7220, 7221, 3, 1422, 711, 0, 7221, 7387, 1, 0, 0, 0, 7222, 7223, 5, 138, 0, 0, 7223, 7224, 5, 189, 0, 0, 7224, 7225, 3, 558, 279, 0, 7225, 7226, 5, 333, 0, 0, 7226, 7227, 5, 323, 0, 0, 7227, 7228, 3, 1422, 711, 0, 7228, 7387, 1, 0, 0, 0, 7229, 7230, 5, 138, 0, 0, 7230, 7231, 5, 204, 0, 0, 7231, 7232, 3, 1436, 718, 0, 7232, 7233, 5, 333, 0, 0, 7233, 7234, 5, 323, 0, 0, 7234, 7235, 3, 1422, 711, 0, 7235, 7387, 1, 0, 0, 0, 7236, 7237, 5, 138, 0, 0, 7237, 7238, 5, 211, 0, 0, 7238, 7239, 3, 674, 337, 0, 7239, 7240, 5, 333, 0, 0, 7240, 7241, 5, 323, 0, 0, 7241, 7242, 3, 1422, 711, 0, 7242, 7387, 1, 0, 0, 0, 7243, 7244, 5, 138, 0, 0, 7244, 7245, 5, 278, 0, 0, 7245, 7246, 3, 736, 368, 0, 7246, 7247, 5, 333, 0, 0, 7247, 7248, 5, 323, 0, 0, 7248, 7249, 3, 1422, 711, 0, 7249, 7387, 1, 0, 0, 0, 7250, 7251, 5, 138, 0, 0, 7251, 7252, 5, 278, 0, 0, 7252, 7253, 5, 156, 0, 0, 7253, 7254, 3, 558, 279, 0, 7254, 7255, 5, 100, 0, 0, 7255, 7256, 3, 1436, 718, 0, 7256, 7257, 5, 333, 0, 0, 7257, 7258, 5, 323, 0, 0, 7258, 7259, 3, 1422, 711, 0, 7259, 7387, 1, 0, 0, 0, 7260, 7261, 5, 138, 0, 0, 7261, 7262, 5, 278, 0, 0, 7262, 7263, 5, 206, 0, 0, 7263, 7264, 3, 558, 279, 0, 7264, 7265, 5, 100, 0, 0, 7265, 7266, 3, 1436, 718, 0, 7266, 7267, 5, 333, 0, 0, 7267, 7268, 5, 323, 0, 0, 7268, 7269, 3, 1422, 711, 0, 7269, 7387, 1, 0, 0, 0, 7270, 7271, 5, 138, 0, 0, 7271, 7272, 5, 296, 0, 0, 7272, 7273, 3, 670, 335, 0, 7273, 7274, 5, 333, 0, 0, 7274, 7275, 5, 323, 0, 0, 7275, 7276, 3, 1422, 711, 0, 7276, 7387, 1, 0, 0, 0, 7277, 7278, 5, 138, 0, 0, 7278, 7279, 5, 442, 0, 0, 7279, 7280, 3, 666, 333, 0, 7280, 7281, 5, 333, 0, 0, 7281, 7282, 5, 323, 0, 0, 7282, 7283, 3, 1422, 711, 0, 7283, 7387, 1, 0, 0, 0, 7284, 7285, 5, 138, 0, 0, 7285, 7287, 5, 92, 0, 0, 7286, 7288, 3, 748, 374, 0, 7287, 7286, 1, 0, 0, 0, 7287, 7288, 1, 0, 0, 0, 7288, 7289, 1, 0, 0, 0, 7289, 7290, 3, 1118, 559, 0, 7290, 7291, 5, 333, 0, 0, 7291, 7292, 5, 323, 0, 0, 7292, 7293, 3, 1422, 711, 0, 7293, 7387, 1, 0, 0, 0, 7294, 7295, 5, 138, 0, 0, 7295, 7296, 5, 342, 0, 0, 7296, 7297, 3, 558, 279, 0, 7297, 7298, 5, 333, 0, 0, 7298, 7299, 5, 323, 0, 0, 7299, 7300, 3, 1422, 711, 0, 7300, 7387, 1, 0, 0, 0, 7301, 7302, 5, 138, 0, 0, 7302, 7303, 5, 355, 0, 0, 7303, 7304, 5, 325, 0, 0, 7304, 7305, 5, 283, 0, 0, 7305, 7306, 3, 558, 279, 0, 7306, 7307, 5, 333, 0, 0, 7307, 7308, 5, 323, 0, 0, 7308, 7309, 3, 1422, 711, 0, 7309, 7387, 1, 0, 0, 0, 7310, 7311, 5, 138, 0, 0, 7311, 7312, 5, 355, 0, 0, 7312, 7313, 5, 325, 0, 0, 7313, 7314, 5, 185, 0, 0, 7314, 7315, 3, 558, 279, 0, 7315, 7316, 5, 333, 0, 0, 7316, 7317, 5, 323, 0, 0, 7317, 7318, 3, 1422, 711, 0, 7318, 7387, 1, 0, 0, 0, 7319, 7320, 5, 138, 0, 0, 7320, 7321, 5, 355, 0, 0, 7321, 7322, 5, 325, 0, 0, 7322, 7323, 5, 353, 0, 0, 7323, 7324, 3, 558, 279, 0, 7324, 7325, 5, 333, 0, 0, 7325, 7326, 5, 323, 0, 0, 7326, 7327, 3, 1422, 711, 0, 7327, 7387, 1, 0, 0, 0, 7328, 7329, 5, 138, 0, 0, 7329, 7330, 5, 355, 0, 0, 7330, 7331, 5, 325, 0, 0, 7331, 7332, 5, 163, 0, 0, 7332, 7333, 3, 558, 279, 0, 7333, 7334, 5, 333, 0, 0, 7334, 7335, 5, 323, 0, 0, 7335, 7336, 3, 1422, 711, 0, 7336, 7387, 1, 0, 0, 0, 7337, 7338, 5, 138, 0, 0, 7338, 7340, 5, 328, 0, 0, 7339, 7341, 3, 748, 374, 0, 7340, 7339, 1, 0, 0, 0, 7340, 7341, 1, 0, 0, 0, 7341, 7342, 1, 0, 0, 0, 7342, 7343, 3, 1412, 706, 0, 7343, 7344, 5, 333, 0, 0, 7344, 7345, 5, 323, 0, 0, 7345, 7346, 3, 1422, 711, 0, 7346, 7387, 1, 0, 0, 0, 7347, 7348, 5, 138, 0, 0, 7348, 7350, 5, 376, 0, 0, 7349, 7351, 3, 748, 374, 0, 7350, 7349, 1, 0, 0, 0, 7350, 7351, 1, 0, 0, 0, 7351, 7352, 1, 0, 0, 0, 7352, 7353, 3, 1410, 705, 0, 7353, 7354, 5, 333, 0, 0, 7354, 7355, 5, 323, 0, 0, 7355, 7356, 3, 1422, 711, 0, 7356, 7387, 1, 0, 0, 0, 7357, 7358, 5, 138, 0, 0, 7358, 7359, 5, 259, 0, 0, 7359, 7361, 5, 376, 0, 0, 7360, 7362, 3, 748, 374, 0, 7361, 7360, 1, 0, 0, 0, 7361, 7362, 1, 0, 0, 0, 7362, 7363, 1, 0, 0, 0, 7363, 7364, 3, 1410, 705, 0, 7364, 7365, 5, 333, 0, 0, 7365, 7366, 5, 323, 0, 0, 7366, 7367, 3, 1422, 711, 0, 7367, 7387, 1, 0, 0, 0, 7368, 7369, 5, 138, 0, 0, 7369, 7370, 5, 63, 0, 0, 7370, 7372, 5, 92, 0, 0, 7371, 7373, 3, 748, 374, 0, 7372, 7371, 1, 0, 0, 0, 7372, 7373, 1, 0, 0, 0, 7373, 7374, 1, 0, 0, 0, 7374, 7375, 3, 1118, 559, 0, 7375, 7376, 5, 333, 0, 0, 7376, 7377, 5, 323, 0, 0, 7377, 7378, 3, 1422, 711, 0, 7378, 7387, 1, 0, 0, 0, 7379, 7380, 5, 138, 0, 0, 7380, 7381, 5, 360, 0, 0, 7381, 7382, 3, 558, 279, 0, 7382, 7383, 5, 333, 0, 0, 7383, 7384, 5, 323, 0, 0, 7384, 7385, 3, 1422, 711, 0, 7385, 7387, 1, 0, 0, 0, 7386, 7201, 1, 0, 0, 0, 7386, 7208, 1, 0, 0, 0, 7386, 7215, 1, 0, 0, 0, 7386, 7222, 1, 0, 0, 0, 7386, 7229, 1, 0, 0, 0, 7386, 7236, 1, 0, 0, 0, 7386, 7243, 1, 0, 0, 0, 7386, 7250, 1, 0, 0, 0, 7386, 7260, 1, 0, 0, 0, 7386, 7270, 1, 0, 0, 0, 7386, 7277, 1, 0, 0, 0, 7386, 7284, 1, 0, 0, 0, 7386, 7294, 1, 0, 0, 0, 7386, 7301, 1, 0, 0, 0, 7386, 7310, 1, 0, 0, 0, 7386, 7319, 1, 0, 0, 0, 7386, 7328, 1, 0, 0, 0, 7386, 7337, 1, 0, 0, 0, 7386, 7347, 1, 0, 0, 0, 7386, 7357, 1, 0, 0, 0, 7386, 7368, 1, 0, 0, 0, 7386, 7379, 1, 0, 0, 0, 7387, 775, 1, 0, 0, 0, 7388, 7389, 5, 138, 0, 0, 7389, 7390, 5, 278, 0, 0, 7390, 7391, 3, 736, 368, 0, 7391, 7392, 5, 333, 0, 0, 7392, 7393, 5, 2, 0, 0, 7393, 7394, 3, 778, 389, 0, 7394, 7395, 5, 3, 0, 0, 7395, 777, 1, 0, 0, 0, 7396, 7401, 3, 780, 390, 0, 7397, 7398, 5, 6, 0, 0, 7398, 7400, 3, 780, 390, 0, 7399, 7397, 1, 0, 0, 0, 7400, 7403, 1, 0, 0, 0, 7401, 7399, 1, 0, 0, 0, 7401, 7402, 1, 0, 0, 0, 7402, 779, 1, 0, 0, 0, 7403, 7401, 1, 0, 0, 0, 7404, 7405, 3, 1490, 745, 0, 7405, 7406, 5, 10, 0, 0, 7406, 7407, 5, 407, 0, 0, 7407, 7413, 1, 0, 0, 0, 7408, 7409, 3, 1490, 745, 0, 7409, 7410, 5, 10, 0, 0, 7410, 7411, 3, 782, 391, 0, 7411, 7413, 1, 0, 0, 0, 7412, 7404, 1, 0, 0, 0, 7412, 7408, 1, 0, 0, 0, 7413, 781, 1, 0, 0, 0, 7414, 7420, 3, 688, 344, 0, 7415, 7420, 3, 1502, 751, 0, 7416, 7420, 3, 1324, 662, 0, 7417, 7420, 3, 322, 161, 0, 7418, 7420, 3, 1458, 729, 0, 7419, 7414, 1, 0, 0, 0, 7419, 7415, 1, 0, 0, 0, 7419, 7416, 1, 0, 0, 0, 7419, 7417, 1, 0, 0, 0, 7419, 7418, 1, 0, 0, 0, 7420, 783, 1, 0, 0, 0, 7421, 7422, 5, 138, 0, 0, 7422, 7423, 5, 360, 0, 0, 7423, 7424, 3, 558, 279, 0, 7424, 7425, 5, 333, 0, 0, 7425, 7426, 5, 2, 0, 0, 7426, 7427, 3, 778, 389, 0, 7427, 7428, 5, 3, 0, 0, 7428, 785, 1, 0, 0, 0, 7429, 7430, 5, 138, 0, 0, 7430, 7431, 5, 136, 0, 0, 7431, 7432, 3, 698, 349, 0, 7432, 7433, 5, 282, 0, 0, 7433, 7434, 5, 94, 0, 0, 7434, 7435, 3, 1470, 735, 0, 7435, 7615, 1, 0, 0, 0, 7436, 7437, 5, 138, 0, 0, 7437, 7438, 5, 108, 0, 0, 7438, 7439, 3, 558, 279, 0, 7439, 7440, 5, 282, 0, 0, 7440, 7441, 5, 94, 0, 0, 7441, 7442, 3, 1470, 735, 0, 7442, 7615, 1, 0, 0, 0, 7443, 7444, 5, 138, 0, 0, 7444, 7445, 5, 168, 0, 0, 7445, 7446, 3, 558, 279, 0, 7446, 7447, 5, 282, 0, 0, 7447, 7448, 5, 94, 0, 0, 7448, 7449, 3, 1470, 735, 0, 7449, 7615, 1, 0, 0, 0, 7450, 7451, 5, 138, 0, 0, 7451, 7452, 5, 175, 0, 0, 7452, 7453, 3, 1420, 710, 0, 7453, 7454, 5, 282, 0, 0, 7454, 7455, 5, 94, 0, 0, 7455, 7456, 3, 1470, 735, 0, 7456, 7615, 1, 0, 0, 0, 7457, 7458, 5, 138, 0, 0, 7458, 7459, 5, 189, 0, 0, 7459, 7460, 3, 558, 279, 0, 7460, 7461, 5, 282, 0, 0, 7461, 7462, 5, 94, 0, 0, 7462, 7463, 3, 1470, 735, 0, 7463, 7615, 1, 0, 0, 0, 7464, 7465, 5, 138, 0, 0, 7465, 7466, 5, 211, 0, 0, 7466, 7467, 3, 674, 337, 0, 7467, 7468, 5, 282, 0, 0, 7468, 7469, 5, 94, 0, 0, 7469, 7470, 3, 1470, 735, 0, 7470, 7615, 1, 0, 0, 0, 7471, 7473, 5, 138, 0, 0, 7472, 7474, 3, 338, 169, 0, 7473, 7472, 1, 0, 0, 0, 7473, 7474, 1, 0, 0, 0, 7474, 7475, 1, 0, 0, 0, 7475, 7476, 5, 247, 0, 0, 7476, 7477, 3, 1436, 718, 0, 7477, 7478, 5, 282, 0, 0, 7478, 7479, 5, 94, 0, 0, 7479, 7480, 3, 1470, 735, 0, 7480, 7615, 1, 0, 0, 0, 7481, 7482, 5, 138, 0, 0, 7482, 7483, 5, 248, 0, 0, 7483, 7484, 5, 274, 0, 0, 7484, 7485, 3, 322, 161, 0, 7485, 7486, 5, 282, 0, 0, 7486, 7487, 5, 94, 0, 0, 7487, 7488, 3, 1470, 735, 0, 7488, 7615, 1, 0, 0, 0, 7489, 7490, 5, 138, 0, 0, 7490, 7491, 5, 278, 0, 0, 7491, 7492, 3, 736, 368, 0, 7492, 7493, 5, 282, 0, 0, 7493, 7494, 5, 94, 0, 0, 7494, 7495, 3, 1470, 735, 0, 7495, 7615, 1, 0, 0, 0, 7496, 7497, 5, 138, 0, 0, 7497, 7498, 5, 278, 0, 0, 7498, 7499, 5, 156, 0, 0, 7499, 7500, 3, 558, 279, 0, 7500, 7501, 5, 100, 0, 0, 7501, 7502, 3, 1436, 718, 0, 7502, 7503, 5, 282, 0, 0, 7503, 7504, 5, 94, 0, 0, 7504, 7505, 3, 1470, 735, 0, 7505, 7615, 1, 0, 0, 0, 7506, 7507, 5, 138, 0, 0, 7507, 7508, 5, 278, 0, 0, 7508, 7509, 5, 206, 0, 0, 7509, 7510, 3, 558, 279, 0, 7510, 7511, 5, 100, 0, 0, 7511, 7512, 3, 1436, 718, 0, 7512, 7513, 5, 282, 0, 0, 7513, 7514, 5, 94, 0, 0, 7514, 7515, 3, 1470, 735, 0, 7515, 7615, 1, 0, 0, 0, 7516, 7517, 5, 138, 0, 0, 7517, 7518, 5, 296, 0, 0, 7518, 7519, 3, 670, 335, 0, 7519, 7520, 5, 282, 0, 0, 7520, 7521, 5, 94, 0, 0, 7521, 7522, 3, 1470, 735, 0, 7522, 7615, 1, 0, 0, 0, 7523, 7524, 5, 138, 0, 0, 7524, 7525, 5, 442, 0, 0, 7525, 7526, 3, 666, 333, 0, 7526, 7527, 5, 282, 0, 0, 7527, 7528, 5, 94, 0, 0, 7528, 7529, 3, 1470, 735, 0, 7529, 7615, 1, 0, 0, 0, 7530, 7531, 5, 138, 0, 0, 7531, 7532, 5, 323, 0, 0, 7532, 7533, 3, 1422, 711, 0, 7533, 7534, 5, 282, 0, 0, 7534, 7535, 5, 94, 0, 0, 7535, 7536, 3, 1470, 735, 0, 7536, 7615, 1, 0, 0, 0, 7537, 7538, 5, 138, 0, 0, 7538, 7539, 5, 360, 0, 0, 7539, 7540, 3, 558, 279, 0, 7540, 7541, 5, 282, 0, 0, 7541, 7542, 5, 94, 0, 0, 7542, 7543, 3, 1470, 735, 0, 7543, 7615, 1, 0, 0, 0, 7544, 7545, 5, 138, 0, 0, 7545, 7546, 5, 351, 0, 0, 7546, 7547, 3, 1402, 701, 0, 7547, 7548, 5, 282, 0, 0, 7548, 7549, 5, 94, 0, 0, 7549, 7550, 3, 1470, 735, 0, 7550, 7615, 1, 0, 0, 0, 7551, 7552, 5, 138, 0, 0, 7552, 7553, 5, 342, 0, 0, 7553, 7554, 3, 558, 279, 0, 7554, 7555, 5, 282, 0, 0, 7555, 7556, 5, 94, 0, 0, 7556, 7557, 3, 1470, 735, 0, 7557, 7615, 1, 0, 0, 0, 7558, 7559, 5, 138, 0, 0, 7559, 7560, 5, 355, 0, 0, 7560, 7561, 5, 325, 0, 0, 7561, 7562, 5, 185, 0, 0, 7562, 7563, 3, 558, 279, 0, 7563, 7564, 5, 282, 0, 0, 7564, 7565, 5, 94, 0, 0, 7565, 7566, 3, 1470, 735, 0, 7566, 7615, 1, 0, 0, 0, 7567, 7568, 5, 138, 0, 0, 7568, 7569, 5, 355, 0, 0, 7569, 7570, 5, 325, 0, 0, 7570, 7571, 5, 163, 0, 0, 7571, 7572, 3, 558, 279, 0, 7572, 7573, 5, 282, 0, 0, 7573, 7574, 5, 94, 0, 0, 7574, 7575, 3, 1470, 735, 0, 7575, 7615, 1, 0, 0, 0, 7576, 7577, 5, 138, 0, 0, 7577, 7578, 5, 63, 0, 0, 7578, 7579, 5, 174, 0, 0, 7579, 7580, 5, 381, 0, 0, 7580, 7581, 3, 1436, 718, 0, 7581, 7582, 5, 282, 0, 0, 7582, 7583, 5, 94, 0, 0, 7583, 7584, 3, 1470, 735, 0, 7584, 7615, 1, 0, 0, 0, 7585, 7586, 5, 138, 0, 0, 7586, 7587, 5, 331, 0, 0, 7587, 7588, 3, 1436, 718, 0, 7588, 7589, 5, 282, 0, 0, 7589, 7590, 5, 94, 0, 0, 7590, 7591, 3, 1470, 735, 0, 7591, 7615, 1, 0, 0, 0, 7592, 7593, 5, 138, 0, 0, 7593, 7594, 5, 198, 0, 0, 7594, 7595, 5, 357, 0, 0, 7595, 7596, 3, 1436, 718, 0, 7596, 7597, 5, 282, 0, 0, 7597, 7598, 5, 94, 0, 0, 7598, 7599, 3, 1470, 735, 0, 7599, 7615, 1, 0, 0, 0, 7600, 7601, 5, 138, 0, 0, 7601, 7602, 5, 452, 0, 0, 7602, 7603, 3, 1436, 718, 0, 7603, 7604, 5, 282, 0, 0, 7604, 7605, 5, 94, 0, 0, 7605, 7606, 3, 1470, 735, 0, 7606, 7615, 1, 0, 0, 0, 7607, 7608, 5, 138, 0, 0, 7608, 7609, 5, 451, 0, 0, 7609, 7610, 3, 1436, 718, 0, 7610, 7611, 5, 282, 0, 0, 7611, 7612, 5, 94, 0, 0, 7612, 7613, 3, 1470, 735, 0, 7613, 7615, 1, 0, 0, 0, 7614, 7429, 1, 0, 0, 0, 7614, 7436, 1, 0, 0, 0, 7614, 7443, 1, 0, 0, 0, 7614, 7450, 1, 0, 0, 0, 7614, 7457, 1, 0, 0, 0, 7614, 7464, 1, 0, 0, 0, 7614, 7471, 1, 0, 0, 0, 7614, 7481, 1, 0, 0, 0, 7614, 7489, 1, 0, 0, 0, 7614, 7496, 1, 0, 0, 0, 7614, 7506, 1, 0, 0, 0, 7614, 7516, 1, 0, 0, 0, 7614, 7523, 1, 0, 0, 0, 7614, 7530, 1, 0, 0, 0, 7614, 7537, 1, 0, 0, 0, 7614, 7544, 1, 0, 0, 0, 7614, 7551, 1, 0, 0, 0, 7614, 7558, 1, 0, 0, 0, 7614, 7567, 1, 0, 0, 0, 7614, 7576, 1, 0, 0, 0, 7614, 7585, 1, 0, 0, 0, 7614, 7592, 1, 0, 0, 0, 7614, 7600, 1, 0, 0, 0, 7614, 7607, 1, 0, 0, 0, 7615, 787, 1, 0, 0, 0, 7616, 7617, 5, 46, 0, 0, 7617, 7618, 5, 452, 0, 0, 7618, 7620, 3, 1436, 718, 0, 7619, 7621, 3, 790, 395, 0, 7620, 7619, 1, 0, 0, 0, 7620, 7621, 1, 0, 0, 0, 7621, 7623, 1, 0, 0, 0, 7622, 7624, 3, 710, 355, 0, 7623, 7622, 1, 0, 0, 0, 7623, 7624, 1, 0, 0, 0, 7624, 789, 1, 0, 0, 0, 7625, 7626, 3, 792, 396, 0, 7626, 791, 1, 0, 0, 0, 7627, 7628, 5, 62, 0, 0, 7628, 7629, 5, 92, 0, 0, 7629, 7634, 3, 1124, 562, 0, 7630, 7631, 5, 62, 0, 0, 7631, 7632, 5, 30, 0, 0, 7632, 7634, 5, 350, 0, 0, 7633, 7627, 1, 0, 0, 0, 7633, 7630, 1, 0, 0, 0, 7634, 793, 1, 0, 0, 0, 7635, 7636, 5, 138, 0, 0, 7636, 7637, 5, 452, 0, 0, 7637, 7638, 3, 1436, 718, 0, 7638, 7639, 5, 333, 0, 0, 7639, 7640, 3, 496, 248, 0, 7640, 7674, 1, 0, 0, 0, 7641, 7642, 5, 138, 0, 0, 7642, 7643, 5, 452, 0, 0, 7643, 7644, 3, 1436, 718, 0, 7644, 7645, 5, 133, 0, 0, 7645, 7646, 3, 1126, 563, 0, 7646, 7674, 1, 0, 0, 0, 7647, 7648, 5, 138, 0, 0, 7648, 7649, 5, 452, 0, 0, 7649, 7650, 3, 1436, 718, 0, 7650, 7651, 5, 333, 0, 0, 7651, 7652, 3, 1126, 563, 0, 7652, 7674, 1, 0, 0, 0, 7653, 7654, 5, 138, 0, 0, 7654, 7655, 5, 452, 0, 0, 7655, 7656, 3, 1436, 718, 0, 7656, 7657, 5, 191, 0, 0, 7657, 7658, 3, 1126, 563, 0, 7658, 7674, 1, 0, 0, 0, 7659, 7660, 5, 138, 0, 0, 7660, 7661, 5, 452, 0, 0, 7661, 7662, 3, 1436, 718, 0, 7662, 7663, 5, 282, 0, 0, 7663, 7664, 5, 94, 0, 0, 7664, 7665, 3, 1470, 735, 0, 7665, 7674, 1, 0, 0, 0, 7666, 7667, 5, 138, 0, 0, 7667, 7668, 5, 452, 0, 0, 7668, 7669, 3, 1436, 718, 0, 7669, 7670, 5, 309, 0, 0, 7670, 7671, 5, 94, 0, 0, 7671, 7672, 3, 1436, 718, 0, 7672, 7674, 1, 0, 0, 0, 7673, 7635, 1, 0, 0, 0, 7673, 7641, 1, 0, 0, 0, 7673, 7647, 1, 0, 0, 0, 7673, 7653, 1, 0, 0, 0, 7673, 7659, 1, 0, 0, 0, 7673, 7666, 1, 0, 0, 0, 7674, 795, 1, 0, 0, 0, 7675, 7676, 5, 46, 0, 0, 7676, 7677, 5, 451, 0, 0, 7677, 7678, 3, 1436, 718, 0, 7678, 7679, 5, 164, 0, 0, 7679, 7680, 3, 1458, 729, 0, 7680, 7681, 5, 452, 0, 0, 7681, 7683, 3, 798, 399, 0, 7682, 7684, 3, 710, 355, 0, 7683, 7682, 1, 0, 0, 0, 7683, 7684, 1, 0, 0, 0, 7684, 797, 1, 0, 0, 0, 7685, 7690, 3, 800, 400, 0, 7686, 7687, 5, 6, 0, 0, 7687, 7689, 3, 800, 400, 0, 7688, 7686, 1, 0, 0, 0, 7689, 7692, 1, 0, 0, 0, 7690, 7688, 1, 0, 0, 0, 7690, 7691, 1, 0, 0, 0, 7691, 799, 1, 0, 0, 0, 7692, 7690, 1, 0, 0, 0, 7693, 7694, 3, 1490, 745, 0, 7694, 801, 1, 0, 0, 0, 7695, 7696, 5, 138, 0, 0, 7696, 7697, 5, 451, 0, 0, 7697, 7698, 3, 1436, 718, 0, 7698, 7699, 5, 333, 0, 0, 7699, 7700, 3, 496, 248, 0, 7700, 7774, 1, 0, 0, 0, 7701, 7702, 5, 138, 0, 0, 7702, 7703, 5, 451, 0, 0, 7703, 7704, 3, 1436, 718, 0, 7704, 7705, 5, 164, 0, 0, 7705, 7706, 3, 1458, 729, 0, 7706, 7774, 1, 0, 0, 0, 7707, 7708, 5, 138, 0, 0, 7708, 7709, 5, 451, 0, 0, 7709, 7710, 3, 1436, 718, 0, 7710, 7711, 5, 305, 0, 0, 7711, 7713, 5, 452, 0, 0, 7712, 7714, 3, 710, 355, 0, 7713, 7712, 1, 0, 0, 0, 7713, 7714, 1, 0, 0, 0, 7714, 7774, 1, 0, 0, 0, 7715, 7716, 5, 138, 0, 0, 7716, 7717, 5, 451, 0, 0, 7717, 7718, 3, 1436, 718, 0, 7718, 7719, 5, 333, 0, 0, 7719, 7720, 5, 452, 0, 0, 7720, 7722, 3, 798, 399, 0, 7721, 7723, 3, 710, 355, 0, 7722, 7721, 1, 0, 0, 0, 7722, 7723, 1, 0, 0, 0, 7723, 7774, 1, 0, 0, 0, 7724, 7725, 5, 138, 0, 0, 7725, 7726, 5, 451, 0, 0, 7726, 7727, 3, 1436, 718, 0, 7727, 7728, 5, 133, 0, 0, 7728, 7729, 5, 452, 0, 0, 7729, 7731, 3, 798, 399, 0, 7730, 7732, 3, 710, 355, 0, 7731, 7730, 1, 0, 0, 0, 7731, 7732, 1, 0, 0, 0, 7732, 7774, 1, 0, 0, 0, 7733, 7734, 5, 138, 0, 0, 7734, 7735, 5, 451, 0, 0, 7735, 7736, 3, 1436, 718, 0, 7736, 7737, 5, 191, 0, 0, 7737, 7738, 5, 452, 0, 0, 7738, 7740, 3, 798, 399, 0, 7739, 7741, 3, 710, 355, 0, 7740, 7739, 1, 0, 0, 0, 7740, 7741, 1, 0, 0, 0, 7741, 7774, 1, 0, 0, 0, 7742, 7743, 5, 138, 0, 0, 7743, 7744, 5, 451, 0, 0, 7744, 7745, 3, 1436, 718, 0, 7745, 7746, 5, 193, 0, 0, 7746, 7774, 1, 0, 0, 0, 7747, 7748, 5, 138, 0, 0, 7748, 7749, 5, 451, 0, 0, 7749, 7750, 3, 1436, 718, 0, 7750, 7751, 5, 186, 0, 0, 7751, 7774, 1, 0, 0, 0, 7752, 7753, 5, 138, 0, 0, 7753, 7754, 5, 451, 0, 0, 7754, 7755, 3, 1436, 718, 0, 7755, 7756, 5, 333, 0, 0, 7756, 7757, 3, 496, 248, 0, 7757, 7774, 1, 0, 0, 0, 7758, 7759, 5, 138, 0, 0, 7759, 7760, 5, 451, 0, 0, 7760, 7761, 3, 1436, 718, 0, 7761, 7762, 5, 465, 0, 0, 7762, 7763, 5, 2, 0, 0, 7763, 7764, 3, 508, 254, 0, 7764, 7765, 5, 3, 0, 0, 7765, 7774, 1, 0, 0, 0, 7766, 7767, 5, 138, 0, 0, 7767, 7768, 5, 451, 0, 0, 7768, 7769, 3, 1436, 718, 0, 7769, 7770, 5, 282, 0, 0, 7770, 7771, 5, 94, 0, 0, 7771, 7772, 3, 1470, 735, 0, 7772, 7774, 1, 0, 0, 0, 7773, 7695, 1, 0, 0, 0, 7773, 7701, 1, 0, 0, 0, 7773, 7707, 1, 0, 0, 0, 7773, 7715, 1, 0, 0, 0, 7773, 7724, 1, 0, 0, 0, 7773, 7733, 1, 0, 0, 0, 7773, 7742, 1, 0, 0, 0, 7773, 7747, 1, 0, 0, 0, 7773, 7752, 1, 0, 0, 0, 7773, 7758, 1, 0, 0, 0, 7773, 7766, 1, 0, 0, 0, 7774, 803, 1, 0, 0, 0, 7775, 7777, 5, 46, 0, 0, 7776, 7778, 3, 658, 329, 0, 7777, 7776, 1, 0, 0, 0, 7777, 7778, 1, 0, 0, 0, 7778, 7779, 1, 0, 0, 0, 7779, 7780, 5, 321, 0, 0, 7780, 7781, 3, 1436, 718, 0, 7781, 7782, 5, 36, 0, 0, 7782, 7783, 5, 80, 0, 0, 7783, 7784, 3, 814, 407, 0, 7784, 7785, 5, 94, 0, 0, 7785, 7787, 3, 1412, 706, 0, 7786, 7788, 3, 1144, 572, 0, 7787, 7786, 1, 0, 0, 0, 7787, 7788, 1, 0, 0, 0, 7788, 7789, 1, 0, 0, 0, 7789, 7791, 5, 57, 0, 0, 7790, 7792, 3, 816, 408, 0, 7791, 7790, 1, 0, 0, 0, 7791, 7792, 1, 0, 0, 0, 7792, 7793, 1, 0, 0, 0, 7793, 7794, 3, 806, 403, 0, 7794, 805, 1, 0, 0, 0, 7795, 7802, 5, 270, 0, 0, 7796, 7802, 3, 810, 405, 0, 7797, 7798, 5, 2, 0, 0, 7798, 7799, 3, 808, 404, 0, 7799, 7800, 5, 3, 0, 0, 7800, 7802, 1, 0, 0, 0, 7801, 7795, 1, 0, 0, 0, 7801, 7796, 1, 0, 0, 0, 7801, 7797, 1, 0, 0, 0, 7802, 807, 1, 0, 0, 0, 7803, 7805, 3, 812, 406, 0, 7804, 7803, 1, 0, 0, 0, 7804, 7805, 1, 0, 0, 0, 7805, 7812, 1, 0, 0, 0, 7806, 7808, 5, 7, 0, 0, 7807, 7809, 3, 812, 406, 0, 7808, 7807, 1, 0, 0, 0, 7808, 7809, 1, 0, 0, 0, 7809, 7811, 1, 0, 0, 0, 7810, 7806, 1, 0, 0, 0, 7811, 7814, 1, 0, 0, 0, 7812, 7810, 1, 0, 0, 0, 7812, 7813, 1, 0, 0, 0, 7813, 809, 1, 0, 0, 0, 7814, 7812, 1, 0, 0, 0, 7815, 7821, 3, 1000, 500, 0, 7816, 7821, 3, 950, 475, 0, 7817, 7821, 3, 982, 491, 0, 7818, 7821, 3, 968, 484, 0, 7819, 7821, 3, 818, 409, 0, 7820, 7815, 1, 0, 0, 0, 7820, 7816, 1, 0, 0, 0, 7820, 7817, 1, 0, 0, 0, 7820, 7818, 1, 0, 0, 0, 7820, 7819, 1, 0, 0, 0, 7821, 811, 1, 0, 0, 0, 7822, 7823, 3, 810, 405, 0, 7823, 813, 1, 0, 0, 0, 7824, 7825, 7, 47, 0, 0, 7825, 815, 1, 0, 0, 0, 7826, 7827, 7, 48, 0, 0, 7827, 817, 1, 0, 0, 0, 7828, 7829, 5, 271, 0, 0, 7829, 7831, 3, 1474, 737, 0, 7830, 7832, 3, 820, 410, 0, 7831, 7830, 1, 0, 0, 0, 7831, 7832, 1, 0, 0, 0, 7832, 819, 1, 0, 0, 0, 7833, 7834, 5, 6, 0, 0, 7834, 7835, 3, 1458, 729, 0, 7835, 821, 1, 0, 0, 0, 7836, 7837, 5, 252, 0, 0, 7837, 7838, 3, 1474, 737, 0, 7838, 823, 1, 0, 0, 0, 7839, 7840, 5, 366, 0, 0, 7840, 7844, 3, 1474, 737, 0, 7841, 7842, 5, 366, 0, 0, 7842, 7844, 5, 9, 0, 0, 7843, 7839, 1, 0, 0, 0, 7843, 7841, 1, 0, 0, 0, 7844, 825, 1, 0, 0, 0, 7845, 7847, 5, 129, 0, 0, 7846, 7848, 3, 828, 414, 0, 7847, 7846, 1, 0, 0, 0, 7847, 7848, 1, 0, 0, 0, 7848, 7850, 1, 0, 0, 0, 7849, 7851, 3, 836, 418, 0, 7850, 7849, 1, 0, 0, 0, 7850, 7851, 1, 0, 0, 0, 7851, 7911, 1, 0, 0, 0, 7852, 7854, 5, 146, 0, 0, 7853, 7855, 3, 828, 414, 0, 7854, 7853, 1, 0, 0, 0, 7854, 7855, 1, 0, 0, 0, 7855, 7857, 1, 0, 0, 0, 7856, 7858, 3, 834, 417, 0, 7857, 7856, 1, 0, 0, 0, 7857, 7858, 1, 0, 0, 0, 7858, 7911, 1, 0, 0, 0, 7859, 7860, 5, 340, 0, 0, 7860, 7862, 5, 356, 0, 0, 7861, 7863, 3, 834, 417, 0, 7862, 7861, 1, 0, 0, 0, 7862, 7863, 1, 0, 0, 0, 7863, 7911, 1, 0, 0, 0, 7864, 7866, 5, 454, 0, 0, 7865, 7867, 3, 828, 414, 0, 7866, 7865, 1, 0, 0, 0, 7866, 7867, 1, 0, 0, 0, 7867, 7869, 1, 0, 0, 0, 7868, 7870, 3, 836, 418, 0, 7869, 7868, 1, 0, 0, 0, 7869, 7870, 1, 0, 0, 0, 7870, 7911, 1, 0, 0, 0, 7871, 7872, 5, 322, 0, 0, 7872, 7911, 3, 1474, 737, 0, 7873, 7875, 5, 308, 0, 0, 7874, 7876, 5, 322, 0, 0, 7875, 7874, 1, 0, 0, 0, 7875, 7876, 1, 0, 0, 0, 7876, 7877, 1, 0, 0, 0, 7877, 7911, 3, 1474, 737, 0, 7878, 7879, 5, 290, 0, 0, 7879, 7880, 5, 356, 0, 0, 7880, 7911, 3, 1458, 729, 0, 7881, 7882, 5, 161, 0, 0, 7882, 7883, 5, 291, 0, 0, 7883, 7911, 3, 1458, 729, 0, 7884, 7886, 5, 161, 0, 0, 7885, 7887, 3, 828, 414, 0, 7886, 7885, 1, 0, 0, 0, 7886, 7887, 1, 0, 0, 0, 7887, 7889, 1, 0, 0, 0, 7888, 7890, 3, 836, 418, 0, 7889, 7888, 1, 0, 0, 0, 7889, 7890, 1, 0, 0, 0, 7890, 7911, 1, 0, 0, 0, 7891, 7892, 5, 319, 0, 0, 7892, 7893, 5, 291, 0, 0, 7893, 7911, 3, 1458, 729, 0, 7894, 7896, 5, 319, 0, 0, 7895, 7897, 3, 828, 414, 0, 7896, 7895, 1, 0, 0, 0, 7896, 7897, 1, 0, 0, 0, 7897, 7898, 1, 0, 0, 0, 7898, 7900, 5, 94, 0, 0, 7899, 7901, 5, 322, 0, 0, 7900, 7899, 1, 0, 0, 0, 7900, 7901, 1, 0, 0, 0, 7901, 7902, 1, 0, 0, 0, 7902, 7911, 3, 1474, 737, 0, 7903, 7905, 5, 319, 0, 0, 7904, 7906, 3, 828, 414, 0, 7905, 7904, 1, 0, 0, 0, 7905, 7906, 1, 0, 0, 0, 7906, 7908, 1, 0, 0, 0, 7907, 7909, 3, 836, 418, 0, 7908, 7907, 1, 0, 0, 0, 7908, 7909, 1, 0, 0, 0, 7909, 7911, 1, 0, 0, 0, 7910, 7845, 1, 0, 0, 0, 7910, 7852, 1, 0, 0, 0, 7910, 7859, 1, 0, 0, 0, 7910, 7864, 1, 0, 0, 0, 7910, 7871, 1, 0, 0, 0, 7910, 7873, 1, 0, 0, 0, 7910, 7878, 1, 0, 0, 0, 7910, 7881, 1, 0, 0, 0, 7910, 7884, 1, 0, 0, 0, 7910, 7891, 1, 0, 0, 0, 7910, 7894, 1, 0, 0, 0, 7910, 7903, 1, 0, 0, 0, 7911, 827, 1, 0, 0, 0, 7912, 7913, 7, 49, 0, 0, 7913, 829, 1, 0, 0, 0, 7914, 7915, 5, 244, 0, 0, 7915, 7916, 5, 251, 0, 0, 7916, 7925, 3, 68, 34, 0, 7917, 7918, 5, 300, 0, 0, 7918, 7925, 5, 81, 0, 0, 7919, 7920, 5, 300, 0, 0, 7920, 7925, 5, 382, 0, 0, 7921, 7925, 5, 54, 0, 0, 7922, 7923, 5, 77, 0, 0, 7923, 7925, 5, 54, 0, 0, 7924, 7914, 1, 0, 0, 0, 7924, 7917, 1, 0, 0, 0, 7924, 7919, 1, 0, 0, 0, 7924, 7921, 1, 0, 0, 0, 7924, 7922, 1, 0, 0, 0, 7925, 831, 1, 0, 0, 0, 7926, 7933, 3, 830, 415, 0, 7927, 7929, 5, 6, 0, 0, 7928, 7927, 1, 0, 0, 0, 7928, 7929, 1, 0, 0, 0, 7929, 7930, 1, 0, 0, 0, 7930, 7932, 3, 830, 415, 0, 7931, 7928, 1, 0, 0, 0, 7932, 7935, 1, 0, 0, 0, 7933, 7931, 1, 0, 0, 0, 7933, 7934, 1, 0, 0, 0, 7934, 833, 1, 0, 0, 0, 7935, 7933, 1, 0, 0, 0, 7936, 7937, 3, 832, 416, 0, 7937, 835, 1, 0, 0, 0, 7938, 7940, 5, 33, 0, 0, 7939, 7941, 5, 269, 0, 0, 7940, 7939, 1, 0, 0, 0, 7940, 7941, 1, 0, 0, 0, 7941, 7942, 1, 0, 0, 0, 7942, 7943, 5, 153, 0, 0, 7943, 837, 1, 0, 0, 0, 7944, 7947, 5, 46, 0, 0, 7945, 7946, 5, 82, 0, 0, 7946, 7948, 5, 311, 0, 0, 7947, 7945, 1, 0, 0, 0, 7947, 7948, 1, 0, 0, 0, 7948, 7950, 1, 0, 0, 0, 7949, 7951, 3, 190, 95, 0, 7950, 7949, 1, 0, 0, 0, 7950, 7951, 1, 0, 0, 0, 7951, 7969, 1, 0, 0, 0, 7952, 7953, 5, 376, 0, 0, 7953, 7955, 3, 1408, 704, 0, 7954, 7956, 3, 242, 121, 0, 7955, 7954, 1, 0, 0, 0, 7955, 7956, 1, 0, 0, 0, 7956, 7958, 1, 0, 0, 0, 7957, 7959, 3, 134, 67, 0, 7958, 7957, 1, 0, 0, 0, 7958, 7959, 1, 0, 0, 0, 7959, 7970, 1, 0, 0, 0, 7960, 7961, 5, 303, 0, 0, 7961, 7962, 5, 376, 0, 0, 7962, 7963, 3, 1408, 704, 0, 7963, 7964, 5, 2, 0, 0, 7964, 7965, 3, 244, 122, 0, 7965, 7967, 5, 3, 0, 0, 7966, 7968, 3, 134, 67, 0, 7967, 7966, 1, 0, 0, 0, 7967, 7968, 1, 0, 0, 0, 7968, 7970, 1, 0, 0, 0, 7969, 7952, 1, 0, 0, 0, 7969, 7960, 1, 0, 0, 0, 7970, 7971, 1, 0, 0, 0, 7971, 7972, 5, 36, 0, 0, 7972, 7974, 3, 1000, 500, 0, 7973, 7975, 3, 840, 420, 0, 7974, 7973, 1, 0, 0, 0, 7974, 7975, 1, 0, 0, 0, 7975, 839, 1, 0, 0, 0, 7976, 7978, 5, 105, 0, 0, 7977, 7979, 7, 50, 0, 0, 7978, 7977, 1, 0, 0, 0, 7978, 7979, 1, 0, 0, 0, 7979, 7980, 1, 0, 0, 0, 7980, 7981, 5, 42, 0, 0, 7981, 7982, 5, 279, 0, 0, 7982, 841, 1, 0, 0, 0, 7983, 7984, 5, 253, 0, 0, 7984, 7985, 3, 1440, 720, 0, 7985, 843, 1, 0, 0, 0, 7986, 7987, 5, 46, 0, 0, 7987, 7988, 5, 175, 0, 0, 7988, 7990, 3, 1418, 709, 0, 7989, 7991, 3, 14, 7, 0, 7990, 7989, 1, 0, 0, 0, 7990, 7991, 1, 0, 0, 0, 7991, 7993, 1, 0, 0, 0, 7992, 7994, 3, 846, 423, 0, 7993, 7992, 1, 0, 0, 0, 7993, 7994, 1, 0, 0, 0, 7994, 845, 1, 0, 0, 0, 7995, 7996, 3, 848, 424, 0, 7996, 847, 1, 0, 0, 0, 7997, 7999, 3, 850, 425, 0, 7998, 7997, 1, 0, 0, 0, 7999, 8000, 1, 0, 0, 0, 8000, 7998, 1, 0, 0, 0, 8000, 8001, 1, 0, 0, 0, 8001, 849, 1, 0, 0, 0, 8002, 8004, 3, 852, 426, 0, 8003, 8005, 3, 854, 427, 0, 8004, 8003, 1, 0, 0, 0, 8004, 8005, 1, 0, 0, 0, 8005, 8009, 1, 0, 0, 0, 8006, 8010, 3, 1464, 732, 0, 8007, 8010, 3, 72, 36, 0, 8008, 8010, 5, 53, 0, 0, 8009, 8006, 1, 0, 0, 0, 8009, 8007, 1, 0, 0, 0, 8009, 8008, 1, 0, 0, 0, 8010, 851, 1, 0, 0, 0, 8011, 8012, 5, 164, 0, 0, 8012, 8020, 5, 74, 0, 0, 8013, 8020, 5, 194, 0, 0, 8014, 8020, 5, 255, 0, 0, 8015, 8020, 5, 282, 0, 0, 8016, 8020, 5, 351, 0, 0, 8017, 8020, 5, 353, 0, 0, 8018, 8020, 3, 1492, 746, 0, 8019, 8011, 1, 0, 0, 0, 8019, 8013, 1, 0, 0, 0, 8019, 8014, 1, 0, 0, 0, 8019, 8015, 1, 0, 0, 0, 8019, 8016, 1, 0, 0, 0, 8019, 8017, 1, 0, 0, 0, 8019, 8018, 1, 0, 0, 0, 8020, 853, 1, 0, 0, 0, 8021, 8022, 5, 10, 0, 0, 8022, 855, 1, 0, 0, 0, 8023, 8024, 5, 138, 0, 0, 8024, 8025, 5, 175, 0, 0, 8025, 8037, 3, 1420, 710, 0, 8026, 8027, 5, 333, 0, 0, 8027, 8028, 5, 351, 0, 0, 8028, 8030, 3, 1400, 700, 0, 8029, 8026, 1, 0, 0, 0, 8029, 8030, 1, 0, 0, 0, 8030, 8038, 1, 0, 0, 0, 8031, 8033, 5, 105, 0, 0, 8032, 8031, 1, 0, 0, 0, 8032, 8033, 1, 0, 0, 0, 8033, 8034, 1, 0, 0, 0, 8034, 8036, 3, 846, 423, 0, 8035, 8032, 1, 0, 0, 0, 8035, 8036, 1, 0, 0, 0, 8036, 8038, 1, 0, 0, 0, 8037, 8029, 1, 0, 0, 0, 8037, 8035, 1, 0, 0, 0, 8038, 857, 1, 0, 0, 0, 8039, 8040, 5, 138, 0, 0, 8040, 8041, 5, 175, 0, 0, 8041, 8043, 3, 1420, 710, 0, 8042, 8044, 3, 88, 44, 0, 8043, 8042, 1, 0, 0, 0, 8043, 8044, 1, 0, 0, 0, 8044, 859, 1, 0, 0, 0, 8045, 8050, 3, 862, 431, 0, 8046, 8047, 5, 6, 0, 0, 8047, 8049, 3, 862, 431, 0, 8048, 8046, 1, 0, 0, 0, 8049, 8052, 1, 0, 0, 0, 8050, 8048, 1, 0, 0, 0, 8050, 8051, 1, 0, 0, 0, 8051, 861, 1, 0, 0, 0, 8052, 8050, 1, 0, 0, 0, 8053, 8054, 5, 209, 0, 0, 8054, 863, 1, 0, 0, 0, 8055, 8056, 5, 138, 0, 0, 8056, 8057, 5, 108, 0, 0, 8057, 8058, 3, 558, 279, 0, 8058, 8059, 5, 305, 0, 0, 8059, 8060, 5, 375, 0, 0, 8060, 865, 1, 0, 0, 0, 8061, 8062, 5, 138, 0, 0, 8062, 8063, 5, 349, 0, 0, 8063, 8064, 7, 22, 0, 0, 8064, 8065, 3, 58, 29, 0, 8065, 867, 1, 0, 0, 0, 8066, 8067, 5, 46, 0, 0, 8067, 8068, 5, 189, 0, 0, 8068, 8070, 3, 558, 279, 0, 8069, 8071, 3, 872, 436, 0, 8070, 8069, 1, 0, 0, 0, 8070, 8071, 1, 0, 0, 0, 8071, 8072, 1, 0, 0, 0, 8072, 8073, 3, 1168, 584, 0, 8073, 8074, 3, 214, 107, 0, 8074, 869, 1, 0, 0, 0, 8075, 8076, 5, 138, 0, 0, 8076, 8077, 5, 189, 0, 0, 8077, 8099, 3, 558, 279, 0, 8078, 8100, 3, 122, 61, 0, 8079, 8080, 5, 191, 0, 0, 8080, 8081, 5, 77, 0, 0, 8081, 8100, 5, 78, 0, 0, 8082, 8083, 5, 333, 0, 0, 8083, 8084, 5, 77, 0, 0, 8084, 8100, 5, 78, 0, 0, 8085, 8086, 5, 133, 0, 0, 8086, 8100, 3, 234, 117, 0, 8087, 8088, 5, 191, 0, 0, 8088, 8090, 5, 45, 0, 0, 8089, 8091, 3, 748, 374, 0, 8090, 8089, 1, 0, 0, 0, 8090, 8091, 1, 0, 0, 0, 8091, 8092, 1, 0, 0, 0, 8092, 8094, 3, 1436, 718, 0, 8093, 8095, 3, 124, 62, 0, 8094, 8093, 1, 0, 0, 0, 8094, 8095, 1, 0, 0, 0, 8095, 8100, 1, 0, 0, 0, 8096, 8097, 5, 372, 0, 0, 8097, 8098, 5, 45, 0, 0, 8098, 8100, 3, 1436, 718, 0, 8099, 8078, 1, 0, 0, 0, 8099, 8079, 1, 0, 0, 0, 8099, 8082, 1, 0, 0, 0, 8099, 8085, 1, 0, 0, 0, 8099, 8087, 1, 0, 0, 0, 8099, 8096, 1, 0, 0, 0, 8100, 871, 1, 0, 0, 0, 8101, 8102, 5, 36, 0, 0, 8102, 873, 1, 0, 0, 0, 8103, 8104, 5, 138, 0, 0, 8104, 8105, 5, 355, 0, 0, 8105, 8106, 5, 325, 0, 0, 8106, 8107, 5, 185, 0, 0, 8107, 8108, 3, 558, 279, 0, 8108, 8109, 3, 496, 248, 0, 8109, 875, 1, 0, 0, 0, 8110, 8111, 5, 138, 0, 0, 8111, 8112, 5, 355, 0, 0, 8112, 8113, 5, 325, 0, 0, 8113, 8114, 5, 163, 0, 0, 8114, 8115, 3, 558, 279, 0, 8115, 8116, 5, 133, 0, 0, 8116, 8117, 5, 257, 0, 0, 8117, 8118, 5, 62, 0, 0, 8118, 8119, 3, 1416, 708, 0, 8119, 8120, 3, 878, 439, 0, 8120, 8121, 3, 552, 276, 0, 8121, 8174, 1, 0, 0, 0, 8122, 8123, 5, 138, 0, 0, 8123, 8124, 5, 355, 0, 0, 8124, 8125, 5, 325, 0, 0, 8125, 8126, 5, 163, 0, 0, 8126, 8127, 3, 558, 279, 0, 8127, 8128, 5, 138, 0, 0, 8128, 8129, 5, 257, 0, 0, 8129, 8130, 5, 62, 0, 0, 8130, 8131, 3, 1416, 708, 0, 8131, 8132, 3, 878, 439, 0, 8132, 8133, 3, 552, 276, 0, 8133, 8174, 1, 0, 0, 0, 8134, 8135, 5, 138, 0, 0, 8135, 8136, 5, 355, 0, 0, 8136, 8137, 5, 325, 0, 0, 8137, 8138, 5, 163, 0, 0, 8138, 8139, 3, 558, 279, 0, 8139, 8140, 5, 138, 0, 0, 8140, 8141, 5, 257, 0, 0, 8141, 8142, 5, 311, 0, 0, 8142, 8143, 3, 558, 279, 0, 8143, 8144, 3, 878, 439, 0, 8144, 8145, 3, 558, 279, 0, 8145, 8174, 1, 0, 0, 0, 8146, 8147, 5, 138, 0, 0, 8147, 8148, 5, 355, 0, 0, 8148, 8149, 5, 325, 0, 0, 8149, 8150, 5, 163, 0, 0, 8150, 8151, 3, 558, 279, 0, 8151, 8152, 5, 138, 0, 0, 8152, 8153, 5, 257, 0, 0, 8153, 8154, 5, 62, 0, 0, 8154, 8155, 3, 1416, 708, 0, 8155, 8156, 5, 311, 0, 0, 8156, 8157, 3, 558, 279, 0, 8157, 8158, 3, 878, 439, 0, 8158, 8159, 3, 558, 279, 0, 8159, 8174, 1, 0, 0, 0, 8160, 8161, 5, 138, 0, 0, 8161, 8162, 5, 355, 0, 0, 8162, 8163, 5, 325, 0, 0, 8163, 8164, 5, 163, 0, 0, 8164, 8165, 3, 558, 279, 0, 8165, 8166, 5, 191, 0, 0, 8166, 8168, 5, 257, 0, 0, 8167, 8169, 3, 748, 374, 0, 8168, 8167, 1, 0, 0, 0, 8168, 8169, 1, 0, 0, 0, 8169, 8170, 1, 0, 0, 0, 8170, 8171, 5, 62, 0, 0, 8171, 8172, 3, 1416, 708, 0, 8172, 8174, 1, 0, 0, 0, 8173, 8110, 1, 0, 0, 0, 8173, 8122, 1, 0, 0, 0, 8173, 8134, 1, 0, 0, 0, 8173, 8146, 1, 0, 0, 0, 8173, 8160, 1, 0, 0, 0, 8174, 877, 1, 0, 0, 0, 8175, 8176, 5, 105, 0, 0, 8176, 879, 1, 0, 0, 0, 8177, 8179, 5, 46, 0, 0, 8178, 8180, 3, 524, 262, 0, 8179, 8178, 1, 0, 0, 0, 8179, 8180, 1, 0, 0, 0, 8180, 8181, 1, 0, 0, 0, 8181, 8182, 5, 168, 0, 0, 8182, 8183, 3, 558, 279, 0, 8183, 8184, 5, 62, 0, 0, 8184, 8185, 3, 1458, 729, 0, 8185, 8186, 5, 94, 0, 0, 8186, 8187, 3, 1458, 729, 0, 8187, 8188, 5, 64, 0, 0, 8188, 8189, 3, 558, 279, 0, 8189, 881, 1, 0, 0, 0, 8190, 8192, 5, 158, 0, 0, 8191, 8193, 3, 908, 454, 0, 8192, 8191, 1, 0, 0, 0, 8192, 8193, 1, 0, 0, 0, 8193, 8194, 1, 0, 0, 0, 8194, 8196, 3, 1406, 703, 0, 8195, 8197, 3, 886, 443, 0, 8196, 8195, 1, 0, 0, 0, 8196, 8197, 1, 0, 0, 0, 8197, 8209, 1, 0, 0, 0, 8198, 8200, 5, 158, 0, 0, 8199, 8201, 3, 908, 454, 0, 8200, 8199, 1, 0, 0, 0, 8200, 8201, 1, 0, 0, 0, 8201, 8209, 1, 0, 0, 0, 8202, 8203, 5, 158, 0, 0, 8203, 8204, 3, 884, 442, 0, 8204, 8206, 3, 1406, 703, 0, 8205, 8207, 3, 886, 443, 0, 8206, 8205, 1, 0, 0, 0, 8206, 8207, 1, 0, 0, 0, 8207, 8209, 1, 0, 0, 0, 8208, 8190, 1, 0, 0, 0, 8208, 8198, 1, 0, 0, 0, 8208, 8202, 1, 0, 0, 0, 8209, 883, 1, 0, 0, 0, 8210, 8211, 5, 2, 0, 0, 8211, 8216, 3, 908, 454, 0, 8212, 8213, 5, 6, 0, 0, 8213, 8215, 3, 908, 454, 0, 8214, 8212, 1, 0, 0, 0, 8215, 8218, 1, 0, 0, 0, 8216, 8214, 1, 0, 0, 0, 8216, 8217, 1, 0, 0, 0, 8217, 8219, 1, 0, 0, 0, 8218, 8216, 1, 0, 0, 0, 8219, 8220, 5, 3, 0, 0, 8220, 885, 1, 0, 0, 0, 8221, 8222, 5, 100, 0, 0, 8222, 8223, 3, 1436, 718, 0, 8223, 887, 1, 0, 0, 0, 8224, 8226, 5, 370, 0, 0, 8225, 8227, 3, 914, 457, 0, 8226, 8225, 1, 0, 0, 0, 8226, 8227, 1, 0, 0, 0, 8227, 8229, 1, 0, 0, 0, 8228, 8230, 3, 916, 458, 0, 8229, 8228, 1, 0, 0, 0, 8229, 8230, 1, 0, 0, 0, 8230, 8232, 1, 0, 0, 0, 8231, 8233, 3, 908, 454, 0, 8232, 8231, 1, 0, 0, 0, 8232, 8233, 1, 0, 0, 0, 8233, 8235, 1, 0, 0, 0, 8234, 8236, 3, 902, 451, 0, 8235, 8234, 1, 0, 0, 0, 8235, 8236, 1, 0, 0, 0, 8236, 8238, 1, 0, 0, 0, 8237, 8239, 3, 924, 462, 0, 8238, 8237, 1, 0, 0, 0, 8238, 8239, 1, 0, 0, 0, 8239, 8251, 1, 0, 0, 0, 8240, 8245, 5, 370, 0, 0, 8241, 8242, 5, 2, 0, 0, 8242, 8243, 3, 892, 446, 0, 8243, 8244, 5, 3, 0, 0, 8244, 8246, 1, 0, 0, 0, 8245, 8241, 1, 0, 0, 0, 8245, 8246, 1, 0, 0, 0, 8246, 8248, 1, 0, 0, 0, 8247, 8249, 3, 924, 462, 0, 8248, 8247, 1, 0, 0, 0, 8248, 8249, 1, 0, 0, 0, 8249, 8251, 1, 0, 0, 0, 8250, 8224, 1, 0, 0, 0, 8250, 8240, 1, 0, 0, 0, 8251, 889, 1, 0, 0, 0, 8252, 8254, 3, 894, 447, 0, 8253, 8255, 3, 908, 454, 0, 8254, 8253, 1, 0, 0, 0, 8254, 8255, 1, 0, 0, 0, 8255, 8257, 1, 0, 0, 0, 8256, 8258, 3, 924, 462, 0, 8257, 8256, 1, 0, 0, 0, 8257, 8258, 1, 0, 0, 0, 8258, 8267, 1, 0, 0, 0, 8259, 8260, 3, 894, 447, 0, 8260, 8261, 5, 2, 0, 0, 8261, 8262, 3, 904, 452, 0, 8262, 8264, 5, 3, 0, 0, 8263, 8265, 3, 924, 462, 0, 8264, 8263, 1, 0, 0, 0, 8264, 8265, 1, 0, 0, 0, 8265, 8267, 1, 0, 0, 0, 8266, 8252, 1, 0, 0, 0, 8266, 8259, 1, 0, 0, 0, 8267, 891, 1, 0, 0, 0, 8268, 8273, 3, 896, 448, 0, 8269, 8270, 5, 6, 0, 0, 8270, 8272, 3, 896, 448, 0, 8271, 8269, 1, 0, 0, 0, 8272, 8275, 1, 0, 0, 0, 8273, 8271, 1, 0, 0, 0, 8273, 8274, 1, 0, 0, 0, 8274, 893, 1, 0, 0, 0, 8275, 8273, 1, 0, 0, 0, 8276, 8277, 7, 51, 0, 0, 8277, 895, 1, 0, 0, 0, 8278, 8280, 3, 898, 449, 0, 8279, 8281, 3, 900, 450, 0, 8280, 8279, 1, 0, 0, 0, 8280, 8281, 1, 0, 0, 0, 8281, 897, 1, 0, 0, 0, 8282, 8285, 3, 1488, 744, 0, 8283, 8285, 3, 894, 447, 0, 8284, 8282, 1, 0, 0, 0, 8284, 8283, 1, 0, 0, 0, 8285, 899, 1, 0, 0, 0, 8286, 8289, 3, 72, 36, 0, 8287, 8289, 3, 322, 161, 0, 8288, 8286, 1, 0, 0, 0, 8288, 8287, 1, 0, 0, 0, 8289, 901, 1, 0, 0, 0, 8290, 8291, 3, 894, 447, 0, 8291, 903, 1, 0, 0, 0, 8292, 8297, 3, 906, 453, 0, 8293, 8294, 5, 6, 0, 0, 8294, 8296, 3, 906, 453, 0, 8295, 8293, 1, 0, 0, 0, 8296, 8299, 1, 0, 0, 0, 8297, 8295, 1, 0, 0, 0, 8297, 8298, 1, 0, 0, 0, 8298, 905, 1, 0, 0, 0, 8299, 8297, 1, 0, 0, 0, 8300, 8304, 3, 908, 454, 0, 8301, 8304, 3, 910, 455, 0, 8302, 8304, 3, 912, 456, 0, 8303, 8300, 1, 0, 0, 0, 8303, 8301, 1, 0, 0, 0, 8303, 8302, 1, 0, 0, 0, 8304, 907, 1, 0, 0, 0, 8305, 8307, 5, 128, 0, 0, 8306, 8308, 7, 52, 0, 0, 8307, 8306, 1, 0, 0, 0, 8307, 8308, 1, 0, 0, 0, 8308, 909, 1, 0, 0, 0, 8309, 8311, 5, 547, 0, 0, 8310, 8312, 7, 52, 0, 0, 8311, 8310, 1, 0, 0, 0, 8311, 8312, 1, 0, 0, 0, 8312, 911, 1, 0, 0, 0, 8313, 8316, 5, 548, 0, 0, 8314, 8317, 3, 322, 161, 0, 8315, 8317, 3, 1458, 729, 0, 8316, 8314, 1, 0, 0, 0, 8316, 8315, 1, 0, 0, 0, 8317, 913, 1, 0, 0, 0, 8318, 8319, 5, 113, 0, 0, 8319, 915, 1, 0, 0, 0, 8320, 8321, 5, 112, 0, 0, 8321, 917, 1, 0, 0, 0, 8322, 8323, 5, 2, 0, 0, 8323, 8324, 3, 244, 122, 0, 8324, 8325, 5, 3, 0, 0, 8325, 919, 1, 0, 0, 0, 8326, 8328, 3, 1406, 703, 0, 8327, 8329, 3, 918, 459, 0, 8328, 8327, 1, 0, 0, 0, 8328, 8329, 1, 0, 0, 0, 8329, 921, 1, 0, 0, 0, 8330, 8335, 3, 920, 460, 0, 8331, 8332, 5, 6, 0, 0, 8332, 8334, 3, 920, 460, 0, 8333, 8331, 1, 0, 0, 0, 8334, 8337, 1, 0, 0, 0, 8335, 8333, 1, 0, 0, 0, 8335, 8336, 1, 0, 0, 0, 8336, 923, 1, 0, 0, 0, 8337, 8335, 1, 0, 0, 0, 8338, 8339, 3, 922, 461, 0, 8339, 925, 1, 0, 0, 0, 8340, 8341, 5, 203, 0, 0, 8341, 8359, 3, 928, 464, 0, 8342, 8343, 5, 203, 0, 0, 8343, 8345, 3, 894, 447, 0, 8344, 8346, 3, 908, 454, 0, 8345, 8344, 1, 0, 0, 0, 8345, 8346, 1, 0, 0, 0, 8346, 8347, 1, 0, 0, 0, 8347, 8348, 3, 928, 464, 0, 8348, 8359, 1, 0, 0, 0, 8349, 8350, 5, 203, 0, 0, 8350, 8351, 5, 128, 0, 0, 8351, 8359, 3, 928, 464, 0, 8352, 8353, 5, 203, 0, 0, 8353, 8354, 5, 2, 0, 0, 8354, 8355, 3, 930, 465, 0, 8355, 8356, 5, 3, 0, 0, 8356, 8357, 3, 928, 464, 0, 8357, 8359, 1, 0, 0, 0, 8358, 8340, 1, 0, 0, 0, 8358, 8342, 1, 0, 0, 0, 8358, 8349, 1, 0, 0, 0, 8358, 8352, 1, 0, 0, 0, 8359, 927, 1, 0, 0, 0, 8360, 8370, 3, 1000, 500, 0, 8361, 8370, 3, 950, 475, 0, 8362, 8370, 3, 982, 491, 0, 8363, 8370, 3, 968, 484, 0, 8364, 8370, 3, 992, 496, 0, 8365, 8370, 3, 294, 147, 0, 8366, 8370, 3, 300, 150, 0, 8367, 8370, 3, 306, 153, 0, 8368, 8370, 3, 944, 472, 0, 8369, 8360, 1, 0, 0, 0, 8369, 8361, 1, 0, 0, 0, 8369, 8362, 1, 0, 0, 0, 8369, 8363, 1, 0, 0, 0, 8369, 8364, 1, 0, 0, 0, 8369, 8365, 1, 0, 0, 0, 8369, 8366, 1, 0, 0, 0, 8369, 8367, 1, 0, 0, 0, 8369, 8368, 1, 0, 0, 0, 8370, 929, 1, 0, 0, 0, 8371, 8376, 3, 932, 466, 0, 8372, 8373, 5, 6, 0, 0, 8373, 8375, 3, 932, 466, 0, 8374, 8372, 1, 0, 0, 0, 8375, 8378, 1, 0, 0, 0, 8376, 8374, 1, 0, 0, 0, 8376, 8377, 1, 0, 0, 0, 8377, 931, 1, 0, 0, 0, 8378, 8376, 1, 0, 0, 0, 8379, 8381, 3, 934, 467, 0, 8380, 8382, 3, 936, 468, 0, 8381, 8380, 1, 0, 0, 0, 8381, 8382, 1, 0, 0, 0, 8382, 933, 1, 0, 0, 0, 8383, 8386, 3, 1488, 744, 0, 8384, 8386, 3, 894, 447, 0, 8385, 8383, 1, 0, 0, 0, 8385, 8384, 1, 0, 0, 0, 8386, 935, 1, 0, 0, 0, 8387, 8390, 3, 72, 36, 0, 8388, 8390, 3, 322, 161, 0, 8389, 8387, 1, 0, 0, 0, 8389, 8388, 1, 0, 0, 0, 8390, 937, 1, 0, 0, 0, 8391, 8392, 5, 290, 0, 0, 8392, 8394, 3, 1436, 718, 0, 8393, 8395, 3, 940, 470, 0, 8394, 8393, 1, 0, 0, 0, 8394, 8395, 1, 0, 0, 0, 8395, 8396, 1, 0, 0, 0, 8396, 8397, 5, 36, 0, 0, 8397, 8398, 3, 942, 471, 0, 8398, 939, 1, 0, 0, 0, 8399, 8400, 5, 2, 0, 0, 8400, 8401, 3, 1342, 671, 0, 8401, 8402, 5, 3, 0, 0, 8402, 941, 1, 0, 0, 0, 8403, 8408, 3, 1000, 500, 0, 8404, 8408, 3, 950, 475, 0, 8405, 8408, 3, 982, 491, 0, 8406, 8408, 3, 968, 484, 0, 8407, 8403, 1, 0, 0, 0, 8407, 8404, 1, 0, 0, 0, 8407, 8405, 1, 0, 0, 0, 8407, 8406, 1, 0, 0, 0, 8408, 943, 1, 0, 0, 0, 8409, 8410, 5, 202, 0, 0, 8410, 8412, 3, 1436, 718, 0, 8411, 8413, 3, 946, 473, 0, 8412, 8411, 1, 0, 0, 0, 8412, 8413, 1, 0, 0, 0, 8413, 8433, 1, 0, 0, 0, 8414, 8416, 5, 46, 0, 0, 8415, 8417, 3, 190, 95, 0, 8416, 8415, 1, 0, 0, 0, 8416, 8417, 1, 0, 0, 0, 8417, 8418, 1, 0, 0, 0, 8418, 8420, 5, 92, 0, 0, 8419, 8421, 3, 516, 258, 0, 8420, 8419, 1, 0, 0, 0, 8420, 8421, 1, 0, 0, 0, 8421, 8422, 1, 0, 0, 0, 8422, 8423, 3, 296, 148, 0, 8423, 8424, 5, 36, 0, 0, 8424, 8425, 5, 202, 0, 0, 8425, 8427, 3, 1436, 718, 0, 8426, 8428, 3, 946, 473, 0, 8427, 8426, 1, 0, 0, 0, 8427, 8428, 1, 0, 0, 0, 8428, 8430, 1, 0, 0, 0, 8429, 8431, 3, 298, 149, 0, 8430, 8429, 1, 0, 0, 0, 8430, 8431, 1, 0, 0, 0, 8431, 8433, 1, 0, 0, 0, 8432, 8409, 1, 0, 0, 0, 8432, 8414, 1, 0, 0, 0, 8433, 945, 1, 0, 0, 0, 8434, 8435, 5, 2, 0, 0, 8435, 8436, 3, 1328, 664, 0, 8436, 8437, 5, 3, 0, 0, 8437, 947, 1, 0, 0, 0, 8438, 8440, 5, 177, 0, 0, 8439, 8441, 5, 290, 0, 0, 8440, 8439, 1, 0, 0, 0, 8440, 8441, 1, 0, 0, 0, 8441, 8444, 1, 0, 0, 0, 8442, 8445, 3, 1436, 718, 0, 8443, 8445, 5, 30, 0, 0, 8444, 8442, 1, 0, 0, 0, 8444, 8443, 1, 0, 0, 0, 8445, 949, 1, 0, 0, 0, 8446, 8448, 3, 1026, 513, 0, 8447, 8446, 1, 0, 0, 0, 8447, 8448, 1, 0, 0, 0, 8448, 8449, 1, 0, 0, 0, 8449, 8450, 5, 241, 0, 0, 8450, 8451, 5, 71, 0, 0, 8451, 8452, 3, 952, 476, 0, 8452, 8454, 3, 954, 477, 0, 8453, 8455, 3, 962, 481, 0, 8454, 8453, 1, 0, 0, 0, 8454, 8455, 1, 0, 0, 0, 8455, 8457, 1, 0, 0, 0, 8456, 8458, 3, 966, 483, 0, 8457, 8456, 1, 0, 0, 0, 8457, 8458, 1, 0, 0, 0, 8458, 951, 1, 0, 0, 0, 8459, 8462, 3, 1406, 703, 0, 8460, 8461, 5, 36, 0, 0, 8461, 8463, 3, 1474, 737, 0, 8462, 8460, 1, 0, 0, 0, 8462, 8463, 1, 0, 0, 0, 8463, 953, 1, 0, 0, 0, 8464, 8465, 5, 2, 0, 0, 8465, 8466, 3, 958, 479, 0, 8466, 8467, 5, 3, 0, 0, 8467, 8469, 1, 0, 0, 0, 8468, 8464, 1, 0, 0, 0, 8468, 8469, 1, 0, 0, 0, 8469, 8474, 1, 0, 0, 0, 8470, 8471, 5, 463, 0, 0, 8471, 8472, 3, 956, 478, 0, 8472, 8473, 5, 450, 0, 0, 8473, 8475, 1, 0, 0, 0, 8474, 8470, 1, 0, 0, 0, 8474, 8475, 1, 0, 0, 0, 8475, 8478, 1, 0, 0, 0, 8476, 8479, 3, 1694, 847, 0, 8477, 8479, 3, 1000, 500, 0, 8478, 8476, 1, 0, 0, 0, 8478, 8477, 1, 0, 0, 0, 8479, 955, 1, 0, 0, 0, 8480, 8481, 7, 53, 0, 0, 8481, 957, 1, 0, 0, 0, 8482, 8487, 3, 960, 480, 0, 8483, 8484, 5, 6, 0, 0, 8484, 8486, 3, 960, 480, 0, 8485, 8483, 1, 0, 0, 0, 8486, 8489, 1, 0, 0, 0, 8487, 8485, 1, 0, 0, 0, 8487, 8488, 1, 0, 0, 0, 8488, 959, 1, 0, 0, 0, 8489, 8487, 1, 0, 0, 0, 8490, 8491, 3, 1432, 716, 0, 8491, 8492, 3, 1382, 691, 0, 8492, 961, 1, 0, 0, 0, 8493, 8494, 5, 80, 0, 0, 8494, 8496, 5, 464, 0, 0, 8495, 8497, 3, 964, 482, 0, 8496, 8495, 1, 0, 0, 0, 8496, 8497, 1, 0, 0, 0, 8497, 8498, 1, 0, 0, 0, 8498, 8506, 5, 57, 0, 0, 8499, 8500, 5, 369, 0, 0, 8500, 8501, 5, 333, 0, 0, 8501, 8503, 3, 984, 492, 0, 8502, 8504, 3, 1144, 572, 0, 8503, 8502, 1, 0, 0, 0, 8503, 8504, 1, 0, 0, 0, 8504, 8507, 1, 0, 0, 0, 8505, 8507, 5, 270, 0, 0, 8506, 8499, 1, 0, 0, 0, 8506, 8505, 1, 0, 0, 0, 8507, 963, 1, 0, 0, 0, 8508, 8509, 5, 2, 0, 0, 8509, 8510, 3, 636, 318, 0, 8510, 8512, 5, 3, 0, 0, 8511, 8513, 3, 1144, 572, 0, 8512, 8511, 1, 0, 0, 0, 8512, 8513, 1, 0, 0, 0, 8513, 8518, 1, 0, 0, 0, 8514, 8515, 5, 80, 0, 0, 8515, 8516, 5, 45, 0, 0, 8516, 8518, 3, 1436, 718, 0, 8517, 8508, 1, 0, 0, 0, 8517, 8514, 1, 0, 0, 0, 8518, 965, 1, 0, 0, 0, 8519, 8520, 5, 87, 0, 0, 8520, 8521, 3, 1386, 693, 0, 8521, 967, 1, 0, 0, 0, 8522, 8524, 3, 1026, 513, 0, 8523, 8522, 1, 0, 0, 0, 8523, 8524, 1, 0, 0, 0, 8524, 8525, 1, 0, 0, 0, 8525, 8526, 5, 182, 0, 0, 8526, 8527, 5, 64, 0, 0, 8527, 8529, 3, 1128, 564, 0, 8528, 8530, 3, 970, 485, 0, 8529, 8528, 1, 0, 0, 0, 8529, 8530, 1, 0, 0, 0, 8530, 8532, 1, 0, 0, 0, 8531, 8533, 3, 1146, 573, 0, 8532, 8531, 1, 0, 0, 0, 8532, 8533, 1, 0, 0, 0, 8533, 8535, 1, 0, 0, 0, 8534, 8536, 3, 966, 483, 0, 8535, 8534, 1, 0, 0, 0, 8535, 8536, 1, 0, 0, 0, 8536, 969, 1, 0, 0, 0, 8537, 8538, 5, 100, 0, 0, 8538, 8539, 3, 1104, 552, 0, 8539, 971, 1, 0, 0, 0, 8540, 8542, 5, 256, 0, 0, 8541, 8543, 3, 1034, 517, 0, 8542, 8541, 1, 0, 0, 0, 8542, 8543, 1, 0, 0, 0, 8543, 8544, 1, 0, 0, 0, 8544, 8546, 3, 1124, 562, 0, 8545, 8547, 3, 974, 487, 0, 8546, 8545, 1, 0, 0, 0, 8546, 8547, 1, 0, 0, 0, 8547, 8549, 1, 0, 0, 0, 8548, 8550, 3, 978, 489, 0, 8549, 8548, 1, 0, 0, 0, 8549, 8550, 1, 0, 0, 0, 8550, 973, 1, 0, 0, 0, 8551, 8552, 5, 68, 0, 0, 8552, 8553, 3, 976, 488, 0, 8553, 8554, 5, 263, 0, 0, 8554, 975, 1, 0, 0, 0, 8555, 8556, 5, 131, 0, 0, 8556, 8568, 7, 54, 0, 0, 8557, 8558, 5, 414, 0, 0, 8558, 8568, 7, 54, 0, 0, 8559, 8564, 5, 334, 0, 0, 8560, 8561, 5, 369, 0, 0, 8561, 8565, 5, 201, 0, 0, 8562, 8563, 5, 414, 0, 0, 8563, 8565, 5, 201, 0, 0, 8564, 8560, 1, 0, 0, 0, 8564, 8562, 1, 0, 0, 0, 8564, 8565, 1, 0, 0, 0, 8565, 8568, 1, 0, 0, 0, 8566, 8568, 5, 201, 0, 0, 8567, 8555, 1, 0, 0, 0, 8567, 8557, 1, 0, 0, 0, 8567, 8559, 1, 0, 0, 0, 8567, 8566, 1, 0, 0, 0, 8568, 977, 1, 0, 0, 0, 8569, 8570, 5, 272, 0, 0, 8570, 979, 1, 0, 0, 0, 8571, 8575, 5, 272, 0, 0, 8572, 8573, 5, 465, 0, 0, 8573, 8575, 5, 466, 0, 0, 8574, 8571, 1, 0, 0, 0, 8574, 8572, 1, 0, 0, 0, 8575, 981, 1, 0, 0, 0, 8576, 8578, 3, 1026, 513, 0, 8577, 8576, 1, 0, 0, 0, 8577, 8578, 1, 0, 0, 0, 8578, 8579, 1, 0, 0, 0, 8579, 8580, 5, 369, 0, 0, 8580, 8581, 3, 1128, 564, 0, 8581, 8582, 5, 333, 0, 0, 8582, 8584, 3, 984, 492, 0, 8583, 8585, 3, 1102, 551, 0, 8584, 8583, 1, 0, 0, 0, 8584, 8585, 1, 0, 0, 0, 8585, 8587, 1, 0, 0, 0, 8586, 8588, 3, 1146, 573, 0, 8587, 8586, 1, 0, 0, 0, 8587, 8588, 1, 0, 0, 0, 8588, 8590, 1, 0, 0, 0, 8589, 8591, 3, 966, 483, 0, 8590, 8589, 1, 0, 0, 0, 8590, 8591, 1, 0, 0, 0, 8591, 983, 1, 0, 0, 0, 8592, 8597, 3, 986, 493, 0, 8593, 8594, 5, 6, 0, 0, 8594, 8596, 3, 986, 493, 0, 8595, 8593, 1, 0, 0, 0, 8596, 8599, 1, 0, 0, 0, 8597, 8595, 1, 0, 0, 0, 8597, 8598, 1, 0, 0, 0, 8598, 985, 1, 0, 0, 0, 8599, 8597, 1, 0, 0, 0, 8600, 8601, 3, 988, 494, 0, 8601, 8602, 5, 10, 0, 0, 8602, 8603, 3, 1212, 606, 0, 8603, 8619, 1, 0, 0, 0, 8604, 8605, 5, 2, 0, 0, 8605, 8606, 3, 990, 495, 0, 8606, 8607, 5, 3, 0, 0, 8607, 8616, 5, 10, 0, 0, 8608, 8610, 5, 414, 0, 0, 8609, 8608, 1, 0, 0, 0, 8609, 8610, 1, 0, 0, 0, 8610, 8611, 1, 0, 0, 0, 8611, 8617, 3, 1212, 606, 0, 8612, 8613, 5, 2, 0, 0, 8613, 8614, 3, 1006, 503, 0, 8614, 8615, 5, 3, 0, 0, 8615, 8617, 1, 0, 0, 0, 8616, 8609, 1, 0, 0, 0, 8616, 8612, 1, 0, 0, 0, 8617, 8619, 1, 0, 0, 0, 8618, 8600, 1, 0, 0, 0, 8618, 8604, 1, 0, 0, 0, 8619, 987, 1, 0, 0, 0, 8620, 8621, 3, 1432, 716, 0, 8621, 8622, 3, 1382, 691, 0, 8622, 989, 1, 0, 0, 0, 8623, 8628, 3, 988, 494, 0, 8624, 8625, 5, 6, 0, 0, 8625, 8627, 3, 988, 494, 0, 8626, 8624, 1, 0, 0, 0, 8627, 8630, 1, 0, 0, 0, 8628, 8626, 1, 0, 0, 0, 8628, 8629, 1, 0, 0, 0, 8629, 991, 1, 0, 0, 0, 8630, 8628, 1, 0, 0, 0, 8631, 8632, 5, 178, 0, 0, 8632, 8633, 3, 994, 497, 0, 8633, 8634, 3, 996, 498, 0, 8634, 8635, 5, 172, 0, 0, 8635, 8636, 3, 998, 499, 0, 8636, 8637, 5, 62, 0, 0, 8637, 8638, 3, 1000, 500, 0, 8638, 993, 1, 0, 0, 0, 8639, 8640, 3, 1436, 718, 0, 8640, 995, 1, 0, 0, 0, 8641, 8642, 5, 269, 0, 0, 8642, 8647, 5, 324, 0, 0, 8643, 8647, 5, 324, 0, 0, 8644, 8647, 5, 107, 0, 0, 8645, 8647, 5, 240, 0, 0, 8646, 8641, 1, 0, 0, 0, 8646, 8643, 1, 0, 0, 0, 8646, 8644, 1, 0, 0, 0, 8646, 8645, 1, 0, 0, 0, 8647, 8650, 1, 0, 0, 0, 8648, 8646, 1, 0, 0, 0, 8648, 8649, 1, 0, 0, 0, 8649, 997, 1, 0, 0, 0, 8650, 8648, 1, 0, 0, 0, 8651, 8657, 1, 0, 0, 0, 8652, 8653, 5, 105, 0, 0, 8653, 8657, 5, 217, 0, 0, 8654, 8655, 5, 379, 0, 0, 8655, 8657, 5, 217, 0, 0, 8656, 8651, 1, 0, 0, 0, 8656, 8652, 1, 0, 0, 0, 8656, 8654, 1, 0, 0, 0, 8657, 999, 1, 0, 0, 0, 8658, 8661, 3, 1004, 502, 0, 8659, 8661, 3, 1002, 501, 0, 8660, 8658, 1, 0, 0, 0, 8660, 8659, 1, 0, 0, 0, 8661, 1001, 1, 0, 0, 0, 8662, 8663, 5, 2, 0, 0, 8663, 8664, 3, 1004, 502, 0, 8664, 8665, 5, 3, 0, 0, 8665, 8671, 1, 0, 0, 0, 8666, 8667, 5, 2, 0, 0, 8667, 8668, 3, 1002, 501, 0, 8668, 8669, 5, 3, 0, 0, 8669, 8671, 1, 0, 0, 0, 8670, 8662, 1, 0, 0, 0, 8670, 8666, 1, 0, 0, 0, 8671, 1003, 1, 0, 0, 0, 8672, 8674, 3, 1006, 503, 0, 8673, 8675, 3, 1042, 521, 0, 8674, 8673, 1, 0, 0, 0, 8674, 8675, 1, 0, 0, 0, 8675, 8684, 1, 0, 0, 0, 8676, 8678, 3, 1088, 544, 0, 8677, 8679, 3, 1052, 526, 0, 8678, 8677, 1, 0, 0, 0, 8678, 8679, 1, 0, 0, 0, 8679, 8685, 1, 0, 0, 0, 8680, 8682, 3, 1050, 525, 0, 8681, 8683, 3, 1090, 545, 0, 8682, 8681, 1, 0, 0, 0, 8682, 8683, 1, 0, 0, 0, 8683, 8685, 1, 0, 0, 0, 8684, 8676, 1, 0, 0, 0, 8684, 8680, 1, 0, 0, 0, 8684, 8685, 1, 0, 0, 0, 8685, 8702, 1, 0, 0, 0, 8686, 8687, 3, 1014, 507, 0, 8687, 8689, 3, 1006, 503, 0, 8688, 8690, 3, 1042, 521, 0, 8689, 8688, 1, 0, 0, 0, 8689, 8690, 1, 0, 0, 0, 8690, 8699, 1, 0, 0, 0, 8691, 8693, 3, 1088, 544, 0, 8692, 8694, 3, 1052, 526, 0, 8693, 8692, 1, 0, 0, 0, 8693, 8694, 1, 0, 0, 0, 8694, 8700, 1, 0, 0, 0, 8695, 8697, 3, 1050, 525, 0, 8696, 8698, 3, 1090, 545, 0, 8697, 8696, 1, 0, 0, 0, 8697, 8698, 1, 0, 0, 0, 8698, 8700, 1, 0, 0, 0, 8699, 8691, 1, 0, 0, 0, 8699, 8695, 1, 0, 0, 0, 8699, 8700, 1, 0, 0, 0, 8700, 8702, 1, 0, 0, 0, 8701, 8672, 1, 0, 0, 0, 8701, 8686, 1, 0, 0, 0, 8702, 1005, 1, 0, 0, 0, 8703, 8706, 3, 1008, 504, 0, 8704, 8706, 3, 1002, 501, 0, 8705, 8703, 1, 0, 0, 0, 8705, 8704, 1, 0, 0, 0, 8706, 1007, 1, 0, 0, 0, 8707, 8723, 5, 88, 0, 0, 8708, 8710, 3, 1040, 520, 0, 8709, 8708, 1, 0, 0, 0, 8709, 8710, 1, 0, 0, 0, 8710, 8712, 1, 0, 0, 0, 8711, 8713, 3, 1028, 514, 0, 8712, 8711, 1, 0, 0, 0, 8712, 8713, 1, 0, 0, 0, 8713, 8715, 1, 0, 0, 0, 8714, 8716, 3, 1384, 692, 0, 8715, 8714, 1, 0, 0, 0, 8715, 8716, 1, 0, 0, 0, 8716, 8724, 1, 0, 0, 0, 8717, 8719, 3, 1038, 519, 0, 8718, 8717, 1, 0, 0, 0, 8718, 8719, 1, 0, 0, 0, 8719, 8721, 1, 0, 0, 0, 8720, 8722, 3, 1386, 693, 0, 8721, 8720, 1, 0, 0, 0, 8721, 8722, 1, 0, 0, 0, 8722, 8724, 1, 0, 0, 0, 8723, 8709, 1, 0, 0, 0, 8723, 8718, 1, 0, 0, 0, 8724, 8726, 1, 0, 0, 0, 8725, 8727, 3, 1028, 514, 0, 8726, 8725, 1, 0, 0, 0, 8726, 8727, 1, 0, 0, 0, 8727, 8729, 1, 0, 0, 0, 8728, 8730, 3, 1102, 551, 0, 8729, 8728, 1, 0, 0, 0, 8729, 8730, 1, 0, 0, 0, 8730, 8732, 1, 0, 0, 0, 8731, 8733, 3, 1144, 572, 0, 8732, 8731, 1, 0, 0, 0, 8732, 8733, 1, 0, 0, 0, 8733, 8735, 1, 0, 0, 0, 8734, 8736, 3, 1072, 536, 0, 8735, 8734, 1, 0, 0, 0, 8735, 8736, 1, 0, 0, 0, 8736, 8738, 1, 0, 0, 0, 8737, 8739, 3, 1086, 543, 0, 8738, 8737, 1, 0, 0, 0, 8738, 8739, 1, 0, 0, 0, 8739, 8741, 1, 0, 0, 0, 8740, 8742, 3, 1288, 644, 0, 8741, 8740, 1, 0, 0, 0, 8741, 8742, 1, 0, 0, 0, 8742, 8753, 1, 0, 0, 0, 8743, 8753, 3, 1100, 550, 0, 8744, 8745, 5, 92, 0, 0, 8745, 8753, 3, 1118, 559, 0, 8746, 8747, 3, 1002, 501, 0, 8747, 8750, 3, 1012, 506, 0, 8748, 8751, 3, 1008, 504, 0, 8749, 8751, 3, 1002, 501, 0, 8750, 8748, 1, 0, 0, 0, 8750, 8749, 1, 0, 0, 0, 8751, 8753, 1, 0, 0, 0, 8752, 8707, 1, 0, 0, 0, 8752, 8743, 1, 0, 0, 0, 8752, 8744, 1, 0, 0, 0, 8752, 8746, 1, 0, 0, 0, 8753, 8761, 1, 0, 0, 0, 8754, 8757, 3, 1012, 506, 0, 8755, 8758, 3, 1008, 504, 0, 8756, 8758, 3, 1002, 501, 0, 8757, 8755, 1, 0, 0, 0, 8757, 8756, 1, 0, 0, 0, 8758, 8760, 1, 0, 0, 0, 8759, 8754, 1, 0, 0, 0, 8760, 8763, 1, 0, 0, 0, 8761, 8759, 1, 0, 0, 0, 8761, 8762, 1, 0, 0, 0, 8762, 1009, 1, 0, 0, 0, 8763, 8761, 1, 0, 0, 0, 8764, 8768, 5, 97, 0, 0, 8765, 8768, 5, 70, 0, 0, 8766, 8768, 5, 59, 0, 0, 8767, 8764, 1, 0, 0, 0, 8767, 8765, 1, 0, 0, 0, 8767, 8766, 1, 0, 0, 0, 8768, 1011, 1, 0, 0, 0, 8769, 8771, 3, 1010, 505, 0, 8770, 8772, 3, 1036, 518, 0, 8771, 8770, 1, 0, 0, 0, 8771, 8772, 1, 0, 0, 0, 8772, 1013, 1, 0, 0, 0, 8773, 8775, 5, 105, 0, 0, 8774, 8776, 5, 303, 0, 0, 8775, 8774, 1, 0, 0, 0, 8775, 8776, 1, 0, 0, 0, 8776, 8777, 1, 0, 0, 0, 8777, 8778, 3, 1016, 508, 0, 8778, 1015, 1, 0, 0, 0, 8779, 8784, 3, 1018, 509, 0, 8780, 8781, 5, 6, 0, 0, 8781, 8783, 3, 1018, 509, 0, 8782, 8780, 1, 0, 0, 0, 8783, 8786, 1, 0, 0, 0, 8784, 8782, 1, 0, 0, 0, 8784, 8785, 1, 0, 0, 0, 8785, 1017, 1, 0, 0, 0, 8786, 8784, 1, 0, 0, 0, 8787, 8789, 3, 1436, 718, 0, 8788, 8790, 3, 918, 459, 0, 8789, 8788, 1, 0, 0, 0, 8789, 8790, 1, 0, 0, 0, 8790, 8791, 1, 0, 0, 0, 8791, 8793, 5, 36, 0, 0, 8792, 8794, 3, 1024, 512, 0, 8793, 8792, 1, 0, 0, 0, 8793, 8794, 1, 0, 0, 0, 8794, 8795, 1, 0, 0, 0, 8795, 8796, 5, 2, 0, 0, 8796, 8797, 3, 942, 471, 0, 8797, 8799, 5, 3, 0, 0, 8798, 8800, 3, 1020, 510, 0, 8799, 8798, 1, 0, 0, 0, 8799, 8800, 1, 0, 0, 0, 8800, 8802, 1, 0, 0, 0, 8801, 8803, 3, 1022, 511, 0, 8802, 8801, 1, 0, 0, 0, 8802, 8803, 1, 0, 0, 0, 8803, 1019, 1, 0, 0, 0, 8804, 8805, 5, 325, 0, 0, 8805, 8806, 7, 55, 0, 0, 8806, 8807, 5, 207, 0, 0, 8807, 8808, 5, 147, 0, 0, 8808, 8809, 3, 244, 122, 0, 8809, 8810, 5, 333, 0, 0, 8810, 8811, 3, 1432, 716, 0, 8811, 1021, 1, 0, 0, 0, 8812, 8813, 5, 173, 0, 0, 8813, 8814, 3, 244, 122, 0, 8814, 8815, 5, 333, 0, 0, 8815, 8821, 3, 1432, 716, 0, 8816, 8817, 5, 94, 0, 0, 8817, 8818, 3, 1436, 718, 0, 8818, 8819, 5, 53, 0, 0, 8819, 8820, 3, 1436, 718, 0, 8820, 8822, 1, 0, 0, 0, 8821, 8816, 1, 0, 0, 0, 8821, 8822, 1, 0, 0, 0, 8822, 8823, 1, 0, 0, 0, 8823, 8824, 5, 100, 0, 0, 8824, 8825, 3, 1432, 716, 0, 8825, 1023, 1, 0, 0, 0, 8826, 8830, 5, 259, 0, 0, 8827, 8828, 5, 77, 0, 0, 8828, 8830, 5, 259, 0, 0, 8829, 8826, 1, 0, 0, 0, 8829, 8827, 1, 0, 0, 0, 8830, 1025, 1, 0, 0, 0, 8831, 8832, 3, 1014, 507, 0, 8832, 1027, 1, 0, 0, 0, 8833, 8838, 5, 71, 0, 0, 8834, 8835, 3, 1030, 515, 0, 8835, 8836, 3, 1032, 516, 0, 8836, 8839, 1, 0, 0, 0, 8837, 8839, 3, 1674, 837, 0, 8838, 8834, 1, 0, 0, 0, 8838, 8837, 1, 0, 0, 0, 8839, 1029, 1, 0, 0, 0, 8840, 8843, 1, 0, 0, 0, 8841, 8843, 5, 346, 0, 0, 8842, 8840, 1, 0, 0, 0, 8842, 8841, 1, 0, 0, 0, 8843, 1031, 1, 0, 0, 0, 8844, 8846, 7, 56, 0, 0, 8845, 8844, 1, 0, 0, 0, 8845, 8846, 1, 0, 0, 0, 8846, 8847, 1, 0, 0, 0, 8847, 8849, 7, 25, 0, 0, 8848, 8850, 3, 1034, 517, 0, 8849, 8848, 1, 0, 0, 0, 8849, 8850, 1, 0, 0, 0, 8850, 8851, 1, 0, 0, 0, 8851, 8861, 3, 1404, 702, 0, 8852, 8854, 5, 367, 0, 0, 8853, 8855, 3, 1034, 517, 0, 8854, 8853, 1, 0, 0, 0, 8854, 8855, 1, 0, 0, 0, 8855, 8856, 1, 0, 0, 0, 8856, 8861, 3, 1404, 702, 0, 8857, 8858, 5, 92, 0, 0, 8858, 8861, 3, 1404, 702, 0, 8859, 8861, 3, 1404, 702, 0, 8860, 8845, 1, 0, 0, 0, 8860, 8852, 1, 0, 0, 0, 8860, 8857, 1, 0, 0, 0, 8860, 8859, 1, 0, 0, 0, 8861, 1033, 1, 0, 0, 0, 8862, 8863, 5, 92, 0, 0, 8863, 1035, 1, 0, 0, 0, 8864, 8865, 7, 57, 0, 0, 8865, 1037, 1, 0, 0, 0, 8866, 8872, 5, 56, 0, 0, 8867, 8868, 5, 80, 0, 0, 8868, 8869, 5, 2, 0, 0, 8869, 8870, 3, 1328, 664, 0, 8870, 8871, 5, 3, 0, 0, 8871, 8873, 1, 0, 0, 0, 8872, 8867, 1, 0, 0, 0, 8872, 8873, 1, 0, 0, 0, 8873, 1039, 1, 0, 0, 0, 8874, 8875, 5, 30, 0, 0, 8875, 1041, 1, 0, 0, 0, 8876, 8877, 3, 1044, 522, 0, 8877, 1043, 1, 0, 0, 0, 8878, 8879, 5, 83, 0, 0, 8879, 8880, 5, 147, 0, 0, 8880, 8881, 3, 1046, 523, 0, 8881, 1045, 1, 0, 0, 0, 8882, 8887, 3, 1048, 524, 0, 8883, 8884, 5, 6, 0, 0, 8884, 8886, 3, 1048, 524, 0, 8885, 8883, 1, 0, 0, 0, 8886, 8889, 1, 0, 0, 0, 8887, 8885, 1, 0, 0, 0, 8887, 8888, 1, 0, 0, 0, 8888, 1047, 1, 0, 0, 0, 8889, 8887, 1, 0, 0, 0, 8890, 8894, 3, 1336, 668, 0, 8891, 8892, 5, 100, 0, 0, 8892, 8895, 3, 1324, 662, 0, 8893, 8895, 3, 650, 325, 0, 8894, 8891, 1, 0, 0, 0, 8894, 8893, 1, 0, 0, 0, 8894, 8895, 1, 0, 0, 0, 8895, 8897, 1, 0, 0, 0, 8896, 8898, 3, 652, 326, 0, 8897, 8896, 1, 0, 0, 0, 8897, 8898, 1, 0, 0, 0, 8898, 1049, 1, 0, 0, 0, 8899, 8901, 3, 1054, 527, 0, 8900, 8902, 3, 1058, 529, 0, 8901, 8900, 1, 0, 0, 0, 8901, 8902, 1, 0, 0, 0, 8902, 8912, 1, 0, 0, 0, 8903, 8905, 3, 1058, 529, 0, 8904, 8906, 3, 1056, 528, 0, 8905, 8904, 1, 0, 0, 0, 8905, 8906, 1, 0, 0, 0, 8906, 8912, 1, 0, 0, 0, 8907, 8909, 3, 1056, 528, 0, 8908, 8910, 3, 1058, 529, 0, 8909, 8908, 1, 0, 0, 0, 8909, 8910, 1, 0, 0, 0, 8910, 8912, 1, 0, 0, 0, 8911, 8899, 1, 0, 0, 0, 8911, 8903, 1, 0, 0, 0, 8911, 8907, 1, 0, 0, 0, 8912, 1051, 1, 0, 0, 0, 8913, 8914, 3, 1050, 525, 0, 8914, 1053, 1, 0, 0, 0, 8915, 8916, 5, 74, 0, 0, 8916, 8919, 3, 1060, 530, 0, 8917, 8918, 5, 6, 0, 0, 8918, 8920, 3, 1062, 531, 0, 8919, 8917, 1, 0, 0, 0, 8919, 8920, 1, 0, 0, 0, 8920, 1055, 1, 0, 0, 0, 8921, 8922, 5, 61, 0, 0, 8922, 8936, 3, 1070, 535, 0, 8923, 8924, 3, 1064, 532, 0, 8924, 8928, 3, 1068, 534, 0, 8925, 8929, 5, 81, 0, 0, 8926, 8927, 5, 105, 0, 0, 8927, 8929, 5, 467, 0, 0, 8928, 8925, 1, 0, 0, 0, 8928, 8926, 1, 0, 0, 0, 8929, 8937, 1, 0, 0, 0, 8930, 8934, 3, 1068, 534, 0, 8931, 8935, 5, 81, 0, 0, 8932, 8933, 5, 105, 0, 0, 8933, 8935, 5, 467, 0, 0, 8934, 8931, 1, 0, 0, 0, 8934, 8932, 1, 0, 0, 0, 8935, 8937, 1, 0, 0, 0, 8936, 8923, 1, 0, 0, 0, 8936, 8930, 1, 0, 0, 0, 8937, 1057, 1, 0, 0, 0, 8938, 8943, 5, 79, 0, 0, 8939, 8940, 3, 1064, 532, 0, 8940, 8941, 3, 1068, 534, 0, 8941, 8944, 1, 0, 0, 0, 8942, 8944, 3, 1062, 531, 0, 8943, 8939, 1, 0, 0, 0, 8943, 8942, 1, 0, 0, 0, 8944, 1059, 1, 0, 0, 0, 8945, 8948, 3, 1212, 606, 0, 8946, 8948, 5, 30, 0, 0, 8947, 8945, 1, 0, 0, 0, 8947, 8946, 1, 0, 0, 0, 8948, 1061, 1, 0, 0, 0, 8949, 8950, 3, 1212, 606, 0, 8950, 1063, 1, 0, 0, 0, 8951, 8952, 5, 12, 0, 0, 8952, 8957, 3, 1066, 533, 0, 8953, 8954, 5, 13, 0, 0, 8954, 8957, 3, 1066, 533, 0, 8955, 8957, 3, 1254, 627, 0, 8956, 8951, 1, 0, 0, 0, 8956, 8953, 1, 0, 0, 0, 8956, 8955, 1, 0, 0, 0, 8957, 1065, 1, 0, 0, 0, 8958, 8961, 3, 1456, 728, 0, 8959, 8961, 3, 1454, 727, 0, 8960, 8958, 1, 0, 0, 0, 8960, 8959, 1, 0, 0, 0, 8961, 1067, 1, 0, 0, 0, 8962, 8963, 7, 58, 0, 0, 8963, 1069, 1, 0, 0, 0, 8964, 8965, 7, 59, 0, 0, 8965, 1071, 1, 0, 0, 0, 8966, 8967, 5, 66, 0, 0, 8967, 8969, 5, 147, 0, 0, 8968, 8970, 3, 1036, 518, 0, 8969, 8968, 1, 0, 0, 0, 8969, 8970, 1, 0, 0, 0, 8970, 8971, 1, 0, 0, 0, 8971, 8972, 3, 1074, 537, 0, 8972, 1073, 1, 0, 0, 0, 8973, 8978, 3, 1076, 538, 0, 8974, 8975, 5, 6, 0, 0, 8975, 8977, 3, 1076, 538, 0, 8976, 8974, 1, 0, 0, 0, 8977, 8980, 1, 0, 0, 0, 8978, 8976, 1, 0, 0, 0, 8978, 8979, 1, 0, 0, 0, 8979, 1075, 1, 0, 0, 0, 8980, 8978, 1, 0, 0, 0, 8981, 8991, 3, 1336, 668, 0, 8982, 8991, 3, 1078, 539, 0, 8983, 8991, 3, 1082, 541, 0, 8984, 8991, 3, 1080, 540, 0, 8985, 8991, 3, 1084, 542, 0, 8986, 8987, 5, 2, 0, 0, 8987, 8988, 3, 1330, 665, 0, 8988, 8989, 5, 3, 0, 0, 8989, 8991, 1, 0, 0, 0, 8990, 8981, 1, 0, 0, 0, 8990, 8982, 1, 0, 0, 0, 8990, 8983, 1, 0, 0, 0, 8990, 8984, 1, 0, 0, 0, 8990, 8985, 1, 0, 0, 0, 8990, 8986, 1, 0, 0, 0, 8991, 1077, 1, 0, 0, 0, 8992, 8993, 5, 2, 0, 0, 8993, 8994, 5, 3, 0, 0, 8994, 1079, 1, 0, 0, 0, 8995, 8996, 5, 468, 0, 0, 8996, 8997, 5, 2, 0, 0, 8997, 8998, 3, 1330, 665, 0, 8998, 8999, 5, 3, 0, 0, 8999, 1081, 1, 0, 0, 0, 9000, 9001, 5, 469, 0, 0, 9001, 9002, 5, 2, 0, 0, 9002, 9003, 3, 1330, 665, 0, 9003, 9004, 5, 3, 0, 0, 9004, 1083, 1, 0, 0, 0, 9005, 9006, 5, 470, 0, 0, 9006, 9007, 5, 471, 0, 0, 9007, 9008, 5, 2, 0, 0, 9008, 9009, 3, 1074, 537, 0, 9009, 9010, 5, 3, 0, 0, 9010, 1085, 1, 0, 0, 0, 9011, 9012, 5, 67, 0, 0, 9012, 9013, 3, 1212, 606, 0, 9013, 1087, 1, 0, 0, 0, 9014, 9019, 3, 1092, 546, 0, 9015, 9016, 5, 62, 0, 0, 9016, 9017, 5, 300, 0, 0, 9017, 9019, 5, 81, 0, 0, 9018, 9014, 1, 0, 0, 0, 9018, 9015, 1, 0, 0, 0, 9019, 1089, 1, 0, 0, 0, 9020, 9021, 3, 1088, 544, 0, 9021, 1091, 1, 0, 0, 0, 9022, 9024, 3, 1094, 547, 0, 9023, 9022, 1, 0, 0, 0, 9024, 9025, 1, 0, 0, 0, 9025, 9023, 1, 0, 0, 0, 9025, 9026, 1, 0, 0, 0, 9026, 1093, 1, 0, 0, 0, 9027, 9029, 3, 1096, 548, 0, 9028, 9030, 3, 1098, 549, 0, 9029, 9028, 1, 0, 0, 0, 9029, 9030, 1, 0, 0, 0, 9030, 9032, 1, 0, 0, 0, 9031, 9033, 3, 980, 490, 0, 9032, 9031, 1, 0, 0, 0, 9032, 9033, 1, 0, 0, 0, 9033, 1095, 1, 0, 0, 0, 9034, 9044, 5, 62, 0, 0, 9035, 9036, 5, 269, 0, 0, 9036, 9038, 5, 245, 0, 0, 9037, 9035, 1, 0, 0, 0, 9037, 9038, 1, 0, 0, 0, 9038, 9039, 1, 0, 0, 0, 9039, 9045, 5, 369, 0, 0, 9040, 9042, 5, 245, 0, 0, 9041, 9040, 1, 0, 0, 0, 9041, 9042, 1, 0, 0, 0, 9042, 9043, 1, 0, 0, 0, 9043, 9045, 5, 334, 0, 0, 9044, 9037, 1, 0, 0, 0, 9044, 9041, 1, 0, 0, 0, 9045, 1097, 1, 0, 0, 0, 9046, 9047, 5, 275, 0, 0, 9047, 9048, 3, 1390, 695, 0, 9048, 1099, 1, 0, 0, 0, 9049, 9050, 5, 422, 0, 0, 9050, 9051, 5, 2, 0, 0, 9051, 9052, 3, 1328, 664, 0, 9052, 9060, 5, 3, 0, 0, 9053, 9054, 5, 6, 0, 0, 9054, 9055, 5, 2, 0, 0, 9055, 9056, 3, 1328, 664, 0, 9056, 9057, 5, 3, 0, 0, 9057, 9059, 1, 0, 0, 0, 9058, 9053, 1, 0, 0, 0, 9059, 9062, 1, 0, 0, 0, 9060, 9058, 1, 0, 0, 0, 9060, 9061, 1, 0, 0, 0, 9061, 1101, 1, 0, 0, 0, 9062, 9060, 1, 0, 0, 0, 9063, 9064, 5, 64, 0, 0, 9064, 9065, 3, 1104, 552, 0, 9065, 1103, 1, 0, 0, 0, 9066, 9071, 3, 1106, 553, 0, 9067, 9068, 5, 6, 0, 0, 9068, 9070, 3, 1106, 553, 0, 9069, 9067, 1, 0, 0, 0, 9070, 9073, 1, 0, 0, 0, 9071, 9069, 1, 0, 0, 0, 9071, 9072, 1, 0, 0, 0, 9072, 1105, 1, 0, 0, 0, 9073, 9071, 1, 0, 0, 0, 9074, 9077, 3, 1118, 559, 0, 9075, 9077, 3, 1120, 560, 0, 9076, 9074, 1, 0, 0, 0, 9076, 9075, 1, 0, 0, 0, 9077, 9079, 1, 0, 0, 0, 9078, 9080, 3, 1110, 555, 0, 9079, 9078, 1, 0, 0, 0, 9079, 9080, 1, 0, 0, 0, 9080, 9082, 1, 0, 0, 0, 9081, 9083, 3, 1130, 565, 0, 9082, 9081, 1, 0, 0, 0, 9082, 9083, 1, 0, 0, 0, 9083, 9136, 1, 0, 0, 0, 9084, 9086, 3, 1134, 567, 0, 9085, 9087, 3, 1112, 556, 0, 9086, 9085, 1, 0, 0, 0, 9086, 9087, 1, 0, 0, 0, 9087, 9136, 1, 0, 0, 0, 9088, 9090, 3, 1154, 577, 0, 9089, 9091, 3, 1110, 555, 0, 9090, 9089, 1, 0, 0, 0, 9090, 9091, 1, 0, 0, 0, 9091, 9136, 1, 0, 0, 0, 9092, 9094, 3, 1002, 501, 0, 9093, 9095, 3, 1110, 555, 0, 9094, 9093, 1, 0, 0, 0, 9094, 9095, 1, 0, 0, 0, 9095, 9136, 1, 0, 0, 0, 9096, 9109, 5, 72, 0, 0, 9097, 9099, 3, 1154, 577, 0, 9098, 9100, 3, 1110, 555, 0, 9099, 9098, 1, 0, 0, 0, 9099, 9100, 1, 0, 0, 0, 9100, 9110, 1, 0, 0, 0, 9101, 9103, 3, 1134, 567, 0, 9102, 9104, 3, 1112, 556, 0, 9103, 9102, 1, 0, 0, 0, 9103, 9104, 1, 0, 0, 0, 9104, 9110, 1, 0, 0, 0, 9105, 9107, 3, 1002, 501, 0, 9106, 9108, 3, 1110, 555, 0, 9107, 9106, 1, 0, 0, 0, 9107, 9108, 1, 0, 0, 0, 9108, 9110, 1, 0, 0, 0, 9109, 9097, 1, 0, 0, 0, 9109, 9101, 1, 0, 0, 0, 9109, 9105, 1, 0, 0, 0, 9110, 9136, 1, 0, 0, 0, 9111, 9112, 5, 2, 0, 0, 9112, 9129, 3, 1106, 553, 0, 9113, 9114, 5, 110, 0, 0, 9114, 9115, 5, 118, 0, 0, 9115, 9130, 3, 1106, 553, 0, 9116, 9118, 5, 121, 0, 0, 9117, 9119, 3, 1114, 557, 0, 9118, 9117, 1, 0, 0, 0, 9118, 9119, 1, 0, 0, 0, 9119, 9120, 1, 0, 0, 0, 9120, 9121, 5, 118, 0, 0, 9121, 9130, 3, 1106, 553, 0, 9122, 9124, 3, 1114, 557, 0, 9123, 9122, 1, 0, 0, 0, 9123, 9124, 1, 0, 0, 0, 9124, 9125, 1, 0, 0, 0, 9125, 9126, 5, 118, 0, 0, 9126, 9127, 3, 1106, 553, 0, 9127, 9128, 3, 1116, 558, 0, 9128, 9130, 1, 0, 0, 0, 9129, 9113, 1, 0, 0, 0, 9129, 9116, 1, 0, 0, 0, 9129, 9123, 1, 0, 0, 0, 9129, 9130, 1, 0, 0, 0, 9130, 9131, 1, 0, 0, 0, 9131, 9133, 5, 3, 0, 0, 9132, 9134, 3, 1110, 555, 0, 9133, 9132, 1, 0, 0, 0, 9133, 9134, 1, 0, 0, 0, 9134, 9136, 1, 0, 0, 0, 9135, 9076, 1, 0, 0, 0, 9135, 9084, 1, 0, 0, 0, 9135, 9088, 1, 0, 0, 0, 9135, 9092, 1, 0, 0, 0, 9135, 9096, 1, 0, 0, 0, 9135, 9111, 1, 0, 0, 0, 9136, 9155, 1, 0, 0, 0, 9137, 9138, 5, 110, 0, 0, 9138, 9139, 5, 118, 0, 0, 9139, 9154, 3, 1106, 553, 0, 9140, 9142, 5, 121, 0, 0, 9141, 9143, 3, 1114, 557, 0, 9142, 9141, 1, 0, 0, 0, 9142, 9143, 1, 0, 0, 0, 9143, 9144, 1, 0, 0, 0, 9144, 9145, 5, 118, 0, 0, 9145, 9154, 3, 1106, 553, 0, 9146, 9148, 3, 1114, 557, 0, 9147, 9146, 1, 0, 0, 0, 9147, 9148, 1, 0, 0, 0, 9148, 9149, 1, 0, 0, 0, 9149, 9150, 5, 118, 0, 0, 9150, 9151, 3, 1106, 553, 0, 9151, 9152, 3, 1116, 558, 0, 9152, 9154, 1, 0, 0, 0, 9153, 9137, 1, 0, 0, 0, 9153, 9140, 1, 0, 0, 0, 9153, 9147, 1, 0, 0, 0, 9154, 9157, 1, 0, 0, 0, 9155, 9153, 1, 0, 0, 0, 9155, 9156, 1, 0, 0, 0, 9156, 1107, 1, 0, 0, 0, 9157, 9155, 1, 0, 0, 0, 9158, 9160, 5, 36, 0, 0, 9159, 9158, 1, 0, 0, 0, 9159, 9160, 1, 0, 0, 0, 9160, 9161, 1, 0, 0, 0, 9161, 9166, 3, 1474, 737, 0, 9162, 9163, 5, 2, 0, 0, 9163, 9164, 3, 1416, 708, 0, 9164, 9165, 5, 3, 0, 0, 9165, 9167, 1, 0, 0, 0, 9166, 9162, 1, 0, 0, 0, 9166, 9167, 1, 0, 0, 0, 9167, 1109, 1, 0, 0, 0, 9168, 9169, 3, 1108, 554, 0, 9169, 1111, 1, 0, 0, 0, 9170, 9183, 3, 1108, 554, 0, 9171, 9173, 5, 36, 0, 0, 9172, 9174, 3, 1474, 737, 0, 9173, 9172, 1, 0, 0, 0, 9173, 9174, 1, 0, 0, 0, 9174, 9177, 1, 0, 0, 0, 9175, 9177, 3, 1474, 737, 0, 9176, 9171, 1, 0, 0, 0, 9176, 9175, 1, 0, 0, 0, 9177, 9178, 1, 0, 0, 0, 9178, 9179, 5, 2, 0, 0, 9179, 9180, 3, 1150, 575, 0, 9180, 9181, 5, 3, 0, 0, 9181, 9183, 1, 0, 0, 0, 9182, 9170, 1, 0, 0, 0, 9182, 9176, 1, 0, 0, 0, 9183, 1113, 1, 0, 0, 0, 9184, 9186, 7, 60, 0, 0, 9185, 9187, 5, 123, 0, 0, 9186, 9185, 1, 0, 0, 0, 9186, 9187, 1, 0, 0, 0, 9187, 1115, 1, 0, 0, 0, 9188, 9189, 5, 100, 0, 0, 9189, 9190, 5, 2, 0, 0, 9190, 9191, 3, 244, 122, 0, 9191, 9192, 5, 3, 0, 0, 9192, 9196, 1, 0, 0, 0, 9193, 9194, 5, 80, 0, 0, 9194, 9196, 3, 1212, 606, 0, 9195, 9188, 1, 0, 0, 0, 9195, 9193, 1, 0, 0, 0, 9196, 1117, 1, 0, 0, 0, 9197, 9199, 5, 81, 0, 0, 9198, 9197, 1, 0, 0, 0, 9198, 9199, 1, 0, 0, 0, 9199, 9200, 1, 0, 0, 0, 9200, 9202, 3, 1406, 703, 0, 9201, 9203, 5, 9, 0, 0, 9202, 9201, 1, 0, 0, 0, 9202, 9203, 1, 0, 0, 0, 9203, 9219, 1, 0, 0, 0, 9204, 9210, 5, 81, 0, 0, 9205, 9211, 3, 1406, 703, 0, 9206, 9207, 5, 2, 0, 0, 9207, 9208, 3, 1406, 703, 0, 9208, 9209, 5, 3, 0, 0, 9209, 9211, 1, 0, 0, 0, 9210, 9205, 1, 0, 0, 0, 9210, 9206, 1, 0, 0, 0, 9211, 9219, 1, 0, 0, 0, 9212, 9213, 5, 68, 0, 0, 9213, 9216, 5, 323, 0, 0, 9214, 9217, 3, 1422, 711, 0, 9215, 9217, 5, 111, 0, 0, 9216, 9214, 1, 0, 0, 0, 9216, 9215, 1, 0, 0, 0, 9217, 9219, 1, 0, 0, 0, 9218, 9198, 1, 0, 0, 0, 9218, 9204, 1, 0, 0, 0, 9218, 9212, 1, 0, 0, 0, 9219, 1119, 1, 0, 0, 0, 9220, 9222, 5, 81, 0, 0, 9221, 9220, 1, 0, 0, 0, 9221, 9222, 1, 0, 0, 0, 9222, 9223, 1, 0, 0, 0, 9223, 9225, 3, 1410, 705, 0, 9224, 9226, 5, 9, 0, 0, 9225, 9224, 1, 0, 0, 0, 9225, 9226, 1, 0, 0, 0, 9226, 9228, 1, 0, 0, 0, 9227, 9229, 3, 244, 122, 0, 9228, 9227, 1, 0, 0, 0, 9228, 9229, 1, 0, 0, 0, 9229, 9231, 1, 0, 0, 0, 9230, 9232, 3, 1144, 572, 0, 9231, 9230, 1, 0, 0, 0, 9231, 9232, 1, 0, 0, 0, 9232, 1121, 1, 0, 0, 0, 9233, 9235, 5, 92, 0, 0, 9234, 9236, 5, 81, 0, 0, 9235, 9234, 1, 0, 0, 0, 9235, 9236, 1, 0, 0, 0, 9236, 9237, 1, 0, 0, 0, 9237, 9239, 3, 1406, 703, 0, 9238, 9240, 5, 9, 0, 0, 9239, 9238, 1, 0, 0, 0, 9239, 9240, 1, 0, 0, 0, 9240, 9245, 1, 0, 0, 0, 9241, 9242, 5, 2, 0, 0, 9242, 9243, 3, 244, 122, 0, 9243, 9244, 5, 3, 0, 0, 9244, 9246, 1, 0, 0, 0, 9245, 9241, 1, 0, 0, 0, 9245, 9246, 1, 0, 0, 0, 9246, 9248, 1, 0, 0, 0, 9247, 9249, 3, 1144, 572, 0, 9248, 9247, 1, 0, 0, 0, 9248, 9249, 1, 0, 0, 0, 9249, 9267, 1, 0, 0, 0, 9250, 9251, 5, 92, 0, 0, 9251, 9257, 5, 81, 0, 0, 9252, 9258, 3, 1406, 703, 0, 9253, 9254, 5, 2, 0, 0, 9254, 9255, 3, 1406, 703, 0, 9255, 9256, 5, 3, 0, 0, 9256, 9258, 1, 0, 0, 0, 9257, 9252, 1, 0, 0, 0, 9257, 9253, 1, 0, 0, 0, 9258, 9267, 1, 0, 0, 0, 9259, 9260, 5, 350, 0, 0, 9260, 9261, 5, 68, 0, 0, 9261, 9264, 5, 323, 0, 0, 9262, 9265, 3, 1422, 711, 0, 9263, 9265, 5, 111, 0, 0, 9264, 9262, 1, 0, 0, 0, 9264, 9263, 1, 0, 0, 0, 9265, 9267, 1, 0, 0, 0, 9266, 9233, 1, 0, 0, 0, 9266, 9250, 1, 0, 0, 0, 9266, 9259, 1, 0, 0, 0, 9267, 1123, 1, 0, 0, 0, 9268, 9273, 3, 1118, 559, 0, 9269, 9270, 5, 6, 0, 0, 9270, 9272, 3, 1118, 559, 0, 9271, 9269, 1, 0, 0, 0, 9272, 9275, 1, 0, 0, 0, 9273, 9271, 1, 0, 0, 0, 9273, 9274, 1, 0, 0, 0, 9274, 1125, 1, 0, 0, 0, 9275, 9273, 1, 0, 0, 0, 9276, 9281, 3, 1122, 561, 0, 9277, 9278, 5, 6, 0, 0, 9278, 9280, 3, 1122, 561, 0, 9279, 9277, 1, 0, 0, 0, 9280, 9283, 1, 0, 0, 0, 9281, 9279, 1, 0, 0, 0, 9281, 9282, 1, 0, 0, 0, 9282, 1127, 1, 0, 0, 0, 9283, 9281, 1, 0, 0, 0, 9284, 9289, 3, 1118, 559, 0, 9285, 9287, 5, 36, 0, 0, 9286, 9285, 1, 0, 0, 0, 9286, 9287, 1, 0, 0, 0, 9287, 9288, 1, 0, 0, 0, 9288, 9290, 3, 1474, 737, 0, 9289, 9286, 1, 0, 0, 0, 9289, 9290, 1, 0, 0, 0, 9290, 1129, 1, 0, 0, 0, 9291, 9292, 5, 472, 0, 0, 9292, 9293, 3, 1444, 722, 0, 9293, 9294, 5, 2, 0, 0, 9294, 9295, 3, 1328, 664, 0, 9295, 9297, 5, 3, 0, 0, 9296, 9298, 3, 1132, 566, 0, 9297, 9296, 1, 0, 0, 0, 9297, 9298, 1, 0, 0, 0, 9298, 1131, 1, 0, 0, 0, 9299, 9300, 5, 310, 0, 0, 9300, 9301, 5, 2, 0, 0, 9301, 9302, 3, 1212, 606, 0, 9302, 9303, 5, 3, 0, 0, 9303, 1133, 1, 0, 0, 0, 9304, 9306, 3, 1262, 631, 0, 9305, 9307, 3, 1142, 571, 0, 9306, 9305, 1, 0, 0, 0, 9306, 9307, 1, 0, 0, 0, 9307, 9317, 1, 0, 0, 0, 9308, 9309, 5, 320, 0, 0, 9309, 9310, 5, 64, 0, 0, 9310, 9311, 5, 2, 0, 0, 9311, 9312, 3, 1138, 569, 0, 9312, 9314, 5, 3, 0, 0, 9313, 9315, 3, 1142, 571, 0, 9314, 9313, 1, 0, 0, 0, 9314, 9315, 1, 0, 0, 0, 9315, 9317, 1, 0, 0, 0, 9316, 9304, 1, 0, 0, 0, 9316, 9308, 1, 0, 0, 0, 9317, 1135, 1, 0, 0, 0, 9318, 9320, 3, 1262, 631, 0, 9319, 9321, 3, 1140, 570, 0, 9320, 9319, 1, 0, 0, 0, 9320, 9321, 1, 0, 0, 0, 9321, 1137, 1, 0, 0, 0, 9322, 9327, 3, 1136, 568, 0, 9323, 9324, 5, 6, 0, 0, 9324, 9326, 3, 1136, 568, 0, 9325, 9323, 1, 0, 0, 0, 9326, 9329, 1, 0, 0, 0, 9327, 9325, 1, 0, 0, 0, 9327, 9328, 1, 0, 0, 0, 9328, 1139, 1, 0, 0, 0, 9329, 9327, 1, 0, 0, 0, 9330, 9331, 5, 36, 0, 0, 9331, 9332, 5, 2, 0, 0, 9332, 9333, 3, 1150, 575, 0, 9333, 9334, 5, 3, 0, 0, 9334, 1141, 1, 0, 0, 0, 9335, 9336, 5, 105, 0, 0, 9336, 9337, 5, 473, 0, 0, 9337, 1143, 1, 0, 0, 0, 9338, 9339, 5, 103, 0, 0, 9339, 9340, 3, 1336, 668, 0, 9340, 1145, 1, 0, 0, 0, 9341, 9346, 5, 103, 0, 0, 9342, 9343, 5, 434, 0, 0, 9343, 9344, 5, 275, 0, 0, 9344, 9347, 3, 994, 497, 0, 9345, 9347, 3, 1212, 606, 0, 9346, 9342, 1, 0, 0, 0, 9346, 9345, 1, 0, 0, 0, 9347, 1147, 1, 0, 0, 0, 9348, 9349, 3, 1150, 575, 0, 9349, 1149, 1, 0, 0, 0, 9350, 9355, 3, 1152, 576, 0, 9351, 9352, 5, 6, 0, 0, 9352, 9354, 3, 1152, 576, 0, 9353, 9351, 1, 0, 0, 0, 9354, 9357, 1, 0, 0, 0, 9355, 9353, 1, 0, 0, 0, 9355, 9356, 1, 0, 0, 0, 9356, 1151, 1, 0, 0, 0, 9357, 9355, 1, 0, 0, 0, 9358, 9359, 3, 1474, 737, 0, 9359, 9361, 3, 1168, 584, 0, 9360, 9362, 3, 126, 63, 0, 9361, 9360, 1, 0, 0, 0, 9361, 9362, 1, 0, 0, 0, 9362, 1153, 1, 0, 0, 0, 9363, 9364, 5, 474, 0, 0, 9364, 9380, 5, 2, 0, 0, 9365, 9366, 3, 1254, 627, 0, 9366, 9367, 3, 1280, 640, 0, 9367, 9368, 5, 475, 0, 0, 9368, 9369, 3, 1156, 578, 0, 9369, 9381, 1, 0, 0, 0, 9370, 9371, 5, 476, 0, 0, 9371, 9372, 5, 2, 0, 0, 9372, 9373, 3, 1164, 582, 0, 9373, 9374, 5, 3, 0, 0, 9374, 9375, 5, 6, 0, 0, 9375, 9376, 3, 1254, 627, 0, 9376, 9377, 3, 1280, 640, 0, 9377, 9378, 5, 475, 0, 0, 9378, 9379, 3, 1156, 578, 0, 9379, 9381, 1, 0, 0, 0, 9380, 9365, 1, 0, 0, 0, 9380, 9370, 1, 0, 0, 0, 9381, 9382, 1, 0, 0, 0, 9382, 9383, 5, 3, 0, 0, 9383, 1155, 1, 0, 0, 0, 9384, 9389, 3, 1158, 579, 0, 9385, 9386, 5, 6, 0, 0, 9386, 9388, 3, 1158, 579, 0, 9387, 9385, 1, 0, 0, 0, 9388, 9391, 1, 0, 0, 0, 9389, 9387, 1, 0, 0, 0, 9389, 9390, 1, 0, 0, 0, 9390, 1157, 1, 0, 0, 0, 9391, 9389, 1, 0, 0, 0, 9392, 9399, 3, 1474, 737, 0, 9393, 9395, 3, 1168, 584, 0, 9394, 9396, 3, 1160, 580, 0, 9395, 9394, 1, 0, 0, 0, 9395, 9396, 1, 0, 0, 0, 9396, 9400, 1, 0, 0, 0, 9397, 9398, 5, 62, 0, 0, 9398, 9400, 5, 473, 0, 0, 9399, 9393, 1, 0, 0, 0, 9399, 9397, 1, 0, 0, 0, 9400, 1159, 1, 0, 0, 0, 9401, 9403, 3, 1162, 581, 0, 9402, 9401, 1, 0, 0, 0, 9403, 9404, 1, 0, 0, 0, 9404, 9402, 1, 0, 0, 0, 9404, 9405, 1, 0, 0, 0, 9405, 1161, 1, 0, 0, 0, 9406, 9407, 5, 53, 0, 0, 9407, 9415, 3, 1212, 606, 0, 9408, 9409, 3, 1492, 746, 0, 9409, 9410, 3, 1212, 606, 0, 9410, 9415, 1, 0, 0, 0, 9411, 9412, 5, 77, 0, 0, 9412, 9415, 5, 78, 0, 0, 9413, 9415, 5, 78, 0, 0, 9414, 9406, 1, 0, 0, 0, 9414, 9408, 1, 0, 0, 0, 9414, 9411, 1, 0, 0, 0, 9414, 9413, 1, 0, 0, 0, 9415, 1163, 1, 0, 0, 0, 9416, 9421, 3, 1166, 583, 0, 9417, 9418, 5, 6, 0, 0, 9418, 9420, 3, 1166, 583, 0, 9419, 9417, 1, 0, 0, 0, 9420, 9423, 1, 0, 0, 0, 9421, 9419, 1, 0, 0, 0, 9421, 9422, 1, 0, 0, 0, 9422, 1165, 1, 0, 0, 0, 9423, 9421, 1, 0, 0, 0, 9424, 9425, 3, 1252, 626, 0, 9425, 9426, 5, 36, 0, 0, 9426, 9427, 3, 1490, 745, 0, 9427, 9431, 1, 0, 0, 0, 9428, 9429, 5, 53, 0, 0, 9429, 9431, 3, 1252, 626, 0, 9430, 9424, 1, 0, 0, 0, 9430, 9428, 1, 0, 0, 0, 9431, 1167, 1, 0, 0, 0, 9432, 9434, 5, 415, 0, 0, 9433, 9432, 1, 0, 0, 0, 9433, 9434, 1, 0, 0, 0, 9434, 9435, 1, 0, 0, 0, 9435, 9444, 3, 1172, 586, 0, 9436, 9445, 3, 1170, 585, 0, 9437, 9442, 5, 35, 0, 0, 9438, 9439, 5, 4, 0, 0, 9439, 9440, 3, 1456, 728, 0, 9440, 9441, 5, 5, 0, 0, 9441, 9443, 1, 0, 0, 0, 9442, 9438, 1, 0, 0, 0, 9442, 9443, 1, 0, 0, 0, 9443, 9445, 1, 0, 0, 0, 9444, 9436, 1, 0, 0, 0, 9444, 9437, 1, 0, 0, 0, 9445, 9451, 1, 0, 0, 0, 9446, 9447, 3, 1412, 706, 0, 9447, 9448, 5, 27, 0, 0, 9448, 9449, 7, 61, 0, 0, 9449, 9451, 1, 0, 0, 0, 9450, 9433, 1, 0, 0, 0, 9450, 9446, 1, 0, 0, 0, 9451, 1169, 1, 0, 0, 0, 9452, 9454, 5, 4, 0, 0, 9453, 9455, 3, 1456, 728, 0, 9454, 9453, 1, 0, 0, 0, 9454, 9455, 1, 0, 0, 0, 9455, 9456, 1, 0, 0, 0, 9456, 9458, 5, 5, 0, 0, 9457, 9452, 1, 0, 0, 0, 9458, 9461, 1, 0, 0, 0, 9459, 9457, 1, 0, 0, 0, 9459, 9460, 1, 0, 0, 0, 9460, 1171, 1, 0, 0, 0, 9461, 9459, 1, 0, 0, 0, 9462, 9478, 3, 1176, 588, 0, 9463, 9478, 3, 1180, 590, 0, 9464, 9478, 3, 1184, 592, 0, 9465, 9478, 3, 1192, 596, 0, 9466, 9478, 3, 1200, 600, 0, 9467, 9475, 3, 1202, 601, 0, 9468, 9470, 3, 1206, 603, 0, 9469, 9468, 1, 0, 0, 0, 9469, 9470, 1, 0, 0, 0, 9470, 9476, 1, 0, 0, 0, 9471, 9472, 5, 2, 0, 0, 9472, 9473, 3, 1456, 728, 0, 9473, 9474, 5, 3, 0, 0, 9474, 9476, 1, 0, 0, 0, 9475, 9469, 1, 0, 0, 0, 9475, 9471, 1, 0, 0, 0, 9476, 9478, 1, 0, 0, 0, 9477, 9462, 1, 0, 0, 0, 9477, 9463, 1, 0, 0, 0, 9477, 9464, 1, 0, 0, 0, 9477, 9465, 1, 0, 0, 0, 9477, 9466, 1, 0, 0, 0, 9477, 9467, 1, 0, 0, 0, 9478, 1173, 1, 0, 0, 0, 9479, 9484, 3, 1180, 590, 0, 9480, 9484, 3, 1186, 593, 0, 9481, 9484, 3, 1194, 597, 0, 9482, 9484, 3, 1200, 600, 0, 9483, 9479, 1, 0, 0, 0, 9483, 9480, 1, 0, 0, 0, 9483, 9481, 1, 0, 0, 0, 9483, 9482, 1, 0, 0, 0, 9484, 1175, 1, 0, 0, 0, 9485, 9487, 3, 1482, 741, 0, 9486, 9488, 3, 560, 280, 0, 9487, 9486, 1, 0, 0, 0, 9487, 9488, 1, 0, 0, 0, 9488, 9490, 1, 0, 0, 0, 9489, 9491, 3, 1178, 589, 0, 9490, 9489, 1, 0, 0, 0, 9490, 9491, 1, 0, 0, 0, 9491, 1177, 1, 0, 0, 0, 9492, 9493, 5, 2, 0, 0, 9493, 9494, 3, 1328, 664, 0, 9494, 9495, 5, 3, 0, 0, 9495, 1179, 1, 0, 0, 0, 9496, 9521, 5, 401, 0, 0, 9497, 9521, 5, 402, 0, 0, 9498, 9521, 5, 416, 0, 0, 9499, 9521, 5, 388, 0, 0, 9500, 9521, 5, 413, 0, 0, 9501, 9503, 5, 398, 0, 0, 9502, 9504, 3, 1182, 591, 0, 9503, 9502, 1, 0, 0, 0, 9503, 9504, 1, 0, 0, 0, 9504, 9521, 1, 0, 0, 0, 9505, 9506, 5, 190, 0, 0, 9506, 9521, 5, 412, 0, 0, 9507, 9509, 5, 395, 0, 0, 9508, 9510, 3, 1178, 589, 0, 9509, 9508, 1, 0, 0, 0, 9509, 9510, 1, 0, 0, 0, 9510, 9521, 1, 0, 0, 0, 9511, 9513, 5, 394, 0, 0, 9512, 9514, 3, 1178, 589, 0, 9513, 9512, 1, 0, 0, 0, 9513, 9514, 1, 0, 0, 0, 9514, 9521, 1, 0, 0, 0, 9515, 9517, 5, 409, 0, 0, 9516, 9518, 3, 1178, 589, 0, 9517, 9516, 1, 0, 0, 0, 9517, 9518, 1, 0, 0, 0, 9518, 9521, 1, 0, 0, 0, 9519, 9521, 5, 390, 0, 0, 9520, 9496, 1, 0, 0, 0, 9520, 9497, 1, 0, 0, 0, 9520, 9498, 1, 0, 0, 0, 9520, 9499, 1, 0, 0, 0, 9520, 9500, 1, 0, 0, 0, 9520, 9501, 1, 0, 0, 0, 9520, 9505, 1, 0, 0, 0, 9520, 9507, 1, 0, 0, 0, 9520, 9511, 1, 0, 0, 0, 9520, 9515, 1, 0, 0, 0, 9520, 9519, 1, 0, 0, 0, 9521, 1181, 1, 0, 0, 0, 9522, 9523, 5, 2, 0, 0, 9523, 9524, 3, 1456, 728, 0, 9524, 9525, 5, 3, 0, 0, 9525, 1183, 1, 0, 0, 0, 9526, 9529, 3, 1188, 594, 0, 9527, 9529, 3, 1190, 595, 0, 9528, 9526, 1, 0, 0, 0, 9528, 9527, 1, 0, 0, 0, 9529, 1185, 1, 0, 0, 0, 9530, 9533, 3, 1188, 594, 0, 9531, 9533, 3, 1190, 595, 0, 9532, 9530, 1, 0, 0, 0, 9532, 9531, 1, 0, 0, 0, 9533, 1187, 1, 0, 0, 0, 9534, 9536, 5, 389, 0, 0, 9535, 9537, 3, 1198, 599, 0, 9536, 9535, 1, 0, 0, 0, 9536, 9537, 1, 0, 0, 0, 9537, 9538, 1, 0, 0, 0, 9538, 9539, 5, 2, 0, 0, 9539, 9540, 3, 1328, 664, 0, 9540, 9541, 5, 3, 0, 0, 9541, 1189, 1, 0, 0, 0, 9542, 9544, 5, 389, 0, 0, 9543, 9545, 3, 1198, 599, 0, 9544, 9543, 1, 0, 0, 0, 9544, 9545, 1, 0, 0, 0, 9545, 1191, 1, 0, 0, 0, 9546, 9551, 3, 1196, 598, 0, 9547, 9548, 5, 2, 0, 0, 9548, 9549, 3, 1456, 728, 0, 9549, 9550, 5, 3, 0, 0, 9550, 9552, 1, 0, 0, 0, 9551, 9547, 1, 0, 0, 0, 9551, 9552, 1, 0, 0, 0, 9552, 1193, 1, 0, 0, 0, 9553, 9558, 3, 1196, 598, 0, 9554, 9555, 5, 2, 0, 0, 9555, 9556, 3, 1456, 728, 0, 9556, 9557, 5, 3, 0, 0, 9557, 9559, 1, 0, 0, 0, 9558, 9554, 1, 0, 0, 0, 9558, 9559, 1, 0, 0, 0, 9559, 1195, 1, 0, 0, 0, 9560, 9562, 7, 62, 0, 0, 9561, 9563, 3, 1198, 599, 0, 9562, 9561, 1, 0, 0, 0, 9562, 9563, 1, 0, 0, 0, 9563, 9571, 1, 0, 0, 0, 9564, 9571, 5, 423, 0, 0, 9565, 9566, 5, 405, 0, 0, 9566, 9568, 7, 63, 0, 0, 9567, 9569, 3, 1198, 599, 0, 9568, 9567, 1, 0, 0, 0, 9568, 9569, 1, 0, 0, 0, 9569, 9571, 1, 0, 0, 0, 9570, 9560, 1, 0, 0, 0, 9570, 9564, 1, 0, 0, 0, 9570, 9565, 1, 0, 0, 0, 9571, 1197, 1, 0, 0, 0, 9572, 9573, 5, 374, 0, 0, 9573, 1199, 1, 0, 0, 0, 9574, 9579, 7, 64, 0, 0, 9575, 9576, 5, 2, 0, 0, 9576, 9577, 3, 1456, 728, 0, 9577, 9578, 5, 3, 0, 0, 9578, 9580, 1, 0, 0, 0, 9579, 9575, 1, 0, 0, 0, 9579, 9580, 1, 0, 0, 0, 9580, 9582, 1, 0, 0, 0, 9581, 9583, 3, 1204, 602, 0, 9582, 9581, 1, 0, 0, 0, 9582, 9583, 1, 0, 0, 0, 9583, 1201, 1, 0, 0, 0, 9584, 9585, 5, 403, 0, 0, 9585, 1203, 1, 0, 0, 0, 9586, 9587, 5, 105, 0, 0, 9587, 9588, 5, 418, 0, 0, 9588, 9593, 5, 386, 0, 0, 9589, 9590, 5, 379, 0, 0, 9590, 9591, 5, 418, 0, 0, 9591, 9593, 5, 386, 0, 0, 9592, 9586, 1, 0, 0, 0, 9592, 9589, 1, 0, 0, 0, 9593, 1205, 1, 0, 0, 0, 9594, 9620, 5, 384, 0, 0, 9595, 9620, 5, 264, 0, 0, 9596, 9620, 5, 176, 0, 0, 9597, 9620, 5, 218, 0, 0, 9598, 9620, 5, 261, 0, 0, 9599, 9620, 3, 1208, 604, 0, 9600, 9601, 5, 384, 0, 0, 9601, 9602, 5, 94, 0, 0, 9602, 9620, 5, 264, 0, 0, 9603, 9604, 5, 176, 0, 0, 9604, 9608, 5, 94, 0, 0, 9605, 9609, 5, 218, 0, 0, 9606, 9609, 5, 261, 0, 0, 9607, 9609, 3, 1208, 604, 0, 9608, 9605, 1, 0, 0, 0, 9608, 9606, 1, 0, 0, 0, 9608, 9607, 1, 0, 0, 0, 9609, 9620, 1, 0, 0, 0, 9610, 9611, 5, 218, 0, 0, 9611, 9614, 5, 94, 0, 0, 9612, 9615, 5, 261, 0, 0, 9613, 9615, 3, 1208, 604, 0, 9614, 9612, 1, 0, 0, 0, 9614, 9613, 1, 0, 0, 0, 9615, 9620, 1, 0, 0, 0, 9616, 9617, 5, 261, 0, 0, 9617, 9618, 5, 94, 0, 0, 9618, 9620, 3, 1208, 604, 0, 9619, 9594, 1, 0, 0, 0, 9619, 9595, 1, 0, 0, 0, 9619, 9596, 1, 0, 0, 0, 9619, 9597, 1, 0, 0, 0, 9619, 9598, 1, 0, 0, 0, 9619, 9599, 1, 0, 0, 0, 9619, 9600, 1, 0, 0, 0, 9619, 9603, 1, 0, 0, 0, 9619, 9610, 1, 0, 0, 0, 9619, 9616, 1, 0, 0, 0, 9620, 1207, 1, 0, 0, 0, 9621, 9626, 5, 326, 0, 0, 9622, 9623, 5, 2, 0, 0, 9623, 9624, 3, 1456, 728, 0, 9624, 9625, 5, 3, 0, 0, 9625, 9627, 1, 0, 0, 0, 9626, 9622, 1, 0, 0, 0, 9626, 9627, 1, 0, 0, 0, 9627, 1209, 1, 0, 0, 0, 9628, 9629, 5, 197, 0, 0, 9629, 9630, 3, 1212, 606, 0, 9630, 1211, 1, 0, 0, 0, 9631, 9632, 3, 1214, 607, 0, 9632, 1213, 1, 0, 0, 0, 9633, 9635, 3, 1216, 608, 0, 9634, 9636, 3, 1322, 661, 0, 9635, 9634, 1, 0, 0, 0, 9635, 9636, 1, 0, 0, 0, 9636, 1215, 1, 0, 0, 0, 9637, 9642, 3, 1218, 609, 0, 9638, 9639, 7, 65, 0, 0, 9639, 9641, 3, 1218, 609, 0, 9640, 9638, 1, 0, 0, 0, 9641, 9644, 1, 0, 0, 0, 9642, 9640, 1, 0, 0, 0, 9642, 9643, 1, 0, 0, 0, 9643, 1217, 1, 0, 0, 0, 9644, 9642, 1, 0, 0, 0, 9645, 9650, 3, 1220, 610, 0, 9646, 9647, 5, 82, 0, 0, 9647, 9649, 3, 1220, 610, 0, 9648, 9646, 1, 0, 0, 0, 9649, 9652, 1, 0, 0, 0, 9650, 9648, 1, 0, 0, 0, 9650, 9651, 1, 0, 0, 0, 9651, 1219, 1, 0, 0, 0, 9652, 9650, 1, 0, 0, 0, 9653, 9658, 3, 1222, 611, 0, 9654, 9655, 5, 33, 0, 0, 9655, 9657, 3, 1222, 611, 0, 9656, 9654, 1, 0, 0, 0, 9657, 9660, 1, 0, 0, 0, 9658, 9656, 1, 0, 0, 0, 9658, 9659, 1, 0, 0, 0, 9659, 1221, 1, 0, 0, 0, 9660, 9658, 1, 0, 0, 0, 9661, 9667, 3, 1224, 612, 0, 9662, 9664, 5, 77, 0, 0, 9663, 9662, 1, 0, 0, 0, 9663, 9664, 1, 0, 0, 0, 9664, 9665, 1, 0, 0, 0, 9665, 9666, 5, 68, 0, 0, 9666, 9668, 3, 1362, 681, 0, 9667, 9663, 1, 0, 0, 0, 9667, 9668, 1, 0, 0, 0, 9668, 1223, 1, 0, 0, 0, 9669, 9671, 5, 77, 0, 0, 9670, 9669, 1, 0, 0, 0, 9670, 9671, 1, 0, 0, 0, 9671, 9672, 1, 0, 0, 0, 9672, 9673, 3, 1226, 613, 0, 9673, 1225, 1, 0, 0, 0, 9674, 9676, 3, 1228, 614, 0, 9675, 9677, 7, 66, 0, 0, 9676, 9675, 1, 0, 0, 0, 9676, 9677, 1, 0, 0, 0, 9677, 1227, 1, 0, 0, 0, 9678, 9702, 3, 1230, 615, 0, 9679, 9681, 5, 116, 0, 0, 9680, 9682, 5, 77, 0, 0, 9681, 9680, 1, 0, 0, 0, 9681, 9682, 1, 0, 0, 0, 9682, 9700, 1, 0, 0, 0, 9683, 9701, 5, 78, 0, 0, 9684, 9701, 5, 96, 0, 0, 9685, 9701, 5, 60, 0, 0, 9686, 9701, 5, 365, 0, 0, 9687, 9688, 5, 56, 0, 0, 9688, 9689, 5, 64, 0, 0, 9689, 9701, 3, 1212, 606, 0, 9690, 9691, 5, 275, 0, 0, 9691, 9692, 5, 2, 0, 0, 9692, 9693, 3, 1342, 671, 0, 9693, 9694, 5, 3, 0, 0, 9694, 9701, 1, 0, 0, 0, 9695, 9701, 5, 188, 0, 0, 9696, 9698, 3, 1352, 676, 0, 9697, 9696, 1, 0, 0, 0, 9697, 9698, 1, 0, 0, 0, 9698, 9699, 1, 0, 0, 0, 9699, 9701, 5, 478, 0, 0, 9700, 9683, 1, 0, 0, 0, 9700, 9684, 1, 0, 0, 0, 9700, 9685, 1, 0, 0, 0, 9700, 9686, 1, 0, 0, 0, 9700, 9687, 1, 0, 0, 0, 9700, 9690, 1, 0, 0, 0, 9700, 9695, 1, 0, 0, 0, 9700, 9697, 1, 0, 0, 0, 9701, 9703, 1, 0, 0, 0, 9702, 9679, 1, 0, 0, 0, 9702, 9703, 1, 0, 0, 0, 9703, 1229, 1, 0, 0, 0, 9704, 9716, 3, 1232, 616, 0, 9705, 9706, 7, 67, 0, 0, 9706, 9717, 3, 1232, 616, 0, 9707, 9708, 3, 1326, 663, 0, 9708, 9714, 3, 1316, 658, 0, 9709, 9715, 3, 1002, 501, 0, 9710, 9711, 5, 2, 0, 0, 9711, 9712, 3, 1212, 606, 0, 9712, 9713, 5, 3, 0, 0, 9713, 9715, 1, 0, 0, 0, 9714, 9709, 1, 0, 0, 0, 9714, 9710, 1, 0, 0, 0, 9715, 9717, 1, 0, 0, 0, 9716, 9705, 1, 0, 0, 0, 9716, 9707, 1, 0, 0, 0, 9716, 9717, 1, 0, 0, 0, 9717, 1231, 1, 0, 0, 0, 9718, 9736, 3, 1234, 617, 0, 9719, 9721, 5, 77, 0, 0, 9720, 9719, 1, 0, 0, 0, 9720, 9721, 1, 0, 0, 0, 9721, 9730, 1, 0, 0, 0, 9722, 9731, 5, 120, 0, 0, 9723, 9731, 5, 114, 0, 0, 9724, 9725, 5, 127, 0, 0, 9725, 9731, 5, 94, 0, 0, 9726, 9728, 5, 387, 0, 0, 9727, 9729, 5, 91, 0, 0, 9728, 9727, 1, 0, 0, 0, 9728, 9729, 1, 0, 0, 0, 9729, 9731, 1, 0, 0, 0, 9730, 9722, 1, 0, 0, 0, 9730, 9723, 1, 0, 0, 0, 9730, 9724, 1, 0, 0, 0, 9730, 9726, 1, 0, 0, 0, 9731, 9732, 1, 0, 0, 0, 9732, 9734, 3, 1234, 617, 0, 9733, 9735, 3, 1210, 605, 0, 9734, 9733, 1, 0, 0, 0, 9734, 9735, 1, 0, 0, 0, 9735, 9737, 1, 0, 0, 0, 9736, 9720, 1, 0, 0, 0, 9736, 9737, 1, 0, 0, 0, 9737, 1233, 1, 0, 0, 0, 9738, 9744, 3, 1236, 618, 0, 9739, 9740, 3, 1322, 661, 0, 9740, 9741, 3, 1236, 618, 0, 9741, 9743, 1, 0, 0, 0, 9742, 9739, 1, 0, 0, 0, 9743, 9746, 1, 0, 0, 0, 9744, 9742, 1, 0, 0, 0, 9744, 9745, 1, 0, 0, 0, 9745, 1235, 1, 0, 0, 0, 9746, 9744, 1, 0, 0, 0, 9747, 9749, 3, 1322, 661, 0, 9748, 9747, 1, 0, 0, 0, 9748, 9749, 1, 0, 0, 0, 9749, 9750, 1, 0, 0, 0, 9750, 9751, 3, 1238, 619, 0, 9751, 1237, 1, 0, 0, 0, 9752, 9757, 3, 1240, 620, 0, 9753, 9754, 7, 68, 0, 0, 9754, 9756, 3, 1240, 620, 0, 9755, 9753, 1, 0, 0, 0, 9756, 9759, 1, 0, 0, 0, 9757, 9755, 1, 0, 0, 0, 9757, 9758, 1, 0, 0, 0, 9758, 1239, 1, 0, 0, 0, 9759, 9757, 1, 0, 0, 0, 9760, 9765, 3, 1242, 621, 0, 9761, 9762, 7, 69, 0, 0, 9762, 9764, 3, 1242, 621, 0, 9763, 9761, 1, 0, 0, 0, 9764, 9767, 1, 0, 0, 0, 9765, 9763, 1, 0, 0, 0, 9765, 9766, 1, 0, 0, 0, 9766, 1241, 1, 0, 0, 0, 9767, 9765, 1, 0, 0, 0, 9768, 9771, 3, 1244, 622, 0, 9769, 9770, 5, 15, 0, 0, 9770, 9772, 3, 1212, 606, 0, 9771, 9769, 1, 0, 0, 0, 9771, 9772, 1, 0, 0, 0, 9772, 1243, 1, 0, 0, 0, 9773, 9775, 7, 68, 0, 0, 9774, 9773, 1, 0, 0, 0, 9774, 9775, 1, 0, 0, 0, 9775, 9776, 1, 0, 0, 0, 9776, 9777, 3, 1246, 623, 0, 9777, 1245, 1, 0, 0, 0, 9778, 9783, 3, 1248, 624, 0, 9779, 9780, 5, 142, 0, 0, 9780, 9781, 5, 418, 0, 0, 9781, 9782, 5, 386, 0, 0, 9782, 9784, 3, 1212, 606, 0, 9783, 9779, 1, 0, 0, 0, 9783, 9784, 1, 0, 0, 0, 9784, 1247, 1, 0, 0, 0, 9785, 9788, 3, 1250, 625, 0, 9786, 9787, 5, 43, 0, 0, 9787, 9789, 3, 558, 279, 0, 9788, 9786, 1, 0, 0, 0, 9788, 9789, 1, 0, 0, 0, 9789, 1249, 1, 0, 0, 0, 9790, 9795, 3, 1254, 627, 0, 9791, 9792, 5, 26, 0, 0, 9792, 9794, 3, 1168, 584, 0, 9793, 9791, 1, 0, 0, 0, 9794, 9797, 1, 0, 0, 0, 9795, 9793, 1, 0, 0, 0, 9795, 9796, 1, 0, 0, 0, 9796, 1251, 1, 0, 0, 0, 9797, 9795, 1, 0, 0, 0, 9798, 9799, 6, 626, -1, 0, 9799, 9806, 3, 1254, 627, 0, 9800, 9801, 7, 68, 0, 0, 9801, 9806, 3, 1252, 626, 9, 9802, 9803, 3, 1322, 661, 0, 9803, 9804, 3, 1252, 626, 3, 9804, 9806, 1, 0, 0, 0, 9805, 9798, 1, 0, 0, 0, 9805, 9800, 1, 0, 0, 0, 9805, 9802, 1, 0, 0, 0, 9806, 9846, 1, 0, 0, 0, 9807, 9808, 10, 8, 0, 0, 9808, 9809, 5, 15, 0, 0, 9809, 9845, 3, 1252, 626, 9, 9810, 9811, 10, 7, 0, 0, 9811, 9812, 7, 69, 0, 0, 9812, 9845, 3, 1252, 626, 8, 9813, 9814, 10, 6, 0, 0, 9814, 9815, 7, 68, 0, 0, 9815, 9845, 3, 1252, 626, 7, 9816, 9817, 10, 5, 0, 0, 9817, 9818, 3, 1322, 661, 0, 9818, 9819, 3, 1252, 626, 6, 9819, 9845, 1, 0, 0, 0, 9820, 9821, 10, 4, 0, 0, 9821, 9822, 7, 67, 0, 0, 9822, 9845, 3, 1252, 626, 5, 9823, 9824, 10, 10, 0, 0, 9824, 9825, 5, 26, 0, 0, 9825, 9845, 3, 1168, 584, 0, 9826, 9827, 10, 2, 0, 0, 9827, 9845, 3, 1322, 661, 0, 9828, 9829, 10, 1, 0, 0, 9829, 9831, 5, 116, 0, 0, 9830, 9832, 5, 77, 0, 0, 9831, 9830, 1, 0, 0, 0, 9831, 9832, 1, 0, 0, 0, 9832, 9842, 1, 0, 0, 0, 9833, 9834, 5, 56, 0, 0, 9834, 9835, 5, 64, 0, 0, 9835, 9843, 3, 1252, 626, 0, 9836, 9837, 5, 275, 0, 0, 9837, 9838, 5, 2, 0, 0, 9838, 9839, 3, 1342, 671, 0, 9839, 9840, 5, 3, 0, 0, 9840, 9843, 1, 0, 0, 0, 9841, 9843, 5, 188, 0, 0, 9842, 9833, 1, 0, 0, 0, 9842, 9836, 1, 0, 0, 0, 9842, 9841, 1, 0, 0, 0, 9843, 9845, 1, 0, 0, 0, 9844, 9807, 1, 0, 0, 0, 9844, 9810, 1, 0, 0, 0, 9844, 9813, 1, 0, 0, 0, 9844, 9816, 1, 0, 0, 0, 9844, 9820, 1, 0, 0, 0, 9844, 9823, 1, 0, 0, 0, 9844, 9826, 1, 0, 0, 0, 9844, 9828, 1, 0, 0, 0, 9845, 9848, 1, 0, 0, 0, 9846, 9844, 1, 0, 0, 0, 9846, 9847, 1, 0, 0, 0, 9847, 1253, 1, 0, 0, 0, 9848, 9846, 1, 0, 0, 0, 9849, 9850, 5, 396, 0, 0, 9850, 9886, 3, 1002, 501, 0, 9851, 9854, 5, 35, 0, 0, 9852, 9855, 3, 1002, 501, 0, 9853, 9855, 3, 1344, 672, 0, 9854, 9852, 1, 0, 0, 0, 9854, 9853, 1, 0, 0, 0, 9855, 9886, 1, 0, 0, 0, 9856, 9857, 5, 28, 0, 0, 9857, 9886, 3, 1382, 691, 0, 9858, 9859, 5, 470, 0, 0, 9859, 9860, 5, 2, 0, 0, 9860, 9861, 3, 1328, 664, 0, 9861, 9862, 5, 3, 0, 0, 9862, 9886, 1, 0, 0, 0, 9863, 9864, 5, 98, 0, 0, 9864, 9886, 3, 1002, 501, 0, 9865, 9886, 3, 1448, 724, 0, 9866, 9886, 3, 1256, 628, 0, 9867, 9868, 5, 2, 0, 0, 9868, 9869, 3, 1212, 606, 0, 9869, 9870, 5, 3, 0, 0, 9870, 9871, 3, 1382, 691, 0, 9871, 9886, 1, 0, 0, 0, 9872, 9886, 3, 1364, 682, 0, 9873, 9886, 3, 1260, 630, 0, 9874, 9876, 3, 1002, 501, 0, 9875, 9877, 3, 1380, 690, 0, 9876, 9875, 1, 0, 0, 0, 9876, 9877, 1, 0, 0, 0, 9877, 9886, 1, 0, 0, 0, 9878, 9886, 3, 1312, 656, 0, 9879, 9886, 3, 1314, 657, 0, 9880, 9881, 3, 1310, 655, 0, 9881, 9882, 5, 125, 0, 0, 9882, 9883, 3, 1310, 655, 0, 9883, 9886, 1, 0, 0, 0, 9884, 9886, 3, 1374, 687, 0, 9885, 9849, 1, 0, 0, 0, 9885, 9851, 1, 0, 0, 0, 9885, 9856, 1, 0, 0, 0, 9885, 9858, 1, 0, 0, 0, 9885, 9863, 1, 0, 0, 0, 9885, 9865, 1, 0, 0, 0, 9885, 9866, 1, 0, 0, 0, 9885, 9867, 1, 0, 0, 0, 9885, 9872, 1, 0, 0, 0, 9885, 9873, 1, 0, 0, 0, 9885, 9874, 1, 0, 0, 0, 9885, 9878, 1, 0, 0, 0, 9885, 9879, 1, 0, 0, 0, 9885, 9880, 1, 0, 0, 0, 9885, 9884, 1, 0, 0, 0, 9886, 1255, 1, 0, 0, 0, 9887, 9888, 5, 574, 0, 0, 9888, 1257, 1, 0, 0, 0, 9889, 9915, 3, 1444, 722, 0, 9890, 9912, 5, 2, 0, 0, 9891, 9895, 3, 1338, 669, 0, 9892, 9893, 5, 6, 0, 0, 9893, 9894, 5, 101, 0, 0, 9894, 9896, 3, 1340, 670, 0, 9895, 9892, 1, 0, 0, 0, 9895, 9896, 1, 0, 0, 0, 9896, 9898, 1, 0, 0, 0, 9897, 9899, 3, 1042, 521, 0, 9898, 9897, 1, 0, 0, 0, 9898, 9899, 1, 0, 0, 0, 9899, 9913, 1, 0, 0, 0, 9900, 9901, 5, 101, 0, 0, 9901, 9903, 3, 1340, 670, 0, 9902, 9904, 3, 1042, 521, 0, 9903, 9902, 1, 0, 0, 0, 9903, 9904, 1, 0, 0, 0, 9904, 9913, 1, 0, 0, 0, 9905, 9906, 7, 57, 0, 0, 9906, 9908, 3, 1338, 669, 0, 9907, 9909, 3, 1042, 521, 0, 9908, 9907, 1, 0, 0, 0, 9908, 9909, 1, 0, 0, 0, 9909, 9913, 1, 0, 0, 0, 9910, 9913, 5, 9, 0, 0, 9911, 9913, 1, 0, 0, 0, 9912, 9891, 1, 0, 0, 0, 9912, 9900, 1, 0, 0, 0, 9912, 9905, 1, 0, 0, 0, 9912, 9910, 1, 0, 0, 0, 9912, 9911, 1, 0, 0, 0, 9913, 9914, 1, 0, 0, 0, 9914, 9916, 5, 3, 0, 0, 9915, 9890, 1, 0, 0, 0, 9915, 9916, 1, 0, 0, 0, 9916, 1259, 1, 0, 0, 0, 9917, 9919, 3, 1258, 629, 0, 9918, 9920, 3, 1284, 642, 0, 9919, 9918, 1, 0, 0, 0, 9919, 9920, 1, 0, 0, 0, 9920, 9922, 1, 0, 0, 0, 9921, 9923, 3, 1286, 643, 0, 9922, 9921, 1, 0, 0, 0, 9922, 9923, 1, 0, 0, 0, 9923, 9925, 1, 0, 0, 0, 9924, 9926, 3, 1294, 647, 0, 9925, 9924, 1, 0, 0, 0, 9925, 9926, 1, 0, 0, 0, 9926, 9929, 1, 0, 0, 0, 9927, 9929, 3, 1264, 632, 0, 9928, 9917, 1, 0, 0, 0, 9928, 9927, 1, 0, 0, 0, 9929, 1261, 1, 0, 0, 0, 9930, 9933, 3, 1258, 629, 0, 9931, 9933, 3, 1264, 632, 0, 9932, 9930, 1, 0, 0, 0, 9932, 9931, 1, 0, 0, 0, 9933, 1263, 1, 0, 0, 0, 9934, 9935, 5, 108, 0, 0, 9935, 9936, 5, 62, 0, 0, 9936, 9937, 5, 2, 0, 0, 9937, 9938, 3, 1212, 606, 0, 9938, 9939, 5, 3, 0, 0, 9939, 10119, 1, 0, 0, 0, 9940, 10119, 5, 48, 0, 0, 9941, 9946, 5, 50, 0, 0, 9942, 9943, 5, 2, 0, 0, 9943, 9944, 3, 1456, 728, 0, 9944, 9945, 5, 3, 0, 0, 9945, 9947, 1, 0, 0, 0, 9946, 9942, 1, 0, 0, 0, 9946, 9947, 1, 0, 0, 0, 9947, 10119, 1, 0, 0, 0, 9948, 9953, 5, 51, 0, 0, 9949, 9950, 5, 2, 0, 0, 9950, 9951, 3, 1456, 728, 0, 9951, 9952, 5, 3, 0, 0, 9952, 9954, 1, 0, 0, 0, 9953, 9949, 1, 0, 0, 0, 9953, 9954, 1, 0, 0, 0, 9954, 10119, 1, 0, 0, 0, 9955, 9960, 5, 75, 0, 0, 9956, 9957, 5, 2, 0, 0, 9957, 9958, 3, 1456, 728, 0, 9958, 9959, 5, 3, 0, 0, 9959, 9961, 1, 0, 0, 0, 9960, 9956, 1, 0, 0, 0, 9960, 9961, 1, 0, 0, 0, 9961, 10119, 1, 0, 0, 0, 9962, 9967, 5, 76, 0, 0, 9963, 9964, 5, 2, 0, 0, 9964, 9965, 3, 1456, 728, 0, 9965, 9966, 5, 3, 0, 0, 9966, 9968, 1, 0, 0, 0, 9967, 9963, 1, 0, 0, 0, 9967, 9968, 1, 0, 0, 0, 9968, 10119, 1, 0, 0, 0, 9969, 10119, 5, 49, 0, 0, 9970, 10119, 5, 52, 0, 0, 9971, 10119, 5, 89, 0, 0, 9972, 10119, 5, 99, 0, 0, 9973, 10119, 5, 47, 0, 0, 9974, 10119, 5, 111, 0, 0, 9975, 9976, 5, 41, 0, 0, 9976, 9977, 5, 2, 0, 0, 9977, 9978, 3, 1212, 606, 0, 9978, 9979, 5, 36, 0, 0, 9979, 9980, 3, 1168, 584, 0, 9980, 9981, 5, 3, 0, 0, 9981, 10119, 1, 0, 0, 0, 9982, 9983, 5, 397, 0, 0, 9983, 9985, 5, 2, 0, 0, 9984, 9986, 3, 1348, 674, 0, 9985, 9984, 1, 0, 0, 0, 9985, 9986, 1, 0, 0, 0, 9986, 9987, 1, 0, 0, 0, 9987, 10119, 5, 3, 0, 0, 9988, 9989, 5, 489, 0, 0, 9989, 9990, 5, 2, 0, 0, 9990, 9993, 3, 1212, 606, 0, 9991, 9992, 5, 6, 0, 0, 9992, 9994, 3, 1352, 676, 0, 9993, 9991, 1, 0, 0, 0, 9993, 9994, 1, 0, 0, 0, 9994, 9995, 1, 0, 0, 0, 9995, 9996, 5, 3, 0, 0, 9996, 10119, 1, 0, 0, 0, 9997, 9998, 5, 410, 0, 0, 9998, 9999, 5, 2, 0, 0, 9999, 10000, 3, 1354, 677, 0, 10000, 10001, 5, 3, 0, 0, 10001, 10119, 1, 0, 0, 0, 10002, 10003, 5, 411, 0, 0, 10003, 10005, 5, 2, 0, 0, 10004, 10006, 3, 1356, 678, 0, 10005, 10004, 1, 0, 0, 0, 10005, 10006, 1, 0, 0, 0, 10006, 10007, 1, 0, 0, 0, 10007, 10119, 5, 3, 0, 0, 10008, 10009, 5, 417, 0, 0, 10009, 10011, 5, 2, 0, 0, 10010, 10012, 3, 1358, 679, 0, 10011, 10010, 1, 0, 0, 0, 10011, 10012, 1, 0, 0, 0, 10012, 10013, 1, 0, 0, 0, 10013, 10119, 5, 3, 0, 0, 10014, 10015, 5, 420, 0, 0, 10015, 10016, 5, 2, 0, 0, 10016, 10017, 3, 1212, 606, 0, 10017, 10018, 5, 36, 0, 0, 10018, 10019, 3, 1168, 584, 0, 10019, 10020, 5, 3, 0, 0, 10020, 10119, 1, 0, 0, 0, 10021, 10022, 5, 421, 0, 0, 10022, 10024, 5, 2, 0, 0, 10023, 10025, 7, 70, 0, 0, 10024, 10023, 1, 0, 0, 0, 10024, 10025, 1, 0, 0, 0, 10025, 10026, 1, 0, 0, 0, 10026, 10027, 3, 1360, 680, 0, 10027, 10028, 5, 3, 0, 0, 10028, 10119, 1, 0, 0, 0, 10029, 10030, 5, 408, 0, 0, 10030, 10031, 5, 2, 0, 0, 10031, 10032, 3, 1212, 606, 0, 10032, 10033, 5, 6, 0, 0, 10033, 10034, 3, 1212, 606, 0, 10034, 10035, 5, 3, 0, 0, 10035, 10119, 1, 0, 0, 0, 10036, 10037, 5, 393, 0, 0, 10037, 10038, 5, 2, 0, 0, 10038, 10039, 3, 1328, 664, 0, 10039, 10040, 5, 3, 0, 0, 10040, 10119, 1, 0, 0, 0, 10041, 10042, 5, 399, 0, 0, 10042, 10043, 5, 2, 0, 0, 10043, 10044, 3, 1328, 664, 0, 10044, 10045, 5, 3, 0, 0, 10045, 10119, 1, 0, 0, 0, 10046, 10047, 5, 404, 0, 0, 10047, 10048, 5, 2, 0, 0, 10048, 10049, 3, 1328, 664, 0, 10049, 10050, 5, 3, 0, 0, 10050, 10119, 1, 0, 0, 0, 10051, 10052, 5, 425, 0, 0, 10052, 10053, 5, 2, 0, 0, 10053, 10054, 3, 1328, 664, 0, 10054, 10055, 5, 3, 0, 0, 10055, 10119, 1, 0, 0, 0, 10056, 10057, 5, 426, 0, 0, 10057, 10058, 5, 2, 0, 0, 10058, 10059, 5, 266, 0, 0, 10059, 10065, 3, 1490, 745, 0, 10060, 10063, 5, 6, 0, 0, 10061, 10064, 3, 1270, 635, 0, 10062, 10064, 3, 1328, 664, 0, 10063, 10061, 1, 0, 0, 0, 10063, 10062, 1, 0, 0, 0, 10064, 10066, 1, 0, 0, 0, 10065, 10060, 1, 0, 0, 0, 10065, 10066, 1, 0, 0, 0, 10066, 10067, 1, 0, 0, 0, 10067, 10068, 5, 3, 0, 0, 10068, 10119, 1, 0, 0, 0, 10069, 10070, 5, 427, 0, 0, 10070, 10071, 5, 2, 0, 0, 10071, 10072, 3, 1254, 627, 0, 10072, 10073, 3, 1280, 640, 0, 10073, 10074, 5, 3, 0, 0, 10074, 10119, 1, 0, 0, 0, 10075, 10076, 5, 428, 0, 0, 10076, 10077, 5, 2, 0, 0, 10077, 10078, 3, 1272, 636, 0, 10078, 10079, 5, 3, 0, 0, 10079, 10119, 1, 0, 0, 0, 10080, 10081, 5, 429, 0, 0, 10081, 10082, 5, 2, 0, 0, 10082, 10083, 3, 1276, 638, 0, 10083, 10085, 3, 1212, 606, 0, 10084, 10086, 3, 1278, 639, 0, 10085, 10084, 1, 0, 0, 0, 10085, 10086, 1, 0, 0, 0, 10086, 10087, 1, 0, 0, 0, 10087, 10088, 5, 3, 0, 0, 10088, 10119, 1, 0, 0, 0, 10089, 10090, 5, 430, 0, 0, 10090, 10091, 5, 2, 0, 0, 10091, 10092, 5, 266, 0, 0, 10092, 10095, 3, 1490, 745, 0, 10093, 10094, 5, 6, 0, 0, 10094, 10096, 3, 1212, 606, 0, 10095, 10093, 1, 0, 0, 0, 10095, 10096, 1, 0, 0, 0, 10096, 10097, 1, 0, 0, 0, 10097, 10098, 5, 3, 0, 0, 10098, 10119, 1, 0, 0, 0, 10099, 10100, 5, 431, 0, 0, 10100, 10101, 5, 2, 0, 0, 10101, 10102, 5, 383, 0, 0, 10102, 10103, 3, 1212, 606, 0, 10103, 10104, 5, 6, 0, 0, 10104, 10106, 3, 1266, 633, 0, 10105, 10107, 3, 1268, 634, 0, 10106, 10105, 1, 0, 0, 0, 10106, 10107, 1, 0, 0, 0, 10107, 10108, 1, 0, 0, 0, 10108, 10109, 5, 3, 0, 0, 10109, 10119, 1, 0, 0, 0, 10110, 10111, 5, 432, 0, 0, 10111, 10112, 5, 2, 0, 0, 10112, 10113, 3, 1276, 638, 0, 10113, 10114, 3, 1212, 606, 0, 10114, 10115, 5, 36, 0, 0, 10115, 10116, 3, 1172, 586, 0, 10116, 10117, 5, 3, 0, 0, 10117, 10119, 1, 0, 0, 0, 10118, 9934, 1, 0, 0, 0, 10118, 9940, 1, 0, 0, 0, 10118, 9941, 1, 0, 0, 0, 10118, 9948, 1, 0, 0, 0, 10118, 9955, 1, 0, 0, 0, 10118, 9962, 1, 0, 0, 0, 10118, 9969, 1, 0, 0, 0, 10118, 9970, 1, 0, 0, 0, 10118, 9971, 1, 0, 0, 0, 10118, 9972, 1, 0, 0, 0, 10118, 9973, 1, 0, 0, 0, 10118, 9974, 1, 0, 0, 0, 10118, 9975, 1, 0, 0, 0, 10118, 9982, 1, 0, 0, 0, 10118, 9988, 1, 0, 0, 0, 10118, 9997, 1, 0, 0, 0, 10118, 10002, 1, 0, 0, 0, 10118, 10008, 1, 0, 0, 0, 10118, 10014, 1, 0, 0, 0, 10118, 10021, 1, 0, 0, 0, 10118, 10029, 1, 0, 0, 0, 10118, 10036, 1, 0, 0, 0, 10118, 10041, 1, 0, 0, 0, 10118, 10046, 1, 0, 0, 0, 10118, 10051, 1, 0, 0, 0, 10118, 10056, 1, 0, 0, 0, 10118, 10069, 1, 0, 0, 0, 10118, 10075, 1, 0, 0, 0, 10118, 10080, 1, 0, 0, 0, 10118, 10089, 1, 0, 0, 0, 10118, 10099, 1, 0, 0, 0, 10118, 10110, 1, 0, 0, 0, 10119, 1265, 1, 0, 0, 0, 10120, 10121, 5, 375, 0, 0, 10121, 10126, 3, 1212, 606, 0, 10122, 10123, 5, 375, 0, 0, 10123, 10124, 5, 269, 0, 0, 10124, 10126, 5, 450, 0, 0, 10125, 10120, 1, 0, 0, 0, 10125, 10122, 1, 0, 0, 0, 10126, 1267, 1, 0, 0, 0, 10127, 10128, 5, 6, 0, 0, 10128, 10129, 5, 339, 0, 0, 10129, 10138, 5, 385, 0, 0, 10130, 10131, 5, 6, 0, 0, 10131, 10132, 5, 339, 0, 0, 10132, 10138, 5, 269, 0, 0, 10133, 10134, 5, 6, 0, 0, 10134, 10135, 5, 339, 0, 0, 10135, 10136, 5, 269, 0, 0, 10136, 10138, 5, 450, 0, 0, 10137, 10127, 1, 0, 0, 0, 10137, 10130, 1, 0, 0, 0, 10137, 10133, 1, 0, 0, 0, 10138, 1269, 1, 0, 0, 0, 10139, 10140, 5, 424, 0, 0, 10140, 10141, 5, 2, 0, 0, 10141, 10142, 3, 1272, 636, 0, 10142, 10143, 5, 3, 0, 0, 10143, 1271, 1, 0, 0, 0, 10144, 10149, 3, 1274, 637, 0, 10145, 10146, 5, 6, 0, 0, 10146, 10148, 3, 1274, 637, 0, 10147, 10145, 1, 0, 0, 0, 10148, 10151, 1, 0, 0, 0, 10149, 10147, 1, 0, 0, 0, 10149, 10150, 1, 0, 0, 0, 10150, 1273, 1, 0, 0, 0, 10151, 10149, 1, 0, 0, 0, 10152, 10155, 3, 1212, 606, 0, 10153, 10154, 5, 36, 0, 0, 10154, 10156, 3, 1490, 745, 0, 10155, 10153, 1, 0, 0, 0, 10155, 10156, 1, 0, 0, 0, 10156, 1275, 1, 0, 0, 0, 10157, 10158, 7, 71, 0, 0, 10158, 1277, 1, 0, 0, 0, 10159, 10160, 5, 292, 0, 0, 10160, 10164, 5, 378, 0, 0, 10161, 10162, 5, 347, 0, 0, 10162, 10164, 5, 378, 0, 0, 10163, 10159, 1, 0, 0, 0, 10163, 10161, 1, 0, 0, 0, 10164, 1279, 1, 0, 0, 0, 10165, 10166, 5, 286, 0, 0, 10166, 10181, 3, 1254, 627, 0, 10167, 10168, 5, 286, 0, 0, 10168, 10169, 3, 1254, 627, 0, 10169, 10170, 3, 1282, 641, 0, 10170, 10181, 1, 0, 0, 0, 10171, 10172, 5, 286, 0, 0, 10172, 10173, 3, 1282, 641, 0, 10173, 10174, 3, 1254, 627, 0, 10174, 10181, 1, 0, 0, 0, 10175, 10176, 5, 286, 0, 0, 10176, 10177, 3, 1282, 641, 0, 10177, 10178, 3, 1254, 627, 0, 10178, 10179, 3, 1282, 641, 0, 10179, 10181, 1, 0, 0, 0, 10180, 10165, 1, 0, 0, 0, 10180, 10167, 1, 0, 0, 0, 10180, 10171, 1, 0, 0, 0, 10180, 10175, 1, 0, 0, 0, 10181, 1281, 1, 0, 0, 0, 10182, 10183, 5, 147, 0, 0, 10183, 10184, 7, 72, 0, 0, 10184, 1283, 1, 0, 0, 0, 10185, 10186, 5, 479, 0, 0, 10186, 10187, 5, 66, 0, 0, 10187, 10188, 5, 2, 0, 0, 10188, 10189, 3, 1044, 522, 0, 10189, 10190, 5, 3, 0, 0, 10190, 1285, 1, 0, 0, 0, 10191, 10192, 5, 480, 0, 0, 10192, 10193, 5, 2, 0, 0, 10193, 10194, 5, 103, 0, 0, 10194, 10195, 3, 1212, 606, 0, 10195, 10196, 5, 3, 0, 0, 10196, 1287, 1, 0, 0, 0, 10197, 10198, 5, 104, 0, 0, 10198, 10199, 3, 1290, 645, 0, 10199, 1289, 1, 0, 0, 0, 10200, 10205, 3, 1292, 646, 0, 10201, 10202, 5, 6, 0, 0, 10202, 10204, 3, 1292, 646, 0, 10203, 10201, 1, 0, 0, 0, 10204, 10207, 1, 0, 0, 0, 10205, 10203, 1, 0, 0, 0, 10205, 10206, 1, 0, 0, 0, 10206, 1291, 1, 0, 0, 0, 10207, 10205, 1, 0, 0, 0, 10208, 10209, 3, 1474, 737, 0, 10209, 10210, 5, 36, 0, 0, 10210, 10211, 3, 1296, 648, 0, 10211, 1293, 1, 0, 0, 0, 10212, 10215, 5, 124, 0, 0, 10213, 10216, 3, 1296, 648, 0, 10214, 10216, 3, 1474, 737, 0, 10215, 10213, 1, 0, 0, 0, 10215, 10214, 1, 0, 0, 0, 10216, 1295, 1, 0, 0, 0, 10217, 10219, 5, 2, 0, 0, 10218, 10220, 3, 1298, 649, 0, 10219, 10218, 1, 0, 0, 0, 10219, 10220, 1, 0, 0, 0, 10220, 10222, 1, 0, 0, 0, 10221, 10223, 3, 1300, 650, 0, 10222, 10221, 1, 0, 0, 0, 10222, 10223, 1, 0, 0, 0, 10223, 10225, 1, 0, 0, 0, 10224, 10226, 3, 1042, 521, 0, 10225, 10224, 1, 0, 0, 0, 10225, 10226, 1, 0, 0, 0, 10226, 10228, 1, 0, 0, 0, 10227, 10229, 3, 1302, 651, 0, 10228, 10227, 1, 0, 0, 0, 10228, 10229, 1, 0, 0, 0, 10229, 10230, 1, 0, 0, 0, 10230, 10231, 5, 3, 0, 0, 10231, 1297, 1, 0, 0, 0, 10232, 10233, 3, 1474, 737, 0, 10233, 1299, 1, 0, 0, 0, 10234, 10235, 5, 285, 0, 0, 10235, 10236, 5, 147, 0, 0, 10236, 10237, 3, 1328, 664, 0, 10237, 1301, 1, 0, 0, 0, 10238, 10239, 5, 299, 0, 0, 10239, 10241, 3, 1304, 652, 0, 10240, 10242, 3, 1308, 654, 0, 10241, 10240, 1, 0, 0, 0, 10241, 10242, 1, 0, 0, 0, 10242, 10254, 1, 0, 0, 0, 10243, 10244, 5, 320, 0, 0, 10244, 10246, 3, 1304, 652, 0, 10245, 10247, 3, 1308, 654, 0, 10246, 10245, 1, 0, 0, 0, 10246, 10247, 1, 0, 0, 0, 10247, 10254, 1, 0, 0, 0, 10248, 10249, 5, 481, 0, 0, 10249, 10251, 3, 1304, 652, 0, 10250, 10252, 3, 1308, 654, 0, 10251, 10250, 1, 0, 0, 0, 10251, 10252, 1, 0, 0, 0, 10252, 10254, 1, 0, 0, 0, 10253, 10238, 1, 0, 0, 0, 10253, 10243, 1, 0, 0, 0, 10253, 10248, 1, 0, 0, 0, 10254, 1303, 1, 0, 0, 0, 10255, 10262, 3, 1306, 653, 0, 10256, 10257, 5, 387, 0, 0, 10257, 10258, 3, 1306, 653, 0, 10258, 10259, 5, 33, 0, 0, 10259, 10260, 3, 1306, 653, 0, 10260, 10262, 1, 0, 0, 0, 10261, 10255, 1, 0, 0, 0, 10261, 10256, 1, 0, 0, 0, 10262, 1305, 1, 0, 0, 0, 10263, 10264, 5, 362, 0, 0, 10264, 10271, 7, 73, 0, 0, 10265, 10266, 5, 434, 0, 0, 10266, 10271, 5, 414, 0, 0, 10267, 10268, 3, 1212, 606, 0, 10268, 10269, 7, 73, 0, 0, 10269, 10271, 1, 0, 0, 0, 10270, 10263, 1, 0, 0, 0, 10270, 10265, 1, 0, 0, 0, 10270, 10267, 1, 0, 0, 0, 10271, 1307, 1, 0, 0, 0, 10272, 10279, 5, 199, 0, 0, 10273, 10274, 5, 434, 0, 0, 10274, 10280, 5, 414, 0, 0, 10275, 10280, 5, 66, 0, 0, 10276, 10280, 5, 467, 0, 0, 10277, 10278, 5, 269, 0, 0, 10278, 10280, 5, 482, 0, 0, 10279, 10273, 1, 0, 0, 0, 10279, 10275, 1, 0, 0, 0, 10279, 10276, 1, 0, 0, 0, 10279, 10277, 1, 0, 0, 0, 10280, 1309, 1, 0, 0, 0, 10281, 10282, 5, 414, 0, 0, 10282, 10284, 5, 2, 0, 0, 10283, 10285, 3, 1328, 664, 0, 10284, 10283, 1, 0, 0, 0, 10284, 10285, 1, 0, 0, 0, 10285, 10286, 1, 0, 0, 0, 10286, 10294, 5, 3, 0, 0, 10287, 10288, 5, 2, 0, 0, 10288, 10289, 3, 1328, 664, 0, 10289, 10290, 5, 6, 0, 0, 10290, 10291, 3, 1212, 606, 0, 10291, 10292, 5, 3, 0, 0, 10292, 10294, 1, 0, 0, 0, 10293, 10281, 1, 0, 0, 0, 10293, 10287, 1, 0, 0, 0, 10294, 1311, 1, 0, 0, 0, 10295, 10296, 5, 414, 0, 0, 10296, 10298, 5, 2, 0, 0, 10297, 10299, 3, 1328, 664, 0, 10298, 10297, 1, 0, 0, 0, 10298, 10299, 1, 0, 0, 0, 10299, 10300, 1, 0, 0, 0, 10300, 10301, 5, 3, 0, 0, 10301, 1313, 1, 0, 0, 0, 10302, 10303, 5, 2, 0, 0, 10303, 10304, 3, 1212, 606, 0, 10304, 10305, 5, 6, 0, 0, 10305, 10306, 3, 1328, 664, 0, 10306, 10307, 5, 3, 0, 0, 10307, 1315, 1, 0, 0, 0, 10308, 10309, 7, 74, 0, 0, 10309, 1317, 1, 0, 0, 0, 10310, 10313, 5, 29, 0, 0, 10311, 10313, 3, 1320, 660, 0, 10312, 10310, 1, 0, 0, 0, 10312, 10311, 1, 0, 0, 0, 10313, 1319, 1, 0, 0, 0, 10314, 10315, 7, 75, 0, 0, 10315, 1321, 1, 0, 0, 0, 10316, 10323, 5, 29, 0, 0, 10317, 10318, 5, 278, 0, 0, 10318, 10319, 5, 2, 0, 0, 10319, 10320, 3, 732, 366, 0, 10320, 10321, 5, 3, 0, 0, 10321, 10323, 1, 0, 0, 0, 10322, 10316, 1, 0, 0, 0, 10322, 10317, 1, 0, 0, 0, 10323, 1323, 1, 0, 0, 0, 10324, 10331, 3, 1318, 659, 0, 10325, 10326, 5, 278, 0, 0, 10326, 10327, 5, 2, 0, 0, 10327, 10328, 3, 732, 366, 0, 10328, 10329, 5, 3, 0, 0, 10329, 10331, 1, 0, 0, 0, 10330, 10324, 1, 0, 0, 0, 10330, 10325, 1, 0, 0, 0, 10331, 1325, 1, 0, 0, 0, 10332, 10345, 3, 1318, 659, 0, 10333, 10334, 5, 278, 0, 0, 10334, 10335, 5, 2, 0, 0, 10335, 10336, 3, 732, 366, 0, 10336, 10337, 5, 3, 0, 0, 10337, 10345, 1, 0, 0, 0, 10338, 10345, 5, 120, 0, 0, 10339, 10340, 5, 77, 0, 0, 10340, 10345, 5, 120, 0, 0, 10341, 10345, 5, 114, 0, 0, 10342, 10343, 5, 77, 0, 0, 10343, 10345, 5, 114, 0, 0, 10344, 10332, 1, 0, 0, 0, 10344, 10333, 1, 0, 0, 0, 10344, 10338, 1, 0, 0, 0, 10344, 10339, 1, 0, 0, 0, 10344, 10341, 1, 0, 0, 0, 10344, 10342, 1, 0, 0, 0, 10345, 1327, 1, 0, 0, 0, 10346, 10351, 3, 1212, 606, 0, 10347, 10348, 5, 6, 0, 0, 10348, 10350, 3, 1212, 606, 0, 10349, 10347, 1, 0, 0, 0, 10350, 10353, 1, 0, 0, 0, 10351, 10349, 1, 0, 0, 0, 10351, 10352, 1, 0, 0, 0, 10352, 1329, 1, 0, 0, 0, 10353, 10351, 1, 0, 0, 0, 10354, 10359, 3, 1336, 668, 0, 10355, 10356, 5, 6, 0, 0, 10356, 10358, 3, 1336, 668, 0, 10357, 10355, 1, 0, 0, 0, 10358, 10361, 1, 0, 0, 0, 10359, 10357, 1, 0, 0, 0, 10359, 10360, 1, 0, 0, 0, 10360, 1331, 1, 0, 0, 0, 10361, 10359, 1, 0, 0, 0, 10362, 10367, 3, 1334, 667, 0, 10363, 10364, 5, 6, 0, 0, 10364, 10366, 3, 1334, 667, 0, 10365, 10363, 1, 0, 0, 0, 10366, 10369, 1, 0, 0, 0, 10367, 10365, 1, 0, 0, 0, 10367, 10368, 1, 0, 0, 0, 10368, 1333, 1, 0, 0, 0, 10369, 10367, 1, 0, 0, 0, 10370, 10371, 5, 2, 0, 0, 10371, 10372, 3, 1212, 606, 0, 10372, 10373, 5, 3, 0, 0, 10373, 10376, 1, 0, 0, 0, 10374, 10376, 3, 1432, 716, 0, 10375, 10370, 1, 0, 0, 0, 10375, 10374, 1, 0, 0, 0, 10376, 1335, 1, 0, 0, 0, 10377, 10380, 3, 1212, 606, 0, 10378, 10380, 3, 1432, 716, 0, 10379, 10377, 1, 0, 0, 0, 10379, 10378, 1, 0, 0, 0, 10380, 1337, 1, 0, 0, 0, 10381, 10386, 3, 1340, 670, 0, 10382, 10383, 5, 6, 0, 0, 10383, 10385, 3, 1340, 670, 0, 10384, 10382, 1, 0, 0, 0, 10385, 10388, 1, 0, 0, 0, 10386, 10384, 1, 0, 0, 0, 10386, 10387, 1, 0, 0, 0, 10387, 1339, 1, 0, 0, 0, 10388, 10386, 1, 0, 0, 0, 10389, 10395, 3, 1212, 606, 0, 10390, 10391, 3, 684, 342, 0, 10391, 10392, 7, 76, 0, 0, 10392, 10393, 3, 1212, 606, 0, 10393, 10395, 1, 0, 0, 0, 10394, 10389, 1, 0, 0, 0, 10394, 10390, 1, 0, 0, 0, 10395, 1341, 1, 0, 0, 0, 10396, 10401, 3, 1168, 584, 0, 10397, 10398, 5, 6, 0, 0, 10398, 10400, 3, 1168, 584, 0, 10399, 10397, 1, 0, 0, 0, 10400, 10403, 1, 0, 0, 0, 10401, 10399, 1, 0, 0, 0, 10401, 10402, 1, 0, 0, 0, 10402, 1343, 1, 0, 0, 0, 10403, 10401, 1, 0, 0, 0, 10404, 10407, 5, 4, 0, 0, 10405, 10408, 3, 1328, 664, 0, 10406, 10408, 3, 1346, 673, 0, 10407, 10405, 1, 0, 0, 0, 10407, 10406, 1, 0, 0, 0, 10407, 10408, 1, 0, 0, 0, 10408, 10409, 1, 0, 0, 0, 10409, 10410, 5, 5, 0, 0, 10410, 1345, 1, 0, 0, 0, 10411, 10416, 3, 1344, 672, 0, 10412, 10413, 5, 6, 0, 0, 10413, 10415, 3, 1344, 672, 0, 10414, 10412, 1, 0, 0, 0, 10415, 10418, 1, 0, 0, 0, 10416, 10414, 1, 0, 0, 0, 10416, 10417, 1, 0, 0, 0, 10417, 1347, 1, 0, 0, 0, 10418, 10416, 1, 0, 0, 0, 10419, 10420, 3, 1350, 675, 0, 10420, 10421, 5, 64, 0, 0, 10421, 10422, 3, 1212, 606, 0, 10422, 1349, 1, 0, 0, 0, 10423, 10432, 3, 1492, 746, 0, 10424, 10432, 5, 384, 0, 0, 10425, 10432, 5, 264, 0, 0, 10426, 10432, 5, 176, 0, 0, 10427, 10432, 5, 218, 0, 0, 10428, 10432, 5, 261, 0, 0, 10429, 10432, 5, 326, 0, 0, 10430, 10432, 3, 1458, 729, 0, 10431, 10423, 1, 0, 0, 0, 10431, 10424, 1, 0, 0, 0, 10431, 10425, 1, 0, 0, 0, 10431, 10426, 1, 0, 0, 0, 10431, 10427, 1, 0, 0, 0, 10431, 10428, 1, 0, 0, 0, 10431, 10429, 1, 0, 0, 0, 10431, 10430, 1, 0, 0, 0, 10432, 1351, 1, 0, 0, 0, 10433, 10434, 7, 77, 0, 0, 10434, 1353, 1, 0, 0, 0, 10435, 10436, 3, 1212, 606, 0, 10436, 10437, 5, 84, 0, 0, 10437, 10438, 3, 1212, 606, 0, 10438, 10439, 5, 64, 0, 0, 10439, 10442, 3, 1212, 606, 0, 10440, 10441, 5, 62, 0, 0, 10441, 10443, 3, 1212, 606, 0, 10442, 10440, 1, 0, 0, 0, 10442, 10443, 1, 0, 0, 0, 10443, 1355, 1, 0, 0, 0, 10444, 10445, 3, 1252, 626, 0, 10445, 10446, 5, 68, 0, 0, 10446, 10447, 3, 1252, 626, 0, 10447, 1357, 1, 0, 0, 0, 10448, 10449, 3, 1212, 606, 0, 10449, 10450, 5, 64, 0, 0, 10450, 10451, 3, 1212, 606, 0, 10451, 10452, 5, 62, 0, 0, 10452, 10453, 3, 1212, 606, 0, 10453, 10476, 1, 0, 0, 0, 10454, 10455, 3, 1212, 606, 0, 10455, 10456, 5, 62, 0, 0, 10456, 10457, 3, 1212, 606, 0, 10457, 10458, 5, 64, 0, 0, 10458, 10459, 3, 1212, 606, 0, 10459, 10476, 1, 0, 0, 0, 10460, 10461, 3, 1212, 606, 0, 10461, 10462, 5, 64, 0, 0, 10462, 10463, 3, 1212, 606, 0, 10463, 10476, 1, 0, 0, 0, 10464, 10465, 3, 1212, 606, 0, 10465, 10466, 5, 62, 0, 0, 10466, 10467, 3, 1212, 606, 0, 10467, 10476, 1, 0, 0, 0, 10468, 10469, 3, 1212, 606, 0, 10469, 10470, 5, 127, 0, 0, 10470, 10471, 3, 1212, 606, 0, 10471, 10472, 5, 197, 0, 0, 10472, 10473, 3, 1212, 606, 0, 10473, 10476, 1, 0, 0, 0, 10474, 10476, 3, 1328, 664, 0, 10475, 10448, 1, 0, 0, 0, 10475, 10454, 1, 0, 0, 0, 10475, 10460, 1, 0, 0, 0, 10475, 10464, 1, 0, 0, 0, 10475, 10468, 1, 0, 0, 0, 10475, 10474, 1, 0, 0, 0, 10476, 1359, 1, 0, 0, 0, 10477, 10478, 3, 1212, 606, 0, 10478, 10479, 5, 64, 0, 0, 10479, 10480, 3, 1328, 664, 0, 10480, 10485, 1, 0, 0, 0, 10481, 10482, 5, 64, 0, 0, 10482, 10485, 3, 1328, 664, 0, 10483, 10485, 3, 1328, 664, 0, 10484, 10477, 1, 0, 0, 0, 10484, 10481, 1, 0, 0, 0, 10484, 10483, 1, 0, 0, 0, 10485, 1361, 1, 0, 0, 0, 10486, 10492, 3, 1002, 501, 0, 10487, 10488, 5, 2, 0, 0, 10488, 10489, 3, 1328, 664, 0, 10489, 10490, 5, 3, 0, 0, 10490, 10492, 1, 0, 0, 0, 10491, 10486, 1, 0, 0, 0, 10491, 10487, 1, 0, 0, 0, 10492, 1363, 1, 0, 0, 0, 10493, 10495, 5, 40, 0, 0, 10494, 10496, 3, 1372, 686, 0, 10495, 10494, 1, 0, 0, 0, 10495, 10496, 1, 0, 0, 0, 10496, 10497, 1, 0, 0, 0, 10497, 10499, 3, 1366, 683, 0, 10498, 10500, 3, 1370, 685, 0, 10499, 10498, 1, 0, 0, 0, 10499, 10500, 1, 0, 0, 0, 10500, 10501, 1, 0, 0, 0, 10501, 10502, 5, 454, 0, 0, 10502, 1365, 1, 0, 0, 0, 10503, 10505, 3, 1368, 684, 0, 10504, 10503, 1, 0, 0, 0, 10505, 10506, 1, 0, 0, 0, 10506, 10504, 1, 0, 0, 0, 10506, 10507, 1, 0, 0, 0, 10507, 1367, 1, 0, 0, 0, 10508, 10509, 5, 102, 0, 0, 10509, 10510, 3, 1212, 606, 0, 10510, 10511, 5, 93, 0, 0, 10511, 10512, 3, 1212, 606, 0, 10512, 1369, 1, 0, 0, 0, 10513, 10514, 5, 58, 0, 0, 10514, 10515, 3, 1212, 606, 0, 10515, 1371, 1, 0, 0, 0, 10516, 10517, 3, 1212, 606, 0, 10517, 1373, 1, 0, 0, 0, 10518, 10520, 3, 1474, 737, 0, 10519, 10521, 3, 1380, 690, 0, 10520, 10519, 1, 0, 0, 0, 10520, 10521, 1, 0, 0, 0, 10521, 1375, 1, 0, 0, 0, 10522, 10525, 5, 11, 0, 0, 10523, 10526, 3, 1438, 719, 0, 10524, 10526, 5, 9, 0, 0, 10525, 10523, 1, 0, 0, 0, 10525, 10524, 1, 0, 0, 0, 10526, 10540, 1, 0, 0, 0, 10527, 10536, 5, 4, 0, 0, 10528, 10537, 3, 1212, 606, 0, 10529, 10531, 3, 1378, 689, 0, 10530, 10529, 1, 0, 0, 0, 10530, 10531, 1, 0, 0, 0, 10531, 10532, 1, 0, 0, 0, 10532, 10534, 5, 8, 0, 0, 10533, 10535, 3, 1378, 689, 0, 10534, 10533, 1, 0, 0, 0, 10534, 10535, 1, 0, 0, 0, 10535, 10537, 1, 0, 0, 0, 10536, 10528, 1, 0, 0, 0, 10536, 10530, 1, 0, 0, 0, 10537, 10538, 1, 0, 0, 0, 10538, 10540, 5, 5, 0, 0, 10539, 10522, 1, 0, 0, 0, 10539, 10527, 1, 0, 0, 0, 10540, 1377, 1, 0, 0, 0, 10541, 10542, 3, 1212, 606, 0, 10542, 1379, 1, 0, 0, 0, 10543, 10545, 3, 1376, 688, 0, 10544, 10543, 1, 0, 0, 0, 10545, 10546, 1, 0, 0, 0, 10546, 10544, 1, 0, 0, 0, 10546, 10547, 1, 0, 0, 0, 10547, 1381, 1, 0, 0, 0, 10548, 10550, 3, 1376, 688, 0, 10549, 10548, 1, 0, 0, 0, 10550, 10553, 1, 0, 0, 0, 10551, 10549, 1, 0, 0, 0, 10551, 10552, 1, 0, 0, 0, 10552, 1383, 1, 0, 0, 0, 10553, 10551, 1, 0, 0, 0, 10554, 10555, 3, 1386, 693, 0, 10555, 1385, 1, 0, 0, 0, 10556, 10561, 3, 1388, 694, 0, 10557, 10558, 5, 6, 0, 0, 10558, 10560, 3, 1388, 694, 0, 10559, 10557, 1, 0, 0, 0, 10560, 10563, 1, 0, 0, 0, 10561, 10559, 1, 0, 0, 0, 10561, 10562, 1, 0, 0, 0, 10562, 1387, 1, 0, 0, 0, 10563, 10561, 1, 0, 0, 0, 10564, 10569, 3, 1336, 668, 0, 10565, 10566, 5, 36, 0, 0, 10566, 10570, 3, 1490, 745, 0, 10567, 10570, 3, 1492, 746, 0, 10568, 10570, 1, 0, 0, 0, 10569, 10565, 1, 0, 0, 0, 10569, 10567, 1, 0, 0, 0, 10569, 10568, 1, 0, 0, 0, 10570, 10573, 1, 0, 0, 0, 10571, 10573, 5, 9, 0, 0, 10572, 10564, 1, 0, 0, 0, 10572, 10571, 1, 0, 0, 0, 10573, 1389, 1, 0, 0, 0, 10574, 10579, 3, 1412, 706, 0, 10575, 10576, 5, 6, 0, 0, 10576, 10578, 3, 1412, 706, 0, 10577, 10575, 1, 0, 0, 0, 10578, 10581, 1, 0, 0, 0, 10579, 10577, 1, 0, 0, 0, 10579, 10580, 1, 0, 0, 0, 10580, 1391, 1, 0, 0, 0, 10581, 10579, 1, 0, 0, 0, 10582, 10587, 3, 1406, 703, 0, 10583, 10584, 5, 6, 0, 0, 10584, 10586, 3, 1406, 703, 0, 10585, 10583, 1, 0, 0, 0, 10586, 10589, 1, 0, 0, 0, 10587, 10585, 1, 0, 0, 0, 10587, 10588, 1, 0, 0, 0, 10588, 1393, 1, 0, 0, 0, 10589, 10587, 1, 0, 0, 0, 10590, 10595, 3, 1422, 711, 0, 10591, 10592, 5, 6, 0, 0, 10592, 10594, 3, 1422, 711, 0, 10593, 10591, 1, 0, 0, 0, 10594, 10597, 1, 0, 0, 0, 10595, 10593, 1, 0, 0, 0, 10595, 10596, 1, 0, 0, 0, 10596, 1395, 1, 0, 0, 0, 10597, 10595, 1, 0, 0, 0, 10598, 10603, 3, 1420, 710, 0, 10599, 10600, 5, 6, 0, 0, 10600, 10602, 3, 1420, 710, 0, 10601, 10599, 1, 0, 0, 0, 10602, 10605, 1, 0, 0, 0, 10603, 10601, 1, 0, 0, 0, 10603, 10604, 1, 0, 0, 0, 10604, 1397, 1, 0, 0, 0, 10605, 10603, 1, 0, 0, 0, 10606, 10611, 3, 1428, 714, 0, 10607, 10608, 5, 6, 0, 0, 10608, 10610, 3, 1428, 714, 0, 10609, 10607, 1, 0, 0, 0, 10610, 10613, 1, 0, 0, 0, 10611, 10609, 1, 0, 0, 0, 10611, 10612, 1, 0, 0, 0, 10612, 1399, 1, 0, 0, 0, 10613, 10611, 1, 0, 0, 0, 10614, 10616, 3, 1474, 737, 0, 10615, 10617, 3, 1380, 690, 0, 10616, 10615, 1, 0, 0, 0, 10616, 10617, 1, 0, 0, 0, 10617, 1401, 1, 0, 0, 0, 10618, 10620, 3, 1474, 737, 0, 10619, 10621, 3, 1380, 690, 0, 10620, 10619, 1, 0, 0, 0, 10620, 10621, 1, 0, 0, 0, 10621, 1403, 1, 0, 0, 0, 10622, 10624, 3, 1474, 737, 0, 10623, 10625, 3, 1380, 690, 0, 10624, 10623, 1, 0, 0, 0, 10624, 10625, 1, 0, 0, 0, 10625, 1405, 1, 0, 0, 0, 10626, 10628, 3, 1474, 737, 0, 10627, 10629, 3, 1380, 690, 0, 10628, 10627, 1, 0, 0, 0, 10628, 10629, 1, 0, 0, 0, 10629, 1407, 1, 0, 0, 0, 10630, 10632, 3, 1474, 737, 0, 10631, 10633, 3, 1380, 690, 0, 10632, 10631, 1, 0, 0, 0, 10632, 10633, 1, 0, 0, 0, 10633, 1409, 1, 0, 0, 0, 10634, 10636, 3, 1474, 737, 0, 10635, 10637, 3, 560, 280, 0, 10636, 10635, 1, 0, 0, 0, 10636, 10637, 1, 0, 0, 0, 10637, 1411, 1, 0, 0, 0, 10638, 10640, 3, 1474, 737, 0, 10639, 10641, 3, 1380, 690, 0, 10640, 10639, 1, 0, 0, 0, 10640, 10641, 1, 0, 0, 0, 10641, 1413, 1, 0, 0, 0, 10642, 10647, 3, 1402, 701, 0, 10643, 10644, 5, 6, 0, 0, 10644, 10646, 3, 1402, 701, 0, 10645, 10643, 1, 0, 0, 0, 10646, 10649, 1, 0, 0, 0, 10647, 10645, 1, 0, 0, 0, 10647, 10648, 1, 0, 0, 0, 10648, 1415, 1, 0, 0, 0, 10649, 10647, 1, 0, 0, 0, 10650, 10655, 3, 1436, 718, 0, 10651, 10652, 5, 6, 0, 0, 10652, 10654, 3, 1436, 718, 0, 10653, 10651, 1, 0, 0, 0, 10654, 10657, 1, 0, 0, 0, 10655, 10653, 1, 0, 0, 0, 10655, 10656, 1, 0, 0, 0, 10656, 1417, 1, 0, 0, 0, 10657, 10655, 1, 0, 0, 0, 10658, 10660, 3, 1474, 737, 0, 10659, 10661, 3, 560, 280, 0, 10660, 10659, 1, 0, 0, 0, 10660, 10661, 1, 0, 0, 0, 10661, 1419, 1, 0, 0, 0, 10662, 10664, 3, 1474, 737, 0, 10663, 10665, 3, 560, 280, 0, 10664, 10663, 1, 0, 0, 0, 10664, 10665, 1, 0, 0, 0, 10665, 1421, 1, 0, 0, 0, 10666, 10668, 3, 1474, 737, 0, 10667, 10669, 3, 560, 280, 0, 10668, 10667, 1, 0, 0, 0, 10668, 10669, 1, 0, 0, 0, 10669, 1423, 1, 0, 0, 0, 10670, 10671, 3, 1474, 737, 0, 10671, 1425, 1, 0, 0, 0, 10672, 10673, 3, 1474, 737, 0, 10673, 1427, 1, 0, 0, 0, 10674, 10679, 3, 1482, 741, 0, 10675, 10676, 3, 1474, 737, 0, 10676, 10677, 3, 1380, 690, 0, 10677, 10679, 1, 0, 0, 0, 10678, 10674, 1, 0, 0, 0, 10678, 10675, 1, 0, 0, 0, 10679, 1429, 1, 0, 0, 0, 10680, 10685, 3, 1482, 741, 0, 10681, 10682, 3, 1474, 737, 0, 10682, 10683, 3, 1380, 690, 0, 10683, 10685, 1, 0, 0, 0, 10684, 10680, 1, 0, 0, 0, 10684, 10681, 1, 0, 0, 0, 10685, 1431, 1, 0, 0, 0, 10686, 10690, 3, 1474, 737, 0, 10687, 10689, 3, 1376, 688, 0, 10688, 10687, 1, 0, 0, 0, 10689, 10692, 1, 0, 0, 0, 10690, 10688, 1, 0, 0, 0, 10690, 10691, 1, 0, 0, 0, 10691, 10695, 1, 0, 0, 0, 10692, 10690, 1, 0, 0, 0, 10693, 10695, 4, 716, 8, 0, 10694, 10686, 1, 0, 0, 0, 10694, 10693, 1, 0, 0, 0, 10695, 1433, 1, 0, 0, 0, 10696, 10697, 3, 1474, 737, 0, 10697, 1435, 1, 0, 0, 0, 10698, 10699, 3, 1474, 737, 0, 10699, 1437, 1, 0, 0, 0, 10700, 10701, 3, 1490, 745, 0, 10701, 1439, 1, 0, 0, 0, 10702, 10703, 3, 1458, 729, 0, 10703, 1441, 1, 0, 0, 0, 10704, 10709, 3, 1482, 741, 0, 10705, 10706, 3, 1474, 737, 0, 10706, 10707, 3, 1380, 690, 0, 10707, 10709, 1, 0, 0, 0, 10708, 10704, 1, 0, 0, 0, 10708, 10705, 1, 0, 0, 0, 10709, 1443, 1, 0, 0, 0, 10710, 10715, 3, 1482, 741, 0, 10711, 10712, 3, 1474, 737, 0, 10712, 10713, 3, 1380, 690, 0, 10713, 10715, 1, 0, 0, 0, 10714, 10710, 1, 0, 0, 0, 10714, 10711, 1, 0, 0, 0, 10715, 1445, 1, 0, 0, 0, 10716, 10721, 3, 1484, 742, 0, 10717, 10718, 3, 1474, 737, 0, 10718, 10719, 3, 1380, 690, 0, 10719, 10721, 1, 0, 0, 0, 10720, 10716, 1, 0, 0, 0, 10720, 10717, 1, 0, 0, 0, 10721, 1447, 1, 0, 0, 0, 10722, 10758, 3, 1456, 728, 0, 10723, 10758, 3, 1454, 727, 0, 10724, 10758, 3, 1458, 729, 0, 10725, 10758, 3, 1452, 726, 0, 10726, 10758, 3, 1450, 725, 0, 10727, 10737, 3, 1444, 722, 0, 10728, 10738, 3, 1458, 729, 0, 10729, 10730, 5, 2, 0, 0, 10730, 10732, 3, 1338, 669, 0, 10731, 10733, 3, 1042, 521, 0, 10732, 10731, 1, 0, 0, 0, 10732, 10733, 1, 0, 0, 0, 10733, 10734, 1, 0, 0, 0, 10734, 10735, 5, 3, 0, 0, 10735, 10736, 3, 1458, 729, 0, 10736, 10738, 1, 0, 0, 0, 10737, 10728, 1, 0, 0, 0, 10737, 10729, 1, 0, 0, 0, 10738, 10758, 1, 0, 0, 0, 10739, 10740, 3, 1174, 587, 0, 10740, 10741, 3, 1458, 729, 0, 10741, 10758, 1, 0, 0, 0, 10742, 10752, 3, 1202, 601, 0, 10743, 10745, 3, 1458, 729, 0, 10744, 10746, 3, 1206, 603, 0, 10745, 10744, 1, 0, 0, 0, 10745, 10746, 1, 0, 0, 0, 10746, 10753, 1, 0, 0, 0, 10747, 10748, 5, 2, 0, 0, 10748, 10749, 3, 1456, 728, 0, 10749, 10750, 5, 3, 0, 0, 10750, 10751, 3, 1458, 729, 0, 10751, 10753, 1, 0, 0, 0, 10752, 10743, 1, 0, 0, 0, 10752, 10747, 1, 0, 0, 0, 10753, 10758, 1, 0, 0, 0, 10754, 10758, 5, 96, 0, 0, 10755, 10758, 5, 60, 0, 0, 10756, 10758, 5, 78, 0, 0, 10757, 10722, 1, 0, 0, 0, 10757, 10723, 1, 0, 0, 0, 10757, 10724, 1, 0, 0, 0, 10757, 10725, 1, 0, 0, 0, 10757, 10726, 1, 0, 0, 0, 10757, 10727, 1, 0, 0, 0, 10757, 10739, 1, 0, 0, 0, 10757, 10742, 1, 0, 0, 0, 10757, 10754, 1, 0, 0, 0, 10757, 10755, 1, 0, 0, 0, 10757, 10756, 1, 0, 0, 0, 10758, 1449, 1, 0, 0, 0, 10759, 10760, 5, 567, 0, 0, 10760, 1451, 1, 0, 0, 0, 10761, 10762, 5, 563, 0, 0, 10762, 1453, 1, 0, 0, 0, 10763, 10764, 5, 573, 0, 0, 10764, 1455, 1, 0, 0, 0, 10765, 10766, 5, 571, 0, 0, 10766, 1457, 1, 0, 0, 0, 10767, 10769, 3, 1460, 730, 0, 10768, 10770, 3, 1462, 731, 0, 10769, 10768, 1, 0, 0, 0, 10769, 10770, 1, 0, 0, 0, 10770, 1459, 1, 0, 0, 0, 10771, 10783, 5, 558, 0, 0, 10772, 10783, 5, 560, 0, 0, 10773, 10777, 5, 562, 0, 0, 10774, 10776, 5, 588, 0, 0, 10775, 10774, 1, 0, 0, 0, 10776, 10779, 1, 0, 0, 0, 10777, 10775, 1, 0, 0, 0, 10777, 10778, 1, 0, 0, 0, 10778, 10780, 1, 0, 0, 0, 10779, 10777, 1, 0, 0, 0, 10780, 10783, 5, 589, 0, 0, 10781, 10783, 5, 584, 0, 0, 10782, 10771, 1, 0, 0, 0, 10782, 10772, 1, 0, 0, 0, 10782, 10773, 1, 0, 0, 0, 10782, 10781, 1, 0, 0, 0, 10783, 1461, 1, 0, 0, 0, 10784, 10785, 5, 487, 0, 0, 10785, 10786, 3, 1460, 730, 0, 10786, 1463, 1, 0, 0, 0, 10787, 10793, 3, 1456, 728, 0, 10788, 10789, 5, 12, 0, 0, 10789, 10793, 3, 1456, 728, 0, 10790, 10791, 5, 13, 0, 0, 10791, 10793, 3, 1456, 728, 0, 10792, 10787, 1, 0, 0, 0, 10792, 10788, 1, 0, 0, 0, 10792, 10790, 1, 0, 0, 0, 10793, 1465, 1, 0, 0, 0, 10794, 10795, 3, 1470, 735, 0, 10795, 1467, 1, 0, 0, 0, 10796, 10797, 3, 1470, 735, 0, 10797, 1469, 1, 0, 0, 0, 10798, 10804, 3, 1488, 744, 0, 10799, 10804, 5, 52, 0, 0, 10800, 10804, 5, 49, 0, 0, 10801, 10804, 5, 89, 0, 0, 10802, 10804, 5, 524, 0, 0, 10803, 10798, 1, 0, 0, 0, 10803, 10799, 1, 0, 0, 0, 10803, 10800, 1, 0, 0, 0, 10803, 10801, 1, 0, 0, 0, 10803, 10802, 1, 0, 0, 0, 10804, 1471, 1, 0, 0, 0, 10805, 10810, 3, 1470, 735, 0, 10806, 10807, 5, 6, 0, 0, 10807, 10809, 3, 1470, 735, 0, 10808, 10806, 1, 0, 0, 0, 10809, 10812, 1, 0, 0, 0, 10810, 10808, 1, 0, 0, 0, 10810, 10811, 1, 0, 0, 0, 10811, 1473, 1, 0, 0, 0, 10812, 10810, 1, 0, 0, 0, 10813, 10818, 3, 1492, 746, 0, 10814, 10818, 3, 1496, 748, 0, 10815, 10818, 3, 1498, 749, 0, 10816, 10818, 3, 1734, 867, 0, 10817, 10813, 1, 0, 0, 0, 10817, 10814, 1, 0, 0, 0, 10817, 10815, 1, 0, 0, 0, 10817, 10816, 1, 0, 0, 0, 10818, 1475, 1, 0, 0, 0, 10819, 10820, 3, 1492, 746, 0, 10820, 1477, 1, 0, 0, 0, 10821, 10834, 3, 710, 355, 0, 10822, 10823, 5, 2, 0, 0, 10823, 10824, 3, 1212, 606, 0, 10824, 10825, 5, 3, 0, 0, 10825, 10826, 1, 0, 0, 0, 10826, 10828, 3, 1492, 746, 0, 10827, 10829, 3, 650, 325, 0, 10828, 10827, 1, 0, 0, 0, 10828, 10829, 1, 0, 0, 0, 10829, 10831, 1, 0, 0, 0, 10830, 10832, 3, 652, 326, 0, 10831, 10830, 1, 0, 0, 0, 10831, 10832, 1, 0, 0, 0, 10832, 10834, 1, 0, 0, 0, 10833, 10821, 1, 0, 0, 0, 10833, 10822, 1, 0, 0, 0, 10834, 1479, 1, 0, 0, 0, 10835, 10836, 5, 105, 0, 0, 10836, 10838, 3, 132, 66, 0, 10837, 10835, 1, 0, 0, 0, 10837, 10838, 1, 0, 0, 0, 10838, 10840, 1, 0, 0, 0, 10839, 10841, 3, 286, 143, 0, 10840, 10839, 1, 0, 0, 0, 10840, 10841, 1, 0, 0, 0, 10841, 1481, 1, 0, 0, 0, 10842, 10847, 3, 1492, 746, 0, 10843, 10847, 3, 1496, 748, 0, 10844, 10847, 3, 1734, 867, 0, 10845, 10847, 3, 1500, 750, 0, 10846, 10842, 1, 0, 0, 0, 10846, 10843, 1, 0, 0, 0, 10846, 10844, 1, 0, 0, 0, 10846, 10845, 1, 0, 0, 0, 10847, 1483, 1, 0, 0, 0, 10848, 10853, 3, 1492, 746, 0, 10849, 10853, 3, 1496, 748, 0, 10850, 10853, 3, 1734, 867, 0, 10851, 10853, 3, 1500, 750, 0, 10852, 10848, 1, 0, 0, 0, 10852, 10849, 1, 0, 0, 0, 10852, 10850, 1, 0, 0, 0, 10852, 10851, 1, 0, 0, 0, 10853, 1485, 1, 0, 0, 0, 10854, 10857, 3, 1432, 716, 0, 10855, 10857, 3, 1500, 750, 0, 10856, 10854, 1, 0, 0, 0, 10856, 10855, 1, 0, 0, 0, 10857, 1487, 1, 0, 0, 0, 10858, 10863, 3, 1492, 746, 0, 10859, 10863, 3, 1496, 748, 0, 10860, 10863, 3, 1498, 749, 0, 10861, 10863, 3, 1500, 750, 0, 10862, 10858, 1, 0, 0, 0, 10862, 10859, 1, 0, 0, 0, 10862, 10860, 1, 0, 0, 0, 10862, 10861, 1, 0, 0, 0, 10863, 1489, 1, 0, 0, 0, 10864, 10871, 3, 1492, 746, 0, 10865, 10871, 3, 1734, 867, 0, 10866, 10871, 3, 1496, 748, 0, 10867, 10871, 3, 1498, 749, 0, 10868, 10871, 3, 1500, 750, 0, 10869, 10871, 3, 1502, 751, 0, 10870, 10864, 1, 0, 0, 0, 10870, 10865, 1, 0, 0, 0, 10870, 10866, 1, 0, 0, 0, 10870, 10867, 1, 0, 0, 0, 10870, 10868, 1, 0, 0, 0, 10870, 10869, 1, 0, 0, 0, 10871, 1491, 1, 0, 0, 0, 10872, 10874, 5, 549, 0, 0, 10873, 10875, 3, 1462, 731, 0, 10874, 10873, 1, 0, 0, 0, 10874, 10875, 1, 0, 0, 0, 10875, 10883, 1, 0, 0, 0, 10876, 10883, 3, 1458, 729, 0, 10877, 10883, 5, 550, 0, 0, 10878, 10883, 5, 554, 0, 0, 10879, 10883, 3, 1256, 628, 0, 10880, 10883, 3, 1494, 747, 0, 10881, 10883, 3, 1734, 867, 0, 10882, 10872, 1, 0, 0, 0, 10882, 10876, 1, 0, 0, 0, 10882, 10877, 1, 0, 0, 0, 10882, 10878, 1, 0, 0, 0, 10882, 10879, 1, 0, 0, 0, 10882, 10880, 1, 0, 0, 0, 10882, 10881, 1, 0, 0, 0, 10883, 1493, 1, 0, 0, 0, 10884, 10885, 5, 575, 0, 0, 10885, 1495, 1, 0, 0, 0, 10886, 10887, 7, 78, 0, 0, 10887, 1497, 1, 0, 0, 0, 10888, 10940, 5, 387, 0, 0, 10889, 10940, 5, 388, 0, 0, 10890, 10940, 3, 1184, 592, 0, 10891, 10940, 5, 390, 0, 0, 10892, 10940, 5, 391, 0, 0, 10893, 10940, 3, 1192, 596, 0, 10894, 10940, 5, 393, 0, 0, 10895, 10940, 5, 394, 0, 0, 10896, 10940, 5, 395, 0, 0, 10897, 10940, 5, 396, 0, 0, 10898, 10940, 5, 397, 0, 0, 10899, 10940, 5, 398, 0, 0, 10900, 10940, 5, 399, 0, 0, 10901, 10940, 5, 470, 0, 0, 10902, 10940, 5, 400, 0, 0, 10903, 10940, 5, 401, 0, 0, 10904, 10940, 5, 402, 0, 0, 10905, 10940, 5, 403, 0, 0, 10906, 10940, 5, 404, 0, 0, 10907, 10940, 5, 405, 0, 0, 10908, 10940, 5, 406, 0, 0, 10909, 10940, 5, 407, 0, 0, 10910, 10940, 5, 489, 0, 0, 10911, 10940, 5, 408, 0, 0, 10912, 10940, 3, 1180, 590, 0, 10913, 10940, 5, 453, 0, 0, 10914, 10940, 5, 410, 0, 0, 10915, 10940, 5, 411, 0, 0, 10916, 10940, 5, 412, 0, 0, 10917, 10940, 5, 413, 0, 0, 10918, 10940, 5, 414, 0, 0, 10919, 10940, 5, 415, 0, 0, 10920, 10940, 5, 416, 0, 0, 10921, 10940, 5, 417, 0, 0, 10922, 10940, 5, 418, 0, 0, 10923, 10940, 5, 419, 0, 0, 10924, 10940, 5, 420, 0, 0, 10925, 10940, 5, 421, 0, 0, 10926, 10940, 5, 422, 0, 0, 10927, 10940, 5, 423, 0, 0, 10928, 10940, 5, 424, 0, 0, 10929, 10940, 5, 425, 0, 0, 10930, 10940, 5, 426, 0, 0, 10931, 10940, 5, 427, 0, 0, 10932, 10940, 5, 428, 0, 0, 10933, 10940, 5, 476, 0, 0, 10934, 10940, 5, 429, 0, 0, 10935, 10940, 5, 430, 0, 0, 10936, 10940, 5, 431, 0, 0, 10937, 10940, 5, 432, 0, 0, 10938, 10940, 5, 474, 0, 0, 10939, 10888, 1, 0, 0, 0, 10939, 10889, 1, 0, 0, 0, 10939, 10890, 1, 0, 0, 0, 10939, 10891, 1, 0, 0, 0, 10939, 10892, 1, 0, 0, 0, 10939, 10893, 1, 0, 0, 0, 10939, 10894, 1, 0, 0, 0, 10939, 10895, 1, 0, 0, 0, 10939, 10896, 1, 0, 0, 0, 10939, 10897, 1, 0, 0, 0, 10939, 10898, 1, 0, 0, 0, 10939, 10899, 1, 0, 0, 0, 10939, 10900, 1, 0, 0, 0, 10939, 10901, 1, 0, 0, 0, 10939, 10902, 1, 0, 0, 0, 10939, 10903, 1, 0, 0, 0, 10939, 10904, 1, 0, 0, 0, 10939, 10905, 1, 0, 0, 0, 10939, 10906, 1, 0, 0, 0, 10939, 10907, 1, 0, 0, 0, 10939, 10908, 1, 0, 0, 0, 10939, 10909, 1, 0, 0, 0, 10939, 10910, 1, 0, 0, 0, 10939, 10911, 1, 0, 0, 0, 10939, 10912, 1, 0, 0, 0, 10939, 10913, 1, 0, 0, 0, 10939, 10914, 1, 0, 0, 0, 10939, 10915, 1, 0, 0, 0, 10939, 10916, 1, 0, 0, 0, 10939, 10917, 1, 0, 0, 0, 10939, 10918, 1, 0, 0, 0, 10939, 10919, 1, 0, 0, 0, 10939, 10920, 1, 0, 0, 0, 10939, 10921, 1, 0, 0, 0, 10939, 10922, 1, 0, 0, 0, 10939, 10923, 1, 0, 0, 0, 10939, 10924, 1, 0, 0, 0, 10939, 10925, 1, 0, 0, 0, 10939, 10926, 1, 0, 0, 0, 10939, 10927, 1, 0, 0, 0, 10939, 10928, 1, 0, 0, 0, 10939, 10929, 1, 0, 0, 0, 10939, 10930, 1, 0, 0, 0, 10939, 10931, 1, 0, 0, 0, 10939, 10932, 1, 0, 0, 0, 10939, 10933, 1, 0, 0, 0, 10939, 10934, 1, 0, 0, 0, 10939, 10935, 1, 0, 0, 0, 10939, 10936, 1, 0, 0, 0, 10939, 10937, 1, 0, 0, 0, 10939, 10938, 1, 0, 0, 0, 10940, 1499, 1, 0, 0, 0, 10941, 10942, 7, 79, 0, 0, 10942, 1501, 1, 0, 0, 0, 10943, 10944, 7, 80, 0, 0, 10944, 1503, 1, 0, 0, 0, 10945, 10946, 3, 1506, 753, 0, 10946, 10947, 3, 1516, 758, 0, 10947, 10948, 3, 1514, 757, 0, 10948, 1505, 1, 0, 0, 0, 10949, 10951, 3, 1508, 754, 0, 10950, 10949, 1, 0, 0, 0, 10951, 10954, 1, 0, 0, 0, 10952, 10950, 1, 0, 0, 0, 10952, 10953, 1, 0, 0, 0, 10953, 1507, 1, 0, 0, 0, 10954, 10952, 1, 0, 0, 0, 10955, 10956, 3, 1510, 755, 0, 10956, 10957, 5, 279, 0, 0, 10957, 10958, 5, 490, 0, 0, 10958, 10976, 1, 0, 0, 0, 10959, 10960, 3, 1510, 755, 0, 10960, 10961, 5, 491, 0, 0, 10961, 10962, 3, 1512, 756, 0, 10962, 10976, 1, 0, 0, 0, 10963, 10964, 3, 1510, 755, 0, 10964, 10965, 5, 492, 0, 0, 10965, 10966, 5, 493, 0, 0, 10966, 10976, 1, 0, 0, 0, 10967, 10968, 3, 1510, 755, 0, 10968, 10969, 5, 492, 0, 0, 10969, 10970, 5, 494, 0, 0, 10970, 10976, 1, 0, 0, 0, 10971, 10972, 3, 1510, 755, 0, 10972, 10973, 5, 492, 0, 0, 10973, 10974, 5, 495, 0, 0, 10974, 10976, 1, 0, 0, 0, 10975, 10955, 1, 0, 0, 0, 10975, 10959, 1, 0, 0, 0, 10975, 10963, 1, 0, 0, 0, 10975, 10967, 1, 0, 0, 0, 10975, 10971, 1, 0, 0, 0, 10976, 1509, 1, 0, 0, 0, 10977, 10978, 5, 29, 0, 0, 10978, 1511, 1, 0, 0, 0, 10979, 10984, 3, 1458, 729, 0, 10980, 10984, 3, 1502, 751, 0, 10981, 10984, 3, 1734, 867, 0, 10982, 10984, 3, 1496, 748, 0, 10983, 10979, 1, 0, 0, 0, 10983, 10980, 1, 0, 0, 0, 10983, 10981, 1, 0, 0, 0, 10983, 10982, 1, 0, 0, 0, 10984, 1513, 1, 0, 0, 0, 10985, 10988, 1, 0, 0, 0, 10986, 10988, 5, 7, 0, 0, 10987, 10985, 1, 0, 0, 0, 10987, 10986, 1, 0, 0, 0, 10988, 1515, 1, 0, 0, 0, 10989, 10990, 3, 1518, 759, 0, 10990, 10991, 5, 146, 0, 0, 10991, 10992, 3, 1560, 780, 0, 10992, 10993, 3, 1714, 857, 0, 10993, 10994, 5, 454, 0, 0, 10994, 10995, 3, 1728, 864, 0, 10995, 1517, 1, 0, 0, 0, 10996, 11001, 3, 1724, 862, 0, 10997, 10999, 3, 1520, 760, 0, 10998, 11000, 3, 1522, 761, 0, 10999, 10998, 1, 0, 0, 0, 10999, 11000, 1, 0, 0, 0, 11000, 11002, 1, 0, 0, 0, 11001, 10997, 1, 0, 0, 0, 11001, 11002, 1, 0, 0, 0, 11002, 1519, 1, 0, 0, 0, 11003, 11004, 5, 178, 0, 0, 11004, 1521, 1, 0, 0, 0, 11005, 11007, 3, 1526, 763, 0, 11006, 11005, 1, 0, 0, 0, 11007, 11008, 1, 0, 0, 0, 11008, 11006, 1, 0, 0, 0, 11008, 11009, 1, 0, 0, 0, 11009, 1523, 1, 0, 0, 0, 11010, 11011, 5, 18, 0, 0, 11011, 11012, 3, 1732, 866, 0, 11012, 11013, 5, 19, 0, 0, 11013, 1525, 1, 0, 0, 0, 11014, 11018, 3, 1528, 764, 0, 11015, 11018, 5, 178, 0, 0, 11016, 11018, 3, 1524, 762, 0, 11017, 11014, 1, 0, 0, 0, 11017, 11015, 1, 0, 0, 0, 11017, 11016, 1, 0, 0, 0, 11018, 1527, 1, 0, 0, 0, 11019, 11035, 3, 1544, 772, 0, 11020, 11021, 5, 496, 0, 0, 11021, 11022, 5, 62, 0, 0, 11022, 11036, 3, 1542, 771, 0, 11023, 11024, 3, 1546, 773, 0, 11024, 11025, 3, 1548, 774, 0, 11025, 11026, 3, 1550, 775, 0, 11026, 11027, 3, 1552, 776, 0, 11027, 11028, 3, 1554, 777, 0, 11028, 11036, 1, 0, 0, 0, 11029, 11030, 3, 1530, 765, 0, 11030, 11031, 5, 172, 0, 0, 11031, 11032, 3, 1534, 767, 0, 11032, 11033, 3, 1540, 770, 0, 11033, 11034, 3, 1532, 766, 0, 11034, 11036, 1, 0, 0, 0, 11035, 11020, 1, 0, 0, 0, 11035, 11023, 1, 0, 0, 0, 11035, 11029, 1, 0, 0, 0, 11036, 11037, 1, 0, 0, 0, 11037, 11038, 5, 7, 0, 0, 11038, 1529, 1, 0, 0, 0, 11039, 11044, 1, 0, 0, 0, 11040, 11041, 5, 269, 0, 0, 11041, 11044, 5, 324, 0, 0, 11042, 11044, 5, 324, 0, 0, 11043, 11039, 1, 0, 0, 0, 11043, 11040, 1, 0, 0, 0, 11043, 11042, 1, 0, 0, 0, 11044, 1531, 1, 0, 0, 0, 11045, 11046, 3, 1000, 500, 0, 11046, 1533, 1, 0, 0, 0, 11047, 11053, 1, 0, 0, 0, 11048, 11049, 5, 2, 0, 0, 11049, 11050, 3, 1536, 768, 0, 11050, 11051, 5, 3, 0, 0, 11051, 11053, 1, 0, 0, 0, 11052, 11047, 1, 0, 0, 0, 11052, 11048, 1, 0, 0, 0, 11053, 1535, 1, 0, 0, 0, 11054, 11059, 3, 1538, 769, 0, 11055, 11056, 5, 6, 0, 0, 11056, 11058, 3, 1538, 769, 0, 11057, 11055, 1, 0, 0, 0, 11058, 11061, 1, 0, 0, 0, 11059, 11057, 1, 0, 0, 0, 11059, 11060, 1, 0, 0, 0, 11060, 1537, 1, 0, 0, 0, 11061, 11059, 1, 0, 0, 0, 11062, 11063, 3, 1544, 772, 0, 11063, 11064, 3, 1548, 774, 0, 11064, 1539, 1, 0, 0, 0, 11065, 11066, 7, 81, 0, 0, 11066, 1541, 1, 0, 0, 0, 11067, 11070, 5, 28, 0, 0, 11068, 11070, 3, 1474, 737, 0, 11069, 11067, 1, 0, 0, 0, 11069, 11068, 1, 0, 0, 0, 11070, 1543, 1, 0, 0, 0, 11071, 11072, 3, 1732, 866, 0, 11072, 1545, 1, 0, 0, 0, 11073, 11076, 1, 0, 0, 0, 11074, 11076, 5, 497, 0, 0, 11075, 11073, 1, 0, 0, 0, 11075, 11074, 1, 0, 0, 0, 11076, 1547, 1, 0, 0, 0, 11077, 11078, 3, 1168, 584, 0, 11078, 1549, 1, 0, 0, 0, 11079, 11083, 1, 0, 0, 0, 11080, 11081, 5, 43, 0, 0, 11081, 11083, 3, 558, 279, 0, 11082, 11079, 1, 0, 0, 0, 11082, 11080, 1, 0, 0, 0, 11083, 1551, 1, 0, 0, 0, 11084, 11088, 1, 0, 0, 0, 11085, 11086, 5, 77, 0, 0, 11086, 11088, 5, 78, 0, 0, 11087, 11084, 1, 0, 0, 0, 11087, 11085, 1, 0, 0, 0, 11088, 1553, 1, 0, 0, 0, 11089, 11094, 1, 0, 0, 0, 11090, 11091, 3, 1556, 778, 0, 11091, 11092, 3, 1736, 868, 0, 11092, 11094, 1, 0, 0, 0, 11093, 11089, 1, 0, 0, 0, 11093, 11090, 1, 0, 0, 0, 11094, 1555, 1, 0, 0, 0, 11095, 11098, 3, 1558, 779, 0, 11096, 11098, 5, 53, 0, 0, 11097, 11095, 1, 0, 0, 0, 11097, 11096, 1, 0, 0, 0, 11098, 1557, 1, 0, 0, 0, 11099, 11100, 7, 82, 0, 0, 11100, 1559, 1, 0, 0, 0, 11101, 11103, 3, 1562, 781, 0, 11102, 11101, 1, 0, 0, 0, 11103, 11106, 1, 0, 0, 0, 11104, 11102, 1, 0, 0, 0, 11104, 11105, 1, 0, 0, 0, 11105, 1561, 1, 0, 0, 0, 11106, 11104, 1, 0, 0, 0, 11107, 11108, 3, 1516, 758, 0, 11108, 11109, 5, 7, 0, 0, 11109, 11135, 1, 0, 0, 0, 11110, 11135, 3, 1628, 814, 0, 11111, 11135, 3, 1632, 816, 0, 11112, 11135, 3, 1570, 785, 0, 11113, 11135, 3, 1586, 793, 0, 11114, 11135, 3, 1592, 796, 0, 11115, 11135, 3, 1602, 801, 0, 11116, 11135, 3, 1604, 802, 0, 11117, 11135, 3, 1606, 803, 0, 11118, 11135, 3, 1620, 810, 0, 11119, 11135, 3, 1624, 812, 0, 11120, 11135, 3, 1644, 822, 0, 11121, 11135, 3, 1650, 825, 0, 11122, 11135, 3, 1652, 826, 0, 11123, 11135, 3, 1564, 782, 0, 11124, 11135, 3, 1566, 783, 0, 11125, 11135, 3, 1572, 786, 0, 11126, 11135, 3, 1660, 830, 0, 11127, 11135, 3, 1672, 836, 0, 11128, 11135, 3, 1680, 840, 0, 11129, 11135, 3, 1700, 850, 0, 11130, 11135, 3, 1702, 851, 0, 11131, 11135, 3, 1704, 852, 0, 11132, 11135, 3, 1706, 853, 0, 11133, 11135, 3, 1710, 855, 0, 11134, 11107, 1, 0, 0, 0, 11134, 11110, 1, 0, 0, 0, 11134, 11111, 1, 0, 0, 0, 11134, 11112, 1, 0, 0, 0, 11134, 11113, 1, 0, 0, 0, 11134, 11114, 1, 0, 0, 0, 11134, 11115, 1, 0, 0, 0, 11134, 11116, 1, 0, 0, 0, 11134, 11117, 1, 0, 0, 0, 11134, 11118, 1, 0, 0, 0, 11134, 11119, 1, 0, 0, 0, 11134, 11120, 1, 0, 0, 0, 11134, 11121, 1, 0, 0, 0, 11134, 11122, 1, 0, 0, 0, 11134, 11123, 1, 0, 0, 0, 11134, 11124, 1, 0, 0, 0, 11134, 11125, 1, 0, 0, 0, 11134, 11126, 1, 0, 0, 0, 11134, 11127, 1, 0, 0, 0, 11134, 11128, 1, 0, 0, 0, 11134, 11129, 1, 0, 0, 0, 11134, 11130, 1, 0, 0, 0, 11134, 11131, 1, 0, 0, 0, 11134, 11132, 1, 0, 0, 0, 11134, 11133, 1, 0, 0, 0, 11135, 1563, 1, 0, 0, 0, 11136, 11137, 5, 498, 0, 0, 11137, 11138, 3, 1740, 870, 0, 11138, 11139, 5, 7, 0, 0, 11139, 1565, 1, 0, 0, 0, 11140, 11141, 5, 433, 0, 0, 11141, 11147, 3, 1732, 866, 0, 11142, 11143, 5, 2, 0, 0, 11143, 11144, 3, 1568, 784, 0, 11144, 11145, 5, 3, 0, 0, 11145, 11146, 5, 7, 0, 0, 11146, 11148, 1, 0, 0, 0, 11147, 11142, 1, 0, 0, 0, 11147, 11148, 1, 0, 0, 0, 11148, 11157, 1, 0, 0, 0, 11149, 11150, 5, 57, 0, 0, 11150, 11151, 3, 1732, 866, 0, 11151, 11152, 5, 2, 0, 0, 11152, 11153, 3, 1568, 784, 0, 11153, 11154, 5, 3, 0, 0, 11154, 11155, 5, 7, 0, 0, 11155, 11157, 1, 0, 0, 0, 11156, 11140, 1, 0, 0, 0, 11156, 11149, 1, 0, 0, 0, 11157, 1567, 1, 0, 0, 0, 11158, 11161, 1, 0, 0, 0, 11159, 11161, 3, 1328, 664, 0, 11160, 11158, 1, 0, 0, 0, 11160, 11159, 1, 0, 0, 0, 11161, 1569, 1, 0, 0, 0, 11162, 11163, 3, 1584, 792, 0, 11163, 11164, 3, 1558, 779, 0, 11164, 11165, 3, 1736, 868, 0, 11165, 11166, 5, 7, 0, 0, 11166, 1571, 1, 0, 0, 0, 11167, 11168, 5, 499, 0, 0, 11168, 11169, 3, 1574, 787, 0, 11169, 11170, 5, 500, 0, 0, 11170, 11171, 3, 1576, 788, 0, 11171, 11172, 5, 7, 0, 0, 11172, 1573, 1, 0, 0, 0, 11173, 11177, 1, 0, 0, 0, 11174, 11177, 5, 434, 0, 0, 11175, 11177, 5, 501, 0, 0, 11176, 11173, 1, 0, 0, 0, 11176, 11174, 1, 0, 0, 0, 11176, 11175, 1, 0, 0, 0, 11177, 1575, 1, 0, 0, 0, 11178, 11183, 3, 1578, 789, 0, 11179, 11180, 5, 6, 0, 0, 11180, 11182, 3, 1578, 789, 0, 11181, 11179, 1, 0, 0, 0, 11182, 11185, 1, 0, 0, 0, 11183, 11181, 1, 0, 0, 0, 11183, 11184, 1, 0, 0, 0, 11184, 1577, 1, 0, 0, 0, 11185, 11183, 1, 0, 0, 0, 11186, 11187, 3, 1582, 791, 0, 11187, 11188, 3, 1558, 779, 0, 11188, 11189, 3, 1580, 790, 0, 11189, 1579, 1, 0, 0, 0, 11190, 11191, 3, 1474, 737, 0, 11191, 1581, 1, 0, 0, 0, 11192, 11193, 3, 1584, 792, 0, 11193, 1583, 1, 0, 0, 0, 11194, 11197, 3, 558, 279, 0, 11195, 11197, 5, 28, 0, 0, 11196, 11194, 1, 0, 0, 0, 11196, 11195, 1, 0, 0, 0, 11197, 11204, 1, 0, 0, 0, 11198, 11199, 5, 4, 0, 0, 11199, 11200, 3, 1742, 871, 0, 11200, 11201, 5, 5, 0, 0, 11201, 11203, 1, 0, 0, 0, 11202, 11198, 1, 0, 0, 0, 11203, 11206, 1, 0, 0, 0, 11204, 11202, 1, 0, 0, 0, 11204, 11205, 1, 0, 0, 0, 11205, 1585, 1, 0, 0, 0, 11206, 11204, 1, 0, 0, 0, 11207, 11208, 5, 220, 0, 0, 11208, 11209, 3, 1738, 869, 0, 11209, 11210, 5, 93, 0, 0, 11210, 11211, 3, 1560, 780, 0, 11211, 11212, 3, 1588, 794, 0, 11212, 11213, 3, 1590, 795, 0, 11213, 11214, 5, 454, 0, 0, 11214, 11215, 5, 220, 0, 0, 11215, 11216, 5, 7, 0, 0, 11216, 1587, 1, 0, 0, 0, 11217, 11218, 5, 502, 0, 0, 11218, 11219, 3, 1212, 606, 0, 11219, 11220, 5, 93, 0, 0, 11220, 11221, 3, 1560, 780, 0, 11221, 11223, 1, 0, 0, 0, 11222, 11217, 1, 0, 0, 0, 11223, 11226, 1, 0, 0, 0, 11224, 11222, 1, 0, 0, 0, 11224, 11225, 1, 0, 0, 0, 11225, 1589, 1, 0, 0, 0, 11226, 11224, 1, 0, 0, 0, 11227, 11231, 1, 0, 0, 0, 11228, 11229, 5, 58, 0, 0, 11229, 11231, 3, 1560, 780, 0, 11230, 11227, 1, 0, 0, 0, 11230, 11228, 1, 0, 0, 0, 11231, 1591, 1, 0, 0, 0, 11232, 11233, 5, 40, 0, 0, 11233, 11234, 3, 1594, 797, 0, 11234, 11235, 3, 1596, 798, 0, 11235, 11236, 3, 1600, 800, 0, 11236, 11237, 5, 454, 0, 0, 11237, 11238, 5, 40, 0, 0, 11238, 11239, 5, 7, 0, 0, 11239, 1593, 1, 0, 0, 0, 11240, 11243, 1, 0, 0, 0, 11241, 11243, 3, 1736, 868, 0, 11242, 11240, 1, 0, 0, 0, 11242, 11241, 1, 0, 0, 0, 11243, 1595, 1, 0, 0, 0, 11244, 11246, 3, 1598, 799, 0, 11245, 11244, 1, 0, 0, 0, 11246, 11247, 1, 0, 0, 0, 11247, 11245, 1, 0, 0, 0, 11247, 11248, 1, 0, 0, 0, 11248, 1597, 1, 0, 0, 0, 11249, 11250, 5, 102, 0, 0, 11250, 11251, 3, 1328, 664, 0, 11251, 11252, 5, 93, 0, 0, 11252, 11253, 3, 1560, 780, 0, 11253, 1599, 1, 0, 0, 0, 11254, 11258, 1, 0, 0, 0, 11255, 11256, 5, 58, 0, 0, 11256, 11258, 3, 1560, 780, 0, 11257, 11254, 1, 0, 0, 0, 11257, 11255, 1, 0, 0, 0, 11258, 1601, 1, 0, 0, 0, 11259, 11260, 3, 1726, 863, 0, 11260, 11261, 3, 1648, 824, 0, 11261, 1603, 1, 0, 0, 0, 11262, 11263, 3, 1726, 863, 0, 11263, 11264, 5, 503, 0, 0, 11264, 11265, 3, 1744, 872, 0, 11265, 11266, 3, 1648, 824, 0, 11266, 1605, 1, 0, 0, 0, 11267, 11268, 3, 1726, 863, 0, 11268, 11269, 5, 62, 0, 0, 11269, 11270, 3, 1608, 804, 0, 11270, 11271, 3, 1648, 824, 0, 11271, 1607, 1, 0, 0, 0, 11272, 11273, 3, 1618, 809, 0, 11273, 11289, 5, 68, 0, 0, 11274, 11275, 3, 994, 497, 0, 11275, 11276, 3, 1612, 806, 0, 11276, 11290, 1, 0, 0, 0, 11277, 11290, 3, 1000, 500, 0, 11278, 11290, 3, 926, 463, 0, 11279, 11280, 5, 202, 0, 0, 11280, 11281, 3, 1212, 606, 0, 11281, 11282, 3, 1610, 805, 0, 11282, 11290, 1, 0, 0, 0, 11283, 11284, 3, 1614, 807, 0, 11284, 11285, 3, 1212, 606, 0, 11285, 11286, 5, 24, 0, 0, 11286, 11287, 3, 1212, 606, 0, 11287, 11288, 3, 1616, 808, 0, 11288, 11290, 1, 0, 0, 0, 11289, 11274, 1, 0, 0, 0, 11289, 11277, 1, 0, 0, 0, 11289, 11278, 1, 0, 0, 0, 11289, 11279, 1, 0, 0, 0, 11289, 11283, 1, 0, 0, 0, 11290, 1609, 1, 0, 0, 0, 11291, 11295, 1, 0, 0, 0, 11292, 11293, 5, 100, 0, 0, 11293, 11295, 3, 1328, 664, 0, 11294, 11291, 1, 0, 0, 0, 11294, 11292, 1, 0, 0, 0, 11295, 1611, 1, 0, 0, 0, 11296, 11309, 1, 0, 0, 0, 11297, 11298, 5, 2, 0, 0, 11298, 11303, 3, 1212, 606, 0, 11299, 11300, 5, 6, 0, 0, 11300, 11302, 3, 1212, 606, 0, 11301, 11299, 1, 0, 0, 0, 11302, 11305, 1, 0, 0, 0, 11303, 11301, 1, 0, 0, 0, 11303, 11304, 1, 0, 0, 0, 11304, 11306, 1, 0, 0, 0, 11305, 11303, 1, 0, 0, 0, 11306, 11307, 5, 3, 0, 0, 11307, 11309, 1, 0, 0, 0, 11308, 11296, 1, 0, 0, 0, 11308, 11297, 1, 0, 0, 0, 11309, 1613, 1, 0, 0, 0, 11310, 11313, 1, 0, 0, 0, 11311, 11313, 5, 504, 0, 0, 11312, 11310, 1, 0, 0, 0, 11312, 11311, 1, 0, 0, 0, 11313, 1615, 1, 0, 0, 0, 11314, 11318, 1, 0, 0, 0, 11315, 11316, 5, 147, 0, 0, 11316, 11318, 3, 1212, 606, 0, 11317, 11314, 1, 0, 0, 0, 11317, 11315, 1, 0, 0, 0, 11318, 1617, 1, 0, 0, 0, 11319, 11320, 3, 552, 276, 0, 11320, 1619, 1, 0, 0, 0, 11321, 11322, 3, 1726, 863, 0, 11322, 11323, 5, 505, 0, 0, 11323, 11324, 3, 1618, 809, 0, 11324, 11325, 3, 1622, 811, 0, 11325, 11326, 5, 68, 0, 0, 11326, 11327, 5, 35, 0, 0, 11327, 11328, 3, 1212, 606, 0, 11328, 11329, 3, 1648, 824, 0, 11329, 1621, 1, 0, 0, 0, 11330, 11334, 1, 0, 0, 0, 11331, 11332, 5, 506, 0, 0, 11332, 11334, 3, 1456, 728, 0, 11333, 11330, 1, 0, 0, 0, 11333, 11331, 1, 0, 0, 0, 11334, 1623, 1, 0, 0, 0, 11335, 11336, 3, 1626, 813, 0, 11336, 11338, 3, 1728, 864, 0, 11337, 11339, 3, 1730, 865, 0, 11338, 11337, 1, 0, 0, 0, 11338, 11339, 1, 0, 0, 0, 11339, 11340, 1, 0, 0, 0, 11340, 11341, 5, 7, 0, 0, 11341, 1625, 1, 0, 0, 0, 11342, 11343, 7, 83, 0, 0, 11343, 1627, 1, 0, 0, 0, 11344, 11356, 5, 508, 0, 0, 11345, 11346, 5, 268, 0, 0, 11346, 11357, 3, 1736, 868, 0, 11347, 11353, 5, 509, 0, 0, 11348, 11349, 5, 202, 0, 0, 11349, 11350, 3, 1212, 606, 0, 11350, 11351, 3, 1610, 805, 0, 11351, 11354, 1, 0, 0, 0, 11352, 11354, 3, 1000, 500, 0, 11353, 11348, 1, 0, 0, 0, 11353, 11352, 1, 0, 0, 0, 11354, 11357, 1, 0, 0, 0, 11355, 11357, 3, 1630, 815, 0, 11356, 11345, 1, 0, 0, 0, 11356, 11347, 1, 0, 0, 0, 11356, 11355, 1, 0, 0, 0, 11357, 11358, 1, 0, 0, 0, 11358, 11359, 5, 7, 0, 0, 11359, 1629, 1, 0, 0, 0, 11360, 11363, 1, 0, 0, 0, 11361, 11363, 3, 1736, 868, 0, 11362, 11360, 1, 0, 0, 0, 11362, 11361, 1, 0, 0, 0, 11363, 1631, 1, 0, 0, 0, 11364, 11366, 5, 510, 0, 0, 11365, 11367, 3, 1634, 817, 0, 11366, 11365, 1, 0, 0, 0, 11366, 11367, 1, 0, 0, 0, 11367, 11368, 1, 0, 0, 0, 11368, 11369, 3, 1458, 729, 0, 11369, 11370, 3, 1636, 818, 0, 11370, 11371, 3, 1638, 819, 0, 11371, 11372, 5, 7, 0, 0, 11372, 11399, 1, 0, 0, 0, 11373, 11375, 5, 510, 0, 0, 11374, 11376, 3, 1634, 817, 0, 11375, 11374, 1, 0, 0, 0, 11375, 11376, 1, 0, 0, 0, 11376, 11377, 1, 0, 0, 0, 11377, 11378, 3, 1492, 746, 0, 11378, 11379, 3, 1638, 819, 0, 11379, 11380, 5, 7, 0, 0, 11380, 11399, 1, 0, 0, 0, 11381, 11383, 5, 510, 0, 0, 11382, 11384, 3, 1634, 817, 0, 11383, 11382, 1, 0, 0, 0, 11383, 11384, 1, 0, 0, 0, 11384, 11385, 1, 0, 0, 0, 11385, 11386, 5, 511, 0, 0, 11386, 11387, 3, 1458, 729, 0, 11387, 11388, 3, 1638, 819, 0, 11388, 11389, 5, 7, 0, 0, 11389, 11399, 1, 0, 0, 0, 11390, 11392, 5, 510, 0, 0, 11391, 11393, 3, 1634, 817, 0, 11392, 11391, 1, 0, 0, 0, 11392, 11393, 1, 0, 0, 0, 11393, 11394, 1, 0, 0, 0, 11394, 11395, 3, 1638, 819, 0, 11395, 11396, 5, 7, 0, 0, 11396, 11399, 1, 0, 0, 0, 11397, 11399, 5, 510, 0, 0, 11398, 11364, 1, 0, 0, 0, 11398, 11373, 1, 0, 0, 0, 11398, 11381, 1, 0, 0, 0, 11398, 11390, 1, 0, 0, 0, 11398, 11397, 1, 0, 0, 0, 11399, 1633, 1, 0, 0, 0, 11400, 11401, 7, 84, 0, 0, 11401, 1635, 1, 0, 0, 0, 11402, 11410, 1, 0, 0, 0, 11403, 11404, 5, 6, 0, 0, 11404, 11406, 3, 1212, 606, 0, 11405, 11403, 1, 0, 0, 0, 11406, 11407, 1, 0, 0, 0, 11407, 11405, 1, 0, 0, 0, 11407, 11408, 1, 0, 0, 0, 11408, 11410, 1, 0, 0, 0, 11409, 11402, 1, 0, 0, 0, 11409, 11405, 1, 0, 0, 0, 11410, 1637, 1, 0, 0, 0, 11411, 11415, 1, 0, 0, 0, 11412, 11413, 5, 100, 0, 0, 11413, 11415, 3, 1642, 821, 0, 11414, 11411, 1, 0, 0, 0, 11414, 11412, 1, 0, 0, 0, 11415, 1639, 1, 0, 0, 0, 11416, 11417, 3, 1492, 746, 0, 11417, 11418, 5, 10, 0, 0, 11418, 11419, 3, 1212, 606, 0, 11419, 1641, 1, 0, 0, 0, 11420, 11425, 3, 1640, 820, 0, 11421, 11422, 5, 6, 0, 0, 11422, 11424, 3, 1640, 820, 0, 11423, 11421, 1, 0, 0, 0, 11424, 11427, 1, 0, 0, 0, 11425, 11423, 1, 0, 0, 0, 11425, 11426, 1, 0, 0, 0, 11426, 1643, 1, 0, 0, 0, 11427, 11425, 1, 0, 0, 0, 11428, 11429, 5, 518, 0, 0, 11429, 11430, 3, 1736, 868, 0, 11430, 11431, 3, 1646, 823, 0, 11431, 11432, 5, 7, 0, 0, 11432, 1645, 1, 0, 0, 0, 11433, 11437, 1, 0, 0, 0, 11434, 11435, 5, 6, 0, 0, 11435, 11437, 3, 1736, 868, 0, 11436, 11433, 1, 0, 0, 0, 11436, 11434, 1, 0, 0, 0, 11437, 1647, 1, 0, 0, 0, 11438, 11439, 5, 519, 0, 0, 11439, 11440, 3, 1560, 780, 0, 11440, 11441, 5, 454, 0, 0, 11441, 11442, 5, 519, 0, 0, 11442, 11443, 3, 1728, 864, 0, 11443, 11444, 5, 7, 0, 0, 11444, 1649, 1, 0, 0, 0, 11445, 11446, 3, 1746, 873, 0, 11446, 11447, 5, 7, 0, 0, 11447, 1651, 1, 0, 0, 0, 11448, 11449, 5, 202, 0, 0, 11449, 11457, 3, 1212, 606, 0, 11450, 11451, 3, 1658, 829, 0, 11451, 11452, 3, 1654, 827, 0, 11452, 11458, 1, 0, 0, 0, 11453, 11454, 3, 1654, 827, 0, 11454, 11455, 3, 1658, 829, 0, 11455, 11458, 1, 0, 0, 0, 11456, 11458, 1, 0, 0, 0, 11457, 11450, 1, 0, 0, 0, 11457, 11453, 1, 0, 0, 0, 11457, 11456, 1, 0, 0, 0, 11458, 11459, 1, 0, 0, 0, 11459, 11460, 5, 7, 0, 0, 11460, 1653, 1, 0, 0, 0, 11461, 11465, 1, 0, 0, 0, 11462, 11463, 5, 100, 0, 0, 11463, 11465, 3, 1656, 828, 0, 11464, 11461, 1, 0, 0, 0, 11464, 11462, 1, 0, 0, 0, 11465, 1655, 1, 0, 0, 0, 11466, 11471, 3, 1212, 606, 0, 11467, 11468, 5, 6, 0, 0, 11468, 11470, 3, 1212, 606, 0, 11469, 11467, 1, 0, 0, 0, 11470, 11473, 1, 0, 0, 0, 11471, 11469, 1, 0, 0, 0, 11471, 11472, 1, 0, 0, 0, 11472, 1657, 1, 0, 0, 0, 11473, 11471, 1, 0, 0, 0, 11474, 11481, 1, 0, 0, 0, 11475, 11477, 5, 71, 0, 0, 11476, 11478, 5, 346, 0, 0, 11477, 11476, 1, 0, 0, 0, 11477, 11478, 1, 0, 0, 0, 11478, 11479, 1, 0, 0, 0, 11479, 11481, 3, 1674, 837, 0, 11480, 11474, 1, 0, 0, 0, 11480, 11475, 1, 0, 0, 0, 11481, 1659, 1, 0, 0, 0, 11482, 11500, 5, 520, 0, 0, 11483, 11484, 3, 1712, 856, 0, 11484, 11485, 3, 1668, 834, 0, 11485, 11491, 5, 62, 0, 0, 11486, 11492, 3, 1000, 500, 0, 11487, 11488, 5, 202, 0, 0, 11488, 11489, 3, 1736, 868, 0, 11489, 11490, 3, 1666, 833, 0, 11490, 11492, 1, 0, 0, 0, 11491, 11486, 1, 0, 0, 0, 11491, 11487, 1, 0, 0, 0, 11492, 11501, 1, 0, 0, 0, 11493, 11498, 3, 1474, 737, 0, 11494, 11495, 5, 2, 0, 0, 11495, 11496, 3, 1664, 832, 0, 11496, 11497, 5, 3, 0, 0, 11497, 11499, 1, 0, 0, 0, 11498, 11494, 1, 0, 0, 0, 11498, 11499, 1, 0, 0, 0, 11499, 11501, 1, 0, 0, 0, 11500, 11483, 1, 0, 0, 0, 11500, 11493, 1, 0, 0, 0, 11501, 11502, 1, 0, 0, 0, 11502, 11503, 5, 7, 0, 0, 11503, 1661, 1, 0, 0, 0, 11504, 11505, 3, 1474, 737, 0, 11505, 11506, 5, 20, 0, 0, 11506, 11507, 3, 1212, 606, 0, 11507, 11510, 1, 0, 0, 0, 11508, 11510, 3, 1212, 606, 0, 11509, 11504, 1, 0, 0, 0, 11509, 11508, 1, 0, 0, 0, 11510, 1663, 1, 0, 0, 0, 11511, 11516, 3, 1662, 831, 0, 11512, 11513, 5, 6, 0, 0, 11513, 11515, 3, 1662, 831, 0, 11514, 11512, 1, 0, 0, 0, 11515, 11518, 1, 0, 0, 0, 11516, 11514, 1, 0, 0, 0, 11516, 11517, 1, 0, 0, 0, 11517, 1665, 1, 0, 0, 0, 11518, 11516, 1, 0, 0, 0, 11519, 11523, 1, 0, 0, 0, 11520, 11521, 5, 100, 0, 0, 11521, 11523, 3, 1328, 664, 0, 11522, 11519, 1, 0, 0, 0, 11522, 11520, 1, 0, 0, 0, 11523, 1667, 1, 0, 0, 0, 11524, 11529, 1, 0, 0, 0, 11525, 11526, 3, 1670, 835, 0, 11526, 11527, 5, 324, 0, 0, 11527, 11529, 1, 0, 0, 0, 11528, 11524, 1, 0, 0, 0, 11528, 11525, 1, 0, 0, 0, 11529, 1669, 1, 0, 0, 0, 11530, 11533, 1, 0, 0, 0, 11531, 11533, 5, 269, 0, 0, 11532, 11530, 1, 0, 0, 0, 11532, 11531, 1, 0, 0, 0, 11533, 1671, 1, 0, 0, 0, 11534, 11536, 5, 61, 0, 0, 11535, 11537, 3, 1678, 839, 0, 11536, 11535, 1, 0, 0, 0, 11536, 11537, 1, 0, 0, 0, 11537, 11538, 1, 0, 0, 0, 11538, 11539, 3, 1676, 838, 0, 11539, 11540, 3, 1712, 856, 0, 11540, 11541, 5, 71, 0, 0, 11541, 11542, 3, 1674, 837, 0, 11542, 11543, 5, 7, 0, 0, 11543, 1673, 1, 0, 0, 0, 11544, 11545, 3, 1328, 664, 0, 11545, 1675, 1, 0, 0, 0, 11546, 11550, 1, 0, 0, 0, 11547, 11550, 5, 64, 0, 0, 11548, 11550, 5, 68, 0, 0, 11549, 11546, 1, 0, 0, 0, 11549, 11547, 1, 0, 0, 0, 11549, 11548, 1, 0, 0, 0, 11550, 1677, 1, 0, 0, 0, 11551, 11567, 5, 268, 0, 0, 11552, 11567, 5, 293, 0, 0, 11553, 11567, 5, 207, 0, 0, 11554, 11567, 5, 249, 0, 0, 11555, 11556, 5, 130, 0, 0, 11556, 11567, 3, 1212, 606, 0, 11557, 11558, 5, 307, 0, 0, 11558, 11567, 3, 1212, 606, 0, 11559, 11567, 3, 1212, 606, 0, 11560, 11567, 5, 30, 0, 0, 11561, 11564, 7, 85, 0, 0, 11562, 11565, 3, 1212, 606, 0, 11563, 11565, 5, 30, 0, 0, 11564, 11562, 1, 0, 0, 0, 11564, 11563, 1, 0, 0, 0, 11564, 11565, 1, 0, 0, 0, 11565, 11567, 1, 0, 0, 0, 11566, 11551, 1, 0, 0, 0, 11566, 11552, 1, 0, 0, 0, 11566, 11553, 1, 0, 0, 0, 11566, 11554, 1, 0, 0, 0, 11566, 11555, 1, 0, 0, 0, 11566, 11557, 1, 0, 0, 0, 11566, 11559, 1, 0, 0, 0, 11566, 11560, 1, 0, 0, 0, 11566, 11561, 1, 0, 0, 0, 11567, 1679, 1, 0, 0, 0, 11568, 11570, 5, 265, 0, 0, 11569, 11571, 3, 1678, 839, 0, 11570, 11569, 1, 0, 0, 0, 11570, 11571, 1, 0, 0, 0, 11571, 11572, 1, 0, 0, 0, 11572, 11573, 3, 1712, 856, 0, 11573, 11574, 5, 7, 0, 0, 11574, 1681, 1, 0, 0, 0, 11575, 11577, 3, 1014, 507, 0, 11576, 11575, 1, 0, 0, 0, 11576, 11577, 1, 0, 0, 0, 11577, 11578, 1, 0, 0, 0, 11578, 11579, 5, 525, 0, 0, 11579, 11581, 5, 71, 0, 0, 11580, 11582, 5, 81, 0, 0, 11581, 11580, 1, 0, 0, 0, 11581, 11582, 1, 0, 0, 0, 11582, 11583, 1, 0, 0, 0, 11583, 11585, 3, 1406, 703, 0, 11584, 11586, 5, 9, 0, 0, 11585, 11584, 1, 0, 0, 0, 11585, 11586, 1, 0, 0, 0, 11586, 11591, 1, 0, 0, 0, 11587, 11589, 5, 36, 0, 0, 11588, 11587, 1, 0, 0, 0, 11588, 11589, 1, 0, 0, 0, 11589, 11590, 1, 0, 0, 0, 11590, 11592, 3, 1474, 737, 0, 11591, 11588, 1, 0, 0, 0, 11591, 11592, 1, 0, 0, 0, 11592, 11593, 1, 0, 0, 0, 11593, 11594, 5, 100, 0, 0, 11594, 11595, 3, 1684, 842, 0, 11595, 11596, 5, 80, 0, 0, 11596, 11598, 3, 1686, 843, 0, 11597, 11599, 3, 1688, 844, 0, 11598, 11597, 1, 0, 0, 0, 11599, 11600, 1, 0, 0, 0, 11600, 11598, 1, 0, 0, 0, 11600, 11601, 1, 0, 0, 0, 11601, 1683, 1, 0, 0, 0, 11602, 11604, 5, 81, 0, 0, 11603, 11602, 1, 0, 0, 0, 11603, 11604, 1, 0, 0, 0, 11604, 11605, 1, 0, 0, 0, 11605, 11607, 3, 1406, 703, 0, 11606, 11608, 5, 9, 0, 0, 11607, 11606, 1, 0, 0, 0, 11607, 11608, 1, 0, 0, 0, 11608, 11614, 1, 0, 0, 0, 11609, 11612, 3, 1004, 502, 0, 11610, 11612, 3, 1100, 550, 0, 11611, 11609, 1, 0, 0, 0, 11611, 11610, 1, 0, 0, 0, 11612, 11614, 1, 0, 0, 0, 11613, 11603, 1, 0, 0, 0, 11613, 11611, 1, 0, 0, 0, 11614, 11619, 1, 0, 0, 0, 11615, 11617, 5, 36, 0, 0, 11616, 11615, 1, 0, 0, 0, 11616, 11617, 1, 0, 0, 0, 11617, 11618, 1, 0, 0, 0, 11618, 11620, 3, 1474, 737, 0, 11619, 11616, 1, 0, 0, 0, 11619, 11620, 1, 0, 0, 0, 11620, 1685, 1, 0, 0, 0, 11621, 11622, 3, 1212, 606, 0, 11622, 1687, 1, 0, 0, 0, 11623, 11624, 5, 102, 0, 0, 11624, 11627, 5, 526, 0, 0, 11625, 11626, 5, 33, 0, 0, 11626, 11628, 3, 1212, 606, 0, 11627, 11625, 1, 0, 0, 0, 11627, 11628, 1, 0, 0, 0, 11628, 11629, 1, 0, 0, 0, 11629, 11634, 5, 93, 0, 0, 11630, 11635, 3, 1692, 846, 0, 11631, 11635, 5, 182, 0, 0, 11632, 11633, 5, 57, 0, 0, 11633, 11635, 5, 270, 0, 0, 11634, 11630, 1, 0, 0, 0, 11634, 11631, 1, 0, 0, 0, 11634, 11632, 1, 0, 0, 0, 11635, 11650, 1, 0, 0, 0, 11636, 11637, 5, 102, 0, 0, 11637, 11638, 5, 77, 0, 0, 11638, 11641, 5, 526, 0, 0, 11639, 11640, 5, 33, 0, 0, 11640, 11642, 3, 1212, 606, 0, 11641, 11639, 1, 0, 0, 0, 11641, 11642, 1, 0, 0, 0, 11642, 11643, 1, 0, 0, 0, 11643, 11647, 5, 93, 0, 0, 11644, 11648, 3, 1690, 845, 0, 11645, 11646, 5, 57, 0, 0, 11646, 11648, 5, 270, 0, 0, 11647, 11644, 1, 0, 0, 0, 11647, 11645, 1, 0, 0, 0, 11648, 11650, 1, 0, 0, 0, 11649, 11623, 1, 0, 0, 0, 11649, 11636, 1, 0, 0, 0, 11650, 1689, 1, 0, 0, 0, 11651, 11656, 5, 241, 0, 0, 11652, 11653, 5, 2, 0, 0, 11653, 11654, 3, 244, 122, 0, 11654, 11655, 5, 3, 0, 0, 11655, 11657, 1, 0, 0, 0, 11656, 11652, 1, 0, 0, 0, 11656, 11657, 1, 0, 0, 0, 11657, 11661, 1, 0, 0, 0, 11658, 11659, 5, 463, 0, 0, 11659, 11660, 7, 53, 0, 0, 11660, 11662, 5, 450, 0, 0, 11661, 11658, 1, 0, 0, 0, 11661, 11662, 1, 0, 0, 0, 11662, 11663, 1, 0, 0, 0, 11663, 11664, 3, 1694, 847, 0, 11664, 1691, 1, 0, 0, 0, 11665, 11666, 5, 369, 0, 0, 11666, 11679, 5, 333, 0, 0, 11667, 11668, 3, 1432, 716, 0, 11668, 11669, 5, 10, 0, 0, 11669, 11670, 3, 1698, 849, 0, 11670, 11680, 1, 0, 0, 0, 11671, 11672, 5, 2, 0, 0, 11672, 11673, 3, 244, 122, 0, 11673, 11674, 5, 3, 0, 0, 11674, 11675, 5, 10, 0, 0, 11675, 11676, 5, 2, 0, 0, 11676, 11677, 3, 1696, 848, 0, 11677, 11678, 5, 3, 0, 0, 11678, 11680, 1, 0, 0, 0, 11679, 11667, 1, 0, 0, 0, 11679, 11671, 1, 0, 0, 0, 11680, 11681, 1, 0, 0, 0, 11681, 11679, 1, 0, 0, 0, 11681, 11682, 1, 0, 0, 0, 11682, 1693, 1, 0, 0, 0, 11683, 11684, 5, 422, 0, 0, 11684, 11688, 3, 1696, 848, 0, 11685, 11686, 5, 53, 0, 0, 11686, 11688, 5, 422, 0, 0, 11687, 11683, 1, 0, 0, 0, 11687, 11685, 1, 0, 0, 0, 11688, 1695, 1, 0, 0, 0, 11689, 11690, 5, 2, 0, 0, 11690, 11695, 3, 1698, 849, 0, 11691, 11692, 5, 6, 0, 0, 11692, 11694, 3, 1698, 849, 0, 11693, 11691, 1, 0, 0, 0, 11694, 11697, 1, 0, 0, 0, 11695, 11693, 1, 0, 0, 0, 11695, 11696, 1, 0, 0, 0, 11696, 11698, 1, 0, 0, 0, 11697, 11695, 1, 0, 0, 0, 11698, 11699, 5, 3, 0, 0, 11699, 1697, 1, 0, 0, 0, 11700, 11703, 3, 1048, 524, 0, 11701, 11703, 5, 53, 0, 0, 11702, 11700, 1, 0, 0, 0, 11702, 11701, 1, 0, 0, 0, 11703, 1699, 1, 0, 0, 0, 11704, 11705, 5, 157, 0, 0, 11705, 11706, 3, 1712, 856, 0, 11706, 11707, 5, 7, 0, 0, 11707, 1701, 1, 0, 0, 0, 11708, 11709, 5, 78, 0, 0, 11709, 11710, 5, 7, 0, 0, 11710, 1703, 1, 0, 0, 0, 11711, 11713, 5, 161, 0, 0, 11712, 11714, 3, 1708, 854, 0, 11713, 11712, 1, 0, 0, 0, 11713, 11714, 1, 0, 0, 0, 11714, 11715, 1, 0, 0, 0, 11715, 11716, 5, 7, 0, 0, 11716, 1705, 1, 0, 0, 0, 11717, 11719, 5, 319, 0, 0, 11718, 11720, 3, 1708, 854, 0, 11719, 11718, 1, 0, 0, 0, 11719, 11720, 1, 0, 0, 0, 11720, 11721, 1, 0, 0, 0, 11721, 11722, 5, 7, 0, 0, 11722, 1707, 1, 0, 0, 0, 11723, 11725, 5, 33, 0, 0, 11724, 11726, 5, 269, 0, 0, 11725, 11724, 1, 0, 0, 0, 11725, 11726, 1, 0, 0, 0, 11726, 11727, 1, 0, 0, 0, 11727, 11728, 5, 153, 0, 0, 11728, 1709, 1, 0, 0, 0, 11729, 11730, 5, 333, 0, 0, 11730, 11731, 3, 558, 279, 0, 11731, 11732, 5, 94, 0, 0, 11732, 11733, 5, 53, 0, 0, 11733, 11734, 5, 7, 0, 0, 11734, 11742, 1, 0, 0, 0, 11735, 11738, 5, 313, 0, 0, 11736, 11739, 3, 558, 279, 0, 11737, 11739, 5, 30, 0, 0, 11738, 11736, 1, 0, 0, 0, 11738, 11737, 1, 0, 0, 0, 11739, 11740, 1, 0, 0, 0, 11740, 11742, 5, 7, 0, 0, 11741, 11729, 1, 0, 0, 0, 11741, 11735, 1, 0, 0, 0, 11742, 1711, 1, 0, 0, 0, 11743, 11746, 3, 1474, 737, 0, 11744, 11746, 5, 28, 0, 0, 11745, 11743, 1, 0, 0, 0, 11745, 11744, 1, 0, 0, 0, 11746, 1713, 1, 0, 0, 0, 11747, 11751, 1, 0, 0, 0, 11748, 11749, 5, 517, 0, 0, 11749, 11751, 3, 1716, 858, 0, 11750, 11747, 1, 0, 0, 0, 11750, 11748, 1, 0, 0, 0, 11751, 1715, 1, 0, 0, 0, 11752, 11754, 3, 1718, 859, 0, 11753, 11752, 1, 0, 0, 0, 11754, 11755, 1, 0, 0, 0, 11755, 11753, 1, 0, 0, 0, 11755, 11756, 1, 0, 0, 0, 11756, 1717, 1, 0, 0, 0, 11757, 11758, 5, 102, 0, 0, 11758, 11759, 3, 1720, 860, 0, 11759, 11760, 5, 93, 0, 0, 11760, 11761, 3, 1560, 780, 0, 11761, 1719, 1, 0, 0, 0, 11762, 11767, 3, 1722, 861, 0, 11763, 11764, 5, 82, 0, 0, 11764, 11766, 3, 1722, 861, 0, 11765, 11763, 1, 0, 0, 0, 11766, 11769, 1, 0, 0, 0, 11767, 11765, 1, 0, 0, 0, 11767, 11768, 1, 0, 0, 0, 11768, 1721, 1, 0, 0, 0, 11769, 11767, 1, 0, 0, 0, 11770, 11774, 3, 1732, 866, 0, 11771, 11772, 5, 511, 0, 0, 11772, 11774, 3, 1458, 729, 0, 11773, 11770, 1, 0, 0, 0, 11773, 11771, 1, 0, 0, 0, 11774, 1723, 1, 0, 0, 0, 11775, 11778, 1, 0, 0, 0, 11776, 11778, 3, 1524, 762, 0, 11777, 11775, 1, 0, 0, 0, 11777, 11776, 1, 0, 0, 0, 11778, 1725, 1, 0, 0, 0, 11779, 11782, 1, 0, 0, 0, 11780, 11782, 3, 1524, 762, 0, 11781, 11779, 1, 0, 0, 0, 11781, 11780, 1, 0, 0, 0, 11782, 1727, 1, 0, 0, 0, 11783, 11786, 1, 0, 0, 0, 11784, 11786, 3, 1732, 866, 0, 11785, 11783, 1, 0, 0, 0, 11785, 11784, 1, 0, 0, 0, 11786, 1729, 1, 0, 0, 0, 11787, 11788, 5, 102, 0, 0, 11788, 11789, 3, 1740, 870, 0, 11789, 1731, 1, 0, 0, 0, 11790, 11793, 3, 1474, 737, 0, 11791, 11793, 3, 1734, 867, 0, 11792, 11790, 1, 0, 0, 0, 11792, 11791, 1, 0, 0, 0, 11793, 1733, 1, 0, 0, 0, 11794, 11795, 7, 86, 0, 0, 11795, 1735, 1, 0, 0, 0, 11796, 11798, 3, 1384, 692, 0, 11797, 11796, 1, 0, 0, 0, 11797, 11798, 1, 0, 0, 0, 11798, 11800, 1, 0, 0, 0, 11799, 11801, 3, 1028, 514, 0, 11800, 11799, 1, 0, 0, 0, 11800, 11801, 1, 0, 0, 0, 11801, 11803, 1, 0, 0, 0, 11802, 11804, 3, 1102, 551, 0, 11803, 11802, 1, 0, 0, 0, 11803, 11804, 1, 0, 0, 0, 11804, 11806, 1, 0, 0, 0, 11805, 11807, 3, 1144, 572, 0, 11806, 11805, 1, 0, 0, 0, 11806, 11807, 1, 0, 0, 0, 11807, 11809, 1, 0, 0, 0, 11808, 11810, 3, 1072, 536, 0, 11809, 11808, 1, 0, 0, 0, 11809, 11810, 1, 0, 0, 0, 11810, 11812, 1, 0, 0, 0, 11811, 11813, 3, 1086, 543, 0, 11812, 11811, 1, 0, 0, 0, 11812, 11813, 1, 0, 0, 0, 11813, 11815, 1, 0, 0, 0, 11814, 11816, 3, 1288, 644, 0, 11815, 11814, 1, 0, 0, 0, 11815, 11816, 1, 0, 0, 0, 11816, 1737, 1, 0, 0, 0, 11817, 11818, 3, 1736, 868, 0, 11818, 1739, 1, 0, 0, 0, 11819, 11820, 3, 1736, 868, 0, 11820, 1741, 1, 0, 0, 0, 11821, 11822, 3, 1212, 606, 0, 11822, 1743, 1, 0, 0, 0, 11823, 11824, 3, 1212, 606, 0, 11824, 1745, 1, 0, 0, 0, 11825, 11827, 3, 6, 3, 0, 11826, 11828, 3, 1748, 874, 0, 11827, 11826, 1, 0, 0, 0, 11827, 11828, 1, 0, 0, 0, 11828, 1747, 1, 0, 0, 0, 11829, 11830, 5, 71, 0, 0, 11830, 11831, 3, 1030, 515, 0, 11831, 11832, 3, 1674, 837, 0, 11832, 1749, 1, 0, 0, 0, 1282, 1753, 1762, 1881, 1885, 1894, 1903, 1909, 1915, 1947, 1959, 1965, 1973, 1981, 1987, 1996, 2002, 2014, 2020, 2026, 2033, 2037, 2042, 2046, 2059, 2070, 2076, 2092, 2095, 2100, 2106, 2111, 2120, 2124, 2136, 2140, 2143, 2147, 2158, 2176, 2183, 2191, 2196, 2203, 2209, 2215, 2222, 2233, 2237, 2241, 2245, 2258, 2262, 2267, 2272, 2284, 2293, 2305, 2310, 2321, 2327, 2332, 2342, 2347, 2354, 2359, 2364, 2375, 2381, 2386, 2394, 2403, 2418, 2424, 2430, 2435, 2442, 2454, 2462, 2470, 2488, 2497, 2511, 2515, 2530, 2538, 2548, 2588, 2591, 2595, 2599, 2602, 2607, 2614, 2623, 2629, 2633, 2642, 2650, 2659, 2668, 2672, 2679, 2685, 2689, 2693, 2698, 2701, 2705, 2711, 2718, 2734, 2748, 2758, 2760, 2765, 2769, 2772, 2778, 2780, 2808, 2818, 2831, 2838, 2843, 2847, 2853, 2858, 2861, 2863, 2868, 2872, 2876, 2880, 2884, 2887, 2891, 2899, 2903, 2907, 2916, 2923, 2928, 2935, 2940, 2947, 2952, 2970, 2975, 2987, 2992, 3001, 3008, 3015, 3019, 3024, 3028, 3031, 3034, 3037, 3040, 3043, 3048, 3051, 3054, 3057, 3060, 3063, 3069, 3073, 3076, 3079, 3082, 3085, 3087, 3096, 3111, 3119, 3125, 3129, 3134, 3137, 3140, 3144, 3148, 3162, 3167, 3174, 3179, 3183, 3186, 3190, 3193, 3195, 3202, 3205, 3209, 3215, 3218, 3225, 3234, 3241, 3246, 3249, 3252, 3255, 3259, 3266, 3271, 3284, 3294, 3307, 3310, 3313, 3320, 3328, 3331, 3334, 3341, 3345, 3351, 3354, 3357, 3360, 3372, 3375, 3378, 3382, 3400, 3408, 3424, 3435, 3450, 3467, 3469, 3490, 3495, 3498, 3502, 3505, 3511, 3514, 3516, 3527, 3536, 3542, 3545, 3548, 3562, 3565, 3568, 3573, 3581, 3590, 3594, 3600, 3604, 3607, 3610, 3613, 3616, 3622, 3626, 3631, 3637, 3641, 3644, 3647, 3650, 3658, 3662, 3666, 3670, 3674, 3679, 3693, 3702, 3719, 3724, 3727, 3729, 3739, 3746, 3751, 3754, 3757, 3764, 3767, 3769, 3775, 3784, 3794, 3799, 3807, 3811, 3818, 3828, 3839, 3947, 3955, 3958, 3968, 3973, 3983, 3994, 4006, 4019, 4029, 4041, 4045, 4048, 4055, 4063, 4073, 4075, 4081, 4086, 4090, 4095, 4101, 4108, 4114, 4116, 4123, 4131, 4136, 4147, 4154, 4158, 4175, 4178, 4181, 4184, 4187, 4195, 4198, 4201, 4207, 4215, 4219, 4231, 4237, 4240, 4245, 4249, 4256, 4267, 4290, 4310, 4319, 4322, 4325, 4335, 4338, 4347, 4351, 4354, 4362, 4368, 4372, 4383, 4393, 4401, 4406, 4418, 4435, 4439, 4445, 4452, 4460, 4474, 4500, 4507, 4521, 4532, 4535, 4548, 4557, 4582, 4593, 4635, 4643, 4649, 4660, 4666, 4674, 4685, 4699, 4708, 4713, 4724, 4735, 4743, 4753, 4760, 4763, 4769, 4772, 4787, 4800, 4829, 4836, 4851, 4863, 4867, 4872, 4876, 4881, 4885, 4891, 4895, 4900, 4904, 4910, 4914, 4919, 4923, 4928, 4932, 4937, 4941, 4948, 4952, 4959, 4963, 4970, 4974, 4981, 4985, 4991, 4995, 5001, 5005, 5010, 5014, 5021, 5025, 5029, 5033, 5037, 5042, 5046, 5051, 5055, 5060, 5064, 5069, 5075, 5080, 5086, 5091, 5097, 5102, 5106, 5111, 5115, 5121, 5125, 5130, 5138, 5144, 5150, 5156, 5162, 5169, 5174, 5178, 5183, 5187, 5192, 5198, 5205, 5210, 5217, 5227, 5231, 5237, 5239, 5246, 5250, 5255, 5273, 5288, 5306, 5315, 5324, 5328, 5334, 5341, 5346, 5353, 5358, 5361, 5364, 5368, 5439, 5535, 5539, 5544, 5555, 5566, 5577, 5588, 5599, 5611, 5622, 5633, 5643, 5650, 5657, 5663, 5671, 5676, 5681, 5686, 5692, 5699, 5705, 5711, 5716, 5722, 5729, 5734, 5740, 5747, 5750, 5763, 5772, 5784, 5786, 5804, 5811, 5821, 5826, 5830, 5834, 5838, 5840, 5900, 5907, 5913, 5924, 5927, 5934, 5937, 5947, 5950, 5952, 5971, 5983, 5992, 6001, 6013, 6015, 6021, 6025, 6028, 6031, 6036, 6042, 6045, 6048, 6051, 6054, 6070, 6074, 6077, 6080, 6083, 6086, 6091, 6094, 6096, 6109, 6121, 6135, 6139, 6145, 6155, 6157, 6162, 6170, 6180, 6189, 6197, 6206, 6208, 6215, 6224, 6226, 6233, 6242, 6244, 6248, 6257, 6262, 6268, 6273, 6277, 6282, 6300, 6305, 6320, 6329, 6340, 6346, 6383, 6403, 6410, 6421, 6435, 6442, 6450, 6455, 6462, 6466, 6471, 6475, 6480, 6484, 6486, 6491, 6495, 6500, 6504, 6528, 6535, 6545, 6557, 6562, 6575, 6587, 6599, 6601, 6607, 6614, 6659, 6677, 6681, 6686, 6689, 6693, 6698, 6703, 6706, 6713, 6730, 6801, 6832, 6886, 6896, 6906, 6917, 6927, 6938, 6948, 6953, 6962, 6967, 6977, 6982, 6991, 7004, 7009, 7121, 7123, 7132, 7143, 7154, 7167, 7179, 7190, 7197, 7287, 7340, 7350, 7361, 7372, 7386, 7401, 7412, 7419, 7473, 7614, 7620, 7623, 7633, 7673, 7683, 7690, 7713, 7722, 7731, 7740, 7773, 7777, 7787, 7791, 7801, 7804, 7808, 7812, 7820, 7831, 7843, 7847, 7850, 7854, 7857, 7862, 7866, 7869, 7875, 7886, 7889, 7896, 7900, 7905, 7908, 7910, 7924, 7928, 7933, 7940, 7947, 7950, 7955, 7958, 7967, 7969, 7974, 7978, 7990, 7993, 8000, 8004, 8009, 8019, 8029, 8032, 8035, 8037, 8043, 8050, 8070, 8090, 8094, 8099, 8168, 8173, 8179, 8192, 8196, 8200, 8206, 8208, 8216, 8226, 8229, 8232, 8235, 8238, 8245, 8248, 8250, 8254, 8257, 8264, 8266, 8273, 8280, 8284, 8288, 8297, 8303, 8307, 8311, 8316, 8328, 8335, 8345, 8358, 8369, 8376, 8381, 8385, 8389, 8394, 8407, 8412, 8416, 8420, 8427, 8430, 8432, 8440, 8444, 8447, 8454, 8457, 8462, 8468, 8474, 8478, 8487, 8496, 8503, 8506, 8512, 8517, 8523, 8529, 8532, 8535, 8542, 8546, 8549, 8564, 8567, 8574, 8577, 8584, 8587, 8590, 8597, 8609, 8616, 8618, 8628, 8646, 8648, 8656, 8660, 8670, 8674, 8678, 8682, 8684, 8689, 8693, 8697, 8699, 8701, 8705, 8709, 8712, 8715, 8718, 8721, 8723, 8726, 8729, 8732, 8735, 8738, 8741, 8750, 8752, 8757, 8761, 8767, 8771, 8775, 8784, 8789, 8793, 8799, 8802, 8821, 8829, 8838, 8842, 8845, 8849, 8854, 8860, 8872, 8887, 8894, 8897, 8901, 8905, 8909, 8911, 8919, 8928, 8934, 8936, 8943, 8947, 8956, 8960, 8969, 8978, 8990, 9018, 9025, 9029, 9032, 9037, 9041, 9044, 9060, 9071, 9076, 9079, 9082, 9086, 9090, 9094, 9099, 9103, 9107, 9109, 9118, 9123, 9129, 9133, 9135, 9142, 9147, 9153, 9155, 9159, 9166, 9173, 9176, 9182, 9186, 9195, 9198, 9202, 9210, 9216, 9218, 9221, 9225, 9228, 9231, 9235, 9239, 9245, 9248, 9257, 9264, 9266, 9273, 9281, 9286, 9289, 9297, 9306, 9314, 9316, 9320, 9327, 9346, 9355, 9361, 9380, 9389, 9395, 9399, 9404, 9414, 9421, 9430, 9433, 9442, 9444, 9450, 9454, 9459, 9469, 9475, 9477, 9483, 9487, 9490, 9503, 9509, 9513, 9517, 9520, 9528, 9532, 9536, 9544, 9551, 9558, 9562, 9568, 9570, 9579, 9582, 9592, 9608, 9614, 9619, 9626, 9635, 9642, 9650, 9658, 9663, 9667, 9670, 9676, 9681, 9697, 9700, 9702, 9714, 9716, 9720, 9728, 9730, 9734, 9736, 9744, 9748, 9757, 9765, 9771, 9774, 9783, 9788, 9795, 9805, 9831, 9842, 9844, 9846, 9854, 9876, 9885, 9895, 9898, 9903, 9908, 9912, 9915, 9919, 9922, 9925, 9928, 9932, 9946, 9953, 9960, 9967, 9985, 9993, 10005, 10011, 10024, 10063, 10065, 10085, 10095, 10106, 10118, 10125, 10137, 10149, 10155, 10163, 10180, 10205, 10215, 10219, 10222, 10225, 10228, 10241, 10246, 10251, 10253, 10261, 10270, 10279, 10284, 10293, 10298, 10312, 10322, 10330, 10344, 10351, 10359, 10367, 10375, 10379, 10386, 10394, 10401, 10407, 10416, 10431, 10442, 10475, 10484, 10491, 10495, 10499, 10506, 10520, 10525, 10530, 10534, 10536, 10539, 10546, 10551, 10561, 10569, 10572, 10579, 10587, 10595, 10603, 10611, 10616, 10620, 10624, 10628, 10632, 10636, 10640, 10647, 10655, 10660, 10664, 10668, 10678, 10684, 10690, 10694, 10708, 10714, 10720, 10732, 10737, 10745, 10752, 10757, 10769, 10777, 10782, 10792, 10803, 10810, 10817, 10828, 10831, 10833, 10837, 10840, 10846, 10852, 10856, 10862, 10870, 10874, 10882, 10939, 10952, 10975, 10983, 10987, 10999, 11001, 11008, 11017, 11035, 11043, 11052, 11059, 11069, 11075, 11082, 11087, 11093, 11097, 11104, 11134, 11147, 11156, 11160, 11176, 11183, 11196, 11204, 11224, 11230, 11242, 11247, 11257, 11289, 11294, 11303, 11308, 11312, 11317, 11333, 11338, 11353, 11356, 11362, 11366, 11375, 11383, 11392, 11398, 11407, 11409, 11414, 11425, 11436, 11457, 11464, 11471, 11477, 11480, 11491, 11498, 11500, 11509, 11516, 11522, 11528, 11532, 11536, 11549, 11564, 11566, 11570, 11576, 11581, 11585, 11588, 11591, 11600, 11603, 11607, 11611, 11613, 11616, 11619, 11627, 11634, 11641, 11647, 11649, 11656, 11661, 11679, 11681, 11687, 11695, 11702, 11713, 11719, 11725, 11738, 11741, 11745, 11750, 11755, 11767, 11773, 11777, 11781, 11785, 11792, 11797, 11800, 11803, 11806, 11809, 11812, 11815, 11827] \ No newline at end of file diff --git a/src/lib/pgsql/PostgreSQLParser.ts b/src/lib/pgsql/PostgreSQLParser.ts index cc10d77..ffa1c70 100644 --- a/src/lib/pgsql/PostgreSQLParser.ts +++ b/src/lib/pgsql/PostgreSQLParser.ts @@ -11,7 +11,10 @@ import { PostgreSQLParserVisitor } from "./PostgreSQLParserVisitor.js"; type int = number; -export class PostgreSQLParser extends antlr.Parser { +import SQLParserBase from '../SQLParserBase'; + + +export class PostgreSQLParser extends SQLParserBase { public static readonly Dollar = 1; public static readonly OPEN_PAREN = 2; public static readonly CLOSE_PAREN = 3; @@ -705,777 +708,778 @@ export class PostgreSQLParser extends antlr.Parser { public static readonly RULE_typedtableelementlist = 100; public static readonly RULE_tableelement = 101; public static readonly RULE_typedtableelement = 102; - public static readonly RULE_columnDefCluase = 103; - public static readonly RULE_columnDef = 104; - public static readonly RULE_compressionCluase = 105; - public static readonly RULE_storageCluase = 106; - public static readonly RULE_columnOptions = 107; - public static readonly RULE_colquallist = 108; - public static readonly RULE_colconstraint = 109; - public static readonly RULE_colconstraintelem = 110; - public static readonly RULE_nulls_distinct = 111; - public static readonly RULE_generated_when = 112; - public static readonly RULE_deferrable_trigger = 113; - public static readonly RULE_initially_trigger = 114; - public static readonly RULE_tablelikeclause = 115; - public static readonly RULE_tablelikeoptionlist = 116; - public static readonly RULE_tablelikeoption = 117; - public static readonly RULE_tableconstraint = 118; - public static readonly RULE_constraintelem = 119; - public static readonly RULE_opt_no_inherit = 120; - public static readonly RULE_opt_column_list = 121; - public static readonly RULE_columnlist = 122; - public static readonly RULE_opt_c_include = 123; - public static readonly RULE_key_match = 124; - public static readonly RULE_exclusionconstraintlist = 125; - public static readonly RULE_exclusionconstraintelem = 126; - public static readonly RULE_exclusionwhereclause = 127; - public static readonly RULE_key_actions = 128; - public static readonly RULE_key_update = 129; - public static readonly RULE_key_delete = 130; - public static readonly RULE_key_action = 131; - public static readonly RULE_optinherit = 132; - public static readonly RULE_optpartitionspec = 133; - public static readonly RULE_partitionspec = 134; - public static readonly RULE_part_params = 135; - public static readonly RULE_part_elem = 136; - public static readonly RULE_table_access_method_clause = 137; - public static readonly RULE_optwith = 138; - public static readonly RULE_oncommitoption = 139; - public static readonly RULE_opttablespace = 140; - public static readonly RULE_index_paramenters_create = 141; - public static readonly RULE_optconstablespace = 142; - public static readonly RULE_existingindex = 143; - public static readonly RULE_createstatsstmt = 144; - public static readonly RULE_alterstatsstmt = 145; - public static readonly RULE_createasstmt = 146; - public static readonly RULE_create_as_target = 147; - public static readonly RULE_opt_with_data = 148; - public static readonly RULE_creatematviewstmt = 149; - public static readonly RULE_create_mv_target = 150; - public static readonly RULE_optnolog = 151; - public static readonly RULE_refreshmatviewstmt = 152; - public static readonly RULE_createseqstmt = 153; - public static readonly RULE_alterseqstmt = 154; - public static readonly RULE_optseqoptlist = 155; - public static readonly RULE_optparenthesizedseqoptlist = 156; - public static readonly RULE_seqoptlist = 157; - public static readonly RULE_seqoptelem = 158; - public static readonly RULE_opt_by = 159; - public static readonly RULE_numericonly = 160; - public static readonly RULE_numericonly_list = 161; - public static readonly RULE_createplangstmt = 162; - public static readonly RULE_opt_trusted = 163; - public static readonly RULE_handler_name = 164; - public static readonly RULE_opt_inline_handler = 165; - public static readonly RULE_validator_clause = 166; - public static readonly RULE_opt_validator = 167; - public static readonly RULE_opt_procedural = 168; - public static readonly RULE_createtablespacestmt = 169; - public static readonly RULE_opttablespaceowner = 170; - public static readonly RULE_createextensionstmt = 171; - public static readonly RULE_create_extension_opt_list = 172; - public static readonly RULE_create_extension_opt_item = 173; - public static readonly RULE_alterextensionstmt = 174; - public static readonly RULE_alter_extension_opt_list = 175; - public static readonly RULE_alter_extension_opt_item = 176; - public static readonly RULE_alterextensioncontentsstmt = 177; - public static readonly RULE_createfdwstmt = 178; - public static readonly RULE_fdw_option = 179; - public static readonly RULE_fdw_options = 180; - public static readonly RULE_opt_fdw_options = 181; - public static readonly RULE_alterfdwstmt = 182; - public static readonly RULE_create_generic_options = 183; - public static readonly RULE_generic_option_list = 184; - public static readonly RULE_alter_generic_options = 185; - public static readonly RULE_alter_generic_option_list = 186; - public static readonly RULE_alter_generic_option_elem = 187; - public static readonly RULE_generic_option_elem = 188; - public static readonly RULE_generic_option_name = 189; - public static readonly RULE_generic_option_arg = 190; - public static readonly RULE_createforeignserverstmt = 191; - public static readonly RULE_opt_type = 192; - public static readonly RULE_foreign_server_version = 193; - public static readonly RULE_opt_foreign_server_version = 194; - public static readonly RULE_alterforeignserverstmt = 195; - public static readonly RULE_createforeigntablestmt = 196; - public static readonly RULE_importforeignschemastmt = 197; - public static readonly RULE_import_qualification_type = 198; - public static readonly RULE_import_qualification = 199; - public static readonly RULE_createusermappingstmt = 200; - public static readonly RULE_auth_ident = 201; - public static readonly RULE_alterusermappingstmt = 202; - public static readonly RULE_createpolicystmt = 203; - public static readonly RULE_alterpolicystmt = 204; - public static readonly RULE_alterprocedurestmt = 205; - public static readonly RULE_procedure_cluase = 206; - public static readonly RULE_procedure_action = 207; - public static readonly RULE_rowsecurityoptionalexpr = 208; - public static readonly RULE_rowsecurityoptionalwithcheck = 209; - public static readonly RULE_rowsecuritydefaulttorole = 210; - public static readonly RULE_rowsecurityoptionaltorole = 211; - public static readonly RULE_rowsecuritydefaultpermissive = 212; - public static readonly RULE_rowsecuritydefaultforcmd = 213; - public static readonly RULE_row_security_cmd = 214; - public static readonly RULE_createamstmt = 215; - public static readonly RULE_am_type = 216; - public static readonly RULE_createtrigstmt = 217; - public static readonly RULE_triggeractiontime = 218; - public static readonly RULE_foreachrow = 219; - public static readonly RULE_roworstatment = 220; - public static readonly RULE_triggerevents = 221; - public static readonly RULE_triggeroneevent = 222; - public static readonly RULE_triggerreferencing = 223; - public static readonly RULE_triggertransitions = 224; - public static readonly RULE_triggertransition = 225; - public static readonly RULE_transitionoldornew = 226; - public static readonly RULE_transitionrowortable = 227; - public static readonly RULE_transitionrelname = 228; - public static readonly RULE_triggerforspec = 229; - public static readonly RULE_triggerforopteach = 230; - public static readonly RULE_triggerfortype = 231; - public static readonly RULE_triggerwhen = 232; - public static readonly RULE_function_or_procedure = 233; - public static readonly RULE_triggerfuncargs = 234; - public static readonly RULE_triggerfuncarg = 235; - public static readonly RULE_optconstrfromtable = 236; - public static readonly RULE_constraintattributespec = 237; - public static readonly RULE_constraintattributeElem = 238; - public static readonly RULE_createeventtrigstmt = 239; - public static readonly RULE_event_trigger_when_list = 240; - public static readonly RULE_event_trigger_when_item = 241; - public static readonly RULE_event_trigger_value_list = 242; - public static readonly RULE_altereventtrigstmt = 243; - public static readonly RULE_enable_trigger = 244; - public static readonly RULE_createassertionstmt = 245; - public static readonly RULE_definestmt = 246; - public static readonly RULE_definition = 247; - public static readonly RULE_def_list = 248; - public static readonly RULE_def_elem = 249; - public static readonly RULE_def_arg = 250; - public static readonly RULE_old_aggr_definition = 251; - public static readonly RULE_old_aggr_list = 252; - public static readonly RULE_old_aggr_elem = 253; - public static readonly RULE_opt_enum_val_list = 254; - public static readonly RULE_enum_val_list = 255; - public static readonly RULE_alterenumstmt = 256; - public static readonly RULE_opt_if_not_exists = 257; - public static readonly RULE_createopclassstmt = 258; - public static readonly RULE_opclass_item_list = 259; - public static readonly RULE_opclass_item = 260; - public static readonly RULE_opt_default = 261; - public static readonly RULE_opt_opfamily = 262; - public static readonly RULE_opclass_purpose = 263; - public static readonly RULE_opt_recheck = 264; - public static readonly RULE_createopfamilystmt = 265; - public static readonly RULE_alteropfamilystmt = 266; - public static readonly RULE_opclass_drop_list = 267; - public static readonly RULE_opclass_drop = 268; - public static readonly RULE_reassignownedstmt = 269; - public static readonly RULE_dropstmt = 270; - public static readonly RULE_view_nameList = 271; - public static readonly RULE_object_type_any_name = 272; - public static readonly RULE_object_type_name = 273; - public static readonly RULE_object_type_name_on_any_name = 274; - public static readonly RULE_any_name_list = 275; - public static readonly RULE_relation_column_name = 276; - public static readonly RULE_relation_name = 277; - public static readonly RULE_any_name = 278; - public static readonly RULE_attrs = 279; - public static readonly RULE_type_name_list = 280; - public static readonly RULE_truncatestmt = 281; - public static readonly RULE_truncate_table = 282; - public static readonly RULE_commentstmt = 283; - public static readonly RULE_comment_text = 284; - public static readonly RULE_seclabelstmt = 285; - public static readonly RULE_opt_provider = 286; - public static readonly RULE_security_label = 287; - public static readonly RULE_fetchstmt = 288; - public static readonly RULE_fetch_args = 289; - public static readonly RULE_from_in = 290; - public static readonly RULE_opt_from_in = 291; - public static readonly RULE_grantstmt = 292; - public static readonly RULE_revokestmt = 293; - public static readonly RULE_privileges = 294; - public static readonly RULE_beforeprivilegeselectlist = 295; - public static readonly RULE_beforeprivilegeselect = 296; - public static readonly RULE_privilege_list = 297; - public static readonly RULE_privilege = 298; - public static readonly RULE_privilege_target = 299; - public static readonly RULE_grantee_list = 300; - public static readonly RULE_grantee = 301; - public static readonly RULE_opt_grant_grant_option = 302; - public static readonly RULE_grantrolestmt = 303; - public static readonly RULE_revokerolestmt = 304; - public static readonly RULE_opt_grant_admin_option = 305; - public static readonly RULE_opt_granted_by = 306; - public static readonly RULE_alterdefaultprivilegesstmt = 307; - public static readonly RULE_defacloptionlist = 308; - public static readonly RULE_defacloption = 309; - public static readonly RULE_defaclaction = 310; - public static readonly RULE_defacl_privilege_target = 311; - public static readonly RULE_indexstmt = 312; - public static readonly RULE_opt_unique = 313; - public static readonly RULE_opt_concurrently = 314; - public static readonly RULE_opt_index_name = 315; - public static readonly RULE_access_method_clause = 316; - public static readonly RULE_index_params = 317; - public static readonly RULE_index_elem_options = 318; - public static readonly RULE_index_elem = 319; - public static readonly RULE_opt_include = 320; - public static readonly RULE_index_including_params = 321; - public static readonly RULE_opt_collate = 322; - public static readonly RULE_opt_class = 323; - public static readonly RULE_opt_asc_desc = 324; - public static readonly RULE_opt_nulls_order = 325; - public static readonly RULE_createfunctionstmt = 326; - public static readonly RULE_attrilist = 327; - public static readonly RULE_opt_or_replace = 328; - public static readonly RULE_func_args = 329; - public static readonly RULE_func_args_list = 330; - public static readonly RULE_routine_with_argtypes_list = 331; - public static readonly RULE_routine_with_argtypes = 332; - public static readonly RULE_procedure_with_argtypes_list = 333; - public static readonly RULE_procedure_with_argtypes = 334; - public static readonly RULE_function_with_argtypes_list = 335; - public static readonly RULE_function_with_argtypes = 336; - public static readonly RULE_func_args_with_defaults = 337; - public static readonly RULE_func_args_with_defaults_list = 338; - public static readonly RULE_func_arg = 339; - public static readonly RULE_arg_class = 340; - public static readonly RULE_param_name = 341; - public static readonly RULE_func_return = 342; - public static readonly RULE_func_type = 343; - public static readonly RULE_func_arg_with_default = 344; - public static readonly RULE_aggr_arg = 345; - public static readonly RULE_aggr_args = 346; - public static readonly RULE_aggr_args_list = 347; - public static readonly RULE_aggregate_with_argtypes = 348; - public static readonly RULE_aggregate_with_argtypes_list = 349; - public static readonly RULE_createfunc_opt_list = 350; - public static readonly RULE_common_func_opt_item = 351; - public static readonly RULE_createfunc_opt_item = 352; - public static readonly RULE_transform_type_list = 353; - public static readonly RULE_opt_definition = 354; - public static readonly RULE_table_func_column = 355; - public static readonly RULE_table_func_column_list = 356; - public static readonly RULE_alterfunctionstmt = 357; - public static readonly RULE_alterFunctionTypeClause = 358; - public static readonly RULE_alterfunc_opt_list = 359; - public static readonly RULE_opt_restrict = 360; - public static readonly RULE_removefuncstmt = 361; - public static readonly RULE_removeaggrstmt = 362; - public static readonly RULE_removeoperstmt = 363; - public static readonly RULE_oper_argtypes = 364; - public static readonly RULE_any_operator = 365; - public static readonly RULE_operator_with_argtypes_list = 366; - public static readonly RULE_operator_with_argtypes = 367; - public static readonly RULE_dostmt = 368; - public static readonly RULE_dostmt_opt_list = 369; - public static readonly RULE_dostmt_opt_item = 370; - public static readonly RULE_createcaststmt = 371; - public static readonly RULE_cast_context = 372; - public static readonly RULE_opt_if_exists = 373; - public static readonly RULE_createtransformstmt = 374; - public static readonly RULE_transform_element_list = 375; - public static readonly RULE_reindexstmt = 376; - public static readonly RULE_reindex_target_type = 377; - public static readonly RULE_reindex_target_multitable = 378; - public static readonly RULE_reindex_option_list = 379; - public static readonly RULE_reindex_option_elem = 380; - public static readonly RULE_altertblspcstmt = 381; - public static readonly RULE_renamestmt = 382; - public static readonly RULE_opt_set_data = 383; - public static readonly RULE_alterobjectdependsstmt = 384; - public static readonly RULE_opt_no = 385; - public static readonly RULE_alterobjectschemastmt = 386; - public static readonly RULE_alteroperatorstmt = 387; - public static readonly RULE_operator_def_list = 388; - public static readonly RULE_operator_def_elem = 389; - public static readonly RULE_operator_def_arg = 390; - public static readonly RULE_altertypestmt = 391; - public static readonly RULE_alterownerstmt = 392; - public static readonly RULE_createpublicationstmt = 393; - public static readonly RULE_opt_publication_for_tables = 394; - public static readonly RULE_publication_for_tables = 395; - public static readonly RULE_alterpublicationstmt = 396; - public static readonly RULE_createsubscriptionstmt = 397; - public static readonly RULE_publication_name_list = 398; - public static readonly RULE_publication_name_item = 399; - public static readonly RULE_altersubscriptionstmt = 400; - public static readonly RULE_rulestmt = 401; - public static readonly RULE_ruleactionlist = 402; - public static readonly RULE_ruleactionmulti = 403; - public static readonly RULE_ruleactionstmt = 404; - public static readonly RULE_ruleactionstmtOrEmpty = 405; - public static readonly RULE_event = 406; - public static readonly RULE_opt_instead = 407; - public static readonly RULE_notifystmt = 408; - public static readonly RULE_notify_payload = 409; - public static readonly RULE_listenstmt = 410; - public static readonly RULE_unlistenstmt = 411; - public static readonly RULE_transactionstmt = 412; - public static readonly RULE_opt_transaction = 413; - public static readonly RULE_transaction_mode_item = 414; - public static readonly RULE_transaction_mode_list = 415; - public static readonly RULE_transaction_mode_list_or_empty = 416; - public static readonly RULE_opt_transaction_chain = 417; - public static readonly RULE_viewstmt = 418; - public static readonly RULE_opt_check_option = 419; - public static readonly RULE_loadstmt = 420; - public static readonly RULE_createdbstmt = 421; - public static readonly RULE_createdb_opt_list = 422; - public static readonly RULE_createdb_opt_items = 423; - public static readonly RULE_createdb_opt_item = 424; - public static readonly RULE_createdb_opt_name = 425; - public static readonly RULE_opt_equal = 426; - public static readonly RULE_alterdatabasestmt = 427; - public static readonly RULE_alterdatabasesetstmt = 428; - public static readonly RULE_drop_option_list = 429; - public static readonly RULE_drop_option = 430; - public static readonly RULE_altercollationstmt = 431; - public static readonly RULE_altersystemstmt = 432; - public static readonly RULE_createdomainstmt = 433; - public static readonly RULE_alterdomainstmt = 434; - public static readonly RULE_opt_as = 435; - public static readonly RULE_altertsdictionarystmt = 436; - public static readonly RULE_altertsconfigurationstmt = 437; - public static readonly RULE_any_with = 438; - public static readonly RULE_createconversionstmt = 439; - public static readonly RULE_clusterstmt = 440; - public static readonly RULE_opt_verbose_list = 441; - public static readonly RULE_cluster_index_specification = 442; - public static readonly RULE_vacuumstmt = 443; - public static readonly RULE_analyzestmt = 444; - public static readonly RULE_vac_analyze_option_list = 445; - public static readonly RULE_analyze_keyword = 446; - public static readonly RULE_vac_analyze_option_elem = 447; - public static readonly RULE_vac_analyze_option_name = 448; - public static readonly RULE_vac_analyze_option_arg = 449; - public static readonly RULE_opt_analyze = 450; - public static readonly RULE_analyze_options_list = 451; - public static readonly RULE_analyze_option_elem = 452; - public static readonly RULE_opt_verbose = 453; - public static readonly RULE_opt_skiplock = 454; - public static readonly RULE_opt_buffer_usage_limit = 455; - public static readonly RULE_opt_full = 456; - public static readonly RULE_opt_freeze = 457; - public static readonly RULE_opt_name_list = 458; - public static readonly RULE_vacuum_relation = 459; - public static readonly RULE_vacuum_relation_list = 460; - public static readonly RULE_opt_vacuum_relation_list = 461; - public static readonly RULE_explainstmt = 462; - public static readonly RULE_explainablestmt = 463; - public static readonly RULE_explain_option_list = 464; - public static readonly RULE_explain_option_elem = 465; - public static readonly RULE_explain_option_name = 466; - public static readonly RULE_explain_option_arg = 467; - public static readonly RULE_preparestmt = 468; - public static readonly RULE_prep_type_clause = 469; - public static readonly RULE_preparablestmt = 470; - public static readonly RULE_executestmt = 471; - public static readonly RULE_execute_param_clause = 472; - public static readonly RULE_deallocatestmt = 473; - public static readonly RULE_insertstmt = 474; - public static readonly RULE_insert_target = 475; - public static readonly RULE_insert_rest = 476; - public static readonly RULE_override_kind = 477; - public static readonly RULE_insert_column_list = 478; - public static readonly RULE_insert_column_item = 479; - public static readonly RULE_opt_on_conflict = 480; - public static readonly RULE_opt_conf_expr = 481; - public static readonly RULE_returning_clause = 482; - public static readonly RULE_deletestmt = 483; - public static readonly RULE_using_clause = 484; - public static readonly RULE_lockstmt = 485; - public static readonly RULE_opt_lock = 486; - public static readonly RULE_lock_type = 487; - public static readonly RULE_opt_nowait = 488; - public static readonly RULE_opt_nowait_or_skip = 489; - public static readonly RULE_updatestmt = 490; - public static readonly RULE_set_clause_list = 491; - public static readonly RULE_set_clause = 492; - public static readonly RULE_set_target = 493; - public static readonly RULE_set_target_list = 494; - public static readonly RULE_declarecursorstmt = 495; - public static readonly RULE_cursor_name = 496; - public static readonly RULE_cursor_options = 497; - public static readonly RULE_opt_hold = 498; - public static readonly RULE_selectstmt = 499; - public static readonly RULE_select_with_parens = 500; - public static readonly RULE_select_no_parens = 501; - public static readonly RULE_select_clause = 502; - public static readonly RULE_simple_select = 503; - public static readonly RULE_set_operator = 504; - public static readonly RULE_set_operator_with_all_or_distinct = 505; - public static readonly RULE_with_clause = 506; - public static readonly RULE_cte_list = 507; - public static readonly RULE_common_table_expr = 508; - public static readonly RULE_search_cluase = 509; - public static readonly RULE_cycle_cluase = 510; - public static readonly RULE_opt_materialized = 511; - public static readonly RULE_opt_with_clause = 512; - public static readonly RULE_into_clause = 513; - public static readonly RULE_opt_strict = 514; - public static readonly RULE_opttempTableName = 515; - public static readonly RULE_opt_table = 516; - public static readonly RULE_all_or_distinct = 517; - public static readonly RULE_distinct_clause = 518; - public static readonly RULE_opt_all_clause = 519; - public static readonly RULE_opt_sort_clause = 520; - public static readonly RULE_sort_clause = 521; - public static readonly RULE_sortby_list = 522; - public static readonly RULE_sortby = 523; - public static readonly RULE_select_limit = 524; - public static readonly RULE_opt_select_limit = 525; - public static readonly RULE_limit_clause = 526; - public static readonly RULE_fetch_clause = 527; - public static readonly RULE_offset_clause = 528; - public static readonly RULE_select_limit_value = 529; - public static readonly RULE_select_offset_value = 530; - public static readonly RULE_select_fetch_first_value = 531; - public static readonly RULE_i_or_f_const = 532; - public static readonly RULE_row_or_rows = 533; - public static readonly RULE_first_or_next = 534; - public static readonly RULE_group_clause = 535; - public static readonly RULE_group_by_list = 536; - public static readonly RULE_group_by_item = 537; - public static readonly RULE_empty_grouping_set = 538; - public static readonly RULE_rollup_clause = 539; - public static readonly RULE_cube_clause = 540; - public static readonly RULE_grouping_sets_clause = 541; - public static readonly RULE_having_clause = 542; - public static readonly RULE_for_locking_clause = 543; - public static readonly RULE_opt_for_locking_clause = 544; - public static readonly RULE_for_locking_items = 545; - public static readonly RULE_for_locking_item = 546; - public static readonly RULE_for_locking_strength = 547; - public static readonly RULE_locked_rels_list = 548; - public static readonly RULE_values_clause = 549; - public static readonly RULE_from_clause = 550; - public static readonly RULE_from_list = 551; - public static readonly RULE_table_ref = 552; - public static readonly RULE_alias_clause = 553; - public static readonly RULE_opt_alias_clause = 554; - public static readonly RULE_func_alias_clause = 555; - public static readonly RULE_join_type = 556; - public static readonly RULE_join_qual = 557; - public static readonly RULE_relation_expr = 558; - public static readonly RULE_view_relation_expr = 559; - public static readonly RULE_publication_relation_expr = 560; - public static readonly RULE_relation_expr_list = 561; - public static readonly RULE_publication_relation_expr_list = 562; - public static readonly RULE_relation_expr_opt_alias = 563; - public static readonly RULE_tablesample_clause = 564; - public static readonly RULE_opt_repeatable_clause = 565; - public static readonly RULE_func_table = 566; - public static readonly RULE_rowsfrom_item = 567; - public static readonly RULE_rowsfrom_list = 568; - public static readonly RULE_opt_col_def_list = 569; - public static readonly RULE_opt_ordinality = 570; - public static readonly RULE_where_clause = 571; - public static readonly RULE_where_or_current_clause = 572; - public static readonly RULE_opttablefuncelementlist = 573; - public static readonly RULE_tablefuncelementlist = 574; - public static readonly RULE_tablefuncelement = 575; - public static readonly RULE_xmltable = 576; - public static readonly RULE_xmltable_column_list = 577; - public static readonly RULE_xmltable_column_el = 578; - public static readonly RULE_xmltable_column_option_list = 579; - public static readonly RULE_xmltable_column_option_el = 580; - public static readonly RULE_xml_namespace_list = 581; - public static readonly RULE_xml_namespace_el = 582; - public static readonly RULE_typename = 583; - public static readonly RULE_opt_array_bounds = 584; - public static readonly RULE_simpletypename = 585; - public static readonly RULE_consttypename = 586; - public static readonly RULE_generictype = 587; - public static readonly RULE_opt_type_modifiers = 588; - public static readonly RULE_numeric = 589; - public static readonly RULE_opt_float = 590; - public static readonly RULE_bit = 591; - public static readonly RULE_constbit = 592; - public static readonly RULE_bitwithlength = 593; - public static readonly RULE_bitwithoutlength = 594; - public static readonly RULE_character = 595; - public static readonly RULE_constcharacter = 596; - public static readonly RULE_character_c = 597; - public static readonly RULE_opt_varying = 598; - public static readonly RULE_constdatetime = 599; - public static readonly RULE_constinterval = 600; - public static readonly RULE_opt_timezone = 601; - public static readonly RULE_opt_interval = 602; - public static readonly RULE_interval_second = 603; - public static readonly RULE_opt_escape = 604; - public static readonly RULE_a_expr = 605; - public static readonly RULE_a_expr_qual = 606; - public static readonly RULE_a_expr_lessless = 607; - public static readonly RULE_a_expr_or = 608; - public static readonly RULE_a_expr_and = 609; - public static readonly RULE_a_expr_in = 610; - public static readonly RULE_a_expr_unary_not = 611; - public static readonly RULE_a_expr_isnull = 612; - public static readonly RULE_a_expr_is_not = 613; - public static readonly RULE_a_expr_compare = 614; - public static readonly RULE_a_expr_like = 615; - public static readonly RULE_a_expr_qual_op = 616; - public static readonly RULE_a_expr_unary_qualop = 617; - public static readonly RULE_a_expr_add = 618; - public static readonly RULE_a_expr_mul = 619; - public static readonly RULE_a_expr_caret = 620; - public static readonly RULE_a_expr_unary_sign = 621; - public static readonly RULE_a_expr_at_time_zone = 622; - public static readonly RULE_a_expr_collate = 623; - public static readonly RULE_a_expr_typecast = 624; - public static readonly RULE_b_expr = 625; - public static readonly RULE_c_expr = 626; - public static readonly RULE_plsqlvariablename = 627; - public static readonly RULE_func_application = 628; - public static readonly RULE_func_expr = 629; - public static readonly RULE_func_expr_windowless = 630; - public static readonly RULE_func_expr_common_subexpr = 631; - public static readonly RULE_xml_root_version = 632; - public static readonly RULE_opt_xml_root_standalone = 633; - public static readonly RULE_xml_attributes = 634; - public static readonly RULE_xml_attribute_list = 635; - public static readonly RULE_xml_attribute_el = 636; - public static readonly RULE_document_or_content = 637; - public static readonly RULE_xml_whitespace_option = 638; - public static readonly RULE_xmlexists_argument = 639; - public static readonly RULE_xml_passing_mech = 640; - public static readonly RULE_within_group_clause = 641; - public static readonly RULE_filter_clause = 642; - public static readonly RULE_window_clause = 643; - public static readonly RULE_window_definition_list = 644; - public static readonly RULE_window_definition = 645; - public static readonly RULE_over_clause = 646; - public static readonly RULE_window_specification = 647; - public static readonly RULE_opt_existing_window_name = 648; - public static readonly RULE_opt_partition_clause = 649; - public static readonly RULE_opt_frame_clause = 650; - public static readonly RULE_frame_extent = 651; - public static readonly RULE_frame_bound = 652; - public static readonly RULE_opt_window_exclusion_clause = 653; - public static readonly RULE_row = 654; - public static readonly RULE_explicit_row = 655; - public static readonly RULE_implicit_row = 656; - public static readonly RULE_sub_type = 657; - public static readonly RULE_all_op = 658; - public static readonly RULE_mathop = 659; - public static readonly RULE_qual_op = 660; - public static readonly RULE_qual_all_op = 661; - public static readonly RULE_subquery_Op = 662; - public static readonly RULE_expr_list = 663; - public static readonly RULE_column_expr_list_noparen = 664; - public static readonly RULE_column_expr_list = 665; - public static readonly RULE_column_expr = 666; - public static readonly RULE_column_expr_noparen = 667; - public static readonly RULE_func_arg_list = 668; - public static readonly RULE_func_arg_expr = 669; - public static readonly RULE_type_list = 670; - public static readonly RULE_array_expr = 671; - public static readonly RULE_array_expr_list = 672; - public static readonly RULE_extract_list = 673; - public static readonly RULE_extract_arg = 674; - public static readonly RULE_unicode_normal_form = 675; - public static readonly RULE_overlay_list = 676; - public static readonly RULE_position_list = 677; - public static readonly RULE_substr_list = 678; - public static readonly RULE_trim_list = 679; - public static readonly RULE_in_expr = 680; - public static readonly RULE_case_expr = 681; - public static readonly RULE_when_clause_list = 682; - public static readonly RULE_when_clause = 683; - public static readonly RULE_case_default = 684; - public static readonly RULE_case_arg = 685; - public static readonly RULE_columnref = 686; - public static readonly RULE_indirection_el = 687; - public static readonly RULE_opt_slice_bound = 688; - public static readonly RULE_indirection = 689; - public static readonly RULE_opt_indirection = 690; - public static readonly RULE_opt_target_list = 691; - public static readonly RULE_target_list = 692; - public static readonly RULE_target_el = 693; - public static readonly RULE_qualified_name_list = 694; - public static readonly RULE_table_name_list = 695; - public static readonly RULE_schema_name_list = 696; - public static readonly RULE_database_nameList = 697; - public static readonly RULE_procedure_name_list = 698; - public static readonly RULE_tablespace_name_create = 699; - public static readonly RULE_tablespace_name = 700; - public static readonly RULE_table_name_create = 701; - public static readonly RULE_table_name = 702; - public static readonly RULE_view_name_create = 703; - public static readonly RULE_view_name = 704; - public static readonly RULE_qualified_name = 705; - public static readonly RULE_tablespace_name_list = 706; - public static readonly RULE_name_list = 707; - public static readonly RULE_database_name_create = 708; - public static readonly RULE_database_name = 709; - public static readonly RULE_schema_name = 710; - public static readonly RULE_routine_name_create = 711; - public static readonly RULE_routine_name = 712; - public static readonly RULE_procedure_name = 713; - public static readonly RULE_procedure_name_create = 714; - public static readonly RULE_column_name = 715; - public static readonly RULE_column_name_create = 716; - public static readonly RULE_name = 717; - public static readonly RULE_attr_name = 718; - public static readonly RULE_file_name = 719; - public static readonly RULE_function_name_create = 720; - public static readonly RULE_function_name = 721; - public static readonly RULE_usual_name = 722; - public static readonly RULE_aexprconst = 723; - public static readonly RULE_xconst = 724; - public static readonly RULE_bconst = 725; - public static readonly RULE_fconst = 726; - public static readonly RULE_iconst = 727; - public static readonly RULE_sconst = 728; - public static readonly RULE_anysconst = 729; - public static readonly RULE_opt_uescape = 730; - public static readonly RULE_signediconst = 731; - public static readonly RULE_groupname = 732; - public static readonly RULE_roleid = 733; - public static readonly RULE_rolespec = 734; - public static readonly RULE_role_list = 735; - public static readonly RULE_colid = 736; - public static readonly RULE_index_method_choices = 737; - public static readonly RULE_exclude_element = 738; - public static readonly RULE_index_paramenters = 739; - public static readonly RULE_type_function_name = 740; - public static readonly RULE_type_usual_name = 741; - public static readonly RULE_nonreservedword_column = 742; - public static readonly RULE_nonreservedword = 743; - public static readonly RULE_collabel = 744; - public static readonly RULE_identifier = 745; - public static readonly RULE_plsqlidentifier = 746; - public static readonly RULE_unreserved_keyword = 747; - public static readonly RULE_col_name_keyword = 748; - public static readonly RULE_type_func_name_keyword = 749; - public static readonly RULE_reserved_keyword = 750; - public static readonly RULE_pl_function = 751; - public static readonly RULE_comp_options = 752; - public static readonly RULE_comp_option = 753; - public static readonly RULE_sharp = 754; - public static readonly RULE_option_value = 755; - public static readonly RULE_opt_semi = 756; - public static readonly RULE_pl_block = 757; - public static readonly RULE_decl_sect = 758; - public static readonly RULE_decl_start = 759; - public static readonly RULE_decl_stmts = 760; - public static readonly RULE_label_decl = 761; - public static readonly RULE_decl_stmt = 762; - public static readonly RULE_decl_statement = 763; - public static readonly RULE_opt_scrollable = 764; - public static readonly RULE_decl_cursor_query = 765; - public static readonly RULE_decl_cursor_args = 766; - public static readonly RULE_decl_cursor_arglist = 767; - public static readonly RULE_decl_cursor_arg = 768; - public static readonly RULE_decl_is_for = 769; - public static readonly RULE_decl_aliasitem = 770; - public static readonly RULE_decl_varname = 771; - public static readonly RULE_decl_const = 772; - public static readonly RULE_decl_datatype = 773; - public static readonly RULE_decl_collate = 774; - public static readonly RULE_decl_notnull = 775; - public static readonly RULE_decl_defval = 776; - public static readonly RULE_decl_defkey = 777; - public static readonly RULE_assign_operator = 778; - public static readonly RULE_proc_sect = 779; - public static readonly RULE_proc_stmt = 780; - public static readonly RULE_stmt_perform = 781; - public static readonly RULE_stmt_call = 782; - public static readonly RULE_opt_expr_list = 783; - public static readonly RULE_stmt_assign = 784; - public static readonly RULE_stmt_getdiag = 785; - public static readonly RULE_getdiag_area_opt = 786; - public static readonly RULE_getdiag_list = 787; - public static readonly RULE_getdiag_list_item = 788; - public static readonly RULE_getdiag_item = 789; - public static readonly RULE_getdiag_target = 790; - public static readonly RULE_assign_var = 791; - public static readonly RULE_stmt_if = 792; - public static readonly RULE_stmt_elsifs = 793; - public static readonly RULE_stmt_else = 794; - public static readonly RULE_stmt_case = 795; - public static readonly RULE_opt_expr_until_when = 796; - public static readonly RULE_case_when_list = 797; - public static readonly RULE_case_when = 798; - public static readonly RULE_opt_case_else = 799; - public static readonly RULE_stmt_loop = 800; - public static readonly RULE_stmt_while = 801; - public static readonly RULE_stmt_for = 802; - public static readonly RULE_for_control = 803; - public static readonly RULE_opt_for_using_expression = 804; - public static readonly RULE_opt_cursor_parameters = 805; - public static readonly RULE_opt_reverse = 806; - public static readonly RULE_opt_by_expression = 807; - public static readonly RULE_for_variable = 808; - public static readonly RULE_stmt_foreach_a = 809; - public static readonly RULE_foreach_slice = 810; - public static readonly RULE_stmt_exit = 811; - public static readonly RULE_exit_type = 812; - public static readonly RULE_stmt_return = 813; - public static readonly RULE_opt_return_result = 814; - public static readonly RULE_stmt_raise = 815; - public static readonly RULE_opt_stmt_raise_level = 816; - public static readonly RULE_opt_raise_list = 817; - public static readonly RULE_opt_raise_using = 818; - public static readonly RULE_opt_raise_using_elem = 819; - public static readonly RULE_opt_raise_using_elem_list = 820; - public static readonly RULE_stmt_assert = 821; - public static readonly RULE_opt_stmt_assert_message = 822; - public static readonly RULE_loop_body = 823; - public static readonly RULE_stmt_execsql = 824; - public static readonly RULE_stmt_dynexecute = 825; - public static readonly RULE_opt_execute_using = 826; - public static readonly RULE_opt_execute_using_list = 827; - public static readonly RULE_opt_execute_into = 828; - public static readonly RULE_stmt_open = 829; - public static readonly RULE_opt_open_bound_list_item = 830; - public static readonly RULE_opt_open_bound_list = 831; - public static readonly RULE_opt_open_using = 832; - public static readonly RULE_opt_scroll_option = 833; - public static readonly RULE_opt_scroll_option_no = 834; - public static readonly RULE_stmt_fetch = 835; - public static readonly RULE_into_target = 836; - public static readonly RULE_opt_cursor_from = 837; - public static readonly RULE_opt_fetch_direction = 838; - public static readonly RULE_stmt_move = 839; - public static readonly RULE_mergestmt = 840; - public static readonly RULE_data_source = 841; - public static readonly RULE_join_condition = 842; - public static readonly RULE_merge_when_clause = 843; - public static readonly RULE_merge_insert = 844; - public static readonly RULE_merge_update = 845; - public static readonly RULE_default_values_or_values = 846; - public static readonly RULE_exprofdefaultlist = 847; - public static readonly RULE_exprofdefault = 848; - public static readonly RULE_stmt_close = 849; - public static readonly RULE_stmt_null = 850; - public static readonly RULE_stmt_commit = 851; - public static readonly RULE_stmt_rollback = 852; - public static readonly RULE_plsql_opt_transaction_chain = 853; - public static readonly RULE_stmt_set = 854; - public static readonly RULE_cursor_variable = 855; - public static readonly RULE_exception_sect = 856; - public static readonly RULE_proc_exceptions = 857; - public static readonly RULE_proc_exception = 858; - public static readonly RULE_proc_conditions = 859; - public static readonly RULE_proc_condition = 860; - public static readonly RULE_opt_block_label = 861; - public static readonly RULE_opt_loop_label = 862; - public static readonly RULE_opt_label = 863; - public static readonly RULE_opt_exitcond = 864; - public static readonly RULE_any_identifier = 865; - public static readonly RULE_plsql_unreserved_keyword = 866; - public static readonly RULE_sql_expression = 867; - public static readonly RULE_expr_until_then = 868; - public static readonly RULE_expr_until_semi = 869; - public static readonly RULE_expr_until_rightbracket = 870; - public static readonly RULE_expr_until_loop = 871; - public static readonly RULE_make_execsql_stmt = 872; - public static readonly RULE_opt_returning_clause_into = 873; + public static readonly RULE_column_def = 103; + public static readonly RULE_compressionCluase = 104; + public static readonly RULE_storageCluase = 105; + public static readonly RULE_columnOptions = 106; + public static readonly RULE_colquallist = 107; + public static readonly RULE_colconstraint = 108; + public static readonly RULE_colconstraintelem = 109; + public static readonly RULE_nulls_distinct = 110; + public static readonly RULE_generated_when = 111; + public static readonly RULE_deferrable_trigger = 112; + public static readonly RULE_initially_trigger = 113; + public static readonly RULE_tablelikeclause = 114; + public static readonly RULE_tablelikeoptionlist = 115; + public static readonly RULE_tablelikeoption = 116; + public static readonly RULE_tableconstraint = 117; + public static readonly RULE_constraintelem = 118; + public static readonly RULE_opt_no_inherit = 119; + public static readonly RULE_opt_column_list = 120; + public static readonly RULE_opt_column_list_create = 121; + public static readonly RULE_column_list = 122; + public static readonly RULE_column_list_create = 123; + public static readonly RULE_opt_c_include = 124; + public static readonly RULE_key_match = 125; + public static readonly RULE_exclusionconstraintlist = 126; + public static readonly RULE_exclusionconstraintelem = 127; + public static readonly RULE_exclusionwhereclause = 128; + public static readonly RULE_key_actions = 129; + public static readonly RULE_key_update = 130; + public static readonly RULE_key_delete = 131; + public static readonly RULE_key_action = 132; + public static readonly RULE_optinherit = 133; + public static readonly RULE_optpartitionspec = 134; + public static readonly RULE_partitionspec = 135; + public static readonly RULE_part_params = 136; + public static readonly RULE_part_elem = 137; + public static readonly RULE_table_access_method_clause = 138; + public static readonly RULE_optwith = 139; + public static readonly RULE_oncommitoption = 140; + public static readonly RULE_opttablespace = 141; + public static readonly RULE_index_paramenters_create = 142; + public static readonly RULE_optconstablespace = 143; + public static readonly RULE_existingindex = 144; + public static readonly RULE_createstatsstmt = 145; + public static readonly RULE_alterstatsstmt = 146; + public static readonly RULE_createasstmt = 147; + public static readonly RULE_create_as_target = 148; + public static readonly RULE_opt_with_data = 149; + public static readonly RULE_creatematviewstmt = 150; + public static readonly RULE_create_mv_target = 151; + public static readonly RULE_optnolog = 152; + public static readonly RULE_refreshmatviewstmt = 153; + public static readonly RULE_createseqstmt = 154; + public static readonly RULE_alterseqstmt = 155; + public static readonly RULE_optseqoptlist = 156; + public static readonly RULE_optparenthesizedseqoptlist = 157; + public static readonly RULE_seqoptlist = 158; + public static readonly RULE_seqoptelem = 159; + public static readonly RULE_opt_by = 160; + public static readonly RULE_numericonly = 161; + public static readonly RULE_numericonly_list = 162; + public static readonly RULE_createplangstmt = 163; + public static readonly RULE_opt_trusted = 164; + public static readonly RULE_handler_name = 165; + public static readonly RULE_opt_inline_handler = 166; + public static readonly RULE_validator_clause = 167; + public static readonly RULE_opt_validator = 168; + public static readonly RULE_opt_procedural = 169; + public static readonly RULE_createtablespacestmt = 170; + public static readonly RULE_opttablespaceowner = 171; + public static readonly RULE_createextensionstmt = 172; + public static readonly RULE_create_extension_opt_list = 173; + public static readonly RULE_create_extension_opt_item = 174; + public static readonly RULE_alterextensionstmt = 175; + public static readonly RULE_alter_extension_opt_list = 176; + public static readonly RULE_alter_extension_opt_item = 177; + public static readonly RULE_alterextensioncontentsstmt = 178; + public static readonly RULE_createfdwstmt = 179; + public static readonly RULE_fdw_option = 180; + public static readonly RULE_fdw_options = 181; + public static readonly RULE_opt_fdw_options = 182; + public static readonly RULE_alterfdwstmt = 183; + public static readonly RULE_create_generic_options = 184; + public static readonly RULE_generic_option_list = 185; + public static readonly RULE_alter_generic_options = 186; + public static readonly RULE_alter_generic_option_list = 187; + public static readonly RULE_alter_generic_option_elem = 188; + public static readonly RULE_generic_option_elem = 189; + public static readonly RULE_generic_option_name = 190; + public static readonly RULE_generic_option_arg = 191; + public static readonly RULE_createforeignserverstmt = 192; + public static readonly RULE_opt_type = 193; + public static readonly RULE_foreign_server_version = 194; + public static readonly RULE_opt_foreign_server_version = 195; + public static readonly RULE_alterforeignserverstmt = 196; + public static readonly RULE_createforeigntablestmt = 197; + public static readonly RULE_importforeignschemastmt = 198; + public static readonly RULE_import_qualification_type = 199; + public static readonly RULE_import_qualification = 200; + public static readonly RULE_createusermappingstmt = 201; + public static readonly RULE_auth_ident = 202; + public static readonly RULE_alterusermappingstmt = 203; + public static readonly RULE_createpolicystmt = 204; + public static readonly RULE_alterpolicystmt = 205; + public static readonly RULE_alterprocedurestmt = 206; + public static readonly RULE_procedure_cluase = 207; + public static readonly RULE_procedure_action = 208; + public static readonly RULE_rowsecurityoptionalexpr = 209; + public static readonly RULE_rowsecurityoptionalwithcheck = 210; + public static readonly RULE_rowsecuritydefaulttorole = 211; + public static readonly RULE_rowsecurityoptionaltorole = 212; + public static readonly RULE_rowsecuritydefaultpermissive = 213; + public static readonly RULE_rowsecuritydefaultforcmd = 214; + public static readonly RULE_row_security_cmd = 215; + public static readonly RULE_createamstmt = 216; + public static readonly RULE_am_type = 217; + public static readonly RULE_createtrigstmt = 218; + public static readonly RULE_triggeractiontime = 219; + public static readonly RULE_foreachrow = 220; + public static readonly RULE_roworstatment = 221; + public static readonly RULE_triggerevents = 222; + public static readonly RULE_triggeroneevent = 223; + public static readonly RULE_triggerreferencing = 224; + public static readonly RULE_triggertransitions = 225; + public static readonly RULE_triggertransition = 226; + public static readonly RULE_transitionoldornew = 227; + public static readonly RULE_transitionrowortable = 228; + public static readonly RULE_transitionrelname = 229; + public static readonly RULE_triggerforspec = 230; + public static readonly RULE_triggerforopteach = 231; + public static readonly RULE_triggerfortype = 232; + public static readonly RULE_triggerwhen = 233; + public static readonly RULE_function_or_procedure = 234; + public static readonly RULE_triggerfuncargs = 235; + public static readonly RULE_triggerfuncarg = 236; + public static readonly RULE_optconstrfromtable = 237; + public static readonly RULE_constraintattributespec = 238; + public static readonly RULE_constraintattributeElem = 239; + public static readonly RULE_createeventtrigstmt = 240; + public static readonly RULE_event_trigger_when_list = 241; + public static readonly RULE_event_trigger_when_item = 242; + public static readonly RULE_event_trigger_value_list = 243; + public static readonly RULE_altereventtrigstmt = 244; + public static readonly RULE_enable_trigger = 245; + public static readonly RULE_createassertionstmt = 246; + public static readonly RULE_definestmt = 247; + public static readonly RULE_definition = 248; + public static readonly RULE_def_list = 249; + public static readonly RULE_def_elem = 250; + public static readonly RULE_def_arg = 251; + public static readonly RULE_old_aggr_definition = 252; + public static readonly RULE_old_aggr_list = 253; + public static readonly RULE_old_aggr_elem = 254; + public static readonly RULE_opt_enum_val_list = 255; + public static readonly RULE_enum_val_list = 256; + public static readonly RULE_alterenumstmt = 257; + public static readonly RULE_opt_if_not_exists = 258; + public static readonly RULE_createopclassstmt = 259; + public static readonly RULE_opclass_item_list = 260; + public static readonly RULE_opclass_item = 261; + public static readonly RULE_opt_default = 262; + public static readonly RULE_opt_opfamily = 263; + public static readonly RULE_opclass_purpose = 264; + public static readonly RULE_opt_recheck = 265; + public static readonly RULE_createopfamilystmt = 266; + public static readonly RULE_alteropfamilystmt = 267; + public static readonly RULE_opclass_drop_list = 268; + public static readonly RULE_opclass_drop = 269; + public static readonly RULE_reassignownedstmt = 270; + public static readonly RULE_dropstmt = 271; + public static readonly RULE_view_nameList = 272; + public static readonly RULE_object_type_any_name = 273; + public static readonly RULE_object_type_name = 274; + public static readonly RULE_object_type_name_on_any_name = 275; + public static readonly RULE_any_name_list = 276; + public static readonly RULE_relation_column_name = 277; + public static readonly RULE_relation_name = 278; + public static readonly RULE_any_name = 279; + public static readonly RULE_attrs = 280; + public static readonly RULE_type_name_list = 281; + public static readonly RULE_truncatestmt = 282; + public static readonly RULE_truncate_table = 283; + public static readonly RULE_commentstmt = 284; + public static readonly RULE_comment_text = 285; + public static readonly RULE_seclabelstmt = 286; + public static readonly RULE_opt_provider = 287; + public static readonly RULE_security_label = 288; + public static readonly RULE_fetchstmt = 289; + public static readonly RULE_fetch_args = 290; + public static readonly RULE_from_in = 291; + public static readonly RULE_opt_from_in = 292; + public static readonly RULE_grantstmt = 293; + public static readonly RULE_revokestmt = 294; + public static readonly RULE_privileges = 295; + public static readonly RULE_beforeprivilegeselectlist = 296; + public static readonly RULE_beforeprivilegeselect = 297; + public static readonly RULE_privilege_list = 298; + public static readonly RULE_privilege = 299; + public static readonly RULE_privilege_target = 300; + public static readonly RULE_grantee_list = 301; + public static readonly RULE_grantee = 302; + public static readonly RULE_opt_grant_grant_option = 303; + public static readonly RULE_grantrolestmt = 304; + public static readonly RULE_revokerolestmt = 305; + public static readonly RULE_opt_grant_admin_option = 306; + public static readonly RULE_opt_granted_by = 307; + public static readonly RULE_alterdefaultprivilegesstmt = 308; + public static readonly RULE_defacloptionlist = 309; + public static readonly RULE_defacloption = 310; + public static readonly RULE_defaclaction = 311; + public static readonly RULE_defacl_privilege_target = 312; + public static readonly RULE_indexstmt = 313; + public static readonly RULE_opt_unique = 314; + public static readonly RULE_opt_concurrently = 315; + public static readonly RULE_opt_index_name = 316; + public static readonly RULE_access_method_clause = 317; + public static readonly RULE_index_params = 318; + public static readonly RULE_index_elem_options = 319; + public static readonly RULE_index_elem = 320; + public static readonly RULE_opt_include = 321; + public static readonly RULE_index_including_params = 322; + public static readonly RULE_opt_collate = 323; + public static readonly RULE_opt_class = 324; + public static readonly RULE_opt_asc_desc = 325; + public static readonly RULE_opt_nulls_order = 326; + public static readonly RULE_createfunctionstmt = 327; + public static readonly RULE_attrilist = 328; + public static readonly RULE_opt_or_replace = 329; + public static readonly RULE_func_args = 330; + public static readonly RULE_func_args_list = 331; + public static readonly RULE_routine_with_argtypes_list = 332; + public static readonly RULE_routine_with_argtypes = 333; + public static readonly RULE_procedure_with_argtypes_list = 334; + public static readonly RULE_procedure_with_argtypes = 335; + public static readonly RULE_function_with_argtypes_list = 336; + public static readonly RULE_function_with_argtypes = 337; + public static readonly RULE_func_args_with_defaults = 338; + public static readonly RULE_func_args_with_defaults_list = 339; + public static readonly RULE_func_arg = 340; + public static readonly RULE_arg_class = 341; + public static readonly RULE_param_name = 342; + public static readonly RULE_func_return = 343; + public static readonly RULE_func_type = 344; + public static readonly RULE_func_arg_with_default = 345; + public static readonly RULE_aggr_arg = 346; + public static readonly RULE_aggr_args = 347; + public static readonly RULE_aggr_args_list = 348; + public static readonly RULE_aggregate_with_argtypes = 349; + public static readonly RULE_aggregate_with_argtypes_list = 350; + public static readonly RULE_createfunc_opt_list = 351; + public static readonly RULE_common_func_opt_item = 352; + public static readonly RULE_createfunc_opt_item = 353; + public static readonly RULE_transform_type_list = 354; + public static readonly RULE_opt_definition = 355; + public static readonly RULE_table_func_column = 356; + public static readonly RULE_table_func_column_list = 357; + public static readonly RULE_alterfunctionstmt = 358; + public static readonly RULE_alterFunctionTypeClause = 359; + public static readonly RULE_alterfunc_opt_list = 360; + public static readonly RULE_opt_restrict = 361; + public static readonly RULE_removefuncstmt = 362; + public static readonly RULE_removeaggrstmt = 363; + public static readonly RULE_removeoperstmt = 364; + public static readonly RULE_oper_argtypes = 365; + public static readonly RULE_any_operator = 366; + public static readonly RULE_operator_with_argtypes_list = 367; + public static readonly RULE_operator_with_argtypes = 368; + public static readonly RULE_dostmt = 369; + public static readonly RULE_dostmt_opt_list = 370; + public static readonly RULE_dostmt_opt_item = 371; + public static readonly RULE_createcaststmt = 372; + public static readonly RULE_cast_context = 373; + public static readonly RULE_opt_if_exists = 374; + public static readonly RULE_createtransformstmt = 375; + public static readonly RULE_transform_element_list = 376; + public static readonly RULE_reindexstmt = 377; + public static readonly RULE_reindex_target_type = 378; + public static readonly RULE_reindex_target_multitable = 379; + public static readonly RULE_reindex_option_list = 380; + public static readonly RULE_reindex_option_elem = 381; + public static readonly RULE_altertblspcstmt = 382; + public static readonly RULE_renamestmt = 383; + public static readonly RULE_opt_set_data = 384; + public static readonly RULE_alterobjectdependsstmt = 385; + public static readonly RULE_opt_no = 386; + public static readonly RULE_alterobjectschemastmt = 387; + public static readonly RULE_alteroperatorstmt = 388; + public static readonly RULE_operator_def_list = 389; + public static readonly RULE_operator_def_elem = 390; + public static readonly RULE_operator_def_arg = 391; + public static readonly RULE_altertypestmt = 392; + public static readonly RULE_alterownerstmt = 393; + public static readonly RULE_createpublicationstmt = 394; + public static readonly RULE_opt_publication_for_tables = 395; + public static readonly RULE_publication_for_tables = 396; + public static readonly RULE_alterpublicationstmt = 397; + public static readonly RULE_createsubscriptionstmt = 398; + public static readonly RULE_publication_name_list = 399; + public static readonly RULE_publication_name_item = 400; + public static readonly RULE_altersubscriptionstmt = 401; + public static readonly RULE_rulestmt = 402; + public static readonly RULE_ruleactionlist = 403; + public static readonly RULE_ruleactionmulti = 404; + public static readonly RULE_ruleactionstmt = 405; + public static readonly RULE_ruleactionstmtOrEmpty = 406; + public static readonly RULE_event = 407; + public static readonly RULE_opt_instead = 408; + public static readonly RULE_notifystmt = 409; + public static readonly RULE_notify_payload = 410; + public static readonly RULE_listenstmt = 411; + public static readonly RULE_unlistenstmt = 412; + public static readonly RULE_transactionstmt = 413; + public static readonly RULE_opt_transaction = 414; + public static readonly RULE_transaction_mode_item = 415; + public static readonly RULE_transaction_mode_list = 416; + public static readonly RULE_transaction_mode_list_or_empty = 417; + public static readonly RULE_opt_transaction_chain = 418; + public static readonly RULE_viewstmt = 419; + public static readonly RULE_opt_check_option = 420; + public static readonly RULE_loadstmt = 421; + public static readonly RULE_createdbstmt = 422; + public static readonly RULE_createdb_opt_list = 423; + public static readonly RULE_createdb_opt_items = 424; + public static readonly RULE_createdb_opt_item = 425; + public static readonly RULE_createdb_opt_name = 426; + public static readonly RULE_opt_equal = 427; + public static readonly RULE_alterdatabasestmt = 428; + public static readonly RULE_alterdatabasesetstmt = 429; + public static readonly RULE_drop_option_list = 430; + public static readonly RULE_drop_option = 431; + public static readonly RULE_altercollationstmt = 432; + public static readonly RULE_altersystemstmt = 433; + public static readonly RULE_createdomainstmt = 434; + public static readonly RULE_alterdomainstmt = 435; + public static readonly RULE_opt_as = 436; + public static readonly RULE_altertsdictionarystmt = 437; + public static readonly RULE_altertsconfigurationstmt = 438; + public static readonly RULE_any_with = 439; + public static readonly RULE_createconversionstmt = 440; + public static readonly RULE_clusterstmt = 441; + public static readonly RULE_opt_verbose_list = 442; + public static readonly RULE_cluster_index_specification = 443; + public static readonly RULE_vacuumstmt = 444; + public static readonly RULE_analyzestmt = 445; + public static readonly RULE_vac_analyze_option_list = 446; + public static readonly RULE_analyze_keyword = 447; + public static readonly RULE_vac_analyze_option_elem = 448; + public static readonly RULE_vac_analyze_option_name = 449; + public static readonly RULE_vac_analyze_option_arg = 450; + public static readonly RULE_opt_analyze = 451; + public static readonly RULE_analyze_options_list = 452; + public static readonly RULE_analyze_option_elem = 453; + public static readonly RULE_opt_verbose = 454; + public static readonly RULE_opt_skiplock = 455; + public static readonly RULE_opt_buffer_usage_limit = 456; + public static readonly RULE_opt_full = 457; + public static readonly RULE_opt_freeze = 458; + public static readonly RULE_opt_name_list = 459; + public static readonly RULE_vacuum_relation = 460; + public static readonly RULE_vacuum_relation_list = 461; + public static readonly RULE_opt_vacuum_relation_list = 462; + public static readonly RULE_explainstmt = 463; + public static readonly RULE_explainablestmt = 464; + public static readonly RULE_explain_option_list = 465; + public static readonly RULE_explain_option_elem = 466; + public static readonly RULE_explain_option_name = 467; + public static readonly RULE_explain_option_arg = 468; + public static readonly RULE_preparestmt = 469; + public static readonly RULE_prep_type_clause = 470; + public static readonly RULE_preparablestmt = 471; + public static readonly RULE_executestmt = 472; + public static readonly RULE_execute_param_clause = 473; + public static readonly RULE_deallocatestmt = 474; + public static readonly RULE_insertstmt = 475; + public static readonly RULE_insert_target = 476; + public static readonly RULE_insert_rest = 477; + public static readonly RULE_override_kind = 478; + public static readonly RULE_insert_column_list = 479; + public static readonly RULE_insert_column_item = 480; + public static readonly RULE_opt_on_conflict = 481; + public static readonly RULE_opt_conf_expr = 482; + public static readonly RULE_returning_clause = 483; + public static readonly RULE_deletestmt = 484; + public static readonly RULE_using_clause = 485; + public static readonly RULE_lockstmt = 486; + public static readonly RULE_opt_lock = 487; + public static readonly RULE_lock_type = 488; + public static readonly RULE_opt_nowait = 489; + public static readonly RULE_opt_nowait_or_skip = 490; + public static readonly RULE_updatestmt = 491; + public static readonly RULE_set_clause_list = 492; + public static readonly RULE_set_clause = 493; + public static readonly RULE_set_target = 494; + public static readonly RULE_set_target_list = 495; + public static readonly RULE_declarecursorstmt = 496; + public static readonly RULE_cursor_name = 497; + public static readonly RULE_cursor_options = 498; + public static readonly RULE_opt_hold = 499; + public static readonly RULE_selectstmt = 500; + public static readonly RULE_select_with_parens = 501; + public static readonly RULE_select_no_parens = 502; + public static readonly RULE_select_clause = 503; + public static readonly RULE_simple_select = 504; + public static readonly RULE_set_operator = 505; + public static readonly RULE_set_operator_with_all_or_distinct = 506; + public static readonly RULE_with_clause = 507; + public static readonly RULE_cte_list = 508; + public static readonly RULE_common_table_expr = 509; + public static readonly RULE_search_cluase = 510; + public static readonly RULE_cycle_cluase = 511; + public static readonly RULE_opt_materialized = 512; + public static readonly RULE_opt_with_clause = 513; + public static readonly RULE_into_clause = 514; + public static readonly RULE_opt_strict = 515; + public static readonly RULE_opttempTableName = 516; + public static readonly RULE_opt_table = 517; + public static readonly RULE_all_or_distinct = 518; + public static readonly RULE_distinct_clause = 519; + public static readonly RULE_opt_all_clause = 520; + public static readonly RULE_opt_sort_clause = 521; + public static readonly RULE_sort_clause = 522; + public static readonly RULE_sortby_list = 523; + public static readonly RULE_sortby = 524; + public static readonly RULE_select_limit = 525; + public static readonly RULE_opt_select_limit = 526; + public static readonly RULE_limit_clause = 527; + public static readonly RULE_fetch_clause = 528; + public static readonly RULE_offset_clause = 529; + public static readonly RULE_select_limit_value = 530; + public static readonly RULE_select_offset_value = 531; + public static readonly RULE_select_fetch_first_value = 532; + public static readonly RULE_i_or_f_const = 533; + public static readonly RULE_row_or_rows = 534; + public static readonly RULE_first_or_next = 535; + public static readonly RULE_group_clause = 536; + public static readonly RULE_group_by_list = 537; + public static readonly RULE_group_by_item = 538; + public static readonly RULE_empty_grouping_set = 539; + public static readonly RULE_rollup_clause = 540; + public static readonly RULE_cube_clause = 541; + public static readonly RULE_grouping_sets_clause = 542; + public static readonly RULE_having_clause = 543; + public static readonly RULE_for_locking_clause = 544; + public static readonly RULE_opt_for_locking_clause = 545; + public static readonly RULE_for_locking_items = 546; + public static readonly RULE_for_locking_item = 547; + public static readonly RULE_for_locking_strength = 548; + public static readonly RULE_locked_rels_list = 549; + public static readonly RULE_values_clause = 550; + public static readonly RULE_from_clause = 551; + public static readonly RULE_from_list = 552; + public static readonly RULE_table_ref = 553; + public static readonly RULE_alias_clause = 554; + public static readonly RULE_opt_alias_clause = 555; + public static readonly RULE_func_alias_clause = 556; + public static readonly RULE_join_type = 557; + public static readonly RULE_join_qual = 558; + public static readonly RULE_relation_expr = 559; + public static readonly RULE_view_relation_expr = 560; + public static readonly RULE_publication_relation_expr = 561; + public static readonly RULE_relation_expr_list = 562; + public static readonly RULE_publication_relation_expr_list = 563; + public static readonly RULE_relation_expr_opt_alias = 564; + public static readonly RULE_tablesample_clause = 565; + public static readonly RULE_opt_repeatable_clause = 566; + public static readonly RULE_func_table = 567; + public static readonly RULE_rowsfrom_item = 568; + public static readonly RULE_rowsfrom_list = 569; + public static readonly RULE_opt_col_def_list = 570; + public static readonly RULE_opt_ordinality = 571; + public static readonly RULE_where_clause = 572; + public static readonly RULE_where_or_current_clause = 573; + public static readonly RULE_opttablefuncelementlist = 574; + public static readonly RULE_tablefuncelementlist = 575; + public static readonly RULE_tablefuncelement = 576; + public static readonly RULE_xmltable = 577; + public static readonly RULE_xmltable_column_list = 578; + public static readonly RULE_xmltable_column_el = 579; + public static readonly RULE_xmltable_column_option_list = 580; + public static readonly RULE_xmltable_column_option_el = 581; + public static readonly RULE_xml_namespace_list = 582; + public static readonly RULE_xml_namespace_el = 583; + public static readonly RULE_typename = 584; + public static readonly RULE_opt_array_bounds = 585; + public static readonly RULE_simpletypename = 586; + public static readonly RULE_consttypename = 587; + public static readonly RULE_generictype = 588; + public static readonly RULE_opt_type_modifiers = 589; + public static readonly RULE_numeric = 590; + public static readonly RULE_opt_float = 591; + public static readonly RULE_bit = 592; + public static readonly RULE_constbit = 593; + public static readonly RULE_bitwithlength = 594; + public static readonly RULE_bitwithoutlength = 595; + public static readonly RULE_character = 596; + public static readonly RULE_constcharacter = 597; + public static readonly RULE_character_c = 598; + public static readonly RULE_opt_varying = 599; + public static readonly RULE_constdatetime = 600; + public static readonly RULE_constinterval = 601; + public static readonly RULE_opt_timezone = 602; + public static readonly RULE_opt_interval = 603; + public static readonly RULE_interval_second = 604; + public static readonly RULE_opt_escape = 605; + public static readonly RULE_a_expr = 606; + public static readonly RULE_a_expr_qual = 607; + public static readonly RULE_a_expr_lessless = 608; + public static readonly RULE_a_expr_or = 609; + public static readonly RULE_a_expr_and = 610; + public static readonly RULE_a_expr_in = 611; + public static readonly RULE_a_expr_unary_not = 612; + public static readonly RULE_a_expr_isnull = 613; + public static readonly RULE_a_expr_is_not = 614; + public static readonly RULE_a_expr_compare = 615; + public static readonly RULE_a_expr_like = 616; + public static readonly RULE_a_expr_qual_op = 617; + public static readonly RULE_a_expr_unary_qualop = 618; + public static readonly RULE_a_expr_add = 619; + public static readonly RULE_a_expr_mul = 620; + public static readonly RULE_a_expr_caret = 621; + public static readonly RULE_a_expr_unary_sign = 622; + public static readonly RULE_a_expr_at_time_zone = 623; + public static readonly RULE_a_expr_collate = 624; + public static readonly RULE_a_expr_typecast = 625; + public static readonly RULE_b_expr = 626; + public static readonly RULE_c_expr = 627; + public static readonly RULE_plsqlvariablename = 628; + public static readonly RULE_func_application = 629; + public static readonly RULE_func_expr = 630; + public static readonly RULE_func_expr_windowless = 631; + public static readonly RULE_func_expr_common_subexpr = 632; + public static readonly RULE_xml_root_version = 633; + public static readonly RULE_opt_xml_root_standalone = 634; + public static readonly RULE_xml_attributes = 635; + public static readonly RULE_xml_attribute_list = 636; + public static readonly RULE_xml_attribute_el = 637; + public static readonly RULE_document_or_content = 638; + public static readonly RULE_xml_whitespace_option = 639; + public static readonly RULE_xmlexists_argument = 640; + public static readonly RULE_xml_passing_mech = 641; + public static readonly RULE_within_group_clause = 642; + public static readonly RULE_filter_clause = 643; + public static readonly RULE_window_clause = 644; + public static readonly RULE_window_definition_list = 645; + public static readonly RULE_window_definition = 646; + public static readonly RULE_over_clause = 647; + public static readonly RULE_window_specification = 648; + public static readonly RULE_opt_existing_window_name = 649; + public static readonly RULE_opt_partition_clause = 650; + public static readonly RULE_opt_frame_clause = 651; + public static readonly RULE_frame_extent = 652; + public static readonly RULE_frame_bound = 653; + public static readonly RULE_opt_window_exclusion_clause = 654; + public static readonly RULE_row = 655; + public static readonly RULE_explicit_row = 656; + public static readonly RULE_implicit_row = 657; + public static readonly RULE_sub_type = 658; + public static readonly RULE_all_op = 659; + public static readonly RULE_mathop = 660; + public static readonly RULE_qual_op = 661; + public static readonly RULE_qual_all_op = 662; + public static readonly RULE_subquery_Op = 663; + public static readonly RULE_expr_list = 664; + public static readonly RULE_column_expr_list_noparen = 665; + public static readonly RULE_column_expr_list = 666; + public static readonly RULE_column_expr = 667; + public static readonly RULE_column_expr_noparen = 668; + public static readonly RULE_func_arg_list = 669; + public static readonly RULE_func_arg_expr = 670; + public static readonly RULE_type_list = 671; + public static readonly RULE_array_expr = 672; + public static readonly RULE_array_expr_list = 673; + public static readonly RULE_extract_list = 674; + public static readonly RULE_extract_arg = 675; + public static readonly RULE_unicode_normal_form = 676; + public static readonly RULE_overlay_list = 677; + public static readonly RULE_position_list = 678; + public static readonly RULE_substr_list = 679; + public static readonly RULE_trim_list = 680; + public static readonly RULE_in_expr = 681; + public static readonly RULE_case_expr = 682; + public static readonly RULE_when_clause_list = 683; + public static readonly RULE_when_clause = 684; + public static readonly RULE_case_default = 685; + public static readonly RULE_case_arg = 686; + public static readonly RULE_columnref = 687; + public static readonly RULE_indirection_el = 688; + public static readonly RULE_opt_slice_bound = 689; + public static readonly RULE_indirection = 690; + public static readonly RULE_opt_indirection = 691; + public static readonly RULE_opt_target_list = 692; + public static readonly RULE_target_list = 693; + public static readonly RULE_target_el = 694; + public static readonly RULE_qualified_name_list = 695; + public static readonly RULE_table_name_list = 696; + public static readonly RULE_schema_name_list = 697; + public static readonly RULE_database_nameList = 698; + public static readonly RULE_procedure_name_list = 699; + public static readonly RULE_tablespace_name_create = 700; + public static readonly RULE_tablespace_name = 701; + public static readonly RULE_table_name_create = 702; + public static readonly RULE_table_name = 703; + public static readonly RULE_view_name_create = 704; + public static readonly RULE_view_name = 705; + public static readonly RULE_qualified_name = 706; + public static readonly RULE_tablespace_name_list = 707; + public static readonly RULE_name_list = 708; + public static readonly RULE_database_name_create = 709; + public static readonly RULE_database_name = 710; + public static readonly RULE_schema_name = 711; + public static readonly RULE_routine_name_create = 712; + public static readonly RULE_routine_name = 713; + public static readonly RULE_procedure_name = 714; + public static readonly RULE_procedure_name_create = 715; + public static readonly RULE_column_name = 716; + public static readonly RULE_column_name_create = 717; + public static readonly RULE_name = 718; + public static readonly RULE_attr_name = 719; + public static readonly RULE_file_name = 720; + public static readonly RULE_function_name_create = 721; + public static readonly RULE_function_name = 722; + public static readonly RULE_usual_name = 723; + public static readonly RULE_aexprconst = 724; + public static readonly RULE_xconst = 725; + public static readonly RULE_bconst = 726; + public static readonly RULE_fconst = 727; + public static readonly RULE_iconst = 728; + public static readonly RULE_sconst = 729; + public static readonly RULE_anysconst = 730; + public static readonly RULE_opt_uescape = 731; + public static readonly RULE_signediconst = 732; + public static readonly RULE_groupname = 733; + public static readonly RULE_roleid = 734; + public static readonly RULE_rolespec = 735; + public static readonly RULE_role_list = 736; + public static readonly RULE_colid = 737; + public static readonly RULE_index_method_choices = 738; + public static readonly RULE_exclude_element = 739; + public static readonly RULE_index_paramenters = 740; + public static readonly RULE_type_function_name = 741; + public static readonly RULE_type_usual_name = 742; + public static readonly RULE_nonreservedword_column = 743; + public static readonly RULE_nonreservedword = 744; + public static readonly RULE_collabel = 745; + public static readonly RULE_identifier = 746; + public static readonly RULE_plsqlidentifier = 747; + public static readonly RULE_unreserved_keyword = 748; + public static readonly RULE_col_name_keyword = 749; + public static readonly RULE_type_func_name_keyword = 750; + public static readonly RULE_reserved_keyword = 751; + public static readonly RULE_pl_function = 752; + public static readonly RULE_comp_options = 753; + public static readonly RULE_comp_option = 754; + public static readonly RULE_sharp = 755; + public static readonly RULE_option_value = 756; + public static readonly RULE_opt_semi = 757; + public static readonly RULE_pl_block = 758; + public static readonly RULE_decl_sect = 759; + public static readonly RULE_decl_start = 760; + public static readonly RULE_decl_stmts = 761; + public static readonly RULE_label_decl = 762; + public static readonly RULE_decl_stmt = 763; + public static readonly RULE_decl_statement = 764; + public static readonly RULE_opt_scrollable = 765; + public static readonly RULE_decl_cursor_query = 766; + public static readonly RULE_decl_cursor_args = 767; + public static readonly RULE_decl_cursor_arglist = 768; + public static readonly RULE_decl_cursor_arg = 769; + public static readonly RULE_decl_is_for = 770; + public static readonly RULE_decl_aliasitem = 771; + public static readonly RULE_decl_varname = 772; + public static readonly RULE_decl_const = 773; + public static readonly RULE_decl_datatype = 774; + public static readonly RULE_decl_collate = 775; + public static readonly RULE_decl_notnull = 776; + public static readonly RULE_decl_defval = 777; + public static readonly RULE_decl_defkey = 778; + public static readonly RULE_assign_operator = 779; + public static readonly RULE_proc_sect = 780; + public static readonly RULE_proc_stmt = 781; + public static readonly RULE_stmt_perform = 782; + public static readonly RULE_stmt_call = 783; + public static readonly RULE_opt_expr_list = 784; + public static readonly RULE_stmt_assign = 785; + public static readonly RULE_stmt_getdiag = 786; + public static readonly RULE_getdiag_area_opt = 787; + public static readonly RULE_getdiag_list = 788; + public static readonly RULE_getdiag_list_item = 789; + public static readonly RULE_getdiag_item = 790; + public static readonly RULE_getdiag_target = 791; + public static readonly RULE_assign_var = 792; + public static readonly RULE_stmt_if = 793; + public static readonly RULE_stmt_elsifs = 794; + public static readonly RULE_stmt_else = 795; + public static readonly RULE_stmt_case = 796; + public static readonly RULE_opt_expr_until_when = 797; + public static readonly RULE_case_when_list = 798; + public static readonly RULE_case_when = 799; + public static readonly RULE_opt_case_else = 800; + public static readonly RULE_stmt_loop = 801; + public static readonly RULE_stmt_while = 802; + public static readonly RULE_stmt_for = 803; + public static readonly RULE_for_control = 804; + public static readonly RULE_opt_for_using_expression = 805; + public static readonly RULE_opt_cursor_parameters = 806; + public static readonly RULE_opt_reverse = 807; + public static readonly RULE_opt_by_expression = 808; + public static readonly RULE_for_variable = 809; + public static readonly RULE_stmt_foreach_a = 810; + public static readonly RULE_foreach_slice = 811; + public static readonly RULE_stmt_exit = 812; + public static readonly RULE_exit_type = 813; + public static readonly RULE_stmt_return = 814; + public static readonly RULE_opt_return_result = 815; + public static readonly RULE_stmt_raise = 816; + public static readonly RULE_opt_stmt_raise_level = 817; + public static readonly RULE_opt_raise_list = 818; + public static readonly RULE_opt_raise_using = 819; + public static readonly RULE_opt_raise_using_elem = 820; + public static readonly RULE_opt_raise_using_elem_list = 821; + public static readonly RULE_stmt_assert = 822; + public static readonly RULE_opt_stmt_assert_message = 823; + public static readonly RULE_loop_body = 824; + public static readonly RULE_stmt_execsql = 825; + public static readonly RULE_stmt_dynexecute = 826; + public static readonly RULE_opt_execute_using = 827; + public static readonly RULE_opt_execute_using_list = 828; + public static readonly RULE_opt_execute_into = 829; + public static readonly RULE_stmt_open = 830; + public static readonly RULE_opt_open_bound_list_item = 831; + public static readonly RULE_opt_open_bound_list = 832; + public static readonly RULE_opt_open_using = 833; + public static readonly RULE_opt_scroll_option = 834; + public static readonly RULE_opt_scroll_option_no = 835; + public static readonly RULE_stmt_fetch = 836; + public static readonly RULE_into_target = 837; + public static readonly RULE_opt_cursor_from = 838; + public static readonly RULE_opt_fetch_direction = 839; + public static readonly RULE_stmt_move = 840; + public static readonly RULE_mergestmt = 841; + public static readonly RULE_data_source = 842; + public static readonly RULE_join_condition = 843; + public static readonly RULE_merge_when_clause = 844; + public static readonly RULE_merge_insert = 845; + public static readonly RULE_merge_update = 846; + public static readonly RULE_default_values_or_values = 847; + public static readonly RULE_exprofdefaultlist = 848; + public static readonly RULE_exprofdefault = 849; + public static readonly RULE_stmt_close = 850; + public static readonly RULE_stmt_null = 851; + public static readonly RULE_stmt_commit = 852; + public static readonly RULE_stmt_rollback = 853; + public static readonly RULE_plsql_opt_transaction_chain = 854; + public static readonly RULE_stmt_set = 855; + public static readonly RULE_cursor_variable = 856; + public static readonly RULE_exception_sect = 857; + public static readonly RULE_proc_exceptions = 858; + public static readonly RULE_proc_exception = 859; + public static readonly RULE_proc_conditions = 860; + public static readonly RULE_proc_condition = 861; + public static readonly RULE_opt_block_label = 862; + public static readonly RULE_opt_loop_label = 863; + public static readonly RULE_opt_label = 864; + public static readonly RULE_opt_exitcond = 865; + public static readonly RULE_any_identifier = 866; + public static readonly RULE_plsql_unreserved_keyword = 867; + public static readonly RULE_sql_expression = 868; + public static readonly RULE_expr_until_then = 869; + public static readonly RULE_expr_until_semi = 870; + public static readonly RULE_expr_until_rightbracket = 871; + public static readonly RULE_expr_until_loop = 872; + public static readonly RULE_make_execsql_stmt = 873; + public static readonly RULE_opt_returning_clause_into = 874; public static readonly literalNames = [ null, "'$'", "'('", "')'", "'['", "']'", "','", "';'", "':'", "'*'", @@ -1732,21 +1736,22 @@ export class PostgreSQLParser extends antlr.Parser { "copy_generic_opt_arg", "copy_generic_opt_arg_list", "copy_generic_opt_arg_list_item", "createstmt", "opttemp", "table_column_list", "opttableelementlist", "opttypedtableelementlist", "tableelementlist", "typedtableelementlist", - "tableelement", "typedtableelement", "columnDefCluase", "columnDef", - "compressionCluase", "storageCluase", "columnOptions", "colquallist", - "colconstraint", "colconstraintelem", "nulls_distinct", "generated_when", - "deferrable_trigger", "initially_trigger", "tablelikeclause", "tablelikeoptionlist", - "tablelikeoption", "tableconstraint", "constraintelem", "opt_no_inherit", - "opt_column_list", "columnlist", "opt_c_include", "key_match", "exclusionconstraintlist", - "exclusionconstraintelem", "exclusionwhereclause", "key_actions", - "key_update", "key_delete", "key_action", "optinherit", "optpartitionspec", - "partitionspec", "part_params", "part_elem", "table_access_method_clause", - "optwith", "oncommitoption", "opttablespace", "index_paramenters_create", - "optconstablespace", "existingindex", "createstatsstmt", "alterstatsstmt", - "createasstmt", "create_as_target", "opt_with_data", "creatematviewstmt", - "create_mv_target", "optnolog", "refreshmatviewstmt", "createseqstmt", - "alterseqstmt", "optseqoptlist", "optparenthesizedseqoptlist", "seqoptlist", - "seqoptelem", "opt_by", "numericonly", "numericonly_list", "createplangstmt", + "tableelement", "typedtableelement", "column_def", "compressionCluase", + "storageCluase", "columnOptions", "colquallist", "colconstraint", + "colconstraintelem", "nulls_distinct", "generated_when", "deferrable_trigger", + "initially_trigger", "tablelikeclause", "tablelikeoptionlist", "tablelikeoption", + "tableconstraint", "constraintelem", "opt_no_inherit", "opt_column_list", + "opt_column_list_create", "column_list", "column_list_create", "opt_c_include", + "key_match", "exclusionconstraintlist", "exclusionconstraintelem", + "exclusionwhereclause", "key_actions", "key_update", "key_delete", + "key_action", "optinherit", "optpartitionspec", "partitionspec", + "part_params", "part_elem", "table_access_method_clause", "optwith", + "oncommitoption", "opttablespace", "index_paramenters_create", "optconstablespace", + "existingindex", "createstatsstmt", "alterstatsstmt", "createasstmt", + "create_as_target", "opt_with_data", "creatematviewstmt", "create_mv_target", + "optnolog", "refreshmatviewstmt", "createseqstmt", "alterseqstmt", + "optseqoptlist", "optparenthesizedseqoptlist", "seqoptlist", "seqoptelem", + "opt_by", "numericonly", "numericonly_list", "createplangstmt", "opt_trusted", "handler_name", "opt_inline_handler", "validator_clause", "opt_validator", "opt_procedural", "createtablespacestmt", "opttablespaceowner", "createextensionstmt", "create_extension_opt_list", "create_extension_opt_item", @@ -1951,21 +1956,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1751; + this.state = 1753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 2 || _la === 31 || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 570441729) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 142606337) !== 0) || _la === 105 || _la === 129 || ((((_la - 138)) & ~0x1F) === 0 && ((1 << (_la - 138)) & 2159673601) !== 0) || ((((_la - 177)) & ~0x1F) === 0 && ((1 << (_la - 177)) & 100680739) !== 0) || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1090557953) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 679839745) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 272417) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 6401) !== 0) || ((((_la - 422)) & ~0x1F) === 0 && ((1 << (_la - 422)) & 4196353) !== 0) || _la === 454 || _la === 525 || _la === 581) { { { - this.state = 1748; + this.state = 1750; this.singleStmt(); } } - this.state = 1753; + this.state = 1755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1754; + this.state = 1756; this.match(PostgreSQLParser.EOF); } } @@ -1989,7 +1994,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1756; + this.state = 1758; this.pl_function(); } } @@ -2014,14 +2019,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1758; - this.stmt(); this.state = 1760; + this.stmt(); + this.state = 1762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 1759; + this.state = 1761; this.match(PostgreSQLParser.SEMI); } } @@ -2046,825 +2051,825 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new StmtContext(this.context, this.state); this.enterRule(localContext, 6, PostgreSQLParser.RULE_stmt); try { - this.state = 1879; + this.state = 1881; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1762; + this.state = 1764; this.altereventtrigstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1763; + this.state = 1765; this.altercollationstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1764; + this.state = 1766; this.alterdatabasestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1765; + this.state = 1767; this.alterdatabasesetstmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1766; + this.state = 1768; this.alterdefaultprivilegesstmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1767; + this.state = 1769; this.alterdomainstmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1768; + this.state = 1770; this.alterenumstmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1769; + this.state = 1771; this.alterextensionstmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1770; + this.state = 1772; this.alterextensioncontentsstmt(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1771; + this.state = 1773; this.alterfdwstmt(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1772; + this.state = 1774; this.alterforeignserverstmt(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1773; + this.state = 1775; this.alterfunctionstmt(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1774; + this.state = 1776; this.altergroupstmt(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1775; + this.state = 1777; this.alterobjectdependsstmt(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1776; + this.state = 1778; this.alterobjectschemastmt(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1777; + this.state = 1779; this.alterownerstmt(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1778; + this.state = 1780; this.alteroperatorstmt(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1779; + this.state = 1781; this.altertypestmt(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1780; + this.state = 1782; this.alterpolicystmt(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1781; + this.state = 1783; this.alterprocedurestmt(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1782; + this.state = 1784; this.alterseqstmt(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1783; + this.state = 1785; this.altersystemstmt(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1784; + this.state = 1786; this.altertablestmt(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1785; + this.state = 1787; this.altertblspcstmt(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1786; + this.state = 1788; this.altercompositetypestmt(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1787; + this.state = 1789; this.alterpublicationstmt(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1788; + this.state = 1790; this.alterrolesetstmt(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1789; + this.state = 1791; this.alterroutinestmt(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1790; + this.state = 1792; this.alterrolestmt(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1791; + this.state = 1793; this.altersubscriptionstmt(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1792; + this.state = 1794; this.alterstatsstmt(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1793; + this.state = 1795; this.altertsconfigurationstmt(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1794; + this.state = 1796; this.altertsdictionarystmt(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1795; + this.state = 1797; this.alterusermappingstmt(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1796; + this.state = 1798; this.analyzestmt(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1797; + this.state = 1799; this.callstmt(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1798; + this.state = 1800; this.checkpointstmt(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1799; + this.state = 1801; this.closeportalstmt(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1800; + this.state = 1802; this.clusterstmt(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1801; + this.state = 1803; this.commentstmt(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1802; + this.state = 1804; this.constraintssetstmt(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1803; + this.state = 1805; this.copystmt(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1804; + this.state = 1806; this.createamstmt(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1805; + this.state = 1807; this.createasstmt(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 1806; + this.state = 1808; this.createassertionstmt(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 1807; + this.state = 1809; this.createcaststmt(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 1808; + this.state = 1810; this.createconversionstmt(); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 1809; + this.state = 1811; this.createdomainstmt(); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 1810; + this.state = 1812; this.createextensionstmt(); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 1811; + this.state = 1813; this.createfdwstmt(); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 1812; + this.state = 1814; this.createforeignserverstmt(); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 1813; + this.state = 1815; this.createforeigntablestmt(); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 1814; + this.state = 1816; this.createfunctionstmt(); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 1815; + this.state = 1817; this.creategroupstmt(); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 1816; + this.state = 1818; this.creatematviewstmt(); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 1817; + this.state = 1819; this.createopclassstmt(); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 1818; + this.state = 1820; this.createopfamilystmt(); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 1819; + this.state = 1821; this.createpublicationstmt(); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1820; + this.state = 1822; this.alteropfamilystmt(); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1821; + this.state = 1823; this.createpolicystmt(); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1822; + this.state = 1824; this.createplangstmt(); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1823; + this.state = 1825; this.createschemastmt(); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1824; + this.state = 1826; this.createseqstmt(); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1825; + this.state = 1827; this.createstmt(); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1826; + this.state = 1828; this.createsubscriptionstmt(); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1827; + this.state = 1829; this.createstatsstmt(); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1828; + this.state = 1830; this.createtablespacestmt(); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1829; + this.state = 1831; this.createtransformstmt(); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1830; + this.state = 1832; this.createtrigstmt(); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1831; + this.state = 1833; this.createeventtrigstmt(); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1832; + this.state = 1834; this.createrolestmt(); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1833; + this.state = 1835; this.createuserstmt(); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1834; + this.state = 1836; this.createusermappingstmt(); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1835; + this.state = 1837; this.createdbstmt(); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1836; + this.state = 1838; this.deallocatestmt(); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1837; + this.state = 1839; this.declarecursorstmt(); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1838; + this.state = 1840; this.definestmt(); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1839; + this.state = 1841; this.deletestmt(); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1840; + this.state = 1842; this.discardstmt(); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1841; + this.state = 1843; this.dostmt(); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1842; + this.state = 1844; this.dropstmt(); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1843; + this.state = 1845; this.executestmt(); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1844; + this.state = 1846; this.explainstmt(); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1845; + this.state = 1847; this.fetchstmt(); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1846; + this.state = 1848; this.grantstmt(); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1847; + this.state = 1849; this.grantrolestmt(); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1848; + this.state = 1850; this.mergestmt(); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1849; + this.state = 1851; this.importforeignschemastmt(); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1850; + this.state = 1852; this.indexstmt(); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1851; + this.state = 1853; this.insertstmt(); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1852; + this.state = 1854; this.listenstmt(); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1853; + this.state = 1855; this.refreshmatviewstmt(); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1854; + this.state = 1856; this.loadstmt(); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1855; + this.state = 1857; this.lockstmt(); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1856; + this.state = 1858; this.notifystmt(); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1857; + this.state = 1859; this.preparestmt(); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1858; + this.state = 1860; this.reassignownedstmt(); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1859; + this.state = 1861; this.reindexstmt(); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1860; + this.state = 1862; this.removeaggrstmt(); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1861; + this.state = 1863; this.removefuncstmt(); } break; case 101: this.enterOuterAlt(localContext, 101); { - this.state = 1862; + this.state = 1864; this.removeoperstmt(); } break; case 102: this.enterOuterAlt(localContext, 102); { - this.state = 1863; + this.state = 1865; this.renamestmt(); } break; case 103: this.enterOuterAlt(localContext, 103); { - this.state = 1864; + this.state = 1866; this.revokestmt(); } break; case 104: this.enterOuterAlt(localContext, 104); { - this.state = 1865; + this.state = 1867; this.revokerolestmt(); } break; case 105: this.enterOuterAlt(localContext, 105); { - this.state = 1866; + this.state = 1868; this.rulestmt(); } break; case 106: this.enterOuterAlt(localContext, 106); { - this.state = 1867; + this.state = 1869; this.seclabelstmt(); } break; case 107: this.enterOuterAlt(localContext, 107); { - this.state = 1868; + this.state = 1870; this.selectstmt(); } break; case 108: this.enterOuterAlt(localContext, 108); { - this.state = 1869; + this.state = 1871; this.transactionstmt(); } break; case 109: this.enterOuterAlt(localContext, 109); { - this.state = 1870; + this.state = 1872; this.truncatestmt(); } break; case 110: this.enterOuterAlt(localContext, 110); { - this.state = 1871; + this.state = 1873; this.unlistenstmt(); } break; case 111: this.enterOuterAlt(localContext, 111); { - this.state = 1872; + this.state = 1874; this.updatestmt(); } break; case 112: this.enterOuterAlt(localContext, 112); { - this.state = 1873; + this.state = 1875; this.vacuumstmt(); } break; case 113: this.enterOuterAlt(localContext, 113); { - this.state = 1874; + this.state = 1876; this.variableresetstmt(); } break; case 114: this.enterOuterAlt(localContext, 114); { - this.state = 1875; + this.state = 1877; this.variablesetstmt(); } break; case 115: this.enterOuterAlt(localContext, 115); { - this.state = 1876; + this.state = 1878; this.variableshowstmt(); } break; case 116: this.enterOuterAlt(localContext, 116); { - this.state = 1877; + this.state = 1879; this.viewstmt(); } break; case 117: this.enterOuterAlt(localContext, 117); { - this.state = 1878; + this.state = 1880; this.plsqlconsolecommand(); } break; @@ -2891,14 +2896,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1881; - this.match(PostgreSQLParser.MetaCommand); this.state = 1883; + this.match(PostgreSQLParser.MetaCommand); + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 582) { { - this.state = 1882; + this.state = 1884; this.match(PostgreSQLParser.EndMetaCommand); } } @@ -2925,9 +2930,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1885; + this.state = 1887; this.match(PostgreSQLParser.KW_CALL); - this.state = 1886; + this.state = 1888; this.func_application(); } } @@ -2951,23 +2956,23 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1888; - this.match(PostgreSQLParser.KW_CREATE); - this.state = 1889; - this.match(PostgreSQLParser.KW_ROLE); this.state = 1890; - this.roleid(); + this.match(PostgreSQLParser.KW_CREATE); + this.state = 1891; + this.match(PostgreSQLParser.KW_ROLE); this.state = 1892; + this.roleid(); + this.state = 1894; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 1891; + this.state = 1893; this.opt_with(); } break; } - this.state = 1894; + this.state = 1896; this.optrolelist(); } } @@ -2991,7 +2996,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1896; + this.state = 1898; this.match(PostgreSQLParser.KW_WITH); } } @@ -3016,19 +3021,19 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1901; + this.state = 1903; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1898; + this.state = 1900; this.createoptroleelem(); } } } - this.state = 1903; + this.state = 1905; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); } @@ -3055,19 +3060,19 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1907; + this.state = 1909; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1904; + this.state = 1906; this.alteroptroleelem(); } } } - this.state = 1909; + this.state = 1911; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); } @@ -3092,15 +3097,15 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 20, PostgreSQLParser.RULE_alteroptroleelem); let _la: number; try { - this.state = 1945; + this.state = 1947; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1910; + this.state = 1912; this.match(PostgreSQLParser.KW_PASSWORD); - this.state = 1913; + this.state = 1915; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -3108,13 +3113,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.BeginDollarStringConstant: case PostgreSQLParser.EscapeStringConstant: { - this.state = 1911; + this.state = 1913; this.sconst(); } break; case PostgreSQLParser.KW_NULL: { - this.state = 1912; + this.state = 1914; this.match(PostgreSQLParser.KW_NULL); } break; @@ -3126,7 +3131,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1915; + this.state = 1917; _la = this.tokenStream.LA(1); if(!(_la === 195 || _la === 364)) { this.errorHandler.recoverInline(this); @@ -3135,16 +3140,16 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1916; + this.state = 1918; this.match(PostgreSQLParser.KW_PASSWORD); - this.state = 1917; + this.state = 1919; this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1918; + this.state = 1920; _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -3158,7 +3163,7 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1919; + this.state = 1921; _la = this.tokenStream.LA(1); if(!(_la === 236 || _la === 237)) { this.errorHandler.recoverInline(this); @@ -3172,7 +3177,7 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1920; + this.state = 1922; _la = this.tokenStream.LA(1); if(!(_la === 234 || _la === 235)) { this.errorHandler.recoverInline(this); @@ -3186,7 +3191,7 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1921; + this.state = 1923; _la = this.tokenStream.LA(1); if(!(_la === 232 || _la === 233)) { this.errorHandler.recoverInline(this); @@ -3200,7 +3205,7 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1922; + this.state = 1924; _la = this.tokenStream.LA(1); if(!(_la === 230 || _la === 231)) { this.errorHandler.recoverInline(this); @@ -3214,7 +3219,7 @@ export class PostgreSQLParser extends antlr.Parser { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1923; + this.state = 1925; _la = this.tokenStream.LA(1); if(!(_la === 535 || _la === 536)) { this.errorHandler.recoverInline(this); @@ -3228,7 +3233,7 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1924; + this.state = 1926; _la = this.tokenStream.LA(1); if(!(_la === 537 || _la === 538)) { this.errorHandler.recoverInline(this); @@ -3242,7 +3247,7 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1925; + this.state = 1927; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 540)) { this.errorHandler.recoverInline(this); @@ -3256,78 +3261,78 @@ export class PostgreSQLParser extends antlr.Parser { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1926; - this.match(PostgreSQLParser.KW_CONNECTION); - this.state = 1927; - this.match(PostgreSQLParser.KW_LIMIT); this.state = 1928; + this.match(PostgreSQLParser.KW_CONNECTION); + this.state = 1929; + this.match(PostgreSQLParser.KW_LIMIT); + this.state = 1930; this.signediconst(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1929; - this.match(PostgreSQLParser.KW_VALID); - this.state = 1930; - this.match(PostgreSQLParser.KW_UNTIL); this.state = 1931; + this.match(PostgreSQLParser.KW_VALID); + this.state = 1932; + this.match(PostgreSQLParser.KW_UNTIL); + this.state = 1933; this.sconst(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1932; - this.match(PostgreSQLParser.KW_IN); - this.state = 1933; - this.match(PostgreSQLParser.KW_ROLE); this.state = 1934; + this.match(PostgreSQLParser.KW_IN); + this.state = 1935; + this.match(PostgreSQLParser.KW_ROLE); + this.state = 1936; this.name_list(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1935; - this.match(PostgreSQLParser.KW_IN); - this.state = 1936; - this.match(PostgreSQLParser.KW_GROUP); this.state = 1937; + this.match(PostgreSQLParser.KW_IN); + this.state = 1938; + this.match(PostgreSQLParser.KW_GROUP); + this.state = 1939; this.name_list(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1938; + this.state = 1940; this.match(PostgreSQLParser.KW_ROLE); - this.state = 1939; + this.state = 1941; this.role_list(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1940; + this.state = 1942; this.match(PostgreSQLParser.KW_ADMIN); - this.state = 1941; + this.state = 1943; this.name_list(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1942; + this.state = 1944; this.match(PostgreSQLParser.KW_USER); - this.state = 1943; + this.state = 1945; this.role_list(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1944; + this.state = 1946; this.identifier(); } break; @@ -3352,49 +3357,49 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 22, PostgreSQLParser.RULE_createoptroleelem); let _la: number; try { - this.state = 1957; + this.state = 1959; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1947; + this.state = 1949; this.alteroptroleelem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1948; + this.state = 1950; this.match(PostgreSQLParser.KW_SYSID); - this.state = 1949; + this.state = 1951; this.iconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1950; + this.state = 1952; this.match(PostgreSQLParser.KW_ADMIN); - this.state = 1951; + this.state = 1953; this.role_list(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1952; + this.state = 1954; this.match(PostgreSQLParser.KW_ROLE); - this.state = 1953; + this.state = 1955; this.role_list(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1954; + this.state = 1956; this.match(PostgreSQLParser.KW_IN); - this.state = 1955; + this.state = 1957; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -3403,7 +3408,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1956; + this.state = 1958; this.role_list(); } break; @@ -3429,23 +3434,23 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1959; - this.match(PostgreSQLParser.KW_CREATE); - this.state = 1960; - this.match(PostgreSQLParser.KW_USER); this.state = 1961; - this.roleid(); + this.match(PostgreSQLParser.KW_CREATE); + this.state = 1962; + this.match(PostgreSQLParser.KW_USER); this.state = 1963; + this.roleid(); + this.state = 1965; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 1962; + this.state = 1964; this.opt_with(); } break; } - this.state = 1965; + this.state = 1967; this.optrolelist(); } } @@ -3470,9 +3475,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1967; + this.state = 1969; this.match(PostgreSQLParser.KW_ALTER); - this.state = 1968; + this.state = 1970; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -3481,19 +3486,19 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1969; - this.rolespec(); this.state = 1971; + this.rolespec(); + this.state = 1973; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: { - this.state = 1970; + this.state = 1972; this.opt_with(); } break; } - this.state = 1973; + this.state = 1975; this.alteroptrolelist(); } } @@ -3515,7 +3520,7 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Opt_in_databaseContext(this.context, this.state); this.enterRule(localContext, 28, PostgreSQLParser.RULE_opt_in_database); try { - this.state = 1979; + this.state = 1981; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_RESET: @@ -3528,11 +3533,11 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_IN: this.enterOuterAlt(localContext, 2); { - this.state = 1976; - this.match(PostgreSQLParser.KW_IN); - this.state = 1977; - this.match(PostgreSQLParser.KW_DATABASE); this.state = 1978; + this.match(PostgreSQLParser.KW_IN); + this.state = 1979; + this.match(PostgreSQLParser.KW_DATABASE); + this.state = 1980; this.database_name(); } break; @@ -3561,9 +3566,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1981; + this.state = 1983; this.match(PostgreSQLParser.KW_ALTER); - this.state = 1982; + this.state = 1984; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -3572,12 +3577,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1985; + this.state = 1987; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: { - this.state = 1983; + this.state = 1985; this.match(PostgreSQLParser.KW_ALL); } break; @@ -4007,16 +4012,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 1984; + this.state = 1986; this.rolespec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1987; + this.state = 1989; this.opt_in_database(); - this.state = 1988; + this.state = 1990; this.setresetclause(); } } @@ -4041,23 +4046,23 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1990; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 1991; - this.match(PostgreSQLParser.KW_ROUTINE); this.state = 1992; - this.routine_name(); + this.match(PostgreSQLParser.KW_ALTER); + this.state = 1993; + this.match(PostgreSQLParser.KW_ROUTINE); this.state = 1994; + this.routine_name(); + this.state = 1996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1993; + this.state = 1995; this.func_args(); } } - this.state = 1996; + this.state = 1998; this.alter_routine_cluase(); } } @@ -4080,20 +4085,20 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 34, PostgreSQLParser.RULE_alter_routine_cluase); let _la: number; try { - this.state = 2018; + this.state = 2020; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1998; - this.routine_action_list(); this.state = 2000; + this.routine_action_list(); + this.state = 2002; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 1999; + this.state = 2001; this.match(PostgreSQLParser.KW_RESTRICT); } break; @@ -4103,56 +4108,56 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2002; - this.match(PostgreSQLParser.KW_RENAME); - this.state = 2003; - this.match(PostgreSQLParser.KW_TO); this.state = 2004; + this.match(PostgreSQLParser.KW_RENAME); + this.state = 2005; + this.match(PostgreSQLParser.KW_TO); + this.state = 2006; this.routine_name_create(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2005; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 2006; - this.match(PostgreSQLParser.KW_TO); this.state = 2007; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 2008; + this.match(PostgreSQLParser.KW_TO); + this.state = 2009; this.rolespec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2008; - this.match(PostgreSQLParser.KW_SET); - this.state = 2009; - this.match(PostgreSQLParser.KW_SCHEMA); this.state = 2010; + this.match(PostgreSQLParser.KW_SET); + this.state = 2011; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 2012; this.schema_name_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2012; + this.state = 2014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 2011; + this.state = 2013; this.match(PostgreSQLParser.KW_NO); } } - this.state = 2014; - this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 2015; - this.match(PostgreSQLParser.KW_ON); this.state = 2016; - this.match(PostgreSQLParser.KW_EXTENSION); + this.match(PostgreSQLParser.KW_DEPENDS); this.state = 2017; + this.match(PostgreSQLParser.KW_ON); + this.state = 2018; + this.match(PostgreSQLParser.KW_EXTENSION); + this.state = 2019; this.name(); } break; @@ -4179,21 +4184,21 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2020; + this.state = 2022; this.routine_action(); - this.state = 2024; + this.state = 2026; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2021; + this.state = 2023; this.routine_action(); } } } - this.state = 2026; + this.state = 2028; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); } @@ -4218,86 +4223,86 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 38, PostgreSQLParser.RULE_routine_action); let _la: number; try { - this.state = 2068; + this.state = 2070; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2027; + this.state = 2029; this.match(PostgreSQLParser.KW_IMMUTABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2028; + this.state = 2030; this.match(PostgreSQLParser.KW_STABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2029; + this.state = 2031; this.match(PostgreSQLParser.KW_VOLATILE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2031; + this.state = 2033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2030; + this.state = 2032; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 2033; + this.state = 2035; this.match(PostgreSQLParser.KW_LEAKPROOF); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2044; + this.state = 2046; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 2035; + this.state = 2037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 2034; + this.state = 2036; this.match(PostgreSQLParser.KW_EXTERNAL); } } - this.state = 2037; + this.state = 2039; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 2038; + this.state = 2040; this.match(PostgreSQLParser.KW_INVOKER); } break; case 2: { - this.state = 2040; + this.state = 2042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 2039; + this.state = 2041; this.match(PostgreSQLParser.KW_EXTERNAL); } } - this.state = 2042; + this.state = 2044; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 2043; + this.state = 2045; this.match(PostgreSQLParser.KW_DEFINER); } break; @@ -4307,9 +4312,9 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2046; + this.state = 2048; this.match(PostgreSQLParser.KW_PARALLEL); - this.state = 2047; + this.state = 2049; _la = this.tokenStream.LA(1); if(!(((((_la - 529)) & ~0x1F) === 0 && ((1 << (_la - 529)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -4323,29 +4328,29 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2048; + this.state = 2050; this.match(PostgreSQLParser.KW_COST); - this.state = 2049; + this.state = 2051; this.attr_name(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2050; + this.state = 2052; this.match(PostgreSQLParser.KW_ROWS); - this.state = 2051; + this.state = 2053; this.name(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2052; - this.match(PostgreSQLParser.KW_SET); - this.state = 2053; - this.name(); this.state = 2054; + this.match(PostgreSQLParser.KW_SET); + this.state = 2055; + this.name(); + this.state = 2056; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -4354,18 +4359,18 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2057; + this.state = 2059; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 2055; + this.state = 2057; this.name(); } break; case 2: { - this.state = 2056; + this.state = 2058; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -4375,31 +4380,31 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2059; - this.match(PostgreSQLParser.KW_SET); - this.state = 2060; - this.name(); this.state = 2061; - this.match(PostgreSQLParser.KW_FROM); + this.match(PostgreSQLParser.KW_SET); this.state = 2062; + this.name(); + this.state = 2063; + this.match(PostgreSQLParser.KW_FROM); + this.state = 2064; this.match(PostgreSQLParser.KW_CURRENT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2064; + this.state = 2066; this.match(PostgreSQLParser.KW_RESET); - this.state = 2065; + this.state = 2067; this.name(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2066; + this.state = 2068; this.match(PostgreSQLParser.KW_RESET); - this.state = 2067; + this.state = 2069; this.match(PostgreSQLParser.KW_ALL); } break; @@ -4425,23 +4430,23 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2070; - this.match(PostgreSQLParser.KW_CREATE); - this.state = 2071; - this.match(PostgreSQLParser.KW_GROUP); this.state = 2072; - this.groupname(); + this.match(PostgreSQLParser.KW_CREATE); + this.state = 2073; + this.match(PostgreSQLParser.KW_GROUP); this.state = 2074; + this.groupname(); + this.state = 2076; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: { - this.state = 2073; + this.state = 2075; this.opt_with(); } break; } - this.state = 2076; + this.state = 2078; this.optrolelist(); } } @@ -4465,17 +4470,17 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2078; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2079; - this.match(PostgreSQLParser.KW_GROUP); this.state = 2080; - this.rolespec(); + this.match(PostgreSQLParser.KW_ALTER); this.state = 2081; - this.add_drop(); + this.match(PostgreSQLParser.KW_GROUP); this.state = 2082; - this.match(PostgreSQLParser.KW_USER); + this.rolespec(); this.state = 2083; + this.add_drop(); + this.state = 2084; + this.match(PostgreSQLParser.KW_USER); + this.state = 2085; this.role_list(); } } @@ -4500,7 +4505,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2085; + this.state = 2087; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -4532,49 +4537,49 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2087; + this.state = 2089; this.match(PostgreSQLParser.KW_CREATE); - this.state = 2088; - this.match(PostgreSQLParser.KW_SCHEMA); this.state = 2090; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 2092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 2089; + this.state = 2091; this.opt_if_not_exists(); } break; } - this.state = 2098; + this.state = 2100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 2093; + this.state = 2095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 2092; + this.state = 2094; this.schema_name_create(); } } - this.state = 2095; + this.state = 2097; this.match(PostgreSQLParser.KW_AUTHORIZATION); - this.state = 2096; + this.state = 2098; this.rolespec(); } break; case 2: { - this.state = 2097; + this.state = 2099; this.schema_name_create(); } break; } - this.state = 2100; + this.state = 2102; this.optschemaeltlist(); } } @@ -4597,16 +4602,17 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 48, PostgreSQLParser.RULE_schema_name_create); let _la: number; try { + localContext = new SchemaNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2102; - this.colid(); this.state = 2104; + this.colid(); + this.state = 2106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2103; + this.state = 2105; this.attrs(); } } @@ -4634,19 +4640,19 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2109; + this.state = 2111; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 30, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2106; + this.state = 2108; this.schema_stmt(); } } } - this.state = 2111; + this.state = 2113; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 30, this.context); } @@ -4670,48 +4676,48 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Schema_stmtContext(this.context, this.state); this.enterRule(localContext, 52, PostgreSQLParser.RULE_schema_stmt); try { - this.state = 2118; + this.state = 2120; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 31, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2112; + this.state = 2114; this.createstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2113; + this.state = 2115; this.indexstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2114; + this.state = 2116; this.createseqstmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2115; + this.state = 2117; this.createtrigstmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2116; + this.state = 2118; this.grantstmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2117; + this.state = 2119; this.viewstmt(); } break; @@ -4738,14 +4744,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2120; - this.match(PostgreSQLParser.KW_SET); this.state = 2122; + this.match(PostgreSQLParser.KW_SET); + this.state = 2124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 2121; + this.state = 2123; _la = this.tokenStream.LA(1); if(!(_la === 254 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -4757,7 +4763,7 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 2124; + this.state = 2126; this.set_rest(); } } @@ -4779,37 +4785,37 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Set_restContext(this.context, this.state); this.enterRule(localContext, 56, PostgreSQLParser.RULE_set_rest); try { - this.state = 2134; + this.state = 2136; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2126; + this.state = 2128; this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 2127; + this.state = 2129; this.transaction_mode_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2128; - this.match(PostgreSQLParser.KW_SESSION); - this.state = 2129; - this.match(PostgreSQLParser.KW_CHARACTERISTICS); this.state = 2130; - this.match(PostgreSQLParser.KW_AS); + this.match(PostgreSQLParser.KW_SESSION); this.state = 2131; - this.match(PostgreSQLParser.KW_TRANSACTION); + this.match(PostgreSQLParser.KW_CHARACTERISTICS); this.state = 2132; + this.match(PostgreSQLParser.KW_AS); + this.state = 2133; + this.match(PostgreSQLParser.KW_TRANSACTION); + this.state = 2134; this.transaction_mode_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2133; + this.state = 2135; this.set_rest_more(); } break; @@ -4836,12 +4842,12 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2138; + this.state = 2140; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: { - this.state = 2136; + this.state = 2138; this.match(PostgreSQLParser.KW_ALL); } break; @@ -5246,19 +5252,19 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 2137; + this.state = 2139; this.var_name(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2141; + this.state = 2143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 94) { { - this.state = 2140; + this.state = 2142; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -5270,18 +5276,18 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 2145; + this.state = 2147; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: { - this.state = 2143; + this.state = 2145; this.match(PostgreSQLParser.KW_DEFAULT); } break; case 2: { - this.state = 2144; + this.state = 2146; this.var_list(); } break; @@ -5306,49 +5312,49 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Set_rest_moreContext(this.context, this.state); this.enterRule(localContext, 60, PostgreSQLParser.RULE_set_rest_more); try { - this.state = 2174; + this.state = 2176; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2147; - this.match(PostgreSQLParser.KW_TIME); - this.state = 2148; - this.match(PostgreSQLParser.KW_ZONE); this.state = 2149; + this.match(PostgreSQLParser.KW_TIME); + this.state = 2150; + this.match(PostgreSQLParser.KW_ZONE); + this.state = 2151; this.zone_value(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2150; + this.state = 2152; this.match(PostgreSQLParser.KW_CATALOG); - this.state = 2151; + this.state = 2153; this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2152; + this.state = 2154; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 2153; + this.state = 2155; this.schema_name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2154; - this.match(PostgreSQLParser.KW_NAMES); this.state = 2156; + this.match(PostgreSQLParser.KW_NAMES); + this.state = 2158; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 2155; + this.state = 2157; this.opt_encoding(); } break; @@ -5358,60 +5364,60 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2158; + this.state = 2160; this.match(PostgreSQLParser.KW_ROLE); - this.state = 2159; + this.state = 2161; this.nonreservedword_or_sconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2160; - this.match(PostgreSQLParser.KW_SESSION); - this.state = 2161; - this.match(PostgreSQLParser.KW_AUTHORIZATION); this.state = 2162; + this.match(PostgreSQLParser.KW_SESSION); + this.state = 2163; + this.match(PostgreSQLParser.KW_AUTHORIZATION); + this.state = 2164; this.nonreservedword_or_sconst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2163; - this.match(PostgreSQLParser.KW_XML); - this.state = 2164; - this.match(PostgreSQLParser.KW_OPTION); this.state = 2165; + this.match(PostgreSQLParser.KW_XML); + this.state = 2166; + this.match(PostgreSQLParser.KW_OPTION); + this.state = 2167; this.document_or_content(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2166; - this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 2167; - this.match(PostgreSQLParser.KW_SNAPSHOT); this.state = 2168; + this.match(PostgreSQLParser.KW_TRANSACTION); + this.state = 2169; + this.match(PostgreSQLParser.KW_SNAPSHOT); + this.state = 2170; this.sconst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2169; - this.var_name(); - this.state = 2170; - this.match(PostgreSQLParser.KW_FROM); this.state = 2171; + this.var_name(); + this.state = 2172; + this.match(PostgreSQLParser.KW_FROM); + this.state = 2173; this.match(PostgreSQLParser.KW_CURRENT); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2173; + this.state = 2175; this.generic_set(); } break; @@ -5438,21 +5444,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2176; + this.state = 2178; this.colid(); - this.state = 2181; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 2177; + this.state = 2179; this.match(PostgreSQLParser.DOT); - this.state = 2178; + this.state = 2180; this.colid(); } } - this.state = 2183; + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5479,21 +5485,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2184; + this.state = 2186; this.var_value(); - this.state = 2189; + this.state = 2191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2185; + this.state = 2187; this.match(PostgreSQLParser.COMMA); - this.state = 2186; + this.state = 2188; this.var_value(); } } - this.state = 2191; + this.state = 2193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5517,7 +5523,7 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Var_valueContext(this.context, this.state); this.enterRule(localContext, 66, PostgreSQLParser.RULE_var_value); try { - this.state = 2194; + this.state = 2196; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -5946,7 +5952,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 2192; + this.state = 2194; this.opt_boolean_or_string(); } break; @@ -5956,7 +5962,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 2193; + this.state = 2195; this.numericonly(); } break; @@ -5983,15 +5989,15 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 68, PostgreSQLParser.RULE_iso_level); let _la: number; try { - this.state = 2201; + this.state = 2203; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 2196; + this.state = 2198; this.match(PostgreSQLParser.KW_READ); - this.state = 2197; + this.state = 2199; _la = this.tokenStream.LA(1); if(!(_la === 162 || _la === 363)) { this.errorHandler.recoverInline(this); @@ -6005,16 +6011,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_REPEATABLE: this.enterOuterAlt(localContext, 2); { - this.state = 2198; + this.state = 2200; this.match(PostgreSQLParser.KW_REPEATABLE); - this.state = 2199; + this.state = 2201; this.match(PostgreSQLParser.KW_READ); } break; case PostgreSQLParser.KW_SERIALIZABLE: this.enterOuterAlt(localContext, 3); { - this.state = 2200; + this.state = 2202; this.match(PostgreSQLParser.KW_SERIALIZABLE); } break; @@ -6040,459 +6046,37 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Opt_boolean_or_string_columnContext(this.context, this.state); this.enterRule(localContext, 70, PostgreSQLParser.RULE_opt_boolean_or_string_column); try { - this.state = 2207; + this.state = 2209; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSQLParser.KW_TRUE: + switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2203; + this.state = 2205; this.match(PostgreSQLParser.KW_TRUE); } break; - case PostgreSQLParser.KW_FALSE: + case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2204; + this.state = 2206; this.match(PostgreSQLParser.KW_FALSE); } break; - case PostgreSQLParser.KW_ON: + case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2205; + this.state = 2207; this.match(PostgreSQLParser.KW_ON); } break; - case PostgreSQLParser.KW_AND: - case PostgreSQLParser.KW_ARRAY: - case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_CONSTRAINT: - case PostgreSQLParser.KW_DEFAULT: - case PostgreSQLParser.KW_DO: - case PostgreSQLParser.KW_FETCH: - case PostgreSQLParser.KW_TABLE: - case PostgreSQLParser.KW_AUTHORIZATION: - case PostgreSQLParser.KW_BINARY: - case PostgreSQLParser.KW_COLLATION: - case PostgreSQLParser.KW_CONCURRENTLY: - case PostgreSQLParser.KW_CROSS: - case PostgreSQLParser.KW_CURRENT_SCHEMA: - case PostgreSQLParser.KW_FREEZE: - case PostgreSQLParser.KW_FULL: - case PostgreSQLParser.KW_ILIKE: - case PostgreSQLParser.KW_INNER: - case PostgreSQLParser.KW_IS: - case PostgreSQLParser.KW_ISNULL: - case PostgreSQLParser.KW_JOIN: - case PostgreSQLParser.KW_LEFT: - case PostgreSQLParser.KW_LIKE: - case PostgreSQLParser.KW_NATURAL: - case PostgreSQLParser.KW_NOTNULL: - case PostgreSQLParser.KW_OUTER: - case PostgreSQLParser.KW_OVER: - case PostgreSQLParser.KW_OVERLAPS: - case PostgreSQLParser.KW_RIGHT: - case PostgreSQLParser.KW_SIMILAR: - case PostgreSQLParser.KW_VERBOSE: - case PostgreSQLParser.KW_ABORT: - case PostgreSQLParser.KW_ABSOLUTE: - case PostgreSQLParser.KW_ACCESS: - case PostgreSQLParser.KW_ACTION: - case PostgreSQLParser.KW_ADD: - case PostgreSQLParser.KW_ADMIN: - case PostgreSQLParser.KW_AFTER: - case PostgreSQLParser.KW_AGGREGATE: - case PostgreSQLParser.KW_ALSO: - case PostgreSQLParser.KW_ALTER: - case PostgreSQLParser.KW_ALWAYS: - case PostgreSQLParser.KW_ASSERTION: - case PostgreSQLParser.KW_ASSIGNMENT: - case PostgreSQLParser.KW_AT: - case PostgreSQLParser.KW_ATTRIBUTE: - case PostgreSQLParser.KW_BACKWARD: - case PostgreSQLParser.KW_BEFORE: - case PostgreSQLParser.KW_BEGIN: - case PostgreSQLParser.KW_BY: - case PostgreSQLParser.KW_CACHE: - case PostgreSQLParser.KW_CALLED: - case PostgreSQLParser.KW_CASCADE: - case PostgreSQLParser.KW_CASCADED: - case PostgreSQLParser.KW_CATALOG: - case PostgreSQLParser.KW_CHAIN: - case PostgreSQLParser.KW_CHARACTERISTICS: - case PostgreSQLParser.KW_CHECKPOINT: - case PostgreSQLParser.KW_CLASS: - case PostgreSQLParser.KW_CLOSE: - case PostgreSQLParser.KW_CLUSTER: - case PostgreSQLParser.KW_COMMENT: - case PostgreSQLParser.KW_COMMENTS: - case PostgreSQLParser.KW_COMMIT: - case PostgreSQLParser.KW_COMMITTED: - case PostgreSQLParser.KW_CONFIGURATION: - case PostgreSQLParser.KW_CONNECTION: - case PostgreSQLParser.KW_CONSTRAINTS: - case PostgreSQLParser.KW_CONTENT: - case PostgreSQLParser.KW_CONTINUE: - case PostgreSQLParser.KW_CONVERSION: - case PostgreSQLParser.KW_COPY: - case PostgreSQLParser.KW_COST: - case PostgreSQLParser.KW_CSV: - case PostgreSQLParser.KW_CURSOR: - case PostgreSQLParser.KW_CYCLE: - case PostgreSQLParser.KW_DATA: - case PostgreSQLParser.KW_DATABASE: - case PostgreSQLParser.KW_DAY: - case PostgreSQLParser.KW_DEALLOCATE: - case PostgreSQLParser.KW_DECLARE: - case PostgreSQLParser.KW_DEFAULTS: - case PostgreSQLParser.KW_DEFERRED: - case PostgreSQLParser.KW_DEFINER: - case PostgreSQLParser.KW_DELETE: - case PostgreSQLParser.KW_DELIMITER: - case PostgreSQLParser.KW_DELIMITERS: - case PostgreSQLParser.KW_DICTIONARY: - case PostgreSQLParser.KW_DISABLE: - case PostgreSQLParser.KW_DISCARD: - case PostgreSQLParser.KW_DOCUMENT: - case PostgreSQLParser.KW_DOMAIN: - case PostgreSQLParser.KW_DOUBLE: - case PostgreSQLParser.KW_DROP: - case PostgreSQLParser.KW_EACH: - case PostgreSQLParser.KW_ENABLE: - case PostgreSQLParser.KW_ENCODING: - case PostgreSQLParser.KW_ENCRYPTED: - case PostgreSQLParser.KW_ENUM: - case PostgreSQLParser.KW_ESCAPE: - case PostgreSQLParser.KW_EVENT: - case PostgreSQLParser.KW_EXCLUDE: - case PostgreSQLParser.KW_EXCLUDING: - case PostgreSQLParser.KW_EXCLUSIVE: - case PostgreSQLParser.KW_EXECUTE: - case PostgreSQLParser.KW_EXPLAIN: - case PostgreSQLParser.KW_EXTENSION: - case PostgreSQLParser.KW_EXTERNAL: - case PostgreSQLParser.KW_FAMILY: - case PostgreSQLParser.KW_FIRST: - case PostgreSQLParser.KW_FOLLOWING: - case PostgreSQLParser.KW_FORCE: - case PostgreSQLParser.KW_FORWARD: - case PostgreSQLParser.KW_FUNCTION: - case PostgreSQLParser.KW_FUNCTIONS: - case PostgreSQLParser.KW_GLOBAL: - case PostgreSQLParser.KW_GRANTED: - case PostgreSQLParser.KW_HANDLER: - case PostgreSQLParser.KW_HEADER: - case PostgreSQLParser.KW_HOLD: - case PostgreSQLParser.KW_HOUR: - case PostgreSQLParser.KW_IDENTITY: - case PostgreSQLParser.KW_IF: - case PostgreSQLParser.KW_IMMEDIATE: - case PostgreSQLParser.KW_IMMUTABLE: - case PostgreSQLParser.KW_IMPLICIT: - case PostgreSQLParser.KW_INCLUDING: - case PostgreSQLParser.KW_INCREMENT: - case PostgreSQLParser.KW_INDEX: - case PostgreSQLParser.KW_INDEXES: - case PostgreSQLParser.KW_INHERIT: - case PostgreSQLParser.KW_INHERITS: - case PostgreSQLParser.KW_INLINE: - case PostgreSQLParser.KW_INSENSITIVE: - case PostgreSQLParser.KW_INSERT: - case PostgreSQLParser.KW_INSTEAD: - case PostgreSQLParser.KW_INVOKER: - case PostgreSQLParser.KW_ISOLATION: - case PostgreSQLParser.KW_KEY: - case PostgreSQLParser.KW_LABEL: - case PostgreSQLParser.KW_LANGUAGE: - case PostgreSQLParser.KW_LARGE: - case PostgreSQLParser.KW_LAST: - case PostgreSQLParser.KW_LEAKPROOF: - case PostgreSQLParser.KW_LEVEL: - case PostgreSQLParser.KW_LISTEN: - case PostgreSQLParser.KW_LOAD: - case PostgreSQLParser.KW_LOCAL: - case PostgreSQLParser.KW_LOCATION: - case PostgreSQLParser.KW_LOCK: - case PostgreSQLParser.KW_MAPPING: - case PostgreSQLParser.KW_MATCH: - case PostgreSQLParser.KW_MATERIALIZED: - case PostgreSQLParser.KW_MAXVALUE: - case PostgreSQLParser.KW_MINUTE: - case PostgreSQLParser.KW_MINVALUE: - case PostgreSQLParser.KW_MODE: - case PostgreSQLParser.KW_MONTH: - case PostgreSQLParser.KW_MOVE: - case PostgreSQLParser.KW_NAME: - case PostgreSQLParser.KW_NAMES: - case PostgreSQLParser.KW_NEXT: - case PostgreSQLParser.KW_NO: - case PostgreSQLParser.KW_NOTHING: - case PostgreSQLParser.KW_NOTIFY: - case PostgreSQLParser.KW_NOWAIT: - case PostgreSQLParser.KW_NULLS: - case PostgreSQLParser.KW_OBJECT: - case PostgreSQLParser.KW_OF: - case PostgreSQLParser.KW_OFF: - case PostgreSQLParser.KW_OIDS: - case PostgreSQLParser.KW_OPERATOR: - case PostgreSQLParser.KW_OPTION: - case PostgreSQLParser.KW_OPTIONS: - case PostgreSQLParser.KW_OWNED: - case PostgreSQLParser.KW_OWNER: - case PostgreSQLParser.KW_PARSER: - case PostgreSQLParser.KW_PARTIAL: - case PostgreSQLParser.KW_PARTITION: - case PostgreSQLParser.KW_PASSING: - case PostgreSQLParser.KW_PASSWORD: - case PostgreSQLParser.KW_PLANS: - case PostgreSQLParser.KW_PRECEDING: - case PostgreSQLParser.KW_PREPARE: - case PostgreSQLParser.KW_PREPARED: - case PostgreSQLParser.KW_PRESERVE: - case PostgreSQLParser.KW_PRIOR: - case PostgreSQLParser.KW_PRIVILEGES: - case PostgreSQLParser.KW_PROCEDURAL: - case PostgreSQLParser.KW_PROCEDURE: - case PostgreSQLParser.KW_PROGRAM: - case PostgreSQLParser.KW_QUOTE: - case PostgreSQLParser.KW_RANGE: - case PostgreSQLParser.KW_READ: - case PostgreSQLParser.KW_REASSIGN: - case PostgreSQLParser.KW_RECHECK: - case PostgreSQLParser.KW_RECURSIVE: - case PostgreSQLParser.KW_REF: - case PostgreSQLParser.KW_REFRESH: - case PostgreSQLParser.KW_REINDEX: - case PostgreSQLParser.KW_RELATIVE: - case PostgreSQLParser.KW_RELEASE: - case PostgreSQLParser.KW_RENAME: - case PostgreSQLParser.KW_REPEATABLE: - case PostgreSQLParser.KW_REPLACE: - case PostgreSQLParser.KW_REPLICA: - case PostgreSQLParser.KW_RESET: - case PostgreSQLParser.KW_RESTART: - case PostgreSQLParser.KW_RESTRICT: - case PostgreSQLParser.KW_RETURNS: - case PostgreSQLParser.KW_REVOKE: - case PostgreSQLParser.KW_ROLE: - case PostgreSQLParser.KW_ROLLBACK: - case PostgreSQLParser.KW_ROWS: - case PostgreSQLParser.KW_RULE: - case PostgreSQLParser.KW_SAVEPOINT: - case PostgreSQLParser.KW_SCHEMA: - case PostgreSQLParser.KW_SCROLL: - case PostgreSQLParser.KW_SEARCH: - case PostgreSQLParser.KW_SECOND: - case PostgreSQLParser.KW_SECURITY: - case PostgreSQLParser.KW_SEQUENCE: - case PostgreSQLParser.KW_SEQUENCES: - case PostgreSQLParser.KW_SERIALIZABLE: - case PostgreSQLParser.KW_SERVER: - case PostgreSQLParser.KW_SESSION: - case PostgreSQLParser.KW_SET: - case PostgreSQLParser.KW_SHARE: - case PostgreSQLParser.KW_SHOW: - case PostgreSQLParser.KW_SIMPLE: - case PostgreSQLParser.KW_SNAPSHOT: - case PostgreSQLParser.KW_STABLE: - case PostgreSQLParser.KW_STANDALONE: - case PostgreSQLParser.KW_START: - case PostgreSQLParser.KW_STATEMENT: - case PostgreSQLParser.KW_STATISTICS: - case PostgreSQLParser.KW_STDIN: - case PostgreSQLParser.KW_STDOUT: - case PostgreSQLParser.KW_STORAGE: - case PostgreSQLParser.KW_STRICT: - case PostgreSQLParser.KW_STRIP: - case PostgreSQLParser.KW_SYSID: - case PostgreSQLParser.KW_SYSTEM: - case PostgreSQLParser.KW_TABLES: - case PostgreSQLParser.KW_TABLESPACE: - case PostgreSQLParser.KW_TEMP: - case PostgreSQLParser.KW_TEMPLATE: - case PostgreSQLParser.KW_TEMPORARY: - case PostgreSQLParser.KW_TEXT: - case PostgreSQLParser.KW_TRANSACTION: - case PostgreSQLParser.KW_TRIGGER: - case PostgreSQLParser.KW_TRUNCATE: - case PostgreSQLParser.KW_TRUSTED: - case PostgreSQLParser.KW_TYPE: - case PostgreSQLParser.KW_TYPES: - case PostgreSQLParser.KW_UNBOUNDED: - case PostgreSQLParser.KW_UNCOMMITTED: - case PostgreSQLParser.KW_UNENCRYPTED: - case PostgreSQLParser.KW_UNKNOWN: - case PostgreSQLParser.KW_UNLISTEN: - case PostgreSQLParser.KW_UNLOGGED: - case PostgreSQLParser.KW_UNTIL: - case PostgreSQLParser.KW_UPDATE: - case PostgreSQLParser.KW_VACUUM: - case PostgreSQLParser.KW_VALID: - case PostgreSQLParser.KW_VALIDATE: - case PostgreSQLParser.KW_VALIDATOR: - case PostgreSQLParser.KW_VARYING: - case PostgreSQLParser.KW_VERSION: - case PostgreSQLParser.KW_VIEW: - case PostgreSQLParser.KW_VOLATILE: - case PostgreSQLParser.KW_WHITESPACE: - case PostgreSQLParser.KW_WITHOUT: - case PostgreSQLParser.KW_WORK: - case PostgreSQLParser.KW_WRAPPER: - case PostgreSQLParser.KW_WRITE: - case PostgreSQLParser.KW_XML: - case PostgreSQLParser.KW_YEAR: - case PostgreSQLParser.KW_YES: - case PostgreSQLParser.KW_ZONE: - case PostgreSQLParser.KW_BETWEEN: - case PostgreSQLParser.KW_BIGINT: - case PostgreSQLParser.KW_BIT: - case PostgreSQLParser.KW_BOOLEAN: - case PostgreSQLParser.KW_CHAR: - case PostgreSQLParser.KW_CHARACTER: - case PostgreSQLParser.KW_COALESCE: - case PostgreSQLParser.KW_DEC: - case PostgreSQLParser.KW_DECIMAL: - case PostgreSQLParser.KW_EXISTS: - case PostgreSQLParser.KW_EXTRACT: - case PostgreSQLParser.KW_FLOAT: - case PostgreSQLParser.KW_GREATEST: - case PostgreSQLParser.KW_INOUT: - case PostgreSQLParser.KW_INT: - case PostgreSQLParser.KW_INTEGER: - case PostgreSQLParser.KW_INTERVAL: - case PostgreSQLParser.KW_LEAST: - case PostgreSQLParser.KW_NATIONAL: - case PostgreSQLParser.KW_NCHAR: - case PostgreSQLParser.KW_NONE: - case PostgreSQLParser.KW_NULLIF: - case PostgreSQLParser.KW_NUMERIC: - case PostgreSQLParser.KW_OVERLAY: - case PostgreSQLParser.KW_POSITION: - case PostgreSQLParser.KW_PRECISION: - case PostgreSQLParser.KW_REAL: - case PostgreSQLParser.KW_ROW: - case PostgreSQLParser.KW_SETOF: - case PostgreSQLParser.KW_SMALLINT: - case PostgreSQLParser.KW_SUBSTRING: - case PostgreSQLParser.KW_TIME: - case PostgreSQLParser.KW_TIMESTAMP: - case PostgreSQLParser.KW_TREAT: - case PostgreSQLParser.KW_TRIM: - case PostgreSQLParser.KW_VALUES: - case PostgreSQLParser.KW_VARCHAR: - case PostgreSQLParser.KW_XMLATTRIBUTES: - case PostgreSQLParser.KW_XMLCONCAT: - case PostgreSQLParser.KW_XMLELEMENT: - case PostgreSQLParser.KW_XMLEXISTS: - case PostgreSQLParser.KW_XMLFOREST: - case PostgreSQLParser.KW_XMLPARSE: - case PostgreSQLParser.KW_XMLPI: - case PostgreSQLParser.KW_XMLROOT: - case PostgreSQLParser.KW_XMLSERIALIZE: - case PostgreSQLParser.KW_CALL: - case PostgreSQLParser.KW_CURRENT: - case PostgreSQLParser.KW_ATTACH: - case PostgreSQLParser.KW_DETACH: - case PostgreSQLParser.KW_EXPRESSION: - case PostgreSQLParser.KW_GENERATED: - case PostgreSQLParser.KW_LOGGED: - case PostgreSQLParser.KW_STORED: - case PostgreSQLParser.KW_INCLUDE: - case PostgreSQLParser.KW_ROUTINE: - case PostgreSQLParser.KW_TRANSFORM: - case PostgreSQLParser.KW_IMPORT: - case PostgreSQLParser.KW_POLICY: - case PostgreSQLParser.KW_METHOD: - case PostgreSQLParser.KW_REFERENCING: - case PostgreSQLParser.KW_NEW: - case PostgreSQLParser.KW_OLD: - case PostgreSQLParser.KW_VALUE: - case PostgreSQLParser.KW_SUBSCRIPTION: - case PostgreSQLParser.KW_PUBLICATION: - case PostgreSQLParser.KW_OUT: - case PostgreSQLParser.KW_ROUTINES: - case PostgreSQLParser.KW_SCHEMAS: - case PostgreSQLParser.KW_PROCEDURES: - case PostgreSQLParser.KW_INPUT: - case PostgreSQLParser.KW_SUPPORT: - case PostgreSQLParser.KW_PARALLEL: - case PostgreSQLParser.KW_SQL: - case PostgreSQLParser.KW_DEPENDS: - case PostgreSQLParser.KW_OVERRIDING: - case PostgreSQLParser.KW_CONFLICT: - case PostgreSQLParser.KW_SKIP: - case PostgreSQLParser.KW_LOCKED: - case PostgreSQLParser.KW_TIES: - case PostgreSQLParser.KW_ROLLUP: - case PostgreSQLParser.KW_CUBE: - case PostgreSQLParser.KW_GROUPING: - case PostgreSQLParser.KW_SETS: - case PostgreSQLParser.KW_TABLESAMPLE: - case PostgreSQLParser.KW_ORDINALITY: - case PostgreSQLParser.KW_XMLTABLE: - case PostgreSQLParser.KW_COLUMNS: - case PostgreSQLParser.KW_XMLNAMESPACES: - case PostgreSQLParser.KW_ROWTYPE: - case PostgreSQLParser.KW_NORMALIZED: - case PostgreSQLParser.KW_WITHIN: - case PostgreSQLParser.KW_FILTER: - case PostgreSQLParser.KW_GROUPS: - case PostgreSQLParser.KW_OTHERS: - case PostgreSQLParser.KW_NFC: - case PostgreSQLParser.KW_NFD: - case PostgreSQLParser.KW_NFKC: - case PostgreSQLParser.KW_NFKD: - case PostgreSQLParser.KW_UESCAPE: - case PostgreSQLParser.KW_VIEWS: - case PostgreSQLParser.KW_NORMALIZE: - case PostgreSQLParser.KW_DUMP: - case PostgreSQLParser.KW_PRINT_STRICT_PARAMS: - case PostgreSQLParser.KW_VARIABLE_CONFLICT: - case PostgreSQLParser.KW_ERROR: - case PostgreSQLParser.KW_USE_VARIABLE: - case PostgreSQLParser.KW_USE_COLUMN: - case PostgreSQLParser.KW_ALIAS: - case PostgreSQLParser.KW_CONSTANT: - case PostgreSQLParser.KW_PERFORM: - case PostgreSQLParser.KW_GET: - case PostgreSQLParser.KW_DIAGNOSTICS: - case PostgreSQLParser.KW_STACKED: - case PostgreSQLParser.KW_ELSIF: - case PostgreSQLParser.KW_REVERSE: - case PostgreSQLParser.KW_SLICE: - case PostgreSQLParser.KW_EXIT: - case PostgreSQLParser.KW_RETURN: - case PostgreSQLParser.KW_QUERY: - case PostgreSQLParser.KW_RAISE: - case PostgreSQLParser.KW_SQLSTATE: - case PostgreSQLParser.KW_DEBUG: - case PostgreSQLParser.KW_LOG: - case PostgreSQLParser.KW_INFO: - case PostgreSQLParser.KW_NOTICE: - case PostgreSQLParser.KW_WARNING: - case PostgreSQLParser.KW_EXCEPTION: - case PostgreSQLParser.KW_ASSERT: - case PostgreSQLParser.KW_OPEN: - case PostgreSQLParser.KW_SKIP_LOCKED: - case PostgreSQLParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSQLParser.Identifier: - case PostgreSQLParser.QuotedIdentifier: - case PostgreSQLParser.UnicodeQuotedIdentifier: - case PostgreSQLParser.StringConstant: - case PostgreSQLParser.UnicodeEscapeStringConstant: - case PostgreSQLParser.BeginDollarStringConstant: - case PostgreSQLParser.PLSQLVARIABLENAME: - case PostgreSQLParser.PLSQLIDENTIFIER: - case PostgreSQLParser.EscapeStringConstant: + case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2206; + this.state = 2208; this.nonreservedword_or_sconst_column(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -6513,27 +6097,27 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Opt_boolean_or_stringContext(this.context, this.state); this.enterRule(localContext, 72, PostgreSQLParser.RULE_opt_boolean_or_string); try { - this.state = 2213; + this.state = 2215; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_TRUE: this.enterOuterAlt(localContext, 1); { - this.state = 2209; + this.state = 2211; this.match(PostgreSQLParser.KW_TRUE); } break; case PostgreSQLParser.KW_FALSE: this.enterOuterAlt(localContext, 2); { - this.state = 2210; + this.state = 2212; this.match(PostgreSQLParser.KW_FALSE); } break; case PostgreSQLParser.KW_ON: this.enterOuterAlt(localContext, 3); { - this.state = 2211; + this.state = 2213; this.match(PostgreSQLParser.KW_ON); } break; @@ -6960,7 +6544,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 2212; + this.state = 2214; this.nonreservedword_or_sconst(); } break; @@ -6986,36 +6570,36 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Zone_valueContext(this.context, this.state); this.enterRule(localContext, 74, PostgreSQLParser.RULE_zone_value); try { - this.state = 2231; + this.state = 2233; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2215; + this.state = 2217; this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2216; + this.state = 2218; this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2217; + this.state = 2219; this.constinterval(); - this.state = 2218; - this.sconst(); this.state = 2220; + this.sconst(); + this.state = 2222; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { case 1: { - this.state = 2219; + this.state = 2221; this.opt_interval(); } break; @@ -7025,36 +6609,36 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2222; - this.constinterval(); - this.state = 2223; - this.match(PostgreSQLParser.OPEN_PAREN); this.state = 2224; - this.iconst(); + this.constinterval(); this.state = 2225; - this.match(PostgreSQLParser.CLOSE_PAREN); + this.match(PostgreSQLParser.OPEN_PAREN); this.state = 2226; + this.iconst(); + this.state = 2227; + this.match(PostgreSQLParser.CLOSE_PAREN); + this.state = 2228; this.sconst(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2228; + this.state = 2230; this.numericonly(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2229; + this.state = 2231; this.match(PostgreSQLParser.KW_DEFAULT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2230; + this.state = 2232; this.match(PostgreSQLParser.KW_LOCAL); } break; @@ -7078,7 +6662,7 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Opt_encodingContext(this.context, this.state); this.enterRule(localContext, 76, PostgreSQLParser.RULE_opt_encoding); try { - this.state = 2235; + this.state = 2237; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -7087,14 +6671,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 2233; + this.state = 2235; this.sconst(); } break; case PostgreSQLParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2234; + this.state = 2236; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -7120,20 +6704,20 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Nonreservedword_or_sconst_columnContext(this.context, this.state); this.enterRule(localContext, 78, PostgreSQLParser.RULE_nonreservedword_or_sconst_column); try { - this.state = 2239; + this.state = 2241; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 48, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2237; + this.state = 2239; this.nonreservedword_column(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2238; + this.state = 2240; this.sconst(); } break; @@ -7157,20 +6741,20 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Nonreservedword_or_sconstContext(this.context, this.state); this.enterRule(localContext, 80, PostgreSQLParser.RULE_nonreservedword_or_sconst); try { - this.state = 2243; + this.state = 2245; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2241; + this.state = 2243; this.nonreservedword(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2242; + this.state = 2244; this.sconst(); } break; @@ -7196,9 +6780,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2245; + this.state = 2247; this.match(PostgreSQLParser.KW_RESET); - this.state = 2246; + this.state = 2248; this.reset_rest(); } } @@ -7220,42 +6804,42 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Reset_restContext(this.context, this.state); this.enterRule(localContext, 84, PostgreSQLParser.RULE_reset_rest); try { - this.state = 2256; + this.state = 2258; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2248; + this.state = 2250; this.match(PostgreSQLParser.KW_TIME); - this.state = 2249; + this.state = 2251; this.match(PostgreSQLParser.KW_ZONE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2250; - this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 2251; - this.match(PostgreSQLParser.KW_ISOLATION); this.state = 2252; + this.match(PostgreSQLParser.KW_TRANSACTION); + this.state = 2253; + this.match(PostgreSQLParser.KW_ISOLATION); + this.state = 2254; this.match(PostgreSQLParser.KW_LEVEL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2253; + this.state = 2255; this.match(PostgreSQLParser.KW_SESSION); - this.state = 2254; + this.state = 2256; this.match(PostgreSQLParser.KW_AUTHORIZATION); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2255; + this.state = 2257; this.generic_reset(); } break; @@ -7279,13 +6863,13 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Generic_resetContext(this.context, this.state); this.enterRule(localContext, 86, PostgreSQLParser.RULE_generic_reset); try { - this.state = 2260; + this.state = 2262; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2258; + this.state = 2260; this.match(PostgreSQLParser.KW_ALL); } break; @@ -7691,7 +7275,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 2259; + this.state = 2261; this.var_name(); } break; @@ -7717,22 +7301,22 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new SetresetclauseContext(this.context, this.state); this.enterRule(localContext, 88, PostgreSQLParser.RULE_setresetclause); try { - this.state = 2265; + this.state = 2267; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 2262; + this.state = 2264; this.match(PostgreSQLParser.KW_SET); - this.state = 2263; + this.state = 2265; this.set_rest(); } break; case PostgreSQLParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 2264; + this.state = 2266; this.variableresetstmt(); } break; @@ -7758,22 +7342,22 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new FunctionsetresetclauseContext(this.context, this.state); this.enterRule(localContext, 90, PostgreSQLParser.RULE_functionsetresetclause); try { - this.state = 2270; + this.state = 2272; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 2267; + this.state = 2269; this.match(PostgreSQLParser.KW_SET); - this.state = 2268; + this.state = 2270; this.set_rest_more(); } break; case PostgreSQLParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 2269; + this.state = 2271; this.variableresetstmt(); } break; @@ -7801,46 +7385,46 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2272; + this.state = 2274; this.match(PostgreSQLParser.KW_SHOW); - this.state = 2282; + this.state = 2284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 2273; + this.state = 2275; this.var_name(); } break; case 2: { - this.state = 2274; + this.state = 2276; this.match(PostgreSQLParser.KW_TIME); - this.state = 2275; + this.state = 2277; this.match(PostgreSQLParser.KW_ZONE); } break; case 3: { - this.state = 2276; - this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 2277; - this.match(PostgreSQLParser.KW_ISOLATION); this.state = 2278; + this.match(PostgreSQLParser.KW_TRANSACTION); + this.state = 2279; + this.match(PostgreSQLParser.KW_ISOLATION); + this.state = 2280; this.match(PostgreSQLParser.KW_LEVEL); } break; case 4: { - this.state = 2279; + this.state = 2281; this.match(PostgreSQLParser.KW_SESSION); - this.state = 2280; + this.state = 2282; this.match(PostgreSQLParser.KW_AUTHORIZATION); } break; case 5: { - this.state = 2281; + this.state = 2283; this.match(PostgreSQLParser.KW_ALL); } break; @@ -7867,13 +7451,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2284; - this.match(PostgreSQLParser.KW_SET); - this.state = 2285; - this.match(PostgreSQLParser.KW_CONSTRAINTS); this.state = 2286; - this.constraints_set_list(); + this.match(PostgreSQLParser.KW_SET); this.state = 2287; + this.match(PostgreSQLParser.KW_CONSTRAINTS); + this.state = 2288; + this.constraints_set_list(); + this.state = 2289; this.constraints_set_mode(); } } @@ -7895,13 +7479,13 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Constraints_set_listContext(this.context, this.state); this.enterRule(localContext, 96, PostgreSQLParser.RULE_constraints_set_list); try { - this.state = 2291; + this.state = 2293; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2289; + this.state = 2291; this.match(PostgreSQLParser.KW_ALL); } break; @@ -8307,7 +7891,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 2290; + this.state = 2292; this.qualified_name_list(); } break; @@ -8336,7 +7920,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2293; + this.state = 2295; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -8367,7 +7951,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2295; + this.state = 2297; this.match(PostgreSQLParser.KW_CHECKPOINT); } } @@ -8392,9 +7976,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2297; + this.state = 2299; this.match(PostgreSQLParser.KW_DISCARD); - this.state = 2298; + this.state = 2300; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 288 || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 41943041) !== 0))) { this.errorHandler.recoverInline(this); @@ -8424,29 +8008,29 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 104, PostgreSQLParser.RULE_altertablestmt); let _la: number; try { - this.state = 2433; + this.state = 2435; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2300; + this.state = 2302; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2301; - this.match(PostgreSQLParser.KW_TABLE); this.state = 2303; + this.match(PostgreSQLParser.KW_TABLE); + this.state = 2305; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 56, this.context) ) { case 1: { - this.state = 2302; + this.state = 2304; this.opt_if_exists(); } break; } - this.state = 2305; + this.state = 2307; this.relation_expr(); - this.state = 2308; + this.state = 2310; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NOT: @@ -8467,14 +8051,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SET: case PostgreSQLParser.KW_VALIDATE: { - this.state = 2306; + this.state = 2308; this.alter_table_cmds(); } break; case PostgreSQLParser.KW_ATTACH: case PostgreSQLParser.KW_DETACH: { - this.state = 2307; + this.state = 2309; this.partition_cmd(); } break; @@ -8486,44 +8070,44 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2310; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2311; - this.match(PostgreSQLParser.KW_TABLE); this.state = 2312; - this.match(PostgreSQLParser.KW_ALL); + this.match(PostgreSQLParser.KW_ALTER); this.state = 2313; - this.match(PostgreSQLParser.KW_IN); + this.match(PostgreSQLParser.KW_TABLE); this.state = 2314; - this.match(PostgreSQLParser.KW_TABLESPACE); + this.match(PostgreSQLParser.KW_ALL); this.state = 2315; + this.match(PostgreSQLParser.KW_IN); + this.state = 2316; + this.match(PostgreSQLParser.KW_TABLESPACE); + this.state = 2317; this.tablespace_name(); - this.state = 2319; + this.state = 2321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 2316; - this.match(PostgreSQLParser.KW_OWNED); - this.state = 2317; - this.match(PostgreSQLParser.KW_BY); this.state = 2318; + this.match(PostgreSQLParser.KW_OWNED); + this.state = 2319; + this.match(PostgreSQLParser.KW_BY); + this.state = 2320; this.role_list(); } } - this.state = 2321; - this.match(PostgreSQLParser.KW_SET); - this.state = 2322; - this.match(PostgreSQLParser.KW_TABLESPACE); this.state = 2323; - this.tablespace_name_create(); + this.match(PostgreSQLParser.KW_SET); + this.state = 2324; + this.match(PostgreSQLParser.KW_TABLESPACE); this.state = 2325; + this.tablespace_name_create(); + this.state = 2327; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 2324; + this.state = 2326; this.opt_nowait(); } break; @@ -8533,44 +8117,44 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2327; + this.state = 2329; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2328; - this.match(PostgreSQLParser.KW_TABLE); this.state = 2330; + this.match(PostgreSQLParser.KW_TABLE); + this.state = 2332; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 2329; + this.state = 2331; this.opt_if_exists(); } break; } - this.state = 2332; - this.table_name(); - this.state = 2333; - this.match(PostgreSQLParser.KW_ATTACH); this.state = 2334; - this.match(PostgreSQLParser.KW_PARTITION); + this.table_name(); this.state = 2335; + this.match(PostgreSQLParser.KW_ATTACH); + this.state = 2336; + this.match(PostgreSQLParser.KW_PARTITION); + this.state = 2337; this.qualified_name(); - this.state = 2340; + this.state = 2342; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOR: { - this.state = 2336; - this.match(PostgreSQLParser.KW_FOR); - this.state = 2337; - this.match(PostgreSQLParser.KW_VALUES); this.state = 2338; + this.match(PostgreSQLParser.KW_FOR); + this.state = 2339; + this.match(PostgreSQLParser.KW_VALUES); + this.state = 2340; this.partition_bound_spec(); } break; case PostgreSQLParser.KW_DEFAULT: { - this.state = 2339; + this.state = 2341; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -8582,34 +8166,34 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2342; + this.state = 2344; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2343; - this.match(PostgreSQLParser.KW_TABLE); this.state = 2345; + this.match(PostgreSQLParser.KW_TABLE); + this.state = 2347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { case 1: { - this.state = 2344; + this.state = 2346; this.opt_if_exists(); } break; } - this.state = 2347; - this.table_name(); - this.state = 2348; - this.match(PostgreSQLParser.KW_DETACH); this.state = 2349; - this.match(PostgreSQLParser.KW_PARTITION); + this.table_name(); this.state = 2350; - this.qualified_name(); + this.match(PostgreSQLParser.KW_DETACH); + this.state = 2351; + this.match(PostgreSQLParser.KW_PARTITION); this.state = 2352; + this.qualified_name(); + this.state = 2354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109 || _la === 532) { { - this.state = 2351; + this.state = 2353; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 532)) { this.errorHandler.recoverInline(this); @@ -8626,23 +8210,23 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2354; + this.state = 2356; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2355; - this.match(PostgreSQLParser.KW_INDEX); this.state = 2357; + this.match(PostgreSQLParser.KW_INDEX); + this.state = 2359; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 2356; + this.state = 2358; this.opt_if_exists(); } break; } - this.state = 2359; + this.state = 2361; this.qualified_name(); - this.state = 2362; + this.state = 2364; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NOT: @@ -8663,13 +8247,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SET: case PostgreSQLParser.KW_VALIDATE: { - this.state = 2360; + this.state = 2362; this.alter_table_cmds(); } break; case PostgreSQLParser.KW_ATTACH: { - this.state = 2361; + this.state = 2363; this.index_partition_cmd(); } break; @@ -8681,44 +8265,44 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2364; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2365; - this.match(PostgreSQLParser.KW_INDEX); this.state = 2366; - this.match(PostgreSQLParser.KW_ALL); + this.match(PostgreSQLParser.KW_ALTER); this.state = 2367; - this.match(PostgreSQLParser.KW_IN); + this.match(PostgreSQLParser.KW_INDEX); this.state = 2368; - this.match(PostgreSQLParser.KW_TABLESPACE); + this.match(PostgreSQLParser.KW_ALL); this.state = 2369; + this.match(PostgreSQLParser.KW_IN); + this.state = 2370; + this.match(PostgreSQLParser.KW_TABLESPACE); + this.state = 2371; this.tablespace_name(); - this.state = 2373; + this.state = 2375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 2370; - this.match(PostgreSQLParser.KW_OWNED); - this.state = 2371; - this.match(PostgreSQLParser.KW_BY); this.state = 2372; + this.match(PostgreSQLParser.KW_OWNED); + this.state = 2373; + this.match(PostgreSQLParser.KW_BY); + this.state = 2374; this.role_list(); } } - this.state = 2375; - this.match(PostgreSQLParser.KW_SET); - this.state = 2376; - this.match(PostgreSQLParser.KW_TABLESPACE); this.state = 2377; - this.tablespace_name_create(); + this.match(PostgreSQLParser.KW_SET); + this.state = 2378; + this.match(PostgreSQLParser.KW_TABLESPACE); this.state = 2379; + this.tablespace_name(); + this.state = 2381; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: { - this.state = 2378; + this.state = 2380; this.opt_nowait(); } break; @@ -8728,117 +8312,117 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2381; + this.state = 2383; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2382; - this.match(PostgreSQLParser.KW_SEQUENCE); this.state = 2384; + this.match(PostgreSQLParser.KW_SEQUENCE); + this.state = 2386; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 68, this.context) ) { case 1: { - this.state = 2383; + this.state = 2385; this.opt_if_exists(); } break; } - this.state = 2386; + this.state = 2388; this.qualified_name(); - this.state = 2387; + this.state = 2389; this.alter_table_cmds(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2389; + this.state = 2391; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2390; - this.match(PostgreSQLParser.KW_VIEW); this.state = 2392; + this.match(PostgreSQLParser.KW_VIEW); + this.state = 2394; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 2391; + this.state = 2393; this.opt_if_exists(); } break; } - this.state = 2394; + this.state = 2396; this.view_name(); - this.state = 2395; + this.state = 2397; this.alter_table_cmds(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2397; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2398; - this.match(PostgreSQLParser.KW_MATERIALIZED); this.state = 2399; - this.match(PostgreSQLParser.KW_VIEW); + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2400; + this.match(PostgreSQLParser.KW_MATERIALIZED); this.state = 2401; + this.match(PostgreSQLParser.KW_VIEW); + this.state = 2403; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 2400; + this.state = 2402; this.opt_if_exists(); } break; } - this.state = 2403; + this.state = 2405; this.view_name(); - this.state = 2404; + this.state = 2406; this.alter_table_cmds(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2406; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2407; - this.match(PostgreSQLParser.KW_MATERIALIZED); this.state = 2408; - this.match(PostgreSQLParser.KW_VIEW); + this.match(PostgreSQLParser.KW_ALTER); this.state = 2409; - this.match(PostgreSQLParser.KW_ALL); + this.match(PostgreSQLParser.KW_MATERIALIZED); this.state = 2410; - this.match(PostgreSQLParser.KW_IN); + this.match(PostgreSQLParser.KW_VIEW); this.state = 2411; - this.match(PostgreSQLParser.KW_TABLESPACE); + this.match(PostgreSQLParser.KW_ALL); this.state = 2412; + this.match(PostgreSQLParser.KW_IN); + this.state = 2413; + this.match(PostgreSQLParser.KW_TABLESPACE); + this.state = 2414; this.tablespace_name(); - this.state = 2416; + this.state = 2418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 2413; - this.match(PostgreSQLParser.KW_OWNED); - this.state = 2414; - this.match(PostgreSQLParser.KW_BY); this.state = 2415; + this.match(PostgreSQLParser.KW_OWNED); + this.state = 2416; + this.match(PostgreSQLParser.KW_BY); + this.state = 2417; this.role_list(); } } - this.state = 2418; - this.match(PostgreSQLParser.KW_SET); - this.state = 2419; - this.match(PostgreSQLParser.KW_TABLESPACE); this.state = 2420; - this.tablespace_name_create(); + this.match(PostgreSQLParser.KW_SET); + this.state = 2421; + this.match(PostgreSQLParser.KW_TABLESPACE); this.state = 2422; + this.tablespace_name_create(); + this.state = 2424; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 2421; + this.state = 2423; this.opt_nowait(); } break; @@ -8848,25 +8432,25 @@ export class PostgreSQLParser extends antlr.Parser { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2424; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2425; - this.match(PostgreSQLParser.KW_FOREIGN); this.state = 2426; - this.match(PostgreSQLParser.KW_TABLE); + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2427; + this.match(PostgreSQLParser.KW_FOREIGN); this.state = 2428; + this.match(PostgreSQLParser.KW_TABLE); + this.state = 2430; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 2427; + this.state = 2429; this.opt_if_exists(); } break; } - this.state = 2430; + this.state = 2432; this.relation_expr(); - this.state = 2431; + this.state = 2433; this.alter_table_cmds(); } break; @@ -8893,21 +8477,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2435; + this.state = 2437; this.alter_table_cmd(); - this.state = 2440; + this.state = 2442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2436; + this.state = 2438; this.match(PostgreSQLParser.COMMA); - this.state = 2437; + this.state = 2439; this.alter_table_cmd(); } } - this.state = 2442; + this.state = 2444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8931,37 +8515,37 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Partition_bound_specContext(this.context, this.state); this.enterRule(localContext, 108, PostgreSQLParser.RULE_partition_bound_spec); try { - this.state = 2452; + this.state = 2454; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 2443; + this.state = 2445; this.match(PostgreSQLParser.KW_IN); - this.state = 2444; + this.state = 2446; this.opt_type_modifiers(); } break; case PostgreSQLParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 2445; - this.match(PostgreSQLParser.KW_FROM); - this.state = 2446; - this.partition_bound_cluase(); this.state = 2447; - this.match(PostgreSQLParser.KW_TO); + this.match(PostgreSQLParser.KW_FROM); this.state = 2448; this.partition_bound_cluase(); + this.state = 2449; + this.match(PostgreSQLParser.KW_TO); + this.state = 2450; + this.partition_bound_cluase(); } break; case PostgreSQLParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 2450; + this.state = 2452; this.match(PostgreSQLParser.KW_WITH); - this.state = 2451; + this.state = 2453; this.partition_with_cluase(); } break; @@ -8990,27 +8574,27 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2454; + this.state = 2456; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2455; + this.state = 2457; this.partition_bound_choose(); - this.state = 2460; + this.state = 2462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2456; + this.state = 2458; this.match(PostgreSQLParser.COMMA); - this.state = 2457; + this.state = 2459; this.partition_bound_choose(); } } - this.state = 2462; + this.state = 2464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2463; + this.state = 2465; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -9032,27 +8616,27 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Partition_bound_chooseContext(this.context, this.state); this.enterRule(localContext, 112, PostgreSQLParser.RULE_partition_bound_choose); try { - this.state = 2468; + this.state = 2470; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 1); { - this.state = 2465; + this.state = 2467; this.opt_type_modifiers(); } break; case PostgreSQLParser.KW_MINVALUE: this.enterOuterAlt(localContext, 2); { - this.state = 2466; + this.state = 2468; this.match(PostgreSQLParser.KW_MINVALUE); } break; case PostgreSQLParser.KW_MAXVALUE: this.enterOuterAlt(localContext, 3); { - this.state = 2467; + this.state = 2469; this.match(PostgreSQLParser.KW_MAXVALUE); } break; @@ -9080,19 +8664,19 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2470; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2471; - this.match(PostgreSQLParser.KW_MODULUS); this.state = 2472; - this.numericonly(); + this.match(PostgreSQLParser.OPEN_PAREN); this.state = 2473; - this.match(PostgreSQLParser.COMMA); + this.match(PostgreSQLParser.KW_MODULUS); this.state = 2474; - this.match(PostgreSQLParser.KW_REMAINDER); - this.state = 2475; this.numericonly(); + this.state = 2475; + this.match(PostgreSQLParser.COMMA); this.state = 2476; + this.match(PostgreSQLParser.KW_REMAINDER); + this.state = 2477; + this.numericonly(); + this.state = 2478; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -9114,30 +8698,30 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Partition_cmdContext(this.context, this.state); this.enterRule(localContext, 116, PostgreSQLParser.RULE_partition_cmd); try { - this.state = 2486; + this.state = 2488; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ATTACH: this.enterOuterAlt(localContext, 1); { - this.state = 2478; - this.match(PostgreSQLParser.KW_ATTACH); - this.state = 2479; - this.match(PostgreSQLParser.KW_PARTITION); this.state = 2480; - this.qualified_name(); + this.match(PostgreSQLParser.KW_ATTACH); this.state = 2481; + this.match(PostgreSQLParser.KW_PARTITION); + this.state = 2482; + this.qualified_name(); + this.state = 2483; this.partitionboundspec(); } break; case PostgreSQLParser.KW_DETACH: this.enterOuterAlt(localContext, 2); { - this.state = 2483; - this.match(PostgreSQLParser.KW_DETACH); - this.state = 2484; - this.match(PostgreSQLParser.KW_PARTITION); this.state = 2485; + this.match(PostgreSQLParser.KW_DETACH); + this.state = 2486; + this.match(PostgreSQLParser.KW_PARTITION); + this.state = 2487; this.qualified_name(); } break; @@ -9165,11 +8749,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2488; - this.match(PostgreSQLParser.KW_ATTACH); - this.state = 2489; - this.match(PostgreSQLParser.KW_PARTITION); this.state = 2490; + this.match(PostgreSQLParser.KW_ATTACH); + this.state = 2491; + this.match(PostgreSQLParser.KW_PARTITION); + this.state = 2492; this.qualified_name(); } } @@ -9192,79 +8776,79 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 120, PostgreSQLParser.RULE_alter_table_cmd); let _la: number; try { - this.state = 2709; + this.state = 2711; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2492; + this.state = 2494; this.match(PostgreSQLParser.KW_ADD); - this.state = 2495; + this.state = 2497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2493; + this.state = 2495; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 2494; + this.state = 2496; this.name(); } } - this.state = 2497; + this.state = 2499; this.constraintelem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2498; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2499; - this.match(PostgreSQLParser.KW_CONSTRAINT); this.state = 2500; - this.name(); + this.match(PostgreSQLParser.KW_ALTER); this.state = 2501; + this.match(PostgreSQLParser.KW_CONSTRAINT); + this.state = 2502; + this.name(); + this.state = 2503; this.constraintattributespec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2503; - this.match(PostgreSQLParser.KW_VALIDATE); - this.state = 2504; - this.match(PostgreSQLParser.KW_CONSTRAINT); this.state = 2505; + this.match(PostgreSQLParser.KW_VALIDATE); + this.state = 2506; + this.match(PostgreSQLParser.KW_CONSTRAINT); + this.state = 2507; this.name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2506; + this.state = 2508; this.match(PostgreSQLParser.KW_DROP); - this.state = 2507; - this.match(PostgreSQLParser.KW_CONSTRAINT); this.state = 2509; + this.match(PostgreSQLParser.KW_CONSTRAINT); + this.state = 2511; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { case 1: { - this.state = 2508; + this.state = 2510; this.opt_if_exists(); } break; } - this.state = 2511; - this.name(); this.state = 2513; + this.name(); + this.state = 2515; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 2512; + this.state = 2514; this.opt_drop_behavior(); } break; @@ -9274,42 +8858,42 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2515; - this.match(PostgreSQLParser.KW_SET); - this.state = 2516; - this.match(PostgreSQLParser.KW_WITHOUT); this.state = 2517; + this.match(PostgreSQLParser.KW_SET); + this.state = 2518; + this.match(PostgreSQLParser.KW_WITHOUT); + this.state = 2519; this.match(PostgreSQLParser.KW_OIDS); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2518; - this.match(PostgreSQLParser.KW_CLUSTER); - this.state = 2519; - this.match(PostgreSQLParser.KW_ON); this.state = 2520; + this.match(PostgreSQLParser.KW_CLUSTER); + this.state = 2521; + this.match(PostgreSQLParser.KW_ON); + this.state = 2522; this.name(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2521; - this.match(PostgreSQLParser.KW_SET); - this.state = 2522; - this.match(PostgreSQLParser.KW_WITHOUT); this.state = 2523; + this.match(PostgreSQLParser.KW_SET); + this.state = 2524; + this.match(PostgreSQLParser.KW_WITHOUT); + this.state = 2525; this.match(PostgreSQLParser.KW_CLUSTER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2524; + this.state = 2526; this.match(PostgreSQLParser.KW_SET); - this.state = 2525; + this.state = 2527; _la = this.tokenStream.LA(1); if(!(_la === 367 || _la === 439)) { this.errorHandler.recoverInline(this); @@ -9323,14 +8907,14 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2526; - this.match(PostgreSQLParser.KW_ENABLE); this.state = 2528; + this.match(PostgreSQLParser.KW_ENABLE); + this.state = 2530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 312) { { - this.state = 2527; + this.state = 2529; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -9342,29 +8926,29 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 2530; + this.state = 2532; this.match(PostgreSQLParser.KW_TRIGGER); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2531; + this.state = 2533; this.match(PostgreSQLParser.KW_DISABLE); - this.state = 2532; + this.state = 2534; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 2536; + this.state = 2538; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: { - this.state = 2533; + this.state = 2535; this.match(PostgreSQLParser.KW_ALL); } break; case PostgreSQLParser.KW_USER: { - this.state = 2534; + this.state = 2536; this.match(PostgreSQLParser.KW_USER); } break; @@ -9769,7 +9353,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 2535; + this.state = 2537; this.name(); } break; @@ -9781,9 +9365,9 @@ export class PostgreSQLParser extends antlr.Parser { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2538; + this.state = 2540; this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2539; + this.state = 2541; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -9792,198 +9376,198 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2540; + this.state = 2542; this.match(PostgreSQLParser.KW_RULE); - this.state = 2541; + this.state = 2543; this.name(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2542; - this.match(PostgreSQLParser.KW_DISABLE); - this.state = 2543; - this.match(PostgreSQLParser.KW_RULE); this.state = 2544; + this.match(PostgreSQLParser.KW_DISABLE); + this.state = 2545; + this.match(PostgreSQLParser.KW_RULE); + this.state = 2546; this.name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2546; + this.state = 2548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 2545; + this.state = 2547; this.match(PostgreSQLParser.KW_NO); } } - this.state = 2548; + this.state = 2550; this.match(PostgreSQLParser.KW_INHERIT); - this.state = 2549; + this.state = 2551; this.qualified_name(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2550; + this.state = 2552; this.match(PostgreSQLParser.KW_OF); - this.state = 2551; + this.state = 2553; this.any_name(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2552; + this.state = 2554; this.match(PostgreSQLParser.KW_NOT); - this.state = 2553; + this.state = 2555; this.match(PostgreSQLParser.KW_OF); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2554; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 2555; - this.match(PostgreSQLParser.KW_TO); this.state = 2556; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 2557; + this.match(PostgreSQLParser.KW_TO); + this.state = 2558; this.rolespec(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2557; - this.match(PostgreSQLParser.KW_SET); - this.state = 2558; - this.match(PostgreSQLParser.KW_TABLESPACE); this.state = 2559; + this.match(PostgreSQLParser.KW_SET); + this.state = 2560; + this.match(PostgreSQLParser.KW_TABLESPACE); + this.state = 2561; this.tablespace_name_create(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2560; + this.state = 2562; this.match(PostgreSQLParser.KW_SET); - this.state = 2561; + this.state = 2563; this.reloptions(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 2562; + this.state = 2564; this.match(PostgreSQLParser.KW_RESET); - this.state = 2563; + this.state = 2565; this.reloptions(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 2564; - this.match(PostgreSQLParser.KW_REPLICA); - this.state = 2565; - this.match(PostgreSQLParser.KW_IDENTITY); this.state = 2566; + this.match(PostgreSQLParser.KW_REPLICA); + this.state = 2567; + this.match(PostgreSQLParser.KW_IDENTITY); + this.state = 2568; this.replica_identity(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 2567; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2568; - this.match(PostgreSQLParser.KW_ROW); this.state = 2569; - this.match(PostgreSQLParser.KW_LEVEL); + this.match(PostgreSQLParser.KW_ENABLE); this.state = 2570; + this.match(PostgreSQLParser.KW_ROW); + this.state = 2571; + this.match(PostgreSQLParser.KW_LEVEL); + this.state = 2572; this.match(PostgreSQLParser.KW_SECURITY); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 2571; - this.match(PostgreSQLParser.KW_DISABLE); - this.state = 2572; - this.match(PostgreSQLParser.KW_ROW); this.state = 2573; - this.match(PostgreSQLParser.KW_LEVEL); + this.match(PostgreSQLParser.KW_DISABLE); this.state = 2574; + this.match(PostgreSQLParser.KW_ROW); + this.state = 2575; + this.match(PostgreSQLParser.KW_LEVEL); + this.state = 2576; this.match(PostgreSQLParser.KW_SECURITY); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 2575; - this.match(PostgreSQLParser.KW_FORCE); - this.state = 2576; - this.match(PostgreSQLParser.KW_ROW); this.state = 2577; - this.match(PostgreSQLParser.KW_LEVEL); + this.match(PostgreSQLParser.KW_FORCE); this.state = 2578; + this.match(PostgreSQLParser.KW_ROW); + this.state = 2579; + this.match(PostgreSQLParser.KW_LEVEL); + this.state = 2580; this.match(PostgreSQLParser.KW_SECURITY); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 2579; - this.match(PostgreSQLParser.KW_NO); - this.state = 2580; - this.match(PostgreSQLParser.KW_FORCE); this.state = 2581; - this.match(PostgreSQLParser.KW_ROW); + this.match(PostgreSQLParser.KW_NO); this.state = 2582; - this.match(PostgreSQLParser.KW_LEVEL); + this.match(PostgreSQLParser.KW_FORCE); this.state = 2583; + this.match(PostgreSQLParser.KW_ROW); + this.state = 2584; + this.match(PostgreSQLParser.KW_LEVEL); + this.state = 2585; this.match(PostgreSQLParser.KW_SECURITY); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 2584; - this.match(PostgreSQLParser.KW_DROP); this.state = 2586; + this.match(PostgreSQLParser.KW_DROP); + this.state = 2588; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { - { - this.state = 2585; - this.match(PostgreSQLParser.KW_COLUMN); - } - } - - this.state = 2589; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 2588; - this.opt_if_exists(); + this.state = 2587; + this.match(PostgreSQLParser.KW_COLUMN); } break; } this.state = 2591; - this.column_name(); + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { + case 1: + { + this.state = 2590; + this.opt_if_exists(); + } + break; + } this.state = 2593; + this.column_name(); + this.state = 2595; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 2592; + this.state = 2594; this.opt_drop_behavior(); } break; @@ -9993,71 +9577,71 @@ export class PostgreSQLParser extends antlr.Parser { case 26: this.enterOuterAlt(localContext, 26); { - this.state = 2595; - this.match(PostgreSQLParser.KW_ADD); this.state = 2597; + this.match(PostgreSQLParser.KW_ADD); + this.state = 2599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 2596; + this.state = 2598; this.match(PostgreSQLParser.KW_COLUMN); } } - this.state = 2600; + this.state = 2602; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 2599; + this.state = 2601; this.opt_if_not_exists(); } break; } - this.state = 2602; - this.columnDefCluase(); + this.state = 2604; + this.column_def(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 2603; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2605; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2607; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { + case 1: { - this.state = 2604; + this.state = 2606; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2607; + this.state = 2609; this.column_name(); - this.state = 2608; + this.state = 2610; this.alter_column_default(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 2610; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2612; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2614; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { + case 1: { - this.state = 2611; + this.state = 2613; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2614; + this.state = 2616; this.column_name(); - this.state = 2615; + this.state = 2617; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -10066,39 +9650,39 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2616; + this.state = 2618; this.match(PostgreSQLParser.KW_NOT); - this.state = 2617; + this.state = 2619; this.match(PostgreSQLParser.KW_NULL); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 2619; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2621; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2623; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { + case 1: { - this.state = 2620; + this.state = 2622; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2623; - this.column_name(); - this.state = 2624; - this.match(PostgreSQLParser.KW_DROP); this.state = 2625; - this.match(PostgreSQLParser.KW_EXPRESSION); + this.column_name(); + this.state = 2626; + this.match(PostgreSQLParser.KW_DROP); this.state = 2627; + this.match(PostgreSQLParser.KW_EXPRESSION); + this.state = 2629; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 2626; + this.state = 2628; this.opt_if_exists(); } break; @@ -10108,46 +9692,46 @@ export class PostgreSQLParser extends antlr.Parser { case 30: this.enterOuterAlt(localContext, 30); { - this.state = 2629; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2631; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2633; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { + case 1: { - this.state = 2630; + this.state = 2632; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2633; - this.column_name(); - this.state = 2634; - this.match(PostgreSQLParser.KW_SET); this.state = 2635; - this.match(PostgreSQLParser.KW_STATISTICS); + this.column_name(); this.state = 2636; + this.match(PostgreSQLParser.KW_SET); + this.state = 2637; + this.match(PostgreSQLParser.KW_STATISTICS); + this.state = 2638; this.signediconst(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 2638; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2640; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2642; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { + case 1: { - this.state = 2639; + this.state = 2641; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2642; + this.state = 2644; this.column_name(); - this.state = 2643; + this.state = 2645; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -10156,68 +9740,68 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2644; + this.state = 2646; this.reloptions(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 2646; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2648; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2650; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { + case 1: { - this.state = 2647; + this.state = 2649; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2650; - this.column_name(); - this.state = 2651; - this.match(PostgreSQLParser.KW_SET); this.state = 2652; - this.match(PostgreSQLParser.KW_STORAGE); + this.column_name(); this.state = 2653; + this.match(PostgreSQLParser.KW_SET); + this.state = 2654; + this.match(PostgreSQLParser.KW_STORAGE); + this.state = 2655; this.colid(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 2655; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2657; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2659; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { + case 1: { - this.state = 2656; + this.state = 2658; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2659; - this.column_name(); - this.state = 2660; - this.match(PostgreSQLParser.KW_ADD); this.state = 2661; - this.match(PostgreSQLParser.KW_GENERATED); + this.column_name(); this.state = 2662; - this.generated_when(); + this.match(PostgreSQLParser.KW_ADD); this.state = 2663; - this.match(PostgreSQLParser.KW_AS); + this.match(PostgreSQLParser.KW_GENERATED); this.state = 2664; - this.match(PostgreSQLParser.KW_IDENTITY); + this.generated_when(); + this.state = 2665; + this.match(PostgreSQLParser.KW_AS); this.state = 2666; + this.match(PostgreSQLParser.KW_IDENTITY); + this.state = 2668; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { case 1: { - this.state = 2665; + this.state = 2667; this.optparenthesizedseqoptlist(); } break; @@ -10227,51 +9811,51 @@ export class PostgreSQLParser extends antlr.Parser { case 34: this.enterOuterAlt(localContext, 34); { - this.state = 2668; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2670; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2672; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { + case 1: { - this.state = 2669; + this.state = 2671; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2672; + this.state = 2674; this.column_name(); - this.state = 2673; + this.state = 2675; this.alter_identity_column_option_list(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 2675; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2677; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2679; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { + case 1: { - this.state = 2676; + this.state = 2678; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2679; - this.column_name(); - this.state = 2680; - this.match(PostgreSQLParser.KW_DROP); this.state = 2681; - this.match(PostgreSQLParser.KW_IDENTITY); + this.column_name(); + this.state = 2682; + this.match(PostgreSQLParser.KW_DROP); this.state = 2683; + this.match(PostgreSQLParser.KW_IDENTITY); + this.state = 2685; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 2682; + this.state = 2684; this.opt_if_exists(); } break; @@ -10281,50 +9865,50 @@ export class PostgreSQLParser extends antlr.Parser { case 36: this.enterOuterAlt(localContext, 36); { - this.state = 2685; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2687; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2689; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { + case 1: { - this.state = 2686; + this.state = 2688; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2689; - this.column_name(); this.state = 2691; + this.column_name(); + this.state = 2693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 2690; + this.state = 2692; this.opt_set_data(); } } - this.state = 2693; + this.state = 2695; this.match(PostgreSQLParser.KW_TYPE); - this.state = 2694; - this.typename(); this.state = 2696; + this.typename(); + this.state = 2698; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: { - this.state = 2695; + this.state = 2697; this.opt_collate_clause(); } break; } - this.state = 2699; + this.state = 2701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2698; + this.state = 2700; this.alter_using(); } } @@ -10334,28 +9918,28 @@ export class PostgreSQLParser extends antlr.Parser { case 37: this.enterOuterAlt(localContext, 37); { - this.state = 2701; - this.match(PostgreSQLParser.KW_ALTER); this.state = 2703; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2705; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { + case 1: { - this.state = 2702; + this.state = 2704; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 2705; + this.state = 2707; this.column_name(); - this.state = 2706; + this.state = 2708; this.alter_generic_options(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 2708; + this.state = 2710; this.alter_generic_options(); } break; @@ -10379,26 +9963,26 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Alter_column_defaultContext(this.context, this.state); this.enterRule(localContext, 122, PostgreSQLParser.RULE_alter_column_default); try { - this.state = 2716; + this.state = 2718; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 2711; - this.match(PostgreSQLParser.KW_SET); - this.state = 2712; - this.match(PostgreSQLParser.KW_DEFAULT); this.state = 2713; + this.match(PostgreSQLParser.KW_SET); + this.state = 2714; + this.match(PostgreSQLParser.KW_DEFAULT); + this.state = 2715; this.a_expr(); } break; case PostgreSQLParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 2714; + this.state = 2716; this.match(PostgreSQLParser.KW_DROP); - this.state = 2715; + this.state = 2717; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -10427,7 +10011,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2718; + this.state = 2720; _la = this.tokenStream.LA(1); if(!(_la === 150 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -10458,9 +10042,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2720; + this.state = 2722; this.match(PostgreSQLParser.KW_COLLATE); - this.state = 2721; + this.state = 2723; this.any_name(); } } @@ -10484,9 +10068,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2723; + this.state = 2725; this.match(PostgreSQLParser.KW_USING); - this.state = 2724; + this.state = 2726; this.a_expr(); } } @@ -10508,38 +10092,38 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Replica_identityContext(this.context, this.state); this.enterRule(localContext, 130, PostgreSQLParser.RULE_replica_identity); try { - this.state = 2732; + this.state = 2734; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NOTHING: this.enterOuterAlt(localContext, 1); { - this.state = 2726; + this.state = 2728; this.match(PostgreSQLParser.KW_NOTHING); } break; case PostgreSQLParser.KW_FULL: this.enterOuterAlt(localContext, 2); { - this.state = 2727; + this.state = 2729; this.match(PostgreSQLParser.KW_FULL); } break; case PostgreSQLParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 2728; + this.state = 2730; this.match(PostgreSQLParser.KW_DEFAULT); } break; case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 4); { - this.state = 2729; - this.match(PostgreSQLParser.KW_USING); - this.state = 2730; - this.match(PostgreSQLParser.KW_INDEX); this.state = 2731; + this.match(PostgreSQLParser.KW_USING); + this.state = 2732; + this.match(PostgreSQLParser.KW_INDEX); + this.state = 2733; this.name(); } break; @@ -10567,11 +10151,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2734; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2735; - this.reloption_list(); this.state = 2736; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 2737; + this.reloption_list(); + this.state = 2738; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -10595,9 +10179,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2738; + this.state = 2740; this.match(PostgreSQLParser.KW_WITH); - this.state = 2739; + this.state = 2741; this.reloptions(); } } @@ -10622,21 +10206,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2741; + this.state = 2743; this.reloption_elem(); - this.state = 2746; + this.state = 2748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2742; + this.state = 2744; this.match(PostgreSQLParser.COMMA); - this.state = 2743; + this.state = 2745; this.reloption_elem(); } } - this.state = 2748; + this.state = 2750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10663,33 +10247,33 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2749; + this.state = 2751; this.collabel(); - this.state = 2758; + this.state = 2760; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.EQUAL: { - this.state = 2750; + this.state = 2752; this.match(PostgreSQLParser.EQUAL); - this.state = 2751; + this.state = 2753; this.def_arg(); } break; case PostgreSQLParser.DOT: { - this.state = 2752; + this.state = 2754; this.match(PostgreSQLParser.DOT); - this.state = 2753; + this.state = 2755; this.collabel(); - this.state = 2756; + this.state = 2758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 2754; + this.state = 2756; this.match(PostgreSQLParser.EQUAL); - this.state = 2755; + this.state = 2757; this.def_arg(); } } @@ -10725,7 +10309,7 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2761; + this.state = 2763; this.errorHandler.sync(this); alternative = 1; do { @@ -10733,7 +10317,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 2760; + this.state = 2762; this.alter_identity_column_option(); } } @@ -10741,7 +10325,7 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 2763; + this.state = 2765; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 114, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -10766,30 +10350,30 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 142, PostgreSQLParser.RULE_alter_identity_column_option); let _la: number; try { - this.state = 2778; + this.state = 2780; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_RESTART: this.enterOuterAlt(localContext, 1); { - this.state = 2765; + this.state = 2767; this.match(PostgreSQLParser.KW_RESTART); - this.state = 2770; + this.state = 2772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 2767; + this.state = 2769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2766; + this.state = 2768; this.opt_with(); } } - this.state = 2769; + this.state = 2771; this.numericonly(); } break; @@ -10799,9 +10383,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 2); { - this.state = 2772; + this.state = 2774; this.match(PostgreSQLParser.KW_SET); - this.state = 2776; + this.state = 2778; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AS: @@ -10816,15 +10400,15 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SEQUENCE: case PostgreSQLParser.KW_START: { - this.state = 2773; + this.state = 2775; this.seqoptelem(); } break; case PostgreSQLParser.KW_GENERATED: { - this.state = 2774; + this.state = 2776; this.match(PostgreSQLParser.KW_GENERATED); - this.state = 2775; + this.state = 2777; this.generated_when(); } break; @@ -10855,72 +10439,72 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new PartitionboundspecContext(this.context, this.state); this.enterRule(localContext, 144, PostgreSQLParser.RULE_partitionboundspec); try { - this.state = 2806; + this.state = 2808; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2780; - this.match(PostgreSQLParser.KW_FOR); - this.state = 2781; - this.match(PostgreSQLParser.KW_VALUES); this.state = 2782; - this.match(PostgreSQLParser.KW_WITH); + this.match(PostgreSQLParser.KW_FOR); this.state = 2783; - this.match(PostgreSQLParser.OPEN_PAREN); + this.match(PostgreSQLParser.KW_VALUES); this.state = 2784; - this.hash_partbound(); + this.match(PostgreSQLParser.KW_WITH); this.state = 2785; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 2786; + this.hash_partbound(); + this.state = 2787; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2787; - this.match(PostgreSQLParser.KW_FOR); - this.state = 2788; - this.match(PostgreSQLParser.KW_VALUES); this.state = 2789; - this.match(PostgreSQLParser.KW_IN); + this.match(PostgreSQLParser.KW_FOR); this.state = 2790; - this.match(PostgreSQLParser.OPEN_PAREN); + this.match(PostgreSQLParser.KW_VALUES); this.state = 2791; - this.expr_list(); + this.match(PostgreSQLParser.KW_IN); this.state = 2792; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 2793; + this.expr_list(); + this.state = 2794; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2794; - this.match(PostgreSQLParser.KW_FOR); - this.state = 2795; - this.match(PostgreSQLParser.KW_VALUES); this.state = 2796; - this.match(PostgreSQLParser.KW_FROM); + this.match(PostgreSQLParser.KW_FOR); this.state = 2797; - this.match(PostgreSQLParser.OPEN_PAREN); + this.match(PostgreSQLParser.KW_VALUES); this.state = 2798; - this.expr_list(); + this.match(PostgreSQLParser.KW_FROM); this.state = 2799; - this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 2800; - this.match(PostgreSQLParser.KW_TO); - this.state = 2801; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2802; + this.state = 2800; this.expr_list(); + this.state = 2801; + this.match(PostgreSQLParser.CLOSE_PAREN); + this.state = 2802; + this.match(PostgreSQLParser.KW_TO); this.state = 2803; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 2804; + this.expr_list(); + this.state = 2805; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2805; + this.state = 2807; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -10946,9 +10530,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2808; + this.state = 2810; this.nonreservedword(); - this.state = 2809; + this.state = 2811; this.iconst(); } } @@ -10973,21 +10557,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2811; + this.state = 2813; this.hash_partbound_elem(); - this.state = 2816; + this.state = 2818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2812; + this.state = 2814; this.match(PostgreSQLParser.COMMA); - this.state = 2813; + this.state = 2815; this.hash_partbound_elem(); } } - this.state = 2818; + this.state = 2820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11013,13 +10597,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2819; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2820; - this.match(PostgreSQLParser.KW_TYPE); this.state = 2821; - this.any_name(); + this.match(PostgreSQLParser.KW_ALTER); this.state = 2822; + this.match(PostgreSQLParser.KW_TYPE); + this.state = 2823; + this.any_name(); + this.state = 2824; this.alter_type_cmds(); } } @@ -11044,21 +10628,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2824; + this.state = 2826; this.alter_type_cmd(); - this.state = 2829; + this.state = 2831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2825; + this.state = 2827; this.match(PostgreSQLParser.COMMA); - this.state = 2826; + this.state = 2828; this.alter_type_cmd(); } } - this.state = 2831; + this.state = 2833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11083,24 +10667,24 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 154, PostgreSQLParser.RULE_alter_type_cmd); let _la: number; try { - this.state = 2861; + this.state = 2863; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ADD: this.enterOuterAlt(localContext, 1); { - this.state = 2832; - this.match(PostgreSQLParser.KW_ADD); - this.state = 2833; - this.match(PostgreSQLParser.KW_ATTRIBUTE); this.state = 2834; - this.tablefuncelement(); + this.match(PostgreSQLParser.KW_ADD); + this.state = 2835; + this.match(PostgreSQLParser.KW_ATTRIBUTE); this.state = 2836; + this.tablefuncelement(); + this.state = 2838; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 2835; + this.state = 2837; this.opt_drop_behavior(); } break; @@ -11110,28 +10694,28 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 2838; + this.state = 2840; this.match(PostgreSQLParser.KW_DROP); - this.state = 2839; - this.match(PostgreSQLParser.KW_ATTRIBUTE); this.state = 2841; + this.match(PostgreSQLParser.KW_ATTRIBUTE); + this.state = 2843; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 123, this.context) ) { case 1: { - this.state = 2840; + this.state = 2842; this.opt_if_exists(); } break; } - this.state = 2843; - this.colid(); this.state = 2845; + this.colid(); + this.state = 2847; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: { - this.state = 2844; + this.state = 2846; this.opt_drop_behavior(); } break; @@ -11141,42 +10725,42 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ALTER: this.enterOuterAlt(localContext, 3); { - this.state = 2847; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2848; - this.match(PostgreSQLParser.KW_ATTRIBUTE); this.state = 2849; - this.colid(); + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2850; + this.match(PostgreSQLParser.KW_ATTRIBUTE); this.state = 2851; + this.colid(); + this.state = 2853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 2850; + this.state = 2852; this.opt_set_data(); } } - this.state = 2853; + this.state = 2855; this.match(PostgreSQLParser.KW_TYPE); - this.state = 2854; - this.typename(); this.state = 2856; + this.typename(); + this.state = 2858; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 2855; + this.state = 2857; this.opt_collate_clause(); } break; } - this.state = 2859; + this.state = 2861; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 2858; + this.state = 2860; this.opt_drop_behavior(); } break; @@ -11207,9 +10791,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2863; + this.state = 2865; this.match(PostgreSQLParser.KW_CLOSE); - this.state = 2866; + this.state = 2868; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -11613,13 +11197,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 2864; + this.state = 2866; this.cursor_name(); } break; case PostgreSQLParser.KW_ALL: { - this.state = 2865; + this.state = 2867; this.match(PostgreSQLParser.KW_ALL); } break; @@ -11647,78 +11231,78 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 158, PostgreSQLParser.RULE_copystmt); let _la: number; try { - this.state = 2905; + this.state = 2907; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2868; - this.match(PostgreSQLParser.KW_COPY); this.state = 2870; + this.match(PostgreSQLParser.KW_COPY); + this.state = 2872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 2869; + this.state = 2871; this.opt_binary(); } } - this.state = 2872; - this.table_name(); this.state = 2874; + this.table_name(); + this.state = 2876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2873; + this.state = 2875; this.opt_column_list(); } } - this.state = 2876; - this.copy_from(); this.state = 2878; + this.copy_from(); + this.state = 2880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 2877; + this.state = 2879; this.opt_program(); } } - this.state = 2880; - this.copy_file_name(); this.state = 2882; + this.copy_file_name(); + this.state = 2884; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 2881; + this.state = 2883; this.copy_delimiter(); } break; } - this.state = 2885; + this.state = 2887; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 2884; + this.state = 2886; this.opt_with(); } break; } - this.state = 2887; - this.copy_options(); this.state = 2889; + this.copy_options(); + this.state = 2891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2888; + this.state = 2890; this.where_clause(); } } @@ -11728,39 +11312,39 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2891; - this.match(PostgreSQLParser.KW_COPY); - this.state = 2892; - this.match(PostgreSQLParser.OPEN_PAREN); this.state = 2893; - this.preparablestmt(); + this.match(PostgreSQLParser.KW_COPY); this.state = 2894; - this.match(PostgreSQLParser.CLOSE_PAREN); + this.match(PostgreSQLParser.OPEN_PAREN); this.state = 2895; - this.match(PostgreSQLParser.KW_TO); + this.preparablestmt(); + this.state = 2896; + this.match(PostgreSQLParser.CLOSE_PAREN); this.state = 2897; + this.match(PostgreSQLParser.KW_TO); + this.state = 2899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 2896; + this.state = 2898; this.opt_program(); } } - this.state = 2899; - this.copy_file_name(); this.state = 2901; + this.copy_file_name(); + this.state = 2903; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 2900; + this.state = 2902; this.opt_with(); } break; } - this.state = 2903; + this.state = 2905; this.copy_options(); } break; @@ -11787,7 +11371,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2907; + this.state = 2909; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -11818,7 +11402,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2909; + this.state = 2911; this.match(PostgreSQLParser.KW_PROGRAM); } } @@ -11840,7 +11424,7 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Copy_file_nameContext(this.context, this.state); this.enterRule(localContext, 164, PostgreSQLParser.RULE_copy_file_name); try { - this.state = 2914; + this.state = 2916; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -11849,21 +11433,21 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 2911; + this.state = 2913; this.sconst(); } break; case PostgreSQLParser.KW_STDIN: this.enterOuterAlt(localContext, 2); { - this.state = 2912; + this.state = 2914; this.match(PostgreSQLParser.KW_STDIN); } break; case PostgreSQLParser.KW_STDOUT: this.enterOuterAlt(localContext, 3); { - this.state = 2913; + this.state = 2915; this.match(PostgreSQLParser.KW_STDOUT); } break; @@ -11889,24 +11473,24 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Copy_optionsContext(this.context, this.state); this.enterRule(localContext, 166, PostgreSQLParser.RULE_copy_options); try { - this.state = 2921; + this.state = 2923; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2916; + this.state = 2918; this.copy_opt_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2917; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2918; - this.copy_generic_opt_list(); this.state = 2919; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 2920; + this.copy_generic_opt_list(); + this.state = 2921; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -11933,19 +11517,19 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2926; + this.state = 2928; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2923; + this.state = 2925; this.copy_opt_item(); } } } - this.state = 2928; + this.state = 2930; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); } @@ -11970,165 +11554,165 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 170, PostgreSQLParser.RULE_copy_opt_item); let _la: number; try { - this.state = 2968; + this.state = 2970; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2929; + this.state = 2931; this.match(PostgreSQLParser.KW_BINARY); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2930; + this.state = 2932; this.match(PostgreSQLParser.KW_FREEZE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2931; - this.match(PostgreSQLParser.KW_DELIMITER); this.state = 2933; + this.match(PostgreSQLParser.KW_DELIMITER); + this.state = 2935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2932; + this.state = 2934; this.opt_as(); } } - this.state = 2935; + this.state = 2937; this.sconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2936; - this.match(PostgreSQLParser.KW_NULL); this.state = 2938; + this.match(PostgreSQLParser.KW_NULL); + this.state = 2940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2937; + this.state = 2939; this.opt_as(); } } - this.state = 2940; + this.state = 2942; this.sconst(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2941; + this.state = 2943; this.match(PostgreSQLParser.KW_CSV); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2942; + this.state = 2944; this.match(PostgreSQLParser.KW_HEADER); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2943; - this.match(PostgreSQLParser.KW_QUOTE); this.state = 2945; + this.match(PostgreSQLParser.KW_QUOTE); + this.state = 2947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2944; + this.state = 2946; this.opt_as(); } } - this.state = 2947; + this.state = 2949; this.sconst(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2948; - this.match(PostgreSQLParser.KW_ESCAPE); this.state = 2950; + this.match(PostgreSQLParser.KW_ESCAPE); + this.state = 2952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2949; + this.state = 2951; this.opt_as(); } } - this.state = 2952; + this.state = 2954; this.sconst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2953; - this.match(PostgreSQLParser.KW_FORCE); - this.state = 2954; - this.match(PostgreSQLParser.KW_QUOTE); this.state = 2955; - this.columnlist(); + this.match(PostgreSQLParser.KW_FORCE); + this.state = 2956; + this.match(PostgreSQLParser.KW_QUOTE); + this.state = 2957; + this.column_list(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2956; - this.match(PostgreSQLParser.KW_FORCE); - this.state = 2957; - this.match(PostgreSQLParser.KW_QUOTE); this.state = 2958; + this.match(PostgreSQLParser.KW_FORCE); + this.state = 2959; + this.match(PostgreSQLParser.KW_QUOTE); + this.state = 2960; this.match(PostgreSQLParser.STAR); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2959; - this.match(PostgreSQLParser.KW_FORCE); - this.state = 2960; - this.match(PostgreSQLParser.KW_NOT); this.state = 2961; - this.match(PostgreSQLParser.KW_NULL); + this.match(PostgreSQLParser.KW_FORCE); this.state = 2962; - this.columnlist(); + this.match(PostgreSQLParser.KW_NOT); + this.state = 2963; + this.match(PostgreSQLParser.KW_NULL); + this.state = 2964; + this.column_list(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2963; - this.match(PostgreSQLParser.KW_FORCE); - this.state = 2964; - this.match(PostgreSQLParser.KW_NULL); this.state = 2965; - this.columnlist(); + this.match(PostgreSQLParser.KW_FORCE); + this.state = 2966; + this.match(PostgreSQLParser.KW_NULL); + this.state = 2967; + this.column_list(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2966; + this.state = 2968; this.match(PostgreSQLParser.KW_ENCODING); - this.state = 2967; + this.state = 2969; this.sconst(); } break; @@ -12154,7 +11738,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2970; + this.state = 2972; this.match(PostgreSQLParser.KW_BINARY); } } @@ -12179,19 +11763,19 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2973; + this.state = 2975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2972; + this.state = 2974; this.opt_using(); } } - this.state = 2975; + this.state = 2977; this.match(PostgreSQLParser.KW_DELIMITERS); - this.state = 2976; + this.state = 2978; this.sconst(); } } @@ -12215,7 +11799,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2978; + this.state = 2980; this.match(PostgreSQLParser.KW_USING); } } @@ -12240,21 +11824,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2980; + this.state = 2982; this.copy_generic_opt_elem(); - this.state = 2985; + this.state = 2987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2981; + this.state = 2983; this.match(PostgreSQLParser.COMMA); - this.state = 2982; + this.state = 2984; this.copy_generic_opt_elem(); } } - this.state = 2987; + this.state = 2989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12281,14 +11865,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2988; - this.collabel(); this.state = 2990; + this.collabel(); + this.state = 2992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 12804) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 420484101) !== 0) || ((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 4227928065) !== 0) || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 4294967295) !== 0) || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 4294967295) !== 0) || ((((_la - 176)) & ~0x1F) === 0 && ((1 << (_la - 176)) & 4294967295) !== 0) || ((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 3223322623) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 4294967295) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 4294967295) !== 0) || ((((_la - 304)) & ~0x1F) === 0 && ((1 << (_la - 304)) & 4294967295) !== 0) || ((((_la - 336)) & ~0x1F) === 0 && ((1 << (_la - 336)) & 4294967295) !== 0) || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 4294967295) !== 0) || ((((_la - 400)) & ~0x1F) === 0 && ((1 << (_la - 400)) & 4294967295) !== 0) || ((((_la - 432)) & ~0x1F) === 0 && ((1 << (_la - 432)) & 4290772991) !== 0) || ((((_la - 464)) & ~0x1F) === 0 && ((1 << (_la - 464)) & 4294967295) !== 0) || ((((_la - 496)) & ~0x1F) === 0 && ((1 << (_la - 496)) & 25165183) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 486582415) !== 0) || _la === 584) { { - this.state = 2989; + this.state = 2991; this.copy_generic_opt_arg(); } } @@ -12313,7 +11897,7 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Copy_generic_opt_argContext(this.context, this.state); this.enterRule(localContext, 182, PostgreSQLParser.RULE_copy_generic_opt_arg); try { - this.state = 2999; + this.state = 3001; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -12742,7 +12326,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 2992; + this.state = 2994; this.opt_boolean_or_string(); } break; @@ -12752,25 +12336,25 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 2993; + this.state = 2995; this.numericonly(); } break; case PostgreSQLParser.STAR: this.enterOuterAlt(localContext, 3); { - this.state = 2994; + this.state = 2996; this.match(PostgreSQLParser.STAR); } break; case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 4); { - this.state = 2995; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2996; - this.copy_generic_opt_arg_list(); this.state = 2997; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 2998; + this.copy_generic_opt_arg_list(); + this.state = 2999; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -12799,21 +12383,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3001; + this.state = 3003; this.copy_generic_opt_arg_list_item(); - this.state = 3006; + this.state = 3008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3002; + this.state = 3004; this.match(PostgreSQLParser.COMMA); - this.state = 3003; + this.state = 3005; this.copy_generic_opt_arg_list_item(); } } - this.state = 3008; + this.state = 3010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12839,7 +12423,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3009; + this.state = 3011; this.opt_boolean_or_string_column(); } } @@ -12862,109 +12446,110 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 188, PostgreSQLParser.RULE_createstmt); let _la: number; try { + localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3011; - this.match(PostgreSQLParser.KW_CREATE); this.state = 3013; + this.match(PostgreSQLParser.KW_CREATE); + this.state = 3015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 3012; + this.state = 3014; this.opttemp(); } } - this.state = 3015; - this.match(PostgreSQLParser.KW_TABLE); this.state = 3017; + this.match(PostgreSQLParser.KW_TABLE); + this.state = 3019; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 3016; + this.state = 3018; this.opt_if_not_exists(); } break; } - this.state = 3019; + this.state = 3021; this.table_name_create(); - this.state = 3085; + this.state = 3087; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: { - this.state = 3020; - this.match(PostgreSQLParser.OPEN_PAREN); this.state = 3022; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 3024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 1360008709) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491969) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 24575) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 3021; + this.state = 3023; this.table_column_list(); } } - this.state = 3024; - this.match(PostgreSQLParser.CLOSE_PAREN); this.state = 3026; + this.match(PostgreSQLParser.CLOSE_PAREN); + this.state = 3028; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 3025; + this.state = 3027; this.optinherit(); } break; } - this.state = 3029; + this.state = 3031; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: { - this.state = 3028; + this.state = 3030; this.optpartitionspec(); } break; } - this.state = 3032; + this.state = 3034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3031; + this.state = 3033; this.table_access_method_clause(); } } - this.state = 3035; + this.state = 3037; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 3034; + this.state = 3036; this.optwith(); } break; } - this.state = 3038; + this.state = 3040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3037; + this.state = 3039; this.oncommitoption(); } } - this.state = 3041; + this.state = 3043; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 3040; + this.state = 3042; this.opttablespace(); } break; @@ -12973,66 +12558,66 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_OF: { - this.state = 3043; + this.state = 3045; this.match(PostgreSQLParser.KW_OF); - this.state = 3044; - this.any_name(); this.state = 3046; + this.any_name(); + this.state = 3048; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: { - this.state = 3045; + this.state = 3047; this.opttypedtableelementlist(); } break; } - this.state = 3049; + this.state = 3051; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 3048; + this.state = 3050; this.optpartitionspec(); } break; } - this.state = 3052; + this.state = 3054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3051; + this.state = 3053; this.table_access_method_clause(); } } - this.state = 3055; + this.state = 3057; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 3054; + this.state = 3056; this.optwith(); } break; } - this.state = 3058; + this.state = 3060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3057; + this.state = 3059; this.oncommitoption(); } } - this.state = 3061; + this.state = 3063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 3060; + this.state = 3062; this.opttablespace(); } break; @@ -13041,70 +12626,70 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_PARTITION: { - this.state = 3063; - this.match(PostgreSQLParser.KW_PARTITION); - this.state = 3064; - this.match(PostgreSQLParser.KW_OF); this.state = 3065; - this.qualified_name(); + this.match(PostgreSQLParser.KW_PARTITION); + this.state = 3066; + this.match(PostgreSQLParser.KW_OF); this.state = 3067; + this.qualified_name(); + this.state = 3069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3066; + this.state = 3068; this.opttypedtableelementlist(); } } - this.state = 3069; - this.partitionboundspec(); this.state = 3071; + this.partitionboundspec(); + this.state = 3073; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 3070; + this.state = 3072; this.optpartitionspec(); } break; } - this.state = 3074; + this.state = 3076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3073; + this.state = 3075; this.table_access_method_clause(); } } - this.state = 3077; + this.state = 3079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 3076; + this.state = 3078; this.optwith(); } break; } - this.state = 3080; + this.state = 3082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3079; + this.state = 3081; this.oncommitoption(); } } - this.state = 3083; + this.state = 3085; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: { - this.state = 3082; + this.state = 3084; this.opttablespace(); } break; @@ -13135,29 +12720,29 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 190, PostgreSQLParser.RULE_opttemp); let _la: number; try { - this.state = 3094; + this.state = 3096; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_TEMPORARY: this.enterOuterAlt(localContext, 1); { - this.state = 3087; + this.state = 3089; this.match(PostgreSQLParser.KW_TEMPORARY); } break; case PostgreSQLParser.KW_TEMP: this.enterOuterAlt(localContext, 2); { - this.state = 3088; + this.state = 3090; this.match(PostgreSQLParser.KW_TEMP); } break; case PostgreSQLParser.KW_LOCAL: this.enterOuterAlt(localContext, 3); { - this.state = 3089; + this.state = 3091; this.match(PostgreSQLParser.KW_LOCAL); - this.state = 3090; + this.state = 3092; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -13171,9 +12756,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_GLOBAL: this.enterOuterAlt(localContext, 4); { - this.state = 3091; + this.state = 3093; this.match(PostgreSQLParser.KW_GLOBAL); - this.state = 3092; + this.state = 3094; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -13187,7 +12772,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_UNLOGGED: this.enterOuterAlt(localContext, 5); { - this.state = 3093; + this.state = 3095; this.match(PostgreSQLParser.KW_UNLOGGED); } break; @@ -13215,7 +12800,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3096; + this.state = 3098; this.tableelementlist(); } } @@ -13239,7 +12824,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3098; + this.state = 3100; this.tableelementlist(); } } @@ -13263,11 +12848,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3100; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3101; - this.typedtableelementlist(); this.state = 3102; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 3103; + this.typedtableelementlist(); + this.state = 3104; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -13292,21 +12877,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3104; + this.state = 3106; this.tableelement(); - this.state = 3109; + this.state = 3111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3105; + this.state = 3107; this.match(PostgreSQLParser.COMMA); - this.state = 3106; + this.state = 3108; this.tableelement(); } } - this.state = 3111; + this.state = 3113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13333,21 +12918,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3112; + this.state = 3114; this.typedtableelement(); - this.state = 3117; + this.state = 3119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3113; + this.state = 3115; this.match(PostgreSQLParser.COMMA); - this.state = 3114; + this.state = 3116; this.typedtableelement(); } } - this.state = 3119; + this.state = 3121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13371,27 +12956,27 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new TableelementContext(this.context, this.state); this.enterRule(localContext, 202, PostgreSQLParser.RULE_tableelement); try { - this.state = 3123; + this.state = 3125; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3120; - this.columnDef(); + this.state = 3122; + this.column_def(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3121; + this.state = 3123; this.tablelikeclause(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3122; + this.state = 3124; this.tableconstraint(); } break; @@ -13415,20 +13000,20 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new TypedtableelementContext(this.context, this.state); this.enterRule(localContext, 204, PostgreSQLParser.RULE_typedtableelement); try { - this.state = 3127; + this.state = 3129; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3125; + this.state = 3127; this.columnOptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3126; + this.state = 3128; this.tableconstraint(); } break; @@ -13448,72 +13033,72 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public columnDefCluase(): ColumnDefCluaseContext { - let localContext = new ColumnDefCluaseContext(this.context, this.state); - this.enterRule(localContext, 206, PostgreSQLParser.RULE_columnDefCluase); + public column_def(): Column_defContext { + let localContext = new Column_defContext(this.context, this.state); + this.enterRule(localContext, 206, PostgreSQLParser.RULE_column_def); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3129; - this.column_name(); - this.state = 3130; - this.typename(); + this.state = 3131; + this.column_name_create(); this.state = 3132; + this.typename(); + this.state = 3134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { case 1: { - this.state = 3131; + this.state = 3133; this.create_generic_options(); } break; } - this.state = 3135; + this.state = 3137; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { case 1: { - this.state = 3134; + this.state = 3136; this.storageCluase(); } break; } - this.state = 3138; + this.state = 3140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 543) { { - this.state = 3137; + this.state = 3139; this.compressionCluase(); } } - this.state = 3142; + this.state = 3144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 3140; + this.state = 3142; this.match(PostgreSQLParser.KW_COLLATE); - this.state = 3141; + this.state = 3143; this.any_name(); } break; } - this.state = 3146; + this.state = 3148; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 3144; + this.state = 3146; this.match(PostgreSQLParser.KW_WITH); - this.state = 3145; + this.state = 3147; this.match(PostgreSQLParser.KW_OPTIONS); } break; } - this.state = 3148; + this.state = 3150; this.colquallist(); } } @@ -13531,59 +13116,105 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public columnDef(): ColumnDefContext { - let localContext = new ColumnDefContext(this.context, this.state); - this.enterRule(localContext, 208, PostgreSQLParser.RULE_columnDef); + public compressionCluase(): CompressionCluaseContext { + let localContext = new CompressionCluaseContext(this.context, this.state); + this.enterRule(localContext, 208, PostgreSQLParser.RULE_compressionCluase); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3152; + this.match(PostgreSQLParser.KW_COMPRESSION); + this.state = 3153; + this.colid(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public storageCluase(): StorageCluaseContext { + let localContext = new StorageCluaseContext(this.context, this.state); + this.enterRule(localContext, 210, PostgreSQLParser.RULE_storageCluase); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3155; + this.match(PostgreSQLParser.KW_STORAGE); + this.state = 3162; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { + case 1: + { + this.state = 3156; + this.match(PostgreSQLParser.KW_PLAIN); + } + break; + case 2: + { + this.state = 3157; + this.match(PostgreSQLParser.KW_EXTERNAL); + } + break; + case 3: + { + this.state = 3158; + this.match(PostgreSQLParser.KW_EXTENDED); + } + break; + case 4: + { + this.state = 3159; + this.match(PostgreSQLParser.KW_MAIN); + } + break; + case 5: + { + this.state = 3160; + this.match(PostgreSQLParser.KW_DEFAULT); + } + break; + case 6: + { + this.state = 3161; + this.colid(); + } + break; + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public columnOptions(): ColumnOptionsContext { + let localContext = new ColumnOptionsContext(this.context, this.state); + this.enterRule(localContext, 212, PostgreSQLParser.RULE_columnOptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3150; - this.column_name(); - this.state = 3151; - this.typename(); - this.state = 3153; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 280) { - { - this.state = 3152; - this.create_generic_options(); - } - } - - this.state = 3156; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 345) { - { - this.state = 3155; - this.storageCluase(); - } - } - - this.state = 3159; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 543) { - { - this.state = 3158; - this.compressionCluase(); - } - } - - this.state = 3163; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { - case 1: - { - this.state = 3161; - this.match(PostgreSQLParser.KW_COLLATE); - this.state = 3162; - this.any_name(); - } - break; - } + this.state = 3164; + this.column_name_create(); this.state = 3167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -13614,157 +13245,28 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public compressionCluase(): CompressionCluaseContext { - let localContext = new CompressionCluaseContext(this.context, this.state); - this.enterRule(localContext, 210, PostgreSQLParser.RULE_compressionCluase); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3171; - this.match(PostgreSQLParser.KW_COMPRESSION); - this.state = 3172; - this.colid(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public storageCluase(): StorageCluaseContext { - let localContext = new StorageCluaseContext(this.context, this.state); - this.enterRule(localContext, 212, PostgreSQLParser.RULE_storageCluase); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3174; - this.match(PostgreSQLParser.KW_STORAGE); - this.state = 3181; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { - case 1: - { - this.state = 3175; - this.match(PostgreSQLParser.KW_PLAIN); - } - break; - case 2: - { - this.state = 3176; - this.match(PostgreSQLParser.KW_EXTERNAL); - } - break; - case 3: - { - this.state = 3177; - this.match(PostgreSQLParser.KW_EXTENDED); - } - break; - case 4: - { - this.state = 3178; - this.match(PostgreSQLParser.KW_MAIN); - } - break; - case 5: - { - this.state = 3179; - this.match(PostgreSQLParser.KW_DEFAULT); - } - break; - case 6: - { - this.state = 3180; - this.colid(); - } - break; - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public columnOptions(): ColumnOptionsContext { - let localContext = new ColumnOptionsContext(this.context, this.state); - this.enterRule(localContext, 214, PostgreSQLParser.RULE_columnOptions); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3183; - this.column_name(); - this.state = 3186; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 105) { - { - this.state = 3184; - this.match(PostgreSQLParser.KW_WITH); - this.state = 3185; - this.match(PostgreSQLParser.KW_OPTIONS); - } - } - - this.state = 3188; - this.colquallist(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public colquallist(): ColquallistContext { let localContext = new ColquallistContext(this.context, this.state); - this.enterRule(localContext, 216, PostgreSQLParser.RULE_colquallist); + this.enterRule(localContext, 214, PostgreSQLParser.RULE_colquallist); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3193; + this.state = 3174; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 191, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 186, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3190; + this.state = 3171; this.colconstraint(); } } } - this.state = 3195; + this.state = 3176; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 191, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 186, this.context); } } } @@ -13784,45 +13286,45 @@ export class PostgreSQLParser extends antlr.Parser { } public colconstraint(): ColconstraintContext { let localContext = new ColconstraintContext(this.context, this.state); - this.enterRule(localContext, 218, PostgreSQLParser.RULE_colconstraint); + this.enterRule(localContext, 216, PostgreSQLParser.RULE_colconstraint); let _la: number; try { - this.state = 3214; + this.state = 3195; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3198; + this.state = 3179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 3196; + this.state = 3177; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 3197; + this.state = 3178; this.name(); } } - this.state = 3200; + this.state = 3181; this.colconstraintelem(); - this.state = 3202; + this.state = 3183; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 3201; + this.state = 3182; this.deferrable_trigger(); } break; } - this.state = 3205; + this.state = 3186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69) { { - this.state = 3204; + this.state = 3185; this.initially_trigger(); } } @@ -13832,24 +13334,24 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3207; + this.state = 3188; this.colconstraintelem(); - this.state = 3209; + this.state = 3190; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 3208; + this.state = 3189; this.deferrable_trigger(); } break; } - this.state = 3212; + this.state = 3193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69) { { - this.state = 3211; + this.state = 3192; this.initially_trigger(); } } @@ -13874,49 +13376,49 @@ export class PostgreSQLParser extends antlr.Parser { } public colconstraintelem(): ColconstraintelemContext { let localContext = new ColconstraintelemContext(this.context, this.state); - this.enterRule(localContext, 220, PostgreSQLParser.RULE_colconstraintelem); + this.enterRule(localContext, 218, PostgreSQLParser.RULE_colconstraintelem); let _la: number; try { - this.state = 3274; + this.state = 3255; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 204, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3216; + this.state = 3197; this.match(PostgreSQLParser.KW_NOT); - this.state = 3217; + this.state = 3198; this.match(PostgreSQLParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3218; + this.state = 3199; this.match(PostgreSQLParser.KW_NULL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3219; + this.state = 3200; this.match(PostgreSQLParser.KW_UNIQUE); - this.state = 3221; + this.state = 3202; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: { - this.state = 3220; + this.state = 3201; this.opt_definition(); } break; } - this.state = 3224; + this.state = 3205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3223; + this.state = 3204; this.optconstablespace(); } } @@ -13926,45 +13428,45 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3226; + this.state = 3207; this.match(PostgreSQLParser.KW_UNIQUE); - this.state = 3228; + this.state = 3209; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 3227; + this.state = 3208; this.nulls_distinct(); } break; } - this.state = 3230; + this.state = 3211; this.index_paramenters_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3231; + this.state = 3212; this.match(PostgreSQLParser.KW_PRIMARY); - this.state = 3232; + this.state = 3213; this.match(PostgreSQLParser.KW_KEY); - this.state = 3234; + this.state = 3215; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { case 1: { - this.state = 3233; + this.state = 3214; this.opt_definition(); } break; } - this.state = 3237; + this.state = 3218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3236; + this.state = 3217; this.optconstablespace(); } } @@ -13974,20 +13476,20 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3239; + this.state = 3220; this.match(PostgreSQLParser.KW_CHECK); - this.state = 3240; + this.state = 3221; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3241; + this.state = 3222; this.a_expr(); - this.state = 3242; + this.state = 3223; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3244; + this.state = 3225; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 3243; + this.state = 3224; this.opt_no_inherit(); } break; @@ -13997,34 +13499,34 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3246; + this.state = 3227; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 3247; + this.state = 3228; this.b_expr(0); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3248; + this.state = 3229; this.match(PostgreSQLParser.KW_GENERATED); - this.state = 3249; + this.state = 3230; this.generated_when(); - this.state = 3250; + this.state = 3231; this.match(PostgreSQLParser.KW_AS); - this.state = 3260; + this.state = 3241; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_IDENTITY: { - this.state = 3251; + this.state = 3232; this.match(PostgreSQLParser.KW_IDENTITY); - this.state = 3253; + this.state = 3234; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 204, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { - this.state = 3252; + this.state = 3233; this.optparenthesizedseqoptlist(); } break; @@ -14033,13 +13535,13 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 3255; + this.state = 3236; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3256; + this.state = 3237; this.a_expr(); - this.state = 3257; + this.state = 3238; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3258; + this.state = 3239; this.match(PostgreSQLParser.KW_STORED); } break; @@ -14051,36 +13553,36 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3262; + this.state = 3243; this.match(PostgreSQLParser.KW_REFERENCES); - this.state = 3263; + this.state = 3244; this.qualified_name(); - this.state = 3265; + this.state = 3246; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 3264; + this.state = 3245; this.opt_column_list(); } break; } - this.state = 3268; + this.state = 3249; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 3267; + this.state = 3248; this.key_match(); } break; } - this.state = 3271; + this.state = 3252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3270; + this.state = 3251; this.key_actions(); } } @@ -14090,7 +13592,7 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3273; + this.state = 3254; this.opt_collate(); } break; @@ -14112,24 +13614,24 @@ export class PostgreSQLParser extends antlr.Parser { } public nulls_distinct(): Nulls_distinctContext { let localContext = new Nulls_distinctContext(this.context, this.state); - this.enterRule(localContext, 222, PostgreSQLParser.RULE_nulls_distinct); + this.enterRule(localContext, 220, PostgreSQLParser.RULE_nulls_distinct); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3276; + this.state = 3257; this.match(PostgreSQLParser.KW_NULLS); - this.state = 3278; + this.state = 3259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 3277; + this.state = 3258; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 3280; + this.state = 3261; this.match(PostgreSQLParser.KW_DISTINCT); } } @@ -14149,24 +13651,24 @@ export class PostgreSQLParser extends antlr.Parser { } public generated_when(): Generated_whenContext { let localContext = new Generated_whenContext(this.context, this.state); - this.enterRule(localContext, 224, PostgreSQLParser.RULE_generated_when); + this.enterRule(localContext, 222, PostgreSQLParser.RULE_generated_when); try { - this.state = 3285; + this.state = 3266; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALWAYS: this.enterOuterAlt(localContext, 1); { - this.state = 3282; + this.state = 3263; this.match(PostgreSQLParser.KW_ALWAYS); } break; case PostgreSQLParser.KW_BY: this.enterOuterAlt(localContext, 2); { - this.state = 3283; + this.state = 3264; this.match(PostgreSQLParser.KW_BY); - this.state = 3284; + this.state = 3265; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -14190,24 +13692,24 @@ export class PostgreSQLParser extends antlr.Parser { } public deferrable_trigger(): Deferrable_triggerContext { let localContext = new Deferrable_triggerContext(this.context, this.state); - this.enterRule(localContext, 226, PostgreSQLParser.RULE_deferrable_trigger); + this.enterRule(localContext, 224, PostgreSQLParser.RULE_deferrable_trigger); try { - this.state = 3290; + this.state = 3271; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DEFERRABLE: this.enterOuterAlt(localContext, 1); { - this.state = 3287; + this.state = 3268; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; case PostgreSQLParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 3288; + this.state = 3269; this.match(PostgreSQLParser.KW_NOT); - this.state = 3289; + this.state = 3270; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; @@ -14231,14 +13733,14 @@ export class PostgreSQLParser extends antlr.Parser { } public initially_trigger(): Initially_triggerContext { let localContext = new Initially_triggerContext(this.context, this.state); - this.enterRule(localContext, 228, PostgreSQLParser.RULE_initially_trigger); + this.enterRule(localContext, 226, PostgreSQLParser.RULE_initially_trigger); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3292; + this.state = 3273; this.match(PostgreSQLParser.KW_INITIALLY); - this.state = 3293; + this.state = 3274; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -14265,15 +13767,15 @@ export class PostgreSQLParser extends antlr.Parser { } public tablelikeclause(): TablelikeclauseContext { let localContext = new TablelikeclauseContext(this.context, this.state); - this.enterRule(localContext, 230, PostgreSQLParser.RULE_tablelikeclause); + this.enterRule(localContext, 228, PostgreSQLParser.RULE_tablelikeclause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3295; + this.state = 3276; this.match(PostgreSQLParser.KW_LIKE); - this.state = 3296; + this.state = 3277; this.qualified_name(); - this.state = 3297; + this.state = 3278; this.tablelikeoptionlist(); } } @@ -14293,18 +13795,18 @@ export class PostgreSQLParser extends antlr.Parser { } public tablelikeoptionlist(): TablelikeoptionlistContext { let localContext = new TablelikeoptionlistContext(this.context, this.state); - this.enterRule(localContext, 232, PostgreSQLParser.RULE_tablelikeoptionlist); + this.enterRule(localContext, 230, PostgreSQLParser.RULE_tablelikeoptionlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3303; + this.state = 3284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 200 || _la === 224) { { { - this.state = 3299; + this.state = 3280; _la = this.tokenStream.LA(1); if(!(_la === 200 || _la === 224)) { this.errorHandler.recoverInline(this); @@ -14313,11 +13815,11 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3300; + this.state = 3281; this.tablelikeoption(); } } - this.state = 3305; + this.state = 3286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14339,12 +13841,12 @@ export class PostgreSQLParser extends antlr.Parser { } public tablelikeoption(): TablelikeoptionContext { let localContext = new TablelikeoptionContext(this.context, this.state); - this.enterRule(localContext, 234, PostgreSQLParser.RULE_tablelikeoption); + this.enterRule(localContext, 232, PostgreSQLParser.RULE_tablelikeoption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3306; + this.state = 3287; _la = this.tokenStream.LA(1); if(!(_la === 30 || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 524321) !== 0) || _la === 219 || _la === 227 || _la === 342 || _la === 345 || _la === 438)) { this.errorHandler.recoverInline(this); @@ -14371,19 +13873,19 @@ export class PostgreSQLParser extends antlr.Parser { } public tableconstraint(): TableconstraintContext { let localContext = new TableconstraintContext(this.context, this.state); - this.enterRule(localContext, 236, PostgreSQLParser.RULE_tableconstraint); + this.enterRule(localContext, 234, PostgreSQLParser.RULE_tableconstraint); try { - this.state = 3313; + this.state = 3294; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CONSTRAINT: this.enterOuterAlt(localContext, 1); { - this.state = 3308; + this.state = 3289; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 3309; + this.state = 3290; this.name(); - this.state = 3310; + this.state = 3291; this.constraintelem(); } break; @@ -14394,7 +13896,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_EXCLUDE: this.enterOuterAlt(localContext, 2); { - this.state = 3312; + this.state = 3293; this.constraintelem(); } break; @@ -14418,82 +13920,82 @@ export class PostgreSQLParser extends antlr.Parser { } public constraintelem(): ConstraintelemContext { let localContext = new ConstraintelemContext(this.context, this.state); - this.enterRule(localContext, 238, PostgreSQLParser.RULE_constraintelem); + this.enterRule(localContext, 236, PostgreSQLParser.RULE_constraintelem); let _la: number; try { - this.state = 3401; + this.state = 3382; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CHECK: this.enterOuterAlt(localContext, 1); { - this.state = 3315; + this.state = 3296; this.match(PostgreSQLParser.KW_CHECK); - this.state = 3316; + this.state = 3297; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3317; + this.state = 3298; this.a_expr(); - this.state = 3318; + this.state = 3299; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3319; + this.state = 3300; this.constraintattributespec(); } break; case PostgreSQLParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 3321; + this.state = 3302; this.match(PostgreSQLParser.KW_UNIQUE); - this.state = 3339; + this.state = 3320; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: { - this.state = 3322; + this.state = 3303; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3323; - this.columnlist(); - this.state = 3324; + this.state = 3304; + this.column_list(); + this.state = 3305; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3326; + this.state = 3307; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { case 1: { - this.state = 3325; + this.state = 3306; this.opt_c_include(); } break; } - this.state = 3329; + this.state = 3310; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 3328; + this.state = 3309; this.opt_definition(); } break; } - this.state = 3332; + this.state = 3313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3331; + this.state = 3312; this.optconstablespace(); } } - this.state = 3334; + this.state = 3315; this.constraintattributespec(); } break; case PostgreSQLParser.KW_USING: { - this.state = 3336; + this.state = 3317; this.existingindex(); - this.state = 3337; + this.state = 3318; this.constraintattributespec(); } break; @@ -14505,60 +14007,60 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_PRIMARY: this.enterOuterAlt(localContext, 3); { - this.state = 3341; + this.state = 3322; this.match(PostgreSQLParser.KW_PRIMARY); - this.state = 3342; + this.state = 3323; this.match(PostgreSQLParser.KW_KEY); - this.state = 3360; + this.state = 3341; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: { - this.state = 3343; + this.state = 3324; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3344; - this.columnlist(); - this.state = 3345; + this.state = 3325; + this.column_list(); + this.state = 3326; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3347; + this.state = 3328; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { - this.state = 3346; + this.state = 3327; this.opt_c_include(); } break; } - this.state = 3350; + this.state = 3331; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 3349; + this.state = 3330; this.opt_definition(); } break; } - this.state = 3353; + this.state = 3334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3352; + this.state = 3333; this.optconstablespace(); } } - this.state = 3355; + this.state = 3336; this.constraintattributespec(); } break; case PostgreSQLParser.KW_USING: { - this.state = 3357; + this.state = 3338; this.existingindex(); - this.state = 3358; + this.state = 3339; this.constraintattributespec(); } break; @@ -14570,116 +14072,116 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_EXCLUDE: this.enterOuterAlt(localContext, 4); { - this.state = 3362; + this.state = 3343; this.match(PostgreSQLParser.KW_EXCLUDE); - this.state = 3364; + this.state = 3345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3363; + this.state = 3344; this.access_method_clause(); } } - this.state = 3366; + this.state = 3347; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3367; + this.state = 3348; this.exclusionconstraintlist(); - this.state = 3368; + this.state = 3349; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3370; + this.state = 3351; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 3369; + this.state = 3350; this.opt_c_include(); } break; } - this.state = 3373; + this.state = 3354; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 3372; + this.state = 3353; this.opt_definition(); } break; } - this.state = 3376; + this.state = 3357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3375; + this.state = 3356; this.optconstablespace(); } } - this.state = 3379; + this.state = 3360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 3378; + this.state = 3359; this.exclusionwhereclause(); } } - this.state = 3381; + this.state = 3362; this.constraintattributespec(); } break; case PostgreSQLParser.KW_FOREIGN: this.enterOuterAlt(localContext, 5); { - this.state = 3383; + this.state = 3364; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 3384; + this.state = 3365; this.match(PostgreSQLParser.KW_KEY); - this.state = 3385; + this.state = 3366; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3386; - this.columnlist(); - this.state = 3387; + this.state = 3367; + this.column_list(); + this.state = 3368; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3388; + this.state = 3369; this.match(PostgreSQLParser.KW_REFERENCES); - this.state = 3389; + this.state = 3370; this.qualified_name(); - this.state = 3391; + this.state = 3372; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 3390; + this.state = 3371; this.opt_column_list(); } break; } - this.state = 3394; + this.state = 3375; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 3393; + this.state = 3374; this.key_match(); } break; } - this.state = 3397; + this.state = 3378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3396; + this.state = 3377; this.key_actions(); } } - this.state = 3399; + this.state = 3380; this.constraintattributespec(); } break; @@ -14703,13 +14205,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_no_inherit(): Opt_no_inheritContext { let localContext = new Opt_no_inheritContext(this.context, this.state); - this.enterRule(localContext, 240, PostgreSQLParser.RULE_opt_no_inherit); + this.enterRule(localContext, 238, PostgreSQLParser.RULE_opt_no_inherit); try { this.enterOuterAlt(localContext, 1); { - this.state = 3403; + this.state = 3384; this.match(PostgreSQLParser.KW_NO); - this.state = 3404; + this.state = 3385; this.match(PostgreSQLParser.KW_INHERIT); } } @@ -14729,15 +14231,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_column_list(): Opt_column_listContext { let localContext = new Opt_column_listContext(this.context, this.state); - this.enterRule(localContext, 242, PostgreSQLParser.RULE_opt_column_list); + this.enterRule(localContext, 240, PostgreSQLParser.RULE_opt_column_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 3406; + this.state = 3387; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3407; - this.columnlist(); - this.state = 3408; + this.state = 3388; + this.column_list(); + this.state = 3389; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -14755,32 +14257,101 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public columnlist(): ColumnlistContext { - let localContext = new ColumnlistContext(this.context, this.state); - this.enterRule(localContext, 244, PostgreSQLParser.RULE_columnlist); + public opt_column_list_create(): Opt_column_list_createContext { + let localContext = new Opt_column_list_createContext(this.context, this.state); + this.enterRule(localContext, 242, PostgreSQLParser.RULE_opt_column_list_create); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3391; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 3392; + this.column_list_create(); + this.state = 3393; + this.match(PostgreSQLParser.CLOSE_PAREN); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public column_list(): Column_listContext { + let localContext = new Column_listContext(this.context, this.state); + this.enterRule(localContext, 244, PostgreSQLParser.RULE_column_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3410; + this.state = 3395; this.column_name(); - this.state = 3415; + this.state = 3400; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 227, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3411; + this.state = 3396; this.match(PostgreSQLParser.COMMA); - this.state = 3412; + this.state = 3397; this.column_name(); } } } - this.state = 3417; + this.state = 3402; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 227, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public column_list_create(): Column_list_createContext { + let localContext = new Column_list_createContext(this.context, this.state); + this.enterRule(localContext, 246, PostgreSQLParser.RULE_column_list_create); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3403; + this.column_name_create(); + this.state = 3408; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 3404; + this.match(PostgreSQLParser.COMMA); + this.state = 3405; + this.column_name_create(); + } + } + this.state = 3410; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } } } @@ -14800,17 +14371,17 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_c_include(): Opt_c_includeContext { let localContext = new Opt_c_includeContext(this.context, this.state); - this.enterRule(localContext, 246, PostgreSQLParser.RULE_opt_c_include); + this.enterRule(localContext, 248, PostgreSQLParser.RULE_opt_c_include); try { this.enterOuterAlt(localContext, 1); { - this.state = 3418; + this.state = 3411; this.match(PostgreSQLParser.KW_INCLUDE); - this.state = 3419; + this.state = 3412; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3420; - this.columnlist(); - this.state = 3421; + this.state = 3413; + this.column_list(); + this.state = 3414; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -14830,14 +14401,14 @@ export class PostgreSQLParser extends antlr.Parser { } public key_match(): Key_matchContext { let localContext = new Key_matchContext(this.context, this.state); - this.enterRule(localContext, 248, PostgreSQLParser.RULE_key_match); + this.enterRule(localContext, 250, PostgreSQLParser.RULE_key_match); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3423; + this.state = 3416; this.match(PostgreSQLParser.KW_MATCH); - this.state = 3424; + this.state = 3417; _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 284 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -14864,26 +14435,26 @@ export class PostgreSQLParser extends antlr.Parser { } public exclusionconstraintlist(): ExclusionconstraintlistContext { let localContext = new ExclusionconstraintlistContext(this.context, this.state); - this.enterRule(localContext, 250, PostgreSQLParser.RULE_exclusionconstraintlist); + this.enterRule(localContext, 252, PostgreSQLParser.RULE_exclusionconstraintlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3426; + this.state = 3419; this.exclusionconstraintelem(); - this.state = 3431; + this.state = 3424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3427; + this.state = 3420; this.match(PostgreSQLParser.COMMA); - this.state = 3428; + this.state = 3421; this.exclusionconstraintelem(); } } - this.state = 3433; + this.state = 3426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14905,32 +14476,32 @@ export class PostgreSQLParser extends antlr.Parser { } public exclusionconstraintelem(): ExclusionconstraintelemContext { let localContext = new ExclusionconstraintelemContext(this.context, this.state); - this.enterRule(localContext, 252, PostgreSQLParser.RULE_exclusionconstraintelem); + this.enterRule(localContext, 254, PostgreSQLParser.RULE_exclusionconstraintelem); try { this.enterOuterAlt(localContext, 1); { - this.state = 3434; + this.state = 3427; this.index_elem(); - this.state = 3435; + this.state = 3428; this.match(PostgreSQLParser.KW_WITH); - this.state = 3442; + this.state = 3435; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { - this.state = 3436; + this.state = 3429; this.any_operator(); } break; case 2: { - this.state = 3437; + this.state = 3430; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 3438; + this.state = 3431; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3439; + this.state = 3432; this.any_operator(); - this.state = 3440; + this.state = 3433; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -14953,17 +14524,17 @@ export class PostgreSQLParser extends antlr.Parser { } public exclusionwhereclause(): ExclusionwhereclauseContext { let localContext = new ExclusionwhereclauseContext(this.context, this.state); - this.enterRule(localContext, 254, PostgreSQLParser.RULE_exclusionwhereclause); + this.enterRule(localContext, 256, PostgreSQLParser.RULE_exclusionwhereclause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3444; + this.state = 3437; this.match(PostgreSQLParser.KW_WHERE); - this.state = 3445; + this.state = 3438; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3446; + this.state = 3439; this.a_expr(); - this.state = 3447; + this.state = 3440; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -14983,40 +14554,40 @@ export class PostgreSQLParser extends antlr.Parser { } public key_actions(): Key_actionsContext { let localContext = new Key_actionsContext(this.context, this.state); - this.enterRule(localContext, 256, PostgreSQLParser.RULE_key_actions); + this.enterRule(localContext, 258, PostgreSQLParser.RULE_key_actions); try { - this.state = 3457; + this.state = 3450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3449; + this.state = 3442; this.key_update(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3450; + this.state = 3443; this.key_delete(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3451; + this.state = 3444; this.key_update(); - this.state = 3452; + this.state = 3445; this.key_delete(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3454; + this.state = 3447; this.key_delete(); - this.state = 3455; + this.state = 3448; this.key_update(); } break; @@ -15038,15 +14609,15 @@ export class PostgreSQLParser extends antlr.Parser { } public key_update(): Key_updateContext { let localContext = new Key_updateContext(this.context, this.state); - this.enterRule(localContext, 258, PostgreSQLParser.RULE_key_update); + this.enterRule(localContext, 260, PostgreSQLParser.RULE_key_update); try { this.enterOuterAlt(localContext, 1); { - this.state = 3459; + this.state = 3452; this.match(PostgreSQLParser.KW_ON); - this.state = 3460; + this.state = 3453; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 3461; + this.state = 3454; this.key_action(); } } @@ -15066,15 +14637,15 @@ export class PostgreSQLParser extends antlr.Parser { } public key_delete(): Key_deleteContext { let localContext = new Key_deleteContext(this.context, this.state); - this.enterRule(localContext, 260, PostgreSQLParser.RULE_key_delete); + this.enterRule(localContext, 262, PostgreSQLParser.RULE_key_delete); try { this.enterOuterAlt(localContext, 1); { - this.state = 3463; + this.state = 3456; this.match(PostgreSQLParser.KW_ON); - this.state = 3464; + this.state = 3457; this.match(PostgreSQLParser.KW_DELETE); - this.state = 3465; + this.state = 3458; this.key_action(); } } @@ -15094,41 +14665,41 @@ export class PostgreSQLParser extends antlr.Parser { } public key_action(): Key_actionContext { let localContext = new Key_actionContext(this.context, this.state); - this.enterRule(localContext, 262, PostgreSQLParser.RULE_key_action); + this.enterRule(localContext, 264, PostgreSQLParser.RULE_key_action); let _la: number; try { - this.state = 3476; + this.state = 3469; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NO: this.enterOuterAlt(localContext, 1); { - this.state = 3467; + this.state = 3460; this.match(PostgreSQLParser.KW_NO); - this.state = 3468; + this.state = 3461; this.match(PostgreSQLParser.KW_ACTION); } break; case PostgreSQLParser.KW_RESTRICT: this.enterOuterAlt(localContext, 2); { - this.state = 3469; + this.state = 3462; this.match(PostgreSQLParser.KW_RESTRICT); } break; case PostgreSQLParser.KW_CASCADE: this.enterOuterAlt(localContext, 3); { - this.state = 3470; + this.state = 3463; this.match(PostgreSQLParser.KW_CASCADE); } break; case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 3471; + this.state = 3464; this.match(PostgreSQLParser.KW_SET); - this.state = 3472; + this.state = 3465; _la = this.tokenStream.LA(1); if(!(_la === 53 || _la === 78)) { this.errorHandler.recoverInline(this); @@ -15137,13 +14708,13 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3474; + this.state = 3467; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 3473; - this.columnlist(); + this.state = 3466; + this.column_list(); } break; } @@ -15169,17 +14740,17 @@ export class PostgreSQLParser extends antlr.Parser { } public optinherit(): OptinheritContext { let localContext = new OptinheritContext(this.context, this.state); - this.enterRule(localContext, 264, PostgreSQLParser.RULE_optinherit); + this.enterRule(localContext, 266, PostgreSQLParser.RULE_optinherit); try { this.enterOuterAlt(localContext, 1); { - this.state = 3478; + this.state = 3471; this.match(PostgreSQLParser.KW_INHERITS); - this.state = 3479; + this.state = 3472; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3480; + this.state = 3473; this.qualified_name_list(); - this.state = 3481; + this.state = 3474; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -15199,11 +14770,11 @@ export class PostgreSQLParser extends antlr.Parser { } public optpartitionspec(): OptpartitionspecContext { let localContext = new OptpartitionspecContext(this.context, this.state); - this.enterRule(localContext, 266, PostgreSQLParser.RULE_optpartitionspec); + this.enterRule(localContext, 268, PostgreSQLParser.RULE_optpartitionspec); try { this.enterOuterAlt(localContext, 1); { - this.state = 3483; + this.state = 3476; this.partitionspec(); } } @@ -15223,21 +14794,21 @@ export class PostgreSQLParser extends antlr.Parser { } public partitionspec(): PartitionspecContext { let localContext = new PartitionspecContext(this.context, this.state); - this.enterRule(localContext, 268, PostgreSQLParser.RULE_partitionspec); + this.enterRule(localContext, 270, PostgreSQLParser.RULE_partitionspec); try { this.enterOuterAlt(localContext, 1); { - this.state = 3485; + this.state = 3478; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 3486; + this.state = 3479; this.match(PostgreSQLParser.KW_BY); - this.state = 3487; + this.state = 3480; this.colid(); - this.state = 3488; + this.state = 3481; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3489; + this.state = 3482; this.part_params(); - this.state = 3490; + this.state = 3483; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -15257,26 +14828,26 @@ export class PostgreSQLParser extends antlr.Parser { } public part_params(): Part_paramsContext { let localContext = new Part_paramsContext(this.context, this.state); - this.enterRule(localContext, 270, PostgreSQLParser.RULE_part_params); + this.enterRule(localContext, 272, PostgreSQLParser.RULE_part_params); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3492; + this.state = 3485; this.part_elem(); - this.state = 3497; + this.state = 3490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3493; + this.state = 3486; this.match(PostgreSQLParser.COMMA); - this.state = 3494; + this.state = 3487; this.part_elem(); } } - this.state = 3499; + this.state = 3492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15298,20 +14869,47 @@ export class PostgreSQLParser extends antlr.Parser { } public part_elem(): Part_elemContext { let localContext = new Part_elemContext(this.context, this.state); - this.enterRule(localContext, 272, PostgreSQLParser.RULE_part_elem); + this.enterRule(localContext, 274, PostgreSQLParser.RULE_part_elem); let _la: number; try { - this.state = 3523; + this.state = 3516; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3500; + this.state = 3493; this.column_name(); + this.state = 3495; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + case 1: + { + this.state = 3494; + this.opt_collate(); + } + break; + } + this.state = 3498; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + { + this.state = 3497; + this.opt_class(); + } + } + + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 3500; + this.func_expr_windowless(); this.state = 3502; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { this.state = 3501; @@ -15329,60 +14927,33 @@ export class PostgreSQLParser extends antlr.Parser { } } - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3507; - this.func_expr_windowless(); - this.state = 3509; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { - case 1: - { - this.state = 3508; - this.opt_collate(); - } - break; - } - this.state = 3512; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { - { - this.state = 3511; - this.opt_class(); - } - } - } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3514; + this.state = 3507; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3515; + this.state = 3508; this.a_expr(); - this.state = 3516; + this.state = 3509; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3518; + this.state = 3511; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 3517; + this.state = 3510; this.opt_collate(); } break; } - this.state = 3521; + this.state = 3514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 3520; + this.state = 3513; this.opt_class(); } } @@ -15407,13 +14978,13 @@ export class PostgreSQLParser extends antlr.Parser { } public table_access_method_clause(): Table_access_method_clauseContext { let localContext = new Table_access_method_clauseContext(this.context, this.state); - this.enterRule(localContext, 274, PostgreSQLParser.RULE_table_access_method_clause); + this.enterRule(localContext, 276, PostgreSQLParser.RULE_table_access_method_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3525; + this.state = 3518; this.match(PostgreSQLParser.KW_USING); - this.state = 3526; + this.state = 3519; this.name(); } } @@ -15433,35 +15004,35 @@ export class PostgreSQLParser extends antlr.Parser { } public optwith(): OptwithContext { let localContext = new OptwithContext(this.context, this.state); - this.enterRule(localContext, 276, PostgreSQLParser.RULE_optwith); + this.enterRule(localContext, 278, PostgreSQLParser.RULE_optwith); try { - this.state = 3534; + this.state = 3527; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3528; + this.state = 3521; this.match(PostgreSQLParser.KW_WITH); - this.state = 3529; + this.state = 3522; this.reloptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3530; + this.state = 3523; this.match(PostgreSQLParser.KW_WITHOUT); - this.state = 3531; + this.state = 3524; this.match(PostgreSQLParser.KW_OIDS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3532; + this.state = 3525; this.match(PostgreSQLParser.KW_WITH); - this.state = 3533; + this.state = 3526; this.match(PostgreSQLParser.KW_OIDS); } break; @@ -15483,36 +15054,36 @@ export class PostgreSQLParser extends antlr.Parser { } public oncommitoption(): OncommitoptionContext { let localContext = new OncommitoptionContext(this.context, this.state); - this.enterRule(localContext, 278, PostgreSQLParser.RULE_oncommitoption); + this.enterRule(localContext, 280, PostgreSQLParser.RULE_oncommitoption); try { this.enterOuterAlt(localContext, 1); { - this.state = 3536; + this.state = 3529; this.match(PostgreSQLParser.KW_ON); - this.state = 3537; + this.state = 3530; this.match(PostgreSQLParser.KW_COMMIT); - this.state = 3543; + this.state = 3536; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DROP: { - this.state = 3538; + this.state = 3531; this.match(PostgreSQLParser.KW_DROP); } break; case PostgreSQLParser.KW_DELETE: { - this.state = 3539; + this.state = 3532; this.match(PostgreSQLParser.KW_DELETE); - this.state = 3540; + this.state = 3533; this.match(PostgreSQLParser.KW_ROWS); } break; case PostgreSQLParser.KW_PRESERVE: { - this.state = 3541; + this.state = 3534; this.match(PostgreSQLParser.KW_PRESERVE); - this.state = 3542; + this.state = 3535; this.match(PostgreSQLParser.KW_ROWS); } break; @@ -15537,13 +15108,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opttablespace(): OpttablespaceContext { let localContext = new OpttablespaceContext(this.context, this.state); - this.enterRule(localContext, 280, PostgreSQLParser.RULE_opttablespace); + this.enterRule(localContext, 282, PostgreSQLParser.RULE_opttablespace); try { this.enterOuterAlt(localContext, 1); { - this.state = 3545; + this.state = 3538; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 3546; + this.state = 3539; this.tablespace_name(); } } @@ -15563,37 +15134,37 @@ export class PostgreSQLParser extends antlr.Parser { } public index_paramenters_create(): Index_paramenters_createContext { let localContext = new Index_paramenters_createContext(this.context, this.state); - this.enterRule(localContext, 282, PostgreSQLParser.RULE_index_paramenters_create); + this.enterRule(localContext, 284, PostgreSQLParser.RULE_index_paramenters_create); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3549; + this.state = 3542; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 3548; + this.state = 3541; this.opt_include(); } break; } - this.state = 3552; + this.state = 3545; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 3551; + this.state = 3544; this.with_clause(); } break; } - this.state = 3555; + this.state = 3548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3554; + this.state = 3547; this.optconstablespace(); } } @@ -15616,17 +15187,17 @@ export class PostgreSQLParser extends antlr.Parser { } public optconstablespace(): OptconstablespaceContext { let localContext = new OptconstablespaceContext(this.context, this.state); - this.enterRule(localContext, 284, PostgreSQLParser.RULE_optconstablespace); + this.enterRule(localContext, 286, PostgreSQLParser.RULE_optconstablespace); try { this.enterOuterAlt(localContext, 1); { - this.state = 3557; + this.state = 3550; this.match(PostgreSQLParser.KW_USING); - this.state = 3558; + this.state = 3551; this.match(PostgreSQLParser.KW_INDEX); - this.state = 3559; + this.state = 3552; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 3560; + this.state = 3553; this.tablespace_name(); } } @@ -15646,15 +15217,15 @@ export class PostgreSQLParser extends antlr.Parser { } public existingindex(): ExistingindexContext { let localContext = new ExistingindexContext(this.context, this.state); - this.enterRule(localContext, 286, PostgreSQLParser.RULE_existingindex); + this.enterRule(localContext, 288, PostgreSQLParser.RULE_existingindex); try { this.enterOuterAlt(localContext, 1); { - this.state = 3562; + this.state = 3555; this.match(PostgreSQLParser.KW_USING); - this.state = 3563; + this.state = 3556; this.match(PostgreSQLParser.KW_INDEX); - this.state = 3564; + this.state = 3557; this.name(); } } @@ -15674,66 +15245,66 @@ export class PostgreSQLParser extends antlr.Parser { } public createstatsstmt(): CreatestatsstmtContext { let localContext = new CreatestatsstmtContext(this.context, this.state); - this.enterRule(localContext, 288, PostgreSQLParser.RULE_createstatsstmt); + this.enterRule(localContext, 290, PostgreSQLParser.RULE_createstatsstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3566; + this.state = 3559; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3567; + this.state = 3560; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 3572; + this.state = 3565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 3569; + this.state = 3562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 3568; + this.state = 3561; this.opt_if_not_exists(); } break; } - this.state = 3571; + this.state = 3564; this.any_name(); } } - this.state = 3575; + this.state = 3568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3574; + this.state = 3567; this.opt_name_list(); } } - this.state = 3577; + this.state = 3570; this.match(PostgreSQLParser.KW_ON); - this.state = 3580; + this.state = 3573; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 3578; + this.state = 3571; this.column_expr_list(); } break; case 2: { - this.state = 3579; + this.state = 3572; this.expr_list(); } break; } - this.state = 3582; + this.state = 3575; this.match(PostgreSQLParser.KW_FROM); - this.state = 3583; + this.state = 3576; this.from_list(); } } @@ -15753,31 +15324,31 @@ export class PostgreSQLParser extends antlr.Parser { } public alterstatsstmt(): AlterstatsstmtContext { let localContext = new AlterstatsstmtContext(this.context, this.state); - this.enterRule(localContext, 290, PostgreSQLParser.RULE_alterstatsstmt); + this.enterRule(localContext, 292, PostgreSQLParser.RULE_alterstatsstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 3585; + this.state = 3578; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3586; + this.state = 3579; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 3588; + this.state = 3581; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 3587; + this.state = 3580; this.opt_if_exists(); } break; } - this.state = 3590; + this.state = 3583; this.any_name(); - this.state = 3591; + this.state = 3584; this.match(PostgreSQLParser.KW_SET); - this.state = 3592; + this.state = 3585; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 3593; + this.state = 3586; this.signediconst(); } } @@ -15797,47 +15368,48 @@ export class PostgreSQLParser extends antlr.Parser { } public createasstmt(): CreateasstmtContext { let localContext = new CreateasstmtContext(this.context, this.state); - this.enterRule(localContext, 292, PostgreSQLParser.RULE_createasstmt); + this.enterRule(localContext, 294, PostgreSQLParser.RULE_createasstmt); let _la: number; try { + localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3595; + this.state = 3588; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3597; + this.state = 3590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 3596; + this.state = 3589; this.opttemp(); } } - this.state = 3599; + this.state = 3592; this.match(PostgreSQLParser.KW_TABLE); - this.state = 3601; + this.state = 3594; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 3600; + this.state = 3593; this.opt_if_not_exists(); } break; } - this.state = 3603; + this.state = 3596; this.create_as_target(); - this.state = 3604; + this.state = 3597; this.match(PostgreSQLParser.KW_AS); - this.state = 3605; + this.state = 3598; this.selectstmt(); - this.state = 3607; + this.state = 3600; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 3606; + this.state = 3599; this.opt_with_data(); } break; @@ -15860,59 +15432,59 @@ export class PostgreSQLParser extends antlr.Parser { } public create_as_target(): Create_as_targetContext { let localContext = new Create_as_targetContext(this.context, this.state); - this.enterRule(localContext, 294, PostgreSQLParser.RULE_create_as_target); + this.enterRule(localContext, 296, PostgreSQLParser.RULE_create_as_target); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3609; + this.state = 3602; this.table_name_create(); - this.state = 3611; + this.state = 3604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3610; - this.opt_column_list(); + this.state = 3603; + this.opt_column_list_create(); } } - this.state = 3614; + this.state = 3607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3613; + this.state = 3606; this.table_access_method_clause(); } } - this.state = 3617; + this.state = 3610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 3616; + this.state = 3609; this.optwith(); } } - this.state = 3620; + this.state = 3613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3619; + this.state = 3612; this.oncommitoption(); } } - this.state = 3623; + this.state = 3616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 3622; + this.state = 3615; this.opttablespace(); } } @@ -15935,26 +15507,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_with_data(): Opt_with_dataContext { let localContext = new Opt_with_dataContext(this.context, this.state); - this.enterRule(localContext, 296, PostgreSQLParser.RULE_opt_with_data); + this.enterRule(localContext, 298, PostgreSQLParser.RULE_opt_with_data); try { this.enterOuterAlt(localContext, 1); { - this.state = 3625; + this.state = 3618; this.match(PostgreSQLParser.KW_WITH); - this.state = 3629; + this.state = 3622; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DATA: { - this.state = 3626; + this.state = 3619; this.match(PostgreSQLParser.KW_DATA); } break; case PostgreSQLParser.KW_NO: { - this.state = 3627; + this.state = 3620; this.match(PostgreSQLParser.KW_NO); - this.state = 3628; + this.state = 3621; this.match(PostgreSQLParser.KW_DATA); } break; @@ -15979,49 +15551,50 @@ export class PostgreSQLParser extends antlr.Parser { } public creatematviewstmt(): CreatematviewstmtContext { let localContext = new CreatematviewstmtContext(this.context, this.state); - this.enterRule(localContext, 298, PostgreSQLParser.RULE_creatematviewstmt); + this.enterRule(localContext, 300, PostgreSQLParser.RULE_creatematviewstmt); let _la: number; try { + localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3631; + this.state = 3624; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3633; + this.state = 3626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 3632; + this.state = 3625; this.optnolog(); } } - this.state = 3635; + this.state = 3628; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 3636; + this.state = 3629; this.match(PostgreSQLParser.KW_VIEW); - this.state = 3638; + this.state = 3631; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 3637; + this.state = 3630; this.opt_if_not_exists(); } break; } - this.state = 3640; + this.state = 3633; this.create_mv_target(); - this.state = 3641; + this.state = 3634; this.match(PostgreSQLParser.KW_AS); - this.state = 3642; + this.state = 3635; this.selectstmt(); - this.state = 3644; + this.state = 3637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 3643; + this.state = 3636; this.opt_with_data(); } break; @@ -16044,49 +15617,49 @@ export class PostgreSQLParser extends antlr.Parser { } public create_mv_target(): Create_mv_targetContext { let localContext = new Create_mv_targetContext(this.context, this.state); - this.enterRule(localContext, 300, PostgreSQLParser.RULE_create_mv_target); + this.enterRule(localContext, 302, PostgreSQLParser.RULE_create_mv_target); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3646; + this.state = 3639; this.view_name_create(); - this.state = 3648; + this.state = 3641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3647; - this.opt_column_list(); + this.state = 3640; + this.opt_column_list_create(); } } - this.state = 3651; + this.state = 3644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3650; + this.state = 3643; this.table_access_method_clause(); } } - this.state = 3654; + this.state = 3647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3653; + this.state = 3646; this.opt_reloptions(); } } - this.state = 3657; + this.state = 3650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 3656; + this.state = 3649; this.opttablespace(); } } @@ -16109,11 +15682,11 @@ export class PostgreSQLParser extends antlr.Parser { } public optnolog(): OptnologContext { let localContext = new OptnologContext(this.context, this.state); - this.enterRule(localContext, 302, PostgreSQLParser.RULE_optnolog); + this.enterRule(localContext, 304, PostgreSQLParser.RULE_optnolog); try { this.enterOuterAlt(localContext, 1); { - this.state = 3659; + this.state = 3652; this.match(PostgreSQLParser.KW_UNLOGGED); } } @@ -16133,35 +15706,35 @@ export class PostgreSQLParser extends antlr.Parser { } public refreshmatviewstmt(): RefreshmatviewstmtContext { let localContext = new RefreshmatviewstmtContext(this.context, this.state); - this.enterRule(localContext, 304, PostgreSQLParser.RULE_refreshmatviewstmt); + this.enterRule(localContext, 306, PostgreSQLParser.RULE_refreshmatviewstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3661; + this.state = 3654; this.match(PostgreSQLParser.KW_REFRESH); - this.state = 3662; + this.state = 3655; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 3663; + this.state = 3656; this.match(PostgreSQLParser.KW_VIEW); - this.state = 3665; + this.state = 3658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 3664; + this.state = 3657; this.opt_concurrently(); } } - this.state = 3667; + this.state = 3660; this.view_name(); - this.state = 3669; + this.state = 3662; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 3668; + this.state = 3661; this.opt_with_data(); } break; @@ -16184,43 +15757,43 @@ export class PostgreSQLParser extends antlr.Parser { } public createseqstmt(): CreateseqstmtContext { let localContext = new CreateseqstmtContext(this.context, this.state); - this.enterRule(localContext, 306, PostgreSQLParser.RULE_createseqstmt); + this.enterRule(localContext, 308, PostgreSQLParser.RULE_createseqstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3671; + this.state = 3664; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3673; + this.state = 3666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 3672; + this.state = 3665; this.opttemp(); } } - this.state = 3675; + this.state = 3668; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 3677; + this.state = 3670; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 3676; + this.state = 3669; this.opt_if_not_exists(); } break; } - this.state = 3679; + this.state = 3672; this.qualified_name(); - this.state = 3681; + this.state = 3674; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: { - this.state = 3680; + this.state = 3673; this.optseqoptlist(); } break; @@ -16243,27 +15816,27 @@ export class PostgreSQLParser extends antlr.Parser { } public alterseqstmt(): AlterseqstmtContext { let localContext = new AlterseqstmtContext(this.context, this.state); - this.enterRule(localContext, 308, PostgreSQLParser.RULE_alterseqstmt); + this.enterRule(localContext, 310, PostgreSQLParser.RULE_alterseqstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 3683; + this.state = 3676; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3684; + this.state = 3677; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 3686; + this.state = 3679; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 3685; + this.state = 3678; this.opt_if_exists(); } break; } - this.state = 3688; + this.state = 3681; this.qualified_name(); - this.state = 3689; + this.state = 3682; this.seqoptlist(); } } @@ -16283,11 +15856,11 @@ export class PostgreSQLParser extends antlr.Parser { } public optseqoptlist(): OptseqoptlistContext { let localContext = new OptseqoptlistContext(this.context, this.state); - this.enterRule(localContext, 310, PostgreSQLParser.RULE_optseqoptlist); + this.enterRule(localContext, 312, PostgreSQLParser.RULE_optseqoptlist); try { this.enterOuterAlt(localContext, 1); { - this.state = 3691; + this.state = 3684; this.seqoptlist(); } } @@ -16307,15 +15880,15 @@ export class PostgreSQLParser extends antlr.Parser { } public optparenthesizedseqoptlist(): OptparenthesizedseqoptlistContext { let localContext = new OptparenthesizedseqoptlistContext(this.context, this.state); - this.enterRule(localContext, 312, PostgreSQLParser.RULE_optparenthesizedseqoptlist); + this.enterRule(localContext, 314, PostgreSQLParser.RULE_optparenthesizedseqoptlist); try { this.enterOuterAlt(localContext, 1); { - this.state = 3693; + this.state = 3686; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3694; + this.state = 3687; this.seqoptlist(); - this.state = 3695; + this.state = 3688; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -16335,12 +15908,12 @@ export class PostgreSQLParser extends antlr.Parser { } public seqoptlist(): SeqoptlistContext { let localContext = new SeqoptlistContext(this.context, this.state); - this.enterRule(localContext, 314, PostgreSQLParser.RULE_seqoptlist); + this.enterRule(localContext, 316, PostgreSQLParser.RULE_seqoptlist); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3698; + this.state = 3691; this.errorHandler.sync(this); alternative = 1; do { @@ -16348,7 +15921,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 3697; + this.state = 3690; this.seqoptelem(); } } @@ -16356,9 +15929,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3700; + this.state = 3693; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 278, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 274, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -16378,80 +15951,80 @@ export class PostgreSQLParser extends antlr.Parser { } public seqoptelem(): SeqoptelemContext { let localContext = new SeqoptelemContext(this.context, this.state); - this.enterRule(localContext, 316, PostgreSQLParser.RULE_seqoptelem); + this.enterRule(localContext, 318, PostgreSQLParser.RULE_seqoptelem); let _la: number; try { - this.state = 3736; + this.state = 3729; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AS: this.enterOuterAlt(localContext, 1); { - this.state = 3702; + this.state = 3695; this.match(PostgreSQLParser.KW_AS); - this.state = 3703; + this.state = 3696; this.simpletypename(); } break; case PostgreSQLParser.KW_CACHE: this.enterOuterAlt(localContext, 2); { - this.state = 3704; + this.state = 3697; this.match(PostgreSQLParser.KW_CACHE); - this.state = 3705; + this.state = 3698; this.numericonly(); } break; case PostgreSQLParser.KW_CYCLE: this.enterOuterAlt(localContext, 3); { - this.state = 3706; + this.state = 3699; this.match(PostgreSQLParser.KW_CYCLE); } break; case PostgreSQLParser.KW_INCREMENT: this.enterOuterAlt(localContext, 4); { - this.state = 3707; + this.state = 3700; this.match(PostgreSQLParser.KW_INCREMENT); - this.state = 3709; + this.state = 3702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 3708; + this.state = 3701; this.opt_by(); } } - this.state = 3711; + this.state = 3704; this.numericonly(); } break; case PostgreSQLParser.KW_MAXVALUE: this.enterOuterAlt(localContext, 5); { - this.state = 3712; + this.state = 3705; this.match(PostgreSQLParser.KW_MAXVALUE); - this.state = 3713; + this.state = 3706; this.numericonly(); } break; case PostgreSQLParser.KW_MINVALUE: this.enterOuterAlt(localContext, 6); { - this.state = 3714; + this.state = 3707; this.match(PostgreSQLParser.KW_MINVALUE); - this.state = 3715; + this.state = 3708; this.numericonly(); } break; case PostgreSQLParser.KW_NO: this.enterOuterAlt(localContext, 7); { - this.state = 3716; + this.state = 3709; this.match(PostgreSQLParser.KW_NO); - this.state = 3717; + this.state = 3710; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -16465,65 +16038,65 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_OWNED: this.enterOuterAlt(localContext, 8); { - this.state = 3718; + this.state = 3711; this.match(PostgreSQLParser.KW_OWNED); - this.state = 3719; + this.state = 3712; this.match(PostgreSQLParser.KW_BY); - this.state = 3720; + this.state = 3713; this.column_name(); } break; case PostgreSQLParser.KW_SEQUENCE: this.enterOuterAlt(localContext, 9); { - this.state = 3721; + this.state = 3714; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 3722; + this.state = 3715; this.match(PostgreSQLParser.KW_NAME); - this.state = 3723; + this.state = 3716; this.any_name(); } break; case PostgreSQLParser.KW_START: this.enterOuterAlt(localContext, 10); { - this.state = 3724; + this.state = 3717; this.match(PostgreSQLParser.KW_START); - this.state = 3726; + this.state = 3719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3725; + this.state = 3718; this.opt_with(); } } - this.state = 3728; + this.state = 3721; this.numericonly(); } break; case PostgreSQLParser.KW_RESTART: this.enterOuterAlt(localContext, 11); { - this.state = 3729; + this.state = 3722; this.match(PostgreSQLParser.KW_RESTART); - this.state = 3731; + this.state = 3724; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 3730; + this.state = 3723; this.opt_with(); } break; } - this.state = 3734; + this.state = 3727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 571 || _la === 573) { { - this.state = 3733; + this.state = 3726; this.numericonly(); } } @@ -16550,11 +16123,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_by(): Opt_byContext { let localContext = new Opt_byContext(this.context, this.state); - this.enterRule(localContext, 318, PostgreSQLParser.RULE_opt_by); + this.enterRule(localContext, 320, PostgreSQLParser.RULE_opt_by); try { this.enterOuterAlt(localContext, 1); { - this.state = 3738; + this.state = 3731; this.match(PostgreSQLParser.KW_BY); } } @@ -16574,40 +16147,40 @@ export class PostgreSQLParser extends antlr.Parser { } public numericonly(): NumericonlyContext { let localContext = new NumericonlyContext(this.context, this.state); - this.enterRule(localContext, 320, PostgreSQLParser.RULE_numericonly); + this.enterRule(localContext, 322, PostgreSQLParser.RULE_numericonly); try { - this.state = 3746; + this.state = 3739; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3740; + this.state = 3733; this.fconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3741; + this.state = 3734; this.match(PostgreSQLParser.PLUS); - this.state = 3742; + this.state = 3735; this.fconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3743; + this.state = 3736; this.match(PostgreSQLParser.MINUS); - this.state = 3744; + this.state = 3737; this.fconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3745; + this.state = 3738; this.signediconst(); } break; @@ -16629,26 +16202,26 @@ export class PostgreSQLParser extends antlr.Parser { } public numericonly_list(): Numericonly_listContext { let localContext = new Numericonly_listContext(this.context, this.state); - this.enterRule(localContext, 322, PostgreSQLParser.RULE_numericonly_list); + this.enterRule(localContext, 324, PostgreSQLParser.RULE_numericonly_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3748; + this.state = 3741; this.numericonly(); - this.state = 3753; + this.state = 3746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3749; + this.state = 3742; this.match(PostgreSQLParser.COMMA); - this.state = 3750; + this.state = 3743; this.numericonly(); } } - this.state = 3755; + this.state = 3748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16670,72 +16243,72 @@ export class PostgreSQLParser extends antlr.Parser { } public createplangstmt(): CreateplangstmtContext { let localContext = new CreateplangstmtContext(this.context, this.state); - this.enterRule(localContext, 324, PostgreSQLParser.RULE_createplangstmt); + this.enterRule(localContext, 326, PostgreSQLParser.RULE_createplangstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3756; + this.state = 3749; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3758; + this.state = 3751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3757; + this.state = 3750; this.opt_or_replace(); } } - this.state = 3761; + this.state = 3754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 359) { { - this.state = 3760; + this.state = 3753; this.opt_trusted(); } } - this.state = 3764; + this.state = 3757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3763; + this.state = 3756; this.opt_procedural(); } } - this.state = 3766; + this.state = 3759; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 3767; + this.state = 3760; this.name(); - this.state = 3776; + this.state = 3769; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { case 1: { - this.state = 3768; + this.state = 3761; this.match(PostgreSQLParser.KW_HANDLER); - this.state = 3769; + this.state = 3762; this.handler_name(); - this.state = 3771; + this.state = 3764; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 3770; + this.state = 3763; this.opt_inline_handler(); } break; } - this.state = 3774; + this.state = 3767; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 286, this.context) ) { case 1: { - this.state = 3773; + this.state = 3766; this.opt_validator(); } break; @@ -16761,11 +16334,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_trusted(): Opt_trustedContext { let localContext = new Opt_trustedContext(this.context, this.state); - this.enterRule(localContext, 326, PostgreSQLParser.RULE_opt_trusted); + this.enterRule(localContext, 328, PostgreSQLParser.RULE_opt_trusted); try { this.enterOuterAlt(localContext, 1); { - this.state = 3778; + this.state = 3771; this.match(PostgreSQLParser.KW_TRUSTED); } } @@ -16785,19 +16358,19 @@ export class PostgreSQLParser extends antlr.Parser { } public handler_name(): Handler_nameContext { let localContext = new Handler_nameContext(this.context, this.state); - this.enterRule(localContext, 328, PostgreSQLParser.RULE_handler_name); + this.enterRule(localContext, 330, PostgreSQLParser.RULE_handler_name); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3780; + this.state = 3773; this.name(); - this.state = 3782; + this.state = 3775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 3781; + this.state = 3774; this.attrs(); } } @@ -16820,13 +16393,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_inline_handler(): Opt_inline_handlerContext { let localContext = new Opt_inline_handlerContext(this.context, this.state); - this.enterRule(localContext, 330, PostgreSQLParser.RULE_opt_inline_handler); + this.enterRule(localContext, 332, PostgreSQLParser.RULE_opt_inline_handler); try { this.enterOuterAlt(localContext, 1); { - this.state = 3784; + this.state = 3777; this.match(PostgreSQLParser.KW_INLINE); - this.state = 3785; + this.state = 3778; this.handler_name(); } } @@ -16846,26 +16419,26 @@ export class PostgreSQLParser extends antlr.Parser { } public validator_clause(): Validator_clauseContext { let localContext = new Validator_clauseContext(this.context, this.state); - this.enterRule(localContext, 332, PostgreSQLParser.RULE_validator_clause); + this.enterRule(localContext, 334, PostgreSQLParser.RULE_validator_clause); try { - this.state = 3791; + this.state = 3784; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_VALIDATOR: this.enterOuterAlt(localContext, 1); { - this.state = 3787; + this.state = 3780; this.match(PostgreSQLParser.KW_VALIDATOR); - this.state = 3788; + this.state = 3781; this.handler_name(); } break; case PostgreSQLParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 3789; + this.state = 3782; this.match(PostgreSQLParser.KW_NO); - this.state = 3790; + this.state = 3783; this.match(PostgreSQLParser.KW_VALIDATOR); } break; @@ -16889,11 +16462,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_validator(): Opt_validatorContext { let localContext = new Opt_validatorContext(this.context, this.state); - this.enterRule(localContext, 334, PostgreSQLParser.RULE_opt_validator); + this.enterRule(localContext, 336, PostgreSQLParser.RULE_opt_validator); try { this.enterOuterAlt(localContext, 1); { - this.state = 3793; + this.state = 3786; this.validator_clause(); } } @@ -16913,11 +16486,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_procedural(): Opt_proceduralContext { let localContext = new Opt_proceduralContext(this.context, this.state); - this.enterRule(localContext, 336, PostgreSQLParser.RULE_opt_procedural); + this.enterRule(localContext, 338, PostgreSQLParser.RULE_opt_procedural); try { this.enterOuterAlt(localContext, 1); { - this.state = 3795; + this.state = 3788; this.match(PostgreSQLParser.KW_PROCEDURAL); } } @@ -16937,37 +16510,37 @@ export class PostgreSQLParser extends antlr.Parser { } public createtablespacestmt(): CreatetablespacestmtContext { let localContext = new CreatetablespacestmtContext(this.context, this.state); - this.enterRule(localContext, 338, PostgreSQLParser.RULE_createtablespacestmt); + this.enterRule(localContext, 340, PostgreSQLParser.RULE_createtablespacestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3797; + this.state = 3790; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3798; + this.state = 3791; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 3799; + this.state = 3792; this.tablespace_name(); - this.state = 3801; + this.state = 3794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 282) { { - this.state = 3800; + this.state = 3793; this.opttablespaceowner(); } } - this.state = 3803; + this.state = 3796; this.match(PostgreSQLParser.KW_LOCATION); - this.state = 3804; + this.state = 3797; this.sconst(); - this.state = 3806; + this.state = 3799; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 3805; + this.state = 3798; this.opt_reloptions(); } break; @@ -16990,13 +16563,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opttablespaceowner(): OpttablespaceownerContext { let localContext = new OpttablespaceownerContext(this.context, this.state); - this.enterRule(localContext, 340, PostgreSQLParser.RULE_opttablespaceowner); + this.enterRule(localContext, 342, PostgreSQLParser.RULE_opttablespaceowner); try { this.enterOuterAlt(localContext, 1); { - this.state = 3808; + this.state = 3801; this.match(PostgreSQLParser.KW_OWNER); - this.state = 3809; + this.state = 3802; this.rolespec(); } } @@ -17016,37 +16589,37 @@ export class PostgreSQLParser extends antlr.Parser { } public createextensionstmt(): CreateextensionstmtContext { let localContext = new CreateextensionstmtContext(this.context, this.state); - this.enterRule(localContext, 342, PostgreSQLParser.RULE_createextensionstmt); + this.enterRule(localContext, 344, PostgreSQLParser.RULE_createextensionstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 3811; + this.state = 3804; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3812; + this.state = 3805; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3814; + this.state = 3807; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 3813; + this.state = 3806; this.opt_if_not_exists(); } break; } - this.state = 3816; + this.state = 3809; this.name(); - this.state = 3818; + this.state = 3811; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 3817; + this.state = 3810; this.opt_with(); } break; } - this.state = 3820; + this.state = 3813; this.create_extension_opt_list(); } } @@ -17066,26 +16639,26 @@ export class PostgreSQLParser extends antlr.Parser { } public create_extension_opt_list(): Create_extension_opt_listContext { let localContext = new Create_extension_opt_listContext(this.context, this.state); - this.enterRule(localContext, 344, PostgreSQLParser.RULE_create_extension_opt_list); + this.enterRule(localContext, 346, PostgreSQLParser.RULE_create_extension_opt_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3825; + this.state = 3818; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 298, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3822; + this.state = 3815; this.create_extension_opt_item(); } } } - this.state = 3827; + this.state = 3820; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 298, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); } } } @@ -17105,42 +16678,42 @@ export class PostgreSQLParser extends antlr.Parser { } public create_extension_opt_item(): Create_extension_opt_itemContext { let localContext = new Create_extension_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 346, PostgreSQLParser.RULE_create_extension_opt_item); + this.enterRule(localContext, 348, PostgreSQLParser.RULE_create_extension_opt_item); try { - this.state = 3835; + this.state = 3828; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SCHEMA: this.enterOuterAlt(localContext, 1); { - this.state = 3828; + this.state = 3821; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 3829; + this.state = 3822; this.schema_name(); } break; case PostgreSQLParser.KW_VERSION: this.enterOuterAlt(localContext, 2); { - this.state = 3830; + this.state = 3823; this.match(PostgreSQLParser.KW_VERSION); - this.state = 3831; + this.state = 3824; this.nonreservedword_or_sconst(); } break; case PostgreSQLParser.KW_FROM: this.enterOuterAlt(localContext, 3); { - this.state = 3832; + this.state = 3825; this.match(PostgreSQLParser.KW_FROM); - this.state = 3833; + this.state = 3826; this.nonreservedword_or_sconst(); } break; case PostgreSQLParser.KW_CASCADE: this.enterOuterAlt(localContext, 4); { - this.state = 3834; + this.state = 3827; this.match(PostgreSQLParser.KW_CASCADE); } break; @@ -17164,19 +16737,19 @@ export class PostgreSQLParser extends antlr.Parser { } public alterextensionstmt(): AlterextensionstmtContext { let localContext = new AlterextensionstmtContext(this.context, this.state); - this.enterRule(localContext, 348, PostgreSQLParser.RULE_alterextensionstmt); + this.enterRule(localContext, 350, PostgreSQLParser.RULE_alterextensionstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 3837; + this.state = 3830; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3838; + this.state = 3831; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3839; + this.state = 3832; this.name(); - this.state = 3840; + this.state = 3833; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 3841; + this.state = 3834; this.alter_extension_opt_list(); } } @@ -17196,22 +16769,22 @@ export class PostgreSQLParser extends antlr.Parser { } public alter_extension_opt_list(): Alter_extension_opt_listContext { let localContext = new Alter_extension_opt_listContext(this.context, this.state); - this.enterRule(localContext, 350, PostgreSQLParser.RULE_alter_extension_opt_list); + this.enterRule(localContext, 352, PostgreSQLParser.RULE_alter_extension_opt_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3846; + this.state = 3839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 94) { { { - this.state = 3843; + this.state = 3836; this.alter_extension_opt_item(); } } - this.state = 3848; + this.state = 3841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17233,13 +16806,13 @@ export class PostgreSQLParser extends antlr.Parser { } public alter_extension_opt_item(): Alter_extension_opt_itemContext { let localContext = new Alter_extension_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 352, PostgreSQLParser.RULE_alter_extension_opt_item); + this.enterRule(localContext, 354, PostgreSQLParser.RULE_alter_extension_opt_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 3849; + this.state = 3842; this.match(PostgreSQLParser.KW_TO); - this.state = 3850; + this.state = 3843; this.nonreservedword_or_sconst(); } } @@ -17259,44 +16832,61 @@ export class PostgreSQLParser extends antlr.Parser { } public alterextensioncontentsstmt(): AlterextensioncontentsstmtContext { let localContext = new AlterextensioncontentsstmtContext(this.context, this.state); - this.enterRule(localContext, 354, PostgreSQLParser.RULE_alterextensioncontentsstmt); + this.enterRule(localContext, 356, PostgreSQLParser.RULE_alterextensioncontentsstmt); try { - this.state = 3954; + this.state = 3947; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3852; + this.state = 3845; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3853; + this.state = 3846; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3854; + this.state = 3847; this.name(); - this.state = 3855; + this.state = 3848; this.add_drop(); - this.state = 3856; + this.state = 3849; this.object_type_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3858; + this.state = 3851; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3859; + this.state = 3852; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3860; + this.state = 3853; this.name(); - this.state = 3861; + this.state = 3854; this.add_drop(); - this.state = 3862; + this.state = 3855; this.object_type_any_name(); } break; case 3: this.enterOuterAlt(localContext, 3); { + this.state = 3857; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 3858; + this.match(PostgreSQLParser.KW_EXTENSION); + this.state = 3859; + this.name(); + this.state = 3860; + this.add_drop(); + this.state = 3861; + this.match(PostgreSQLParser.KW_AGGREGATE); + this.state = 3862; + this.aggregate_with_argtypes(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { this.state = 3864; this.match(PostgreSQLParser.KW_ALTER); this.state = 3865; @@ -17306,39 +16896,39 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 3867; this.add_drop(); this.state = 3868; - this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 3869; - this.aggregate_with_argtypes(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3871; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 3872; - this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3873; - this.name(); - this.state = 3874; - this.add_drop(); - this.state = 3875; this.match(PostgreSQLParser.KW_CAST); - this.state = 3876; + this.state = 3869; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3877; + this.state = 3870; this.typename(); - this.state = 3878; + this.state = 3871; this.match(PostgreSQLParser.KW_AS); - this.state = 3879; + this.state = 3872; this.typename(); - this.state = 3880; + this.state = 3873; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 5: this.enterOuterAlt(localContext, 5); { + this.state = 3875; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 3876; + this.match(PostgreSQLParser.KW_EXTENSION); + this.state = 3877; + this.name(); + this.state = 3878; + this.add_drop(); + this.state = 3879; + this.match(PostgreSQLParser.KW_DOMAIN); + this.state = 3880; + this.typename(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { this.state = 3882; this.match(PostgreSQLParser.KW_ALTER); this.state = 3883; @@ -17348,13 +16938,13 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 3885; this.add_drop(); this.state = 3886; - this.match(PostgreSQLParser.KW_DOMAIN); + this.match(PostgreSQLParser.KW_FUNCTION); this.state = 3887; - this.typename(); + this.function_with_argtypes(); } break; - case 6: - this.enterOuterAlt(localContext, 6); + case 7: + this.enterOuterAlt(localContext, 7); { this.state = 3889; this.match(PostgreSQLParser.KW_ALTER); @@ -17365,13 +16955,13 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 3892; this.add_drop(); this.state = 3893; - this.match(PostgreSQLParser.KW_FUNCTION); + this.match(PostgreSQLParser.KW_OPERATOR); this.state = 3894; - this.function_with_argtypes(); + this.operator_with_argtypes(); } break; - case 7: - this.enterOuterAlt(localContext, 7); + case 8: + this.enterOuterAlt(localContext, 8); { this.state = 3896; this.match(PostgreSQLParser.KW_ALTER); @@ -17384,58 +16974,58 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 3900; this.match(PostgreSQLParser.KW_OPERATOR); this.state = 3901; - this.operator_with_argtypes(); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 3903; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 3904; - this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3905; - this.name(); - this.state = 3906; - this.add_drop(); - this.state = 3907; - this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 3908; this.match(PostgreSQLParser.KW_CLASS); - this.state = 3909; + this.state = 3902; this.any_name(); - this.state = 3910; + this.state = 3903; this.match(PostgreSQLParser.KW_USING); - this.state = 3911; + this.state = 3904; this.name(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3913; + this.state = 3906; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3914; + this.state = 3907; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3915; + this.state = 3908; this.name(); - this.state = 3916; + this.state = 3909; this.add_drop(); - this.state = 3917; + this.state = 3910; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 3918; + this.state = 3911; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 3919; + this.state = 3912; this.any_name(); - this.state = 3920; + this.state = 3913; this.match(PostgreSQLParser.KW_USING); - this.state = 3921; + this.state = 3914; this.name(); } break; case 10: this.enterOuterAlt(localContext, 10); { + this.state = 3916; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 3917; + this.match(PostgreSQLParser.KW_EXTENSION); + this.state = 3918; + this.name(); + this.state = 3919; + this.add_drop(); + this.state = 3920; + this.match(PostgreSQLParser.KW_PROCEDURE); + this.state = 3921; + this.procedure_with_argtypes(); + } + break; + case 11: + this.enterOuterAlt(localContext, 11); + { this.state = 3923; this.match(PostgreSQLParser.KW_ALTER); this.state = 3924; @@ -17445,13 +17035,13 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 3926; this.add_drop(); this.state = 3927; - this.match(PostgreSQLParser.KW_PROCEDURE); + this.match(PostgreSQLParser.KW_ROUTINE); this.state = 3928; - this.procedure_with_argtypes(); + this.routine_with_argtypes(); } break; - case 11: - this.enterOuterAlt(localContext, 11); + case 12: + this.enterOuterAlt(localContext, 12); { this.state = 3930; this.match(PostgreSQLParser.KW_ALTER); @@ -17462,48 +17052,31 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 3933; this.add_drop(); this.state = 3934; - this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 3935; - this.routine_with_argtypes(); - } - break; - case 12: - this.enterOuterAlt(localContext, 12); - { - this.state = 3937; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 3938; - this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3939; - this.name(); - this.state = 3940; - this.add_drop(); - this.state = 3941; this.match(PostgreSQLParser.KW_TRANSFORM); - this.state = 3942; + this.state = 3935; this.match(PostgreSQLParser.KW_FOR); - this.state = 3943; + this.state = 3936; this.typename(); - this.state = 3944; + this.state = 3937; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 3945; + this.state = 3938; this.name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3947; + this.state = 3940; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3948; + this.state = 3941; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3949; + this.state = 3942; this.name(); - this.state = 3950; + this.state = 3943; this.add_drop(); - this.state = 3951; + this.state = 3944; this.match(PostgreSQLParser.KW_TYPE); - this.state = 3952; + this.state = 3945; this.typename(); } break; @@ -17525,36 +17098,36 @@ export class PostgreSQLParser extends antlr.Parser { } public createfdwstmt(): CreatefdwstmtContext { let localContext = new CreatefdwstmtContext(this.context, this.state); - this.enterRule(localContext, 356, PostgreSQLParser.RULE_createfdwstmt); + this.enterRule(localContext, 358, PostgreSQLParser.RULE_createfdwstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 3956; + this.state = 3949; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3957; + this.state = 3950; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 3958; + this.state = 3951; this.match(PostgreSQLParser.KW_DATA); - this.state = 3959; + this.state = 3952; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 3960; + this.state = 3953; this.name(); - this.state = 3962; + this.state = 3955; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { case 1: { - this.state = 3961; + this.state = 3954; this.opt_fdw_options(); } break; } - this.state = 3965; + this.state = 3958; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 3964; + this.state = 3957; this.create_generic_options(); } break; @@ -17577,44 +17150,44 @@ export class PostgreSQLParser extends antlr.Parser { } public fdw_option(): Fdw_optionContext { let localContext = new Fdw_optionContext(this.context, this.state); - this.enterRule(localContext, 358, PostgreSQLParser.RULE_fdw_option); + this.enterRule(localContext, 360, PostgreSQLParser.RULE_fdw_option); try { - this.state = 3975; + this.state = 3968; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3967; + this.state = 3960; this.match(PostgreSQLParser.KW_HANDLER); - this.state = 3968; + this.state = 3961; this.handler_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3969; + this.state = 3962; this.match(PostgreSQLParser.KW_NO); - this.state = 3970; + this.state = 3963; this.match(PostgreSQLParser.KW_HANDLER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3971; + this.state = 3964; this.match(PostgreSQLParser.KW_VALIDATOR); - this.state = 3972; + this.state = 3965; this.handler_name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3973; + this.state = 3966; this.match(PostgreSQLParser.KW_NO); - this.state = 3974; + this.state = 3967; this.match(PostgreSQLParser.KW_VALIDATOR); } break; @@ -17636,12 +17209,12 @@ export class PostgreSQLParser extends antlr.Parser { } public fdw_options(): Fdw_optionsContext { let localContext = new Fdw_optionsContext(this.context, this.state); - this.enterRule(localContext, 360, PostgreSQLParser.RULE_fdw_options); + this.enterRule(localContext, 362, PostgreSQLParser.RULE_fdw_options); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3978; + this.state = 3971; this.errorHandler.sync(this); alternative = 1; do { @@ -17649,7 +17222,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 3977; + this.state = 3970; this.fdw_option(); } } @@ -17657,9 +17230,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3980; + this.state = 3973; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 305, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 301, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -17679,11 +17252,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_fdw_options(): Opt_fdw_optionsContext { let localContext = new Opt_fdw_optionsContext(this.context, this.state); - this.enterRule(localContext, 362, PostgreSQLParser.RULE_opt_fdw_options); + this.enterRule(localContext, 364, PostgreSQLParser.RULE_opt_fdw_options); try { this.enterOuterAlt(localContext, 1); { - this.state = 3982; + this.state = 3975; this.fdw_options(); } } @@ -17703,53 +17276,53 @@ export class PostgreSQLParser extends antlr.Parser { } public alterfdwstmt(): AlterfdwstmtContext { let localContext = new AlterfdwstmtContext(this.context, this.state); - this.enterRule(localContext, 364, PostgreSQLParser.RULE_alterfdwstmt); + this.enterRule(localContext, 366, PostgreSQLParser.RULE_alterfdwstmt); let _la: number; try { - this.state = 4001; + this.state = 3994; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3984; + this.state = 3977; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3985; + this.state = 3978; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 3986; + this.state = 3979; this.match(PostgreSQLParser.KW_DATA); - this.state = 3987; + this.state = 3980; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 3988; + this.state = 3981; this.name(); - this.state = 3990; + this.state = 3983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215 || _la === 269 || _la === 373) { { - this.state = 3989; + this.state = 3982; this.opt_fdw_options(); } } - this.state = 3992; + this.state = 3985; this.alter_generic_options(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3994; + this.state = 3987; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3995; + this.state = 3988; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 3996; + this.state = 3989; this.match(PostgreSQLParser.KW_DATA); - this.state = 3997; + this.state = 3990; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 3998; + this.state = 3991; this.name(); - this.state = 3999; + this.state = 3992; this.fdw_options(); } break; @@ -17771,17 +17344,17 @@ export class PostgreSQLParser extends antlr.Parser { } public create_generic_options(): Create_generic_optionsContext { let localContext = new Create_generic_optionsContext(this.context, this.state); - this.enterRule(localContext, 366, PostgreSQLParser.RULE_create_generic_options); + this.enterRule(localContext, 368, PostgreSQLParser.RULE_create_generic_options); try { this.enterOuterAlt(localContext, 1); { - this.state = 4003; + this.state = 3996; this.match(PostgreSQLParser.KW_OPTIONS); - this.state = 4004; + this.state = 3997; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4005; + this.state = 3998; this.generic_option_list(); - this.state = 4006; + this.state = 3999; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -17801,26 +17374,26 @@ export class PostgreSQLParser extends antlr.Parser { } public generic_option_list(): Generic_option_listContext { let localContext = new Generic_option_listContext(this.context, this.state); - this.enterRule(localContext, 368, PostgreSQLParser.RULE_generic_option_list); + this.enterRule(localContext, 370, PostgreSQLParser.RULE_generic_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4008; + this.state = 4001; this.generic_option_elem(); - this.state = 4013; + this.state = 4006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4009; + this.state = 4002; this.match(PostgreSQLParser.COMMA); - this.state = 4010; + this.state = 4003; this.generic_option_elem(); } } - this.state = 4015; + this.state = 4008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17842,17 +17415,17 @@ export class PostgreSQLParser extends antlr.Parser { } public alter_generic_options(): Alter_generic_optionsContext { let localContext = new Alter_generic_optionsContext(this.context, this.state); - this.enterRule(localContext, 370, PostgreSQLParser.RULE_alter_generic_options); + this.enterRule(localContext, 372, PostgreSQLParser.RULE_alter_generic_options); try { this.enterOuterAlt(localContext, 1); { - this.state = 4016; + this.state = 4009; this.match(PostgreSQLParser.KW_OPTIONS); - this.state = 4017; + this.state = 4010; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4018; + this.state = 4011; this.alter_generic_option_list(); - this.state = 4019; + this.state = 4012; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -17872,26 +17445,26 @@ export class PostgreSQLParser extends antlr.Parser { } public alter_generic_option_list(): Alter_generic_option_listContext { let localContext = new Alter_generic_option_listContext(this.context, this.state); - this.enterRule(localContext, 372, PostgreSQLParser.RULE_alter_generic_option_list); + this.enterRule(localContext, 374, PostgreSQLParser.RULE_alter_generic_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4021; + this.state = 4014; this.alter_generic_option_elem(); - this.state = 4026; + this.state = 4019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4022; + this.state = 4015; this.match(PostgreSQLParser.COMMA); - this.state = 4023; + this.state = 4016; this.alter_generic_option_elem(); } } - this.state = 4028; + this.state = 4021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17913,42 +17486,42 @@ export class PostgreSQLParser extends antlr.Parser { } public alter_generic_option_elem(): Alter_generic_option_elemContext { let localContext = new Alter_generic_option_elemContext(this.context, this.state); - this.enterRule(localContext, 374, PostgreSQLParser.RULE_alter_generic_option_elem); + this.enterRule(localContext, 376, PostgreSQLParser.RULE_alter_generic_option_elem); try { - this.state = 4036; + this.state = 4029; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4029; + this.state = 4022; this.generic_option_elem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4030; + this.state = 4023; this.match(PostgreSQLParser.KW_SET); - this.state = 4031; + this.state = 4024; this.generic_option_elem(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4032; + this.state = 4025; this.match(PostgreSQLParser.KW_ADD); - this.state = 4033; + this.state = 4026; this.generic_option_elem(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4034; + this.state = 4027; this.match(PostgreSQLParser.KW_DROP); - this.state = 4035; + this.state = 4028; this.generic_option_elem(); } break; @@ -17970,13 +17543,13 @@ export class PostgreSQLParser extends antlr.Parser { } public generic_option_elem(): Generic_option_elemContext { let localContext = new Generic_option_elemContext(this.context, this.state); - this.enterRule(localContext, 376, PostgreSQLParser.RULE_generic_option_elem); + this.enterRule(localContext, 378, PostgreSQLParser.RULE_generic_option_elem); try { this.enterOuterAlt(localContext, 1); { - this.state = 4038; + this.state = 4031; this.generic_option_name(); - this.state = 4039; + this.state = 4032; this.generic_option_arg(); } } @@ -17996,11 +17569,11 @@ export class PostgreSQLParser extends antlr.Parser { } public generic_option_name(): Generic_option_nameContext { let localContext = new Generic_option_nameContext(this.context, this.state); - this.enterRule(localContext, 378, PostgreSQLParser.RULE_generic_option_name); + this.enterRule(localContext, 380, PostgreSQLParser.RULE_generic_option_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 4041; + this.state = 4034; this.collabel(); } } @@ -18020,11 +17593,11 @@ export class PostgreSQLParser extends antlr.Parser { } public generic_option_arg(): Generic_option_argContext { let localContext = new Generic_option_argContext(this.context, this.state); - this.enterRule(localContext, 380, PostgreSQLParser.RULE_generic_option_arg); + this.enterRule(localContext, 382, PostgreSQLParser.RULE_generic_option_arg); try { this.enterOuterAlt(localContext, 1); { - this.state = 4043; + this.state = 4036; this.sconst(); } } @@ -18044,61 +17617,61 @@ export class PostgreSQLParser extends antlr.Parser { } public createforeignserverstmt(): CreateforeignserverstmtContext { let localContext = new CreateforeignserverstmtContext(this.context, this.state); - this.enterRule(localContext, 382, PostgreSQLParser.RULE_createforeignserverstmt); + this.enterRule(localContext, 384, PostgreSQLParser.RULE_createforeignserverstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4045; + this.state = 4038; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4046; + this.state = 4039; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4048; + this.state = 4041; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 4047; + this.state = 4040; this.opt_if_not_exists(); } break; } - this.state = 4050; + this.state = 4043; this.name(); - this.state = 4052; + this.state = 4045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 4051; + this.state = 4044; this.opt_type(); } } - this.state = 4055; + this.state = 4048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 375) { { - this.state = 4054; + this.state = 4047; this.opt_foreign_server_version(); } } - this.state = 4057; + this.state = 4050; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4058; + this.state = 4051; this.match(PostgreSQLParser.KW_DATA); - this.state = 4059; + this.state = 4052; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 4060; + this.state = 4053; this.name(); - this.state = 4062; + this.state = 4055; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 4061; + this.state = 4054; this.create_generic_options(); } break; @@ -18121,13 +17694,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_type(): Opt_typeContext { let localContext = new Opt_typeContext(this.context, this.state); - this.enterRule(localContext, 384, PostgreSQLParser.RULE_opt_type); + this.enterRule(localContext, 386, PostgreSQLParser.RULE_opt_type); try { this.enterOuterAlt(localContext, 1); { - this.state = 4064; + this.state = 4057; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4065; + this.state = 4058; this.sconst(); } } @@ -18147,13 +17720,13 @@ export class PostgreSQLParser extends antlr.Parser { } public foreign_server_version(): Foreign_server_versionContext { let localContext = new Foreign_server_versionContext(this.context, this.state); - this.enterRule(localContext, 386, PostgreSQLParser.RULE_foreign_server_version); + this.enterRule(localContext, 388, PostgreSQLParser.RULE_foreign_server_version); try { this.enterOuterAlt(localContext, 1); { - this.state = 4067; + this.state = 4060; this.match(PostgreSQLParser.KW_VERSION); - this.state = 4070; + this.state = 4063; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -18161,13 +17734,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.BeginDollarStringConstant: case PostgreSQLParser.EscapeStringConstant: { - this.state = 4068; + this.state = 4061; this.sconst(); } break; case PostgreSQLParser.KW_NULL: { - this.state = 4069; + this.state = 4062; this.match(PostgreSQLParser.KW_NULL); } break; @@ -18192,11 +17765,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_foreign_server_version(): Opt_foreign_server_versionContext { let localContext = new Opt_foreign_server_versionContext(this.context, this.state); - this.enterRule(localContext, 388, PostgreSQLParser.RULE_opt_foreign_server_version); + this.enterRule(localContext, 390, PostgreSQLParser.RULE_opt_foreign_server_version); try { this.enterOuterAlt(localContext, 1); { - this.state = 4072; + this.state = 4065; this.foreign_server_version(); } } @@ -18216,35 +17789,35 @@ export class PostgreSQLParser extends antlr.Parser { } public alterforeignserverstmt(): AlterforeignserverstmtContext { let localContext = new AlterforeignserverstmtContext(this.context, this.state); - this.enterRule(localContext, 390, PostgreSQLParser.RULE_alterforeignserverstmt); + this.enterRule(localContext, 392, PostgreSQLParser.RULE_alterforeignserverstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 4074; + this.state = 4067; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4075; + this.state = 4068; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4076; + this.state = 4069; this.name(); - this.state = 4082; + this.state = 4075; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_OPTIONS: { - this.state = 4077; + this.state = 4070; this.alter_generic_options(); } break; case PostgreSQLParser.KW_VERSION: { - this.state = 4078; + this.state = 4071; this.foreign_server_version(); - this.state = 4080; + this.state = 4073; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 312, this.context) ) { case 1: { - this.state = 4079; + this.state = 4072; this.alter_generic_options(); } break; @@ -18272,67 +17845,68 @@ export class PostgreSQLParser extends antlr.Parser { } public createforeigntablestmt(): CreateforeigntablestmtContext { let localContext = new CreateforeigntablestmtContext(this.context, this.state); - this.enterRule(localContext, 392, PostgreSQLParser.RULE_createforeigntablestmt); + this.enterRule(localContext, 394, PostgreSQLParser.RULE_createforeigntablestmt); let _la: number; try { - this.state = 4123; + this.state = 4116; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: + localContext = new CreateForeignTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4084; + this.state = 4077; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4085; + this.state = 4078; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4086; + this.state = 4079; this.match(PostgreSQLParser.KW_TABLE); - this.state = 4088; + this.state = 4081; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 4087; + this.state = 4080; this.opt_if_not_exists(); } break; } - this.state = 4090; + this.state = 4083; this.table_name_create(); - this.state = 4091; + this.state = 4084; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4093; + this.state = 4086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 1360008709) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491969) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 24575) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 4092; + this.state = 4085; this.opttableelementlist(); } } - this.state = 4095; + this.state = 4088; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 4097; + this.state = 4090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 4096; + this.state = 4089; this.optinherit(); } } - this.state = 4099; + this.state = 4092; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4100; + this.state = 4093; this.name(); - this.state = 4102; + this.state = 4095; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 4101; + this.state = 4094; this.create_generic_options(); } break; @@ -18340,54 +17914,55 @@ export class PostgreSQLParser extends antlr.Parser { } break; case 2: + localContext = new CreatePartitionForeignTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4104; + this.state = 4097; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4105; + this.state = 4098; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4106; + this.state = 4099; this.match(PostgreSQLParser.KW_TABLE); - this.state = 4108; + this.state = 4101; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 4107; + this.state = 4100; this.opt_if_not_exists(); } break; } - this.state = 4110; + this.state = 4103; this.table_name_create(); - this.state = 4111; + this.state = 4104; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 4112; + this.state = 4105; this.match(PostgreSQLParser.KW_OF); - this.state = 4113; + this.state = 4106; this.table_name(); - this.state = 4115; + this.state = 4108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4114; + this.state = 4107; this.opttypedtableelementlist(); } } - this.state = 4117; + this.state = 4110; this.partitionboundspec(); - this.state = 4118; + this.state = 4111; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4119; + this.state = 4112; this.name(); - this.state = 4121; + this.state = 4114; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 4120; + this.state = 4113; this.create_generic_options(); } break; @@ -18412,45 +17987,45 @@ export class PostgreSQLParser extends antlr.Parser { } public importforeignschemastmt(): ImportforeignschemastmtContext { let localContext = new ImportforeignschemastmtContext(this.context, this.state); - this.enterRule(localContext, 394, PostgreSQLParser.RULE_importforeignschemastmt); + this.enterRule(localContext, 396, PostgreSQLParser.RULE_importforeignschemastmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4125; + this.state = 4118; this.match(PostgreSQLParser.KW_IMPORT); - this.state = 4126; + this.state = 4119; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4127; + this.state = 4120; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 4128; + this.state = 4121; this.schema_name(); - this.state = 4130; + this.state = 4123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59 || _la === 74) { { - this.state = 4129; + this.state = 4122; this.import_qualification(); } } - this.state = 4132; + this.state = 4125; this.match(PostgreSQLParser.KW_FROM); - this.state = 4133; + this.state = 4126; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4134; + this.state = 4127; this.name(); - this.state = 4135; + this.state = 4128; this.match(PostgreSQLParser.KW_INTO); - this.state = 4136; + this.state = 4129; this.name(); - this.state = 4138; + this.state = 4131; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 4137; + this.state = 4130; this.create_generic_options(); } break; @@ -18473,24 +18048,24 @@ export class PostgreSQLParser extends antlr.Parser { } public import_qualification_type(): Import_qualification_typeContext { let localContext = new Import_qualification_typeContext(this.context, this.state); - this.enterRule(localContext, 396, PostgreSQLParser.RULE_import_qualification_type); + this.enterRule(localContext, 398, PostgreSQLParser.RULE_import_qualification_type); try { - this.state = 4143; + this.state = 4136; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_LIMIT: this.enterOuterAlt(localContext, 1); { - this.state = 4140; + this.state = 4133; this.match(PostgreSQLParser.KW_LIMIT); - this.state = 4141; + this.state = 4134; this.match(PostgreSQLParser.KW_TO); } break; case PostgreSQLParser.KW_EXCEPT: this.enterOuterAlt(localContext, 2); { - this.state = 4142; + this.state = 4135; this.match(PostgreSQLParser.KW_EXCEPT); } break; @@ -18514,17 +18089,17 @@ export class PostgreSQLParser extends antlr.Parser { } public import_qualification(): Import_qualificationContext { let localContext = new Import_qualificationContext(this.context, this.state); - this.enterRule(localContext, 398, PostgreSQLParser.RULE_import_qualification); + this.enterRule(localContext, 400, PostgreSQLParser.RULE_import_qualification); try { this.enterOuterAlt(localContext, 1); { - this.state = 4145; + this.state = 4138; this.import_qualification_type(); - this.state = 4146; + this.state = 4139; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4147; + this.state = 4140; this.relation_expr_list(); - this.state = 4148; + this.state = 4141; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -18544,41 +18119,41 @@ export class PostgreSQLParser extends antlr.Parser { } public createusermappingstmt(): CreateusermappingstmtContext { let localContext = new CreateusermappingstmtContext(this.context, this.state); - this.enterRule(localContext, 400, PostgreSQLParser.RULE_createusermappingstmt); + this.enterRule(localContext, 402, PostgreSQLParser.RULE_createusermappingstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4150; + this.state = 4143; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4151; + this.state = 4144; this.match(PostgreSQLParser.KW_USER); - this.state = 4152; + this.state = 4145; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 4154; + this.state = 4147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 4153; + this.state = 4146; this.opt_if_not_exists(); } } - this.state = 4156; + this.state = 4149; this.match(PostgreSQLParser.KW_FOR); - this.state = 4157; + this.state = 4150; this.auth_ident(); - this.state = 4158; + this.state = 4151; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4159; + this.state = 4152; this.name(); - this.state = 4161; + this.state = 4154; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 4160; + this.state = 4153; this.create_generic_options(); } break; @@ -18601,9 +18176,9 @@ export class PostgreSQLParser extends antlr.Parser { } public auth_ident(): Auth_identContext { let localContext = new Auth_identContext(this.context, this.state); - this.enterRule(localContext, 402, PostgreSQLParser.RULE_auth_ident); + this.enterRule(localContext, 404, PostgreSQLParser.RULE_auth_ident); try { - this.state = 4165; + this.state = 4158; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -19033,14 +18608,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 4163; + this.state = 4156; this.rolespec(); } break; case PostgreSQLParser.KW_USER: this.enterOuterAlt(localContext, 2); { - this.state = 4164; + this.state = 4157; this.match(PostgreSQLParser.KW_USER); } break; @@ -19064,25 +18639,25 @@ export class PostgreSQLParser extends antlr.Parser { } public alterusermappingstmt(): AlterusermappingstmtContext { let localContext = new AlterusermappingstmtContext(this.context, this.state); - this.enterRule(localContext, 404, PostgreSQLParser.RULE_alterusermappingstmt); + this.enterRule(localContext, 406, PostgreSQLParser.RULE_alterusermappingstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 4167; + this.state = 4160; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4168; + this.state = 4161; this.match(PostgreSQLParser.KW_USER); - this.state = 4169; + this.state = 4162; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 4170; + this.state = 4163; this.match(PostgreSQLParser.KW_FOR); - this.state = 4171; + this.state = 4164; this.auth_ident(); - this.state = 4172; + this.state = 4165; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4173; + this.state = 4166; this.name(); - this.state = 4174; + this.state = 4167; this.alter_generic_options(); } } @@ -19102,67 +18677,67 @@ export class PostgreSQLParser extends antlr.Parser { } public createpolicystmt(): CreatepolicystmtContext { let localContext = new CreatepolicystmtContext(this.context, this.state); - this.enterRule(localContext, 406, PostgreSQLParser.RULE_createpolicystmt); + this.enterRule(localContext, 408, PostgreSQLParser.RULE_createpolicystmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4176; + this.state = 4169; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4177; + this.state = 4170; this.match(PostgreSQLParser.KW_POLICY); - this.state = 4178; + this.state = 4171; this.name(); - this.state = 4179; + this.state = 4172; this.match(PostgreSQLParser.KW_ON); - this.state = 4180; + this.state = 4173; this.qualified_name(); - this.state = 4182; + this.state = 4175; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 4181; + this.state = 4174; this.rowsecuritydefaultpermissive(); } break; } - this.state = 4185; + this.state = 4178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 4184; + this.state = 4177; this.rowsecuritydefaultforcmd(); } } - this.state = 4188; + this.state = 4181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 4187; + this.state = 4180; this.rowsecuritydefaulttorole(); } } - this.state = 4191; + this.state = 4184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 4190; + this.state = 4183; this.rowsecurityoptionalexpr(); } } - this.state = 4194; + this.state = 4187; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: { - this.state = 4193; + this.state = 4186; this.rowsecurityoptionalwithcheck(); } break; @@ -19185,47 +18760,47 @@ export class PostgreSQLParser extends antlr.Parser { } public alterpolicystmt(): AlterpolicystmtContext { let localContext = new AlterpolicystmtContext(this.context, this.state); - this.enterRule(localContext, 408, PostgreSQLParser.RULE_alterpolicystmt); + this.enterRule(localContext, 410, PostgreSQLParser.RULE_alterpolicystmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4196; + this.state = 4189; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4197; + this.state = 4190; this.match(PostgreSQLParser.KW_POLICY); - this.state = 4198; + this.state = 4191; this.name(); - this.state = 4199; + this.state = 4192; this.match(PostgreSQLParser.KW_ON); - this.state = 4200; + this.state = 4193; this.qualified_name(); - this.state = 4202; + this.state = 4195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 4201; + this.state = 4194; this.rowsecurityoptionaltorole(); } } - this.state = 4205; + this.state = 4198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 4204; + this.state = 4197; this.rowsecurityoptionalexpr(); } } - this.state = 4208; + this.state = 4201; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { case 1: { - this.state = 4207; + this.state = 4200; this.rowsecurityoptionalwithcheck(); } break; @@ -19248,28 +18823,28 @@ export class PostgreSQLParser extends antlr.Parser { } public alterprocedurestmt(): AlterprocedurestmtContext { let localContext = new AlterprocedurestmtContext(this.context, this.state); - this.enterRule(localContext, 410, PostgreSQLParser.RULE_alterprocedurestmt); + this.enterRule(localContext, 412, PostgreSQLParser.RULE_alterprocedurestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4210; + this.state = 4203; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4211; + this.state = 4204; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 4212; + this.state = 4205; this.procedure_name(); - this.state = 4214; + this.state = 4207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4213; + this.state = 4206; this.func_args(); } } - this.state = 4216; + this.state = 4209; this.procedure_cluase(); } } @@ -19289,40 +18864,40 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_cluase(): Procedure_cluaseContext { let localContext = new Procedure_cluaseContext(this.context, this.state); - this.enterRule(localContext, 412, PostgreSQLParser.RULE_procedure_cluase); + this.enterRule(localContext, 414, PostgreSQLParser.RULE_procedure_cluase); let _la: number; try { let alternative: number; - this.state = 4244; + this.state = 4237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4218; + this.state = 4211; this.procedure_action(); - this.state = 4222; + this.state = 4215; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 341, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 337, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4219; + this.state = 4212; this.procedure_action(); } } } - this.state = 4224; + this.state = 4217; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 341, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 337, this.context); } - this.state = 4226; + this.state = 4219; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { case 1: { - this.state = 4225; + this.state = 4218; this.match(PostgreSQLParser.KW_RESTRICT); } break; @@ -19332,56 +18907,56 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4228; + this.state = 4221; this.match(PostgreSQLParser.KW_RENAME); - this.state = 4229; + this.state = 4222; this.match(PostgreSQLParser.KW_TO); - this.state = 4230; + this.state = 4223; this.procedure_name_create(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4231; + this.state = 4224; this.match(PostgreSQLParser.KW_OWNER); - this.state = 4232; + this.state = 4225; this.match(PostgreSQLParser.KW_TO); - this.state = 4233; + this.state = 4226; this.rolespec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4234; + this.state = 4227; this.match(PostgreSQLParser.KW_SET); - this.state = 4235; + this.state = 4228; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 4236; + this.state = 4229; this.schema_name_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4238; + this.state = 4231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 4237; + this.state = 4230; this.match(PostgreSQLParser.KW_NO); } } - this.state = 4240; + this.state = 4233; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 4241; + this.state = 4234; this.match(PostgreSQLParser.KW_ON); - this.state = 4242; + this.state = 4235; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 4243; + this.state = 4236; this.name(); } break; @@ -19403,51 +18978,51 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_action(): Procedure_actionContext { let localContext = new Procedure_actionContext(this.context, this.state); - this.enterRule(localContext, 414, PostgreSQLParser.RULE_procedure_action); + this.enterRule(localContext, 416, PostgreSQLParser.RULE_procedure_action); let _la: number; try { - this.state = 4274; + this.state = 4267; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 349, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4256; + this.state = 4249; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: { - this.state = 4247; + this.state = 4240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 4246; + this.state = 4239; this.match(PostgreSQLParser.KW_EXTERNAL); } } - this.state = 4249; + this.state = 4242; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 4250; + this.state = 4243; this.match(PostgreSQLParser.KW_INVOKER); } break; case 2: { - this.state = 4252; + this.state = 4245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 4251; + this.state = 4244; this.match(PostgreSQLParser.KW_EXTERNAL); } } - this.state = 4254; + this.state = 4247; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 4255; + this.state = 4248; this.match(PostgreSQLParser.KW_DEFINER); } break; @@ -19457,11 +19032,11 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4258; + this.state = 4251; this.match(PostgreSQLParser.KW_SET); - this.state = 4259; + this.state = 4252; this.name(); - this.state = 4260; + this.state = 4253; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -19470,18 +19045,18 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4263; + this.state = 4256; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 4261; + this.state = 4254; this.name(); } break; case 2: { - this.state = 4262; + this.state = 4255; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -19491,31 +19066,31 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4265; + this.state = 4258; this.match(PostgreSQLParser.KW_SET); - this.state = 4266; + this.state = 4259; this.name(); - this.state = 4267; + this.state = 4260; this.match(PostgreSQLParser.KW_FROM); - this.state = 4268; + this.state = 4261; this.match(PostgreSQLParser.KW_CURRENT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4270; + this.state = 4263; this.match(PostgreSQLParser.KW_RESET); - this.state = 4271; + this.state = 4264; this.name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4272; + this.state = 4265; this.match(PostgreSQLParser.KW_RESET); - this.state = 4273; + this.state = 4266; this.match(PostgreSQLParser.KW_ALL); } break; @@ -19537,17 +19112,17 @@ export class PostgreSQLParser extends antlr.Parser { } public rowsecurityoptionalexpr(): RowsecurityoptionalexprContext { let localContext = new RowsecurityoptionalexprContext(this.context, this.state); - this.enterRule(localContext, 416, PostgreSQLParser.RULE_rowsecurityoptionalexpr); + this.enterRule(localContext, 418, PostgreSQLParser.RULE_rowsecurityoptionalexpr); try { this.enterOuterAlt(localContext, 1); { - this.state = 4276; + this.state = 4269; this.match(PostgreSQLParser.KW_USING); - this.state = 4277; + this.state = 4270; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4278; + this.state = 4271; this.a_expr(); - this.state = 4279; + this.state = 4272; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -19567,19 +19142,19 @@ export class PostgreSQLParser extends antlr.Parser { } public rowsecurityoptionalwithcheck(): RowsecurityoptionalwithcheckContext { let localContext = new RowsecurityoptionalwithcheckContext(this.context, this.state); - this.enterRule(localContext, 418, PostgreSQLParser.RULE_rowsecurityoptionalwithcheck); + this.enterRule(localContext, 420, PostgreSQLParser.RULE_rowsecurityoptionalwithcheck); try { this.enterOuterAlt(localContext, 1); { - this.state = 4281; + this.state = 4274; this.match(PostgreSQLParser.KW_WITH); - this.state = 4282; + this.state = 4275; this.match(PostgreSQLParser.KW_CHECK); - this.state = 4283; + this.state = 4276; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4284; + this.state = 4277; this.a_expr(); - this.state = 4285; + this.state = 4278; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -19599,13 +19174,13 @@ export class PostgreSQLParser extends antlr.Parser { } public rowsecuritydefaulttorole(): RowsecuritydefaulttoroleContext { let localContext = new RowsecuritydefaulttoroleContext(this.context, this.state); - this.enterRule(localContext, 420, PostgreSQLParser.RULE_rowsecuritydefaulttorole); + this.enterRule(localContext, 422, PostgreSQLParser.RULE_rowsecuritydefaulttorole); try { this.enterOuterAlt(localContext, 1); { - this.state = 4287; + this.state = 4280; this.match(PostgreSQLParser.KW_TO); - this.state = 4288; + this.state = 4281; this.role_list(); } } @@ -19625,13 +19200,13 @@ export class PostgreSQLParser extends antlr.Parser { } public rowsecurityoptionaltorole(): RowsecurityoptionaltoroleContext { let localContext = new RowsecurityoptionaltoroleContext(this.context, this.state); - this.enterRule(localContext, 422, PostgreSQLParser.RULE_rowsecurityoptionaltorole); + this.enterRule(localContext, 424, PostgreSQLParser.RULE_rowsecurityoptionaltorole); try { this.enterOuterAlt(localContext, 1); { - this.state = 4290; + this.state = 4283; this.match(PostgreSQLParser.KW_TO); - this.state = 4291; + this.state = 4284; this.role_list(); } } @@ -19651,24 +19226,24 @@ export class PostgreSQLParser extends antlr.Parser { } public rowsecuritydefaultpermissive(): RowsecuritydefaultpermissiveContext { let localContext = new RowsecuritydefaultpermissiveContext(this.context, this.state); - this.enterRule(localContext, 424, PostgreSQLParser.RULE_rowsecuritydefaultpermissive); + this.enterRule(localContext, 426, PostgreSQLParser.RULE_rowsecuritydefaultpermissive); try { this.enterOuterAlt(localContext, 1); { - this.state = 4293; + this.state = 4286; this.match(PostgreSQLParser.KW_AS); - this.state = 4297; + this.state = 4290; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_PERMISSIVE: { - this.state = 4294; + this.state = 4287; this.match(PostgreSQLParser.KW_PERMISSIVE); } break; case PostgreSQLParser.KW_RESTRICTIVE: { - this.state = 4295; + this.state = 4288; this.match(PostgreSQLParser.KW_RESTRICTIVE); } break; @@ -19746,7 +19321,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 4296; + this.state = 4289; this.identifier(); } break; @@ -19771,13 +19346,13 @@ export class PostgreSQLParser extends antlr.Parser { } public rowsecuritydefaultforcmd(): RowsecuritydefaultforcmdContext { let localContext = new RowsecuritydefaultforcmdContext(this.context, this.state); - this.enterRule(localContext, 426, PostgreSQLParser.RULE_rowsecuritydefaultforcmd); + this.enterRule(localContext, 428, PostgreSQLParser.RULE_rowsecuritydefaultforcmd); try { this.enterOuterAlt(localContext, 1); { - this.state = 4299; + this.state = 4292; this.match(PostgreSQLParser.KW_FOR); - this.state = 4300; + this.state = 4293; this.row_security_cmd(); } } @@ -19797,12 +19372,12 @@ export class PostgreSQLParser extends antlr.Parser { } public row_security_cmd(): Row_security_cmdContext { let localContext = new Row_security_cmdContext(this.context, this.state); - this.enterRule(localContext, 428, PostgreSQLParser.RULE_row_security_cmd); + this.enterRule(localContext, 430, PostgreSQLParser.RULE_row_security_cmd); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4302; + this.state = 4295; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -19829,25 +19404,25 @@ export class PostgreSQLParser extends antlr.Parser { } public createamstmt(): CreateamstmtContext { let localContext = new CreateamstmtContext(this.context, this.state); - this.enterRule(localContext, 430, PostgreSQLParser.RULE_createamstmt); + this.enterRule(localContext, 432, PostgreSQLParser.RULE_createamstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 4304; + this.state = 4297; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4305; + this.state = 4298; this.match(PostgreSQLParser.KW_ACCESS); - this.state = 4306; + this.state = 4299; this.match(PostgreSQLParser.KW_METHOD); - this.state = 4307; + this.state = 4300; this.name(); - this.state = 4308; + this.state = 4301; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4309; + this.state = 4302; this.am_type(); - this.state = 4310; + this.state = 4303; this.match(PostgreSQLParser.KW_HANDLER); - this.state = 4311; + this.state = 4304; this.handler_name(); } } @@ -19867,12 +19442,12 @@ export class PostgreSQLParser extends antlr.Parser { } public am_type(): Am_typeContext { let localContext = new Am_typeContext(this.context, this.state); - this.enterRule(localContext, 432, PostgreSQLParser.RULE_am_type); + this.enterRule(localContext, 434, PostgreSQLParser.RULE_am_type); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4313; + this.state = 4306; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 226)) { this.errorHandler.recoverInline(this); @@ -19899,159 +19474,159 @@ export class PostgreSQLParser extends antlr.Parser { } public createtrigstmt(): CreatetrigstmtContext { let localContext = new CreatetrigstmtContext(this.context, this.state); - this.enterRule(localContext, 434, PostgreSQLParser.RULE_createtrigstmt); + this.enterRule(localContext, 436, PostgreSQLParser.RULE_createtrigstmt); let _la: number; try { - this.state = 4369; + this.state = 4362; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4315; + this.state = 4308; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4317; + this.state = 4310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4316; + this.state = 4309; this.opt_or_replace(); } } - this.state = 4319; + this.state = 4312; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 4320; + this.state = 4313; this.name(); - this.state = 4321; + this.state = 4314; this.triggeractiontime(); - this.state = 4322; + this.state = 4315; this.triggerevents(); - this.state = 4323; + this.state = 4316; this.match(PostgreSQLParser.KW_ON); - this.state = 4324; + this.state = 4317; this.table_name(); - this.state = 4326; + this.state = 4319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 447) { { - this.state = 4325; + this.state = 4318; this.triggerreferencing(); } } - this.state = 4329; + this.state = 4322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 4328; + this.state = 4321; this.triggerforspec(); } } - this.state = 4332; + this.state = 4325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 4331; + this.state = 4324; this.triggerwhen(); } } - this.state = 4334; + this.state = 4327; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 4335; + this.state = 4328; this.function_or_procedure(); - this.state = 4336; + this.state = 4329; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4337; + this.state = 4330; this.triggerfuncargs(); - this.state = 4338; + this.state = 4331; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4340; + this.state = 4333; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4342; + this.state = 4335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4341; + this.state = 4334; this.opt_or_replace(); } } - this.state = 4345; + this.state = 4338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 4344; + this.state = 4337; this.match(PostgreSQLParser.KW_CONSTRAINT); } } - this.state = 4347; + this.state = 4340; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 4348; + this.state = 4341; this.name(); - this.state = 4349; + this.state = 4342; this.triggeractiontime(); - this.state = 4350; + this.state = 4343; this.triggerevents(); - this.state = 4351; + this.state = 4344; this.match(PostgreSQLParser.KW_ON); - this.state = 4352; + this.state = 4345; this.table_name(); - this.state = 4354; + this.state = 4347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 4353; + this.state = 4346; this.optconstrfromtable(); } } - this.state = 4356; + this.state = 4349; this.constraintattributespec(); - this.state = 4358; + this.state = 4351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 4357; + this.state = 4350; this.foreachrow(); } } - this.state = 4361; + this.state = 4354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 4360; + this.state = 4353; this.triggerwhen(); } } - this.state = 4363; + this.state = 4356; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 4364; + this.state = 4357; this.function_or_procedure(); - this.state = 4365; + this.state = 4358; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4366; + this.state = 4359; this.triggerfuncargs(); - this.state = 4367; + this.state = 4360; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -20073,31 +19648,31 @@ export class PostgreSQLParser extends antlr.Parser { } public triggeractiontime(): TriggeractiontimeContext { let localContext = new TriggeractiontimeContext(this.context, this.state); - this.enterRule(localContext, 436, PostgreSQLParser.RULE_triggeractiontime); + this.enterRule(localContext, 438, PostgreSQLParser.RULE_triggeractiontime); try { - this.state = 4375; + this.state = 4368; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_BEFORE: this.enterOuterAlt(localContext, 1); { - this.state = 4371; + this.state = 4364; this.match(PostgreSQLParser.KW_BEFORE); } break; case PostgreSQLParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 4372; + this.state = 4365; this.match(PostgreSQLParser.KW_AFTER); } break; case PostgreSQLParser.KW_INSTEAD: this.enterOuterAlt(localContext, 3); { - this.state = 4373; + this.state = 4366; this.match(PostgreSQLParser.KW_INSTEAD); - this.state = 4374; + this.state = 4367; this.match(PostgreSQLParser.KW_OF); } break; @@ -20121,24 +19696,24 @@ export class PostgreSQLParser extends antlr.Parser { } public foreachrow(): ForeachrowContext { let localContext = new ForeachrowContext(this.context, this.state); - this.enterRule(localContext, 438, PostgreSQLParser.RULE_foreachrow); + this.enterRule(localContext, 440, PostgreSQLParser.RULE_foreachrow); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4377; + this.state = 4370; this.match(PostgreSQLParser.KW_FOR); - this.state = 4379; + this.state = 4372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 4378; + this.state = 4371; this.match(PostgreSQLParser.KW_EACH); } } - this.state = 4381; + this.state = 4374; this.roworstatment(); } } @@ -20158,12 +19733,12 @@ export class PostgreSQLParser extends antlr.Parser { } public roworstatment(): RoworstatmentContext { let localContext = new RoworstatmentContext(this.context, this.state); - this.enterRule(localContext, 440, PostgreSQLParser.RULE_roworstatment); + this.enterRule(localContext, 442, PostgreSQLParser.RULE_roworstatment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4383; + this.state = 4376; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -20190,26 +19765,26 @@ export class PostgreSQLParser extends antlr.Parser { } public triggerevents(): TriggereventsContext { let localContext = new TriggereventsContext(this.context, this.state); - this.enterRule(localContext, 442, PostgreSQLParser.RULE_triggerevents); + this.enterRule(localContext, 444, PostgreSQLParser.RULE_triggerevents); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4385; + this.state = 4378; this.triggeroneevent(); - this.state = 4390; + this.state = 4383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 4386; + this.state = 4379; this.match(PostgreSQLParser.KW_OR); - this.state = 4387; + this.state = 4380; this.triggeroneevent(); } } - this.state = 4392; + this.state = 4385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20231,47 +19806,47 @@ export class PostgreSQLParser extends antlr.Parser { } public triggeroneevent(): TriggeroneeventContext { let localContext = new TriggeroneeventContext(this.context, this.state); - this.enterRule(localContext, 444, PostgreSQLParser.RULE_triggeroneevent); + this.enterRule(localContext, 446, PostgreSQLParser.RULE_triggeroneevent); try { - this.state = 4400; + this.state = 4393; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4393; + this.state = 4386; this.match(PostgreSQLParser.KW_INSERT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4394; + this.state = 4387; this.match(PostgreSQLParser.KW_DELETE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4395; + this.state = 4388; this.match(PostgreSQLParser.KW_UPDATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4396; + this.state = 4389; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 4397; + this.state = 4390; this.match(PostgreSQLParser.KW_OF); - this.state = 4398; - this.columnlist(); + this.state = 4391; + this.column_list(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4399; + this.state = 4392; this.match(PostgreSQLParser.KW_TRUNCATE); } break; @@ -20293,13 +19868,13 @@ export class PostgreSQLParser extends antlr.Parser { } public triggerreferencing(): TriggerreferencingContext { let localContext = new TriggerreferencingContext(this.context, this.state); - this.enterRule(localContext, 446, PostgreSQLParser.RULE_triggerreferencing); + this.enterRule(localContext, 448, PostgreSQLParser.RULE_triggerreferencing); try { this.enterOuterAlt(localContext, 1); { - this.state = 4402; + this.state = 4395; this.match(PostgreSQLParser.KW_REFERENCING); - this.state = 4403; + this.state = 4396; this.triggertransitions(); } } @@ -20319,22 +19894,22 @@ export class PostgreSQLParser extends antlr.Parser { } public triggertransitions(): TriggertransitionsContext { let localContext = new TriggertransitionsContext(this.context, this.state); - this.enterRule(localContext, 448, PostgreSQLParser.RULE_triggertransitions); + this.enterRule(localContext, 450, PostgreSQLParser.RULE_triggertransitions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4406; + this.state = 4399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4405; + this.state = 4398; this.triggertransition(); } } - this.state = 4408; + this.state = 4401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 448 || _la === 449); @@ -20356,26 +19931,26 @@ export class PostgreSQLParser extends antlr.Parser { } public triggertransition(): TriggertransitionContext { let localContext = new TriggertransitionContext(this.context, this.state); - this.enterRule(localContext, 450, PostgreSQLParser.RULE_triggertransition); + this.enterRule(localContext, 452, PostgreSQLParser.RULE_triggertransition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4410; + this.state = 4403; this.transitionoldornew(); - this.state = 4411; + this.state = 4404; this.transitionrowortable(); - this.state = 4413; + this.state = 4406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 4412; + this.state = 4405; this.opt_as(); } } - this.state = 4415; + this.state = 4408; this.transitionrelname(); } } @@ -20395,12 +19970,12 @@ export class PostgreSQLParser extends antlr.Parser { } public transitionoldornew(): TransitionoldornewContext { let localContext = new TransitionoldornewContext(this.context, this.state); - this.enterRule(localContext, 452, PostgreSQLParser.RULE_transitionoldornew); + this.enterRule(localContext, 454, PostgreSQLParser.RULE_transitionoldornew); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4417; + this.state = 4410; _la = this.tokenStream.LA(1); if(!(_la === 448 || _la === 449)) { this.errorHandler.recoverInline(this); @@ -20427,12 +20002,12 @@ export class PostgreSQLParser extends antlr.Parser { } public transitionrowortable(): TransitionrowortableContext { let localContext = new TransitionrowortableContext(this.context, this.state); - this.enterRule(localContext, 454, PostgreSQLParser.RULE_transitionrowortable); + this.enterRule(localContext, 456, PostgreSQLParser.RULE_transitionrowortable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4419; + this.state = 4412; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -20459,11 +20034,11 @@ export class PostgreSQLParser extends antlr.Parser { } public transitionrelname(): TransitionrelnameContext { let localContext = new TransitionrelnameContext(this.context, this.state); - this.enterRule(localContext, 456, PostgreSQLParser.RULE_transitionrelname); + this.enterRule(localContext, 458, PostgreSQLParser.RULE_transitionrelname); try { this.enterOuterAlt(localContext, 1); { - this.state = 4421; + this.state = 4414; this.colid(); } } @@ -20483,24 +20058,24 @@ export class PostgreSQLParser extends antlr.Parser { } public triggerforspec(): TriggerforspecContext { let localContext = new TriggerforspecContext(this.context, this.state); - this.enterRule(localContext, 458, PostgreSQLParser.RULE_triggerforspec); + this.enterRule(localContext, 460, PostgreSQLParser.RULE_triggerforspec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4423; + this.state = 4416; this.match(PostgreSQLParser.KW_FOR); - this.state = 4425; + this.state = 4418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 4424; + this.state = 4417; this.triggerforopteach(); } } - this.state = 4427; + this.state = 4420; this.triggerfortype(); } } @@ -20520,11 +20095,11 @@ export class PostgreSQLParser extends antlr.Parser { } public triggerforopteach(): TriggerforopteachContext { let localContext = new TriggerforopteachContext(this.context, this.state); - this.enterRule(localContext, 460, PostgreSQLParser.RULE_triggerforopteach); + this.enterRule(localContext, 462, PostgreSQLParser.RULE_triggerforopteach); try { this.enterOuterAlt(localContext, 1); { - this.state = 4429; + this.state = 4422; this.match(PostgreSQLParser.KW_EACH); } } @@ -20544,12 +20119,12 @@ export class PostgreSQLParser extends antlr.Parser { } public triggerfortype(): TriggerfortypeContext { let localContext = new TriggerfortypeContext(this.context, this.state); - this.enterRule(localContext, 462, PostgreSQLParser.RULE_triggerfortype); + this.enterRule(localContext, 464, PostgreSQLParser.RULE_triggerfortype); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4431; + this.state = 4424; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -20576,17 +20151,17 @@ export class PostgreSQLParser extends antlr.Parser { } public triggerwhen(): TriggerwhenContext { let localContext = new TriggerwhenContext(this.context, this.state); - this.enterRule(localContext, 464, PostgreSQLParser.RULE_triggerwhen); + this.enterRule(localContext, 466, PostgreSQLParser.RULE_triggerwhen); try { this.enterOuterAlt(localContext, 1); { - this.state = 4433; + this.state = 4426; this.match(PostgreSQLParser.KW_WHEN); - this.state = 4434; + this.state = 4427; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4435; + this.state = 4428; this.a_expr(); - this.state = 4436; + this.state = 4429; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -20606,26 +20181,26 @@ export class PostgreSQLParser extends antlr.Parser { } public function_or_procedure(): Function_or_procedureContext { let localContext = new Function_or_procedureContext(this.context, this.state); - this.enterRule(localContext, 466, PostgreSQLParser.RULE_function_or_procedure); + this.enterRule(localContext, 468, PostgreSQLParser.RULE_function_or_procedure); try { - this.state = 4442; + this.state = 4435; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FUNCTION: this.enterOuterAlt(localContext, 1); { - this.state = 4438; + this.state = 4431; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 4439; + this.state = 4432; this.function_name(); } break; case PostgreSQLParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 2); { - this.state = 4440; + this.state = 4433; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 4441; + this.state = 4434; this.procedure_name(); } break; @@ -20649,12 +20224,12 @@ export class PostgreSQLParser extends antlr.Parser { } public triggerfuncargs(): TriggerfuncargsContext { let localContext = new TriggerfuncargsContext(this.context, this.state); - this.enterRule(localContext, 468, PostgreSQLParser.RULE_triggerfuncargs); + this.enterRule(localContext, 470, PostgreSQLParser.RULE_triggerfuncargs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4446; + this.state = 4439; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: @@ -21149,7 +20724,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 4444; + this.state = 4437; this.triggerfuncarg(); } break; @@ -21162,19 +20737,19 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4452; + this.state = 4445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4448; + this.state = 4441; this.match(PostgreSQLParser.COMMA); - this.state = 4449; + this.state = 4442; this.triggerfuncarg(); } } - this.state = 4454; + this.state = 4447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21196,36 +20771,36 @@ export class PostgreSQLParser extends antlr.Parser { } public triggerfuncarg(): TriggerfuncargContext { let localContext = new TriggerfuncargContext(this.context, this.state); - this.enterRule(localContext, 470, PostgreSQLParser.RULE_triggerfuncarg); + this.enterRule(localContext, 472, PostgreSQLParser.RULE_triggerfuncarg); try { - this.state = 4459; + this.state = 4452; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 367, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4455; + this.state = 4448; this.iconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4456; + this.state = 4449; this.fconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4457; + this.state = 4450; this.sconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4458; + this.state = 4451; this.collabel(); } break; @@ -21247,13 +20822,13 @@ export class PostgreSQLParser extends antlr.Parser { } public optconstrfromtable(): OptconstrfromtableContext { let localContext = new OptconstrfromtableContext(this.context, this.state); - this.enterRule(localContext, 472, PostgreSQLParser.RULE_optconstrfromtable); + this.enterRule(localContext, 474, PostgreSQLParser.RULE_optconstrfromtable); try { this.enterOuterAlt(localContext, 1); { - this.state = 4461; + this.state = 4454; this.match(PostgreSQLParser.KW_FROM); - this.state = 4462; + this.state = 4455; this.qualified_name(); } } @@ -21273,26 +20848,26 @@ export class PostgreSQLParser extends antlr.Parser { } public constraintattributespec(): ConstraintattributespecContext { let localContext = new ConstraintattributespecContext(this.context, this.state); - this.enterRule(localContext, 474, PostgreSQLParser.RULE_constraintattributespec); + this.enterRule(localContext, 476, PostgreSQLParser.RULE_constraintattributespec); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4467; + this.state = 4460; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 372, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 368, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4464; + this.state = 4457; this.constraintattributeElem(); } } } - this.state = 4469; + this.state = 4462; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 372, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 368, this.context); } } } @@ -21312,60 +20887,60 @@ export class PostgreSQLParser extends antlr.Parser { } public constraintattributeElem(): ConstraintattributeElemContext { let localContext = new ConstraintattributeElemContext(this.context, this.state); - this.enterRule(localContext, 476, PostgreSQLParser.RULE_constraintattributeElem); + this.enterRule(localContext, 478, PostgreSQLParser.RULE_constraintattributeElem); try { - this.state = 4481; + this.state = 4474; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4470; + this.state = 4463; this.match(PostgreSQLParser.KW_NOT); - this.state = 4471; + this.state = 4464; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4472; + this.state = 4465; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4473; + this.state = 4466; this.match(PostgreSQLParser.KW_INITIALLY); - this.state = 4474; + this.state = 4467; this.match(PostgreSQLParser.KW_IMMEDIATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4475; + this.state = 4468; this.match(PostgreSQLParser.KW_INITIALLY); - this.state = 4476; + this.state = 4469; this.match(PostgreSQLParser.KW_DEFERRED); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4477; + this.state = 4470; this.match(PostgreSQLParser.KW_NOT); - this.state = 4478; + this.state = 4471; this.match(PostgreSQLParser.KW_VALID); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4479; + this.state = 4472; this.match(PostgreSQLParser.KW_NO); - this.state = 4480; + this.state = 4473; this.match(PostgreSQLParser.KW_INHERIT); } break; @@ -21387,62 +20962,62 @@ export class PostgreSQLParser extends antlr.Parser { } public createeventtrigstmt(): CreateeventtrigstmtContext { let localContext = new CreateeventtrigstmtContext(this.context, this.state); - this.enterRule(localContext, 478, PostgreSQLParser.RULE_createeventtrigstmt); + this.enterRule(localContext, 480, PostgreSQLParser.RULE_createeventtrigstmt); try { - this.state = 4507; + this.state = 4500; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4483; + this.state = 4476; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4484; + this.state = 4477; this.match(PostgreSQLParser.KW_EVENT); - this.state = 4485; + this.state = 4478; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 4486; + this.state = 4479; this.name(); - this.state = 4487; + this.state = 4480; this.match(PostgreSQLParser.KW_ON); - this.state = 4488; + this.state = 4481; this.collabel(); - this.state = 4489; + this.state = 4482; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 4490; + this.state = 4483; this.function_or_procedure(); - this.state = 4491; + this.state = 4484; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4492; + this.state = 4485; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4494; + this.state = 4487; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4495; + this.state = 4488; this.match(PostgreSQLParser.KW_EVENT); - this.state = 4496; + this.state = 4489; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 4497; + this.state = 4490; this.name(); - this.state = 4498; + this.state = 4491; this.match(PostgreSQLParser.KW_ON); - this.state = 4499; + this.state = 4492; this.collabel(); - this.state = 4500; + this.state = 4493; this.match(PostgreSQLParser.KW_WHEN); - this.state = 4501; + this.state = 4494; this.event_trigger_when_list(); - this.state = 4502; + this.state = 4495; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 4503; + this.state = 4496; this.function_or_procedure(); - this.state = 4504; + this.state = 4497; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4505; + this.state = 4498; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -21464,26 +21039,26 @@ export class PostgreSQLParser extends antlr.Parser { } public event_trigger_when_list(): Event_trigger_when_listContext { let localContext = new Event_trigger_when_listContext(this.context, this.state); - this.enterRule(localContext, 480, PostgreSQLParser.RULE_event_trigger_when_list); + this.enterRule(localContext, 482, PostgreSQLParser.RULE_event_trigger_when_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4509; + this.state = 4502; this.event_trigger_when_item(); - this.state = 4514; + this.state = 4507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 33) { { { - this.state = 4510; + this.state = 4503; this.match(PostgreSQLParser.KW_AND); - this.state = 4511; + this.state = 4504; this.event_trigger_when_item(); } } - this.state = 4516; + this.state = 4509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21505,19 +21080,19 @@ export class PostgreSQLParser extends antlr.Parser { } public event_trigger_when_item(): Event_trigger_when_itemContext { let localContext = new Event_trigger_when_itemContext(this.context, this.state); - this.enterRule(localContext, 482, PostgreSQLParser.RULE_event_trigger_when_item); + this.enterRule(localContext, 484, PostgreSQLParser.RULE_event_trigger_when_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 4517; + this.state = 4510; this.colid(); - this.state = 4518; + this.state = 4511; this.match(PostgreSQLParser.KW_IN); - this.state = 4519; + this.state = 4512; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4520; + this.state = 4513; this.event_trigger_value_list(); - this.state = 4521; + this.state = 4514; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -21537,26 +21112,26 @@ export class PostgreSQLParser extends antlr.Parser { } public event_trigger_value_list(): Event_trigger_value_listContext { let localContext = new Event_trigger_value_listContext(this.context, this.state); - this.enterRule(localContext, 484, PostgreSQLParser.RULE_event_trigger_value_list); + this.enterRule(localContext, 486, PostgreSQLParser.RULE_event_trigger_value_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4523; + this.state = 4516; this.sconst(); - this.state = 4528; + this.state = 4521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4524; + this.state = 4517; this.match(PostgreSQLParser.COMMA); - this.state = 4525; + this.state = 4518; this.sconst(); } } - this.state = 4530; + this.state = 4523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21578,19 +21153,19 @@ export class PostgreSQLParser extends antlr.Parser { } public altereventtrigstmt(): AltereventtrigstmtContext { let localContext = new AltereventtrigstmtContext(this.context, this.state); - this.enterRule(localContext, 486, PostgreSQLParser.RULE_altereventtrigstmt); + this.enterRule(localContext, 488, PostgreSQLParser.RULE_altereventtrigstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 4531; + this.state = 4524; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4532; + this.state = 4525; this.match(PostgreSQLParser.KW_EVENT); - this.state = 4533; + this.state = 4526; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 4534; + this.state = 4527; this.name(); - this.state = 4535; + this.state = 4528; this.enable_trigger(); } } @@ -21610,23 +21185,23 @@ export class PostgreSQLParser extends antlr.Parser { } public enable_trigger(): Enable_triggerContext { let localContext = new Enable_triggerContext(this.context, this.state); - this.enterRule(localContext, 488, PostgreSQLParser.RULE_enable_trigger); + this.enterRule(localContext, 490, PostgreSQLParser.RULE_enable_trigger); let _la: number; try { - this.state = 4542; + this.state = 4535; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ENABLE: this.enterOuterAlt(localContext, 1); { - this.state = 4537; + this.state = 4530; this.match(PostgreSQLParser.KW_ENABLE); - this.state = 4539; + this.state = 4532; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: { - this.state = 4538; + this.state = 4531; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -21643,7 +21218,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DISABLE: this.enterOuterAlt(localContext, 2); { - this.state = 4541; + this.state = 4534; this.match(PostgreSQLParser.KW_DISABLE); } break; @@ -21667,25 +21242,25 @@ export class PostgreSQLParser extends antlr.Parser { } public createassertionstmt(): CreateassertionstmtContext { let localContext = new CreateassertionstmtContext(this.context, this.state); - this.enterRule(localContext, 490, PostgreSQLParser.RULE_createassertionstmt); + this.enterRule(localContext, 492, PostgreSQLParser.RULE_createassertionstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 4544; + this.state = 4537; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4545; + this.state = 4538; this.match(PostgreSQLParser.KW_ASSERTION); - this.state = 4546; + this.state = 4539; this.any_name(); - this.state = 4547; + this.state = 4540; this.match(PostgreSQLParser.KW_CHECK); - this.state = 4548; + this.state = 4541; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4549; + this.state = 4542; this.a_expr(); - this.state = 4550; + this.state = 4543; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 4551; + this.state = 4544; this.constraintattributespec(); } } @@ -21705,173 +21280,190 @@ export class PostgreSQLParser extends antlr.Parser { } public definestmt(): DefinestmtContext { let localContext = new DefinestmtContext(this.context, this.state); - this.enterRule(localContext, 492, PostgreSQLParser.RULE_definestmt); + this.enterRule(localContext, 494, PostgreSQLParser.RULE_definestmt); let _la: number; try { - this.state = 4656; + this.state = 4649; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4553; + this.state = 4546; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4555; + this.state = 4548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4554; + this.state = 4547; this.opt_or_replace(); } } - this.state = 4557; + this.state = 4550; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 4558; + this.state = 4551; this.function_name(); - this.state = 4559; + this.state = 4552; this.aggr_args(); - this.state = 4560; + this.state = 4553; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4562; + this.state = 4555; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4564; + this.state = 4557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4563; + this.state = 4556; this.opt_or_replace(); } } - this.state = 4566; + this.state = 4559; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 4567; + this.state = 4560; this.function_name(); - this.state = 4568; + this.state = 4561; this.old_aggr_definition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4570; + this.state = 4563; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4571; + this.state = 4564; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4572; + this.state = 4565; this.any_operator(); - this.state = 4573; + this.state = 4566; this.definition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4575; + this.state = 4568; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4576; + this.state = 4569; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4577; + this.state = 4570; this.any_name(); - this.state = 4578; + this.state = 4571; this.definition(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4580; + this.state = 4573; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4581; + this.state = 4574; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4582; + this.state = 4575; this.any_name(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4583; + this.state = 4576; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4584; + this.state = 4577; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4585; + this.state = 4578; this.any_name(); - this.state = 4586; + this.state = 4579; this.match(PostgreSQLParser.KW_AS); - this.state = 4587; + this.state = 4580; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4589; + this.state = 4582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 4588; + this.state = 4581; this.opttablefuncelementlist(); } } - this.state = 4591; + this.state = 4584; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4593; + this.state = 4586; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4594; + this.state = 4587; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4595; + this.state = 4588; this.any_name(); - this.state = 4596; + this.state = 4589; this.match(PostgreSQLParser.KW_AS); - this.state = 4597; + this.state = 4590; this.match(PostgreSQLParser.KW_ENUM); - this.state = 4598; + this.state = 4591; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4600; + this.state = 4593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 558)) & ~0x1F) === 0 && ((1 << (_la - 558)) & 67108885) !== 0)) { { - this.state = 4599; + this.state = 4592; this.opt_enum_val_list(); } } - this.state = 4602; + this.state = 4595; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4604; + this.state = 4597; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4605; + this.state = 4598; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4606; + this.state = 4599; this.any_name(); - this.state = 4607; + this.state = 4600; this.match(PostgreSQLParser.KW_AS); - this.state = 4608; + this.state = 4601; this.match(PostgreSQLParser.KW_RANGE); - this.state = 4609; + this.state = 4602; this.definition(); } break; case 9: this.enterOuterAlt(localContext, 9); { + this.state = 4604; + this.match(PostgreSQLParser.KW_CREATE); + this.state = 4605; + this.match(PostgreSQLParser.KW_TEXT); + this.state = 4606; + this.match(PostgreSQLParser.KW_SEARCH); + this.state = 4607; + this.match(PostgreSQLParser.KW_PARSER); + this.state = 4608; + this.any_name(); + this.state = 4609; + this.definition(); + } + break; + case 10: + this.enterOuterAlt(localContext, 10); + { this.state = 4611; this.match(PostgreSQLParser.KW_CREATE); this.state = 4612; @@ -21879,15 +21471,15 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 4613; this.match(PostgreSQLParser.KW_SEARCH); this.state = 4614; - this.match(PostgreSQLParser.KW_PARSER); + this.match(PostgreSQLParser.KW_DICTIONARY); this.state = 4615; this.any_name(); this.state = 4616; this.definition(); } break; - case 10: - this.enterOuterAlt(localContext, 10); + case 11: + this.enterOuterAlt(localContext, 11); { this.state = 4618; this.match(PostgreSQLParser.KW_CREATE); @@ -21896,15 +21488,15 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 4620; this.match(PostgreSQLParser.KW_SEARCH); this.state = 4621; - this.match(PostgreSQLParser.KW_DICTIONARY); + this.match(PostgreSQLParser.KW_TEMPLATE); this.state = 4622; this.any_name(); this.state = 4623; this.definition(); } break; - case 11: - this.enterOuterAlt(localContext, 11); + case 12: + this.enterOuterAlt(localContext, 12); { this.state = 4625; this.match(PostgreSQLParser.KW_CREATE); @@ -21913,75 +21505,58 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 4627; this.match(PostgreSQLParser.KW_SEARCH); this.state = 4628; - this.match(PostgreSQLParser.KW_TEMPLATE); + this.match(PostgreSQLParser.KW_CONFIGURATION); this.state = 4629; this.any_name(); this.state = 4630; this.definition(); } break; - case 12: - this.enterOuterAlt(localContext, 12); + case 13: + this.enterOuterAlt(localContext, 13); { this.state = 4632; this.match(PostgreSQLParser.KW_CREATE); this.state = 4633; - this.match(PostgreSQLParser.KW_TEXT); - this.state = 4634; - this.match(PostgreSQLParser.KW_SEARCH); - this.state = 4635; - this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 4636; - this.any_name(); - this.state = 4637; - this.definition(); - } - break; - case 13: - this.enterOuterAlt(localContext, 13); - { - this.state = 4639; - this.match(PostgreSQLParser.KW_CREATE); - this.state = 4640; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 4642; + this.state = 4635; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 4641; + this.state = 4634; this.opt_if_not_exists(); } break; } - this.state = 4644; + this.state = 4637; this.any_name(); - this.state = 4645; + this.state = 4638; this.definition(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4647; + this.state = 4640; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4648; + this.state = 4641; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 4650; + this.state = 4643; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 4649; + this.state = 4642; this.opt_if_not_exists(); } break; } - this.state = 4652; + this.state = 4645; this.any_name(); - this.state = 4653; + this.state = 4646; this.match(PostgreSQLParser.KW_FROM); - this.state = 4654; + this.state = 4647; this.any_name(); } break; @@ -22003,15 +21578,15 @@ export class PostgreSQLParser extends antlr.Parser { } public definition(): DefinitionContext { let localContext = new DefinitionContext(this.context, this.state); - this.enterRule(localContext, 494, PostgreSQLParser.RULE_definition); + this.enterRule(localContext, 496, PostgreSQLParser.RULE_definition); try { this.enterOuterAlt(localContext, 1); { - this.state = 4658; + this.state = 4651; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4659; + this.state = 4652; this.def_list(); - this.state = 4660; + this.state = 4653; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -22031,26 +21606,26 @@ export class PostgreSQLParser extends antlr.Parser { } public def_list(): Def_listContext { let localContext = new Def_listContext(this.context, this.state); - this.enterRule(localContext, 496, PostgreSQLParser.RULE_def_list); + this.enterRule(localContext, 498, PostgreSQLParser.RULE_def_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4662; + this.state = 4655; this.def_elem(); - this.state = 4667; + this.state = 4660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4663; + this.state = 4656; this.match(PostgreSQLParser.COMMA); - this.state = 4664; + this.state = 4657; this.def_elem(); } } - this.state = 4669; + this.state = 4662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22072,21 +21647,21 @@ export class PostgreSQLParser extends antlr.Parser { } public def_elem(): Def_elemContext { let localContext = new Def_elemContext(this.context, this.state); - this.enterRule(localContext, 498, PostgreSQLParser.RULE_def_elem); + this.enterRule(localContext, 500, PostgreSQLParser.RULE_def_elem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4670; + this.state = 4663; this.collabel(); - this.state = 4673; + this.state = 4666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 4671; + this.state = 4664; this.match(PostgreSQLParser.EQUAL); - this.state = 4672; + this.state = 4665; this.def_arg(); } } @@ -22109,50 +21684,50 @@ export class PostgreSQLParser extends antlr.Parser { } public def_arg(): Def_argContext { let localContext = new Def_argContext(this.context, this.state); - this.enterRule(localContext, 500, PostgreSQLParser.RULE_def_arg); + this.enterRule(localContext, 502, PostgreSQLParser.RULE_def_arg); try { - this.state = 4681; + this.state = 4674; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4675; + this.state = 4668; this.func_type(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4676; + this.state = 4669; this.reserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4677; + this.state = 4670; this.qual_all_op(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4678; + this.state = 4671; this.numericonly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4679; + this.state = 4672; this.sconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4680; + this.state = 4673; this.match(PostgreSQLParser.KW_NONE); } break; @@ -22174,15 +21749,15 @@ export class PostgreSQLParser extends antlr.Parser { } public old_aggr_definition(): Old_aggr_definitionContext { let localContext = new Old_aggr_definitionContext(this.context, this.state); - this.enterRule(localContext, 502, PostgreSQLParser.RULE_old_aggr_definition); + this.enterRule(localContext, 504, PostgreSQLParser.RULE_old_aggr_definition); try { this.enterOuterAlt(localContext, 1); { - this.state = 4683; + this.state = 4676; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4684; + this.state = 4677; this.old_aggr_list(); - this.state = 4685; + this.state = 4678; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -22202,26 +21777,26 @@ export class PostgreSQLParser extends antlr.Parser { } public old_aggr_list(): Old_aggr_listContext { let localContext = new Old_aggr_listContext(this.context, this.state); - this.enterRule(localContext, 504, PostgreSQLParser.RULE_old_aggr_list); + this.enterRule(localContext, 506, PostgreSQLParser.RULE_old_aggr_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4687; + this.state = 4680; this.old_aggr_elem(); - this.state = 4692; + this.state = 4685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4688; + this.state = 4681; this.match(PostgreSQLParser.COMMA); - this.state = 4689; + this.state = 4682; this.old_aggr_elem(); } } - this.state = 4694; + this.state = 4687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22243,15 +21818,15 @@ export class PostgreSQLParser extends antlr.Parser { } public old_aggr_elem(): Old_aggr_elemContext { let localContext = new Old_aggr_elemContext(this.context, this.state); - this.enterRule(localContext, 506, PostgreSQLParser.RULE_old_aggr_elem); + this.enterRule(localContext, 508, PostgreSQLParser.RULE_old_aggr_elem); try { this.enterOuterAlt(localContext, 1); { - this.state = 4695; + this.state = 4688; this.identifier(); - this.state = 4696; + this.state = 4689; this.match(PostgreSQLParser.EQUAL); - this.state = 4697; + this.state = 4690; this.def_arg(); } } @@ -22271,11 +21846,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_enum_val_list(): Opt_enum_val_listContext { let localContext = new Opt_enum_val_listContext(this.context, this.state); - this.enterRule(localContext, 508, PostgreSQLParser.RULE_opt_enum_val_list); + this.enterRule(localContext, 510, PostgreSQLParser.RULE_opt_enum_val_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 4699; + this.state = 4692; this.enum_val_list(); } } @@ -22295,26 +21870,26 @@ export class PostgreSQLParser extends antlr.Parser { } public enum_val_list(): Enum_val_listContext { let localContext = new Enum_val_listContext(this.context, this.state); - this.enterRule(localContext, 510, PostgreSQLParser.RULE_enum_val_list); + this.enterRule(localContext, 512, PostgreSQLParser.RULE_enum_val_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4701; + this.state = 4694; this.sconst(); - this.state = 4706; + this.state = 4699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4702; + this.state = 4695; this.match(PostgreSQLParser.COMMA); - this.state = 4703; + this.state = 4696; this.sconst(); } } - this.state = 4708; + this.state = 4701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22336,43 +21911,43 @@ export class PostgreSQLParser extends antlr.Parser { } public alterenumstmt(): AlterenumstmtContext { let localContext = new AlterenumstmtContext(this.context, this.state); - this.enterRule(localContext, 512, PostgreSQLParser.RULE_alterenumstmt); + this.enterRule(localContext, 514, PostgreSQLParser.RULE_alterenumstmt); let _la: number; try { - this.state = 4731; + this.state = 4724; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4709; + this.state = 4702; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4710; + this.state = 4703; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4711; + this.state = 4704; this.any_name(); - this.state = 4712; + this.state = 4705; this.match(PostgreSQLParser.KW_ADD); - this.state = 4713; + this.state = 4706; this.match(PostgreSQLParser.KW_VALUE); - this.state = 4715; + this.state = 4708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 4714; + this.state = 4707; this.opt_if_not_exists(); } } - this.state = 4717; + this.state = 4710; this.sconst(); - this.state = 4720; + this.state = 4713; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { - this.state = 4718; + this.state = 4711; _la = this.tokenStream.LA(1); if(!(_la === 135 || _la === 145)) { this.errorHandler.recoverInline(this); @@ -22381,7 +21956,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4719; + this.state = 4712; this.sconst(); } break; @@ -22391,21 +21966,21 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4722; + this.state = 4715; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4723; + this.state = 4716; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4724; + this.state = 4717; this.any_name(); - this.state = 4725; + this.state = 4718; this.match(PostgreSQLParser.KW_RENAME); - this.state = 4726; + this.state = 4719; this.match(PostgreSQLParser.KW_VALUE); - this.state = 4727; + this.state = 4720; this.sconst(); - this.state = 4728; + this.state = 4721; this.match(PostgreSQLParser.KW_TO); - this.state = 4729; + this.state = 4722; this.sconst(); } break; @@ -22427,15 +22002,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_if_not_exists(): Opt_if_not_existsContext { let localContext = new Opt_if_not_existsContext(this.context, this.state); - this.enterRule(localContext, 514, PostgreSQLParser.RULE_opt_if_not_exists); + this.enterRule(localContext, 516, PostgreSQLParser.RULE_opt_if_not_exists); try { this.enterOuterAlt(localContext, 1); { - this.state = 4733; + this.state = 4726; this.match(PostgreSQLParser.KW_IF); - this.state = 4734; + this.state = 4727; this.match(PostgreSQLParser.KW_NOT); - this.state = 4735; + this.state = 4728; this.match(PostgreSQLParser.KW_EXISTS); } } @@ -22455,52 +22030,52 @@ export class PostgreSQLParser extends antlr.Parser { } public createopclassstmt(): CreateopclassstmtContext { let localContext = new CreateopclassstmtContext(this.context, this.state); - this.enterRule(localContext, 516, PostgreSQLParser.RULE_createopclassstmt); + this.enterRule(localContext, 518, PostgreSQLParser.RULE_createopclassstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4737; + this.state = 4730; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4738; + this.state = 4731; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4739; + this.state = 4732; this.match(PostgreSQLParser.KW_CLASS); - this.state = 4740; + this.state = 4733; this.any_name(); - this.state = 4742; + this.state = 4735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 4741; + this.state = 4734; this.opt_default(); } } - this.state = 4744; + this.state = 4737; this.match(PostgreSQLParser.KW_FOR); - this.state = 4745; + this.state = 4738; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4746; + this.state = 4739; this.typename(); - this.state = 4747; + this.state = 4740; this.match(PostgreSQLParser.KW_USING); - this.state = 4748; + this.state = 4741; this.name(); - this.state = 4750; + this.state = 4743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 4749; + this.state = 4742; this.opt_opfamily(); } } - this.state = 4752; + this.state = 4745; this.match(PostgreSQLParser.KW_AS); - this.state = 4753; + this.state = 4746; this.opclass_item_list(); } } @@ -22520,26 +22095,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opclass_item_list(): Opclass_item_listContext { let localContext = new Opclass_item_listContext(this.context, this.state); - this.enterRule(localContext, 518, PostgreSQLParser.RULE_opclass_item_list); + this.enterRule(localContext, 520, PostgreSQLParser.RULE_opclass_item_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4755; + this.state = 4748; this.opclass_item(); - this.state = 4760; + this.state = 4753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4756; + this.state = 4749; this.match(PostgreSQLParser.COMMA); - this.state = 4757; + this.state = 4750; this.opclass_item(); } } - this.state = 4762; + this.state = 4755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22561,37 +22136,37 @@ export class PostgreSQLParser extends antlr.Parser { } public opclass_item(): Opclass_itemContext { let localContext = new Opclass_itemContext(this.context, this.state); - this.enterRule(localContext, 520, PostgreSQLParser.RULE_opclass_item); + this.enterRule(localContext, 522, PostgreSQLParser.RULE_opclass_item); let _la: number; try { - this.state = 4794; + this.state = 4787; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4763; + this.state = 4756; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4764; + this.state = 4757; this.iconst(); - this.state = 4765; + this.state = 4758; this.any_operator(); - this.state = 4767; + this.state = 4760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 4766; + this.state = 4759; this.opclass_purpose(); } } - this.state = 4770; + this.state = 4763; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 4769; + this.state = 4762; this.opt_recheck(); } break; @@ -22601,28 +22176,28 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4772; + this.state = 4765; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4773; + this.state = 4766; this.iconst(); - this.state = 4774; + this.state = 4767; this.operator_with_argtypes(); - this.state = 4776; + this.state = 4769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 4775; + this.state = 4768; this.opclass_purpose(); } } - this.state = 4779; + this.state = 4772; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: { - this.state = 4778; + this.state = 4771; this.opt_recheck(); } break; @@ -22632,37 +22207,37 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4781; + this.state = 4774; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 4782; + this.state = 4775; this.iconst(); - this.state = 4783; + this.state = 4776; this.function_with_argtypes(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4785; + this.state = 4778; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 4786; + this.state = 4779; this.iconst(); - this.state = 4787; + this.state = 4780; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4788; + this.state = 4781; this.type_list(); - this.state = 4789; + this.state = 4782; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 4790; + this.state = 4783; this.function_with_argtypes(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4792; + this.state = 4785; this.match(PostgreSQLParser.KW_STORAGE); - this.state = 4793; + this.state = 4786; this.typename(); } break; @@ -22684,11 +22259,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_default(): Opt_defaultContext { let localContext = new Opt_defaultContext(this.context, this.state); - this.enterRule(localContext, 522, PostgreSQLParser.RULE_opt_default); + this.enterRule(localContext, 524, PostgreSQLParser.RULE_opt_default); try { this.enterOuterAlt(localContext, 1); { - this.state = 4796; + this.state = 4789; this.match(PostgreSQLParser.KW_DEFAULT); } } @@ -22708,13 +22283,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_opfamily(): Opt_opfamilyContext { let localContext = new Opt_opfamilyContext(this.context, this.state); - this.enterRule(localContext, 524, PostgreSQLParser.RULE_opt_opfamily); + this.enterRule(localContext, 526, PostgreSQLParser.RULE_opt_opfamily); try { this.enterOuterAlt(localContext, 1); { - this.state = 4798; + this.state = 4791; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 4799; + this.state = 4792; this.any_name(); } } @@ -22734,30 +22309,30 @@ export class PostgreSQLParser extends antlr.Parser { } public opclass_purpose(): Opclass_purposeContext { let localContext = new Opclass_purposeContext(this.context, this.state); - this.enterRule(localContext, 526, PostgreSQLParser.RULE_opclass_purpose); + this.enterRule(localContext, 528, PostgreSQLParser.RULE_opclass_purpose); try { - this.state = 4807; + this.state = 4800; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4801; + this.state = 4794; this.match(PostgreSQLParser.KW_FOR); - this.state = 4802; + this.state = 4795; this.match(PostgreSQLParser.KW_SEARCH); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4803; + this.state = 4796; this.match(PostgreSQLParser.KW_FOR); - this.state = 4804; + this.state = 4797; this.match(PostgreSQLParser.KW_ORDER); - this.state = 4805; + this.state = 4798; this.match(PostgreSQLParser.KW_BY); - this.state = 4806; + this.state = 4799; this.any_name(); } break; @@ -22779,11 +22354,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_recheck(): Opt_recheckContext { let localContext = new Opt_recheckContext(this.context, this.state); - this.enterRule(localContext, 528, PostgreSQLParser.RULE_opt_recheck); + this.enterRule(localContext, 530, PostgreSQLParser.RULE_opt_recheck); try { this.enterOuterAlt(localContext, 1); { - this.state = 4809; + this.state = 4802; this.match(PostgreSQLParser.KW_RECHECK); } } @@ -22803,21 +22378,21 @@ export class PostgreSQLParser extends antlr.Parser { } public createopfamilystmt(): CreateopfamilystmtContext { let localContext = new CreateopfamilystmtContext(this.context, this.state); - this.enterRule(localContext, 530, PostgreSQLParser.RULE_createopfamilystmt); + this.enterRule(localContext, 532, PostgreSQLParser.RULE_createopfamilystmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 4811; + this.state = 4804; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4812; + this.state = 4805; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4813; + this.state = 4806; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 4814; + this.state = 4807; this.any_name(); - this.state = 4815; + this.state = 4808; this.match(PostgreSQLParser.KW_USING); - this.state = 4816; + this.state = 4809; this.name(); } } @@ -22837,50 +22412,50 @@ export class PostgreSQLParser extends antlr.Parser { } public alteropfamilystmt(): AlteropfamilystmtContext { let localContext = new AlteropfamilystmtContext(this.context, this.state); - this.enterRule(localContext, 532, PostgreSQLParser.RULE_alteropfamilystmt); + this.enterRule(localContext, 534, PostgreSQLParser.RULE_alteropfamilystmt); try { - this.state = 4836; + this.state = 4829; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4818; + this.state = 4811; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4819; + this.state = 4812; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4820; + this.state = 4813; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 4821; + this.state = 4814; this.any_name(); - this.state = 4822; + this.state = 4815; this.match(PostgreSQLParser.KW_USING); - this.state = 4823; + this.state = 4816; this.name(); - this.state = 4824; + this.state = 4817; this.match(PostgreSQLParser.KW_ADD); - this.state = 4825; + this.state = 4818; this.opclass_item_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4827; + this.state = 4820; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4828; + this.state = 4821; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4829; + this.state = 4822; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 4830; + this.state = 4823; this.any_name(); - this.state = 4831; + this.state = 4824; this.match(PostgreSQLParser.KW_USING); - this.state = 4832; + this.state = 4825; this.name(); - this.state = 4833; + this.state = 4826; this.match(PostgreSQLParser.KW_DROP); - this.state = 4834; + this.state = 4827; this.opclass_drop_list(); } break; @@ -22902,26 +22477,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opclass_drop_list(): Opclass_drop_listContext { let localContext = new Opclass_drop_listContext(this.context, this.state); - this.enterRule(localContext, 534, PostgreSQLParser.RULE_opclass_drop_list); + this.enterRule(localContext, 536, PostgreSQLParser.RULE_opclass_drop_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4838; + this.state = 4831; this.opclass_drop(); - this.state = 4843; + this.state = 4836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4839; + this.state = 4832; this.match(PostgreSQLParser.COMMA); - this.state = 4840; + this.state = 4833; this.opclass_drop(); } } - this.state = 4845; + this.state = 4838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22943,38 +22518,38 @@ export class PostgreSQLParser extends antlr.Parser { } public opclass_drop(): Opclass_dropContext { let localContext = new Opclass_dropContext(this.context, this.state); - this.enterRule(localContext, 536, PostgreSQLParser.RULE_opclass_drop); + this.enterRule(localContext, 538, PostgreSQLParser.RULE_opclass_drop); try { - this.state = 4858; + this.state = 4851; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 4846; + this.state = 4839; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4847; + this.state = 4840; this.iconst(); - this.state = 4848; + this.state = 4841; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4849; + this.state = 4842; this.type_list(); - this.state = 4850; + this.state = 4843; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_FUNCTION: this.enterOuterAlt(localContext, 2); { - this.state = 4852; + this.state = 4845; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 4853; + this.state = 4846; this.iconst(); - this.state = 4854; + this.state = 4847; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4855; + this.state = 4848; this.type_list(); - this.state = 4856; + this.state = 4849; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -22998,21 +22573,21 @@ export class PostgreSQLParser extends antlr.Parser { } public reassignownedstmt(): ReassignownedstmtContext { let localContext = new ReassignownedstmtContext(this.context, this.state); - this.enterRule(localContext, 538, PostgreSQLParser.RULE_reassignownedstmt); + this.enterRule(localContext, 540, PostgreSQLParser.RULE_reassignownedstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 4860; + this.state = 4853; this.match(PostgreSQLParser.KW_REASSIGN); - this.state = 4861; + this.state = 4854; this.match(PostgreSQLParser.KW_OWNED); - this.state = 4862; + this.state = 4855; this.match(PostgreSQLParser.KW_BY); - this.state = 4863; + this.state = 4856; this.role_list(); - this.state = 4864; + this.state = 4857; this.match(PostgreSQLParser.KW_TO); - this.state = 4865; + this.state = 4858; this.rolespec(); } } @@ -23032,37 +22607,37 @@ export class PostgreSQLParser extends antlr.Parser { } public dropstmt(): DropstmtContext { let localContext = new DropstmtContext(this.context, this.state); - this.enterRule(localContext, 540, PostgreSQLParser.RULE_dropstmt); + this.enterRule(localContext, 542, PostgreSQLParser.RULE_dropstmt); let _la: number; try { - this.state = 5246; + this.state = 5239; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 480, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4867; + this.state = 4860; this.match(PostgreSQLParser.KW_DROP); - this.state = 4868; + this.state = 4861; this.match(PostgreSQLParser.KW_TABLE); - this.state = 4870; + this.state = 4863; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: { - this.state = 4869; + this.state = 4862; this.opt_if_exists(); } break; } - this.state = 4872; + this.state = 4865; this.table_name_list(); - this.state = 4874; + this.state = 4867; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: { - this.state = 4873; + this.state = 4866; this.opt_drop_behavior(); } break; @@ -23072,28 +22647,28 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4876; + this.state = 4869; this.match(PostgreSQLParser.KW_DROP); - this.state = 4877; + this.state = 4870; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 4879; + this.state = 4872; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { case 1: { - this.state = 4878; + this.state = 4871; this.opt_if_exists(); } break; } - this.state = 4881; + this.state = 4874; this.name_list(); - this.state = 4883; + this.state = 4876; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: { - this.state = 4882; + this.state = 4875; this.opt_drop_behavior(); } break; @@ -23103,28 +22678,28 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4885; + this.state = 4878; this.match(PostgreSQLParser.KW_DROP); - this.state = 4886; + this.state = 4879; this.match(PostgreSQLParser.KW_VIEW); - this.state = 4888; + this.state = 4881; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { case 1: { - this.state = 4887; + this.state = 4880; this.opt_if_exists(); } break; } - this.state = 4890; + this.state = 4883; this.view_nameList(); - this.state = 4892; + this.state = 4885; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { case 1: { - this.state = 4891; + this.state = 4884; this.opt_drop_behavior(); } break; @@ -23134,30 +22709,30 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4894; + this.state = 4887; this.match(PostgreSQLParser.KW_DROP); - this.state = 4895; + this.state = 4888; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 4896; + this.state = 4889; this.match(PostgreSQLParser.KW_VIEW); - this.state = 4898; + this.state = 4891; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 412, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { - this.state = 4897; + this.state = 4890; this.opt_if_exists(); } break; } - this.state = 4900; + this.state = 4893; this.view_nameList(); - this.state = 4902; + this.state = 4895; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { case 1: { - this.state = 4901; + this.state = 4894; this.opt_drop_behavior(); } break; @@ -23167,28 +22742,28 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4904; + this.state = 4897; this.match(PostgreSQLParser.KW_DROP); - this.state = 4905; + this.state = 4898; this.match(PostgreSQLParser.KW_INDEX); - this.state = 4907; + this.state = 4900; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 4906; + this.state = 4899; this.opt_if_exists(); } break; } - this.state = 4909; + this.state = 4902; this.name_list(); - this.state = 4911; + this.state = 4904; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { case 1: { - this.state = 4910; + this.state = 4903; this.opt_drop_behavior(); } break; @@ -23198,30 +22773,30 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4913; + this.state = 4906; this.match(PostgreSQLParser.KW_DROP); - this.state = 4914; + this.state = 4907; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4915; + this.state = 4908; this.match(PostgreSQLParser.KW_TABLE); - this.state = 4917; + this.state = 4910; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 412, this.context) ) { case 1: { - this.state = 4916; + this.state = 4909; this.opt_if_exists(); } break; } - this.state = 4919; + this.state = 4912; this.table_name_list(); - this.state = 4921; + this.state = 4914; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { case 1: { - this.state = 4920; + this.state = 4913; this.opt_drop_behavior(); } break; @@ -23231,28 +22806,28 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4923; + this.state = 4916; this.match(PostgreSQLParser.KW_DROP); - this.state = 4924; + this.state = 4917; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 4926; + this.state = 4919; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { case 1: { - this.state = 4925; + this.state = 4918; this.opt_if_exists(); } break; } - this.state = 4928; + this.state = 4921; this.name_list(); - this.state = 4930; + this.state = 4923; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: { - this.state = 4929; + this.state = 4922; this.opt_drop_behavior(); } break; @@ -23262,28 +22837,28 @@ export class PostgreSQLParser extends antlr.Parser { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4932; + this.state = 4925; this.match(PostgreSQLParser.KW_DROP); - this.state = 4933; + this.state = 4926; this.match(PostgreSQLParser.KW_CONVERSION); - this.state = 4935; + this.state = 4928; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: { - this.state = 4934; + this.state = 4927; this.opt_if_exists(); } break; } - this.state = 4937; + this.state = 4930; this.name_list(); - this.state = 4939; + this.state = 4932; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { case 1: { - this.state = 4938; + this.state = 4931; this.opt_drop_behavior(); } break; @@ -23293,28 +22868,28 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4941; + this.state = 4934; this.match(PostgreSQLParser.KW_DROP); - this.state = 4942; + this.state = 4935; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 4944; + this.state = 4937; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: { - this.state = 4943; + this.state = 4936; this.opt_if_exists(); } break; } - this.state = 4946; + this.state = 4939; this.name_list(); - this.state = 4948; + this.state = 4941; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 4947; + this.state = 4940; this.opt_drop_behavior(); } break; @@ -23324,32 +22899,32 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4950; + this.state = 4943; this.match(PostgreSQLParser.KW_DROP); - this.state = 4951; + this.state = 4944; this.match(PostgreSQLParser.KW_TEXT); - this.state = 4952; + this.state = 4945; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 4953; + this.state = 4946; this.match(PostgreSQLParser.KW_PARSER); - this.state = 4955; + this.state = 4948; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 4954; + this.state = 4947; this.opt_if_exists(); } break; } - this.state = 4957; + this.state = 4950; this.name_list(); - this.state = 4959; + this.state = 4952; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 4958; + this.state = 4951; this.opt_drop_behavior(); } break; @@ -23359,32 +22934,32 @@ export class PostgreSQLParser extends antlr.Parser { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4961; + this.state = 4954; this.match(PostgreSQLParser.KW_DROP); - this.state = 4962; + this.state = 4955; this.match(PostgreSQLParser.KW_TEXT); - this.state = 4963; + this.state = 4956; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 4964; + this.state = 4957; this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 4966; + this.state = 4959; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { - this.state = 4965; + this.state = 4958; this.opt_if_exists(); } break; } - this.state = 4968; + this.state = 4961; this.name_list(); - this.state = 4970; + this.state = 4963; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 4969; + this.state = 4962; this.opt_drop_behavior(); } break; @@ -23394,32 +22969,32 @@ export class PostgreSQLParser extends antlr.Parser { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4972; + this.state = 4965; this.match(PostgreSQLParser.KW_DROP); - this.state = 4973; + this.state = 4966; this.match(PostgreSQLParser.KW_TEXT); - this.state = 4974; + this.state = 4967; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 4975; + this.state = 4968; this.match(PostgreSQLParser.KW_TEMPLATE); - this.state = 4977; + this.state = 4970; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: { - this.state = 4976; + this.state = 4969; this.opt_if_exists(); } break; } - this.state = 4979; + this.state = 4972; this.name_list(); - this.state = 4981; + this.state = 4974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: { - this.state = 4980; + this.state = 4973; this.opt_drop_behavior(); } break; @@ -23429,32 +23004,32 @@ export class PostgreSQLParser extends antlr.Parser { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4983; + this.state = 4976; this.match(PostgreSQLParser.KW_DROP); - this.state = 4984; + this.state = 4977; this.match(PostgreSQLParser.KW_TEXT); - this.state = 4985; + this.state = 4978; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 4986; + this.state = 4979; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 4988; + this.state = 4981; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: { - this.state = 4987; + this.state = 4980; this.opt_if_exists(); } break; } - this.state = 4990; + this.state = 4983; this.name_list(); - this.state = 4992; + this.state = 4985; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 4991; + this.state = 4984; this.opt_drop_behavior(); } break; @@ -23464,30 +23039,30 @@ export class PostgreSQLParser extends antlr.Parser { case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4994; + this.state = 4987; this.match(PostgreSQLParser.KW_DROP); - this.state = 4995; + this.state = 4988; this.match(PostgreSQLParser.KW_ACCESS); - this.state = 4996; + this.state = 4989; this.match(PostgreSQLParser.KW_METHOD); - this.state = 4998; + this.state = 4991; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: { - this.state = 4997; + this.state = 4990; this.opt_if_exists(); } break; } - this.state = 5000; + this.state = 4993; this.name_list(); - this.state = 5002; + this.state = 4995; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { case 1: { - this.state = 5001; + this.state = 4994; this.opt_drop_behavior(); } break; @@ -23497,30 +23072,30 @@ export class PostgreSQLParser extends antlr.Parser { case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5004; + this.state = 4997; this.match(PostgreSQLParser.KW_DROP); - this.state = 5005; + this.state = 4998; this.match(PostgreSQLParser.KW_EVENT); - this.state = 5006; + this.state = 4999; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 5008; + this.state = 5001; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { case 1: { - this.state = 5007; + this.state = 5000; this.opt_if_exists(); } break; } - this.state = 5010; + this.state = 5003; this.name_list(); - this.state = 5012; + this.state = 5005; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: { - this.state = 5011; + this.state = 5004; this.opt_drop_behavior(); } break; @@ -23530,28 +23105,28 @@ export class PostgreSQLParser extends antlr.Parser { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5014; + this.state = 5007; this.match(PostgreSQLParser.KW_DROP); - this.state = 5015; + this.state = 5008; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 5017; + this.state = 5010; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: { - this.state = 5016; + this.state = 5009; this.opt_if_exists(); } break; } - this.state = 5019; + this.state = 5012; this.name_list(); - this.state = 5021; + this.state = 5014; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: { - this.state = 5020; + this.state = 5013; this.opt_drop_behavior(); } break; @@ -23561,32 +23136,32 @@ export class PostgreSQLParser extends antlr.Parser { case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5023; + this.state = 5016; this.match(PostgreSQLParser.KW_DROP); - this.state = 5024; + this.state = 5017; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 5025; + this.state = 5018; this.match(PostgreSQLParser.KW_DATA); - this.state = 5026; + this.state = 5019; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 5028; + this.state = 5021; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 5027; + this.state = 5020; this.opt_if_exists(); } break; } - this.state = 5030; + this.state = 5023; this.name_list(); - this.state = 5032; + this.state = 5025; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { case 1: { - this.state = 5031; + this.state = 5024; this.opt_drop_behavior(); } break; @@ -23596,38 +23171,38 @@ export class PostgreSQLParser extends antlr.Parser { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5034; + this.state = 5027; this.match(PostgreSQLParser.KW_DROP); - this.state = 5036; + this.state = 5029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 5035; + this.state = 5028; this.opt_procedural(); } } - this.state = 5038; + this.state = 5031; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 5040; + this.state = 5033; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 5039; + this.state = 5032; this.opt_if_exists(); } break; } - this.state = 5042; + this.state = 5035; this.name_list(); - this.state = 5044; + this.state = 5037; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 5043; + this.state = 5036; this.opt_drop_behavior(); } break; @@ -23637,28 +23212,28 @@ export class PostgreSQLParser extends antlr.Parser { case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5046; + this.state = 5039; this.match(PostgreSQLParser.KW_DROP); - this.state = 5047; + this.state = 5040; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 5049; + this.state = 5042; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 5048; + this.state = 5041; this.opt_if_exists(); } break; } - this.state = 5051; + this.state = 5044; this.name_list(); - this.state = 5053; + this.state = 5046; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 5052; + this.state = 5045; this.opt_drop_behavior(); } break; @@ -23668,28 +23243,28 @@ export class PostgreSQLParser extends antlr.Parser { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5055; + this.state = 5048; this.match(PostgreSQLParser.KW_DROP); - this.state = 5056; + this.state = 5049; this.match(PostgreSQLParser.KW_SERVER); - this.state = 5058; + this.state = 5051; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 5057; + this.state = 5050; this.opt_if_exists(); } break; } - this.state = 5060; + this.state = 5053; this.name_list(); - this.state = 5062; + this.state = 5055; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { case 1: { - this.state = 5061; + this.state = 5054; this.opt_drop_behavior(); } break; @@ -23699,28 +23274,28 @@ export class PostgreSQLParser extends antlr.Parser { case 21: this.enterOuterAlt(localContext, 21); { - this.state = 5064; + this.state = 5057; this.match(PostgreSQLParser.KW_DROP); - this.state = 5065; + this.state = 5058; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5067; + this.state = 5060; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: { - this.state = 5066; + this.state = 5059; this.opt_if_exists(); } break; } - this.state = 5069; + this.state = 5062; this.schema_name_list(); - this.state = 5071; + this.state = 5064; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 5070; + this.state = 5063; this.opt_drop_behavior(); } break; @@ -23730,32 +23305,32 @@ export class PostgreSQLParser extends antlr.Parser { case 22: this.enterOuterAlt(localContext, 22); { - this.state = 5073; + this.state = 5066; this.match(PostgreSQLParser.KW_DROP); - this.state = 5074; + this.state = 5067; this.match(PostgreSQLParser.KW_POLICY); - this.state = 5076; + this.state = 5069; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 5075; + this.state = 5068; this.opt_if_exists(); } break; } - this.state = 5078; + this.state = 5071; this.name(); - this.state = 5079; + this.state = 5072; this.match(PostgreSQLParser.KW_ON); - this.state = 5080; + this.state = 5073; this.any_name(); - this.state = 5082; + this.state = 5075; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 5081; + this.state = 5074; this.opt_drop_behavior(); } break; @@ -23765,32 +23340,32 @@ export class PostgreSQLParser extends antlr.Parser { case 23: this.enterOuterAlt(localContext, 23); { - this.state = 5084; + this.state = 5077; this.match(PostgreSQLParser.KW_DROP); - this.state = 5085; + this.state = 5078; this.match(PostgreSQLParser.KW_RULE); - this.state = 5087; + this.state = 5080; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { case 1: { - this.state = 5086; + this.state = 5079; this.opt_if_exists(); } break; } - this.state = 5089; + this.state = 5082; this.name(); - this.state = 5090; + this.state = 5083; this.match(PostgreSQLParser.KW_ON); - this.state = 5091; + this.state = 5084; this.any_name(); - this.state = 5093; + this.state = 5086; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { case 1: { - this.state = 5092; + this.state = 5085; this.opt_drop_behavior(); } break; @@ -23800,32 +23375,32 @@ export class PostgreSQLParser extends antlr.Parser { case 24: this.enterOuterAlt(localContext, 24); { - this.state = 5095; + this.state = 5088; this.match(PostgreSQLParser.KW_DROP); - this.state = 5096; + this.state = 5089; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 5098; + this.state = 5091; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 5097; + this.state = 5090; this.opt_if_exists(); } break; } - this.state = 5100; + this.state = 5093; this.name(); - this.state = 5101; + this.state = 5094; this.match(PostgreSQLParser.KW_ON); - this.state = 5102; + this.state = 5095; this.any_name(); - this.state = 5104; + this.state = 5097; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 5103; + this.state = 5096; this.opt_drop_behavior(); } break; @@ -23835,28 +23410,28 @@ export class PostgreSQLParser extends antlr.Parser { case 25: this.enterOuterAlt(localContext, 25); { - this.state = 5106; + this.state = 5099; this.match(PostgreSQLParser.KW_DROP); - this.state = 5107; + this.state = 5100; this.match(PostgreSQLParser.KW_TYPE); - this.state = 5109; + this.state = 5102; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { - this.state = 5108; + this.state = 5101; this.opt_if_exists(); } break; } - this.state = 5111; + this.state = 5104; this.type_name_list(); - this.state = 5113; + this.state = 5106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 5112; + this.state = 5105; this.opt_drop_behavior(); } break; @@ -23866,28 +23441,28 @@ export class PostgreSQLParser extends antlr.Parser { case 26: this.enterOuterAlt(localContext, 26); { - this.state = 5115; + this.state = 5108; this.match(PostgreSQLParser.KW_DROP); - this.state = 5116; + this.state = 5109; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 5118; + this.state = 5111; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: { - this.state = 5117; + this.state = 5110; this.opt_if_exists(); } break; } - this.state = 5120; + this.state = 5113; this.type_name_list(); - this.state = 5122; + this.state = 5115; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: { - this.state = 5121; + this.state = 5114; this.opt_drop_behavior(); } break; @@ -23897,30 +23472,30 @@ export class PostgreSQLParser extends antlr.Parser { case 27: this.enterOuterAlt(localContext, 27); { - this.state = 5124; + this.state = 5117; this.match(PostgreSQLParser.KW_DROP); - this.state = 5125; + this.state = 5118; this.match(PostgreSQLParser.KW_INDEX); - this.state = 5126; + this.state = 5119; this.match(PostgreSQLParser.KW_CONCURRENTLY); - this.state = 5128; + this.state = 5121; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 5127; + this.state = 5120; this.opt_if_exists(); } break; } - this.state = 5130; + this.state = 5123; this.any_name_list(); - this.state = 5132; + this.state = 5125; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: { - this.state = 5131; + this.state = 5124; this.opt_drop_behavior(); } break; @@ -23930,36 +23505,36 @@ export class PostgreSQLParser extends antlr.Parser { case 28: this.enterOuterAlt(localContext, 28); { - this.state = 5134; + this.state = 5127; this.match(PostgreSQLParser.KW_DROP); - this.state = 5135; + this.state = 5128; this.match(PostgreSQLParser.KW_CAST); - this.state = 5137; + this.state = 5130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5136; + this.state = 5129; this.opt_if_exists(); } } - this.state = 5139; + this.state = 5132; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 5140; + this.state = 5133; this.typename(); - this.state = 5141; + this.state = 5134; this.match(PostgreSQLParser.KW_AS); - this.state = 5142; + this.state = 5135; this.typename(); - this.state = 5143; + this.state = 5136; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 5145; + this.state = 5138; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 5144; + this.state = 5137; this.opt_drop_behavior(); } break; @@ -23969,34 +23544,34 @@ export class PostgreSQLParser extends antlr.Parser { case 29: this.enterOuterAlt(localContext, 29); { - this.state = 5147; + this.state = 5140; this.match(PostgreSQLParser.KW_DROP); - this.state = 5148; + this.state = 5141; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 5149; + this.state = 5142; this.match(PostgreSQLParser.KW_CLASS); - this.state = 5151; + this.state = 5144; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: { - this.state = 5150; + this.state = 5143; this.opt_if_exists(); } break; } - this.state = 5153; + this.state = 5146; this.any_name(); - this.state = 5154; + this.state = 5147; this.match(PostgreSQLParser.KW_USING); - this.state = 5155; + this.state = 5148; this.name(); - this.state = 5157; + this.state = 5150; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 5156; + this.state = 5149; this.opt_drop_behavior(); } break; @@ -24006,34 +23581,34 @@ export class PostgreSQLParser extends antlr.Parser { case 30: this.enterOuterAlt(localContext, 30); { - this.state = 5159; + this.state = 5152; this.match(PostgreSQLParser.KW_DROP); - this.state = 5160; + this.state = 5153; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 5161; + this.state = 5154; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 5163; + this.state = 5156; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: { - this.state = 5162; + this.state = 5155; this.opt_if_exists(); } break; } - this.state = 5165; + this.state = 5158; this.any_name(); - this.state = 5166; + this.state = 5159; this.match(PostgreSQLParser.KW_USING); - this.state = 5167; + this.state = 5160; this.name(); - this.state = 5169; + this.state = 5162; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: { - this.state = 5168; + this.state = 5161; this.opt_drop_behavior(); } break; @@ -24043,20 +23618,20 @@ export class PostgreSQLParser extends antlr.Parser { case 31: this.enterOuterAlt(localContext, 31); { - this.state = 5171; + this.state = 5164; this.match(PostgreSQLParser.KW_DROP); - this.state = 5172; + this.state = 5165; this.match(PostgreSQLParser.KW_OWNED); - this.state = 5173; + this.state = 5166; this.match(PostgreSQLParser.KW_BY); - this.state = 5174; + this.state = 5167; this.role_list(); - this.state = 5176; + this.state = 5169; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: { - this.state = 5175; + this.state = 5168; this.opt_drop_behavior(); } break; @@ -24066,28 +23641,28 @@ export class PostgreSQLParser extends antlr.Parser { case 32: this.enterOuterAlt(localContext, 32); { - this.state = 5178; + this.state = 5171; this.match(PostgreSQLParser.KW_DROP); - this.state = 5179; + this.state = 5172; this.match(PostgreSQLParser.KW_VIEW); - this.state = 5181; + this.state = 5174; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: { - this.state = 5180; + this.state = 5173; this.opt_if_exists(); } break; } - this.state = 5183; + this.state = 5176; this.view_nameList(); - this.state = 5185; + this.state = 5178; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 5184; + this.state = 5177; this.opt_drop_behavior(); } break; @@ -24097,28 +23672,28 @@ export class PostgreSQLParser extends antlr.Parser { case 33: this.enterOuterAlt(localContext, 33); { - this.state = 5187; + this.state = 5180; this.match(PostgreSQLParser.KW_DROP); - this.state = 5188; + this.state = 5181; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 5190; + this.state = 5183; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 5189; + this.state = 5182; this.opt_if_exists(); } break; } - this.state = 5192; + this.state = 5185; this.name(); - this.state = 5194; + this.state = 5187; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: { - this.state = 5193; + this.state = 5186; this.opt_drop_behavior(); } break; @@ -24128,55 +23703,55 @@ export class PostgreSQLParser extends antlr.Parser { case 34: this.enterOuterAlt(localContext, 34); { - this.state = 5196; + this.state = 5189; this.match(PostgreSQLParser.KW_DROP); - this.state = 5197; + this.state = 5190; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 5199; + this.state = 5192; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 5198; + this.state = 5191; this.opt_if_exists(); } break; } - this.state = 5201; + this.state = 5194; this.tablespace_name(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 5202; + this.state = 5195; this.match(PostgreSQLParser.KW_DROP); - this.state = 5203; + this.state = 5196; this.match(PostgreSQLParser.KW_TRANSFORM); - this.state = 5205; + this.state = 5198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5204; + this.state = 5197; this.opt_if_exists(); } } - this.state = 5207; + this.state = 5200; this.match(PostgreSQLParser.KW_FOR); - this.state = 5208; + this.state = 5201; this.typename(); - this.state = 5209; + this.state = 5202; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 5210; + this.state = 5203; this.name(); - this.state = 5212; + this.state = 5205; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 5211; + this.state = 5204; this.opt_drop_behavior(); } break; @@ -24186,9 +23761,9 @@ export class PostgreSQLParser extends antlr.Parser { case 36: this.enterOuterAlt(localContext, 36); { - this.state = 5214; + this.state = 5207; this.match(PostgreSQLParser.KW_DROP); - this.state = 5215; + this.state = 5208; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -24197,88 +23772,88 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5217; + this.state = 5210; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 5216; + this.state = 5209; this.opt_if_exists(); } break; } - this.state = 5219; + this.state = 5212; this.role_list(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 5220; + this.state = 5213; this.match(PostgreSQLParser.KW_DROP); - this.state = 5221; + this.state = 5214; this.match(PostgreSQLParser.KW_USER); - this.state = 5222; + this.state = 5215; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 5224; + this.state = 5217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5223; + this.state = 5216; this.opt_if_exists(); } } - this.state = 5226; + this.state = 5219; this.match(PostgreSQLParser.KW_FOR); - this.state = 5227; + this.state = 5220; this.auth_ident(); - this.state = 5228; + this.state = 5221; this.match(PostgreSQLParser.KW_SERVER); - this.state = 5229; + this.state = 5222; this.name(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 5231; + this.state = 5224; this.match(PostgreSQLParser.KW_DROP); - this.state = 5232; + this.state = 5225; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 5234; + this.state = 5227; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: { - this.state = 5233; + this.state = 5226; this.opt_if_exists(); } break; } - this.state = 5236; + this.state = 5229; this.database_name(); - this.state = 5244; + this.state = 5237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: { - this.state = 5238; + this.state = 5231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5237; + this.state = 5230; this.opt_with(); } } - this.state = 5240; + this.state = 5233; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 5241; + this.state = 5234; this.drop_option_list(); - this.state = 5242; + this.state = 5235; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -24303,26 +23878,26 @@ export class PostgreSQLParser extends antlr.Parser { } public view_nameList(): View_nameListContext { let localContext = new View_nameListContext(this.context, this.state); - this.enterRule(localContext, 542, PostgreSQLParser.RULE_view_nameList); + this.enterRule(localContext, 544, PostgreSQLParser.RULE_view_nameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5248; + this.state = 5241; this.view_name(); - this.state = 5253; + this.state = 5246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5249; + this.state = 5242; this.match(PostgreSQLParser.COMMA); - this.state = 5250; + this.state = 5243; this.view_name(); } } - this.state = 5255; + this.state = 5248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24344,29 +23919,29 @@ export class PostgreSQLParser extends antlr.Parser { } public object_type_any_name(): Object_type_any_nameContext { let localContext = new Object_type_any_nameContext(this.context, this.state); - this.enterRule(localContext, 544, PostgreSQLParser.RULE_object_type_any_name); + this.enterRule(localContext, 546, PostgreSQLParser.RULE_object_type_any_name); let _la: number; try { - this.state = 5280; + this.state = 5273; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOREIGN: case PostgreSQLParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 5257; + this.state = 5250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 5256; + this.state = 5249; this.match(PostgreSQLParser.KW_FOREIGN); } } - this.state = 5259; + this.state = 5252; this.match(PostgreSQLParser.KW_TABLE); - this.state = 5260; + this.state = 5253; this.table_name(); } break; @@ -24374,75 +23949,75 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_VIEW: this.enterOuterAlt(localContext, 2); { - this.state = 5262; + this.state = 5255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 5261; + this.state = 5254; this.match(PostgreSQLParser.KW_MATERIALIZED); } } - this.state = 5264; + this.state = 5257; this.match(PostgreSQLParser.KW_VIEW); - this.state = 5265; + this.state = 5258; this.view_name(); } break; case PostgreSQLParser.KW_INDEX: this.enterOuterAlt(localContext, 3); { - this.state = 5266; + this.state = 5259; this.match(PostgreSQLParser.KW_INDEX); - this.state = 5267; + this.state = 5260; this.any_name(); } break; case PostgreSQLParser.KW_COLLATION: this.enterOuterAlt(localContext, 4); { - this.state = 5268; + this.state = 5261; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 5269; + this.state = 5262; this.any_name(); } break; case PostgreSQLParser.KW_CONVERSION: this.enterOuterAlt(localContext, 5); { - this.state = 5270; + this.state = 5263; this.match(PostgreSQLParser.KW_CONVERSION); - this.state = 5271; + this.state = 5264; this.any_name(); } break; case PostgreSQLParser.KW_STATISTICS: this.enterOuterAlt(localContext, 6); { - this.state = 5272; + this.state = 5265; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 5273; + this.state = 5266; this.any_name(); } break; case PostgreSQLParser.KW_SEQUENCE: this.enterOuterAlt(localContext, 7); { - this.state = 5274; + this.state = 5267; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 5275; + this.state = 5268; this.any_name(); } break; case PostgreSQLParser.KW_TEXT: this.enterOuterAlt(localContext, 8); { - this.state = 5276; + this.state = 5269; this.match(PostgreSQLParser.KW_TEXT); - this.state = 5277; + this.state = 5270; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 5278; + this.state = 5271; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -24451,7 +24026,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5279; + this.state = 5272; this.any_name(); } break; @@ -24475,21 +24050,21 @@ export class PostgreSQLParser extends antlr.Parser { } public object_type_name(): Object_type_nameContext { let localContext = new Object_type_nameContext(this.context, this.state); - this.enterRule(localContext, 546, PostgreSQLParser.RULE_object_type_name); + this.enterRule(localContext, 548, PostgreSQLParser.RULE_object_type_name); let _la: number; try { - this.state = 5313; + this.state = 5306; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ACCESS: this.enterOuterAlt(localContext, 1); { { - this.state = 5282; + this.state = 5275; this.match(PostgreSQLParser.KW_ACCESS); - this.state = 5283; + this.state = 5276; this.match(PostgreSQLParser.KW_METHOD); - this.state = 5284; + this.state = 5277; this.name(); } } @@ -24498,11 +24073,11 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 5285; + this.state = 5278; this.match(PostgreSQLParser.KW_EVENT); - this.state = 5286; + this.state = 5279; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 5287; + this.state = 5280; this.name(); } } @@ -24511,9 +24086,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 5288; + this.state = 5281; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 5289; + this.state = 5282; this.name(); } } @@ -24522,13 +24097,13 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 4); { { - this.state = 5290; + this.state = 5283; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 5291; + this.state = 5284; this.match(PostgreSQLParser.KW_DATA); - this.state = 5292; + this.state = 5285; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 5293; + this.state = 5286; this.name(); } } @@ -24538,19 +24113,19 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 5); { { - this.state = 5295; + this.state = 5288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 5294; + this.state = 5287; this.opt_procedural(); } } - this.state = 5297; + this.state = 5290; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 5298; + this.state = 5291; this.name(); } } @@ -24559,9 +24134,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 6); { { - this.state = 5299; + this.state = 5292; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 5300; + this.state = 5293; this.name(); } } @@ -24570,9 +24145,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 7); { { - this.state = 5301; + this.state = 5294; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5302; + this.state = 5295; this.schema_name(); } } @@ -24581,9 +24156,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 8); { { - this.state = 5303; + this.state = 5296; this.match(PostgreSQLParser.KW_SERVER); - this.state = 5304; + this.state = 5297; this.name(); } } @@ -24592,9 +24167,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 9); { { - this.state = 5305; + this.state = 5298; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 5306; + this.state = 5299; this.database_name(); } } @@ -24603,9 +24178,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 10); { { - this.state = 5307; + this.state = 5300; this.match(PostgreSQLParser.KW_ROLE); - this.state = 5308; + this.state = 5301; this.name(); } } @@ -24614,9 +24189,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 11); { { - this.state = 5309; + this.state = 5302; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 5310; + this.state = 5303; this.name(); } } @@ -24625,9 +24200,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 12); { { - this.state = 5311; + this.state = 5304; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 5312; + this.state = 5305; this.tablespace_name(); } } @@ -24652,12 +24227,12 @@ export class PostgreSQLParser extends antlr.Parser { } public object_type_name_on_any_name(): Object_type_name_on_any_nameContext { let localContext = new Object_type_name_on_any_nameContext(this.context, this.state); - this.enterRule(localContext, 548, PostgreSQLParser.RULE_object_type_name_on_any_name); + this.enterRule(localContext, 550, PostgreSQLParser.RULE_object_type_name_on_any_name); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5315; + this.state = 5308; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -24684,26 +24259,26 @@ export class PostgreSQLParser extends antlr.Parser { } public any_name_list(): Any_name_listContext { let localContext = new Any_name_listContext(this.context, this.state); - this.enterRule(localContext, 550, PostgreSQLParser.RULE_any_name_list); + this.enterRule(localContext, 552, PostgreSQLParser.RULE_any_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5317; + this.state = 5310; this.any_name(); - this.state = 5322; + this.state = 5315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5318; + this.state = 5311; this.match(PostgreSQLParser.COMMA); - this.state = 5319; + this.state = 5312; this.any_name(); } } - this.state = 5324; + this.state = 5317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24725,15 +24300,15 @@ export class PostgreSQLParser extends antlr.Parser { } public relation_column_name(): Relation_column_nameContext { let localContext = new Relation_column_nameContext(this.context, this.state); - this.enterRule(localContext, 552, PostgreSQLParser.RULE_relation_column_name); + this.enterRule(localContext, 554, PostgreSQLParser.RULE_relation_column_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 5325; + this.state = 5318; this.relation_name(); - this.state = 5326; + this.state = 5319; this.match(PostgreSQLParser.DOT); - this.state = 5327; + this.state = 5320; this.column_name(); } } @@ -24753,18 +24328,18 @@ export class PostgreSQLParser extends antlr.Parser { } public relation_name(): Relation_nameContext { let localContext = new Relation_nameContext(this.context, this.state); - this.enterRule(localContext, 554, PostgreSQLParser.RULE_relation_name); + this.enterRule(localContext, 556, PostgreSQLParser.RULE_relation_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 5329; + this.state = 5322; this.colid(); - this.state = 5331; + this.state = 5324; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 484, this.context) ) { case 1: { - this.state = 5330; + this.state = 5323; this.attrs(); } break; @@ -24787,23 +24362,22 @@ export class PostgreSQLParser extends antlr.Parser { } public any_name(): Any_nameContext { let localContext = new Any_nameContext(this.context, this.state); - this.enterRule(localContext, 556, PostgreSQLParser.RULE_any_name); - let _la: number; + this.enterRule(localContext, 558, PostgreSQLParser.RULE_any_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 5333; + this.state = 5326; this.colid(); - this.state = 5335; + this.state = 5328; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 11) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { + case 1: { - this.state = 5334; + this.state = 5327; this.attrs(); } + break; } - } } catch (re) { @@ -24822,12 +24396,12 @@ export class PostgreSQLParser extends antlr.Parser { } public attrs(): AttrsContext { let localContext = new AttrsContext(this.context, this.state); - this.enterRule(localContext, 558, PostgreSQLParser.RULE_attrs); + this.enterRule(localContext, 560, PostgreSQLParser.RULE_attrs); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5339; + this.state = 5332; this.errorHandler.sync(this); alternative = 1; do { @@ -24835,9 +24409,9 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 5337; + this.state = 5330; this.match(PostgreSQLParser.DOT); - this.state = 5338; + this.state = 5331; this.attr_name(); } } @@ -24845,9 +24419,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5341; + this.state = 5334; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 490, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 486, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -24867,26 +24441,26 @@ export class PostgreSQLParser extends antlr.Parser { } public type_name_list(): Type_name_listContext { let localContext = new Type_name_listContext(this.context, this.state); - this.enterRule(localContext, 560, PostgreSQLParser.RULE_type_name_list); + this.enterRule(localContext, 562, PostgreSQLParser.RULE_type_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5343; + this.state = 5336; this.typename(); - this.state = 5348; + this.state = 5341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5344; + this.state = 5337; this.match(PostgreSQLParser.COMMA); - this.state = 5345; + this.state = 5338; this.typename(); } } - this.state = 5350; + this.state = 5343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24908,47 +24482,47 @@ export class PostgreSQLParser extends antlr.Parser { } public truncatestmt(): TruncatestmtContext { let localContext = new TruncatestmtContext(this.context, this.state); - this.enterRule(localContext, 562, PostgreSQLParser.RULE_truncatestmt); + this.enterRule(localContext, 564, PostgreSQLParser.RULE_truncatestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5351; + this.state = 5344; this.match(PostgreSQLParser.KW_TRUNCATE); - this.state = 5353; + this.state = 5346; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: { - this.state = 5352; + this.state = 5345; this.match(PostgreSQLParser.KW_TABLE); } break; } - this.state = 5355; + this.state = 5348; this.truncate_table(); - this.state = 5360; + this.state = 5353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5356; + this.state = 5349; this.match(PostgreSQLParser.COMMA); - this.state = 5357; + this.state = 5350; this.truncate_table(); } } - this.state = 5362; + this.state = 5355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5365; + this.state = 5358; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { case 1: { - this.state = 5363; + this.state = 5356; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 314)) { this.errorHandler.recoverInline(this); @@ -24957,17 +24531,17 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5364; + this.state = 5357; this.match(PostgreSQLParser.KW_IDENTITY); } break; } - this.state = 5368; + this.state = 5361; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 5367; + this.state = 5360; this.opt_drop_behavior(); } break; @@ -24990,29 +24564,29 @@ export class PostgreSQLParser extends antlr.Parser { } public truncate_table(): Truncate_tableContext { let localContext = new Truncate_tableContext(this.context, this.state); - this.enterRule(localContext, 564, PostgreSQLParser.RULE_truncate_table); + this.enterRule(localContext, 566, PostgreSQLParser.RULE_truncate_table); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5371; + this.state = 5364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 5370; + this.state = 5363; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 5373; + this.state = 5366; this.table_name(); - this.state = 5375; + this.state = 5368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 5374; + this.state = 5367; this.match(PostgreSQLParser.STAR); } } @@ -25035,67 +24609,84 @@ export class PostgreSQLParser extends antlr.Parser { } public commentstmt(): CommentstmtContext { let localContext = new CommentstmtContext(this.context, this.state); - this.enterRule(localContext, 566, PostgreSQLParser.RULE_commentstmt); + this.enterRule(localContext, 568, PostgreSQLParser.RULE_commentstmt); try { - this.state = 5542; + this.state = 5535; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5377; + this.state = 5370; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5378; + this.state = 5371; this.match(PostgreSQLParser.KW_ON); - this.state = 5379; + this.state = 5372; this.object_type_any_name(); - this.state = 5380; + this.state = 5373; this.match(PostgreSQLParser.KW_IS); - this.state = 5381; + this.state = 5374; this.comment_text(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5383; + this.state = 5376; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5384; + this.state = 5377; this.match(PostgreSQLParser.KW_ON); - this.state = 5385; + this.state = 5378; this.match(PostgreSQLParser.KW_COLUMN); - this.state = 5386; + this.state = 5379; this.relation_column_name(); - this.state = 5387; + this.state = 5380; this.match(PostgreSQLParser.KW_IS); - this.state = 5388; + this.state = 5381; this.comment_text(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5390; + this.state = 5383; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5391; + this.state = 5384; this.match(PostgreSQLParser.KW_ON); - this.state = 5392; + this.state = 5385; this.object_type_name(); - this.state = 5393; + this.state = 5386; this.match(PostgreSQLParser.KW_IS); - this.state = 5394; + this.state = 5387; this.comment_text(); } break; case 4: this.enterOuterAlt(localContext, 4); { + this.state = 5389; + this.match(PostgreSQLParser.KW_COMMENT); + this.state = 5390; + this.match(PostgreSQLParser.KW_ON); + this.state = 5391; + this.match(PostgreSQLParser.KW_TYPE); + this.state = 5392; + this.typename(); + this.state = 5393; + this.match(PostgreSQLParser.KW_IS); + this.state = 5394; + this.comment_text(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { this.state = 5396; this.match(PostgreSQLParser.KW_COMMENT); this.state = 5397; this.match(PostgreSQLParser.KW_ON); this.state = 5398; - this.match(PostgreSQLParser.KW_TYPE); + this.match(PostgreSQLParser.KW_DOMAIN); this.state = 5399; this.typename(); this.state = 5400; @@ -25104,333 +24695,316 @@ export class PostgreSQLParser extends antlr.Parser { this.comment_text(); } break; - case 5: - this.enterOuterAlt(localContext, 5); + case 6: + this.enterOuterAlt(localContext, 6); { this.state = 5403; this.match(PostgreSQLParser.KW_COMMENT); this.state = 5404; this.match(PostgreSQLParser.KW_ON); this.state = 5405; - this.match(PostgreSQLParser.KW_DOMAIN); + this.match(PostgreSQLParser.KW_AGGREGATE); this.state = 5406; - this.typename(); + this.aggregate_with_argtypes(); this.state = 5407; this.match(PostgreSQLParser.KW_IS); this.state = 5408; this.comment_text(); } break; - case 6: - this.enterOuterAlt(localContext, 6); + case 7: + this.enterOuterAlt(localContext, 7); { this.state = 5410; this.match(PostgreSQLParser.KW_COMMENT); this.state = 5411; this.match(PostgreSQLParser.KW_ON); this.state = 5412; - this.match(PostgreSQLParser.KW_AGGREGATE); + this.match(PostgreSQLParser.KW_FUNCTION); this.state = 5413; - this.aggregate_with_argtypes(); + this.function_with_argtypes(); this.state = 5414; this.match(PostgreSQLParser.KW_IS); this.state = 5415; this.comment_text(); } break; - case 7: - this.enterOuterAlt(localContext, 7); + case 8: + this.enterOuterAlt(localContext, 8); { this.state = 5417; this.match(PostgreSQLParser.KW_COMMENT); this.state = 5418; this.match(PostgreSQLParser.KW_ON); this.state = 5419; - this.match(PostgreSQLParser.KW_FUNCTION); + this.match(PostgreSQLParser.KW_OPERATOR); this.state = 5420; - this.function_with_argtypes(); + this.operator_with_argtypes(); this.state = 5421; this.match(PostgreSQLParser.KW_IS); this.state = 5422; this.comment_text(); } break; - case 8: - this.enterOuterAlt(localContext, 8); + case 9: + this.enterOuterAlt(localContext, 9); { this.state = 5424; this.match(PostgreSQLParser.KW_COMMENT); this.state = 5425; this.match(PostgreSQLParser.KW_ON); this.state = 5426; - this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 5427; - this.operator_with_argtypes(); - this.state = 5428; - this.match(PostgreSQLParser.KW_IS); - this.state = 5429; - this.comment_text(); - } - break; - case 9: - this.enterOuterAlt(localContext, 9); - { - this.state = 5431; - this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5432; - this.match(PostgreSQLParser.KW_ON); - this.state = 5433; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 5434; + this.state = 5427; this.name(); - this.state = 5435; + this.state = 5428; this.match(PostgreSQLParser.KW_ON); - this.state = 5436; + this.state = 5429; this.table_name(); - this.state = 5437; + this.state = 5430; this.match(PostgreSQLParser.KW_IS); - this.state = 5438; + this.state = 5431; this.comment_text(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5440; + this.state = 5433; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5441; + this.state = 5434; this.match(PostgreSQLParser.KW_ON); - this.state = 5442; + this.state = 5435; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 5443; + this.state = 5436; this.name(); - this.state = 5444; + this.state = 5437; this.match(PostgreSQLParser.KW_ON); - this.state = 5446; + this.state = 5439; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { case 1: { - this.state = 5445; + this.state = 5438; this.match(PostgreSQLParser.KW_DOMAIN); } break; } - this.state = 5448; + this.state = 5441; this.any_name(); - this.state = 5449; + this.state = 5442; this.match(PostgreSQLParser.KW_IS); - this.state = 5450; + this.state = 5443; this.comment_text(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5452; + this.state = 5445; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5453; + this.state = 5446; this.match(PostgreSQLParser.KW_ON); - this.state = 5454; + this.state = 5447; this.match(PostgreSQLParser.KW_POLICY); - this.state = 5455; + this.state = 5448; this.name(); - this.state = 5456; + this.state = 5449; this.match(PostgreSQLParser.KW_ON); - this.state = 5457; + this.state = 5450; this.any_name(); - this.state = 5458; + this.state = 5451; this.match(PostgreSQLParser.KW_IS); - this.state = 5459; + this.state = 5452; this.comment_text(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5461; + this.state = 5454; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5462; + this.state = 5455; this.match(PostgreSQLParser.KW_ON); - this.state = 5463; + this.state = 5456; this.match(PostgreSQLParser.KW_RULE); - this.state = 5464; + this.state = 5457; this.name(); - this.state = 5465; + this.state = 5458; this.match(PostgreSQLParser.KW_ON); - this.state = 5466; + this.state = 5459; this.any_name(); - this.state = 5467; + this.state = 5460; this.match(PostgreSQLParser.KW_IS); - this.state = 5468; + this.state = 5461; this.comment_text(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5470; + this.state = 5463; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5471; + this.state = 5464; this.match(PostgreSQLParser.KW_ON); - this.state = 5472; + this.state = 5465; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 5473; + this.state = 5466; this.name(); - this.state = 5474; + this.state = 5467; this.match(PostgreSQLParser.KW_ON); - this.state = 5475; + this.state = 5468; this.any_name(); - this.state = 5476; + this.state = 5469; this.match(PostgreSQLParser.KW_IS); - this.state = 5477; + this.state = 5470; this.comment_text(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5479; + this.state = 5472; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5480; + this.state = 5473; this.match(PostgreSQLParser.KW_ON); - this.state = 5481; + this.state = 5474; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 5482; + this.state = 5475; this.procedure_with_argtypes(); - this.state = 5483; + this.state = 5476; this.match(PostgreSQLParser.KW_IS); - this.state = 5484; + this.state = 5477; this.comment_text(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5486; + this.state = 5479; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5487; + this.state = 5480; this.match(PostgreSQLParser.KW_ON); - this.state = 5488; + this.state = 5481; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 5489; + this.state = 5482; this.routine_with_argtypes(); - this.state = 5490; + this.state = 5483; this.match(PostgreSQLParser.KW_IS); - this.state = 5491; + this.state = 5484; this.comment_text(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5493; + this.state = 5486; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5494; + this.state = 5487; this.match(PostgreSQLParser.KW_ON); - this.state = 5495; + this.state = 5488; this.match(PostgreSQLParser.KW_TRANSFORM); - this.state = 5496; + this.state = 5489; this.match(PostgreSQLParser.KW_FOR); - this.state = 5497; + this.state = 5490; this.typename(); - this.state = 5498; + this.state = 5491; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 5499; + this.state = 5492; this.name(); - this.state = 5500; + this.state = 5493; this.match(PostgreSQLParser.KW_IS); - this.state = 5501; + this.state = 5494; this.comment_text(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5503; + this.state = 5496; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5504; + this.state = 5497; this.match(PostgreSQLParser.KW_ON); - this.state = 5505; + this.state = 5498; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 5506; + this.state = 5499; this.match(PostgreSQLParser.KW_CLASS); - this.state = 5507; + this.state = 5500; this.any_name(); - this.state = 5508; + this.state = 5501; this.match(PostgreSQLParser.KW_USING); - this.state = 5509; + this.state = 5502; this.name(); - this.state = 5510; + this.state = 5503; this.match(PostgreSQLParser.KW_IS); - this.state = 5511; + this.state = 5504; this.comment_text(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5513; + this.state = 5506; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5514; + this.state = 5507; this.match(PostgreSQLParser.KW_ON); - this.state = 5515; + this.state = 5508; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 5516; + this.state = 5509; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 5517; + this.state = 5510; this.any_name(); - this.state = 5518; + this.state = 5511; this.match(PostgreSQLParser.KW_USING); - this.state = 5519; + this.state = 5512; this.name(); - this.state = 5520; + this.state = 5513; this.match(PostgreSQLParser.KW_IS); - this.state = 5521; + this.state = 5514; this.comment_text(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5523; + this.state = 5516; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5524; + this.state = 5517; this.match(PostgreSQLParser.KW_ON); - this.state = 5525; + this.state = 5518; this.match(PostgreSQLParser.KW_LARGE); - this.state = 5526; + this.state = 5519; this.match(PostgreSQLParser.KW_OBJECT); - this.state = 5527; + this.state = 5520; this.numericonly(); - this.state = 5528; + this.state = 5521; this.match(PostgreSQLParser.KW_IS); - this.state = 5529; + this.state = 5522; this.comment_text(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5531; + this.state = 5524; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5532; + this.state = 5525; this.match(PostgreSQLParser.KW_ON); - this.state = 5533; + this.state = 5526; this.match(PostgreSQLParser.KW_CAST); - this.state = 5534; + this.state = 5527; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 5535; + this.state = 5528; this.typename(); - this.state = 5536; + this.state = 5529; this.match(PostgreSQLParser.KW_AS); - this.state = 5537; + this.state = 5530; this.typename(); - this.state = 5538; + this.state = 5531; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 5539; + this.state = 5532; this.match(PostgreSQLParser.KW_IS); - this.state = 5540; + this.state = 5533; this.comment_text(); } break; @@ -25452,9 +25026,9 @@ export class PostgreSQLParser extends antlr.Parser { } public comment_text(): Comment_textContext { let localContext = new Comment_textContext(this.context, this.state); - this.enterRule(localContext, 568, PostgreSQLParser.RULE_comment_text); + this.enterRule(localContext, 570, PostgreSQLParser.RULE_comment_text); try { - this.state = 5546; + this.state = 5539; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -25463,14 +25037,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 5544; + this.state = 5537; this.sconst(); } break; case PostgreSQLParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 5545; + this.state = 5538; this.match(PostgreSQLParser.KW_NULL); } break; @@ -25494,297 +25068,297 @@ export class PostgreSQLParser extends antlr.Parser { } public seclabelstmt(): SeclabelstmtContext { let localContext = new SeclabelstmtContext(this.context, this.state); - this.enterRule(localContext, 570, PostgreSQLParser.RULE_seclabelstmt); + this.enterRule(localContext, 572, PostgreSQLParser.RULE_seclabelstmt); let _la: number; try { - this.state = 5657; + this.state = 5650; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 511, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5548; + this.state = 5541; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5549; + this.state = 5542; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5551; + this.state = 5544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5550; + this.state = 5543; this.opt_provider(); } } - this.state = 5553; + this.state = 5546; this.match(PostgreSQLParser.KW_ON); - this.state = 5554; + this.state = 5547; this.match(PostgreSQLParser.KW_COLUMN); - this.state = 5555; + this.state = 5548; this.column_name(); - this.state = 5556; + this.state = 5549; this.match(PostgreSQLParser.KW_IS); - this.state = 5557; + this.state = 5550; this.security_label(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5559; + this.state = 5552; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5560; + this.state = 5553; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5562; + this.state = 5555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5561; + this.state = 5554; this.opt_provider(); } } - this.state = 5564; + this.state = 5557; this.match(PostgreSQLParser.KW_ON); - this.state = 5565; + this.state = 5558; this.match(PostgreSQLParser.KW_TYPE); - this.state = 5566; + this.state = 5559; this.typename(); - this.state = 5567; + this.state = 5560; this.match(PostgreSQLParser.KW_IS); - this.state = 5568; + this.state = 5561; this.security_label(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5570; + this.state = 5563; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5571; + this.state = 5564; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5573; + this.state = 5566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5572; + this.state = 5565; this.opt_provider(); } } - this.state = 5575; + this.state = 5568; this.match(PostgreSQLParser.KW_ON); - this.state = 5576; + this.state = 5569; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 5577; + this.state = 5570; this.typename(); - this.state = 5578; + this.state = 5571; this.match(PostgreSQLParser.KW_IS); - this.state = 5579; + this.state = 5572; this.security_label(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5581; + this.state = 5574; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5582; + this.state = 5575; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5584; + this.state = 5577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5583; + this.state = 5576; this.opt_provider(); } } - this.state = 5586; + this.state = 5579; this.match(PostgreSQLParser.KW_ON); - this.state = 5587; + this.state = 5580; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 5588; + this.state = 5581; this.aggregate_with_argtypes(); - this.state = 5589; + this.state = 5582; this.match(PostgreSQLParser.KW_IS); - this.state = 5590; + this.state = 5583; this.security_label(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5592; + this.state = 5585; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5593; + this.state = 5586; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5595; + this.state = 5588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5594; + this.state = 5587; this.opt_provider(); } } - this.state = 5597; + this.state = 5590; this.match(PostgreSQLParser.KW_ON); - this.state = 5598; + this.state = 5591; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 5599; + this.state = 5592; this.function_with_argtypes(); - this.state = 5600; + this.state = 5593; this.match(PostgreSQLParser.KW_IS); - this.state = 5601; + this.state = 5594; this.security_label(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5603; + this.state = 5596; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5604; + this.state = 5597; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5606; + this.state = 5599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5605; + this.state = 5598; this.opt_provider(); } } - this.state = 5608; + this.state = 5601; this.match(PostgreSQLParser.KW_ON); - this.state = 5609; + this.state = 5602; this.match(PostgreSQLParser.KW_LARGE); - this.state = 5610; + this.state = 5603; this.match(PostgreSQLParser.KW_OBJECT); - this.state = 5611; + this.state = 5604; this.numericonly(); - this.state = 5612; + this.state = 5605; this.match(PostgreSQLParser.KW_IS); - this.state = 5613; + this.state = 5606; this.security_label(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5615; + this.state = 5608; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5616; + this.state = 5609; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5618; + this.state = 5611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5617; + this.state = 5610; this.opt_provider(); } } - this.state = 5620; + this.state = 5613; this.match(PostgreSQLParser.KW_ON); - this.state = 5621; + this.state = 5614; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 5622; + this.state = 5615; this.procedure_with_argtypes(); - this.state = 5623; + this.state = 5616; this.match(PostgreSQLParser.KW_IS); - this.state = 5624; + this.state = 5617; this.security_label(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5626; + this.state = 5619; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5627; + this.state = 5620; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5629; + this.state = 5622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5628; + this.state = 5621; this.opt_provider(); } } - this.state = 5631; + this.state = 5624; this.match(PostgreSQLParser.KW_ON); - this.state = 5632; + this.state = 5625; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 5633; + this.state = 5626; this.routine_with_argtypes(); - this.state = 5634; + this.state = 5627; this.match(PostgreSQLParser.KW_IS); - this.state = 5635; + this.state = 5628; this.security_label(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5637; + this.state = 5630; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5638; + this.state = 5631; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5640; + this.state = 5633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5639; + this.state = 5632; this.opt_provider(); } } - this.state = 5642; + this.state = 5635; this.match(PostgreSQLParser.KW_ON); - this.state = 5643; + this.state = 5636; this.object_type_any_name(); - this.state = 5644; + this.state = 5637; this.match(PostgreSQLParser.KW_IS); - this.state = 5645; + this.state = 5638; this.security_label(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5647; + this.state = 5640; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5648; + this.state = 5641; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5650; + this.state = 5643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5649; + this.state = 5642; this.opt_provider(); } } - this.state = 5652; + this.state = 5645; this.match(PostgreSQLParser.KW_ON); - this.state = 5653; + this.state = 5646; this.object_type_name(); - this.state = 5654; + this.state = 5647; this.match(PostgreSQLParser.KW_IS); - this.state = 5655; + this.state = 5648; this.security_label(); } break; @@ -25806,13 +25380,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_provider(): Opt_providerContext { let localContext = new Opt_providerContext(this.context, this.state); - this.enterRule(localContext, 572, PostgreSQLParser.RULE_opt_provider); + this.enterRule(localContext, 574, PostgreSQLParser.RULE_opt_provider); try { this.enterOuterAlt(localContext, 1); { - this.state = 5659; + this.state = 5652; this.match(PostgreSQLParser.KW_FOR); - this.state = 5660; + this.state = 5653; this.nonreservedword_or_sconst(); } } @@ -25832,9 +25406,9 @@ export class PostgreSQLParser extends antlr.Parser { } public security_label(): Security_labelContext { let localContext = new Security_labelContext(this.context, this.state); - this.enterRule(localContext, 574, PostgreSQLParser.RULE_security_label); + this.enterRule(localContext, 576, PostgreSQLParser.RULE_security_label); try { - this.state = 5664; + this.state = 5657; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -25843,14 +25417,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 5662; + this.state = 5655; this.sconst(); } break; case PostgreSQLParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 5663; + this.state = 5656; this.match(PostgreSQLParser.KW_NULL); } break; @@ -25874,26 +25448,26 @@ export class PostgreSQLParser extends antlr.Parser { } public fetchstmt(): FetchstmtContext { let localContext = new FetchstmtContext(this.context, this.state); - this.enterRule(localContext, 576, PostgreSQLParser.RULE_fetchstmt); + this.enterRule(localContext, 578, PostgreSQLParser.RULE_fetchstmt); try { - this.state = 5670; + this.state = 5663; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FETCH: this.enterOuterAlt(localContext, 1); { - this.state = 5666; + this.state = 5659; this.match(PostgreSQLParser.KW_FETCH); - this.state = 5667; + this.state = 5660; this.fetch_args(); } break; case PostgreSQLParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 5668; + this.state = 5661; this.match(PostgreSQLParser.KW_MOVE); - this.state = 5669; + this.state = 5662; this.fetch_args(); } break; @@ -25917,109 +25491,130 @@ export class PostgreSQLParser extends antlr.Parser { } public fetch_args(): Fetch_argsContext { let localContext = new Fetch_argsContext(this.context, this.state); - this.enterRule(localContext, 578, PostgreSQLParser.RULE_fetch_args); + this.enterRule(localContext, 580, PostgreSQLParser.RULE_fetch_args); let _la: number; try { - this.state = 5757; + this.state = 5750; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 524, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5672; + this.state = 5665; this.cursor_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5673; + this.state = 5666; this.from_in(); - this.state = 5674; + this.state = 5667; this.cursor_name(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5676; + this.state = 5669; this.match(PostgreSQLParser.KW_NEXT); - this.state = 5678; + this.state = 5671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5677; + this.state = 5670; this.opt_from_in(); } } - this.state = 5680; + this.state = 5673; this.cursor_name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5681; + this.state = 5674; this.match(PostgreSQLParser.KW_PRIOR); - this.state = 5683; + this.state = 5676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5682; + this.state = 5675; this.opt_from_in(); } } - this.state = 5685; + this.state = 5678; this.cursor_name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5686; + this.state = 5679; this.match(PostgreSQLParser.KW_FIRST); - this.state = 5688; + this.state = 5681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5687; + this.state = 5680; this.opt_from_in(); } } - this.state = 5690; + this.state = 5683; this.cursor_name(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5691; + this.state = 5684; this.match(PostgreSQLParser.KW_LAST); - this.state = 5693; + this.state = 5686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5692; + this.state = 5685; this.opt_from_in(); } } - this.state = 5695; + this.state = 5688; this.cursor_name(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5696; + this.state = 5689; this.match(PostgreSQLParser.KW_ABSOLUTE); + this.state = 5690; + this.signediconst(); + this.state = 5692; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 64 || _la === 68) { + { + this.state = 5691; + this.opt_from_in(); + } + } + + this.state = 5694; + this.cursor_name(); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { + this.state = 5696; + this.match(PostgreSQLParser.KW_RELATIVE); this.state = 5697; this.signediconst(); this.state = 5699; @@ -26036,91 +25631,91 @@ export class PostgreSQLParser extends antlr.Parser { this.cursor_name(); } break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 5703; - this.match(PostgreSQLParser.KW_RELATIVE); - this.state = 5704; - this.signediconst(); - this.state = 5706; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 64 || _la === 68) { - { - this.state = 5705; - this.opt_from_in(); - } - } - - this.state = 5708; - this.cursor_name(); - } - break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5710; + this.state = 5703; this.signediconst(); - this.state = 5712; + this.state = 5705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5711; + this.state = 5704; this.opt_from_in(); } } - this.state = 5714; + this.state = 5707; this.cursor_name(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5716; + this.state = 5709; this.match(PostgreSQLParser.KW_ALL); - this.state = 5718; + this.state = 5711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5717; + this.state = 5710; this.opt_from_in(); } } - this.state = 5720; + this.state = 5713; this.cursor_name(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5721; + this.state = 5714; this.match(PostgreSQLParser.KW_FORWARD); - this.state = 5723; + this.state = 5716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5722; + this.state = 5715; this.opt_from_in(); } } - this.state = 5725; + this.state = 5718; this.cursor_name(); } break; case 12: this.enterOuterAlt(localContext, 12); { + this.state = 5719; + this.match(PostgreSQLParser.KW_FORWARD); + this.state = 5720; + this.signediconst(); + this.state = 5722; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 64 || _la === 68) { + { + this.state = 5721; + this.opt_from_in(); + } + } + + this.state = 5724; + this.cursor_name(); + } + break; + case 13: + this.enterOuterAlt(localContext, 13); + { this.state = 5726; this.match(PostgreSQLParser.KW_FORWARD); this.state = 5727; - this.signediconst(); + this.match(PostgreSQLParser.KW_ALL); this.state = 5729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -26135,53 +25730,53 @@ export class PostgreSQLParser extends antlr.Parser { this.cursor_name(); } break; - case 13: - this.enterOuterAlt(localContext, 13); - { - this.state = 5733; - this.match(PostgreSQLParser.KW_FORWARD); - this.state = 5734; - this.match(PostgreSQLParser.KW_ALL); - this.state = 5736; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 64 || _la === 68) { - { - this.state = 5735; - this.opt_from_in(); - } - } - - this.state = 5738; - this.cursor_name(); - } - break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5739; + this.state = 5732; this.match(PostgreSQLParser.KW_BACKWARD); - this.state = 5741; + this.state = 5734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5740; + this.state = 5733; this.opt_from_in(); } } - this.state = 5743; + this.state = 5736; this.cursor_name(); } break; case 15: this.enterOuterAlt(localContext, 15); { + this.state = 5737; + this.match(PostgreSQLParser.KW_BACKWARD); + this.state = 5738; + this.signediconst(); + this.state = 5740; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 64 || _la === 68) { + { + this.state = 5739; + this.opt_from_in(); + } + } + + this.state = 5742; + this.cursor_name(); + } + break; + case 16: + this.enterOuterAlt(localContext, 16); + { this.state = 5744; this.match(PostgreSQLParser.KW_BACKWARD); this.state = 5745; - this.signediconst(); + this.match(PostgreSQLParser.KW_ALL); this.state = 5747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -26196,27 +25791,6 @@ export class PostgreSQLParser extends antlr.Parser { this.cursor_name(); } break; - case 16: - this.enterOuterAlt(localContext, 16); - { - this.state = 5751; - this.match(PostgreSQLParser.KW_BACKWARD); - this.state = 5752; - this.match(PostgreSQLParser.KW_ALL); - this.state = 5754; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 64 || _la === 68) { - { - this.state = 5753; - this.opt_from_in(); - } - } - - this.state = 5756; - this.cursor_name(); - } - break; } } catch (re) { @@ -26235,12 +25809,12 @@ export class PostgreSQLParser extends antlr.Parser { } public from_in(): From_inContext { let localContext = new From_inContext(this.context, this.state); - this.enterRule(localContext, 580, PostgreSQLParser.RULE_from_in); + this.enterRule(localContext, 582, PostgreSQLParser.RULE_from_in); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5759; + this.state = 5752; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 68)) { this.errorHandler.recoverInline(this); @@ -26267,11 +25841,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_from_in(): Opt_from_inContext { let localContext = new Opt_from_inContext(this.context, this.state); - this.enterRule(localContext, 582, PostgreSQLParser.RULE_opt_from_in); + this.enterRule(localContext, 584, PostgreSQLParser.RULE_opt_from_in); try { this.enterOuterAlt(localContext, 1); { - this.state = 5761; + this.state = 5754; this.from_in(); } } @@ -26291,28 +25865,28 @@ export class PostgreSQLParser extends antlr.Parser { } public grantstmt(): GrantstmtContext { let localContext = new GrantstmtContext(this.context, this.state); - this.enterRule(localContext, 584, PostgreSQLParser.RULE_grantstmt); + this.enterRule(localContext, 586, PostgreSQLParser.RULE_grantstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 5763; + this.state = 5756; this.match(PostgreSQLParser.KW_GRANT); - this.state = 5764; + this.state = 5757; this.privileges(); - this.state = 5765; + this.state = 5758; this.match(PostgreSQLParser.KW_ON); - this.state = 5766; + this.state = 5759; this.privilege_target(); - this.state = 5767; + this.state = 5760; this.match(PostgreSQLParser.KW_TO); - this.state = 5768; + this.state = 5761; this.grantee_list(); - this.state = 5770; + this.state = 5763; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 529, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { case 1: { - this.state = 5769; + this.state = 5762; this.opt_grant_grant_option(); } break; @@ -26335,32 +25909,32 @@ export class PostgreSQLParser extends antlr.Parser { } public revokestmt(): RevokestmtContext { let localContext = new RevokestmtContext(this.context, this.state); - this.enterRule(localContext, 586, PostgreSQLParser.RULE_revokestmt); + this.enterRule(localContext, 588, PostgreSQLParser.RULE_revokestmt); try { - this.state = 5793; + this.state = 5786; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5772; + this.state = 5765; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 5773; + this.state = 5766; this.privileges(); - this.state = 5774; + this.state = 5767; this.match(PostgreSQLParser.KW_ON); - this.state = 5775; + this.state = 5768; this.privilege_target(); - this.state = 5776; + this.state = 5769; this.match(PostgreSQLParser.KW_FROM); - this.state = 5777; + this.state = 5770; this.grantee_list(); - this.state = 5779; + this.state = 5772; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 530, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 526, this.context) ) { case 1: { - this.state = 5778; + this.state = 5771; this.opt_drop_behavior(); } break; @@ -26370,30 +25944,30 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5781; + this.state = 5774; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 5782; + this.state = 5775; this.match(PostgreSQLParser.KW_GRANT); - this.state = 5783; + this.state = 5776; this.match(PostgreSQLParser.KW_OPTION); - this.state = 5784; + this.state = 5777; this.match(PostgreSQLParser.KW_FOR); - this.state = 5785; + this.state = 5778; this.privileges(); - this.state = 5786; + this.state = 5779; this.match(PostgreSQLParser.KW_ON); - this.state = 5787; + this.state = 5780; this.privilege_target(); - this.state = 5788; + this.state = 5781; this.match(PostgreSQLParser.KW_FROM); - this.state = 5789; + this.state = 5782; this.grantee_list(); - this.state = 5791; + this.state = 5784; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 531, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: { - this.state = 5790; + this.state = 5783; this.opt_drop_behavior(); } break; @@ -26418,66 +25992,66 @@ export class PostgreSQLParser extends antlr.Parser { } public privileges(): PrivilegesContext { let localContext = new PrivilegesContext(this.context, this.state); - this.enterRule(localContext, 588, PostgreSQLParser.RULE_privileges); + this.enterRule(localContext, 590, PostgreSQLParser.RULE_privileges); try { - this.state = 5811; + this.state = 5804; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 529, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5795; + this.state = 5788; this.privilege_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5796; + this.state = 5789; this.match(PostgreSQLParser.KW_ALL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5797; + this.state = 5790; this.match(PostgreSQLParser.KW_ALL); - this.state = 5798; + this.state = 5791; this.match(PostgreSQLParser.KW_PRIVILEGES); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5799; + this.state = 5792; this.match(PostgreSQLParser.KW_ALL); - this.state = 5800; + this.state = 5793; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 5801; - this.columnlist(); - this.state = 5802; + this.state = 5794; + this.column_list(); + this.state = 5795; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5804; + this.state = 5797; this.match(PostgreSQLParser.KW_ALL); - this.state = 5805; + this.state = 5798; this.match(PostgreSQLParser.KW_PRIVILEGES); - this.state = 5806; + this.state = 5799; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 5807; - this.columnlist(); - this.state = 5808; + this.state = 5800; + this.column_list(); + this.state = 5801; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5810; + this.state = 5803; this.beforeprivilegeselectlist(); } break; @@ -26499,26 +26073,26 @@ export class PostgreSQLParser extends antlr.Parser { } public beforeprivilegeselectlist(): BeforeprivilegeselectlistContext { let localContext = new BeforeprivilegeselectlistContext(this.context, this.state); - this.enterRule(localContext, 590, PostgreSQLParser.RULE_beforeprivilegeselectlist); + this.enterRule(localContext, 592, PostgreSQLParser.RULE_beforeprivilegeselectlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5813; + this.state = 5806; this.beforeprivilegeselect(); - this.state = 5818; + this.state = 5811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5814; + this.state = 5807; this.match(PostgreSQLParser.COMMA); - this.state = 5815; + this.state = 5808; this.beforeprivilegeselect(); } } - this.state = 5820; + this.state = 5813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26540,12 +26114,12 @@ export class PostgreSQLParser extends antlr.Parser { } public beforeprivilegeselect(): BeforeprivilegeselectContext { let localContext = new BeforeprivilegeselectContext(this.context, this.state); - this.enterRule(localContext, 592, PostgreSQLParser.RULE_beforeprivilegeselect); + this.enterRule(localContext, 594, PostgreSQLParser.RULE_beforeprivilegeselect); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5821; + this.state = 5814; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 88 || _la === 182 || _la === 202 || _la === 241 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 131173) !== 0) || ((((_la - 521)) & ~0x1F) === 0 && ((1 << (_la - 521)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -26572,26 +26146,26 @@ export class PostgreSQLParser extends antlr.Parser { } public privilege_list(): Privilege_listContext { let localContext = new Privilege_listContext(this.context, this.state); - this.enterRule(localContext, 594, PostgreSQLParser.RULE_privilege_list); + this.enterRule(localContext, 596, PostgreSQLParser.RULE_privilege_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5823; + this.state = 5816; this.privilege(); - this.state = 5828; + this.state = 5821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5824; + this.state = 5817; this.match(PostgreSQLParser.COMMA); - this.state = 5825; + this.state = 5818; this.privilege(); } } - this.state = 5830; + this.state = 5823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26613,23 +26187,23 @@ export class PostgreSQLParser extends antlr.Parser { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 596, PostgreSQLParser.RULE_privilege); + this.enterRule(localContext, 598, PostgreSQLParser.RULE_privilege); let _la: number; try { - this.state = 5847; + this.state = 5840; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 5831; + this.state = 5824; this.match(PostgreSQLParser.KW_SELECT); - this.state = 5833; + this.state = 5826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5832; + this.state = 5825; this.opt_column_list(); } } @@ -26639,14 +26213,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_REFERENCES: this.enterOuterAlt(localContext, 2); { - this.state = 5835; + this.state = 5828; this.match(PostgreSQLParser.KW_REFERENCES); - this.state = 5837; + this.state = 5830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5836; + this.state = 5829; this.opt_column_list(); } } @@ -26656,14 +26230,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CREATE: this.enterOuterAlt(localContext, 3); { - this.state = 5839; + this.state = 5832; this.match(PostgreSQLParser.KW_CREATE); - this.state = 5841; + this.state = 5834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5840; + this.state = 5833; this.opt_column_list(); } } @@ -27072,14 +26646,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 5843; + this.state = 5836; this.colid(); - this.state = 5845; + this.state = 5838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5844; + this.state = 5837; this.opt_column_list(); } } @@ -27106,224 +26680,224 @@ export class PostgreSQLParser extends antlr.Parser { } public privilege_target(): Privilege_targetContext { let localContext = new Privilege_targetContext(this.context, this.state); - this.enterRule(localContext, 598, PostgreSQLParser.RULE_privilege_target); + this.enterRule(localContext, 600, PostgreSQLParser.RULE_privilege_target); try { - this.state = 5907; + this.state = 5900; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 541, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 537, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5849; + this.state = 5842; this.qualified_name_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5850; + this.state = 5843; this.match(PostgreSQLParser.KW_TABLE); - this.state = 5851; + this.state = 5844; this.table_name_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5852; + this.state = 5845; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 5853; + this.state = 5846; this.qualified_name_list(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5854; + this.state = 5847; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 5855; + this.state = 5848; this.match(PostgreSQLParser.KW_DATA); - this.state = 5856; + this.state = 5849; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 5857; + this.state = 5850; this.name_list(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5858; + this.state = 5851; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 5859; + this.state = 5852; this.match(PostgreSQLParser.KW_SERVER); - this.state = 5860; + this.state = 5853; this.name_list(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5861; + this.state = 5854; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 5862; + this.state = 5855; this.function_with_argtypes_list(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5863; + this.state = 5856; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 5864; + this.state = 5857; this.procedure_with_argtypes_list(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5865; + this.state = 5858; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 5866; + this.state = 5859; this.routine_with_argtypes_list(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5867; + this.state = 5860; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 5868; + this.state = 5861; this.database_nameList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5869; + this.state = 5862; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 5870; + this.state = 5863; this.any_name_list(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5871; + this.state = 5864; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 5872; + this.state = 5865; this.name_list(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5873; + this.state = 5866; this.match(PostgreSQLParser.KW_LARGE); - this.state = 5874; + this.state = 5867; this.match(PostgreSQLParser.KW_OBJECT); - this.state = 5875; + this.state = 5868; this.numericonly_list(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5876; + this.state = 5869; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5877; + this.state = 5870; this.schema_name_list(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5878; + this.state = 5871; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 5879; + this.state = 5872; this.tablespace_name_list(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5880; + this.state = 5873; this.match(PostgreSQLParser.KW_TYPE); - this.state = 5881; + this.state = 5874; this.any_name_list(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5882; + this.state = 5875; this.match(PostgreSQLParser.KW_ALL); - this.state = 5883; + this.state = 5876; this.match(PostgreSQLParser.KW_TABLES); - this.state = 5884; + this.state = 5877; this.match(PostgreSQLParser.KW_IN); - this.state = 5885; + this.state = 5878; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5886; + this.state = 5879; this.schema_name_list(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5887; + this.state = 5880; this.match(PostgreSQLParser.KW_ALL); - this.state = 5888; + this.state = 5881; this.match(PostgreSQLParser.KW_SEQUENCES); - this.state = 5889; + this.state = 5882; this.match(PostgreSQLParser.KW_IN); - this.state = 5890; + this.state = 5883; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5891; + this.state = 5884; this.schema_name_list(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5892; + this.state = 5885; this.match(PostgreSQLParser.KW_ALL); - this.state = 5893; + this.state = 5886; this.match(PostgreSQLParser.KW_FUNCTIONS); - this.state = 5894; + this.state = 5887; this.match(PostgreSQLParser.KW_IN); - this.state = 5895; + this.state = 5888; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5896; + this.state = 5889; this.schema_name_list(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5897; + this.state = 5890; this.match(PostgreSQLParser.KW_ALL); - this.state = 5898; + this.state = 5891; this.match(PostgreSQLParser.KW_PROCEDURES); - this.state = 5899; + this.state = 5892; this.match(PostgreSQLParser.KW_IN); - this.state = 5900; + this.state = 5893; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5901; + this.state = 5894; this.schema_name_list(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5902; + this.state = 5895; this.match(PostgreSQLParser.KW_ALL); - this.state = 5903; + this.state = 5896; this.match(PostgreSQLParser.KW_ROUTINES); - this.state = 5904; + this.state = 5897; this.match(PostgreSQLParser.KW_IN); - this.state = 5905; + this.state = 5898; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5906; + this.state = 5899; this.schema_name_list(); } break; @@ -27345,26 +26919,26 @@ export class PostgreSQLParser extends antlr.Parser { } public grantee_list(): Grantee_listContext { let localContext = new Grantee_listContext(this.context, this.state); - this.enterRule(localContext, 600, PostgreSQLParser.RULE_grantee_list); + this.enterRule(localContext, 602, PostgreSQLParser.RULE_grantee_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5909; + this.state = 5902; this.grantee(); - this.state = 5914; + this.state = 5907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5910; + this.state = 5903; this.match(PostgreSQLParser.COMMA); - this.state = 5911; + this.state = 5904; this.grantee(); } } - this.state = 5916; + this.state = 5909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -27386,9 +26960,9 @@ export class PostgreSQLParser extends antlr.Parser { } public grantee(): GranteeContext { let localContext = new GranteeContext(this.context, this.state); - this.enterRule(localContext, 602, PostgreSQLParser.RULE_grantee); + this.enterRule(localContext, 604, PostgreSQLParser.RULE_grantee); try { - this.state = 5920; + this.state = 5913; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -27818,16 +27392,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 5917; + this.state = 5910; this.rolespec(); } break; case PostgreSQLParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 5918; + this.state = 5911; this.match(PostgreSQLParser.KW_GROUP); - this.state = 5919; + this.state = 5912; this.rolespec(); } break; @@ -27851,15 +27425,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_grant_grant_option(): Opt_grant_grant_optionContext { let localContext = new Opt_grant_grant_optionContext(this.context, this.state); - this.enterRule(localContext, 604, PostgreSQLParser.RULE_opt_grant_grant_option); + this.enterRule(localContext, 606, PostgreSQLParser.RULE_opt_grant_grant_option); try { this.enterOuterAlt(localContext, 1); { - this.state = 5922; + this.state = 5915; this.match(PostgreSQLParser.KW_WITH); - this.state = 5923; + this.state = 5916; this.match(PostgreSQLParser.KW_GRANT); - this.state = 5924; + this.state = 5917; this.match(PostgreSQLParser.KW_OPTION); } } @@ -27879,34 +27453,34 @@ export class PostgreSQLParser extends antlr.Parser { } public grantrolestmt(): GrantrolestmtContext { let localContext = new GrantrolestmtContext(this.context, this.state); - this.enterRule(localContext, 606, PostgreSQLParser.RULE_grantrolestmt); + this.enterRule(localContext, 608, PostgreSQLParser.RULE_grantrolestmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 5926; + this.state = 5919; this.match(PostgreSQLParser.KW_GRANT); - this.state = 5927; + this.state = 5920; this.privilege_list(); - this.state = 5928; + this.state = 5921; this.match(PostgreSQLParser.KW_TO); - this.state = 5929; + this.state = 5922; this.role_list(); - this.state = 5931; + this.state = 5924; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { case 1: { - this.state = 5930; + this.state = 5923; this.opt_grant_admin_option(); } break; } - this.state = 5934; + this.state = 5927; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 541, this.context) ) { case 1: { - this.state = 5933; + this.state = 5926; this.opt_granted_by(); } break; @@ -27929,38 +27503,38 @@ export class PostgreSQLParser extends antlr.Parser { } public revokerolestmt(): RevokerolestmtContext { let localContext = new RevokerolestmtContext(this.context, this.state); - this.enterRule(localContext, 608, PostgreSQLParser.RULE_revokerolestmt); + this.enterRule(localContext, 610, PostgreSQLParser.RULE_revokerolestmt); try { - this.state = 5959; + this.state = 5952; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5936; + this.state = 5929; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 5937; + this.state = 5930; this.privilege_list(); - this.state = 5938; + this.state = 5931; this.match(PostgreSQLParser.KW_FROM); - this.state = 5939; + this.state = 5932; this.role_list(); - this.state = 5941; + this.state = 5934; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 542, this.context) ) { case 1: { - this.state = 5940; + this.state = 5933; this.opt_granted_by(); } break; } - this.state = 5944; + this.state = 5937; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 543, this.context) ) { case 1: { - this.state = 5943; + this.state = 5936; this.opt_drop_behavior(); } break; @@ -27970,36 +27544,36 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5946; + this.state = 5939; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 5947; + this.state = 5940; this.match(PostgreSQLParser.KW_ADMIN); - this.state = 5948; + this.state = 5941; this.match(PostgreSQLParser.KW_OPTION); - this.state = 5949; + this.state = 5942; this.match(PostgreSQLParser.KW_FOR); - this.state = 5950; + this.state = 5943; this.privilege_list(); - this.state = 5951; + this.state = 5944; this.match(PostgreSQLParser.KW_FROM); - this.state = 5952; + this.state = 5945; this.role_list(); - this.state = 5954; + this.state = 5947; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 5953; + this.state = 5946; this.opt_granted_by(); } break; } - this.state = 5957; + this.state = 5950; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { case 1: { - this.state = 5956; + this.state = 5949; this.opt_drop_behavior(); } break; @@ -28024,15 +27598,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_grant_admin_option(): Opt_grant_admin_optionContext { let localContext = new Opt_grant_admin_optionContext(this.context, this.state); - this.enterRule(localContext, 610, PostgreSQLParser.RULE_opt_grant_admin_option); + this.enterRule(localContext, 612, PostgreSQLParser.RULE_opt_grant_admin_option); try { this.enterOuterAlt(localContext, 1); { - this.state = 5961; + this.state = 5954; this.match(PostgreSQLParser.KW_WITH); - this.state = 5962; + this.state = 5955; this.match(PostgreSQLParser.KW_ADMIN); - this.state = 5963; + this.state = 5956; this.match(PostgreSQLParser.KW_OPTION); } } @@ -28052,15 +27626,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_granted_by(): Opt_granted_byContext { let localContext = new Opt_granted_byContext(this.context, this.state); - this.enterRule(localContext, 612, PostgreSQLParser.RULE_opt_granted_by); + this.enterRule(localContext, 614, PostgreSQLParser.RULE_opt_granted_by); try { this.enterOuterAlt(localContext, 1); { - this.state = 5965; + this.state = 5958; this.match(PostgreSQLParser.KW_GRANTED); - this.state = 5966; + this.state = 5959; this.match(PostgreSQLParser.KW_BY); - this.state = 5967; + this.state = 5960; this.rolespec(); } } @@ -28080,19 +27654,19 @@ export class PostgreSQLParser extends antlr.Parser { } public alterdefaultprivilegesstmt(): AlterdefaultprivilegesstmtContext { let localContext = new AlterdefaultprivilegesstmtContext(this.context, this.state); - this.enterRule(localContext, 614, PostgreSQLParser.RULE_alterdefaultprivilegesstmt); + this.enterRule(localContext, 616, PostgreSQLParser.RULE_alterdefaultprivilegesstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 5969; + this.state = 5962; this.match(PostgreSQLParser.KW_ALTER); - this.state = 5970; + this.state = 5963; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 5971; + this.state = 5964; this.match(PostgreSQLParser.KW_PRIVILEGES); - this.state = 5972; + this.state = 5965; this.defacloptionlist(); - this.state = 5973; + this.state = 5966; this.defaclaction(); } } @@ -28112,22 +27686,22 @@ export class PostgreSQLParser extends antlr.Parser { } public defacloptionlist(): DefacloptionlistContext { let localContext = new DefacloptionlistContext(this.context, this.state); - this.enterRule(localContext, 616, PostgreSQLParser.RULE_defacloptionlist); + this.enterRule(localContext, 618, PostgreSQLParser.RULE_defacloptionlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5978; + this.state = 5971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 62 || _la === 68) { { { - this.state = 5975; + this.state = 5968; this.defacloption(); } } - this.state = 5980; + this.state = 5973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28149,41 +27723,41 @@ export class PostgreSQLParser extends antlr.Parser { } public defacloption(): DefacloptionContext { let localContext = new DefacloptionContext(this.context, this.state); - this.enterRule(localContext, 618, PostgreSQLParser.RULE_defacloption); + this.enterRule(localContext, 620, PostgreSQLParser.RULE_defacloption); try { - this.state = 5990; + this.state = 5983; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5981; + this.state = 5974; this.match(PostgreSQLParser.KW_IN); - this.state = 5982; + this.state = 5975; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5983; + this.state = 5976; this.schema_name_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5984; + this.state = 5977; this.match(PostgreSQLParser.KW_FOR); - this.state = 5985; + this.state = 5978; this.match(PostgreSQLParser.KW_ROLE); - this.state = 5986; + this.state = 5979; this.role_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5987; + this.state = 5980; this.match(PostgreSQLParser.KW_FOR); - this.state = 5988; + this.state = 5981; this.match(PostgreSQLParser.KW_USER); - this.state = 5989; + this.state = 5982; this.role_list(); } break; @@ -28205,32 +27779,32 @@ export class PostgreSQLParser extends antlr.Parser { } public defaclaction(): DefaclactionContext { let localContext = new DefaclactionContext(this.context, this.state); - this.enterRule(localContext, 620, PostgreSQLParser.RULE_defaclaction); + this.enterRule(localContext, 622, PostgreSQLParser.RULE_defaclaction); try { - this.state = 6022; + this.state = 6015; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5992; + this.state = 5985; this.match(PostgreSQLParser.KW_GRANT); - this.state = 5993; + this.state = 5986; this.privileges(); - this.state = 5994; + this.state = 5987; this.match(PostgreSQLParser.KW_ON); - this.state = 5995; + this.state = 5988; this.defacl_privilege_target(); - this.state = 5996; + this.state = 5989; this.match(PostgreSQLParser.KW_TO); - this.state = 5997; + this.state = 5990; this.grantee_list(); - this.state = 5999; + this.state = 5992; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: { - this.state = 5998; + this.state = 5991; this.opt_grant_grant_option(); } break; @@ -28240,24 +27814,24 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6001; + this.state = 5994; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 6002; + this.state = 5995; this.privileges(); - this.state = 6003; + this.state = 5996; this.match(PostgreSQLParser.KW_ON); - this.state = 6004; + this.state = 5997; this.defacl_privilege_target(); - this.state = 6005; + this.state = 5998; this.match(PostgreSQLParser.KW_FROM); - this.state = 6006; + this.state = 5999; this.grantee_list(); - this.state = 6008; + this.state = 6001; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: { - this.state = 6007; + this.state = 6000; this.opt_drop_behavior(); } break; @@ -28267,30 +27841,30 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6010; + this.state = 6003; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 6011; + this.state = 6004; this.match(PostgreSQLParser.KW_GRANT); - this.state = 6012; + this.state = 6005; this.match(PostgreSQLParser.KW_OPTION); - this.state = 6013; + this.state = 6006; this.match(PostgreSQLParser.KW_FOR); - this.state = 6014; + this.state = 6007; this.privileges(); - this.state = 6015; + this.state = 6008; this.match(PostgreSQLParser.KW_ON); - this.state = 6016; + this.state = 6009; this.defacl_privilege_target(); - this.state = 6017; + this.state = 6010; this.match(PostgreSQLParser.KW_FROM); - this.state = 6018; + this.state = 6011; this.grantee_list(); - this.state = 6020; + this.state = 6013; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: { - this.state = 6019; + this.state = 6012; this.opt_drop_behavior(); } break; @@ -28315,12 +27889,12 @@ export class PostgreSQLParser extends antlr.Parser { } public defacl_privilege_target(): Defacl_privilege_targetContext { let localContext = new Defacl_privilege_targetContext(this.context, this.state); - this.enterRule(localContext, 622, PostgreSQLParser.RULE_defacl_privilege_target); + this.enterRule(localContext, 624, PostgreSQLParser.RULE_defacl_privilege_target); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6024; + this.state = 6017; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 361 || _la === 455 || _la === 456)) { this.errorHandler.recoverInline(this); @@ -28347,121 +27921,121 @@ export class PostgreSQLParser extends antlr.Parser { } public indexstmt(): IndexstmtContext { let localContext = new IndexstmtContext(this.context, this.state); - this.enterRule(localContext, 624, PostgreSQLParser.RULE_indexstmt); + this.enterRule(localContext, 626, PostgreSQLParser.RULE_indexstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6026; + this.state = 6019; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6028; + this.state = 6021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98) { { - this.state = 6027; + this.state = 6020; this.opt_unique(); } } - this.state = 6030; + this.state = 6023; this.match(PostgreSQLParser.KW_INDEX); - this.state = 6032; + this.state = 6025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6031; + this.state = 6024; this.opt_concurrently(); } } - this.state = 6035; + this.state = 6028; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 559, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { case 1: { - this.state = 6034; + this.state = 6027; this.opt_if_not_exists(); } break; } - this.state = 6038; + this.state = 6031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 6037; + this.state = 6030; this.opt_index_name(); } } - this.state = 6040; + this.state = 6033; this.match(PostgreSQLParser.KW_ON); - this.state = 6041; + this.state = 6034; this.relation_expr(); - this.state = 6043; + this.state = 6036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6042; + this.state = 6035; this.access_method_clause(); } } - this.state = 6045; + this.state = 6038; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6046; + this.state = 6039; this.index_params(); - this.state = 6047; + this.state = 6040; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6049; + this.state = 6042; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 562, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { case 1: { - this.state = 6048; + this.state = 6041; this.opt_include(); } break; } - this.state = 6052; + this.state = 6045; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 559, this.context) ) { case 1: { - this.state = 6051; + this.state = 6044; this.nulls_distinct(); } break; } - this.state = 6055; + this.state = 6048; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { case 1: { - this.state = 6054; + this.state = 6047; this.opt_reloptions(); } break; } - this.state = 6058; + this.state = 6051; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 561, this.context) ) { case 1: { - this.state = 6057; + this.state = 6050; this.opttablespace(); } break; } - this.state = 6061; + this.state = 6054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 6060; + this.state = 6053; this.where_clause(); } } @@ -28484,11 +28058,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_unique(): Opt_uniqueContext { let localContext = new Opt_uniqueContext(this.context, this.state); - this.enterRule(localContext, 626, PostgreSQLParser.RULE_opt_unique); + this.enterRule(localContext, 628, PostgreSQLParser.RULE_opt_unique); try { this.enterOuterAlt(localContext, 1); { - this.state = 6063; + this.state = 6056; this.match(PostgreSQLParser.KW_UNIQUE); } } @@ -28508,11 +28082,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_concurrently(): Opt_concurrentlyContext { let localContext = new Opt_concurrentlyContext(this.context, this.state); - this.enterRule(localContext, 628, PostgreSQLParser.RULE_opt_concurrently); + this.enterRule(localContext, 630, PostgreSQLParser.RULE_opt_concurrently); try { this.enterOuterAlt(localContext, 1); { - this.state = 6065; + this.state = 6058; this.match(PostgreSQLParser.KW_CONCURRENTLY); } } @@ -28532,11 +28106,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_index_name(): Opt_index_nameContext { let localContext = new Opt_index_nameContext(this.context, this.state); - this.enterRule(localContext, 630, PostgreSQLParser.RULE_opt_index_name); + this.enterRule(localContext, 632, PostgreSQLParser.RULE_opt_index_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 6067; + this.state = 6060; this.name(); } } @@ -28556,13 +28130,13 @@ export class PostgreSQLParser extends antlr.Parser { } public access_method_clause(): Access_method_clauseContext { let localContext = new Access_method_clauseContext(this.context, this.state); - this.enterRule(localContext, 632, PostgreSQLParser.RULE_access_method_clause); + this.enterRule(localContext, 634, PostgreSQLParser.RULE_access_method_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6069; + this.state = 6062; this.match(PostgreSQLParser.KW_USING); - this.state = 6070; + this.state = 6063; this.name(); } } @@ -28582,26 +28156,26 @@ export class PostgreSQLParser extends antlr.Parser { } public index_params(): Index_paramsContext { let localContext = new Index_paramsContext(this.context, this.state); - this.enterRule(localContext, 634, PostgreSQLParser.RULE_index_params); + this.enterRule(localContext, 636, PostgreSQLParser.RULE_index_params); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6072; + this.state = 6065; this.index_elem(); - this.state = 6077; + this.state = 6070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6073; + this.state = 6066; this.match(PostgreSQLParser.COMMA); - this.state = 6074; + this.state = 6067; this.index_elem(); } } - this.state = 6079; + this.state = 6072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28623,51 +28197,51 @@ export class PostgreSQLParser extends antlr.Parser { } public index_elem_options(): Index_elem_optionsContext { let localContext = new Index_elem_optionsContext(this.context, this.state); - this.enterRule(localContext, 636, PostgreSQLParser.RULE_index_elem_options); + this.enterRule(localContext, 638, PostgreSQLParser.RULE_index_elem_options); let _la: number; try { - this.state = 6103; + this.state = 6096; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 571, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6081; + this.state = 6074; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { case 1: { - this.state = 6080; + this.state = 6073; this.opt_collate(); } break; } - this.state = 6084; + this.state = 6077; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: { - this.state = 6083; + this.state = 6076; this.opt_class(); } break; } - this.state = 6087; + this.state = 6080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 6086; + this.state = 6079; this.opt_asc_desc(); } } - this.state = 6090; + this.state = 6083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 6089; + this.state = 6082; this.opt_nulls_order(); } } @@ -28677,36 +28251,36 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6093; + this.state = 6086; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 572, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { case 1: { - this.state = 6092; + this.state = 6085; this.opt_collate(); } break; } - this.state = 6095; + this.state = 6088; this.any_name(); - this.state = 6096; + this.state = 6089; this.reloptions(); - this.state = 6098; + this.state = 6091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 6097; + this.state = 6090; this.opt_asc_desc(); } } - this.state = 6101; + this.state = 6094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 6100; + this.state = 6093; this.opt_nulls_order(); } } @@ -28731,39 +28305,39 @@ export class PostgreSQLParser extends antlr.Parser { } public index_elem(): Index_elemContext { let localContext = new Index_elemContext(this.context, this.state); - this.enterRule(localContext, 638, PostgreSQLParser.RULE_index_elem); + this.enterRule(localContext, 640, PostgreSQLParser.RULE_index_elem); try { - this.state = 6116; + this.state = 6109; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 572, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6105; + this.state = 6098; this.column_name(); - this.state = 6106; + this.state = 6099; this.index_elem_options(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6108; + this.state = 6101; this.func_expr_windowless(); - this.state = 6109; + this.state = 6102; this.index_elem_options(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6111; + this.state = 6104; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6112; + this.state = 6105; this.a_expr(); - this.state = 6113; + this.state = 6106; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6114; + this.state = 6107; this.index_elem_options(); } break; @@ -28785,17 +28359,17 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_include(): Opt_includeContext { let localContext = new Opt_includeContext(this.context, this.state); - this.enterRule(localContext, 640, PostgreSQLParser.RULE_opt_include); + this.enterRule(localContext, 642, PostgreSQLParser.RULE_opt_include); try { this.enterOuterAlt(localContext, 1); { - this.state = 6118; + this.state = 6111; this.match(PostgreSQLParser.KW_INCLUDE); - this.state = 6119; + this.state = 6112; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6120; + this.state = 6113; this.index_including_params(); - this.state = 6121; + this.state = 6114; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -28815,26 +28389,26 @@ export class PostgreSQLParser extends antlr.Parser { } public index_including_params(): Index_including_paramsContext { let localContext = new Index_including_paramsContext(this.context, this.state); - this.enterRule(localContext, 642, PostgreSQLParser.RULE_index_including_params); + this.enterRule(localContext, 644, PostgreSQLParser.RULE_index_including_params); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6123; + this.state = 6116; this.index_elem(); - this.state = 6128; + this.state = 6121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6124; + this.state = 6117; this.match(PostgreSQLParser.COMMA); - this.state = 6125; + this.state = 6118; this.index_elem(); } } - this.state = 6130; + this.state = 6123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28856,13 +28430,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_collate(): Opt_collateContext { let localContext = new Opt_collateContext(this.context, this.state); - this.enterRule(localContext, 644, PostgreSQLParser.RULE_opt_collate); + this.enterRule(localContext, 646, PostgreSQLParser.RULE_opt_collate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6131; + this.state = 6124; this.match(PostgreSQLParser.KW_COLLATE); - this.state = 6132; + this.state = 6125; this.any_name(); } } @@ -28882,11 +28456,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_class(): Opt_classContext { let localContext = new Opt_classContext(this.context, this.state); - this.enterRule(localContext, 646, PostgreSQLParser.RULE_opt_class); + this.enterRule(localContext, 648, PostgreSQLParser.RULE_opt_class); try { this.enterOuterAlt(localContext, 1); { - this.state = 6134; + this.state = 6127; this.any_name(); } } @@ -28906,12 +28480,12 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_asc_desc(): Opt_asc_descContext { let localContext = new Opt_asc_descContext(this.context, this.state); - this.enterRule(localContext, 648, PostgreSQLParser.RULE_opt_asc_desc); + this.enterRule(localContext, 650, PostgreSQLParser.RULE_opt_asc_desc); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6136; + this.state = 6129; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -28938,26 +28512,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_nulls_order(): Opt_nulls_orderContext { let localContext = new Opt_nulls_orderContext(this.context, this.state); - this.enterRule(localContext, 650, PostgreSQLParser.RULE_opt_nulls_order); + this.enterRule(localContext, 652, PostgreSQLParser.RULE_opt_nulls_order); try { - this.state = 6142; + this.state = 6135; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6138; + this.state = 6131; this.match(PostgreSQLParser.KW_NULLS); - this.state = 6139; + this.state = 6132; this.match(PostgreSQLParser.KW_FIRST); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6140; + this.state = 6133; this.match(PostgreSQLParser.KW_NULLS); - this.state = 6141; + this.state = 6134; this.match(PostgreSQLParser.KW_LAST); } break; @@ -28979,72 +28553,72 @@ export class PostgreSQLParser extends antlr.Parser { } public createfunctionstmt(): CreatefunctionstmtContext { let localContext = new CreatefunctionstmtContext(this.context, this.state); - this.enterRule(localContext, 652, PostgreSQLParser.RULE_createfunctionstmt); + this.enterRule(localContext, 654, PostgreSQLParser.RULE_createfunctionstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6144; + this.state = 6137; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6146; + this.state = 6139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 6145; + this.state = 6138; this.opt_or_replace(); } } - this.state = 6152; + this.state = 6145; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FUNCTION: { - this.state = 6148; + this.state = 6141; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6149; + this.state = 6142; this.function_name_create(); } break; case PostgreSQLParser.KW_PROCEDURE: { - this.state = 6150; + this.state = 6143; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 6151; + this.state = 6144; this.procedure_name_create(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6154; + this.state = 6147; this.func_args_with_defaults(); - this.state = 6164; + this.state = 6157; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { case 1: { - this.state = 6155; + this.state = 6148; this.match(PostgreSQLParser.KW_RETURNS); - this.state = 6162; + this.state = 6155; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 6156; + this.state = 6149; this.func_return(); } break; case 2: { - this.state = 6157; + this.state = 6150; this.match(PostgreSQLParser.KW_TABLE); - this.state = 6158; + this.state = 6151; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6159; + this.state = 6152; this.table_func_column_list(); - this.state = 6160; + this.state = 6153; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -29052,16 +28626,16 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 6166; + this.state = 6159; this.createfunc_opt_list(); - this.state = 6169; + this.state = 6162; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 6167; + this.state = 6160; this.match(PostgreSQLParser.KW_WITH); - this.state = 6168; + this.state = 6161; this.attrilist(); } break; @@ -29084,32 +28658,32 @@ export class PostgreSQLParser extends antlr.Parser { } public attrilist(): AttrilistContext { let localContext = new AttrilistContext(this.context, this.state); - this.enterRule(localContext, 654, PostgreSQLParser.RULE_attrilist); + this.enterRule(localContext, 656, PostgreSQLParser.RULE_attrilist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6171; + this.state = 6164; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6172; + this.state = 6165; this.colid(); - this.state = 6177; + this.state = 6170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6173; + this.state = 6166; this.match(PostgreSQLParser.COMMA); - this.state = 6174; + this.state = 6167; this.colid(); } } - this.state = 6179; + this.state = 6172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6180; + this.state = 6173; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -29129,13 +28703,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_or_replace(): Opt_or_replaceContext { let localContext = new Opt_or_replaceContext(this.context, this.state); - this.enterRule(localContext, 656, PostgreSQLParser.RULE_opt_or_replace); + this.enterRule(localContext, 658, PostgreSQLParser.RULE_opt_or_replace); try { this.enterOuterAlt(localContext, 1); { - this.state = 6182; + this.state = 6175; this.match(PostgreSQLParser.KW_OR); - this.state = 6183; + this.state = 6176; this.match(PostgreSQLParser.KW_REPLACE); } } @@ -29155,24 +28729,24 @@ export class PostgreSQLParser extends antlr.Parser { } public func_args(): Func_argsContext { let localContext = new Func_argsContext(this.context, this.state); - this.enterRule(localContext, 658, PostgreSQLParser.RULE_func_args); + this.enterRule(localContext, 660, PostgreSQLParser.RULE_func_args); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6185; + this.state = 6178; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6187; + this.state = 6180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || _la === 68 || _la === 92 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 6186; + this.state = 6179; this.func_args_list(); } } - this.state = 6189; + this.state = 6182; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -29192,26 +28766,26 @@ export class PostgreSQLParser extends antlr.Parser { } public func_args_list(): Func_args_listContext { let localContext = new Func_args_listContext(this.context, this.state); - this.enterRule(localContext, 660, PostgreSQLParser.RULE_func_args_list); + this.enterRule(localContext, 662, PostgreSQLParser.RULE_func_args_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6191; + this.state = 6184; this.func_arg(); - this.state = 6196; + this.state = 6189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6192; + this.state = 6185; this.match(PostgreSQLParser.COMMA); - this.state = 6193; + this.state = 6186; this.func_arg(); } } - this.state = 6198; + this.state = 6191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29233,26 +28807,26 @@ export class PostgreSQLParser extends antlr.Parser { } public routine_with_argtypes_list(): Routine_with_argtypes_listContext { let localContext = new Routine_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 662, PostgreSQLParser.RULE_routine_with_argtypes_list); + this.enterRule(localContext, 664, PostgreSQLParser.RULE_routine_with_argtypes_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6199; + this.state = 6192; this.routine_with_argtypes(); - this.state = 6204; + this.state = 6197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6200; + this.state = 6193; this.match(PostgreSQLParser.COMMA); - this.state = 6201; + this.state = 6194; this.routine_with_argtypes(); } } - this.state = 6206; + this.state = 6199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29274,39 +28848,39 @@ export class PostgreSQLParser extends antlr.Parser { } public routine_with_argtypes(): Routine_with_argtypesContext { let localContext = new Routine_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 664, PostgreSQLParser.RULE_routine_with_argtypes); + this.enterRule(localContext, 666, PostgreSQLParser.RULE_routine_with_argtypes); let _la: number; try { - this.state = 6215; + this.state = 6208; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 589, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6207; + this.state = 6200; this.routine_name(); - this.state = 6208; + this.state = 6201; this.func_args(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6210; + this.state = 6203; this.type_func_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6211; + this.state = 6204; this.colid(); - this.state = 6213; + this.state = 6206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 6212; + this.state = 6205; this.indirection(); } } @@ -29331,26 +28905,26 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_with_argtypes_list(): Procedure_with_argtypes_listContext { let localContext = new Procedure_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 666, PostgreSQLParser.RULE_procedure_with_argtypes_list); + this.enterRule(localContext, 668, PostgreSQLParser.RULE_procedure_with_argtypes_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6217; + this.state = 6210; this.procedure_with_argtypes(); - this.state = 6222; + this.state = 6215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6218; + this.state = 6211; this.match(PostgreSQLParser.COMMA); - this.state = 6219; + this.state = 6212; this.procedure_with_argtypes(); } } - this.state = 6224; + this.state = 6217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29372,39 +28946,39 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_with_argtypes(): Procedure_with_argtypesContext { let localContext = new Procedure_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 668, PostgreSQLParser.RULE_procedure_with_argtypes); + this.enterRule(localContext, 670, PostgreSQLParser.RULE_procedure_with_argtypes); let _la: number; try { - this.state = 6233; + this.state = 6226; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 592, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 588, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6225; + this.state = 6218; this.procedure_name(); - this.state = 6226; + this.state = 6219; this.func_args(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6228; + this.state = 6221; this.type_func_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6229; + this.state = 6222; this.colid(); - this.state = 6231; + this.state = 6224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 6230; + this.state = 6223; this.indirection(); } } @@ -29429,26 +29003,26 @@ export class PostgreSQLParser extends antlr.Parser { } public function_with_argtypes_list(): Function_with_argtypes_listContext { let localContext = new Function_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 670, PostgreSQLParser.RULE_function_with_argtypes_list); + this.enterRule(localContext, 672, PostgreSQLParser.RULE_function_with_argtypes_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6235; + this.state = 6228; this.function_with_argtypes(); - this.state = 6240; + this.state = 6233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6236; + this.state = 6229; this.match(PostgreSQLParser.COMMA); - this.state = 6237; + this.state = 6230; this.function_with_argtypes(); } } - this.state = 6242; + this.state = 6235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29470,39 +29044,39 @@ export class PostgreSQLParser extends antlr.Parser { } public function_with_argtypes(): Function_with_argtypesContext { let localContext = new Function_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 672, PostgreSQLParser.RULE_function_with_argtypes); + this.enterRule(localContext, 674, PostgreSQLParser.RULE_function_with_argtypes); let _la: number; try { - this.state = 6251; + this.state = 6244; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 595, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6243; + this.state = 6236; this.function_name(); - this.state = 6244; + this.state = 6237; this.func_args(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6246; + this.state = 6239; this.type_func_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6247; + this.state = 6240; this.colid(); - this.state = 6249; + this.state = 6242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 6248; + this.state = 6241; this.indirection(); } } @@ -29527,24 +29101,24 @@ export class PostgreSQLParser extends antlr.Parser { } public func_args_with_defaults(): Func_args_with_defaultsContext { let localContext = new Func_args_with_defaultsContext(this.context, this.state); - this.enterRule(localContext, 674, PostgreSQLParser.RULE_func_args_with_defaults); + this.enterRule(localContext, 676, PostgreSQLParser.RULE_func_args_with_defaults); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6253; + this.state = 6246; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6255; + this.state = 6248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || _la === 68 || _la === 92 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 6254; + this.state = 6247; this.func_args_with_defaults_list(); } } - this.state = 6257; + this.state = 6250; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -29564,26 +29138,26 @@ export class PostgreSQLParser extends antlr.Parser { } public func_args_with_defaults_list(): Func_args_with_defaults_listContext { let localContext = new Func_args_with_defaults_listContext(this.context, this.state); - this.enterRule(localContext, 676, PostgreSQLParser.RULE_func_args_with_defaults_list); + this.enterRule(localContext, 678, PostgreSQLParser.RULE_func_args_with_defaults_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6259; + this.state = 6252; this.func_arg_with_default(); - this.state = 6264; + this.state = 6257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6260; + this.state = 6253; this.match(PostgreSQLParser.COMMA); - this.state = 6261; + this.state = 6254; this.func_arg_with_default(); } } - this.state = 6266; + this.state = 6259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29605,53 +29179,53 @@ export class PostgreSQLParser extends antlr.Parser { } public func_arg(): Func_argContext { let localContext = new Func_argContext(this.context, this.state); - this.enterRule(localContext, 678, PostgreSQLParser.RULE_func_arg); + this.enterRule(localContext, 680, PostgreSQLParser.RULE_func_arg); try { - this.state = 6280; + this.state = 6273; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 596, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6267; + this.state = 6260; this.arg_class(); - this.state = 6269; + this.state = 6262; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 594, this.context) ) { case 1: { - this.state = 6268; + this.state = 6261; this.param_name(); } break; } - this.state = 6271; + this.state = 6264; this.func_type(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6273; + this.state = 6266; this.param_name(); - this.state = 6275; + this.state = 6268; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 595, this.context) ) { case 1: { - this.state = 6274; + this.state = 6267; this.arg_class(); } break; } - this.state = 6277; + this.state = 6270; this.func_type(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6279; + this.state = 6272; this.func_type(); } break; @@ -29673,22 +29247,22 @@ export class PostgreSQLParser extends antlr.Parser { } public arg_class(): Arg_classContext { let localContext = new Arg_classContext(this.context, this.state); - this.enterRule(localContext, 680, PostgreSQLParser.RULE_arg_class); + this.enterRule(localContext, 682, PostgreSQLParser.RULE_arg_class); try { - this.state = 6289; + this.state = 6282; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 6282; + this.state = 6275; this.match(PostgreSQLParser.KW_IN); - this.state = 6284; + this.state = 6277; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 601, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 597, this.context) ) { case 1: { - this.state = 6283; + this.state = 6276; this.match(PostgreSQLParser.KW_OUT); } break; @@ -29698,21 +29272,21 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_OUT: this.enterOuterAlt(localContext, 2); { - this.state = 6286; + this.state = 6279; this.match(PostgreSQLParser.KW_OUT); } break; case PostgreSQLParser.KW_INOUT: this.enterOuterAlt(localContext, 3); { - this.state = 6287; + this.state = 6280; this.match(PostgreSQLParser.KW_INOUT); } break; case PostgreSQLParser.KW_VARIADIC: this.enterOuterAlt(localContext, 4); { - this.state = 6288; + this.state = 6281; this.match(PostgreSQLParser.KW_VARIADIC); } break; @@ -29736,11 +29310,11 @@ export class PostgreSQLParser extends antlr.Parser { } public param_name(): Param_nameContext { let localContext = new Param_nameContext(this.context, this.state); - this.enterRule(localContext, 682, PostgreSQLParser.RULE_param_name); + this.enterRule(localContext, 684, PostgreSQLParser.RULE_param_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 6291; + this.state = 6284; this.type_function_name(); } } @@ -29760,11 +29334,11 @@ export class PostgreSQLParser extends antlr.Parser { } public func_return(): Func_returnContext { let localContext = new Func_returnContext(this.context, this.state); - this.enterRule(localContext, 684, PostgreSQLParser.RULE_func_return); + this.enterRule(localContext, 686, PostgreSQLParser.RULE_func_return); try { this.enterOuterAlt(localContext, 1); { - this.state = 6293; + this.state = 6286; this.func_type(); } } @@ -29784,43 +29358,43 @@ export class PostgreSQLParser extends antlr.Parser { } public func_type(): Func_typeContext { let localContext = new Func_typeContext(this.context, this.state); - this.enterRule(localContext, 686, PostgreSQLParser.RULE_func_type); + this.enterRule(localContext, 688, PostgreSQLParser.RULE_func_type); try { - this.state = 6307; + this.state = 6300; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6295; + this.state = 6288; this.typename(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6296; + this.state = 6289; this.type_function_name(); - this.state = 6297; + this.state = 6290; this.attrs(); - this.state = 6298; + this.state = 6291; this.match(PostgreSQLParser.PERCENT); - this.state = 6299; + this.state = 6292; this.match(PostgreSQLParser.KW_TYPE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6301; + this.state = 6294; this.match(PostgreSQLParser.KW_SETOF); - this.state = 6302; + this.state = 6295; this.type_function_name(); - this.state = 6303; + this.state = 6296; this.attrs(); - this.state = 6304; + this.state = 6297; this.match(PostgreSQLParser.PERCENT); - this.state = 6305; + this.state = 6298; this.match(PostgreSQLParser.KW_TYPE); } break; @@ -29842,19 +29416,19 @@ export class PostgreSQLParser extends antlr.Parser { } public func_arg_with_default(): Func_arg_with_defaultContext { let localContext = new Func_arg_with_defaultContext(this.context, this.state); - this.enterRule(localContext, 688, PostgreSQLParser.RULE_func_arg_with_default); + this.enterRule(localContext, 690, PostgreSQLParser.RULE_func_arg_with_default); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6309; + this.state = 6302; this.func_arg(); - this.state = 6312; + this.state = 6305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 53) { { - this.state = 6310; + this.state = 6303; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 53)) { this.errorHandler.recoverInline(this); @@ -29863,7 +29437,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6311; + this.state = 6304; this.a_expr(); } } @@ -29886,11 +29460,11 @@ export class PostgreSQLParser extends antlr.Parser { } public aggr_arg(): Aggr_argContext { let localContext = new Aggr_argContext(this.context, this.state); - this.enterRule(localContext, 690, PostgreSQLParser.RULE_aggr_arg); + this.enterRule(localContext, 692, PostgreSQLParser.RULE_aggr_arg); try { this.enterOuterAlt(localContext, 1); { - this.state = 6314; + this.state = 6307; this.func_arg(); } } @@ -29910,51 +29484,51 @@ export class PostgreSQLParser extends antlr.Parser { } public aggr_args(): Aggr_argsContext { let localContext = new Aggr_argsContext(this.context, this.state); - this.enterRule(localContext, 692, PostgreSQLParser.RULE_aggr_args); + this.enterRule(localContext, 694, PostgreSQLParser.RULE_aggr_args); try { this.enterOuterAlt(localContext, 1); { - this.state = 6316; + this.state = 6309; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6327; + this.state = 6320; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 601, this.context) ) { case 1: { - this.state = 6317; + this.state = 6310; this.match(PostgreSQLParser.STAR); } break; case 2: { - this.state = 6318; + this.state = 6311; this.aggr_args_list(); } break; case 3: { - this.state = 6319; + this.state = 6312; this.match(PostgreSQLParser.KW_ORDER); - this.state = 6320; + this.state = 6313; this.match(PostgreSQLParser.KW_BY); - this.state = 6321; + this.state = 6314; this.aggr_args_list(); } break; case 4: { - this.state = 6322; + this.state = 6315; this.aggr_args_list(); - this.state = 6323; + this.state = 6316; this.match(PostgreSQLParser.KW_ORDER); - this.state = 6324; + this.state = 6317; this.match(PostgreSQLParser.KW_BY); - this.state = 6325; + this.state = 6318; this.aggr_args_list(); } break; } - this.state = 6329; + this.state = 6322; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -29974,26 +29548,26 @@ export class PostgreSQLParser extends antlr.Parser { } public aggr_args_list(): Aggr_args_listContext { let localContext = new Aggr_args_listContext(this.context, this.state); - this.enterRule(localContext, 694, PostgreSQLParser.RULE_aggr_args_list); + this.enterRule(localContext, 696, PostgreSQLParser.RULE_aggr_args_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6331; + this.state = 6324; this.aggr_arg(); - this.state = 6336; + this.state = 6329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6332; + this.state = 6325; this.match(PostgreSQLParser.COMMA); - this.state = 6333; + this.state = 6326; this.aggr_arg(); } } - this.state = 6338; + this.state = 6331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30015,13 +29589,13 @@ export class PostgreSQLParser extends antlr.Parser { } public aggregate_with_argtypes(): Aggregate_with_argtypesContext { let localContext = new Aggregate_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 696, PostgreSQLParser.RULE_aggregate_with_argtypes); + this.enterRule(localContext, 698, PostgreSQLParser.RULE_aggregate_with_argtypes); try { this.enterOuterAlt(localContext, 1); { - this.state = 6339; + this.state = 6332; this.function_name(); - this.state = 6340; + this.state = 6333; this.aggr_args(); } } @@ -30041,26 +29615,26 @@ export class PostgreSQLParser extends antlr.Parser { } public aggregate_with_argtypes_list(): Aggregate_with_argtypes_listContext { let localContext = new Aggregate_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 698, PostgreSQLParser.RULE_aggregate_with_argtypes_list); + this.enterRule(localContext, 700, PostgreSQLParser.RULE_aggregate_with_argtypes_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6342; + this.state = 6335; this.aggregate_with_argtypes(); - this.state = 6347; + this.state = 6340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6343; + this.state = 6336; this.match(PostgreSQLParser.COMMA); - this.state = 6344; + this.state = 6337; this.aggregate_with_argtypes(); } } - this.state = 6349; + this.state = 6342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30082,12 +29656,12 @@ export class PostgreSQLParser extends antlr.Parser { } public createfunc_opt_list(): Createfunc_opt_listContext { let localContext = new Createfunc_opt_listContext(this.context, this.state); - this.enterRule(localContext, 700, PostgreSQLParser.RULE_createfunc_opt_list); + this.enterRule(localContext, 702, PostgreSQLParser.RULE_createfunc_opt_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6351; + this.state = 6344; this.errorHandler.sync(this); alternative = 1; do { @@ -30095,7 +29669,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 6350; + this.state = 6343; this.createfunc_opt_item(); } } @@ -30103,9 +29677,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 6353; + this.state = 6346; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 608, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 604, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -30125,163 +29699,163 @@ export class PostgreSQLParser extends antlr.Parser { } public common_func_opt_item(): Common_func_opt_itemContext { let localContext = new Common_func_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 702, PostgreSQLParser.RULE_common_func_opt_item); + this.enterRule(localContext, 704, PostgreSQLParser.RULE_common_func_opt_item); try { - this.state = 6390; + this.state = 6383; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6355; + this.state = 6348; this.match(PostgreSQLParser.KW_CALLED); - this.state = 6356; + this.state = 6349; this.match(PostgreSQLParser.KW_ON); - this.state = 6357; + this.state = 6350; this.match(PostgreSQLParser.KW_NULL); - this.state = 6358; + this.state = 6351; this.match(PostgreSQLParser.KW_INPUT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6359; + this.state = 6352; this.match(PostgreSQLParser.KW_RETURNS); - this.state = 6360; + this.state = 6353; this.match(PostgreSQLParser.KW_NULL); - this.state = 6361; + this.state = 6354; this.match(PostgreSQLParser.KW_ON); - this.state = 6362; + this.state = 6355; this.match(PostgreSQLParser.KW_NULL); - this.state = 6363; + this.state = 6356; this.match(PostgreSQLParser.KW_INPUT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6364; + this.state = 6357; this.match(PostgreSQLParser.KW_STRICT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6365; + this.state = 6358; this.match(PostgreSQLParser.KW_IMMUTABLE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6366; + this.state = 6359; this.match(PostgreSQLParser.KW_STABLE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6367; + this.state = 6360; this.match(PostgreSQLParser.KW_VOLATILE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6368; + this.state = 6361; this.match(PostgreSQLParser.KW_EXTERNAL); - this.state = 6369; + this.state = 6362; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 6370; + this.state = 6363; this.match(PostgreSQLParser.KW_DEFINER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6371; + this.state = 6364; this.match(PostgreSQLParser.KW_EXTERNAL); - this.state = 6372; + this.state = 6365; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 6373; + this.state = 6366; this.match(PostgreSQLParser.KW_INVOKER); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 6374; + this.state = 6367; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 6375; + this.state = 6368; this.match(PostgreSQLParser.KW_DEFINER); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 6376; + this.state = 6369; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 6377; + this.state = 6370; this.match(PostgreSQLParser.KW_INVOKER); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 6378; + this.state = 6371; this.match(PostgreSQLParser.KW_LEAKPROOF); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 6379; + this.state = 6372; this.match(PostgreSQLParser.KW_NOT); - this.state = 6380; + this.state = 6373; this.match(PostgreSQLParser.KW_LEAKPROOF); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 6381; + this.state = 6374; this.match(PostgreSQLParser.KW_COST); - this.state = 6382; + this.state = 6375; this.numericonly(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 6383; + this.state = 6376; this.match(PostgreSQLParser.KW_ROWS); - this.state = 6384; + this.state = 6377; this.numericonly(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 6385; + this.state = 6378; this.match(PostgreSQLParser.KW_SUPPORT); - this.state = 6386; + this.state = 6379; this.any_name(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 6387; + this.state = 6380; this.functionsetresetclause(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 6388; + this.state = 6381; this.match(PostgreSQLParser.KW_PARALLEL); - this.state = 6389; + this.state = 6382; this.colid(); } break; @@ -30303,80 +29877,80 @@ export class PostgreSQLParser extends antlr.Parser { } public createfunc_opt_item(): Createfunc_opt_itemContext { let localContext = new Createfunc_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 704, PostgreSQLParser.RULE_createfunc_opt_item); + this.enterRule(localContext, 706, PostgreSQLParser.RULE_createfunc_opt_item); try { - this.state = 6417; + this.state = 6410; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 607, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6392; + this.state = 6385; this.match(PostgreSQLParser.KW_AS); - this.state = 6393; + this.state = 6386; this.sconst(); - this.state = 6394; + this.state = 6387; this.match(PostgreSQLParser.COMMA); - this.state = 6395; + this.state = 6388; this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6397; + this.state = 6390; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 6398; + this.state = 6391; this.nonreservedword_or_sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6399; + this.state = 6392; this.match(PostgreSQLParser.KW_TRANSFORM); - this.state = 6400; + this.state = 6393; this.transform_type_list(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6401; + this.state = 6394; this.match(PostgreSQLParser.KW_WINDOW); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6402; + this.state = 6395; this.match(PostgreSQLParser.KW_SET); - this.state = 6403; + this.state = 6396; this.colid(); - this.state = 6410; + this.state = 6403; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_TO: { - this.state = 6404; + this.state = 6397; this.match(PostgreSQLParser.KW_TO); - this.state = 6405; + this.state = 6398; this.colid(); } break; case PostgreSQLParser.EQUAL: { - this.state = 6406; + this.state = 6399; this.match(PostgreSQLParser.EQUAL); - this.state = 6407; + this.state = 6400; this.colid(); } break; case PostgreSQLParser.KW_FROM: { - this.state = 6408; + this.state = 6401; this.match(PostgreSQLParser.KW_FROM); - this.state = 6409; + this.state = 6402; this.match(PostgreSQLParser.KW_CURRENT); } break; @@ -30388,30 +29962,30 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6412; + this.state = 6405; this.match(PostgreSQLParser.KW_AS); - this.state = 6413; + this.state = 6406; this.colid(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6414; + this.state = 6407; this.stmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6415; + this.state = 6408; this.common_func_opt_item(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 6416; + this.state = 6409; this.colid(); } break; @@ -30433,34 +30007,34 @@ export class PostgreSQLParser extends antlr.Parser { } public transform_type_list(): Transform_type_listContext { let localContext = new Transform_type_listContext(this.context, this.state); - this.enterRule(localContext, 706, PostgreSQLParser.RULE_transform_type_list); + this.enterRule(localContext, 708, PostgreSQLParser.RULE_transform_type_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6419; + this.state = 6412; this.match(PostgreSQLParser.KW_FOR); - this.state = 6420; + this.state = 6413; this.match(PostgreSQLParser.KW_TYPE); - this.state = 6421; + this.state = 6414; this.typename(); - this.state = 6428; + this.state = 6421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6422; + this.state = 6415; this.match(PostgreSQLParser.COMMA); - this.state = 6423; + this.state = 6416; this.match(PostgreSQLParser.KW_FOR); - this.state = 6424; + this.state = 6417; this.match(PostgreSQLParser.KW_TYPE); - this.state = 6425; + this.state = 6418; this.typename(); } } - this.state = 6430; + this.state = 6423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30482,13 +30056,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_definition(): Opt_definitionContext { let localContext = new Opt_definitionContext(this.context, this.state); - this.enterRule(localContext, 708, PostgreSQLParser.RULE_opt_definition); + this.enterRule(localContext, 710, PostgreSQLParser.RULE_opt_definition); try { this.enterOuterAlt(localContext, 1); { - this.state = 6431; + this.state = 6424; this.match(PostgreSQLParser.KW_WITH); - this.state = 6432; + this.state = 6425; this.definition(); } } @@ -30508,13 +30082,13 @@ export class PostgreSQLParser extends antlr.Parser { } public table_func_column(): Table_func_columnContext { let localContext = new Table_func_columnContext(this.context, this.state); - this.enterRule(localContext, 710, PostgreSQLParser.RULE_table_func_column); + this.enterRule(localContext, 712, PostgreSQLParser.RULE_table_func_column); try { this.enterOuterAlt(localContext, 1); { - this.state = 6434; + this.state = 6427; this.column_name(); - this.state = 6435; + this.state = 6428; this.func_type(); } } @@ -30534,26 +30108,26 @@ export class PostgreSQLParser extends antlr.Parser { } public table_func_column_list(): Table_func_column_listContext { let localContext = new Table_func_column_listContext(this.context, this.state); - this.enterRule(localContext, 712, PostgreSQLParser.RULE_table_func_column_list); + this.enterRule(localContext, 714, PostgreSQLParser.RULE_table_func_column_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6437; + this.state = 6430; this.table_func_column(); - this.state = 6442; + this.state = 6435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6438; + this.state = 6431; this.match(PostgreSQLParser.COMMA); - this.state = 6439; + this.state = 6432; this.table_func_column(); } } - this.state = 6444; + this.state = 6437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30575,22 +30149,22 @@ export class PostgreSQLParser extends antlr.Parser { } public alterfunctionstmt(): AlterfunctionstmtContext { let localContext = new AlterfunctionstmtContext(this.context, this.state); - this.enterRule(localContext, 714, PostgreSQLParser.RULE_alterfunctionstmt); + this.enterRule(localContext, 716, PostgreSQLParser.RULE_alterfunctionstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 6445; + this.state = 6438; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6446; + this.state = 6439; this.alterFunctionTypeClause(); - this.state = 6447; + this.state = 6440; this.alterfunc_opt_list(); - this.state = 6449; + this.state = 6442; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { case 1: { - this.state = 6448; + this.state = 6441; this.opt_restrict(); } break; @@ -30613,35 +30187,35 @@ export class PostgreSQLParser extends antlr.Parser { } public alterFunctionTypeClause(): AlterFunctionTypeClauseContext { let localContext = new AlterFunctionTypeClauseContext(this.context, this.state); - this.enterRule(localContext, 716, PostgreSQLParser.RULE_alterFunctionTypeClause); + this.enterRule(localContext, 718, PostgreSQLParser.RULE_alterFunctionTypeClause); try { - this.state = 6457; + this.state = 6450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FUNCTION: this.enterOuterAlt(localContext, 1); { - this.state = 6451; + this.state = 6444; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6452; + this.state = 6445; this.function_with_argtypes(); } break; case PostgreSQLParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 2); { - this.state = 6453; + this.state = 6446; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 6454; + this.state = 6447; this.procedure_with_argtypes(); } break; case PostgreSQLParser.KW_ROUTINE: this.enterOuterAlt(localContext, 3); { - this.state = 6455; + this.state = 6448; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 6456; + this.state = 6449; this.routine_with_argtypes(); } break; @@ -30665,12 +30239,12 @@ export class PostgreSQLParser extends antlr.Parser { } public alterfunc_opt_list(): Alterfunc_opt_listContext { let localContext = new Alterfunc_opt_listContext(this.context, this.state); - this.enterRule(localContext, 718, PostgreSQLParser.RULE_alterfunc_opt_list); + this.enterRule(localContext, 720, PostgreSQLParser.RULE_alterfunc_opt_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6460; + this.state = 6453; this.errorHandler.sync(this); alternative = 1; do { @@ -30678,7 +30252,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 6459; + this.state = 6452; this.common_func_opt_item(); } } @@ -30686,9 +30260,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 6462; + this.state = 6455; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 616, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -30708,11 +30282,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_restrict(): Opt_restrictContext { let localContext = new Opt_restrictContext(this.context, this.state); - this.enterRule(localContext, 720, PostgreSQLParser.RULE_opt_restrict); + this.enterRule(localContext, 722, PostgreSQLParser.RULE_opt_restrict); try { this.enterOuterAlt(localContext, 1); { - this.state = 6464; + this.state = 6457; this.match(PostgreSQLParser.KW_RESTRICT); } } @@ -30732,36 +30306,36 @@ export class PostgreSQLParser extends antlr.Parser { } public removefuncstmt(): RemovefuncstmtContext { let localContext = new RemovefuncstmtContext(this.context, this.state); - this.enterRule(localContext, 722, PostgreSQLParser.RULE_removefuncstmt); + this.enterRule(localContext, 724, PostgreSQLParser.RULE_removefuncstmt); try { - this.state = 6493; + this.state = 6486; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 619, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6466; + this.state = 6459; this.match(PostgreSQLParser.KW_DROP); - this.state = 6467; + this.state = 6460; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6469; + this.state = 6462; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { case 1: { - this.state = 6468; + this.state = 6461; this.opt_if_exists(); } break; } - this.state = 6471; + this.state = 6464; this.function_with_argtypes_list(); - this.state = 6473; + this.state = 6466; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: { - this.state = 6472; + this.state = 6465; this.opt_drop_behavior(); } break; @@ -30771,28 +30345,28 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6475; + this.state = 6468; this.match(PostgreSQLParser.KW_DROP); - this.state = 6476; + this.state = 6469; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 6478; + this.state = 6471; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 619, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { case 1: { - this.state = 6477; + this.state = 6470; this.opt_if_exists(); } break; } - this.state = 6480; + this.state = 6473; this.procedure_with_argtypes_list(); - this.state = 6482; + this.state = 6475; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 6481; + this.state = 6474; this.opt_drop_behavior(); } break; @@ -30802,28 +30376,28 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6484; + this.state = 6477; this.match(PostgreSQLParser.KW_DROP); - this.state = 6485; + this.state = 6478; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 6487; + this.state = 6480; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 6486; + this.state = 6479; this.opt_if_exists(); } break; } - this.state = 6489; + this.state = 6482; this.routine_with_argtypes_list(); - this.state = 6491; + this.state = 6484; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: { - this.state = 6490; + this.state = 6483; this.opt_drop_behavior(); } break; @@ -30848,32 +30422,32 @@ export class PostgreSQLParser extends antlr.Parser { } public removeaggrstmt(): RemoveaggrstmtContext { let localContext = new RemoveaggrstmtContext(this.context, this.state); - this.enterRule(localContext, 724, PostgreSQLParser.RULE_removeaggrstmt); + this.enterRule(localContext, 726, PostgreSQLParser.RULE_removeaggrstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 6495; + this.state = 6488; this.match(PostgreSQLParser.KW_DROP); - this.state = 6496; + this.state = 6489; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 6498; + this.state = 6491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { case 1: { - this.state = 6497; + this.state = 6490; this.opt_if_exists(); } break; } - this.state = 6500; + this.state = 6493; this.aggregate_with_argtypes_list(); - this.state = 6502; + this.state = 6495; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { case 1: { - this.state = 6501; + this.state = 6494; this.opt_drop_behavior(); } break; @@ -30896,32 +30470,32 @@ export class PostgreSQLParser extends antlr.Parser { } public removeoperstmt(): RemoveoperstmtContext { let localContext = new RemoveoperstmtContext(this.context, this.state); - this.enterRule(localContext, 726, PostgreSQLParser.RULE_removeoperstmt); + this.enterRule(localContext, 728, PostgreSQLParser.RULE_removeoperstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 6504; + this.state = 6497; this.match(PostgreSQLParser.KW_DROP); - this.state = 6505; + this.state = 6498; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 6507; + this.state = 6500; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 6506; + this.state = 6499; this.opt_if_exists(); } break; } - this.state = 6509; + this.state = 6502; this.operator_with_argtypes_list(); - this.state = 6511; + this.state = 6504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { case 1: { - this.state = 6510; + this.state = 6503; this.opt_drop_behavior(); } break; @@ -30944,64 +30518,64 @@ export class PostgreSQLParser extends antlr.Parser { } public oper_argtypes(): Oper_argtypesContext { let localContext = new Oper_argtypesContext(this.context, this.state); - this.enterRule(localContext, 728, PostgreSQLParser.RULE_oper_argtypes); + this.enterRule(localContext, 730, PostgreSQLParser.RULE_oper_argtypes); try { - this.state = 6535; + this.state = 6528; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6513; + this.state = 6506; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6514; + this.state = 6507; this.typename(); - this.state = 6515; + this.state = 6508; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6517; + this.state = 6510; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6518; + this.state = 6511; this.typename(); - this.state = 6519; + this.state = 6512; this.match(PostgreSQLParser.COMMA); - this.state = 6520; + this.state = 6513; this.typename(); - this.state = 6521; + this.state = 6514; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6523; + this.state = 6516; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6524; + this.state = 6517; this.match(PostgreSQLParser.KW_NONE); - this.state = 6525; + this.state = 6518; this.match(PostgreSQLParser.COMMA); - this.state = 6526; + this.state = 6519; this.typename(); - this.state = 6527; + this.state = 6520; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6529; + this.state = 6522; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6530; + this.state = 6523; this.typename(); - this.state = 6531; + this.state = 6524; this.match(PostgreSQLParser.COMMA); - this.state = 6532; + this.state = 6525; this.match(PostgreSQLParser.KW_NONE); - this.state = 6533; + this.state = 6526; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -31023,28 +30597,28 @@ export class PostgreSQLParser extends antlr.Parser { } public any_operator(): Any_operatorContext { let localContext = new Any_operatorContext(this.context, this.state); - this.enterRule(localContext, 730, PostgreSQLParser.RULE_any_operator); + this.enterRule(localContext, 732, PostgreSQLParser.RULE_any_operator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6542; + this.state = 6535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { { - this.state = 6537; + this.state = 6530; this.colid(); - this.state = 6538; + this.state = 6531; this.match(PostgreSQLParser.DOT); } } - this.state = 6544; + this.state = 6537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6545; + this.state = 6538; this.all_op(); } } @@ -31064,26 +30638,26 @@ export class PostgreSQLParser extends antlr.Parser { } public operator_with_argtypes_list(): Operator_with_argtypes_listContext { let localContext = new Operator_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 732, PostgreSQLParser.RULE_operator_with_argtypes_list); + this.enterRule(localContext, 734, PostgreSQLParser.RULE_operator_with_argtypes_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6547; + this.state = 6540; this.operator_with_argtypes(); - this.state = 6552; + this.state = 6545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6548; + this.state = 6541; this.match(PostgreSQLParser.COMMA); - this.state = 6549; + this.state = 6542; this.operator_with_argtypes(); } } - this.state = 6554; + this.state = 6547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -31105,13 +30679,13 @@ export class PostgreSQLParser extends antlr.Parser { } public operator_with_argtypes(): Operator_with_argtypesContext { let localContext = new Operator_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 734, PostgreSQLParser.RULE_operator_with_argtypes); + this.enterRule(localContext, 736, PostgreSQLParser.RULE_operator_with_argtypes); try { this.enterOuterAlt(localContext, 1); { - this.state = 6555; + this.state = 6548; this.any_operator(); - this.state = 6556; + this.state = 6549; this.oper_argtypes(); } } @@ -31131,13 +30705,13 @@ export class PostgreSQLParser extends antlr.Parser { } public dostmt(): DostmtContext { let localContext = new DostmtContext(this.context, this.state); - this.enterRule(localContext, 736, PostgreSQLParser.RULE_dostmt); + this.enterRule(localContext, 738, PostgreSQLParser.RULE_dostmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 6558; + this.state = 6551; this.match(PostgreSQLParser.KW_DO); - this.state = 6559; + this.state = 6552; this.dostmt_opt_list(); } } @@ -31157,12 +30731,12 @@ export class PostgreSQLParser extends antlr.Parser { } public dostmt_opt_list(): Dostmt_opt_listContext { let localContext = new Dostmt_opt_listContext(this.context, this.state); - this.enterRule(localContext, 738, PostgreSQLParser.RULE_dostmt_opt_list); + this.enterRule(localContext, 740, PostgreSQLParser.RULE_dostmt_opt_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6562; + this.state = 6555; this.errorHandler.sync(this); alternative = 1; do { @@ -31170,7 +30744,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 6561; + this.state = 6554; this.dostmt_opt_item(); } } @@ -31178,9 +30752,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 6564; + this.state = 6557; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 631, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 627, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -31200,9 +30774,9 @@ export class PostgreSQLParser extends antlr.Parser { } public dostmt_opt_item(): Dostmt_opt_itemContext { let localContext = new Dostmt_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 740, PostgreSQLParser.RULE_dostmt_opt_item); + this.enterRule(localContext, 742, PostgreSQLParser.RULE_dostmt_opt_item); try { - this.state = 6569; + this.state = 6562; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -31211,16 +30785,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 6566; + this.state = 6559; this.sconst(); } break; case PostgreSQLParser.KW_LANGUAGE: this.enterOuterAlt(localContext, 2); { - this.state = 6567; + this.state = 6560; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 6568; + this.state = 6561; this.nonreservedword_or_sconst(); } break; @@ -31244,40 +30818,40 @@ export class PostgreSQLParser extends antlr.Parser { } public createcaststmt(): CreatecaststmtContext { let localContext = new CreatecaststmtContext(this.context, this.state); - this.enterRule(localContext, 742, PostgreSQLParser.RULE_createcaststmt); + this.enterRule(localContext, 744, PostgreSQLParser.RULE_createcaststmt); try { - this.state = 6608; + this.state = 6601; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 636, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6571; + this.state = 6564; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6572; + this.state = 6565; this.match(PostgreSQLParser.KW_CAST); - this.state = 6573; + this.state = 6566; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6574; + this.state = 6567; this.typename(); - this.state = 6575; + this.state = 6568; this.match(PostgreSQLParser.KW_AS); - this.state = 6576; + this.state = 6569; this.typename(); - this.state = 6577; + this.state = 6570; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6578; + this.state = 6571; this.match(PostgreSQLParser.KW_WITH); - this.state = 6579; + this.state = 6572; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6580; + this.state = 6573; this.function_with_argtypes(); - this.state = 6582; + this.state = 6575; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 629, this.context) ) { case 1: { - this.state = 6581; + this.state = 6574; this.cast_context(); } break; @@ -31287,30 +30861,30 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6584; + this.state = 6577; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6585; + this.state = 6578; this.match(PostgreSQLParser.KW_CAST); - this.state = 6586; + this.state = 6579; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6587; + this.state = 6580; this.typename(); - this.state = 6588; + this.state = 6581; this.match(PostgreSQLParser.KW_AS); - this.state = 6589; + this.state = 6582; this.typename(); - this.state = 6590; + this.state = 6583; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6591; + this.state = 6584; this.match(PostgreSQLParser.KW_WITHOUT); - this.state = 6592; + this.state = 6585; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6594; + this.state = 6587; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { case 1: { - this.state = 6593; + this.state = 6586; this.cast_context(); } break; @@ -31320,30 +30894,30 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6596; + this.state = 6589; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6597; + this.state = 6590; this.match(PostgreSQLParser.KW_CAST); - this.state = 6598; + this.state = 6591; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6599; + this.state = 6592; this.typename(); - this.state = 6600; + this.state = 6593; this.match(PostgreSQLParser.KW_AS); - this.state = 6601; + this.state = 6594; this.typename(); - this.state = 6602; + this.state = 6595; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6603; + this.state = 6596; this.match(PostgreSQLParser.KW_WITH); - this.state = 6604; + this.state = 6597; this.match(PostgreSQLParser.KW_INOUT); - this.state = 6606; + this.state = 6599; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 635, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 631, this.context) ) { case 1: { - this.state = 6605; + this.state = 6598; this.cast_context(); } break; @@ -31368,26 +30942,26 @@ export class PostgreSQLParser extends antlr.Parser { } public cast_context(): Cast_contextContext { let localContext = new Cast_contextContext(this.context, this.state); - this.enterRule(localContext, 744, PostgreSQLParser.RULE_cast_context); + this.enterRule(localContext, 746, PostgreSQLParser.RULE_cast_context); try { - this.state = 6614; + this.state = 6607; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6610; + this.state = 6603; this.match(PostgreSQLParser.KW_AS); - this.state = 6611; + this.state = 6604; this.match(PostgreSQLParser.KW_IMPLICIT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6612; + this.state = 6605; this.match(PostgreSQLParser.KW_AS); - this.state = 6613; + this.state = 6606; this.match(PostgreSQLParser.KW_ASSIGNMENT); } break; @@ -31409,13 +30983,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_if_exists(): Opt_if_existsContext { let localContext = new Opt_if_existsContext(this.context, this.state); - this.enterRule(localContext, 746, PostgreSQLParser.RULE_opt_if_exists); + this.enterRule(localContext, 748, PostgreSQLParser.RULE_opt_if_exists); try { this.enterOuterAlt(localContext, 1); { - this.state = 6616; + this.state = 6609; this.match(PostgreSQLParser.KW_IF); - this.state = 6617; + this.state = 6610; this.match(PostgreSQLParser.KW_EXISTS); } } @@ -31435,38 +31009,38 @@ export class PostgreSQLParser extends antlr.Parser { } public createtransformstmt(): CreatetransformstmtContext { let localContext = new CreatetransformstmtContext(this.context, this.state); - this.enterRule(localContext, 748, PostgreSQLParser.RULE_createtransformstmt); + this.enterRule(localContext, 750, PostgreSQLParser.RULE_createtransformstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6619; + this.state = 6612; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6621; + this.state = 6614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 6620; + this.state = 6613; this.opt_or_replace(); } } - this.state = 6623; + this.state = 6616; this.match(PostgreSQLParser.KW_TRANSFORM); - this.state = 6624; + this.state = 6617; this.match(PostgreSQLParser.KW_FOR); - this.state = 6625; + this.state = 6618; this.typename(); - this.state = 6626; + this.state = 6619; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 6627; + this.state = 6620; this.name(); - this.state = 6628; + this.state = 6621; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6629; + this.state = 6622; this.transform_element_list(); - this.state = 6630; + this.state = 6623; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -31486,92 +31060,92 @@ export class PostgreSQLParser extends antlr.Parser { } public transform_element_list(): Transform_element_listContext { let localContext = new Transform_element_listContext(this.context, this.state); - this.enterRule(localContext, 750, PostgreSQLParser.RULE_transform_element_list); + this.enterRule(localContext, 752, PostgreSQLParser.RULE_transform_element_list); try { - this.state = 6666; + this.state = 6659; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 639, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 635, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6632; + this.state = 6625; this.match(PostgreSQLParser.KW_FROM); - this.state = 6633; + this.state = 6626; this.match(PostgreSQLParser.KW_SQL); - this.state = 6634; + this.state = 6627; this.match(PostgreSQLParser.KW_WITH); - this.state = 6635; + this.state = 6628; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6636; + this.state = 6629; this.function_with_argtypes(); - this.state = 6637; + this.state = 6630; this.match(PostgreSQLParser.COMMA); - this.state = 6638; + this.state = 6631; this.match(PostgreSQLParser.KW_TO); - this.state = 6639; + this.state = 6632; this.match(PostgreSQLParser.KW_SQL); - this.state = 6640; + this.state = 6633; this.match(PostgreSQLParser.KW_WITH); - this.state = 6641; + this.state = 6634; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6642; + this.state = 6635; this.function_with_argtypes(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6644; + this.state = 6637; this.match(PostgreSQLParser.KW_TO); - this.state = 6645; + this.state = 6638; this.match(PostgreSQLParser.KW_SQL); - this.state = 6646; + this.state = 6639; this.match(PostgreSQLParser.KW_WITH); - this.state = 6647; + this.state = 6640; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6648; + this.state = 6641; this.function_with_argtypes(); - this.state = 6649; + this.state = 6642; this.match(PostgreSQLParser.COMMA); - this.state = 6650; + this.state = 6643; this.match(PostgreSQLParser.KW_FROM); - this.state = 6651; + this.state = 6644; this.match(PostgreSQLParser.KW_SQL); - this.state = 6652; + this.state = 6645; this.match(PostgreSQLParser.KW_WITH); - this.state = 6653; + this.state = 6646; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6654; + this.state = 6647; this.function_with_argtypes(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6656; + this.state = 6649; this.match(PostgreSQLParser.KW_FROM); - this.state = 6657; + this.state = 6650; this.match(PostgreSQLParser.KW_SQL); - this.state = 6658; + this.state = 6651; this.match(PostgreSQLParser.KW_WITH); - this.state = 6659; + this.state = 6652; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6660; + this.state = 6653; this.function_with_argtypes(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6661; + this.state = 6654; this.match(PostgreSQLParser.KW_TO); - this.state = 6662; + this.state = 6655; this.match(PostgreSQLParser.KW_SQL); - this.state = 6663; + this.state = 6656; this.match(PostgreSQLParser.KW_WITH); - this.state = 6664; + this.state = 6657; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6665; + this.state = 6658; this.function_with_argtypes(); } break; @@ -31593,56 +31167,56 @@ export class PostgreSQLParser extends antlr.Parser { } public reindexstmt(): ReindexstmtContext { let localContext = new ReindexstmtContext(this.context, this.state); - this.enterRule(localContext, 752, PostgreSQLParser.RULE_reindexstmt); + this.enterRule(localContext, 754, PostgreSQLParser.RULE_reindexstmt); try { - this.state = 6684; + this.state = 6677; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 640, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 636, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6668; + this.state = 6661; this.match(PostgreSQLParser.KW_REINDEX); - this.state = 6669; + this.state = 6662; this.reindex_target_type(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6670; + this.state = 6663; this.match(PostgreSQLParser.KW_REINDEX); - this.state = 6671; + this.state = 6664; this.reindex_target_multitable(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6672; + this.state = 6665; this.match(PostgreSQLParser.KW_REINDEX); - this.state = 6673; + this.state = 6666; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6674; + this.state = 6667; this.reindex_option_list(); - this.state = 6675; + this.state = 6668; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6676; + this.state = 6669; this.reindex_target_type(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6678; + this.state = 6671; this.match(PostgreSQLParser.KW_REINDEX); - this.state = 6679; + this.state = 6672; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6680; + this.state = 6673; this.reindex_option_list(); - this.state = 6681; + this.state = 6674; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6682; + this.state = 6675; this.reindex_target_multitable(); } break; @@ -31664,29 +31238,29 @@ export class PostgreSQLParser extends antlr.Parser { } public reindex_target_type(): Reindex_target_typeContext { let localContext = new Reindex_target_typeContext(this.context, this.state); - this.enterRule(localContext, 754, PostgreSQLParser.RULE_reindex_target_type); + this.enterRule(localContext, 756, PostgreSQLParser.RULE_reindex_target_type); let _la: number; try { - this.state = 6696; + this.state = 6689; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_INDEX: this.enterOuterAlt(localContext, 1); { { - this.state = 6686; + this.state = 6679; this.match(PostgreSQLParser.KW_INDEX); - this.state = 6688; + this.state = 6681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6687; + this.state = 6680; this.opt_concurrently(); } } - this.state = 6690; + this.state = 6683; this.qualified_name(); } } @@ -31695,19 +31269,19 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 6691; + this.state = 6684; this.match(PostgreSQLParser.KW_TABLE); - this.state = 6693; + this.state = 6686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6692; + this.state = 6685; this.opt_concurrently(); } } - this.state = 6695; + this.state = 6688; this.table_name(); } } @@ -31732,29 +31306,29 @@ export class PostgreSQLParser extends antlr.Parser { } public reindex_target_multitable(): Reindex_target_multitableContext { let localContext = new Reindex_target_multitableContext(this.context, this.state); - this.enterRule(localContext, 756, PostgreSQLParser.RULE_reindex_target_multitable); + this.enterRule(localContext, 758, PostgreSQLParser.RULE_reindex_target_multitable); let _la: number; try { - this.state = 6713; + this.state = 6706; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SCHEMA: this.enterOuterAlt(localContext, 1); { { - this.state = 6698; + this.state = 6691; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 6700; + this.state = 6693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6699; + this.state = 6692; this.opt_concurrently(); } } - this.state = 6702; + this.state = 6695; this.schema_name(); } } @@ -31763,19 +31337,19 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 6703; + this.state = 6696; this.match(PostgreSQLParser.KW_SYSTEM); - this.state = 6705; + this.state = 6698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6704; + this.state = 6697; this.opt_concurrently(); } } - this.state = 6707; + this.state = 6700; this.name(); } } @@ -31784,19 +31358,19 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 6708; + this.state = 6701; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 6710; + this.state = 6703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6709; + this.state = 6702; this.opt_concurrently(); } } - this.state = 6712; + this.state = 6705; this.database_name(); } } @@ -31821,26 +31395,26 @@ export class PostgreSQLParser extends antlr.Parser { } public reindex_option_list(): Reindex_option_listContext { let localContext = new Reindex_option_listContext(this.context, this.state); - this.enterRule(localContext, 758, PostgreSQLParser.RULE_reindex_option_list); + this.enterRule(localContext, 760, PostgreSQLParser.RULE_reindex_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6715; + this.state = 6708; this.reindex_option_elem(); - this.state = 6720; + this.state = 6713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6716; + this.state = 6709; this.match(PostgreSQLParser.COMMA); - this.state = 6717; + this.state = 6710; this.reindex_option_elem(); } } - this.state = 6722; + this.state = 6715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -31862,11 +31436,11 @@ export class PostgreSQLParser extends antlr.Parser { } public reindex_option_elem(): Reindex_option_elemContext { let localContext = new Reindex_option_elemContext(this.context, this.state); - this.enterRule(localContext, 760, PostgreSQLParser.RULE_reindex_option_elem); + this.enterRule(localContext, 762, PostgreSQLParser.RULE_reindex_option_elem); try { this.enterOuterAlt(localContext, 1); { - this.state = 6723; + this.state = 6716; this.match(PostgreSQLParser.KW_VERBOSE); } } @@ -31886,38 +31460,38 @@ export class PostgreSQLParser extends antlr.Parser { } public altertblspcstmt(): AltertblspcstmtContext { let localContext = new AltertblspcstmtContext(this.context, this.state); - this.enterRule(localContext, 762, PostgreSQLParser.RULE_altertblspcstmt); + this.enterRule(localContext, 764, PostgreSQLParser.RULE_altertblspcstmt); try { - this.state = 6737; + this.state = 6730; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 649, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6725; + this.state = 6718; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6726; + this.state = 6719; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 6727; + this.state = 6720; this.tablespace_name(); - this.state = 6728; + this.state = 6721; this.match(PostgreSQLParser.KW_SET); - this.state = 6729; + this.state = 6722; this.reloptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6731; + this.state = 6724; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6732; + this.state = 6725; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 6733; + this.state = 6726; this.tablespace_name(); - this.state = 6734; + this.state = 6727; this.match(PostgreSQLParser.KW_RESET); - this.state = 6735; + this.state = 6728; this.reloptions(); } break; @@ -31939,21 +31513,38 @@ export class PostgreSQLParser extends antlr.Parser { } public renamestmt(): RenamestmtContext { let localContext = new RenamestmtContext(this.context, this.state); - this.enterRule(localContext, 764, PostgreSQLParser.RULE_renamestmt); + this.enterRule(localContext, 766, PostgreSQLParser.RULE_renamestmt); let _la: number; try { - this.state = 7130; + this.state = 7123; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 668, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 664, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { + this.state = 6732; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 6733; + this.match(PostgreSQLParser.KW_AGGREGATE); + this.state = 6734; + this.aggregate_with_argtypes(); + this.state = 6735; + this.match(PostgreSQLParser.KW_RENAME); + this.state = 6736; + this.match(PostgreSQLParser.KW_TO); + this.state = 6737; + this.name(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { this.state = 6739; this.match(PostgreSQLParser.KW_ALTER); this.state = 6740; - this.match(PostgreSQLParser.KW_AGGREGATE); + this.match(PostgreSQLParser.KW_COLLATION); this.state = 6741; - this.aggregate_with_argtypes(); + this.any_name(); this.state = 6742; this.match(PostgreSQLParser.KW_RENAME); this.state = 6743; @@ -31962,13 +31553,13 @@ export class PostgreSQLParser extends antlr.Parser { this.name(); } break; - case 2: - this.enterOuterAlt(localContext, 2); + case 3: + this.enterOuterAlt(localContext, 3); { this.state = 6746; this.match(PostgreSQLParser.KW_ALTER); this.state = 6747; - this.match(PostgreSQLParser.KW_COLLATION); + this.match(PostgreSQLParser.KW_CONVERSION); this.state = 6748; this.any_name(); this.state = 6749; @@ -31979,43 +31570,43 @@ export class PostgreSQLParser extends antlr.Parser { this.name(); } break; - case 3: - this.enterOuterAlt(localContext, 3); + case 4: + this.enterOuterAlt(localContext, 4); { this.state = 6753; this.match(PostgreSQLParser.KW_ALTER); this.state = 6754; - this.match(PostgreSQLParser.KW_CONVERSION); + this.match(PostgreSQLParser.KW_DATABASE); this.state = 6755; - this.any_name(); + this.database_name(); this.state = 6756; this.match(PostgreSQLParser.KW_RENAME); this.state = 6757; this.match(PostgreSQLParser.KW_TO); this.state = 6758; - this.name(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 6760; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 6761; - this.match(PostgreSQLParser.KW_DATABASE); - this.state = 6762; - this.database_name(); - this.state = 6763; - this.match(PostgreSQLParser.KW_RENAME); - this.state = 6764; - this.match(PostgreSQLParser.KW_TO); - this.state = 6765; this.database_name_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { + this.state = 6760; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 6761; + this.match(PostgreSQLParser.KW_DOMAIN); + this.state = 6762; + this.any_name(); + this.state = 6763; + this.match(PostgreSQLParser.KW_RENAME); + this.state = 6764; + this.match(PostgreSQLParser.KW_TO); + this.state = 6765; + this.name(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { this.state = 6767; this.match(PostgreSQLParser.KW_ALTER); this.state = 6768; @@ -32025,217 +31616,217 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 6770; this.match(PostgreSQLParser.KW_RENAME); this.state = 6771; - this.match(PostgreSQLParser.KW_TO); + this.match(PostgreSQLParser.KW_CONSTRAINT); this.state = 6772; this.name(); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 6774; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 6775; - this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 6776; - this.any_name(); - this.state = 6777; - this.match(PostgreSQLParser.KW_RENAME); - this.state = 6778; - this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 6779; - this.name(); - this.state = 6780; + this.state = 6773; this.match(PostgreSQLParser.KW_TO); - this.state = 6781; + this.state = 6774; this.name(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6783; + this.state = 6776; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6784; + this.state = 6777; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 6785; + this.state = 6778; this.match(PostgreSQLParser.KW_DATA); - this.state = 6786; + this.state = 6779; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 6787; + this.state = 6780; this.name(); - this.state = 6788; + this.state = 6781; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6789; + this.state = 6782; this.match(PostgreSQLParser.KW_TO); - this.state = 6790; + this.state = 6783; this.name(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6792; + this.state = 6785; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6793; + this.state = 6786; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6794; + this.state = 6787; this.function_with_argtypes(); - this.state = 6795; + this.state = 6788; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6796; + this.state = 6789; this.match(PostgreSQLParser.KW_TO); - this.state = 6797; + this.state = 6790; this.function_name_create(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 6799; + this.state = 6792; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6800; + this.state = 6793; this.match(PostgreSQLParser.KW_GROUP); - this.state = 6801; + this.state = 6794; this.roleid(); - this.state = 6802; + this.state = 6795; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6803; + this.state = 6796; this.match(PostgreSQLParser.KW_TO); - this.state = 6804; + this.state = 6797; this.roleid(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 6806; + this.state = 6799; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6808; + this.state = 6801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 6807; + this.state = 6800; this.opt_procedural(); } } - this.state = 6810; + this.state = 6803; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 6811; + this.state = 6804; this.name(); - this.state = 6812; + this.state = 6805; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6813; + this.state = 6806; this.match(PostgreSQLParser.KW_TO); - this.state = 6814; + this.state = 6807; this.name(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 6816; + this.state = 6809; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6817; + this.state = 6810; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 6818; + this.state = 6811; this.match(PostgreSQLParser.KW_CLASS); - this.state = 6819; + this.state = 6812; this.any_name(); - this.state = 6820; + this.state = 6813; this.match(PostgreSQLParser.KW_USING); - this.state = 6821; + this.state = 6814; this.name(); - this.state = 6822; + this.state = 6815; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6823; + this.state = 6816; this.match(PostgreSQLParser.KW_TO); - this.state = 6824; + this.state = 6817; this.name(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 6826; + this.state = 6819; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6827; + this.state = 6820; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 6828; + this.state = 6821; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 6829; + this.state = 6822; this.any_name(); - this.state = 6830; + this.state = 6823; this.match(PostgreSQLParser.KW_USING); - this.state = 6831; + this.state = 6824; this.name(); - this.state = 6832; + this.state = 6825; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6833; + this.state = 6826; this.match(PostgreSQLParser.KW_TO); - this.state = 6834; + this.state = 6827; this.name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 6836; + this.state = 6829; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6837; + this.state = 6830; this.match(PostgreSQLParser.KW_POLICY); - this.state = 6839; + this.state = 6832; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 647, this.context) ) { case 1: { - this.state = 6838; + this.state = 6831; this.opt_if_exists(); } break; } - this.state = 6841; + this.state = 6834; this.name(); - this.state = 6842; + this.state = 6835; this.match(PostgreSQLParser.KW_ON); - this.state = 6843; + this.state = 6836; this.qualified_name(); - this.state = 6844; + this.state = 6837; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6845; + this.state = 6838; this.match(PostgreSQLParser.KW_TO); - this.state = 6846; + this.state = 6839; this.name(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 6848; + this.state = 6841; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6849; + this.state = 6842; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 6850; + this.state = 6843; this.procedure_with_argtypes(); - this.state = 6851; + this.state = 6844; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6852; + this.state = 6845; this.match(PostgreSQLParser.KW_TO); - this.state = 6853; + this.state = 6846; this.procedure_name_create(); } break; case 15: this.enterOuterAlt(localContext, 15); { + this.state = 6848; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 6849; + this.match(PostgreSQLParser.KW_PUBLICATION); + this.state = 6850; + this.name(); + this.state = 6851; + this.match(PostgreSQLParser.KW_RENAME); + this.state = 6852; + this.match(PostgreSQLParser.KW_TO); + this.state = 6853; + this.name(); + } + break; + case 16: + this.enterOuterAlt(localContext, 16); + { this.state = 6855; this.match(PostgreSQLParser.KW_ALTER); this.state = 6856; - this.match(PostgreSQLParser.KW_PUBLICATION); + this.match(PostgreSQLParser.KW_ROUTINE); this.state = 6857; - this.name(); + this.routine_with_argtypes(); this.state = 6858; this.match(PostgreSQLParser.KW_RENAME); this.state = 6859; @@ -32244,47 +31835,47 @@ export class PostgreSQLParser extends antlr.Parser { this.name(); } break; - case 16: - this.enterOuterAlt(localContext, 16); + case 17: + this.enterOuterAlt(localContext, 17); { this.state = 6862; this.match(PostgreSQLParser.KW_ALTER); this.state = 6863; - this.match(PostgreSQLParser.KW_ROUTINE); + this.match(PostgreSQLParser.KW_SCHEMA); this.state = 6864; - this.routine_with_argtypes(); + this.schema_name(); this.state = 6865; this.match(PostgreSQLParser.KW_RENAME); this.state = 6866; this.match(PostgreSQLParser.KW_TO); this.state = 6867; - this.name(); - } - break; - case 17: - this.enterOuterAlt(localContext, 17); - { - this.state = 6869; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 6870; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 6871; - this.schema_name(); - this.state = 6872; - this.match(PostgreSQLParser.KW_RENAME); - this.state = 6873; - this.match(PostgreSQLParser.KW_TO); - this.state = 6874; this.schema_name_create(); } break; case 18: this.enterOuterAlt(localContext, 18); { + this.state = 6869; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 6870; + this.match(PostgreSQLParser.KW_SERVER); + this.state = 6871; + this.name(); + this.state = 6872; + this.match(PostgreSQLParser.KW_RENAME); + this.state = 6873; + this.match(PostgreSQLParser.KW_TO); + this.state = 6874; + this.name(); + } + break; + case 19: + this.enterOuterAlt(localContext, 19); + { this.state = 6876; this.match(PostgreSQLParser.KW_ALTER); this.state = 6877; - this.match(PostgreSQLParser.KW_SERVER); + this.match(PostgreSQLParser.KW_SUBSCRIPTION); this.state = 6878; this.name(); this.state = 6879; @@ -32295,448 +31886,448 @@ export class PostgreSQLParser extends antlr.Parser { this.name(); } break; - case 19: - this.enterOuterAlt(localContext, 19); + case 20: + this.enterOuterAlt(localContext, 20); { this.state = 6883; this.match(PostgreSQLParser.KW_ALTER); this.state = 6884; - this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 6885; - this.name(); - this.state = 6886; - this.match(PostgreSQLParser.KW_RENAME); - this.state = 6887; - this.match(PostgreSQLParser.KW_TO); - this.state = 6888; - this.name(); - } - break; - case 20: - this.enterOuterAlt(localContext, 20); - { - this.state = 6890; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 6891; this.match(PostgreSQLParser.KW_TABLE); - this.state = 6893; + this.state = 6886; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 652, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { case 1: { - this.state = 6892; + this.state = 6885; this.opt_if_exists(); } break; } - this.state = 6895; + this.state = 6888; this.relation_expr(); - this.state = 6896; + this.state = 6889; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6897; + this.state = 6890; this.match(PostgreSQLParser.KW_TO); - this.state = 6898; + this.state = 6891; this.table_name_create(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 6900; + this.state = 6893; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6901; + this.state = 6894; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 6903; + this.state = 6896; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 653, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 649, this.context) ) { case 1: { - this.state = 6902; + this.state = 6895; this.opt_if_exists(); } break; } - this.state = 6905; + this.state = 6898; this.qualified_name(); - this.state = 6906; + this.state = 6899; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6907; + this.state = 6900; this.match(PostgreSQLParser.KW_TO); - this.state = 6908; + this.state = 6901; this.name(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 6910; + this.state = 6903; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6911; + this.state = 6904; this.match(PostgreSQLParser.KW_VIEW); - this.state = 6913; + this.state = 6906; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 650, this.context) ) { case 1: { - this.state = 6912; + this.state = 6905; this.opt_if_exists(); } break; } - this.state = 6915; + this.state = 6908; this.view_name(); - this.state = 6916; + this.state = 6909; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6917; + this.state = 6910; this.match(PostgreSQLParser.KW_TO); - this.state = 6918; + this.state = 6911; this.view_name_create(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 6920; + this.state = 6913; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6921; + this.state = 6914; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 6922; + this.state = 6915; this.match(PostgreSQLParser.KW_VIEW); - this.state = 6924; + this.state = 6917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { case 1: { - this.state = 6923; + this.state = 6916; this.opt_if_exists(); } break; } - this.state = 6926; + this.state = 6919; this.view_name(); - this.state = 6927; + this.state = 6920; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6928; + this.state = 6921; this.match(PostgreSQLParser.KW_TO); - this.state = 6929; + this.state = 6922; this.view_name_create(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 6931; + this.state = 6924; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6932; + this.state = 6925; this.match(PostgreSQLParser.KW_INDEX); - this.state = 6934; + this.state = 6927; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 656, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 652, this.context) ) { case 1: { - this.state = 6933; + this.state = 6926; this.opt_if_exists(); } break; } - this.state = 6936; + this.state = 6929; this.qualified_name(); - this.state = 6937; + this.state = 6930; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6938; + this.state = 6931; this.match(PostgreSQLParser.KW_TO); - this.state = 6939; + this.state = 6932; this.name(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 6941; + this.state = 6934; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6942; + this.state = 6935; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 6943; + this.state = 6936; this.match(PostgreSQLParser.KW_TABLE); - this.state = 6945; + this.state = 6938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 657, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 653, this.context) ) { case 1: { - this.state = 6944; + this.state = 6937; this.opt_if_exists(); } break; } - this.state = 6947; + this.state = 6940; this.relation_expr(); - this.state = 6948; + this.state = 6941; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6949; + this.state = 6942; this.match(PostgreSQLParser.KW_TO); - this.state = 6950; + this.state = 6943; this.table_name_create(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 6952; + this.state = 6945; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6953; + this.state = 6946; this.match(PostgreSQLParser.KW_TABLE); - this.state = 6955; + this.state = 6948; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 658, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { case 1: { - this.state = 6954; + this.state = 6947; this.opt_if_exists(); } break; } - this.state = 6957; + this.state = 6950; this.relation_expr(); - this.state = 6958; + this.state = 6951; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6960; + this.state = 6953; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { + case 1: { - this.state = 6959; + this.state = 6952; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 6962; + this.state = 6955; this.column_name(); - this.state = 6963; + this.state = 6956; this.match(PostgreSQLParser.KW_TO); - this.state = 6964; + this.state = 6957; this.column_name_create(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 6966; + this.state = 6959; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6967; + this.state = 6960; this.match(PostgreSQLParser.KW_VIEW); - this.state = 6969; + this.state = 6962; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 660, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 656, this.context) ) { case 1: { - this.state = 6968; + this.state = 6961; this.opt_if_exists(); } break; } - this.state = 6971; + this.state = 6964; this.view_name(); - this.state = 6972; + this.state = 6965; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6974; + this.state = 6967; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 657, this.context) ) { + case 1: { - this.state = 6973; + this.state = 6966; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 6976; + this.state = 6969; this.column_name(); - this.state = 6977; + this.state = 6970; this.match(PostgreSQLParser.KW_TO); - this.state = 6978; + this.state = 6971; this.column_name_create(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 6980; + this.state = 6973; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6981; + this.state = 6974; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 6982; + this.state = 6975; this.match(PostgreSQLParser.KW_VIEW); - this.state = 6984; + this.state = 6977; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 658, this.context) ) { case 1: { - this.state = 6983; + this.state = 6976; this.opt_if_exists(); } break; } - this.state = 6986; + this.state = 6979; this.view_name(); - this.state = 6987; + this.state = 6980; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6989; + this.state = 6982; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 659, this.context) ) { + case 1: { - this.state = 6988; + this.state = 6981; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 6991; + this.state = 6984; this.column_name(); - this.state = 6992; + this.state = 6985; this.match(PostgreSQLParser.KW_TO); - this.state = 6993; + this.state = 6986; this.column_name_create(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 6995; + this.state = 6988; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6996; + this.state = 6989; this.match(PostgreSQLParser.KW_TABLE); - this.state = 6998; + this.state = 6991; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 664, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 660, this.context) ) { case 1: { - this.state = 6997; + this.state = 6990; this.opt_if_exists(); } break; } - this.state = 7000; + this.state = 6993; this.relation_expr(); - this.state = 7001; + this.state = 6994; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7002; + this.state = 6995; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 7003; + this.state = 6996; this.name(); - this.state = 7004; + this.state = 6997; this.match(PostgreSQLParser.KW_TO); - this.state = 7005; + this.state = 6998; this.name(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 7007; + this.state = 7000; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7008; + this.state = 7001; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 7009; + this.state = 7002; this.match(PostgreSQLParser.KW_TABLE); - this.state = 7011; + this.state = 7004; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 665, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 661, this.context) ) { case 1: { - this.state = 7010; + this.state = 7003; this.opt_if_exists(); } break; } - this.state = 7013; + this.state = 7006; this.relation_expr(); - this.state = 7014; + this.state = 7007; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7016; + this.state = 7009; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 44) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { + case 1: { - this.state = 7015; + this.state = 7008; this.match(PostgreSQLParser.KW_COLUMN); } + break; } - - this.state = 7018; + this.state = 7011; this.column_name(); - this.state = 7019; + this.state = 7012; this.match(PostgreSQLParser.KW_TO); - this.state = 7020; + this.state = 7013; this.column_name_create(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 7022; + this.state = 7015; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7023; + this.state = 7016; this.match(PostgreSQLParser.KW_RULE); - this.state = 7024; + this.state = 7017; this.name(); - this.state = 7025; + this.state = 7018; this.match(PostgreSQLParser.KW_ON); - this.state = 7026; + this.state = 7019; this.qualified_name(); - this.state = 7027; + this.state = 7020; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7028; + this.state = 7021; this.match(PostgreSQLParser.KW_TO); - this.state = 7029; + this.state = 7022; this.name(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 7031; + this.state = 7024; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7032; + this.state = 7025; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 7033; + this.state = 7026; this.name(); - this.state = 7034; + this.state = 7027; this.match(PostgreSQLParser.KW_ON); - this.state = 7035; + this.state = 7028; this.qualified_name(); - this.state = 7036; + this.state = 7029; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7037; + this.state = 7030; this.match(PostgreSQLParser.KW_TO); - this.state = 7038; + this.state = 7031; this.name(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 7040; + this.state = 7033; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7041; + this.state = 7034; this.match(PostgreSQLParser.KW_EVENT); - this.state = 7042; + this.state = 7035; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 7043; + this.state = 7036; this.name(); - this.state = 7044; + this.state = 7037; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7045; + this.state = 7038; this.match(PostgreSQLParser.KW_TO); - this.state = 7046; + this.state = 7039; this.name(); } break; case 34: this.enterOuterAlt(localContext, 34); { + this.state = 7041; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7042; + this.match(PostgreSQLParser.KW_ROLE); + this.state = 7043; + this.roleid(); + this.state = 7044; + this.match(PostgreSQLParser.KW_RENAME); + this.state = 7045; + this.match(PostgreSQLParser.KW_TO); + this.state = 7046; + this.roleid(); + } + break; + case 35: + this.enterOuterAlt(localContext, 35); + { this.state = 7048; this.match(PostgreSQLParser.KW_ALTER); this.state = 7049; - this.match(PostgreSQLParser.KW_ROLE); + this.match(PostgreSQLParser.KW_USER); this.state = 7050; this.roleid(); this.state = 7051; @@ -32747,131 +32338,131 @@ export class PostgreSQLParser extends antlr.Parser { this.roleid(); } break; - case 35: - this.enterOuterAlt(localContext, 35); + case 36: + this.enterOuterAlt(localContext, 36); { this.state = 7055; this.match(PostgreSQLParser.KW_ALTER); this.state = 7056; - this.match(PostgreSQLParser.KW_USER); + this.match(PostgreSQLParser.KW_TABLESPACE); this.state = 7057; - this.roleid(); + this.tablespace_name(); this.state = 7058; this.match(PostgreSQLParser.KW_RENAME); this.state = 7059; this.match(PostgreSQLParser.KW_TO); this.state = 7060; - this.roleid(); - } - break; - case 36: - this.enterOuterAlt(localContext, 36); - { - this.state = 7062; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7063; - this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 7064; - this.tablespace_name(); - this.state = 7065; - this.match(PostgreSQLParser.KW_RENAME); - this.state = 7066; - this.match(PostgreSQLParser.KW_TO); - this.state = 7067; this.tablespace_name_create(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 7069; + this.state = 7062; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7070; + this.state = 7063; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 7071; + this.state = 7064; this.any_name(); - this.state = 7072; + this.state = 7065; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7073; + this.state = 7066; this.match(PostgreSQLParser.KW_TO); - this.state = 7074; + this.state = 7067; this.name(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 7076; + this.state = 7069; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7077; + this.state = 7070; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7078; + this.state = 7071; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7079; + this.state = 7072; this.match(PostgreSQLParser.KW_PARSER); - this.state = 7080; + this.state = 7073; this.any_name(); - this.state = 7081; + this.state = 7074; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7082; + this.state = 7075; this.match(PostgreSQLParser.KW_TO); - this.state = 7083; + this.state = 7076; this.name(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 7085; + this.state = 7078; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7086; + this.state = 7079; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7087; + this.state = 7080; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7088; + this.state = 7081; this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 7089; + this.state = 7082; this.any_name(); - this.state = 7090; + this.state = 7083; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7091; + this.state = 7084; this.match(PostgreSQLParser.KW_TO); - this.state = 7092; + this.state = 7085; this.name(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 7094; + this.state = 7087; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7095; + this.state = 7088; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7096; + this.state = 7089; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7097; + this.state = 7090; this.match(PostgreSQLParser.KW_TEMPLATE); - this.state = 7098; + this.state = 7091; this.any_name(); - this.state = 7099; + this.state = 7092; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7100; + this.state = 7093; this.match(PostgreSQLParser.KW_TO); - this.state = 7101; + this.state = 7094; this.name(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 7103; + this.state = 7096; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7104; + this.state = 7097; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7105; + this.state = 7098; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7106; + this.state = 7099; this.match(PostgreSQLParser.KW_CONFIGURATION); + this.state = 7100; + this.any_name(); + this.state = 7101; + this.match(PostgreSQLParser.KW_RENAME); + this.state = 7102; + this.match(PostgreSQLParser.KW_TO); + this.state = 7103; + this.name(); + } + break; + case 42: + this.enterOuterAlt(localContext, 42); + { + this.state = 7105; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7106; + this.match(PostgreSQLParser.KW_TYPE); this.state = 7107; this.any_name(); this.state = 7108; @@ -32882,8 +32473,8 @@ export class PostgreSQLParser extends antlr.Parser { this.name(); } break; - case 42: - this.enterOuterAlt(localContext, 42); + case 43: + this.enterOuterAlt(localContext, 43); { this.state = 7112; this.match(PostgreSQLParser.KW_ALTER); @@ -32894,36 +32485,19 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 7115; this.match(PostgreSQLParser.KW_RENAME); this.state = 7116; - this.match(PostgreSQLParser.KW_TO); + this.match(PostgreSQLParser.KW_ATTRIBUTE); this.state = 7117; this.name(); - } - break; - case 43: - this.enterOuterAlt(localContext, 43); - { - this.state = 7119; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7120; - this.match(PostgreSQLParser.KW_TYPE); - this.state = 7121; - this.any_name(); - this.state = 7122; - this.match(PostgreSQLParser.KW_RENAME); - this.state = 7123; - this.match(PostgreSQLParser.KW_ATTRIBUTE); - this.state = 7124; - this.name(); - this.state = 7125; + this.state = 7118; this.match(PostgreSQLParser.KW_TO); - this.state = 7126; + this.state = 7119; this.name(); - this.state = 7128; + this.state = 7121; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 667, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 663, this.context) ) { case 1: { - this.state = 7127; + this.state = 7120; this.opt_drop_behavior(); } break; @@ -32948,13 +32522,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_set_data(): Opt_set_dataContext { let localContext = new Opt_set_dataContext(this.context, this.state); - this.enterRule(localContext, 766, PostgreSQLParser.RULE_opt_set_data); + this.enterRule(localContext, 768, PostgreSQLParser.RULE_opt_set_data); try { this.enterOuterAlt(localContext, 1); { - this.state = 7132; + this.state = 7125; this.match(PostgreSQLParser.KW_SET); - this.state = 7133; + this.state = 7126; this.match(PostgreSQLParser.KW_DATA); } } @@ -32974,189 +32548,189 @@ export class PostgreSQLParser extends antlr.Parser { } public alterobjectdependsstmt(): AlterobjectdependsstmtContext { let localContext = new AlterobjectdependsstmtContext(this.context, this.state); - this.enterRule(localContext, 768, PostgreSQLParser.RULE_alterobjectdependsstmt); + this.enterRule(localContext, 770, PostgreSQLParser.RULE_alterobjectdependsstmt); let _la: number; try { - this.state = 7204; + this.state = 7197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 675, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 671, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7135; + this.state = 7128; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7136; + this.state = 7129; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 7137; + this.state = 7130; this.function_with_argtypes(); - this.state = 7139; + this.state = 7132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7138; + this.state = 7131; this.opt_no(); } } - this.state = 7141; + this.state = 7134; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7142; + this.state = 7135; this.match(PostgreSQLParser.KW_ON); - this.state = 7143; + this.state = 7136; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7144; + this.state = 7137; this.name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7146; + this.state = 7139; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7147; + this.state = 7140; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 7148; + this.state = 7141; this.procedure_with_argtypes(); - this.state = 7150; + this.state = 7143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7149; + this.state = 7142; this.opt_no(); } } - this.state = 7152; + this.state = 7145; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7153; + this.state = 7146; this.match(PostgreSQLParser.KW_ON); - this.state = 7154; + this.state = 7147; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7155; + this.state = 7148; this.name(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7157; + this.state = 7150; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7158; + this.state = 7151; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 7159; + this.state = 7152; this.routine_with_argtypes(); - this.state = 7161; + this.state = 7154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7160; + this.state = 7153; this.opt_no(); } } - this.state = 7163; + this.state = 7156; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7164; + this.state = 7157; this.match(PostgreSQLParser.KW_ON); - this.state = 7165; + this.state = 7158; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7166; + this.state = 7159; this.name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7168; + this.state = 7161; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7169; + this.state = 7162; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 7170; + this.state = 7163; this.name(); - this.state = 7171; + this.state = 7164; this.match(PostgreSQLParser.KW_ON); - this.state = 7172; + this.state = 7165; this.qualified_name(); - this.state = 7174; + this.state = 7167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7173; + this.state = 7166; this.opt_no(); } } - this.state = 7176; + this.state = 7169; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7177; + this.state = 7170; this.match(PostgreSQLParser.KW_ON); - this.state = 7178; + this.state = 7171; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7179; + this.state = 7172; this.name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7181; + this.state = 7174; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7182; + this.state = 7175; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 7183; + this.state = 7176; this.match(PostgreSQLParser.KW_VIEW); - this.state = 7184; + this.state = 7177; this.view_name(); - this.state = 7186; + this.state = 7179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7185; + this.state = 7178; this.opt_no(); } } - this.state = 7188; + this.state = 7181; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7189; + this.state = 7182; this.match(PostgreSQLParser.KW_ON); - this.state = 7190; + this.state = 7183; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7191; + this.state = 7184; this.name(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7193; + this.state = 7186; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7194; + this.state = 7187; this.match(PostgreSQLParser.KW_INDEX); - this.state = 7195; + this.state = 7188; this.qualified_name(); - this.state = 7197; + this.state = 7190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7196; + this.state = 7189; this.opt_no(); } } - this.state = 7199; + this.state = 7192; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7200; + this.state = 7193; this.match(PostgreSQLParser.KW_ON); - this.state = 7201; + this.state = 7194; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7202; + this.state = 7195; this.name(); } break; @@ -33178,11 +32752,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_no(): Opt_noContext { let localContext = new Opt_noContext(this.context, this.state); - this.enterRule(localContext, 770, PostgreSQLParser.RULE_opt_no); + this.enterRule(localContext, 772, PostgreSQLParser.RULE_opt_no); try { this.enterOuterAlt(localContext, 1); { - this.state = 7206; + this.state = 7199; this.match(PostgreSQLParser.KW_NO); } } @@ -33202,35 +32776,52 @@ export class PostgreSQLParser extends antlr.Parser { } public alterobjectschemastmt(): AlterobjectschemastmtContext { let localContext = new AlterobjectschemastmtContext(this.context, this.state); - this.enterRule(localContext, 772, PostgreSQLParser.RULE_alterobjectschemastmt); + this.enterRule(localContext, 774, PostgreSQLParser.RULE_alterobjectschemastmt); try { - this.state = 7393; + this.state = 7386; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 681, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 677, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7208; + this.state = 7201; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7209; + this.state = 7202; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 7210; + this.state = 7203; this.aggregate_with_argtypes(); - this.state = 7211; + this.state = 7204; this.match(PostgreSQLParser.KW_SET); - this.state = 7212; + this.state = 7205; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7213; - this.schema_name_create(); + this.state = 7206; + this.schema_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { + this.state = 7208; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7209; + this.match(PostgreSQLParser.KW_COLLATION); + this.state = 7210; + this.any_name(); + this.state = 7211; + this.match(PostgreSQLParser.KW_SET); + this.state = 7212; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7213; + this.schema_name(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { this.state = 7215; this.match(PostgreSQLParser.KW_ALTER); this.state = 7216; - this.match(PostgreSQLParser.KW_COLLATION); + this.match(PostgreSQLParser.KW_CONVERSION); this.state = 7217; this.any_name(); this.state = 7218; @@ -33238,16 +32829,16 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 7219; this.match(PostgreSQLParser.KW_SCHEMA); this.state = 7220; - this.schema_name_create(); + this.schema_name(); } break; - case 3: - this.enterOuterAlt(localContext, 3); + case 4: + this.enterOuterAlt(localContext, 4); { this.state = 7222; this.match(PostgreSQLParser.KW_ALTER); this.state = 7223; - this.match(PostgreSQLParser.KW_CONVERSION); + this.match(PostgreSQLParser.KW_DOMAIN); this.state = 7224; this.any_name(); this.state = 7225; @@ -33255,412 +32846,395 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 7226; this.match(PostgreSQLParser.KW_SCHEMA); this.state = 7227; - this.schema_name_create(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 7229; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7230; - this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 7231; - this.any_name(); - this.state = 7232; - this.match(PostgreSQLParser.KW_SET); - this.state = 7233; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7234; - this.schema_name_create(); + this.schema_name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7236; + this.state = 7229; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7237; + this.state = 7230; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7238; + this.state = 7231; this.name(); - this.state = 7239; + this.state = 7232; this.match(PostgreSQLParser.KW_SET); - this.state = 7240; + this.state = 7233; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7241; - this.schema_name_create(); + this.state = 7234; + this.schema_name(); } break; case 6: this.enterOuterAlt(localContext, 6); { + this.state = 7236; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7237; + this.match(PostgreSQLParser.KW_FUNCTION); + this.state = 7238; + this.function_with_argtypes(); + this.state = 7239; + this.match(PostgreSQLParser.KW_SET); + this.state = 7240; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7241; + this.schema_name(); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { this.state = 7243; this.match(PostgreSQLParser.KW_ALTER); this.state = 7244; - this.match(PostgreSQLParser.KW_FUNCTION); + this.match(PostgreSQLParser.KW_OPERATOR); this.state = 7245; - this.function_with_argtypes(); + this.operator_with_argtypes(); this.state = 7246; this.match(PostgreSQLParser.KW_SET); this.state = 7247; this.match(PostgreSQLParser.KW_SCHEMA); this.state = 7248; - this.schema_name_create(); + this.schema_name(); } break; - case 7: - this.enterOuterAlt(localContext, 7); + case 8: + this.enterOuterAlt(localContext, 8); { this.state = 7250; this.match(PostgreSQLParser.KW_ALTER); this.state = 7251; this.match(PostgreSQLParser.KW_OPERATOR); this.state = 7252; - this.operator_with_argtypes(); - this.state = 7253; - this.match(PostgreSQLParser.KW_SET); - this.state = 7254; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7255; - this.schema_name_create(); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 7257; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7258; - this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7259; this.match(PostgreSQLParser.KW_CLASS); - this.state = 7260; + this.state = 7253; this.any_name(); - this.state = 7261; + this.state = 7254; this.match(PostgreSQLParser.KW_USING); - this.state = 7262; + this.state = 7255; this.name(); - this.state = 7263; + this.state = 7256; this.match(PostgreSQLParser.KW_SET); - this.state = 7264; + this.state = 7257; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7265; - this.schema_name_create(); + this.state = 7258; + this.schema_name(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7267; + this.state = 7260; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7268; + this.state = 7261; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7269; + this.state = 7262; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 7270; + this.state = 7263; this.any_name(); - this.state = 7271; + this.state = 7264; this.match(PostgreSQLParser.KW_USING); - this.state = 7272; + this.state = 7265; this.name(); - this.state = 7273; + this.state = 7266; this.match(PostgreSQLParser.KW_SET); - this.state = 7274; + this.state = 7267; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7275; - this.schema_name_create(); + this.state = 7268; + this.schema_name(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7277; + this.state = 7270; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7278; + this.state = 7271; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 7279; + this.state = 7272; this.procedure_with_argtypes(); - this.state = 7280; + this.state = 7273; this.match(PostgreSQLParser.KW_SET); - this.state = 7281; + this.state = 7274; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7282; - this.schema_name_create(); + this.state = 7275; + this.schema_name(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7284; + this.state = 7277; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7285; + this.state = 7278; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 7286; + this.state = 7279; this.routine_with_argtypes(); - this.state = 7287; + this.state = 7280; this.match(PostgreSQLParser.KW_SET); - this.state = 7288; + this.state = 7281; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7289; - this.schema_name_create(); + this.state = 7282; + this.schema_name(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7291; + this.state = 7284; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7292; + this.state = 7285; this.match(PostgreSQLParser.KW_TABLE); - this.state = 7294; + this.state = 7287; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 676, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 672, this.context) ) { case 1: { - this.state = 7293; + this.state = 7286; this.opt_if_exists(); } break; } - this.state = 7296; + this.state = 7289; this.relation_expr(); - this.state = 7297; + this.state = 7290; this.match(PostgreSQLParser.KW_SET); - this.state = 7298; + this.state = 7291; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7299; - this.schema_name_create(); + this.state = 7292; + this.schema_name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7301; + this.state = 7294; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7302; + this.state = 7295; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 7303; + this.state = 7296; this.any_name(); - this.state = 7304; + this.state = 7297; this.match(PostgreSQLParser.KW_SET); - this.state = 7305; + this.state = 7298; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7306; - this.schema_name_create(); + this.state = 7299; + this.schema_name(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7308; + this.state = 7301; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7309; + this.state = 7302; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7310; + this.state = 7303; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7311; + this.state = 7304; this.match(PostgreSQLParser.KW_PARSER); - this.state = 7312; + this.state = 7305; this.any_name(); - this.state = 7313; + this.state = 7306; this.match(PostgreSQLParser.KW_SET); - this.state = 7314; + this.state = 7307; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7315; - this.schema_name_create(); + this.state = 7308; + this.schema_name(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7317; + this.state = 7310; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7318; + this.state = 7311; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7319; + this.state = 7312; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7320; + this.state = 7313; this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 7321; + this.state = 7314; this.any_name(); - this.state = 7322; + this.state = 7315; this.match(PostgreSQLParser.KW_SET); - this.state = 7323; + this.state = 7316; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7324; - this.schema_name_create(); + this.state = 7317; + this.schema_name(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7326; + this.state = 7319; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7327; + this.state = 7320; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7328; + this.state = 7321; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7329; + this.state = 7322; this.match(PostgreSQLParser.KW_TEMPLATE); - this.state = 7330; + this.state = 7323; this.any_name(); - this.state = 7331; + this.state = 7324; this.match(PostgreSQLParser.KW_SET); - this.state = 7332; + this.state = 7325; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7333; - this.schema_name_create(); + this.state = 7326; + this.schema_name(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7335; + this.state = 7328; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7336; + this.state = 7329; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7337; + this.state = 7330; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7338; + this.state = 7331; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 7339; + this.state = 7332; this.any_name(); - this.state = 7340; + this.state = 7333; this.match(PostgreSQLParser.KW_SET); - this.state = 7341; + this.state = 7334; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7342; - this.schema_name_create(); + this.state = 7335; + this.schema_name(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7344; + this.state = 7337; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7345; + this.state = 7338; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 7347; + this.state = 7340; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 677, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 673, this.context) ) { case 1: { - this.state = 7346; + this.state = 7339; this.opt_if_exists(); } break; } - this.state = 7349; + this.state = 7342; this.qualified_name(); - this.state = 7350; + this.state = 7343; this.match(PostgreSQLParser.KW_SET); - this.state = 7351; + this.state = 7344; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7352; - this.schema_name_create(); + this.state = 7345; + this.schema_name(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7354; + this.state = 7347; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7355; + this.state = 7348; this.match(PostgreSQLParser.KW_VIEW); - this.state = 7357; + this.state = 7350; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 678, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 674, this.context) ) { case 1: { - this.state = 7356; + this.state = 7349; this.opt_if_exists(); } break; } - this.state = 7359; + this.state = 7352; this.view_name(); - this.state = 7360; + this.state = 7353; this.match(PostgreSQLParser.KW_SET); - this.state = 7361; + this.state = 7354; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7362; - this.schema_name_create(); + this.state = 7355; + this.schema_name(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7364; + this.state = 7357; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7365; + this.state = 7358; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 7366; + this.state = 7359; this.match(PostgreSQLParser.KW_VIEW); - this.state = 7368; + this.state = 7361; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 679, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 675, this.context) ) { case 1: { - this.state = 7367; + this.state = 7360; this.opt_if_exists(); } break; } - this.state = 7370; + this.state = 7363; this.view_name(); - this.state = 7371; + this.state = 7364; this.match(PostgreSQLParser.KW_SET); - this.state = 7372; + this.state = 7365; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7373; - this.schema_name_create(); + this.state = 7366; + this.schema_name(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7375; + this.state = 7368; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7376; + this.state = 7369; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 7377; + this.state = 7370; this.match(PostgreSQLParser.KW_TABLE); - this.state = 7379; + this.state = 7372; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 680, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 676, this.context) ) { case 1: { - this.state = 7378; + this.state = 7371; this.opt_if_exists(); } break; } - this.state = 7381; + this.state = 7374; this.relation_expr(); - this.state = 7382; + this.state = 7375; this.match(PostgreSQLParser.KW_SET); - this.state = 7383; + this.state = 7376; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7384; - this.schema_name_create(); + this.state = 7377; + this.schema_name(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7386; + this.state = 7379; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7387; + this.state = 7380; this.match(PostgreSQLParser.KW_TYPE); - this.state = 7388; + this.state = 7381; this.any_name(); - this.state = 7389; + this.state = 7382; this.match(PostgreSQLParser.KW_SET); - this.state = 7390; + this.state = 7383; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7391; - this.schema_name_create(); + this.state = 7384; + this.schema_name(); } break; } @@ -33681,23 +33255,23 @@ export class PostgreSQLParser extends antlr.Parser { } public alteroperatorstmt(): AlteroperatorstmtContext { let localContext = new AlteroperatorstmtContext(this.context, this.state); - this.enterRule(localContext, 774, PostgreSQLParser.RULE_alteroperatorstmt); + this.enterRule(localContext, 776, PostgreSQLParser.RULE_alteroperatorstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 7395; + this.state = 7388; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7396; + this.state = 7389; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7397; + this.state = 7390; this.operator_with_argtypes(); - this.state = 7398; + this.state = 7391; this.match(PostgreSQLParser.KW_SET); - this.state = 7399; + this.state = 7392; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 7400; + this.state = 7393; this.operator_def_list(); - this.state = 7401; + this.state = 7394; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -33717,26 +33291,26 @@ export class PostgreSQLParser extends antlr.Parser { } public operator_def_list(): Operator_def_listContext { let localContext = new Operator_def_listContext(this.context, this.state); - this.enterRule(localContext, 776, PostgreSQLParser.RULE_operator_def_list); + this.enterRule(localContext, 778, PostgreSQLParser.RULE_operator_def_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7403; + this.state = 7396; this.operator_def_elem(); - this.state = 7408; + this.state = 7401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7404; + this.state = 7397; this.match(PostgreSQLParser.COMMA); - this.state = 7405; + this.state = 7398; this.operator_def_elem(); } } - this.state = 7410; + this.state = 7403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33758,30 +33332,30 @@ export class PostgreSQLParser extends antlr.Parser { } public operator_def_elem(): Operator_def_elemContext { let localContext = new Operator_def_elemContext(this.context, this.state); - this.enterRule(localContext, 778, PostgreSQLParser.RULE_operator_def_elem); + this.enterRule(localContext, 780, PostgreSQLParser.RULE_operator_def_elem); try { - this.state = 7419; + this.state = 7412; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 683, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 679, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7411; + this.state = 7404; this.collabel(); - this.state = 7412; + this.state = 7405; this.match(PostgreSQLParser.EQUAL); - this.state = 7413; + this.state = 7406; this.match(PostgreSQLParser.KW_NONE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7415; + this.state = 7408; this.collabel(); - this.state = 7416; + this.state = 7409; this.match(PostgreSQLParser.EQUAL); - this.state = 7417; + this.state = 7410; this.operator_def_arg(); } break; @@ -33803,43 +33377,43 @@ export class PostgreSQLParser extends antlr.Parser { } public operator_def_arg(): Operator_def_argContext { let localContext = new Operator_def_argContext(this.context, this.state); - this.enterRule(localContext, 780, PostgreSQLParser.RULE_operator_def_arg); + this.enterRule(localContext, 782, PostgreSQLParser.RULE_operator_def_arg); try { - this.state = 7426; + this.state = 7419; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 684, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 680, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7421; + this.state = 7414; this.func_type(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7422; + this.state = 7415; this.reserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7423; + this.state = 7416; this.qual_all_op(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7424; + this.state = 7417; this.numericonly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7425; + this.state = 7418; this.sconst(); } break; @@ -33861,23 +33435,23 @@ export class PostgreSQLParser extends antlr.Parser { } public altertypestmt(): AltertypestmtContext { let localContext = new AltertypestmtContext(this.context, this.state); - this.enterRule(localContext, 782, PostgreSQLParser.RULE_altertypestmt); + this.enterRule(localContext, 784, PostgreSQLParser.RULE_altertypestmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 7428; + this.state = 7421; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7429; + this.state = 7422; this.match(PostgreSQLParser.KW_TYPE); - this.state = 7430; + this.state = 7423; this.any_name(); - this.state = 7431; + this.state = 7424; this.match(PostgreSQLParser.KW_SET); - this.state = 7432; + this.state = 7425; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 7433; + this.state = 7426; this.operator_def_list(); - this.state = 7434; + this.state = 7427; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -33897,21 +33471,38 @@ export class PostgreSQLParser extends antlr.Parser { } public alterownerstmt(): AlterownerstmtContext { let localContext = new AlterownerstmtContext(this.context, this.state); - this.enterRule(localContext, 784, PostgreSQLParser.RULE_alterownerstmt); + this.enterRule(localContext, 786, PostgreSQLParser.RULE_alterownerstmt); let _la: number; try { - this.state = 7621; + this.state = 7614; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 686, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 682, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { + this.state = 7429; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7430; + this.match(PostgreSQLParser.KW_AGGREGATE); + this.state = 7431; + this.aggregate_with_argtypes(); + this.state = 7432; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7433; + this.match(PostgreSQLParser.KW_TO); + this.state = 7434; + this.rolespec(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { this.state = 7436; this.match(PostgreSQLParser.KW_ALTER); this.state = 7437; - this.match(PostgreSQLParser.KW_AGGREGATE); + this.match(PostgreSQLParser.KW_COLLATION); this.state = 7438; - this.aggregate_with_argtypes(); + this.any_name(); this.state = 7439; this.match(PostgreSQLParser.KW_OWNER); this.state = 7440; @@ -33920,13 +33511,13 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 2: - this.enterOuterAlt(localContext, 2); + case 3: + this.enterOuterAlt(localContext, 3); { this.state = 7443; this.match(PostgreSQLParser.KW_ALTER); this.state = 7444; - this.match(PostgreSQLParser.KW_COLLATION); + this.match(PostgreSQLParser.KW_CONVERSION); this.state = 7445; this.any_name(); this.state = 7446; @@ -33937,15 +33528,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 3: - this.enterOuterAlt(localContext, 3); + case 4: + this.enterOuterAlt(localContext, 4); { this.state = 7450; this.match(PostgreSQLParser.KW_ALTER); this.state = 7451; - this.match(PostgreSQLParser.KW_CONVERSION); + this.match(PostgreSQLParser.KW_DATABASE); this.state = 7452; - this.any_name(); + this.database_name(); this.state = 7453; this.match(PostgreSQLParser.KW_OWNER); this.state = 7454; @@ -33954,15 +33545,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 4: - this.enterOuterAlt(localContext, 4); + case 5: + this.enterOuterAlt(localContext, 5); { this.state = 7457; this.match(PostgreSQLParser.KW_ALTER); this.state = 7458; - this.match(PostgreSQLParser.KW_DATABASE); + this.match(PostgreSQLParser.KW_DOMAIN); this.state = 7459; - this.database_name(); + this.any_name(); this.state = 7460; this.match(PostgreSQLParser.KW_OWNER); this.state = 7461; @@ -33971,15 +33562,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 5: - this.enterOuterAlt(localContext, 5); + case 6: + this.enterOuterAlt(localContext, 6); { this.state = 7464; this.match(PostgreSQLParser.KW_ALTER); this.state = 7465; - this.match(PostgreSQLParser.KW_DOMAIN); + this.match(PostgreSQLParser.KW_FUNCTION); this.state = 7466; - this.any_name(); + this.function_with_argtypes(); this.state = 7467; this.match(PostgreSQLParser.KW_OWNER); this.state = 7468; @@ -33988,61 +33579,61 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 7471; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7472; - this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 7473; - this.function_with_argtypes(); - this.state = 7474; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7475; - this.match(PostgreSQLParser.KW_TO); - this.state = 7476; - this.rolespec(); - } - break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7478; + this.state = 7471; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7480; + this.state = 7473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 7479; + this.state = 7472; this.opt_procedural(); } } - this.state = 7482; + this.state = 7475; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 7483; + this.state = 7476; this.name(); - this.state = 7484; + this.state = 7477; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7485; + this.state = 7478; this.match(PostgreSQLParser.KW_TO); - this.state = 7486; + this.state = 7479; this.rolespec(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7488; + this.state = 7481; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7489; + this.state = 7482; this.match(PostgreSQLParser.KW_LARGE); - this.state = 7490; + this.state = 7483; this.match(PostgreSQLParser.KW_OBJECT); - this.state = 7491; + this.state = 7484; this.numericonly(); + this.state = 7485; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7486; + this.match(PostgreSQLParser.KW_TO); + this.state = 7487; + this.rolespec(); + } + break; + case 9: + this.enterOuterAlt(localContext, 9); + { + this.state = 7489; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7490; + this.match(PostgreSQLParser.KW_OPERATOR); + this.state = 7491; + this.operator_with_argtypes(); this.state = 7492; this.match(PostgreSQLParser.KW_OWNER); this.state = 7493; @@ -34051,61 +33642,61 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 9: - this.enterOuterAlt(localContext, 9); + case 10: + this.enterOuterAlt(localContext, 10); { this.state = 7496; this.match(PostgreSQLParser.KW_ALTER); this.state = 7497; this.match(PostgreSQLParser.KW_OPERATOR); this.state = 7498; - this.operator_with_argtypes(); - this.state = 7499; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7500; - this.match(PostgreSQLParser.KW_TO); - this.state = 7501; - this.rolespec(); - } - break; - case 10: - this.enterOuterAlt(localContext, 10); - { - this.state = 7503; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7504; - this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7505; this.match(PostgreSQLParser.KW_CLASS); - this.state = 7506; + this.state = 7499; this.any_name(); - this.state = 7507; + this.state = 7500; this.match(PostgreSQLParser.KW_USING); - this.state = 7508; + this.state = 7501; this.name(); - this.state = 7509; + this.state = 7502; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7510; + this.state = 7503; this.match(PostgreSQLParser.KW_TO); - this.state = 7511; + this.state = 7504; this.rolespec(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7513; + this.state = 7506; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7514; + this.state = 7507; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7515; + this.state = 7508; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 7516; + this.state = 7509; this.any_name(); - this.state = 7517; + this.state = 7510; this.match(PostgreSQLParser.KW_USING); - this.state = 7518; + this.state = 7511; this.name(); + this.state = 7512; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7513; + this.match(PostgreSQLParser.KW_TO); + this.state = 7514; + this.rolespec(); + } + break; + case 12: + this.enterOuterAlt(localContext, 12); + { + this.state = 7516; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7517; + this.match(PostgreSQLParser.KW_PROCEDURE); + this.state = 7518; + this.procedure_with_argtypes(); this.state = 7519; this.match(PostgreSQLParser.KW_OWNER); this.state = 7520; @@ -34114,15 +33705,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 12: - this.enterOuterAlt(localContext, 12); + case 13: + this.enterOuterAlt(localContext, 13); { this.state = 7523; this.match(PostgreSQLParser.KW_ALTER); this.state = 7524; - this.match(PostgreSQLParser.KW_PROCEDURE); + this.match(PostgreSQLParser.KW_ROUTINE); this.state = 7525; - this.procedure_with_argtypes(); + this.routine_with_argtypes(); this.state = 7526; this.match(PostgreSQLParser.KW_OWNER); this.state = 7527; @@ -34131,15 +33722,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 13: - this.enterOuterAlt(localContext, 13); + case 14: + this.enterOuterAlt(localContext, 14); { this.state = 7530; this.match(PostgreSQLParser.KW_ALTER); this.state = 7531; - this.match(PostgreSQLParser.KW_ROUTINE); + this.match(PostgreSQLParser.KW_SCHEMA); this.state = 7532; - this.routine_with_argtypes(); + this.schema_name(); this.state = 7533; this.match(PostgreSQLParser.KW_OWNER); this.state = 7534; @@ -34148,15 +33739,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 14: - this.enterOuterAlt(localContext, 14); + case 15: + this.enterOuterAlt(localContext, 15); { this.state = 7537; this.match(PostgreSQLParser.KW_ALTER); this.state = 7538; - this.match(PostgreSQLParser.KW_SCHEMA); + this.match(PostgreSQLParser.KW_TYPE); this.state = 7539; - this.schema_name(); + this.any_name(); this.state = 7540; this.match(PostgreSQLParser.KW_OWNER); this.state = 7541; @@ -34165,15 +33756,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 15: - this.enterOuterAlt(localContext, 15); + case 16: + this.enterOuterAlt(localContext, 16); { this.state = 7544; this.match(PostgreSQLParser.KW_ALTER); this.state = 7545; - this.match(PostgreSQLParser.KW_TYPE); + this.match(PostgreSQLParser.KW_TABLESPACE); this.state = 7546; - this.any_name(); + this.tablespace_name(); this.state = 7547; this.match(PostgreSQLParser.KW_OWNER); this.state = 7548; @@ -34182,15 +33773,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 16: - this.enterOuterAlt(localContext, 16); + case 17: + this.enterOuterAlt(localContext, 17); { this.state = 7551; this.match(PostgreSQLParser.KW_ALTER); this.state = 7552; - this.match(PostgreSQLParser.KW_TABLESPACE); + this.match(PostgreSQLParser.KW_STATISTICS); this.state = 7553; - this.tablespace_name(); + this.any_name(); this.state = 7554; this.match(PostgreSQLParser.KW_OWNER); this.state = 7555; @@ -34199,76 +33790,76 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 17: - this.enterOuterAlt(localContext, 17); + case 18: + this.enterOuterAlt(localContext, 18); { this.state = 7558; this.match(PostgreSQLParser.KW_ALTER); this.state = 7559; - this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 7560; - this.any_name(); - this.state = 7561; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7562; - this.match(PostgreSQLParser.KW_TO); - this.state = 7563; - this.rolespec(); - } - break; - case 18: - this.enterOuterAlt(localContext, 18); - { - this.state = 7565; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7566; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7567; + this.state = 7560; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7568; + this.state = 7561; this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 7569; + this.state = 7562; this.any_name(); - this.state = 7570; + this.state = 7563; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7571; + this.state = 7564; this.match(PostgreSQLParser.KW_TO); - this.state = 7572; + this.state = 7565; this.rolespec(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7574; + this.state = 7567; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7575; + this.state = 7568; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7576; + this.state = 7569; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7577; + this.state = 7570; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 7578; + this.state = 7571; this.any_name(); - this.state = 7579; + this.state = 7572; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7580; + this.state = 7573; this.match(PostgreSQLParser.KW_TO); - this.state = 7581; + this.state = 7574; this.rolespec(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7583; + this.state = 7576; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7584; + this.state = 7577; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 7585; + this.state = 7578; this.match(PostgreSQLParser.KW_DATA); - this.state = 7586; + this.state = 7579; this.match(PostgreSQLParser.KW_WRAPPER); + this.state = 7580; + this.name(); + this.state = 7581; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7582; + this.match(PostgreSQLParser.KW_TO); + this.state = 7583; + this.rolespec(); + } + break; + case 21: + this.enterOuterAlt(localContext, 21); + { + this.state = 7585; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7586; + this.match(PostgreSQLParser.KW_SERVER); this.state = 7587; this.name(); this.state = 7588; @@ -34279,32 +33870,32 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 21: - this.enterOuterAlt(localContext, 21); + case 22: + this.enterOuterAlt(localContext, 22); { this.state = 7592; this.match(PostgreSQLParser.KW_ALTER); this.state = 7593; - this.match(PostgreSQLParser.KW_SERVER); + this.match(PostgreSQLParser.KW_EVENT); this.state = 7594; - this.name(); + this.match(PostgreSQLParser.KW_TRIGGER); this.state = 7595; - this.match(PostgreSQLParser.KW_OWNER); + this.name(); this.state = 7596; - this.match(PostgreSQLParser.KW_TO); + this.match(PostgreSQLParser.KW_OWNER); this.state = 7597; + this.match(PostgreSQLParser.KW_TO); + this.state = 7598; this.rolespec(); } break; - case 22: - this.enterOuterAlt(localContext, 22); + case 23: + this.enterOuterAlt(localContext, 23); { - this.state = 7599; - this.match(PostgreSQLParser.KW_ALTER); this.state = 7600; - this.match(PostgreSQLParser.KW_EVENT); + this.match(PostgreSQLParser.KW_ALTER); this.state = 7601; - this.match(PostgreSQLParser.KW_TRIGGER); + this.match(PostgreSQLParser.KW_PUBLICATION); this.state = 7602; this.name(); this.state = 7603; @@ -34315,13 +33906,13 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 23: - this.enterOuterAlt(localContext, 23); + case 24: + this.enterOuterAlt(localContext, 24); { this.state = 7607; this.match(PostgreSQLParser.KW_ALTER); this.state = 7608; - this.match(PostgreSQLParser.KW_PUBLICATION); + this.match(PostgreSQLParser.KW_SUBSCRIPTION); this.state = 7609; this.name(); this.state = 7610; @@ -34332,23 +33923,6 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 24: - this.enterOuterAlt(localContext, 24); - { - this.state = 7614; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7615; - this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7616; - this.name(); - this.state = 7617; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7618; - this.match(PostgreSQLParser.KW_TO); - this.state = 7619; - this.rolespec(); - } - break; } } catch (re) { @@ -34367,33 +33941,33 @@ export class PostgreSQLParser extends antlr.Parser { } public createpublicationstmt(): CreatepublicationstmtContext { let localContext = new CreatepublicationstmtContext(this.context, this.state); - this.enterRule(localContext, 786, PostgreSQLParser.RULE_createpublicationstmt); + this.enterRule(localContext, 788, PostgreSQLParser.RULE_createpublicationstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7623; + this.state = 7616; this.match(PostgreSQLParser.KW_CREATE); - this.state = 7624; + this.state = 7617; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7625; + this.state = 7618; this.name(); - this.state = 7627; + this.state = 7620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7626; + this.state = 7619; this.opt_publication_for_tables(); } } - this.state = 7630; + this.state = 7623; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 688, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 684, this.context) ) { case 1: { - this.state = 7629; + this.state = 7622; this.opt_definition(); } break; @@ -34416,11 +33990,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_publication_for_tables(): Opt_publication_for_tablesContext { let localContext = new Opt_publication_for_tablesContext(this.context, this.state); - this.enterRule(localContext, 788, PostgreSQLParser.RULE_opt_publication_for_tables); + this.enterRule(localContext, 790, PostgreSQLParser.RULE_opt_publication_for_tables); try { this.enterOuterAlt(localContext, 1); { - this.state = 7632; + this.state = 7625; this.publication_for_tables(); } } @@ -34440,30 +34014,30 @@ export class PostgreSQLParser extends antlr.Parser { } public publication_for_tables(): Publication_for_tablesContext { let localContext = new Publication_for_tablesContext(this.context, this.state); - this.enterRule(localContext, 790, PostgreSQLParser.RULE_publication_for_tables); + this.enterRule(localContext, 792, PostgreSQLParser.RULE_publication_for_tables); try { - this.state = 7640; + this.state = 7633; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 685, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7634; + this.state = 7627; this.match(PostgreSQLParser.KW_FOR); - this.state = 7635; + this.state = 7628; this.match(PostgreSQLParser.KW_TABLE); - this.state = 7636; + this.state = 7629; this.relation_expr_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7637; + this.state = 7630; this.match(PostgreSQLParser.KW_FOR); - this.state = 7638; + this.state = 7631; this.match(PostgreSQLParser.KW_ALL); - this.state = 7639; + this.state = 7632; this.match(PostgreSQLParser.KW_TABLES); } break; @@ -34485,74 +34059,91 @@ export class PostgreSQLParser extends antlr.Parser { } public alterpublicationstmt(): AlterpublicationstmtContext { let localContext = new AlterpublicationstmtContext(this.context, this.state); - this.enterRule(localContext, 792, PostgreSQLParser.RULE_alterpublicationstmt); + this.enterRule(localContext, 794, PostgreSQLParser.RULE_alterpublicationstmt); try { - this.state = 7680; + this.state = 7673; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 686, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7642; + this.state = 7635; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7643; + this.state = 7636; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7644; + this.state = 7637; this.name(); - this.state = 7645; + this.state = 7638; this.match(PostgreSQLParser.KW_SET); - this.state = 7646; + this.state = 7639; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7648; + this.state = 7641; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7649; + this.state = 7642; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7650; + this.state = 7643; this.name(); - this.state = 7651; + this.state = 7644; this.match(PostgreSQLParser.KW_ADD); - this.state = 7652; + this.state = 7645; this.publication_relation_expr_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7654; + this.state = 7647; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7655; + this.state = 7648; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7656; + this.state = 7649; this.name(); - this.state = 7657; + this.state = 7650; this.match(PostgreSQLParser.KW_SET); - this.state = 7658; + this.state = 7651; this.publication_relation_expr_list(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7660; + this.state = 7653; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7661; + this.state = 7654; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7662; + this.state = 7655; this.name(); - this.state = 7663; + this.state = 7656; this.match(PostgreSQLParser.KW_DROP); - this.state = 7664; + this.state = 7657; this.publication_relation_expr_list(); } break; case 5: this.enterOuterAlt(localContext, 5); { + this.state = 7659; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7660; + this.match(PostgreSQLParser.KW_PUBLICATION); + this.state = 7661; + this.name(); + this.state = 7662; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7663; + this.match(PostgreSQLParser.KW_TO); + this.state = 7664; + this.rolespec(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { this.state = 7666; this.match(PostgreSQLParser.KW_ALTER); this.state = 7667; @@ -34560,27 +34151,10 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 7668; this.name(); this.state = 7669; - this.match(PostgreSQLParser.KW_OWNER); + this.match(PostgreSQLParser.KW_RENAME); this.state = 7670; this.match(PostgreSQLParser.KW_TO); this.state = 7671; - this.rolespec(); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 7673; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7674; - this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7675; - this.name(); - this.state = 7676; - this.match(PostgreSQLParser.KW_RENAME); - this.state = 7677; - this.match(PostgreSQLParser.KW_TO); - this.state = 7678; this.name(); } break; @@ -34602,30 +34176,30 @@ export class PostgreSQLParser extends antlr.Parser { } public createsubscriptionstmt(): CreatesubscriptionstmtContext { let localContext = new CreatesubscriptionstmtContext(this.context, this.state); - this.enterRule(localContext, 794, PostgreSQLParser.RULE_createsubscriptionstmt); + this.enterRule(localContext, 796, PostgreSQLParser.RULE_createsubscriptionstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 7682; + this.state = 7675; this.match(PostgreSQLParser.KW_CREATE); - this.state = 7683; + this.state = 7676; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7684; + this.state = 7677; this.name(); - this.state = 7685; + this.state = 7678; this.match(PostgreSQLParser.KW_CONNECTION); - this.state = 7686; + this.state = 7679; this.sconst(); - this.state = 7687; + this.state = 7680; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7688; + this.state = 7681; this.publication_name_list(); - this.state = 7690; + this.state = 7683; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 691, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 687, this.context) ) { case 1: { - this.state = 7689; + this.state = 7682; this.opt_definition(); } break; @@ -34648,26 +34222,26 @@ export class PostgreSQLParser extends antlr.Parser { } public publication_name_list(): Publication_name_listContext { let localContext = new Publication_name_listContext(this.context, this.state); - this.enterRule(localContext, 796, PostgreSQLParser.RULE_publication_name_list); + this.enterRule(localContext, 798, PostgreSQLParser.RULE_publication_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7692; + this.state = 7685; this.publication_name_item(); - this.state = 7697; + this.state = 7690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7693; + this.state = 7686; this.match(PostgreSQLParser.COMMA); - this.state = 7694; + this.state = 7687; this.publication_name_item(); } } - this.state = 7699; + this.state = 7692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34689,11 +34263,11 @@ export class PostgreSQLParser extends antlr.Parser { } public publication_name_item(): Publication_name_itemContext { let localContext = new Publication_name_itemContext(this.context, this.state); - this.enterRule(localContext, 798, PostgreSQLParser.RULE_publication_name_item); + this.enterRule(localContext, 800, PostgreSQLParser.RULE_publication_name_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 7700; + this.state = 7693; this.collabel(); } } @@ -34713,60 +34287,60 @@ export class PostgreSQLParser extends antlr.Parser { } public altersubscriptionstmt(): AltersubscriptionstmtContext { let localContext = new AltersubscriptionstmtContext(this.context, this.state); - this.enterRule(localContext, 800, PostgreSQLParser.RULE_altersubscriptionstmt); + this.enterRule(localContext, 802, PostgreSQLParser.RULE_altersubscriptionstmt); try { - this.state = 7780; + this.state = 7773; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 697, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 693, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7702; + this.state = 7695; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7703; + this.state = 7696; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7704; + this.state = 7697; this.name(); - this.state = 7705; + this.state = 7698; this.match(PostgreSQLParser.KW_SET); - this.state = 7706; + this.state = 7699; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7708; + this.state = 7701; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7709; + this.state = 7702; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7710; + this.state = 7703; this.name(); - this.state = 7711; + this.state = 7704; this.match(PostgreSQLParser.KW_CONNECTION); - this.state = 7712; + this.state = 7705; this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7714; + this.state = 7707; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7715; + this.state = 7708; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7716; + this.state = 7709; this.name(); - this.state = 7717; + this.state = 7710; this.match(PostgreSQLParser.KW_REFRESH); - this.state = 7718; + this.state = 7711; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7720; + this.state = 7713; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 693, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { case 1: { - this.state = 7719; + this.state = 7712; this.opt_definition(); } break; @@ -34776,24 +34350,24 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7722; + this.state = 7715; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7723; + this.state = 7716; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7724; + this.state = 7717; this.name(); - this.state = 7725; + this.state = 7718; this.match(PostgreSQLParser.KW_SET); - this.state = 7726; + this.state = 7719; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7727; + this.state = 7720; this.publication_name_list(); - this.state = 7729; + this.state = 7722; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 694, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { case 1: { - this.state = 7728; + this.state = 7721; this.opt_definition(); } break; @@ -34803,24 +34377,24 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7731; + this.state = 7724; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7732; + this.state = 7725; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7733; + this.state = 7726; this.name(); - this.state = 7734; + this.state = 7727; this.match(PostgreSQLParser.KW_ADD); - this.state = 7735; + this.state = 7728; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7736; + this.state = 7729; this.publication_name_list(); - this.state = 7738; + this.state = 7731; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 695, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 691, this.context) ) { case 1: { - this.state = 7737; + this.state = 7730; this.opt_definition(); } break; @@ -34830,24 +34404,24 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7740; + this.state = 7733; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7741; + this.state = 7734; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7742; + this.state = 7735; this.name(); - this.state = 7743; + this.state = 7736; this.match(PostgreSQLParser.KW_DROP); - this.state = 7744; + this.state = 7737; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7745; + this.state = 7738; this.publication_name_list(); - this.state = 7747; + this.state = 7740; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 692, this.context) ) { case 1: { - this.state = 7746; + this.state = 7739; this.opt_definition(); } break; @@ -34857,77 +34431,77 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7749; + this.state = 7742; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7750; + this.state = 7743; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7751; + this.state = 7744; this.name(); - this.state = 7752; + this.state = 7745; this.match(PostgreSQLParser.KW_ENABLE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7754; + this.state = 7747; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7755; + this.state = 7748; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7756; + this.state = 7749; this.name(); - this.state = 7757; + this.state = 7750; this.match(PostgreSQLParser.KW_DISABLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7759; + this.state = 7752; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7760; + this.state = 7753; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7761; + this.state = 7754; this.name(); - this.state = 7762; + this.state = 7755; this.match(PostgreSQLParser.KW_SET); - this.state = 7763; + this.state = 7756; this.definition(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7765; + this.state = 7758; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7766; + this.state = 7759; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7767; + this.state = 7760; this.name(); - this.state = 7768; + this.state = 7761; this.match(PostgreSQLParser.KW_SKIP); - this.state = 7769; + this.state = 7762; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 7770; + this.state = 7763; this.old_aggr_elem(); - this.state = 7771; + this.state = 7764; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7773; + this.state = 7766; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7774; + this.state = 7767; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7775; + this.state = 7768; this.name(); - this.state = 7776; + this.state = 7769; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7777; + this.state = 7770; this.match(PostgreSQLParser.KW_TO); - this.state = 7778; + this.state = 7771; this.rolespec(); } break; @@ -34949,60 +34523,60 @@ export class PostgreSQLParser extends antlr.Parser { } public rulestmt(): RulestmtContext { let localContext = new RulestmtContext(this.context, this.state); - this.enterRule(localContext, 802, PostgreSQLParser.RULE_rulestmt); + this.enterRule(localContext, 804, PostgreSQLParser.RULE_rulestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7782; + this.state = 7775; this.match(PostgreSQLParser.KW_CREATE); - this.state = 7784; + this.state = 7777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 7783; + this.state = 7776; this.opt_or_replace(); } } - this.state = 7786; + this.state = 7779; this.match(PostgreSQLParser.KW_RULE); - this.state = 7787; + this.state = 7780; this.name(); - this.state = 7788; + this.state = 7781; this.match(PostgreSQLParser.KW_AS); - this.state = 7789; + this.state = 7782; this.match(PostgreSQLParser.KW_ON); - this.state = 7790; + this.state = 7783; this.event(); - this.state = 7791; + this.state = 7784; this.match(PostgreSQLParser.KW_TO); - this.state = 7792; + this.state = 7785; this.qualified_name(); - this.state = 7794; + this.state = 7787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 7793; + this.state = 7786; this.where_clause(); } } - this.state = 7796; + this.state = 7789; this.match(PostgreSQLParser.KW_DO); - this.state = 7798; + this.state = 7791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137 || _la === 242) { { - this.state = 7797; + this.state = 7790; this.opt_instead(); } } - this.state = 7800; + this.state = 7793; this.ruleactionlist(); } } @@ -35022,33 +34596,33 @@ export class PostgreSQLParser extends antlr.Parser { } public ruleactionlist(): RuleactionlistContext { let localContext = new RuleactionlistContext(this.context, this.state); - this.enterRule(localContext, 804, PostgreSQLParser.RULE_ruleactionlist); + this.enterRule(localContext, 806, PostgreSQLParser.RULE_ruleactionlist); try { - this.state = 7808; + this.state = 7801; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 701, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 697, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7802; + this.state = 7795; this.match(PostgreSQLParser.KW_NOTHING); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7803; + this.state = 7796; this.ruleactionstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7804; + this.state = 7797; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 7805; + this.state = 7798; this.ruleactionmulti(); - this.state = 7806; + this.state = 7799; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -35070,42 +34644,42 @@ export class PostgreSQLParser extends antlr.Parser { } public ruleactionmulti(): RuleactionmultiContext { let localContext = new RuleactionmultiContext(this.context, this.state); - this.enterRule(localContext, 806, PostgreSQLParser.RULE_ruleactionmulti); + this.enterRule(localContext, 808, PostgreSQLParser.RULE_ruleactionmulti); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7811; + this.state = 7804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 7810; + this.state = 7803; this.ruleactionstmtOrEmpty(); } } - this.state = 7819; + this.state = 7812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 7) { { { - this.state = 7813; + this.state = 7806; this.match(PostgreSQLParser.SEMI); - this.state = 7815; + this.state = 7808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 7814; + this.state = 7807; this.ruleactionstmtOrEmpty(); } } } } - this.state = 7821; + this.state = 7814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35127,43 +34701,43 @@ export class PostgreSQLParser extends antlr.Parser { } public ruleactionstmt(): RuleactionstmtContext { let localContext = new RuleactionstmtContext(this.context, this.state); - this.enterRule(localContext, 808, PostgreSQLParser.RULE_ruleactionstmt); + this.enterRule(localContext, 810, PostgreSQLParser.RULE_ruleactionstmt); try { - this.state = 7827; + this.state = 7820; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 705, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 701, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7822; + this.state = 7815; this.selectstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7823; + this.state = 7816; this.insertstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7824; + this.state = 7817; this.updatestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7825; + this.state = 7818; this.deletestmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7826; + this.state = 7819; this.notifystmt(); } break; @@ -35185,11 +34759,11 @@ export class PostgreSQLParser extends antlr.Parser { } public ruleactionstmtOrEmpty(): RuleactionstmtOrEmptyContext { let localContext = new RuleactionstmtOrEmptyContext(this.context, this.state); - this.enterRule(localContext, 810, PostgreSQLParser.RULE_ruleactionstmtOrEmpty); + this.enterRule(localContext, 812, PostgreSQLParser.RULE_ruleactionstmtOrEmpty); try { this.enterOuterAlt(localContext, 1); { - this.state = 7829; + this.state = 7822; this.ruleactionstmt(); } } @@ -35209,12 +34783,12 @@ export class PostgreSQLParser extends antlr.Parser { } public event(): EventContext { let localContext = new EventContext(this.context, this.state); - this.enterRule(localContext, 812, PostgreSQLParser.RULE_event); + this.enterRule(localContext, 814, PostgreSQLParser.RULE_event); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7831; + this.state = 7824; _la = this.tokenStream.LA(1); if(!(_la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -35241,12 +34815,12 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_instead(): Opt_insteadContext { let localContext = new Opt_insteadContext(this.context, this.state); - this.enterRule(localContext, 814, PostgreSQLParser.RULE_opt_instead); + this.enterRule(localContext, 816, PostgreSQLParser.RULE_opt_instead); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7833; + this.state = 7826; _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 242)) { this.errorHandler.recoverInline(this); @@ -35273,21 +34847,21 @@ export class PostgreSQLParser extends antlr.Parser { } public notifystmt(): NotifystmtContext { let localContext = new NotifystmtContext(this.context, this.state); - this.enterRule(localContext, 816, PostgreSQLParser.RULE_notifystmt); + this.enterRule(localContext, 818, PostgreSQLParser.RULE_notifystmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7835; + this.state = 7828; this.match(PostgreSQLParser.KW_NOTIFY); - this.state = 7836; + this.state = 7829; this.colid(); - this.state = 7838; + this.state = 7831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7837; + this.state = 7830; this.notify_payload(); } } @@ -35310,13 +34884,13 @@ export class PostgreSQLParser extends antlr.Parser { } public notify_payload(): Notify_payloadContext { let localContext = new Notify_payloadContext(this.context, this.state); - this.enterRule(localContext, 818, PostgreSQLParser.RULE_notify_payload); + this.enterRule(localContext, 820, PostgreSQLParser.RULE_notify_payload); try { this.enterOuterAlt(localContext, 1); { - this.state = 7840; + this.state = 7833; this.match(PostgreSQLParser.COMMA); - this.state = 7841; + this.state = 7834; this.sconst(); } } @@ -35336,13 +34910,13 @@ export class PostgreSQLParser extends antlr.Parser { } public listenstmt(): ListenstmtContext { let localContext = new ListenstmtContext(this.context, this.state); - this.enterRule(localContext, 820, PostgreSQLParser.RULE_listenstmt); + this.enterRule(localContext, 822, PostgreSQLParser.RULE_listenstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 7843; + this.state = 7836; this.match(PostgreSQLParser.KW_LISTEN); - this.state = 7844; + this.state = 7837; this.colid(); } } @@ -35362,26 +34936,26 @@ export class PostgreSQLParser extends antlr.Parser { } public unlistenstmt(): UnlistenstmtContext { let localContext = new UnlistenstmtContext(this.context, this.state); - this.enterRule(localContext, 822, PostgreSQLParser.RULE_unlistenstmt); + this.enterRule(localContext, 824, PostgreSQLParser.RULE_unlistenstmt); try { - this.state = 7850; + this.state = 7843; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 703, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7846; + this.state = 7839; this.match(PostgreSQLParser.KW_UNLISTEN); - this.state = 7847; + this.state = 7840; this.colid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7848; + this.state = 7841; this.match(PostgreSQLParser.KW_UNLISTEN); - this.state = 7849; + this.state = 7842; this.match(PostgreSQLParser.STAR); } break; @@ -35403,33 +34977,33 @@ export class PostgreSQLParser extends antlr.Parser { } public transactionstmt(): TransactionstmtContext { let localContext = new TransactionstmtContext(this.context, this.state); - this.enterRule(localContext, 824, PostgreSQLParser.RULE_transactionstmt); + this.enterRule(localContext, 826, PostgreSQLParser.RULE_transactionstmt); let _la: number; try { - this.state = 7917; + this.state = 7910; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 722, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 718, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7852; + this.state = 7845; this.match(PostgreSQLParser.KW_ABORT); - this.state = 7854; + this.state = 7847; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 704, this.context) ) { case 1: { - this.state = 7853; + this.state = 7846; this.opt_transaction(); } break; } - this.state = 7857; + this.state = 7850; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 709, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 705, this.context) ) { case 1: { - this.state = 7856; + this.state = 7849; this.opt_transaction_chain(); } break; @@ -35439,24 +35013,24 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7859; + this.state = 7852; this.match(PostgreSQLParser.KW_BEGIN); - this.state = 7861; + this.state = 7854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 710, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 706, this.context) ) { case 1: { - this.state = 7860; + this.state = 7853; this.opt_transaction(); } break; } - this.state = 7864; + this.state = 7857; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { case 1: { - this.state = 7863; + this.state = 7856; this.transaction_mode_list_or_empty(); } break; @@ -35466,16 +35040,16 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7866; + this.state = 7859; this.match(PostgreSQLParser.KW_START); - this.state = 7867; + this.state = 7860; this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 7869; + this.state = 7862; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 712, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { case 1: { - this.state = 7868; + this.state = 7861; this.transaction_mode_list_or_empty(); } break; @@ -35485,24 +35059,24 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7871; + this.state = 7864; this.match(PostgreSQLParser.KW_END); - this.state = 7873; + this.state = 7866; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 713, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 709, this.context) ) { case 1: { - this.state = 7872; + this.state = 7865; this.opt_transaction(); } break; } - this.state = 7876; + this.state = 7869; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 714, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 710, this.context) ) { case 1: { - this.state = 7875; + this.state = 7868; this.opt_transaction_chain(); } break; @@ -35512,74 +35086,74 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7878; + this.state = 7871; this.match(PostgreSQLParser.KW_SAVEPOINT); - this.state = 7879; + this.state = 7872; this.colid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7880; + this.state = 7873; this.match(PostgreSQLParser.KW_RELEASE); - this.state = 7882; + this.state = 7875; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 715, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { case 1: { - this.state = 7881; + this.state = 7874; this.match(PostgreSQLParser.KW_SAVEPOINT); } break; } - this.state = 7884; + this.state = 7877; this.colid(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7885; + this.state = 7878; this.match(PostgreSQLParser.KW_PREPARE); - this.state = 7886; + this.state = 7879; this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 7887; + this.state = 7880; this.sconst(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7888; + this.state = 7881; this.match(PostgreSQLParser.KW_COMMIT); - this.state = 7889; + this.state = 7882; this.match(PostgreSQLParser.KW_PREPARED); - this.state = 7890; + this.state = 7883; this.sconst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7891; + this.state = 7884; this.match(PostgreSQLParser.KW_COMMIT); - this.state = 7893; + this.state = 7886; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 716, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 712, this.context) ) { case 1: { - this.state = 7892; + this.state = 7885; this.opt_transaction(); } break; } - this.state = 7896; + this.state = 7889; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 717, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 713, this.context) ) { case 1: { - this.state = 7895; + this.state = 7888; this.opt_transaction_chain(); } break; @@ -35589,66 +35163,66 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7898; + this.state = 7891; this.match(PostgreSQLParser.KW_ROLLBACK); - this.state = 7899; + this.state = 7892; this.match(PostgreSQLParser.KW_PREPARED); - this.state = 7900; + this.state = 7893; this.sconst(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7901; + this.state = 7894; this.match(PostgreSQLParser.KW_ROLLBACK); - this.state = 7903; + this.state = 7896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 356 || _la === 380) { { - this.state = 7902; + this.state = 7895; this.opt_transaction(); } } - this.state = 7905; + this.state = 7898; this.match(PostgreSQLParser.KW_TO); - this.state = 7907; + this.state = 7900; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 719, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 715, this.context) ) { case 1: { - this.state = 7906; + this.state = 7899; this.match(PostgreSQLParser.KW_SAVEPOINT); } break; } - this.state = 7909; + this.state = 7902; this.colid(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7910; + this.state = 7903; this.match(PostgreSQLParser.KW_ROLLBACK); - this.state = 7912; + this.state = 7905; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 720, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 716, this.context) ) { case 1: { - this.state = 7911; + this.state = 7904; this.opt_transaction(); } break; } - this.state = 7915; + this.state = 7908; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 721, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 717, this.context) ) { case 1: { - this.state = 7914; + this.state = 7907; this.opt_transaction_chain(); } break; @@ -35673,12 +35247,12 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_transaction(): Opt_transactionContext { let localContext = new Opt_transactionContext(this.context, this.state); - this.enterRule(localContext, 826, PostgreSQLParser.RULE_opt_transaction); + this.enterRule(localContext, 828, PostgreSQLParser.RULE_opt_transaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7919; + this.state = 7912; _la = this.tokenStream.LA(1); if(!(_la === 356 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -35705,53 +35279,53 @@ export class PostgreSQLParser extends antlr.Parser { } public transaction_mode_item(): Transaction_mode_itemContext { let localContext = new Transaction_mode_itemContext(this.context, this.state); - this.enterRule(localContext, 828, PostgreSQLParser.RULE_transaction_mode_item); + this.enterRule(localContext, 830, PostgreSQLParser.RULE_transaction_mode_item); try { - this.state = 7931; + this.state = 7924; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 723, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 719, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7921; + this.state = 7914; this.match(PostgreSQLParser.KW_ISOLATION); - this.state = 7922; + this.state = 7915; this.match(PostgreSQLParser.KW_LEVEL); - this.state = 7923; + this.state = 7916; this.iso_level(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7924; + this.state = 7917; this.match(PostgreSQLParser.KW_READ); - this.state = 7925; + this.state = 7918; this.match(PostgreSQLParser.KW_ONLY); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7926; + this.state = 7919; this.match(PostgreSQLParser.KW_READ); - this.state = 7927; + this.state = 7920; this.match(PostgreSQLParser.KW_WRITE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7928; + this.state = 7921; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7929; + this.state = 7922; this.match(PostgreSQLParser.KW_NOT); - this.state = 7930; + this.state = 7923; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; @@ -35773,39 +35347,39 @@ export class PostgreSQLParser extends antlr.Parser { } public transaction_mode_list(): Transaction_mode_listContext { let localContext = new Transaction_mode_listContext(this.context, this.state); - this.enterRule(localContext, 830, PostgreSQLParser.RULE_transaction_mode_list); + this.enterRule(localContext, 832, PostgreSQLParser.RULE_transaction_mode_list); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7933; + this.state = 7926; this.transaction_mode_item(); - this.state = 7940; + this.state = 7933; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 725, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 721, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7935; + this.state = 7928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7934; + this.state = 7927; this.match(PostgreSQLParser.COMMA); } } - this.state = 7937; + this.state = 7930; this.transaction_mode_item(); } } } - this.state = 7942; + this.state = 7935; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 725, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 721, this.context); } } } @@ -35825,11 +35399,11 @@ export class PostgreSQLParser extends antlr.Parser { } public transaction_mode_list_or_empty(): Transaction_mode_list_or_emptyContext { let localContext = new Transaction_mode_list_or_emptyContext(this.context, this.state); - this.enterRule(localContext, 832, PostgreSQLParser.RULE_transaction_mode_list_or_empty); + this.enterRule(localContext, 834, PostgreSQLParser.RULE_transaction_mode_list_or_empty); try { this.enterOuterAlt(localContext, 1); { - this.state = 7943; + this.state = 7936; this.transaction_mode_list(); } } @@ -35849,24 +35423,24 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_transaction_chain(): Opt_transaction_chainContext { let localContext = new Opt_transaction_chainContext(this.context, this.state); - this.enterRule(localContext, 834, PostgreSQLParser.RULE_opt_transaction_chain); + this.enterRule(localContext, 836, PostgreSQLParser.RULE_opt_transaction_chain); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7945; + this.state = 7938; this.match(PostgreSQLParser.KW_AND); - this.state = 7947; + this.state = 7940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7946; + this.state = 7939; this.match(PostgreSQLParser.KW_NO); } } - this.state = 7949; + this.state = 7942; this.match(PostgreSQLParser.KW_CHAIN); } } @@ -35886,60 +35460,61 @@ export class PostgreSQLParser extends antlr.Parser { } public viewstmt(): ViewstmtContext { let localContext = new ViewstmtContext(this.context, this.state); - this.enterRule(localContext, 836, PostgreSQLParser.RULE_viewstmt); + this.enterRule(localContext, 838, PostgreSQLParser.RULE_viewstmt); let _la: number; try { + localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7951; + this.state = 7944; this.match(PostgreSQLParser.KW_CREATE); - this.state = 7954; + this.state = 7947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 7952; + this.state = 7945; this.match(PostgreSQLParser.KW_OR); - this.state = 7953; + this.state = 7946; this.match(PostgreSQLParser.KW_REPLACE); } } - this.state = 7957; + this.state = 7950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 7956; + this.state = 7949; this.opttemp(); } } - this.state = 7976; + this.state = 7969; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_VIEW: { - this.state = 7959; + this.state = 7952; this.match(PostgreSQLParser.KW_VIEW); - this.state = 7960; + this.state = 7953; this.view_name_create(); - this.state = 7962; + this.state = 7955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 7961; - this.opt_column_list(); + this.state = 7954; + this.opt_column_list_create(); } } - this.state = 7965; + this.state = 7958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 7964; + this.state = 7957; this.opt_reloptions(); } } @@ -35948,24 +35523,24 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_RECURSIVE: { - this.state = 7967; + this.state = 7960; this.match(PostgreSQLParser.KW_RECURSIVE); - this.state = 7968; + this.state = 7961; this.match(PostgreSQLParser.KW_VIEW); - this.state = 7969; + this.state = 7962; this.view_name_create(); - this.state = 7970; + this.state = 7963; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 7971; - this.columnlist(); - this.state = 7972; + this.state = 7964; + this.column_list(); + this.state = 7965; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 7974; + this.state = 7967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 7973; + this.state = 7966; this.opt_reloptions(); } } @@ -35975,16 +35550,16 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 7978; + this.state = 7971; this.match(PostgreSQLParser.KW_AS); - this.state = 7979; + this.state = 7972; this.selectstmt(); - this.state = 7981; + this.state = 7974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 733, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 729, this.context) ) { case 1: { - this.state = 7980; + this.state = 7973; this.opt_check_option(); } break; @@ -36007,19 +35582,19 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_check_option(): Opt_check_optionContext { let localContext = new Opt_check_optionContext(this.context, this.state); - this.enterRule(localContext, 838, PostgreSQLParser.RULE_opt_check_option); + this.enterRule(localContext, 840, PostgreSQLParser.RULE_opt_check_option); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7983; + this.state = 7976; this.match(PostgreSQLParser.KW_WITH); - this.state = 7985; + this.state = 7978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 254) { { - this.state = 7984; + this.state = 7977; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -36031,9 +35606,9 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 7987; + this.state = 7980; this.match(PostgreSQLParser.KW_CHECK); - this.state = 7988; + this.state = 7981; this.match(PostgreSQLParser.KW_OPTION); } } @@ -36053,13 +35628,13 @@ export class PostgreSQLParser extends antlr.Parser { } public loadstmt(): LoadstmtContext { let localContext = new LoadstmtContext(this.context, this.state); - this.enterRule(localContext, 840, PostgreSQLParser.RULE_loadstmt); + this.enterRule(localContext, 842, PostgreSQLParser.RULE_loadstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 7990; + this.state = 7983; this.match(PostgreSQLParser.KW_LOAD); - this.state = 7991; + this.state = 7984; this.file_name(); } } @@ -36079,32 +35654,33 @@ export class PostgreSQLParser extends antlr.Parser { } public createdbstmt(): CreatedbstmtContext { let localContext = new CreatedbstmtContext(this.context, this.state); - this.enterRule(localContext, 842, PostgreSQLParser.RULE_createdbstmt); + this.enterRule(localContext, 844, PostgreSQLParser.RULE_createdbstmt); try { + localContext = new CreateDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7993; + this.state = 7986; this.match(PostgreSQLParser.KW_CREATE); - this.state = 7994; + this.state = 7987; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 7995; + this.state = 7988; this.database_name_create(); - this.state = 7997; + this.state = 7990; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 735, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 731, this.context) ) { case 1: { - this.state = 7996; + this.state = 7989; this.opt_with(); } break; } - this.state = 8000; + this.state = 7993; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 736, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 732, this.context) ) { case 1: { - this.state = 7999; + this.state = 7992; this.createdb_opt_list(); } break; @@ -36127,11 +35703,11 @@ export class PostgreSQLParser extends antlr.Parser { } public createdb_opt_list(): Createdb_opt_listContext { let localContext = new Createdb_opt_listContext(this.context, this.state); - this.enterRule(localContext, 844, PostgreSQLParser.RULE_createdb_opt_list); + this.enterRule(localContext, 846, PostgreSQLParser.RULE_createdb_opt_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 8002; + this.state = 7995; this.createdb_opt_items(); } } @@ -36151,12 +35727,12 @@ export class PostgreSQLParser extends antlr.Parser { } public createdb_opt_items(): Createdb_opt_itemsContext { let localContext = new Createdb_opt_itemsContext(this.context, this.state); - this.enterRule(localContext, 846, PostgreSQLParser.RULE_createdb_opt_items); + this.enterRule(localContext, 848, PostgreSQLParser.RULE_createdb_opt_items); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8005; + this.state = 7998; this.errorHandler.sync(this); alternative = 1; do { @@ -36164,7 +35740,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 8004; + this.state = 7997; this.createdb_opt_item(); } } @@ -36172,9 +35748,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 8007; + this.state = 8000; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 737, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 733, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -36194,41 +35770,41 @@ export class PostgreSQLParser extends antlr.Parser { } public createdb_opt_item(): Createdb_opt_itemContext { let localContext = new Createdb_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 848, PostgreSQLParser.RULE_createdb_opt_item); + this.enterRule(localContext, 850, PostgreSQLParser.RULE_createdb_opt_item); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8009; + this.state = 8002; this.createdb_opt_name(); - this.state = 8011; + this.state = 8004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 8010; + this.state = 8003; this.opt_equal(); } } - this.state = 8016; + this.state = 8009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 739, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 735, this.context) ) { case 1: { - this.state = 8013; + this.state = 8006; this.signediconst(); } break; case 2: { - this.state = 8014; + this.state = 8007; this.opt_boolean_or_string(); } break; case 3: { - this.state = 8015; + this.state = 8008; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -36251,52 +35827,52 @@ export class PostgreSQLParser extends antlr.Parser { } public createdb_opt_name(): Createdb_opt_nameContext { let localContext = new Createdb_opt_nameContext(this.context, this.state); - this.enterRule(localContext, 850, PostgreSQLParser.RULE_createdb_opt_name); + this.enterRule(localContext, 852, PostgreSQLParser.RULE_createdb_opt_name); try { - this.state = 8026; + this.state = 8019; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CONNECTION: this.enterOuterAlt(localContext, 1); { - this.state = 8018; + this.state = 8011; this.match(PostgreSQLParser.KW_CONNECTION); - this.state = 8019; + this.state = 8012; this.match(PostgreSQLParser.KW_LIMIT); } break; case PostgreSQLParser.KW_ENCODING: this.enterOuterAlt(localContext, 2); { - this.state = 8020; + this.state = 8013; this.match(PostgreSQLParser.KW_ENCODING); } break; case PostgreSQLParser.KW_LOCATION: this.enterOuterAlt(localContext, 3); { - this.state = 8021; + this.state = 8014; this.match(PostgreSQLParser.KW_LOCATION); } break; case PostgreSQLParser.KW_OWNER: this.enterOuterAlt(localContext, 4); { - this.state = 8022; + this.state = 8015; this.match(PostgreSQLParser.KW_OWNER); } break; case PostgreSQLParser.KW_TABLESPACE: this.enterOuterAlt(localContext, 5); { - this.state = 8023; + this.state = 8016; this.match(PostgreSQLParser.KW_TABLESPACE); } break; case PostgreSQLParser.KW_TEMPLATE: this.enterOuterAlt(localContext, 6); { - this.state = 8024; + this.state = 8017; this.match(PostgreSQLParser.KW_TEMPLATE); } break; @@ -36375,7 +35951,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 7); { - this.state = 8025; + this.state = 8018; this.identifier(); } break; @@ -36399,11 +35975,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_equal(): Opt_equalContext { let localContext = new Opt_equalContext(this.context, this.state); - this.enterRule(localContext, 852, PostgreSQLParser.RULE_opt_equal); + this.enterRule(localContext, 854, PostgreSQLParser.RULE_opt_equal); try { this.enterOuterAlt(localContext, 1); { - this.state = 8028; + this.state = 8021; this.match(PostgreSQLParser.EQUAL); } } @@ -36423,32 +35999,32 @@ export class PostgreSQLParser extends antlr.Parser { } public alterdatabasestmt(): AlterdatabasestmtContext { let localContext = new AlterdatabasestmtContext(this.context, this.state); - this.enterRule(localContext, 854, PostgreSQLParser.RULE_alterdatabasestmt); + this.enterRule(localContext, 856, PostgreSQLParser.RULE_alterdatabasestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8030; + this.state = 8023; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8031; + this.state = 8024; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 8032; + this.state = 8025; this.database_name(); - this.state = 8044; + this.state = 8037; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 744, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 740, this.context) ) { case 1: { - this.state = 8036; + this.state = 8029; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 741, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 737, this.context) ) { case 1: { - this.state = 8033; + this.state = 8026; this.match(PostgreSQLParser.KW_SET); - this.state = 8034; + this.state = 8027; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 8035; + this.state = 8028; this.tablespace_name_create(); } break; @@ -36457,22 +36033,22 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 8042; + this.state = 8035; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 743, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 739, this.context) ) { case 1: { - this.state = 8039; + this.state = 8032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8038; + this.state = 8031; this.match(PostgreSQLParser.KW_WITH); } } - this.state = 8041; + this.state = 8034; this.createdb_opt_list(); } break; @@ -36498,22 +36074,22 @@ export class PostgreSQLParser extends antlr.Parser { } public alterdatabasesetstmt(): AlterdatabasesetstmtContext { let localContext = new AlterdatabasesetstmtContext(this.context, this.state); - this.enterRule(localContext, 856, PostgreSQLParser.RULE_alterdatabasesetstmt); + this.enterRule(localContext, 858, PostgreSQLParser.RULE_alterdatabasesetstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8046; + this.state = 8039; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8047; + this.state = 8040; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 8048; + this.state = 8041; this.database_name(); - this.state = 8050; + this.state = 8043; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 741, this.context) ) { case 1: { - this.state = 8049; + this.state = 8042; this.setresetclause(); } break; @@ -36536,26 +36112,26 @@ export class PostgreSQLParser extends antlr.Parser { } public drop_option_list(): Drop_option_listContext { let localContext = new Drop_option_listContext(this.context, this.state); - this.enterRule(localContext, 858, PostgreSQLParser.RULE_drop_option_list); + this.enterRule(localContext, 860, PostgreSQLParser.RULE_drop_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8052; + this.state = 8045; this.drop_option(); - this.state = 8057; + this.state = 8050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8053; + this.state = 8046; this.match(PostgreSQLParser.COMMA); - this.state = 8054; + this.state = 8047; this.drop_option(); } } - this.state = 8059; + this.state = 8052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36577,11 +36153,11 @@ export class PostgreSQLParser extends antlr.Parser { } public drop_option(): Drop_optionContext { let localContext = new Drop_optionContext(this.context, this.state); - this.enterRule(localContext, 860, PostgreSQLParser.RULE_drop_option); + this.enterRule(localContext, 862, PostgreSQLParser.RULE_drop_option); try { this.enterOuterAlt(localContext, 1); { - this.state = 8060; + this.state = 8053; this.match(PostgreSQLParser.KW_FORCE); } } @@ -36601,19 +36177,19 @@ export class PostgreSQLParser extends antlr.Parser { } public altercollationstmt(): AltercollationstmtContext { let localContext = new AltercollationstmtContext(this.context, this.state); - this.enterRule(localContext, 862, PostgreSQLParser.RULE_altercollationstmt); + this.enterRule(localContext, 864, PostgreSQLParser.RULE_altercollationstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8062; + this.state = 8055; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8063; + this.state = 8056; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 8064; + this.state = 8057; this.any_name(); - this.state = 8065; + this.state = 8058; this.match(PostgreSQLParser.KW_REFRESH); - this.state = 8066; + this.state = 8059; this.match(PostgreSQLParser.KW_VERSION); } } @@ -36633,16 +36209,16 @@ export class PostgreSQLParser extends antlr.Parser { } public altersystemstmt(): AltersystemstmtContext { let localContext = new AltersystemstmtContext(this.context, this.state); - this.enterRule(localContext, 864, PostgreSQLParser.RULE_altersystemstmt); + this.enterRule(localContext, 866, PostgreSQLParser.RULE_altersystemstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8068; + this.state = 8061; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8069; + this.state = 8062; this.match(PostgreSQLParser.KW_SYSTEM); - this.state = 8070; + this.state = 8063; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -36651,7 +36227,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8071; + this.state = 8064; this.generic_set(); } } @@ -36671,30 +36247,30 @@ export class PostgreSQLParser extends antlr.Parser { } public createdomainstmt(): CreatedomainstmtContext { let localContext = new CreatedomainstmtContext(this.context, this.state); - this.enterRule(localContext, 866, PostgreSQLParser.RULE_createdomainstmt); + this.enterRule(localContext, 868, PostgreSQLParser.RULE_createdomainstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8073; + this.state = 8066; this.match(PostgreSQLParser.KW_CREATE); - this.state = 8074; + this.state = 8067; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 8075; + this.state = 8068; this.any_name(); - this.state = 8077; + this.state = 8070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8076; + this.state = 8069; this.opt_as(); } } - this.state = 8079; + this.state = 8072; this.typename(); - this.state = 8080; + this.state = 8073; this.colquallist(); } } @@ -36714,77 +36290,77 @@ export class PostgreSQLParser extends antlr.Parser { } public alterdomainstmt(): AlterdomainstmtContext { let localContext = new AlterdomainstmtContext(this.context, this.state); - this.enterRule(localContext, 868, PostgreSQLParser.RULE_alterdomainstmt); + this.enterRule(localContext, 870, PostgreSQLParser.RULE_alterdomainstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8082; + this.state = 8075; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8083; + this.state = 8076; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 8084; + this.state = 8077; this.any_name(); - this.state = 8106; + this.state = 8099; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 750, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 746, this.context) ) { case 1: { - this.state = 8085; + this.state = 8078; this.alter_column_default(); } break; case 2: { - this.state = 8086; + this.state = 8079; this.match(PostgreSQLParser.KW_DROP); - this.state = 8087; + this.state = 8080; this.match(PostgreSQLParser.KW_NOT); - this.state = 8088; + this.state = 8081; this.match(PostgreSQLParser.KW_NULL); } break; case 3: { - this.state = 8089; + this.state = 8082; this.match(PostgreSQLParser.KW_SET); - this.state = 8090; + this.state = 8083; this.match(PostgreSQLParser.KW_NOT); - this.state = 8091; + this.state = 8084; this.match(PostgreSQLParser.KW_NULL); } break; case 4: { - this.state = 8092; + this.state = 8085; this.match(PostgreSQLParser.KW_ADD); - this.state = 8093; + this.state = 8086; this.tableconstraint(); } break; case 5: { - this.state = 8094; + this.state = 8087; this.match(PostgreSQLParser.KW_DROP); - this.state = 8095; + this.state = 8088; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 8097; + this.state = 8090; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 748, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 744, this.context) ) { case 1: { - this.state = 8096; + this.state = 8089; this.opt_if_exists(); } break; } - this.state = 8099; + this.state = 8092; this.name(); - this.state = 8101; + this.state = 8094; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { case 1: { - this.state = 8100; + this.state = 8093; this.opt_drop_behavior(); } break; @@ -36793,11 +36369,11 @@ export class PostgreSQLParser extends antlr.Parser { break; case 6: { - this.state = 8103; + this.state = 8096; this.match(PostgreSQLParser.KW_VALIDATE); - this.state = 8104; + this.state = 8097; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 8105; + this.state = 8098; this.name(); } break; @@ -36820,11 +36396,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_as(): Opt_asContext { let localContext = new Opt_asContext(this.context, this.state); - this.enterRule(localContext, 870, PostgreSQLParser.RULE_opt_as); + this.enterRule(localContext, 872, PostgreSQLParser.RULE_opt_as); try { this.enterOuterAlt(localContext, 1); { - this.state = 8108; + this.state = 8101; this.match(PostgreSQLParser.KW_AS); } } @@ -36844,21 +36420,21 @@ export class PostgreSQLParser extends antlr.Parser { } public altertsdictionarystmt(): AltertsdictionarystmtContext { let localContext = new AltertsdictionarystmtContext(this.context, this.state); - this.enterRule(localContext, 872, PostgreSQLParser.RULE_altertsdictionarystmt); + this.enterRule(localContext, 874, PostgreSQLParser.RULE_altertsdictionarystmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8110; + this.state = 8103; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8111; + this.state = 8104; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8112; + this.state = 8105; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8113; + this.state = 8106; this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 8114; + this.state = 8107; this.any_name(); - this.state = 8115; + this.state = 8108; this.definition(); } } @@ -36878,154 +36454,154 @@ export class PostgreSQLParser extends antlr.Parser { } public altertsconfigurationstmt(): AltertsconfigurationstmtContext { let localContext = new AltertsconfigurationstmtContext(this.context, this.state); - this.enterRule(localContext, 874, PostgreSQLParser.RULE_altertsconfigurationstmt); + this.enterRule(localContext, 876, PostgreSQLParser.RULE_altertsconfigurationstmt); let _la: number; try { - this.state = 8180; + this.state = 8173; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 752, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 748, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8117; + this.state = 8110; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8118; + this.state = 8111; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8119; + this.state = 8112; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8120; + this.state = 8113; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 8121; + this.state = 8114; this.any_name(); - this.state = 8122; + this.state = 8115; this.match(PostgreSQLParser.KW_ADD); - this.state = 8123; + this.state = 8116; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 8124; + this.state = 8117; this.match(PostgreSQLParser.KW_FOR); - this.state = 8125; + this.state = 8118; this.name_list(); - this.state = 8126; + this.state = 8119; this.any_with(); - this.state = 8127; + this.state = 8120; this.any_name_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8129; + this.state = 8122; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8130; + this.state = 8123; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8131; + this.state = 8124; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8132; + this.state = 8125; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 8133; + this.state = 8126; this.any_name(); - this.state = 8134; + this.state = 8127; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8135; + this.state = 8128; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 8136; + this.state = 8129; this.match(PostgreSQLParser.KW_FOR); - this.state = 8137; + this.state = 8130; this.name_list(); - this.state = 8138; + this.state = 8131; this.any_with(); - this.state = 8139; + this.state = 8132; this.any_name_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8141; + this.state = 8134; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8142; + this.state = 8135; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8143; + this.state = 8136; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8144; + this.state = 8137; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 8145; + this.state = 8138; this.any_name(); - this.state = 8146; + this.state = 8139; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8147; + this.state = 8140; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 8148; + this.state = 8141; this.match(PostgreSQLParser.KW_REPLACE); - this.state = 8149; + this.state = 8142; this.any_name(); - this.state = 8150; + this.state = 8143; this.any_with(); - this.state = 8151; + this.state = 8144; this.any_name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8153; + this.state = 8146; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8154; + this.state = 8147; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8155; + this.state = 8148; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8156; + this.state = 8149; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 8157; + this.state = 8150; this.any_name(); - this.state = 8158; + this.state = 8151; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8159; + this.state = 8152; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 8160; + this.state = 8153; this.match(PostgreSQLParser.KW_FOR); - this.state = 8161; + this.state = 8154; this.name_list(); - this.state = 8162; + this.state = 8155; this.match(PostgreSQLParser.KW_REPLACE); - this.state = 8163; + this.state = 8156; this.any_name(); - this.state = 8164; + this.state = 8157; this.any_with(); - this.state = 8165; + this.state = 8158; this.any_name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8167; + this.state = 8160; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8168; + this.state = 8161; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8169; + this.state = 8162; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8170; + this.state = 8163; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 8171; + this.state = 8164; this.any_name(); - this.state = 8172; + this.state = 8165; this.match(PostgreSQLParser.KW_DROP); - this.state = 8173; + this.state = 8166; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 8175; + this.state = 8168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 8174; + this.state = 8167; this.opt_if_exists(); } } - this.state = 8177; + this.state = 8170; this.match(PostgreSQLParser.KW_FOR); - this.state = 8178; + this.state = 8171; this.name_list(); } break; @@ -37047,11 +36623,11 @@ export class PostgreSQLParser extends antlr.Parser { } public any_with(): Any_withContext { let localContext = new Any_withContext(this.context, this.state); - this.enterRule(localContext, 876, PostgreSQLParser.RULE_any_with); + this.enterRule(localContext, 878, PostgreSQLParser.RULE_any_with); try { this.enterOuterAlt(localContext, 1); { - this.state = 8182; + this.state = 8175; this.match(PostgreSQLParser.KW_WITH); } } @@ -37071,38 +36647,38 @@ export class PostgreSQLParser extends antlr.Parser { } public createconversionstmt(): CreateconversionstmtContext { let localContext = new CreateconversionstmtContext(this.context, this.state); - this.enterRule(localContext, 878, PostgreSQLParser.RULE_createconversionstmt); + this.enterRule(localContext, 880, PostgreSQLParser.RULE_createconversionstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8184; + this.state = 8177; this.match(PostgreSQLParser.KW_CREATE); - this.state = 8186; + this.state = 8179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 8185; + this.state = 8178; this.opt_default(); } } - this.state = 8188; + this.state = 8181; this.match(PostgreSQLParser.KW_CONVERSION); - this.state = 8189; + this.state = 8182; this.any_name(); - this.state = 8190; + this.state = 8183; this.match(PostgreSQLParser.KW_FOR); - this.state = 8191; + this.state = 8184; this.sconst(); - this.state = 8192; + this.state = 8185; this.match(PostgreSQLParser.KW_TO); - this.state = 8193; + this.state = 8186; this.sconst(); - this.state = 8194; + this.state = 8187; this.match(PostgreSQLParser.KW_FROM); - this.state = 8195; + this.state = 8188; this.any_name(); } } @@ -37122,35 +36698,35 @@ export class PostgreSQLParser extends antlr.Parser { } public clusterstmt(): ClusterstmtContext { let localContext = new ClusterstmtContext(this.context, this.state); - this.enterRule(localContext, 880, PostgreSQLParser.RULE_clusterstmt); + this.enterRule(localContext, 882, PostgreSQLParser.RULE_clusterstmt); let _la: number; try { - this.state = 8215; + this.state = 8208; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 758, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 754, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8197; + this.state = 8190; this.match(PostgreSQLParser.KW_CLUSTER); - this.state = 8199; + this.state = 8192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 8198; + this.state = 8191; this.opt_verbose(); } } - this.state = 8201; + this.state = 8194; this.table_name(); - this.state = 8203; + this.state = 8196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8202; + this.state = 8195; this.cluster_index_specification(); } } @@ -37160,14 +36736,14 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8205; + this.state = 8198; this.match(PostgreSQLParser.KW_CLUSTER); - this.state = 8207; + this.state = 8200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 8206; + this.state = 8199; this.opt_verbose(); } } @@ -37177,18 +36753,18 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8209; + this.state = 8202; this.match(PostgreSQLParser.KW_CLUSTER); - this.state = 8210; + this.state = 8203; this.opt_verbose_list(); - this.state = 8211; + this.state = 8204; this.table_name(); - this.state = 8213; + this.state = 8206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8212; + this.state = 8205; this.cluster_index_specification(); } } @@ -37213,32 +36789,32 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_verbose_list(): Opt_verbose_listContext { let localContext = new Opt_verbose_listContext(this.context, this.state); - this.enterRule(localContext, 882, PostgreSQLParser.RULE_opt_verbose_list); + this.enterRule(localContext, 884, PostgreSQLParser.RULE_opt_verbose_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8217; + this.state = 8210; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8218; + this.state = 8211; this.opt_verbose(); - this.state = 8223; + this.state = 8216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8219; + this.state = 8212; this.match(PostgreSQLParser.COMMA); - this.state = 8220; + this.state = 8213; this.opt_verbose(); } } - this.state = 8225; + this.state = 8218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8226; + this.state = 8219; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -37258,13 +36834,13 @@ export class PostgreSQLParser extends antlr.Parser { } public cluster_index_specification(): Cluster_index_specificationContext { let localContext = new Cluster_index_specificationContext(this.context, this.state); - this.enterRule(localContext, 884, PostgreSQLParser.RULE_cluster_index_specification); + this.enterRule(localContext, 886, PostgreSQLParser.RULE_cluster_index_specification); try { this.enterOuterAlt(localContext, 1); { - this.state = 8228; + this.state = 8221; this.match(PostgreSQLParser.KW_USING); - this.state = 8229; + this.state = 8222; this.name(); } } @@ -37284,63 +36860,63 @@ export class PostgreSQLParser extends antlr.Parser { } public vacuumstmt(): VacuumstmtContext { let localContext = new VacuumstmtContext(this.context, this.state); - this.enterRule(localContext, 886, PostgreSQLParser.RULE_vacuumstmt); + this.enterRule(localContext, 888, PostgreSQLParser.RULE_vacuumstmt); let _la: number; try { - this.state = 8257; + this.state = 8250; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 767, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 763, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8231; + this.state = 8224; this.match(PostgreSQLParser.KW_VACUUM); - this.state = 8233; + this.state = 8226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 8232; + this.state = 8225; this.opt_full(); } } - this.state = 8236; + this.state = 8229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112) { { - this.state = 8235; + this.state = 8228; this.opt_freeze(); } } - this.state = 8239; + this.state = 8232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 8238; + this.state = 8231; this.opt_verbose(); } } - this.state = 8242; + this.state = 8235; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 763, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 759, this.context) ) { case 1: { - this.state = 8241; + this.state = 8234; this.opt_analyze(); } break; } - this.state = 8245; + this.state = 8238; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 764, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 760, this.context) ) { case 1: { - this.state = 8244; + this.state = 8237; this.opt_vacuum_relation_list(); } break; @@ -37350,28 +36926,28 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8247; + this.state = 8240; this.match(PostgreSQLParser.KW_VACUUM); - this.state = 8252; + this.state = 8245; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 765, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 761, this.context) ) { case 1: { - this.state = 8248; + this.state = 8241; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8249; + this.state = 8242; this.vac_analyze_option_list(); - this.state = 8250; + this.state = 8243; this.match(PostgreSQLParser.CLOSE_PAREN); } break; } - this.state = 8255; + this.state = 8248; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 766, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 762, this.context) ) { case 1: { - this.state = 8254; + this.state = 8247; this.opt_vacuum_relation_list(); } break; @@ -37396,33 +36972,33 @@ export class PostgreSQLParser extends antlr.Parser { } public analyzestmt(): AnalyzestmtContext { let localContext = new AnalyzestmtContext(this.context, this.state); - this.enterRule(localContext, 888, PostgreSQLParser.RULE_analyzestmt); + this.enterRule(localContext, 890, PostgreSQLParser.RULE_analyzestmt); let _la: number; try { - this.state = 8273; + this.state = 8266; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 767, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8259; + this.state = 8252; this.analyze_keyword(); - this.state = 8261; + this.state = 8254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 8260; + this.state = 8253; this.opt_verbose(); } } - this.state = 8264; + this.state = 8257; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 769, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 765, this.context) ) { case 1: { - this.state = 8263; + this.state = 8256; this.opt_vacuum_relation_list(); } break; @@ -37432,20 +37008,20 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8266; + this.state = 8259; this.analyze_keyword(); - this.state = 8267; + this.state = 8260; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8268; + this.state = 8261; this.analyze_options_list(); - this.state = 8269; + this.state = 8262; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8271; + this.state = 8264; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 770, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 766, this.context) ) { case 1: { - this.state = 8270; + this.state = 8263; this.opt_vacuum_relation_list(); } break; @@ -37470,26 +37046,26 @@ export class PostgreSQLParser extends antlr.Parser { } public vac_analyze_option_list(): Vac_analyze_option_listContext { let localContext = new Vac_analyze_option_listContext(this.context, this.state); - this.enterRule(localContext, 890, PostgreSQLParser.RULE_vac_analyze_option_list); + this.enterRule(localContext, 892, PostgreSQLParser.RULE_vac_analyze_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8275; + this.state = 8268; this.vac_analyze_option_elem(); - this.state = 8280; + this.state = 8273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8276; + this.state = 8269; this.match(PostgreSQLParser.COMMA); - this.state = 8277; + this.state = 8270; this.vac_analyze_option_elem(); } } - this.state = 8282; + this.state = 8275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37511,12 +37087,12 @@ export class PostgreSQLParser extends antlr.Parser { } public analyze_keyword(): Analyze_keywordContext { let localContext = new Analyze_keywordContext(this.context, this.state); - this.enterRule(localContext, 892, PostgreSQLParser.RULE_analyze_keyword); + this.enterRule(localContext, 894, PostgreSQLParser.RULE_analyze_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8283; + this.state = 8276; _la = this.tokenStream.LA(1); if(!(_la === 31 || _la === 32)) { this.errorHandler.recoverInline(this); @@ -37543,19 +37119,19 @@ export class PostgreSQLParser extends antlr.Parser { } public vac_analyze_option_elem(): Vac_analyze_option_elemContext { let localContext = new Vac_analyze_option_elemContext(this.context, this.state); - this.enterRule(localContext, 894, PostgreSQLParser.RULE_vac_analyze_option_elem); + this.enterRule(localContext, 896, PostgreSQLParser.RULE_vac_analyze_option_elem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8285; + this.state = 8278; this.vac_analyze_option_name(); - this.state = 8287; + this.state = 8280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 420484101) !== 0) || ((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 4227928065) !== 0) || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 4294967295) !== 0) || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 4294967295) !== 0) || ((((_la - 176)) & ~0x1F) === 0 && ((1 << (_la - 176)) & 4294967295) !== 0) || ((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 3223322623) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 4294967295) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 4294967295) !== 0) || ((((_la - 304)) & ~0x1F) === 0 && ((1 << (_la - 304)) & 4294967295) !== 0) || ((((_la - 336)) & ~0x1F) === 0 && ((1 << (_la - 336)) & 4294967295) !== 0) || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 4294967295) !== 0) || ((((_la - 400)) & ~0x1F) === 0 && ((1 << (_la - 400)) & 4294967295) !== 0) || ((((_la - 432)) & ~0x1F) === 0 && ((1 << (_la - 432)) & 4290772991) !== 0) || ((((_la - 464)) & ~0x1F) === 0 && ((1 << (_la - 464)) & 4294967295) !== 0) || ((((_la - 496)) & ~0x1F) === 0 && ((1 << (_la - 496)) & 25165183) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 486582415) !== 0) || _la === 584) { { - this.state = 8286; + this.state = 8279; this.vac_analyze_option_arg(); } } @@ -37578,9 +37154,9 @@ export class PostgreSQLParser extends antlr.Parser { } public vac_analyze_option_name(): Vac_analyze_option_nameContext { let localContext = new Vac_analyze_option_nameContext(this.context, this.state); - this.enterRule(localContext, 896, PostgreSQLParser.RULE_vac_analyze_option_name); + this.enterRule(localContext, 898, PostgreSQLParser.RULE_vac_analyze_option_name); try { - this.state = 8291; + this.state = 8284; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -38006,7 +37582,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8289; + this.state = 8282; this.nonreservedword(); } break; @@ -38014,7 +37590,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ANALYZE: this.enterOuterAlt(localContext, 2); { - this.state = 8290; + this.state = 8283; this.analyze_keyword(); } break; @@ -38038,9 +37614,9 @@ export class PostgreSQLParser extends antlr.Parser { } public vac_analyze_option_arg(): Vac_analyze_option_argContext { let localContext = new Vac_analyze_option_argContext(this.context, this.state); - this.enterRule(localContext, 898, PostgreSQLParser.RULE_vac_analyze_option_arg); + this.enterRule(localContext, 900, PostgreSQLParser.RULE_vac_analyze_option_arg); try { - this.state = 8295; + this.state = 8288; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -38469,7 +38045,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8293; + this.state = 8286; this.opt_boolean_or_string(); } break; @@ -38479,7 +38055,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 8294; + this.state = 8287; this.numericonly(); } break; @@ -38503,11 +38079,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_analyze(): Opt_analyzeContext { let localContext = new Opt_analyzeContext(this.context, this.state); - this.enterRule(localContext, 900, PostgreSQLParser.RULE_opt_analyze); + this.enterRule(localContext, 902, PostgreSQLParser.RULE_opt_analyze); try { this.enterOuterAlt(localContext, 1); { - this.state = 8297; + this.state = 8290; this.analyze_keyword(); } } @@ -38527,26 +38103,26 @@ export class PostgreSQLParser extends antlr.Parser { } public analyze_options_list(): Analyze_options_listContext { let localContext = new Analyze_options_listContext(this.context, this.state); - this.enterRule(localContext, 902, PostgreSQLParser.RULE_analyze_options_list); + this.enterRule(localContext, 904, PostgreSQLParser.RULE_analyze_options_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8299; + this.state = 8292; this.analyze_option_elem(); - this.state = 8304; + this.state = 8297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8300; + this.state = 8293; this.match(PostgreSQLParser.COMMA); - this.state = 8301; + this.state = 8294; this.analyze_option_elem(); } } - this.state = 8306; + this.state = 8299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38568,29 +38144,29 @@ export class PostgreSQLParser extends antlr.Parser { } public analyze_option_elem(): Analyze_option_elemContext { let localContext = new Analyze_option_elemContext(this.context, this.state); - this.enterRule(localContext, 904, PostgreSQLParser.RULE_analyze_option_elem); + this.enterRule(localContext, 906, PostgreSQLParser.RULE_analyze_option_elem); try { - this.state = 8310; + this.state = 8303; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_VERBOSE: this.enterOuterAlt(localContext, 1); { - this.state = 8307; + this.state = 8300; this.opt_verbose(); } break; case PostgreSQLParser.KW_SKIP_LOCKED: this.enterOuterAlt(localContext, 2); { - this.state = 8308; + this.state = 8301; this.opt_skiplock(); } break; case PostgreSQLParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 3); { - this.state = 8309; + this.state = 8302; this.opt_buffer_usage_limit(); } break; @@ -38614,19 +38190,19 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_verbose(): Opt_verboseContext { let localContext = new Opt_verboseContext(this.context, this.state); - this.enterRule(localContext, 906, PostgreSQLParser.RULE_opt_verbose); + this.enterRule(localContext, 908, PostgreSQLParser.RULE_opt_verbose); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8312; + this.state = 8305; this.match(PostgreSQLParser.KW_VERBOSE); - this.state = 8314; + this.state = 8307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 8313; + this.state = 8306; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -38656,19 +38232,19 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_skiplock(): Opt_skiplockContext { let localContext = new Opt_skiplockContext(this.context, this.state); - this.enterRule(localContext, 908, PostgreSQLParser.RULE_opt_skiplock); + this.enterRule(localContext, 910, PostgreSQLParser.RULE_opt_skiplock); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8316; + this.state = 8309; this.match(PostgreSQLParser.KW_SKIP_LOCKED); - this.state = 8318; + this.state = 8311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 8317; + this.state = 8310; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -38698,13 +38274,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_buffer_usage_limit(): Opt_buffer_usage_limitContext { let localContext = new Opt_buffer_usage_limitContext(this.context, this.state); - this.enterRule(localContext, 910, PostgreSQLParser.RULE_opt_buffer_usage_limit); + this.enterRule(localContext, 912, PostgreSQLParser.RULE_opt_buffer_usage_limit); try { this.enterOuterAlt(localContext, 1); { - this.state = 8320; + this.state = 8313; this.match(PostgreSQLParser.KW_BUFFER_USAGE_LIMIT); - this.state = 8323; + this.state = 8316; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.PLUS: @@ -38712,7 +38288,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Integral: case PostgreSQLParser.Numeric: { - this.state = 8321; + this.state = 8314; this.numericonly(); } break; @@ -38721,7 +38297,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.BeginDollarStringConstant: case PostgreSQLParser.EscapeStringConstant: { - this.state = 8322; + this.state = 8315; this.sconst(); } break; @@ -38746,11 +38322,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_full(): Opt_fullContext { let localContext = new Opt_fullContext(this.context, this.state); - this.enterRule(localContext, 912, PostgreSQLParser.RULE_opt_full); + this.enterRule(localContext, 914, PostgreSQLParser.RULE_opt_full); try { this.enterOuterAlt(localContext, 1); { - this.state = 8325; + this.state = 8318; this.match(PostgreSQLParser.KW_FULL); } } @@ -38770,11 +38346,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_freeze(): Opt_freezeContext { let localContext = new Opt_freezeContext(this.context, this.state); - this.enterRule(localContext, 914, PostgreSQLParser.RULE_opt_freeze); + this.enterRule(localContext, 916, PostgreSQLParser.RULE_opt_freeze); try { this.enterOuterAlt(localContext, 1); { - this.state = 8327; + this.state = 8320; this.match(PostgreSQLParser.KW_FREEZE); } } @@ -38794,15 +38370,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_name_list(): Opt_name_listContext { let localContext = new Opt_name_listContext(this.context, this.state); - this.enterRule(localContext, 916, PostgreSQLParser.RULE_opt_name_list); + this.enterRule(localContext, 918, PostgreSQLParser.RULE_opt_name_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 8329; + this.state = 8322; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8330; - this.columnlist(); - this.state = 8331; + this.state = 8323; + this.column_list(); + this.state = 8324; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -38822,18 +38398,18 @@ export class PostgreSQLParser extends antlr.Parser { } public vacuum_relation(): Vacuum_relationContext { let localContext = new Vacuum_relationContext(this.context, this.state); - this.enterRule(localContext, 918, PostgreSQLParser.RULE_vacuum_relation); + this.enterRule(localContext, 920, PostgreSQLParser.RULE_vacuum_relation); try { this.enterOuterAlt(localContext, 1); { - this.state = 8333; + this.state = 8326; this.table_name(); - this.state = 8335; + this.state = 8328; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 781, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { case 1: { - this.state = 8334; + this.state = 8327; this.opt_name_list(); } break; @@ -38856,26 +38432,26 @@ export class PostgreSQLParser extends antlr.Parser { } public vacuum_relation_list(): Vacuum_relation_listContext { let localContext = new Vacuum_relation_listContext(this.context, this.state); - this.enterRule(localContext, 920, PostgreSQLParser.RULE_vacuum_relation_list); + this.enterRule(localContext, 922, PostgreSQLParser.RULE_vacuum_relation_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8337; + this.state = 8330; this.vacuum_relation(); - this.state = 8342; + this.state = 8335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8338; + this.state = 8331; this.match(PostgreSQLParser.COMMA); - this.state = 8339; + this.state = 8332; this.vacuum_relation(); } } - this.state = 8344; + this.state = 8337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38897,11 +38473,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_vacuum_relation_list(): Opt_vacuum_relation_listContext { let localContext = new Opt_vacuum_relation_listContext(this.context, this.state); - this.enterRule(localContext, 922, PostgreSQLParser.RULE_opt_vacuum_relation_list); + this.enterRule(localContext, 924, PostgreSQLParser.RULE_opt_vacuum_relation_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 8345; + this.state = 8338; this.vacuum_relation_list(); } } @@ -38921,65 +38497,65 @@ export class PostgreSQLParser extends antlr.Parser { } public explainstmt(): ExplainstmtContext { let localContext = new ExplainstmtContext(this.context, this.state); - this.enterRule(localContext, 924, PostgreSQLParser.RULE_explainstmt); + this.enterRule(localContext, 926, PostgreSQLParser.RULE_explainstmt); let _la: number; try { - this.state = 8365; + this.state = 8358; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 780, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8347; + this.state = 8340; this.match(PostgreSQLParser.KW_EXPLAIN); - this.state = 8348; + this.state = 8341; this.explainablestmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8349; + this.state = 8342; this.match(PostgreSQLParser.KW_EXPLAIN); - this.state = 8350; + this.state = 8343; this.analyze_keyword(); - this.state = 8352; + this.state = 8345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 8351; + this.state = 8344; this.opt_verbose(); } } - this.state = 8354; + this.state = 8347; this.explainablestmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8356; + this.state = 8349; this.match(PostgreSQLParser.KW_EXPLAIN); - this.state = 8357; + this.state = 8350; this.match(PostgreSQLParser.KW_VERBOSE); - this.state = 8358; + this.state = 8351; this.explainablestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8359; + this.state = 8352; this.match(PostgreSQLParser.KW_EXPLAIN); - this.state = 8360; + this.state = 8353; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8361; + this.state = 8354; this.explain_option_list(); - this.state = 8362; + this.state = 8355; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8363; + this.state = 8356; this.explainablestmt(); } break; @@ -39001,71 +38577,71 @@ export class PostgreSQLParser extends antlr.Parser { } public explainablestmt(): ExplainablestmtContext { let localContext = new ExplainablestmtContext(this.context, this.state); - this.enterRule(localContext, 926, PostgreSQLParser.RULE_explainablestmt); + this.enterRule(localContext, 928, PostgreSQLParser.RULE_explainablestmt); try { - this.state = 8376; + this.state = 8369; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 781, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8367; + this.state = 8360; this.selectstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8368; + this.state = 8361; this.insertstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8369; + this.state = 8362; this.updatestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8370; + this.state = 8363; this.deletestmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8371; + this.state = 8364; this.declarecursorstmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8372; + this.state = 8365; this.createasstmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 8373; + this.state = 8366; this.creatematviewstmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 8374; + this.state = 8367; this.refreshmatviewstmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 8375; + this.state = 8368; this.executestmt(); } break; @@ -39087,26 +38663,26 @@ export class PostgreSQLParser extends antlr.Parser { } public explain_option_list(): Explain_option_listContext { let localContext = new Explain_option_listContext(this.context, this.state); - this.enterRule(localContext, 928, PostgreSQLParser.RULE_explain_option_list); + this.enterRule(localContext, 930, PostgreSQLParser.RULE_explain_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8378; + this.state = 8371; this.explain_option_elem(); - this.state = 8383; + this.state = 8376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8379; + this.state = 8372; this.match(PostgreSQLParser.COMMA); - this.state = 8380; + this.state = 8373; this.explain_option_elem(); } } - this.state = 8385; + this.state = 8378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39128,19 +38704,19 @@ export class PostgreSQLParser extends antlr.Parser { } public explain_option_elem(): Explain_option_elemContext { let localContext = new Explain_option_elemContext(this.context, this.state); - this.enterRule(localContext, 930, PostgreSQLParser.RULE_explain_option_elem); + this.enterRule(localContext, 932, PostgreSQLParser.RULE_explain_option_elem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8386; + this.state = 8379; this.explain_option_name(); - this.state = 8388; + this.state = 8381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 420484101) !== 0) || ((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 4227928065) !== 0) || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 4294967295) !== 0) || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 4294967295) !== 0) || ((((_la - 176)) & ~0x1F) === 0 && ((1 << (_la - 176)) & 4294967295) !== 0) || ((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 3223322623) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 4294967295) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 4294967295) !== 0) || ((((_la - 304)) & ~0x1F) === 0 && ((1 << (_la - 304)) & 4294967295) !== 0) || ((((_la - 336)) & ~0x1F) === 0 && ((1 << (_la - 336)) & 4294967295) !== 0) || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 4294967295) !== 0) || ((((_la - 400)) & ~0x1F) === 0 && ((1 << (_la - 400)) & 4294967295) !== 0) || ((((_la - 432)) & ~0x1F) === 0 && ((1 << (_la - 432)) & 4290772991) !== 0) || ((((_la - 464)) & ~0x1F) === 0 && ((1 << (_la - 464)) & 4294967295) !== 0) || ((((_la - 496)) & ~0x1F) === 0 && ((1 << (_la - 496)) & 25165183) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 486582415) !== 0) || _la === 584) { { - this.state = 8387; + this.state = 8380; this.explain_option_arg(); } } @@ -39163,9 +38739,9 @@ export class PostgreSQLParser extends antlr.Parser { } public explain_option_name(): Explain_option_nameContext { let localContext = new Explain_option_nameContext(this.context, this.state); - this.enterRule(localContext, 932, PostgreSQLParser.RULE_explain_option_name); + this.enterRule(localContext, 934, PostgreSQLParser.RULE_explain_option_name); try { - this.state = 8392; + this.state = 8385; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -39591,7 +39167,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8390; + this.state = 8383; this.nonreservedword(); } break; @@ -39599,7 +39175,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ANALYZE: this.enterOuterAlt(localContext, 2); { - this.state = 8391; + this.state = 8384; this.analyze_keyword(); } break; @@ -39623,9 +39199,9 @@ export class PostgreSQLParser extends antlr.Parser { } public explain_option_arg(): Explain_option_argContext { let localContext = new Explain_option_argContext(this.context, this.state); - this.enterRule(localContext, 934, PostgreSQLParser.RULE_explain_option_arg); + this.enterRule(localContext, 936, PostgreSQLParser.RULE_explain_option_arg); try { - this.state = 8396; + this.state = 8389; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -40054,7 +39630,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8394; + this.state = 8387; this.opt_boolean_or_string(); } break; @@ -40064,7 +39640,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 8395; + this.state = 8388; this.numericonly(); } break; @@ -40088,28 +39664,28 @@ export class PostgreSQLParser extends antlr.Parser { } public preparestmt(): PreparestmtContext { let localContext = new PreparestmtContext(this.context, this.state); - this.enterRule(localContext, 936, PostgreSQLParser.RULE_preparestmt); + this.enterRule(localContext, 938, PostgreSQLParser.RULE_preparestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8398; + this.state = 8391; this.match(PostgreSQLParser.KW_PREPARE); - this.state = 8399; + this.state = 8392; this.name(); - this.state = 8401; + this.state = 8394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8400; + this.state = 8393; this.prep_type_clause(); } } - this.state = 8403; + this.state = 8396; this.match(PostgreSQLParser.KW_AS); - this.state = 8404; + this.state = 8397; this.preparablestmt(); } } @@ -40129,15 +39705,15 @@ export class PostgreSQLParser extends antlr.Parser { } public prep_type_clause(): Prep_type_clauseContext { let localContext = new Prep_type_clauseContext(this.context, this.state); - this.enterRule(localContext, 938, PostgreSQLParser.RULE_prep_type_clause); + this.enterRule(localContext, 940, PostgreSQLParser.RULE_prep_type_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8406; + this.state = 8399; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8407; + this.state = 8400; this.type_list(); - this.state = 8408; + this.state = 8401; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -40157,36 +39733,36 @@ export class PostgreSQLParser extends antlr.Parser { } public preparablestmt(): PreparablestmtContext { let localContext = new PreparablestmtContext(this.context, this.state); - this.enterRule(localContext, 940, PostgreSQLParser.RULE_preparablestmt); + this.enterRule(localContext, 942, PostgreSQLParser.RULE_preparablestmt); try { - this.state = 8414; + this.state = 8407; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 787, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8410; + this.state = 8403; this.selectstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8411; + this.state = 8404; this.insertstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8412; + this.state = 8405; this.updatestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8413; + this.state = 8406; this.deletestmt(); } break; @@ -40208,25 +39784,25 @@ export class PostgreSQLParser extends antlr.Parser { } public executestmt(): ExecutestmtContext { let localContext = new ExecutestmtContext(this.context, this.state); - this.enterRule(localContext, 942, PostgreSQLParser.RULE_executestmt); + this.enterRule(localContext, 944, PostgreSQLParser.RULE_executestmt); let _la: number; try { - this.state = 8439; + this.state = 8432; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_EXECUTE: this.enterOuterAlt(localContext, 1); { - this.state = 8416; + this.state = 8409; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 8417; + this.state = 8410; this.name(); - this.state = 8419; + this.state = 8412; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 788, this.context) ) { case 1: { - this.state = 8418; + this.state = 8411; this.execute_param_clause(); } break; @@ -40236,54 +39812,54 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CREATE: this.enterOuterAlt(localContext, 2); { - this.state = 8421; + this.state = 8414; this.match(PostgreSQLParser.KW_CREATE); - this.state = 8423; + this.state = 8416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 8422; + this.state = 8415; this.opttemp(); } } - this.state = 8425; + this.state = 8418; this.match(PostgreSQLParser.KW_TABLE); - this.state = 8427; + this.state = 8420; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 794, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { case 1: { - this.state = 8426; + this.state = 8419; this.opt_if_not_exists(); } break; } - this.state = 8429; + this.state = 8422; this.create_as_target(); - this.state = 8430; + this.state = 8423; this.match(PostgreSQLParser.KW_AS); - this.state = 8431; + this.state = 8424; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 8432; + this.state = 8425; this.name(); - this.state = 8434; + this.state = 8427; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 795, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { case 1: { - this.state = 8433; + this.state = 8426; this.execute_param_clause(); } break; } - this.state = 8437; + this.state = 8430; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 796, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { case 1: { - this.state = 8436; + this.state = 8429; this.opt_with_data(); } break; @@ -40310,15 +39886,15 @@ export class PostgreSQLParser extends antlr.Parser { } public execute_param_clause(): Execute_param_clauseContext { let localContext = new Execute_param_clauseContext(this.context, this.state); - this.enterRule(localContext, 944, PostgreSQLParser.RULE_execute_param_clause); + this.enterRule(localContext, 946, PostgreSQLParser.RULE_execute_param_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8441; + this.state = 8434; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8442; + this.state = 8435; this.expr_list(); - this.state = 8443; + this.state = 8436; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -40338,23 +39914,23 @@ export class PostgreSQLParser extends antlr.Parser { } public deallocatestmt(): DeallocatestmtContext { let localContext = new DeallocatestmtContext(this.context, this.state); - this.enterRule(localContext, 946, PostgreSQLParser.RULE_deallocatestmt); + this.enterRule(localContext, 948, PostgreSQLParser.RULE_deallocatestmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8445; + this.state = 8438; this.match(PostgreSQLParser.KW_DEALLOCATE); - this.state = 8447; + this.state = 8440; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 798, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 794, this.context) ) { case 1: { - this.state = 8446; + this.state = 8439; this.match(PostgreSQLParser.KW_PREPARE); } break; } - this.state = 8451; + this.state = 8444; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -40758,13 +40334,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 8449; + this.state = 8442; this.name(); } break; case PostgreSQLParser.KW_ALL: { - this.state = 8450; + this.state = 8443; this.match(PostgreSQLParser.KW_ALL); } break; @@ -40789,45 +40365,46 @@ export class PostgreSQLParser extends antlr.Parser { } public insertstmt(): InsertstmtContext { let localContext = new InsertstmtContext(this.context, this.state); - this.enterRule(localContext, 948, PostgreSQLParser.RULE_insertstmt); + this.enterRule(localContext, 950, PostgreSQLParser.RULE_insertstmt); let _la: number; try { + localContext = new InsertStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 8454; + this.state = 8447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8453; + this.state = 8446; this.opt_with_clause(); } } - this.state = 8456; + this.state = 8449; this.match(PostgreSQLParser.KW_INSERT); - this.state = 8457; + this.state = 8450; this.match(PostgreSQLParser.KW_INTO); - this.state = 8458; + this.state = 8451; this.insert_target(); - this.state = 8459; + this.state = 8452; this.insert_rest(); - this.state = 8461; + this.state = 8454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 8460; + this.state = 8453; this.opt_on_conflict(); } } - this.state = 8464; + this.state = 8457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8463; + this.state = 8456; this.returning_clause(); } } @@ -40850,21 +40427,21 @@ export class PostgreSQLParser extends antlr.Parser { } public insert_target(): Insert_targetContext { let localContext = new Insert_targetContext(this.context, this.state); - this.enterRule(localContext, 950, PostgreSQLParser.RULE_insert_target); + this.enterRule(localContext, 952, PostgreSQLParser.RULE_insert_target); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8466; + this.state = 8459; this.table_name(); - this.state = 8469; + this.state = 8462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8467; + this.state = 8460; this.match(PostgreSQLParser.KW_AS); - this.state = 8468; + this.state = 8461; this.colid(); } } @@ -40887,51 +40464,51 @@ export class PostgreSQLParser extends antlr.Parser { } public insert_rest(): Insert_restContext { let localContext = new Insert_restContext(this.context, this.state); - this.enterRule(localContext, 952, PostgreSQLParser.RULE_insert_rest); + this.enterRule(localContext, 954, PostgreSQLParser.RULE_insert_rest); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8475; + this.state = 8468; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 804, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 800, this.context) ) { case 1: { - this.state = 8471; + this.state = 8464; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8472; + this.state = 8465; this.insert_column_list(); - this.state = 8473; + this.state = 8466; this.match(PostgreSQLParser.CLOSE_PAREN); } break; } - this.state = 8481; + this.state = 8474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 8477; + this.state = 8470; this.match(PostgreSQLParser.KW_OVERRIDING); - this.state = 8478; + this.state = 8471; this.override_kind(); - this.state = 8479; + this.state = 8472; this.match(PostgreSQLParser.KW_VALUE); } } - this.state = 8485; + this.state = 8478; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 806, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 802, this.context) ) { case 1: { - this.state = 8483; + this.state = 8476; this.default_values_or_values(); } break; case 2: { - this.state = 8484; + this.state = 8477; this.selectstmt(); } break; @@ -40954,12 +40531,12 @@ export class PostgreSQLParser extends antlr.Parser { } public override_kind(): Override_kindContext { let localContext = new Override_kindContext(this.context, this.state); - this.enterRule(localContext, 954, PostgreSQLParser.RULE_override_kind); + this.enterRule(localContext, 956, PostgreSQLParser.RULE_override_kind); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8487; + this.state = 8480; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -40986,26 +40563,26 @@ export class PostgreSQLParser extends antlr.Parser { } public insert_column_list(): Insert_column_listContext { let localContext = new Insert_column_listContext(this.context, this.state); - this.enterRule(localContext, 956, PostgreSQLParser.RULE_insert_column_list); + this.enterRule(localContext, 958, PostgreSQLParser.RULE_insert_column_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8489; + this.state = 8482; this.insert_column_item(); - this.state = 8494; + this.state = 8487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8490; + this.state = 8483; this.match(PostgreSQLParser.COMMA); - this.state = 8491; + this.state = 8484; this.insert_column_item(); } } - this.state = 8496; + this.state = 8489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -41027,13 +40604,13 @@ export class PostgreSQLParser extends antlr.Parser { } public insert_column_item(): Insert_column_itemContext { let localContext = new Insert_column_itemContext(this.context, this.state); - this.enterRule(localContext, 958, PostgreSQLParser.RULE_insert_column_item); + this.enterRule(localContext, 960, PostgreSQLParser.RULE_insert_column_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 8497; + this.state = 8490; this.column_name(); - this.state = 8498; + this.state = 8491; this.opt_indirection(); } } @@ -41053,44 +40630,44 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_on_conflict(): Opt_on_conflictContext { let localContext = new Opt_on_conflictContext(this.context, this.state); - this.enterRule(localContext, 960, PostgreSQLParser.RULE_opt_on_conflict); + this.enterRule(localContext, 962, PostgreSQLParser.RULE_opt_on_conflict); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8500; + this.state = 8493; this.match(PostgreSQLParser.KW_ON); - this.state = 8501; + this.state = 8494; this.match(PostgreSQLParser.KW_CONFLICT); - this.state = 8503; + this.state = 8496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 80) { { - this.state = 8502; + this.state = 8495; this.opt_conf_expr(); } } - this.state = 8505; + this.state = 8498; this.match(PostgreSQLParser.KW_DO); - this.state = 8513; + this.state = 8506; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_UPDATE: { - this.state = 8506; + this.state = 8499; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 8507; + this.state = 8500; this.match(PostgreSQLParser.KW_SET); - this.state = 8508; + this.state = 8501; this.set_clause_list(); - this.state = 8510; + this.state = 8503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8509; + this.state = 8502; this.where_clause(); } } @@ -41099,7 +40676,7 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_NOTHING: { - this.state = 8512; + this.state = 8505; this.match(PostgreSQLParser.KW_NOTHING); } break; @@ -41124,27 +40701,27 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_conf_expr(): Opt_conf_exprContext { let localContext = new Opt_conf_exprContext(this.context, this.state); - this.enterRule(localContext, 962, PostgreSQLParser.RULE_opt_conf_expr); + this.enterRule(localContext, 964, PostgreSQLParser.RULE_opt_conf_expr); let _la: number; try { - this.state = 8524; + this.state = 8517; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 1); { - this.state = 8515; + this.state = 8508; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8516; + this.state = 8509; this.index_params(); - this.state = 8517; + this.state = 8510; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8519; + this.state = 8512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8518; + this.state = 8511; this.where_clause(); } } @@ -41154,11 +40731,11 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ON: this.enterOuterAlt(localContext, 2); { - this.state = 8521; + this.state = 8514; this.match(PostgreSQLParser.KW_ON); - this.state = 8522; + this.state = 8515; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 8523; + this.state = 8516; this.name(); } break; @@ -41182,13 +40759,13 @@ export class PostgreSQLParser extends antlr.Parser { } public returning_clause(): Returning_clauseContext { let localContext = new Returning_clauseContext(this.context, this.state); - this.enterRule(localContext, 964, PostgreSQLParser.RULE_returning_clause); + this.enterRule(localContext, 966, PostgreSQLParser.RULE_returning_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8526; + this.state = 8519; this.match(PostgreSQLParser.KW_RETURNING); - this.state = 8527; + this.state = 8520; this.target_list(); } } @@ -41208,53 +40785,53 @@ export class PostgreSQLParser extends antlr.Parser { } public deletestmt(): DeletestmtContext { let localContext = new DeletestmtContext(this.context, this.state); - this.enterRule(localContext, 966, PostgreSQLParser.RULE_deletestmt); + this.enterRule(localContext, 968, PostgreSQLParser.RULE_deletestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8530; + this.state = 8523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8529; + this.state = 8522; this.opt_with_clause(); } } - this.state = 8532; + this.state = 8525; this.match(PostgreSQLParser.KW_DELETE); - this.state = 8533; + this.state = 8526; this.match(PostgreSQLParser.KW_FROM); - this.state = 8534; + this.state = 8527; this.relation_expr_opt_alias(); - this.state = 8536; + this.state = 8529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8535; + this.state = 8528; this.using_clause(); } } - this.state = 8539; + this.state = 8532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8538; + this.state = 8531; this.where_or_current_clause(); } } - this.state = 8542; + this.state = 8535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8541; + this.state = 8534; this.returning_clause(); } } @@ -41277,13 +40854,13 @@ export class PostgreSQLParser extends antlr.Parser { } public using_clause(): Using_clauseContext { let localContext = new Using_clauseContext(this.context, this.state); - this.enterRule(localContext, 968, PostgreSQLParser.RULE_using_clause); + this.enterRule(localContext, 970, PostgreSQLParser.RULE_using_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8544; + this.state = 8537; this.match(PostgreSQLParser.KW_USING); - this.state = 8545; + this.state = 8538; this.from_list(); } } @@ -41303,41 +40880,41 @@ export class PostgreSQLParser extends antlr.Parser { } public lockstmt(): LockstmtContext { let localContext = new LockstmtContext(this.context, this.state); - this.enterRule(localContext, 970, PostgreSQLParser.RULE_lockstmt); + this.enterRule(localContext, 972, PostgreSQLParser.RULE_lockstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8547; + this.state = 8540; this.match(PostgreSQLParser.KW_LOCK); - this.state = 8549; + this.state = 8542; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 817, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { case 1: { - this.state = 8548; + this.state = 8541; this.opt_table(); } break; } - this.state = 8551; + this.state = 8544; this.relation_expr_list(); - this.state = 8553; + this.state = 8546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 8552; + this.state = 8545; this.opt_lock(); } } - this.state = 8556; + this.state = 8549; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 819, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { case 1: { - this.state = 8555; + this.state = 8548; this.opt_nowait(); } break; @@ -41360,15 +40937,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_lock(): Opt_lockContext { let localContext = new Opt_lockContext(this.context, this.state); - this.enterRule(localContext, 972, PostgreSQLParser.RULE_opt_lock); + this.enterRule(localContext, 974, PostgreSQLParser.RULE_opt_lock); try { this.enterOuterAlt(localContext, 1); { - this.state = 8558; + this.state = 8551; this.match(PostgreSQLParser.KW_IN); - this.state = 8559; + this.state = 8552; this.lock_type(); - this.state = 8560; + this.state = 8553; this.match(PostgreSQLParser.KW_MODE); } } @@ -41388,18 +40965,18 @@ export class PostgreSQLParser extends antlr.Parser { } public lock_type(): Lock_typeContext { let localContext = new Lock_typeContext(this.context, this.state); - this.enterRule(localContext, 974, PostgreSQLParser.RULE_lock_type); + this.enterRule(localContext, 976, PostgreSQLParser.RULE_lock_type); let _la: number; try { - this.state = 8574; + this.state = 8567; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ACCESS: this.enterOuterAlt(localContext, 1); { - this.state = 8562; + this.state = 8555; this.match(PostgreSQLParser.KW_ACCESS); - this.state = 8563; + this.state = 8556; _la = this.tokenStream.LA(1); if(!(_la === 201 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -41413,9 +40990,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ROW: this.enterOuterAlt(localContext, 2); { - this.state = 8564; + this.state = 8557; this.match(PostgreSQLParser.KW_ROW); - this.state = 8565; + this.state = 8558; _la = this.tokenStream.LA(1); if(!(_la === 201 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -41429,24 +41006,24 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SHARE: this.enterOuterAlt(localContext, 3); { - this.state = 8566; + this.state = 8559; this.match(PostgreSQLParser.KW_SHARE); - this.state = 8571; + this.state = 8564; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_UPDATE: { - this.state = 8567; + this.state = 8560; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 8568; + this.state = 8561; this.match(PostgreSQLParser.KW_EXCLUSIVE); } break; case PostgreSQLParser.KW_ROW: { - this.state = 8569; + this.state = 8562; this.match(PostgreSQLParser.KW_ROW); - this.state = 8570; + this.state = 8563; this.match(PostgreSQLParser.KW_EXCLUSIVE); } break; @@ -41460,7 +41037,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_EXCLUSIVE: this.enterOuterAlt(localContext, 4); { - this.state = 8573; + this.state = 8566; this.match(PostgreSQLParser.KW_EXCLUSIVE); } break; @@ -41484,11 +41061,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_nowait(): Opt_nowaitContext { let localContext = new Opt_nowaitContext(this.context, this.state); - this.enterRule(localContext, 976, PostgreSQLParser.RULE_opt_nowait); + this.enterRule(localContext, 978, PostgreSQLParser.RULE_opt_nowait); try { this.enterOuterAlt(localContext, 1); { - this.state = 8576; + this.state = 8569; this.match(PostgreSQLParser.KW_NOWAIT); } } @@ -41508,24 +41085,24 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_nowait_or_skip(): Opt_nowait_or_skipContext { let localContext = new Opt_nowait_or_skipContext(this.context, this.state); - this.enterRule(localContext, 978, PostgreSQLParser.RULE_opt_nowait_or_skip); + this.enterRule(localContext, 980, PostgreSQLParser.RULE_opt_nowait_or_skip); try { - this.state = 8581; + this.state = 8574; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NOWAIT: this.enterOuterAlt(localContext, 1); { - this.state = 8578; + this.state = 8571; this.match(PostgreSQLParser.KW_NOWAIT); } break; case PostgreSQLParser.KW_SKIP: this.enterOuterAlt(localContext, 2); { - this.state = 8579; + this.state = 8572; this.match(PostgreSQLParser.KW_SKIP); - this.state = 8580; + this.state = 8573; this.match(PostgreSQLParser.KW_LOCKED); } break; @@ -41549,55 +41126,55 @@ export class PostgreSQLParser extends antlr.Parser { } public updatestmt(): UpdatestmtContext { let localContext = new UpdatestmtContext(this.context, this.state); - this.enterRule(localContext, 980, PostgreSQLParser.RULE_updatestmt); + this.enterRule(localContext, 982, PostgreSQLParser.RULE_updatestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8584; + this.state = 8577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8583; + this.state = 8576; this.opt_with_clause(); } } - this.state = 8586; + this.state = 8579; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 8587; + this.state = 8580; this.relation_expr_opt_alias(); - this.state = 8588; + this.state = 8581; this.match(PostgreSQLParser.KW_SET); - this.state = 8589; + this.state = 8582; this.set_clause_list(); - this.state = 8591; + this.state = 8584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8590; + this.state = 8583; this.from_clause(); } } - this.state = 8594; + this.state = 8587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8593; + this.state = 8586; this.where_or_current_clause(); } } - this.state = 8597; + this.state = 8590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8596; + this.state = 8589; this.returning_clause(); } } @@ -41620,26 +41197,26 @@ export class PostgreSQLParser extends antlr.Parser { } public set_clause_list(): Set_clause_listContext { let localContext = new Set_clause_listContext(this.context, this.state); - this.enterRule(localContext, 982, PostgreSQLParser.RULE_set_clause_list); + this.enterRule(localContext, 984, PostgreSQLParser.RULE_set_clause_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8599; + this.state = 8592; this.set_clause(); - this.state = 8604; + this.state = 8597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8600; + this.state = 8593; this.match(PostgreSQLParser.COMMA); - this.state = 8601; + this.state = 8594; this.set_clause(); } } - this.state = 8606; + this.state = 8599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -41661,466 +41238,65 @@ export class PostgreSQLParser extends antlr.Parser { } public set_clause(): Set_clauseContext { let localContext = new Set_clauseContext(this.context, this.state); - this.enterRule(localContext, 984, PostgreSQLParser.RULE_set_clause); + this.enterRule(localContext, 986, PostgreSQLParser.RULE_set_clause); try { - this.state = 8625; + this.state = 8618; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSQLParser.KW_AND: - case PostgreSQLParser.KW_ARRAY: - case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_CONSTRAINT: - case PostgreSQLParser.KW_DEFAULT: - case PostgreSQLParser.KW_DO: - case PostgreSQLParser.KW_FETCH: - case PostgreSQLParser.KW_TABLE: - case PostgreSQLParser.KW_IS: - case PostgreSQLParser.KW_OUTER: - case PostgreSQLParser.KW_OVER: - case PostgreSQLParser.KW_ABORT: - case PostgreSQLParser.KW_ABSOLUTE: - case PostgreSQLParser.KW_ACCESS: - case PostgreSQLParser.KW_ACTION: - case PostgreSQLParser.KW_ADD: - case PostgreSQLParser.KW_ADMIN: - case PostgreSQLParser.KW_AFTER: - case PostgreSQLParser.KW_AGGREGATE: - case PostgreSQLParser.KW_ALSO: - case PostgreSQLParser.KW_ALTER: - case PostgreSQLParser.KW_ALWAYS: - case PostgreSQLParser.KW_ASSERTION: - case PostgreSQLParser.KW_ASSIGNMENT: - case PostgreSQLParser.KW_AT: - case PostgreSQLParser.KW_ATTRIBUTE: - case PostgreSQLParser.KW_BACKWARD: - case PostgreSQLParser.KW_BEFORE: - case PostgreSQLParser.KW_BEGIN: - case PostgreSQLParser.KW_BY: - case PostgreSQLParser.KW_CACHE: - case PostgreSQLParser.KW_CALLED: - case PostgreSQLParser.KW_CASCADE: - case PostgreSQLParser.KW_CASCADED: - case PostgreSQLParser.KW_CATALOG: - case PostgreSQLParser.KW_CHAIN: - case PostgreSQLParser.KW_CHARACTERISTICS: - case PostgreSQLParser.KW_CHECKPOINT: - case PostgreSQLParser.KW_CLASS: - case PostgreSQLParser.KW_CLOSE: - case PostgreSQLParser.KW_CLUSTER: - case PostgreSQLParser.KW_COMMENT: - case PostgreSQLParser.KW_COMMENTS: - case PostgreSQLParser.KW_COMMIT: - case PostgreSQLParser.KW_COMMITTED: - case PostgreSQLParser.KW_CONFIGURATION: - case PostgreSQLParser.KW_CONNECTION: - case PostgreSQLParser.KW_CONSTRAINTS: - case PostgreSQLParser.KW_CONTENT: - case PostgreSQLParser.KW_CONTINUE: - case PostgreSQLParser.KW_CONVERSION: - case PostgreSQLParser.KW_COPY: - case PostgreSQLParser.KW_COST: - case PostgreSQLParser.KW_CSV: - case PostgreSQLParser.KW_CURSOR: - case PostgreSQLParser.KW_CYCLE: - case PostgreSQLParser.KW_DATA: - case PostgreSQLParser.KW_DATABASE: - case PostgreSQLParser.KW_DAY: - case PostgreSQLParser.KW_DEALLOCATE: - case PostgreSQLParser.KW_DECLARE: - case PostgreSQLParser.KW_DEFAULTS: - case PostgreSQLParser.KW_DEFERRED: - case PostgreSQLParser.KW_DEFINER: - case PostgreSQLParser.KW_DELETE: - case PostgreSQLParser.KW_DELIMITER: - case PostgreSQLParser.KW_DELIMITERS: - case PostgreSQLParser.KW_DICTIONARY: - case PostgreSQLParser.KW_DISABLE: - case PostgreSQLParser.KW_DISCARD: - case PostgreSQLParser.KW_DOCUMENT: - case PostgreSQLParser.KW_DOMAIN: - case PostgreSQLParser.KW_DOUBLE: - case PostgreSQLParser.KW_DROP: - case PostgreSQLParser.KW_EACH: - case PostgreSQLParser.KW_ENABLE: - case PostgreSQLParser.KW_ENCODING: - case PostgreSQLParser.KW_ENCRYPTED: - case PostgreSQLParser.KW_ENUM: - case PostgreSQLParser.KW_ESCAPE: - case PostgreSQLParser.KW_EVENT: - case PostgreSQLParser.KW_EXCLUDE: - case PostgreSQLParser.KW_EXCLUDING: - case PostgreSQLParser.KW_EXCLUSIVE: - case PostgreSQLParser.KW_EXECUTE: - case PostgreSQLParser.KW_EXPLAIN: - case PostgreSQLParser.KW_EXTENSION: - case PostgreSQLParser.KW_EXTERNAL: - case PostgreSQLParser.KW_FAMILY: - case PostgreSQLParser.KW_FIRST: - case PostgreSQLParser.KW_FOLLOWING: - case PostgreSQLParser.KW_FORCE: - case PostgreSQLParser.KW_FORWARD: - case PostgreSQLParser.KW_FUNCTION: - case PostgreSQLParser.KW_FUNCTIONS: - case PostgreSQLParser.KW_GLOBAL: - case PostgreSQLParser.KW_GRANTED: - case PostgreSQLParser.KW_HANDLER: - case PostgreSQLParser.KW_HEADER: - case PostgreSQLParser.KW_HOLD: - case PostgreSQLParser.KW_HOUR: - case PostgreSQLParser.KW_IDENTITY: - case PostgreSQLParser.KW_IF: - case PostgreSQLParser.KW_IMMEDIATE: - case PostgreSQLParser.KW_IMMUTABLE: - case PostgreSQLParser.KW_IMPLICIT: - case PostgreSQLParser.KW_INCLUDING: - case PostgreSQLParser.KW_INCREMENT: - case PostgreSQLParser.KW_INDEX: - case PostgreSQLParser.KW_INDEXES: - case PostgreSQLParser.KW_INHERIT: - case PostgreSQLParser.KW_INHERITS: - case PostgreSQLParser.KW_INLINE: - case PostgreSQLParser.KW_INSENSITIVE: - case PostgreSQLParser.KW_INSERT: - case PostgreSQLParser.KW_INSTEAD: - case PostgreSQLParser.KW_INVOKER: - case PostgreSQLParser.KW_ISOLATION: - case PostgreSQLParser.KW_KEY: - case PostgreSQLParser.KW_LABEL: - case PostgreSQLParser.KW_LANGUAGE: - case PostgreSQLParser.KW_LARGE: - case PostgreSQLParser.KW_LAST: - case PostgreSQLParser.KW_LEAKPROOF: - case PostgreSQLParser.KW_LEVEL: - case PostgreSQLParser.KW_LISTEN: - case PostgreSQLParser.KW_LOAD: - case PostgreSQLParser.KW_LOCAL: - case PostgreSQLParser.KW_LOCATION: - case PostgreSQLParser.KW_LOCK: - case PostgreSQLParser.KW_MAPPING: - case PostgreSQLParser.KW_MATCH: - case PostgreSQLParser.KW_MATERIALIZED: - case PostgreSQLParser.KW_MAXVALUE: - case PostgreSQLParser.KW_MINUTE: - case PostgreSQLParser.KW_MINVALUE: - case PostgreSQLParser.KW_MODE: - case PostgreSQLParser.KW_MONTH: - case PostgreSQLParser.KW_MOVE: - case PostgreSQLParser.KW_NAME: - case PostgreSQLParser.KW_NAMES: - case PostgreSQLParser.KW_NEXT: - case PostgreSQLParser.KW_NO: - case PostgreSQLParser.KW_NOTHING: - case PostgreSQLParser.KW_NOTIFY: - case PostgreSQLParser.KW_NOWAIT: - case PostgreSQLParser.KW_NULLS: - case PostgreSQLParser.KW_OBJECT: - case PostgreSQLParser.KW_OF: - case PostgreSQLParser.KW_OFF: - case PostgreSQLParser.KW_OIDS: - case PostgreSQLParser.KW_OPERATOR: - case PostgreSQLParser.KW_OPTION: - case PostgreSQLParser.KW_OPTIONS: - case PostgreSQLParser.KW_OWNED: - case PostgreSQLParser.KW_OWNER: - case PostgreSQLParser.KW_PARSER: - case PostgreSQLParser.KW_PARTIAL: - case PostgreSQLParser.KW_PARTITION: - case PostgreSQLParser.KW_PASSING: - case PostgreSQLParser.KW_PASSWORD: - case PostgreSQLParser.KW_PLANS: - case PostgreSQLParser.KW_PRECEDING: - case PostgreSQLParser.KW_PREPARE: - case PostgreSQLParser.KW_PREPARED: - case PostgreSQLParser.KW_PRESERVE: - case PostgreSQLParser.KW_PRIOR: - case PostgreSQLParser.KW_PRIVILEGES: - case PostgreSQLParser.KW_PROCEDURAL: - case PostgreSQLParser.KW_PROCEDURE: - case PostgreSQLParser.KW_PROGRAM: - case PostgreSQLParser.KW_QUOTE: - case PostgreSQLParser.KW_RANGE: - case PostgreSQLParser.KW_READ: - case PostgreSQLParser.KW_REASSIGN: - case PostgreSQLParser.KW_RECHECK: - case PostgreSQLParser.KW_RECURSIVE: - case PostgreSQLParser.KW_REF: - case PostgreSQLParser.KW_REFRESH: - case PostgreSQLParser.KW_REINDEX: - case PostgreSQLParser.KW_RELATIVE: - case PostgreSQLParser.KW_RELEASE: - case PostgreSQLParser.KW_RENAME: - case PostgreSQLParser.KW_REPEATABLE: - case PostgreSQLParser.KW_REPLACE: - case PostgreSQLParser.KW_REPLICA: - case PostgreSQLParser.KW_RESET: - case PostgreSQLParser.KW_RESTART: - case PostgreSQLParser.KW_RESTRICT: - case PostgreSQLParser.KW_RETURNS: - case PostgreSQLParser.KW_REVOKE: - case PostgreSQLParser.KW_ROLE: - case PostgreSQLParser.KW_ROLLBACK: - case PostgreSQLParser.KW_ROWS: - case PostgreSQLParser.KW_RULE: - case PostgreSQLParser.KW_SAVEPOINT: - case PostgreSQLParser.KW_SCHEMA: - case PostgreSQLParser.KW_SCROLL: - case PostgreSQLParser.KW_SEARCH: - case PostgreSQLParser.KW_SECOND: - case PostgreSQLParser.KW_SECURITY: - case PostgreSQLParser.KW_SEQUENCE: - case PostgreSQLParser.KW_SEQUENCES: - case PostgreSQLParser.KW_SERIALIZABLE: - case PostgreSQLParser.KW_SERVER: - case PostgreSQLParser.KW_SESSION: - case PostgreSQLParser.KW_SET: - case PostgreSQLParser.KW_SHARE: - case PostgreSQLParser.KW_SHOW: - case PostgreSQLParser.KW_SIMPLE: - case PostgreSQLParser.KW_SNAPSHOT: - case PostgreSQLParser.KW_STABLE: - case PostgreSQLParser.KW_STANDALONE: - case PostgreSQLParser.KW_START: - case PostgreSQLParser.KW_STATEMENT: - case PostgreSQLParser.KW_STATISTICS: - case PostgreSQLParser.KW_STDIN: - case PostgreSQLParser.KW_STDOUT: - case PostgreSQLParser.KW_STORAGE: - case PostgreSQLParser.KW_STRICT: - case PostgreSQLParser.KW_STRIP: - case PostgreSQLParser.KW_SYSID: - case PostgreSQLParser.KW_SYSTEM: - case PostgreSQLParser.KW_TABLES: - case PostgreSQLParser.KW_TABLESPACE: - case PostgreSQLParser.KW_TEMP: - case PostgreSQLParser.KW_TEMPLATE: - case PostgreSQLParser.KW_TEMPORARY: - case PostgreSQLParser.KW_TEXT: - case PostgreSQLParser.KW_TRANSACTION: - case PostgreSQLParser.KW_TRIGGER: - case PostgreSQLParser.KW_TRUNCATE: - case PostgreSQLParser.KW_TRUSTED: - case PostgreSQLParser.KW_TYPE: - case PostgreSQLParser.KW_TYPES: - case PostgreSQLParser.KW_UNBOUNDED: - case PostgreSQLParser.KW_UNCOMMITTED: - case PostgreSQLParser.KW_UNENCRYPTED: - case PostgreSQLParser.KW_UNKNOWN: - case PostgreSQLParser.KW_UNLISTEN: - case PostgreSQLParser.KW_UNLOGGED: - case PostgreSQLParser.KW_UNTIL: - case PostgreSQLParser.KW_UPDATE: - case PostgreSQLParser.KW_VACUUM: - case PostgreSQLParser.KW_VALID: - case PostgreSQLParser.KW_VALIDATE: - case PostgreSQLParser.KW_VALIDATOR: - case PostgreSQLParser.KW_VARYING: - case PostgreSQLParser.KW_VERSION: - case PostgreSQLParser.KW_VIEW: - case PostgreSQLParser.KW_VOLATILE: - case PostgreSQLParser.KW_WHITESPACE: - case PostgreSQLParser.KW_WITHOUT: - case PostgreSQLParser.KW_WORK: - case PostgreSQLParser.KW_WRAPPER: - case PostgreSQLParser.KW_WRITE: - case PostgreSQLParser.KW_XML: - case PostgreSQLParser.KW_YEAR: - case PostgreSQLParser.KW_YES: - case PostgreSQLParser.KW_ZONE: - case PostgreSQLParser.KW_BETWEEN: - case PostgreSQLParser.KW_BIGINT: - case PostgreSQLParser.KW_BIT: - case PostgreSQLParser.KW_BOOLEAN: - case PostgreSQLParser.KW_CHAR: - case PostgreSQLParser.KW_CHARACTER: - case PostgreSQLParser.KW_COALESCE: - case PostgreSQLParser.KW_DEC: - case PostgreSQLParser.KW_DECIMAL: - case PostgreSQLParser.KW_EXISTS: - case PostgreSQLParser.KW_EXTRACT: - case PostgreSQLParser.KW_FLOAT: - case PostgreSQLParser.KW_GREATEST: - case PostgreSQLParser.KW_INOUT: - case PostgreSQLParser.KW_INT: - case PostgreSQLParser.KW_INTEGER: - case PostgreSQLParser.KW_INTERVAL: - case PostgreSQLParser.KW_LEAST: - case PostgreSQLParser.KW_NATIONAL: - case PostgreSQLParser.KW_NCHAR: - case PostgreSQLParser.KW_NONE: - case PostgreSQLParser.KW_NULLIF: - case PostgreSQLParser.KW_NUMERIC: - case PostgreSQLParser.KW_OVERLAY: - case PostgreSQLParser.KW_POSITION: - case PostgreSQLParser.KW_PRECISION: - case PostgreSQLParser.KW_REAL: - case PostgreSQLParser.KW_ROW: - case PostgreSQLParser.KW_SETOF: - case PostgreSQLParser.KW_SMALLINT: - case PostgreSQLParser.KW_SUBSTRING: - case PostgreSQLParser.KW_TIME: - case PostgreSQLParser.KW_TIMESTAMP: - case PostgreSQLParser.KW_TREAT: - case PostgreSQLParser.KW_TRIM: - case PostgreSQLParser.KW_VALUES: - case PostgreSQLParser.KW_VARCHAR: - case PostgreSQLParser.KW_XMLATTRIBUTES: - case PostgreSQLParser.KW_XMLCONCAT: - case PostgreSQLParser.KW_XMLELEMENT: - case PostgreSQLParser.KW_XMLEXISTS: - case PostgreSQLParser.KW_XMLFOREST: - case PostgreSQLParser.KW_XMLPARSE: - case PostgreSQLParser.KW_XMLPI: - case PostgreSQLParser.KW_XMLROOT: - case PostgreSQLParser.KW_XMLSERIALIZE: - case PostgreSQLParser.KW_CALL: - case PostgreSQLParser.KW_CURRENT: - case PostgreSQLParser.KW_ATTACH: - case PostgreSQLParser.KW_DETACH: - case PostgreSQLParser.KW_EXPRESSION: - case PostgreSQLParser.KW_GENERATED: - case PostgreSQLParser.KW_LOGGED: - case PostgreSQLParser.KW_STORED: - case PostgreSQLParser.KW_INCLUDE: - case PostgreSQLParser.KW_ROUTINE: - case PostgreSQLParser.KW_TRANSFORM: - case PostgreSQLParser.KW_IMPORT: - case PostgreSQLParser.KW_POLICY: - case PostgreSQLParser.KW_METHOD: - case PostgreSQLParser.KW_REFERENCING: - case PostgreSQLParser.KW_NEW: - case PostgreSQLParser.KW_OLD: - case PostgreSQLParser.KW_VALUE: - case PostgreSQLParser.KW_SUBSCRIPTION: - case PostgreSQLParser.KW_PUBLICATION: - case PostgreSQLParser.KW_OUT: - case PostgreSQLParser.KW_ROUTINES: - case PostgreSQLParser.KW_SCHEMAS: - case PostgreSQLParser.KW_PROCEDURES: - case PostgreSQLParser.KW_INPUT: - case PostgreSQLParser.KW_SUPPORT: - case PostgreSQLParser.KW_PARALLEL: - case PostgreSQLParser.KW_SQL: - case PostgreSQLParser.KW_DEPENDS: - case PostgreSQLParser.KW_OVERRIDING: - case PostgreSQLParser.KW_CONFLICT: - case PostgreSQLParser.KW_SKIP: - case PostgreSQLParser.KW_LOCKED: - case PostgreSQLParser.KW_TIES: - case PostgreSQLParser.KW_ROLLUP: - case PostgreSQLParser.KW_CUBE: - case PostgreSQLParser.KW_GROUPING: - case PostgreSQLParser.KW_SETS: - case PostgreSQLParser.KW_ORDINALITY: - case PostgreSQLParser.KW_XMLTABLE: - case PostgreSQLParser.KW_COLUMNS: - case PostgreSQLParser.KW_XMLNAMESPACES: - case PostgreSQLParser.KW_ROWTYPE: - case PostgreSQLParser.KW_NORMALIZED: - case PostgreSQLParser.KW_WITHIN: - case PostgreSQLParser.KW_FILTER: - case PostgreSQLParser.KW_GROUPS: - case PostgreSQLParser.KW_OTHERS: - case PostgreSQLParser.KW_NFC: - case PostgreSQLParser.KW_NFD: - case PostgreSQLParser.KW_NFKC: - case PostgreSQLParser.KW_NFKD: - case PostgreSQLParser.KW_UESCAPE: - case PostgreSQLParser.KW_VIEWS: - case PostgreSQLParser.KW_NORMALIZE: - case PostgreSQLParser.KW_DUMP: - case PostgreSQLParser.KW_PRINT_STRICT_PARAMS: - case PostgreSQLParser.KW_VARIABLE_CONFLICT: - case PostgreSQLParser.KW_ERROR: - case PostgreSQLParser.KW_USE_VARIABLE: - case PostgreSQLParser.KW_USE_COLUMN: - case PostgreSQLParser.KW_ALIAS: - case PostgreSQLParser.KW_CONSTANT: - case PostgreSQLParser.KW_PERFORM: - case PostgreSQLParser.KW_GET: - case PostgreSQLParser.KW_DIAGNOSTICS: - case PostgreSQLParser.KW_STACKED: - case PostgreSQLParser.KW_ELSIF: - case PostgreSQLParser.KW_REVERSE: - case PostgreSQLParser.KW_SLICE: - case PostgreSQLParser.KW_EXIT: - case PostgreSQLParser.KW_RETURN: - case PostgreSQLParser.KW_QUERY: - case PostgreSQLParser.KW_RAISE: - case PostgreSQLParser.KW_SQLSTATE: - case PostgreSQLParser.KW_DEBUG: - case PostgreSQLParser.KW_LOG: - case PostgreSQLParser.KW_INFO: - case PostgreSQLParser.KW_NOTICE: - case PostgreSQLParser.KW_WARNING: - case PostgreSQLParser.KW_EXCEPTION: - case PostgreSQLParser.KW_ASSERT: - case PostgreSQLParser.KW_OPEN: - case PostgreSQLParser.KW_SKIP_LOCKED: - case PostgreSQLParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSQLParser.Identifier: - case PostgreSQLParser.QuotedIdentifier: - case PostgreSQLParser.UnicodeQuotedIdentifier: - case PostgreSQLParser.StringConstant: - case PostgreSQLParser.UnicodeEscapeStringConstant: - case PostgreSQLParser.BeginDollarStringConstant: - case PostgreSQLParser.PLSQLVARIABLENAME: - case PostgreSQLParser.PLSQLIDENTIFIER: - case PostgreSQLParser.EscapeStringConstant: + switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8607; + this.state = 8600; this.set_target(); - this.state = 8608; + this.state = 8601; this.match(PostgreSQLParser.EQUAL); - this.state = 8609; + this.state = 8602; this.a_expr(); } break; - case PostgreSQLParser.OPEN_PAREN: + case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8611; + this.state = 8604; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8612; + this.state = 8605; this.set_target_list(); - this.state = 8613; + this.state = 8606; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8614; + this.state = 8607; this.match(PostgreSQLParser.EQUAL); - this.state = 8623; + this.state = 8616; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 825, this.context) ) { case 1: { - this.state = 8616; + this.state = 8609; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 828, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 824, this.context) ) { case 1: { - this.state = 8615; + this.state = 8608; this.match(PostgreSQLParser.KW_ROW); } break; } - this.state = 8618; + this.state = 8611; this.a_expr(); } break; case 2: { - this.state = 8619; + this.state = 8612; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8620; + this.state = 8613; this.select_clause(); - this.state = 8621; + this.state = 8614; this.match(PostgreSQLParser.CLOSE_PAREN); } break; } } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -42139,13 +41315,13 @@ export class PostgreSQLParser extends antlr.Parser { } public set_target(): Set_targetContext { let localContext = new Set_targetContext(this.context, this.state); - this.enterRule(localContext, 986, PostgreSQLParser.RULE_set_target); + this.enterRule(localContext, 988, PostgreSQLParser.RULE_set_target); try { this.enterOuterAlt(localContext, 1); { - this.state = 8627; + this.state = 8620; this.column_name(); - this.state = 8628; + this.state = 8621; this.opt_indirection(); } } @@ -42165,26 +41341,26 @@ export class PostgreSQLParser extends antlr.Parser { } public set_target_list(): Set_target_listContext { let localContext = new Set_target_listContext(this.context, this.state); - this.enterRule(localContext, 988, PostgreSQLParser.RULE_set_target_list); + this.enterRule(localContext, 990, PostgreSQLParser.RULE_set_target_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8630; + this.state = 8623; this.set_target(); - this.state = 8635; + this.state = 8628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8631; + this.state = 8624; this.match(PostgreSQLParser.COMMA); - this.state = 8632; + this.state = 8625; this.set_target(); } } - this.state = 8637; + this.state = 8630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42206,23 +41382,23 @@ export class PostgreSQLParser extends antlr.Parser { } public declarecursorstmt(): DeclarecursorstmtContext { let localContext = new DeclarecursorstmtContext(this.context, this.state); - this.enterRule(localContext, 990, PostgreSQLParser.RULE_declarecursorstmt); + this.enterRule(localContext, 992, PostgreSQLParser.RULE_declarecursorstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8638; + this.state = 8631; this.match(PostgreSQLParser.KW_DECLARE); - this.state = 8639; + this.state = 8632; this.cursor_name(); - this.state = 8640; + this.state = 8633; this.cursor_options(); - this.state = 8641; + this.state = 8634; this.match(PostgreSQLParser.KW_CURSOR); - this.state = 8642; + this.state = 8635; this.opt_hold(); - this.state = 8643; + this.state = 8636; this.match(PostgreSQLParser.KW_FOR); - this.state = 8644; + this.state = 8637; this.selectstmt(); } } @@ -42242,11 +41418,11 @@ export class PostgreSQLParser extends antlr.Parser { } public cursor_name(): Cursor_nameContext { let localContext = new Cursor_nameContext(this.context, this.state); - this.enterRule(localContext, 992, PostgreSQLParser.RULE_cursor_name); + this.enterRule(localContext, 994, PostgreSQLParser.RULE_cursor_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 8646; + this.state = 8639; this.name(); } } @@ -42266,42 +41442,42 @@ export class PostgreSQLParser extends antlr.Parser { } public cursor_options(): Cursor_optionsContext { let localContext = new Cursor_optionsContext(this.context, this.state); - this.enterRule(localContext, 994, PostgreSQLParser.RULE_cursor_options); + this.enterRule(localContext, 996, PostgreSQLParser.RULE_cursor_options); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8655; + this.state = 8648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 107 || _la === 240 || _la === 269 || _la === 324) { { - this.state = 8653; + this.state = 8646; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NO: { - this.state = 8648; + this.state = 8641; this.match(PostgreSQLParser.KW_NO); - this.state = 8649; + this.state = 8642; this.match(PostgreSQLParser.KW_SCROLL); } break; case PostgreSQLParser.KW_SCROLL: { - this.state = 8650; + this.state = 8643; this.match(PostgreSQLParser.KW_SCROLL); } break; case PostgreSQLParser.KW_BINARY: { - this.state = 8651; + this.state = 8644; this.match(PostgreSQLParser.KW_BINARY); } break; case PostgreSQLParser.KW_INSENSITIVE: { - this.state = 8652; + this.state = 8645; this.match(PostgreSQLParser.KW_INSENSITIVE); } break; @@ -42309,7 +41485,7 @@ export class PostgreSQLParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 8657; + this.state = 8650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42331,9 +41507,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_hold(): Opt_holdContext { let localContext = new Opt_holdContext(this.context, this.state); - this.enterRule(localContext, 996, PostgreSQLParser.RULE_opt_hold); + this.enterRule(localContext, 998, PostgreSQLParser.RULE_opt_hold); try { - this.state = 8663; + this.state = 8656; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOR: @@ -42345,18 +41521,18 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_WITH: this.enterOuterAlt(localContext, 2); { - this.state = 8659; + this.state = 8652; this.match(PostgreSQLParser.KW_WITH); - this.state = 8660; + this.state = 8653; this.match(PostgreSQLParser.KW_HOLD); } break; case PostgreSQLParser.KW_WITHOUT: this.enterOuterAlt(localContext, 3); { - this.state = 8661; + this.state = 8654; this.match(PostgreSQLParser.KW_WITHOUT); - this.state = 8662; + this.state = 8655; this.match(PostgreSQLParser.KW_HOLD); } break; @@ -42380,22 +41556,24 @@ export class PostgreSQLParser extends antlr.Parser { } public selectstmt(): SelectstmtContext { let localContext = new SelectstmtContext(this.context, this.state); - this.enterRule(localContext, 998, PostgreSQLParser.RULE_selectstmt); + this.enterRule(localContext, 1000, PostgreSQLParser.RULE_selectstmt); try { - this.state = 8667; + this.state = 8660; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 835, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 831, this.context) ) { case 1: + localContext = new SelectStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 8665; + this.state = 8658; this.select_no_parens(); } break; case 2: + localContext = new SelectStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 8666; + this.state = 8659; this.select_with_parens(); } break; @@ -42417,30 +41595,30 @@ export class PostgreSQLParser extends antlr.Parser { } public select_with_parens(): Select_with_parensContext { let localContext = new Select_with_parensContext(this.context, this.state); - this.enterRule(localContext, 1000, PostgreSQLParser.RULE_select_with_parens); + this.enterRule(localContext, 1002, PostgreSQLParser.RULE_select_with_parens); try { - this.state = 8677; + this.state = 8670; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 832, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8669; + this.state = 8662; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8670; + this.state = 8663; this.select_no_parens(); - this.state = 8671; + this.state = 8664; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8673; + this.state = 8666; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8674; + this.state = 8667; this.select_with_parens(); - this.state = 8675; + this.state = 8668; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -42462,10 +41640,10 @@ export class PostgreSQLParser extends antlr.Parser { } public select_no_parens(): Select_no_parensContext { let localContext = new Select_no_parensContext(this.context, this.state); - this.enterRule(localContext, 1002, PostgreSQLParser.RULE_select_no_parens); + this.enterRule(localContext, 1004, PostgreSQLParser.RULE_select_no_parens); let _la: number; try { - this.state = 8708; + this.state = 8701; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -42474,31 +41652,31 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 8679; + this.state = 8672; this.select_clause(); - this.state = 8681; + this.state = 8674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 8680; + this.state = 8673; this.opt_sort_clause(); } } - this.state = 8691; + this.state = 8684; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { case 1: { - this.state = 8683; + this.state = 8676; this.for_locking_clause(); - this.state = 8685; + this.state = 8678; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { case 1: { - this.state = 8684; + this.state = 8677; this.opt_select_limit(); } break; @@ -42507,14 +41685,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 8687; + this.state = 8680; this.select_limit(); - this.state = 8689; + this.state = 8682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 8688; + this.state = 8681; this.opt_for_locking_clause(); } } @@ -42527,33 +41705,33 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_WITH: this.enterOuterAlt(localContext, 2); { - this.state = 8693; + this.state = 8686; this.with_clause(); - this.state = 8694; + this.state = 8687; this.select_clause(); - this.state = 8696; + this.state = 8689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 8695; + this.state = 8688; this.opt_sort_clause(); } } - this.state = 8706; + this.state = 8699; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 844, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { case 1: { - this.state = 8698; + this.state = 8691; this.for_locking_clause(); - this.state = 8700; + this.state = 8693; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 842, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { case 1: { - this.state = 8699; + this.state = 8692; this.opt_select_limit(); } break; @@ -42562,14 +41740,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 8702; + this.state = 8695; this.select_limit(); - this.state = 8704; + this.state = 8697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 8703; + this.state = 8696; this.opt_for_locking_clause(); } } @@ -42599,22 +41777,22 @@ export class PostgreSQLParser extends antlr.Parser { } public select_clause(): Select_clauseContext { let localContext = new Select_clauseContext(this.context, this.state); - this.enterRule(localContext, 1004, PostgreSQLParser.RULE_select_clause); + this.enterRule(localContext, 1006, PostgreSQLParser.RULE_select_clause); try { - this.state = 8712; + this.state = 8705; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 846, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 842, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8710; + this.state = 8703; this.simple_select(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8711; + this.state = 8704; this.select_with_parens(); } break; @@ -42636,50 +41814,50 @@ export class PostgreSQLParser extends antlr.Parser { } public simple_select(): Simple_selectContext { let localContext = new Simple_selectContext(this.context, this.state); - this.enterRule(localContext, 1006, PostgreSQLParser.RULE_simple_select); + this.enterRule(localContext, 1008, PostgreSQLParser.RULE_simple_select); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8759; + this.state = 8752; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SELECT: { - this.state = 8714; + this.state = 8707; this.match(PostgreSQLParser.KW_SELECT); - this.state = 8730; + this.state = 8723; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { case 1: { - this.state = 8716; + this.state = 8709; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 30) { - { - this.state = 8715; - this.opt_all_clause(); - } - } - - this.state = 8719; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 843, this.context) ) { case 1: { - this.state = 8718; + this.state = 8708; + this.opt_all_clause(); + } + break; + } + this.state = 8712; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 844, this.context) ) { + case 1: + { + this.state = 8711; this.into_clause(); } break; } - this.state = 8722; + this.state = 8715; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 845, this.context) ) { case 1: { - this.state = 8721; + this.state = 8714; this.opt_target_list(); } break; @@ -42688,22 +41866,22 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 8725; + this.state = 8718; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 56) { - { - this.state = 8724; - this.distinct_clause(); - } - } - - this.state = 8728; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 851, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 846, this.context) ) { case 1: { - this.state = 8727; + this.state = 8717; + this.distinct_clause(); + } + break; + } + this.state = 8721; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { + case 1: + { + this.state = 8720; this.target_list(); } break; @@ -42711,62 +41889,62 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 8733; + this.state = 8726; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 853, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { case 1: { - this.state = 8732; + this.state = 8725; this.into_clause(); } break; } - this.state = 8736; + this.state = 8729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8735; + this.state = 8728; this.from_clause(); } } - this.state = 8739; + this.state = 8732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8738; + this.state = 8731; this.where_clause(); } } - this.state = 8742; + this.state = 8735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 8741; + this.state = 8734; this.group_clause(); } } - this.state = 8745; + this.state = 8738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 8744; + this.state = 8737; this.having_clause(); } } - this.state = 8748; + this.state = 8741; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 858, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 854, this.context) ) { case 1: { - this.state = 8747; + this.state = 8740; this.window_clause(); } break; @@ -42775,36 +41953,36 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_VALUES: { - this.state = 8750; + this.state = 8743; this.values_clause(); } break; case PostgreSQLParser.KW_TABLE: { - this.state = 8751; + this.state = 8744; this.match(PostgreSQLParser.KW_TABLE); - this.state = 8752; + this.state = 8745; this.relation_expr(); } break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 8753; + this.state = 8746; this.select_with_parens(); - this.state = 8754; + this.state = 8747; this.set_operator_with_all_or_distinct(); - this.state = 8757; + this.state = 8750; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 855, this.context) ) { case 1: { - this.state = 8755; + this.state = 8748; this.simple_select(); } break; case 2: { - this.state = 8756; + this.state = 8749; this.select_with_parens(); } break; @@ -42814,27 +41992,27 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 8768; + this.state = 8761; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 862, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 858, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8761; + this.state = 8754; this.set_operator_with_all_or_distinct(); - this.state = 8764; + this.state = 8757; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 857, this.context) ) { case 1: { - this.state = 8762; + this.state = 8755; this.simple_select(); } break; case 2: { - this.state = 8763; + this.state = 8756; this.select_with_parens(); } break; @@ -42842,9 +42020,9 @@ export class PostgreSQLParser extends antlr.Parser { } } } - this.state = 8770; + this.state = 8763; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 862, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 858, this.context); } } } @@ -42864,16 +42042,16 @@ export class PostgreSQLParser extends antlr.Parser { } public set_operator(): Set_operatorContext { let localContext = new Set_operatorContext(this.context, this.state); - this.enterRule(localContext, 1008, PostgreSQLParser.RULE_set_operator); + this.enterRule(localContext, 1010, PostgreSQLParser.RULE_set_operator); try { - this.state = 8774; + this.state = 8767; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_UNION: localContext = new UnionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 8771; + this.state = 8764; this.match(PostgreSQLParser.KW_UNION); } break; @@ -42881,7 +42059,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new IntersectContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 8772; + this.state = 8765; this.match(PostgreSQLParser.KW_INTERSECT); } break; @@ -42889,7 +42067,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new ExceptContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 8773; + this.state = 8766; this.match(PostgreSQLParser.KW_EXCEPT); } break; @@ -42913,19 +42091,19 @@ export class PostgreSQLParser extends antlr.Parser { } public set_operator_with_all_or_distinct(): Set_operator_with_all_or_distinctContext { let localContext = new Set_operator_with_all_or_distinctContext(this.context, this.state); - this.enterRule(localContext, 1010, PostgreSQLParser.RULE_set_operator_with_all_or_distinct); + this.enterRule(localContext, 1012, PostgreSQLParser.RULE_set_operator_with_all_or_distinct); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8776; + this.state = 8769; this.set_operator(); - this.state = 8778; + this.state = 8771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 56) { { - this.state = 8777; + this.state = 8770; this.all_or_distinct(); } } @@ -42948,23 +42126,23 @@ export class PostgreSQLParser extends antlr.Parser { } public with_clause(): With_clauseContext { let localContext = new With_clauseContext(this.context, this.state); - this.enterRule(localContext, 1012, PostgreSQLParser.RULE_with_clause); + this.enterRule(localContext, 1014, PostgreSQLParser.RULE_with_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8780; + this.state = 8773; this.match(PostgreSQLParser.KW_WITH); - this.state = 8782; + this.state = 8775; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 865, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { case 1: { - this.state = 8781; + this.state = 8774; this.match(PostgreSQLParser.KW_RECURSIVE); } break; } - this.state = 8784; + this.state = 8777; this.cte_list(); } } @@ -42984,30 +42162,30 @@ export class PostgreSQLParser extends antlr.Parser { } public cte_list(): Cte_listContext { let localContext = new Cte_listContext(this.context, this.state); - this.enterRule(localContext, 1014, PostgreSQLParser.RULE_cte_list); + this.enterRule(localContext, 1016, PostgreSQLParser.RULE_cte_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8786; + this.state = 8779; this.common_table_expr(); - this.state = 8791; + this.state = 8784; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 866, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 862, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8787; + this.state = 8780; this.match(PostgreSQLParser.COMMA); - this.state = 8788; + this.state = 8781; this.common_table_expr(); } } } - this.state = 8793; + this.state = 8786; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 866, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 862, this.context); } } } @@ -43027,57 +42205,57 @@ export class PostgreSQLParser extends antlr.Parser { } public common_table_expr(): Common_table_exprContext { let localContext = new Common_table_exprContext(this.context, this.state); - this.enterRule(localContext, 1016, PostgreSQLParser.RULE_common_table_expr); + this.enterRule(localContext, 1018, PostgreSQLParser.RULE_common_table_expr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8794; + this.state = 8787; this.name(); - this.state = 8796; + this.state = 8789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8795; + this.state = 8788; this.opt_name_list(); } } - this.state = 8798; + this.state = 8791; this.match(PostgreSQLParser.KW_AS); - this.state = 8800; + this.state = 8793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77 || _la === 259) { { - this.state = 8799; + this.state = 8792; this.opt_materialized(); } } - this.state = 8802; + this.state = 8795; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8803; + this.state = 8796; this.preparablestmt(); - this.state = 8804; + this.state = 8797; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8806; + this.state = 8799; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 869, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 865, this.context) ) { case 1: { - this.state = 8805; + this.state = 8798; this.search_cluase(); } break; } - this.state = 8809; + this.state = 8802; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 870, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { case 1: { - this.state = 8808; + this.state = 8801; this.cycle_cluase(); } break; @@ -43100,14 +42278,14 @@ export class PostgreSQLParser extends antlr.Parser { } public search_cluase(): Search_cluaseContext { let localContext = new Search_cluaseContext(this.context, this.state); - this.enterRule(localContext, 1018, PostgreSQLParser.RULE_search_cluase); + this.enterRule(localContext, 1020, PostgreSQLParser.RULE_search_cluase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8811; + this.state = 8804; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8812; + this.state = 8805; _la = this.tokenStream.LA(1); if(!(_la === 527 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -43116,15 +42294,15 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8813; + this.state = 8806; this.match(PostgreSQLParser.KW_FIRST); - this.state = 8814; + this.state = 8807; this.match(PostgreSQLParser.KW_BY); - this.state = 8815; - this.columnlist(); - this.state = 8816; + this.state = 8808; + this.column_list(); + this.state = 8809; this.match(PostgreSQLParser.KW_SET); - this.state = 8817; + this.state = 8810; this.column_name(); } } @@ -43144,38 +42322,38 @@ export class PostgreSQLParser extends antlr.Parser { } public cycle_cluase(): Cycle_cluaseContext { let localContext = new Cycle_cluaseContext(this.context, this.state); - this.enterRule(localContext, 1020, PostgreSQLParser.RULE_cycle_cluase); + this.enterRule(localContext, 1022, PostgreSQLParser.RULE_cycle_cluase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8819; + this.state = 8812; this.match(PostgreSQLParser.KW_CYCLE); - this.state = 8820; - this.columnlist(); - this.state = 8821; + this.state = 8813; + this.column_list(); + this.state = 8814; this.match(PostgreSQLParser.KW_SET); - this.state = 8822; + this.state = 8815; this.column_name(); - this.state = 8828; + this.state = 8821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 8823; + this.state = 8816; this.match(PostgreSQLParser.KW_TO); - this.state = 8824; + this.state = 8817; this.name(); - this.state = 8825; + this.state = 8818; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 8826; + this.state = 8819; this.name(); } } - this.state = 8830; + this.state = 8823; this.match(PostgreSQLParser.KW_USING); - this.state = 8831; + this.state = 8824; this.column_name(); } } @@ -43195,24 +42373,24 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_materialized(): Opt_materializedContext { let localContext = new Opt_materializedContext(this.context, this.state); - this.enterRule(localContext, 1022, PostgreSQLParser.RULE_opt_materialized); + this.enterRule(localContext, 1024, PostgreSQLParser.RULE_opt_materialized); try { - this.state = 8836; + this.state = 8829; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_MATERIALIZED: this.enterOuterAlt(localContext, 1); { - this.state = 8833; + this.state = 8826; this.match(PostgreSQLParser.KW_MATERIALIZED); } break; case PostgreSQLParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 8834; + this.state = 8827; this.match(PostgreSQLParser.KW_NOT); - this.state = 8835; + this.state = 8828; this.match(PostgreSQLParser.KW_MATERIALIZED); } break; @@ -43236,11 +42414,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_with_clause(): Opt_with_clauseContext { let localContext = new Opt_with_clauseContext(this.context, this.state); - this.enterRule(localContext, 1024, PostgreSQLParser.RULE_opt_with_clause); + this.enterRule(localContext, 1026, PostgreSQLParser.RULE_opt_with_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8838; + this.state = 8831; this.with_clause(); } } @@ -43260,26 +42438,26 @@ export class PostgreSQLParser extends antlr.Parser { } public into_clause(): Into_clauseContext { let localContext = new Into_clauseContext(this.context, this.state); - this.enterRule(localContext, 1026, PostgreSQLParser.RULE_into_clause); + this.enterRule(localContext, 1028, PostgreSQLParser.RULE_into_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8840; + this.state = 8833; this.match(PostgreSQLParser.KW_INTO); - this.state = 8845; + this.state = 8838; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 873, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 869, this.context) ) { case 1: { - this.state = 8841; + this.state = 8834; this.opt_strict(); - this.state = 8842; + this.state = 8835; this.opttempTableName(); } break; case 2: { - this.state = 8844; + this.state = 8837; this.into_target(); } break; @@ -43302,11 +42480,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_strict(): Opt_strictContext { let localContext = new Opt_strictContext(this.context, this.state); - this.enterRule(localContext, 1028, PostgreSQLParser.RULE_opt_strict); + this.enterRule(localContext, 1030, PostgreSQLParser.RULE_opt_strict); try { - this.state = 8849; + this.state = 8842; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 874, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 870, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -43316,7 +42494,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8848; + this.state = 8841; this.match(PostgreSQLParser.KW_STRICT); } break; @@ -43338,21 +42516,21 @@ export class PostgreSQLParser extends antlr.Parser { } public opttempTableName(): OpttempTableNameContext { let localContext = new OpttempTableNameContext(this.context, this.state); - this.enterRule(localContext, 1030, PostgreSQLParser.RULE_opttempTableName); + this.enterRule(localContext, 1032, PostgreSQLParser.RULE_opttempTableName); let _la: number; try { - this.state = 8867; + this.state = 8860; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 878, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 874, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8852; + this.state = 8845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254) { { - this.state = 8851; + this.state = 8844; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -43364,7 +42542,7 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 8854; + this.state = 8847; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -43373,52 +42551,52 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8856; + this.state = 8849; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 876, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 872, this.context) ) { case 1: { - this.state = 8855; + this.state = 8848; this.opt_table(); } break; } - this.state = 8858; + this.state = 8851; this.table_name_create(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8859; + this.state = 8852; this.match(PostgreSQLParser.KW_UNLOGGED); - this.state = 8861; + this.state = 8854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 877, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 873, this.context) ) { case 1: { - this.state = 8860; + this.state = 8853; this.opt_table(); } break; } - this.state = 8863; + this.state = 8856; this.table_name_create(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8864; + this.state = 8857; this.match(PostgreSQLParser.KW_TABLE); - this.state = 8865; + this.state = 8858; this.table_name_create(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8866; + this.state = 8859; this.table_name_create(); } break; @@ -43440,11 +42618,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_table(): Opt_tableContext { let localContext = new Opt_tableContext(this.context, this.state); - this.enterRule(localContext, 1032, PostgreSQLParser.RULE_opt_table); + this.enterRule(localContext, 1034, PostgreSQLParser.RULE_opt_table); try { this.enterOuterAlt(localContext, 1); { - this.state = 8869; + this.state = 8862; this.match(PostgreSQLParser.KW_TABLE); } } @@ -43464,12 +42642,12 @@ export class PostgreSQLParser extends antlr.Parser { } public all_or_distinct(): All_or_distinctContext { let localContext = new All_or_distinctContext(this.context, this.state); - this.enterRule(localContext, 1034, PostgreSQLParser.RULE_all_or_distinct); + this.enterRule(localContext, 1036, PostgreSQLParser.RULE_all_or_distinct); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8871; + this.state = 8864; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -43496,24 +42674,24 @@ export class PostgreSQLParser extends antlr.Parser { } public distinct_clause(): Distinct_clauseContext { let localContext = new Distinct_clauseContext(this.context, this.state); - this.enterRule(localContext, 1036, PostgreSQLParser.RULE_distinct_clause); + this.enterRule(localContext, 1038, PostgreSQLParser.RULE_distinct_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8873; + this.state = 8866; this.match(PostgreSQLParser.KW_DISTINCT); - this.state = 8879; + this.state = 8872; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 879, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 875, this.context) ) { case 1: { - this.state = 8874; + this.state = 8867; this.match(PostgreSQLParser.KW_ON); - this.state = 8875; + this.state = 8868; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8876; + this.state = 8869; this.expr_list(); - this.state = 8877; + this.state = 8870; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -43536,11 +42714,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_all_clause(): Opt_all_clauseContext { let localContext = new Opt_all_clauseContext(this.context, this.state); - this.enterRule(localContext, 1038, PostgreSQLParser.RULE_opt_all_clause); + this.enterRule(localContext, 1040, PostgreSQLParser.RULE_opt_all_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8881; + this.state = 8874; this.match(PostgreSQLParser.KW_ALL); } } @@ -43560,11 +42738,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_sort_clause(): Opt_sort_clauseContext { let localContext = new Opt_sort_clauseContext(this.context, this.state); - this.enterRule(localContext, 1040, PostgreSQLParser.RULE_opt_sort_clause); + this.enterRule(localContext, 1042, PostgreSQLParser.RULE_opt_sort_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8883; + this.state = 8876; this.sort_clause(); } } @@ -43584,15 +42762,15 @@ export class PostgreSQLParser extends antlr.Parser { } public sort_clause(): Sort_clauseContext { let localContext = new Sort_clauseContext(this.context, this.state); - this.enterRule(localContext, 1042, PostgreSQLParser.RULE_sort_clause); + this.enterRule(localContext, 1044, PostgreSQLParser.RULE_sort_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8885; + this.state = 8878; this.match(PostgreSQLParser.KW_ORDER); - this.state = 8886; + this.state = 8879; this.match(PostgreSQLParser.KW_BY); - this.state = 8887; + this.state = 8880; this.sortby_list(); } } @@ -43612,26 +42790,26 @@ export class PostgreSQLParser extends antlr.Parser { } public sortby_list(): Sortby_listContext { let localContext = new Sortby_listContext(this.context, this.state); - this.enterRule(localContext, 1044, PostgreSQLParser.RULE_sortby_list); + this.enterRule(localContext, 1046, PostgreSQLParser.RULE_sortby_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8889; + this.state = 8882; this.sortby(); - this.state = 8894; + this.state = 8887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8890; + this.state = 8883; this.match(PostgreSQLParser.COMMA); - this.state = 8891; + this.state = 8884; this.sortby(); } } - this.state = 8896; + this.state = 8889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43653,465 +42831,36 @@ export class PostgreSQLParser extends antlr.Parser { } public sortby(): SortbyContext { let localContext = new SortbyContext(this.context, this.state); - this.enterRule(localContext, 1046, PostgreSQLParser.RULE_sortby); + this.enterRule(localContext, 1048, PostgreSQLParser.RULE_sortby); try { this.enterOuterAlt(localContext, 1); { - this.state = 8897; + this.state = 8890; this.column_expr_noparen(); - this.state = 8901; + this.state = 8894; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSQLParser.KW_USING: + switch (this.interpreter.adaptivePredict(this.tokenStream, 877, this.context) ) { + case 1: { - this.state = 8898; + this.state = 8891; this.match(PostgreSQLParser.KW_USING); - this.state = 8899; + this.state = 8892; this.qual_all_op(); } break; - case PostgreSQLParser.KW_ASC: - case PostgreSQLParser.KW_DESC: + case 2: { - this.state = 8900; + this.state = 8893; this.opt_asc_desc(); } break; - case PostgreSQLParser.EOF: - case PostgreSQLParser.OPEN_PAREN: - case PostgreSQLParser.CLOSE_PAREN: - case PostgreSQLParser.COMMA: - case PostgreSQLParser.SEMI: - case PostgreSQLParser.KW_ANALYSE: - case PostgreSQLParser.KW_ANALYZE: - case PostgreSQLParser.KW_AND: - case PostgreSQLParser.KW_ARRAY: - case PostgreSQLParser.KW_AS: - case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_CONSTRAINT: - case PostgreSQLParser.KW_CREATE: - case PostgreSQLParser.KW_DEFAULT: - case PostgreSQLParser.KW_DO: - case PostgreSQLParser.KW_FETCH: - case PostgreSQLParser.KW_FOR: - case PostgreSQLParser.KW_GRANT: - case PostgreSQLParser.KW_INTO: - case PostgreSQLParser.KW_LIMIT: - case PostgreSQLParser.KW_NOT: - case PostgreSQLParser.KW_OFFSET: - case PostgreSQLParser.KW_ON: - case PostgreSQLParser.KW_RETURNING: - case PostgreSQLParser.KW_SELECT: - case PostgreSQLParser.KW_TABLE: - case PostgreSQLParser.KW_WHEN: - case PostgreSQLParser.KW_WINDOW: - case PostgreSQLParser.KW_WITH: - case PostgreSQLParser.KW_IS: - case PostgreSQLParser.KW_OUTER: - case PostgreSQLParser.KW_OVER: - case PostgreSQLParser.KW_ABORT: - case PostgreSQLParser.KW_ABSOLUTE: - case PostgreSQLParser.KW_ACCESS: - case PostgreSQLParser.KW_ACTION: - case PostgreSQLParser.KW_ADD: - case PostgreSQLParser.KW_ADMIN: - case PostgreSQLParser.KW_AFTER: - case PostgreSQLParser.KW_AGGREGATE: - case PostgreSQLParser.KW_ALSO: - case PostgreSQLParser.KW_ALTER: - case PostgreSQLParser.KW_ALWAYS: - case PostgreSQLParser.KW_ASSERTION: - case PostgreSQLParser.KW_ASSIGNMENT: - case PostgreSQLParser.KW_AT: - case PostgreSQLParser.KW_ATTRIBUTE: - case PostgreSQLParser.KW_BACKWARD: - case PostgreSQLParser.KW_BEFORE: - case PostgreSQLParser.KW_BEGIN: - case PostgreSQLParser.KW_BY: - case PostgreSQLParser.KW_CACHE: - case PostgreSQLParser.KW_CALLED: - case PostgreSQLParser.KW_CASCADE: - case PostgreSQLParser.KW_CASCADED: - case PostgreSQLParser.KW_CATALOG: - case PostgreSQLParser.KW_CHAIN: - case PostgreSQLParser.KW_CHARACTERISTICS: - case PostgreSQLParser.KW_CHECKPOINT: - case PostgreSQLParser.KW_CLASS: - case PostgreSQLParser.KW_CLOSE: - case PostgreSQLParser.KW_CLUSTER: - case PostgreSQLParser.KW_COMMENT: - case PostgreSQLParser.KW_COMMENTS: - case PostgreSQLParser.KW_COMMIT: - case PostgreSQLParser.KW_COMMITTED: - case PostgreSQLParser.KW_CONFIGURATION: - case PostgreSQLParser.KW_CONNECTION: - case PostgreSQLParser.KW_CONSTRAINTS: - case PostgreSQLParser.KW_CONTENT: - case PostgreSQLParser.KW_CONTINUE: - case PostgreSQLParser.KW_CONVERSION: - case PostgreSQLParser.KW_COPY: - case PostgreSQLParser.KW_COST: - case PostgreSQLParser.KW_CSV: - case PostgreSQLParser.KW_CURSOR: - case PostgreSQLParser.KW_CYCLE: - case PostgreSQLParser.KW_DATA: - case PostgreSQLParser.KW_DATABASE: - case PostgreSQLParser.KW_DAY: - case PostgreSQLParser.KW_DEALLOCATE: - case PostgreSQLParser.KW_DECLARE: - case PostgreSQLParser.KW_DEFAULTS: - case PostgreSQLParser.KW_DEFERRED: - case PostgreSQLParser.KW_DEFINER: - case PostgreSQLParser.KW_DELETE: - case PostgreSQLParser.KW_DELIMITER: - case PostgreSQLParser.KW_DELIMITERS: - case PostgreSQLParser.KW_DICTIONARY: - case PostgreSQLParser.KW_DISABLE: - case PostgreSQLParser.KW_DISCARD: - case PostgreSQLParser.KW_DOCUMENT: - case PostgreSQLParser.KW_DOMAIN: - case PostgreSQLParser.KW_DOUBLE: - case PostgreSQLParser.KW_DROP: - case PostgreSQLParser.KW_EACH: - case PostgreSQLParser.KW_ENABLE: - case PostgreSQLParser.KW_ENCODING: - case PostgreSQLParser.KW_ENCRYPTED: - case PostgreSQLParser.KW_ENUM: - case PostgreSQLParser.KW_ESCAPE: - case PostgreSQLParser.KW_EVENT: - case PostgreSQLParser.KW_EXCLUDE: - case PostgreSQLParser.KW_EXCLUDING: - case PostgreSQLParser.KW_EXCLUSIVE: - case PostgreSQLParser.KW_EXECUTE: - case PostgreSQLParser.KW_EXPLAIN: - case PostgreSQLParser.KW_EXTENSION: - case PostgreSQLParser.KW_EXTERNAL: - case PostgreSQLParser.KW_FAMILY: - case PostgreSQLParser.KW_FIRST: - case PostgreSQLParser.KW_FOLLOWING: - case PostgreSQLParser.KW_FORCE: - case PostgreSQLParser.KW_FORWARD: - case PostgreSQLParser.KW_FUNCTION: - case PostgreSQLParser.KW_FUNCTIONS: - case PostgreSQLParser.KW_GLOBAL: - case PostgreSQLParser.KW_GRANTED: - case PostgreSQLParser.KW_HANDLER: - case PostgreSQLParser.KW_HEADER: - case PostgreSQLParser.KW_HOLD: - case PostgreSQLParser.KW_HOUR: - case PostgreSQLParser.KW_IDENTITY: - case PostgreSQLParser.KW_IF: - case PostgreSQLParser.KW_IMMEDIATE: - case PostgreSQLParser.KW_IMMUTABLE: - case PostgreSQLParser.KW_IMPLICIT: - case PostgreSQLParser.KW_INCLUDING: - case PostgreSQLParser.KW_INCREMENT: - case PostgreSQLParser.KW_INDEX: - case PostgreSQLParser.KW_INDEXES: - case PostgreSQLParser.KW_INHERIT: - case PostgreSQLParser.KW_INHERITS: - case PostgreSQLParser.KW_INLINE: - case PostgreSQLParser.KW_INSENSITIVE: - case PostgreSQLParser.KW_INSERT: - case PostgreSQLParser.KW_INSTEAD: - case PostgreSQLParser.KW_INVOKER: - case PostgreSQLParser.KW_ISOLATION: - case PostgreSQLParser.KW_KEY: - case PostgreSQLParser.KW_LABEL: - case PostgreSQLParser.KW_LANGUAGE: - case PostgreSQLParser.KW_LARGE: - case PostgreSQLParser.KW_LAST: - case PostgreSQLParser.KW_LEAKPROOF: - case PostgreSQLParser.KW_LEVEL: - case PostgreSQLParser.KW_LISTEN: - case PostgreSQLParser.KW_LOAD: - case PostgreSQLParser.KW_LOCAL: - case PostgreSQLParser.KW_LOCATION: - case PostgreSQLParser.KW_LOCK: - case PostgreSQLParser.KW_MAPPING: - case PostgreSQLParser.KW_MATCH: - case PostgreSQLParser.KW_MATERIALIZED: - case PostgreSQLParser.KW_MAXVALUE: - case PostgreSQLParser.KW_MINUTE: - case PostgreSQLParser.KW_MINVALUE: - case PostgreSQLParser.KW_MODE: - case PostgreSQLParser.KW_MONTH: - case PostgreSQLParser.KW_MOVE: - case PostgreSQLParser.KW_NAME: - case PostgreSQLParser.KW_NAMES: - case PostgreSQLParser.KW_NEXT: - case PostgreSQLParser.KW_NO: - case PostgreSQLParser.KW_NOTHING: - case PostgreSQLParser.KW_NOTIFY: - case PostgreSQLParser.KW_NOWAIT: - case PostgreSQLParser.KW_NULLS: - case PostgreSQLParser.KW_OBJECT: - case PostgreSQLParser.KW_OF: - case PostgreSQLParser.KW_OFF: - case PostgreSQLParser.KW_OIDS: - case PostgreSQLParser.KW_OPERATOR: - case PostgreSQLParser.KW_OPTION: - case PostgreSQLParser.KW_OPTIONS: - case PostgreSQLParser.KW_OWNED: - case PostgreSQLParser.KW_OWNER: - case PostgreSQLParser.KW_PARSER: - case PostgreSQLParser.KW_PARTIAL: - case PostgreSQLParser.KW_PARTITION: - case PostgreSQLParser.KW_PASSING: - case PostgreSQLParser.KW_PASSWORD: - case PostgreSQLParser.KW_PLANS: - case PostgreSQLParser.KW_PRECEDING: - case PostgreSQLParser.KW_PREPARE: - case PostgreSQLParser.KW_PREPARED: - case PostgreSQLParser.KW_PRESERVE: - case PostgreSQLParser.KW_PRIOR: - case PostgreSQLParser.KW_PRIVILEGES: - case PostgreSQLParser.KW_PROCEDURAL: - case PostgreSQLParser.KW_PROCEDURE: - case PostgreSQLParser.KW_PROGRAM: - case PostgreSQLParser.KW_QUOTE: - case PostgreSQLParser.KW_RANGE: - case PostgreSQLParser.KW_READ: - case PostgreSQLParser.KW_REASSIGN: - case PostgreSQLParser.KW_RECHECK: - case PostgreSQLParser.KW_RECURSIVE: - case PostgreSQLParser.KW_REF: - case PostgreSQLParser.KW_REFRESH: - case PostgreSQLParser.KW_REINDEX: - case PostgreSQLParser.KW_RELATIVE: - case PostgreSQLParser.KW_RELEASE: - case PostgreSQLParser.KW_RENAME: - case PostgreSQLParser.KW_REPEATABLE: - case PostgreSQLParser.KW_REPLACE: - case PostgreSQLParser.KW_REPLICA: - case PostgreSQLParser.KW_RESET: - case PostgreSQLParser.KW_RESTART: - case PostgreSQLParser.KW_RESTRICT: - case PostgreSQLParser.KW_RETURNS: - case PostgreSQLParser.KW_REVOKE: - case PostgreSQLParser.KW_ROLE: - case PostgreSQLParser.KW_ROLLBACK: - case PostgreSQLParser.KW_ROWS: - case PostgreSQLParser.KW_RULE: - case PostgreSQLParser.KW_SAVEPOINT: - case PostgreSQLParser.KW_SCHEMA: - case PostgreSQLParser.KW_SCROLL: - case PostgreSQLParser.KW_SEARCH: - case PostgreSQLParser.KW_SECOND: - case PostgreSQLParser.KW_SECURITY: - case PostgreSQLParser.KW_SEQUENCE: - case PostgreSQLParser.KW_SEQUENCES: - case PostgreSQLParser.KW_SERIALIZABLE: - case PostgreSQLParser.KW_SERVER: - case PostgreSQLParser.KW_SESSION: - case PostgreSQLParser.KW_SET: - case PostgreSQLParser.KW_SHARE: - case PostgreSQLParser.KW_SHOW: - case PostgreSQLParser.KW_SIMPLE: - case PostgreSQLParser.KW_SNAPSHOT: - case PostgreSQLParser.KW_STABLE: - case PostgreSQLParser.KW_STANDALONE: - case PostgreSQLParser.KW_START: - case PostgreSQLParser.KW_STATEMENT: - case PostgreSQLParser.KW_STATISTICS: - case PostgreSQLParser.KW_STDIN: - case PostgreSQLParser.KW_STDOUT: - case PostgreSQLParser.KW_STORAGE: - case PostgreSQLParser.KW_STRICT: - case PostgreSQLParser.KW_STRIP: - case PostgreSQLParser.KW_SYSID: - case PostgreSQLParser.KW_SYSTEM: - case PostgreSQLParser.KW_TABLES: - case PostgreSQLParser.KW_TABLESPACE: - case PostgreSQLParser.KW_TEMP: - case PostgreSQLParser.KW_TEMPLATE: - case PostgreSQLParser.KW_TEMPORARY: - case PostgreSQLParser.KW_TEXT: - case PostgreSQLParser.KW_TRANSACTION: - case PostgreSQLParser.KW_TRIGGER: - case PostgreSQLParser.KW_TRUNCATE: - case PostgreSQLParser.KW_TRUSTED: - case PostgreSQLParser.KW_TYPE: - case PostgreSQLParser.KW_TYPES: - case PostgreSQLParser.KW_UNBOUNDED: - case PostgreSQLParser.KW_UNCOMMITTED: - case PostgreSQLParser.KW_UNENCRYPTED: - case PostgreSQLParser.KW_UNKNOWN: - case PostgreSQLParser.KW_UNLISTEN: - case PostgreSQLParser.KW_UNLOGGED: - case PostgreSQLParser.KW_UNTIL: - case PostgreSQLParser.KW_UPDATE: - case PostgreSQLParser.KW_VACUUM: - case PostgreSQLParser.KW_VALID: - case PostgreSQLParser.KW_VALIDATE: - case PostgreSQLParser.KW_VALIDATOR: - case PostgreSQLParser.KW_VARYING: - case PostgreSQLParser.KW_VERSION: - case PostgreSQLParser.KW_VIEW: - case PostgreSQLParser.KW_VOLATILE: - case PostgreSQLParser.KW_WHITESPACE: - case PostgreSQLParser.KW_WITHOUT: - case PostgreSQLParser.KW_WORK: - case PostgreSQLParser.KW_WRAPPER: - case PostgreSQLParser.KW_WRITE: - case PostgreSQLParser.KW_XML: - case PostgreSQLParser.KW_YEAR: - case PostgreSQLParser.KW_YES: - case PostgreSQLParser.KW_ZONE: - case PostgreSQLParser.KW_BETWEEN: - case PostgreSQLParser.KW_BIGINT: - case PostgreSQLParser.KW_BIT: - case PostgreSQLParser.KW_BOOLEAN: - case PostgreSQLParser.KW_CHAR: - case PostgreSQLParser.KW_CHARACTER: - case PostgreSQLParser.KW_COALESCE: - case PostgreSQLParser.KW_DEC: - case PostgreSQLParser.KW_DECIMAL: - case PostgreSQLParser.KW_EXISTS: - case PostgreSQLParser.KW_EXTRACT: - case PostgreSQLParser.KW_FLOAT: - case PostgreSQLParser.KW_GREATEST: - case PostgreSQLParser.KW_INOUT: - case PostgreSQLParser.KW_INT: - case PostgreSQLParser.KW_INTEGER: - case PostgreSQLParser.KW_INTERVAL: - case PostgreSQLParser.KW_LEAST: - case PostgreSQLParser.KW_NATIONAL: - case PostgreSQLParser.KW_NCHAR: - case PostgreSQLParser.KW_NONE: - case PostgreSQLParser.KW_NULLIF: - case PostgreSQLParser.KW_NUMERIC: - case PostgreSQLParser.KW_OVERLAY: - case PostgreSQLParser.KW_POSITION: - case PostgreSQLParser.KW_PRECISION: - case PostgreSQLParser.KW_REAL: - case PostgreSQLParser.KW_ROW: - case PostgreSQLParser.KW_SETOF: - case PostgreSQLParser.KW_SMALLINT: - case PostgreSQLParser.KW_SUBSTRING: - case PostgreSQLParser.KW_TIME: - case PostgreSQLParser.KW_TIMESTAMP: - case PostgreSQLParser.KW_TREAT: - case PostgreSQLParser.KW_TRIM: - case PostgreSQLParser.KW_VALUES: - case PostgreSQLParser.KW_VARCHAR: - case PostgreSQLParser.KW_XMLATTRIBUTES: - case PostgreSQLParser.KW_XMLCONCAT: - case PostgreSQLParser.KW_XMLELEMENT: - case PostgreSQLParser.KW_XMLEXISTS: - case PostgreSQLParser.KW_XMLFOREST: - case PostgreSQLParser.KW_XMLPARSE: - case PostgreSQLParser.KW_XMLPI: - case PostgreSQLParser.KW_XMLROOT: - case PostgreSQLParser.KW_XMLSERIALIZE: - case PostgreSQLParser.KW_CALL: - case PostgreSQLParser.KW_CURRENT: - case PostgreSQLParser.KW_ATTACH: - case PostgreSQLParser.KW_DETACH: - case PostgreSQLParser.KW_EXPRESSION: - case PostgreSQLParser.KW_GENERATED: - case PostgreSQLParser.KW_LOGGED: - case PostgreSQLParser.KW_STORED: - case PostgreSQLParser.KW_INCLUDE: - case PostgreSQLParser.KW_ROUTINE: - case PostgreSQLParser.KW_TRANSFORM: - case PostgreSQLParser.KW_IMPORT: - case PostgreSQLParser.KW_POLICY: - case PostgreSQLParser.KW_METHOD: - case PostgreSQLParser.KW_REFERENCING: - case PostgreSQLParser.KW_NEW: - case PostgreSQLParser.KW_OLD: - case PostgreSQLParser.KW_VALUE: - case PostgreSQLParser.KW_SUBSCRIPTION: - case PostgreSQLParser.KW_PUBLICATION: - case PostgreSQLParser.KW_OUT: - case PostgreSQLParser.KW_END: - case PostgreSQLParser.KW_ROUTINES: - case PostgreSQLParser.KW_SCHEMAS: - case PostgreSQLParser.KW_PROCEDURES: - case PostgreSQLParser.KW_INPUT: - case PostgreSQLParser.KW_SUPPORT: - case PostgreSQLParser.KW_PARALLEL: - case PostgreSQLParser.KW_SQL: - case PostgreSQLParser.KW_DEPENDS: - case PostgreSQLParser.KW_OVERRIDING: - case PostgreSQLParser.KW_CONFLICT: - case PostgreSQLParser.KW_SKIP: - case PostgreSQLParser.KW_LOCKED: - case PostgreSQLParser.KW_TIES: - case PostgreSQLParser.KW_ROLLUP: - case PostgreSQLParser.KW_CUBE: - case PostgreSQLParser.KW_GROUPING: - case PostgreSQLParser.KW_SETS: - case PostgreSQLParser.KW_ORDINALITY: - case PostgreSQLParser.KW_XMLTABLE: - case PostgreSQLParser.KW_COLUMNS: - case PostgreSQLParser.KW_XMLNAMESPACES: - case PostgreSQLParser.KW_ROWTYPE: - case PostgreSQLParser.KW_NORMALIZED: - case PostgreSQLParser.KW_WITHIN: - case PostgreSQLParser.KW_FILTER: - case PostgreSQLParser.KW_GROUPS: - case PostgreSQLParser.KW_OTHERS: - case PostgreSQLParser.KW_NFC: - case PostgreSQLParser.KW_NFD: - case PostgreSQLParser.KW_NFKC: - case PostgreSQLParser.KW_NFKD: - case PostgreSQLParser.KW_UESCAPE: - case PostgreSQLParser.KW_VIEWS: - case PostgreSQLParser.KW_NORMALIZE: - case PostgreSQLParser.KW_DUMP: - case PostgreSQLParser.KW_PRINT_STRICT_PARAMS: - case PostgreSQLParser.KW_VARIABLE_CONFLICT: - case PostgreSQLParser.KW_ERROR: - case PostgreSQLParser.KW_USE_VARIABLE: - case PostgreSQLParser.KW_USE_COLUMN: - case PostgreSQLParser.KW_ALIAS: - case PostgreSQLParser.KW_CONSTANT: - case PostgreSQLParser.KW_PERFORM: - case PostgreSQLParser.KW_GET: - case PostgreSQLParser.KW_DIAGNOSTICS: - case PostgreSQLParser.KW_STACKED: - case PostgreSQLParser.KW_ELSIF: - case PostgreSQLParser.KW_REVERSE: - case PostgreSQLParser.KW_SLICE: - case PostgreSQLParser.KW_EXIT: - case PostgreSQLParser.KW_RETURN: - case PostgreSQLParser.KW_QUERY: - case PostgreSQLParser.KW_RAISE: - case PostgreSQLParser.KW_SQLSTATE: - case PostgreSQLParser.KW_DEBUG: - case PostgreSQLParser.KW_LOG: - case PostgreSQLParser.KW_INFO: - case PostgreSQLParser.KW_NOTICE: - case PostgreSQLParser.KW_WARNING: - case PostgreSQLParser.KW_EXCEPTION: - case PostgreSQLParser.KW_ASSERT: - case PostgreSQLParser.KW_LOOP: - case PostgreSQLParser.KW_OPEN: - case PostgreSQLParser.KW_MERGE: - case PostgreSQLParser.KW_SKIP_LOCKED: - case PostgreSQLParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSQLParser.Identifier: - case PostgreSQLParser.QuotedIdentifier: - case PostgreSQLParser.UnicodeQuotedIdentifier: - case PostgreSQLParser.StringConstant: - case PostgreSQLParser.UnicodeEscapeStringConstant: - case PostgreSQLParser.BeginDollarStringConstant: - case PostgreSQLParser.PLSQLVARIABLENAME: - case PostgreSQLParser.PLSQLIDENTIFIER: - case PostgreSQLParser.MetaCommand: - case PostgreSQLParser.EscapeStringConstant: - break; - default: - break; } - this.state = 8904; + this.state = 8897; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 882, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 878, this.context) ) { case 1: { - this.state = 8903; + this.state = 8896; this.opt_nulls_order(); } break; @@ -44134,23 +42883,23 @@ export class PostgreSQLParser extends antlr.Parser { } public select_limit(): Select_limitContext { let localContext = new Select_limitContext(this.context, this.state); - this.enterRule(localContext, 1048, PostgreSQLParser.RULE_select_limit); + this.enterRule(localContext, 1050, PostgreSQLParser.RULE_select_limit); let _la: number; try { - this.state = 8918; + this.state = 8911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_LIMIT: this.enterOuterAlt(localContext, 1); { - this.state = 8906; + this.state = 8899; this.limit_clause(); - this.state = 8908; + this.state = 8901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 8907; + this.state = 8900; this.offset_clause(); } } @@ -44160,14 +42909,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_OFFSET: this.enterOuterAlt(localContext, 2); { - this.state = 8910; + this.state = 8903; this.offset_clause(); - this.state = 8912; + this.state = 8905; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 884, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 880, this.context) ) { case 1: { - this.state = 8911; + this.state = 8904; this.fetch_clause(); } break; @@ -44177,14 +42926,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_FETCH: this.enterOuterAlt(localContext, 3); { - this.state = 8914; + this.state = 8907; this.fetch_clause(); - this.state = 8916; + this.state = 8909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 8915; + this.state = 8908; this.offset_clause(); } } @@ -44211,11 +42960,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_select_limit(): Opt_select_limitContext { let localContext = new Opt_select_limitContext(this.context, this.state); - this.enterRule(localContext, 1050, PostgreSQLParser.RULE_opt_select_limit); + this.enterRule(localContext, 1052, PostgreSQLParser.RULE_opt_select_limit); try { this.enterOuterAlt(localContext, 1); { - this.state = 8920; + this.state = 8913; this.select_limit(); } } @@ -44235,23 +42984,23 @@ export class PostgreSQLParser extends antlr.Parser { } public limit_clause(): Limit_clauseContext { let localContext = new Limit_clauseContext(this.context, this.state); - this.enterRule(localContext, 1052, PostgreSQLParser.RULE_limit_clause); + this.enterRule(localContext, 1054, PostgreSQLParser.RULE_limit_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8922; + this.state = 8915; this.match(PostgreSQLParser.KW_LIMIT); - this.state = 8923; + this.state = 8916; this.select_limit_value(); - this.state = 8926; + this.state = 8919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8924; + this.state = 8917; this.match(PostgreSQLParser.COMMA); - this.state = 8925; + this.state = 8918; this.select_offset_value(); } } @@ -44274,37 +43023,37 @@ export class PostgreSQLParser extends antlr.Parser { } public fetch_clause(): Fetch_clauseContext { let localContext = new Fetch_clauseContext(this.context, this.state); - this.enterRule(localContext, 1054, PostgreSQLParser.RULE_fetch_clause); + this.enterRule(localContext, 1056, PostgreSQLParser.RULE_fetch_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8928; + this.state = 8921; this.match(PostgreSQLParser.KW_FETCH); - this.state = 8929; + this.state = 8922; this.first_or_next(); - this.state = 8943; + this.state = 8936; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 890, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { case 1: { - this.state = 8930; + this.state = 8923; this.select_fetch_first_value(); - this.state = 8931; + this.state = 8924; this.row_or_rows(); - this.state = 8935; + this.state = 8928; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ONLY: { - this.state = 8932; + this.state = 8925; this.match(PostgreSQLParser.KW_ONLY); } break; case PostgreSQLParser.KW_WITH: { - this.state = 8933; + this.state = 8926; this.match(PostgreSQLParser.KW_WITH); - this.state = 8934; + this.state = 8927; this.match(PostgreSQLParser.KW_TIES); } break; @@ -44315,22 +43064,22 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 8937; + this.state = 8930; this.row_or_rows(); - this.state = 8941; + this.state = 8934; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ONLY: { - this.state = 8938; + this.state = 8931; this.match(PostgreSQLParser.KW_ONLY); } break; case PostgreSQLParser.KW_WITH: { - this.state = 8939; + this.state = 8932; this.match(PostgreSQLParser.KW_WITH); - this.state = 8940; + this.state = 8933; this.match(PostgreSQLParser.KW_TIES); } break; @@ -44358,26 +43107,26 @@ export class PostgreSQLParser extends antlr.Parser { } public offset_clause(): Offset_clauseContext { let localContext = new Offset_clauseContext(this.context, this.state); - this.enterRule(localContext, 1056, PostgreSQLParser.RULE_offset_clause); + this.enterRule(localContext, 1058, PostgreSQLParser.RULE_offset_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8945; + this.state = 8938; this.match(PostgreSQLParser.KW_OFFSET); - this.state = 8950; + this.state = 8943; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 891, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 887, this.context) ) { case 1: { - this.state = 8946; + this.state = 8939; this.select_fetch_first_value(); - this.state = 8947; + this.state = 8940; this.row_or_rows(); } break; case 2: { - this.state = 8949; + this.state = 8942; this.select_offset_value(); } break; @@ -44400,9 +43149,9 @@ export class PostgreSQLParser extends antlr.Parser { } public select_limit_value(): Select_limit_valueContext { let localContext = new Select_limit_valueContext(this.context, this.state); - this.enterRule(localContext, 1058, PostgreSQLParser.RULE_select_limit_value); + this.enterRule(localContext, 1060, PostgreSQLParser.RULE_select_limit_value); try { - this.state = 8954; + this.state = 8947; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -44854,14 +43603,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8952; + this.state = 8945; this.a_expr(); } break; case PostgreSQLParser.KW_ALL: this.enterOuterAlt(localContext, 2); { - this.state = 8953; + this.state = 8946; this.match(PostgreSQLParser.KW_ALL); } break; @@ -44885,11 +43634,11 @@ export class PostgreSQLParser extends antlr.Parser { } public select_offset_value(): Select_offset_valueContext { let localContext = new Select_offset_valueContext(this.context, this.state); - this.enterRule(localContext, 1060, PostgreSQLParser.RULE_select_offset_value); + this.enterRule(localContext, 1062, PostgreSQLParser.RULE_select_offset_value); try { this.enterOuterAlt(localContext, 1); { - this.state = 8956; + this.state = 8949; this.a_expr(); } } @@ -44909,26 +43658,26 @@ export class PostgreSQLParser extends antlr.Parser { } public select_fetch_first_value(): Select_fetch_first_valueContext { let localContext = new Select_fetch_first_valueContext(this.context, this.state); - this.enterRule(localContext, 1062, PostgreSQLParser.RULE_select_fetch_first_value); + this.enterRule(localContext, 1064, PostgreSQLParser.RULE_select_fetch_first_value); try { - this.state = 8963; + this.state = 8956; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.PLUS: this.enterOuterAlt(localContext, 1); { - this.state = 8958; + this.state = 8951; this.match(PostgreSQLParser.PLUS); - this.state = 8959; + this.state = 8952; this.i_or_f_const(); } break; case PostgreSQLParser.MINUS: this.enterOuterAlt(localContext, 2); { - this.state = 8960; + this.state = 8953; this.match(PostgreSQLParser.MINUS); - this.state = 8961; + this.state = 8954; this.i_or_f_const(); } break; @@ -45377,7 +44126,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 8962; + this.state = 8955; this.c_expr(); } break; @@ -45401,22 +44150,22 @@ export class PostgreSQLParser extends antlr.Parser { } public i_or_f_const(): I_or_f_constContext { let localContext = new I_or_f_constContext(this.context, this.state); - this.enterRule(localContext, 1064, PostgreSQLParser.RULE_i_or_f_const); + this.enterRule(localContext, 1066, PostgreSQLParser.RULE_i_or_f_const); try { - this.state = 8967; + this.state = 8960; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.Integral: this.enterOuterAlt(localContext, 1); { - this.state = 8965; + this.state = 8958; this.iconst(); } break; case PostgreSQLParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 8966; + this.state = 8959; this.fconst(); } break; @@ -45440,12 +44189,12 @@ export class PostgreSQLParser extends antlr.Parser { } public row_or_rows(): Row_or_rowsContext { let localContext = new Row_or_rowsContext(this.context, this.state); - this.enterRule(localContext, 1066, PostgreSQLParser.RULE_row_or_rows); + this.enterRule(localContext, 1068, PostgreSQLParser.RULE_row_or_rows); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8969; + this.state = 8962; _la = this.tokenStream.LA(1); if(!(_la === 320 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -45472,12 +44221,12 @@ export class PostgreSQLParser extends antlr.Parser { } public first_or_next(): First_or_nextContext { let localContext = new First_or_nextContext(this.context, this.state); - this.enterRule(localContext, 1068, PostgreSQLParser.RULE_first_or_next); + this.enterRule(localContext, 1070, PostgreSQLParser.RULE_first_or_next); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8971; + this.state = 8964; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -45504,26 +44253,25 @@ export class PostgreSQLParser extends antlr.Parser { } public group_clause(): Group_clauseContext { let localContext = new Group_clauseContext(this.context, this.state); - this.enterRule(localContext, 1070, PostgreSQLParser.RULE_group_clause); - let _la: number; + this.enterRule(localContext, 1072, PostgreSQLParser.RULE_group_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8973; + this.state = 8966; this.match(PostgreSQLParser.KW_GROUP); - this.state = 8974; + this.state = 8967; this.match(PostgreSQLParser.KW_BY); - this.state = 8976; + this.state = 8969; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 30 || _la === 56) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 891, this.context) ) { + case 1: { - this.state = 8975; + this.state = 8968; this.all_or_distinct(); } + break; } - - this.state = 8978; + this.state = 8971; this.group_by_list(); } } @@ -45543,30 +44291,30 @@ export class PostgreSQLParser extends antlr.Parser { } public group_by_list(): Group_by_listContext { let localContext = new Group_by_listContext(this.context, this.state); - this.enterRule(localContext, 1072, PostgreSQLParser.RULE_group_by_list); + this.enterRule(localContext, 1074, PostgreSQLParser.RULE_group_by_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8980; + this.state = 8973; this.group_by_item(); - this.state = 8985; + this.state = 8978; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 896, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 892, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8981; + this.state = 8974; this.match(PostgreSQLParser.COMMA); - this.state = 8982; + this.state = 8975; this.group_by_item(); } } } - this.state = 8987; + this.state = 8980; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 896, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 892, this.context); } } } @@ -45586,54 +44334,54 @@ export class PostgreSQLParser extends antlr.Parser { } public group_by_item(): Group_by_itemContext { let localContext = new Group_by_itemContext(this.context, this.state); - this.enterRule(localContext, 1074, PostgreSQLParser.RULE_group_by_item); + this.enterRule(localContext, 1076, PostgreSQLParser.RULE_group_by_item); try { - this.state = 8997; + this.state = 8990; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 897, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 893, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8988; + this.state = 8981; this.column_expr_noparen(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8989; + this.state = 8982; this.empty_grouping_set(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8990; + this.state = 8983; this.cube_clause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8991; + this.state = 8984; this.rollup_clause(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8992; + this.state = 8985; this.grouping_sets_clause(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8993; + this.state = 8986; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8994; + this.state = 8987; this.column_expr_list_noparen(); - this.state = 8995; + this.state = 8988; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -45655,13 +44403,13 @@ export class PostgreSQLParser extends antlr.Parser { } public empty_grouping_set(): Empty_grouping_setContext { let localContext = new Empty_grouping_setContext(this.context, this.state); - this.enterRule(localContext, 1076, PostgreSQLParser.RULE_empty_grouping_set); + this.enterRule(localContext, 1078, PostgreSQLParser.RULE_empty_grouping_set); try { this.enterOuterAlt(localContext, 1); { - this.state = 8999; + this.state = 8992; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9000; + this.state = 8993; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -45681,17 +44429,17 @@ export class PostgreSQLParser extends antlr.Parser { } public rollup_clause(): Rollup_clauseContext { let localContext = new Rollup_clauseContext(this.context, this.state); - this.enterRule(localContext, 1078, PostgreSQLParser.RULE_rollup_clause); + this.enterRule(localContext, 1080, PostgreSQLParser.RULE_rollup_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9002; + this.state = 8995; this.match(PostgreSQLParser.KW_ROLLUP); - this.state = 9003; + this.state = 8996; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9004; + this.state = 8997; this.column_expr_list_noparen(); - this.state = 9005; + this.state = 8998; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -45711,17 +44459,17 @@ export class PostgreSQLParser extends antlr.Parser { } public cube_clause(): Cube_clauseContext { let localContext = new Cube_clauseContext(this.context, this.state); - this.enterRule(localContext, 1080, PostgreSQLParser.RULE_cube_clause); + this.enterRule(localContext, 1082, PostgreSQLParser.RULE_cube_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9007; + this.state = 9000; this.match(PostgreSQLParser.KW_CUBE); - this.state = 9008; + this.state = 9001; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9009; + this.state = 9002; this.column_expr_list_noparen(); - this.state = 9010; + this.state = 9003; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -45741,19 +44489,19 @@ export class PostgreSQLParser extends antlr.Parser { } public grouping_sets_clause(): Grouping_sets_clauseContext { let localContext = new Grouping_sets_clauseContext(this.context, this.state); - this.enterRule(localContext, 1082, PostgreSQLParser.RULE_grouping_sets_clause); + this.enterRule(localContext, 1084, PostgreSQLParser.RULE_grouping_sets_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9012; + this.state = 9005; this.match(PostgreSQLParser.KW_GROUPING); - this.state = 9013; + this.state = 9006; this.match(PostgreSQLParser.KW_SETS); - this.state = 9014; + this.state = 9007; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9015; + this.state = 9008; this.group_by_list(); - this.state = 9016; + this.state = 9009; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -45773,13 +44521,13 @@ export class PostgreSQLParser extends antlr.Parser { } public having_clause(): Having_clauseContext { let localContext = new Having_clauseContext(this.context, this.state); - this.enterRule(localContext, 1084, PostgreSQLParser.RULE_having_clause); + this.enterRule(localContext, 1086, PostgreSQLParser.RULE_having_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9018; + this.state = 9011; this.match(PostgreSQLParser.KW_HAVING); - this.state = 9019; + this.state = 9012; this.a_expr(); } } @@ -45799,26 +44547,26 @@ export class PostgreSQLParser extends antlr.Parser { } public for_locking_clause(): For_locking_clauseContext { let localContext = new For_locking_clauseContext(this.context, this.state); - this.enterRule(localContext, 1086, PostgreSQLParser.RULE_for_locking_clause); + this.enterRule(localContext, 1088, PostgreSQLParser.RULE_for_locking_clause); try { - this.state = 9025; + this.state = 9018; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 898, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9021; + this.state = 9014; this.for_locking_items(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9022; + this.state = 9015; this.match(PostgreSQLParser.KW_FOR); - this.state = 9023; + this.state = 9016; this.match(PostgreSQLParser.KW_READ); - this.state = 9024; + this.state = 9017; this.match(PostgreSQLParser.KW_ONLY); } break; @@ -45840,11 +44588,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_for_locking_clause(): Opt_for_locking_clauseContext { let localContext = new Opt_for_locking_clauseContext(this.context, this.state); - this.enterRule(localContext, 1088, PostgreSQLParser.RULE_opt_for_locking_clause); + this.enterRule(localContext, 1090, PostgreSQLParser.RULE_opt_for_locking_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9027; + this.state = 9020; this.for_locking_clause(); } } @@ -45864,22 +44612,22 @@ export class PostgreSQLParser extends antlr.Parser { } public for_locking_items(): For_locking_itemsContext { let localContext = new For_locking_itemsContext(this.context, this.state); - this.enterRule(localContext, 1090, PostgreSQLParser.RULE_for_locking_items); + this.enterRule(localContext, 1092, PostgreSQLParser.RULE_for_locking_items); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9030; + this.state = 9023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 9029; + this.state = 9022; this.for_locking_item(); } } - this.state = 9032; + this.state = 9025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 62); @@ -45901,28 +44649,28 @@ export class PostgreSQLParser extends antlr.Parser { } public for_locking_item(): For_locking_itemContext { let localContext = new For_locking_itemContext(this.context, this.state); - this.enterRule(localContext, 1092, PostgreSQLParser.RULE_for_locking_item); + this.enterRule(localContext, 1094, PostgreSQLParser.RULE_for_locking_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 9034; + this.state = 9027; this.for_locking_strength(); - this.state = 9036; + this.state = 9029; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 900, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 896, this.context) ) { case 1: { - this.state = 9035; + this.state = 9028; this.locked_rels_list(); } break; } - this.state = 9039; + this.state = 9032; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 901, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 897, this.context) ) { case 1: { - this.state = 9038; + this.state = 9031; this.opt_nowait_or_skip(); } break; @@ -45945,49 +44693,49 @@ export class PostgreSQLParser extends antlr.Parser { } public for_locking_strength(): For_locking_strengthContext { let localContext = new For_locking_strengthContext(this.context, this.state); - this.enterRule(localContext, 1094, PostgreSQLParser.RULE_for_locking_strength); + this.enterRule(localContext, 1096, PostgreSQLParser.RULE_for_locking_strength); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9041; + this.state = 9034; this.match(PostgreSQLParser.KW_FOR); - this.state = 9051; + this.state = 9044; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NO: case PostgreSQLParser.KW_UPDATE: { - this.state = 9044; + this.state = 9037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 9042; + this.state = 9035; this.match(PostgreSQLParser.KW_NO); - this.state = 9043; + this.state = 9036; this.match(PostgreSQLParser.KW_KEY); } } - this.state = 9046; + this.state = 9039; this.match(PostgreSQLParser.KW_UPDATE); } break; case PostgreSQLParser.KW_KEY: case PostgreSQLParser.KW_SHARE: { - this.state = 9048; + this.state = 9041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 245) { { - this.state = 9047; + this.state = 9040; this.match(PostgreSQLParser.KW_KEY); } } - this.state = 9050; + this.state = 9043; this.match(PostgreSQLParser.KW_SHARE); } break; @@ -46012,13 +44760,13 @@ export class PostgreSQLParser extends antlr.Parser { } public locked_rels_list(): Locked_rels_listContext { let localContext = new Locked_rels_listContext(this.context, this.state); - this.enterRule(localContext, 1096, PostgreSQLParser.RULE_locked_rels_list); + this.enterRule(localContext, 1098, PostgreSQLParser.RULE_locked_rels_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 9053; + this.state = 9046; this.match(PostgreSQLParser.KW_OF); - this.state = 9054; + this.state = 9047; this.qualified_name_list(); } } @@ -46038,36 +44786,36 @@ export class PostgreSQLParser extends antlr.Parser { } public values_clause(): Values_clauseContext { let localContext = new Values_clauseContext(this.context, this.state); - this.enterRule(localContext, 1098, PostgreSQLParser.RULE_values_clause); + this.enterRule(localContext, 1100, PostgreSQLParser.RULE_values_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9056; + this.state = 9049; this.match(PostgreSQLParser.KW_VALUES); - this.state = 9057; + this.state = 9050; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9058; + this.state = 9051; this.expr_list(); - this.state = 9059; + this.state = 9052; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9067; + this.state = 9060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9060; + this.state = 9053; this.match(PostgreSQLParser.COMMA); - this.state = 9061; + this.state = 9054; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9062; + this.state = 9055; this.expr_list(); - this.state = 9063; + this.state = 9056; this.match(PostgreSQLParser.CLOSE_PAREN); } } - this.state = 9069; + this.state = 9062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46089,13 +44837,13 @@ export class PostgreSQLParser extends antlr.Parser { } public from_clause(): From_clauseContext { let localContext = new From_clauseContext(this.context, this.state); - this.enterRule(localContext, 1100, PostgreSQLParser.RULE_from_clause); + this.enterRule(localContext, 1102, PostgreSQLParser.RULE_from_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9070; + this.state = 9063; this.match(PostgreSQLParser.KW_FROM); - this.state = 9071; + this.state = 9064; this.from_list(); } } @@ -46115,30 +44863,30 @@ export class PostgreSQLParser extends antlr.Parser { } public from_list(): From_listContext { let localContext = new From_listContext(this.context, this.state); - this.enterRule(localContext, 1102, PostgreSQLParser.RULE_from_list); + this.enterRule(localContext, 1104, PostgreSQLParser.RULE_from_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9073; + this.state = 9066; this.table_ref(); - this.state = 9078; + this.state = 9071; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 906, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 902, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9074; + this.state = 9067; this.match(PostgreSQLParser.COMMA); - this.state = 9075; + this.state = 9068; this.table_ref(); } } } - this.state = 9080; + this.state = 9073; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 906, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 902, this.context); } } } @@ -46158,49 +44906,49 @@ export class PostgreSQLParser extends antlr.Parser { } public table_ref(): Table_refContext { let localContext = new Table_refContext(this.context, this.state); - this.enterRule(localContext, 1104, PostgreSQLParser.RULE_table_ref); + this.enterRule(localContext, 1106, PostgreSQLParser.RULE_table_ref); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9142; + this.state = 9135; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 917, this.context) ) { case 1: { - this.state = 9083; + this.state = 9076; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 907, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 903, this.context) ) { case 1: { - this.state = 9081; + this.state = 9074; this.relation_expr(); } break; case 2: { - this.state = 9082; + this.state = 9075; this.view_relation_expr(); } break; } - this.state = 9086; + this.state = 9079; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 908, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { case 1: { - this.state = 9085; + this.state = 9078; this.opt_alias_clause(); } break; } - this.state = 9089; + this.state = 9082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 472) { { - this.state = 9088; + this.state = 9081; this.tablesample_clause(); } } @@ -46209,14 +44957,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 9091; + this.state = 9084; this.func_table(); - this.state = 9093; + this.state = 9086; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 910, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { case 1: { - this.state = 9092; + this.state = 9085; this.func_alias_clause(); } break; @@ -46225,14 +44973,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 3: { - this.state = 9095; + this.state = 9088; this.xmltable(); - this.state = 9097; + this.state = 9090; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 911, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 907, this.context) ) { case 1: { - this.state = 9096; + this.state = 9089; this.opt_alias_clause(); } break; @@ -46241,14 +44989,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 4: { - this.state = 9099; + this.state = 9092; this.select_with_parens(); - this.state = 9101; + this.state = 9094; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 912, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 908, this.context) ) { case 1: { - this.state = 9100; + this.state = 9093; this.opt_alias_clause(); } break; @@ -46257,21 +45005,21 @@ export class PostgreSQLParser extends antlr.Parser { break; case 5: { - this.state = 9103; + this.state = 9096; this.match(PostgreSQLParser.KW_LATERAL); - this.state = 9116; + this.state = 9109; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 916, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 912, this.context) ) { case 1: { - this.state = 9104; + this.state = 9097; this.xmltable(); - this.state = 9106; + this.state = 9099; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 913, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 909, this.context) ) { case 1: { - this.state = 9105; + this.state = 9098; this.opt_alias_clause(); } break; @@ -46280,14 +45028,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 9108; + this.state = 9101; this.func_table(); - this.state = 9110; + this.state = 9103; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 910, this.context) ) { case 1: { - this.state = 9109; + this.state = 9102; this.func_alias_clause(); } break; @@ -46296,14 +45044,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 3: { - this.state = 9112; + this.state = 9105; this.select_with_parens(); - this.state = 9114; + this.state = 9107; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 915, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 911, this.context) ) { case 1: { - this.state = 9113; + this.state = 9106; this.opt_alias_clause(); } break; @@ -46315,40 +45063,40 @@ export class PostgreSQLParser extends antlr.Parser { break; case 6: { - this.state = 9118; + this.state = 9111; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9119; + this.state = 9112; this.table_ref(); - this.state = 9136; + this.state = 9129; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CROSS: { - this.state = 9120; + this.state = 9113; this.match(PostgreSQLParser.KW_CROSS); - this.state = 9121; + this.state = 9114; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9122; + this.state = 9115; this.table_ref(); } break; case PostgreSQLParser.KW_NATURAL: { - this.state = 9123; + this.state = 9116; this.match(PostgreSQLParser.KW_NATURAL); - this.state = 9125; + this.state = 9118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 9124; + this.state = 9117; this.join_type(); } } - this.state = 9127; + this.state = 9120; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9128; + this.state = 9121; this.table_ref(); } break; @@ -46358,21 +45106,21 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_LEFT: case PostgreSQLParser.KW_RIGHT: { - this.state = 9130; + this.state = 9123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 9129; + this.state = 9122; this.join_type(); } } - this.state = 9132; + this.state = 9125; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9133; + this.state = 9126; this.table_ref(); - this.state = 9134; + this.state = 9127; this.join_qual(); } break; @@ -46381,14 +45129,14 @@ export class PostgreSQLParser extends antlr.Parser { default: break; } - this.state = 9138; + this.state = 9131; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9140; + this.state = 9133; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 920, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 916, this.context) ) { case 1: { - this.state = 9139; + this.state = 9132; this.opt_alias_clause(); } break; @@ -46396,42 +45144,42 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 9162; + this.state = 9155; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 925, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 921, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 9160; + this.state = 9153; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CROSS: { - this.state = 9144; + this.state = 9137; this.match(PostgreSQLParser.KW_CROSS); - this.state = 9145; + this.state = 9138; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9146; + this.state = 9139; this.table_ref(); } break; case PostgreSQLParser.KW_NATURAL: { - this.state = 9147; + this.state = 9140; this.match(PostgreSQLParser.KW_NATURAL); - this.state = 9149; + this.state = 9142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 9148; + this.state = 9141; this.join_type(); } } - this.state = 9151; + this.state = 9144; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9152; + this.state = 9145; this.table_ref(); } break; @@ -46441,21 +45189,21 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_LEFT: case PostgreSQLParser.KW_RIGHT: { - this.state = 9154; + this.state = 9147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 9153; + this.state = 9146; this.join_type(); } } - this.state = 9156; + this.state = 9149; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9157; + this.state = 9150; this.table_ref(); - this.state = 9158; + this.state = 9151; this.join_qual(); } break; @@ -46464,9 +45212,9 @@ export class PostgreSQLParser extends antlr.Parser { } } } - this.state = 9164; + this.state = 9157; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 925, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 921, this.context); } } } @@ -46486,33 +45234,33 @@ export class PostgreSQLParser extends antlr.Parser { } public alias_clause(): Alias_clauseContext { let localContext = new Alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 1106, PostgreSQLParser.RULE_alias_clause); + this.enterRule(localContext, 1108, PostgreSQLParser.RULE_alias_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9166; + this.state = 9159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 9165; + this.state = 9158; this.match(PostgreSQLParser.KW_AS); } } - this.state = 9168; + this.state = 9161; this.colid(); - this.state = 9173; + this.state = 9166; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 927, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { case 1: { - this.state = 9169; + this.state = 9162; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9170; + this.state = 9163; this.name_list(); - this.state = 9171; + this.state = 9164; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -46535,11 +45283,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_alias_clause(): Opt_alias_clauseContext { let localContext = new Opt_alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 1108, PostgreSQLParser.RULE_opt_alias_clause); + this.enterRule(localContext, 1110, PostgreSQLParser.RULE_opt_alias_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9175; + this.state = 9168; this.alias_clause(); } } @@ -46559,35 +45307,35 @@ export class PostgreSQLParser extends antlr.Parser { } public func_alias_clause(): Func_alias_clauseContext { let localContext = new Func_alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 1110, PostgreSQLParser.RULE_func_alias_clause); + this.enterRule(localContext, 1112, PostgreSQLParser.RULE_func_alias_clause); let _la: number; try { - this.state = 9189; + this.state = 9182; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 930, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 926, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9177; + this.state = 9170; this.alias_clause(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9183; + this.state = 9176; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AS: { - this.state = 9178; + this.state = 9171; this.match(PostgreSQLParser.KW_AS); - this.state = 9180; + this.state = 9173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 9179; + this.state = 9172; this.colid(); } } @@ -46995,18 +45743,18 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9182; + this.state = 9175; this.colid(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 9185; + this.state = 9178; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9186; + this.state = 9179; this.tablefuncelementlist(); - this.state = 9187; + this.state = 9180; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -47028,12 +45776,12 @@ export class PostgreSQLParser extends antlr.Parser { } public join_type(): Join_typeContext { let localContext = new Join_typeContext(this.context, this.state); - this.enterRule(localContext, 1112, PostgreSQLParser.RULE_join_type); + this.enterRule(localContext, 1114, PostgreSQLParser.RULE_join_type); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9191; + this.state = 9184; _la = this.tokenStream.LA(1); if(!(((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0))) { this.errorHandler.recoverInline(this); @@ -47042,12 +45790,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9193; + this.state = 9186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 9192; + this.state = 9185; this.match(PostgreSQLParser.KW_OUTER); } } @@ -47070,30 +45818,30 @@ export class PostgreSQLParser extends antlr.Parser { } public join_qual(): Join_qualContext { let localContext = new Join_qualContext(this.context, this.state); - this.enterRule(localContext, 1114, PostgreSQLParser.RULE_join_qual); + this.enterRule(localContext, 1116, PostgreSQLParser.RULE_join_qual); try { - this.state = 9202; + this.state = 9195; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 1); { - this.state = 9195; + this.state = 9188; this.match(PostgreSQLParser.KW_USING); - this.state = 9196; + this.state = 9189; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9197; - this.columnlist(); - this.state = 9198; + this.state = 9190; + this.column_list(); + this.state = 9191; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_ON: this.enterOuterAlt(localContext, 2); { - this.state = 9200; + this.state = 9193; this.match(PostgreSQLParser.KW_ON); - this.state = 9201; + this.state = 9194; this.a_expr(); } break; @@ -47117,33 +45865,33 @@ export class PostgreSQLParser extends antlr.Parser { } public relation_expr(): Relation_exprContext { let localContext = new Relation_exprContext(this.context, this.state); - this.enterRule(localContext, 1116, PostgreSQLParser.RULE_relation_expr); + this.enterRule(localContext, 1118, PostgreSQLParser.RULE_relation_expr); let _la: number; try { - this.state = 9225; + this.state = 9218; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 937, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 933, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9205; + this.state = 9198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 9204; + this.state = 9197; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 9207; + this.state = 9200; this.table_name(); - this.state = 9209; + this.state = 9202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 9208; + this.state = 9201; this.match(PostgreSQLParser.STAR); } } @@ -47153,9 +45901,9 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9211; + this.state = 9204; this.match(PostgreSQLParser.KW_ONLY); - this.state = 9217; + this.state = 9210; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -47559,17 +46307,17 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9212; + this.state = 9205; this.table_name(); } break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 9213; + this.state = 9206; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9214; + this.state = 9207; this.table_name(); - this.state = 9215; + this.state = 9208; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -47581,11 +46329,11 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9219; + this.state = 9212; this.match(PostgreSQLParser.KW_IN); - this.state = 9220; + this.state = 9213; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 9223; + this.state = 9216; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -47989,13 +46737,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9221; + this.state = 9214; this.schema_name(); } break; case PostgreSQLParser.KW_CURRENT_SCHEMA: { - this.state = 9222; + this.state = 9215; this.match(PostgreSQLParser.KW_CURRENT_SCHEMA); } break; @@ -48022,33 +46770,53 @@ export class PostgreSQLParser extends antlr.Parser { } public view_relation_expr(): View_relation_exprContext { let localContext = new View_relation_exprContext(this.context, this.state); - this.enterRule(localContext, 1118, PostgreSQLParser.RULE_view_relation_expr); + this.enterRule(localContext, 1120, PostgreSQLParser.RULE_view_relation_expr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9228; + this.state = 9221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 9227; + this.state = 9220; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 9230; + this.state = 9223; this.view_name(); - this.state = 9232; + this.state = 9225; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 9) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 935, this.context) ) { + case 1: { - this.state = 9231; + this.state = 9224; this.match(PostgreSQLParser.STAR); } + break; + } + this.state = 9228; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 936, this.context) ) { + case 1: + { + this.state = 9227; + this.column_list(); + } + break; + } + this.state = 9231; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 937, this.context) ) { + case 1: + { + this.state = 9230; + this.where_clause(); + } + break; } - } } catch (re) { @@ -48067,59 +46835,59 @@ export class PostgreSQLParser extends antlr.Parser { } public publication_relation_expr(): Publication_relation_exprContext { let localContext = new Publication_relation_exprContext(this.context, this.state); - this.enterRule(localContext, 1120, PostgreSQLParser.RULE_publication_relation_expr); + this.enterRule(localContext, 1122, PostgreSQLParser.RULE_publication_relation_expr); let _la: number; try { - this.state = 9267; + this.state = 9266; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9234; + this.state = 9233; this.match(PostgreSQLParser.KW_TABLE); - this.state = 9236; + this.state = 9235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 9235; + this.state = 9234; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 9238; + this.state = 9237; this.table_name(); - this.state = 9240; + this.state = 9239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 9239; + this.state = 9238; this.match(PostgreSQLParser.STAR); } } - this.state = 9246; + this.state = 9245; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 940, this.context) ) { case 1: { - this.state = 9242; + this.state = 9241; this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 9242; + this.column_list(); this.state = 9243; - this.columnlist(); - this.state = 9244; this.match(PostgreSQLParser.CLOSE_PAREN); } break; } - this.state = 9249; + this.state = 9248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 9248; + this.state = 9247; this.where_clause(); } } @@ -48129,11 +46897,11 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9251; + this.state = 9250; this.match(PostgreSQLParser.KW_TABLE); - this.state = 9252; + this.state = 9251; this.match(PostgreSQLParser.KW_ONLY); - this.state = 9258; + this.state = 9257; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -48537,17 +47305,17 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9253; + this.state = 9252; this.table_name(); } break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 9254; + this.state = 9253; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9255; + this.state = 9254; this.table_name(); - this.state = 9256; + this.state = 9255; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -48559,13 +47327,13 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9260; + this.state = 9259; this.match(PostgreSQLParser.KW_TABLES); - this.state = 9261; + this.state = 9260; this.match(PostgreSQLParser.KW_IN); - this.state = 9262; + this.state = 9261; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 9265; + this.state = 9264; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -48969,13 +47737,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9263; + this.state = 9262; this.schema_name(); } break; case PostgreSQLParser.KW_CURRENT_SCHEMA: { - this.state = 9264; + this.state = 9263; this.match(PostgreSQLParser.KW_CURRENT_SCHEMA); } break; @@ -49002,26 +47770,26 @@ export class PostgreSQLParser extends antlr.Parser { } public relation_expr_list(): Relation_expr_listContext { let localContext = new Relation_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1122, PostgreSQLParser.RULE_relation_expr_list); + this.enterRule(localContext, 1124, PostgreSQLParser.RULE_relation_expr_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9269; + this.state = 9268; this.relation_expr(); - this.state = 9274; + this.state = 9273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9270; + this.state = 9269; this.match(PostgreSQLParser.COMMA); - this.state = 9271; + this.state = 9270; this.relation_expr(); } } - this.state = 9276; + this.state = 9275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49043,26 +47811,26 @@ export class PostgreSQLParser extends antlr.Parser { } public publication_relation_expr_list(): Publication_relation_expr_listContext { let localContext = new Publication_relation_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1124, PostgreSQLParser.RULE_publication_relation_expr_list); + this.enterRule(localContext, 1126, PostgreSQLParser.RULE_publication_relation_expr_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9277; + this.state = 9276; this.publication_relation_expr(); - this.state = 9282; + this.state = 9281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9278; + this.state = 9277; this.match(PostgreSQLParser.COMMA); - this.state = 9279; + this.state = 9278; this.publication_relation_expr(); } } - this.state = 9284; + this.state = 9283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49084,29 +47852,29 @@ export class PostgreSQLParser extends antlr.Parser { } public relation_expr_opt_alias(): Relation_expr_opt_aliasContext { let localContext = new Relation_expr_opt_aliasContext(this.context, this.state); - this.enterRule(localContext, 1126, PostgreSQLParser.RULE_relation_expr_opt_alias); + this.enterRule(localContext, 1128, PostgreSQLParser.RULE_relation_expr_opt_alias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9285; + this.state = 9284; this.relation_expr(); - this.state = 9290; + this.state = 9289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 950, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 948, this.context) ) { case 1: { - this.state = 9287; + this.state = 9286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 9286; + this.state = 9285; this.match(PostgreSQLParser.KW_AS); } } - this.state = 9289; + this.state = 9288; this.colid(); } break; @@ -49129,26 +47897,26 @@ export class PostgreSQLParser extends antlr.Parser { } public tablesample_clause(): Tablesample_clauseContext { let localContext = new Tablesample_clauseContext(this.context, this.state); - this.enterRule(localContext, 1128, PostgreSQLParser.RULE_tablesample_clause); + this.enterRule(localContext, 1130, PostgreSQLParser.RULE_tablesample_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9292; + this.state = 9291; this.match(PostgreSQLParser.KW_TABLESAMPLE); - this.state = 9293; + this.state = 9292; this.function_name(); - this.state = 9294; + this.state = 9293; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9295; + this.state = 9294; this.expr_list(); - this.state = 9296; + this.state = 9295; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9298; + this.state = 9297; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 951, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 949, this.context) ) { case 1: { - this.state = 9297; + this.state = 9296; this.opt_repeatable_clause(); } break; @@ -49171,17 +47939,17 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_repeatable_clause(): Opt_repeatable_clauseContext { let localContext = new Opt_repeatable_clauseContext(this.context, this.state); - this.enterRule(localContext, 1130, PostgreSQLParser.RULE_opt_repeatable_clause); + this.enterRule(localContext, 1132, PostgreSQLParser.RULE_opt_repeatable_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9300; + this.state = 9299; this.match(PostgreSQLParser.KW_REPEATABLE); - this.state = 9301; + this.state = 9300; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9302; + this.state = 9301; this.a_expr(); - this.state = 9303; + this.state = 9302; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -49201,22 +47969,22 @@ export class PostgreSQLParser extends antlr.Parser { } public func_table(): Func_tableContext { let localContext = new Func_tableContext(this.context, this.state); - this.enterRule(localContext, 1132, PostgreSQLParser.RULE_func_table); + this.enterRule(localContext, 1134, PostgreSQLParser.RULE_func_table); try { - this.state = 9317; + this.state = 9316; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 954, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 952, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9305; + this.state = 9304; this.func_expr_windowless(); - this.state = 9307; + this.state = 9306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 952, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 950, this.context) ) { case 1: { - this.state = 9306; + this.state = 9305; this.opt_ordinality(); } break; @@ -49226,22 +47994,22 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9309; + this.state = 9308; this.match(PostgreSQLParser.KW_ROWS); - this.state = 9310; + this.state = 9309; this.match(PostgreSQLParser.KW_FROM); - this.state = 9311; + this.state = 9310; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9312; + this.state = 9311; this.rowsfrom_list(); - this.state = 9313; + this.state = 9312; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9315; + this.state = 9314; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 953, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 951, this.context) ) { case 1: { - this.state = 9314; + this.state = 9313; this.opt_ordinality(); } break; @@ -49266,19 +48034,19 @@ export class PostgreSQLParser extends antlr.Parser { } public rowsfrom_item(): Rowsfrom_itemContext { let localContext = new Rowsfrom_itemContext(this.context, this.state); - this.enterRule(localContext, 1134, PostgreSQLParser.RULE_rowsfrom_item); + this.enterRule(localContext, 1136, PostgreSQLParser.RULE_rowsfrom_item); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9319; + this.state = 9318; this.func_expr_windowless(); - this.state = 9321; + this.state = 9320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 9320; + this.state = 9319; this.opt_col_def_list(); } } @@ -49301,26 +48069,26 @@ export class PostgreSQLParser extends antlr.Parser { } public rowsfrom_list(): Rowsfrom_listContext { let localContext = new Rowsfrom_listContext(this.context, this.state); - this.enterRule(localContext, 1136, PostgreSQLParser.RULE_rowsfrom_list); + this.enterRule(localContext, 1138, PostgreSQLParser.RULE_rowsfrom_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9323; + this.state = 9322; this.rowsfrom_item(); - this.state = 9328; + this.state = 9327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9324; + this.state = 9323; this.match(PostgreSQLParser.COMMA); - this.state = 9325; + this.state = 9324; this.rowsfrom_item(); } } - this.state = 9330; + this.state = 9329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49342,17 +48110,17 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_col_def_list(): Opt_col_def_listContext { let localContext = new Opt_col_def_listContext(this.context, this.state); - this.enterRule(localContext, 1138, PostgreSQLParser.RULE_opt_col_def_list); + this.enterRule(localContext, 1140, PostgreSQLParser.RULE_opt_col_def_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 9331; + this.state = 9330; this.match(PostgreSQLParser.KW_AS); - this.state = 9332; + this.state = 9331; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9333; + this.state = 9332; this.tablefuncelementlist(); - this.state = 9334; + this.state = 9333; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -49372,13 +48140,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_ordinality(): Opt_ordinalityContext { let localContext = new Opt_ordinalityContext(this.context, this.state); - this.enterRule(localContext, 1140, PostgreSQLParser.RULE_opt_ordinality); + this.enterRule(localContext, 1142, PostgreSQLParser.RULE_opt_ordinality); try { this.enterOuterAlt(localContext, 1); { - this.state = 9336; + this.state = 9335; this.match(PostgreSQLParser.KW_WITH); - this.state = 9337; + this.state = 9336; this.match(PostgreSQLParser.KW_ORDINALITY); } } @@ -49398,13 +48166,13 @@ export class PostgreSQLParser extends antlr.Parser { } public where_clause(): Where_clauseContext { let localContext = new Where_clauseContext(this.context, this.state); - this.enterRule(localContext, 1142, PostgreSQLParser.RULE_where_clause); + this.enterRule(localContext, 1144, PostgreSQLParser.RULE_where_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9339; + this.state = 9338; this.match(PostgreSQLParser.KW_WHERE); - this.state = 9340; + this.state = 9339; this.column_expr_noparen(); } } @@ -49424,28 +48192,28 @@ export class PostgreSQLParser extends antlr.Parser { } public where_or_current_clause(): Where_or_current_clauseContext { let localContext = new Where_or_current_clauseContext(this.context, this.state); - this.enterRule(localContext, 1144, PostgreSQLParser.RULE_where_or_current_clause); + this.enterRule(localContext, 1146, PostgreSQLParser.RULE_where_or_current_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9342; + this.state = 9341; this.match(PostgreSQLParser.KW_WHERE); - this.state = 9347; + this.state = 9346; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 957, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: { - this.state = 9343; + this.state = 9342; this.match(PostgreSQLParser.KW_CURRENT); - this.state = 9344; + this.state = 9343; this.match(PostgreSQLParser.KW_OF); - this.state = 9345; + this.state = 9344; this.cursor_name(); } break; case 2: { - this.state = 9346; + this.state = 9345; this.a_expr(); } break; @@ -49468,11 +48236,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opttablefuncelementlist(): OpttablefuncelementlistContext { let localContext = new OpttablefuncelementlistContext(this.context, this.state); - this.enterRule(localContext, 1146, PostgreSQLParser.RULE_opttablefuncelementlist); + this.enterRule(localContext, 1148, PostgreSQLParser.RULE_opttablefuncelementlist); try { this.enterOuterAlt(localContext, 1); { - this.state = 9349; + this.state = 9348; this.tablefuncelementlist(); } } @@ -49492,26 +48260,26 @@ export class PostgreSQLParser extends antlr.Parser { } public tablefuncelementlist(): TablefuncelementlistContext { let localContext = new TablefuncelementlistContext(this.context, this.state); - this.enterRule(localContext, 1148, PostgreSQLParser.RULE_tablefuncelementlist); + this.enterRule(localContext, 1150, PostgreSQLParser.RULE_tablefuncelementlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9351; + this.state = 9350; this.tablefuncelement(); - this.state = 9356; + this.state = 9355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9352; + this.state = 9351; this.match(PostgreSQLParser.COMMA); - this.state = 9353; + this.state = 9352; this.tablefuncelement(); } } - this.state = 9358; + this.state = 9357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49533,20 +48301,20 @@ export class PostgreSQLParser extends antlr.Parser { } public tablefuncelement(): TablefuncelementContext { let localContext = new TablefuncelementContext(this.context, this.state); - this.enterRule(localContext, 1150, PostgreSQLParser.RULE_tablefuncelement); + this.enterRule(localContext, 1152, PostgreSQLParser.RULE_tablefuncelement); try { this.enterOuterAlt(localContext, 1); { - this.state = 9359; + this.state = 9358; this.colid(); - this.state = 9360; + this.state = 9359; this.typename(); - this.state = 9362; + this.state = 9361; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 959, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 957, this.context) ) { case 1: { - this.state = 9361; + this.state = 9360; this.opt_collate_clause(); } break; @@ -49569,53 +48337,53 @@ export class PostgreSQLParser extends antlr.Parser { } public xmltable(): XmltableContext { let localContext = new XmltableContext(this.context, this.state); - this.enterRule(localContext, 1152, PostgreSQLParser.RULE_xmltable); + this.enterRule(localContext, 1154, PostgreSQLParser.RULE_xmltable); try { this.enterOuterAlt(localContext, 1); { - this.state = 9364; + this.state = 9363; this.match(PostgreSQLParser.KW_XMLTABLE); - this.state = 9365; + this.state = 9364; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9381; + this.state = 9380; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 958, this.context) ) { case 1: { - this.state = 9366; + this.state = 9365; this.c_expr(); - this.state = 9367; + this.state = 9366; this.xmlexists_argument(); - this.state = 9368; + this.state = 9367; this.match(PostgreSQLParser.KW_COLUMNS); - this.state = 9369; + this.state = 9368; this.xmltable_column_list(); } break; case 2: { - this.state = 9371; + this.state = 9370; this.match(PostgreSQLParser.KW_XMLNAMESPACES); - this.state = 9372; + this.state = 9371; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9373; + this.state = 9372; this.xml_namespace_list(); - this.state = 9374; + this.state = 9373; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9375; + this.state = 9374; this.match(PostgreSQLParser.COMMA); - this.state = 9376; + this.state = 9375; this.c_expr(); - this.state = 9377; + this.state = 9376; this.xmlexists_argument(); - this.state = 9378; + this.state = 9377; this.match(PostgreSQLParser.KW_COLUMNS); - this.state = 9379; + this.state = 9378; this.xmltable_column_list(); } break; } - this.state = 9383; + this.state = 9382; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -49635,26 +48403,26 @@ export class PostgreSQLParser extends antlr.Parser { } public xmltable_column_list(): Xmltable_column_listContext { let localContext = new Xmltable_column_listContext(this.context, this.state); - this.enterRule(localContext, 1154, PostgreSQLParser.RULE_xmltable_column_list); + this.enterRule(localContext, 1156, PostgreSQLParser.RULE_xmltable_column_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9385; + this.state = 9384; this.xmltable_column_el(); - this.state = 9390; + this.state = 9389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9386; + this.state = 9385; this.match(PostgreSQLParser.COMMA); - this.state = 9387; + this.state = 9386; this.xmltable_column_el(); } } - this.state = 9392; + this.state = 9391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49676,14 +48444,14 @@ export class PostgreSQLParser extends antlr.Parser { } public xmltable_column_el(): Xmltable_column_elContext { let localContext = new Xmltable_column_elContext(this.context, this.state); - this.enterRule(localContext, 1156, PostgreSQLParser.RULE_xmltable_column_el); + this.enterRule(localContext, 1158, PostgreSQLParser.RULE_xmltable_column_el); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9393; + this.state = 9392; this.colid(); - this.state = 9400; + this.state = 9399; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -50108,14 +48876,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9394; + this.state = 9393; this.typename(); - this.state = 9396; + this.state = 9395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 32771) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268451969) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 540945) !== 0) || _la === 207 || _la === 210 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 419430657) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1051713) !== 0) || _la === 360 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 100674083) !== 0) || _la === 584) { { - this.state = 9395; + this.state = 9394; this.xmltable_column_option_list(); } } @@ -50124,9 +48892,9 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_FOR: { - this.state = 9398; + this.state = 9397; this.match(PostgreSQLParser.KW_FOR); - this.state = 9399; + this.state = 9398; this.match(PostgreSQLParser.KW_ORDINALITY); } break; @@ -50151,22 +48919,22 @@ export class PostgreSQLParser extends antlr.Parser { } public xmltable_column_option_list(): Xmltable_column_option_listContext { let localContext = new Xmltable_column_option_listContext(this.context, this.state); - this.enterRule(localContext, 1158, PostgreSQLParser.RULE_xmltable_column_option_list); + this.enterRule(localContext, 1160, PostgreSQLParser.RULE_xmltable_column_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9403; + this.state = 9402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 9402; + this.state = 9401; this.xmltable_column_option_el(); } } - this.state = 9405; + this.state = 9404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 32771) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268451969) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 540945) !== 0) || _la === 207 || _la === 210 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 419430657) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1051713) !== 0) || _la === 360 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 100674083) !== 0) || _la === 584); @@ -50188,42 +48956,42 @@ export class PostgreSQLParser extends antlr.Parser { } public xmltable_column_option_el(): Xmltable_column_option_elContext { let localContext = new Xmltable_column_option_elContext(this.context, this.state); - this.enterRule(localContext, 1160, PostgreSQLParser.RULE_xmltable_column_option_el); + this.enterRule(localContext, 1162, PostgreSQLParser.RULE_xmltable_column_option_el); try { - this.state = 9415; + this.state = 9414; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 963, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9407; + this.state = 9406; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 9408; + this.state = 9407; this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9409; + this.state = 9408; this.identifier(); - this.state = 9410; + this.state = 9409; this.a_expr(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9412; + this.state = 9411; this.match(PostgreSQLParser.KW_NOT); - this.state = 9413; + this.state = 9412; this.match(PostgreSQLParser.KW_NULL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9414; + this.state = 9413; this.match(PostgreSQLParser.KW_NULL); } break; @@ -50245,26 +49013,26 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_namespace_list(): Xml_namespace_listContext { let localContext = new Xml_namespace_listContext(this.context, this.state); - this.enterRule(localContext, 1162, PostgreSQLParser.RULE_xml_namespace_list); + this.enterRule(localContext, 1164, PostgreSQLParser.RULE_xml_namespace_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9417; + this.state = 9416; this.xml_namespace_el(); - this.state = 9422; + this.state = 9421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9418; + this.state = 9417; this.match(PostgreSQLParser.COMMA); - this.state = 9419; + this.state = 9418; this.xml_namespace_el(); } } - this.state = 9424; + this.state = 9423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -50286,28 +49054,28 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_namespace_el(): Xml_namespace_elContext { let localContext = new Xml_namespace_elContext(this.context, this.state); - this.enterRule(localContext, 1164, PostgreSQLParser.RULE_xml_namespace_el); + this.enterRule(localContext, 1166, PostgreSQLParser.RULE_xml_namespace_el); try { - this.state = 9431; + this.state = 9430; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 967, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9425; + this.state = 9424; this.b_expr(0); - this.state = 9426; + this.state = 9425; this.match(PostgreSQLParser.KW_AS); - this.state = 9427; + this.state = 9426; this.collabel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9429; + this.state = 9428; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 9430; + this.state = 9429; this.b_expr(0); } break; @@ -50329,50 +49097,50 @@ export class PostgreSQLParser extends antlr.Parser { } public typename(): TypenameContext { let localContext = new TypenameContext(this.context, this.state); - this.enterRule(localContext, 1166, PostgreSQLParser.RULE_typename); + this.enterRule(localContext, 1168, PostgreSQLParser.RULE_typename); let _la: number; try { - this.state = 9451; + this.state = 9450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 971, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 969, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9434; + this.state = 9433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 9433; + this.state = 9432; this.match(PostgreSQLParser.KW_SETOF); } } - this.state = 9436; + this.state = 9435; this.simpletypename(); - this.state = 9445; + this.state = 9444; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 970, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 968, this.context) ) { case 1: { - this.state = 9437; + this.state = 9436; this.opt_array_bounds(); } break; case 2: { - this.state = 9438; + this.state = 9437; this.match(PostgreSQLParser.KW_ARRAY); - this.state = 9443; + this.state = 9442; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 969, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 967, this.context) ) { case 1: { - this.state = 9439; + this.state = 9438; this.match(PostgreSQLParser.OPEN_BRACKET); - this.state = 9440; + this.state = 9439; this.iconst(); - this.state = 9441; + this.state = 9440; this.match(PostgreSQLParser.CLOSE_BRACKET); } break; @@ -50385,11 +49153,11 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9447; + this.state = 9446; this.qualified_name(); - this.state = 9448; + this.state = 9447; this.match(PostgreSQLParser.PERCENT); - this.state = 9449; + this.state = 9448; _la = this.tokenStream.LA(1); if(!(_la === 360 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -50418,39 +49186,39 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_array_bounds(): Opt_array_boundsContext { let localContext = new Opt_array_boundsContext(this.context, this.state); - this.enterRule(localContext, 1168, PostgreSQLParser.RULE_opt_array_bounds); + this.enterRule(localContext, 1170, PostgreSQLParser.RULE_opt_array_bounds); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9460; + this.state = 9459; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 973, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 971, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9453; + this.state = 9452; this.match(PostgreSQLParser.OPEN_BRACKET); - this.state = 9455; + this.state = 9454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 571) { { - this.state = 9454; + this.state = 9453; this.iconst(); } } - this.state = 9457; + this.state = 9456; this.match(PostgreSQLParser.CLOSE_BRACKET); } } } - this.state = 9462; + this.state = 9461; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 973, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 971, this.context); } } } @@ -50470,62 +49238,62 @@ export class PostgreSQLParser extends antlr.Parser { } public simpletypename(): SimpletypenameContext { let localContext = new SimpletypenameContext(this.context, this.state); - this.enterRule(localContext, 1170, PostgreSQLParser.RULE_simpletypename); + this.enterRule(localContext, 1172, PostgreSQLParser.RULE_simpletypename); try { - this.state = 9478; + this.state = 9477; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9463; + this.state = 9462; this.generictype(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9464; + this.state = 9463; this.numeric(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9465; + this.state = 9464; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9466; + this.state = 9465; this.character(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9467; + this.state = 9466; this.constdatetime(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 9468; + this.state = 9467; this.constinterval(); - this.state = 9476; + this.state = 9475; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { case 1: { - this.state = 9470; + this.state = 9469; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { case 1: { - this.state = 9469; + this.state = 9468; this.opt_interval(); } break; @@ -50534,11 +49302,11 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 9472; + this.state = 9471; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9473; + this.state = 9472; this.iconst(); - this.state = 9474; + this.state = 9473; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -50563,9 +49331,9 @@ export class PostgreSQLParser extends antlr.Parser { } public consttypename(): ConsttypenameContext { let localContext = new ConsttypenameContext(this.context, this.state); - this.enterRule(localContext, 1172, PostgreSQLParser.RULE_consttypename); + this.enterRule(localContext, 1174, PostgreSQLParser.RULE_consttypename); try { - this.state = 9484; + this.state = 9483; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DOUBLE: @@ -50581,14 +49349,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SMALLINT: this.enterOuterAlt(localContext, 1); { - this.state = 9480; + this.state = 9479; this.numeric(); } break; case PostgreSQLParser.KW_BIT: this.enterOuterAlt(localContext, 2); { - this.state = 9481; + this.state = 9480; this.constbit(); } break; @@ -50599,7 +49367,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_VARCHAR: this.enterOuterAlt(localContext, 3); { - this.state = 9482; + this.state = 9481; this.constcharacter(); } break; @@ -50607,7 +49375,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 4); { - this.state = 9483; + this.state = 9482; this.constdatetime(); } break; @@ -50631,28 +49399,28 @@ export class PostgreSQLParser extends antlr.Parser { } public generictype(): GenerictypeContext { let localContext = new GenerictypeContext(this.context, this.state); - this.enterRule(localContext, 1174, PostgreSQLParser.RULE_generictype); + this.enterRule(localContext, 1176, PostgreSQLParser.RULE_generictype); try { this.enterOuterAlt(localContext, 1); { - this.state = 9486; + this.state = 9485; this.type_function_name(); - this.state = 9488; + this.state = 9487; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: { - this.state = 9487; + this.state = 9486; this.attrs(); } break; } - this.state = 9491; + this.state = 9490; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 979, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { case 1: { - this.state = 9490; + this.state = 9489; this.opt_type_modifiers(); } break; @@ -50675,15 +49443,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_type_modifiers(): Opt_type_modifiersContext { let localContext = new Opt_type_modifiersContext(this.context, this.state); - this.enterRule(localContext, 1176, PostgreSQLParser.RULE_opt_type_modifiers); + this.enterRule(localContext, 1178, PostgreSQLParser.RULE_opt_type_modifiers); try { this.enterOuterAlt(localContext, 1); { - this.state = 9493; + this.state = 9492; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9494; + this.state = 9493; this.expr_list(); - this.state = 9495; + this.state = 9494; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -50703,57 +49471,57 @@ export class PostgreSQLParser extends antlr.Parser { } public numeric(): NumericContext { let localContext = new NumericContext(this.context, this.state); - this.enterRule(localContext, 1178, PostgreSQLParser.RULE_numeric); + this.enterRule(localContext, 1180, PostgreSQLParser.RULE_numeric); try { - this.state = 9521; + this.state = 9520; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_INT: this.enterOuterAlt(localContext, 1); { - this.state = 9497; + this.state = 9496; this.match(PostgreSQLParser.KW_INT); } break; case PostgreSQLParser.KW_INTEGER: this.enterOuterAlt(localContext, 2); { - this.state = 9498; + this.state = 9497; this.match(PostgreSQLParser.KW_INTEGER); } break; case PostgreSQLParser.KW_SMALLINT: this.enterOuterAlt(localContext, 3); { - this.state = 9499; + this.state = 9498; this.match(PostgreSQLParser.KW_SMALLINT); } break; case PostgreSQLParser.KW_BIGINT: this.enterOuterAlt(localContext, 4); { - this.state = 9500; + this.state = 9499; this.match(PostgreSQLParser.KW_BIGINT); } break; case PostgreSQLParser.KW_REAL: this.enterOuterAlt(localContext, 5); { - this.state = 9501; + this.state = 9500; this.match(PostgreSQLParser.KW_REAL); } break; case PostgreSQLParser.KW_FLOAT: this.enterOuterAlt(localContext, 6); { - this.state = 9502; + this.state = 9501; this.match(PostgreSQLParser.KW_FLOAT); - this.state = 9504; + this.state = 9503; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 980, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { case 1: { - this.state = 9503; + this.state = 9502; this.opt_float(); } break; @@ -50763,23 +49531,23 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DOUBLE: this.enterOuterAlt(localContext, 7); { - this.state = 9506; + this.state = 9505; this.match(PostgreSQLParser.KW_DOUBLE); - this.state = 9507; + this.state = 9506; this.match(PostgreSQLParser.KW_PRECISION); } break; case PostgreSQLParser.KW_DECIMAL: this.enterOuterAlt(localContext, 8); { - this.state = 9508; + this.state = 9507; this.match(PostgreSQLParser.KW_DECIMAL); - this.state = 9510; + this.state = 9509; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 981, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 979, this.context) ) { case 1: { - this.state = 9509; + this.state = 9508; this.opt_type_modifiers(); } break; @@ -50789,14 +49557,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DEC: this.enterOuterAlt(localContext, 9); { - this.state = 9512; + this.state = 9511; this.match(PostgreSQLParser.KW_DEC); - this.state = 9514; + this.state = 9513; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 980, this.context) ) { case 1: { - this.state = 9513; + this.state = 9512; this.opt_type_modifiers(); } break; @@ -50806,14 +49574,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NUMERIC: this.enterOuterAlt(localContext, 10); { - this.state = 9516; + this.state = 9515; this.match(PostgreSQLParser.KW_NUMERIC); - this.state = 9518; + this.state = 9517; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 983, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 981, this.context) ) { case 1: { - this.state = 9517; + this.state = 9516; this.opt_type_modifiers(); } break; @@ -50823,7 +49591,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_BOOLEAN: this.enterOuterAlt(localContext, 11); { - this.state = 9520; + this.state = 9519; this.match(PostgreSQLParser.KW_BOOLEAN); } break; @@ -50847,15 +49615,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_float(): Opt_floatContext { let localContext = new Opt_floatContext(this.context, this.state); - this.enterRule(localContext, 1180, PostgreSQLParser.RULE_opt_float); + this.enterRule(localContext, 1182, PostgreSQLParser.RULE_opt_float); try { this.enterOuterAlt(localContext, 1); { - this.state = 9523; + this.state = 9522; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9524; + this.state = 9523; this.iconst(); - this.state = 9525; + this.state = 9524; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -50875,22 +49643,22 @@ export class PostgreSQLParser extends antlr.Parser { } public bit(): BitContext { let localContext = new BitContext(this.context, this.state); - this.enterRule(localContext, 1182, PostgreSQLParser.RULE_bit); + this.enterRule(localContext, 1184, PostgreSQLParser.RULE_bit); try { - this.state = 9529; + this.state = 9528; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 985, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 983, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9527; + this.state = 9526; this.bitwithlength(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9528; + this.state = 9527; this.bitwithoutlength(); } break; @@ -50912,22 +49680,22 @@ export class PostgreSQLParser extends antlr.Parser { } public constbit(): ConstbitContext { let localContext = new ConstbitContext(this.context, this.state); - this.enterRule(localContext, 1184, PostgreSQLParser.RULE_constbit); + this.enterRule(localContext, 1186, PostgreSQLParser.RULE_constbit); try { - this.state = 9533; + this.state = 9532; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9531; + this.state = 9530; this.bitwithlength(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9532; + this.state = 9531; this.bitwithoutlength(); } break; @@ -50949,28 +49717,28 @@ export class PostgreSQLParser extends antlr.Parser { } public bitwithlength(): BitwithlengthContext { let localContext = new BitwithlengthContext(this.context, this.state); - this.enterRule(localContext, 1186, PostgreSQLParser.RULE_bitwithlength); + this.enterRule(localContext, 1188, PostgreSQLParser.RULE_bitwithlength); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9535; + this.state = 9534; this.match(PostgreSQLParser.KW_BIT); - this.state = 9537; + this.state = 9536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 374) { { - this.state = 9536; + this.state = 9535; this.opt_varying(); } } - this.state = 9539; + this.state = 9538; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9540; + this.state = 9539; this.expr_list(); - this.state = 9541; + this.state = 9540; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -50990,18 +49758,18 @@ export class PostgreSQLParser extends antlr.Parser { } public bitwithoutlength(): BitwithoutlengthContext { let localContext = new BitwithoutlengthContext(this.context, this.state); - this.enterRule(localContext, 1188, PostgreSQLParser.RULE_bitwithoutlength); + this.enterRule(localContext, 1190, PostgreSQLParser.RULE_bitwithoutlength); try { this.enterOuterAlt(localContext, 1); { - this.state = 9543; + this.state = 9542; this.match(PostgreSQLParser.KW_BIT); - this.state = 9545; + this.state = 9544; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 988, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { case 1: { - this.state = 9544; + this.state = 9543; this.opt_varying(); } break; @@ -51024,22 +49792,22 @@ export class PostgreSQLParser extends antlr.Parser { } public character(): CharacterContext { let localContext = new CharacterContext(this.context, this.state); - this.enterRule(localContext, 1190, PostgreSQLParser.RULE_character); + this.enterRule(localContext, 1192, PostgreSQLParser.RULE_character); try { this.enterOuterAlt(localContext, 1); { - this.state = 9547; + this.state = 9546; this.character_c(); - this.state = 9552; + this.state = 9551; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 989, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { case 1: { - this.state = 9548; + this.state = 9547; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9549; + this.state = 9548; this.iconst(); - this.state = 9550; + this.state = 9549; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -51062,23 +49830,23 @@ export class PostgreSQLParser extends antlr.Parser { } public constcharacter(): ConstcharacterContext { let localContext = new ConstcharacterContext(this.context, this.state); - this.enterRule(localContext, 1192, PostgreSQLParser.RULE_constcharacter); + this.enterRule(localContext, 1194, PostgreSQLParser.RULE_constcharacter); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9554; + this.state = 9553; this.character_c(); - this.state = 9559; + this.state = 9558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 9555; + this.state = 9554; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9556; + this.state = 9555; this.iconst(); - this.state = 9557; + this.state = 9556; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -51101,10 +49869,10 @@ export class PostgreSQLParser extends antlr.Parser { } public character_c(): Character_cContext { let localContext = new Character_cContext(this.context, this.state); - this.enterRule(localContext, 1194, PostgreSQLParser.RULE_character_c); + this.enterRule(localContext, 1196, PostgreSQLParser.RULE_character_c); let _la: number; try { - this.state = 9571; + this.state = 9570; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CHAR: @@ -51112,7 +49880,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 9561; + this.state = 9560; _la = this.tokenStream.LA(1); if(!(((((_la - 391)) & ~0x1F) === 0 && ((1 << (_la - 391)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -51121,12 +49889,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9563; + this.state = 9562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 989, this.context) ) { case 1: { - this.state = 9562; + this.state = 9561; this.opt_varying(); } break; @@ -51136,16 +49904,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 9565; + this.state = 9564; this.match(PostgreSQLParser.KW_VARCHAR); } break; case PostgreSQLParser.KW_NATIONAL: this.enterOuterAlt(localContext, 3); { - this.state = 9566; + this.state = 9565; this.match(PostgreSQLParser.KW_NATIONAL); - this.state = 9567; + this.state = 9566; _la = this.tokenStream.LA(1); if(!(_la === 391 || _la === 392)) { this.errorHandler.recoverInline(this); @@ -51154,12 +49922,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9569; + this.state = 9568; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 992, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 990, this.context) ) { case 1: { - this.state = 9568; + this.state = 9567; this.opt_varying(); } break; @@ -51186,11 +49954,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_varying(): Opt_varyingContext { let localContext = new Opt_varyingContext(this.context, this.state); - this.enterRule(localContext, 1196, PostgreSQLParser.RULE_opt_varying); + this.enterRule(localContext, 1198, PostgreSQLParser.RULE_opt_varying); try { this.enterOuterAlt(localContext, 1); { - this.state = 9573; + this.state = 9572; this.match(PostgreSQLParser.KW_VARYING); } } @@ -51210,12 +49978,12 @@ export class PostgreSQLParser extends antlr.Parser { } public constdatetime(): ConstdatetimeContext { let localContext = new ConstdatetimeContext(this.context, this.state); - this.enterRule(localContext, 1198, PostgreSQLParser.RULE_constdatetime); + this.enterRule(localContext, 1200, PostgreSQLParser.RULE_constdatetime); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9575; + this.state = 9574; _la = this.tokenStream.LA(1); if(!(_la === 418 || _la === 419)) { this.errorHandler.recoverInline(this); @@ -51224,26 +49992,26 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9580; + this.state = 9579; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 994, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 992, this.context) ) { case 1: { - this.state = 9576; + this.state = 9575; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9577; + this.state = 9576; this.iconst(); - this.state = 9578; + this.state = 9577; this.match(PostgreSQLParser.CLOSE_PAREN); } break; } - this.state = 9583; + this.state = 9582; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { case 1: { - this.state = 9582; + this.state = 9581; this.opt_timezone(); } break; @@ -51266,11 +50034,11 @@ export class PostgreSQLParser extends antlr.Parser { } public constinterval(): ConstintervalContext { let localContext = new ConstintervalContext(this.context, this.state); - this.enterRule(localContext, 1200, PostgreSQLParser.RULE_constinterval); + this.enterRule(localContext, 1202, PostgreSQLParser.RULE_constinterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 9585; + this.state = 9584; this.match(PostgreSQLParser.KW_INTERVAL); } } @@ -51290,30 +50058,30 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_timezone(): Opt_timezoneContext { let localContext = new Opt_timezoneContext(this.context, this.state); - this.enterRule(localContext, 1202, PostgreSQLParser.RULE_opt_timezone); + this.enterRule(localContext, 1204, PostgreSQLParser.RULE_opt_timezone); try { - this.state = 9593; + this.state = 9592; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 9587; + this.state = 9586; this.match(PostgreSQLParser.KW_WITH); - this.state = 9588; + this.state = 9587; this.match(PostgreSQLParser.KW_TIME); - this.state = 9589; + this.state = 9588; this.match(PostgreSQLParser.KW_ZONE); } break; case PostgreSQLParser.KW_WITHOUT: this.enterOuterAlt(localContext, 2); { - this.state = 9590; + this.state = 9589; this.match(PostgreSQLParser.KW_WITHOUT); - this.state = 9591; + this.state = 9590; this.match(PostgreSQLParser.KW_TIME); - this.state = 9592; + this.state = 9591; this.match(PostgreSQLParser.KW_ZONE); } break; @@ -51337,89 +50105,89 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_interval(): Opt_intervalContext { let localContext = new Opt_intervalContext(this.context, this.state); - this.enterRule(localContext, 1204, PostgreSQLParser.RULE_opt_interval); + this.enterRule(localContext, 1206, PostgreSQLParser.RULE_opt_interval); try { - this.state = 9620; + this.state = 9619; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9595; + this.state = 9594; this.match(PostgreSQLParser.KW_YEAR); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9596; + this.state = 9595; this.match(PostgreSQLParser.KW_MONTH); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9597; + this.state = 9596; this.match(PostgreSQLParser.KW_DAY); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9598; + this.state = 9597; this.match(PostgreSQLParser.KW_HOUR); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9599; + this.state = 9598; this.match(PostgreSQLParser.KW_MINUTE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 9600; + this.state = 9599; this.interval_second(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 9601; + this.state = 9600; this.match(PostgreSQLParser.KW_YEAR); - this.state = 9602; + this.state = 9601; this.match(PostgreSQLParser.KW_TO); - this.state = 9603; + this.state = 9602; this.match(PostgreSQLParser.KW_MONTH); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 9604; + this.state = 9603; this.match(PostgreSQLParser.KW_DAY); - this.state = 9605; + this.state = 9604; this.match(PostgreSQLParser.KW_TO); - this.state = 9609; + this.state = 9608; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_HOUR: { - this.state = 9606; + this.state = 9605; this.match(PostgreSQLParser.KW_HOUR); } break; case PostgreSQLParser.KW_MINUTE: { - this.state = 9607; + this.state = 9606; this.match(PostgreSQLParser.KW_MINUTE); } break; case PostgreSQLParser.KW_SECOND: { - this.state = 9608; + this.state = 9607; this.interval_second(); } break; @@ -51431,22 +50199,22 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 9611; + this.state = 9610; this.match(PostgreSQLParser.KW_HOUR); - this.state = 9612; + this.state = 9611; this.match(PostgreSQLParser.KW_TO); - this.state = 9615; + this.state = 9614; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_MINUTE: { - this.state = 9613; + this.state = 9612; this.match(PostgreSQLParser.KW_MINUTE); } break; case PostgreSQLParser.KW_SECOND: { - this.state = 9614; + this.state = 9613; this.interval_second(); } break; @@ -51458,11 +50226,11 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 9617; + this.state = 9616; this.match(PostgreSQLParser.KW_MINUTE); - this.state = 9618; + this.state = 9617; this.match(PostgreSQLParser.KW_TO); - this.state = 9619; + this.state = 9618; this.interval_second(); } break; @@ -51484,22 +50252,22 @@ export class PostgreSQLParser extends antlr.Parser { } public interval_second(): Interval_secondContext { let localContext = new Interval_secondContext(this.context, this.state); - this.enterRule(localContext, 1206, PostgreSQLParser.RULE_interval_second); + this.enterRule(localContext, 1208, PostgreSQLParser.RULE_interval_second); try { this.enterOuterAlt(localContext, 1); { - this.state = 9622; + this.state = 9621; this.match(PostgreSQLParser.KW_SECOND); - this.state = 9627; + this.state = 9626; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: { - this.state = 9623; + this.state = 9622; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9624; + this.state = 9623; this.iconst(); - this.state = 9625; + this.state = 9624; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -51522,13 +50290,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_escape(): Opt_escapeContext { let localContext = new Opt_escapeContext(this.context, this.state); - this.enterRule(localContext, 1208, PostgreSQLParser.RULE_opt_escape); + this.enterRule(localContext, 1210, PostgreSQLParser.RULE_opt_escape); try { this.enterOuterAlt(localContext, 1); { - this.state = 9629; + this.state = 9628; this.match(PostgreSQLParser.KW_ESCAPE); - this.state = 9630; + this.state = 9629; this.a_expr(); } } @@ -51548,11 +50316,11 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr(): A_exprContext { let localContext = new A_exprContext(this.context, this.state); - this.enterRule(localContext, 1210, PostgreSQLParser.RULE_a_expr); + this.enterRule(localContext, 1212, PostgreSQLParser.RULE_a_expr); try { this.enterOuterAlt(localContext, 1); { - this.state = 9632; + this.state = 9631; this.a_expr_qual(); } } @@ -51572,18 +50340,18 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_qual(): A_expr_qualContext { let localContext = new A_expr_qualContext(this.context, this.state); - this.enterRule(localContext, 1212, PostgreSQLParser.RULE_a_expr_qual); + this.enterRule(localContext, 1214, PostgreSQLParser.RULE_a_expr_qual); try { this.enterOuterAlt(localContext, 1); { - this.state = 9634; + this.state = 9633; this.a_expr_lessless(); - this.state = 9636; + this.state = 9635; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { case 1: { - this.state = 9635; + this.state = 9634; this.qual_op(); } break; @@ -51606,22 +50374,22 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_lessless(): A_expr_lesslessContext { let localContext = new A_expr_lesslessContext(this.context, this.state); - this.enterRule(localContext, 1214, PostgreSQLParser.RULE_a_expr_lessless); + this.enterRule(localContext, 1216, PostgreSQLParser.RULE_a_expr_lessless); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9638; + this.state = 9637; this.a_expr_or(); - this.state = 9643; + this.state = 9642; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9639; + this.state = 9638; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 19)) { this.errorHandler.recoverInline(this); @@ -51630,14 +50398,14 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9640; + this.state = 9639; this.a_expr_or(); } } } - this.state = 9645; + this.state = 9644; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); } } } @@ -51657,30 +50425,30 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_or(): A_expr_orContext { let localContext = new A_expr_orContext(this.context, this.state); - this.enterRule(localContext, 1216, PostgreSQLParser.RULE_a_expr_or); + this.enterRule(localContext, 1218, PostgreSQLParser.RULE_a_expr_or); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9646; + this.state = 9645; this.a_expr_and(); - this.state = 9651; + this.state = 9650; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9647; + this.state = 9646; this.match(PostgreSQLParser.KW_OR); - this.state = 9648; + this.state = 9647; this.a_expr_and(); } } } - this.state = 9653; + this.state = 9652; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context); } } } @@ -51700,30 +50468,30 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_and(): A_expr_andContext { let localContext = new A_expr_andContext(this.context, this.state); - this.enterRule(localContext, 1218, PostgreSQLParser.RULE_a_expr_and); + this.enterRule(localContext, 1220, PostgreSQLParser.RULE_a_expr_and); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9654; + this.state = 9653; this.a_expr_in(); - this.state = 9659; + this.state = 9658; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9655; + this.state = 9654; this.match(PostgreSQLParser.KW_AND); - this.state = 9656; + this.state = 9655; this.a_expr_in(); } } } - this.state = 9661; + this.state = 9660; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context); } } } @@ -51743,31 +50511,31 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_in(): A_expr_inContext { let localContext = new A_expr_inContext(this.context, this.state); - this.enterRule(localContext, 1220, PostgreSQLParser.RULE_a_expr_in); + this.enterRule(localContext, 1222, PostgreSQLParser.RULE_a_expr_in); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9662; + this.state = 9661; this.a_expr_unary_not(); - this.state = 9668; + this.state = 9667; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { case 1: { - this.state = 9664; + this.state = 9663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 9663; + this.state = 9662; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 9666; + this.state = 9665; this.match(PostgreSQLParser.KW_IN); - this.state = 9667; + this.state = 9666; this.in_expr(); } break; @@ -51790,22 +50558,22 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_unary_not(): A_expr_unary_notContext { let localContext = new A_expr_unary_notContext(this.context, this.state); - this.enterRule(localContext, 1222, PostgreSQLParser.RULE_a_expr_unary_not); + this.enterRule(localContext, 1224, PostgreSQLParser.RULE_a_expr_unary_not); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9671; + this.state = 9670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 9670; + this.state = 9669; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 9673; + this.state = 9672; this.a_expr_isnull(); } } @@ -51825,19 +50593,19 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_isnull(): A_expr_isnullContext { let localContext = new A_expr_isnullContext(this.context, this.state); - this.enterRule(localContext, 1224, PostgreSQLParser.RULE_a_expr_isnull); + this.enterRule(localContext, 1226, PostgreSQLParser.RULE_a_expr_isnull); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9675; + this.state = 9674; this.a_expr_is_not(); - this.state = 9677; + this.state = 9676; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: { - this.state = 9676; + this.state = 9675; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -51867,82 +50635,82 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_is_not(): A_expr_is_notContext { let localContext = new A_expr_is_notContext(this.context, this.state); - this.enterRule(localContext, 1226, PostgreSQLParser.RULE_a_expr_is_not); + this.enterRule(localContext, 1228, PostgreSQLParser.RULE_a_expr_is_not); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9679; + this.state = 9678; this.a_expr_compare(); - this.state = 9703; + this.state = 9702; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context) ) { case 1: { - this.state = 9680; + this.state = 9679; this.match(PostgreSQLParser.KW_IS); - this.state = 9682; + this.state = 9681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 9681; + this.state = 9680; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 9701; + this.state = 9700; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NULL: { - this.state = 9684; + this.state = 9683; this.match(PostgreSQLParser.KW_NULL); } break; case PostgreSQLParser.KW_TRUE: { - this.state = 9685; + this.state = 9684; this.match(PostgreSQLParser.KW_TRUE); } break; case PostgreSQLParser.KW_FALSE: { - this.state = 9686; + this.state = 9685; this.match(PostgreSQLParser.KW_FALSE); } break; case PostgreSQLParser.KW_UNKNOWN: { - this.state = 9687; + this.state = 9686; this.match(PostgreSQLParser.KW_UNKNOWN); } break; case PostgreSQLParser.KW_DISTINCT: { - this.state = 9688; + this.state = 9687; this.match(PostgreSQLParser.KW_DISTINCT); - this.state = 9689; + this.state = 9688; this.match(PostgreSQLParser.KW_FROM); - this.state = 9690; + this.state = 9689; this.a_expr(); } break; case PostgreSQLParser.KW_OF: { - this.state = 9691; + this.state = 9690; this.match(PostgreSQLParser.KW_OF); - this.state = 9692; + this.state = 9691; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9693; + this.state = 9692; this.type_list(); - this.state = 9694; + this.state = 9693; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_DOCUMENT: { - this.state = 9696; + this.state = 9695; this.match(PostgreSQLParser.KW_DOCUMENT); } break; @@ -51952,17 +50720,17 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NFKC: case PostgreSQLParser.KW_NFKD: { - this.state = 9698; + this.state = 9697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0)) { { - this.state = 9697; + this.state = 9696; this.unicode_normal_form(); } } - this.state = 9700; + this.state = 9699; this.match(PostgreSQLParser.KW_NORMALIZED); } break; @@ -51990,19 +50758,19 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_compare(): A_expr_compareContext { let localContext = new A_expr_compareContext(this.context, this.state); - this.enterRule(localContext, 1228, PostgreSQLParser.RULE_a_expr_compare); + this.enterRule(localContext, 1230, PostgreSQLParser.RULE_a_expr_compare); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9705; + this.state = 9704; this.a_expr_like(); - this.state = 9717; + this.state = 9716; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { case 1: { - this.state = 9706; + this.state = 9705; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { this.errorHandler.recoverInline(this); @@ -52011,32 +50779,32 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9707; + this.state = 9706; this.a_expr_like(); } break; case 2: { - this.state = 9708; + this.state = 9707; this.subquery_Op(); - this.state = 9709; + this.state = 9708; this.sub_type(); - this.state = 9715; + this.state = 9714; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1013, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1011, this.context) ) { case 1: { - this.state = 9710; + this.state = 9709; this.select_with_parens(); } break; case 2: { - this.state = 9711; + this.state = 9710; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9712; + this.state = 9711; this.a_expr(); - this.state = 9713; + this.state = 9712; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -52062,61 +50830,61 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_like(): A_expr_likeContext { let localContext = new A_expr_likeContext(this.context, this.state); - this.enterRule(localContext, 1230, PostgreSQLParser.RULE_a_expr_like); + this.enterRule(localContext, 1232, PostgreSQLParser.RULE_a_expr_like); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9719; + this.state = 9718; this.a_expr_qual_op(); - this.state = 9737; + this.state = 9736; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { case 1: { - this.state = 9721; + this.state = 9720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 9720; + this.state = 9719; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 9731; + this.state = 9730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_LIKE: { - this.state = 9723; + this.state = 9722; this.match(PostgreSQLParser.KW_LIKE); } break; case PostgreSQLParser.KW_ILIKE: { - this.state = 9724; + this.state = 9723; this.match(PostgreSQLParser.KW_ILIKE); } break; case PostgreSQLParser.KW_SIMILAR: { - this.state = 9725; + this.state = 9724; this.match(PostgreSQLParser.KW_SIMILAR); - this.state = 9726; + this.state = 9725; this.match(PostgreSQLParser.KW_TO); } break; case PostgreSQLParser.KW_BETWEEN: { - this.state = 9727; + this.state = 9726; this.match(PostgreSQLParser.KW_BETWEEN); - this.state = 9729; + this.state = 9728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 9728; + this.state = 9727; this.match(PostgreSQLParser.KW_SYMMETRIC); } } @@ -52126,14 +50894,14 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 9733; + this.state = 9732; this.a_expr_qual_op(); - this.state = 9735; + this.state = 9734; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context) ) { case 1: { - this.state = 9734; + this.state = 9733; this.opt_escape(); } break; @@ -52159,30 +50927,30 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_qual_op(): A_expr_qual_opContext { let localContext = new A_expr_qual_opContext(this.context, this.state); - this.enterRule(localContext, 1232, PostgreSQLParser.RULE_a_expr_qual_op); + this.enterRule(localContext, 1234, PostgreSQLParser.RULE_a_expr_qual_op); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9739; + this.state = 9738; this.a_expr_unary_qualop(); - this.state = 9745; + this.state = 9744; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9740; + this.state = 9739; this.qual_op(); - this.state = 9741; + this.state = 9740; this.a_expr_unary_qualop(); } } } - this.state = 9747; + this.state = 9746; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); } } } @@ -52202,21 +50970,21 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_unary_qualop(): A_expr_unary_qualopContext { let localContext = new A_expr_unary_qualopContext(this.context, this.state); - this.enterRule(localContext, 1234, PostgreSQLParser.RULE_a_expr_unary_qualop); + this.enterRule(localContext, 1236, PostgreSQLParser.RULE_a_expr_unary_qualop); try { this.enterOuterAlt(localContext, 1); { - this.state = 9749; + this.state = 9748; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { case 1: { - this.state = 9748; + this.state = 9747; this.qual_op(); } break; } - this.state = 9751; + this.state = 9750; this.a_expr_add(); } } @@ -52236,22 +51004,22 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_add(): A_expr_addContext { let localContext = new A_expr_addContext(this.context, this.state); - this.enterRule(localContext, 1236, PostgreSQLParser.RULE_a_expr_add); + this.enterRule(localContext, 1238, PostgreSQLParser.RULE_a_expr_add); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9753; + this.state = 9752; this.a_expr_mul(); - this.state = 9758; + this.state = 9757; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9754; + this.state = 9753; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -52260,14 +51028,14 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9755; + this.state = 9754; this.a_expr_mul(); } } } - this.state = 9760; + this.state = 9759; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context); } } } @@ -52287,22 +51055,22 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_mul(): A_expr_mulContext { let localContext = new A_expr_mulContext(this.context, this.state); - this.enterRule(localContext, 1238, PostgreSQLParser.RULE_a_expr_mul); + this.enterRule(localContext, 1240, PostgreSQLParser.RULE_a_expr_mul); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9761; + this.state = 9760; this.a_expr_caret(); - this.state = 9766; + this.state = 9765; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9762; + this.state = 9761; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { this.errorHandler.recoverInline(this); @@ -52311,14 +51079,14 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9763; + this.state = 9762; this.a_expr_caret(); } } } - this.state = 9768; + this.state = 9767; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); } } } @@ -52338,20 +51106,20 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_caret(): A_expr_caretContext { let localContext = new A_expr_caretContext(this.context, this.state); - this.enterRule(localContext, 1240, PostgreSQLParser.RULE_a_expr_caret); + this.enterRule(localContext, 1242, PostgreSQLParser.RULE_a_expr_caret); try { this.enterOuterAlt(localContext, 1); { - this.state = 9769; + this.state = 9768; this.a_expr_unary_sign(); - this.state = 9772; + this.state = 9771; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context) ) { case 1: { - this.state = 9770; + this.state = 9769; this.match(PostgreSQLParser.CARET); - this.state = 9771; + this.state = 9770; this.a_expr(); } break; @@ -52374,17 +51142,17 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_unary_sign(): A_expr_unary_signContext { let localContext = new A_expr_unary_signContext(this.context, this.state); - this.enterRule(localContext, 1242, PostgreSQLParser.RULE_a_expr_unary_sign); + this.enterRule(localContext, 1244, PostgreSQLParser.RULE_a_expr_unary_sign); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9775; + this.state = 9774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 9774; + this.state = 9773; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -52396,7 +51164,7 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 9777; + this.state = 9776; this.a_expr_at_time_zone(); } } @@ -52416,24 +51184,24 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_at_time_zone(): A_expr_at_time_zoneContext { let localContext = new A_expr_at_time_zoneContext(this.context, this.state); - this.enterRule(localContext, 1244, PostgreSQLParser.RULE_a_expr_at_time_zone); + this.enterRule(localContext, 1246, PostgreSQLParser.RULE_a_expr_at_time_zone); try { this.enterOuterAlt(localContext, 1); { - this.state = 9779; + this.state = 9778; this.a_expr_collate(); - this.state = 9784; + this.state = 9783; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { case 1: { - this.state = 9780; + this.state = 9779; this.match(PostgreSQLParser.KW_AT); - this.state = 9781; + this.state = 9780; this.match(PostgreSQLParser.KW_TIME); - this.state = 9782; + this.state = 9781; this.match(PostgreSQLParser.KW_ZONE); - this.state = 9783; + this.state = 9782; this.a_expr(); } break; @@ -52456,20 +51224,20 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_collate(): A_expr_collateContext { let localContext = new A_expr_collateContext(this.context, this.state); - this.enterRule(localContext, 1246, PostgreSQLParser.RULE_a_expr_collate); + this.enterRule(localContext, 1248, PostgreSQLParser.RULE_a_expr_collate); try { this.enterOuterAlt(localContext, 1); { - this.state = 9786; + this.state = 9785; this.a_expr_typecast(); - this.state = 9789; + this.state = 9788; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { case 1: { - this.state = 9787; + this.state = 9786; this.match(PostgreSQLParser.KW_COLLATE); - this.state = 9788; + this.state = 9787; this.any_name(); } break; @@ -52492,28 +51260,30 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_typecast(): A_expr_typecastContext { let localContext = new A_expr_typecastContext(this.context, this.state); - this.enterRule(localContext, 1248, PostgreSQLParser.RULE_a_expr_typecast); - let _la: number; + this.enterRule(localContext, 1250, PostgreSQLParser.RULE_a_expr_typecast); try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9791; + this.state = 9790; this.c_expr(); - this.state = 9796; + this.state = 9795; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 26) { - { - { - this.state = 9792; - this.match(PostgreSQLParser.TYPECAST); - this.state = 9793; - this.typename(); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 9791; + this.match(PostgreSQLParser.TYPECAST); + this.state = 9792; + this.typename(); + } + } } - } - this.state = 9798; + this.state = 9797; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context); } } } @@ -52543,25 +51313,25 @@ export class PostgreSQLParser extends antlr.Parser { let parentState = this.state; let localContext = new B_exprContext(this.context, parentState); let previousContext = localContext; - let _startState = 1250; - this.enterRecursionRule(localContext, 1250, PostgreSQLParser.RULE_b_expr, _p); + let _startState = 1252; + this.enterRecursionRule(localContext, 1252, PostgreSQLParser.RULE_b_expr, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9806; + this.state = 9805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { case 1: { - this.state = 9800; + this.state = 9799; this.c_expr(); } break; case 2: { - this.state = 9801; + this.state = 9800; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -52570,23 +51340,23 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9802; + this.state = 9801; this.b_expr(9); } break; case 3: { - this.state = 9803; + this.state = 9802; this.qual_op(); - this.state = 9804; + this.state = 9803; this.b_expr(3); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 9847; + this.state = 9846; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -52594,20 +51364,20 @@ export class PostgreSQLParser extends antlr.Parser { } previousContext = localContext; { - this.state = 9845; + this.state = 9844; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1030, this.context) ) { case 1: { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9808; + this.state = 9807; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 9809; + this.state = 9808; this.match(PostgreSQLParser.CARET); - this.state = 9810; + this.state = 9809; this.b_expr(9); } break; @@ -52615,11 +51385,11 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9811; + this.state = 9810; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 9812; + this.state = 9811; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { this.errorHandler.recoverInline(this); @@ -52628,7 +51398,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9813; + this.state = 9812; this.b_expr(8); } break; @@ -52636,11 +51406,11 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9814; + this.state = 9813; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 9815; + this.state = 9814; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -52649,7 +51419,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9816; + this.state = 9815; this.b_expr(7); } break; @@ -52657,13 +51427,13 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9817; + this.state = 9816; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 9818; + this.state = 9817; this.qual_op(); - this.state = 9819; + this.state = 9818; this.b_expr(6); } break; @@ -52671,11 +51441,11 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9821; + this.state = 9820; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 9822; + this.state = 9821; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { this.errorHandler.recoverInline(this); @@ -52684,7 +51454,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9823; + this.state = 9822; this.b_expr(5); } break; @@ -52692,13 +51462,13 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9824; + this.state = 9823; if (!(this.precpred(this.context, 10))) { throw this.createFailedPredicateException("this.precpred(this.context, 10)"); } - this.state = 9825; + this.state = 9824; this.match(PostgreSQLParser.TYPECAST); - this.state = 9826; + this.state = 9825; this.typename(); } break; @@ -52706,11 +51476,11 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9827; + this.state = 9826; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 9828; + this.state = 9827; this.qual_op(); } break; @@ -52718,50 +51488,50 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9829; + this.state = 9828; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 9830; + this.state = 9829; this.match(PostgreSQLParser.KW_IS); - this.state = 9832; + this.state = 9831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 9831; + this.state = 9830; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 9843; + this.state = 9842; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DISTINCT: { - this.state = 9834; + this.state = 9833; this.match(PostgreSQLParser.KW_DISTINCT); - this.state = 9835; + this.state = 9834; this.match(PostgreSQLParser.KW_FROM); - this.state = 9836; + this.state = 9835; this.b_expr(0); } break; case PostgreSQLParser.KW_OF: { - this.state = 9837; + this.state = 9836; this.match(PostgreSQLParser.KW_OF); - this.state = 9838; + this.state = 9837; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9839; + this.state = 9838; this.type_list(); - this.state = 9840; + this.state = 9839; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_DOCUMENT: { - this.state = 9842; + this.state = 9841; this.match(PostgreSQLParser.KW_DOCUMENT); } break; @@ -52773,9 +51543,9 @@ export class PostgreSQLParser extends antlr.Parser { } } } - this.state = 9849; + this.state = 9848; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context); } } } @@ -52795,18 +51565,18 @@ export class PostgreSQLParser extends antlr.Parser { } public c_expr(): C_exprContext { let localContext = new C_exprContext(this.context, this.state); - this.enterRule(localContext, 1252, PostgreSQLParser.RULE_c_expr); + this.enterRule(localContext, 1254, PostgreSQLParser.RULE_c_expr); try { - this.state = 9886; + this.state = 9885; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context) ) { case 1: localContext = new C_expr_existsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 9850; + this.state = 9849; this.match(PostgreSQLParser.KW_EXISTS); - this.state = 9851; + this.state = 9850; this.select_with_parens(); } break; @@ -52814,20 +51584,20 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 9852; + this.state = 9851; this.match(PostgreSQLParser.KW_ARRAY); - this.state = 9855; + this.state = 9854; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: { - this.state = 9853; + this.state = 9852; this.select_with_parens(); } break; case PostgreSQLParser.OPEN_BRACKET: { - this.state = 9854; + this.state = 9853; this.array_expr(); } break; @@ -52840,9 +51610,9 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 9857; + this.state = 9856; this.match(PostgreSQLParser.PARAM); - this.state = 9858; + this.state = 9857; this.opt_indirection(); } break; @@ -52850,13 +51620,13 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 9859; + this.state = 9858; this.match(PostgreSQLParser.KW_GROUPING); - this.state = 9860; + this.state = 9859; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9861; + this.state = 9860; this.expr_list(); - this.state = 9862; + this.state = 9861; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -52864,9 +51634,9 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 9864; + this.state = 9863; this.match(PostgreSQLParser.KW_UNIQUE); - this.state = 9865; + this.state = 9864; this.select_with_parens(); } break; @@ -52874,7 +51644,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 9866; + this.state = 9865; this.aexprconst(); } break; @@ -52882,7 +51652,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 9867; + this.state = 9866; this.plsqlvariablename(); } break; @@ -52890,13 +51660,13 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 9868; + this.state = 9867; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9869; + this.state = 9868; (localContext as C_expr_exprContext)._a_expr_in_parens = this.a_expr(); - this.state = 9870; + this.state = 9869; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9871; + this.state = 9870; this.opt_indirection(); } break; @@ -52904,7 +51674,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_caseContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 9873; + this.state = 9872; this.case_expr(); } break; @@ -52912,7 +51682,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 9874; + this.state = 9873; this.func_expr(); } break; @@ -52920,14 +51690,14 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 9875; + this.state = 9874; this.select_with_parens(); - this.state = 9877; + this.state = 9876; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { case 1: { - this.state = 9876; + this.state = 9875; this.indirection(); } break; @@ -52938,7 +51708,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 9879; + this.state = 9878; this.explicit_row(); } break; @@ -52946,7 +51716,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 9880; + this.state = 9879; this.implicit_row(); } break; @@ -52954,11 +51724,11 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 9881; + this.state = 9880; this.row(); - this.state = 9882; + this.state = 9881; this.match(PostgreSQLParser.KW_OVERLAPS); - this.state = 9883; + this.state = 9882; this.row(); } break; @@ -52966,7 +51736,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 9885; + this.state = 9884; this.columnref(); } break; @@ -52988,11 +51758,11 @@ export class PostgreSQLParser extends antlr.Parser { } public plsqlvariablename(): PlsqlvariablenameContext { let localContext = new PlsqlvariablenameContext(this.context, this.state); - this.enterRule(localContext, 1254, PostgreSQLParser.RULE_plsqlvariablename); + this.enterRule(localContext, 1256, PostgreSQLParser.RULE_plsqlvariablename); try { this.enterOuterAlt(localContext, 1); { - this.state = 9888; + this.state = 9887; this.match(PostgreSQLParser.PLSQLVARIABLENAME); } } @@ -53012,21 +51782,21 @@ export class PostgreSQLParser extends antlr.Parser { } public func_application(): Func_applicationContext { let localContext = new Func_applicationContext(this.context, this.state); - this.enterRule(localContext, 1256, PostgreSQLParser.RULE_func_application); + this.enterRule(localContext, 1258, PostgreSQLParser.RULE_func_application); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9890; + this.state = 9889; this.function_name(); - this.state = 9916; + this.state = 9915; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { case 1: { - this.state = 9891; + this.state = 9890; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9913; + this.state = 9912; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -53477,28 +52247,28 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9892; + this.state = 9891; this.func_arg_list(); - this.state = 9896; + this.state = 9895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 9893; + this.state = 9892; this.match(PostgreSQLParser.COMMA); - this.state = 9894; + this.state = 9893; this.match(PostgreSQLParser.KW_VARIADIC); - this.state = 9895; + this.state = 9894; this.func_arg_expr(); } } - this.state = 9899; + this.state = 9898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 9898; + this.state = 9897; this.opt_sort_clause(); } } @@ -53507,16 +52277,16 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_VARIADIC: { - this.state = 9901; + this.state = 9900; this.match(PostgreSQLParser.KW_VARIADIC); - this.state = 9902; + this.state = 9901; this.func_arg_expr(); - this.state = 9904; + this.state = 9903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 9903; + this.state = 9902; this.opt_sort_clause(); } } @@ -53526,7 +52296,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ALL: case PostgreSQLParser.KW_DISTINCT: { - this.state = 9906; + this.state = 9905; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -53535,14 +52305,14 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9907; + this.state = 9906; this.func_arg_list(); - this.state = 9909; + this.state = 9908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 9908; + this.state = 9907; this.opt_sort_clause(); } } @@ -53551,7 +52321,7 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.STAR: { - this.state = 9911; + this.state = 9910; this.match(PostgreSQLParser.STAR); } break; @@ -53563,7 +52333,7 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 9915; + this.state = 9914; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53586,42 +52356,42 @@ export class PostgreSQLParser extends antlr.Parser { } public func_expr(): Func_exprContext { let localContext = new Func_exprContext(this.context, this.state); - this.enterRule(localContext, 1258, PostgreSQLParser.RULE_func_expr); + this.enterRule(localContext, 1260, PostgreSQLParser.RULE_func_expr); try { - this.state = 9929; + this.state = 9928; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9918; + this.state = 9917; this.func_application(); - this.state = 9920; + this.state = 9919; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { case 1: { - this.state = 9919; + this.state = 9918; this.within_group_clause(); } break; } - this.state = 9923; + this.state = 9922; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { case 1: { - this.state = 9922; + this.state = 9921; this.filter_clause(); } break; } - this.state = 9926; + this.state = 9925; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { case 1: { - this.state = 9925; + this.state = 9924; this.over_clause(); } break; @@ -53631,7 +52401,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9928; + this.state = 9927; this.func_expr_common_subexpr(); } break; @@ -53653,22 +52423,22 @@ export class PostgreSQLParser extends antlr.Parser { } public func_expr_windowless(): Func_expr_windowlessContext { let localContext = new Func_expr_windowlessContext(this.context, this.state); - this.enterRule(localContext, 1260, PostgreSQLParser.RULE_func_expr_windowless); + this.enterRule(localContext, 1262, PostgreSQLParser.RULE_func_expr_windowless); try { - this.state = 9933; + this.state = 9932; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9931; + this.state = 9930; this.func_application(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9932; + this.state = 9931; this.func_expr_common_subexpr(); } break; @@ -53690,49 +52460,49 @@ export class PostgreSQLParser extends antlr.Parser { } public func_expr_common_subexpr(): Func_expr_common_subexprContext { let localContext = new Func_expr_common_subexprContext(this.context, this.state); - this.enterRule(localContext, 1262, PostgreSQLParser.RULE_func_expr_common_subexpr); + this.enterRule(localContext, 1264, PostgreSQLParser.RULE_func_expr_common_subexpr); let _la: number; try { - this.state = 10119; + this.state = 10118; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_COLLATION: this.enterOuterAlt(localContext, 1); { - this.state = 9935; + this.state = 9934; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 9936; + this.state = 9935; this.match(PostgreSQLParser.KW_FOR); - this.state = 9937; + this.state = 9936; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9938; + this.state = 9937; this.a_expr(); - this.state = 9939; + this.state = 9938; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 2); { - this.state = 9941; + this.state = 9940; this.match(PostgreSQLParser.KW_CURRENT_DATE); } break; case PostgreSQLParser.KW_CURRENT_TIME: this.enterOuterAlt(localContext, 3); { - this.state = 9942; + this.state = 9941; this.match(PostgreSQLParser.KW_CURRENT_TIME); - this.state = 9947; + this.state = 9946; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { case 1: { - this.state = 9943; + this.state = 9942; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9944; + this.state = 9943; this.iconst(); - this.state = 9945; + this.state = 9944; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53742,18 +52512,18 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 4); { - this.state = 9949; + this.state = 9948; this.match(PostgreSQLParser.KW_CURRENT_TIMESTAMP); - this.state = 9954; + this.state = 9953; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: { - this.state = 9950; + this.state = 9949; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9951; + this.state = 9950; this.iconst(); - this.state = 9952; + this.state = 9951; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53763,18 +52533,18 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_LOCALTIME: this.enterOuterAlt(localContext, 5); { - this.state = 9956; + this.state = 9955; this.match(PostgreSQLParser.KW_LOCALTIME); - this.state = 9961; + this.state = 9960; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { case 1: { - this.state = 9957; + this.state = 9956; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9958; + this.state = 9957; this.iconst(); - this.state = 9959; + this.state = 9958; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53784,18 +52554,18 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 6); { - this.state = 9963; + this.state = 9962; this.match(PostgreSQLParser.KW_LOCALTIMESTAMP); - this.state = 9968; + this.state = 9967; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: { - this.state = 9964; + this.state = 9963; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9965; + this.state = 9964; this.iconst(); - this.state = 9966; + this.state = 9965; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53805,193 +52575,193 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CURRENT_ROLE: this.enterOuterAlt(localContext, 7); { - this.state = 9970; + this.state = 9969; this.match(PostgreSQLParser.KW_CURRENT_ROLE); } break; case PostgreSQLParser.KW_CURRENT_USER: this.enterOuterAlt(localContext, 8); { - this.state = 9971; + this.state = 9970; this.match(PostgreSQLParser.KW_CURRENT_USER); } break; case PostgreSQLParser.KW_SESSION_USER: this.enterOuterAlt(localContext, 9); { - this.state = 9972; + this.state = 9971; this.match(PostgreSQLParser.KW_SESSION_USER); } break; case PostgreSQLParser.KW_USER: this.enterOuterAlt(localContext, 10); { - this.state = 9973; + this.state = 9972; this.match(PostgreSQLParser.KW_USER); } break; case PostgreSQLParser.KW_CURRENT_CATALOG: this.enterOuterAlt(localContext, 11); { - this.state = 9974; + this.state = 9973; this.match(PostgreSQLParser.KW_CURRENT_CATALOG); } break; case PostgreSQLParser.KW_CURRENT_SCHEMA: this.enterOuterAlt(localContext, 12); { - this.state = 9975; + this.state = 9974; this.match(PostgreSQLParser.KW_CURRENT_SCHEMA); } break; case PostgreSQLParser.KW_CAST: this.enterOuterAlt(localContext, 13); { - this.state = 9976; + this.state = 9975; this.match(PostgreSQLParser.KW_CAST); - this.state = 9977; + this.state = 9976; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9978; + this.state = 9977; this.a_expr(); - this.state = 9979; + this.state = 9978; this.match(PostgreSQLParser.KW_AS); - this.state = 9980; + this.state = 9979; this.typename(); - this.state = 9981; + this.state = 9980; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_EXTRACT: this.enterOuterAlt(localContext, 14); { - this.state = 9983; + this.state = 9982; this.match(PostgreSQLParser.KW_EXTRACT); - this.state = 9984; + this.state = 9983; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9986; + this.state = 9985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2290106369) !== 0) || ((((_la - 167)) & ~0x1F) === 0 && ((1 << (_la - 167)) & 545) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 2057) !== 0) || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 428867841) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1059905) !== 0) || _la === 360 || _la === 384 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 100674083) !== 0) || _la === 584) { { - this.state = 9985; + this.state = 9984; this.extract_list(); } } - this.state = 9988; + this.state = 9987; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_NORMALIZE: this.enterOuterAlt(localContext, 15); { - this.state = 9989; + this.state = 9988; this.match(PostgreSQLParser.KW_NORMALIZE); - this.state = 9990; + this.state = 9989; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9991; + this.state = 9990; this.a_expr(); - this.state = 9994; + this.state = 9993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 9992; + this.state = 9991; this.match(PostgreSQLParser.COMMA); - this.state = 9993; + this.state = 9992; this.unicode_normal_form(); } } - this.state = 9996; + this.state = 9995; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_OVERLAY: this.enterOuterAlt(localContext, 16); { - this.state = 9998; + this.state = 9997; this.match(PostgreSQLParser.KW_OVERLAY); - this.state = 9999; + this.state = 9998; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10000; + this.state = 9999; this.overlay_list(); - this.state = 10001; + this.state = 10000; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_POSITION: this.enterOuterAlt(localContext, 17); { - this.state = 10003; + this.state = 10002; this.match(PostgreSQLParser.KW_POSITION); - this.state = 10004; + this.state = 10003; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10006; + this.state = 10005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894091) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10005; + this.state = 10004; this.position_list(); } } - this.state = 10008; + this.state = 10007; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 18); { - this.state = 10009; + this.state = 10008; this.match(PostgreSQLParser.KW_SUBSTRING); - this.state = 10010; + this.state = 10009; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10012; + this.state = 10011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10011; + this.state = 10010; this.substr_list(); } } - this.state = 10014; + this.state = 10013; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_TREAT: this.enterOuterAlt(localContext, 19); { - this.state = 10015; + this.state = 10014; this.match(PostgreSQLParser.KW_TREAT); - this.state = 10016; + this.state = 10015; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10017; + this.state = 10016; this.a_expr(); - this.state = 10018; + this.state = 10017; this.match(PostgreSQLParser.KW_AS); - this.state = 10019; + this.state = 10018; this.typename(); - this.state = 10020; + this.state = 10019; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_TRIM: this.enterOuterAlt(localContext, 20); { - this.state = 10022; + this.state = 10021; this.match(PostgreSQLParser.KW_TRIM); - this.state = 10023; + this.state = 10022; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10025; + this.state = 10024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 73 || _la === 95) { { - this.state = 10024; + this.state = 10023; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 73 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -54003,111 +52773,111 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 10027; + this.state = 10026; this.trim_list(); - this.state = 10028; + this.state = 10027; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_NULLIF: this.enterOuterAlt(localContext, 21); { - this.state = 10030; + this.state = 10029; this.match(PostgreSQLParser.KW_NULLIF); - this.state = 10031; + this.state = 10030; this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 10031; + this.a_expr(); this.state = 10032; - this.a_expr(); - this.state = 10033; this.match(PostgreSQLParser.COMMA); - this.state = 10034; + this.state = 10033; this.a_expr(); - this.state = 10035; + this.state = 10034; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_COALESCE: this.enterOuterAlt(localContext, 22); { - this.state = 10037; + this.state = 10036; this.match(PostgreSQLParser.KW_COALESCE); - this.state = 10038; + this.state = 10037; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10039; + this.state = 10038; this.expr_list(); - this.state = 10040; + this.state = 10039; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_GREATEST: this.enterOuterAlt(localContext, 23); { - this.state = 10042; + this.state = 10041; this.match(PostgreSQLParser.KW_GREATEST); - this.state = 10043; + this.state = 10042; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10044; + this.state = 10043; this.expr_list(); - this.state = 10045; + this.state = 10044; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_LEAST: this.enterOuterAlt(localContext, 24); { - this.state = 10047; + this.state = 10046; this.match(PostgreSQLParser.KW_LEAST); - this.state = 10048; + this.state = 10047; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10049; + this.state = 10048; this.expr_list(); - this.state = 10050; + this.state = 10049; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLCONCAT: this.enterOuterAlt(localContext, 25); { - this.state = 10052; + this.state = 10051; this.match(PostgreSQLParser.KW_XMLCONCAT); - this.state = 10053; + this.state = 10052; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10054; + this.state = 10053; this.expr_list(); - this.state = 10055; + this.state = 10054; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLELEMENT: this.enterOuterAlt(localContext, 26); { - this.state = 10057; + this.state = 10056; this.match(PostgreSQLParser.KW_XMLELEMENT); - this.state = 10058; + this.state = 10057; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10059; + this.state = 10058; this.match(PostgreSQLParser.KW_NAME); - this.state = 10060; + this.state = 10059; this.collabel(); - this.state = 10066; + this.state = 10065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 10061; + this.state = 10060; this.match(PostgreSQLParser.COMMA); - this.state = 10064; + this.state = 10063; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { case 1: { - this.state = 10062; + this.state = 10061; this.xml_attributes(); } break; case 2: { - this.state = 10063; + this.state = 10062; this.expr_list(); } break; @@ -54115,135 +52885,135 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 10068; + this.state = 10067; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLEXISTS: this.enterOuterAlt(localContext, 27); { - this.state = 10070; + this.state = 10069; this.match(PostgreSQLParser.KW_XMLEXISTS); - this.state = 10071; + this.state = 10070; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10072; + this.state = 10071; this.c_expr(); - this.state = 10073; + this.state = 10072; this.xmlexists_argument(); - this.state = 10074; + this.state = 10073; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLFOREST: this.enterOuterAlt(localContext, 28); { - this.state = 10076; + this.state = 10075; this.match(PostgreSQLParser.KW_XMLFOREST); - this.state = 10077; + this.state = 10076; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10078; + this.state = 10077; this.xml_attribute_list(); - this.state = 10079; + this.state = 10078; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLPARSE: this.enterOuterAlt(localContext, 29); { - this.state = 10081; + this.state = 10080; this.match(PostgreSQLParser.KW_XMLPARSE); - this.state = 10082; + this.state = 10081; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10083; + this.state = 10082; this.document_or_content(); - this.state = 10084; + this.state = 10083; this.a_expr(); - this.state = 10086; + this.state = 10085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 347) { { - this.state = 10085; + this.state = 10084; this.xml_whitespace_option(); } } - this.state = 10088; + this.state = 10087; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLPI: this.enterOuterAlt(localContext, 30); { - this.state = 10090; + this.state = 10089; this.match(PostgreSQLParser.KW_XMLPI); - this.state = 10091; + this.state = 10090; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10092; + this.state = 10091; this.match(PostgreSQLParser.KW_NAME); - this.state = 10093; + this.state = 10092; this.collabel(); - this.state = 10096; + this.state = 10095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 10094; + this.state = 10093; this.match(PostgreSQLParser.COMMA); - this.state = 10095; + this.state = 10094; this.a_expr(); } } - this.state = 10098; + this.state = 10097; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLROOT: this.enterOuterAlt(localContext, 31); { - this.state = 10100; + this.state = 10099; this.match(PostgreSQLParser.KW_XMLROOT); - this.state = 10101; + this.state = 10100; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10102; + this.state = 10101; this.match(PostgreSQLParser.KW_XML); - this.state = 10103; + this.state = 10102; this.a_expr(); - this.state = 10104; + this.state = 10103; this.match(PostgreSQLParser.COMMA); - this.state = 10105; + this.state = 10104; this.xml_root_version(); - this.state = 10107; + this.state = 10106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 10106; + this.state = 10105; this.opt_xml_root_standalone(); } } - this.state = 10109; + this.state = 10108; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLSERIALIZE: this.enterOuterAlt(localContext, 32); { - this.state = 10111; + this.state = 10110; this.match(PostgreSQLParser.KW_XMLSERIALIZE); - this.state = 10112; + this.state = 10111; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10113; + this.state = 10112; this.document_or_content(); - this.state = 10114; + this.state = 10113; this.a_expr(); - this.state = 10115; + this.state = 10114; this.match(PostgreSQLParser.KW_AS); - this.state = 10116; + this.state = 10115; this.simpletypename(); - this.state = 10117; + this.state = 10116; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -54267,28 +53037,28 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_root_version(): Xml_root_versionContext { let localContext = new Xml_root_versionContext(this.context, this.state); - this.enterRule(localContext, 1264, PostgreSQLParser.RULE_xml_root_version); + this.enterRule(localContext, 1266, PostgreSQLParser.RULE_xml_root_version); try { - this.state = 10126; + this.state = 10125; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10121; + this.state = 10120; this.match(PostgreSQLParser.KW_VERSION); - this.state = 10122; + this.state = 10121; this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10123; + this.state = 10122; this.match(PostgreSQLParser.KW_VERSION); - this.state = 10124; + this.state = 10123; this.match(PostgreSQLParser.KW_NO); - this.state = 10125; + this.state = 10124; this.match(PostgreSQLParser.KW_VALUE); } break; @@ -54310,43 +53080,43 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_xml_root_standalone(): Opt_xml_root_standaloneContext { let localContext = new Opt_xml_root_standaloneContext(this.context, this.state); - this.enterRule(localContext, 1266, PostgreSQLParser.RULE_opt_xml_root_standalone); + this.enterRule(localContext, 1268, PostgreSQLParser.RULE_opt_xml_root_standalone); try { - this.state = 10138; + this.state = 10137; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10128; + this.state = 10127; this.match(PostgreSQLParser.COMMA); - this.state = 10129; + this.state = 10128; this.match(PostgreSQLParser.KW_STANDALONE); - this.state = 10130; + this.state = 10129; this.match(PostgreSQLParser.KW_YES); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10131; + this.state = 10130; this.match(PostgreSQLParser.COMMA); - this.state = 10132; + this.state = 10131; this.match(PostgreSQLParser.KW_STANDALONE); - this.state = 10133; + this.state = 10132; this.match(PostgreSQLParser.KW_NO); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10134; + this.state = 10133; this.match(PostgreSQLParser.COMMA); - this.state = 10135; + this.state = 10134; this.match(PostgreSQLParser.KW_STANDALONE); - this.state = 10136; + this.state = 10135; this.match(PostgreSQLParser.KW_NO); - this.state = 10137; + this.state = 10136; this.match(PostgreSQLParser.KW_VALUE); } break; @@ -54368,17 +53138,17 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_attributes(): Xml_attributesContext { let localContext = new Xml_attributesContext(this.context, this.state); - this.enterRule(localContext, 1268, PostgreSQLParser.RULE_xml_attributes); + this.enterRule(localContext, 1270, PostgreSQLParser.RULE_xml_attributes); try { this.enterOuterAlt(localContext, 1); { - this.state = 10140; + this.state = 10139; this.match(PostgreSQLParser.KW_XMLATTRIBUTES); - this.state = 10141; + this.state = 10140; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10142; + this.state = 10141; this.xml_attribute_list(); - this.state = 10143; + this.state = 10142; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -54398,26 +53168,26 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_attribute_list(): Xml_attribute_listContext { let localContext = new Xml_attribute_listContext(this.context, this.state); - this.enterRule(localContext, 1270, PostgreSQLParser.RULE_xml_attribute_list); + this.enterRule(localContext, 1272, PostgreSQLParser.RULE_xml_attribute_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10145; + this.state = 10144; this.xml_attribute_el(); - this.state = 10150; + this.state = 10149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10146; + this.state = 10145; this.match(PostgreSQLParser.COMMA); - this.state = 10147; + this.state = 10146; this.xml_attribute_el(); } } - this.state = 10152; + this.state = 10151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -54439,21 +53209,21 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_attribute_el(): Xml_attribute_elContext { let localContext = new Xml_attribute_elContext(this.context, this.state); - this.enterRule(localContext, 1272, PostgreSQLParser.RULE_xml_attribute_el); + this.enterRule(localContext, 1274, PostgreSQLParser.RULE_xml_attribute_el); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10153; + this.state = 10152; this.a_expr(); - this.state = 10156; + this.state = 10155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 10154; + this.state = 10153; this.match(PostgreSQLParser.KW_AS); - this.state = 10155; + this.state = 10154; this.collabel(); } } @@ -54476,12 +53246,12 @@ export class PostgreSQLParser extends antlr.Parser { } public document_or_content(): Document_or_contentContext { let localContext = new Document_or_contentContext(this.context, this.state); - this.enterRule(localContext, 1274, PostgreSQLParser.RULE_document_or_content); + this.enterRule(localContext, 1276, PostgreSQLParser.RULE_document_or_content); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10158; + this.state = 10157; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -54508,26 +53278,26 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_whitespace_option(): Xml_whitespace_optionContext { let localContext = new Xml_whitespace_optionContext(this.context, this.state); - this.enterRule(localContext, 1276, PostgreSQLParser.RULE_xml_whitespace_option); + this.enterRule(localContext, 1278, PostgreSQLParser.RULE_xml_whitespace_option); try { - this.state = 10164; + this.state = 10163; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_PRESERVE: this.enterOuterAlt(localContext, 1); { - this.state = 10160; + this.state = 10159; this.match(PostgreSQLParser.KW_PRESERVE); - this.state = 10161; + this.state = 10160; this.match(PostgreSQLParser.KW_WHITESPACE); } break; case PostgreSQLParser.KW_STRIP: this.enterOuterAlt(localContext, 2); { - this.state = 10162; + this.state = 10161; this.match(PostgreSQLParser.KW_STRIP); - this.state = 10163; + this.state = 10162; this.match(PostgreSQLParser.KW_WHITESPACE); } break; @@ -54551,52 +53321,52 @@ export class PostgreSQLParser extends antlr.Parser { } public xmlexists_argument(): Xmlexists_argumentContext { let localContext = new Xmlexists_argumentContext(this.context, this.state); - this.enterRule(localContext, 1278, PostgreSQLParser.RULE_xmlexists_argument); + this.enterRule(localContext, 1280, PostgreSQLParser.RULE_xmlexists_argument); try { - this.state = 10181; + this.state = 10180; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10166; + this.state = 10165; this.match(PostgreSQLParser.KW_PASSING); - this.state = 10167; + this.state = 10166; this.c_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10168; + this.state = 10167; this.match(PostgreSQLParser.KW_PASSING); - this.state = 10169; + this.state = 10168; this.c_expr(); - this.state = 10170; + this.state = 10169; this.xml_passing_mech(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10172; + this.state = 10171; this.match(PostgreSQLParser.KW_PASSING); - this.state = 10173; + this.state = 10172; this.xml_passing_mech(); - this.state = 10174; + this.state = 10173; this.c_expr(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10176; + this.state = 10175; this.match(PostgreSQLParser.KW_PASSING); - this.state = 10177; + this.state = 10176; this.xml_passing_mech(); - this.state = 10178; + this.state = 10177; this.c_expr(); - this.state = 10179; + this.state = 10178; this.xml_passing_mech(); } break; @@ -54618,14 +53388,14 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_passing_mech(): Xml_passing_mechContext { let localContext = new Xml_passing_mechContext(this.context, this.state); - this.enterRule(localContext, 1280, PostgreSQLParser.RULE_xml_passing_mech); + this.enterRule(localContext, 1282, PostgreSQLParser.RULE_xml_passing_mech); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10183; + this.state = 10182; this.match(PostgreSQLParser.KW_BY); - this.state = 10184; + this.state = 10183; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -54652,19 +53422,19 @@ export class PostgreSQLParser extends antlr.Parser { } public within_group_clause(): Within_group_clauseContext { let localContext = new Within_group_clauseContext(this.context, this.state); - this.enterRule(localContext, 1282, PostgreSQLParser.RULE_within_group_clause); + this.enterRule(localContext, 1284, PostgreSQLParser.RULE_within_group_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10186; + this.state = 10185; this.match(PostgreSQLParser.KW_WITHIN); - this.state = 10187; + this.state = 10186; this.match(PostgreSQLParser.KW_GROUP); - this.state = 10188; + this.state = 10187; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10189; + this.state = 10188; this.sort_clause(); - this.state = 10190; + this.state = 10189; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -54684,19 +53454,19 @@ export class PostgreSQLParser extends antlr.Parser { } public filter_clause(): Filter_clauseContext { let localContext = new Filter_clauseContext(this.context, this.state); - this.enterRule(localContext, 1284, PostgreSQLParser.RULE_filter_clause); + this.enterRule(localContext, 1286, PostgreSQLParser.RULE_filter_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10192; + this.state = 10191; this.match(PostgreSQLParser.KW_FILTER); - this.state = 10193; + this.state = 10192; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10194; + this.state = 10193; this.match(PostgreSQLParser.KW_WHERE); - this.state = 10195; + this.state = 10194; this.a_expr(); - this.state = 10196; + this.state = 10195; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -54716,13 +53486,13 @@ export class PostgreSQLParser extends antlr.Parser { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 1286, PostgreSQLParser.RULE_window_clause); + this.enterRule(localContext, 1288, PostgreSQLParser.RULE_window_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10198; + this.state = 10197; this.match(PostgreSQLParser.KW_WINDOW); - this.state = 10199; + this.state = 10198; this.window_definition_list(); } } @@ -54742,30 +53512,30 @@ export class PostgreSQLParser extends antlr.Parser { } public window_definition_list(): Window_definition_listContext { let localContext = new Window_definition_listContext(this.context, this.state); - this.enterRule(localContext, 1288, PostgreSQLParser.RULE_window_definition_list); + this.enterRule(localContext, 1290, PostgreSQLParser.RULE_window_definition_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10201; + this.state = 10200; this.window_definition(); - this.state = 10206; + this.state = 10205; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10202; + this.state = 10201; this.match(PostgreSQLParser.COMMA); - this.state = 10203; + this.state = 10202; this.window_definition(); } } } - this.state = 10208; + this.state = 10207; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context); } } } @@ -54785,15 +53555,15 @@ export class PostgreSQLParser extends antlr.Parser { } public window_definition(): Window_definitionContext { let localContext = new Window_definitionContext(this.context, this.state); - this.enterRule(localContext, 1290, PostgreSQLParser.RULE_window_definition); + this.enterRule(localContext, 1292, PostgreSQLParser.RULE_window_definition); try { this.enterOuterAlt(localContext, 1); { - this.state = 10209; + this.state = 10208; this.colid(); - this.state = 10210; + this.state = 10209; this.match(PostgreSQLParser.KW_AS); - this.state = 10211; + this.state = 10210; this.window_specification(); } } @@ -54813,18 +53583,18 @@ export class PostgreSQLParser extends antlr.Parser { } public over_clause(): Over_clauseContext { let localContext = new Over_clauseContext(this.context, this.state); - this.enterRule(localContext, 1292, PostgreSQLParser.RULE_over_clause); + this.enterRule(localContext, 1294, PostgreSQLParser.RULE_over_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10213; + this.state = 10212; this.match(PostgreSQLParser.KW_OVER); - this.state = 10216; + this.state = 10215; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: { - this.state = 10214; + this.state = 10213; this.window_specification(); } break; @@ -55229,7 +53999,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 10215; + this.state = 10214; this.colid(); } break; @@ -55254,54 +54024,54 @@ export class PostgreSQLParser extends antlr.Parser { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 1294, PostgreSQLParser.RULE_window_specification); + this.enterRule(localContext, 1296, PostgreSQLParser.RULE_window_specification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10218; + this.state = 10217; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10220; + this.state = 10219; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1071, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { case 1: { - this.state = 10219; + this.state = 10218; this.opt_existing_window_name(); } break; } - this.state = 10223; + this.state = 10222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 285) { { - this.state = 10222; + this.state = 10221; this.opt_partition_clause(); } } - this.state = 10226; + this.state = 10225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 10225; + this.state = 10224; this.opt_sort_clause(); } } - this.state = 10229; + this.state = 10228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 299 || _la === 320 || _la === 481) { { - this.state = 10228; + this.state = 10227; this.opt_frame_clause(); } } - this.state = 10231; + this.state = 10230; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -55321,11 +54091,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_existing_window_name(): Opt_existing_window_nameContext { let localContext = new Opt_existing_window_nameContext(this.context, this.state); - this.enterRule(localContext, 1296, PostgreSQLParser.RULE_opt_existing_window_name); + this.enterRule(localContext, 1298, PostgreSQLParser.RULE_opt_existing_window_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 10233; + this.state = 10232; this.colid(); } } @@ -55345,15 +54115,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_partition_clause(): Opt_partition_clauseContext { let localContext = new Opt_partition_clauseContext(this.context, this.state); - this.enterRule(localContext, 1298, PostgreSQLParser.RULE_opt_partition_clause); + this.enterRule(localContext, 1300, PostgreSQLParser.RULE_opt_partition_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10235; + this.state = 10234; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 10236; + this.state = 10235; this.match(PostgreSQLParser.KW_BY); - this.state = 10237; + this.state = 10236; this.expr_list(); } } @@ -55373,25 +54143,25 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_frame_clause(): Opt_frame_clauseContext { let localContext = new Opt_frame_clauseContext(this.context, this.state); - this.enterRule(localContext, 1300, PostgreSQLParser.RULE_opt_frame_clause); + this.enterRule(localContext, 1302, PostgreSQLParser.RULE_opt_frame_clause); let _la: number; try { - this.state = 10254; + this.state = 10253; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 10239; + this.state = 10238; this.match(PostgreSQLParser.KW_RANGE); - this.state = 10240; + this.state = 10239; this.frame_extent(); - this.state = 10242; + this.state = 10241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 10241; + this.state = 10240; this.opt_window_exclusion_clause(); } } @@ -55401,16 +54171,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 10244; + this.state = 10243; this.match(PostgreSQLParser.KW_ROWS); - this.state = 10245; + this.state = 10244; this.frame_extent(); - this.state = 10247; + this.state = 10246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 10246; + this.state = 10245; this.opt_window_exclusion_clause(); } } @@ -55420,16 +54190,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_GROUPS: this.enterOuterAlt(localContext, 3); { - this.state = 10249; + this.state = 10248; this.match(PostgreSQLParser.KW_GROUPS); - this.state = 10250; + this.state = 10249; this.frame_extent(); - this.state = 10252; + this.state = 10251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 10251; + this.state = 10250; this.opt_window_exclusion_clause(); } } @@ -55456,28 +54226,28 @@ export class PostgreSQLParser extends antlr.Parser { } public frame_extent(): Frame_extentContext { let localContext = new Frame_extentContext(this.context, this.state); - this.enterRule(localContext, 1302, PostgreSQLParser.RULE_frame_extent); + this.enterRule(localContext, 1304, PostgreSQLParser.RULE_frame_extent); try { - this.state = 10262; + this.state = 10261; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1079, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10256; + this.state = 10255; this.frame_bound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10257; + this.state = 10256; this.match(PostgreSQLParser.KW_BETWEEN); - this.state = 10258; + this.state = 10257; this.frame_bound(); - this.state = 10259; + this.state = 10258; this.match(PostgreSQLParser.KW_AND); - this.state = 10260; + this.state = 10259; this.frame_bound(); } break; @@ -55499,18 +54269,18 @@ export class PostgreSQLParser extends antlr.Parser { } public frame_bound(): Frame_boundContext { let localContext = new Frame_boundContext(this.context, this.state); - this.enterRule(localContext, 1304, PostgreSQLParser.RULE_frame_bound); + this.enterRule(localContext, 1306, PostgreSQLParser.RULE_frame_bound); let _la: number; try { - this.state = 10271; + this.state = 10270; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1080, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10264; + this.state = 10263; this.match(PostgreSQLParser.KW_UNBOUNDED); - this.state = 10265; + this.state = 10264; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 289)) { this.errorHandler.recoverInline(this); @@ -55524,18 +54294,18 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10266; + this.state = 10265; this.match(PostgreSQLParser.KW_CURRENT); - this.state = 10267; + this.state = 10266; this.match(PostgreSQLParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10268; + this.state = 10267; this.a_expr(); - this.state = 10269; + this.state = 10268; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 289)) { this.errorHandler.recoverInline(this); @@ -55564,40 +54334,40 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_window_exclusion_clause(): Opt_window_exclusion_clauseContext { let localContext = new Opt_window_exclusion_clauseContext(this.context, this.state); - this.enterRule(localContext, 1306, PostgreSQLParser.RULE_opt_window_exclusion_clause); + this.enterRule(localContext, 1308, PostgreSQLParser.RULE_opt_window_exclusion_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10273; + this.state = 10272; this.match(PostgreSQLParser.KW_EXCLUDE); - this.state = 10280; + this.state = 10279; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CURRENT: { - this.state = 10274; + this.state = 10273; this.match(PostgreSQLParser.KW_CURRENT); - this.state = 10275; + this.state = 10274; this.match(PostgreSQLParser.KW_ROW); } break; case PostgreSQLParser.KW_GROUP: { - this.state = 10276; + this.state = 10275; this.match(PostgreSQLParser.KW_GROUP); } break; case PostgreSQLParser.KW_TIES: { - this.state = 10277; + this.state = 10276; this.match(PostgreSQLParser.KW_TIES); } break; case PostgreSQLParser.KW_NO: { - this.state = 10278; + this.state = 10277; this.match(PostgreSQLParser.KW_NO); - this.state = 10279; + this.state = 10278; this.match(PostgreSQLParser.KW_OTHERS); } break; @@ -55622,45 +54392,45 @@ export class PostgreSQLParser extends antlr.Parser { } public row(): RowContext { let localContext = new RowContext(this.context, this.state); - this.enterRule(localContext, 1308, PostgreSQLParser.RULE_row); + this.enterRule(localContext, 1310, PostgreSQLParser.RULE_row); let _la: number; try { - this.state = 10294; + this.state = 10293; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ROW: this.enterOuterAlt(localContext, 1); { - this.state = 10282; + this.state = 10281; this.match(PostgreSQLParser.KW_ROW); - this.state = 10283; + this.state = 10282; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10285; + this.state = 10284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10284; + this.state = 10283; this.expr_list(); } } - this.state = 10287; + this.state = 10286; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 10288; + this.state = 10287; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10289; + this.state = 10288; this.expr_list(); - this.state = 10290; + this.state = 10289; this.match(PostgreSQLParser.COMMA); - this.state = 10291; + this.state = 10290; this.a_expr(); - this.state = 10292; + this.state = 10291; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -55684,26 +54454,26 @@ export class PostgreSQLParser extends antlr.Parser { } public explicit_row(): Explicit_rowContext { let localContext = new Explicit_rowContext(this.context, this.state); - this.enterRule(localContext, 1310, PostgreSQLParser.RULE_explicit_row); + this.enterRule(localContext, 1312, PostgreSQLParser.RULE_explicit_row); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10296; + this.state = 10295; this.match(PostgreSQLParser.KW_ROW); - this.state = 10297; + this.state = 10296; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10299; + this.state = 10298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10298; + this.state = 10297; this.expr_list(); } } - this.state = 10301; + this.state = 10300; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -55723,19 +54493,19 @@ export class PostgreSQLParser extends antlr.Parser { } public implicit_row(): Implicit_rowContext { let localContext = new Implicit_rowContext(this.context, this.state); - this.enterRule(localContext, 1312, PostgreSQLParser.RULE_implicit_row); + this.enterRule(localContext, 1314, PostgreSQLParser.RULE_implicit_row); try { this.enterOuterAlt(localContext, 1); { - this.state = 10303; + this.state = 10302; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10304; + this.state = 10303; this.a_expr(); - this.state = 10305; + this.state = 10304; this.match(PostgreSQLParser.COMMA); - this.state = 10306; + this.state = 10305; this.expr_list(); - this.state = 10307; + this.state = 10306; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -55755,12 +54525,12 @@ export class PostgreSQLParser extends antlr.Parser { } public sub_type(): Sub_typeContext { let localContext = new Sub_typeContext(this.context, this.state); - this.enterRule(localContext, 1314, PostgreSQLParser.RULE_sub_type); + this.enterRule(localContext, 1316, PostgreSQLParser.RULE_sub_type); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10309; + this.state = 10308; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 34 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -55787,15 +54557,15 @@ export class PostgreSQLParser extends antlr.Parser { } public all_op(): All_opContext { let localContext = new All_opContext(this.context, this.state); - this.enterRule(localContext, 1316, PostgreSQLParser.RULE_all_op); + this.enterRule(localContext, 1318, PostgreSQLParser.RULE_all_op); try { - this.state = 10313; + this.state = 10312; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 10311; + this.state = 10310; this.match(PostgreSQLParser.Operator); } break; @@ -55813,7 +54583,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PERCENT: this.enterOuterAlt(localContext, 2); { - this.state = 10312; + this.state = 10311; this.mathop(); } break; @@ -55837,12 +54607,12 @@ export class PostgreSQLParser extends antlr.Parser { } public mathop(): MathopContext { let localContext = new MathopContext(this.context, this.state); - this.enterRule(localContext, 1318, PostgreSQLParser.RULE_mathop); + this.enterRule(localContext, 1320, PostgreSQLParser.RULE_mathop); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10315; + this.state = 10314; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 178517504) !== 0))) { this.errorHandler.recoverInline(this); @@ -55869,28 +54639,28 @@ export class PostgreSQLParser extends antlr.Parser { } public qual_op(): Qual_opContext { let localContext = new Qual_opContext(this.context, this.state); - this.enterRule(localContext, 1320, PostgreSQLParser.RULE_qual_op); + this.enterRule(localContext, 1322, PostgreSQLParser.RULE_qual_op); try { - this.state = 10323; + this.state = 10322; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 10317; + this.state = 10316; this.match(PostgreSQLParser.Operator); } break; case PostgreSQLParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 10318; + this.state = 10317; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 10319; + this.state = 10318; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10320; + this.state = 10319; this.any_operator(); - this.state = 10321; + this.state = 10320; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -55914,9 +54684,9 @@ export class PostgreSQLParser extends antlr.Parser { } public qual_all_op(): Qual_all_opContext { let localContext = new Qual_all_opContext(this.context, this.state); - this.enterRule(localContext, 1322, PostgreSQLParser.RULE_qual_all_op); + this.enterRule(localContext, 1324, PostgreSQLParser.RULE_qual_all_op); try { - this.state = 10331; + this.state = 10330; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.STAR: @@ -55934,20 +54704,20 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 10325; + this.state = 10324; this.all_op(); } break; case PostgreSQLParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 10326; + this.state = 10325; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 10327; + this.state = 10326; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10328; + this.state = 10327; this.any_operator(); - this.state = 10329; + this.state = 10328; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -55971,60 +54741,60 @@ export class PostgreSQLParser extends antlr.Parser { } public subquery_Op(): Subquery_OpContext { let localContext = new Subquery_OpContext(this.context, this.state); - this.enterRule(localContext, 1324, PostgreSQLParser.RULE_subquery_Op); + this.enterRule(localContext, 1326, PostgreSQLParser.RULE_subquery_Op); try { - this.state = 10345; + this.state = 10344; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10333; + this.state = 10332; this.all_op(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10334; + this.state = 10333; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 10335; + this.state = 10334; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10336; + this.state = 10335; this.any_operator(); - this.state = 10337; + this.state = 10336; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10339; + this.state = 10338; this.match(PostgreSQLParser.KW_LIKE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10340; + this.state = 10339; this.match(PostgreSQLParser.KW_NOT); - this.state = 10341; + this.state = 10340; this.match(PostgreSQLParser.KW_LIKE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10342; + this.state = 10341; this.match(PostgreSQLParser.KW_ILIKE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10343; + this.state = 10342; this.match(PostgreSQLParser.KW_NOT); - this.state = 10344; + this.state = 10343; this.match(PostgreSQLParser.KW_ILIKE); } break; @@ -56046,30 +54816,30 @@ export class PostgreSQLParser extends antlr.Parser { } public expr_list(): Expr_listContext { let localContext = new Expr_listContext(this.context, this.state); - this.enterRule(localContext, 1326, PostgreSQLParser.RULE_expr_list); + this.enterRule(localContext, 1328, PostgreSQLParser.RULE_expr_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10347; + this.state = 10346; this.a_expr(); - this.state = 10352; + this.state = 10351; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10348; + this.state = 10347; this.match(PostgreSQLParser.COMMA); - this.state = 10349; + this.state = 10348; this.a_expr(); } } } - this.state = 10354; + this.state = 10353; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context); } } } @@ -56089,26 +54859,26 @@ export class PostgreSQLParser extends antlr.Parser { } public column_expr_list_noparen(): Column_expr_list_noparenContext { let localContext = new Column_expr_list_noparenContext(this.context, this.state); - this.enterRule(localContext, 1328, PostgreSQLParser.RULE_column_expr_list_noparen); + this.enterRule(localContext, 1330, PostgreSQLParser.RULE_column_expr_list_noparen); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10355; + this.state = 10354; this.column_expr_noparen(); - this.state = 10360; + this.state = 10359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10356; + this.state = 10355; this.match(PostgreSQLParser.COMMA); - this.state = 10357; + this.state = 10356; this.column_expr_noparen(); } } - this.state = 10362; + this.state = 10361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -56130,26 +54900,26 @@ export class PostgreSQLParser extends antlr.Parser { } public column_expr_list(): Column_expr_listContext { let localContext = new Column_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1330, PostgreSQLParser.RULE_column_expr_list); + this.enterRule(localContext, 1332, PostgreSQLParser.RULE_column_expr_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10363; + this.state = 10362; this.column_expr(); - this.state = 10368; + this.state = 10367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10364; + this.state = 10363; this.match(PostgreSQLParser.COMMA); - this.state = 10365; + this.state = 10364; this.column_expr(); } } - this.state = 10370; + this.state = 10369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -56171,432 +54941,31 @@ export class PostgreSQLParser extends antlr.Parser { } public column_expr(): Column_exprContext { let localContext = new Column_exprContext(this.context, this.state); - this.enterRule(localContext, 1332, PostgreSQLParser.RULE_column_expr); + this.enterRule(localContext, 1334, PostgreSQLParser.RULE_column_expr); try { - this.state = 10376; + this.state = 10375; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSQLParser.KW_AND: - case PostgreSQLParser.KW_ARRAY: - case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_CONSTRAINT: - case PostgreSQLParser.KW_DEFAULT: - case PostgreSQLParser.KW_DO: - case PostgreSQLParser.KW_FETCH: - case PostgreSQLParser.KW_TABLE: - case PostgreSQLParser.KW_IS: - case PostgreSQLParser.KW_OUTER: - case PostgreSQLParser.KW_OVER: - case PostgreSQLParser.KW_ABORT: - case PostgreSQLParser.KW_ABSOLUTE: - case PostgreSQLParser.KW_ACCESS: - case PostgreSQLParser.KW_ACTION: - case PostgreSQLParser.KW_ADD: - case PostgreSQLParser.KW_ADMIN: - case PostgreSQLParser.KW_AFTER: - case PostgreSQLParser.KW_AGGREGATE: - case PostgreSQLParser.KW_ALSO: - case PostgreSQLParser.KW_ALTER: - case PostgreSQLParser.KW_ALWAYS: - case PostgreSQLParser.KW_ASSERTION: - case PostgreSQLParser.KW_ASSIGNMENT: - case PostgreSQLParser.KW_AT: - case PostgreSQLParser.KW_ATTRIBUTE: - case PostgreSQLParser.KW_BACKWARD: - case PostgreSQLParser.KW_BEFORE: - case PostgreSQLParser.KW_BEGIN: - case PostgreSQLParser.KW_BY: - case PostgreSQLParser.KW_CACHE: - case PostgreSQLParser.KW_CALLED: - case PostgreSQLParser.KW_CASCADE: - case PostgreSQLParser.KW_CASCADED: - case PostgreSQLParser.KW_CATALOG: - case PostgreSQLParser.KW_CHAIN: - case PostgreSQLParser.KW_CHARACTERISTICS: - case PostgreSQLParser.KW_CHECKPOINT: - case PostgreSQLParser.KW_CLASS: - case PostgreSQLParser.KW_CLOSE: - case PostgreSQLParser.KW_CLUSTER: - case PostgreSQLParser.KW_COMMENT: - case PostgreSQLParser.KW_COMMENTS: - case PostgreSQLParser.KW_COMMIT: - case PostgreSQLParser.KW_COMMITTED: - case PostgreSQLParser.KW_CONFIGURATION: - case PostgreSQLParser.KW_CONNECTION: - case PostgreSQLParser.KW_CONSTRAINTS: - case PostgreSQLParser.KW_CONTENT: - case PostgreSQLParser.KW_CONTINUE: - case PostgreSQLParser.KW_CONVERSION: - case PostgreSQLParser.KW_COPY: - case PostgreSQLParser.KW_COST: - case PostgreSQLParser.KW_CSV: - case PostgreSQLParser.KW_CURSOR: - case PostgreSQLParser.KW_CYCLE: - case PostgreSQLParser.KW_DATA: - case PostgreSQLParser.KW_DATABASE: - case PostgreSQLParser.KW_DAY: - case PostgreSQLParser.KW_DEALLOCATE: - case PostgreSQLParser.KW_DECLARE: - case PostgreSQLParser.KW_DEFAULTS: - case PostgreSQLParser.KW_DEFERRED: - case PostgreSQLParser.KW_DEFINER: - case PostgreSQLParser.KW_DELETE: - case PostgreSQLParser.KW_DELIMITER: - case PostgreSQLParser.KW_DELIMITERS: - case PostgreSQLParser.KW_DICTIONARY: - case PostgreSQLParser.KW_DISABLE: - case PostgreSQLParser.KW_DISCARD: - case PostgreSQLParser.KW_DOCUMENT: - case PostgreSQLParser.KW_DOMAIN: - case PostgreSQLParser.KW_DOUBLE: - case PostgreSQLParser.KW_DROP: - case PostgreSQLParser.KW_EACH: - case PostgreSQLParser.KW_ENABLE: - case PostgreSQLParser.KW_ENCODING: - case PostgreSQLParser.KW_ENCRYPTED: - case PostgreSQLParser.KW_ENUM: - case PostgreSQLParser.KW_ESCAPE: - case PostgreSQLParser.KW_EVENT: - case PostgreSQLParser.KW_EXCLUDE: - case PostgreSQLParser.KW_EXCLUDING: - case PostgreSQLParser.KW_EXCLUSIVE: - case PostgreSQLParser.KW_EXECUTE: - case PostgreSQLParser.KW_EXPLAIN: - case PostgreSQLParser.KW_EXTENSION: - case PostgreSQLParser.KW_EXTERNAL: - case PostgreSQLParser.KW_FAMILY: - case PostgreSQLParser.KW_FIRST: - case PostgreSQLParser.KW_FOLLOWING: - case PostgreSQLParser.KW_FORCE: - case PostgreSQLParser.KW_FORWARD: - case PostgreSQLParser.KW_FUNCTION: - case PostgreSQLParser.KW_FUNCTIONS: - case PostgreSQLParser.KW_GLOBAL: - case PostgreSQLParser.KW_GRANTED: - case PostgreSQLParser.KW_HANDLER: - case PostgreSQLParser.KW_HEADER: - case PostgreSQLParser.KW_HOLD: - case PostgreSQLParser.KW_HOUR: - case PostgreSQLParser.KW_IDENTITY: - case PostgreSQLParser.KW_IF: - case PostgreSQLParser.KW_IMMEDIATE: - case PostgreSQLParser.KW_IMMUTABLE: - case PostgreSQLParser.KW_IMPLICIT: - case PostgreSQLParser.KW_INCLUDING: - case PostgreSQLParser.KW_INCREMENT: - case PostgreSQLParser.KW_INDEX: - case PostgreSQLParser.KW_INDEXES: - case PostgreSQLParser.KW_INHERIT: - case PostgreSQLParser.KW_INHERITS: - case PostgreSQLParser.KW_INLINE: - case PostgreSQLParser.KW_INSENSITIVE: - case PostgreSQLParser.KW_INSERT: - case PostgreSQLParser.KW_INSTEAD: - case PostgreSQLParser.KW_INVOKER: - case PostgreSQLParser.KW_ISOLATION: - case PostgreSQLParser.KW_KEY: - case PostgreSQLParser.KW_LABEL: - case PostgreSQLParser.KW_LANGUAGE: - case PostgreSQLParser.KW_LARGE: - case PostgreSQLParser.KW_LAST: - case PostgreSQLParser.KW_LEAKPROOF: - case PostgreSQLParser.KW_LEVEL: - case PostgreSQLParser.KW_LISTEN: - case PostgreSQLParser.KW_LOAD: - case PostgreSQLParser.KW_LOCAL: - case PostgreSQLParser.KW_LOCATION: - case PostgreSQLParser.KW_LOCK: - case PostgreSQLParser.KW_MAPPING: - case PostgreSQLParser.KW_MATCH: - case PostgreSQLParser.KW_MATERIALIZED: - case PostgreSQLParser.KW_MAXVALUE: - case PostgreSQLParser.KW_MINUTE: - case PostgreSQLParser.KW_MINVALUE: - case PostgreSQLParser.KW_MODE: - case PostgreSQLParser.KW_MONTH: - case PostgreSQLParser.KW_MOVE: - case PostgreSQLParser.KW_NAME: - case PostgreSQLParser.KW_NAMES: - case PostgreSQLParser.KW_NEXT: - case PostgreSQLParser.KW_NO: - case PostgreSQLParser.KW_NOTHING: - case PostgreSQLParser.KW_NOTIFY: - case PostgreSQLParser.KW_NOWAIT: - case PostgreSQLParser.KW_NULLS: - case PostgreSQLParser.KW_OBJECT: - case PostgreSQLParser.KW_OF: - case PostgreSQLParser.KW_OFF: - case PostgreSQLParser.KW_OIDS: - case PostgreSQLParser.KW_OPERATOR: - case PostgreSQLParser.KW_OPTION: - case PostgreSQLParser.KW_OPTIONS: - case PostgreSQLParser.KW_OWNED: - case PostgreSQLParser.KW_OWNER: - case PostgreSQLParser.KW_PARSER: - case PostgreSQLParser.KW_PARTIAL: - case PostgreSQLParser.KW_PARTITION: - case PostgreSQLParser.KW_PASSING: - case PostgreSQLParser.KW_PASSWORD: - case PostgreSQLParser.KW_PLANS: - case PostgreSQLParser.KW_PRECEDING: - case PostgreSQLParser.KW_PREPARE: - case PostgreSQLParser.KW_PREPARED: - case PostgreSQLParser.KW_PRESERVE: - case PostgreSQLParser.KW_PRIOR: - case PostgreSQLParser.KW_PRIVILEGES: - case PostgreSQLParser.KW_PROCEDURAL: - case PostgreSQLParser.KW_PROCEDURE: - case PostgreSQLParser.KW_PROGRAM: - case PostgreSQLParser.KW_QUOTE: - case PostgreSQLParser.KW_RANGE: - case PostgreSQLParser.KW_READ: - case PostgreSQLParser.KW_REASSIGN: - case PostgreSQLParser.KW_RECHECK: - case PostgreSQLParser.KW_RECURSIVE: - case PostgreSQLParser.KW_REF: - case PostgreSQLParser.KW_REFRESH: - case PostgreSQLParser.KW_REINDEX: - case PostgreSQLParser.KW_RELATIVE: - case PostgreSQLParser.KW_RELEASE: - case PostgreSQLParser.KW_RENAME: - case PostgreSQLParser.KW_REPEATABLE: - case PostgreSQLParser.KW_REPLACE: - case PostgreSQLParser.KW_REPLICA: - case PostgreSQLParser.KW_RESET: - case PostgreSQLParser.KW_RESTART: - case PostgreSQLParser.KW_RESTRICT: - case PostgreSQLParser.KW_RETURNS: - case PostgreSQLParser.KW_REVOKE: - case PostgreSQLParser.KW_ROLE: - case PostgreSQLParser.KW_ROLLBACK: - case PostgreSQLParser.KW_ROWS: - case PostgreSQLParser.KW_RULE: - case PostgreSQLParser.KW_SAVEPOINT: - case PostgreSQLParser.KW_SCHEMA: - case PostgreSQLParser.KW_SCROLL: - case PostgreSQLParser.KW_SEARCH: - case PostgreSQLParser.KW_SECOND: - case PostgreSQLParser.KW_SECURITY: - case PostgreSQLParser.KW_SEQUENCE: - case PostgreSQLParser.KW_SEQUENCES: - case PostgreSQLParser.KW_SERIALIZABLE: - case PostgreSQLParser.KW_SERVER: - case PostgreSQLParser.KW_SESSION: - case PostgreSQLParser.KW_SET: - case PostgreSQLParser.KW_SHARE: - case PostgreSQLParser.KW_SHOW: - case PostgreSQLParser.KW_SIMPLE: - case PostgreSQLParser.KW_SNAPSHOT: - case PostgreSQLParser.KW_STABLE: - case PostgreSQLParser.KW_STANDALONE: - case PostgreSQLParser.KW_START: - case PostgreSQLParser.KW_STATEMENT: - case PostgreSQLParser.KW_STATISTICS: - case PostgreSQLParser.KW_STDIN: - case PostgreSQLParser.KW_STDOUT: - case PostgreSQLParser.KW_STORAGE: - case PostgreSQLParser.KW_STRICT: - case PostgreSQLParser.KW_STRIP: - case PostgreSQLParser.KW_SYSID: - case PostgreSQLParser.KW_SYSTEM: - case PostgreSQLParser.KW_TABLES: - case PostgreSQLParser.KW_TABLESPACE: - case PostgreSQLParser.KW_TEMP: - case PostgreSQLParser.KW_TEMPLATE: - case PostgreSQLParser.KW_TEMPORARY: - case PostgreSQLParser.KW_TEXT: - case PostgreSQLParser.KW_TRANSACTION: - case PostgreSQLParser.KW_TRIGGER: - case PostgreSQLParser.KW_TRUNCATE: - case PostgreSQLParser.KW_TRUSTED: - case PostgreSQLParser.KW_TYPE: - case PostgreSQLParser.KW_TYPES: - case PostgreSQLParser.KW_UNBOUNDED: - case PostgreSQLParser.KW_UNCOMMITTED: - case PostgreSQLParser.KW_UNENCRYPTED: - case PostgreSQLParser.KW_UNKNOWN: - case PostgreSQLParser.KW_UNLISTEN: - case PostgreSQLParser.KW_UNLOGGED: - case PostgreSQLParser.KW_UNTIL: - case PostgreSQLParser.KW_UPDATE: - case PostgreSQLParser.KW_VACUUM: - case PostgreSQLParser.KW_VALID: - case PostgreSQLParser.KW_VALIDATE: - case PostgreSQLParser.KW_VALIDATOR: - case PostgreSQLParser.KW_VARYING: - case PostgreSQLParser.KW_VERSION: - case PostgreSQLParser.KW_VIEW: - case PostgreSQLParser.KW_VOLATILE: - case PostgreSQLParser.KW_WHITESPACE: - case PostgreSQLParser.KW_WITHOUT: - case PostgreSQLParser.KW_WORK: - case PostgreSQLParser.KW_WRAPPER: - case PostgreSQLParser.KW_WRITE: - case PostgreSQLParser.KW_XML: - case PostgreSQLParser.KW_YEAR: - case PostgreSQLParser.KW_YES: - case PostgreSQLParser.KW_ZONE: - case PostgreSQLParser.KW_BETWEEN: - case PostgreSQLParser.KW_BIGINT: - case PostgreSQLParser.KW_BIT: - case PostgreSQLParser.KW_BOOLEAN: - case PostgreSQLParser.KW_CHAR: - case PostgreSQLParser.KW_CHARACTER: - case PostgreSQLParser.KW_COALESCE: - case PostgreSQLParser.KW_DEC: - case PostgreSQLParser.KW_DECIMAL: - case PostgreSQLParser.KW_EXISTS: - case PostgreSQLParser.KW_EXTRACT: - case PostgreSQLParser.KW_FLOAT: - case PostgreSQLParser.KW_GREATEST: - case PostgreSQLParser.KW_INOUT: - case PostgreSQLParser.KW_INT: - case PostgreSQLParser.KW_INTEGER: - case PostgreSQLParser.KW_INTERVAL: - case PostgreSQLParser.KW_LEAST: - case PostgreSQLParser.KW_NATIONAL: - case PostgreSQLParser.KW_NCHAR: - case PostgreSQLParser.KW_NONE: - case PostgreSQLParser.KW_NULLIF: - case PostgreSQLParser.KW_NUMERIC: - case PostgreSQLParser.KW_OVERLAY: - case PostgreSQLParser.KW_POSITION: - case PostgreSQLParser.KW_PRECISION: - case PostgreSQLParser.KW_REAL: - case PostgreSQLParser.KW_ROW: - case PostgreSQLParser.KW_SETOF: - case PostgreSQLParser.KW_SMALLINT: - case PostgreSQLParser.KW_SUBSTRING: - case PostgreSQLParser.KW_TIME: - case PostgreSQLParser.KW_TIMESTAMP: - case PostgreSQLParser.KW_TREAT: - case PostgreSQLParser.KW_TRIM: - case PostgreSQLParser.KW_VALUES: - case PostgreSQLParser.KW_VARCHAR: - case PostgreSQLParser.KW_XMLATTRIBUTES: - case PostgreSQLParser.KW_XMLCONCAT: - case PostgreSQLParser.KW_XMLELEMENT: - case PostgreSQLParser.KW_XMLEXISTS: - case PostgreSQLParser.KW_XMLFOREST: - case PostgreSQLParser.KW_XMLPARSE: - case PostgreSQLParser.KW_XMLPI: - case PostgreSQLParser.KW_XMLROOT: - case PostgreSQLParser.KW_XMLSERIALIZE: - case PostgreSQLParser.KW_CALL: - case PostgreSQLParser.KW_CURRENT: - case PostgreSQLParser.KW_ATTACH: - case PostgreSQLParser.KW_DETACH: - case PostgreSQLParser.KW_EXPRESSION: - case PostgreSQLParser.KW_GENERATED: - case PostgreSQLParser.KW_LOGGED: - case PostgreSQLParser.KW_STORED: - case PostgreSQLParser.KW_INCLUDE: - case PostgreSQLParser.KW_ROUTINE: - case PostgreSQLParser.KW_TRANSFORM: - case PostgreSQLParser.KW_IMPORT: - case PostgreSQLParser.KW_POLICY: - case PostgreSQLParser.KW_METHOD: - case PostgreSQLParser.KW_REFERENCING: - case PostgreSQLParser.KW_NEW: - case PostgreSQLParser.KW_OLD: - case PostgreSQLParser.KW_VALUE: - case PostgreSQLParser.KW_SUBSCRIPTION: - case PostgreSQLParser.KW_PUBLICATION: - case PostgreSQLParser.KW_OUT: - case PostgreSQLParser.KW_ROUTINES: - case PostgreSQLParser.KW_SCHEMAS: - case PostgreSQLParser.KW_PROCEDURES: - case PostgreSQLParser.KW_INPUT: - case PostgreSQLParser.KW_SUPPORT: - case PostgreSQLParser.KW_PARALLEL: - case PostgreSQLParser.KW_SQL: - case PostgreSQLParser.KW_DEPENDS: - case PostgreSQLParser.KW_OVERRIDING: - case PostgreSQLParser.KW_CONFLICT: - case PostgreSQLParser.KW_SKIP: - case PostgreSQLParser.KW_LOCKED: - case PostgreSQLParser.KW_TIES: - case PostgreSQLParser.KW_ROLLUP: - case PostgreSQLParser.KW_CUBE: - case PostgreSQLParser.KW_GROUPING: - case PostgreSQLParser.KW_SETS: - case PostgreSQLParser.KW_ORDINALITY: - case PostgreSQLParser.KW_XMLTABLE: - case PostgreSQLParser.KW_COLUMNS: - case PostgreSQLParser.KW_XMLNAMESPACES: - case PostgreSQLParser.KW_ROWTYPE: - case PostgreSQLParser.KW_NORMALIZED: - case PostgreSQLParser.KW_WITHIN: - case PostgreSQLParser.KW_FILTER: - case PostgreSQLParser.KW_GROUPS: - case PostgreSQLParser.KW_OTHERS: - case PostgreSQLParser.KW_NFC: - case PostgreSQLParser.KW_NFD: - case PostgreSQLParser.KW_NFKC: - case PostgreSQLParser.KW_NFKD: - case PostgreSQLParser.KW_UESCAPE: - case PostgreSQLParser.KW_VIEWS: - case PostgreSQLParser.KW_NORMALIZE: - case PostgreSQLParser.KW_DUMP: - case PostgreSQLParser.KW_PRINT_STRICT_PARAMS: - case PostgreSQLParser.KW_VARIABLE_CONFLICT: - case PostgreSQLParser.KW_ERROR: - case PostgreSQLParser.KW_USE_VARIABLE: - case PostgreSQLParser.KW_USE_COLUMN: - case PostgreSQLParser.KW_ALIAS: - case PostgreSQLParser.KW_CONSTANT: - case PostgreSQLParser.KW_PERFORM: - case PostgreSQLParser.KW_GET: - case PostgreSQLParser.KW_DIAGNOSTICS: - case PostgreSQLParser.KW_STACKED: - case PostgreSQLParser.KW_ELSIF: - case PostgreSQLParser.KW_REVERSE: - case PostgreSQLParser.KW_SLICE: - case PostgreSQLParser.KW_EXIT: - case PostgreSQLParser.KW_RETURN: - case PostgreSQLParser.KW_QUERY: - case PostgreSQLParser.KW_RAISE: - case PostgreSQLParser.KW_SQLSTATE: - case PostgreSQLParser.KW_DEBUG: - case PostgreSQLParser.KW_LOG: - case PostgreSQLParser.KW_INFO: - case PostgreSQLParser.KW_NOTICE: - case PostgreSQLParser.KW_WARNING: - case PostgreSQLParser.KW_EXCEPTION: - case PostgreSQLParser.KW_ASSERT: - case PostgreSQLParser.KW_OPEN: - case PostgreSQLParser.KW_SKIP_LOCKED: - case PostgreSQLParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSQLParser.Identifier: - case PostgreSQLParser.QuotedIdentifier: - case PostgreSQLParser.UnicodeQuotedIdentifier: - case PostgreSQLParser.StringConstant: - case PostgreSQLParser.UnicodeEscapeStringConstant: - case PostgreSQLParser.BeginDollarStringConstant: - case PostgreSQLParser.PLSQLVARIABLENAME: - case PostgreSQLParser.PLSQLIDENTIFIER: - case PostgreSQLParser.EscapeStringConstant: + switch (this.interpreter.adaptivePredict(this.tokenStream, 1090, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10371; - this.column_name(); - } - break; - case PostgreSQLParser.OPEN_PAREN: - this.enterOuterAlt(localContext, 2); { - { - this.state = 10372; + this.state = 10370; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10373; + this.state = 10371; this.a_expr(); - this.state = 10374; + this.state = 10372; this.match(PostgreSQLParser.CLOSE_PAREN); } } break; - default: - throw new antlr.NoViableAltException(this); + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 10374; + this.column_name(); + } + break; } } catch (re) { @@ -56615,23 +54984,23 @@ export class PostgreSQLParser extends antlr.Parser { } public column_expr_noparen(): Column_expr_noparenContext { let localContext = new Column_expr_noparenContext(this.context, this.state); - this.enterRule(localContext, 1334, PostgreSQLParser.RULE_column_expr_noparen); + this.enterRule(localContext, 1336, PostgreSQLParser.RULE_column_expr_noparen); try { - this.state = 10380; + this.state = 10379; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10378; - this.column_name(); + this.state = 10377; + this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10379; - this.a_expr(); + this.state = 10378; + this.column_name(); } break; } @@ -56652,30 +55021,30 @@ export class PostgreSQLParser extends antlr.Parser { } public func_arg_list(): Func_arg_listContext { let localContext = new Func_arg_listContext(this.context, this.state); - this.enterRule(localContext, 1336, PostgreSQLParser.RULE_func_arg_list); + this.enterRule(localContext, 1338, PostgreSQLParser.RULE_func_arg_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10382; + this.state = 10381; this.func_arg_expr(); - this.state = 10387; + this.state = 10386; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10383; + this.state = 10382; this.match(PostgreSQLParser.COMMA); - this.state = 10384; + this.state = 10383; this.func_arg_expr(); } } } - this.state = 10389; + this.state = 10388; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context); } } } @@ -56695,25 +55064,25 @@ export class PostgreSQLParser extends antlr.Parser { } public func_arg_expr(): Func_arg_exprContext { let localContext = new Func_arg_exprContext(this.context, this.state); - this.enterRule(localContext, 1338, PostgreSQLParser.RULE_func_arg_expr); + this.enterRule(localContext, 1340, PostgreSQLParser.RULE_func_arg_expr); let _la: number; try { - this.state = 10395; + this.state = 10394; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10390; + this.state = 10389; this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10391; + this.state = 10390; this.param_name(); - this.state = 10392; + this.state = 10391; _la = this.tokenStream.LA(1); if(!(_la === 20 || _la === 22)) { this.errorHandler.recoverInline(this); @@ -56722,7 +55091,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 10393; + this.state = 10392; this.a_expr(); } break; @@ -56744,26 +55113,26 @@ export class PostgreSQLParser extends antlr.Parser { } public type_list(): Type_listContext { let localContext = new Type_listContext(this.context, this.state); - this.enterRule(localContext, 1340, PostgreSQLParser.RULE_type_list); + this.enterRule(localContext, 1342, PostgreSQLParser.RULE_type_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10397; + this.state = 10396; this.typename(); - this.state = 10402; + this.state = 10401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10398; + this.state = 10397; this.match(PostgreSQLParser.COMMA); - this.state = 10399; + this.state = 10398; this.typename(); } } - this.state = 10404; + this.state = 10403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -56785,13 +55154,13 @@ export class PostgreSQLParser extends antlr.Parser { } public array_expr(): Array_exprContext { let localContext = new Array_exprContext(this.context, this.state); - this.enterRule(localContext, 1342, PostgreSQLParser.RULE_array_expr); + this.enterRule(localContext, 1344, PostgreSQLParser.RULE_array_expr); try { this.enterOuterAlt(localContext, 1); { - this.state = 10405; + this.state = 10404; this.match(PostgreSQLParser.OPEN_BRACKET); - this.state = 10408; + this.state = 10407; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -57242,13 +55611,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 10406; + this.state = 10405; this.expr_list(); } break; case PostgreSQLParser.OPEN_BRACKET: { - this.state = 10407; + this.state = 10406; this.array_expr_list(); } break; @@ -57257,7 +55626,7 @@ export class PostgreSQLParser extends antlr.Parser { default: break; } - this.state = 10410; + this.state = 10409; this.match(PostgreSQLParser.CLOSE_BRACKET); } } @@ -57277,26 +55646,26 @@ export class PostgreSQLParser extends antlr.Parser { } public array_expr_list(): Array_expr_listContext { let localContext = new Array_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1344, PostgreSQLParser.RULE_array_expr_list); + this.enterRule(localContext, 1346, PostgreSQLParser.RULE_array_expr_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10412; + this.state = 10411; this.array_expr(); - this.state = 10417; + this.state = 10416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10413; + this.state = 10412; this.match(PostgreSQLParser.COMMA); - this.state = 10414; + this.state = 10413; this.array_expr(); } } - this.state = 10419; + this.state = 10418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -57318,15 +55687,15 @@ export class PostgreSQLParser extends antlr.Parser { } public extract_list(): Extract_listContext { let localContext = new Extract_listContext(this.context, this.state); - this.enterRule(localContext, 1346, PostgreSQLParser.RULE_extract_list); + this.enterRule(localContext, 1348, PostgreSQLParser.RULE_extract_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 10420; + this.state = 10419; this.extract_arg(); - this.state = 10421; + this.state = 10420; this.match(PostgreSQLParser.KW_FROM); - this.state = 10422; + this.state = 10421; this.a_expr(); } } @@ -57346,64 +55715,64 @@ export class PostgreSQLParser extends antlr.Parser { } public extract_arg(): Extract_argContext { let localContext = new Extract_argContext(this.context, this.state); - this.enterRule(localContext, 1348, PostgreSQLParser.RULE_extract_arg); + this.enterRule(localContext, 1350, PostgreSQLParser.RULE_extract_arg); try { - this.state = 10432; + this.state = 10431; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10424; + this.state = 10423; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10425; + this.state = 10424; this.match(PostgreSQLParser.KW_YEAR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10426; + this.state = 10425; this.match(PostgreSQLParser.KW_MONTH); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10427; + this.state = 10426; this.match(PostgreSQLParser.KW_DAY); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10428; + this.state = 10427; this.match(PostgreSQLParser.KW_HOUR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10429; + this.state = 10428; this.match(PostgreSQLParser.KW_MINUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 10430; + this.state = 10429; this.match(PostgreSQLParser.KW_SECOND); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 10431; + this.state = 10430; this.sconst(); } break; @@ -57425,12 +55794,12 @@ export class PostgreSQLParser extends antlr.Parser { } public unicode_normal_form(): Unicode_normal_formContext { let localContext = new Unicode_normal_formContext(this.context, this.state); - this.enterRule(localContext, 1350, PostgreSQLParser.RULE_unicode_normal_form); + this.enterRule(localContext, 1352, PostgreSQLParser.RULE_unicode_normal_form); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10434; + this.state = 10433; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -57457,29 +55826,29 @@ export class PostgreSQLParser extends antlr.Parser { } public overlay_list(): Overlay_listContext { let localContext = new Overlay_listContext(this.context, this.state); - this.enterRule(localContext, 1352, PostgreSQLParser.RULE_overlay_list); + this.enterRule(localContext, 1354, PostgreSQLParser.RULE_overlay_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { + this.state = 10435; + this.a_expr(); this.state = 10436; - this.a_expr(); - this.state = 10437; this.match(PostgreSQLParser.KW_PLACING); + this.state = 10437; + this.a_expr(); this.state = 10438; - this.a_expr(); - this.state = 10439; this.match(PostgreSQLParser.KW_FROM); - this.state = 10440; + this.state = 10439; this.a_expr(); - this.state = 10443; + this.state = 10442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 10441; + this.state = 10440; this.match(PostgreSQLParser.KW_FOR); - this.state = 10442; + this.state = 10441; this.a_expr(); } } @@ -57502,15 +55871,15 @@ export class PostgreSQLParser extends antlr.Parser { } public position_list(): Position_listContext { let localContext = new Position_listContext(this.context, this.state); - this.enterRule(localContext, 1354, PostgreSQLParser.RULE_position_list); + this.enterRule(localContext, 1356, PostgreSQLParser.RULE_position_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 10445; + this.state = 10444; this.b_expr(0); - this.state = 10446; + this.state = 10445; this.match(PostgreSQLParser.KW_IN); - this.state = 10447; + this.state = 10446; this.b_expr(0); } } @@ -57530,82 +55899,82 @@ export class PostgreSQLParser extends antlr.Parser { } public substr_list(): Substr_listContext { let localContext = new Substr_listContext(this.context, this.state); - this.enterRule(localContext, 1356, PostgreSQLParser.RULE_substr_list); + this.enterRule(localContext, 1358, PostgreSQLParser.RULE_substr_list); try { - this.state = 10476; + this.state = 10475; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { + this.state = 10448; + this.a_expr(); this.state = 10449; - this.a_expr(); - this.state = 10450; this.match(PostgreSQLParser.KW_FROM); - this.state = 10451; + this.state = 10450; this.a_expr(); - this.state = 10452; + this.state = 10451; this.match(PostgreSQLParser.KW_FOR); - this.state = 10453; + this.state = 10452; this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { + this.state = 10454; + this.a_expr(); this.state = 10455; - this.a_expr(); - this.state = 10456; this.match(PostgreSQLParser.KW_FOR); - this.state = 10457; + this.state = 10456; this.a_expr(); - this.state = 10458; + this.state = 10457; this.match(PostgreSQLParser.KW_FROM); - this.state = 10459; + this.state = 10458; this.a_expr(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10461; + this.state = 10460; this.a_expr(); - this.state = 10462; + this.state = 10461; this.match(PostgreSQLParser.KW_FROM); - this.state = 10463; + this.state = 10462; this.a_expr(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10465; + this.state = 10464; this.a_expr(); - this.state = 10466; + this.state = 10465; this.match(PostgreSQLParser.KW_FOR); - this.state = 10467; + this.state = 10466; this.a_expr(); } break; case 5: this.enterOuterAlt(localContext, 5); { + this.state = 10468; + this.a_expr(); this.state = 10469; - this.a_expr(); - this.state = 10470; this.match(PostgreSQLParser.KW_SIMILAR); - this.state = 10471; + this.state = 10470; this.a_expr(); - this.state = 10472; + this.state = 10471; this.match(PostgreSQLParser.KW_ESCAPE); - this.state = 10473; + this.state = 10472; this.a_expr(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10475; + this.state = 10474; this.expr_list(); } break; @@ -57627,35 +55996,35 @@ export class PostgreSQLParser extends antlr.Parser { } public trim_list(): Trim_listContext { let localContext = new Trim_listContext(this.context, this.state); - this.enterRule(localContext, 1358, PostgreSQLParser.RULE_trim_list); + this.enterRule(localContext, 1360, PostgreSQLParser.RULE_trim_list); try { - this.state = 10485; + this.state = 10484; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10478; + this.state = 10477; this.a_expr(); - this.state = 10479; + this.state = 10478; this.match(PostgreSQLParser.KW_FROM); - this.state = 10480; + this.state = 10479; this.expr_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10482; + this.state = 10481; this.match(PostgreSQLParser.KW_FROM); - this.state = 10483; + this.state = 10482; this.expr_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10484; + this.state = 10483; this.expr_list(); } break; @@ -57677,16 +56046,16 @@ export class PostgreSQLParser extends antlr.Parser { } public in_expr(): In_exprContext { let localContext = new In_exprContext(this.context, this.state); - this.enterRule(localContext, 1360, PostgreSQLParser.RULE_in_expr); + this.enterRule(localContext, 1362, PostgreSQLParser.RULE_in_expr); try { - this.state = 10492; + this.state = 10491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { case 1: localContext = new In_expr_selectContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10487; + this.state = 10486; this.select_with_parens(); } break; @@ -57694,11 +56063,11 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new In_expr_listContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 10488; + this.state = 10487; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10489; + this.state = 10488; this.expr_list(); - this.state = 10490; + this.state = 10489; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -57720,36 +56089,36 @@ export class PostgreSQLParser extends antlr.Parser { } public case_expr(): Case_exprContext { let localContext = new Case_exprContext(this.context, this.state); - this.enterRule(localContext, 1362, PostgreSQLParser.RULE_case_expr); + this.enterRule(localContext, 1364, PostgreSQLParser.RULE_case_expr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10494; + this.state = 10493; this.match(PostgreSQLParser.KW_CASE); - this.state = 10496; + this.state = 10495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10495; + this.state = 10494; this.case_arg(); } } - this.state = 10498; + this.state = 10497; this.when_clause_list(); - this.state = 10500; + this.state = 10499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 10499; + this.state = 10498; this.case_default(); } } - this.state = 10502; + this.state = 10501; this.match(PostgreSQLParser.KW_END); } } @@ -57769,22 +56138,22 @@ export class PostgreSQLParser extends antlr.Parser { } public when_clause_list(): When_clause_listContext { let localContext = new When_clause_listContext(this.context, this.state); - this.enterRule(localContext, 1364, PostgreSQLParser.RULE_when_clause_list); + this.enterRule(localContext, 1366, PostgreSQLParser.RULE_when_clause_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10505; + this.state = 10504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 10504; + this.state = 10503; this.when_clause(); } } - this.state = 10507; + this.state = 10506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -57806,17 +56175,17 @@ export class PostgreSQLParser extends antlr.Parser { } public when_clause(): When_clauseContext { let localContext = new When_clauseContext(this.context, this.state); - this.enterRule(localContext, 1366, PostgreSQLParser.RULE_when_clause); + this.enterRule(localContext, 1368, PostgreSQLParser.RULE_when_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10509; + this.state = 10508; this.match(PostgreSQLParser.KW_WHEN); - this.state = 10510; + this.state = 10509; this.a_expr(); - this.state = 10511; + this.state = 10510; this.match(PostgreSQLParser.KW_THEN); - this.state = 10512; + this.state = 10511; this.a_expr(); } } @@ -57836,13 +56205,13 @@ export class PostgreSQLParser extends antlr.Parser { } public case_default(): Case_defaultContext { let localContext = new Case_defaultContext(this.context, this.state); - this.enterRule(localContext, 1368, PostgreSQLParser.RULE_case_default); + this.enterRule(localContext, 1370, PostgreSQLParser.RULE_case_default); try { this.enterOuterAlt(localContext, 1); { - this.state = 10514; + this.state = 10513; this.match(PostgreSQLParser.KW_ELSE); - this.state = 10515; + this.state = 10514; this.a_expr(); } } @@ -57862,11 +56231,11 @@ export class PostgreSQLParser extends antlr.Parser { } public case_arg(): Case_argContext { let localContext = new Case_argContext(this.context, this.state); - this.enterRule(localContext, 1370, PostgreSQLParser.RULE_case_arg); + this.enterRule(localContext, 1372, PostgreSQLParser.RULE_case_arg); try { this.enterOuterAlt(localContext, 1); { - this.state = 10517; + this.state = 10516; this.a_expr(); } } @@ -57886,18 +56255,18 @@ export class PostgreSQLParser extends antlr.Parser { } public columnref(): ColumnrefContext { let localContext = new ColumnrefContext(this.context, this.state); - this.enterRule(localContext, 1372, PostgreSQLParser.RULE_columnref); + this.enterRule(localContext, 1374, PostgreSQLParser.RULE_columnref); try { this.enterOuterAlt(localContext, 1); { - this.state = 10519; + this.state = 10518; this.colid(); - this.state = 10521; + this.state = 10520; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { case 1: { - this.state = 10520; + this.state = 10519; this.indirection(); } break; @@ -57920,18 +56289,18 @@ export class PostgreSQLParser extends antlr.Parser { } public indirection_el(): Indirection_elContext { let localContext = new Indirection_elContext(this.context, this.state); - this.enterRule(localContext, 1374, PostgreSQLParser.RULE_indirection_el); + this.enterRule(localContext, 1376, PostgreSQLParser.RULE_indirection_el); let _la: number; try { - this.state = 10540; + this.state = 10539; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.DOT: this.enterOuterAlt(localContext, 1); { - this.state = 10523; + this.state = 10522; this.match(PostgreSQLParser.DOT); - this.state = 10526; + this.state = 10525; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: @@ -58424,13 +56793,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 10524; + this.state = 10523; this.attr_name(); } break; case PostgreSQLParser.STAR: { - this.state = 10525; + this.state = 10524; this.match(PostgreSQLParser.STAR); } break; @@ -58442,37 +56811,37 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.OPEN_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 10528; + this.state = 10527; this.match(PostgreSQLParser.OPEN_BRACKET); - this.state = 10537; + this.state = 10536; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { case 1: { - this.state = 10529; + this.state = 10528; this.a_expr(); } break; case 2: { - this.state = 10531; + this.state = 10530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10530; + this.state = 10529; this.opt_slice_bound(); } } - this.state = 10533; + this.state = 10532; this.match(PostgreSQLParser.COLON); - this.state = 10535; + this.state = 10534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10534; + this.state = 10533; this.opt_slice_bound(); } } @@ -58480,7 +56849,7 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 10539; + this.state = 10538; this.match(PostgreSQLParser.CLOSE_BRACKET); } break; @@ -58504,11 +56873,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_slice_bound(): Opt_slice_boundContext { let localContext = new Opt_slice_boundContext(this.context, this.state); - this.enterRule(localContext, 1376, PostgreSQLParser.RULE_opt_slice_bound); + this.enterRule(localContext, 1378, PostgreSQLParser.RULE_opt_slice_bound); try { this.enterOuterAlt(localContext, 1); { - this.state = 10542; + this.state = 10541; this.a_expr(); } } @@ -58528,12 +56897,12 @@ export class PostgreSQLParser extends antlr.Parser { } public indirection(): IndirectionContext { let localContext = new IndirectionContext(this.context, this.state); - this.enterRule(localContext, 1378, PostgreSQLParser.RULE_indirection); + this.enterRule(localContext, 1380, PostgreSQLParser.RULE_indirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10545; + this.state = 10544; this.errorHandler.sync(this); alternative = 1; do { @@ -58541,7 +56910,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 10544; + this.state = 10543; this.indirection_el(); } } @@ -58549,9 +56918,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 10547; + this.state = 10546; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -58571,26 +56940,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_indirection(): Opt_indirectionContext { let localContext = new Opt_indirectionContext(this.context, this.state); - this.enterRule(localContext, 1380, PostgreSQLParser.RULE_opt_indirection); + this.enterRule(localContext, 1382, PostgreSQLParser.RULE_opt_indirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10552; + this.state = 10551; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10549; + this.state = 10548; this.indirection_el(); } } } - this.state = 10554; + this.state = 10553; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context); } } } @@ -58610,11 +56979,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_target_list(): Opt_target_listContext { let localContext = new Opt_target_listContext(this.context, this.state); - this.enterRule(localContext, 1382, PostgreSQLParser.RULE_opt_target_list); + this.enterRule(localContext, 1384, PostgreSQLParser.RULE_opt_target_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 10555; + this.state = 10554; this.target_list(); } } @@ -58634,30 +57003,30 @@ export class PostgreSQLParser extends antlr.Parser { } public target_list(): Target_listContext { let localContext = new Target_listContext(this.context, this.state); - this.enterRule(localContext, 1384, PostgreSQLParser.RULE_target_list); + this.enterRule(localContext, 1386, PostgreSQLParser.RULE_target_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10557; + this.state = 10556; this.target_el(); - this.state = 10562; + this.state = 10561; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10558; + this.state = 10557; this.match(PostgreSQLParser.COMMA); - this.state = 10559; + this.state = 10558; this.target_el(); } } } - this.state = 10564; + this.state = 10563; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context); } } } @@ -58677,477 +57046,31 @@ export class PostgreSQLParser extends antlr.Parser { } public target_el(): Target_elContext { let localContext = new Target_elContext(this.context, this.state); - this.enterRule(localContext, 1386, PostgreSQLParser.RULE_target_el); + this.enterRule(localContext, 1388, PostgreSQLParser.RULE_target_el); try { - this.state = 10573; + this.state = 10572; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSQLParser.OPEN_PAREN: - case PostgreSQLParser.PLUS: - case PostgreSQLParser.MINUS: - case PostgreSQLParser.PARAM: - case PostgreSQLParser.Operator: - case PostgreSQLParser.KW_AND: - case PostgreSQLParser.KW_ARRAY: - case PostgreSQLParser.KW_CASE: - case PostgreSQLParser.KW_CAST: - case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_CONSTRAINT: - case PostgreSQLParser.KW_CURRENT_CATALOG: - case PostgreSQLParser.KW_CURRENT_DATE: - case PostgreSQLParser.KW_CURRENT_ROLE: - case PostgreSQLParser.KW_CURRENT_TIME: - case PostgreSQLParser.KW_CURRENT_TIMESTAMP: - case PostgreSQLParser.KW_CURRENT_USER: - case PostgreSQLParser.KW_DEFAULT: - case PostgreSQLParser.KW_DO: - case PostgreSQLParser.KW_FALSE: - case PostgreSQLParser.KW_FETCH: - case PostgreSQLParser.KW_LOCALTIME: - case PostgreSQLParser.KW_LOCALTIMESTAMP: - case PostgreSQLParser.KW_NOT: - case PostgreSQLParser.KW_NULL: - case PostgreSQLParser.KW_SESSION_USER: - case PostgreSQLParser.KW_TABLE: - case PostgreSQLParser.KW_TRUE: - case PostgreSQLParser.KW_UNIQUE: - case PostgreSQLParser.KW_USER: - case PostgreSQLParser.KW_AUTHORIZATION: - case PostgreSQLParser.KW_BINARY: - case PostgreSQLParser.KW_COLLATION: - case PostgreSQLParser.KW_CONCURRENTLY: - case PostgreSQLParser.KW_CROSS: - case PostgreSQLParser.KW_CURRENT_SCHEMA: - case PostgreSQLParser.KW_FREEZE: - case PostgreSQLParser.KW_FULL: - case PostgreSQLParser.KW_ILIKE: - case PostgreSQLParser.KW_INNER: - case PostgreSQLParser.KW_IS: - case PostgreSQLParser.KW_ISNULL: - case PostgreSQLParser.KW_JOIN: - case PostgreSQLParser.KW_LEFT: - case PostgreSQLParser.KW_LIKE: - case PostgreSQLParser.KW_NATURAL: - case PostgreSQLParser.KW_NOTNULL: - case PostgreSQLParser.KW_OUTER: - case PostgreSQLParser.KW_OVER: - case PostgreSQLParser.KW_OVERLAPS: - case PostgreSQLParser.KW_RIGHT: - case PostgreSQLParser.KW_SIMILAR: - case PostgreSQLParser.KW_VERBOSE: - case PostgreSQLParser.KW_ABORT: - case PostgreSQLParser.KW_ABSOLUTE: - case PostgreSQLParser.KW_ACCESS: - case PostgreSQLParser.KW_ACTION: - case PostgreSQLParser.KW_ADD: - case PostgreSQLParser.KW_ADMIN: - case PostgreSQLParser.KW_AFTER: - case PostgreSQLParser.KW_AGGREGATE: - case PostgreSQLParser.KW_ALSO: - case PostgreSQLParser.KW_ALTER: - case PostgreSQLParser.KW_ALWAYS: - case PostgreSQLParser.KW_ASSERTION: - case PostgreSQLParser.KW_ASSIGNMENT: - case PostgreSQLParser.KW_AT: - case PostgreSQLParser.KW_ATTRIBUTE: - case PostgreSQLParser.KW_BACKWARD: - case PostgreSQLParser.KW_BEFORE: - case PostgreSQLParser.KW_BEGIN: - case PostgreSQLParser.KW_BY: - case PostgreSQLParser.KW_CACHE: - case PostgreSQLParser.KW_CALLED: - case PostgreSQLParser.KW_CASCADE: - case PostgreSQLParser.KW_CASCADED: - case PostgreSQLParser.KW_CATALOG: - case PostgreSQLParser.KW_CHAIN: - case PostgreSQLParser.KW_CHARACTERISTICS: - case PostgreSQLParser.KW_CHECKPOINT: - case PostgreSQLParser.KW_CLASS: - case PostgreSQLParser.KW_CLOSE: - case PostgreSQLParser.KW_CLUSTER: - case PostgreSQLParser.KW_COMMENT: - case PostgreSQLParser.KW_COMMENTS: - case PostgreSQLParser.KW_COMMIT: - case PostgreSQLParser.KW_COMMITTED: - case PostgreSQLParser.KW_CONFIGURATION: - case PostgreSQLParser.KW_CONNECTION: - case PostgreSQLParser.KW_CONSTRAINTS: - case PostgreSQLParser.KW_CONTENT: - case PostgreSQLParser.KW_CONTINUE: - case PostgreSQLParser.KW_CONVERSION: - case PostgreSQLParser.KW_COPY: - case PostgreSQLParser.KW_COST: - case PostgreSQLParser.KW_CSV: - case PostgreSQLParser.KW_CURSOR: - case PostgreSQLParser.KW_CYCLE: - case PostgreSQLParser.KW_DATA: - case PostgreSQLParser.KW_DATABASE: - case PostgreSQLParser.KW_DAY: - case PostgreSQLParser.KW_DEALLOCATE: - case PostgreSQLParser.KW_DECLARE: - case PostgreSQLParser.KW_DEFAULTS: - case PostgreSQLParser.KW_DEFERRED: - case PostgreSQLParser.KW_DEFINER: - case PostgreSQLParser.KW_DELETE: - case PostgreSQLParser.KW_DELIMITER: - case PostgreSQLParser.KW_DELIMITERS: - case PostgreSQLParser.KW_DICTIONARY: - case PostgreSQLParser.KW_DISABLE: - case PostgreSQLParser.KW_DISCARD: - case PostgreSQLParser.KW_DOCUMENT: - case PostgreSQLParser.KW_DOMAIN: - case PostgreSQLParser.KW_DOUBLE: - case PostgreSQLParser.KW_DROP: - case PostgreSQLParser.KW_EACH: - case PostgreSQLParser.KW_ENABLE: - case PostgreSQLParser.KW_ENCODING: - case PostgreSQLParser.KW_ENCRYPTED: - case PostgreSQLParser.KW_ENUM: - case PostgreSQLParser.KW_ESCAPE: - case PostgreSQLParser.KW_EVENT: - case PostgreSQLParser.KW_EXCLUDE: - case PostgreSQLParser.KW_EXCLUDING: - case PostgreSQLParser.KW_EXCLUSIVE: - case PostgreSQLParser.KW_EXECUTE: - case PostgreSQLParser.KW_EXPLAIN: - case PostgreSQLParser.KW_EXTENSION: - case PostgreSQLParser.KW_EXTERNAL: - case PostgreSQLParser.KW_FAMILY: - case PostgreSQLParser.KW_FIRST: - case PostgreSQLParser.KW_FOLLOWING: - case PostgreSQLParser.KW_FORCE: - case PostgreSQLParser.KW_FORWARD: - case PostgreSQLParser.KW_FUNCTION: - case PostgreSQLParser.KW_FUNCTIONS: - case PostgreSQLParser.KW_GLOBAL: - case PostgreSQLParser.KW_GRANTED: - case PostgreSQLParser.KW_HANDLER: - case PostgreSQLParser.KW_HEADER: - case PostgreSQLParser.KW_HOLD: - case PostgreSQLParser.KW_HOUR: - case PostgreSQLParser.KW_IDENTITY: - case PostgreSQLParser.KW_IF: - case PostgreSQLParser.KW_IMMEDIATE: - case PostgreSQLParser.KW_IMMUTABLE: - case PostgreSQLParser.KW_IMPLICIT: - case PostgreSQLParser.KW_INCLUDING: - case PostgreSQLParser.KW_INCREMENT: - case PostgreSQLParser.KW_INDEX: - case PostgreSQLParser.KW_INDEXES: - case PostgreSQLParser.KW_INHERIT: - case PostgreSQLParser.KW_INHERITS: - case PostgreSQLParser.KW_INLINE: - case PostgreSQLParser.KW_INSENSITIVE: - case PostgreSQLParser.KW_INSERT: - case PostgreSQLParser.KW_INSTEAD: - case PostgreSQLParser.KW_INVOKER: - case PostgreSQLParser.KW_ISOLATION: - case PostgreSQLParser.KW_KEY: - case PostgreSQLParser.KW_LABEL: - case PostgreSQLParser.KW_LANGUAGE: - case PostgreSQLParser.KW_LARGE: - case PostgreSQLParser.KW_LAST: - case PostgreSQLParser.KW_LEAKPROOF: - case PostgreSQLParser.KW_LEVEL: - case PostgreSQLParser.KW_LISTEN: - case PostgreSQLParser.KW_LOAD: - case PostgreSQLParser.KW_LOCAL: - case PostgreSQLParser.KW_LOCATION: - case PostgreSQLParser.KW_LOCK: - case PostgreSQLParser.KW_MAPPING: - case PostgreSQLParser.KW_MATCH: - case PostgreSQLParser.KW_MATERIALIZED: - case PostgreSQLParser.KW_MAXVALUE: - case PostgreSQLParser.KW_MINUTE: - case PostgreSQLParser.KW_MINVALUE: - case PostgreSQLParser.KW_MODE: - case PostgreSQLParser.KW_MONTH: - case PostgreSQLParser.KW_MOVE: - case PostgreSQLParser.KW_NAME: - case PostgreSQLParser.KW_NAMES: - case PostgreSQLParser.KW_NEXT: - case PostgreSQLParser.KW_NO: - case PostgreSQLParser.KW_NOTHING: - case PostgreSQLParser.KW_NOTIFY: - case PostgreSQLParser.KW_NOWAIT: - case PostgreSQLParser.KW_NULLS: - case PostgreSQLParser.KW_OBJECT: - case PostgreSQLParser.KW_OF: - case PostgreSQLParser.KW_OFF: - case PostgreSQLParser.KW_OIDS: - case PostgreSQLParser.KW_OPERATOR: - case PostgreSQLParser.KW_OPTION: - case PostgreSQLParser.KW_OPTIONS: - case PostgreSQLParser.KW_OWNED: - case PostgreSQLParser.KW_OWNER: - case PostgreSQLParser.KW_PARSER: - case PostgreSQLParser.KW_PARTIAL: - case PostgreSQLParser.KW_PARTITION: - case PostgreSQLParser.KW_PASSING: - case PostgreSQLParser.KW_PASSWORD: - case PostgreSQLParser.KW_PLANS: - case PostgreSQLParser.KW_PRECEDING: - case PostgreSQLParser.KW_PREPARE: - case PostgreSQLParser.KW_PREPARED: - case PostgreSQLParser.KW_PRESERVE: - case PostgreSQLParser.KW_PRIOR: - case PostgreSQLParser.KW_PRIVILEGES: - case PostgreSQLParser.KW_PROCEDURAL: - case PostgreSQLParser.KW_PROCEDURE: - case PostgreSQLParser.KW_PROGRAM: - case PostgreSQLParser.KW_QUOTE: - case PostgreSQLParser.KW_RANGE: - case PostgreSQLParser.KW_READ: - case PostgreSQLParser.KW_REASSIGN: - case PostgreSQLParser.KW_RECHECK: - case PostgreSQLParser.KW_RECURSIVE: - case PostgreSQLParser.KW_REF: - case PostgreSQLParser.KW_REFRESH: - case PostgreSQLParser.KW_REINDEX: - case PostgreSQLParser.KW_RELATIVE: - case PostgreSQLParser.KW_RELEASE: - case PostgreSQLParser.KW_RENAME: - case PostgreSQLParser.KW_REPEATABLE: - case PostgreSQLParser.KW_REPLACE: - case PostgreSQLParser.KW_REPLICA: - case PostgreSQLParser.KW_RESET: - case PostgreSQLParser.KW_RESTART: - case PostgreSQLParser.KW_RESTRICT: - case PostgreSQLParser.KW_RETURNS: - case PostgreSQLParser.KW_REVOKE: - case PostgreSQLParser.KW_ROLE: - case PostgreSQLParser.KW_ROLLBACK: - case PostgreSQLParser.KW_ROWS: - case PostgreSQLParser.KW_RULE: - case PostgreSQLParser.KW_SAVEPOINT: - case PostgreSQLParser.KW_SCHEMA: - case PostgreSQLParser.KW_SCROLL: - case PostgreSQLParser.KW_SEARCH: - case PostgreSQLParser.KW_SECOND: - case PostgreSQLParser.KW_SECURITY: - case PostgreSQLParser.KW_SEQUENCE: - case PostgreSQLParser.KW_SEQUENCES: - case PostgreSQLParser.KW_SERIALIZABLE: - case PostgreSQLParser.KW_SERVER: - case PostgreSQLParser.KW_SESSION: - case PostgreSQLParser.KW_SET: - case PostgreSQLParser.KW_SHARE: - case PostgreSQLParser.KW_SHOW: - case PostgreSQLParser.KW_SIMPLE: - case PostgreSQLParser.KW_SNAPSHOT: - case PostgreSQLParser.KW_STABLE: - case PostgreSQLParser.KW_STANDALONE: - case PostgreSQLParser.KW_START: - case PostgreSQLParser.KW_STATEMENT: - case PostgreSQLParser.KW_STATISTICS: - case PostgreSQLParser.KW_STDIN: - case PostgreSQLParser.KW_STDOUT: - case PostgreSQLParser.KW_STORAGE: - case PostgreSQLParser.KW_STRICT: - case PostgreSQLParser.KW_STRIP: - case PostgreSQLParser.KW_SYSID: - case PostgreSQLParser.KW_SYSTEM: - case PostgreSQLParser.KW_TABLES: - case PostgreSQLParser.KW_TABLESPACE: - case PostgreSQLParser.KW_TEMP: - case PostgreSQLParser.KW_TEMPLATE: - case PostgreSQLParser.KW_TEMPORARY: - case PostgreSQLParser.KW_TEXT: - case PostgreSQLParser.KW_TRANSACTION: - case PostgreSQLParser.KW_TRIGGER: - case PostgreSQLParser.KW_TRUNCATE: - case PostgreSQLParser.KW_TRUSTED: - case PostgreSQLParser.KW_TYPE: - case PostgreSQLParser.KW_TYPES: - case PostgreSQLParser.KW_UNBOUNDED: - case PostgreSQLParser.KW_UNCOMMITTED: - case PostgreSQLParser.KW_UNENCRYPTED: - case PostgreSQLParser.KW_UNKNOWN: - case PostgreSQLParser.KW_UNLISTEN: - case PostgreSQLParser.KW_UNLOGGED: - case PostgreSQLParser.KW_UNTIL: - case PostgreSQLParser.KW_UPDATE: - case PostgreSQLParser.KW_VACUUM: - case PostgreSQLParser.KW_VALID: - case PostgreSQLParser.KW_VALIDATE: - case PostgreSQLParser.KW_VALIDATOR: - case PostgreSQLParser.KW_VARYING: - case PostgreSQLParser.KW_VERSION: - case PostgreSQLParser.KW_VIEW: - case PostgreSQLParser.KW_VOLATILE: - case PostgreSQLParser.KW_WHITESPACE: - case PostgreSQLParser.KW_WITHOUT: - case PostgreSQLParser.KW_WORK: - case PostgreSQLParser.KW_WRAPPER: - case PostgreSQLParser.KW_WRITE: - case PostgreSQLParser.KW_XML: - case PostgreSQLParser.KW_YEAR: - case PostgreSQLParser.KW_YES: - case PostgreSQLParser.KW_ZONE: - case PostgreSQLParser.KW_BETWEEN: - case PostgreSQLParser.KW_BIGINT: - case PostgreSQLParser.KW_BIT: - case PostgreSQLParser.KW_BOOLEAN: - case PostgreSQLParser.KW_CHAR: - case PostgreSQLParser.KW_CHARACTER: - case PostgreSQLParser.KW_COALESCE: - case PostgreSQLParser.KW_DEC: - case PostgreSQLParser.KW_DECIMAL: - case PostgreSQLParser.KW_EXISTS: - case PostgreSQLParser.KW_EXTRACT: - case PostgreSQLParser.KW_FLOAT: - case PostgreSQLParser.KW_GREATEST: - case PostgreSQLParser.KW_INOUT: - case PostgreSQLParser.KW_INT: - case PostgreSQLParser.KW_INTEGER: - case PostgreSQLParser.KW_INTERVAL: - case PostgreSQLParser.KW_LEAST: - case PostgreSQLParser.KW_NATIONAL: - case PostgreSQLParser.KW_NCHAR: - case PostgreSQLParser.KW_NONE: - case PostgreSQLParser.KW_NULLIF: - case PostgreSQLParser.KW_NUMERIC: - case PostgreSQLParser.KW_OVERLAY: - case PostgreSQLParser.KW_POSITION: - case PostgreSQLParser.KW_PRECISION: - case PostgreSQLParser.KW_REAL: - case PostgreSQLParser.KW_ROW: - case PostgreSQLParser.KW_SETOF: - case PostgreSQLParser.KW_SMALLINT: - case PostgreSQLParser.KW_SUBSTRING: - case PostgreSQLParser.KW_TIME: - case PostgreSQLParser.KW_TIMESTAMP: - case PostgreSQLParser.KW_TREAT: - case PostgreSQLParser.KW_TRIM: - case PostgreSQLParser.KW_VALUES: - case PostgreSQLParser.KW_VARCHAR: - case PostgreSQLParser.KW_XMLATTRIBUTES: - case PostgreSQLParser.KW_XMLCONCAT: - case PostgreSQLParser.KW_XMLELEMENT: - case PostgreSQLParser.KW_XMLEXISTS: - case PostgreSQLParser.KW_XMLFOREST: - case PostgreSQLParser.KW_XMLPARSE: - case PostgreSQLParser.KW_XMLPI: - case PostgreSQLParser.KW_XMLROOT: - case PostgreSQLParser.KW_XMLSERIALIZE: - case PostgreSQLParser.KW_CALL: - case PostgreSQLParser.KW_CURRENT: - case PostgreSQLParser.KW_ATTACH: - case PostgreSQLParser.KW_DETACH: - case PostgreSQLParser.KW_EXPRESSION: - case PostgreSQLParser.KW_GENERATED: - case PostgreSQLParser.KW_LOGGED: - case PostgreSQLParser.KW_STORED: - case PostgreSQLParser.KW_INCLUDE: - case PostgreSQLParser.KW_ROUTINE: - case PostgreSQLParser.KW_TRANSFORM: - case PostgreSQLParser.KW_IMPORT: - case PostgreSQLParser.KW_POLICY: - case PostgreSQLParser.KW_METHOD: - case PostgreSQLParser.KW_REFERENCING: - case PostgreSQLParser.KW_NEW: - case PostgreSQLParser.KW_OLD: - case PostgreSQLParser.KW_VALUE: - case PostgreSQLParser.KW_SUBSCRIPTION: - case PostgreSQLParser.KW_PUBLICATION: - case PostgreSQLParser.KW_OUT: - case PostgreSQLParser.KW_ROUTINES: - case PostgreSQLParser.KW_SCHEMAS: - case PostgreSQLParser.KW_PROCEDURES: - case PostgreSQLParser.KW_INPUT: - case PostgreSQLParser.KW_SUPPORT: - case PostgreSQLParser.KW_PARALLEL: - case PostgreSQLParser.KW_SQL: - case PostgreSQLParser.KW_DEPENDS: - case PostgreSQLParser.KW_OVERRIDING: - case PostgreSQLParser.KW_CONFLICT: - case PostgreSQLParser.KW_SKIP: - case PostgreSQLParser.KW_LOCKED: - case PostgreSQLParser.KW_TIES: - case PostgreSQLParser.KW_ROLLUP: - case PostgreSQLParser.KW_CUBE: - case PostgreSQLParser.KW_GROUPING: - case PostgreSQLParser.KW_SETS: - case PostgreSQLParser.KW_TABLESAMPLE: - case PostgreSQLParser.KW_ORDINALITY: - case PostgreSQLParser.KW_XMLTABLE: - case PostgreSQLParser.KW_COLUMNS: - case PostgreSQLParser.KW_XMLNAMESPACES: - case PostgreSQLParser.KW_ROWTYPE: - case PostgreSQLParser.KW_NORMALIZED: - case PostgreSQLParser.KW_WITHIN: - case PostgreSQLParser.KW_FILTER: - case PostgreSQLParser.KW_GROUPS: - case PostgreSQLParser.KW_OTHERS: - case PostgreSQLParser.KW_NFC: - case PostgreSQLParser.KW_NFD: - case PostgreSQLParser.KW_NFKC: - case PostgreSQLParser.KW_NFKD: - case PostgreSQLParser.KW_UESCAPE: - case PostgreSQLParser.KW_VIEWS: - case PostgreSQLParser.KW_NORMALIZE: - case PostgreSQLParser.KW_DUMP: - case PostgreSQLParser.KW_PRINT_STRICT_PARAMS: - case PostgreSQLParser.KW_VARIABLE_CONFLICT: - case PostgreSQLParser.KW_ERROR: - case PostgreSQLParser.KW_USE_VARIABLE: - case PostgreSQLParser.KW_USE_COLUMN: - case PostgreSQLParser.KW_ALIAS: - case PostgreSQLParser.KW_CONSTANT: - case PostgreSQLParser.KW_PERFORM: - case PostgreSQLParser.KW_GET: - case PostgreSQLParser.KW_DIAGNOSTICS: - case PostgreSQLParser.KW_STACKED: - case PostgreSQLParser.KW_ELSIF: - case PostgreSQLParser.KW_REVERSE: - case PostgreSQLParser.KW_SLICE: - case PostgreSQLParser.KW_EXIT: - case PostgreSQLParser.KW_RETURN: - case PostgreSQLParser.KW_QUERY: - case PostgreSQLParser.KW_RAISE: - case PostgreSQLParser.KW_SQLSTATE: - case PostgreSQLParser.KW_DEBUG: - case PostgreSQLParser.KW_LOG: - case PostgreSQLParser.KW_INFO: - case PostgreSQLParser.KW_NOTICE: - case PostgreSQLParser.KW_WARNING: - case PostgreSQLParser.KW_EXCEPTION: - case PostgreSQLParser.KW_ASSERT: - case PostgreSQLParser.KW_OPEN: - case PostgreSQLParser.KW_SKIP_LOCKED: - case PostgreSQLParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSQLParser.Identifier: - case PostgreSQLParser.QuotedIdentifier: - case PostgreSQLParser.UnicodeQuotedIdentifier: - case PostgreSQLParser.StringConstant: - case PostgreSQLParser.UnicodeEscapeStringConstant: - case PostgreSQLParser.BeginDollarStringConstant: - case PostgreSQLParser.BinaryStringConstant: - case PostgreSQLParser.HexadecimalStringConstant: - case PostgreSQLParser.Integral: - case PostgreSQLParser.Numeric: - case PostgreSQLParser.PLSQLVARIABLENAME: - case PostgreSQLParser.PLSQLIDENTIFIER: - case PostgreSQLParser.EscapeStringConstant: + switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { + case 1: localContext = new Target_labelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10565; + this.state = 10564; this.column_expr_noparen(); - this.state = 10570; + this.state = 10569; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { case 1: { - this.state = 10566; + this.state = 10565; this.match(PostgreSQLParser.KW_AS); - this.state = 10567; + this.state = 10566; this.collabel(); } break; case 2: { - this.state = 10568; + this.state = 10567; this.identifier(); } break; @@ -59159,16 +57082,14 @@ export class PostgreSQLParser extends antlr.Parser { } } break; - case PostgreSQLParser.STAR: + case 2: localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 10572; + this.state = 10571; this.match(PostgreSQLParser.STAR); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -59187,26 +57108,26 @@ export class PostgreSQLParser extends antlr.Parser { } public qualified_name_list(): Qualified_name_listContext { let localContext = new Qualified_name_listContext(this.context, this.state); - this.enterRule(localContext, 1388, PostgreSQLParser.RULE_qualified_name_list); + this.enterRule(localContext, 1390, PostgreSQLParser.RULE_qualified_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10575; + this.state = 10574; this.qualified_name(); - this.state = 10580; + this.state = 10579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10576; + this.state = 10575; this.match(PostgreSQLParser.COMMA); - this.state = 10577; + this.state = 10576; this.qualified_name(); } } - this.state = 10582; + this.state = 10581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -59228,26 +57149,26 @@ export class PostgreSQLParser extends antlr.Parser { } public table_name_list(): Table_name_listContext { let localContext = new Table_name_listContext(this.context, this.state); - this.enterRule(localContext, 1390, PostgreSQLParser.RULE_table_name_list); + this.enterRule(localContext, 1392, PostgreSQLParser.RULE_table_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10583; + this.state = 10582; this.table_name(); - this.state = 10588; + this.state = 10587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10584; + this.state = 10583; this.match(PostgreSQLParser.COMMA); - this.state = 10585; + this.state = 10584; this.table_name(); } } - this.state = 10590; + this.state = 10589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -59269,26 +57190,26 @@ export class PostgreSQLParser extends antlr.Parser { } public schema_name_list(): Schema_name_listContext { let localContext = new Schema_name_listContext(this.context, this.state); - this.enterRule(localContext, 1392, PostgreSQLParser.RULE_schema_name_list); + this.enterRule(localContext, 1394, PostgreSQLParser.RULE_schema_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10591; + this.state = 10590; this.schema_name(); - this.state = 10596; + this.state = 10595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10592; + this.state = 10591; this.match(PostgreSQLParser.COMMA); - this.state = 10593; + this.state = 10592; this.schema_name(); } } - this.state = 10598; + this.state = 10597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -59310,26 +57231,26 @@ export class PostgreSQLParser extends antlr.Parser { } public database_nameList(): Database_nameListContext { let localContext = new Database_nameListContext(this.context, this.state); - this.enterRule(localContext, 1394, PostgreSQLParser.RULE_database_nameList); + this.enterRule(localContext, 1396, PostgreSQLParser.RULE_database_nameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10599; + this.state = 10598; this.database_name(); - this.state = 10604; + this.state = 10603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10600; + this.state = 10599; this.match(PostgreSQLParser.COMMA); - this.state = 10601; + this.state = 10600; this.database_name(); } } - this.state = 10606; + this.state = 10605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -59351,26 +57272,26 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_name_list(): Procedure_name_listContext { let localContext = new Procedure_name_listContext(this.context, this.state); - this.enterRule(localContext, 1396, PostgreSQLParser.RULE_procedure_name_list); + this.enterRule(localContext, 1398, PostgreSQLParser.RULE_procedure_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10607; + this.state = 10606; this.procedure_name(); - this.state = 10612; + this.state = 10611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10608; + this.state = 10607; this.match(PostgreSQLParser.COMMA); - this.state = 10609; + this.state = 10608; this.procedure_name(); } } - this.state = 10614; + this.state = 10613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -59392,19 +57313,20 @@ export class PostgreSQLParser extends antlr.Parser { } public tablespace_name_create(): Tablespace_name_createContext { let localContext = new Tablespace_name_createContext(this.context, this.state); - this.enterRule(localContext, 1398, PostgreSQLParser.RULE_tablespace_name_create); + this.enterRule(localContext, 1400, PostgreSQLParser.RULE_tablespace_name_create); let _la: number; try { + localContext = new TablespaceNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10615; + this.state = 10614; this.colid(); - this.state = 10617; + this.state = 10616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 10616; + this.state = 10615; this.indirection(); } } @@ -59427,19 +57349,20 @@ export class PostgreSQLParser extends antlr.Parser { } public tablespace_name(): Tablespace_nameContext { let localContext = new Tablespace_nameContext(this.context, this.state); - this.enterRule(localContext, 1400, PostgreSQLParser.RULE_tablespace_name); + this.enterRule(localContext, 1402, PostgreSQLParser.RULE_tablespace_name); let _la: number; try { + localContext = new TablespaceNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10619; + this.state = 10618; this.colid(); - this.state = 10621; + this.state = 10620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 10620; + this.state = 10619; this.indirection(); } } @@ -59462,23 +57385,23 @@ export class PostgreSQLParser extends antlr.Parser { } public table_name_create(): Table_name_createContext { let localContext = new Table_name_createContext(this.context, this.state); - this.enterRule(localContext, 1402, PostgreSQLParser.RULE_table_name_create); - let _la: number; + this.enterRule(localContext, 1404, PostgreSQLParser.RULE_table_name_create); try { + localContext = new TableNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10623; + this.state = 10622; this.colid(); - this.state = 10625; + this.state = 10624; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 4 || _la === 11) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1123, this.context) ) { + case 1: { - this.state = 10624; + this.state = 10623; this.indirection(); } + break; } - } } catch (re) { @@ -59497,19 +57420,20 @@ export class PostgreSQLParser extends antlr.Parser { } public table_name(): Table_nameContext { let localContext = new Table_nameContext(this.context, this.state); - this.enterRule(localContext, 1404, PostgreSQLParser.RULE_table_name); + this.enterRule(localContext, 1406, PostgreSQLParser.RULE_table_name); let _la: number; try { + localContext = new TableNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10627; + this.state = 10626; this.colid(); - this.state = 10629; + this.state = 10628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 10628; + this.state = 10627; this.indirection(); } } @@ -59532,19 +57456,20 @@ export class PostgreSQLParser extends antlr.Parser { } public view_name_create(): View_name_createContext { let localContext = new View_name_createContext(this.context, this.state); - this.enterRule(localContext, 1406, PostgreSQLParser.RULE_view_name_create); + this.enterRule(localContext, 1408, PostgreSQLParser.RULE_view_name_create); let _la: number; try { + localContext = new ViewNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10631; + this.state = 10630; this.colid(); - this.state = 10633; + this.state = 10632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 10632; + this.state = 10631; this.indirection(); } } @@ -59567,23 +57492,23 @@ export class PostgreSQLParser extends antlr.Parser { } public view_name(): View_nameContext { let localContext = new View_nameContext(this.context, this.state); - this.enterRule(localContext, 1408, PostgreSQLParser.RULE_view_name); - let _la: number; + this.enterRule(localContext, 1410, PostgreSQLParser.RULE_view_name); try { + localContext = new ViewNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10635; + this.state = 10634; this.colid(); - this.state = 10637; + this.state = 10636; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 11) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { + case 1: { - this.state = 10636; + this.state = 10635; this.attrs(); } + break; } - } } catch (re) { @@ -59602,19 +57527,19 @@ export class PostgreSQLParser extends antlr.Parser { } public qualified_name(): Qualified_nameContext { let localContext = new Qualified_nameContext(this.context, this.state); - this.enterRule(localContext, 1410, PostgreSQLParser.RULE_qualified_name); + this.enterRule(localContext, 1412, PostgreSQLParser.RULE_qualified_name); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10639; + this.state = 10638; this.colid(); - this.state = 10641; + this.state = 10640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 10640; + this.state = 10639; this.indirection(); } } @@ -59637,26 +57562,26 @@ export class PostgreSQLParser extends antlr.Parser { } public tablespace_name_list(): Tablespace_name_listContext { let localContext = new Tablespace_name_listContext(this.context, this.state); - this.enterRule(localContext, 1412, PostgreSQLParser.RULE_tablespace_name_list); + this.enterRule(localContext, 1414, PostgreSQLParser.RULE_tablespace_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10643; + this.state = 10642; this.tablespace_name(); - this.state = 10648; + this.state = 10647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10644; + this.state = 10643; this.match(PostgreSQLParser.COMMA); - this.state = 10645; + this.state = 10644; this.tablespace_name(); } } - this.state = 10650; + this.state = 10649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -59678,26 +57603,26 @@ export class PostgreSQLParser extends antlr.Parser { } public name_list(): Name_listContext { let localContext = new Name_listContext(this.context, this.state); - this.enterRule(localContext, 1414, PostgreSQLParser.RULE_name_list); + this.enterRule(localContext, 1416, PostgreSQLParser.RULE_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10651; + this.state = 10650; this.name(); - this.state = 10656; + this.state = 10655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10652; + this.state = 10651; this.match(PostgreSQLParser.COMMA); - this.state = 10653; + this.state = 10652; this.name(); } } - this.state = 10658; + this.state = 10657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -59719,19 +57644,20 @@ export class PostgreSQLParser extends antlr.Parser { } public database_name_create(): Database_name_createContext { let localContext = new Database_name_createContext(this.context, this.state); - this.enterRule(localContext, 1416, PostgreSQLParser.RULE_database_name_create); + this.enterRule(localContext, 1418, PostgreSQLParser.RULE_database_name_create); let _la: number; try { + localContext = new DatabaseNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10659; + this.state = 10658; this.colid(); - this.state = 10661; + this.state = 10660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 10660; + this.state = 10659; this.attrs(); } } @@ -59754,19 +57680,20 @@ export class PostgreSQLParser extends antlr.Parser { } public database_name(): Database_nameContext { let localContext = new Database_nameContext(this.context, this.state); - this.enterRule(localContext, 1418, PostgreSQLParser.RULE_database_name); + this.enterRule(localContext, 1420, PostgreSQLParser.RULE_database_name); let _la: number; try { + localContext = new DatabaseNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10663; + this.state = 10662; this.colid(); - this.state = 10665; + this.state = 10664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 10664; + this.state = 10663; this.attrs(); } } @@ -59789,19 +57716,20 @@ export class PostgreSQLParser extends antlr.Parser { } public schema_name(): Schema_nameContext { let localContext = new Schema_nameContext(this.context, this.state); - this.enterRule(localContext, 1420, PostgreSQLParser.RULE_schema_name); + this.enterRule(localContext, 1422, PostgreSQLParser.RULE_schema_name); let _la: number; try { + localContext = new SchemaNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10667; + this.state = 10666; this.colid(); - this.state = 10669; + this.state = 10668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 10668; + this.state = 10667; this.attrs(); } } @@ -59824,11 +57752,12 @@ export class PostgreSQLParser extends antlr.Parser { } public routine_name_create(): Routine_name_createContext { let localContext = new Routine_name_createContext(this.context, this.state); - this.enterRule(localContext, 1422, PostgreSQLParser.RULE_routine_name_create); + this.enterRule(localContext, 1424, PostgreSQLParser.RULE_routine_name_create); try { + localContext = new RoutineNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10671; + this.state = 10670; this.colid(); } } @@ -59848,11 +57777,12 @@ export class PostgreSQLParser extends antlr.Parser { } public routine_name(): Routine_nameContext { let localContext = new Routine_nameContext(this.context, this.state); - this.enterRule(localContext, 1424, PostgreSQLParser.RULE_routine_name); + this.enterRule(localContext, 1426, PostgreSQLParser.RULE_routine_name); try { + localContext = new RoutineNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10673; + this.state = 10672; this.colid(); } } @@ -59872,24 +57802,26 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_name(): Procedure_nameContext { let localContext = new Procedure_nameContext(this.context, this.state); - this.enterRule(localContext, 1426, PostgreSQLParser.RULE_procedure_name); + this.enterRule(localContext, 1428, PostgreSQLParser.RULE_procedure_name); try { - this.state = 10679; + this.state = 10678; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1133, this.context) ) { case 1: + localContext = new ProcedureNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10675; + this.state = 10674; this.type_function_name(); } break; case 2: + localContext = new ProcedureNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 10676; + this.state = 10675; this.colid(); - this.state = 10677; + this.state = 10676; this.indirection(); } break; @@ -59911,24 +57843,26 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_name_create(): Procedure_name_createContext { let localContext = new Procedure_name_createContext(this.context, this.state); - this.enterRule(localContext, 1428, PostgreSQLParser.RULE_procedure_name_create); + this.enterRule(localContext, 1430, PostgreSQLParser.RULE_procedure_name_create); try { - this.state = 10685; + this.state = 10684; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context) ) { case 1: + localContext = new ProcedureNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10681; + this.state = 10680; this.type_function_name(); } break; case 2: + localContext = new ProcedureNameCreateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 10682; + this.state = 10681; this.colid(); - this.state = 10683; + this.state = 10682; this.indirection(); } break; @@ -59950,29 +57884,46 @@ export class PostgreSQLParser extends antlr.Parser { } public column_name(): Column_nameContext { let localContext = new Column_nameContext(this.context, this.state); - this.enterRule(localContext, 1430, PostgreSQLParser.RULE_column_name); + this.enterRule(localContext, 1432, PostgreSQLParser.RULE_column_name); try { let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 10687; - this.colid(); - this.state = 10691; + this.state = 10694; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 10688; - this.indirection_el(); - } - } - } - this.state = 10693; + switch (this.interpreter.adaptivePredict(this.tokenStream, 1136, this.context) ) { + case 1: + localContext = new ColumnNameContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 10686; + this.colid(); + this.state = 10690; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context); - } + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 10687; + this.indirection_el(); + } + } + } + this.state = 10692; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context); + } + } + break; + case 2: + localContext = new ColumnNameMatchContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 10693; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + } + break; } } catch (re) { @@ -59991,32 +57942,9 @@ export class PostgreSQLParser extends antlr.Parser { } public column_name_create(): Column_name_createContext { let localContext = new Column_name_createContext(this.context, this.state); - this.enterRule(localContext, 1432, PostgreSQLParser.RULE_column_name_create); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 10694; - this.colid(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public name(): NameContext { - let localContext = new NameContext(this.context, this.state); - this.enterRule(localContext, 1434, PostgreSQLParser.RULE_name); + this.enterRule(localContext, 1434, PostgreSQLParser.RULE_column_name_create); try { + localContext = new ColumnNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 10696; @@ -60037,13 +57965,37 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public attr_name(): Attr_nameContext { - let localContext = new Attr_nameContext(this.context, this.state); - this.enterRule(localContext, 1436, PostgreSQLParser.RULE_attr_name); + public name(): NameContext { + let localContext = new NameContext(this.context, this.state); + this.enterRule(localContext, 1436, PostgreSQLParser.RULE_name); try { this.enterOuterAlt(localContext, 1); { this.state = 10698; + this.colid(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public attr_name(): Attr_nameContext { + let localContext = new Attr_nameContext(this.context, this.state); + this.enterRule(localContext, 1438, PostgreSQLParser.RULE_attr_name); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 10700; this.collabel(); } } @@ -60063,11 +58015,11 @@ export class PostgreSQLParser extends antlr.Parser { } public file_name(): File_nameContext { let localContext = new File_nameContext(this.context, this.state); - this.enterRule(localContext, 1438, PostgreSQLParser.RULE_file_name); + this.enterRule(localContext, 1440, PostgreSQLParser.RULE_file_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 10700; + this.state = 10702; this.sconst(); } } @@ -60087,24 +58039,26 @@ export class PostgreSQLParser extends antlr.Parser { } public function_name_create(): Function_name_createContext { let localContext = new Function_name_createContext(this.context, this.state); - this.enterRule(localContext, 1440, PostgreSQLParser.RULE_function_name_create); + this.enterRule(localContext, 1442, PostgreSQLParser.RULE_function_name_create); try { - this.state = 10706; + this.state = 10708; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1138, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context) ) { case 1: + localContext = new FunctionNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10702; + this.state = 10704; this.type_function_name(); } break; case 2: + localContext = new FunctionNameCreateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 10703; + this.state = 10705; this.colid(); - this.state = 10704; + this.state = 10706; this.indirection(); } break; @@ -60126,24 +58080,26 @@ export class PostgreSQLParser extends antlr.Parser { } public function_name(): Function_nameContext { let localContext = new Function_nameContext(this.context, this.state); - this.enterRule(localContext, 1442, PostgreSQLParser.RULE_function_name); + this.enterRule(localContext, 1444, PostgreSQLParser.RULE_function_name); try { - this.state = 10712; + this.state = 10714; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1138, this.context) ) { case 1: + localContext = new FunctionNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10708; + this.state = 10710; this.type_function_name(); } break; case 2: + localContext = new FunctionNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 10709; + this.state = 10711; this.colid(); - this.state = 10710; + this.state = 10712; this.indirection(); } break; @@ -60165,24 +58121,24 @@ export class PostgreSQLParser extends antlr.Parser { } public usual_name(): Usual_nameContext { let localContext = new Usual_nameContext(this.context, this.state); - this.enterRule(localContext, 1444, PostgreSQLParser.RULE_usual_name); + this.enterRule(localContext, 1446, PostgreSQLParser.RULE_usual_name); try { - this.state = 10718; + this.state = 10720; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10714; + this.state = 10716; this.type_usual_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10715; + this.state = 10717; this.colid(); - this.state = 10716; + this.state = 10718; this.indirection(); } break; @@ -60204,53 +58160,53 @@ export class PostgreSQLParser extends antlr.Parser { } public aexprconst(): AexprconstContext { let localContext = new AexprconstContext(this.context, this.state); - this.enterRule(localContext, 1446, PostgreSQLParser.RULE_aexprconst); + this.enterRule(localContext, 1448, PostgreSQLParser.RULE_aexprconst); let _la: number; try { - this.state = 10755; + this.state = 10757; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10720; + this.state = 10722; this.iconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10721; + this.state = 10723; this.fconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10722; + this.state = 10724; this.sconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10723; + this.state = 10725; this.bconst(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10724; + this.state = 10726; this.xconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10725; + this.state = 10727; this.function_name(); - this.state = 10735; + this.state = 10737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -60258,29 +58214,29 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.BeginDollarStringConstant: case PostgreSQLParser.EscapeStringConstant: { - this.state = 10726; + this.state = 10728; this.sconst(); } break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 10727; + this.state = 10729; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10728; - this.func_arg_list(); this.state = 10730; + this.func_arg_list(); + this.state = 10732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 10729; + this.state = 10731; this.opt_sort_clause(); } } - this.state = 10732; + this.state = 10734; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 10733; + this.state = 10735; this.sconst(); } break; @@ -60292,18 +58248,18 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 10737; + this.state = 10739; this.consttypename(); - this.state = 10738; + this.state = 10740; this.sconst(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 10740; + this.state = 10742; this.constinterval(); - this.state = 10750; + this.state = 10752; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -60311,14 +58267,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.BeginDollarStringConstant: case PostgreSQLParser.EscapeStringConstant: { - this.state = 10741; - this.sconst(); this.state = 10743; + this.sconst(); + this.state = 10745; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { case 1: { - this.state = 10742; + this.state = 10744; this.opt_interval(); } break; @@ -60327,13 +58283,13 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 10745; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10746; - this.iconst(); this.state = 10747; - this.match(PostgreSQLParser.CLOSE_PAREN); + this.match(PostgreSQLParser.OPEN_PAREN); this.state = 10748; + this.iconst(); + this.state = 10749; + this.match(PostgreSQLParser.CLOSE_PAREN); + this.state = 10750; this.sconst(); } break; @@ -60345,21 +58301,21 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 10752; + this.state = 10754; this.match(PostgreSQLParser.KW_TRUE); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 10753; + this.state = 10755; this.match(PostgreSQLParser.KW_FALSE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 10754; + this.state = 10756; this.match(PostgreSQLParser.KW_NULL); } break; @@ -60381,11 +58337,11 @@ export class PostgreSQLParser extends antlr.Parser { } public xconst(): XconstContext { let localContext = new XconstContext(this.context, this.state); - this.enterRule(localContext, 1448, PostgreSQLParser.RULE_xconst); + this.enterRule(localContext, 1450, PostgreSQLParser.RULE_xconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 10757; + this.state = 10759; this.match(PostgreSQLParser.HexadecimalStringConstant); } } @@ -60405,11 +58361,11 @@ export class PostgreSQLParser extends antlr.Parser { } public bconst(): BconstContext { let localContext = new BconstContext(this.context, this.state); - this.enterRule(localContext, 1450, PostgreSQLParser.RULE_bconst); + this.enterRule(localContext, 1452, PostgreSQLParser.RULE_bconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 10759; + this.state = 10761; this.match(PostgreSQLParser.BinaryStringConstant); } } @@ -60429,11 +58385,11 @@ export class PostgreSQLParser extends antlr.Parser { } public fconst(): FconstContext { let localContext = new FconstContext(this.context, this.state); - this.enterRule(localContext, 1452, PostgreSQLParser.RULE_fconst); + this.enterRule(localContext, 1454, PostgreSQLParser.RULE_fconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 10761; + this.state = 10763; this.match(PostgreSQLParser.Numeric); } } @@ -60453,11 +58409,11 @@ export class PostgreSQLParser extends antlr.Parser { } public iconst(): IconstContext { let localContext = new IconstContext(this.context, this.state); - this.enterRule(localContext, 1454, PostgreSQLParser.RULE_iconst); + this.enterRule(localContext, 1456, PostgreSQLParser.RULE_iconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 10763; + this.state = 10765; this.match(PostgreSQLParser.Integral); } } @@ -60477,18 +58433,18 @@ export class PostgreSQLParser extends antlr.Parser { } public sconst(): SconstContext { let localContext = new SconstContext(this.context, this.state); - this.enterRule(localContext, 1456, PostgreSQLParser.RULE_sconst); + this.enterRule(localContext, 1458, PostgreSQLParser.RULE_sconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 10765; - this.anysconst(); this.state = 10767; + this.anysconst(); + this.state = 10769; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: { - this.state = 10766; + this.state = 10768; this.opt_uescape(); } break; @@ -60511,53 +58467,53 @@ export class PostgreSQLParser extends antlr.Parser { } public anysconst(): AnysconstContext { let localContext = new AnysconstContext(this.context, this.state); - this.enterRule(localContext, 1458, PostgreSQLParser.RULE_anysconst); + this.enterRule(localContext, 1460, PostgreSQLParser.RULE_anysconst); let _la: number; try { - this.state = 10780; + this.state = 10782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 10769; + this.state = 10771; this.match(PostgreSQLParser.StringConstant); } break; case PostgreSQLParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 10770; + this.state = 10772; this.match(PostgreSQLParser.UnicodeEscapeStringConstant); } break; case PostgreSQLParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 10771; + this.state = 10773; this.match(PostgreSQLParser.BeginDollarStringConstant); - this.state = 10775; + this.state = 10777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 588) { { { - this.state = 10772; + this.state = 10774; this.match(PostgreSQLParser.DollarText); } } - this.state = 10777; + this.state = 10779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 10778; + this.state = 10780; this.match(PostgreSQLParser.EndDollarStringConstant); } break; case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 10779; + this.state = 10781; this.match(PostgreSQLParser.EscapeStringConstant); } break; @@ -60581,13 +58537,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_uescape(): Opt_uescapeContext { let localContext = new Opt_uescapeContext(this.context, this.state); - this.enterRule(localContext, 1460, PostgreSQLParser.RULE_opt_uescape); + this.enterRule(localContext, 1462, PostgreSQLParser.RULE_opt_uescape); try { this.enterOuterAlt(localContext, 1); { - this.state = 10782; + this.state = 10784; this.match(PostgreSQLParser.KW_UESCAPE); - this.state = 10783; + this.state = 10785; this.anysconst(); } } @@ -60607,33 +58563,33 @@ export class PostgreSQLParser extends antlr.Parser { } public signediconst(): SignediconstContext { let localContext = new SignediconstContext(this.context, this.state); - this.enterRule(localContext, 1462, PostgreSQLParser.RULE_signediconst); + this.enterRule(localContext, 1464, PostgreSQLParser.RULE_signediconst); try { - this.state = 10790; + this.state = 10792; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.Integral: this.enterOuterAlt(localContext, 1); { - this.state = 10785; + this.state = 10787; this.iconst(); } break; case PostgreSQLParser.PLUS: this.enterOuterAlt(localContext, 2); { - this.state = 10786; + this.state = 10788; this.match(PostgreSQLParser.PLUS); - this.state = 10787; + this.state = 10789; this.iconst(); } break; case PostgreSQLParser.MINUS: this.enterOuterAlt(localContext, 3); { - this.state = 10788; + this.state = 10790; this.match(PostgreSQLParser.MINUS); - this.state = 10789; + this.state = 10791; this.iconst(); } break; @@ -60657,31 +58613,7 @@ export class PostgreSQLParser extends antlr.Parser { } public groupname(): GroupnameContext { let localContext = new GroupnameContext(this.context, this.state); - this.enterRule(localContext, 1464, PostgreSQLParser.RULE_groupname); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 10792; - this.rolespec(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public roleid(): RoleidContext { - let localContext = new RoleidContext(this.context, this.state); - this.enterRule(localContext, 1466, PostgreSQLParser.RULE_roleid); + this.enterRule(localContext, 1466, PostgreSQLParser.RULE_groupname); try { this.enterOuterAlt(localContext, 1); { @@ -60703,11 +58635,35 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } + public roleid(): RoleidContext { + let localContext = new RoleidContext(this.context, this.state); + this.enterRule(localContext, 1468, PostgreSQLParser.RULE_roleid); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 10796; + this.rolespec(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public rolespec(): RolespecContext { let localContext = new RolespecContext(this.context, this.state); - this.enterRule(localContext, 1468, PostgreSQLParser.RULE_rolespec); + this.enterRule(localContext, 1470, PostgreSQLParser.RULE_rolespec); try { - this.state = 10801; + this.state = 10803; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -61133,35 +59089,35 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 10796; + this.state = 10798; this.nonreservedword(); } break; case PostgreSQLParser.KW_CURRENT_USER: this.enterOuterAlt(localContext, 2); { - this.state = 10797; + this.state = 10799; this.match(PostgreSQLParser.KW_CURRENT_USER); } break; case PostgreSQLParser.KW_CURRENT_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 10798; + this.state = 10800; this.match(PostgreSQLParser.KW_CURRENT_ROLE); } break; case PostgreSQLParser.KW_SESSION_USER: this.enterOuterAlt(localContext, 4); { - this.state = 10799; + this.state = 10801; this.match(PostgreSQLParser.KW_SESSION_USER); } break; case PostgreSQLParser.KW_PUBLIC: this.enterOuterAlt(localContext, 5); { - this.state = 10800; + this.state = 10802; this.match(PostgreSQLParser.KW_PUBLIC); } break; @@ -61185,26 +59141,26 @@ export class PostgreSQLParser extends antlr.Parser { } public role_list(): Role_listContext { let localContext = new Role_listContext(this.context, this.state); - this.enterRule(localContext, 1470, PostgreSQLParser.RULE_role_list); + this.enterRule(localContext, 1472, PostgreSQLParser.RULE_role_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10803; + this.state = 10805; this.rolespec(); - this.state = 10808; + this.state = 10810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10804; + this.state = 10806; this.match(PostgreSQLParser.COMMA); - this.state = 10805; + this.state = 10807; this.rolespec(); } } - this.state = 10810; + this.state = 10812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -61226,36 +59182,36 @@ export class PostgreSQLParser extends antlr.Parser { } public colid(): ColidContext { let localContext = new ColidContext(this.context, this.state); - this.enterRule(localContext, 1472, PostgreSQLParser.RULE_colid); + this.enterRule(localContext, 1474, PostgreSQLParser.RULE_colid); try { - this.state = 10815; + this.state = 10817; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10811; + this.state = 10813; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10812; + this.state = 10814; this.unreserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10813; + this.state = 10815; this.col_name_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10814; + this.state = 10816; this.plsql_unreserved_keyword(); } break; @@ -61277,11 +59233,11 @@ export class PostgreSQLParser extends antlr.Parser { } public index_method_choices(): Index_method_choicesContext { let localContext = new Index_method_choicesContext(this.context, this.state); - this.enterRule(localContext, 1474, PostgreSQLParser.RULE_index_method_choices); + this.enterRule(localContext, 1476, PostgreSQLParser.RULE_index_method_choices); try { this.enterOuterAlt(localContext, 1); { - this.state = 10817; + this.state = 10819; this.identifier(); } } @@ -61301,16 +59257,16 @@ export class PostgreSQLParser extends antlr.Parser { } public exclude_element(): Exclude_elementContext { let localContext = new Exclude_elementContext(this.context, this.state); - this.enterRule(localContext, 1476, PostgreSQLParser.RULE_exclude_element); + this.enterRule(localContext, 1478, PostgreSQLParser.RULE_exclude_element); let _la: number; try { - this.state = 10831; + this.state = 10833; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 10819; + this.state = 10821; this.opt_definition(); } break; @@ -61318,31 +59274,31 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 10820; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10821; - this.a_expr(); this.state = 10822; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 10823; + this.a_expr(); + this.state = 10824; this.match(PostgreSQLParser.CLOSE_PAREN); } - this.state = 10824; - this.identifier(); this.state = 10826; + this.identifier(); + this.state = 10828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 10825; + this.state = 10827; this.opt_asc_desc(); } } - this.state = 10829; + this.state = 10831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 10828; + this.state = 10830; this.opt_nulls_order(); } } @@ -61369,29 +59325,29 @@ export class PostgreSQLParser extends antlr.Parser { } public index_paramenters(): Index_paramentersContext { let localContext = new Index_paramentersContext(this.context, this.state); - this.enterRule(localContext, 1478, PostgreSQLParser.RULE_index_paramenters); + this.enterRule(localContext, 1480, PostgreSQLParser.RULE_index_paramenters); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10835; + this.state = 10837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 10833; + this.state = 10835; this.match(PostgreSQLParser.KW_WITH); - this.state = 10834; + this.state = 10836; this.reloptions(); } } - this.state = 10838; + this.state = 10840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 10837; + this.state = 10839; this.optconstablespace(); } } @@ -61414,36 +59370,36 @@ export class PostgreSQLParser extends antlr.Parser { } public type_function_name(): Type_function_nameContext { let localContext = new Type_function_nameContext(this.context, this.state); - this.enterRule(localContext, 1480, PostgreSQLParser.RULE_type_function_name); + this.enterRule(localContext, 1482, PostgreSQLParser.RULE_type_function_name); try { - this.state = 10844; + this.state = 10846; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10840; + this.state = 10842; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10841; + this.state = 10843; this.unreserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10842; + this.state = 10844; this.plsql_unreserved_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10843; + this.state = 10845; this.type_func_name_keyword(); } break; @@ -61465,36 +59421,36 @@ export class PostgreSQLParser extends antlr.Parser { } public type_usual_name(): Type_usual_nameContext { let localContext = new Type_usual_nameContext(this.context, this.state); - this.enterRule(localContext, 1482, PostgreSQLParser.RULE_type_usual_name); + this.enterRule(localContext, 1484, PostgreSQLParser.RULE_type_usual_name); try { - this.state = 10850; + this.state = 10852; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10846; + this.state = 10848; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10847; + this.state = 10849; this.unreserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10848; + this.state = 10850; this.plsql_unreserved_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10849; + this.state = 10851; this.type_func_name_keyword(); } break; @@ -61516,22 +59472,22 @@ export class PostgreSQLParser extends antlr.Parser { } public nonreservedword_column(): Nonreservedword_columnContext { let localContext = new Nonreservedword_columnContext(this.context, this.state); - this.enterRule(localContext, 1484, PostgreSQLParser.RULE_nonreservedword_column); + this.enterRule(localContext, 1486, PostgreSQLParser.RULE_nonreservedword_column); try { - this.state = 10854; + this.state = 10856; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10852; + this.state = 10854; this.column_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10853; + this.state = 10855; this.type_func_name_keyword(); } break; @@ -61553,36 +59509,36 @@ export class PostgreSQLParser extends antlr.Parser { } public nonreservedword(): NonreservedwordContext { let localContext = new NonreservedwordContext(this.context, this.state); - this.enterRule(localContext, 1486, PostgreSQLParser.RULE_nonreservedword); + this.enterRule(localContext, 1488, PostgreSQLParser.RULE_nonreservedword); try { - this.state = 10860; + this.state = 10862; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10856; + this.state = 10858; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10857; + this.state = 10859; this.unreserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10858; + this.state = 10860; this.col_name_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10859; + this.state = 10861; this.type_func_name_keyword(); } break; @@ -61604,50 +59560,50 @@ export class PostgreSQLParser extends antlr.Parser { } public collabel(): CollabelContext { let localContext = new CollabelContext(this.context, this.state); - this.enterRule(localContext, 1488, PostgreSQLParser.RULE_collabel); + this.enterRule(localContext, 1490, PostgreSQLParser.RULE_collabel); try { - this.state = 10868; + this.state = 10870; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10862; + this.state = 10864; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10863; + this.state = 10865; this.plsql_unreserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10864; + this.state = 10866; this.unreserved_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10865; + this.state = 10867; this.col_name_keyword(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10866; + this.state = 10868; this.type_func_name_keyword(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10867; + this.state = 10869; this.reserved_keyword(); } break; @@ -61669,22 +59625,22 @@ export class PostgreSQLParser extends antlr.Parser { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 1490, PostgreSQLParser.RULE_identifier); + this.enterRule(localContext, 1492, PostgreSQLParser.RULE_identifier); try { - this.state = 10880; + this.state = 10882; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 10870; - this.match(PostgreSQLParser.Identifier); this.state = 10872; + this.match(PostgreSQLParser.Identifier); + this.state = 10874; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context) ) { case 1: { - this.state = 10871; + this.state = 10873; this.opt_uescape(); } break; @@ -61697,35 +59653,35 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 10874; + this.state = 10876; this.sconst(); } break; case PostgreSQLParser.QuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 10875; + this.state = 10877; this.match(PostgreSQLParser.QuotedIdentifier); } break; case PostgreSQLParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 4); { - this.state = 10876; + this.state = 10878; this.match(PostgreSQLParser.UnicodeQuotedIdentifier); } break; case PostgreSQLParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 5); { - this.state = 10877; + this.state = 10879; this.plsqlvariablename(); } break; case PostgreSQLParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 6); { - this.state = 10878; + this.state = 10880; this.plsqlidentifier(); } break; @@ -61795,7 +59751,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_OPEN: this.enterOuterAlt(localContext, 7); { - this.state = 10879; + this.state = 10881; this.plsql_unreserved_keyword(); } break; @@ -61819,11 +59775,11 @@ export class PostgreSQLParser extends antlr.Parser { } public plsqlidentifier(): PlsqlidentifierContext { let localContext = new PlsqlidentifierContext(this.context, this.state); - this.enterRule(localContext, 1492, PostgreSQLParser.RULE_plsqlidentifier); + this.enterRule(localContext, 1494, PostgreSQLParser.RULE_plsqlidentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 10882; + this.state = 10884; this.match(PostgreSQLParser.PLSQLIDENTIFIER); } } @@ -61843,12 +59799,12 @@ export class PostgreSQLParser extends antlr.Parser { } public unreserved_keyword(): Unreserved_keywordContext { let localContext = new Unreserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 1494, PostgreSQLParser.RULE_unreserved_keyword); + this.enterRule(localContext, 1496, PostgreSQLParser.RULE_unreserved_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10884; + this.state = 10886; _la = this.tokenStream.LA(1); if(!(((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 127) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 16770399) !== 0) || _la === 547 || _la === 548)) { this.errorHandler.recoverInline(this); @@ -61875,365 +59831,365 @@ export class PostgreSQLParser extends antlr.Parser { } public col_name_keyword(): Col_name_keywordContext { let localContext = new Col_name_keywordContext(this.context, this.state); - this.enterRule(localContext, 1496, PostgreSQLParser.RULE_col_name_keyword); + this.enterRule(localContext, 1498, PostgreSQLParser.RULE_col_name_keyword); try { - this.state = 10937; + this.state = 10939; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10886; + this.state = 10888; this.match(PostgreSQLParser.KW_BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10887; + this.state = 10889; this.match(PostgreSQLParser.KW_BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10888; + this.state = 10890; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10889; + this.state = 10891; this.match(PostgreSQLParser.KW_BOOLEAN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10890; + this.state = 10892; this.match(PostgreSQLParser.KW_CHAR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10891; + this.state = 10893; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 10892; + this.state = 10894; this.match(PostgreSQLParser.KW_COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 10893; + this.state = 10895; this.match(PostgreSQLParser.KW_DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 10894; + this.state = 10896; this.match(PostgreSQLParser.KW_DECIMAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 10895; + this.state = 10897; this.match(PostgreSQLParser.KW_EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 10896; + this.state = 10898; this.match(PostgreSQLParser.KW_EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 10897; + this.state = 10899; this.match(PostgreSQLParser.KW_FLOAT); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 10898; + this.state = 10900; this.match(PostgreSQLParser.KW_GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 10899; + this.state = 10901; this.match(PostgreSQLParser.KW_GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 10900; + this.state = 10902; this.match(PostgreSQLParser.KW_INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 10901; + this.state = 10903; this.match(PostgreSQLParser.KW_INT); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 10902; + this.state = 10904; this.match(PostgreSQLParser.KW_INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 10903; + this.state = 10905; this.match(PostgreSQLParser.KW_INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 10904; + this.state = 10906; this.match(PostgreSQLParser.KW_LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 10905; + this.state = 10907; this.match(PostgreSQLParser.KW_NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 10906; + this.state = 10908; this.match(PostgreSQLParser.KW_NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 10907; + this.state = 10909; this.match(PostgreSQLParser.KW_NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 10908; + this.state = 10910; this.match(PostgreSQLParser.KW_NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 10909; + this.state = 10911; this.match(PostgreSQLParser.KW_NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 10910; + this.state = 10912; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 10911; + this.state = 10913; this.match(PostgreSQLParser.KW_OUT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 10912; + this.state = 10914; this.match(PostgreSQLParser.KW_OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 10913; + this.state = 10915; this.match(PostgreSQLParser.KW_POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 10914; + this.state = 10916; this.match(PostgreSQLParser.KW_PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 10915; + this.state = 10917; this.match(PostgreSQLParser.KW_REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 10916; + this.state = 10918; this.match(PostgreSQLParser.KW_ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 10917; + this.state = 10919; this.match(PostgreSQLParser.KW_SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 10918; + this.state = 10920; this.match(PostgreSQLParser.KW_SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 10919; + this.state = 10921; this.match(PostgreSQLParser.KW_SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 10920; + this.state = 10922; this.match(PostgreSQLParser.KW_TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 10921; + this.state = 10923; this.match(PostgreSQLParser.KW_TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 10922; + this.state = 10924; this.match(PostgreSQLParser.KW_TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 10923; + this.state = 10925; this.match(PostgreSQLParser.KW_TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 10924; + this.state = 10926; this.match(PostgreSQLParser.KW_VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 10925; + this.state = 10927; this.match(PostgreSQLParser.KW_VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 10926; + this.state = 10928; this.match(PostgreSQLParser.KW_XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 10927; + this.state = 10929; this.match(PostgreSQLParser.KW_XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 10928; + this.state = 10930; this.match(PostgreSQLParser.KW_XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 10929; + this.state = 10931; this.match(PostgreSQLParser.KW_XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 10930; + this.state = 10932; this.match(PostgreSQLParser.KW_XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 10931; + this.state = 10933; this.match(PostgreSQLParser.KW_XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 10932; + this.state = 10934; this.match(PostgreSQLParser.KW_XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 10933; + this.state = 10935; this.match(PostgreSQLParser.KW_XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 10934; + this.state = 10936; this.match(PostgreSQLParser.KW_XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 10935; + this.state = 10937; this.match(PostgreSQLParser.KW_XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 10936; + this.state = 10938; this.match(PostgreSQLParser.KW_XMLTABLE); } break; @@ -62255,12 +60211,12 @@ export class PostgreSQLParser extends antlr.Parser { } public type_func_name_keyword(): Type_func_name_keywordContext { let localContext = new Type_func_name_keywordContext(this.context, this.state); - this.enterRule(localContext, 1498, PostgreSQLParser.RULE_type_func_name_keyword); + this.enterRule(localContext, 1500, PostgreSQLParser.RULE_type_func_name_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10939; + this.state = 10941; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 8126463) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -62287,12 +60243,12 @@ export class PostgreSQLParser extends antlr.Parser { } public reserved_keyword(): Reserved_keywordContext { let localContext = new Reserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 1500, PostgreSQLParser.RULE_reserved_keyword); + this.enterRule(localContext, 1502, PostgreSQLParser.RULE_reserved_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10941; + this.state = 10943; _la = this.tokenStream.LA(1); if(!(((((_la - 30)) & ~0x1F) === 0 && ((1 << (_la - 30)) & 4286578687) !== 0) || ((((_la - 62)) & ~0x1F) === 0 && ((1 << (_la - 62)) & 4294966783) !== 0) || ((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 4095) !== 0) || _la === 454)) { this.errorHandler.recoverInline(this); @@ -62319,15 +60275,15 @@ export class PostgreSQLParser extends antlr.Parser { } public pl_function(): Pl_functionContext { let localContext = new Pl_functionContext(this.context, this.state); - this.enterRule(localContext, 1502, PostgreSQLParser.RULE_pl_function); + this.enterRule(localContext, 1504, PostgreSQLParser.RULE_pl_function); try { this.enterOuterAlt(localContext, 1); { - this.state = 10943; - this.comp_options(); - this.state = 10944; - this.pl_block(); this.state = 10945; + this.comp_options(); + this.state = 10946; + this.pl_block(); + this.state = 10947; this.opt_semi(); } } @@ -62347,22 +60303,22 @@ export class PostgreSQLParser extends antlr.Parser { } public comp_options(): Comp_optionsContext { let localContext = new Comp_optionsContext(this.context, this.state); - this.enterRule(localContext, 1504, PostgreSQLParser.RULE_comp_options); + this.enterRule(localContext, 1506, PostgreSQLParser.RULE_comp_options); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10950; + this.state = 10952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 29) { { { - this.state = 10947; + this.state = 10949; this.comp_option(); } } - this.state = 10952; + this.state = 10954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -62384,63 +60340,63 @@ export class PostgreSQLParser extends antlr.Parser { } public comp_option(): Comp_optionContext { let localContext = new Comp_optionContext(this.context, this.state); - this.enterRule(localContext, 1506, PostgreSQLParser.RULE_comp_option); + this.enterRule(localContext, 1508, PostgreSQLParser.RULE_comp_option); try { - this.state = 10973; + this.state = 10975; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10953; - this.sharp(); - this.state = 10954; - this.match(PostgreSQLParser.KW_OPTION); this.state = 10955; + this.sharp(); + this.state = 10956; + this.match(PostgreSQLParser.KW_OPTION); + this.state = 10957; this.match(PostgreSQLParser.KW_DUMP); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10957; - this.sharp(); - this.state = 10958; - this.match(PostgreSQLParser.KW_PRINT_STRICT_PARAMS); this.state = 10959; + this.sharp(); + this.state = 10960; + this.match(PostgreSQLParser.KW_PRINT_STRICT_PARAMS); + this.state = 10961; this.option_value(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10961; - this.sharp(); - this.state = 10962; - this.match(PostgreSQLParser.KW_VARIABLE_CONFLICT); this.state = 10963; + this.sharp(); + this.state = 10964; + this.match(PostgreSQLParser.KW_VARIABLE_CONFLICT); + this.state = 10965; this.match(PostgreSQLParser.KW_ERROR); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10965; - this.sharp(); - this.state = 10966; - this.match(PostgreSQLParser.KW_VARIABLE_CONFLICT); this.state = 10967; + this.sharp(); + this.state = 10968; + this.match(PostgreSQLParser.KW_VARIABLE_CONFLICT); + this.state = 10969; this.match(PostgreSQLParser.KW_USE_VARIABLE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10969; - this.sharp(); - this.state = 10970; - this.match(PostgreSQLParser.KW_VARIABLE_CONFLICT); this.state = 10971; + this.sharp(); + this.state = 10972; + this.match(PostgreSQLParser.KW_VARIABLE_CONFLICT); + this.state = 10973; this.match(PostgreSQLParser.KW_USE_COLUMN); } break; @@ -62462,11 +60418,11 @@ export class PostgreSQLParser extends antlr.Parser { } public sharp(): SharpContext { let localContext = new SharpContext(this.context, this.state); - this.enterRule(localContext, 1508, PostgreSQLParser.RULE_sharp); + this.enterRule(localContext, 1510, PostgreSQLParser.RULE_sharp); try { this.enterOuterAlt(localContext, 1); { - this.state = 10975; + this.state = 10977; this.match(PostgreSQLParser.Operator); } } @@ -62486,36 +60442,36 @@ export class PostgreSQLParser extends antlr.Parser { } public option_value(): Option_valueContext { let localContext = new Option_valueContext(this.context, this.state); - this.enterRule(localContext, 1510, PostgreSQLParser.RULE_option_value); + this.enterRule(localContext, 1512, PostgreSQLParser.RULE_option_value); try { - this.state = 10981; + this.state = 10983; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10977; + this.state = 10979; this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10978; + this.state = 10980; this.reserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10979; + this.state = 10981; this.plsql_unreserved_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10980; + this.state = 10982; this.unreserved_keyword(); } break; @@ -62537,9 +60493,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_semi(): Opt_semiContext { let localContext = new Opt_semiContext(this.context, this.state); - this.enterRule(localContext, 1512, PostgreSQLParser.RULE_opt_semi); + this.enterRule(localContext, 1514, PostgreSQLParser.RULE_opt_semi); try { - this.state = 10985; + this.state = 10987; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.EOF: @@ -62551,7 +60507,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.SEMI: this.enterOuterAlt(localContext, 2); { - this.state = 10984; + this.state = 10986; this.match(PostgreSQLParser.SEMI); } break; @@ -62575,21 +60531,21 @@ export class PostgreSQLParser extends antlr.Parser { } public pl_block(): Pl_blockContext { let localContext = new Pl_blockContext(this.context, this.state); - this.enterRule(localContext, 1514, PostgreSQLParser.RULE_pl_block); + this.enterRule(localContext, 1516, PostgreSQLParser.RULE_pl_block); try { this.enterOuterAlt(localContext, 1); { - this.state = 10987; - this.decl_sect(); - this.state = 10988; - this.match(PostgreSQLParser.KW_BEGIN); this.state = 10989; - this.proc_sect(); + this.decl_sect(); this.state = 10990; - this.exception_sect(); + this.match(PostgreSQLParser.KW_BEGIN); this.state = 10991; - this.match(PostgreSQLParser.KW_END); + this.proc_sect(); this.state = 10992; + this.exception_sect(); + this.state = 10993; + this.match(PostgreSQLParser.KW_END); + this.state = 10994; this.opt_label(); } } @@ -62609,26 +60565,26 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_sect(): Decl_sectContext { let localContext = new Decl_sectContext(this.context, this.state); - this.enterRule(localContext, 1516, PostgreSQLParser.RULE_decl_sect); + this.enterRule(localContext, 1518, PostgreSQLParser.RULE_decl_sect); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10994; + this.state = 10996; this.opt_block_label(); - this.state = 10999; + this.state = 11001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 10995; - this.decl_start(); this.state = 10997; + this.decl_start(); + this.state = 10999; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1170, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1169, this.context) ) { case 1: { - this.state = 10996; + this.state = 10998; this.decl_stmts(); } break; @@ -62654,11 +60610,11 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_start(): Decl_startContext { let localContext = new Decl_startContext(this.context, this.state); - this.enterRule(localContext, 1518, PostgreSQLParser.RULE_decl_start); + this.enterRule(localContext, 1520, PostgreSQLParser.RULE_decl_start); try { this.enterOuterAlt(localContext, 1); { - this.state = 11001; + this.state = 11003; this.match(PostgreSQLParser.KW_DECLARE); } } @@ -62678,12 +60634,12 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_stmts(): Decl_stmtsContext { let localContext = new Decl_stmtsContext(this.context, this.state); - this.enterRule(localContext, 1520, PostgreSQLParser.RULE_decl_stmts); + this.enterRule(localContext, 1522, PostgreSQLParser.RULE_decl_stmts); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 11004; + this.state = 11006; this.errorHandler.sync(this); alternative = 1; do { @@ -62691,7 +60647,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 11003; + this.state = 11005; this.decl_stmt(); } } @@ -62699,9 +60655,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 11006; + this.state = 11008; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1171, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -62721,15 +60677,15 @@ export class PostgreSQLParser extends antlr.Parser { } public label_decl(): Label_declContext { let localContext = new Label_declContext(this.context, this.state); - this.enterRule(localContext, 1522, PostgreSQLParser.RULE_label_decl); + this.enterRule(localContext, 1524, PostgreSQLParser.RULE_label_decl); try { this.enterOuterAlt(localContext, 1); { - this.state = 11008; - this.match(PostgreSQLParser.LESS_LESS); - this.state = 11009; - this.any_identifier(); this.state = 11010; + this.match(PostgreSQLParser.LESS_LESS); + this.state = 11011; + this.any_identifier(); + this.state = 11012; this.match(PostgreSQLParser.GREATER_GREATER); } } @@ -62749,29 +60705,29 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_stmt(): Decl_stmtContext { let localContext = new Decl_stmtContext(this.context, this.state); - this.enterRule(localContext, 1524, PostgreSQLParser.RULE_decl_stmt); + this.enterRule(localContext, 1526, PostgreSQLParser.RULE_decl_stmt); try { - this.state = 11015; + this.state = 11017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1173, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11012; + this.state = 11014; this.decl_statement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11013; + this.state = 11015; this.match(PostgreSQLParser.KW_DECLARE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 11014; + this.state = 11016; this.label_decl(); } break; @@ -62793,55 +60749,55 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_statement(): Decl_statementContext { let localContext = new Decl_statementContext(this.context, this.state); - this.enterRule(localContext, 1526, PostgreSQLParser.RULE_decl_statement); + this.enterRule(localContext, 1528, PostgreSQLParser.RULE_decl_statement); try { this.enterOuterAlt(localContext, 1); { - this.state = 11017; + this.state = 11019; this.decl_varname(); - this.state = 11033; + this.state = 11035; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1174, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1173, this.context) ) { case 1: { - this.state = 11018; - this.match(PostgreSQLParser.KW_ALIAS); - this.state = 11019; - this.match(PostgreSQLParser.KW_FOR); this.state = 11020; + this.match(PostgreSQLParser.KW_ALIAS); + this.state = 11021; + this.match(PostgreSQLParser.KW_FOR); + this.state = 11022; this.decl_aliasitem(); } break; case 2: { - this.state = 11021; - this.decl_const(); - this.state = 11022; - this.decl_datatype(); this.state = 11023; - this.decl_collate(); + this.decl_const(); this.state = 11024; - this.decl_notnull(); + this.decl_datatype(); this.state = 11025; + this.decl_collate(); + this.state = 11026; + this.decl_notnull(); + this.state = 11027; this.decl_defval(); } break; case 3: { - this.state = 11027; - this.opt_scrollable(); - this.state = 11028; - this.match(PostgreSQLParser.KW_CURSOR); this.state = 11029; - this.decl_cursor_args(); + this.opt_scrollable(); this.state = 11030; - this.decl_is_for(); + this.match(PostgreSQLParser.KW_CURSOR); this.state = 11031; + this.decl_cursor_args(); + this.state = 11032; + this.decl_is_for(); + this.state = 11033; this.decl_cursor_query(); } break; } - this.state = 11035; + this.state = 11037; this.match(PostgreSQLParser.SEMI); } } @@ -62861,9 +60817,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_scrollable(): Opt_scrollableContext { let localContext = new Opt_scrollableContext(this.context, this.state); - this.enterRule(localContext, 1528, PostgreSQLParser.RULE_opt_scrollable); + this.enterRule(localContext, 1530, PostgreSQLParser.RULE_opt_scrollable); try { - this.state = 11041; + this.state = 11043; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CURSOR: @@ -62875,16 +60831,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 11038; + this.state = 11040; this.match(PostgreSQLParser.KW_NO); - this.state = 11039; + this.state = 11041; this.match(PostgreSQLParser.KW_SCROLL); } break; case PostgreSQLParser.KW_SCROLL: this.enterOuterAlt(localContext, 3); { - this.state = 11040; + this.state = 11042; this.match(PostgreSQLParser.KW_SCROLL); } break; @@ -62908,11 +60864,11 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_cursor_query(): Decl_cursor_queryContext { let localContext = new Decl_cursor_queryContext(this.context, this.state); - this.enterRule(localContext, 1530, PostgreSQLParser.RULE_decl_cursor_query); + this.enterRule(localContext, 1532, PostgreSQLParser.RULE_decl_cursor_query); try { this.enterOuterAlt(localContext, 1); { - this.state = 11043; + this.state = 11045; this.selectstmt(); } } @@ -62932,9 +60888,9 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_cursor_args(): Decl_cursor_argsContext { let localContext = new Decl_cursor_argsContext(this.context, this.state); - this.enterRule(localContext, 1532, PostgreSQLParser.RULE_decl_cursor_args); + this.enterRule(localContext, 1534, PostgreSQLParser.RULE_decl_cursor_args); try { - this.state = 11050; + this.state = 11052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOR: @@ -62947,11 +60903,11 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 11046; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11047; - this.decl_cursor_arglist(); this.state = 11048; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 11049; + this.decl_cursor_arglist(); + this.state = 11050; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -62975,26 +60931,26 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_cursor_arglist(): Decl_cursor_arglistContext { let localContext = new Decl_cursor_arglistContext(this.context, this.state); - this.enterRule(localContext, 1534, PostgreSQLParser.RULE_decl_cursor_arglist); + this.enterRule(localContext, 1536, PostgreSQLParser.RULE_decl_cursor_arglist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11052; + this.state = 11054; this.decl_cursor_arg(); - this.state = 11057; + this.state = 11059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11053; + this.state = 11055; this.match(PostgreSQLParser.COMMA); - this.state = 11054; + this.state = 11056; this.decl_cursor_arg(); } } - this.state = 11059; + this.state = 11061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -63016,13 +60972,13 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_cursor_arg(): Decl_cursor_argContext { let localContext = new Decl_cursor_argContext(this.context, this.state); - this.enterRule(localContext, 1536, PostgreSQLParser.RULE_decl_cursor_arg); + this.enterRule(localContext, 1538, PostgreSQLParser.RULE_decl_cursor_arg); try { this.enterOuterAlt(localContext, 1); { - this.state = 11060; + this.state = 11062; this.decl_varname(); - this.state = 11061; + this.state = 11063; this.decl_datatype(); } } @@ -63042,12 +60998,12 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_is_for(): Decl_is_forContext { let localContext = new Decl_is_forContext(this.context, this.state); - this.enterRule(localContext, 1538, PostgreSQLParser.RULE_decl_is_for); + this.enterRule(localContext, 1540, PostgreSQLParser.RULE_decl_is_for); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11063; + this.state = 11065; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -63074,15 +61030,15 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_aliasitem(): Decl_aliasitemContext { let localContext = new Decl_aliasitemContext(this.context, this.state); - this.enterRule(localContext, 1540, PostgreSQLParser.RULE_decl_aliasitem); + this.enterRule(localContext, 1542, PostgreSQLParser.RULE_decl_aliasitem); try { - this.state = 11067; + this.state = 11069; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.PARAM: this.enterOuterAlt(localContext, 1); { - this.state = 11065; + this.state = 11067; this.match(PostgreSQLParser.PARAM); } break; @@ -63488,7 +61444,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 11066; + this.state = 11068; this.colid(); } break; @@ -63512,11 +61468,11 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_varname(): Decl_varnameContext { let localContext = new Decl_varnameContext(this.context, this.state); - this.enterRule(localContext, 1542, PostgreSQLParser.RULE_decl_varname); + this.enterRule(localContext, 1544, PostgreSQLParser.RULE_decl_varname); try { this.enterOuterAlt(localContext, 1); { - this.state = 11069; + this.state = 11071; this.any_identifier(); } } @@ -63536,11 +61492,11 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_const(): Decl_constContext { let localContext = new Decl_constContext(this.context, this.state); - this.enterRule(localContext, 1544, PostgreSQLParser.RULE_decl_const); + this.enterRule(localContext, 1546, PostgreSQLParser.RULE_decl_const); try { - this.state = 11073; + this.state = 11075; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1179, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1178, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -63550,7 +61506,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11072; + this.state = 11074; this.match(PostgreSQLParser.KW_CONSTANT); } break; @@ -63572,11 +61528,11 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_datatype(): Decl_datatypeContext { let localContext = new Decl_datatypeContext(this.context, this.state); - this.enterRule(localContext, 1546, PostgreSQLParser.RULE_decl_datatype); + this.enterRule(localContext, 1548, PostgreSQLParser.RULE_decl_datatype); try { this.enterOuterAlt(localContext, 1); { - this.state = 11075; + this.state = 11077; this.typename(); } } @@ -63596,9 +61552,9 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_collate(): Decl_collateContext { let localContext = new Decl_collateContext(this.context, this.state); - this.enterRule(localContext, 1548, PostgreSQLParser.RULE_decl_collate); + this.enterRule(localContext, 1550, PostgreSQLParser.RULE_decl_collate); try { - this.state = 11080; + this.state = 11082; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -63614,9 +61570,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_COLLATE: this.enterOuterAlt(localContext, 2); { - this.state = 11078; + this.state = 11080; this.match(PostgreSQLParser.KW_COLLATE); - this.state = 11079; + this.state = 11081; this.any_name(); } break; @@ -63640,9 +61596,9 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_notnull(): Decl_notnullContext { let localContext = new Decl_notnullContext(this.context, this.state); - this.enterRule(localContext, 1550, PostgreSQLParser.RULE_decl_notnull); + this.enterRule(localContext, 1552, PostgreSQLParser.RULE_decl_notnull); try { - this.state = 11085; + this.state = 11087; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -63657,9 +61613,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 11083; + this.state = 11085; this.match(PostgreSQLParser.KW_NOT); - this.state = 11084; + this.state = 11086; this.match(PostgreSQLParser.KW_NULL); } break; @@ -63683,9 +61639,9 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_defval(): Decl_defvalContext { let localContext = new Decl_defvalContext(this.context, this.state); - this.enterRule(localContext, 1552, PostgreSQLParser.RULE_decl_defval); + this.enterRule(localContext, 1554, PostgreSQLParser.RULE_decl_defval); try { - this.state = 11091; + this.state = 11093; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -63699,9 +61655,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 11088; + this.state = 11090; this.decl_defkey(); - this.state = 11089; + this.state = 11091; this.sql_expression(); } break; @@ -63725,23 +61681,23 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_defkey(): Decl_defkeyContext { let localContext = new Decl_defkeyContext(this.context, this.state); - this.enterRule(localContext, 1554, PostgreSQLParser.RULE_decl_defkey); + this.enterRule(localContext, 1556, PostgreSQLParser.RULE_decl_defkey); try { - this.state = 11095; + this.state = 11097; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.EQUAL: case PostgreSQLParser.COLON_EQUALS: this.enterOuterAlt(localContext, 1); { - this.state = 11093; + this.state = 11095; this.assign_operator(); } break; case PostgreSQLParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 11094; + this.state = 11096; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -63765,12 +61721,12 @@ export class PostgreSQLParser extends antlr.Parser { } public assign_operator(): Assign_operatorContext { let localContext = new Assign_operatorContext(this.context, this.state); - this.enterRule(localContext, 1556, PostgreSQLParser.RULE_assign_operator); + this.enterRule(localContext, 1558, PostgreSQLParser.RULE_assign_operator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11097; + this.state = 11099; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -63797,26 +61753,26 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_sect(): Proc_sectContext { let localContext = new Proc_sectContext(this.context, this.state); - this.enterRule(localContext, 1558, PostgreSQLParser.RULE_proc_sect); + this.enterRule(localContext, 1560, PostgreSQLParser.RULE_proc_sect); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 11102; + this.state = 11104; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 11099; + this.state = 11101; this.proc_stmt(); } } } - this.state = 11104; + this.state = 11106; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context); } } } @@ -63836,185 +61792,185 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_stmt(): Proc_stmtContext { let localContext = new Proc_stmtContext(this.context, this.state); - this.enterRule(localContext, 1560, PostgreSQLParser.RULE_proc_stmt); + this.enterRule(localContext, 1562, PostgreSQLParser.RULE_proc_stmt); try { - this.state = 11132; + this.state = 11134; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11105; + this.state = 11107; this.pl_block(); - this.state = 11106; + this.state = 11108; this.match(PostgreSQLParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11108; + this.state = 11110; this.stmt_return(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 11109; + this.state = 11111; this.stmt_raise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 11110; + this.state = 11112; this.stmt_assign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 11111; + this.state = 11113; this.stmt_if(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 11112; + this.state = 11114; this.stmt_case(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 11113; + this.state = 11115; this.stmt_loop(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 11114; + this.state = 11116; this.stmt_while(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 11115; + this.state = 11117; this.stmt_for(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 11116; + this.state = 11118; this.stmt_foreach_a(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 11117; + this.state = 11119; this.stmt_exit(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 11118; + this.state = 11120; this.stmt_assert(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 11119; + this.state = 11121; this.stmt_execsql(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 11120; + this.state = 11122; this.stmt_dynexecute(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 11121; + this.state = 11123; this.stmt_perform(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 11122; + this.state = 11124; this.stmt_call(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 11123; + this.state = 11125; this.stmt_getdiag(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 11124; + this.state = 11126; this.stmt_open(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 11125; + this.state = 11127; this.stmt_fetch(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 11126; + this.state = 11128; this.stmt_move(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 11127; + this.state = 11129; this.stmt_close(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 11128; + this.state = 11130; this.stmt_null(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 11129; + this.state = 11131; this.stmt_commit(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 11130; + this.state = 11132; this.stmt_rollback(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 11131; + this.state = 11133; this.stmt_set(); } break; @@ -64036,15 +61992,15 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_perform(): Stmt_performContext { let localContext = new Stmt_performContext(this.context, this.state); - this.enterRule(localContext, 1562, PostgreSQLParser.RULE_stmt_perform); + this.enterRule(localContext, 1564, PostgreSQLParser.RULE_stmt_perform); try { this.enterOuterAlt(localContext, 1); { - this.state = 11134; - this.match(PostgreSQLParser.KW_PERFORM); - this.state = 11135; - this.expr_until_semi(); this.state = 11136; + this.match(PostgreSQLParser.KW_PERFORM); + this.state = 11137; + this.expr_until_semi(); + this.state = 11138; this.match(PostgreSQLParser.SEMI); } } @@ -64064,30 +62020,30 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_call(): Stmt_callContext { let localContext = new Stmt_callContext(this.context, this.state); - this.enterRule(localContext, 1564, PostgreSQLParser.RULE_stmt_call); + this.enterRule(localContext, 1566, PostgreSQLParser.RULE_stmt_call); try { - this.state = 11154; + this.state = 11156; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CALL: this.enterOuterAlt(localContext, 1); { - this.state = 11138; + this.state = 11140; this.match(PostgreSQLParser.KW_CALL); - this.state = 11139; + this.state = 11141; this.any_identifier(); - this.state = 11145; + this.state = 11147; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1186, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context) ) { case 1: { - this.state = 11140; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11141; - this.opt_expr_list(); this.state = 11142; - this.match(PostgreSQLParser.CLOSE_PAREN); + this.match(PostgreSQLParser.OPEN_PAREN); this.state = 11143; + this.opt_expr_list(); + this.state = 11144; + this.match(PostgreSQLParser.CLOSE_PAREN); + this.state = 11145; this.match(PostgreSQLParser.SEMI); } break; @@ -64097,17 +62053,17 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DO: this.enterOuterAlt(localContext, 2); { - this.state = 11147; - this.match(PostgreSQLParser.KW_DO); - this.state = 11148; - this.any_identifier(); this.state = 11149; - this.match(PostgreSQLParser.OPEN_PAREN); + this.match(PostgreSQLParser.KW_DO); this.state = 11150; - this.opt_expr_list(); + this.any_identifier(); this.state = 11151; - this.match(PostgreSQLParser.CLOSE_PAREN); + this.match(PostgreSQLParser.OPEN_PAREN); this.state = 11152; + this.opt_expr_list(); + this.state = 11153; + this.match(PostgreSQLParser.CLOSE_PAREN); + this.state = 11154; this.match(PostgreSQLParser.SEMI); } break; @@ -64131,9 +62087,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_expr_list(): Opt_expr_listContext { let localContext = new Opt_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1566, PostgreSQLParser.RULE_opt_expr_list); + this.enterRule(localContext, 1568, PostgreSQLParser.RULE_opt_expr_list); try { - this.state = 11158; + this.state = 11160; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.CLOSE_PAREN: @@ -64591,7 +62547,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 11157; + this.state = 11159; this.expr_list(); } break; @@ -64615,17 +62571,17 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_assign(): Stmt_assignContext { let localContext = new Stmt_assignContext(this.context, this.state); - this.enterRule(localContext, 1568, PostgreSQLParser.RULE_stmt_assign); + this.enterRule(localContext, 1570, PostgreSQLParser.RULE_stmt_assign); try { this.enterOuterAlt(localContext, 1); { - this.state = 11160; - this.assign_var(); - this.state = 11161; - this.assign_operator(); this.state = 11162; - this.sql_expression(); + this.assign_var(); this.state = 11163; + this.assign_operator(); + this.state = 11164; + this.sql_expression(); + this.state = 11165; this.match(PostgreSQLParser.SEMI); } } @@ -64645,19 +62601,19 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_getdiag(): Stmt_getdiagContext { let localContext = new Stmt_getdiagContext(this.context, this.state); - this.enterRule(localContext, 1570, PostgreSQLParser.RULE_stmt_getdiag); + this.enterRule(localContext, 1572, PostgreSQLParser.RULE_stmt_getdiag); try { this.enterOuterAlt(localContext, 1); { - this.state = 11165; - this.match(PostgreSQLParser.KW_GET); - this.state = 11166; - this.getdiag_area_opt(); this.state = 11167; - this.match(PostgreSQLParser.KW_DIAGNOSTICS); + this.match(PostgreSQLParser.KW_GET); this.state = 11168; - this.getdiag_list(); + this.getdiag_area_opt(); this.state = 11169; + this.match(PostgreSQLParser.KW_DIAGNOSTICS); + this.state = 11170; + this.getdiag_list(); + this.state = 11171; this.match(PostgreSQLParser.SEMI); } } @@ -64677,9 +62633,9 @@ export class PostgreSQLParser extends antlr.Parser { } public getdiag_area_opt(): Getdiag_area_optContext { let localContext = new Getdiag_area_optContext(this.context, this.state); - this.enterRule(localContext, 1572, PostgreSQLParser.RULE_getdiag_area_opt); + this.enterRule(localContext, 1574, PostgreSQLParser.RULE_getdiag_area_opt); try { - this.state = 11174; + this.state = 11176; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DIAGNOSTICS: @@ -64691,14 +62647,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 11172; + this.state = 11174; this.match(PostgreSQLParser.KW_CURRENT); } break; case PostgreSQLParser.KW_STACKED: this.enterOuterAlt(localContext, 3); { - this.state = 11173; + this.state = 11175; this.match(PostgreSQLParser.KW_STACKED); } break; @@ -64722,26 +62678,26 @@ export class PostgreSQLParser extends antlr.Parser { } public getdiag_list(): Getdiag_listContext { let localContext = new Getdiag_listContext(this.context, this.state); - this.enterRule(localContext, 1574, PostgreSQLParser.RULE_getdiag_list); + this.enterRule(localContext, 1576, PostgreSQLParser.RULE_getdiag_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11176; + this.state = 11178; this.getdiag_list_item(); - this.state = 11181; + this.state = 11183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11177; + this.state = 11179; this.match(PostgreSQLParser.COMMA); - this.state = 11178; + this.state = 11180; this.getdiag_list_item(); } } - this.state = 11183; + this.state = 11185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -64763,15 +62719,15 @@ export class PostgreSQLParser extends antlr.Parser { } public getdiag_list_item(): Getdiag_list_itemContext { let localContext = new Getdiag_list_itemContext(this.context, this.state); - this.enterRule(localContext, 1576, PostgreSQLParser.RULE_getdiag_list_item); + this.enterRule(localContext, 1578, PostgreSQLParser.RULE_getdiag_list_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 11184; - this.getdiag_target(); - this.state = 11185; - this.assign_operator(); this.state = 11186; + this.getdiag_target(); + this.state = 11187; + this.assign_operator(); + this.state = 11188; this.getdiag_item(); } } @@ -64791,11 +62747,11 @@ export class PostgreSQLParser extends antlr.Parser { } public getdiag_item(): Getdiag_itemContext { let localContext = new Getdiag_itemContext(this.context, this.state); - this.enterRule(localContext, 1578, PostgreSQLParser.RULE_getdiag_item); + this.enterRule(localContext, 1580, PostgreSQLParser.RULE_getdiag_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 11188; + this.state = 11190; this.colid(); } } @@ -64815,11 +62771,11 @@ export class PostgreSQLParser extends antlr.Parser { } public getdiag_target(): Getdiag_targetContext { let localContext = new Getdiag_targetContext(this.context, this.state); - this.enterRule(localContext, 1580, PostgreSQLParser.RULE_getdiag_target); + this.enterRule(localContext, 1582, PostgreSQLParser.RULE_getdiag_target); try { this.enterOuterAlt(localContext, 1); { - this.state = 11190; + this.state = 11192; this.assign_var(); } } @@ -64839,12 +62795,12 @@ export class PostgreSQLParser extends antlr.Parser { } public assign_var(): Assign_varContext { let localContext = new Assign_varContext(this.context, this.state); - this.enterRule(localContext, 1582, PostgreSQLParser.RULE_assign_var); + this.enterRule(localContext, 1584, PostgreSQLParser.RULE_assign_var); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11194; + this.state = 11196; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -65248,34 +63204,34 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 11192; + this.state = 11194; this.any_name(); } break; case PostgreSQLParser.PARAM: { - this.state = 11193; + this.state = 11195; this.match(PostgreSQLParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 11202; + this.state = 11204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 11196; - this.match(PostgreSQLParser.OPEN_BRACKET); - this.state = 11197; - this.expr_until_rightbracket(); this.state = 11198; + this.match(PostgreSQLParser.OPEN_BRACKET); + this.state = 11199; + this.expr_until_rightbracket(); + this.state = 11200; this.match(PostgreSQLParser.CLOSE_BRACKET); } } - this.state = 11204; + this.state = 11206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -65297,27 +63253,27 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_if(): Stmt_ifContext { let localContext = new Stmt_ifContext(this.context, this.state); - this.enterRule(localContext, 1584, PostgreSQLParser.RULE_stmt_if); + this.enterRule(localContext, 1586, PostgreSQLParser.RULE_stmt_if); try { this.enterOuterAlt(localContext, 1); { - this.state = 11205; - this.match(PostgreSQLParser.KW_IF); - this.state = 11206; - this.expr_until_then(); this.state = 11207; - this.match(PostgreSQLParser.KW_THEN); - this.state = 11208; - this.proc_sect(); - this.state = 11209; - this.stmt_elsifs(); - this.state = 11210; - this.stmt_else(); - this.state = 11211; - this.match(PostgreSQLParser.KW_END); - this.state = 11212; this.match(PostgreSQLParser.KW_IF); + this.state = 11208; + this.expr_until_then(); + this.state = 11209; + this.match(PostgreSQLParser.KW_THEN); + this.state = 11210; + this.proc_sect(); + this.state = 11211; + this.stmt_elsifs(); + this.state = 11212; + this.stmt_else(); this.state = 11213; + this.match(PostgreSQLParser.KW_END); + this.state = 11214; + this.match(PostgreSQLParser.KW_IF); + this.state = 11215; this.match(PostgreSQLParser.SEMI); } } @@ -65337,28 +63293,28 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_elsifs(): Stmt_elsifsContext { let localContext = new Stmt_elsifsContext(this.context, this.state); - this.enterRule(localContext, 1586, PostgreSQLParser.RULE_stmt_elsifs); + this.enterRule(localContext, 1588, PostgreSQLParser.RULE_stmt_elsifs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11222; + this.state = 11224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 11215; - this.match(PostgreSQLParser.KW_ELSIF); - this.state = 11216; - this.a_expr(); this.state = 11217; - this.match(PostgreSQLParser.KW_THEN); + this.match(PostgreSQLParser.KW_ELSIF); this.state = 11218; + this.a_expr(); + this.state = 11219; + this.match(PostgreSQLParser.KW_THEN); + this.state = 11220; this.proc_sect(); } } - this.state = 11224; + this.state = 11226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -65380,9 +63336,9 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_else(): Stmt_elseContext { let localContext = new Stmt_elseContext(this.context, this.state); - this.enterRule(localContext, 1588, PostgreSQLParser.RULE_stmt_else); + this.enterRule(localContext, 1590, PostgreSQLParser.RULE_stmt_else); try { - this.state = 11228; + this.state = 11230; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_END: @@ -65394,9 +63350,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ELSE: this.enterOuterAlt(localContext, 2); { - this.state = 11226; + this.state = 11228; this.match(PostgreSQLParser.KW_ELSE); - this.state = 11227; + this.state = 11229; this.proc_sect(); } break; @@ -65420,23 +63376,23 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_case(): Stmt_caseContext { let localContext = new Stmt_caseContext(this.context, this.state); - this.enterRule(localContext, 1590, PostgreSQLParser.RULE_stmt_case); + this.enterRule(localContext, 1592, PostgreSQLParser.RULE_stmt_case); try { this.enterOuterAlt(localContext, 1); { - this.state = 11230; - this.match(PostgreSQLParser.KW_CASE); - this.state = 11231; - this.opt_expr_until_when(); this.state = 11232; - this.case_when_list(); - this.state = 11233; - this.opt_case_else(); - this.state = 11234; - this.match(PostgreSQLParser.KW_END); - this.state = 11235; this.match(PostgreSQLParser.KW_CASE); + this.state = 11233; + this.opt_expr_until_when(); + this.state = 11234; + this.case_when_list(); + this.state = 11235; + this.opt_case_else(); this.state = 11236; + this.match(PostgreSQLParser.KW_END); + this.state = 11237; + this.match(PostgreSQLParser.KW_CASE); + this.state = 11238; this.match(PostgreSQLParser.SEMI); } } @@ -65456,11 +63412,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_expr_until_when(): Opt_expr_until_whenContext { let localContext = new Opt_expr_until_whenContext(this.context, this.state); - this.enterRule(localContext, 1592, PostgreSQLParser.RULE_opt_expr_until_when); + this.enterRule(localContext, 1594, PostgreSQLParser.RULE_opt_expr_until_when); try { - this.state = 11240; + this.state = 11242; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1195, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1194, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -65470,7 +63426,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11239; + this.state = 11241; this.sql_expression(); } break; @@ -65492,22 +63448,22 @@ export class PostgreSQLParser extends antlr.Parser { } public case_when_list(): Case_when_listContext { let localContext = new Case_when_listContext(this.context, this.state); - this.enterRule(localContext, 1594, PostgreSQLParser.RULE_case_when_list); + this.enterRule(localContext, 1596, PostgreSQLParser.RULE_case_when_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11243; + this.state = 11245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 11242; + this.state = 11244; this.case_when(); } } - this.state = 11245; + this.state = 11247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -65529,17 +63485,17 @@ export class PostgreSQLParser extends antlr.Parser { } public case_when(): Case_whenContext { let localContext = new Case_whenContext(this.context, this.state); - this.enterRule(localContext, 1596, PostgreSQLParser.RULE_case_when); + this.enterRule(localContext, 1598, PostgreSQLParser.RULE_case_when); try { this.enterOuterAlt(localContext, 1); { - this.state = 11247; - this.match(PostgreSQLParser.KW_WHEN); - this.state = 11248; - this.expr_list(); this.state = 11249; - this.match(PostgreSQLParser.KW_THEN); + this.match(PostgreSQLParser.KW_WHEN); this.state = 11250; + this.expr_list(); + this.state = 11251; + this.match(PostgreSQLParser.KW_THEN); + this.state = 11252; this.proc_sect(); } } @@ -65559,9 +63515,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_case_else(): Opt_case_elseContext { let localContext = new Opt_case_elseContext(this.context, this.state); - this.enterRule(localContext, 1598, PostgreSQLParser.RULE_opt_case_else); + this.enterRule(localContext, 1600, PostgreSQLParser.RULE_opt_case_else); try { - this.state = 11255; + this.state = 11257; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_END: @@ -65573,9 +63529,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ELSE: this.enterOuterAlt(localContext, 2); { - this.state = 11253; + this.state = 11255; this.match(PostgreSQLParser.KW_ELSE); - this.state = 11254; + this.state = 11256; this.proc_sect(); } break; @@ -65599,13 +63555,13 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_loop(): Stmt_loopContext { let localContext = new Stmt_loopContext(this.context, this.state); - this.enterRule(localContext, 1600, PostgreSQLParser.RULE_stmt_loop); + this.enterRule(localContext, 1602, PostgreSQLParser.RULE_stmt_loop); try { this.enterOuterAlt(localContext, 1); { - this.state = 11257; + this.state = 11259; this.opt_loop_label(); - this.state = 11258; + this.state = 11260; this.loop_body(); } } @@ -65625,17 +63581,17 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_while(): Stmt_whileContext { let localContext = new Stmt_whileContext(this.context, this.state); - this.enterRule(localContext, 1602, PostgreSQLParser.RULE_stmt_while); + this.enterRule(localContext, 1604, PostgreSQLParser.RULE_stmt_while); try { this.enterOuterAlt(localContext, 1); { - this.state = 11260; - this.opt_loop_label(); - this.state = 11261; - this.match(PostgreSQLParser.KW_WHILE); this.state = 11262; - this.expr_until_loop(); + this.opt_loop_label(); this.state = 11263; + this.match(PostgreSQLParser.KW_WHILE); + this.state = 11264; + this.expr_until_loop(); + this.state = 11265; this.loop_body(); } } @@ -65655,17 +63611,17 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_for(): Stmt_forContext { let localContext = new Stmt_forContext(this.context, this.state); - this.enterRule(localContext, 1604, PostgreSQLParser.RULE_stmt_for); + this.enterRule(localContext, 1606, PostgreSQLParser.RULE_stmt_for); try { this.enterOuterAlt(localContext, 1); { - this.state = 11265; - this.opt_loop_label(); - this.state = 11266; - this.match(PostgreSQLParser.KW_FOR); this.state = 11267; - this.for_control(); + this.opt_loop_label(); this.state = 11268; + this.match(PostgreSQLParser.KW_FOR); + this.state = 11269; + this.for_control(); + this.state = 11270; this.loop_body(); } } @@ -65685,58 +63641,58 @@ export class PostgreSQLParser extends antlr.Parser { } public for_control(): For_controlContext { let localContext = new For_controlContext(this.context, this.state); - this.enterRule(localContext, 1606, PostgreSQLParser.RULE_for_control); + this.enterRule(localContext, 1608, PostgreSQLParser.RULE_for_control); try { this.enterOuterAlt(localContext, 1); { - this.state = 11270; + this.state = 11272; this.for_variable(); - this.state = 11271; + this.state = 11273; this.match(PostgreSQLParser.KW_IN); - this.state = 11287; + this.state = 11289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1198, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1197, this.context) ) { case 1: { - this.state = 11272; + this.state = 11274; this.cursor_name(); - this.state = 11273; + this.state = 11275; this.opt_cursor_parameters(); } break; case 2: { - this.state = 11275; + this.state = 11277; this.selectstmt(); } break; case 3: { - this.state = 11276; + this.state = 11278; this.explainstmt(); } break; case 4: { - this.state = 11277; - this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 11278; - this.a_expr(); this.state = 11279; + this.match(PostgreSQLParser.KW_EXECUTE); + this.state = 11280; + this.a_expr(); + this.state = 11281; this.opt_for_using_expression(); } break; case 5: { - this.state = 11281; - this.opt_reverse(); - this.state = 11282; - this.a_expr(); this.state = 11283; - this.match(PostgreSQLParser.DOT_DOT); + this.opt_reverse(); this.state = 11284; this.a_expr(); this.state = 11285; + this.match(PostgreSQLParser.DOT_DOT); + this.state = 11286; + this.a_expr(); + this.state = 11287; this.opt_by_expression(); } break; @@ -65759,9 +63715,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_for_using_expression(): Opt_for_using_expressionContext { let localContext = new Opt_for_using_expressionContext(this.context, this.state); - this.enterRule(localContext, 1608, PostgreSQLParser.RULE_opt_for_using_expression); + this.enterRule(localContext, 1610, PostgreSQLParser.RULE_opt_for_using_expression); try { - this.state = 11292; + this.state = 11294; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -65774,9 +63730,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 11290; + this.state = 11292; this.match(PostgreSQLParser.KW_USING); - this.state = 11291; + this.state = 11293; this.expr_list(); } break; @@ -65800,10 +63756,10 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_cursor_parameters(): Opt_cursor_parametersContext { let localContext = new Opt_cursor_parametersContext(this.context, this.state); - this.enterRule(localContext, 1610, PostgreSQLParser.RULE_opt_cursor_parameters); + this.enterRule(localContext, 1612, PostgreSQLParser.RULE_opt_cursor_parameters); let _la: number; try { - this.state = 11306; + this.state = 11308; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_LOOP: @@ -65815,27 +63771,27 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 11295; + this.state = 11297; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11296; + this.state = 11298; this.a_expr(); - this.state = 11301; + this.state = 11303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11297; + this.state = 11299; this.match(PostgreSQLParser.COMMA); - this.state = 11298; + this.state = 11300; this.a_expr(); } } - this.state = 11303; + this.state = 11305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 11304; + this.state = 11306; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -65859,11 +63815,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_reverse(): Opt_reverseContext { let localContext = new Opt_reverseContext(this.context, this.state); - this.enterRule(localContext, 1612, PostgreSQLParser.RULE_opt_reverse); + this.enterRule(localContext, 1614, PostgreSQLParser.RULE_opt_reverse); try { - this.state = 11310; + this.state = 11312; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1202, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1201, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -65873,7 +63829,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11309; + this.state = 11311; this.match(PostgreSQLParser.KW_REVERSE); } break; @@ -65895,9 +63851,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_by_expression(): Opt_by_expressionContext { let localContext = new Opt_by_expressionContext(this.context, this.state); - this.enterRule(localContext, 1614, PostgreSQLParser.RULE_opt_by_expression); + this.enterRule(localContext, 1616, PostgreSQLParser.RULE_opt_by_expression); try { - this.state = 11315; + this.state = 11317; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_LOOP: @@ -65909,9 +63865,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_BY: this.enterOuterAlt(localContext, 2); { - this.state = 11313; + this.state = 11315; this.match(PostgreSQLParser.KW_BY); - this.state = 11314; + this.state = 11316; this.a_expr(); } break; @@ -65935,11 +63891,11 @@ export class PostgreSQLParser extends antlr.Parser { } public for_variable(): For_variableContext { let localContext = new For_variableContext(this.context, this.state); - this.enterRule(localContext, 1616, PostgreSQLParser.RULE_for_variable); + this.enterRule(localContext, 1618, PostgreSQLParser.RULE_for_variable); try { this.enterOuterAlt(localContext, 1); { - this.state = 11317; + this.state = 11319; this.any_name_list(); } } @@ -65959,25 +63915,25 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_foreach_a(): Stmt_foreach_aContext { let localContext = new Stmt_foreach_aContext(this.context, this.state); - this.enterRule(localContext, 1618, PostgreSQLParser.RULE_stmt_foreach_a); + this.enterRule(localContext, 1620, PostgreSQLParser.RULE_stmt_foreach_a); try { this.enterOuterAlt(localContext, 1); { - this.state = 11319; - this.opt_loop_label(); - this.state = 11320; - this.match(PostgreSQLParser.KW_FOREACH); this.state = 11321; - this.for_variable(); + this.opt_loop_label(); this.state = 11322; - this.foreach_slice(); + this.match(PostgreSQLParser.KW_FOREACH); this.state = 11323; - this.match(PostgreSQLParser.KW_IN); + this.for_variable(); this.state = 11324; - this.match(PostgreSQLParser.KW_ARRAY); + this.foreach_slice(); this.state = 11325; - this.a_expr(); + this.match(PostgreSQLParser.KW_IN); this.state = 11326; + this.match(PostgreSQLParser.KW_ARRAY); + this.state = 11327; + this.a_expr(); + this.state = 11328; this.loop_body(); } } @@ -65997,9 +63953,9 @@ export class PostgreSQLParser extends antlr.Parser { } public foreach_slice(): Foreach_sliceContext { let localContext = new Foreach_sliceContext(this.context, this.state); - this.enterRule(localContext, 1620, PostgreSQLParser.RULE_foreach_slice); + this.enterRule(localContext, 1622, PostgreSQLParser.RULE_foreach_slice); try { - this.state = 11331; + this.state = 11333; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_IN: @@ -66011,9 +63967,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SLICE: this.enterOuterAlt(localContext, 2); { - this.state = 11329; + this.state = 11331; this.match(PostgreSQLParser.KW_SLICE); - this.state = 11330; + this.state = 11332; this.iconst(); } break; @@ -66037,26 +63993,26 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_exit(): Stmt_exitContext { let localContext = new Stmt_exitContext(this.context, this.state); - this.enterRule(localContext, 1622, PostgreSQLParser.RULE_stmt_exit); + this.enterRule(localContext, 1624, PostgreSQLParser.RULE_stmt_exit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11333; + this.state = 11335; this.exit_type(); - this.state = 11334; - this.opt_label(); this.state = 11336; + this.opt_label(); + this.state = 11338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 11335; + this.state = 11337; this.opt_exitcond(); } } - this.state = 11338; + this.state = 11340; this.match(PostgreSQLParser.SEMI); } } @@ -66076,12 +64032,12 @@ export class PostgreSQLParser extends antlr.Parser { } public exit_type(): Exit_typeContext { let localContext = new Exit_typeContext(this.context, this.state); - this.enterRule(localContext, 1624, PostgreSQLParser.RULE_exit_type); + this.enterRule(localContext, 1626, PostgreSQLParser.RULE_exit_type); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11340; + this.state = 11342; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -66108,37 +64064,37 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_return(): Stmt_returnContext { let localContext = new Stmt_returnContext(this.context, this.state); - this.enterRule(localContext, 1626, PostgreSQLParser.RULE_stmt_return); + this.enterRule(localContext, 1628, PostgreSQLParser.RULE_stmt_return); try { this.enterOuterAlt(localContext, 1); { - this.state = 11342; + this.state = 11344; this.match(PostgreSQLParser.KW_RETURN); - this.state = 11354; + this.state = 11356; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1206, this.context) ) { case 1: { - this.state = 11343; + this.state = 11345; this.match(PostgreSQLParser.KW_NEXT); - this.state = 11344; + this.state = 11346; this.sql_expression(); } break; case 2: { - this.state = 11345; + this.state = 11347; this.match(PostgreSQLParser.KW_QUERY); - this.state = 11351; + this.state = 11353; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_EXECUTE: { - this.state = 11346; - this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 11347; - this.a_expr(); this.state = 11348; + this.match(PostgreSQLParser.KW_EXECUTE); + this.state = 11349; + this.a_expr(); + this.state = 11350; this.opt_for_using_expression(); } break; @@ -66148,7 +64104,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_WITH: case PostgreSQLParser.KW_VALUES: { - this.state = 11350; + this.state = 11352; this.selectstmt(); } break; @@ -66159,12 +64115,12 @@ export class PostgreSQLParser extends antlr.Parser { break; case 3: { - this.state = 11353; + this.state = 11355; this.opt_return_result(); } break; } - this.state = 11356; + this.state = 11358; this.match(PostgreSQLParser.SEMI); } } @@ -66184,11 +64140,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_return_result(): Opt_return_resultContext { let localContext = new Opt_return_resultContext(this.context, this.state); - this.enterRule(localContext, 1628, PostgreSQLParser.RULE_opt_return_result); + this.enterRule(localContext, 1630, PostgreSQLParser.RULE_opt_return_result); try { - this.state = 11360; + this.state = 11362; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1207, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -66198,7 +64154,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11359; + this.state = 11361; this.sql_expression(); } break; @@ -66220,110 +64176,110 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_raise(): Stmt_raiseContext { let localContext = new Stmt_raiseContext(this.context, this.state); - this.enterRule(localContext, 1630, PostgreSQLParser.RULE_stmt_raise); + this.enterRule(localContext, 1632, PostgreSQLParser.RULE_stmt_raise); let _la: number; try { - this.state = 11396; + this.state = 11398; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1212, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11362; - this.match(PostgreSQLParser.KW_RAISE); this.state = 11364; + this.match(PostgreSQLParser.KW_RAISE); + this.state = 11366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0)) { { - this.state = 11363; + this.state = 11365; this.opt_stmt_raise_level(); } } - this.state = 11366; - this.sconst(); - this.state = 11367; - this.opt_raise_list(); this.state = 11368; - this.opt_raise_using(); + this.sconst(); this.state = 11369; + this.opt_raise_list(); + this.state = 11370; + this.opt_raise_using(); + this.state = 11371; this.match(PostgreSQLParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11371; - this.match(PostgreSQLParser.KW_RAISE); this.state = 11373; + this.match(PostgreSQLParser.KW_RAISE); + this.state = 11375; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1210, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1209, this.context) ) { case 1: { - this.state = 11372; + this.state = 11374; this.opt_stmt_raise_level(); } break; } - this.state = 11375; - this.identifier(); - this.state = 11376; - this.opt_raise_using(); this.state = 11377; + this.identifier(); + this.state = 11378; + this.opt_raise_using(); + this.state = 11379; this.match(PostgreSQLParser.SEMI); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 11379; - this.match(PostgreSQLParser.KW_RAISE); this.state = 11381; + this.match(PostgreSQLParser.KW_RAISE); + this.state = 11383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0)) { { - this.state = 11380; + this.state = 11382; this.opt_stmt_raise_level(); } } - this.state = 11383; - this.match(PostgreSQLParser.KW_SQLSTATE); - this.state = 11384; - this.sconst(); this.state = 11385; - this.opt_raise_using(); + this.match(PostgreSQLParser.KW_SQLSTATE); this.state = 11386; + this.sconst(); + this.state = 11387; + this.opt_raise_using(); + this.state = 11388; this.match(PostgreSQLParser.SEMI); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 11388; - this.match(PostgreSQLParser.KW_RAISE); this.state = 11390; + this.match(PostgreSQLParser.KW_RAISE); + this.state = 11392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0)) { { - this.state = 11389; + this.state = 11391; this.opt_stmt_raise_level(); } } - this.state = 11392; + this.state = 11394; this.opt_raise_using(); - this.state = 11393; + this.state = 11395; this.match(PostgreSQLParser.SEMI); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 11395; + this.state = 11397; this.match(PostgreSQLParser.KW_RAISE); } break; @@ -66345,12 +64301,12 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_stmt_raise_level(): Opt_stmt_raise_levelContext { let localContext = new Opt_stmt_raise_levelContext(this.context, this.state); - this.enterRule(localContext, 1632, PostgreSQLParser.RULE_opt_stmt_raise_level); + this.enterRule(localContext, 1634, PostgreSQLParser.RULE_opt_stmt_raise_level); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11398; + this.state = 11400; _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -66377,10 +64333,10 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_raise_list(): Opt_raise_listContext { let localContext = new Opt_raise_listContext(this.context, this.state); - this.enterRule(localContext, 1634, PostgreSQLParser.RULE_opt_raise_list); + this.enterRule(localContext, 1636, PostgreSQLParser.RULE_opt_raise_list); let _la: number; try { - this.state = 11407; + this.state = 11409; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -66393,19 +64349,19 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.COMMA: this.enterOuterAlt(localContext, 2); { - this.state = 11403; + this.state = 11405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 11401; + this.state = 11403; this.match(PostgreSQLParser.COMMA); - this.state = 11402; + this.state = 11404; this.a_expr(); } } - this.state = 11405; + this.state = 11407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -66431,9 +64387,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_raise_using(): Opt_raise_usingContext { let localContext = new Opt_raise_usingContext(this.context, this.state); - this.enterRule(localContext, 1636, PostgreSQLParser.RULE_opt_raise_using); + this.enterRule(localContext, 1638, PostgreSQLParser.RULE_opt_raise_using); try { - this.state = 11412; + this.state = 11414; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -66445,9 +64401,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 11410; + this.state = 11412; this.match(PostgreSQLParser.KW_USING); - this.state = 11411; + this.state = 11413; this.opt_raise_using_elem_list(); } break; @@ -66471,15 +64427,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_raise_using_elem(): Opt_raise_using_elemContext { let localContext = new Opt_raise_using_elemContext(this.context, this.state); - this.enterRule(localContext, 1638, PostgreSQLParser.RULE_opt_raise_using_elem); + this.enterRule(localContext, 1640, PostgreSQLParser.RULE_opt_raise_using_elem); try { this.enterOuterAlt(localContext, 1); { - this.state = 11414; - this.identifier(); - this.state = 11415; - this.match(PostgreSQLParser.EQUAL); this.state = 11416; + this.identifier(); + this.state = 11417; + this.match(PostgreSQLParser.EQUAL); + this.state = 11418; this.a_expr(); } } @@ -66499,26 +64455,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_raise_using_elem_list(): Opt_raise_using_elem_listContext { let localContext = new Opt_raise_using_elem_listContext(this.context, this.state); - this.enterRule(localContext, 1640, PostgreSQLParser.RULE_opt_raise_using_elem_list); + this.enterRule(localContext, 1642, PostgreSQLParser.RULE_opt_raise_using_elem_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11418; + this.state = 11420; this.opt_raise_using_elem(); - this.state = 11423; + this.state = 11425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11419; + this.state = 11421; this.match(PostgreSQLParser.COMMA); - this.state = 11420; + this.state = 11422; this.opt_raise_using_elem(); } } - this.state = 11425; + this.state = 11427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -66540,17 +64496,17 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_assert(): Stmt_assertContext { let localContext = new Stmt_assertContext(this.context, this.state); - this.enterRule(localContext, 1642, PostgreSQLParser.RULE_stmt_assert); + this.enterRule(localContext, 1644, PostgreSQLParser.RULE_stmt_assert); try { this.enterOuterAlt(localContext, 1); { - this.state = 11426; - this.match(PostgreSQLParser.KW_ASSERT); - this.state = 11427; - this.sql_expression(); this.state = 11428; - this.opt_stmt_assert_message(); + this.match(PostgreSQLParser.KW_ASSERT); this.state = 11429; + this.sql_expression(); + this.state = 11430; + this.opt_stmt_assert_message(); + this.state = 11431; this.match(PostgreSQLParser.SEMI); } } @@ -66570,9 +64526,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_stmt_assert_message(): Opt_stmt_assert_messageContext { let localContext = new Opt_stmt_assert_messageContext(this.context, this.state); - this.enterRule(localContext, 1644, PostgreSQLParser.RULE_opt_stmt_assert_message); + this.enterRule(localContext, 1646, PostgreSQLParser.RULE_opt_stmt_assert_message); try { - this.state = 11434; + this.state = 11436; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -66584,9 +64540,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.COMMA: this.enterOuterAlt(localContext, 2); { - this.state = 11432; + this.state = 11434; this.match(PostgreSQLParser.COMMA); - this.state = 11433; + this.state = 11435; this.sql_expression(); } break; @@ -66610,21 +64566,21 @@ export class PostgreSQLParser extends antlr.Parser { } public loop_body(): Loop_bodyContext { let localContext = new Loop_bodyContext(this.context, this.state); - this.enterRule(localContext, 1646, PostgreSQLParser.RULE_loop_body); + this.enterRule(localContext, 1648, PostgreSQLParser.RULE_loop_body); try { this.enterOuterAlt(localContext, 1); { - this.state = 11436; - this.match(PostgreSQLParser.KW_LOOP); - this.state = 11437; - this.proc_sect(); this.state = 11438; - this.match(PostgreSQLParser.KW_END); - this.state = 11439; this.match(PostgreSQLParser.KW_LOOP); + this.state = 11439; + this.proc_sect(); this.state = 11440; - this.opt_label(); + this.match(PostgreSQLParser.KW_END); this.state = 11441; + this.match(PostgreSQLParser.KW_LOOP); + this.state = 11442; + this.opt_label(); + this.state = 11443; this.match(PostgreSQLParser.SEMI); } } @@ -66644,13 +64600,13 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_execsql(): Stmt_execsqlContext { let localContext = new Stmt_execsqlContext(this.context, this.state); - this.enterRule(localContext, 1648, PostgreSQLParser.RULE_stmt_execsql); + this.enterRule(localContext, 1650, PostgreSQLParser.RULE_stmt_execsql); try { this.enterOuterAlt(localContext, 1); { - this.state = 11443; + this.state = 11445; this.make_execsql_stmt(); - this.state = 11444; + this.state = 11446; this.match(PostgreSQLParser.SEMI); } } @@ -66670,30 +64626,30 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_dynexecute(): Stmt_dynexecuteContext { let localContext = new Stmt_dynexecuteContext(this.context, this.state); - this.enterRule(localContext, 1650, PostgreSQLParser.RULE_stmt_dynexecute); + this.enterRule(localContext, 1652, PostgreSQLParser.RULE_stmt_dynexecute); try { this.enterOuterAlt(localContext, 1); { - this.state = 11446; + this.state = 11448; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 11447; + this.state = 11449; this.a_expr(); - this.state = 11455; + this.state = 11457; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1218, this.context) ) { case 1: { - this.state = 11448; + this.state = 11450; this.opt_execute_into(); - this.state = 11449; + this.state = 11451; this.opt_execute_using(); } break; case 2: { - this.state = 11451; + this.state = 11453; this.opt_execute_using(); - this.state = 11452; + this.state = 11454; this.opt_execute_into(); } break; @@ -66703,7 +64659,7 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 11457; + this.state = 11459; this.match(PostgreSQLParser.SEMI); } } @@ -66723,9 +64679,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_execute_using(): Opt_execute_usingContext { let localContext = new Opt_execute_usingContext(this.context, this.state); - this.enterRule(localContext, 1652, PostgreSQLParser.RULE_opt_execute_using); + this.enterRule(localContext, 1654, PostgreSQLParser.RULE_opt_execute_using); try { - this.state = 11462; + this.state = 11464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -66738,9 +64694,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 11460; + this.state = 11462; this.match(PostgreSQLParser.KW_USING); - this.state = 11461; + this.state = 11463; this.opt_execute_using_list(); } break; @@ -66764,26 +64720,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_execute_using_list(): Opt_execute_using_listContext { let localContext = new Opt_execute_using_listContext(this.context, this.state); - this.enterRule(localContext, 1654, PostgreSQLParser.RULE_opt_execute_using_list); + this.enterRule(localContext, 1656, PostgreSQLParser.RULE_opt_execute_using_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11464; + this.state = 11466; this.a_expr(); - this.state = 11469; + this.state = 11471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11465; + this.state = 11467; this.match(PostgreSQLParser.COMMA); - this.state = 11466; + this.state = 11468; this.a_expr(); } } - this.state = 11471; + this.state = 11473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -66805,9 +64761,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_execute_into(): Opt_execute_intoContext { let localContext = new Opt_execute_intoContext(this.context, this.state); - this.enterRule(localContext, 1656, PostgreSQLParser.RULE_opt_execute_into); + this.enterRule(localContext, 1658, PostgreSQLParser.RULE_opt_execute_into); try { - this.state = 11478; + this.state = 11480; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -66820,19 +64776,19 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_INTO: this.enterOuterAlt(localContext, 2); { - this.state = 11473; - this.match(PostgreSQLParser.KW_INTO); this.state = 11475; + this.match(PostgreSQLParser.KW_INTO); + this.state = 11477; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1222, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1221, this.context) ) { case 1: { - this.state = 11474; + this.state = 11476; this.match(PostgreSQLParser.KW_STRICT); } break; } - this.state = 11477; + this.state = 11479; this.into_target(); } break; @@ -66856,25 +64812,25 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_open(): Stmt_openContext { let localContext = new Stmt_openContext(this.context, this.state); - this.enterRule(localContext, 1658, PostgreSQLParser.RULE_stmt_open); + this.enterRule(localContext, 1660, PostgreSQLParser.RULE_stmt_open); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11480; + this.state = 11482; this.match(PostgreSQLParser.KW_OPEN); - this.state = 11498; + this.state = 11500; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1226, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1225, this.context) ) { case 1: { - this.state = 11481; - this.cursor_variable(); - this.state = 11482; - this.opt_scroll_option(); this.state = 11483; + this.cursor_variable(); + this.state = 11484; + this.opt_scroll_option(); + this.state = 11485; this.match(PostgreSQLParser.KW_FOR); - this.state = 11489; + this.state = 11491; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -66883,17 +64839,17 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_WITH: case PostgreSQLParser.KW_VALUES: { - this.state = 11484; + this.state = 11486; this.selectstmt(); } break; case PostgreSQLParser.KW_EXECUTE: { - this.state = 11485; - this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 11486; - this.sql_expression(); this.state = 11487; + this.match(PostgreSQLParser.KW_EXECUTE); + this.state = 11488; + this.sql_expression(); + this.state = 11489; this.opt_open_using(); } break; @@ -66904,18 +64860,18 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 11491; + this.state = 11493; this.colid(); - this.state = 11496; + this.state = 11498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 11492; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11493; - this.opt_open_bound_list(); this.state = 11494; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 11495; + this.opt_open_bound_list(); + this.state = 11496; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -66923,7 +64879,7 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 11500; + this.state = 11502; this.match(PostgreSQLParser.SEMI); } } @@ -66943,26 +64899,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_open_bound_list_item(): Opt_open_bound_list_itemContext { let localContext = new Opt_open_bound_list_itemContext(this.context, this.state); - this.enterRule(localContext, 1660, PostgreSQLParser.RULE_opt_open_bound_list_item); + this.enterRule(localContext, 1662, PostgreSQLParser.RULE_opt_open_bound_list_item); try { - this.state = 11507; + this.state = 11509; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1227, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1226, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11502; - this.colid(); - this.state = 11503; - this.match(PostgreSQLParser.COLON_EQUALS); this.state = 11504; + this.colid(); + this.state = 11505; + this.match(PostgreSQLParser.COLON_EQUALS); + this.state = 11506; this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11506; + this.state = 11508; this.a_expr(); } break; @@ -66984,26 +64940,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_open_bound_list(): Opt_open_bound_listContext { let localContext = new Opt_open_bound_listContext(this.context, this.state); - this.enterRule(localContext, 1662, PostgreSQLParser.RULE_opt_open_bound_list); + this.enterRule(localContext, 1664, PostgreSQLParser.RULE_opt_open_bound_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11509; + this.state = 11511; this.opt_open_bound_list_item(); - this.state = 11514; + this.state = 11516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11510; + this.state = 11512; this.match(PostgreSQLParser.COMMA); - this.state = 11511; + this.state = 11513; this.opt_open_bound_list_item(); } } - this.state = 11516; + this.state = 11518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -67025,9 +64981,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_open_using(): Opt_open_usingContext { let localContext = new Opt_open_usingContext(this.context, this.state); - this.enterRule(localContext, 1664, PostgreSQLParser.RULE_opt_open_using); + this.enterRule(localContext, 1666, PostgreSQLParser.RULE_opt_open_using); try { - this.state = 11520; + this.state = 11522; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -67039,9 +64995,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 11518; + this.state = 11520; this.match(PostgreSQLParser.KW_USING); - this.state = 11519; + this.state = 11521; this.expr_list(); } break; @@ -67065,9 +65021,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_scroll_option(): Opt_scroll_optionContext { let localContext = new Opt_scroll_optionContext(this.context, this.state); - this.enterRule(localContext, 1666, PostgreSQLParser.RULE_opt_scroll_option); + this.enterRule(localContext, 1668, PostgreSQLParser.RULE_opt_scroll_option); try { - this.state = 11526; + this.state = 11528; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOR: @@ -67080,9 +65036,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SCROLL: this.enterOuterAlt(localContext, 2); { - this.state = 11523; + this.state = 11525; this.opt_scroll_option_no(); - this.state = 11524; + this.state = 11526; this.match(PostgreSQLParser.KW_SCROLL); } break; @@ -67106,9 +65062,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_scroll_option_no(): Opt_scroll_option_noContext { let localContext = new Opt_scroll_option_noContext(this.context, this.state); - this.enterRule(localContext, 1668, PostgreSQLParser.RULE_opt_scroll_option_no); + this.enterRule(localContext, 1670, PostgreSQLParser.RULE_opt_scroll_option_no); try { - this.state = 11530; + this.state = 11532; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SCROLL: @@ -67120,7 +65076,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 11529; + this.state = 11531; this.match(PostgreSQLParser.KW_NO); } break; @@ -67144,31 +65100,31 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_fetch(): Stmt_fetchContext { let localContext = new Stmt_fetchContext(this.context, this.state); - this.enterRule(localContext, 1670, PostgreSQLParser.RULE_stmt_fetch); + this.enterRule(localContext, 1672, PostgreSQLParser.RULE_stmt_fetch); try { this.enterOuterAlt(localContext, 1); { - this.state = 11532; - this.match(PostgreSQLParser.KW_FETCH); this.state = 11534; + this.match(PostgreSQLParser.KW_FETCH); + this.state = 11536; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1231, this.context) ) { case 1: { - this.state = 11533; + this.state = 11535; localContext._direction = this.opt_fetch_direction(); } break; } - this.state = 11536; - this.opt_cursor_from(); - this.state = 11537; - this.cursor_variable(); this.state = 11538; - this.match(PostgreSQLParser.KW_INTO); + this.opt_cursor_from(); this.state = 11539; - this.into_target(); + this.cursor_variable(); this.state = 11540; + this.match(PostgreSQLParser.KW_INTO); + this.state = 11541; + this.into_target(); + this.state = 11542; this.match(PostgreSQLParser.SEMI); } } @@ -67188,11 +65144,11 @@ export class PostgreSQLParser extends antlr.Parser { } public into_target(): Into_targetContext { let localContext = new Into_targetContext(this.context, this.state); - this.enterRule(localContext, 1672, PostgreSQLParser.RULE_into_target); + this.enterRule(localContext, 1674, PostgreSQLParser.RULE_into_target); try { this.enterOuterAlt(localContext, 1); { - this.state = 11542; + this.state = 11544; this.expr_list(); } } @@ -67212,9 +65168,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_cursor_from(): Opt_cursor_fromContext { let localContext = new Opt_cursor_fromContext(this.context, this.state); - this.enterRule(localContext, 1674, PostgreSQLParser.RULE_opt_cursor_from); + this.enterRule(localContext, 1676, PostgreSQLParser.RULE_opt_cursor_from); try { - this.state = 11547; + this.state = 11549; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.PARAM: @@ -67626,14 +65582,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 11545; + this.state = 11547; this.match(PostgreSQLParser.KW_FROM); } break; case PostgreSQLParser.KW_IN: this.enterOuterAlt(localContext, 3); { - this.state = 11546; + this.state = 11548; this.match(PostgreSQLParser.KW_IN); } break; @@ -67657,76 +65613,76 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_fetch_direction(): Opt_fetch_directionContext { let localContext = new Opt_fetch_directionContext(this.context, this.state); - this.enterRule(localContext, 1676, PostgreSQLParser.RULE_opt_fetch_direction); + this.enterRule(localContext, 1678, PostgreSQLParser.RULE_opt_fetch_direction); let _la: number; try { - this.state = 11564; + this.state = 11566; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1234, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11549; + this.state = 11551; this.match(PostgreSQLParser.KW_NEXT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11550; + this.state = 11552; this.match(PostgreSQLParser.KW_PRIOR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 11551; + this.state = 11553; this.match(PostgreSQLParser.KW_FIRST); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 11552; + this.state = 11554; this.match(PostgreSQLParser.KW_LAST); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 11553; + this.state = 11555; this.match(PostgreSQLParser.KW_ABSOLUTE); - this.state = 11554; + this.state = 11556; this.a_expr(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 11555; + this.state = 11557; this.match(PostgreSQLParser.KW_RELATIVE); - this.state = 11556; + this.state = 11558; this.a_expr(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 11557; + this.state = 11559; this.a_expr(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 11558; + this.state = 11560; this.match(PostgreSQLParser.KW_ALL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 11559; + this.state = 11561; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -67735,18 +65691,18 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 11562; + this.state = 11564; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1233, this.context) ) { case 1: { - this.state = 11560; + this.state = 11562; this.a_expr(); } break; case 2: { - this.state = 11561; + this.state = 11563; this.match(PostgreSQLParser.KW_ALL); } break; @@ -67771,25 +65727,25 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_move(): Stmt_moveContext { let localContext = new Stmt_moveContext(this.context, this.state); - this.enterRule(localContext, 1678, PostgreSQLParser.RULE_stmt_move); + this.enterRule(localContext, 1680, PostgreSQLParser.RULE_stmt_move); try { this.enterOuterAlt(localContext, 1); { - this.state = 11566; - this.match(PostgreSQLParser.KW_MOVE); this.state = 11568; + this.match(PostgreSQLParser.KW_MOVE); + this.state = 11570; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1235, this.context) ) { case 1: { - this.state = 11567; + this.state = 11569; this.opt_fetch_direction(); } break; } - this.state = 11570; + this.state = 11572; this.cursor_variable(); - this.state = 11571; + this.state = 11573; this.match(PostgreSQLParser.SEMI); } } @@ -67809,86 +65765,86 @@ export class PostgreSQLParser extends antlr.Parser { } public mergestmt(): MergestmtContext { let localContext = new MergestmtContext(this.context, this.state); - this.enterRule(localContext, 1680, PostgreSQLParser.RULE_mergestmt); + this.enterRule(localContext, 1682, PostgreSQLParser.RULE_mergestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11574; + this.state = 11576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 11573; + this.state = 11575; this.with_clause(); } } - this.state = 11576; + this.state = 11578; this.match(PostgreSQLParser.KW_MERGE); - this.state = 11577; - this.match(PostgreSQLParser.KW_INTO); this.state = 11579; + this.match(PostgreSQLParser.KW_INTO); + this.state = 11581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 11578; + this.state = 11580; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 11581; - this.table_name(); this.state = 11583; + this.table_name(); + this.state = 11585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 11582; + this.state = 11584; this.match(PostgreSQLParser.STAR); } } - this.state = 11589; + this.state = 11591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266381) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 11586; + this.state = 11588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 11585; + this.state = 11587; this.match(PostgreSQLParser.KW_AS); } } - this.state = 11588; + this.state = 11590; this.colid(); } } - this.state = 11591; - this.match(PostgreSQLParser.KW_USING); - this.state = 11592; - this.data_source(); this.state = 11593; - this.match(PostgreSQLParser.KW_ON); + this.match(PostgreSQLParser.KW_USING); this.state = 11594; - this.join_condition(); + this.data_source(); + this.state = 11595; + this.match(PostgreSQLParser.KW_ON); this.state = 11596; + this.join_condition(); + this.state = 11598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 11595; + this.state = 11597; this.merge_when_clause(); } } - this.state = 11598; + this.state = 11600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -67910,34 +65866,34 @@ export class PostgreSQLParser extends antlr.Parser { } public data_source(): Data_sourceContext { let localContext = new Data_sourceContext(this.context, this.state); - this.enterRule(localContext, 1682, PostgreSQLParser.RULE_data_source); + this.enterRule(localContext, 1684, PostgreSQLParser.RULE_data_source); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11611; + this.state = 11613; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1245, this.context) ) { case 1: { - this.state = 11601; + this.state = 11603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 11600; + this.state = 11602; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 11603; - this.table_name(); this.state = 11605; + this.table_name(); + this.state = 11607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 11604; + this.state = 11606; this.match(PostgreSQLParser.STAR); } } @@ -67946,18 +65902,18 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 11609; + this.state = 11611; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1244, this.context) ) { case 1: { - this.state = 11607; + this.state = 11609; this.select_no_parens(); } break; case 2: { - this.state = 11608; + this.state = 11610; this.values_clause(); } break; @@ -67965,22 +65921,22 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 11617; + this.state = 11619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266381) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 11614; + this.state = 11616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 11613; + this.state = 11615; this.match(PostgreSQLParser.KW_AS); } } - this.state = 11616; + this.state = 11618; this.colid(); } } @@ -68003,11 +65959,11 @@ export class PostgreSQLParser extends antlr.Parser { } public join_condition(): Join_conditionContext { let localContext = new Join_conditionContext(this.context, this.state); - this.enterRule(localContext, 1684, PostgreSQLParser.RULE_join_condition); + this.enterRule(localContext, 1686, PostgreSQLParser.RULE_join_condition); try { this.enterOuterAlt(localContext, 1); { - this.state = 11619; + this.state = 11621; this.a_expr(); } } @@ -68027,53 +65983,53 @@ export class PostgreSQLParser extends antlr.Parser { } public merge_when_clause(): Merge_when_clauseContext { let localContext = new Merge_when_clauseContext(this.context, this.state); - this.enterRule(localContext, 1686, PostgreSQLParser.RULE_merge_when_clause); + this.enterRule(localContext, 1688, PostgreSQLParser.RULE_merge_when_clause); let _la: number; try { - this.state = 11647; + this.state = 11649; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1252, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11621; + this.state = 11623; this.match(PostgreSQLParser.KW_WHEN); - this.state = 11622; + this.state = 11624; this.match(PostgreSQLParser.KW_MATCHED); - this.state = 11625; + this.state = 11627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 11623; + this.state = 11625; this.match(PostgreSQLParser.KW_AND); - this.state = 11624; + this.state = 11626; this.a_expr(); } } - this.state = 11627; + this.state = 11629; this.match(PostgreSQLParser.KW_THEN); - this.state = 11632; + this.state = 11634; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_UPDATE: { - this.state = 11628; + this.state = 11630; this.merge_update(); } break; case PostgreSQLParser.KW_DELETE: { - this.state = 11629; + this.state = 11631; this.match(PostgreSQLParser.KW_DELETE); } break; case PostgreSQLParser.KW_DO: { - this.state = 11630; + this.state = 11632; this.match(PostgreSQLParser.KW_DO); - this.state = 11631; + this.state = 11633; this.match(PostgreSQLParser.KW_NOTHING); } break; @@ -68085,40 +66041,40 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11634; - this.match(PostgreSQLParser.KW_WHEN); - this.state = 11635; - this.match(PostgreSQLParser.KW_NOT); this.state = 11636; + this.match(PostgreSQLParser.KW_WHEN); + this.state = 11637; + this.match(PostgreSQLParser.KW_NOT); + this.state = 11638; this.match(PostgreSQLParser.KW_MATCHED); - this.state = 11639; + this.state = 11641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 11637; + this.state = 11639; this.match(PostgreSQLParser.KW_AND); - this.state = 11638; + this.state = 11640; this.a_expr(); } } - this.state = 11641; + this.state = 11643; this.match(PostgreSQLParser.KW_THEN); - this.state = 11645; + this.state = 11647; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_INSERT: { - this.state = 11642; + this.state = 11644; this.merge_insert(); } break; case PostgreSQLParser.KW_DO: { - this.state = 11643; + this.state = 11645; this.match(PostgreSQLParser.KW_DO); - this.state = 11644; + this.state = 11646; this.match(PostgreSQLParser.KW_NOTHING); } break; @@ -68145,35 +66101,35 @@ export class PostgreSQLParser extends antlr.Parser { } public merge_insert(): Merge_insertContext { let localContext = new Merge_insertContext(this.context, this.state); - this.enterRule(localContext, 1688, PostgreSQLParser.RULE_merge_insert); + this.enterRule(localContext, 1690, PostgreSQLParser.RULE_merge_insert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11649; + this.state = 11651; this.match(PostgreSQLParser.KW_INSERT); - this.state = 11654; + this.state = 11656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 11650; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11651; - this.columnlist(); this.state = 11652; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 11653; + this.column_list(); + this.state = 11654; this.match(PostgreSQLParser.CLOSE_PAREN); } } - this.state = 11659; + this.state = 11661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 11656; + this.state = 11658; this.match(PostgreSQLParser.KW_OVERRIDING); - this.state = 11657; + this.state = 11659; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -68182,12 +66138,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 11658; + this.state = 11660; this.match(PostgreSQLParser.KW_VALUE); } } - this.state = 11661; + this.state = 11663; this.default_values_or_values(); } } @@ -68207,463 +66163,62 @@ export class PostgreSQLParser extends antlr.Parser { } public merge_update(): Merge_updateContext { let localContext = new Merge_updateContext(this.context, this.state); - this.enterRule(localContext, 1690, PostgreSQLParser.RULE_merge_update); + this.enterRule(localContext, 1692, PostgreSQLParser.RULE_merge_update); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 11663; + this.state = 11665; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 11664; + this.state = 11666; this.match(PostgreSQLParser.KW_SET); - this.state = 11677; + this.state = 11679; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 11677; + this.state = 11679; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSQLParser.KW_AND: - case PostgreSQLParser.KW_ARRAY: - case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_CONSTRAINT: - case PostgreSQLParser.KW_DEFAULT: - case PostgreSQLParser.KW_DO: - case PostgreSQLParser.KW_FETCH: - case PostgreSQLParser.KW_TABLE: - case PostgreSQLParser.KW_IS: - case PostgreSQLParser.KW_OUTER: - case PostgreSQLParser.KW_OVER: - case PostgreSQLParser.KW_ABORT: - case PostgreSQLParser.KW_ABSOLUTE: - case PostgreSQLParser.KW_ACCESS: - case PostgreSQLParser.KW_ACTION: - case PostgreSQLParser.KW_ADD: - case PostgreSQLParser.KW_ADMIN: - case PostgreSQLParser.KW_AFTER: - case PostgreSQLParser.KW_AGGREGATE: - case PostgreSQLParser.KW_ALSO: - case PostgreSQLParser.KW_ALTER: - case PostgreSQLParser.KW_ALWAYS: - case PostgreSQLParser.KW_ASSERTION: - case PostgreSQLParser.KW_ASSIGNMENT: - case PostgreSQLParser.KW_AT: - case PostgreSQLParser.KW_ATTRIBUTE: - case PostgreSQLParser.KW_BACKWARD: - case PostgreSQLParser.KW_BEFORE: - case PostgreSQLParser.KW_BEGIN: - case PostgreSQLParser.KW_BY: - case PostgreSQLParser.KW_CACHE: - case PostgreSQLParser.KW_CALLED: - case PostgreSQLParser.KW_CASCADE: - case PostgreSQLParser.KW_CASCADED: - case PostgreSQLParser.KW_CATALOG: - case PostgreSQLParser.KW_CHAIN: - case PostgreSQLParser.KW_CHARACTERISTICS: - case PostgreSQLParser.KW_CHECKPOINT: - case PostgreSQLParser.KW_CLASS: - case PostgreSQLParser.KW_CLOSE: - case PostgreSQLParser.KW_CLUSTER: - case PostgreSQLParser.KW_COMMENT: - case PostgreSQLParser.KW_COMMENTS: - case PostgreSQLParser.KW_COMMIT: - case PostgreSQLParser.KW_COMMITTED: - case PostgreSQLParser.KW_CONFIGURATION: - case PostgreSQLParser.KW_CONNECTION: - case PostgreSQLParser.KW_CONSTRAINTS: - case PostgreSQLParser.KW_CONTENT: - case PostgreSQLParser.KW_CONTINUE: - case PostgreSQLParser.KW_CONVERSION: - case PostgreSQLParser.KW_COPY: - case PostgreSQLParser.KW_COST: - case PostgreSQLParser.KW_CSV: - case PostgreSQLParser.KW_CURSOR: - case PostgreSQLParser.KW_CYCLE: - case PostgreSQLParser.KW_DATA: - case PostgreSQLParser.KW_DATABASE: - case PostgreSQLParser.KW_DAY: - case PostgreSQLParser.KW_DEALLOCATE: - case PostgreSQLParser.KW_DECLARE: - case PostgreSQLParser.KW_DEFAULTS: - case PostgreSQLParser.KW_DEFERRED: - case PostgreSQLParser.KW_DEFINER: - case PostgreSQLParser.KW_DELETE: - case PostgreSQLParser.KW_DELIMITER: - case PostgreSQLParser.KW_DELIMITERS: - case PostgreSQLParser.KW_DICTIONARY: - case PostgreSQLParser.KW_DISABLE: - case PostgreSQLParser.KW_DISCARD: - case PostgreSQLParser.KW_DOCUMENT: - case PostgreSQLParser.KW_DOMAIN: - case PostgreSQLParser.KW_DOUBLE: - case PostgreSQLParser.KW_DROP: - case PostgreSQLParser.KW_EACH: - case PostgreSQLParser.KW_ENABLE: - case PostgreSQLParser.KW_ENCODING: - case PostgreSQLParser.KW_ENCRYPTED: - case PostgreSQLParser.KW_ENUM: - case PostgreSQLParser.KW_ESCAPE: - case PostgreSQLParser.KW_EVENT: - case PostgreSQLParser.KW_EXCLUDE: - case PostgreSQLParser.KW_EXCLUDING: - case PostgreSQLParser.KW_EXCLUSIVE: - case PostgreSQLParser.KW_EXECUTE: - case PostgreSQLParser.KW_EXPLAIN: - case PostgreSQLParser.KW_EXTENSION: - case PostgreSQLParser.KW_EXTERNAL: - case PostgreSQLParser.KW_FAMILY: - case PostgreSQLParser.KW_FIRST: - case PostgreSQLParser.KW_FOLLOWING: - case PostgreSQLParser.KW_FORCE: - case PostgreSQLParser.KW_FORWARD: - case PostgreSQLParser.KW_FUNCTION: - case PostgreSQLParser.KW_FUNCTIONS: - case PostgreSQLParser.KW_GLOBAL: - case PostgreSQLParser.KW_GRANTED: - case PostgreSQLParser.KW_HANDLER: - case PostgreSQLParser.KW_HEADER: - case PostgreSQLParser.KW_HOLD: - case PostgreSQLParser.KW_HOUR: - case PostgreSQLParser.KW_IDENTITY: - case PostgreSQLParser.KW_IF: - case PostgreSQLParser.KW_IMMEDIATE: - case PostgreSQLParser.KW_IMMUTABLE: - case PostgreSQLParser.KW_IMPLICIT: - case PostgreSQLParser.KW_INCLUDING: - case PostgreSQLParser.KW_INCREMENT: - case PostgreSQLParser.KW_INDEX: - case PostgreSQLParser.KW_INDEXES: - case PostgreSQLParser.KW_INHERIT: - case PostgreSQLParser.KW_INHERITS: - case PostgreSQLParser.KW_INLINE: - case PostgreSQLParser.KW_INSENSITIVE: - case PostgreSQLParser.KW_INSERT: - case PostgreSQLParser.KW_INSTEAD: - case PostgreSQLParser.KW_INVOKER: - case PostgreSQLParser.KW_ISOLATION: - case PostgreSQLParser.KW_KEY: - case PostgreSQLParser.KW_LABEL: - case PostgreSQLParser.KW_LANGUAGE: - case PostgreSQLParser.KW_LARGE: - case PostgreSQLParser.KW_LAST: - case PostgreSQLParser.KW_LEAKPROOF: - case PostgreSQLParser.KW_LEVEL: - case PostgreSQLParser.KW_LISTEN: - case PostgreSQLParser.KW_LOAD: - case PostgreSQLParser.KW_LOCAL: - case PostgreSQLParser.KW_LOCATION: - case PostgreSQLParser.KW_LOCK: - case PostgreSQLParser.KW_MAPPING: - case PostgreSQLParser.KW_MATCH: - case PostgreSQLParser.KW_MATERIALIZED: - case PostgreSQLParser.KW_MAXVALUE: - case PostgreSQLParser.KW_MINUTE: - case PostgreSQLParser.KW_MINVALUE: - case PostgreSQLParser.KW_MODE: - case PostgreSQLParser.KW_MONTH: - case PostgreSQLParser.KW_MOVE: - case PostgreSQLParser.KW_NAME: - case PostgreSQLParser.KW_NAMES: - case PostgreSQLParser.KW_NEXT: - case PostgreSQLParser.KW_NO: - case PostgreSQLParser.KW_NOTHING: - case PostgreSQLParser.KW_NOTIFY: - case PostgreSQLParser.KW_NOWAIT: - case PostgreSQLParser.KW_NULLS: - case PostgreSQLParser.KW_OBJECT: - case PostgreSQLParser.KW_OF: - case PostgreSQLParser.KW_OFF: - case PostgreSQLParser.KW_OIDS: - case PostgreSQLParser.KW_OPERATOR: - case PostgreSQLParser.KW_OPTION: - case PostgreSQLParser.KW_OPTIONS: - case PostgreSQLParser.KW_OWNED: - case PostgreSQLParser.KW_OWNER: - case PostgreSQLParser.KW_PARSER: - case PostgreSQLParser.KW_PARTIAL: - case PostgreSQLParser.KW_PARTITION: - case PostgreSQLParser.KW_PASSING: - case PostgreSQLParser.KW_PASSWORD: - case PostgreSQLParser.KW_PLANS: - case PostgreSQLParser.KW_PRECEDING: - case PostgreSQLParser.KW_PREPARE: - case PostgreSQLParser.KW_PREPARED: - case PostgreSQLParser.KW_PRESERVE: - case PostgreSQLParser.KW_PRIOR: - case PostgreSQLParser.KW_PRIVILEGES: - case PostgreSQLParser.KW_PROCEDURAL: - case PostgreSQLParser.KW_PROCEDURE: - case PostgreSQLParser.KW_PROGRAM: - case PostgreSQLParser.KW_QUOTE: - case PostgreSQLParser.KW_RANGE: - case PostgreSQLParser.KW_READ: - case PostgreSQLParser.KW_REASSIGN: - case PostgreSQLParser.KW_RECHECK: - case PostgreSQLParser.KW_RECURSIVE: - case PostgreSQLParser.KW_REF: - case PostgreSQLParser.KW_REFRESH: - case PostgreSQLParser.KW_REINDEX: - case PostgreSQLParser.KW_RELATIVE: - case PostgreSQLParser.KW_RELEASE: - case PostgreSQLParser.KW_RENAME: - case PostgreSQLParser.KW_REPEATABLE: - case PostgreSQLParser.KW_REPLACE: - case PostgreSQLParser.KW_REPLICA: - case PostgreSQLParser.KW_RESET: - case PostgreSQLParser.KW_RESTART: - case PostgreSQLParser.KW_RESTRICT: - case PostgreSQLParser.KW_RETURNS: - case PostgreSQLParser.KW_REVOKE: - case PostgreSQLParser.KW_ROLE: - case PostgreSQLParser.KW_ROLLBACK: - case PostgreSQLParser.KW_ROWS: - case PostgreSQLParser.KW_RULE: - case PostgreSQLParser.KW_SAVEPOINT: - case PostgreSQLParser.KW_SCHEMA: - case PostgreSQLParser.KW_SCROLL: - case PostgreSQLParser.KW_SEARCH: - case PostgreSQLParser.KW_SECOND: - case PostgreSQLParser.KW_SECURITY: - case PostgreSQLParser.KW_SEQUENCE: - case PostgreSQLParser.KW_SEQUENCES: - case PostgreSQLParser.KW_SERIALIZABLE: - case PostgreSQLParser.KW_SERVER: - case PostgreSQLParser.KW_SESSION: - case PostgreSQLParser.KW_SET: - case PostgreSQLParser.KW_SHARE: - case PostgreSQLParser.KW_SHOW: - case PostgreSQLParser.KW_SIMPLE: - case PostgreSQLParser.KW_SNAPSHOT: - case PostgreSQLParser.KW_STABLE: - case PostgreSQLParser.KW_STANDALONE: - case PostgreSQLParser.KW_START: - case PostgreSQLParser.KW_STATEMENT: - case PostgreSQLParser.KW_STATISTICS: - case PostgreSQLParser.KW_STDIN: - case PostgreSQLParser.KW_STDOUT: - case PostgreSQLParser.KW_STORAGE: - case PostgreSQLParser.KW_STRICT: - case PostgreSQLParser.KW_STRIP: - case PostgreSQLParser.KW_SYSID: - case PostgreSQLParser.KW_SYSTEM: - case PostgreSQLParser.KW_TABLES: - case PostgreSQLParser.KW_TABLESPACE: - case PostgreSQLParser.KW_TEMP: - case PostgreSQLParser.KW_TEMPLATE: - case PostgreSQLParser.KW_TEMPORARY: - case PostgreSQLParser.KW_TEXT: - case PostgreSQLParser.KW_TRANSACTION: - case PostgreSQLParser.KW_TRIGGER: - case PostgreSQLParser.KW_TRUNCATE: - case PostgreSQLParser.KW_TRUSTED: - case PostgreSQLParser.KW_TYPE: - case PostgreSQLParser.KW_TYPES: - case PostgreSQLParser.KW_UNBOUNDED: - case PostgreSQLParser.KW_UNCOMMITTED: - case PostgreSQLParser.KW_UNENCRYPTED: - case PostgreSQLParser.KW_UNKNOWN: - case PostgreSQLParser.KW_UNLISTEN: - case PostgreSQLParser.KW_UNLOGGED: - case PostgreSQLParser.KW_UNTIL: - case PostgreSQLParser.KW_UPDATE: - case PostgreSQLParser.KW_VACUUM: - case PostgreSQLParser.KW_VALID: - case PostgreSQLParser.KW_VALIDATE: - case PostgreSQLParser.KW_VALIDATOR: - case PostgreSQLParser.KW_VARYING: - case PostgreSQLParser.KW_VERSION: - case PostgreSQLParser.KW_VIEW: - case PostgreSQLParser.KW_VOLATILE: - case PostgreSQLParser.KW_WHITESPACE: - case PostgreSQLParser.KW_WITHOUT: - case PostgreSQLParser.KW_WORK: - case PostgreSQLParser.KW_WRAPPER: - case PostgreSQLParser.KW_WRITE: - case PostgreSQLParser.KW_XML: - case PostgreSQLParser.KW_YEAR: - case PostgreSQLParser.KW_YES: - case PostgreSQLParser.KW_ZONE: - case PostgreSQLParser.KW_BETWEEN: - case PostgreSQLParser.KW_BIGINT: - case PostgreSQLParser.KW_BIT: - case PostgreSQLParser.KW_BOOLEAN: - case PostgreSQLParser.KW_CHAR: - case PostgreSQLParser.KW_CHARACTER: - case PostgreSQLParser.KW_COALESCE: - case PostgreSQLParser.KW_DEC: - case PostgreSQLParser.KW_DECIMAL: - case PostgreSQLParser.KW_EXISTS: - case PostgreSQLParser.KW_EXTRACT: - case PostgreSQLParser.KW_FLOAT: - case PostgreSQLParser.KW_GREATEST: - case PostgreSQLParser.KW_INOUT: - case PostgreSQLParser.KW_INT: - case PostgreSQLParser.KW_INTEGER: - case PostgreSQLParser.KW_INTERVAL: - case PostgreSQLParser.KW_LEAST: - case PostgreSQLParser.KW_NATIONAL: - case PostgreSQLParser.KW_NCHAR: - case PostgreSQLParser.KW_NONE: - case PostgreSQLParser.KW_NULLIF: - case PostgreSQLParser.KW_NUMERIC: - case PostgreSQLParser.KW_OVERLAY: - case PostgreSQLParser.KW_POSITION: - case PostgreSQLParser.KW_PRECISION: - case PostgreSQLParser.KW_REAL: - case PostgreSQLParser.KW_ROW: - case PostgreSQLParser.KW_SETOF: - case PostgreSQLParser.KW_SMALLINT: - case PostgreSQLParser.KW_SUBSTRING: - case PostgreSQLParser.KW_TIME: - case PostgreSQLParser.KW_TIMESTAMP: - case PostgreSQLParser.KW_TREAT: - case PostgreSQLParser.KW_TRIM: - case PostgreSQLParser.KW_VALUES: - case PostgreSQLParser.KW_VARCHAR: - case PostgreSQLParser.KW_XMLATTRIBUTES: - case PostgreSQLParser.KW_XMLCONCAT: - case PostgreSQLParser.KW_XMLELEMENT: - case PostgreSQLParser.KW_XMLEXISTS: - case PostgreSQLParser.KW_XMLFOREST: - case PostgreSQLParser.KW_XMLPARSE: - case PostgreSQLParser.KW_XMLPI: - case PostgreSQLParser.KW_XMLROOT: - case PostgreSQLParser.KW_XMLSERIALIZE: - case PostgreSQLParser.KW_CALL: - case PostgreSQLParser.KW_CURRENT: - case PostgreSQLParser.KW_ATTACH: - case PostgreSQLParser.KW_DETACH: - case PostgreSQLParser.KW_EXPRESSION: - case PostgreSQLParser.KW_GENERATED: - case PostgreSQLParser.KW_LOGGED: - case PostgreSQLParser.KW_STORED: - case PostgreSQLParser.KW_INCLUDE: - case PostgreSQLParser.KW_ROUTINE: - case PostgreSQLParser.KW_TRANSFORM: - case PostgreSQLParser.KW_IMPORT: - case PostgreSQLParser.KW_POLICY: - case PostgreSQLParser.KW_METHOD: - case PostgreSQLParser.KW_REFERENCING: - case PostgreSQLParser.KW_NEW: - case PostgreSQLParser.KW_OLD: - case PostgreSQLParser.KW_VALUE: - case PostgreSQLParser.KW_SUBSCRIPTION: - case PostgreSQLParser.KW_PUBLICATION: - case PostgreSQLParser.KW_OUT: - case PostgreSQLParser.KW_ROUTINES: - case PostgreSQLParser.KW_SCHEMAS: - case PostgreSQLParser.KW_PROCEDURES: - case PostgreSQLParser.KW_INPUT: - case PostgreSQLParser.KW_SUPPORT: - case PostgreSQLParser.KW_PARALLEL: - case PostgreSQLParser.KW_SQL: - case PostgreSQLParser.KW_DEPENDS: - case PostgreSQLParser.KW_OVERRIDING: - case PostgreSQLParser.KW_CONFLICT: - case PostgreSQLParser.KW_SKIP: - case PostgreSQLParser.KW_LOCKED: - case PostgreSQLParser.KW_TIES: - case PostgreSQLParser.KW_ROLLUP: - case PostgreSQLParser.KW_CUBE: - case PostgreSQLParser.KW_GROUPING: - case PostgreSQLParser.KW_SETS: - case PostgreSQLParser.KW_ORDINALITY: - case PostgreSQLParser.KW_XMLTABLE: - case PostgreSQLParser.KW_COLUMNS: - case PostgreSQLParser.KW_XMLNAMESPACES: - case PostgreSQLParser.KW_ROWTYPE: - case PostgreSQLParser.KW_NORMALIZED: - case PostgreSQLParser.KW_WITHIN: - case PostgreSQLParser.KW_FILTER: - case PostgreSQLParser.KW_GROUPS: - case PostgreSQLParser.KW_OTHERS: - case PostgreSQLParser.KW_NFC: - case PostgreSQLParser.KW_NFD: - case PostgreSQLParser.KW_NFKC: - case PostgreSQLParser.KW_NFKD: - case PostgreSQLParser.KW_UESCAPE: - case PostgreSQLParser.KW_VIEWS: - case PostgreSQLParser.KW_NORMALIZE: - case PostgreSQLParser.KW_DUMP: - case PostgreSQLParser.KW_PRINT_STRICT_PARAMS: - case PostgreSQLParser.KW_VARIABLE_CONFLICT: - case PostgreSQLParser.KW_ERROR: - case PostgreSQLParser.KW_USE_VARIABLE: - case PostgreSQLParser.KW_USE_COLUMN: - case PostgreSQLParser.KW_ALIAS: - case PostgreSQLParser.KW_CONSTANT: - case PostgreSQLParser.KW_PERFORM: - case PostgreSQLParser.KW_GET: - case PostgreSQLParser.KW_DIAGNOSTICS: - case PostgreSQLParser.KW_STACKED: - case PostgreSQLParser.KW_ELSIF: - case PostgreSQLParser.KW_REVERSE: - case PostgreSQLParser.KW_SLICE: - case PostgreSQLParser.KW_EXIT: - case PostgreSQLParser.KW_RETURN: - case PostgreSQLParser.KW_QUERY: - case PostgreSQLParser.KW_RAISE: - case PostgreSQLParser.KW_SQLSTATE: - case PostgreSQLParser.KW_DEBUG: - case PostgreSQLParser.KW_LOG: - case PostgreSQLParser.KW_INFO: - case PostgreSQLParser.KW_NOTICE: - case PostgreSQLParser.KW_WARNING: - case PostgreSQLParser.KW_EXCEPTION: - case PostgreSQLParser.KW_ASSERT: - case PostgreSQLParser.KW_OPEN: - case PostgreSQLParser.KW_SKIP_LOCKED: - case PostgreSQLParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSQLParser.Identifier: - case PostgreSQLParser.QuotedIdentifier: - case PostgreSQLParser.UnicodeQuotedIdentifier: - case PostgreSQLParser.StringConstant: - case PostgreSQLParser.UnicodeEscapeStringConstant: - case PostgreSQLParser.BeginDollarStringConstant: - case PostgreSQLParser.PLSQLVARIABLENAME: - case PostgreSQLParser.PLSQLIDENTIFIER: - case PostgreSQLParser.EscapeStringConstant: + switch (this.interpreter.adaptivePredict(this.tokenStream, 1255, this.context) ) { + case 1: { - this.state = 11665; - this.column_name(); - this.state = 11666; - this.match(PostgreSQLParser.EQUAL); this.state = 11667; + this.column_name(); + this.state = 11668; + this.match(PostgreSQLParser.EQUAL); + this.state = 11669; this.exprofdefault(); } break; - case PostgreSQLParser.OPEN_PAREN: + case 2: { - this.state = 11669; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11670; - this.columnlist(); this.state = 11671; - this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 11672; - this.match(PostgreSQLParser.EQUAL); - this.state = 11673; this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 11672; + this.column_list(); + this.state = 11673; + this.match(PostgreSQLParser.CLOSE_PAREN); this.state = 11674; - this.exprofdefaultlist(); + this.match(PostgreSQLParser.EQUAL); this.state = 11675; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 11676; + this.exprofdefaultlist(); + this.state = 11677; this.match(PostgreSQLParser.CLOSE_PAREN); } break; - default: - throw new antlr.NoViableAltException(this); } } break; default: throw new antlr.NoViableAltException(this); } - this.state = 11679; + this.state = 11681; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1257, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1256, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -68683,26 +66238,26 @@ export class PostgreSQLParser extends antlr.Parser { } public default_values_or_values(): Default_values_or_valuesContext { let localContext = new Default_values_or_valuesContext(this.context, this.state); - this.enterRule(localContext, 1692, PostgreSQLParser.RULE_default_values_or_values); + this.enterRule(localContext, 1694, PostgreSQLParser.RULE_default_values_or_values); try { - this.state = 11685; + this.state = 11687; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 11681; + this.state = 11683; this.match(PostgreSQLParser.KW_VALUES); - this.state = 11682; + this.state = 11684; this.exprofdefaultlist(); } break; case PostgreSQLParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 11683; + this.state = 11685; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 11684; + this.state = 11686; this.match(PostgreSQLParser.KW_VALUES); } break; @@ -68726,32 +66281,32 @@ export class PostgreSQLParser extends antlr.Parser { } public exprofdefaultlist(): ExprofdefaultlistContext { let localContext = new ExprofdefaultlistContext(this.context, this.state); - this.enterRule(localContext, 1694, PostgreSQLParser.RULE_exprofdefaultlist); + this.enterRule(localContext, 1696, PostgreSQLParser.RULE_exprofdefaultlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11687; + this.state = 11689; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11688; + this.state = 11690; this.exprofdefault(); - this.state = 11693; + this.state = 11695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11689; + this.state = 11691; this.match(PostgreSQLParser.COMMA); - this.state = 11690; + this.state = 11692; this.exprofdefault(); } } - this.state = 11695; + this.state = 11697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 11696; + this.state = 11698; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -68771,22 +66326,22 @@ export class PostgreSQLParser extends antlr.Parser { } public exprofdefault(): ExprofdefaultContext { let localContext = new ExprofdefaultContext(this.context, this.state); - this.enterRule(localContext, 1696, PostgreSQLParser.RULE_exprofdefault); + this.enterRule(localContext, 1698, PostgreSQLParser.RULE_exprofdefault); try { - this.state = 11700; + this.state = 11702; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1259, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11698; + this.state = 11700; this.sortby(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11699; + this.state = 11701; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -68808,15 +66363,15 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_close(): Stmt_closeContext { let localContext = new Stmt_closeContext(this.context, this.state); - this.enterRule(localContext, 1698, PostgreSQLParser.RULE_stmt_close); + this.enterRule(localContext, 1700, PostgreSQLParser.RULE_stmt_close); try { this.enterOuterAlt(localContext, 1); { - this.state = 11702; - this.match(PostgreSQLParser.KW_CLOSE); - this.state = 11703; - this.cursor_variable(); this.state = 11704; + this.match(PostgreSQLParser.KW_CLOSE); + this.state = 11705; + this.cursor_variable(); + this.state = 11706; this.match(PostgreSQLParser.SEMI); } } @@ -68836,13 +66391,13 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_null(): Stmt_nullContext { let localContext = new Stmt_nullContext(this.context, this.state); - this.enterRule(localContext, 1700, PostgreSQLParser.RULE_stmt_null); + this.enterRule(localContext, 1702, PostgreSQLParser.RULE_stmt_null); try { this.enterOuterAlt(localContext, 1); { - this.state = 11706; + this.state = 11708; this.match(PostgreSQLParser.KW_NULL); - this.state = 11707; + this.state = 11709; this.match(PostgreSQLParser.SEMI); } } @@ -68862,24 +66417,24 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_commit(): Stmt_commitContext { let localContext = new Stmt_commitContext(this.context, this.state); - this.enterRule(localContext, 1702, PostgreSQLParser.RULE_stmt_commit); + this.enterRule(localContext, 1704, PostgreSQLParser.RULE_stmt_commit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11709; - this.match(PostgreSQLParser.KW_COMMIT); this.state = 11711; + this.match(PostgreSQLParser.KW_COMMIT); + this.state = 11713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 11710; + this.state = 11712; this.plsql_opt_transaction_chain(); } } - this.state = 11713; + this.state = 11715; this.match(PostgreSQLParser.SEMI); } } @@ -68899,24 +66454,24 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_rollback(): Stmt_rollbackContext { let localContext = new Stmt_rollbackContext(this.context, this.state); - this.enterRule(localContext, 1704, PostgreSQLParser.RULE_stmt_rollback); + this.enterRule(localContext, 1706, PostgreSQLParser.RULE_stmt_rollback); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11715; - this.match(PostgreSQLParser.KW_ROLLBACK); this.state = 11717; + this.match(PostgreSQLParser.KW_ROLLBACK); + this.state = 11719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 11716; + this.state = 11718; this.plsql_opt_transaction_chain(); } } - this.state = 11719; + this.state = 11721; this.match(PostgreSQLParser.SEMI); } } @@ -68936,24 +66491,24 @@ export class PostgreSQLParser extends antlr.Parser { } public plsql_opt_transaction_chain(): Plsql_opt_transaction_chainContext { let localContext = new Plsql_opt_transaction_chainContext(this.context, this.state); - this.enterRule(localContext, 1706, PostgreSQLParser.RULE_plsql_opt_transaction_chain); + this.enterRule(localContext, 1708, PostgreSQLParser.RULE_plsql_opt_transaction_chain); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11721; - this.match(PostgreSQLParser.KW_AND); this.state = 11723; + this.match(PostgreSQLParser.KW_AND); + this.state = 11725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 11722; + this.state = 11724; this.match(PostgreSQLParser.KW_NO); } } - this.state = 11725; + this.state = 11727; this.match(PostgreSQLParser.KW_CHAIN); } } @@ -68973,32 +66528,32 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_set(): Stmt_setContext { let localContext = new Stmt_setContext(this.context, this.state); - this.enterRule(localContext, 1708, PostgreSQLParser.RULE_stmt_set); + this.enterRule(localContext, 1710, PostgreSQLParser.RULE_stmt_set); try { - this.state = 11739; + this.state = 11741; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 11727; - this.match(PostgreSQLParser.KW_SET); - this.state = 11728; - this.any_name(); this.state = 11729; - this.match(PostgreSQLParser.KW_TO); + this.match(PostgreSQLParser.KW_SET); this.state = 11730; - this.match(PostgreSQLParser.KW_DEFAULT); + this.any_name(); this.state = 11731; + this.match(PostgreSQLParser.KW_TO); + this.state = 11732; + this.match(PostgreSQLParser.KW_DEFAULT); + this.state = 11733; this.match(PostgreSQLParser.SEMI); } break; case PostgreSQLParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 11733; + this.state = 11735; this.match(PostgreSQLParser.KW_RESET); - this.state = 11736; + this.state = 11738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -69402,20 +66957,20 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 11734; + this.state = 11736; this.any_name(); } break; case PostgreSQLParser.KW_ALL: { - this.state = 11735; + this.state = 11737; this.match(PostgreSQLParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 11738; + this.state = 11740; this.match(PostgreSQLParser.SEMI); } break; @@ -69439,9 +66994,9 @@ export class PostgreSQLParser extends antlr.Parser { } public cursor_variable(): Cursor_variableContext { let localContext = new Cursor_variableContext(this.context, this.state); - this.enterRule(localContext, 1710, PostgreSQLParser.RULE_cursor_variable); + this.enterRule(localContext, 1712, PostgreSQLParser.RULE_cursor_variable); try { - this.state = 11743; + this.state = 11745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: @@ -69846,14 +67401,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 11741; + this.state = 11743; this.colid(); } break; case PostgreSQLParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 11742; + this.state = 11744; this.match(PostgreSQLParser.PARAM); } break; @@ -69877,9 +67432,9 @@ export class PostgreSQLParser extends antlr.Parser { } public exception_sect(): Exception_sectContext { let localContext = new Exception_sectContext(this.context, this.state); - this.enterRule(localContext, 1712, PostgreSQLParser.RULE_exception_sect); + this.enterRule(localContext, 1714, PostgreSQLParser.RULE_exception_sect); try { - this.state = 11748; + this.state = 11750; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_END: @@ -69891,9 +67446,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_EXCEPTION: this.enterOuterAlt(localContext, 2); { - this.state = 11746; + this.state = 11748; this.match(PostgreSQLParser.KW_EXCEPTION); - this.state = 11747; + this.state = 11749; this.proc_exceptions(); } break; @@ -69917,22 +67472,22 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_exceptions(): Proc_exceptionsContext { let localContext = new Proc_exceptionsContext(this.context, this.state); - this.enterRule(localContext, 1714, PostgreSQLParser.RULE_proc_exceptions); + this.enterRule(localContext, 1716, PostgreSQLParser.RULE_proc_exceptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11751; + this.state = 11753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 11750; + this.state = 11752; this.proc_exception(); } } - this.state = 11753; + this.state = 11755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -69954,17 +67509,17 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_exception(): Proc_exceptionContext { let localContext = new Proc_exceptionContext(this.context, this.state); - this.enterRule(localContext, 1716, PostgreSQLParser.RULE_proc_exception); + this.enterRule(localContext, 1718, PostgreSQLParser.RULE_proc_exception); try { this.enterOuterAlt(localContext, 1); { - this.state = 11755; - this.match(PostgreSQLParser.KW_WHEN); - this.state = 11756; - this.proc_conditions(); this.state = 11757; - this.match(PostgreSQLParser.KW_THEN); + this.match(PostgreSQLParser.KW_WHEN); this.state = 11758; + this.proc_conditions(); + this.state = 11759; + this.match(PostgreSQLParser.KW_THEN); + this.state = 11760; this.proc_sect(); } } @@ -69984,26 +67539,26 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_conditions(): Proc_conditionsContext { let localContext = new Proc_conditionsContext(this.context, this.state); - this.enterRule(localContext, 1718, PostgreSQLParser.RULE_proc_conditions); + this.enterRule(localContext, 1720, PostgreSQLParser.RULE_proc_conditions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11760; + this.state = 11762; this.proc_condition(); - this.state = 11765; + this.state = 11767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 11761; + this.state = 11763; this.match(PostgreSQLParser.KW_OR); - this.state = 11762; + this.state = 11764; this.proc_condition(); } } - this.state = 11767; + this.state = 11769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -70025,24 +67580,24 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_condition(): Proc_conditionContext { let localContext = new Proc_conditionContext(this.context, this.state); - this.enterRule(localContext, 1720, PostgreSQLParser.RULE_proc_condition); + this.enterRule(localContext, 1722, PostgreSQLParser.RULE_proc_condition); try { - this.state = 11771; + this.state = 11773; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1270, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1269, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11768; + this.state = 11770; this.any_identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11769; + this.state = 11771; this.match(PostgreSQLParser.KW_SQLSTATE); - this.state = 11770; + this.state = 11772; this.sconst(); } break; @@ -70064,9 +67619,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_block_label(): Opt_block_labelContext { let localContext = new Opt_block_labelContext(this.context, this.state); - this.enterRule(localContext, 1722, PostgreSQLParser.RULE_opt_block_label); + this.enterRule(localContext, 1724, PostgreSQLParser.RULE_opt_block_label); try { - this.state = 11775; + this.state = 11777; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_BEGIN: @@ -70079,7 +67634,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.LESS_LESS: this.enterOuterAlt(localContext, 2); { - this.state = 11774; + this.state = 11776; this.label_decl(); } break; @@ -70103,9 +67658,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_loop_label(): Opt_loop_labelContext { let localContext = new Opt_loop_labelContext(this.context, this.state); - this.enterRule(localContext, 1724, PostgreSQLParser.RULE_opt_loop_label); + this.enterRule(localContext, 1726, PostgreSQLParser.RULE_opt_loop_label); try { - this.state = 11779; + this.state = 11781; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOR: @@ -70120,7 +67675,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.LESS_LESS: this.enterOuterAlt(localContext, 2); { - this.state = 11778; + this.state = 11780; this.label_decl(); } break; @@ -70144,9 +67699,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_label(): Opt_labelContext { let localContext = new Opt_labelContext(this.context, this.state); - this.enterRule(localContext, 1726, PostgreSQLParser.RULE_opt_label); + this.enterRule(localContext, 1728, PostgreSQLParser.RULE_opt_label); try { - this.state = 11783; + this.state = 11785; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.EOF: @@ -70559,7 +68114,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 11782; + this.state = 11784; this.any_identifier(); } break; @@ -70583,13 +68138,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_exitcond(): Opt_exitcondContext { let localContext = new Opt_exitcondContext(this.context, this.state); - this.enterRule(localContext, 1728, PostgreSQLParser.RULE_opt_exitcond); + this.enterRule(localContext, 1730, PostgreSQLParser.RULE_opt_exitcond); try { this.enterOuterAlt(localContext, 1); { - this.state = 11785; + this.state = 11787; this.match(PostgreSQLParser.KW_WHEN); - this.state = 11786; + this.state = 11788; this.expr_until_semi(); } } @@ -70609,22 +68164,22 @@ export class PostgreSQLParser extends antlr.Parser { } public any_identifier(): Any_identifierContext { let localContext = new Any_identifierContext(this.context, this.state); - this.enterRule(localContext, 1730, PostgreSQLParser.RULE_any_identifier); + this.enterRule(localContext, 1732, PostgreSQLParser.RULE_any_identifier); try { - this.state = 11790; + this.state = 11792; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1273, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11788; + this.state = 11790; this.colid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11789; + this.state = 11791; this.plsql_unreserved_keyword(); } break; @@ -70646,12 +68201,12 @@ export class PostgreSQLParser extends antlr.Parser { } public plsql_unreserved_keyword(): Plsql_unreserved_keywordContext { let localContext = new Plsql_unreserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 1732, PostgreSQLParser.RULE_plsql_unreserved_keyword); + this.enterRule(localContext, 1734, PostgreSQLParser.RULE_plsql_unreserved_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11792; + this.state = 11794; _la = this.tokenStream.LA(1); if(!(((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2290106369) !== 0) || _la === 167 || _la === 172 || _la === 207 || _la === 210 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 419430657) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1051713) !== 0) || _la === 360 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0))) { this.errorHandler.recoverInline(this); @@ -70678,77 +68233,77 @@ export class PostgreSQLParser extends antlr.Parser { } public sql_expression(): Sql_expressionContext { let localContext = new Sql_expressionContext(this.context, this.state); - this.enterRule(localContext, 1734, PostgreSQLParser.RULE_sql_expression); + this.enterRule(localContext, 1736, PostgreSQLParser.RULE_sql_expression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11795; + this.state = 11797; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805319172) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1274, this.context) ) { + case 1: { - this.state = 11794; + this.state = 11796; this.opt_target_list(); } + break; } - - this.state = 11798; + this.state = 11800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 11797; + this.state = 11799; this.into_clause(); } } - this.state = 11801; + this.state = 11803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 11800; + this.state = 11802; this.from_clause(); } } - this.state = 11804; + this.state = 11806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 11803; + this.state = 11805; this.where_clause(); } } - this.state = 11807; + this.state = 11809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 11806; + this.state = 11808; this.group_clause(); } } - this.state = 11810; + this.state = 11812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 11809; + this.state = 11811; this.having_clause(); } } - this.state = 11813; + this.state = 11815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 11812; + this.state = 11814; this.window_clause(); } } @@ -70771,31 +68326,7 @@ export class PostgreSQLParser extends antlr.Parser { } public expr_until_then(): Expr_until_thenContext { let localContext = new Expr_until_thenContext(this.context, this.state); - this.enterRule(localContext, 1736, PostgreSQLParser.RULE_expr_until_then); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 11815; - this.sql_expression(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public expr_until_semi(): Expr_until_semiContext { - let localContext = new Expr_until_semiContext(this.context, this.state); - this.enterRule(localContext, 1738, PostgreSQLParser.RULE_expr_until_semi); + this.enterRule(localContext, 1738, PostgreSQLParser.RULE_expr_until_then); try { this.enterOuterAlt(localContext, 1); { @@ -70817,14 +68348,14 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public expr_until_rightbracket(): Expr_until_rightbracketContext { - let localContext = new Expr_until_rightbracketContext(this.context, this.state); - this.enterRule(localContext, 1740, PostgreSQLParser.RULE_expr_until_rightbracket); + public expr_until_semi(): Expr_until_semiContext { + let localContext = new Expr_until_semiContext(this.context, this.state); + this.enterRule(localContext, 1740, PostgreSQLParser.RULE_expr_until_semi); try { this.enterOuterAlt(localContext, 1); { this.state = 11819; - this.a_expr(); + this.sql_expression(); } } catch (re) { @@ -70841,9 +68372,9 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public expr_until_loop(): Expr_until_loopContext { - let localContext = new Expr_until_loopContext(this.context, this.state); - this.enterRule(localContext, 1742, PostgreSQLParser.RULE_expr_until_loop); + public expr_until_rightbracket(): Expr_until_rightbracketContext { + let localContext = new Expr_until_rightbracketContext(this.context, this.state); + this.enterRule(localContext, 1742, PostgreSQLParser.RULE_expr_until_rightbracket); try { this.enterOuterAlt(localContext, 1); { @@ -70865,21 +68396,45 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public make_execsql_stmt(): Make_execsql_stmtContext { - let localContext = new Make_execsql_stmtContext(this.context, this.state); - this.enterRule(localContext, 1744, PostgreSQLParser.RULE_make_execsql_stmt); - let _la: number; + public expr_until_loop(): Expr_until_loopContext { + let localContext = new Expr_until_loopContext(this.context, this.state); + this.enterRule(localContext, 1744, PostgreSQLParser.RULE_expr_until_loop); try { this.enterOuterAlt(localContext, 1); { this.state = 11823; - this.stmt(); + this.a_expr(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public make_execsql_stmt(): Make_execsql_stmtContext { + let localContext = new Make_execsql_stmtContext(this.context, this.state); + this.enterRule(localContext, 1746, PostgreSQLParser.RULE_make_execsql_stmt); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { this.state = 11825; + this.stmt(); + this.state = 11827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 11824; + this.state = 11826; this.opt_returning_clause_into(); } } @@ -70902,15 +68457,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_returning_clause_into(): Opt_returning_clause_intoContext { let localContext = new Opt_returning_clause_intoContext(this.context, this.state); - this.enterRule(localContext, 1746, PostgreSQLParser.RULE_opt_returning_clause_into); + this.enterRule(localContext, 1748, PostgreSQLParser.RULE_opt_returning_clause_into); try { this.enterOuterAlt(localContext, 1); { - this.state = 11827; - this.match(PostgreSQLParser.KW_INTO); - this.state = 11828; - this.opt_strict(); this.state = 11829; + this.match(PostgreSQLParser.KW_INTO); + this.state = 11830; + this.opt_strict(); + this.state = 11831; this.into_target(); } } @@ -70931,8 +68486,10 @@ export class PostgreSQLParser extends antlr.Parser { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 625: + case 626: return this.b_expr_sempred(localContext as B_exprContext, predIndex); + case 716: + return this.column_name_sempred(localContext as Column_nameContext, predIndex); } return true; } @@ -70957,9 +68514,16 @@ export class PostgreSQLParser extends antlr.Parser { } return true; } + private column_name_sempred(localContext: Column_nameContext | null, predIndex: number): boolean { + switch (predIndex) { + case 8: + return this.shouldMatchEmpty(); + } + return true; + } public static readonly _serializedATN: number[] = [ - 4,1,590,11832,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2, + 4,1,590,11834,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2, 6,7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13, 7,13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19, 2,20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26, @@ -71115,1030 +68679,1030 @@ export class PostgreSQLParser extends antlr.Parser { 2,857,7,857,2,858,7,858,2,859,7,859,2,860,7,860,2,861,7,861,2,862, 7,862,2,863,7,863,2,864,7,864,2,865,7,865,2,866,7,866,2,867,7,867, 2,868,7,868,2,869,7,869,2,870,7,870,2,871,7,871,2,872,7,872,2,873, - 7,873,1,0,5,0,1750,8,0,10,0,12,0,1753,9,0,1,0,1,0,1,1,1,1,1,2,1, - 2,3,2,1761,8,2,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, + 7,873,2,874,7,874,1,0,5,0,1752,8,0,10,0,12,0,1755,9,0,1,0,1,0,1, + 1,1,1,1,2,1,2,3,2,1763,8,2,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, - 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,1880,8,3,1,4,1,4,3,4,1884, - 8,4,1,5,1,5,1,5,1,6,1,6,1,6,1,6,3,6,1893,8,6,1,6,1,6,1,7,1,7,1,8, - 5,8,1900,8,8,10,8,12,8,1903,9,8,1,9,5,9,1906,8,9,10,9,12,9,1909, - 9,9,1,10,1,10,1,10,3,10,1914,8,10,1,10,1,10,1,10,1,10,1,10,1,10, + 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,1882,8,3,1,4,1, + 4,3,4,1886,8,4,1,5,1,5,1,5,1,6,1,6,1,6,1,6,3,6,1895,8,6,1,6,1,6, + 1,7,1,7,1,8,5,8,1902,8,8,10,8,12,8,1905,9,8,1,9,5,9,1908,8,9,10, + 9,12,9,1911,9,9,1,10,1,10,1,10,3,10,1916,8,10,1,10,1,10,1,10,1,10, 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, - 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1946, - 8,10,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,1958, - 8,11,1,12,1,12,1,12,1,12,3,12,1964,8,12,1,12,1,12,1,13,1,13,1,13, - 1,13,3,13,1972,8,13,1,13,1,13,1,14,1,14,1,14,1,14,3,14,1980,8,14, - 1,15,1,15,1,15,1,15,3,15,1986,8,15,1,15,1,15,1,15,1,16,1,16,1,16, - 1,16,3,16,1995,8,16,1,16,1,16,1,17,1,17,3,17,2001,8,17,1,17,1,17, - 1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,3,17,2013,8,17,1,17,1,17, - 1,17,1,17,3,17,2019,8,17,1,18,1,18,5,18,2023,8,18,10,18,12,18,2026, - 9,18,1,19,1,19,1,19,1,19,3,19,2032,8,19,1,19,1,19,3,19,2036,8,19, - 1,19,1,19,1,19,3,19,2041,8,19,1,19,1,19,3,19,2045,8,19,1,19,1,19, - 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,2058,8,19,1,19, - 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,2069,8,19,1,20,1,20, - 1,20,1,20,3,20,2075,8,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21, - 1,21,1,22,1,22,1,23,1,23,1,23,3,23,2091,8,23,1,23,3,23,2094,8,23, - 1,23,1,23,1,23,3,23,2099,8,23,1,23,1,23,1,24,1,24,3,24,2105,8,24, - 1,25,5,25,2108,8,25,10,25,12,25,2111,9,25,1,26,1,26,1,26,1,26,1, - 26,1,26,3,26,2119,8,26,1,27,1,27,3,27,2123,8,27,1,27,1,27,1,28,1, - 28,1,28,1,28,1,28,1,28,1,28,1,28,3,28,2135,8,28,1,29,1,29,3,29,2139, - 8,29,1,29,3,29,2142,8,29,1,29,1,29,3,29,2146,8,29,1,30,1,30,1,30, - 1,30,1,30,1,30,1,30,1,30,1,30,3,30,2157,8,30,1,30,1,30,1,30,1,30, - 1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,3,30, - 2175,8,30,1,31,1,31,1,31,5,31,2180,8,31,10,31,12,31,2183,9,31,1, - 32,1,32,1,32,5,32,2188,8,32,10,32,12,32,2191,9,32,1,33,1,33,3,33, - 2195,8,33,1,34,1,34,1,34,1,34,1,34,3,34,2202,8,34,1,35,1,35,1,35, - 1,35,3,35,2208,8,35,1,36,1,36,1,36,1,36,3,36,2214,8,36,1,37,1,37, - 1,37,1,37,1,37,3,37,2221,8,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,1,37,3,37,2232,8,37,1,38,1,38,3,38,2236,8,38,1,39,1,39,3,39, - 2240,8,39,1,40,1,40,3,40,2244,8,40,1,41,1,41,1,41,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,1,42,3,42,2257,8,42,1,43,1,43,3,43,2261,8,43, - 1,44,1,44,1,44,3,44,2266,8,44,1,45,1,45,1,45,3,45,2271,8,45,1,46, - 1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,2283,8,46,1,47, - 1,47,1,47,1,47,1,47,1,48,1,48,3,48,2292,8,48,1,49,1,49,1,50,1,50, - 1,51,1,51,1,51,1,52,1,52,1,52,3,52,2304,8,52,1,52,1,52,1,52,3,52, - 2309,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2320, - 8,52,1,52,1,52,1,52,1,52,3,52,2326,8,52,1,52,1,52,1,52,3,52,2331, - 8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2341,8,52,1,52, - 1,52,1,52,3,52,2346,8,52,1,52,1,52,1,52,1,52,1,52,3,52,2353,8,52, - 1,52,1,52,1,52,3,52,2358,8,52,1,52,1,52,1,52,3,52,2363,8,52,1,52, - 1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2374,8,52,1,52,1,52, - 1,52,1,52,3,52,2380,8,52,1,52,1,52,1,52,3,52,2385,8,52,1,52,1,52, - 1,52,1,52,1,52,1,52,3,52,2393,8,52,1,52,1,52,1,52,1,52,1,52,1,52, - 1,52,3,52,2402,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52, - 1,52,1,52,1,52,1,52,3,52,2417,8,52,1,52,1,52,1,52,1,52,3,52,2423, - 8,52,1,52,1,52,1,52,1,52,3,52,2429,8,52,1,52,1,52,1,52,3,52,2434, - 8,52,1,53,1,53,1,53,5,53,2439,8,53,10,53,12,53,2442,9,53,1,54,1, - 54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2453,8,54,1,55,1,55,1, - 55,1,55,5,55,2459,8,55,10,55,12,55,2462,9,55,1,55,1,55,1,56,1,56, - 1,56,3,56,2469,8,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,2487,8,58,1,59,1,59,1,59, - 1,59,1,60,1,60,1,60,3,60,2496,8,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,60,1,60,1,60,1,60,1,60,1,60,3,60,2510,8,60,1,60,1,60,3,60,2514, - 8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,60,3,60,2529,8,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2537,8,60, - 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2547,8,60,1,60,1,60, + 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, + 3,10,1948,8,10,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11, + 3,11,1960,8,11,1,12,1,12,1,12,1,12,3,12,1966,8,12,1,12,1,12,1,13, + 1,13,1,13,1,13,3,13,1974,8,13,1,13,1,13,1,14,1,14,1,14,1,14,3,14, + 1982,8,14,1,15,1,15,1,15,1,15,3,15,1988,8,15,1,15,1,15,1,15,1,16, + 1,16,1,16,1,16,3,16,1997,8,16,1,16,1,16,1,17,1,17,3,17,2003,8,17, + 1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,3,17,2015,8,17, + 1,17,1,17,1,17,1,17,3,17,2021,8,17,1,18,1,18,5,18,2025,8,18,10,18, + 12,18,2028,9,18,1,19,1,19,1,19,1,19,3,19,2034,8,19,1,19,1,19,3,19, + 2038,8,19,1,19,1,19,1,19,3,19,2043,8,19,1,19,1,19,3,19,2047,8,19, + 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,2060, + 8,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,2071,8,19, + 1,20,1,20,1,20,1,20,3,20,2077,8,20,1,20,1,20,1,21,1,21,1,21,1,21, + 1,21,1,21,1,21,1,22,1,22,1,23,1,23,1,23,3,23,2093,8,23,1,23,3,23, + 2096,8,23,1,23,1,23,1,23,3,23,2101,8,23,1,23,1,23,1,24,1,24,3,24, + 2107,8,24,1,25,5,25,2110,8,25,10,25,12,25,2113,9,25,1,26,1,26,1, + 26,1,26,1,26,1,26,3,26,2121,8,26,1,27,1,27,3,27,2125,8,27,1,27,1, + 27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,3,28,2137,8,28,1,29,1, + 29,3,29,2141,8,29,1,29,3,29,2144,8,29,1,29,1,29,3,29,2148,8,29,1, + 30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,3,30,2159,8,30,1,30,1, + 30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1, + 30,1,30,3,30,2177,8,30,1,31,1,31,1,31,5,31,2182,8,31,10,31,12,31, + 2185,9,31,1,32,1,32,1,32,5,32,2190,8,32,10,32,12,32,2193,9,32,1, + 33,1,33,3,33,2197,8,33,1,34,1,34,1,34,1,34,1,34,3,34,2204,8,34,1, + 35,1,35,1,35,1,35,3,35,2210,8,35,1,36,1,36,1,36,1,36,3,36,2216,8, + 36,1,37,1,37,1,37,1,37,1,37,3,37,2223,8,37,1,37,1,37,1,37,1,37,1, + 37,1,37,1,37,1,37,1,37,3,37,2234,8,37,1,38,1,38,3,38,2238,8,38,1, + 39,1,39,3,39,2242,8,39,1,40,1,40,3,40,2246,8,40,1,41,1,41,1,41,1, + 42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,2259,8,42,1,43,1,43,3, + 43,2263,8,43,1,44,1,44,1,44,3,44,2268,8,44,1,45,1,45,1,45,3,45,2273, + 8,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,2285, + 8,46,1,47,1,47,1,47,1,47,1,47,1,48,1,48,3,48,2294,8,48,1,49,1,49, + 1,50,1,50,1,51,1,51,1,51,1,52,1,52,1,52,3,52,2306,8,52,1,52,1,52, + 1,52,3,52,2311,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52, + 3,52,2322,8,52,1,52,1,52,1,52,1,52,3,52,2328,8,52,1,52,1,52,1,52, + 3,52,2333,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2343, + 8,52,1,52,1,52,1,52,3,52,2348,8,52,1,52,1,52,1,52,1,52,1,52,3,52, + 2355,8,52,1,52,1,52,1,52,3,52,2360,8,52,1,52,1,52,1,52,3,52,2365, + 8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2376,8,52, + 1,52,1,52,1,52,1,52,3,52,2382,8,52,1,52,1,52,1,52,3,52,2387,8,52, + 1,52,1,52,1,52,1,52,1,52,1,52,3,52,2395,8,52,1,52,1,52,1,52,1,52, + 1,52,1,52,1,52,3,52,2404,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52, + 1,52,1,52,1,52,1,52,1,52,1,52,3,52,2419,8,52,1,52,1,52,1,52,1,52, + 3,52,2425,8,52,1,52,1,52,1,52,1,52,3,52,2431,8,52,1,52,1,52,1,52, + 3,52,2436,8,52,1,53,1,53,1,53,5,53,2441,8,53,10,53,12,53,2444,9, + 53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2455,8,54,1, + 55,1,55,1,55,1,55,5,55,2461,8,55,10,55,12,55,2464,9,55,1,55,1,55, + 1,56,1,56,1,56,3,56,2471,8,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57, + 1,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,2489,8,58,1,59, + 1,59,1,59,1,59,1,60,1,60,1,60,3,60,2498,8,60,1,60,1,60,1,60,1,60, + 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2512,8,60,1,60,1,60, + 3,60,2516,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, + 1,60,1,60,1,60,3,60,2531,8,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60, + 2539,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2549,8,60, 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2587,8,60, - 1,60,3,60,2590,8,60,1,60,1,60,3,60,2594,8,60,1,60,1,60,3,60,2598, - 8,60,1,60,3,60,2601,8,60,1,60,1,60,1,60,3,60,2606,8,60,1,60,1,60, - 1,60,1,60,1,60,3,60,2613,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 3,60,2622,8,60,1,60,1,60,1,60,1,60,3,60,2628,8,60,1,60,1,60,3,60, - 2632,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2641,8,60,1,60, - 1,60,1,60,1,60,1,60,1,60,3,60,2649,8,60,1,60,1,60,1,60,1,60,1,60, - 1,60,1,60,3,60,2658,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60, - 2667,8,60,1,60,1,60,3,60,2671,8,60,1,60,1,60,1,60,1,60,1,60,3,60, - 2678,8,60,1,60,1,60,1,60,1,60,3,60,2684,8,60,1,60,1,60,3,60,2688, - 8,60,1,60,1,60,3,60,2692,8,60,1,60,1,60,1,60,3,60,2697,8,60,1,60, - 3,60,2700,8,60,1,60,1,60,3,60,2704,8,60,1,60,1,60,1,60,1,60,3,60, - 2710,8,60,1,61,1,61,1,61,1,61,1,61,3,61,2717,8,61,1,62,1,62,1,63, - 1,63,1,63,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,3,65,2733, - 8,65,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,68,1,68,1,68,5,68,2745, - 8,68,10,68,12,68,2748,9,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,3, - 69,2757,8,69,3,69,2759,8,69,1,70,4,70,2762,8,70,11,70,12,70,2763, - 1,71,1,71,3,71,2768,8,71,1,71,3,71,2771,8,71,1,71,1,71,1,71,1,71, - 3,71,2777,8,71,3,71,2779,8,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72, + 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60, + 2589,8,60,1,60,3,60,2592,8,60,1,60,1,60,3,60,2596,8,60,1,60,1,60, + 3,60,2600,8,60,1,60,3,60,2603,8,60,1,60,1,60,1,60,3,60,2608,8,60, + 1,60,1,60,1,60,1,60,1,60,3,60,2615,8,60,1,60,1,60,1,60,1,60,1,60, + 1,60,1,60,3,60,2624,8,60,1,60,1,60,1,60,1,60,3,60,2630,8,60,1,60, + 1,60,3,60,2634,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2643, + 8,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2651,8,60,1,60,1,60,1,60, + 1,60,1,60,1,60,1,60,3,60,2660,8,60,1,60,1,60,1,60,1,60,1,60,1,60, + 1,60,3,60,2669,8,60,1,60,1,60,3,60,2673,8,60,1,60,1,60,1,60,1,60, + 1,60,3,60,2680,8,60,1,60,1,60,1,60,1,60,3,60,2686,8,60,1,60,1,60, + 3,60,2690,8,60,1,60,1,60,3,60,2694,8,60,1,60,1,60,1,60,3,60,2699, + 8,60,1,60,3,60,2702,8,60,1,60,1,60,3,60,2706,8,60,1,60,1,60,1,60, + 1,60,3,60,2712,8,60,1,61,1,61,1,61,1,61,1,61,3,61,2719,8,61,1,62, + 1,62,1,63,1,63,1,63,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65, + 3,65,2735,8,65,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,68,1,68,1,68, + 5,68,2747,8,68,10,68,12,68,2750,9,68,1,69,1,69,1,69,1,69,1,69,1, + 69,1,69,3,69,2759,8,69,3,69,2761,8,69,1,70,4,70,2764,8,70,11,70, + 12,70,2765,1,71,1,71,3,71,2770,8,71,1,71,3,71,2773,8,71,1,71,1,71, + 1,71,1,71,3,71,2779,8,71,3,71,2781,8,71,1,72,1,72,1,72,1,72,1,72, 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,1,72,3,72,2807,8,72,1,73,1,73,1,73,1,74, - 1,74,1,74,5,74,2815,8,74,10,74,12,74,2818,9,74,1,75,1,75,1,75,1, - 75,1,75,1,76,1,76,1,76,5,76,2828,8,76,10,76,12,76,2831,9,76,1,77, - 1,77,1,77,1,77,3,77,2837,8,77,1,77,1,77,1,77,3,77,2842,8,77,1,77, - 1,77,3,77,2846,8,77,1,77,1,77,1,77,1,77,3,77,2852,8,77,1,77,1,77, - 1,77,3,77,2857,8,77,1,77,3,77,2860,8,77,3,77,2862,8,77,1,78,1,78, - 1,78,3,78,2867,8,78,1,79,1,79,3,79,2871,8,79,1,79,1,79,3,79,2875, - 8,79,1,79,1,79,3,79,2879,8,79,1,79,1,79,3,79,2883,8,79,1,79,3,79, - 2886,8,79,1,79,1,79,3,79,2890,8,79,1,79,1,79,1,79,1,79,1,79,1,79, - 3,79,2898,8,79,1,79,1,79,3,79,2902,8,79,1,79,1,79,3,79,2906,8,79, - 1,80,1,80,1,81,1,81,1,82,1,82,1,82,3,82,2915,8,82,1,83,1,83,1,83, - 1,83,1,83,3,83,2922,8,83,1,84,5,84,2925,8,84,10,84,12,84,2928,9, - 84,1,85,1,85,1,85,1,85,3,85,2934,8,85,1,85,1,85,1,85,3,85,2939,8, - 85,1,85,1,85,1,85,1,85,1,85,3,85,2946,8,85,1,85,1,85,1,85,3,85,2951, - 8,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,85,1,85,1,85,1,85,3,85,2969,8,85,1,86,1,86,1,87,3,87,2974,8,87, - 1,87,1,87,1,87,1,88,1,88,1,89,1,89,1,89,5,89,2984,8,89,10,89,12, - 89,2987,9,89,1,90,1,90,3,90,2991,8,90,1,91,1,91,1,91,1,91,1,91,1, - 91,1,91,3,91,3000,8,91,1,92,1,92,1,92,5,92,3005,8,92,10,92,12,92, - 3008,9,92,1,93,1,93,1,94,1,94,3,94,3014,8,94,1,94,1,94,3,94,3018, - 8,94,1,94,1,94,1,94,3,94,3023,8,94,1,94,1,94,3,94,3027,8,94,1,94, - 3,94,3030,8,94,1,94,3,94,3033,8,94,1,94,3,94,3036,8,94,1,94,3,94, - 3039,8,94,1,94,3,94,3042,8,94,1,94,1,94,1,94,3,94,3047,8,94,1,94, - 3,94,3050,8,94,1,94,3,94,3053,8,94,1,94,3,94,3056,8,94,1,94,3,94, - 3059,8,94,1,94,3,94,3062,8,94,1,94,1,94,1,94,1,94,3,94,3068,8,94, - 1,94,1,94,3,94,3072,8,94,1,94,3,94,3075,8,94,1,94,3,94,3078,8,94, - 1,94,3,94,3081,8,94,1,94,3,94,3084,8,94,3,94,3086,8,94,1,95,1,95, - 1,95,1,95,1,95,1,95,1,95,3,95,3095,8,95,1,96,1,96,1,97,1,97,1,98, - 1,98,1,98,1,98,1,99,1,99,1,99,5,99,3108,8,99,10,99,12,99,3111,9, - 99,1,100,1,100,1,100,5,100,3116,8,100,10,100,12,100,3119,9,100,1, - 101,1,101,1,101,3,101,3124,8,101,1,102,1,102,3,102,3128,8,102,1, - 103,1,103,1,103,3,103,3133,8,103,1,103,3,103,3136,8,103,1,103,3, - 103,3139,8,103,1,103,1,103,3,103,3143,8,103,1,103,1,103,3,103,3147, - 8,103,1,103,1,103,1,104,1,104,1,104,3,104,3154,8,104,1,104,3,104, - 3157,8,104,1,104,3,104,3160,8,104,1,104,1,104,3,104,3164,8,104,1, - 104,1,104,3,104,3168,8,104,1,104,1,104,1,105,1,105,1,105,1,106,1, - 106,1,106,1,106,1,106,1,106,1,106,3,106,3182,8,106,1,107,1,107,1, - 107,3,107,3187,8,107,1,107,1,107,1,108,5,108,3192,8,108,10,108,12, - 108,3195,9,108,1,109,1,109,3,109,3199,8,109,1,109,1,109,3,109,3203, - 8,109,1,109,3,109,3206,8,109,1,109,1,109,3,109,3210,8,109,1,109, - 3,109,3213,8,109,3,109,3215,8,109,1,110,1,110,1,110,1,110,1,110, - 3,110,3222,8,110,1,110,3,110,3225,8,110,1,110,1,110,3,110,3229,8, - 110,1,110,1,110,1,110,1,110,3,110,3235,8,110,1,110,3,110,3238,8, - 110,1,110,1,110,1,110,1,110,1,110,3,110,3245,8,110,1,110,1,110,1, - 110,1,110,1,110,1,110,1,110,3,110,3254,8,110,1,110,1,110,1,110,1, - 110,1,110,3,110,3261,8,110,1,110,1,110,1,110,3,110,3266,8,110,1, - 110,3,110,3269,8,110,1,110,3,110,3272,8,110,1,110,3,110,3275,8,110, - 1,111,1,111,3,111,3279,8,111,1,111,1,111,1,112,1,112,1,112,3,112, - 3286,8,112,1,113,1,113,1,113,3,113,3291,8,113,1,114,1,114,1,114, - 1,115,1,115,1,115,1,115,1,116,1,116,5,116,3302,8,116,10,116,12,116, - 3305,9,116,1,117,1,117,1,118,1,118,1,118,1,118,1,118,3,118,3314, - 8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,3,119,3327,8,119,1,119,3,119,3330,8,119,1,119,3,119,3333,8, - 119,1,119,1,119,1,119,1,119,1,119,3,119,3340,8,119,1,119,1,119,1, - 119,1,119,1,119,1,119,3,119,3348,8,119,1,119,3,119,3351,8,119,1, - 119,3,119,3354,8,119,1,119,1,119,1,119,1,119,1,119,3,119,3361,8, - 119,1,119,1,119,3,119,3365,8,119,1,119,1,119,1,119,1,119,3,119,3371, - 8,119,1,119,3,119,3374,8,119,1,119,3,119,3377,8,119,1,119,3,119, - 3380,8,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,3,119,3392,8,119,1,119,3,119,3395,8,119,1,119,3,119,3398,8, - 119,1,119,1,119,3,119,3402,8,119,1,120,1,120,1,120,1,121,1,121,1, - 121,1,121,1,122,1,122,1,122,5,122,3414,8,122,10,122,12,122,3417, - 9,122,1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,125,1,125, - 1,125,5,125,3430,8,125,10,125,12,125,3433,9,125,1,126,1,126,1,126, - 1,126,1,126,1,126,1,126,1,126,3,126,3443,8,126,1,127,1,127,1,127, - 1,127,1,127,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,3,128, - 3458,8,128,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,1,131, - 1,131,1,131,1,131,1,131,1,131,1,131,3,131,3475,8,131,3,131,3477, - 8,131,1,132,1,132,1,132,1,132,1,132,1,133,1,133,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,135,1,135,1,135,5,135,3496,8,135,10,135, - 12,135,3499,9,135,1,136,1,136,3,136,3503,8,136,1,136,3,136,3506, - 8,136,1,136,1,136,3,136,3510,8,136,1,136,3,136,3513,8,136,1,136, - 1,136,1,136,1,136,3,136,3519,8,136,1,136,3,136,3522,8,136,3,136, - 3524,8,136,1,137,1,137,1,137,1,138,1,138,1,138,1,138,1,138,1,138, - 3,138,3535,8,138,1,139,1,139,1,139,1,139,1,139,1,139,1,139,3,139, - 3544,8,139,1,140,1,140,1,140,1,141,3,141,3550,8,141,1,141,3,141, - 3553,8,141,1,141,3,141,3556,8,141,1,142,1,142,1,142,1,142,1,142, - 1,143,1,143,1,143,1,143,1,144,1,144,1,144,3,144,3570,8,144,1,144, - 3,144,3573,8,144,1,144,3,144,3576,8,144,1,144,1,144,1,144,3,144, - 3581,8,144,1,144,1,144,1,144,1,145,1,145,1,145,3,145,3589,8,145, - 1,145,1,145,1,145,1,145,1,145,1,146,1,146,3,146,3598,8,146,1,146, - 1,146,3,146,3602,8,146,1,146,1,146,1,146,1,146,3,146,3608,8,146, - 1,147,1,147,3,147,3612,8,147,1,147,3,147,3615,8,147,1,147,3,147, - 3618,8,147,1,147,3,147,3621,8,147,1,147,3,147,3624,8,147,1,148,1, - 148,1,148,1,148,3,148,3630,8,148,1,149,1,149,3,149,3634,8,149,1, - 149,1,149,1,149,3,149,3639,8,149,1,149,1,149,1,149,1,149,3,149,3645, - 8,149,1,150,1,150,3,150,3649,8,150,1,150,3,150,3652,8,150,1,150, - 3,150,3655,8,150,1,150,3,150,3658,8,150,1,151,1,151,1,152,1,152, - 1,152,1,152,3,152,3666,8,152,1,152,1,152,3,152,3670,8,152,1,153, - 1,153,3,153,3674,8,153,1,153,1,153,3,153,3678,8,153,1,153,1,153, - 3,153,3682,8,153,1,154,1,154,1,154,3,154,3687,8,154,1,154,1,154, - 1,154,1,155,1,155,1,156,1,156,1,156,1,156,1,157,4,157,3699,8,157, - 11,157,12,157,3700,1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158, - 3710,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,3,158,3727,8,158,1,158,1,158, - 1,158,3,158,3732,8,158,1,158,3,158,3735,8,158,3,158,3737,8,158,1, - 159,1,159,1,160,1,160,1,160,1,160,1,160,1,160,3,160,3747,8,160,1, - 161,1,161,1,161,5,161,3752,8,161,10,161,12,161,3755,9,161,1,162, - 1,162,3,162,3759,8,162,1,162,3,162,3762,8,162,1,162,3,162,3765,8, - 162,1,162,1,162,1,162,1,162,1,162,3,162,3772,8,162,1,162,3,162,3775, - 8,162,3,162,3777,8,162,1,163,1,163,1,164,1,164,3,164,3783,8,164, - 1,165,1,165,1,165,1,166,1,166,1,166,1,166,3,166,3792,8,166,1,167, - 1,167,1,168,1,168,1,169,1,169,1,169,1,169,3,169,3802,8,169,1,169, - 1,169,1,169,3,169,3807,8,169,1,170,1,170,1,170,1,171,1,171,1,171, - 3,171,3815,8,171,1,171,1,171,3,171,3819,8,171,1,171,1,171,1,172, - 5,172,3824,8,172,10,172,12,172,3827,9,172,1,173,1,173,1,173,1,173, - 1,173,1,173,1,173,3,173,3836,8,173,1,174,1,174,1,174,1,174,1,174, - 1,174,1,175,5,175,3845,8,175,10,175,12,175,3848,9,175,1,176,1,176, - 1,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,3,177,3955,8,177,1,178,1,178,1,178,1,178, - 1,178,1,178,3,178,3963,8,178,1,178,3,178,3966,8,178,1,179,1,179, - 1,179,1,179,1,179,1,179,1,179,1,179,3,179,3976,8,179,1,180,4,180, - 3979,8,180,11,180,12,180,3980,1,181,1,181,1,182,1,182,1,182,1,182, - 1,182,1,182,3,182,3991,8,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,3,182,4002,8,182,1,183,1,183,1,183,1,183,1,183, - 1,184,1,184,1,184,5,184,4012,8,184,10,184,12,184,4015,9,184,1,185, - 1,185,1,185,1,185,1,185,1,186,1,186,1,186,5,186,4025,8,186,10,186, - 12,186,4028,9,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187,3,187, - 4037,8,187,1,188,1,188,1,188,1,189,1,189,1,190,1,190,1,191,1,191, - 1,191,3,191,4049,8,191,1,191,1,191,3,191,4053,8,191,1,191,3,191, - 4056,8,191,1,191,1,191,1,191,1,191,1,191,3,191,4063,8,191,1,192, - 1,192,1,192,1,193,1,193,1,193,3,193,4071,8,193,1,194,1,194,1,195, - 1,195,1,195,1,195,1,195,1,195,3,195,4081,8,195,3,195,4083,8,195, - 1,196,1,196,1,196,1,196,3,196,4089,8,196,1,196,1,196,1,196,3,196, - 4094,8,196,1,196,1,196,3,196,4098,8,196,1,196,1,196,1,196,3,196, - 4103,8,196,1,196,1,196,1,196,1,196,3,196,4109,8,196,1,196,1,196, - 1,196,1,196,1,196,3,196,4116,8,196,1,196,1,196,1,196,1,196,3,196, - 4122,8,196,3,196,4124,8,196,1,197,1,197,1,197,1,197,1,197,3,197, - 4131,8,197,1,197,1,197,1,197,1,197,1,197,1,197,3,197,4139,8,197, - 1,198,1,198,1,198,3,198,4144,8,198,1,199,1,199,1,199,1,199,1,199, - 1,200,1,200,1,200,1,200,3,200,4155,8,200,1,200,1,200,1,200,1,200, - 1,200,3,200,4162,8,200,1,201,1,201,3,201,4166,8,201,1,202,1,202, - 1,202,1,202,1,202,1,202,1,202,1,202,1,202,1,203,1,203,1,203,1,203, - 1,203,1,203,3,203,4183,8,203,1,203,3,203,4186,8,203,1,203,3,203, - 4189,8,203,1,203,3,203,4192,8,203,1,203,3,203,4195,8,203,1,204,1, - 204,1,204,1,204,1,204,1,204,3,204,4203,8,204,1,204,3,204,4206,8, - 204,1,204,3,204,4209,8,204,1,205,1,205,1,205,1,205,3,205,4215,8, - 205,1,205,1,205,1,206,1,206,5,206,4221,8,206,10,206,12,206,4224, - 9,206,1,206,3,206,4227,8,206,1,206,1,206,1,206,1,206,1,206,1,206, - 1,206,1,206,1,206,1,206,3,206,4239,8,206,1,206,1,206,1,206,1,206, - 3,206,4245,8,206,1,207,3,207,4248,8,207,1,207,1,207,1,207,3,207, - 4253,8,207,1,207,1,207,3,207,4257,8,207,1,207,1,207,1,207,1,207, - 1,207,3,207,4264,8,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207, - 1,207,1,207,3,207,4275,8,207,1,208,1,208,1,208,1,208,1,208,1,209, - 1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,211,1,211,1,211, - 1,212,1,212,1,212,1,212,3,212,4298,8,212,1,213,1,213,1,213,1,214, - 1,214,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,216, - 1,216,1,217,1,217,3,217,4318,8,217,1,217,1,217,1,217,1,217,1,217, - 1,217,1,217,3,217,4327,8,217,1,217,3,217,4330,8,217,1,217,3,217, - 4333,8,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,3,217, - 4343,8,217,1,217,3,217,4346,8,217,1,217,1,217,1,217,1,217,1,217, - 1,217,1,217,3,217,4355,8,217,1,217,1,217,3,217,4359,8,217,1,217, - 3,217,4362,8,217,1,217,1,217,1,217,1,217,1,217,1,217,3,217,4370, - 8,217,1,218,1,218,1,218,1,218,3,218,4376,8,218,1,219,1,219,3,219, - 4380,8,219,1,219,1,219,1,220,1,220,1,221,1,221,1,221,5,221,4389, - 8,221,10,221,12,221,4392,9,221,1,222,1,222,1,222,1,222,1,222,1,222, - 1,222,3,222,4401,8,222,1,223,1,223,1,223,1,224,4,224,4407,8,224, - 11,224,12,224,4408,1,225,1,225,1,225,3,225,4414,8,225,1,225,1,225, - 1,226,1,226,1,227,1,227,1,228,1,228,1,229,1,229,3,229,4426,8,229, - 1,229,1,229,1,230,1,230,1,231,1,231,1,232,1,232,1,232,1,232,1,232, - 1,233,1,233,1,233,1,233,3,233,4443,8,233,1,234,1,234,3,234,4447, - 8,234,1,234,1,234,5,234,4451,8,234,10,234,12,234,4454,9,234,1,235, - 1,235,1,235,1,235,3,235,4460,8,235,1,236,1,236,1,236,1,237,5,237, - 4466,8,237,10,237,12,237,4469,9,237,1,238,1,238,1,238,1,238,1,238, - 1,238,1,238,1,238,1,238,1,238,1,238,3,238,4482,8,238,1,239,1,239, - 1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239, - 1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239, - 3,239,4508,8,239,1,240,1,240,1,240,5,240,4513,8,240,10,240,12,240, - 4516,9,240,1,241,1,241,1,241,1,241,1,241,1,241,1,242,1,242,1,242, - 5,242,4527,8,242,10,242,12,242,4530,9,242,1,243,1,243,1,243,1,243, - 1,243,1,243,1,244,1,244,3,244,4540,8,244,1,244,3,244,4543,8,244, - 1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,246,1,246, - 3,246,4556,8,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246, - 4565,8,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,3,246,4590,8,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,3,246,4601,8,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,3,246,4643,8,246,1,246,1,246,1,246,1,246,1,246, - 1,246,3,246,4651,8,246,1,246,1,246,1,246,1,246,3,246,4657,8,246, - 1,247,1,247,1,247,1,247,1,248,1,248,1,248,5,248,4666,8,248,10,248, - 12,248,4669,9,248,1,249,1,249,1,249,3,249,4674,8,249,1,250,1,250, - 1,250,1,250,1,250,1,250,3,250,4682,8,250,1,251,1,251,1,251,1,251, - 1,252,1,252,1,252,5,252,4691,8,252,10,252,12,252,4694,9,252,1,253, - 1,253,1,253,1,253,1,254,1,254,1,255,1,255,1,255,5,255,4705,8,255, - 10,255,12,255,4708,9,255,1,256,1,256,1,256,1,256,1,256,1,256,3,256, - 4716,8,256,1,256,1,256,1,256,3,256,4721,8,256,1,256,1,256,1,256, - 1,256,1,256,1,256,1,256,1,256,1,256,3,256,4732,8,256,1,257,1,257, - 1,257,1,257,1,258,1,258,1,258,1,258,1,258,3,258,4743,8,258,1,258, - 1,258,1,258,1,258,1,258,1,258,3,258,4751,8,258,1,258,1,258,1,258, - 1,259,1,259,1,259,5,259,4759,8,259,10,259,12,259,4762,9,259,1,260, - 1,260,1,260,1,260,3,260,4768,8,260,1,260,3,260,4771,8,260,1,260, - 1,260,1,260,1,260,3,260,4777,8,260,1,260,3,260,4780,8,260,1,260, - 1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260, - 1,260,3,260,4795,8,260,1,261,1,261,1,262,1,262,1,262,1,263,1,263, - 1,263,1,263,1,263,1,263,3,263,4808,8,263,1,264,1,264,1,265,1,265, - 1,265,1,265,1,265,1,265,1,265,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,3,266,4837,8,266,1,267,1,267,1,267,5,267,4842,8,267,10,267, - 12,267,4845,9,267,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,3,268,4859,8,268,1,269,1,269,1,269,1,269, - 1,269,1,269,1,269,1,270,1,270,1,270,3,270,4871,8,270,1,270,1,270, - 3,270,4875,8,270,1,270,1,270,1,270,3,270,4880,8,270,1,270,1,270, - 3,270,4884,8,270,1,270,1,270,1,270,3,270,4889,8,270,1,270,1,270, - 3,270,4893,8,270,1,270,1,270,1,270,1,270,3,270,4899,8,270,1,270, - 1,270,3,270,4903,8,270,1,270,1,270,1,270,3,270,4908,8,270,1,270, - 1,270,3,270,4912,8,270,1,270,1,270,1,270,1,270,3,270,4918,8,270, - 1,270,1,270,3,270,4922,8,270,1,270,1,270,1,270,3,270,4927,8,270, - 1,270,1,270,3,270,4931,8,270,1,270,1,270,1,270,3,270,4936,8,270, - 1,270,1,270,3,270,4940,8,270,1,270,1,270,1,270,3,270,4945,8,270, - 1,270,1,270,3,270,4949,8,270,1,270,1,270,1,270,1,270,1,270,3,270, - 4956,8,270,1,270,1,270,3,270,4960,8,270,1,270,1,270,1,270,1,270, - 1,270,3,270,4967,8,270,1,270,1,270,3,270,4971,8,270,1,270,1,270, - 1,270,1,270,1,270,3,270,4978,8,270,1,270,1,270,3,270,4982,8,270, - 1,270,1,270,1,270,1,270,1,270,3,270,4989,8,270,1,270,1,270,3,270, - 4993,8,270,1,270,1,270,1,270,1,270,3,270,4999,8,270,1,270,1,270, - 3,270,5003,8,270,1,270,1,270,1,270,1,270,3,270,5009,8,270,1,270, - 1,270,3,270,5013,8,270,1,270,1,270,1,270,3,270,5018,8,270,1,270, - 1,270,3,270,5022,8,270,1,270,1,270,1,270,1,270,1,270,3,270,5029, - 8,270,1,270,1,270,3,270,5033,8,270,1,270,1,270,3,270,5037,8,270, - 1,270,1,270,3,270,5041,8,270,1,270,1,270,3,270,5045,8,270,1,270, - 1,270,1,270,3,270,5050,8,270,1,270,1,270,3,270,5054,8,270,1,270, - 1,270,1,270,3,270,5059,8,270,1,270,1,270,3,270,5063,8,270,1,270, - 1,270,1,270,3,270,5068,8,270,1,270,1,270,3,270,5072,8,270,1,270, - 1,270,1,270,3,270,5077,8,270,1,270,1,270,1,270,1,270,3,270,5083, - 8,270,1,270,1,270,1,270,3,270,5088,8,270,1,270,1,270,1,270,1,270, - 3,270,5094,8,270,1,270,1,270,1,270,3,270,5099,8,270,1,270,1,270, - 1,270,1,270,3,270,5105,8,270,1,270,1,270,1,270,3,270,5110,8,270, - 1,270,1,270,3,270,5114,8,270,1,270,1,270,1,270,3,270,5119,8,270, - 1,270,1,270,3,270,5123,8,270,1,270,1,270,1,270,1,270,3,270,5129, - 8,270,1,270,1,270,3,270,5133,8,270,1,270,1,270,1,270,3,270,5138, - 8,270,1,270,1,270,1,270,1,270,1,270,1,270,3,270,5146,8,270,1,270, - 1,270,1,270,1,270,3,270,5152,8,270,1,270,1,270,1,270,1,270,3,270, - 5158,8,270,1,270,1,270,1,270,1,270,3,270,5164,8,270,1,270,1,270, - 1,270,1,270,3,270,5170,8,270,1,270,1,270,1,270,1,270,1,270,3,270, - 5177,8,270,1,270,1,270,1,270,3,270,5182,8,270,1,270,1,270,3,270, - 5186,8,270,1,270,1,270,1,270,3,270,5191,8,270,1,270,1,270,3,270, - 5195,8,270,1,270,1,270,1,270,3,270,5200,8,270,1,270,1,270,1,270, - 1,270,3,270,5206,8,270,1,270,1,270,1,270,1,270,1,270,3,270,5213, - 8,270,1,270,1,270,1,270,3,270,5218,8,270,1,270,1,270,1,270,1,270, - 1,270,3,270,5225,8,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270, - 1,270,3,270,5235,8,270,1,270,1,270,3,270,5239,8,270,1,270,1,270, - 1,270,1,270,3,270,5245,8,270,3,270,5247,8,270,1,271,1,271,1,271, - 5,271,5252,8,271,10,271,12,271,5255,9,271,1,272,3,272,5258,8,272, - 1,272,1,272,1,272,3,272,5263,8,272,1,272,1,272,1,272,1,272,1,272, - 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272, - 3,272,5281,8,272,1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273, - 1,273,1,273,1,273,1,273,1,273,3,273,5296,8,273,1,273,1,273,1,273, + 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2809,8,72,1,73,1,73, + 1,73,1,74,1,74,1,74,5,74,2817,8,74,10,74,12,74,2820,9,74,1,75,1, + 75,1,75,1,75,1,75,1,76,1,76,1,76,5,76,2830,8,76,10,76,12,76,2833, + 9,76,1,77,1,77,1,77,1,77,3,77,2839,8,77,1,77,1,77,1,77,3,77,2844, + 8,77,1,77,1,77,3,77,2848,8,77,1,77,1,77,1,77,1,77,3,77,2854,8,77, + 1,77,1,77,1,77,3,77,2859,8,77,1,77,3,77,2862,8,77,3,77,2864,8,77, + 1,78,1,78,1,78,3,78,2869,8,78,1,79,1,79,3,79,2873,8,79,1,79,1,79, + 3,79,2877,8,79,1,79,1,79,3,79,2881,8,79,1,79,1,79,3,79,2885,8,79, + 1,79,3,79,2888,8,79,1,79,1,79,3,79,2892,8,79,1,79,1,79,1,79,1,79, + 1,79,1,79,3,79,2900,8,79,1,79,1,79,3,79,2904,8,79,1,79,1,79,3,79, + 2908,8,79,1,80,1,80,1,81,1,81,1,82,1,82,1,82,3,82,2917,8,82,1,83, + 1,83,1,83,1,83,1,83,3,83,2924,8,83,1,84,5,84,2927,8,84,10,84,12, + 84,2930,9,84,1,85,1,85,1,85,1,85,3,85,2936,8,85,1,85,1,85,1,85,3, + 85,2941,8,85,1,85,1,85,1,85,1,85,1,85,3,85,2948,8,85,1,85,1,85,1, + 85,3,85,2953,8,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1, + 85,1,85,1,85,1,85,1,85,1,85,1,85,3,85,2971,8,85,1,86,1,86,1,87,3, + 87,2976,8,87,1,87,1,87,1,87,1,88,1,88,1,89,1,89,1,89,5,89,2986,8, + 89,10,89,12,89,2989,9,89,1,90,1,90,3,90,2993,8,90,1,91,1,91,1,91, + 1,91,1,91,1,91,1,91,3,91,3002,8,91,1,92,1,92,1,92,5,92,3007,8,92, + 10,92,12,92,3010,9,92,1,93,1,93,1,94,1,94,3,94,3016,8,94,1,94,1, + 94,3,94,3020,8,94,1,94,1,94,1,94,3,94,3025,8,94,1,94,1,94,3,94,3029, + 8,94,1,94,3,94,3032,8,94,1,94,3,94,3035,8,94,1,94,3,94,3038,8,94, + 1,94,3,94,3041,8,94,1,94,3,94,3044,8,94,1,94,1,94,1,94,3,94,3049, + 8,94,1,94,3,94,3052,8,94,1,94,3,94,3055,8,94,1,94,3,94,3058,8,94, + 1,94,3,94,3061,8,94,1,94,3,94,3064,8,94,1,94,1,94,1,94,1,94,3,94, + 3070,8,94,1,94,1,94,3,94,3074,8,94,1,94,3,94,3077,8,94,1,94,3,94, + 3080,8,94,1,94,3,94,3083,8,94,1,94,3,94,3086,8,94,3,94,3088,8,94, + 1,95,1,95,1,95,1,95,1,95,1,95,1,95,3,95,3097,8,95,1,96,1,96,1,97, + 1,97,1,98,1,98,1,98,1,98,1,99,1,99,1,99,5,99,3110,8,99,10,99,12, + 99,3113,9,99,1,100,1,100,1,100,5,100,3118,8,100,10,100,12,100,3121, + 9,100,1,101,1,101,1,101,3,101,3126,8,101,1,102,1,102,3,102,3130, + 8,102,1,103,1,103,1,103,3,103,3135,8,103,1,103,3,103,3138,8,103, + 1,103,3,103,3141,8,103,1,103,1,103,3,103,3145,8,103,1,103,1,103, + 3,103,3149,8,103,1,103,1,103,1,104,1,104,1,104,1,105,1,105,1,105, + 1,105,1,105,1,105,1,105,3,105,3163,8,105,1,106,1,106,1,106,3,106, + 3168,8,106,1,106,1,106,1,107,5,107,3173,8,107,10,107,12,107,3176, + 9,107,1,108,1,108,3,108,3180,8,108,1,108,1,108,3,108,3184,8,108, + 1,108,3,108,3187,8,108,1,108,1,108,3,108,3191,8,108,1,108,3,108, + 3194,8,108,3,108,3196,8,108,1,109,1,109,1,109,1,109,1,109,3,109, + 3203,8,109,1,109,3,109,3206,8,109,1,109,1,109,3,109,3210,8,109,1, + 109,1,109,1,109,1,109,3,109,3216,8,109,1,109,3,109,3219,8,109,1, + 109,1,109,1,109,1,109,1,109,3,109,3226,8,109,1,109,1,109,1,109,1, + 109,1,109,1,109,1,109,3,109,3235,8,109,1,109,1,109,1,109,1,109,1, + 109,3,109,3242,8,109,1,109,1,109,1,109,3,109,3247,8,109,1,109,3, + 109,3250,8,109,1,109,3,109,3253,8,109,1,109,3,109,3256,8,109,1,110, + 1,110,3,110,3260,8,110,1,110,1,110,1,111,1,111,1,111,3,111,3267, + 8,111,1,112,1,112,1,112,3,112,3272,8,112,1,113,1,113,1,113,1,114, + 1,114,1,114,1,114,1,115,1,115,5,115,3283,8,115,10,115,12,115,3286, + 9,115,1,116,1,116,1,117,1,117,1,117,1,117,1,117,3,117,3295,8,117, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 3,118,3308,8,118,1,118,3,118,3311,8,118,1,118,3,118,3314,8,118,1, + 118,1,118,1,118,1,118,1,118,3,118,3321,8,118,1,118,1,118,1,118,1, + 118,1,118,1,118,3,118,3329,8,118,1,118,3,118,3332,8,118,1,118,3, + 118,3335,8,118,1,118,1,118,1,118,1,118,1,118,3,118,3342,8,118,1, + 118,1,118,3,118,3346,8,118,1,118,1,118,1,118,1,118,3,118,3352,8, + 118,1,118,3,118,3355,8,118,1,118,3,118,3358,8,118,1,118,3,118,3361, + 8,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 3,118,3373,8,118,1,118,3,118,3376,8,118,1,118,3,118,3379,8,118,1, + 118,1,118,3,118,3383,8,118,1,119,1,119,1,119,1,120,1,120,1,120,1, + 120,1,121,1,121,1,121,1,121,1,122,1,122,1,122,5,122,3399,8,122,10, + 122,12,122,3402,9,122,1,123,1,123,1,123,5,123,3407,8,123,10,123, + 12,123,3410,9,123,1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125, + 1,126,1,126,1,126,5,126,3423,8,126,10,126,12,126,3426,9,126,1,127, + 1,127,1,127,1,127,1,127,1,127,1,127,1,127,3,127,3436,8,127,1,128, + 1,128,1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129, + 1,129,3,129,3451,8,129,1,130,1,130,1,130,1,130,1,131,1,131,1,131, + 1,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,3468,8,132, + 3,132,3470,8,132,1,133,1,133,1,133,1,133,1,133,1,134,1,134,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,136,1,136,1,136,5,136,3489, + 8,136,10,136,12,136,3492,9,136,1,137,1,137,3,137,3496,8,137,1,137, + 3,137,3499,8,137,1,137,1,137,3,137,3503,8,137,1,137,3,137,3506,8, + 137,1,137,1,137,1,137,1,137,3,137,3512,8,137,1,137,3,137,3515,8, + 137,3,137,3517,8,137,1,138,1,138,1,138,1,139,1,139,1,139,1,139,1, + 139,1,139,3,139,3528,8,139,1,140,1,140,1,140,1,140,1,140,1,140,1, + 140,3,140,3537,8,140,1,141,1,141,1,141,1,142,3,142,3543,8,142,1, + 142,3,142,3546,8,142,1,142,3,142,3549,8,142,1,143,1,143,1,143,1, + 143,1,143,1,144,1,144,1,144,1,144,1,145,1,145,1,145,3,145,3563,8, + 145,1,145,3,145,3566,8,145,1,145,3,145,3569,8,145,1,145,1,145,1, + 145,3,145,3574,8,145,1,145,1,145,1,145,1,146,1,146,1,146,3,146,3582, + 8,146,1,146,1,146,1,146,1,146,1,146,1,147,1,147,3,147,3591,8,147, + 1,147,1,147,3,147,3595,8,147,1,147,1,147,1,147,1,147,3,147,3601, + 8,147,1,148,1,148,3,148,3605,8,148,1,148,3,148,3608,8,148,1,148, + 3,148,3611,8,148,1,148,3,148,3614,8,148,1,148,3,148,3617,8,148,1, + 149,1,149,1,149,1,149,3,149,3623,8,149,1,150,1,150,3,150,3627,8, + 150,1,150,1,150,1,150,3,150,3632,8,150,1,150,1,150,1,150,1,150,3, + 150,3638,8,150,1,151,1,151,3,151,3642,8,151,1,151,3,151,3645,8,151, + 1,151,3,151,3648,8,151,1,151,3,151,3651,8,151,1,152,1,152,1,153, + 1,153,1,153,1,153,3,153,3659,8,153,1,153,1,153,3,153,3663,8,153, + 1,154,1,154,3,154,3667,8,154,1,154,1,154,3,154,3671,8,154,1,154, + 1,154,3,154,3675,8,154,1,155,1,155,1,155,3,155,3680,8,155,1,155, + 1,155,1,155,1,156,1,156,1,157,1,157,1,157,1,157,1,158,4,158,3692, + 8,158,11,158,12,158,3693,1,159,1,159,1,159,1,159,1,159,1,159,1,159, + 3,159,3703,8,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159, + 1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3720,8,159,1,159, + 1,159,1,159,3,159,3725,8,159,1,159,3,159,3728,8,159,3,159,3730,8, + 159,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,161,3,161,3740,8, + 161,1,162,1,162,1,162,5,162,3745,8,162,10,162,12,162,3748,9,162, + 1,163,1,163,3,163,3752,8,163,1,163,3,163,3755,8,163,1,163,3,163, + 3758,8,163,1,163,1,163,1,163,1,163,1,163,3,163,3765,8,163,1,163, + 3,163,3768,8,163,3,163,3770,8,163,1,164,1,164,1,165,1,165,3,165, + 3776,8,165,1,166,1,166,1,166,1,167,1,167,1,167,1,167,3,167,3785, + 8,167,1,168,1,168,1,169,1,169,1,170,1,170,1,170,1,170,3,170,3795, + 8,170,1,170,1,170,1,170,3,170,3800,8,170,1,171,1,171,1,171,1,172, + 1,172,1,172,3,172,3808,8,172,1,172,1,172,3,172,3812,8,172,1,172, + 1,172,1,173,5,173,3817,8,173,10,173,12,173,3820,9,173,1,174,1,174, + 1,174,1,174,1,174,1,174,1,174,3,174,3829,8,174,1,175,1,175,1,175, + 1,175,1,175,1,175,1,176,5,176,3838,8,176,10,176,12,176,3841,9,176, + 1,177,1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,3,178,3948,8,178,1,179,1,179, + 1,179,1,179,1,179,1,179,3,179,3956,8,179,1,179,3,179,3959,8,179, + 1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,3969,8,180, + 1,181,4,181,3972,8,181,11,181,12,181,3973,1,182,1,182,1,183,1,183, + 1,183,1,183,1,183,1,183,3,183,3984,8,183,1,183,1,183,1,183,1,183, + 1,183,1,183,1,183,1,183,1,183,3,183,3995,8,183,1,184,1,184,1,184, + 1,184,1,184,1,185,1,185,1,185,5,185,4005,8,185,10,185,12,185,4008, + 9,185,1,186,1,186,1,186,1,186,1,186,1,187,1,187,1,187,5,187,4018, + 8,187,10,187,12,187,4021,9,187,1,188,1,188,1,188,1,188,1,188,1,188, + 1,188,3,188,4030,8,188,1,189,1,189,1,189,1,190,1,190,1,191,1,191, + 1,192,1,192,1,192,3,192,4042,8,192,1,192,1,192,3,192,4046,8,192, + 1,192,3,192,4049,8,192,1,192,1,192,1,192,1,192,1,192,3,192,4056, + 8,192,1,193,1,193,1,193,1,194,1,194,1,194,3,194,4064,8,194,1,195, + 1,195,1,196,1,196,1,196,1,196,1,196,1,196,3,196,4074,8,196,3,196, + 4076,8,196,1,197,1,197,1,197,1,197,3,197,4082,8,197,1,197,1,197, + 1,197,3,197,4087,8,197,1,197,1,197,3,197,4091,8,197,1,197,1,197, + 1,197,3,197,4096,8,197,1,197,1,197,1,197,1,197,3,197,4102,8,197, + 1,197,1,197,1,197,1,197,1,197,3,197,4109,8,197,1,197,1,197,1,197, + 1,197,3,197,4115,8,197,3,197,4117,8,197,1,198,1,198,1,198,1,198, + 1,198,3,198,4124,8,198,1,198,1,198,1,198,1,198,1,198,1,198,3,198, + 4132,8,198,1,199,1,199,1,199,3,199,4137,8,199,1,200,1,200,1,200, + 1,200,1,200,1,201,1,201,1,201,1,201,3,201,4148,8,201,1,201,1,201, + 1,201,1,201,1,201,3,201,4155,8,201,1,202,1,202,3,202,4159,8,202, + 1,203,1,203,1,203,1,203,1,203,1,203,1,203,1,203,1,203,1,204,1,204, + 1,204,1,204,1,204,1,204,3,204,4176,8,204,1,204,3,204,4179,8,204, + 1,204,3,204,4182,8,204,1,204,3,204,4185,8,204,1,204,3,204,4188,8, + 204,1,205,1,205,1,205,1,205,1,205,1,205,3,205,4196,8,205,1,205,3, + 205,4199,8,205,1,205,3,205,4202,8,205,1,206,1,206,1,206,1,206,3, + 206,4208,8,206,1,206,1,206,1,207,1,207,5,207,4214,8,207,10,207,12, + 207,4217,9,207,1,207,3,207,4220,8,207,1,207,1,207,1,207,1,207,1, + 207,1,207,1,207,1,207,1,207,1,207,3,207,4232,8,207,1,207,1,207,1, + 207,1,207,3,207,4238,8,207,1,208,3,208,4241,8,208,1,208,1,208,1, + 208,3,208,4246,8,208,1,208,1,208,3,208,4250,8,208,1,208,1,208,1, + 208,1,208,1,208,3,208,4257,8,208,1,208,1,208,1,208,1,208,1,208,1, + 208,1,208,1,208,1,208,3,208,4268,8,208,1,209,1,209,1,209,1,209,1, + 209,1,210,1,210,1,210,1,210,1,210,1,210,1,211,1,211,1,211,1,212, + 1,212,1,212,1,213,1,213,1,213,1,213,3,213,4291,8,213,1,214,1,214, + 1,214,1,215,1,215,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, + 1,216,1,217,1,217,1,218,1,218,3,218,4311,8,218,1,218,1,218,1,218, + 1,218,1,218,1,218,1,218,3,218,4320,8,218,1,218,3,218,4323,8,218, + 1,218,3,218,4326,8,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218, + 1,218,3,218,4336,8,218,1,218,3,218,4339,8,218,1,218,1,218,1,218, + 1,218,1,218,1,218,1,218,3,218,4348,8,218,1,218,1,218,3,218,4352, + 8,218,1,218,3,218,4355,8,218,1,218,1,218,1,218,1,218,1,218,1,218, + 3,218,4363,8,218,1,219,1,219,1,219,1,219,3,219,4369,8,219,1,220, + 1,220,3,220,4373,8,220,1,220,1,220,1,221,1,221,1,222,1,222,1,222, + 5,222,4382,8,222,10,222,12,222,4385,9,222,1,223,1,223,1,223,1,223, + 1,223,1,223,1,223,3,223,4394,8,223,1,224,1,224,1,224,1,225,4,225, + 4400,8,225,11,225,12,225,4401,1,226,1,226,1,226,3,226,4407,8,226, + 1,226,1,226,1,227,1,227,1,228,1,228,1,229,1,229,1,230,1,230,3,230, + 4419,8,230,1,230,1,230,1,231,1,231,1,232,1,232,1,233,1,233,1,233, + 1,233,1,233,1,234,1,234,1,234,1,234,3,234,4436,8,234,1,235,1,235, + 3,235,4440,8,235,1,235,1,235,5,235,4444,8,235,10,235,12,235,4447, + 9,235,1,236,1,236,1,236,1,236,3,236,4453,8,236,1,237,1,237,1,237, + 1,238,5,238,4459,8,238,10,238,12,238,4462,9,238,1,239,1,239,1,239, + 1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,3,239,4475,8,239, + 1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240, + 1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240, + 1,240,1,240,3,240,4501,8,240,1,241,1,241,1,241,5,241,4506,8,241, + 10,241,12,241,4509,9,241,1,242,1,242,1,242,1,242,1,242,1,242,1,243, + 1,243,1,243,5,243,4520,8,243,10,243,12,243,4523,9,243,1,244,1,244, + 1,244,1,244,1,244,1,244,1,245,1,245,3,245,4533,8,245,1,245,3,245, + 4536,8,245,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,247,1,247,3,247,4549,8,247,1,247,1,247,1,247,1,247,1,247,1,247, + 1,247,3,247,4558,8,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, + 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, + 1,247,1,247,1,247,1,247,1,247,3,247,4583,8,247,1,247,1,247,1,247, + 1,247,1,247,1,247,1,247,1,247,1,247,3,247,4594,8,247,1,247,1,247, + 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, + 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, + 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, + 1,247,1,247,1,247,1,247,1,247,3,247,4636,8,247,1,247,1,247,1,247, + 1,247,1,247,1,247,3,247,4644,8,247,1,247,1,247,1,247,1,247,3,247, + 4650,8,247,1,248,1,248,1,248,1,248,1,249,1,249,1,249,5,249,4659, + 8,249,10,249,12,249,4662,9,249,1,250,1,250,1,250,3,250,4667,8,250, + 1,251,1,251,1,251,1,251,1,251,1,251,3,251,4675,8,251,1,252,1,252, + 1,252,1,252,1,253,1,253,1,253,5,253,4684,8,253,10,253,12,253,4687, + 9,253,1,254,1,254,1,254,1,254,1,255,1,255,1,256,1,256,1,256,5,256, + 4698,8,256,10,256,12,256,4701,9,256,1,257,1,257,1,257,1,257,1,257, + 1,257,3,257,4709,8,257,1,257,1,257,1,257,3,257,4714,8,257,1,257, + 1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,3,257,4725,8,257, + 1,258,1,258,1,258,1,258,1,259,1,259,1,259,1,259,1,259,3,259,4736, + 8,259,1,259,1,259,1,259,1,259,1,259,1,259,3,259,4744,8,259,1,259, + 1,259,1,259,1,260,1,260,1,260,5,260,4752,8,260,10,260,12,260,4755, + 9,260,1,261,1,261,1,261,1,261,3,261,4761,8,261,1,261,3,261,4764, + 8,261,1,261,1,261,1,261,1,261,3,261,4770,8,261,1,261,3,261,4773, + 8,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, + 1,261,1,261,1,261,3,261,4788,8,261,1,262,1,262,1,263,1,263,1,263, + 1,264,1,264,1,264,1,264,1,264,1,264,3,264,4801,8,264,1,265,1,265, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,267,1,267,1,267,1,267, + 1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, + 1,267,1,267,1,267,3,267,4830,8,267,1,268,1,268,1,268,5,268,4835, + 8,268,10,268,12,268,4838,9,268,1,269,1,269,1,269,1,269,1,269,1,269, + 1,269,1,269,1,269,1,269,1,269,1,269,3,269,4852,8,269,1,270,1,270, + 1,270,1,270,1,270,1,270,1,270,1,271,1,271,1,271,3,271,4864,8,271, + 1,271,1,271,3,271,4868,8,271,1,271,1,271,1,271,3,271,4873,8,271, + 1,271,1,271,3,271,4877,8,271,1,271,1,271,1,271,3,271,4882,8,271, + 1,271,1,271,3,271,4886,8,271,1,271,1,271,1,271,1,271,3,271,4892, + 8,271,1,271,1,271,3,271,4896,8,271,1,271,1,271,1,271,3,271,4901, + 8,271,1,271,1,271,3,271,4905,8,271,1,271,1,271,1,271,1,271,3,271, + 4911,8,271,1,271,1,271,3,271,4915,8,271,1,271,1,271,1,271,3,271, + 4920,8,271,1,271,1,271,3,271,4924,8,271,1,271,1,271,1,271,3,271, + 4929,8,271,1,271,1,271,3,271,4933,8,271,1,271,1,271,1,271,3,271, + 4938,8,271,1,271,1,271,3,271,4942,8,271,1,271,1,271,1,271,1,271, + 1,271,3,271,4949,8,271,1,271,1,271,3,271,4953,8,271,1,271,1,271, + 1,271,1,271,1,271,3,271,4960,8,271,1,271,1,271,3,271,4964,8,271, + 1,271,1,271,1,271,1,271,1,271,3,271,4971,8,271,1,271,1,271,3,271, + 4975,8,271,1,271,1,271,1,271,1,271,1,271,3,271,4982,8,271,1,271, + 1,271,3,271,4986,8,271,1,271,1,271,1,271,1,271,3,271,4992,8,271, + 1,271,1,271,3,271,4996,8,271,1,271,1,271,1,271,1,271,3,271,5002, + 8,271,1,271,1,271,3,271,5006,8,271,1,271,1,271,1,271,3,271,5011, + 8,271,1,271,1,271,3,271,5015,8,271,1,271,1,271,1,271,1,271,1,271, + 3,271,5022,8,271,1,271,1,271,3,271,5026,8,271,1,271,1,271,3,271, + 5030,8,271,1,271,1,271,3,271,5034,8,271,1,271,1,271,3,271,5038,8, + 271,1,271,1,271,1,271,3,271,5043,8,271,1,271,1,271,3,271,5047,8, + 271,1,271,1,271,1,271,3,271,5052,8,271,1,271,1,271,3,271,5056,8, + 271,1,271,1,271,1,271,3,271,5061,8,271,1,271,1,271,3,271,5065,8, + 271,1,271,1,271,1,271,3,271,5070,8,271,1,271,1,271,1,271,1,271,3, + 271,5076,8,271,1,271,1,271,1,271,3,271,5081,8,271,1,271,1,271,1, + 271,1,271,3,271,5087,8,271,1,271,1,271,1,271,3,271,5092,8,271,1, + 271,1,271,1,271,1,271,3,271,5098,8,271,1,271,1,271,1,271,3,271,5103, + 8,271,1,271,1,271,3,271,5107,8,271,1,271,1,271,1,271,3,271,5112, + 8,271,1,271,1,271,3,271,5116,8,271,1,271,1,271,1,271,1,271,3,271, + 5122,8,271,1,271,1,271,3,271,5126,8,271,1,271,1,271,1,271,3,271, + 5131,8,271,1,271,1,271,1,271,1,271,1,271,1,271,3,271,5139,8,271, + 1,271,1,271,1,271,1,271,3,271,5145,8,271,1,271,1,271,1,271,1,271, + 3,271,5151,8,271,1,271,1,271,1,271,1,271,3,271,5157,8,271,1,271, + 1,271,1,271,1,271,3,271,5163,8,271,1,271,1,271,1,271,1,271,1,271, + 3,271,5170,8,271,1,271,1,271,1,271,3,271,5175,8,271,1,271,1,271, + 3,271,5179,8,271,1,271,1,271,1,271,3,271,5184,8,271,1,271,1,271, + 3,271,5188,8,271,1,271,1,271,1,271,3,271,5193,8,271,1,271,1,271, + 1,271,1,271,3,271,5199,8,271,1,271,1,271,1,271,1,271,1,271,3,271, + 5206,8,271,1,271,1,271,1,271,3,271,5211,8,271,1,271,1,271,1,271, + 1,271,1,271,3,271,5218,8,271,1,271,1,271,1,271,1,271,1,271,1,271, + 1,271,1,271,3,271,5228,8,271,1,271,1,271,3,271,5232,8,271,1,271, + 1,271,1,271,1,271,3,271,5238,8,271,3,271,5240,8,271,1,272,1,272, + 1,272,5,272,5245,8,272,10,272,12,272,5248,9,272,1,273,3,273,5251, + 8,273,1,273,1,273,1,273,3,273,5256,8,273,1,273,1,273,1,273,1,273, 1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273, - 1,273,1,273,3,273,5314,8,273,1,274,1,274,1,275,1,275,1,275,5,275, - 5321,8,275,10,275,12,275,5324,9,275,1,276,1,276,1,276,1,276,1,277, - 1,277,3,277,5332,8,277,1,278,1,278,3,278,5336,8,278,1,279,1,279, - 4,279,5340,8,279,11,279,12,279,5341,1,280,1,280,1,280,5,280,5347, - 8,280,10,280,12,280,5350,9,280,1,281,1,281,3,281,5354,8,281,1,281, - 1,281,1,281,5,281,5359,8,281,10,281,12,281,5362,9,281,1,281,1,281, - 3,281,5366,8,281,1,281,3,281,5369,8,281,1,282,3,282,5372,8,282,1, - 282,1,282,3,282,5376,8,282,1,283,1,283,1,283,1,283,1,283,1,283,1, - 283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,5447,8,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,3,283,5543,8,283,1,284,1,284, - 3,284,5547,8,284,1,285,1,285,1,285,3,285,5552,8,285,1,285,1,285, - 1,285,1,285,1,285,1,285,1,285,1,285,1,285,3,285,5563,8,285,1,285, - 1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,3,285,5574,8,285, - 1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,3,285,5585, - 8,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,3,285, - 5596,8,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285, - 3,285,5607,8,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285, - 1,285,1,285,3,285,5619,8,285,1,285,1,285,1,285,1,285,1,285,1,285, - 1,285,1,285,1,285,3,285,5630,8,285,1,285,1,285,1,285,1,285,1,285, - 1,285,1,285,1,285,1,285,3,285,5641,8,285,1,285,1,285,1,285,1,285, - 1,285,1,285,1,285,1,285,3,285,5651,8,285,1,285,1,285,1,285,1,285, - 1,285,3,285,5658,8,285,1,286,1,286,1,286,1,287,1,287,3,287,5665, - 8,287,1,288,1,288,1,288,1,288,3,288,5671,8,288,1,289,1,289,1,289, - 1,289,1,289,1,289,3,289,5679,8,289,1,289,1,289,1,289,3,289,5684, - 8,289,1,289,1,289,1,289,3,289,5689,8,289,1,289,1,289,1,289,3,289, - 5694,8,289,1,289,1,289,1,289,1,289,3,289,5700,8,289,1,289,1,289, - 1,289,1,289,1,289,3,289,5707,8,289,1,289,1,289,1,289,1,289,3,289, - 5713,8,289,1,289,1,289,1,289,1,289,3,289,5719,8,289,1,289,1,289, - 1,289,3,289,5724,8,289,1,289,1,289,1,289,1,289,3,289,5730,8,289, - 1,289,1,289,1,289,1,289,1,289,3,289,5737,8,289,1,289,1,289,1,289, - 3,289,5742,8,289,1,289,1,289,1,289,1,289,3,289,5748,8,289,1,289, - 1,289,1,289,1,289,1,289,3,289,5755,8,289,1,289,3,289,5758,8,289, - 1,290,1,290,1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,292, - 3,292,5771,8,292,1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293, - 5780,8,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293, - 1,293,3,293,5792,8,293,3,293,5794,8,293,1,294,1,294,1,294,1,294, - 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294, - 1,294,3,294,5812,8,294,1,295,1,295,1,295,5,295,5817,8,295,10,295, - 12,295,5820,9,295,1,296,1,296,1,297,1,297,1,297,5,297,5827,8,297, - 10,297,12,297,5830,9,297,1,298,1,298,3,298,5834,8,298,1,298,1,298, - 3,298,5838,8,298,1,298,1,298,3,298,5842,8,298,1,298,1,298,3,298, - 5846,8,298,3,298,5848,8,298,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,3,299,5908,8,299, - 1,300,1,300,1,300,5,300,5913,8,300,10,300,12,300,5916,9,300,1,301, - 1,301,1,301,3,301,5921,8,301,1,302,1,302,1,302,1,302,1,303,1,303, - 1,303,1,303,1,303,3,303,5932,8,303,1,303,3,303,5935,8,303,1,304, - 1,304,1,304,1,304,1,304,3,304,5942,8,304,1,304,3,304,5945,8,304, - 1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,3,304,5955,8,304, - 1,304,3,304,5958,8,304,3,304,5960,8,304,1,305,1,305,1,305,1,305, - 1,306,1,306,1,306,1,306,1,307,1,307,1,307,1,307,1,307,1,307,1,308, - 5,308,5977,8,308,10,308,12,308,5980,9,308,1,309,1,309,1,309,1,309, - 1,309,1,309,1,309,1,309,1,309,3,309,5991,8,309,1,310,1,310,1,310, - 1,310,1,310,1,310,1,310,3,310,6000,8,310,1,310,1,310,1,310,1,310, - 1,310,1,310,1,310,3,310,6009,8,310,1,310,1,310,1,310,1,310,1,310, - 1,310,1,310,1,310,1,310,1,310,3,310,6021,8,310,3,310,6023,8,310, - 1,311,1,311,1,312,1,312,3,312,6029,8,312,1,312,1,312,3,312,6033, - 8,312,1,312,3,312,6036,8,312,1,312,3,312,6039,8,312,1,312,1,312, - 1,312,3,312,6044,8,312,1,312,1,312,1,312,1,312,3,312,6050,8,312, - 1,312,3,312,6053,8,312,1,312,3,312,6056,8,312,1,312,3,312,6059,8, - 312,1,312,3,312,6062,8,312,1,313,1,313,1,314,1,314,1,315,1,315,1, - 316,1,316,1,316,1,317,1,317,1,317,5,317,6076,8,317,10,317,12,317, - 6079,9,317,1,318,3,318,6082,8,318,1,318,3,318,6085,8,318,1,318,3, - 318,6088,8,318,1,318,3,318,6091,8,318,1,318,3,318,6094,8,318,1,318, - 1,318,1,318,3,318,6099,8,318,1,318,3,318,6102,8,318,3,318,6104,8, - 318,1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,319, - 1,319,3,319,6117,8,319,1,320,1,320,1,320,1,320,1,320,1,321,1,321, - 1,321,5,321,6127,8,321,10,321,12,321,6130,9,321,1,322,1,322,1,322, - 1,323,1,323,1,324,1,324,1,325,1,325,1,325,1,325,3,325,6143,8,325, - 1,326,1,326,3,326,6147,8,326,1,326,1,326,1,326,1,326,3,326,6153, - 8,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,3,326,6163, - 8,326,3,326,6165,8,326,1,326,1,326,1,326,3,326,6170,8,326,1,327, - 1,327,1,327,1,327,5,327,6176,8,327,10,327,12,327,6179,9,327,1,327, - 1,327,1,328,1,328,1,328,1,329,1,329,3,329,6188,8,329,1,329,1,329, - 1,330,1,330,1,330,5,330,6195,8,330,10,330,12,330,6198,9,330,1,331, - 1,331,1,331,5,331,6203,8,331,10,331,12,331,6206,9,331,1,332,1,332, - 1,332,1,332,1,332,1,332,3,332,6214,8,332,3,332,6216,8,332,1,333, - 1,333,1,333,5,333,6221,8,333,10,333,12,333,6224,9,333,1,334,1,334, - 1,334,1,334,1,334,1,334,3,334,6232,8,334,3,334,6234,8,334,1,335, - 1,335,1,335,5,335,6239,8,335,10,335,12,335,6242,9,335,1,336,1,336, - 1,336,1,336,1,336,1,336,3,336,6250,8,336,3,336,6252,8,336,1,337, - 1,337,3,337,6256,8,337,1,337,1,337,1,338,1,338,1,338,5,338,6263, - 8,338,10,338,12,338,6266,9,338,1,339,1,339,3,339,6270,8,339,1,339, - 1,339,1,339,1,339,3,339,6276,8,339,1,339,1,339,1,339,3,339,6281, - 8,339,1,340,1,340,3,340,6285,8,340,1,340,1,340,1,340,3,340,6290, - 8,340,1,341,1,341,1,342,1,342,1,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,1,343,3,343,6308,8,343,1,344,1,344, - 1,344,3,344,6313,8,344,1,345,1,345,1,346,1,346,1,346,1,346,1,346, - 1,346,1,346,1,346,1,346,1,346,1,346,3,346,6328,8,346,1,346,1,346, - 1,347,1,347,1,347,5,347,6335,8,347,10,347,12,347,6338,9,347,1,348, - 1,348,1,348,1,349,1,349,1,349,5,349,6346,8,349,10,349,12,349,6349, - 9,349,1,350,4,350,6352,8,350,11,350,12,350,6353,1,351,1,351,1,351, - 1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351, - 1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351, - 1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,3,351, - 6391,8,351,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352, - 1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,3,352,6411, - 8,352,1,352,1,352,1,352,1,352,1,352,3,352,6418,8,352,1,353,1,353, - 1,353,1,353,1,353,1,353,1,353,5,353,6427,8,353,10,353,12,353,6430, - 9,353,1,354,1,354,1,354,1,355,1,355,1,355,1,356,1,356,1,356,5,356, - 6441,8,356,10,356,12,356,6444,9,356,1,357,1,357,1,357,1,357,3,357, - 6450,8,357,1,358,1,358,1,358,1,358,1,358,1,358,3,358,6458,8,358, - 1,359,4,359,6461,8,359,11,359,12,359,6462,1,360,1,360,1,361,1,361, - 1,361,3,361,6470,8,361,1,361,1,361,3,361,6474,8,361,1,361,1,361, - 1,361,3,361,6479,8,361,1,361,1,361,3,361,6483,8,361,1,361,1,361, - 1,361,3,361,6488,8,361,1,361,1,361,3,361,6492,8,361,3,361,6494,8, - 361,1,362,1,362,1,362,3,362,6499,8,362,1,362,1,362,3,362,6503,8, - 362,1,363,1,363,1,363,3,363,6508,8,363,1,363,1,363,3,363,6512,8, - 363,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364, - 1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364, - 1,364,3,364,6536,8,364,1,365,1,365,1,365,5,365,6541,8,365,10,365, - 12,365,6544,9,365,1,365,1,365,1,366,1,366,1,366,5,366,6551,8,366, - 10,366,12,366,6554,9,366,1,367,1,367,1,367,1,368,1,368,1,368,1,369, - 4,369,6563,8,369,11,369,12,369,6564,1,370,1,370,1,370,3,370,6570, - 8,370,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,3,371,6583,8,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,3,371,6595,8,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,3,371,6607,8,371,3,371,6609,8,371, - 1,372,1,372,1,372,1,372,3,372,6615,8,372,1,373,1,373,1,373,1,374, - 1,374,3,374,6622,8,374,1,374,1,374,1,374,1,374,1,374,1,374,1,374, - 1,374,1,374,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, - 1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, - 1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, - 1,375,1,375,1,375,3,375,6667,8,375,1,376,1,376,1,376,1,376,1,376, + 1,273,3,273,5274,8,273,1,274,1,274,1,274,1,274,1,274,1,274,1,274, + 1,274,1,274,1,274,1,274,1,274,1,274,3,274,5289,8,274,1,274,1,274, + 1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274, + 1,274,1,274,1,274,3,274,5307,8,274,1,275,1,275,1,276,1,276,1,276, + 5,276,5314,8,276,10,276,12,276,5317,9,276,1,277,1,277,1,277,1,277, + 1,278,1,278,3,278,5325,8,278,1,279,1,279,3,279,5329,8,279,1,280, + 1,280,4,280,5333,8,280,11,280,12,280,5334,1,281,1,281,1,281,5,281, + 5340,8,281,10,281,12,281,5343,9,281,1,282,1,282,3,282,5347,8,282, + 1,282,1,282,1,282,5,282,5352,8,282,10,282,12,282,5355,9,282,1,282, + 1,282,3,282,5359,8,282,1,282,3,282,5362,8,282,1,283,3,283,5365,8, + 283,1,283,1,283,3,283,5369,8,283,1,284,1,284,1,284,1,284,1,284,1, + 284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,3,284,5440, + 8,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,3,284,5536,8,284,1,285, + 1,285,3,285,5540,8,285,1,286,1,286,1,286,3,286,5545,8,286,1,286, + 1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,3,286,5556,8,286, + 1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,3,286,5567, + 8,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,3,286, + 5578,8,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286, + 3,286,5589,8,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286, + 1,286,3,286,5600,8,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286, + 1,286,1,286,1,286,3,286,5612,8,286,1,286,1,286,1,286,1,286,1,286, + 1,286,1,286,1,286,1,286,3,286,5623,8,286,1,286,1,286,1,286,1,286, + 1,286,1,286,1,286,1,286,1,286,3,286,5634,8,286,1,286,1,286,1,286, + 1,286,1,286,1,286,1,286,1,286,3,286,5644,8,286,1,286,1,286,1,286, + 1,286,1,286,3,286,5651,8,286,1,287,1,287,1,287,1,288,1,288,3,288, + 5658,8,288,1,289,1,289,1,289,1,289,3,289,5664,8,289,1,290,1,290, + 1,290,1,290,1,290,1,290,3,290,5672,8,290,1,290,1,290,1,290,3,290, + 5677,8,290,1,290,1,290,1,290,3,290,5682,8,290,1,290,1,290,1,290, + 3,290,5687,8,290,1,290,1,290,1,290,1,290,3,290,5693,8,290,1,290, + 1,290,1,290,1,290,1,290,3,290,5700,8,290,1,290,1,290,1,290,1,290, + 3,290,5706,8,290,1,290,1,290,1,290,1,290,3,290,5712,8,290,1,290, + 1,290,1,290,3,290,5717,8,290,1,290,1,290,1,290,1,290,3,290,5723, + 8,290,1,290,1,290,1,290,1,290,1,290,3,290,5730,8,290,1,290,1,290, + 1,290,3,290,5735,8,290,1,290,1,290,1,290,1,290,3,290,5741,8,290, + 1,290,1,290,1,290,1,290,1,290,3,290,5748,8,290,1,290,3,290,5751, + 8,290,1,291,1,291,1,292,1,292,1,293,1,293,1,293,1,293,1,293,1,293, + 1,293,3,293,5764,8,293,1,294,1,294,1,294,1,294,1,294,1,294,1,294, + 3,294,5773,8,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294, + 1,294,1,294,3,294,5785,8,294,3,294,5787,8,294,1,295,1,295,1,295, + 1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295, + 1,295,1,295,3,295,5805,8,295,1,296,1,296,1,296,5,296,5810,8,296, + 10,296,12,296,5813,9,296,1,297,1,297,1,298,1,298,1,298,5,298,5820, + 8,298,10,298,12,298,5823,9,298,1,299,1,299,3,299,5827,8,299,1,299, + 1,299,3,299,5831,8,299,1,299,1,299,3,299,5835,8,299,1,299,1,299, + 3,299,5839,8,299,3,299,5841,8,299,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,3,300,5901, + 8,300,1,301,1,301,1,301,5,301,5906,8,301,10,301,12,301,5909,9,301, + 1,302,1,302,1,302,3,302,5914,8,302,1,303,1,303,1,303,1,303,1,304, + 1,304,1,304,1,304,1,304,3,304,5925,8,304,1,304,3,304,5928,8,304, + 1,305,1,305,1,305,1,305,1,305,3,305,5935,8,305,1,305,3,305,5938, + 8,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,3,305,5948, + 8,305,1,305,3,305,5951,8,305,3,305,5953,8,305,1,306,1,306,1,306, + 1,306,1,307,1,307,1,307,1,307,1,308,1,308,1,308,1,308,1,308,1,308, + 1,309,5,309,5970,8,309,10,309,12,309,5973,9,309,1,310,1,310,1,310, + 1,310,1,310,1,310,1,310,1,310,1,310,3,310,5984,8,310,1,311,1,311, + 1,311,1,311,1,311,1,311,1,311,3,311,5993,8,311,1,311,1,311,1,311, + 1,311,1,311,1,311,1,311,3,311,6002,8,311,1,311,1,311,1,311,1,311, + 1,311,1,311,1,311,1,311,1,311,1,311,3,311,6014,8,311,3,311,6016, + 8,311,1,312,1,312,1,313,1,313,3,313,6022,8,313,1,313,1,313,3,313, + 6026,8,313,1,313,3,313,6029,8,313,1,313,3,313,6032,8,313,1,313,1, + 313,1,313,3,313,6037,8,313,1,313,1,313,1,313,1,313,3,313,6043,8, + 313,1,313,3,313,6046,8,313,1,313,3,313,6049,8,313,1,313,3,313,6052, + 8,313,1,313,3,313,6055,8,313,1,314,1,314,1,315,1,315,1,316,1,316, + 1,317,1,317,1,317,1,318,1,318,1,318,5,318,6069,8,318,10,318,12,318, + 6072,9,318,1,319,3,319,6075,8,319,1,319,3,319,6078,8,319,1,319,3, + 319,6081,8,319,1,319,3,319,6084,8,319,1,319,3,319,6087,8,319,1,319, + 1,319,1,319,3,319,6092,8,319,1,319,3,319,6095,8,319,3,319,6097,8, + 319,1,320,1,320,1,320,1,320,1,320,1,320,1,320,1,320,1,320,1,320, + 1,320,3,320,6110,8,320,1,321,1,321,1,321,1,321,1,321,1,322,1,322, + 1,322,5,322,6120,8,322,10,322,12,322,6123,9,322,1,323,1,323,1,323, + 1,324,1,324,1,325,1,325,1,326,1,326,1,326,1,326,3,326,6136,8,326, + 1,327,1,327,3,327,6140,8,327,1,327,1,327,1,327,1,327,3,327,6146, + 8,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,3,327,6156, + 8,327,3,327,6158,8,327,1,327,1,327,1,327,3,327,6163,8,327,1,328, + 1,328,1,328,1,328,5,328,6169,8,328,10,328,12,328,6172,9,328,1,328, + 1,328,1,329,1,329,1,329,1,330,1,330,3,330,6181,8,330,1,330,1,330, + 1,331,1,331,1,331,5,331,6188,8,331,10,331,12,331,6191,9,331,1,332, + 1,332,1,332,5,332,6196,8,332,10,332,12,332,6199,9,332,1,333,1,333, + 1,333,1,333,1,333,1,333,3,333,6207,8,333,3,333,6209,8,333,1,334, + 1,334,1,334,5,334,6214,8,334,10,334,12,334,6217,9,334,1,335,1,335, + 1,335,1,335,1,335,1,335,3,335,6225,8,335,3,335,6227,8,335,1,336, + 1,336,1,336,5,336,6232,8,336,10,336,12,336,6235,9,336,1,337,1,337, + 1,337,1,337,1,337,1,337,3,337,6243,8,337,3,337,6245,8,337,1,338, + 1,338,3,338,6249,8,338,1,338,1,338,1,339,1,339,1,339,5,339,6256, + 8,339,10,339,12,339,6259,9,339,1,340,1,340,3,340,6263,8,340,1,340, + 1,340,1,340,1,340,3,340,6269,8,340,1,340,1,340,1,340,3,340,6274, + 8,340,1,341,1,341,3,341,6278,8,341,1,341,1,341,1,341,3,341,6283, + 8,341,1,342,1,342,1,343,1,343,1,344,1,344,1,344,1,344,1,344,1,344, + 1,344,1,344,1,344,1,344,1,344,1,344,3,344,6301,8,344,1,345,1,345, + 1,345,3,345,6306,8,345,1,346,1,346,1,347,1,347,1,347,1,347,1,347, + 1,347,1,347,1,347,1,347,1,347,1,347,3,347,6321,8,347,1,347,1,347, + 1,348,1,348,1,348,5,348,6328,8,348,10,348,12,348,6331,9,348,1,349, + 1,349,1,349,1,350,1,350,1,350,5,350,6339,8,350,10,350,12,350,6342, + 9,350,1,351,4,351,6345,8,351,11,351,12,351,6346,1,352,1,352,1,352, + 1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352, + 1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352, + 1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,3,352, + 6384,8,352,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353, + 1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,3,353,6404, + 8,353,1,353,1,353,1,353,1,353,1,353,3,353,6411,8,353,1,354,1,354, + 1,354,1,354,1,354,1,354,1,354,5,354,6420,8,354,10,354,12,354,6423, + 9,354,1,355,1,355,1,355,1,356,1,356,1,356,1,357,1,357,1,357,5,357, + 6434,8,357,10,357,12,357,6437,9,357,1,358,1,358,1,358,1,358,3,358, + 6443,8,358,1,359,1,359,1,359,1,359,1,359,1,359,3,359,6451,8,359, + 1,360,4,360,6454,8,360,11,360,12,360,6455,1,361,1,361,1,362,1,362, + 1,362,3,362,6463,8,362,1,362,1,362,3,362,6467,8,362,1,362,1,362, + 1,362,3,362,6472,8,362,1,362,1,362,3,362,6476,8,362,1,362,1,362, + 1,362,3,362,6481,8,362,1,362,1,362,3,362,6485,8,362,3,362,6487,8, + 362,1,363,1,363,1,363,3,363,6492,8,363,1,363,1,363,3,363,6496,8, + 363,1,364,1,364,1,364,3,364,6501,8,364,1,364,1,364,3,364,6505,8, + 364,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, + 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, + 1,365,3,365,6529,8,365,1,366,1,366,1,366,5,366,6534,8,366,10,366, + 12,366,6537,9,366,1,366,1,366,1,367,1,367,1,367,5,367,6544,8,367, + 10,367,12,367,6547,9,367,1,368,1,368,1,368,1,369,1,369,1,369,1,370, + 4,370,6556,8,370,11,370,12,370,6557,1,371,1,371,1,371,3,371,6563, + 8,371,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372, + 1,372,3,372,6576,8,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372, + 1,372,1,372,1,372,3,372,6588,8,372,1,372,1,372,1,372,1,372,1,372, + 1,372,1,372,1,372,1,372,1,372,3,372,6600,8,372,3,372,6602,8,372, + 1,373,1,373,1,373,1,373,3,373,6608,8,373,1,374,1,374,1,374,1,375, + 1,375,3,375,6615,8,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, + 1,375,1,375,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376, 1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376, - 3,376,6685,8,376,1,377,1,377,3,377,6689,8,377,1,377,1,377,1,377, - 3,377,6694,8,377,1,377,3,377,6697,8,377,1,378,1,378,3,378,6701,8, - 378,1,378,1,378,1,378,3,378,6706,8,378,1,378,1,378,1,378,3,378,6711, - 8,378,1,378,3,378,6714,8,378,1,379,1,379,1,379,5,379,6719,8,379, - 10,379,12,379,6722,9,379,1,380,1,380,1,381,1,381,1,381,1,381,1,381, - 1,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381,6738,8,381,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,3,382,6809,8,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,3,382,6840,8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,3,382,6894,8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,3,382,6904,8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,3,382,6914,8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,3,382,6925,8,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,3,382,6935,8,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,3,382,6946,8,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,3,382,6956,8,382,1,382,1,382,1,382,3,382,6961, - 8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382,6970,8,382, - 1,382,1,382,1,382,3,382,6975,8,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,3,382,6985,8,382,1,382,1,382,1,382,3,382,6990, - 8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382,6999,8,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 3,382,7012,8,382,1,382,1,382,1,382,3,382,7017,8,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382,7129, - 8,382,3,382,7131,8,382,1,383,1,383,1,383,1,384,1,384,1,384,1,384, - 3,384,7140,8,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384, - 1,384,3,384,7151,8,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384, - 1,384,1,384,3,384,7162,8,384,1,384,1,384,1,384,1,384,1,384,1,384, - 1,384,1,384,1,384,1,384,1,384,3,384,7175,8,384,1,384,1,384,1,384, - 1,384,1,384,1,384,1,384,1,384,1,384,1,384,3,384,7187,8,384,1,384, - 1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,3,384,7198,8,384, - 1,384,1,384,1,384,1,384,1,384,3,384,7205,8,384,1,385,1,385,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7295,8,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7348,8,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7358,8,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7369,8,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7380, - 8,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,3,386,7394,8,386,1,387,1,387,1,387,1,387,1,387,1,387, - 1,387,1,387,1,388,1,388,1,388,5,388,7407,8,388,10,388,12,388,7410, - 9,388,1,389,1,389,1,389,1,389,1,389,1,389,1,389,1,389,3,389,7420, - 8,389,1,390,1,390,1,390,1,390,1,390,3,390,7427,8,390,1,391,1,391, - 1,391,1,391,1,391,1,391,1,391,1,391,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,3,392,7481,8,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,3,392,7622,8,392,1,393,1,393,1,393, - 1,393,3,393,7628,8,393,1,393,3,393,7631,8,393,1,394,1,394,1,395, - 1,395,1,395,1,395,1,395,1,395,3,395,7641,8,395,1,396,1,396,1,396, - 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, - 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, - 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, - 1,396,1,396,3,396,7681,8,396,1,397,1,397,1,397,1,397,1,397,1,397, - 1,397,1,397,3,397,7691,8,397,1,398,1,398,1,398,5,398,7696,8,398, - 10,398,12,398,7699,9,398,1,399,1,399,1,400,1,400,1,400,1,400,1,400, - 1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400, - 1,400,1,400,3,400,7721,8,400,1,400,1,400,1,400,1,400,1,400,1,400, - 1,400,3,400,7730,8,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400, - 3,400,7739,8,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,3,400, - 7748,8,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400, - 1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400, - 1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400, - 3,400,7781,8,400,1,401,1,401,3,401,7785,8,401,1,401,1,401,1,401, - 1,401,1,401,1,401,1,401,1,401,3,401,7795,8,401,1,401,1,401,3,401, - 7799,8,401,1,401,1,401,1,402,1,402,1,402,1,402,1,402,1,402,3,402, - 7809,8,402,1,403,3,403,7812,8,403,1,403,1,403,3,403,7816,8,403,5, - 403,7818,8,403,10,403,12,403,7821,9,403,1,404,1,404,1,404,1,404, - 1,404,3,404,7828,8,404,1,405,1,405,1,406,1,406,1,407,1,407,1,408, - 1,408,1,408,3,408,7839,8,408,1,409,1,409,1,409,1,410,1,410,1,410, - 1,411,1,411,1,411,1,411,3,411,7851,8,411,1,412,1,412,3,412,7855, - 8,412,1,412,3,412,7858,8,412,1,412,1,412,3,412,7862,8,412,1,412, - 3,412,7865,8,412,1,412,1,412,1,412,3,412,7870,8,412,1,412,1,412, - 3,412,7874,8,412,1,412,3,412,7877,8,412,1,412,1,412,1,412,1,412, - 3,412,7883,8,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412, - 1,412,3,412,7894,8,412,1,412,3,412,7897,8,412,1,412,1,412,1,412, - 1,412,1,412,3,412,7904,8,412,1,412,1,412,3,412,7908,8,412,1,412, - 1,412,1,412,3,412,7913,8,412,1,412,3,412,7916,8,412,3,412,7918,8, - 412,1,413,1,413,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, - 1,414,1,414,3,414,7932,8,414,1,415,1,415,3,415,7936,8,415,1,415, - 5,415,7939,8,415,10,415,12,415,7942,9,415,1,416,1,416,1,417,1,417, - 3,417,7948,8,417,1,417,1,417,1,418,1,418,1,418,3,418,7955,8,418, - 1,418,3,418,7958,8,418,1,418,1,418,1,418,3,418,7963,8,418,1,418, - 3,418,7966,8,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,3,418, - 7975,8,418,3,418,7977,8,418,1,418,1,418,1,418,3,418,7982,8,418,1, - 419,1,419,3,419,7986,8,419,1,419,1,419,1,419,1,420,1,420,1,420,1, - 421,1,421,1,421,1,421,3,421,7998,8,421,1,421,3,421,8001,8,421,1, - 422,1,422,1,423,4,423,8006,8,423,11,423,12,423,8007,1,424,1,424, - 3,424,8012,8,424,1,424,1,424,1,424,3,424,8017,8,424,1,425,1,425, - 1,425,1,425,1,425,1,425,1,425,1,425,3,425,8027,8,425,1,426,1,426, - 1,427,1,427,1,427,1,427,1,427,1,427,3,427,8037,8,427,1,427,3,427, - 8040,8,427,1,427,3,427,8043,8,427,3,427,8045,8,427,1,428,1,428,1, - 428,1,428,3,428,8051,8,428,1,429,1,429,1,429,5,429,8056,8,429,10, - 429,12,429,8059,9,429,1,430,1,430,1,431,1,431,1,431,1,431,1,431, - 1,431,1,432,1,432,1,432,1,432,1,432,1,433,1,433,1,433,1,433,3,433, - 8078,8,433,1,433,1,433,1,433,1,434,1,434,1,434,1,434,1,434,1,434, - 1,434,1,434,1,434,1,434,1,434,1,434,1,434,1,434,1,434,3,434,8098, - 8,434,1,434,1,434,3,434,8102,8,434,1,434,1,434,1,434,3,434,8107, - 8,434,1,435,1,435,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,437, - 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, - 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, - 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, - 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, - 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, - 1,437,1,437,3,437,8176,8,437,1,437,1,437,1,437,3,437,8181,8,437, - 1,438,1,438,1,439,1,439,3,439,8187,8,439,1,439,1,439,1,439,1,439, - 1,439,1,439,1,439,1,439,1,439,1,440,1,440,3,440,8200,8,440,1,440, - 1,440,3,440,8204,8,440,1,440,1,440,3,440,8208,8,440,1,440,1,440, - 1,440,1,440,3,440,8214,8,440,3,440,8216,8,440,1,441,1,441,1,441, - 1,441,5,441,8222,8,441,10,441,12,441,8225,9,441,1,441,1,441,1,442, - 1,442,1,442,1,443,1,443,3,443,8234,8,443,1,443,3,443,8237,8,443, - 1,443,3,443,8240,8,443,1,443,3,443,8243,8,443,1,443,3,443,8246,8, - 443,1,443,1,443,1,443,1,443,1,443,3,443,8253,8,443,1,443,3,443,8256, - 8,443,3,443,8258,8,443,1,444,1,444,3,444,8262,8,444,1,444,3,444, - 8265,8,444,1,444,1,444,1,444,1,444,1,444,3,444,8272,8,444,3,444, - 8274,8,444,1,445,1,445,1,445,5,445,8279,8,445,10,445,12,445,8282, - 9,445,1,446,1,446,1,447,1,447,3,447,8288,8,447,1,448,1,448,3,448, - 8292,8,448,1,449,1,449,3,449,8296,8,449,1,450,1,450,1,451,1,451, - 1,451,5,451,8303,8,451,10,451,12,451,8306,9,451,1,452,1,452,1,452, - 3,452,8311,8,452,1,453,1,453,3,453,8315,8,453,1,454,1,454,3,454, - 8319,8,454,1,455,1,455,1,455,3,455,8324,8,455,1,456,1,456,1,457, - 1,457,1,458,1,458,1,458,1,458,1,459,1,459,3,459,8336,8,459,1,460, - 1,460,1,460,5,460,8341,8,460,10,460,12,460,8344,9,460,1,461,1,461, - 1,462,1,462,1,462,1,462,1,462,3,462,8353,8,462,1,462,1,462,1,462, - 1,462,1,462,1,462,1,462,1,462,1,462,1,462,1,462,3,462,8366,8,462, - 1,463,1,463,1,463,1,463,1,463,1,463,1,463,1,463,1,463,3,463,8377, - 8,463,1,464,1,464,1,464,5,464,8382,8,464,10,464,12,464,8385,9,464, - 1,465,1,465,3,465,8389,8,465,1,466,1,466,3,466,8393,8,466,1,467, - 1,467,3,467,8397,8,467,1,468,1,468,1,468,3,468,8402,8,468,1,468, - 1,468,1,468,1,469,1,469,1,469,1,469,1,470,1,470,1,470,1,470,3,470, - 8415,8,470,1,471,1,471,1,471,3,471,8420,8,471,1,471,1,471,3,471, - 8424,8,471,1,471,1,471,3,471,8428,8,471,1,471,1,471,1,471,1,471, - 1,471,3,471,8435,8,471,1,471,3,471,8438,8,471,3,471,8440,8,471,1, - 472,1,472,1,472,1,472,1,473,1,473,3,473,8448,8,473,1,473,1,473,3, - 473,8452,8,473,1,474,3,474,8455,8,474,1,474,1,474,1,474,1,474,1, - 474,3,474,8462,8,474,1,474,3,474,8465,8,474,1,475,1,475,1,475,3, - 475,8470,8,475,1,476,1,476,1,476,1,476,3,476,8476,8,476,1,476,1, - 476,1,476,1,476,3,476,8482,8,476,1,476,1,476,3,476,8486,8,476,1, - 477,1,477,1,478,1,478,1,478,5,478,8493,8,478,10,478,12,478,8496, - 9,478,1,479,1,479,1,479,1,480,1,480,1,480,3,480,8504,8,480,1,480, - 1,480,1,480,1,480,1,480,3,480,8511,8,480,1,480,3,480,8514,8,480, - 1,481,1,481,1,481,1,481,3,481,8520,8,481,1,481,1,481,1,481,3,481, - 8525,8,481,1,482,1,482,1,482,1,483,3,483,8531,8,483,1,483,1,483, - 1,483,1,483,3,483,8537,8,483,1,483,3,483,8540,8,483,1,483,3,483, - 8543,8,483,1,484,1,484,1,484,1,485,1,485,3,485,8550,8,485,1,485, - 1,485,3,485,8554,8,485,1,485,3,485,8557,8,485,1,486,1,486,1,486, - 1,486,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,3,487, - 8572,8,487,1,487,3,487,8575,8,487,1,488,1,488,1,489,1,489,1,489, - 3,489,8582,8,489,1,490,3,490,8585,8,490,1,490,1,490,1,490,1,490, - 1,490,3,490,8592,8,490,1,490,3,490,8595,8,490,1,490,3,490,8598,8, - 490,1,491,1,491,1,491,5,491,8603,8,491,10,491,12,491,8606,9,491, - 1,492,1,492,1,492,1,492,1,492,1,492,1,492,1,492,1,492,3,492,8617, - 8,492,1,492,1,492,1,492,1,492,1,492,3,492,8624,8,492,3,492,8626, - 8,492,1,493,1,493,1,493,1,494,1,494,1,494,5,494,8634,8,494,10,494, - 12,494,8637,9,494,1,495,1,495,1,495,1,495,1,495,1,495,1,495,1,495, - 1,496,1,496,1,497,1,497,1,497,1,497,1,497,5,497,8654,8,497,10,497, - 12,497,8657,9,497,1,498,1,498,1,498,1,498,1,498,3,498,8664,8,498, - 1,499,1,499,3,499,8668,8,499,1,500,1,500,1,500,1,500,1,500,1,500, - 1,500,1,500,3,500,8678,8,500,1,501,1,501,3,501,8682,8,501,1,501, - 1,501,3,501,8686,8,501,1,501,1,501,3,501,8690,8,501,3,501,8692,8, - 501,1,501,1,501,1,501,3,501,8697,8,501,1,501,1,501,3,501,8701,8, - 501,1,501,1,501,3,501,8705,8,501,3,501,8707,8,501,3,501,8709,8,501, - 1,502,1,502,3,502,8713,8,502,1,503,1,503,3,503,8717,8,503,1,503, - 3,503,8720,8,503,1,503,3,503,8723,8,503,1,503,3,503,8726,8,503,1, - 503,3,503,8729,8,503,3,503,8731,8,503,1,503,3,503,8734,8,503,1,503, - 3,503,8737,8,503,1,503,3,503,8740,8,503,1,503,3,503,8743,8,503,1, - 503,3,503,8746,8,503,1,503,3,503,8749,8,503,1,503,1,503,1,503,1, - 503,1,503,1,503,1,503,3,503,8758,8,503,3,503,8760,8,503,1,503,1, - 503,1,503,3,503,8765,8,503,5,503,8767,8,503,10,503,12,503,8770,9, - 503,1,504,1,504,1,504,3,504,8775,8,504,1,505,1,505,3,505,8779,8, - 505,1,506,1,506,3,506,8783,8,506,1,506,1,506,1,507,1,507,1,507,5, - 507,8790,8,507,10,507,12,507,8793,9,507,1,508,1,508,3,508,8797,8, - 508,1,508,1,508,3,508,8801,8,508,1,508,1,508,1,508,1,508,3,508,8807, - 8,508,1,508,3,508,8810,8,508,1,509,1,509,1,509,1,509,1,509,1,509, - 1,509,1,509,1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,510, - 3,510,8829,8,510,1,510,1,510,1,510,1,511,1,511,1,511,3,511,8837, - 8,511,1,512,1,512,1,513,1,513,1,513,1,513,1,513,3,513,8846,8,513, - 1,514,1,514,3,514,8850,8,514,1,515,3,515,8853,8,515,1,515,1,515, - 3,515,8857,8,515,1,515,1,515,1,515,3,515,8862,8,515,1,515,1,515, - 1,515,1,515,3,515,8868,8,515,1,516,1,516,1,517,1,517,1,518,1,518, - 1,518,1,518,1,518,1,518,3,518,8880,8,518,1,519,1,519,1,520,1,520, - 1,521,1,521,1,521,1,521,1,522,1,522,1,522,5,522,8893,8,522,10,522, - 12,522,8896,9,522,1,523,1,523,1,523,1,523,3,523,8902,8,523,1,523, - 3,523,8905,8,523,1,524,1,524,3,524,8909,8,524,1,524,1,524,3,524, - 8913,8,524,1,524,1,524,3,524,8917,8,524,3,524,8919,8,524,1,525,1, - 525,1,526,1,526,1,526,1,526,3,526,8927,8,526,1,527,1,527,1,527,1, - 527,1,527,1,527,1,527,3,527,8936,8,527,1,527,1,527,1,527,1,527,3, - 527,8942,8,527,3,527,8944,8,527,1,528,1,528,1,528,1,528,1,528,3, - 528,8951,8,528,1,529,1,529,3,529,8955,8,529,1,530,1,530,1,531,1, - 531,1,531,1,531,1,531,3,531,8964,8,531,1,532,1,532,3,532,8968,8, - 532,1,533,1,533,1,534,1,534,1,535,1,535,1,535,3,535,8977,8,535,1, - 535,1,535,1,536,1,536,1,536,5,536,8984,8,536,10,536,12,536,8987, - 9,536,1,537,1,537,1,537,1,537,1,537,1,537,1,537,1,537,1,537,3,537, - 8998,8,537,1,538,1,538,1,538,1,539,1,539,1,539,1,539,1,539,1,540, - 1,540,1,540,1,540,1,540,1,541,1,541,1,541,1,541,1,541,1,541,1,542, - 1,542,1,542,1,543,1,543,1,543,1,543,3,543,9026,8,543,1,544,1,544, - 1,545,4,545,9031,8,545,11,545,12,545,9032,1,546,1,546,3,546,9037, - 8,546,1,546,3,546,9040,8,546,1,547,1,547,1,547,3,547,9045,8,547, - 1,547,1,547,3,547,9049,8,547,1,547,3,547,9052,8,547,1,548,1,548, - 1,548,1,549,1,549,1,549,1,549,1,549,1,549,1,549,1,549,1,549,5,549, - 9066,8,549,10,549,12,549,9069,9,549,1,550,1,550,1,550,1,551,1,551, - 1,551,5,551,9077,8,551,10,551,12,551,9080,9,551,1,552,1,552,3,552, - 9084,8,552,1,552,3,552,9087,8,552,1,552,3,552,9090,8,552,1,552,1, - 552,3,552,9094,8,552,1,552,1,552,3,552,9098,8,552,1,552,1,552,3, - 552,9102,8,552,1,552,1,552,1,552,3,552,9107,8,552,1,552,1,552,3, - 552,9111,8,552,1,552,1,552,3,552,9115,8,552,3,552,9117,8,552,1,552, - 1,552,1,552,1,552,1,552,1,552,1,552,3,552,9126,8,552,1,552,1,552, - 1,552,3,552,9131,8,552,1,552,1,552,1,552,1,552,3,552,9137,8,552, - 1,552,1,552,3,552,9141,8,552,3,552,9143,8,552,1,552,1,552,1,552, - 1,552,1,552,3,552,9150,8,552,1,552,1,552,1,552,3,552,9155,8,552, - 1,552,1,552,1,552,1,552,5,552,9161,8,552,10,552,12,552,9164,9,552, - 1,553,3,553,9167,8,553,1,553,1,553,1,553,1,553,1,553,3,553,9174, - 8,553,1,554,1,554,1,555,1,555,1,555,3,555,9181,8,555,1,555,3,555, - 9184,8,555,1,555,1,555,1,555,1,555,3,555,9190,8,555,1,556,1,556, - 3,556,9194,8,556,1,557,1,557,1,557,1,557,1,557,1,557,1,557,3,557, - 9203,8,557,1,558,3,558,9206,8,558,1,558,1,558,3,558,9210,8,558,1, - 558,1,558,1,558,1,558,1,558,1,558,3,558,9218,8,558,1,558,1,558,1, - 558,1,558,3,558,9224,8,558,3,558,9226,8,558,1,559,3,559,9229,8,559, - 1,559,1,559,3,559,9233,8,559,1,560,1,560,3,560,9237,8,560,1,560, - 1,560,3,560,9241,8,560,1,560,1,560,1,560,1,560,3,560,9247,8,560, - 1,560,3,560,9250,8,560,1,560,1,560,1,560,1,560,1,560,1,560,1,560, - 3,560,9259,8,560,1,560,1,560,1,560,1,560,1,560,3,560,9266,8,560, - 3,560,9268,8,560,1,561,1,561,1,561,5,561,9273,8,561,10,561,12,561, - 9276,9,561,1,562,1,562,1,562,5,562,9281,8,562,10,562,12,562,9284, - 9,562,1,563,1,563,3,563,9288,8,563,1,563,3,563,9291,8,563,1,564, - 1,564,1,564,1,564,1,564,1,564,3,564,9299,8,564,1,565,1,565,1,565, - 1,565,1,565,1,566,1,566,3,566,9308,8,566,1,566,1,566,1,566,1,566, - 1,566,1,566,3,566,9316,8,566,3,566,9318,8,566,1,567,1,567,3,567, - 9322,8,567,1,568,1,568,1,568,5,568,9327,8,568,10,568,12,568,9330, - 9,568,1,569,1,569,1,569,1,569,1,569,1,570,1,570,1,570,1,571,1,571, - 1,571,1,572,1,572,1,572,1,572,1,572,3,572,9348,8,572,1,573,1,573, - 1,574,1,574,1,574,5,574,9355,8,574,10,574,12,574,9358,9,574,1,575, - 1,575,1,575,3,575,9363,8,575,1,576,1,576,1,576,1,576,1,576,1,576, - 1,576,1,576,1,576,1,576,1,576,1,576,1,576,1,576,1,576,1,576,1,576, - 3,576,9382,8,576,1,576,1,576,1,577,1,577,1,577,5,577,9389,8,577, - 10,577,12,577,9392,9,577,1,578,1,578,1,578,3,578,9397,8,578,1,578, - 1,578,3,578,9401,8,578,1,579,4,579,9404,8,579,11,579,12,579,9405, - 1,580,1,580,1,580,1,580,1,580,1,580,1,580,1,580,3,580,9416,8,580, - 1,581,1,581,1,581,5,581,9421,8,581,10,581,12,581,9424,9,581,1,582, - 1,582,1,582,1,582,1,582,1,582,3,582,9432,8,582,1,583,3,583,9435, - 8,583,1,583,1,583,1,583,1,583,1,583,1,583,1,583,3,583,9444,8,583, - 3,583,9446,8,583,1,583,1,583,1,583,1,583,3,583,9452,8,583,1,584, - 1,584,3,584,9456,8,584,1,584,5,584,9459,8,584,10,584,12,584,9462, - 9,584,1,585,1,585,1,585,1,585,1,585,1,585,1,585,3,585,9471,8,585, - 1,585,1,585,1,585,1,585,3,585,9477,8,585,3,585,9479,8,585,1,586, - 1,586,1,586,1,586,3,586,9485,8,586,1,587,1,587,3,587,9489,8,587, - 1,587,3,587,9492,8,587,1,588,1,588,1,588,1,588,1,589,1,589,1,589, - 1,589,1,589,1,589,1,589,3,589,9505,8,589,1,589,1,589,1,589,1,589, - 3,589,9511,8,589,1,589,1,589,3,589,9515,8,589,1,589,1,589,3,589, - 9519,8,589,1,589,3,589,9522,8,589,1,590,1,590,1,590,1,590,1,591, - 1,591,3,591,9530,8,591,1,592,1,592,3,592,9534,8,592,1,593,1,593, - 3,593,9538,8,593,1,593,1,593,1,593,1,593,1,594,1,594,3,594,9546, - 8,594,1,595,1,595,1,595,1,595,1,595,3,595,9553,8,595,1,596,1,596, - 1,596,1,596,1,596,3,596,9560,8,596,1,597,1,597,3,597,9564,8,597, - 1,597,1,597,1,597,1,597,3,597,9570,8,597,3,597,9572,8,597,1,598, - 1,598,1,599,1,599,1,599,1,599,1,599,3,599,9581,8,599,1,599,3,599, - 9584,8,599,1,600,1,600,1,601,1,601,1,601,1,601,1,601,1,601,3,601, - 9594,8,601,1,602,1,602,1,602,1,602,1,602,1,602,1,602,1,602,1,602, - 1,602,1,602,1,602,1,602,1,602,3,602,9610,8,602,1,602,1,602,1,602, - 1,602,3,602,9616,8,602,1,602,1,602,1,602,3,602,9621,8,602,1,603, - 1,603,1,603,1,603,1,603,3,603,9628,8,603,1,604,1,604,1,604,1,605, - 1,605,1,606,1,606,3,606,9637,8,606,1,607,1,607,1,607,5,607,9642, - 8,607,10,607,12,607,9645,9,607,1,608,1,608,1,608,5,608,9650,8,608, - 10,608,12,608,9653,9,608,1,609,1,609,1,609,5,609,9658,8,609,10,609, - 12,609,9661,9,609,1,610,1,610,3,610,9665,8,610,1,610,1,610,3,610, - 9669,8,610,1,611,3,611,9672,8,611,1,611,1,611,1,612,1,612,3,612, - 9678,8,612,1,613,1,613,1,613,3,613,9683,8,613,1,613,1,613,1,613, - 1,613,1,613,1,613,1,613,1,613,1,613,1,613,1,613,1,613,1,613,1,613, - 3,613,9699,8,613,1,613,3,613,9702,8,613,3,613,9704,8,613,1,614,1, - 614,1,614,1,614,1,614,1,614,1,614,1,614,1,614,1,614,3,614,9716,8, - 614,3,614,9718,8,614,1,615,1,615,3,615,9722,8,615,1,615,1,615,1, - 615,1,615,1,615,1,615,3,615,9730,8,615,3,615,9732,8,615,1,615,1, - 615,3,615,9736,8,615,3,615,9738,8,615,1,616,1,616,1,616,1,616,5, - 616,9744,8,616,10,616,12,616,9747,9,616,1,617,3,617,9750,8,617,1, - 617,1,617,1,618,1,618,1,618,5,618,9757,8,618,10,618,12,618,9760, - 9,618,1,619,1,619,1,619,5,619,9765,8,619,10,619,12,619,9768,9,619, - 1,620,1,620,1,620,3,620,9773,8,620,1,621,3,621,9776,8,621,1,621, - 1,621,1,622,1,622,1,622,1,622,1,622,3,622,9785,8,622,1,623,1,623, - 1,623,3,623,9790,8,623,1,624,1,624,1,624,5,624,9795,8,624,10,624, - 12,624,9798,9,624,1,625,1,625,1,625,1,625,1,625,1,625,1,625,3,625, - 9807,8,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625, - 1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625, - 1,625,1,625,1,625,1,625,3,625,9833,8,625,1,625,1,625,1,625,1,625, - 1,625,1,625,1,625,1,625,1,625,3,625,9844,8,625,5,625,9846,8,625, - 10,625,12,625,9849,9,625,1,626,1,626,1,626,1,626,1,626,3,626,9856, - 8,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626, - 1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,3,626, - 9878,8,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,3,626,9887, - 8,626,1,627,1,627,1,628,1,628,1,628,1,628,1,628,1,628,3,628,9897, - 8,628,1,628,3,628,9900,8,628,1,628,1,628,1,628,3,628,9905,8,628, - 1,628,1,628,1,628,3,628,9910,8,628,1,628,1,628,3,628,9914,8,628, - 1,628,3,628,9917,8,628,1,629,1,629,3,629,9921,8,629,1,629,3,629, - 9924,8,629,1,629,3,629,9927,8,629,1,629,3,629,9930,8,629,1,630,1, - 630,3,630,9934,8,630,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1, - 631,1,631,1,631,1,631,1,631,3,631,9948,8,631,1,631,1,631,1,631,1, - 631,1,631,3,631,9955,8,631,1,631,1,631,1,631,1,631,1,631,3,631,9962, - 8,631,1,631,1,631,1,631,1,631,1,631,3,631,9969,8,631,1,631,1,631, - 1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, - 1,631,1,631,1,631,3,631,9987,8,631,1,631,1,631,1,631,1,631,1,631, - 1,631,3,631,9995,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, - 1,631,1,631,1,631,3,631,10007,8,631,1,631,1,631,1,631,1,631,3,631, - 10013,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, - 1,631,1,631,3,631,10026,8,631,1,631,1,631,1,631,1,631,1,631,1,631, - 1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, - 1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, - 1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,3,631,10065, - 8,631,3,631,10067,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, - 1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, - 3,631,10087,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, - 3,631,10097,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, - 1,631,3,631,10108,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, - 1,631,1,631,1,631,3,631,10120,8,631,1,632,1,632,1,632,1,632,1,632, - 3,632,10127,8,632,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,3,633,10139,8,633,1,634,1,634,1,634,1,634,1,634,1,635, - 1,635,1,635,5,635,10149,8,635,10,635,12,635,10152,9,635,1,636,1, - 636,1,636,3,636,10157,8,636,1,637,1,637,1,638,1,638,1,638,1,638, - 3,638,10165,8,638,1,639,1,639,1,639,1,639,1,639,1,639,1,639,1,639, - 1,639,1,639,1,639,1,639,1,639,1,639,1,639,3,639,10182,8,639,1,640, - 1,640,1,640,1,641,1,641,1,641,1,641,1,641,1,641,1,642,1,642,1,642, - 1,642,1,642,1,642,1,643,1,643,1,643,1,644,1,644,1,644,5,644,10205, - 8,644,10,644,12,644,10208,9,644,1,645,1,645,1,645,1,645,1,646,1, - 646,1,646,3,646,10217,8,646,1,647,1,647,3,647,10221,8,647,1,647, - 3,647,10224,8,647,1,647,3,647,10227,8,647,1,647,3,647,10230,8,647, - 1,647,1,647,1,648,1,648,1,649,1,649,1,649,1,649,1,650,1,650,1,650, - 3,650,10243,8,650,1,650,1,650,1,650,3,650,10248,8,650,1,650,1,650, - 1,650,3,650,10253,8,650,3,650,10255,8,650,1,651,1,651,1,651,1,651, - 1,651,1,651,3,651,10263,8,651,1,652,1,652,1,652,1,652,1,652,1,652, - 1,652,3,652,10272,8,652,1,653,1,653,1,653,1,653,1,653,1,653,1,653, - 3,653,10281,8,653,1,654,1,654,1,654,3,654,10286,8,654,1,654,1,654, - 1,654,1,654,1,654,1,654,1,654,3,654,10295,8,654,1,655,1,655,1,655, - 3,655,10300,8,655,1,655,1,655,1,656,1,656,1,656,1,656,1,656,1,656, - 1,657,1,657,1,658,1,658,3,658,10314,8,658,1,659,1,659,1,660,1,660, - 1,660,1,660,1,660,1,660,3,660,10324,8,660,1,661,1,661,1,661,1,661, - 1,661,1,661,3,661,10332,8,661,1,662,1,662,1,662,1,662,1,662,1,662, - 1,662,1,662,1,662,1,662,1,662,1,662,3,662,10346,8,662,1,663,1,663, - 1,663,5,663,10351,8,663,10,663,12,663,10354,9,663,1,664,1,664,1, - 664,5,664,10359,8,664,10,664,12,664,10362,9,664,1,665,1,665,1,665, - 5,665,10367,8,665,10,665,12,665,10370,9,665,1,666,1,666,1,666,1, - 666,1,666,3,666,10377,8,666,1,667,1,667,3,667,10381,8,667,1,668, - 1,668,1,668,5,668,10386,8,668,10,668,12,668,10389,9,668,1,669,1, - 669,1,669,1,669,1,669,3,669,10396,8,669,1,670,1,670,1,670,5,670, - 10401,8,670,10,670,12,670,10404,9,670,1,671,1,671,1,671,3,671,10409, - 8,671,1,671,1,671,1,672,1,672,1,672,5,672,10416,8,672,10,672,12, - 672,10419,9,672,1,673,1,673,1,673,1,673,1,674,1,674,1,674,1,674, - 1,674,1,674,1,674,1,674,3,674,10433,8,674,1,675,1,675,1,676,1,676, - 1,676,1,676,1,676,1,676,1,676,3,676,10444,8,676,1,677,1,677,1,677, - 1,677,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678, - 1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678, - 1,678,1,678,1,678,1,678,1,678,1,678,3,678,10477,8,678,1,679,1,679, - 1,679,1,679,1,679,1,679,1,679,3,679,10486,8,679,1,680,1,680,1,680, - 1,680,1,680,3,680,10493,8,680,1,681,1,681,3,681,10497,8,681,1,681, - 1,681,3,681,10501,8,681,1,681,1,681,1,682,4,682,10506,8,682,11,682, - 12,682,10507,1,683,1,683,1,683,1,683,1,683,1,684,1,684,1,684,1,685, - 1,685,1,686,1,686,3,686,10522,8,686,1,687,1,687,1,687,3,687,10527, - 8,687,1,687,1,687,1,687,3,687,10532,8,687,1,687,1,687,3,687,10536, - 8,687,3,687,10538,8,687,1,687,3,687,10541,8,687,1,688,1,688,1,689, - 4,689,10546,8,689,11,689,12,689,10547,1,690,5,690,10551,8,690,10, - 690,12,690,10554,9,690,1,691,1,691,1,692,1,692,1,692,5,692,10561, - 8,692,10,692,12,692,10564,9,692,1,693,1,693,1,693,1,693,1,693,3, - 693,10571,8,693,1,693,3,693,10574,8,693,1,694,1,694,1,694,5,694, - 10579,8,694,10,694,12,694,10582,9,694,1,695,1,695,1,695,5,695,10587, - 8,695,10,695,12,695,10590,9,695,1,696,1,696,1,696,5,696,10595,8, - 696,10,696,12,696,10598,9,696,1,697,1,697,1,697,5,697,10603,8,697, - 10,697,12,697,10606,9,697,1,698,1,698,1,698,5,698,10611,8,698,10, - 698,12,698,10614,9,698,1,699,1,699,3,699,10618,8,699,1,700,1,700, - 3,700,10622,8,700,1,701,1,701,3,701,10626,8,701,1,702,1,702,3,702, - 10630,8,702,1,703,1,703,3,703,10634,8,703,1,704,1,704,3,704,10638, - 8,704,1,705,1,705,3,705,10642,8,705,1,706,1,706,1,706,5,706,10647, - 8,706,10,706,12,706,10650,9,706,1,707,1,707,1,707,5,707,10655,8, - 707,10,707,12,707,10658,9,707,1,708,1,708,3,708,10662,8,708,1,709, - 1,709,3,709,10666,8,709,1,710,1,710,3,710,10670,8,710,1,711,1,711, - 1,712,1,712,1,713,1,713,1,713,1,713,3,713,10680,8,713,1,714,1,714, - 1,714,1,714,3,714,10686,8,714,1,715,1,715,5,715,10690,8,715,10,715, - 12,715,10693,9,715,1,716,1,716,1,717,1,717,1,718,1,718,1,719,1,719, - 1,720,1,720,1,720,1,720,3,720,10707,8,720,1,721,1,721,1,721,1,721, - 3,721,10713,8,721,1,722,1,722,1,722,1,722,3,722,10719,8,722,1,723, - 1,723,1,723,1,723,1,723,1,723,1,723,1,723,1,723,1,723,3,723,10731, - 8,723,1,723,1,723,1,723,3,723,10736,8,723,1,723,1,723,1,723,1,723, - 1,723,1,723,3,723,10744,8,723,1,723,1,723,1,723,1,723,1,723,3,723, - 10751,8,723,1,723,1,723,1,723,3,723,10756,8,723,1,724,1,724,1,725, - 1,725,1,726,1,726,1,727,1,727,1,728,1,728,3,728,10768,8,728,1,729, - 1,729,1,729,1,729,5,729,10774,8,729,10,729,12,729,10777,9,729,1, - 729,1,729,3,729,10781,8,729,1,730,1,730,1,730,1,731,1,731,1,731, - 1,731,1,731,3,731,10791,8,731,1,732,1,732,1,733,1,733,1,734,1,734, - 1,734,1,734,1,734,3,734,10802,8,734,1,735,1,735,1,735,5,735,10807, - 8,735,10,735,12,735,10810,9,735,1,736,1,736,1,736,1,736,3,736,10816, - 8,736,1,737,1,737,1,738,1,738,1,738,1,738,1,738,1,738,1,738,3,738, - 10827,8,738,1,738,3,738,10830,8,738,3,738,10832,8,738,1,739,1,739, - 3,739,10836,8,739,1,739,3,739,10839,8,739,1,740,1,740,1,740,1,740, - 3,740,10845,8,740,1,741,1,741,1,741,1,741,3,741,10851,8,741,1,742, - 1,742,3,742,10855,8,742,1,743,1,743,1,743,1,743,3,743,10861,8,743, - 1,744,1,744,1,744,1,744,1,744,1,744,3,744,10869,8,744,1,745,1,745, - 3,745,10873,8,745,1,745,1,745,1,745,1,745,1,745,1,745,3,745,10881, - 8,745,1,746,1,746,1,747,1,747,1,748,1,748,1,748,1,748,1,748,1,748, - 1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748, - 1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748, - 1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748, - 1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748, - 1,748,3,748,10938,8,748,1,749,1,749,1,750,1,750,1,751,1,751,1,751, - 1,751,1,752,5,752,10949,8,752,10,752,12,752,10952,9,752,1,753,1, - 753,1,753,1,753,1,753,1,753,1,753,1,753,1,753,1,753,1,753,1,753, - 1,753,1,753,1,753,1,753,1,753,1,753,1,753,1,753,3,753,10974,8,753, - 1,754,1,754,1,755,1,755,1,755,1,755,3,755,10982,8,755,1,756,1,756, - 3,756,10986,8,756,1,757,1,757,1,757,1,757,1,757,1,757,1,757,1,758, - 1,758,1,758,3,758,10998,8,758,3,758,11000,8,758,1,759,1,759,1,760, - 4,760,11005,8,760,11,760,12,760,11006,1,761,1,761,1,761,1,761,1, - 762,1,762,1,762,3,762,11016,8,762,1,763,1,763,1,763,1,763,1,763, - 1,763,1,763,1,763,1,763,1,763,1,763,1,763,1,763,1,763,1,763,1,763, - 3,763,11034,8,763,1,763,1,763,1,764,1,764,1,764,1,764,3,764,11042, - 8,764,1,765,1,765,1,766,1,766,1,766,1,766,1,766,3,766,11051,8,766, - 1,767,1,767,1,767,5,767,11056,8,767,10,767,12,767,11059,9,767,1, - 768,1,768,1,768,1,769,1,769,1,770,1,770,3,770,11068,8,770,1,771, - 1,771,1,772,1,772,3,772,11074,8,772,1,773,1,773,1,774,1,774,1,774, - 3,774,11081,8,774,1,775,1,775,1,775,3,775,11086,8,775,1,776,1,776, - 1,776,1,776,3,776,11092,8,776,1,777,1,777,3,777,11096,8,777,1,778, - 1,778,1,779,5,779,11101,8,779,10,779,12,779,11104,9,779,1,780,1, - 780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780, - 1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780, - 1,780,1,780,1,780,1,780,3,780,11133,8,780,1,781,1,781,1,781,1,781, - 1,782,1,782,1,782,1,782,1,782,1,782,1,782,3,782,11146,8,782,1,782, - 1,782,1,782,1,782,1,782,1,782,1,782,3,782,11155,8,782,1,783,1,783, - 3,783,11159,8,783,1,784,1,784,1,784,1,784,1,784,1,785,1,785,1,785, - 1,785,1,785,1,785,1,786,1,786,1,786,3,786,11175,8,786,1,787,1,787, - 1,787,5,787,11180,8,787,10,787,12,787,11183,9,787,1,788,1,788,1, - 788,1,788,1,789,1,789,1,790,1,790,1,791,1,791,3,791,11195,8,791, - 1,791,1,791,1,791,1,791,5,791,11201,8,791,10,791,12,791,11204,9, - 791,1,792,1,792,1,792,1,792,1,792,1,792,1,792,1,792,1,792,1,792, - 1,793,1,793,1,793,1,793,1,793,5,793,11221,8,793,10,793,12,793,11224, - 9,793,1,794,1,794,1,794,3,794,11229,8,794,1,795,1,795,1,795,1,795, - 1,795,1,795,1,795,1,795,1,796,1,796,3,796,11241,8,796,1,797,4,797, - 11244,8,797,11,797,12,797,11245,1,798,1,798,1,798,1,798,1,798,1, - 799,1,799,1,799,3,799,11256,8,799,1,800,1,800,1,800,1,801,1,801, - 1,801,1,801,1,801,1,802,1,802,1,802,1,802,1,802,1,803,1,803,1,803, - 1,803,1,803,1,803,1,803,1,803,1,803,1,803,1,803,1,803,1,803,1,803, - 1,803,1,803,1,803,3,803,11288,8,803,1,804,1,804,1,804,3,804,11293, - 8,804,1,805,1,805,1,805,1,805,1,805,5,805,11300,8,805,10,805,12, - 805,11303,9,805,1,805,1,805,3,805,11307,8,805,1,806,1,806,3,806, - 11311,8,806,1,807,1,807,1,807,3,807,11316,8,807,1,808,1,808,1,809, - 1,809,1,809,1,809,1,809,1,809,1,809,1,809,1,809,1,810,1,810,1,810, - 3,810,11332,8,810,1,811,1,811,1,811,3,811,11337,8,811,1,811,1,811, - 1,812,1,812,1,813,1,813,1,813,1,813,1,813,1,813,1,813,1,813,1,813, - 3,813,11352,8,813,1,813,3,813,11355,8,813,1,813,1,813,1,814,1,814, - 3,814,11361,8,814,1,815,1,815,3,815,11365,8,815,1,815,1,815,1,815, - 1,815,1,815,1,815,1,815,3,815,11374,8,815,1,815,1,815,1,815,1,815, - 1,815,1,815,3,815,11382,8,815,1,815,1,815,1,815,1,815,1,815,1,815, - 1,815,3,815,11391,8,815,1,815,1,815,1,815,1,815,3,815,11397,8,815, - 1,816,1,816,1,817,1,817,1,817,4,817,11404,8,817,11,817,12,817,11405, - 3,817,11408,8,817,1,818,1,818,1,818,3,818,11413,8,818,1,819,1,819, - 1,819,1,819,1,820,1,820,1,820,5,820,11422,8,820,10,820,12,820,11425, - 9,820,1,821,1,821,1,821,1,821,1,821,1,822,1,822,1,822,3,822,11435, - 8,822,1,823,1,823,1,823,1,823,1,823,1,823,1,823,1,824,1,824,1,824, - 1,825,1,825,1,825,1,825,1,825,1,825,1,825,1,825,1,825,3,825,11456, - 8,825,1,825,1,825,1,826,1,826,1,826,3,826,11463,8,826,1,827,1,827, - 1,827,5,827,11468,8,827,10,827,12,827,11471,9,827,1,828,1,828,1, - 828,3,828,11476,8,828,1,828,3,828,11479,8,828,1,829,1,829,1,829, - 1,829,1,829,1,829,1,829,1,829,1,829,3,829,11490,8,829,1,829,1,829, - 1,829,1,829,1,829,3,829,11497,8,829,3,829,11499,8,829,1,829,1,829, - 1,830,1,830,1,830,1,830,1,830,3,830,11508,8,830,1,831,1,831,1,831, - 5,831,11513,8,831,10,831,12,831,11516,9,831,1,832,1,832,1,832,3, - 832,11521,8,832,1,833,1,833,1,833,1,833,3,833,11527,8,833,1,834, - 1,834,3,834,11531,8,834,1,835,1,835,3,835,11535,8,835,1,835,1,835, - 1,835,1,835,1,835,1,835,1,836,1,836,1,837,1,837,1,837,3,837,11548, - 8,837,1,838,1,838,1,838,1,838,1,838,1,838,1,838,1,838,1,838,1,838, - 1,838,1,838,1,838,3,838,11563,8,838,3,838,11565,8,838,1,839,1,839, - 3,839,11569,8,839,1,839,1,839,1,839,1,840,3,840,11575,8,840,1,840, - 1,840,1,840,3,840,11580,8,840,1,840,1,840,3,840,11584,8,840,1,840, - 3,840,11587,8,840,1,840,3,840,11590,8,840,1,840,1,840,1,840,1,840, - 1,840,4,840,11597,8,840,11,840,12,840,11598,1,841,3,841,11602,8, - 841,1,841,1,841,3,841,11606,8,841,1,841,1,841,3,841,11610,8,841, - 3,841,11612,8,841,1,841,3,841,11615,8,841,1,841,3,841,11618,8,841, - 1,842,1,842,1,843,1,843,1,843,1,843,3,843,11626,8,843,1,843,1,843, - 1,843,1,843,1,843,3,843,11633,8,843,1,843,1,843,1,843,1,843,1,843, - 3,843,11640,8,843,1,843,1,843,1,843,1,843,3,843,11646,8,843,3,843, - 11648,8,843,1,844,1,844,1,844,1,844,1,844,3,844,11655,8,844,1,844, - 1,844,1,844,3,844,11660,8,844,1,844,1,844,1,845,1,845,1,845,1,845, - 1,845,1,845,1,845,1,845,1,845,1,845,1,845,1,845,1,845,1,845,4,845, - 11678,8,845,11,845,12,845,11679,1,846,1,846,1,846,1,846,3,846,11686, - 8,846,1,847,1,847,1,847,1,847,5,847,11692,8,847,10,847,12,847,11695, - 9,847,1,847,1,847,1,848,1,848,3,848,11701,8,848,1,849,1,849,1,849, - 1,849,1,850,1,850,1,850,1,851,1,851,3,851,11712,8,851,1,851,1,851, - 1,852,1,852,3,852,11718,8,852,1,852,1,852,1,853,1,853,3,853,11724, - 8,853,1,853,1,853,1,854,1,854,1,854,1,854,1,854,1,854,1,854,1,854, - 1,854,3,854,11737,8,854,1,854,3,854,11740,8,854,1,855,1,855,3,855, - 11744,8,855,1,856,1,856,1,856,3,856,11749,8,856,1,857,4,857,11752, - 8,857,11,857,12,857,11753,1,858,1,858,1,858,1,858,1,858,1,859,1, - 859,1,859,5,859,11764,8,859,10,859,12,859,11767,9,859,1,860,1,860, - 1,860,3,860,11772,8,860,1,861,1,861,3,861,11776,8,861,1,862,1,862, - 3,862,11780,8,862,1,863,1,863,3,863,11784,8,863,1,864,1,864,1,864, - 1,865,1,865,3,865,11791,8,865,1,866,1,866,1,867,3,867,11796,8,867, - 1,867,3,867,11799,8,867,1,867,3,867,11802,8,867,1,867,3,867,11805, - 8,867,1,867,3,867,11808,8,867,1,867,3,867,11811,8,867,1,867,3,867, - 11814,8,867,1,868,1,868,1,869,1,869,1,870,1,870,1,871,1,871,1,872, - 1,872,3,872,11826,8,872,1,873,1,873,1,873,1,873,1,873,0,1,1250,874, + 1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376, + 1,376,1,376,1,376,3,376,6660,8,376,1,377,1,377,1,377,1,377,1,377, + 1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377, + 3,377,6678,8,377,1,378,1,378,3,378,6682,8,378,1,378,1,378,1,378, + 3,378,6687,8,378,1,378,3,378,6690,8,378,1,379,1,379,3,379,6694,8, + 379,1,379,1,379,1,379,3,379,6699,8,379,1,379,1,379,1,379,3,379,6704, + 8,379,1,379,3,379,6707,8,379,1,380,1,380,1,380,5,380,6712,8,380, + 10,380,12,380,6715,9,380,1,381,1,381,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382,6731,8,382,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,3,383,6802,8,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,3,383,6833,8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,3,383,6887,8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,3,383,6897,8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,3,383,6907,8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,3,383,6918,8,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,3,383,6928,8,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,3,383,6939,8,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,3,383,6949,8,383,1,383,1,383,1,383,3,383,6954, + 8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,6963,8,383, + 1,383,1,383,1,383,3,383,6968,8,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,3,383,6978,8,383,1,383,1,383,1,383,3,383,6983, + 8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,6992,8,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 3,383,7005,8,383,1,383,1,383,1,383,3,383,7010,8,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7122, + 8,383,3,383,7124,8,383,1,384,1,384,1,384,1,385,1,385,1,385,1,385, + 3,385,7133,8,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385, + 1,385,3,385,7144,8,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385, + 1,385,1,385,3,385,7155,8,385,1,385,1,385,1,385,1,385,1,385,1,385, + 1,385,1,385,1,385,1,385,1,385,3,385,7168,8,385,1,385,1,385,1,385, + 1,385,1,385,1,385,1,385,1,385,1,385,1,385,3,385,7180,8,385,1,385, + 1,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385,3,385,7191,8,385, + 1,385,1,385,1,385,1,385,1,385,3,385,7198,8,385,1,386,1,386,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,3,387,7288,8,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,3,387,7341,8,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,3,387,7351,8,387,1,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,3,387,7362,8,387, + 1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,3,387,7373, + 8,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,3,387,7387,8,387,1,388,1,388,1,388,1,388,1,388,1,388, + 1,388,1,388,1,389,1,389,1,389,5,389,7400,8,389,10,389,12,389,7403, + 9,389,1,390,1,390,1,390,1,390,1,390,1,390,1,390,1,390,3,390,7413, + 8,390,1,391,1,391,1,391,1,391,1,391,3,391,7420,8,391,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,3,393,7474,8,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,3,393,7615,8,393,1,394,1,394,1,394, + 1,394,3,394,7621,8,394,1,394,3,394,7624,8,394,1,395,1,395,1,396, + 1,396,1,396,1,396,1,396,1,396,3,396,7634,8,396,1,397,1,397,1,397, + 1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397, + 1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397, + 1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397, + 1,397,1,397,3,397,7674,8,397,1,398,1,398,1,398,1,398,1,398,1,398, + 1,398,1,398,3,398,7684,8,398,1,399,1,399,1,399,5,399,7689,8,399, + 10,399,12,399,7692,9,399,1,400,1,400,1,401,1,401,1,401,1,401,1,401, + 1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401, + 1,401,1,401,3,401,7714,8,401,1,401,1,401,1,401,1,401,1,401,1,401, + 1,401,3,401,7723,8,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401, + 3,401,7732,8,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,3,401, + 7741,8,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401, + 1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401, + 1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401, + 3,401,7774,8,401,1,402,1,402,3,402,7778,8,402,1,402,1,402,1,402, + 1,402,1,402,1,402,1,402,1,402,3,402,7788,8,402,1,402,1,402,3,402, + 7792,8,402,1,402,1,402,1,403,1,403,1,403,1,403,1,403,1,403,3,403, + 7802,8,403,1,404,3,404,7805,8,404,1,404,1,404,3,404,7809,8,404,5, + 404,7811,8,404,10,404,12,404,7814,9,404,1,405,1,405,1,405,1,405, + 1,405,3,405,7821,8,405,1,406,1,406,1,407,1,407,1,408,1,408,1,409, + 1,409,1,409,3,409,7832,8,409,1,410,1,410,1,410,1,411,1,411,1,411, + 1,412,1,412,1,412,1,412,3,412,7844,8,412,1,413,1,413,3,413,7848, + 8,413,1,413,3,413,7851,8,413,1,413,1,413,3,413,7855,8,413,1,413, + 3,413,7858,8,413,1,413,1,413,1,413,3,413,7863,8,413,1,413,1,413, + 3,413,7867,8,413,1,413,3,413,7870,8,413,1,413,1,413,1,413,1,413, + 3,413,7876,8,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413, + 1,413,3,413,7887,8,413,1,413,3,413,7890,8,413,1,413,1,413,1,413, + 1,413,1,413,3,413,7897,8,413,1,413,1,413,3,413,7901,8,413,1,413, + 1,413,1,413,3,413,7906,8,413,1,413,3,413,7909,8,413,3,413,7911,8, + 413,1,414,1,414,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415, + 1,415,1,415,3,415,7925,8,415,1,416,1,416,3,416,7929,8,416,1,416, + 5,416,7932,8,416,10,416,12,416,7935,9,416,1,417,1,417,1,418,1,418, + 3,418,7941,8,418,1,418,1,418,1,419,1,419,1,419,3,419,7948,8,419, + 1,419,3,419,7951,8,419,1,419,1,419,1,419,3,419,7956,8,419,1,419, + 3,419,7959,8,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,3,419, + 7968,8,419,3,419,7970,8,419,1,419,1,419,1,419,3,419,7975,8,419,1, + 420,1,420,3,420,7979,8,420,1,420,1,420,1,420,1,421,1,421,1,421,1, + 422,1,422,1,422,1,422,3,422,7991,8,422,1,422,3,422,7994,8,422,1, + 423,1,423,1,424,4,424,7999,8,424,11,424,12,424,8000,1,425,1,425, + 3,425,8005,8,425,1,425,1,425,1,425,3,425,8010,8,425,1,426,1,426, + 1,426,1,426,1,426,1,426,1,426,1,426,3,426,8020,8,426,1,427,1,427, + 1,428,1,428,1,428,1,428,1,428,1,428,3,428,8030,8,428,1,428,3,428, + 8033,8,428,1,428,3,428,8036,8,428,3,428,8038,8,428,1,429,1,429,1, + 429,1,429,3,429,8044,8,429,1,430,1,430,1,430,5,430,8049,8,430,10, + 430,12,430,8052,9,430,1,431,1,431,1,432,1,432,1,432,1,432,1,432, + 1,432,1,433,1,433,1,433,1,433,1,433,1,434,1,434,1,434,1,434,3,434, + 8071,8,434,1,434,1,434,1,434,1,435,1,435,1,435,1,435,1,435,1,435, + 1,435,1,435,1,435,1,435,1,435,1,435,1,435,1,435,1,435,3,435,8091, + 8,435,1,435,1,435,3,435,8095,8,435,1,435,1,435,1,435,3,435,8100, + 8,435,1,436,1,436,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,438, + 1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438, + 1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438, + 1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438, + 1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438, + 1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438, + 1,438,1,438,3,438,8169,8,438,1,438,1,438,1,438,3,438,8174,8,438, + 1,439,1,439,1,440,1,440,3,440,8180,8,440,1,440,1,440,1,440,1,440, + 1,440,1,440,1,440,1,440,1,440,1,441,1,441,3,441,8193,8,441,1,441, + 1,441,3,441,8197,8,441,1,441,1,441,3,441,8201,8,441,1,441,1,441, + 1,441,1,441,3,441,8207,8,441,3,441,8209,8,441,1,442,1,442,1,442, + 1,442,5,442,8215,8,442,10,442,12,442,8218,9,442,1,442,1,442,1,443, + 1,443,1,443,1,444,1,444,3,444,8227,8,444,1,444,3,444,8230,8,444, + 1,444,3,444,8233,8,444,1,444,3,444,8236,8,444,1,444,3,444,8239,8, + 444,1,444,1,444,1,444,1,444,1,444,3,444,8246,8,444,1,444,3,444,8249, + 8,444,3,444,8251,8,444,1,445,1,445,3,445,8255,8,445,1,445,3,445, + 8258,8,445,1,445,1,445,1,445,1,445,1,445,3,445,8265,8,445,3,445, + 8267,8,445,1,446,1,446,1,446,5,446,8272,8,446,10,446,12,446,8275, + 9,446,1,447,1,447,1,448,1,448,3,448,8281,8,448,1,449,1,449,3,449, + 8285,8,449,1,450,1,450,3,450,8289,8,450,1,451,1,451,1,452,1,452, + 1,452,5,452,8296,8,452,10,452,12,452,8299,9,452,1,453,1,453,1,453, + 3,453,8304,8,453,1,454,1,454,3,454,8308,8,454,1,455,1,455,3,455, + 8312,8,455,1,456,1,456,1,456,3,456,8317,8,456,1,457,1,457,1,458, + 1,458,1,459,1,459,1,459,1,459,1,460,1,460,3,460,8329,8,460,1,461, + 1,461,1,461,5,461,8334,8,461,10,461,12,461,8337,9,461,1,462,1,462, + 1,463,1,463,1,463,1,463,1,463,3,463,8346,8,463,1,463,1,463,1,463, + 1,463,1,463,1,463,1,463,1,463,1,463,1,463,1,463,3,463,8359,8,463, + 1,464,1,464,1,464,1,464,1,464,1,464,1,464,1,464,1,464,3,464,8370, + 8,464,1,465,1,465,1,465,5,465,8375,8,465,10,465,12,465,8378,9,465, + 1,466,1,466,3,466,8382,8,466,1,467,1,467,3,467,8386,8,467,1,468, + 1,468,3,468,8390,8,468,1,469,1,469,1,469,3,469,8395,8,469,1,469, + 1,469,1,469,1,470,1,470,1,470,1,470,1,471,1,471,1,471,1,471,3,471, + 8408,8,471,1,472,1,472,1,472,3,472,8413,8,472,1,472,1,472,3,472, + 8417,8,472,1,472,1,472,3,472,8421,8,472,1,472,1,472,1,472,1,472, + 1,472,3,472,8428,8,472,1,472,3,472,8431,8,472,3,472,8433,8,472,1, + 473,1,473,1,473,1,473,1,474,1,474,3,474,8441,8,474,1,474,1,474,3, + 474,8445,8,474,1,475,3,475,8448,8,475,1,475,1,475,1,475,1,475,1, + 475,3,475,8455,8,475,1,475,3,475,8458,8,475,1,476,1,476,1,476,3, + 476,8463,8,476,1,477,1,477,1,477,1,477,3,477,8469,8,477,1,477,1, + 477,1,477,1,477,3,477,8475,8,477,1,477,1,477,3,477,8479,8,477,1, + 478,1,478,1,479,1,479,1,479,5,479,8486,8,479,10,479,12,479,8489, + 9,479,1,480,1,480,1,480,1,481,1,481,1,481,3,481,8497,8,481,1,481, + 1,481,1,481,1,481,1,481,3,481,8504,8,481,1,481,3,481,8507,8,481, + 1,482,1,482,1,482,1,482,3,482,8513,8,482,1,482,1,482,1,482,3,482, + 8518,8,482,1,483,1,483,1,483,1,484,3,484,8524,8,484,1,484,1,484, + 1,484,1,484,3,484,8530,8,484,1,484,3,484,8533,8,484,1,484,3,484, + 8536,8,484,1,485,1,485,1,485,1,486,1,486,3,486,8543,8,486,1,486, + 1,486,3,486,8547,8,486,1,486,3,486,8550,8,486,1,487,1,487,1,487, + 1,487,1,488,1,488,1,488,1,488,1,488,1,488,1,488,1,488,1,488,3,488, + 8565,8,488,1,488,3,488,8568,8,488,1,489,1,489,1,490,1,490,1,490, + 3,490,8575,8,490,1,491,3,491,8578,8,491,1,491,1,491,1,491,1,491, + 1,491,3,491,8585,8,491,1,491,3,491,8588,8,491,1,491,3,491,8591,8, + 491,1,492,1,492,1,492,5,492,8596,8,492,10,492,12,492,8599,9,492, + 1,493,1,493,1,493,1,493,1,493,1,493,1,493,1,493,1,493,3,493,8610, + 8,493,1,493,1,493,1,493,1,493,1,493,3,493,8617,8,493,3,493,8619, + 8,493,1,494,1,494,1,494,1,495,1,495,1,495,5,495,8627,8,495,10,495, + 12,495,8630,9,495,1,496,1,496,1,496,1,496,1,496,1,496,1,496,1,496, + 1,497,1,497,1,498,1,498,1,498,1,498,1,498,5,498,8647,8,498,10,498, + 12,498,8650,9,498,1,499,1,499,1,499,1,499,1,499,3,499,8657,8,499, + 1,500,1,500,3,500,8661,8,500,1,501,1,501,1,501,1,501,1,501,1,501, + 1,501,1,501,3,501,8671,8,501,1,502,1,502,3,502,8675,8,502,1,502, + 1,502,3,502,8679,8,502,1,502,1,502,3,502,8683,8,502,3,502,8685,8, + 502,1,502,1,502,1,502,3,502,8690,8,502,1,502,1,502,3,502,8694,8, + 502,1,502,1,502,3,502,8698,8,502,3,502,8700,8,502,3,502,8702,8,502, + 1,503,1,503,3,503,8706,8,503,1,504,1,504,3,504,8710,8,504,1,504, + 3,504,8713,8,504,1,504,3,504,8716,8,504,1,504,3,504,8719,8,504,1, + 504,3,504,8722,8,504,3,504,8724,8,504,1,504,3,504,8727,8,504,1,504, + 3,504,8730,8,504,1,504,3,504,8733,8,504,1,504,3,504,8736,8,504,1, + 504,3,504,8739,8,504,1,504,3,504,8742,8,504,1,504,1,504,1,504,1, + 504,1,504,1,504,1,504,3,504,8751,8,504,3,504,8753,8,504,1,504,1, + 504,1,504,3,504,8758,8,504,5,504,8760,8,504,10,504,12,504,8763,9, + 504,1,505,1,505,1,505,3,505,8768,8,505,1,506,1,506,3,506,8772,8, + 506,1,507,1,507,3,507,8776,8,507,1,507,1,507,1,508,1,508,1,508,5, + 508,8783,8,508,10,508,12,508,8786,9,508,1,509,1,509,3,509,8790,8, + 509,1,509,1,509,3,509,8794,8,509,1,509,1,509,1,509,1,509,3,509,8800, + 8,509,1,509,3,509,8803,8,509,1,510,1,510,1,510,1,510,1,510,1,510, + 1,510,1,510,1,511,1,511,1,511,1,511,1,511,1,511,1,511,1,511,1,511, + 3,511,8822,8,511,1,511,1,511,1,511,1,512,1,512,1,512,3,512,8830, + 8,512,1,513,1,513,1,514,1,514,1,514,1,514,1,514,3,514,8839,8,514, + 1,515,1,515,3,515,8843,8,515,1,516,3,516,8846,8,516,1,516,1,516, + 3,516,8850,8,516,1,516,1,516,1,516,3,516,8855,8,516,1,516,1,516, + 1,516,1,516,3,516,8861,8,516,1,517,1,517,1,518,1,518,1,519,1,519, + 1,519,1,519,1,519,1,519,3,519,8873,8,519,1,520,1,520,1,521,1,521, + 1,522,1,522,1,522,1,522,1,523,1,523,1,523,5,523,8886,8,523,10,523, + 12,523,8889,9,523,1,524,1,524,1,524,1,524,3,524,8895,8,524,1,524, + 3,524,8898,8,524,1,525,1,525,3,525,8902,8,525,1,525,1,525,3,525, + 8906,8,525,1,525,1,525,3,525,8910,8,525,3,525,8912,8,525,1,526,1, + 526,1,527,1,527,1,527,1,527,3,527,8920,8,527,1,528,1,528,1,528,1, + 528,1,528,1,528,1,528,3,528,8929,8,528,1,528,1,528,1,528,1,528,3, + 528,8935,8,528,3,528,8937,8,528,1,529,1,529,1,529,1,529,1,529,3, + 529,8944,8,529,1,530,1,530,3,530,8948,8,530,1,531,1,531,1,532,1, + 532,1,532,1,532,1,532,3,532,8957,8,532,1,533,1,533,3,533,8961,8, + 533,1,534,1,534,1,535,1,535,1,536,1,536,1,536,3,536,8970,8,536,1, + 536,1,536,1,537,1,537,1,537,5,537,8977,8,537,10,537,12,537,8980, + 9,537,1,538,1,538,1,538,1,538,1,538,1,538,1,538,1,538,1,538,3,538, + 8991,8,538,1,539,1,539,1,539,1,540,1,540,1,540,1,540,1,540,1,541, + 1,541,1,541,1,541,1,541,1,542,1,542,1,542,1,542,1,542,1,542,1,543, + 1,543,1,543,1,544,1,544,1,544,1,544,3,544,9019,8,544,1,545,1,545, + 1,546,4,546,9024,8,546,11,546,12,546,9025,1,547,1,547,3,547,9030, + 8,547,1,547,3,547,9033,8,547,1,548,1,548,1,548,3,548,9038,8,548, + 1,548,1,548,3,548,9042,8,548,1,548,3,548,9045,8,548,1,549,1,549, + 1,549,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,5,550, + 9059,8,550,10,550,12,550,9062,9,550,1,551,1,551,1,551,1,552,1,552, + 1,552,5,552,9070,8,552,10,552,12,552,9073,9,552,1,553,1,553,3,553, + 9077,8,553,1,553,3,553,9080,8,553,1,553,3,553,9083,8,553,1,553,1, + 553,3,553,9087,8,553,1,553,1,553,3,553,9091,8,553,1,553,1,553,3, + 553,9095,8,553,1,553,1,553,1,553,3,553,9100,8,553,1,553,1,553,3, + 553,9104,8,553,1,553,1,553,3,553,9108,8,553,3,553,9110,8,553,1,553, + 1,553,1,553,1,553,1,553,1,553,1,553,3,553,9119,8,553,1,553,1,553, + 1,553,3,553,9124,8,553,1,553,1,553,1,553,1,553,3,553,9130,8,553, + 1,553,1,553,3,553,9134,8,553,3,553,9136,8,553,1,553,1,553,1,553, + 1,553,1,553,3,553,9143,8,553,1,553,1,553,1,553,3,553,9148,8,553, + 1,553,1,553,1,553,1,553,5,553,9154,8,553,10,553,12,553,9157,9,553, + 1,554,3,554,9160,8,554,1,554,1,554,1,554,1,554,1,554,3,554,9167, + 8,554,1,555,1,555,1,556,1,556,1,556,3,556,9174,8,556,1,556,3,556, + 9177,8,556,1,556,1,556,1,556,1,556,3,556,9183,8,556,1,557,1,557, + 3,557,9187,8,557,1,558,1,558,1,558,1,558,1,558,1,558,1,558,3,558, + 9196,8,558,1,559,3,559,9199,8,559,1,559,1,559,3,559,9203,8,559,1, + 559,1,559,1,559,1,559,1,559,1,559,3,559,9211,8,559,1,559,1,559,1, + 559,1,559,3,559,9217,8,559,3,559,9219,8,559,1,560,3,560,9222,8,560, + 1,560,1,560,3,560,9226,8,560,1,560,3,560,9229,8,560,1,560,3,560, + 9232,8,560,1,561,1,561,3,561,9236,8,561,1,561,1,561,3,561,9240,8, + 561,1,561,1,561,1,561,1,561,3,561,9246,8,561,1,561,3,561,9249,8, + 561,1,561,1,561,1,561,1,561,1,561,1,561,1,561,3,561,9258,8,561,1, + 561,1,561,1,561,1,561,1,561,3,561,9265,8,561,3,561,9267,8,561,1, + 562,1,562,1,562,5,562,9272,8,562,10,562,12,562,9275,9,562,1,563, + 1,563,1,563,5,563,9280,8,563,10,563,12,563,9283,9,563,1,564,1,564, + 3,564,9287,8,564,1,564,3,564,9290,8,564,1,565,1,565,1,565,1,565, + 1,565,1,565,3,565,9298,8,565,1,566,1,566,1,566,1,566,1,566,1,567, + 1,567,3,567,9307,8,567,1,567,1,567,1,567,1,567,1,567,1,567,3,567, + 9315,8,567,3,567,9317,8,567,1,568,1,568,3,568,9321,8,568,1,569,1, + 569,1,569,5,569,9326,8,569,10,569,12,569,9329,9,569,1,570,1,570, + 1,570,1,570,1,570,1,571,1,571,1,571,1,572,1,572,1,572,1,573,1,573, + 1,573,1,573,1,573,3,573,9347,8,573,1,574,1,574,1,575,1,575,1,575, + 5,575,9354,8,575,10,575,12,575,9357,9,575,1,576,1,576,1,576,3,576, + 9362,8,576,1,577,1,577,1,577,1,577,1,577,1,577,1,577,1,577,1,577, + 1,577,1,577,1,577,1,577,1,577,1,577,1,577,1,577,3,577,9381,8,577, + 1,577,1,577,1,578,1,578,1,578,5,578,9388,8,578,10,578,12,578,9391, + 9,578,1,579,1,579,1,579,3,579,9396,8,579,1,579,1,579,3,579,9400, + 8,579,1,580,4,580,9403,8,580,11,580,12,580,9404,1,581,1,581,1,581, + 1,581,1,581,1,581,1,581,1,581,3,581,9415,8,581,1,582,1,582,1,582, + 5,582,9420,8,582,10,582,12,582,9423,9,582,1,583,1,583,1,583,1,583, + 1,583,1,583,3,583,9431,8,583,1,584,3,584,9434,8,584,1,584,1,584, + 1,584,1,584,1,584,1,584,1,584,3,584,9443,8,584,3,584,9445,8,584, + 1,584,1,584,1,584,1,584,3,584,9451,8,584,1,585,1,585,3,585,9455, + 8,585,1,585,5,585,9458,8,585,10,585,12,585,9461,9,585,1,586,1,586, + 1,586,1,586,1,586,1,586,1,586,3,586,9470,8,586,1,586,1,586,1,586, + 1,586,3,586,9476,8,586,3,586,9478,8,586,1,587,1,587,1,587,1,587, + 3,587,9484,8,587,1,588,1,588,3,588,9488,8,588,1,588,3,588,9491,8, + 588,1,589,1,589,1,589,1,589,1,590,1,590,1,590,1,590,1,590,1,590, + 1,590,3,590,9504,8,590,1,590,1,590,1,590,1,590,3,590,9510,8,590, + 1,590,1,590,3,590,9514,8,590,1,590,1,590,3,590,9518,8,590,1,590, + 3,590,9521,8,590,1,591,1,591,1,591,1,591,1,592,1,592,3,592,9529, + 8,592,1,593,1,593,3,593,9533,8,593,1,594,1,594,3,594,9537,8,594, + 1,594,1,594,1,594,1,594,1,595,1,595,3,595,9545,8,595,1,596,1,596, + 1,596,1,596,1,596,3,596,9552,8,596,1,597,1,597,1,597,1,597,1,597, + 3,597,9559,8,597,1,598,1,598,3,598,9563,8,598,1,598,1,598,1,598, + 1,598,3,598,9569,8,598,3,598,9571,8,598,1,599,1,599,1,600,1,600, + 1,600,1,600,1,600,3,600,9580,8,600,1,600,3,600,9583,8,600,1,601, + 1,601,1,602,1,602,1,602,1,602,1,602,1,602,3,602,9593,8,602,1,603, + 1,603,1,603,1,603,1,603,1,603,1,603,1,603,1,603,1,603,1,603,1,603, + 1,603,1,603,3,603,9609,8,603,1,603,1,603,1,603,1,603,3,603,9615, + 8,603,1,603,1,603,1,603,3,603,9620,8,603,1,604,1,604,1,604,1,604, + 1,604,3,604,9627,8,604,1,605,1,605,1,605,1,606,1,606,1,607,1,607, + 3,607,9636,8,607,1,608,1,608,1,608,5,608,9641,8,608,10,608,12,608, + 9644,9,608,1,609,1,609,1,609,5,609,9649,8,609,10,609,12,609,9652, + 9,609,1,610,1,610,1,610,5,610,9657,8,610,10,610,12,610,9660,9,610, + 1,611,1,611,3,611,9664,8,611,1,611,1,611,3,611,9668,8,611,1,612, + 3,612,9671,8,612,1,612,1,612,1,613,1,613,3,613,9677,8,613,1,614, + 1,614,1,614,3,614,9682,8,614,1,614,1,614,1,614,1,614,1,614,1,614, + 1,614,1,614,1,614,1,614,1,614,1,614,1,614,1,614,3,614,9698,8,614, + 1,614,3,614,9701,8,614,3,614,9703,8,614,1,615,1,615,1,615,1,615, + 1,615,1,615,1,615,1,615,1,615,1,615,3,615,9715,8,615,3,615,9717, + 8,615,1,616,1,616,3,616,9721,8,616,1,616,1,616,1,616,1,616,1,616, + 1,616,3,616,9729,8,616,3,616,9731,8,616,1,616,1,616,3,616,9735,8, + 616,3,616,9737,8,616,1,617,1,617,1,617,1,617,5,617,9743,8,617,10, + 617,12,617,9746,9,617,1,618,3,618,9749,8,618,1,618,1,618,1,619,1, + 619,1,619,5,619,9756,8,619,10,619,12,619,9759,9,619,1,620,1,620, + 1,620,5,620,9764,8,620,10,620,12,620,9767,9,620,1,621,1,621,1,621, + 3,621,9772,8,621,1,622,3,622,9775,8,622,1,622,1,622,1,623,1,623, + 1,623,1,623,1,623,3,623,9784,8,623,1,624,1,624,1,624,3,624,9789, + 8,624,1,625,1,625,1,625,5,625,9794,8,625,10,625,12,625,9797,9,625, + 1,626,1,626,1,626,1,626,1,626,1,626,1,626,3,626,9806,8,626,1,626, + 1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626, + 1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626, + 1,626,3,626,9832,8,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626, + 1,626,1,626,3,626,9843,8,626,5,626,9845,8,626,10,626,12,626,9848, + 9,626,1,627,1,627,1,627,1,627,1,627,3,627,9855,8,627,1,627,1,627, + 1,627,1,627,1,627,1,627,1,627,1,627,1,627,1,627,1,627,1,627,1,627, + 1,627,1,627,1,627,1,627,1,627,1,627,1,627,3,627,9877,8,627,1,627, + 1,627,1,627,1,627,1,627,1,627,1,627,3,627,9886,8,627,1,628,1,628, + 1,629,1,629,1,629,1,629,1,629,1,629,3,629,9896,8,629,1,629,3,629, + 9899,8,629,1,629,1,629,1,629,3,629,9904,8,629,1,629,1,629,1,629, + 3,629,9909,8,629,1,629,1,629,3,629,9913,8,629,1,629,3,629,9916,8, + 629,1,630,1,630,3,630,9920,8,630,1,630,3,630,9923,8,630,1,630,3, + 630,9926,8,630,1,630,3,630,9929,8,630,1,631,1,631,3,631,9933,8,631, + 1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632, + 1,632,3,632,9947,8,632,1,632,1,632,1,632,1,632,1,632,3,632,9954, + 8,632,1,632,1,632,1,632,1,632,1,632,3,632,9961,8,632,1,632,1,632, + 1,632,1,632,1,632,3,632,9968,8,632,1,632,1,632,1,632,1,632,1,632, + 1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632, + 3,632,9986,8,632,1,632,1,632,1,632,1,632,1,632,1,632,3,632,9994, + 8,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632, + 3,632,10006,8,632,1,632,1,632,1,632,1,632,3,632,10012,8,632,1,632, + 1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,3,632, + 10025,8,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632, + 1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632, + 1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632, + 1,632,1,632,1,632,1,632,1,632,1,632,3,632,10064,8,632,3,632,10066, + 8,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632, + 1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,3,632,10086,8,632, + 1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,3,632,10096,8,632, + 1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,3,632,10107, + 8,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632,1,632, + 3,632,10119,8,632,1,633,1,633,1,633,1,633,1,633,3,633,10126,8,633, + 1,634,1,634,1,634,1,634,1,634,1,634,1,634,1,634,1,634,1,634,3,634, + 10138,8,634,1,635,1,635,1,635,1,635,1,635,1,636,1,636,1,636,5,636, + 10148,8,636,10,636,12,636,10151,9,636,1,637,1,637,1,637,3,637,10156, + 8,637,1,638,1,638,1,639,1,639,1,639,1,639,3,639,10164,8,639,1,640, + 1,640,1,640,1,640,1,640,1,640,1,640,1,640,1,640,1,640,1,640,1,640, + 1,640,1,640,1,640,3,640,10181,8,640,1,641,1,641,1,641,1,642,1,642, + 1,642,1,642,1,642,1,642,1,643,1,643,1,643,1,643,1,643,1,643,1,644, + 1,644,1,644,1,645,1,645,1,645,5,645,10204,8,645,10,645,12,645,10207, + 9,645,1,646,1,646,1,646,1,646,1,647,1,647,1,647,3,647,10216,8,647, + 1,648,1,648,3,648,10220,8,648,1,648,3,648,10223,8,648,1,648,3,648, + 10226,8,648,1,648,3,648,10229,8,648,1,648,1,648,1,649,1,649,1,650, + 1,650,1,650,1,650,1,651,1,651,1,651,3,651,10242,8,651,1,651,1,651, + 1,651,3,651,10247,8,651,1,651,1,651,1,651,3,651,10252,8,651,3,651, + 10254,8,651,1,652,1,652,1,652,1,652,1,652,1,652,3,652,10262,8,652, + 1,653,1,653,1,653,1,653,1,653,1,653,1,653,3,653,10271,8,653,1,654, + 1,654,1,654,1,654,1,654,1,654,1,654,3,654,10280,8,654,1,655,1,655, + 1,655,3,655,10285,8,655,1,655,1,655,1,655,1,655,1,655,1,655,1,655, + 3,655,10294,8,655,1,656,1,656,1,656,3,656,10299,8,656,1,656,1,656, + 1,657,1,657,1,657,1,657,1,657,1,657,1,658,1,658,1,659,1,659,3,659, + 10313,8,659,1,660,1,660,1,661,1,661,1,661,1,661,1,661,1,661,3,661, + 10323,8,661,1,662,1,662,1,662,1,662,1,662,1,662,3,662,10331,8,662, + 1,663,1,663,1,663,1,663,1,663,1,663,1,663,1,663,1,663,1,663,1,663, + 1,663,3,663,10345,8,663,1,664,1,664,1,664,5,664,10350,8,664,10,664, + 12,664,10353,9,664,1,665,1,665,1,665,5,665,10358,8,665,10,665,12, + 665,10361,9,665,1,666,1,666,1,666,5,666,10366,8,666,10,666,12,666, + 10369,9,666,1,667,1,667,1,667,1,667,1,667,3,667,10376,8,667,1,668, + 1,668,3,668,10380,8,668,1,669,1,669,1,669,5,669,10385,8,669,10,669, + 12,669,10388,9,669,1,670,1,670,1,670,1,670,1,670,3,670,10395,8,670, + 1,671,1,671,1,671,5,671,10400,8,671,10,671,12,671,10403,9,671,1, + 672,1,672,1,672,3,672,10408,8,672,1,672,1,672,1,673,1,673,1,673, + 5,673,10415,8,673,10,673,12,673,10418,9,673,1,674,1,674,1,674,1, + 674,1,675,1,675,1,675,1,675,1,675,1,675,1,675,1,675,3,675,10432, + 8,675,1,676,1,676,1,677,1,677,1,677,1,677,1,677,1,677,1,677,3,677, + 10443,8,677,1,678,1,678,1,678,1,678,1,679,1,679,1,679,1,679,1,679, + 1,679,1,679,1,679,1,679,1,679,1,679,1,679,1,679,1,679,1,679,1,679, + 1,679,1,679,1,679,1,679,1,679,1,679,1,679,1,679,1,679,1,679,1,679, + 3,679,10476,8,679,1,680,1,680,1,680,1,680,1,680,1,680,1,680,3,680, + 10485,8,680,1,681,1,681,1,681,1,681,1,681,3,681,10492,8,681,1,682, + 1,682,3,682,10496,8,682,1,682,1,682,3,682,10500,8,682,1,682,1,682, + 1,683,4,683,10505,8,683,11,683,12,683,10506,1,684,1,684,1,684,1, + 684,1,684,1,685,1,685,1,685,1,686,1,686,1,687,1,687,3,687,10521, + 8,687,1,688,1,688,1,688,3,688,10526,8,688,1,688,1,688,1,688,3,688, + 10531,8,688,1,688,1,688,3,688,10535,8,688,3,688,10537,8,688,1,688, + 3,688,10540,8,688,1,689,1,689,1,690,4,690,10545,8,690,11,690,12, + 690,10546,1,691,5,691,10550,8,691,10,691,12,691,10553,9,691,1,692, + 1,692,1,693,1,693,1,693,5,693,10560,8,693,10,693,12,693,10563,9, + 693,1,694,1,694,1,694,1,694,1,694,3,694,10570,8,694,1,694,3,694, + 10573,8,694,1,695,1,695,1,695,5,695,10578,8,695,10,695,12,695,10581, + 9,695,1,696,1,696,1,696,5,696,10586,8,696,10,696,12,696,10589,9, + 696,1,697,1,697,1,697,5,697,10594,8,697,10,697,12,697,10597,9,697, + 1,698,1,698,1,698,5,698,10602,8,698,10,698,12,698,10605,9,698,1, + 699,1,699,1,699,5,699,10610,8,699,10,699,12,699,10613,9,699,1,700, + 1,700,3,700,10617,8,700,1,701,1,701,3,701,10621,8,701,1,702,1,702, + 3,702,10625,8,702,1,703,1,703,3,703,10629,8,703,1,704,1,704,3,704, + 10633,8,704,1,705,1,705,3,705,10637,8,705,1,706,1,706,3,706,10641, + 8,706,1,707,1,707,1,707,5,707,10646,8,707,10,707,12,707,10649,9, + 707,1,708,1,708,1,708,5,708,10654,8,708,10,708,12,708,10657,9,708, + 1,709,1,709,3,709,10661,8,709,1,710,1,710,3,710,10665,8,710,1,711, + 1,711,3,711,10669,8,711,1,712,1,712,1,713,1,713,1,714,1,714,1,714, + 1,714,3,714,10679,8,714,1,715,1,715,1,715,1,715,3,715,10685,8,715, + 1,716,1,716,5,716,10689,8,716,10,716,12,716,10692,9,716,1,716,3, + 716,10695,8,716,1,717,1,717,1,718,1,718,1,719,1,719,1,720,1,720, + 1,721,1,721,1,721,1,721,3,721,10709,8,721,1,722,1,722,1,722,1,722, + 3,722,10715,8,722,1,723,1,723,1,723,1,723,3,723,10721,8,723,1,724, + 1,724,1,724,1,724,1,724,1,724,1,724,1,724,1,724,1,724,3,724,10733, + 8,724,1,724,1,724,1,724,3,724,10738,8,724,1,724,1,724,1,724,1,724, + 1,724,1,724,3,724,10746,8,724,1,724,1,724,1,724,1,724,1,724,3,724, + 10753,8,724,1,724,1,724,1,724,3,724,10758,8,724,1,725,1,725,1,726, + 1,726,1,727,1,727,1,728,1,728,1,729,1,729,3,729,10770,8,729,1,730, + 1,730,1,730,1,730,5,730,10776,8,730,10,730,12,730,10779,9,730,1, + 730,1,730,3,730,10783,8,730,1,731,1,731,1,731,1,732,1,732,1,732, + 1,732,1,732,3,732,10793,8,732,1,733,1,733,1,734,1,734,1,735,1,735, + 1,735,1,735,1,735,3,735,10804,8,735,1,736,1,736,1,736,5,736,10809, + 8,736,10,736,12,736,10812,9,736,1,737,1,737,1,737,1,737,3,737,10818, + 8,737,1,738,1,738,1,739,1,739,1,739,1,739,1,739,1,739,1,739,3,739, + 10829,8,739,1,739,3,739,10832,8,739,3,739,10834,8,739,1,740,1,740, + 3,740,10838,8,740,1,740,3,740,10841,8,740,1,741,1,741,1,741,1,741, + 3,741,10847,8,741,1,742,1,742,1,742,1,742,3,742,10853,8,742,1,743, + 1,743,3,743,10857,8,743,1,744,1,744,1,744,1,744,3,744,10863,8,744, + 1,745,1,745,1,745,1,745,1,745,1,745,3,745,10871,8,745,1,746,1,746, + 3,746,10875,8,746,1,746,1,746,1,746,1,746,1,746,1,746,3,746,10883, + 8,746,1,747,1,747,1,748,1,748,1,749,1,749,1,749,1,749,1,749,1,749, + 1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749, + 1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749, + 1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749, + 1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749, + 1,749,3,749,10940,8,749,1,750,1,750,1,751,1,751,1,752,1,752,1,752, + 1,752,1,753,5,753,10951,8,753,10,753,12,753,10954,9,753,1,754,1, + 754,1,754,1,754,1,754,1,754,1,754,1,754,1,754,1,754,1,754,1,754, + 1,754,1,754,1,754,1,754,1,754,1,754,1,754,1,754,3,754,10976,8,754, + 1,755,1,755,1,756,1,756,1,756,1,756,3,756,10984,8,756,1,757,1,757, + 3,757,10988,8,757,1,758,1,758,1,758,1,758,1,758,1,758,1,758,1,759, + 1,759,1,759,3,759,11000,8,759,3,759,11002,8,759,1,760,1,760,1,761, + 4,761,11007,8,761,11,761,12,761,11008,1,762,1,762,1,762,1,762,1, + 763,1,763,1,763,3,763,11018,8,763,1,764,1,764,1,764,1,764,1,764, + 1,764,1,764,1,764,1,764,1,764,1,764,1,764,1,764,1,764,1,764,1,764, + 3,764,11036,8,764,1,764,1,764,1,765,1,765,1,765,1,765,3,765,11044, + 8,765,1,766,1,766,1,767,1,767,1,767,1,767,1,767,3,767,11053,8,767, + 1,768,1,768,1,768,5,768,11058,8,768,10,768,12,768,11061,9,768,1, + 769,1,769,1,769,1,770,1,770,1,771,1,771,3,771,11070,8,771,1,772, + 1,772,1,773,1,773,3,773,11076,8,773,1,774,1,774,1,775,1,775,1,775, + 3,775,11083,8,775,1,776,1,776,1,776,3,776,11088,8,776,1,777,1,777, + 1,777,1,777,3,777,11094,8,777,1,778,1,778,3,778,11098,8,778,1,779, + 1,779,1,780,5,780,11103,8,780,10,780,12,780,11106,9,780,1,781,1, + 781,1,781,1,781,1,781,1,781,1,781,1,781,1,781,1,781,1,781,1,781, + 1,781,1,781,1,781,1,781,1,781,1,781,1,781,1,781,1,781,1,781,1,781, + 1,781,1,781,1,781,1,781,3,781,11135,8,781,1,782,1,782,1,782,1,782, + 1,783,1,783,1,783,1,783,1,783,1,783,1,783,3,783,11148,8,783,1,783, + 1,783,1,783,1,783,1,783,1,783,1,783,3,783,11157,8,783,1,784,1,784, + 3,784,11161,8,784,1,785,1,785,1,785,1,785,1,785,1,786,1,786,1,786, + 1,786,1,786,1,786,1,787,1,787,1,787,3,787,11177,8,787,1,788,1,788, + 1,788,5,788,11182,8,788,10,788,12,788,11185,9,788,1,789,1,789,1, + 789,1,789,1,790,1,790,1,791,1,791,1,792,1,792,3,792,11197,8,792, + 1,792,1,792,1,792,1,792,5,792,11203,8,792,10,792,12,792,11206,9, + 792,1,793,1,793,1,793,1,793,1,793,1,793,1,793,1,793,1,793,1,793, + 1,794,1,794,1,794,1,794,1,794,5,794,11223,8,794,10,794,12,794,11226, + 9,794,1,795,1,795,1,795,3,795,11231,8,795,1,796,1,796,1,796,1,796, + 1,796,1,796,1,796,1,796,1,797,1,797,3,797,11243,8,797,1,798,4,798, + 11246,8,798,11,798,12,798,11247,1,799,1,799,1,799,1,799,1,799,1, + 800,1,800,1,800,3,800,11258,8,800,1,801,1,801,1,801,1,802,1,802, + 1,802,1,802,1,802,1,803,1,803,1,803,1,803,1,803,1,804,1,804,1,804, + 1,804,1,804,1,804,1,804,1,804,1,804,1,804,1,804,1,804,1,804,1,804, + 1,804,1,804,1,804,3,804,11290,8,804,1,805,1,805,1,805,3,805,11295, + 8,805,1,806,1,806,1,806,1,806,1,806,5,806,11302,8,806,10,806,12, + 806,11305,9,806,1,806,1,806,3,806,11309,8,806,1,807,1,807,3,807, + 11313,8,807,1,808,1,808,1,808,3,808,11318,8,808,1,809,1,809,1,810, + 1,810,1,810,1,810,1,810,1,810,1,810,1,810,1,810,1,811,1,811,1,811, + 3,811,11334,8,811,1,812,1,812,1,812,3,812,11339,8,812,1,812,1,812, + 1,813,1,813,1,814,1,814,1,814,1,814,1,814,1,814,1,814,1,814,1,814, + 3,814,11354,8,814,1,814,3,814,11357,8,814,1,814,1,814,1,815,1,815, + 3,815,11363,8,815,1,816,1,816,3,816,11367,8,816,1,816,1,816,1,816, + 1,816,1,816,1,816,1,816,3,816,11376,8,816,1,816,1,816,1,816,1,816, + 1,816,1,816,3,816,11384,8,816,1,816,1,816,1,816,1,816,1,816,1,816, + 1,816,3,816,11393,8,816,1,816,1,816,1,816,1,816,3,816,11399,8,816, + 1,817,1,817,1,818,1,818,1,818,4,818,11406,8,818,11,818,12,818,11407, + 3,818,11410,8,818,1,819,1,819,1,819,3,819,11415,8,819,1,820,1,820, + 1,820,1,820,1,821,1,821,1,821,5,821,11424,8,821,10,821,12,821,11427, + 9,821,1,822,1,822,1,822,1,822,1,822,1,823,1,823,1,823,3,823,11437, + 8,823,1,824,1,824,1,824,1,824,1,824,1,824,1,824,1,825,1,825,1,825, + 1,826,1,826,1,826,1,826,1,826,1,826,1,826,1,826,1,826,3,826,11458, + 8,826,1,826,1,826,1,827,1,827,1,827,3,827,11465,8,827,1,828,1,828, + 1,828,5,828,11470,8,828,10,828,12,828,11473,9,828,1,829,1,829,1, + 829,3,829,11478,8,829,1,829,3,829,11481,8,829,1,830,1,830,1,830, + 1,830,1,830,1,830,1,830,1,830,1,830,3,830,11492,8,830,1,830,1,830, + 1,830,1,830,1,830,3,830,11499,8,830,3,830,11501,8,830,1,830,1,830, + 1,831,1,831,1,831,1,831,1,831,3,831,11510,8,831,1,832,1,832,1,832, + 5,832,11515,8,832,10,832,12,832,11518,9,832,1,833,1,833,1,833,3, + 833,11523,8,833,1,834,1,834,1,834,1,834,3,834,11529,8,834,1,835, + 1,835,3,835,11533,8,835,1,836,1,836,3,836,11537,8,836,1,836,1,836, + 1,836,1,836,1,836,1,836,1,837,1,837,1,838,1,838,1,838,3,838,11550, + 8,838,1,839,1,839,1,839,1,839,1,839,1,839,1,839,1,839,1,839,1,839, + 1,839,1,839,1,839,3,839,11565,8,839,3,839,11567,8,839,1,840,1,840, + 3,840,11571,8,840,1,840,1,840,1,840,1,841,3,841,11577,8,841,1,841, + 1,841,1,841,3,841,11582,8,841,1,841,1,841,3,841,11586,8,841,1,841, + 3,841,11589,8,841,1,841,3,841,11592,8,841,1,841,1,841,1,841,1,841, + 1,841,4,841,11599,8,841,11,841,12,841,11600,1,842,3,842,11604,8, + 842,1,842,1,842,3,842,11608,8,842,1,842,1,842,3,842,11612,8,842, + 3,842,11614,8,842,1,842,3,842,11617,8,842,1,842,3,842,11620,8,842, + 1,843,1,843,1,844,1,844,1,844,1,844,3,844,11628,8,844,1,844,1,844, + 1,844,1,844,1,844,3,844,11635,8,844,1,844,1,844,1,844,1,844,1,844, + 3,844,11642,8,844,1,844,1,844,1,844,1,844,3,844,11648,8,844,3,844, + 11650,8,844,1,845,1,845,1,845,1,845,1,845,3,845,11657,8,845,1,845, + 1,845,1,845,3,845,11662,8,845,1,845,1,845,1,846,1,846,1,846,1,846, + 1,846,1,846,1,846,1,846,1,846,1,846,1,846,1,846,1,846,1,846,4,846, + 11680,8,846,11,846,12,846,11681,1,847,1,847,1,847,1,847,3,847,11688, + 8,847,1,848,1,848,1,848,1,848,5,848,11694,8,848,10,848,12,848,11697, + 9,848,1,848,1,848,1,849,1,849,3,849,11703,8,849,1,850,1,850,1,850, + 1,850,1,851,1,851,1,851,1,852,1,852,3,852,11714,8,852,1,852,1,852, + 1,853,1,853,3,853,11720,8,853,1,853,1,853,1,854,1,854,3,854,11726, + 8,854,1,854,1,854,1,855,1,855,1,855,1,855,1,855,1,855,1,855,1,855, + 1,855,3,855,11739,8,855,1,855,3,855,11742,8,855,1,856,1,856,3,856, + 11746,8,856,1,857,1,857,1,857,3,857,11751,8,857,1,858,4,858,11754, + 8,858,11,858,12,858,11755,1,859,1,859,1,859,1,859,1,859,1,860,1, + 860,1,860,5,860,11766,8,860,10,860,12,860,11769,9,860,1,861,1,861, + 1,861,3,861,11774,8,861,1,862,1,862,3,862,11778,8,862,1,863,1,863, + 3,863,11782,8,863,1,864,1,864,3,864,11786,8,864,1,865,1,865,1,865, + 1,866,1,866,3,866,11793,8,866,1,867,1,867,1,868,3,868,11798,8,868, + 1,868,3,868,11801,8,868,1,868,3,868,11804,8,868,1,868,3,868,11807, + 8,868,1,868,3,868,11810,8,868,1,868,3,868,11813,8,868,1,868,3,868, + 11816,8,868,1,869,1,869,1,870,1,870,1,871,1,871,1,872,1,872,1,873, + 1,873,3,873,11828,8,873,1,874,1,874,1,874,1,874,1,874,0,1,1252,875, 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44, 46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88, 90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124, @@ -72198,4084 +69762,4084 @@ export class PostgreSQLParser extends antlr.Parser { 1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692, 1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718, 1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744, - 1746,0,87,2,0,195,195,364,364,1,0,228,229,1,0,236,237,1,0,234,235, - 1,0,232,233,1,0,230,231,1,0,535,536,1,0,537,538,1,0,539,540,2,0, - 66,66,318,318,2,0,99,99,318,318,1,0,529,531,2,0,10,10,94,94,2,0, - 133,133,191,191,2,0,254,254,332,332,2,0,162,162,363,363,2,0,180, - 180,221,221,5,0,30,30,288,288,329,329,352,352,354,354,2,0,109,109, - 532,532,2,0,367,367,439,439,2,0,139,139,312,312,2,0,191,191,333, - 333,2,0,313,313,333,333,2,0,150,150,315,315,2,0,64,64,94,94,2,0, - 352,352,354,354,2,0,200,200,224,224,9,0,30,30,160,160,165,165,179, - 179,219,219,227,227,342,342,345,345,438,438,3,0,113,113,284,284, - 336,336,2,0,53,53,78,78,3,0,173,173,260,260,262,262,2,0,9,9,94,94, - 5,0,30,30,88,88,182,182,241,241,369,369,2,0,92,92,226,226,2,0,341, - 341,414,414,1,0,448,449,2,0,92,92,414,414,2,0,135,135,145,145,3, - 0,66,66,99,99,318,318,4,0,163,163,185,185,283,283,353,353,3,0,321, - 321,357,357,445,445,2,0,167,167,314,314,2,0,64,64,68,68,10,0,46, - 46,88,88,182,182,202,202,241,241,352,352,354,354,357,358,369,369, - 521,523,5,0,212,212,329,329,350,350,361,361,455,456,2,0,37,37,55, - 55,2,0,10,10,53,53,4,0,88,88,182,182,241,241,369,369,2,0,137,137, - 242,242,2,0,356,356,380,380,2,0,151,151,254,254,1,0,31,32,2,0,60, - 60,96,96,2,0,99,99,349,349,2,0,201,201,334,334,1,0,527,528,2,0,213, - 213,254,254,2,0,30,30,56,56,2,0,320,320,414,414,2,0,207,207,268, - 268,4,0,113,113,115,115,119,119,126,126,2,0,360,360,477,477,2,0, - 391,392,406,406,1,0,391,392,1,0,418,419,1,0,18,19,2,0,117,117,122, - 122,5,0,10,10,16,17,21,21,23,23,25,25,1,0,12,13,3,0,9,9,14,14,27, - 27,3,0,39,39,73,73,95,95,2,0,166,166,188,188,2,0,304,304,450,450, - 2,0,208,208,289,289,3,0,30,30,34,34,90,90,6,0,9,10,12,17,21,21,23, - 23,25,25,27,27,2,0,20,20,22,22,1,0,483,486,10,0,124,124,129,228, - 238,386,433,452,455,469,471,471,473,473,475,475,478,488,547,548, - 3,0,106,123,125,128,472,472,4,0,30,52,54,70,72,105,454,454,2,0,62, - 62,116,116,2,0,10,10,20,20,2,0,167,167,507,507,1,0,512,517,2,0,144, - 144,210,210,37,0,33,33,35,35,43,43,45,45,53,53,57,57,61,61,92,92, - 116,116,123,123,130,130,144,144,153,153,157,157,161,161,167,167, - 172,172,207,207,210,210,241,241,249,249,265,265,268,269,279,279, - 293,293,307,307,313,313,319,319,323,324,333,333,360,360,433,434, - 477,477,490,502,504,504,506,518,520,520,13157,0,1751,1,0,0,0,2,1756, - 1,0,0,0,4,1758,1,0,0,0,6,1879,1,0,0,0,8,1881,1,0,0,0,10,1885,1,0, - 0,0,12,1888,1,0,0,0,14,1896,1,0,0,0,16,1901,1,0,0,0,18,1907,1,0, - 0,0,20,1945,1,0,0,0,22,1957,1,0,0,0,24,1959,1,0,0,0,26,1967,1,0, - 0,0,28,1979,1,0,0,0,30,1981,1,0,0,0,32,1990,1,0,0,0,34,2018,1,0, - 0,0,36,2020,1,0,0,0,38,2068,1,0,0,0,40,2070,1,0,0,0,42,2078,1,0, - 0,0,44,2085,1,0,0,0,46,2087,1,0,0,0,48,2102,1,0,0,0,50,2109,1,0, - 0,0,52,2118,1,0,0,0,54,2120,1,0,0,0,56,2134,1,0,0,0,58,2138,1,0, - 0,0,60,2174,1,0,0,0,62,2176,1,0,0,0,64,2184,1,0,0,0,66,2194,1,0, - 0,0,68,2201,1,0,0,0,70,2207,1,0,0,0,72,2213,1,0,0,0,74,2231,1,0, - 0,0,76,2235,1,0,0,0,78,2239,1,0,0,0,80,2243,1,0,0,0,82,2245,1,0, - 0,0,84,2256,1,0,0,0,86,2260,1,0,0,0,88,2265,1,0,0,0,90,2270,1,0, - 0,0,92,2272,1,0,0,0,94,2284,1,0,0,0,96,2291,1,0,0,0,98,2293,1,0, - 0,0,100,2295,1,0,0,0,102,2297,1,0,0,0,104,2433,1,0,0,0,106,2435, - 1,0,0,0,108,2452,1,0,0,0,110,2454,1,0,0,0,112,2468,1,0,0,0,114,2470, - 1,0,0,0,116,2486,1,0,0,0,118,2488,1,0,0,0,120,2709,1,0,0,0,122,2716, - 1,0,0,0,124,2718,1,0,0,0,126,2720,1,0,0,0,128,2723,1,0,0,0,130,2732, - 1,0,0,0,132,2734,1,0,0,0,134,2738,1,0,0,0,136,2741,1,0,0,0,138,2749, - 1,0,0,0,140,2761,1,0,0,0,142,2778,1,0,0,0,144,2806,1,0,0,0,146,2808, - 1,0,0,0,148,2811,1,0,0,0,150,2819,1,0,0,0,152,2824,1,0,0,0,154,2861, - 1,0,0,0,156,2863,1,0,0,0,158,2905,1,0,0,0,160,2907,1,0,0,0,162,2909, - 1,0,0,0,164,2914,1,0,0,0,166,2921,1,0,0,0,168,2926,1,0,0,0,170,2968, - 1,0,0,0,172,2970,1,0,0,0,174,2973,1,0,0,0,176,2978,1,0,0,0,178,2980, - 1,0,0,0,180,2988,1,0,0,0,182,2999,1,0,0,0,184,3001,1,0,0,0,186,3009, - 1,0,0,0,188,3011,1,0,0,0,190,3094,1,0,0,0,192,3096,1,0,0,0,194,3098, - 1,0,0,0,196,3100,1,0,0,0,198,3104,1,0,0,0,200,3112,1,0,0,0,202,3123, - 1,0,0,0,204,3127,1,0,0,0,206,3129,1,0,0,0,208,3150,1,0,0,0,210,3171, - 1,0,0,0,212,3174,1,0,0,0,214,3183,1,0,0,0,216,3193,1,0,0,0,218,3214, - 1,0,0,0,220,3274,1,0,0,0,222,3276,1,0,0,0,224,3285,1,0,0,0,226,3290, - 1,0,0,0,228,3292,1,0,0,0,230,3295,1,0,0,0,232,3303,1,0,0,0,234,3306, - 1,0,0,0,236,3313,1,0,0,0,238,3401,1,0,0,0,240,3403,1,0,0,0,242,3406, - 1,0,0,0,244,3410,1,0,0,0,246,3418,1,0,0,0,248,3423,1,0,0,0,250,3426, - 1,0,0,0,252,3434,1,0,0,0,254,3444,1,0,0,0,256,3457,1,0,0,0,258,3459, - 1,0,0,0,260,3463,1,0,0,0,262,3476,1,0,0,0,264,3478,1,0,0,0,266,3483, - 1,0,0,0,268,3485,1,0,0,0,270,3492,1,0,0,0,272,3523,1,0,0,0,274,3525, - 1,0,0,0,276,3534,1,0,0,0,278,3536,1,0,0,0,280,3545,1,0,0,0,282,3549, - 1,0,0,0,284,3557,1,0,0,0,286,3562,1,0,0,0,288,3566,1,0,0,0,290,3585, - 1,0,0,0,292,3595,1,0,0,0,294,3609,1,0,0,0,296,3625,1,0,0,0,298,3631, - 1,0,0,0,300,3646,1,0,0,0,302,3659,1,0,0,0,304,3661,1,0,0,0,306,3671, - 1,0,0,0,308,3683,1,0,0,0,310,3691,1,0,0,0,312,3693,1,0,0,0,314,3698, - 1,0,0,0,316,3736,1,0,0,0,318,3738,1,0,0,0,320,3746,1,0,0,0,322,3748, - 1,0,0,0,324,3756,1,0,0,0,326,3778,1,0,0,0,328,3780,1,0,0,0,330,3784, - 1,0,0,0,332,3791,1,0,0,0,334,3793,1,0,0,0,336,3795,1,0,0,0,338,3797, - 1,0,0,0,340,3808,1,0,0,0,342,3811,1,0,0,0,344,3825,1,0,0,0,346,3835, - 1,0,0,0,348,3837,1,0,0,0,350,3846,1,0,0,0,352,3849,1,0,0,0,354,3954, - 1,0,0,0,356,3956,1,0,0,0,358,3975,1,0,0,0,360,3978,1,0,0,0,362,3982, - 1,0,0,0,364,4001,1,0,0,0,366,4003,1,0,0,0,368,4008,1,0,0,0,370,4016, - 1,0,0,0,372,4021,1,0,0,0,374,4036,1,0,0,0,376,4038,1,0,0,0,378,4041, - 1,0,0,0,380,4043,1,0,0,0,382,4045,1,0,0,0,384,4064,1,0,0,0,386,4067, - 1,0,0,0,388,4072,1,0,0,0,390,4074,1,0,0,0,392,4123,1,0,0,0,394,4125, - 1,0,0,0,396,4143,1,0,0,0,398,4145,1,0,0,0,400,4150,1,0,0,0,402,4165, - 1,0,0,0,404,4167,1,0,0,0,406,4176,1,0,0,0,408,4196,1,0,0,0,410,4210, - 1,0,0,0,412,4244,1,0,0,0,414,4274,1,0,0,0,416,4276,1,0,0,0,418,4281, - 1,0,0,0,420,4287,1,0,0,0,422,4290,1,0,0,0,424,4293,1,0,0,0,426,4299, - 1,0,0,0,428,4302,1,0,0,0,430,4304,1,0,0,0,432,4313,1,0,0,0,434,4369, - 1,0,0,0,436,4375,1,0,0,0,438,4377,1,0,0,0,440,4383,1,0,0,0,442,4385, - 1,0,0,0,444,4400,1,0,0,0,446,4402,1,0,0,0,448,4406,1,0,0,0,450,4410, - 1,0,0,0,452,4417,1,0,0,0,454,4419,1,0,0,0,456,4421,1,0,0,0,458,4423, - 1,0,0,0,460,4429,1,0,0,0,462,4431,1,0,0,0,464,4433,1,0,0,0,466,4442, - 1,0,0,0,468,4446,1,0,0,0,470,4459,1,0,0,0,472,4461,1,0,0,0,474,4467, - 1,0,0,0,476,4481,1,0,0,0,478,4507,1,0,0,0,480,4509,1,0,0,0,482,4517, - 1,0,0,0,484,4523,1,0,0,0,486,4531,1,0,0,0,488,4542,1,0,0,0,490,4544, - 1,0,0,0,492,4656,1,0,0,0,494,4658,1,0,0,0,496,4662,1,0,0,0,498,4670, - 1,0,0,0,500,4681,1,0,0,0,502,4683,1,0,0,0,504,4687,1,0,0,0,506,4695, - 1,0,0,0,508,4699,1,0,0,0,510,4701,1,0,0,0,512,4731,1,0,0,0,514,4733, - 1,0,0,0,516,4737,1,0,0,0,518,4755,1,0,0,0,520,4794,1,0,0,0,522,4796, - 1,0,0,0,524,4798,1,0,0,0,526,4807,1,0,0,0,528,4809,1,0,0,0,530,4811, - 1,0,0,0,532,4836,1,0,0,0,534,4838,1,0,0,0,536,4858,1,0,0,0,538,4860, - 1,0,0,0,540,5246,1,0,0,0,542,5248,1,0,0,0,544,5280,1,0,0,0,546,5313, - 1,0,0,0,548,5315,1,0,0,0,550,5317,1,0,0,0,552,5325,1,0,0,0,554,5329, - 1,0,0,0,556,5333,1,0,0,0,558,5339,1,0,0,0,560,5343,1,0,0,0,562,5351, - 1,0,0,0,564,5371,1,0,0,0,566,5542,1,0,0,0,568,5546,1,0,0,0,570,5657, - 1,0,0,0,572,5659,1,0,0,0,574,5664,1,0,0,0,576,5670,1,0,0,0,578,5757, - 1,0,0,0,580,5759,1,0,0,0,582,5761,1,0,0,0,584,5763,1,0,0,0,586,5793, - 1,0,0,0,588,5811,1,0,0,0,590,5813,1,0,0,0,592,5821,1,0,0,0,594,5823, - 1,0,0,0,596,5847,1,0,0,0,598,5907,1,0,0,0,600,5909,1,0,0,0,602,5920, - 1,0,0,0,604,5922,1,0,0,0,606,5926,1,0,0,0,608,5959,1,0,0,0,610,5961, - 1,0,0,0,612,5965,1,0,0,0,614,5969,1,0,0,0,616,5978,1,0,0,0,618,5990, - 1,0,0,0,620,6022,1,0,0,0,622,6024,1,0,0,0,624,6026,1,0,0,0,626,6063, - 1,0,0,0,628,6065,1,0,0,0,630,6067,1,0,0,0,632,6069,1,0,0,0,634,6072, - 1,0,0,0,636,6103,1,0,0,0,638,6116,1,0,0,0,640,6118,1,0,0,0,642,6123, - 1,0,0,0,644,6131,1,0,0,0,646,6134,1,0,0,0,648,6136,1,0,0,0,650,6142, - 1,0,0,0,652,6144,1,0,0,0,654,6171,1,0,0,0,656,6182,1,0,0,0,658,6185, - 1,0,0,0,660,6191,1,0,0,0,662,6199,1,0,0,0,664,6215,1,0,0,0,666,6217, - 1,0,0,0,668,6233,1,0,0,0,670,6235,1,0,0,0,672,6251,1,0,0,0,674,6253, - 1,0,0,0,676,6259,1,0,0,0,678,6280,1,0,0,0,680,6289,1,0,0,0,682,6291, - 1,0,0,0,684,6293,1,0,0,0,686,6307,1,0,0,0,688,6309,1,0,0,0,690,6314, - 1,0,0,0,692,6316,1,0,0,0,694,6331,1,0,0,0,696,6339,1,0,0,0,698,6342, - 1,0,0,0,700,6351,1,0,0,0,702,6390,1,0,0,0,704,6417,1,0,0,0,706,6419, - 1,0,0,0,708,6431,1,0,0,0,710,6434,1,0,0,0,712,6437,1,0,0,0,714,6445, - 1,0,0,0,716,6457,1,0,0,0,718,6460,1,0,0,0,720,6464,1,0,0,0,722,6493, - 1,0,0,0,724,6495,1,0,0,0,726,6504,1,0,0,0,728,6535,1,0,0,0,730,6542, - 1,0,0,0,732,6547,1,0,0,0,734,6555,1,0,0,0,736,6558,1,0,0,0,738,6562, - 1,0,0,0,740,6569,1,0,0,0,742,6608,1,0,0,0,744,6614,1,0,0,0,746,6616, - 1,0,0,0,748,6619,1,0,0,0,750,6666,1,0,0,0,752,6684,1,0,0,0,754,6696, - 1,0,0,0,756,6713,1,0,0,0,758,6715,1,0,0,0,760,6723,1,0,0,0,762,6737, - 1,0,0,0,764,7130,1,0,0,0,766,7132,1,0,0,0,768,7204,1,0,0,0,770,7206, - 1,0,0,0,772,7393,1,0,0,0,774,7395,1,0,0,0,776,7403,1,0,0,0,778,7419, - 1,0,0,0,780,7426,1,0,0,0,782,7428,1,0,0,0,784,7621,1,0,0,0,786,7623, - 1,0,0,0,788,7632,1,0,0,0,790,7640,1,0,0,0,792,7680,1,0,0,0,794,7682, - 1,0,0,0,796,7692,1,0,0,0,798,7700,1,0,0,0,800,7780,1,0,0,0,802,7782, - 1,0,0,0,804,7808,1,0,0,0,806,7811,1,0,0,0,808,7827,1,0,0,0,810,7829, - 1,0,0,0,812,7831,1,0,0,0,814,7833,1,0,0,0,816,7835,1,0,0,0,818,7840, - 1,0,0,0,820,7843,1,0,0,0,822,7850,1,0,0,0,824,7917,1,0,0,0,826,7919, - 1,0,0,0,828,7931,1,0,0,0,830,7933,1,0,0,0,832,7943,1,0,0,0,834,7945, - 1,0,0,0,836,7951,1,0,0,0,838,7983,1,0,0,0,840,7990,1,0,0,0,842,7993, - 1,0,0,0,844,8002,1,0,0,0,846,8005,1,0,0,0,848,8009,1,0,0,0,850,8026, - 1,0,0,0,852,8028,1,0,0,0,854,8030,1,0,0,0,856,8046,1,0,0,0,858,8052, - 1,0,0,0,860,8060,1,0,0,0,862,8062,1,0,0,0,864,8068,1,0,0,0,866,8073, - 1,0,0,0,868,8082,1,0,0,0,870,8108,1,0,0,0,872,8110,1,0,0,0,874,8180, - 1,0,0,0,876,8182,1,0,0,0,878,8184,1,0,0,0,880,8215,1,0,0,0,882,8217, - 1,0,0,0,884,8228,1,0,0,0,886,8257,1,0,0,0,888,8273,1,0,0,0,890,8275, - 1,0,0,0,892,8283,1,0,0,0,894,8285,1,0,0,0,896,8291,1,0,0,0,898,8295, - 1,0,0,0,900,8297,1,0,0,0,902,8299,1,0,0,0,904,8310,1,0,0,0,906,8312, - 1,0,0,0,908,8316,1,0,0,0,910,8320,1,0,0,0,912,8325,1,0,0,0,914,8327, - 1,0,0,0,916,8329,1,0,0,0,918,8333,1,0,0,0,920,8337,1,0,0,0,922,8345, - 1,0,0,0,924,8365,1,0,0,0,926,8376,1,0,0,0,928,8378,1,0,0,0,930,8386, - 1,0,0,0,932,8392,1,0,0,0,934,8396,1,0,0,0,936,8398,1,0,0,0,938,8406, - 1,0,0,0,940,8414,1,0,0,0,942,8439,1,0,0,0,944,8441,1,0,0,0,946,8445, - 1,0,0,0,948,8454,1,0,0,0,950,8466,1,0,0,0,952,8475,1,0,0,0,954,8487, - 1,0,0,0,956,8489,1,0,0,0,958,8497,1,0,0,0,960,8500,1,0,0,0,962,8524, - 1,0,0,0,964,8526,1,0,0,0,966,8530,1,0,0,0,968,8544,1,0,0,0,970,8547, - 1,0,0,0,972,8558,1,0,0,0,974,8574,1,0,0,0,976,8576,1,0,0,0,978,8581, - 1,0,0,0,980,8584,1,0,0,0,982,8599,1,0,0,0,984,8625,1,0,0,0,986,8627, - 1,0,0,0,988,8630,1,0,0,0,990,8638,1,0,0,0,992,8646,1,0,0,0,994,8655, - 1,0,0,0,996,8663,1,0,0,0,998,8667,1,0,0,0,1000,8677,1,0,0,0,1002, - 8708,1,0,0,0,1004,8712,1,0,0,0,1006,8759,1,0,0,0,1008,8774,1,0,0, - 0,1010,8776,1,0,0,0,1012,8780,1,0,0,0,1014,8786,1,0,0,0,1016,8794, - 1,0,0,0,1018,8811,1,0,0,0,1020,8819,1,0,0,0,1022,8836,1,0,0,0,1024, - 8838,1,0,0,0,1026,8840,1,0,0,0,1028,8849,1,0,0,0,1030,8867,1,0,0, - 0,1032,8869,1,0,0,0,1034,8871,1,0,0,0,1036,8873,1,0,0,0,1038,8881, - 1,0,0,0,1040,8883,1,0,0,0,1042,8885,1,0,0,0,1044,8889,1,0,0,0,1046, - 8897,1,0,0,0,1048,8918,1,0,0,0,1050,8920,1,0,0,0,1052,8922,1,0,0, - 0,1054,8928,1,0,0,0,1056,8945,1,0,0,0,1058,8954,1,0,0,0,1060,8956, - 1,0,0,0,1062,8963,1,0,0,0,1064,8967,1,0,0,0,1066,8969,1,0,0,0,1068, - 8971,1,0,0,0,1070,8973,1,0,0,0,1072,8980,1,0,0,0,1074,8997,1,0,0, - 0,1076,8999,1,0,0,0,1078,9002,1,0,0,0,1080,9007,1,0,0,0,1082,9012, - 1,0,0,0,1084,9018,1,0,0,0,1086,9025,1,0,0,0,1088,9027,1,0,0,0,1090, - 9030,1,0,0,0,1092,9034,1,0,0,0,1094,9041,1,0,0,0,1096,9053,1,0,0, - 0,1098,9056,1,0,0,0,1100,9070,1,0,0,0,1102,9073,1,0,0,0,1104,9142, - 1,0,0,0,1106,9166,1,0,0,0,1108,9175,1,0,0,0,1110,9189,1,0,0,0,1112, - 9191,1,0,0,0,1114,9202,1,0,0,0,1116,9225,1,0,0,0,1118,9228,1,0,0, - 0,1120,9267,1,0,0,0,1122,9269,1,0,0,0,1124,9277,1,0,0,0,1126,9285, - 1,0,0,0,1128,9292,1,0,0,0,1130,9300,1,0,0,0,1132,9317,1,0,0,0,1134, - 9319,1,0,0,0,1136,9323,1,0,0,0,1138,9331,1,0,0,0,1140,9336,1,0,0, - 0,1142,9339,1,0,0,0,1144,9342,1,0,0,0,1146,9349,1,0,0,0,1148,9351, - 1,0,0,0,1150,9359,1,0,0,0,1152,9364,1,0,0,0,1154,9385,1,0,0,0,1156, - 9393,1,0,0,0,1158,9403,1,0,0,0,1160,9415,1,0,0,0,1162,9417,1,0,0, - 0,1164,9431,1,0,0,0,1166,9451,1,0,0,0,1168,9460,1,0,0,0,1170,9478, - 1,0,0,0,1172,9484,1,0,0,0,1174,9486,1,0,0,0,1176,9493,1,0,0,0,1178, - 9521,1,0,0,0,1180,9523,1,0,0,0,1182,9529,1,0,0,0,1184,9533,1,0,0, - 0,1186,9535,1,0,0,0,1188,9543,1,0,0,0,1190,9547,1,0,0,0,1192,9554, - 1,0,0,0,1194,9571,1,0,0,0,1196,9573,1,0,0,0,1198,9575,1,0,0,0,1200, - 9585,1,0,0,0,1202,9593,1,0,0,0,1204,9620,1,0,0,0,1206,9622,1,0,0, - 0,1208,9629,1,0,0,0,1210,9632,1,0,0,0,1212,9634,1,0,0,0,1214,9638, - 1,0,0,0,1216,9646,1,0,0,0,1218,9654,1,0,0,0,1220,9662,1,0,0,0,1222, - 9671,1,0,0,0,1224,9675,1,0,0,0,1226,9679,1,0,0,0,1228,9705,1,0,0, - 0,1230,9719,1,0,0,0,1232,9739,1,0,0,0,1234,9749,1,0,0,0,1236,9753, - 1,0,0,0,1238,9761,1,0,0,0,1240,9769,1,0,0,0,1242,9775,1,0,0,0,1244, - 9779,1,0,0,0,1246,9786,1,0,0,0,1248,9791,1,0,0,0,1250,9806,1,0,0, - 0,1252,9886,1,0,0,0,1254,9888,1,0,0,0,1256,9890,1,0,0,0,1258,9929, - 1,0,0,0,1260,9933,1,0,0,0,1262,10119,1,0,0,0,1264,10126,1,0,0,0, - 1266,10138,1,0,0,0,1268,10140,1,0,0,0,1270,10145,1,0,0,0,1272,10153, - 1,0,0,0,1274,10158,1,0,0,0,1276,10164,1,0,0,0,1278,10181,1,0,0,0, - 1280,10183,1,0,0,0,1282,10186,1,0,0,0,1284,10192,1,0,0,0,1286,10198, - 1,0,0,0,1288,10201,1,0,0,0,1290,10209,1,0,0,0,1292,10213,1,0,0,0, - 1294,10218,1,0,0,0,1296,10233,1,0,0,0,1298,10235,1,0,0,0,1300,10254, - 1,0,0,0,1302,10262,1,0,0,0,1304,10271,1,0,0,0,1306,10273,1,0,0,0, - 1308,10294,1,0,0,0,1310,10296,1,0,0,0,1312,10303,1,0,0,0,1314,10309, - 1,0,0,0,1316,10313,1,0,0,0,1318,10315,1,0,0,0,1320,10323,1,0,0,0, - 1322,10331,1,0,0,0,1324,10345,1,0,0,0,1326,10347,1,0,0,0,1328,10355, - 1,0,0,0,1330,10363,1,0,0,0,1332,10376,1,0,0,0,1334,10380,1,0,0,0, - 1336,10382,1,0,0,0,1338,10395,1,0,0,0,1340,10397,1,0,0,0,1342,10405, - 1,0,0,0,1344,10412,1,0,0,0,1346,10420,1,0,0,0,1348,10432,1,0,0,0, - 1350,10434,1,0,0,0,1352,10436,1,0,0,0,1354,10445,1,0,0,0,1356,10476, - 1,0,0,0,1358,10485,1,0,0,0,1360,10492,1,0,0,0,1362,10494,1,0,0,0, - 1364,10505,1,0,0,0,1366,10509,1,0,0,0,1368,10514,1,0,0,0,1370,10517, - 1,0,0,0,1372,10519,1,0,0,0,1374,10540,1,0,0,0,1376,10542,1,0,0,0, - 1378,10545,1,0,0,0,1380,10552,1,0,0,0,1382,10555,1,0,0,0,1384,10557, - 1,0,0,0,1386,10573,1,0,0,0,1388,10575,1,0,0,0,1390,10583,1,0,0,0, - 1392,10591,1,0,0,0,1394,10599,1,0,0,0,1396,10607,1,0,0,0,1398,10615, - 1,0,0,0,1400,10619,1,0,0,0,1402,10623,1,0,0,0,1404,10627,1,0,0,0, - 1406,10631,1,0,0,0,1408,10635,1,0,0,0,1410,10639,1,0,0,0,1412,10643, - 1,0,0,0,1414,10651,1,0,0,0,1416,10659,1,0,0,0,1418,10663,1,0,0,0, - 1420,10667,1,0,0,0,1422,10671,1,0,0,0,1424,10673,1,0,0,0,1426,10679, - 1,0,0,0,1428,10685,1,0,0,0,1430,10687,1,0,0,0,1432,10694,1,0,0,0, - 1434,10696,1,0,0,0,1436,10698,1,0,0,0,1438,10700,1,0,0,0,1440,10706, - 1,0,0,0,1442,10712,1,0,0,0,1444,10718,1,0,0,0,1446,10755,1,0,0,0, - 1448,10757,1,0,0,0,1450,10759,1,0,0,0,1452,10761,1,0,0,0,1454,10763, - 1,0,0,0,1456,10765,1,0,0,0,1458,10780,1,0,0,0,1460,10782,1,0,0,0, - 1462,10790,1,0,0,0,1464,10792,1,0,0,0,1466,10794,1,0,0,0,1468,10801, - 1,0,0,0,1470,10803,1,0,0,0,1472,10815,1,0,0,0,1474,10817,1,0,0,0, - 1476,10831,1,0,0,0,1478,10835,1,0,0,0,1480,10844,1,0,0,0,1482,10850, - 1,0,0,0,1484,10854,1,0,0,0,1486,10860,1,0,0,0,1488,10868,1,0,0,0, - 1490,10880,1,0,0,0,1492,10882,1,0,0,0,1494,10884,1,0,0,0,1496,10937, - 1,0,0,0,1498,10939,1,0,0,0,1500,10941,1,0,0,0,1502,10943,1,0,0,0, - 1504,10950,1,0,0,0,1506,10973,1,0,0,0,1508,10975,1,0,0,0,1510,10981, - 1,0,0,0,1512,10985,1,0,0,0,1514,10987,1,0,0,0,1516,10994,1,0,0,0, - 1518,11001,1,0,0,0,1520,11004,1,0,0,0,1522,11008,1,0,0,0,1524,11015, - 1,0,0,0,1526,11017,1,0,0,0,1528,11041,1,0,0,0,1530,11043,1,0,0,0, - 1532,11050,1,0,0,0,1534,11052,1,0,0,0,1536,11060,1,0,0,0,1538,11063, - 1,0,0,0,1540,11067,1,0,0,0,1542,11069,1,0,0,0,1544,11073,1,0,0,0, - 1546,11075,1,0,0,0,1548,11080,1,0,0,0,1550,11085,1,0,0,0,1552,11091, - 1,0,0,0,1554,11095,1,0,0,0,1556,11097,1,0,0,0,1558,11102,1,0,0,0, - 1560,11132,1,0,0,0,1562,11134,1,0,0,0,1564,11154,1,0,0,0,1566,11158, - 1,0,0,0,1568,11160,1,0,0,0,1570,11165,1,0,0,0,1572,11174,1,0,0,0, - 1574,11176,1,0,0,0,1576,11184,1,0,0,0,1578,11188,1,0,0,0,1580,11190, - 1,0,0,0,1582,11194,1,0,0,0,1584,11205,1,0,0,0,1586,11222,1,0,0,0, - 1588,11228,1,0,0,0,1590,11230,1,0,0,0,1592,11240,1,0,0,0,1594,11243, - 1,0,0,0,1596,11247,1,0,0,0,1598,11255,1,0,0,0,1600,11257,1,0,0,0, - 1602,11260,1,0,0,0,1604,11265,1,0,0,0,1606,11270,1,0,0,0,1608,11292, - 1,0,0,0,1610,11306,1,0,0,0,1612,11310,1,0,0,0,1614,11315,1,0,0,0, - 1616,11317,1,0,0,0,1618,11319,1,0,0,0,1620,11331,1,0,0,0,1622,11333, - 1,0,0,0,1624,11340,1,0,0,0,1626,11342,1,0,0,0,1628,11360,1,0,0,0, - 1630,11396,1,0,0,0,1632,11398,1,0,0,0,1634,11407,1,0,0,0,1636,11412, - 1,0,0,0,1638,11414,1,0,0,0,1640,11418,1,0,0,0,1642,11426,1,0,0,0, - 1644,11434,1,0,0,0,1646,11436,1,0,0,0,1648,11443,1,0,0,0,1650,11446, - 1,0,0,0,1652,11462,1,0,0,0,1654,11464,1,0,0,0,1656,11478,1,0,0,0, - 1658,11480,1,0,0,0,1660,11507,1,0,0,0,1662,11509,1,0,0,0,1664,11520, - 1,0,0,0,1666,11526,1,0,0,0,1668,11530,1,0,0,0,1670,11532,1,0,0,0, - 1672,11542,1,0,0,0,1674,11547,1,0,0,0,1676,11564,1,0,0,0,1678,11566, - 1,0,0,0,1680,11574,1,0,0,0,1682,11611,1,0,0,0,1684,11619,1,0,0,0, - 1686,11647,1,0,0,0,1688,11649,1,0,0,0,1690,11663,1,0,0,0,1692,11685, - 1,0,0,0,1694,11687,1,0,0,0,1696,11700,1,0,0,0,1698,11702,1,0,0,0, - 1700,11706,1,0,0,0,1702,11709,1,0,0,0,1704,11715,1,0,0,0,1706,11721, - 1,0,0,0,1708,11739,1,0,0,0,1710,11743,1,0,0,0,1712,11748,1,0,0,0, - 1714,11751,1,0,0,0,1716,11755,1,0,0,0,1718,11760,1,0,0,0,1720,11771, - 1,0,0,0,1722,11775,1,0,0,0,1724,11779,1,0,0,0,1726,11783,1,0,0,0, - 1728,11785,1,0,0,0,1730,11790,1,0,0,0,1732,11792,1,0,0,0,1734,11795, - 1,0,0,0,1736,11815,1,0,0,0,1738,11817,1,0,0,0,1740,11819,1,0,0,0, - 1742,11821,1,0,0,0,1744,11823,1,0,0,0,1746,11827,1,0,0,0,1748,1750, - 3,4,2,0,1749,1748,1,0,0,0,1750,1753,1,0,0,0,1751,1749,1,0,0,0,1751, - 1752,1,0,0,0,1752,1754,1,0,0,0,1753,1751,1,0,0,0,1754,1755,5,0,0, - 1,1755,1,1,0,0,0,1756,1757,3,1502,751,0,1757,3,1,0,0,0,1758,1760, - 3,6,3,0,1759,1761,5,7,0,0,1760,1759,1,0,0,0,1760,1761,1,0,0,0,1761, - 5,1,0,0,0,1762,1880,3,486,243,0,1763,1880,3,862,431,0,1764,1880, - 3,854,427,0,1765,1880,3,856,428,0,1766,1880,3,614,307,0,1767,1880, - 3,868,434,0,1768,1880,3,512,256,0,1769,1880,3,348,174,0,1770,1880, - 3,354,177,0,1771,1880,3,364,182,0,1772,1880,3,390,195,0,1773,1880, - 3,714,357,0,1774,1880,3,42,21,0,1775,1880,3,768,384,0,1776,1880, - 3,772,386,0,1777,1880,3,784,392,0,1778,1880,3,774,387,0,1779,1880, - 3,782,391,0,1780,1880,3,408,204,0,1781,1880,3,410,205,0,1782,1880, - 3,308,154,0,1783,1880,3,864,432,0,1784,1880,3,104,52,0,1785,1880, - 3,762,381,0,1786,1880,3,150,75,0,1787,1880,3,792,396,0,1788,1880, - 3,30,15,0,1789,1880,3,32,16,0,1790,1880,3,26,13,0,1791,1880,3,800, - 400,0,1792,1880,3,290,145,0,1793,1880,3,874,437,0,1794,1880,3,872, - 436,0,1795,1880,3,404,202,0,1796,1880,3,888,444,0,1797,1880,3,10, - 5,0,1798,1880,3,100,50,0,1799,1880,3,156,78,0,1800,1880,3,880,440, - 0,1801,1880,3,566,283,0,1802,1880,3,94,47,0,1803,1880,3,158,79,0, - 1804,1880,3,430,215,0,1805,1880,3,292,146,0,1806,1880,3,490,245, - 0,1807,1880,3,742,371,0,1808,1880,3,878,439,0,1809,1880,3,866,433, - 0,1810,1880,3,342,171,0,1811,1880,3,356,178,0,1812,1880,3,382,191, - 0,1813,1880,3,392,196,0,1814,1880,3,652,326,0,1815,1880,3,40,20, - 0,1816,1880,3,298,149,0,1817,1880,3,516,258,0,1818,1880,3,530,265, - 0,1819,1880,3,786,393,0,1820,1880,3,532,266,0,1821,1880,3,406,203, - 0,1822,1880,3,324,162,0,1823,1880,3,46,23,0,1824,1880,3,306,153, - 0,1825,1880,3,188,94,0,1826,1880,3,794,397,0,1827,1880,3,288,144, - 0,1828,1880,3,338,169,0,1829,1880,3,748,374,0,1830,1880,3,434,217, - 0,1831,1880,3,478,239,0,1832,1880,3,12,6,0,1833,1880,3,24,12,0,1834, - 1880,3,400,200,0,1835,1880,3,842,421,0,1836,1880,3,946,473,0,1837, - 1880,3,990,495,0,1838,1880,3,492,246,0,1839,1880,3,966,483,0,1840, - 1880,3,102,51,0,1841,1880,3,736,368,0,1842,1880,3,540,270,0,1843, - 1880,3,942,471,0,1844,1880,3,924,462,0,1845,1880,3,576,288,0,1846, - 1880,3,584,292,0,1847,1880,3,606,303,0,1848,1880,3,1680,840,0,1849, - 1880,3,394,197,0,1850,1880,3,624,312,0,1851,1880,3,948,474,0,1852, - 1880,3,820,410,0,1853,1880,3,304,152,0,1854,1880,3,840,420,0,1855, - 1880,3,970,485,0,1856,1880,3,816,408,0,1857,1880,3,936,468,0,1858, - 1880,3,538,269,0,1859,1880,3,752,376,0,1860,1880,3,724,362,0,1861, - 1880,3,722,361,0,1862,1880,3,726,363,0,1863,1880,3,764,382,0,1864, - 1880,3,586,293,0,1865,1880,3,608,304,0,1866,1880,3,802,401,0,1867, - 1880,3,570,285,0,1868,1880,3,998,499,0,1869,1880,3,824,412,0,1870, - 1880,3,562,281,0,1871,1880,3,822,411,0,1872,1880,3,980,490,0,1873, - 1880,3,886,443,0,1874,1880,3,82,41,0,1875,1880,3,54,27,0,1876,1880, - 3,92,46,0,1877,1880,3,836,418,0,1878,1880,3,8,4,0,1879,1762,1,0, - 0,0,1879,1763,1,0,0,0,1879,1764,1,0,0,0,1879,1765,1,0,0,0,1879,1766, - 1,0,0,0,1879,1767,1,0,0,0,1879,1768,1,0,0,0,1879,1769,1,0,0,0,1879, - 1770,1,0,0,0,1879,1771,1,0,0,0,1879,1772,1,0,0,0,1879,1773,1,0,0, - 0,1879,1774,1,0,0,0,1879,1775,1,0,0,0,1879,1776,1,0,0,0,1879,1777, - 1,0,0,0,1879,1778,1,0,0,0,1879,1779,1,0,0,0,1879,1780,1,0,0,0,1879, - 1781,1,0,0,0,1879,1782,1,0,0,0,1879,1783,1,0,0,0,1879,1784,1,0,0, - 0,1879,1785,1,0,0,0,1879,1786,1,0,0,0,1879,1787,1,0,0,0,1879,1788, - 1,0,0,0,1879,1789,1,0,0,0,1879,1790,1,0,0,0,1879,1791,1,0,0,0,1879, - 1792,1,0,0,0,1879,1793,1,0,0,0,1879,1794,1,0,0,0,1879,1795,1,0,0, - 0,1879,1796,1,0,0,0,1879,1797,1,0,0,0,1879,1798,1,0,0,0,1879,1799, - 1,0,0,0,1879,1800,1,0,0,0,1879,1801,1,0,0,0,1879,1802,1,0,0,0,1879, - 1803,1,0,0,0,1879,1804,1,0,0,0,1879,1805,1,0,0,0,1879,1806,1,0,0, - 0,1879,1807,1,0,0,0,1879,1808,1,0,0,0,1879,1809,1,0,0,0,1879,1810, - 1,0,0,0,1879,1811,1,0,0,0,1879,1812,1,0,0,0,1879,1813,1,0,0,0,1879, - 1814,1,0,0,0,1879,1815,1,0,0,0,1879,1816,1,0,0,0,1879,1817,1,0,0, - 0,1879,1818,1,0,0,0,1879,1819,1,0,0,0,1879,1820,1,0,0,0,1879,1821, - 1,0,0,0,1879,1822,1,0,0,0,1879,1823,1,0,0,0,1879,1824,1,0,0,0,1879, - 1825,1,0,0,0,1879,1826,1,0,0,0,1879,1827,1,0,0,0,1879,1828,1,0,0, - 0,1879,1829,1,0,0,0,1879,1830,1,0,0,0,1879,1831,1,0,0,0,1879,1832, - 1,0,0,0,1879,1833,1,0,0,0,1879,1834,1,0,0,0,1879,1835,1,0,0,0,1879, - 1836,1,0,0,0,1879,1837,1,0,0,0,1879,1838,1,0,0,0,1879,1839,1,0,0, - 0,1879,1840,1,0,0,0,1879,1841,1,0,0,0,1879,1842,1,0,0,0,1879,1843, - 1,0,0,0,1879,1844,1,0,0,0,1879,1845,1,0,0,0,1879,1846,1,0,0,0,1879, - 1847,1,0,0,0,1879,1848,1,0,0,0,1879,1849,1,0,0,0,1879,1850,1,0,0, - 0,1879,1851,1,0,0,0,1879,1852,1,0,0,0,1879,1853,1,0,0,0,1879,1854, - 1,0,0,0,1879,1855,1,0,0,0,1879,1856,1,0,0,0,1879,1857,1,0,0,0,1879, - 1858,1,0,0,0,1879,1859,1,0,0,0,1879,1860,1,0,0,0,1879,1861,1,0,0, - 0,1879,1862,1,0,0,0,1879,1863,1,0,0,0,1879,1864,1,0,0,0,1879,1865, - 1,0,0,0,1879,1866,1,0,0,0,1879,1867,1,0,0,0,1879,1868,1,0,0,0,1879, - 1869,1,0,0,0,1879,1870,1,0,0,0,1879,1871,1,0,0,0,1879,1872,1,0,0, - 0,1879,1873,1,0,0,0,1879,1874,1,0,0,0,1879,1875,1,0,0,0,1879,1876, - 1,0,0,0,1879,1877,1,0,0,0,1879,1878,1,0,0,0,1880,7,1,0,0,0,1881, - 1883,5,581,0,0,1882,1884,5,582,0,0,1883,1882,1,0,0,0,1883,1884,1, - 0,0,0,1884,9,1,0,0,0,1885,1886,5,433,0,0,1886,1887,3,1256,628,0, - 1887,11,1,0,0,0,1888,1889,5,46,0,0,1889,1890,5,318,0,0,1890,1892, - 3,1466,733,0,1891,1893,3,14,7,0,1892,1891,1,0,0,0,1892,1893,1,0, - 0,0,1893,1894,1,0,0,0,1894,1895,3,16,8,0,1895,13,1,0,0,0,1896,1897, - 5,105,0,0,1897,15,1,0,0,0,1898,1900,3,22,11,0,1899,1898,1,0,0,0, - 1900,1903,1,0,0,0,1901,1899,1,0,0,0,1901,1902,1,0,0,0,1902,17,1, - 0,0,0,1903,1901,1,0,0,0,1904,1906,3,20,10,0,1905,1904,1,0,0,0,1906, - 1909,1,0,0,0,1907,1905,1,0,0,0,1907,1908,1,0,0,0,1908,19,1,0,0,0, - 1909,1907,1,0,0,0,1910,1913,5,287,0,0,1911,1914,3,1456,728,0,1912, - 1914,5,78,0,0,1913,1911,1,0,0,0,1913,1912,1,0,0,0,1914,1946,1,0, - 0,0,1915,1916,7,0,0,0,1916,1917,5,287,0,0,1917,1946,3,1456,728,0, - 1918,1946,7,1,0,0,1919,1946,7,2,0,0,1920,1946,7,3,0,0,1921,1946, - 7,4,0,0,1922,1946,7,5,0,0,1923,1946,7,6,0,0,1924,1946,7,7,0,0,1925, - 1946,7,8,0,0,1926,1927,5,164,0,0,1927,1928,5,74,0,0,1928,1946,3, - 1462,731,0,1929,1930,5,371,0,0,1930,1931,5,368,0,0,1931,1946,3,1456, - 728,0,1932,1933,5,68,0,0,1933,1934,5,318,0,0,1934,1946,3,1414,707, - 0,1935,1936,5,68,0,0,1936,1937,5,66,0,0,1937,1946,3,1414,707,0,1938, - 1939,5,318,0,0,1939,1946,3,1470,735,0,1940,1941,5,134,0,0,1941,1946, - 3,1414,707,0,1942,1943,5,99,0,0,1943,1946,3,1470,735,0,1944,1946, - 3,1490,745,0,1945,1910,1,0,0,0,1945,1915,1,0,0,0,1945,1918,1,0,0, - 0,1945,1919,1,0,0,0,1945,1920,1,0,0,0,1945,1921,1,0,0,0,1945,1922, - 1,0,0,0,1945,1923,1,0,0,0,1945,1924,1,0,0,0,1945,1925,1,0,0,0,1945, - 1926,1,0,0,0,1945,1929,1,0,0,0,1945,1932,1,0,0,0,1945,1935,1,0,0, - 0,1945,1938,1,0,0,0,1945,1940,1,0,0,0,1945,1942,1,0,0,0,1945,1944, - 1,0,0,0,1946,21,1,0,0,0,1947,1958,3,20,10,0,1948,1949,5,348,0,0, - 1949,1958,3,1454,727,0,1950,1951,5,134,0,0,1951,1958,3,1470,735, - 0,1952,1953,5,318,0,0,1953,1958,3,1470,735,0,1954,1955,5,68,0,0, - 1955,1956,7,9,0,0,1956,1958,3,1470,735,0,1957,1947,1,0,0,0,1957, - 1948,1,0,0,0,1957,1950,1,0,0,0,1957,1952,1,0,0,0,1957,1954,1,0,0, - 0,1958,23,1,0,0,0,1959,1960,5,46,0,0,1960,1961,5,99,0,0,1961,1963, - 3,1466,733,0,1962,1964,3,14,7,0,1963,1962,1,0,0,0,1963,1964,1,0, - 0,0,1964,1965,1,0,0,0,1965,1966,3,16,8,0,1966,25,1,0,0,0,1967,1968, - 5,138,0,0,1968,1969,7,10,0,0,1969,1971,3,1468,734,0,1970,1972,3, - 14,7,0,1971,1970,1,0,0,0,1971,1972,1,0,0,0,1972,1973,1,0,0,0,1973, - 1974,3,18,9,0,1974,27,1,0,0,0,1975,1980,1,0,0,0,1976,1977,5,68,0, - 0,1977,1978,5,175,0,0,1978,1980,3,1418,709,0,1979,1975,1,0,0,0,1979, - 1976,1,0,0,0,1980,29,1,0,0,0,1981,1982,5,138,0,0,1982,1985,7,10, - 0,0,1983,1986,5,30,0,0,1984,1986,3,1468,734,0,1985,1983,1,0,0,0, - 1985,1984,1,0,0,0,1986,1987,1,0,0,0,1987,1988,3,28,14,0,1988,1989, - 3,88,44,0,1989,31,1,0,0,0,1990,1991,5,138,0,0,1991,1992,5,442,0, - 0,1992,1994,3,1424,712,0,1993,1995,3,658,329,0,1994,1993,1,0,0,0, - 1994,1995,1,0,0,0,1995,1996,1,0,0,0,1996,1997,3,34,17,0,1997,33, - 1,0,0,0,1998,2000,3,36,18,0,1999,2001,5,315,0,0,2000,1999,1,0,0, - 0,2000,2001,1,0,0,0,2001,2019,1,0,0,0,2002,2003,5,309,0,0,2003,2004, - 5,94,0,0,2004,2019,3,1422,711,0,2005,2006,5,282,0,0,2006,2007,5, - 94,0,0,2007,2019,3,1468,734,0,2008,2009,5,333,0,0,2009,2010,5,323, - 0,0,2010,2019,3,48,24,0,2011,2013,5,269,0,0,2012,2011,1,0,0,0,2012, - 2013,1,0,0,0,2013,2014,1,0,0,0,2014,2015,5,462,0,0,2015,2016,5,80, - 0,0,2016,2017,5,204,0,0,2017,2019,3,1434,717,0,2018,1998,1,0,0,0, - 2018,2002,1,0,0,0,2018,2005,1,0,0,0,2018,2008,1,0,0,0,2018,2012, - 1,0,0,0,2019,35,1,0,0,0,2020,2024,3,38,19,0,2021,2023,3,38,19,0, - 2022,2021,1,0,0,0,2023,2026,1,0,0,0,2024,2022,1,0,0,0,2024,2025, - 1,0,0,0,2025,37,1,0,0,0,2026,2024,1,0,0,0,2027,2069,5,222,0,0,2028, - 2069,5,338,0,0,2029,2069,5,377,0,0,2030,2032,5,77,0,0,2031,2030, - 1,0,0,0,2031,2032,1,0,0,0,2032,2033,1,0,0,0,2033,2069,5,250,0,0, - 2034,2036,5,205,0,0,2035,2034,1,0,0,0,2035,2036,1,0,0,0,2036,2037, - 1,0,0,0,2037,2038,5,327,0,0,2038,2045,5,243,0,0,2039,2041,5,205, - 0,0,2040,2039,1,0,0,0,2040,2041,1,0,0,0,2041,2042,1,0,0,0,2042,2043, - 5,327,0,0,2043,2045,5,181,0,0,2044,2035,1,0,0,0,2044,2040,1,0,0, - 0,2045,2069,1,0,0,0,2046,2047,5,460,0,0,2047,2069,7,11,0,0,2048, - 2049,5,170,0,0,2049,2069,3,1436,718,0,2050,2051,5,320,0,0,2051,2069, - 3,1434,717,0,2052,2053,5,333,0,0,2053,2054,3,1434,717,0,2054,2057, - 7,12,0,0,2055,2058,3,1434,717,0,2056,2058,5,53,0,0,2057,2055,1,0, - 0,0,2057,2056,1,0,0,0,2058,2069,1,0,0,0,2059,2060,5,333,0,0,2060, - 2061,3,1434,717,0,2061,2062,5,64,0,0,2062,2063,5,434,0,0,2063,2069, - 1,0,0,0,2064,2065,5,313,0,0,2065,2069,3,1434,717,0,2066,2067,5,313, - 0,0,2067,2069,5,30,0,0,2068,2027,1,0,0,0,2068,2028,1,0,0,0,2068, - 2029,1,0,0,0,2068,2031,1,0,0,0,2068,2044,1,0,0,0,2068,2046,1,0,0, - 0,2068,2048,1,0,0,0,2068,2050,1,0,0,0,2068,2052,1,0,0,0,2068,2059, - 1,0,0,0,2068,2064,1,0,0,0,2068,2066,1,0,0,0,2069,39,1,0,0,0,2070, - 2071,5,46,0,0,2071,2072,5,66,0,0,2072,2074,3,1464,732,0,2073,2075, - 3,14,7,0,2074,2073,1,0,0,0,2074,2075,1,0,0,0,2075,2076,1,0,0,0,2076, - 2077,3,16,8,0,2077,41,1,0,0,0,2078,2079,5,138,0,0,2079,2080,5,66, - 0,0,2080,2081,3,1468,734,0,2081,2082,3,44,22,0,2082,2083,5,99,0, - 0,2083,2084,3,1470,735,0,2084,43,1,0,0,0,2085,2086,7,13,0,0,2086, - 45,1,0,0,0,2087,2088,5,46,0,0,2088,2090,5,323,0,0,2089,2091,3,514, - 257,0,2090,2089,1,0,0,0,2090,2091,1,0,0,0,2091,2098,1,0,0,0,2092, - 2094,3,48,24,0,2093,2092,1,0,0,0,2093,2094,1,0,0,0,2094,2095,1,0, - 0,0,2095,2096,5,106,0,0,2096,2099,3,1468,734,0,2097,2099,3,48,24, - 0,2098,2093,1,0,0,0,2098,2097,1,0,0,0,2099,2100,1,0,0,0,2100,2101, - 3,50,25,0,2101,47,1,0,0,0,2102,2104,3,1472,736,0,2103,2105,3,558, - 279,0,2104,2103,1,0,0,0,2104,2105,1,0,0,0,2105,49,1,0,0,0,2106,2108, - 3,52,26,0,2107,2106,1,0,0,0,2108,2111,1,0,0,0,2109,2107,1,0,0,0, - 2109,2110,1,0,0,0,2110,51,1,0,0,0,2111,2109,1,0,0,0,2112,2119,3, - 188,94,0,2113,2119,3,624,312,0,2114,2119,3,306,153,0,2115,2119,3, - 434,217,0,2116,2119,3,584,292,0,2117,2119,3,836,418,0,2118,2112, - 1,0,0,0,2118,2113,1,0,0,0,2118,2114,1,0,0,0,2118,2115,1,0,0,0,2118, - 2116,1,0,0,0,2118,2117,1,0,0,0,2119,53,1,0,0,0,2120,2122,5,333,0, - 0,2121,2123,7,14,0,0,2122,2121,1,0,0,0,2122,2123,1,0,0,0,2123,2124, - 1,0,0,0,2124,2125,3,56,28,0,2125,55,1,0,0,0,2126,2127,5,356,0,0, - 2127,2135,3,830,415,0,2128,2129,5,332,0,0,2129,2130,5,154,0,0,2130, - 2131,5,36,0,0,2131,2132,5,356,0,0,2132,2135,3,830,415,0,2133,2135, - 3,60,30,0,2134,2126,1,0,0,0,2134,2128,1,0,0,0,2134,2133,1,0,0,0, - 2135,57,1,0,0,0,2136,2139,5,30,0,0,2137,2139,3,62,31,0,2138,2136, - 1,0,0,0,2138,2137,1,0,0,0,2139,2141,1,0,0,0,2140,2142,7,12,0,0,2141, - 2140,1,0,0,0,2141,2142,1,0,0,0,2142,2145,1,0,0,0,2143,2146,5,53, - 0,0,2144,2146,3,64,32,0,2145,2143,1,0,0,0,2145,2144,1,0,0,0,2145, - 2146,1,0,0,0,2146,59,1,0,0,0,2147,2148,5,418,0,0,2148,2149,5,386, - 0,0,2149,2175,3,74,37,0,2150,2151,5,152,0,0,2151,2175,3,1456,728, - 0,2152,2153,5,323,0,0,2153,2175,3,1420,710,0,2154,2156,5,267,0,0, - 2155,2157,3,76,38,0,2156,2155,1,0,0,0,2156,2157,1,0,0,0,2157,2175, - 1,0,0,0,2158,2159,5,318,0,0,2159,2175,3,80,40,0,2160,2161,5,332, - 0,0,2161,2162,5,106,0,0,2162,2175,3,80,40,0,2163,2164,5,383,0,0, - 2164,2165,5,279,0,0,2165,2175,3,1274,637,0,2166,2167,5,356,0,0,2167, - 2168,5,337,0,0,2168,2175,3,1456,728,0,2169,2170,3,62,31,0,2170,2171, - 5,64,0,0,2171,2172,5,434,0,0,2172,2175,1,0,0,0,2173,2175,3,58,29, - 0,2174,2147,1,0,0,0,2174,2150,1,0,0,0,2174,2152,1,0,0,0,2174,2154, - 1,0,0,0,2174,2158,1,0,0,0,2174,2160,1,0,0,0,2174,2163,1,0,0,0,2174, - 2166,1,0,0,0,2174,2169,1,0,0,0,2174,2173,1,0,0,0,2175,61,1,0,0,0, - 2176,2181,3,1472,736,0,2177,2178,5,11,0,0,2178,2180,3,1472,736,0, - 2179,2177,1,0,0,0,2180,2183,1,0,0,0,2181,2179,1,0,0,0,2181,2182, - 1,0,0,0,2182,63,1,0,0,0,2183,2181,1,0,0,0,2184,2189,3,66,33,0,2185, - 2186,5,6,0,0,2186,2188,3,66,33,0,2187,2185,1,0,0,0,2188,2191,1,0, - 0,0,2189,2187,1,0,0,0,2189,2190,1,0,0,0,2190,65,1,0,0,0,2191,2189, - 1,0,0,0,2192,2195,3,72,36,0,2193,2195,3,320,160,0,2194,2192,1,0, - 0,0,2194,2193,1,0,0,0,2195,67,1,0,0,0,2196,2197,5,300,0,0,2197,2202, - 7,15,0,0,2198,2199,5,310,0,0,2199,2202,5,300,0,0,2200,2202,5,330, - 0,0,2201,2196,1,0,0,0,2201,2198,1,0,0,0,2201,2200,1,0,0,0,2202,69, - 1,0,0,0,2203,2208,5,96,0,0,2204,2208,5,60,0,0,2205,2208,5,80,0,0, - 2206,2208,3,78,39,0,2207,2203,1,0,0,0,2207,2204,1,0,0,0,2207,2205, - 1,0,0,0,2207,2206,1,0,0,0,2208,71,1,0,0,0,2209,2214,5,96,0,0,2210, - 2214,5,60,0,0,2211,2214,5,80,0,0,2212,2214,3,80,40,0,2213,2209,1, - 0,0,0,2213,2210,1,0,0,0,2213,2211,1,0,0,0,2213,2212,1,0,0,0,2214, - 73,1,0,0,0,2215,2232,3,1456,728,0,2216,2232,3,1490,745,0,2217,2218, - 3,1200,600,0,2218,2220,3,1456,728,0,2219,2221,3,1204,602,0,2220, - 2219,1,0,0,0,2220,2221,1,0,0,0,2221,2232,1,0,0,0,2222,2223,3,1200, - 600,0,2223,2224,5,2,0,0,2224,2225,3,1454,727,0,2225,2226,5,3,0,0, - 2226,2227,3,1456,728,0,2227,2232,1,0,0,0,2228,2232,3,320,160,0,2229, - 2232,5,53,0,0,2230,2232,5,254,0,0,2231,2215,1,0,0,0,2231,2216,1, - 0,0,0,2231,2217,1,0,0,0,2231,2222,1,0,0,0,2231,2228,1,0,0,0,2231, - 2229,1,0,0,0,2231,2230,1,0,0,0,2232,75,1,0,0,0,2233,2236,3,1456, - 728,0,2234,2236,5,53,0,0,2235,2233,1,0,0,0,2235,2234,1,0,0,0,2236, - 77,1,0,0,0,2237,2240,3,1484,742,0,2238,2240,3,1456,728,0,2239,2237, - 1,0,0,0,2239,2238,1,0,0,0,2240,79,1,0,0,0,2241,2244,3,1486,743,0, - 2242,2244,3,1456,728,0,2243,2241,1,0,0,0,2243,2242,1,0,0,0,2244, - 81,1,0,0,0,2245,2246,5,313,0,0,2246,2247,3,84,42,0,2247,83,1,0,0, - 0,2248,2249,5,418,0,0,2249,2257,5,386,0,0,2250,2251,5,356,0,0,2251, - 2252,5,244,0,0,2252,2257,5,251,0,0,2253,2254,5,332,0,0,2254,2257, - 5,106,0,0,2255,2257,3,86,43,0,2256,2248,1,0,0,0,2256,2250,1,0,0, - 0,2256,2253,1,0,0,0,2256,2255,1,0,0,0,2257,85,1,0,0,0,2258,2261, - 5,30,0,0,2259,2261,3,62,31,0,2260,2258,1,0,0,0,2260,2259,1,0,0,0, - 2261,87,1,0,0,0,2262,2263,5,333,0,0,2263,2266,3,56,28,0,2264,2266, - 3,82,41,0,2265,2262,1,0,0,0,2265,2264,1,0,0,0,2266,89,1,0,0,0,2267, - 2268,5,333,0,0,2268,2271,3,60,30,0,2269,2271,3,82,41,0,2270,2267, - 1,0,0,0,2270,2269,1,0,0,0,2271,91,1,0,0,0,2272,2282,5,335,0,0,2273, - 2283,3,62,31,0,2274,2275,5,418,0,0,2275,2283,5,386,0,0,2276,2277, - 5,356,0,0,2277,2278,5,244,0,0,2278,2283,5,251,0,0,2279,2280,5,332, - 0,0,2280,2283,5,106,0,0,2281,2283,5,30,0,0,2282,2273,1,0,0,0,2282, - 2274,1,0,0,0,2282,2276,1,0,0,0,2282,2279,1,0,0,0,2282,2281,1,0,0, - 0,2283,93,1,0,0,0,2284,2285,5,333,0,0,2285,2286,5,165,0,0,2286,2287, - 3,96,48,0,2287,2288,3,98,49,0,2288,95,1,0,0,0,2289,2292,5,30,0,0, - 2290,2292,3,1388,694,0,2291,2289,1,0,0,0,2291,2290,1,0,0,0,2292, - 97,1,0,0,0,2293,2294,7,16,0,0,2294,99,1,0,0,0,2295,2296,5,155,0, - 0,2296,101,1,0,0,0,2297,2298,5,187,0,0,2298,2299,7,17,0,0,2299,103, - 1,0,0,0,2300,2301,5,138,0,0,2301,2303,5,92,0,0,2302,2304,3,746,373, - 0,2303,2302,1,0,0,0,2303,2304,1,0,0,0,2304,2305,1,0,0,0,2305,2308, - 3,1116,558,0,2306,2309,3,106,53,0,2307,2309,3,116,58,0,2308,2306, - 1,0,0,0,2308,2307,1,0,0,0,2309,2434,1,0,0,0,2310,2311,5,138,0,0, - 2311,2312,5,92,0,0,2312,2313,5,30,0,0,2313,2314,5,68,0,0,2314,2315, - 5,351,0,0,2315,2319,3,1400,700,0,2316,2317,5,281,0,0,2317,2318,5, - 147,0,0,2318,2320,3,1470,735,0,2319,2316,1,0,0,0,2319,2320,1,0,0, - 0,2320,2321,1,0,0,0,2321,2322,5,333,0,0,2322,2323,5,351,0,0,2323, - 2325,3,1398,699,0,2324,2326,3,976,488,0,2325,2324,1,0,0,0,2325,2326, - 1,0,0,0,2326,2434,1,0,0,0,2327,2328,5,138,0,0,2328,2330,5,92,0,0, - 2329,2331,3,746,373,0,2330,2329,1,0,0,0,2330,2331,1,0,0,0,2331,2332, - 1,0,0,0,2332,2333,3,1404,702,0,2333,2334,5,435,0,0,2334,2335,5,285, - 0,0,2335,2340,3,1410,705,0,2336,2337,5,62,0,0,2337,2338,5,422,0, - 0,2338,2341,3,108,54,0,2339,2341,5,53,0,0,2340,2336,1,0,0,0,2340, - 2339,1,0,0,0,2341,2434,1,0,0,0,2342,2343,5,138,0,0,2343,2345,5,92, - 0,0,2344,2346,3,746,373,0,2345,2344,1,0,0,0,2345,2346,1,0,0,0,2346, - 2347,1,0,0,0,2347,2348,3,1404,702,0,2348,2349,5,436,0,0,2349,2350, - 5,285,0,0,2350,2352,3,1410,705,0,2351,2353,7,18,0,0,2352,2351,1, - 0,0,0,2352,2353,1,0,0,0,2353,2434,1,0,0,0,2354,2355,5,138,0,0,2355, - 2357,5,226,0,0,2356,2358,3,746,373,0,2357,2356,1,0,0,0,2357,2358, - 1,0,0,0,2358,2359,1,0,0,0,2359,2362,3,1410,705,0,2360,2363,3,106, - 53,0,2361,2363,3,118,59,0,2362,2360,1,0,0,0,2362,2361,1,0,0,0,2363, - 2434,1,0,0,0,2364,2365,5,138,0,0,2365,2366,5,226,0,0,2366,2367,5, - 30,0,0,2367,2368,5,68,0,0,2368,2369,5,351,0,0,2369,2373,3,1400,700, - 0,2370,2371,5,281,0,0,2371,2372,5,147,0,0,2372,2374,3,1470,735,0, - 2373,2370,1,0,0,0,2373,2374,1,0,0,0,2374,2375,1,0,0,0,2375,2376, - 5,333,0,0,2376,2377,5,351,0,0,2377,2379,3,1398,699,0,2378,2380,3, - 976,488,0,2379,2378,1,0,0,0,2379,2380,1,0,0,0,2380,2434,1,0,0,0, - 2381,2382,5,138,0,0,2382,2384,5,328,0,0,2383,2385,3,746,373,0,2384, - 2383,1,0,0,0,2384,2385,1,0,0,0,2385,2386,1,0,0,0,2386,2387,3,1410, - 705,0,2387,2388,3,106,53,0,2388,2434,1,0,0,0,2389,2390,5,138,0,0, - 2390,2392,5,376,0,0,2391,2393,3,746,373,0,2392,2391,1,0,0,0,2392, - 2393,1,0,0,0,2393,2394,1,0,0,0,2394,2395,3,1408,704,0,2395,2396, - 3,106,53,0,2396,2434,1,0,0,0,2397,2398,5,138,0,0,2398,2399,5,259, - 0,0,2399,2401,5,376,0,0,2400,2402,3,746,373,0,2401,2400,1,0,0,0, - 2401,2402,1,0,0,0,2402,2403,1,0,0,0,2403,2404,3,1408,704,0,2404, - 2405,3,106,53,0,2405,2434,1,0,0,0,2406,2407,5,138,0,0,2407,2408, - 5,259,0,0,2408,2409,5,376,0,0,2409,2410,5,30,0,0,2410,2411,5,68, - 0,0,2411,2412,5,351,0,0,2412,2416,3,1400,700,0,2413,2414,5,281,0, - 0,2414,2415,5,147,0,0,2415,2417,3,1470,735,0,2416,2413,1,0,0,0,2416, - 2417,1,0,0,0,2417,2418,1,0,0,0,2418,2419,5,333,0,0,2419,2420,5,351, - 0,0,2420,2422,3,1398,699,0,2421,2423,3,976,488,0,2422,2421,1,0,0, - 0,2422,2423,1,0,0,0,2423,2434,1,0,0,0,2424,2425,5,138,0,0,2425,2426, - 5,63,0,0,2426,2428,5,92,0,0,2427,2429,3,746,373,0,2428,2427,1,0, - 0,0,2428,2429,1,0,0,0,2429,2430,1,0,0,0,2430,2431,3,1116,558,0,2431, - 2432,3,106,53,0,2432,2434,1,0,0,0,2433,2300,1,0,0,0,2433,2310,1, - 0,0,0,2433,2327,1,0,0,0,2433,2342,1,0,0,0,2433,2354,1,0,0,0,2433, - 2364,1,0,0,0,2433,2381,1,0,0,0,2433,2389,1,0,0,0,2433,2397,1,0,0, - 0,2433,2406,1,0,0,0,2433,2424,1,0,0,0,2434,105,1,0,0,0,2435,2440, - 3,120,60,0,2436,2437,5,6,0,0,2437,2439,3,120,60,0,2438,2436,1,0, - 0,0,2439,2442,1,0,0,0,2440,2438,1,0,0,0,2440,2441,1,0,0,0,2441,107, - 1,0,0,0,2442,2440,1,0,0,0,2443,2444,5,68,0,0,2444,2453,3,1176,588, - 0,2445,2446,5,64,0,0,2446,2447,3,110,55,0,2447,2448,5,94,0,0,2448, - 2449,3,110,55,0,2449,2453,1,0,0,0,2450,2451,5,105,0,0,2451,2453, - 3,114,57,0,2452,2443,1,0,0,0,2452,2445,1,0,0,0,2452,2450,1,0,0,0, - 2453,109,1,0,0,0,2454,2455,5,2,0,0,2455,2460,3,112,56,0,2456,2457, - 5,6,0,0,2457,2459,3,112,56,0,2458,2456,1,0,0,0,2459,2462,1,0,0,0, - 2460,2458,1,0,0,0,2460,2461,1,0,0,0,2461,2463,1,0,0,0,2462,2460, - 1,0,0,0,2463,2464,5,3,0,0,2464,111,1,0,0,0,2465,2469,3,1176,588, - 0,2466,2469,5,262,0,0,2467,2469,5,260,0,0,2468,2465,1,0,0,0,2468, - 2466,1,0,0,0,2468,2467,1,0,0,0,2469,113,1,0,0,0,2470,2471,5,2,0, - 0,2471,2472,5,533,0,0,2472,2473,3,320,160,0,2473,2474,5,6,0,0,2474, - 2475,5,534,0,0,2475,2476,3,320,160,0,2476,2477,5,3,0,0,2477,115, - 1,0,0,0,2478,2479,5,435,0,0,2479,2480,5,285,0,0,2480,2481,3,1410, - 705,0,2481,2482,3,144,72,0,2482,2487,1,0,0,0,2483,2484,5,436,0,0, - 2484,2485,5,285,0,0,2485,2487,3,1410,705,0,2486,2478,1,0,0,0,2486, - 2483,1,0,0,0,2487,117,1,0,0,0,2488,2489,5,435,0,0,2489,2490,5,285, - 0,0,2490,2491,3,1410,705,0,2491,119,1,0,0,0,2492,2495,5,133,0,0, - 2493,2494,5,45,0,0,2494,2496,3,1434,717,0,2495,2493,1,0,0,0,2495, - 2496,1,0,0,0,2496,2497,1,0,0,0,2497,2710,3,238,119,0,2498,2499,5, - 138,0,0,2499,2500,5,45,0,0,2500,2501,3,1434,717,0,2501,2502,3,474, - 237,0,2502,2710,1,0,0,0,2503,2504,5,372,0,0,2504,2505,5,45,0,0,2505, - 2710,3,1434,717,0,2506,2507,5,191,0,0,2507,2509,5,45,0,0,2508,2510, - 3,746,373,0,2509,2508,1,0,0,0,2509,2510,1,0,0,0,2510,2511,1,0,0, - 0,2511,2513,3,1434,717,0,2512,2514,3,124,62,0,2513,2512,1,0,0,0, - 2513,2514,1,0,0,0,2514,2710,1,0,0,0,2515,2516,5,333,0,0,2516,2517, - 5,379,0,0,2517,2710,5,277,0,0,2518,2519,5,158,0,0,2519,2520,5,80, - 0,0,2520,2710,3,1434,717,0,2521,2522,5,333,0,0,2522,2523,5,379,0, - 0,2523,2710,5,158,0,0,2524,2525,5,333,0,0,2525,2710,7,19,0,0,2526, - 2528,5,193,0,0,2527,2529,7,20,0,0,2528,2527,1,0,0,0,2528,2529,1, - 0,0,0,2529,2530,1,0,0,0,2530,2710,5,357,0,0,2531,2532,5,186,0,0, - 2532,2536,5,357,0,0,2533,2537,5,30,0,0,2534,2537,5,99,0,0,2535,2537, - 3,1434,717,0,2536,2533,1,0,0,0,2536,2534,1,0,0,0,2536,2535,1,0,0, - 0,2537,2710,1,0,0,0,2538,2539,5,193,0,0,2539,2540,7,20,0,0,2540, - 2541,5,321,0,0,2541,2710,3,1434,717,0,2542,2543,5,186,0,0,2543,2544, - 5,321,0,0,2544,2710,3,1434,717,0,2545,2547,5,269,0,0,2546,2545,1, - 0,0,0,2546,2547,1,0,0,0,2547,2548,1,0,0,0,2548,2549,5,228,0,0,2549, - 2710,3,1410,705,0,2550,2551,5,275,0,0,2551,2710,3,556,278,0,2552, - 2553,5,77,0,0,2553,2710,5,275,0,0,2554,2555,5,282,0,0,2555,2556, - 5,94,0,0,2556,2710,3,1468,734,0,2557,2558,5,333,0,0,2558,2559,5, - 351,0,0,2559,2710,3,1398,699,0,2560,2561,5,333,0,0,2561,2710,3,132, - 66,0,2562,2563,5,313,0,0,2563,2710,3,132,66,0,2564,2565,5,312,0, - 0,2565,2566,5,219,0,0,2566,2710,3,130,65,0,2567,2568,5,193,0,0,2568, - 2569,5,414,0,0,2569,2570,5,251,0,0,2570,2710,5,327,0,0,2571,2572, - 5,186,0,0,2572,2573,5,414,0,0,2573,2574,5,251,0,0,2574,2710,5,327, - 0,0,2575,2576,5,209,0,0,2576,2577,5,414,0,0,2577,2578,5,251,0,0, - 2578,2710,5,327,0,0,2579,2580,5,269,0,0,2580,2581,5,209,0,0,2581, - 2582,5,414,0,0,2582,2583,5,251,0,0,2583,2710,5,327,0,0,2584,2586, - 5,191,0,0,2585,2587,5,44,0,0,2586,2585,1,0,0,0,2586,2587,1,0,0,0, - 2587,2589,1,0,0,0,2588,2590,3,746,373,0,2589,2588,1,0,0,0,2589,2590, - 1,0,0,0,2590,2591,1,0,0,0,2591,2593,3,1430,715,0,2592,2594,3,124, - 62,0,2593,2592,1,0,0,0,2593,2594,1,0,0,0,2594,2710,1,0,0,0,2595, - 2597,5,133,0,0,2596,2598,5,44,0,0,2597,2596,1,0,0,0,2597,2598,1, - 0,0,0,2598,2600,1,0,0,0,2599,2601,3,514,257,0,2600,2599,1,0,0,0, - 2600,2601,1,0,0,0,2601,2602,1,0,0,0,2602,2710,3,206,103,0,2603,2605, - 5,138,0,0,2604,2606,5,44,0,0,2605,2604,1,0,0,0,2605,2606,1,0,0,0, - 2606,2607,1,0,0,0,2607,2608,3,1430,715,0,2608,2609,3,122,61,0,2609, - 2710,1,0,0,0,2610,2612,5,138,0,0,2611,2613,5,44,0,0,2612,2611,1, - 0,0,0,2612,2613,1,0,0,0,2613,2614,1,0,0,0,2614,2615,3,1430,715,0, - 2615,2616,7,21,0,0,2616,2617,5,77,0,0,2617,2618,5,78,0,0,2618,2710, - 1,0,0,0,2619,2621,5,138,0,0,2620,2622,5,44,0,0,2621,2620,1,0,0,0, - 2621,2622,1,0,0,0,2622,2623,1,0,0,0,2623,2624,3,1430,715,0,2624, - 2625,5,191,0,0,2625,2627,5,437,0,0,2626,2628,3,746,373,0,2627,2626, - 1,0,0,0,2627,2628,1,0,0,0,2628,2710,1,0,0,0,2629,2631,5,138,0,0, - 2630,2632,5,44,0,0,2631,2630,1,0,0,0,2631,2632,1,0,0,0,2632,2633, - 1,0,0,0,2633,2634,3,1430,715,0,2634,2635,5,333,0,0,2635,2636,5,342, - 0,0,2636,2637,3,1462,731,0,2637,2710,1,0,0,0,2638,2640,5,138,0,0, - 2639,2641,5,44,0,0,2640,2639,1,0,0,0,2640,2641,1,0,0,0,2641,2642, - 1,0,0,0,2642,2643,3,1430,715,0,2643,2644,7,22,0,0,2644,2645,3,132, - 66,0,2645,2710,1,0,0,0,2646,2648,5,138,0,0,2647,2649,5,44,0,0,2648, - 2647,1,0,0,0,2648,2649,1,0,0,0,2649,2650,1,0,0,0,2650,2651,3,1430, - 715,0,2651,2652,5,333,0,0,2652,2653,5,345,0,0,2653,2654,3,1472,736, - 0,2654,2710,1,0,0,0,2655,2657,5,138,0,0,2656,2658,5,44,0,0,2657, - 2656,1,0,0,0,2657,2658,1,0,0,0,2658,2659,1,0,0,0,2659,2660,3,1430, - 715,0,2660,2661,5,133,0,0,2661,2662,5,438,0,0,2662,2663,3,224,112, - 0,2663,2664,5,36,0,0,2664,2666,5,219,0,0,2665,2667,3,312,156,0,2666, - 2665,1,0,0,0,2666,2667,1,0,0,0,2667,2710,1,0,0,0,2668,2670,5,138, - 0,0,2669,2671,5,44,0,0,2670,2669,1,0,0,0,2670,2671,1,0,0,0,2671, - 2672,1,0,0,0,2672,2673,3,1430,715,0,2673,2674,3,140,70,0,2674,2710, - 1,0,0,0,2675,2677,5,138,0,0,2676,2678,5,44,0,0,2677,2676,1,0,0,0, - 2677,2678,1,0,0,0,2678,2679,1,0,0,0,2679,2680,3,1430,715,0,2680, - 2681,5,191,0,0,2681,2683,5,219,0,0,2682,2684,3,746,373,0,2683,2682, - 1,0,0,0,2683,2684,1,0,0,0,2684,2710,1,0,0,0,2685,2687,5,138,0,0, - 2686,2688,5,44,0,0,2687,2686,1,0,0,0,2687,2688,1,0,0,0,2688,2689, - 1,0,0,0,2689,2691,3,1430,715,0,2690,2692,3,766,383,0,2691,2690,1, - 0,0,0,2691,2692,1,0,0,0,2692,2693,1,0,0,0,2693,2694,5,360,0,0,2694, - 2696,3,1166,583,0,2695,2697,3,126,63,0,2696,2695,1,0,0,0,2696,2697, - 1,0,0,0,2697,2699,1,0,0,0,2698,2700,3,128,64,0,2699,2698,1,0,0,0, - 2699,2700,1,0,0,0,2700,2710,1,0,0,0,2701,2703,5,138,0,0,2702,2704, - 5,44,0,0,2703,2702,1,0,0,0,2703,2704,1,0,0,0,2704,2705,1,0,0,0,2705, - 2706,3,1430,715,0,2706,2707,3,370,185,0,2707,2710,1,0,0,0,2708,2710, - 3,370,185,0,2709,2492,1,0,0,0,2709,2498,1,0,0,0,2709,2503,1,0,0, - 0,2709,2506,1,0,0,0,2709,2515,1,0,0,0,2709,2518,1,0,0,0,2709,2521, - 1,0,0,0,2709,2524,1,0,0,0,2709,2526,1,0,0,0,2709,2531,1,0,0,0,2709, - 2538,1,0,0,0,2709,2542,1,0,0,0,2709,2546,1,0,0,0,2709,2550,1,0,0, - 0,2709,2552,1,0,0,0,2709,2554,1,0,0,0,2709,2557,1,0,0,0,2709,2560, - 1,0,0,0,2709,2562,1,0,0,0,2709,2564,1,0,0,0,2709,2567,1,0,0,0,2709, - 2571,1,0,0,0,2709,2575,1,0,0,0,2709,2579,1,0,0,0,2709,2584,1,0,0, - 0,2709,2595,1,0,0,0,2709,2603,1,0,0,0,2709,2610,1,0,0,0,2709,2619, - 1,0,0,0,2709,2629,1,0,0,0,2709,2638,1,0,0,0,2709,2646,1,0,0,0,2709, - 2655,1,0,0,0,2709,2668,1,0,0,0,2709,2675,1,0,0,0,2709,2685,1,0,0, - 0,2709,2701,1,0,0,0,2709,2708,1,0,0,0,2710,121,1,0,0,0,2711,2712, - 5,333,0,0,2712,2713,5,53,0,0,2713,2717,3,1210,605,0,2714,2715,5, - 191,0,0,2715,2717,5,53,0,0,2716,2711,1,0,0,0,2716,2714,1,0,0,0,2717, - 123,1,0,0,0,2718,2719,7,23,0,0,2719,125,1,0,0,0,2720,2721,5,43,0, - 0,2721,2722,3,556,278,0,2722,127,1,0,0,0,2723,2724,5,100,0,0,2724, - 2725,3,1210,605,0,2725,129,1,0,0,0,2726,2733,5,270,0,0,2727,2733, - 5,113,0,0,2728,2733,5,53,0,0,2729,2730,5,100,0,0,2730,2731,5,226, - 0,0,2731,2733,3,1434,717,0,2732,2726,1,0,0,0,2732,2727,1,0,0,0,2732, - 2728,1,0,0,0,2732,2729,1,0,0,0,2733,131,1,0,0,0,2734,2735,5,2,0, - 0,2735,2736,3,136,68,0,2736,2737,5,3,0,0,2737,133,1,0,0,0,2738,2739, - 5,105,0,0,2739,2740,3,132,66,0,2740,135,1,0,0,0,2741,2746,3,138, - 69,0,2742,2743,5,6,0,0,2743,2745,3,138,69,0,2744,2742,1,0,0,0,2745, - 2748,1,0,0,0,2746,2744,1,0,0,0,2746,2747,1,0,0,0,2747,137,1,0,0, - 0,2748,2746,1,0,0,0,2749,2758,3,1488,744,0,2750,2751,5,10,0,0,2751, - 2759,3,500,250,0,2752,2753,5,11,0,0,2753,2756,3,1488,744,0,2754, - 2755,5,10,0,0,2755,2757,3,500,250,0,2756,2754,1,0,0,0,2756,2757, - 1,0,0,0,2757,2759,1,0,0,0,2758,2750,1,0,0,0,2758,2752,1,0,0,0,2758, - 2759,1,0,0,0,2759,139,1,0,0,0,2760,2762,3,142,71,0,2761,2760,1,0, - 0,0,2762,2763,1,0,0,0,2763,2761,1,0,0,0,2763,2764,1,0,0,0,2764,141, - 1,0,0,0,2765,2770,5,314,0,0,2766,2768,3,14,7,0,2767,2766,1,0,0,0, - 2767,2768,1,0,0,0,2768,2769,1,0,0,0,2769,2771,3,320,160,0,2770,2767, - 1,0,0,0,2770,2771,1,0,0,0,2771,2779,1,0,0,0,2772,2776,5,333,0,0, - 2773,2777,3,316,158,0,2774,2775,5,438,0,0,2775,2777,3,224,112,0, - 2776,2773,1,0,0,0,2776,2774,1,0,0,0,2777,2779,1,0,0,0,2778,2765, - 1,0,0,0,2778,2772,1,0,0,0,2779,143,1,0,0,0,2780,2781,5,62,0,0,2781, - 2782,5,422,0,0,2782,2783,5,105,0,0,2783,2784,5,2,0,0,2784,2785,3, - 148,74,0,2785,2786,5,3,0,0,2786,2807,1,0,0,0,2787,2788,5,62,0,0, - 2788,2789,5,422,0,0,2789,2790,5,68,0,0,2790,2791,5,2,0,0,2791,2792, - 3,1326,663,0,2792,2793,5,3,0,0,2793,2807,1,0,0,0,2794,2795,5,62, - 0,0,2795,2796,5,422,0,0,2796,2797,5,64,0,0,2797,2798,5,2,0,0,2798, - 2799,3,1326,663,0,2799,2800,5,3,0,0,2800,2801,5,94,0,0,2801,2802, - 5,2,0,0,2802,2803,3,1326,663,0,2803,2804,5,3,0,0,2804,2807,1,0,0, - 0,2805,2807,5,53,0,0,2806,2780,1,0,0,0,2806,2787,1,0,0,0,2806,2794, - 1,0,0,0,2806,2805,1,0,0,0,2807,145,1,0,0,0,2808,2809,3,1486,743, - 0,2809,2810,3,1454,727,0,2810,147,1,0,0,0,2811,2816,3,146,73,0,2812, - 2813,5,6,0,0,2813,2815,3,146,73,0,2814,2812,1,0,0,0,2815,2818,1, - 0,0,0,2816,2814,1,0,0,0,2816,2817,1,0,0,0,2817,149,1,0,0,0,2818, - 2816,1,0,0,0,2819,2820,5,138,0,0,2820,2821,5,360,0,0,2821,2822,3, - 556,278,0,2822,2823,3,152,76,0,2823,151,1,0,0,0,2824,2829,3,154, - 77,0,2825,2826,5,6,0,0,2826,2828,3,154,77,0,2827,2825,1,0,0,0,2828, - 2831,1,0,0,0,2829,2827,1,0,0,0,2829,2830,1,0,0,0,2830,153,1,0,0, - 0,2831,2829,1,0,0,0,2832,2833,5,133,0,0,2833,2834,5,143,0,0,2834, - 2836,3,1150,575,0,2835,2837,3,124,62,0,2836,2835,1,0,0,0,2836,2837, - 1,0,0,0,2837,2862,1,0,0,0,2838,2839,5,191,0,0,2839,2841,5,143,0, - 0,2840,2842,3,746,373,0,2841,2840,1,0,0,0,2841,2842,1,0,0,0,2842, - 2843,1,0,0,0,2843,2845,3,1472,736,0,2844,2846,3,124,62,0,2845,2844, - 1,0,0,0,2845,2846,1,0,0,0,2846,2862,1,0,0,0,2847,2848,5,138,0,0, - 2848,2849,5,143,0,0,2849,2851,3,1472,736,0,2850,2852,3,766,383,0, - 2851,2850,1,0,0,0,2851,2852,1,0,0,0,2852,2853,1,0,0,0,2853,2854, - 5,360,0,0,2854,2856,3,1166,583,0,2855,2857,3,126,63,0,2856,2855, - 1,0,0,0,2856,2857,1,0,0,0,2857,2859,1,0,0,0,2858,2860,3,124,62,0, - 2859,2858,1,0,0,0,2859,2860,1,0,0,0,2860,2862,1,0,0,0,2861,2832, - 1,0,0,0,2861,2838,1,0,0,0,2861,2847,1,0,0,0,2862,155,1,0,0,0,2863, - 2866,5,157,0,0,2864,2867,3,992,496,0,2865,2867,5,30,0,0,2866,2864, - 1,0,0,0,2866,2865,1,0,0,0,2867,157,1,0,0,0,2868,2870,5,169,0,0,2869, - 2871,3,172,86,0,2870,2869,1,0,0,0,2870,2871,1,0,0,0,2871,2872,1, - 0,0,0,2872,2874,3,1404,702,0,2873,2875,3,242,121,0,2874,2873,1,0, - 0,0,2874,2875,1,0,0,0,2875,2876,1,0,0,0,2876,2878,3,160,80,0,2877, - 2879,3,162,81,0,2878,2877,1,0,0,0,2878,2879,1,0,0,0,2879,2880,1, - 0,0,0,2880,2882,3,164,82,0,2881,2883,3,174,87,0,2882,2881,1,0,0, - 0,2882,2883,1,0,0,0,2883,2885,1,0,0,0,2884,2886,3,14,7,0,2885,2884, - 1,0,0,0,2885,2886,1,0,0,0,2886,2887,1,0,0,0,2887,2889,3,166,83,0, - 2888,2890,3,1142,571,0,2889,2888,1,0,0,0,2889,2890,1,0,0,0,2890, - 2906,1,0,0,0,2891,2892,5,169,0,0,2892,2893,5,2,0,0,2893,2894,3,940, - 470,0,2894,2895,5,3,0,0,2895,2897,5,94,0,0,2896,2898,3,162,81,0, - 2897,2896,1,0,0,0,2897,2898,1,0,0,0,2898,2899,1,0,0,0,2899,2901, - 3,164,82,0,2900,2902,3,14,7,0,2901,2900,1,0,0,0,2901,2902,1,0,0, - 0,2902,2903,1,0,0,0,2903,2904,3,166,83,0,2904,2906,1,0,0,0,2905, - 2868,1,0,0,0,2905,2891,1,0,0,0,2906,159,1,0,0,0,2907,2908,7,24,0, - 0,2908,161,1,0,0,0,2909,2910,5,297,0,0,2910,163,1,0,0,0,2911,2915, - 3,1456,728,0,2912,2915,5,343,0,0,2913,2915,5,344,0,0,2914,2911,1, - 0,0,0,2914,2912,1,0,0,0,2914,2913,1,0,0,0,2915,165,1,0,0,0,2916, - 2922,3,168,84,0,2917,2918,5,2,0,0,2918,2919,3,178,89,0,2919,2920, - 5,3,0,0,2920,2922,1,0,0,0,2921,2916,1,0,0,0,2921,2917,1,0,0,0,2922, - 167,1,0,0,0,2923,2925,3,170,85,0,2924,2923,1,0,0,0,2925,2928,1,0, - 0,0,2926,2924,1,0,0,0,2926,2927,1,0,0,0,2927,169,1,0,0,0,2928,2926, - 1,0,0,0,2929,2969,5,107,0,0,2930,2969,5,112,0,0,2931,2933,5,183, - 0,0,2932,2934,3,870,435,0,2933,2932,1,0,0,0,2933,2934,1,0,0,0,2934, - 2935,1,0,0,0,2935,2969,3,1456,728,0,2936,2938,5,78,0,0,2937,2939, - 3,870,435,0,2938,2937,1,0,0,0,2938,2939,1,0,0,0,2939,2940,1,0,0, - 0,2940,2969,3,1456,728,0,2941,2969,5,171,0,0,2942,2969,5,216,0,0, - 2943,2945,5,298,0,0,2944,2946,3,870,435,0,2945,2944,1,0,0,0,2945, - 2946,1,0,0,0,2946,2947,1,0,0,0,2947,2969,3,1456,728,0,2948,2950, - 5,197,0,0,2949,2951,3,870,435,0,2950,2949,1,0,0,0,2950,2951,1,0, - 0,0,2951,2952,1,0,0,0,2952,2969,3,1456,728,0,2953,2954,5,209,0,0, - 2954,2955,5,298,0,0,2955,2969,3,244,122,0,2956,2957,5,209,0,0,2957, - 2958,5,298,0,0,2958,2969,5,9,0,0,2959,2960,5,209,0,0,2960,2961,5, - 77,0,0,2961,2962,5,78,0,0,2962,2969,3,244,122,0,2963,2964,5,209, - 0,0,2964,2965,5,78,0,0,2965,2969,3,244,122,0,2966,2967,5,194,0,0, - 2967,2969,3,1456,728,0,2968,2929,1,0,0,0,2968,2930,1,0,0,0,2968, - 2931,1,0,0,0,2968,2936,1,0,0,0,2968,2941,1,0,0,0,2968,2942,1,0,0, - 0,2968,2943,1,0,0,0,2968,2948,1,0,0,0,2968,2953,1,0,0,0,2968,2956, - 1,0,0,0,2968,2959,1,0,0,0,2968,2963,1,0,0,0,2968,2966,1,0,0,0,2969, - 171,1,0,0,0,2970,2971,5,107,0,0,2971,173,1,0,0,0,2972,2974,3,176, - 88,0,2973,2972,1,0,0,0,2973,2974,1,0,0,0,2974,2975,1,0,0,0,2975, - 2976,5,184,0,0,2976,2977,3,1456,728,0,2977,175,1,0,0,0,2978,2979, - 5,100,0,0,2979,177,1,0,0,0,2980,2985,3,180,90,0,2981,2982,5,6,0, - 0,2982,2984,3,180,90,0,2983,2981,1,0,0,0,2984,2987,1,0,0,0,2985, - 2983,1,0,0,0,2985,2986,1,0,0,0,2986,179,1,0,0,0,2987,2985,1,0,0, - 0,2988,2990,3,1488,744,0,2989,2991,3,182,91,0,2990,2989,1,0,0,0, - 2990,2991,1,0,0,0,2991,181,1,0,0,0,2992,3000,3,72,36,0,2993,3000, - 3,320,160,0,2994,3000,5,9,0,0,2995,2996,5,2,0,0,2996,2997,3,184, - 92,0,2997,2998,5,3,0,0,2998,3000,1,0,0,0,2999,2992,1,0,0,0,2999, - 2993,1,0,0,0,2999,2994,1,0,0,0,2999,2995,1,0,0,0,3000,183,1,0,0, - 0,3001,3006,3,186,93,0,3002,3003,5,6,0,0,3003,3005,3,186,93,0,3004, - 3002,1,0,0,0,3005,3008,1,0,0,0,3006,3004,1,0,0,0,3006,3007,1,0,0, - 0,3007,185,1,0,0,0,3008,3006,1,0,0,0,3009,3010,3,70,35,0,3010,187, - 1,0,0,0,3011,3013,5,46,0,0,3012,3014,3,190,95,0,3013,3012,1,0,0, - 0,3013,3014,1,0,0,0,3014,3015,1,0,0,0,3015,3017,5,92,0,0,3016,3018, - 3,514,257,0,3017,3016,1,0,0,0,3017,3018,1,0,0,0,3018,3019,1,0,0, - 0,3019,3085,3,1402,701,0,3020,3022,5,2,0,0,3021,3023,3,192,96,0, - 3022,3021,1,0,0,0,3022,3023,1,0,0,0,3023,3024,1,0,0,0,3024,3026, - 5,3,0,0,3025,3027,3,264,132,0,3026,3025,1,0,0,0,3026,3027,1,0,0, - 0,3027,3029,1,0,0,0,3028,3030,3,266,133,0,3029,3028,1,0,0,0,3029, - 3030,1,0,0,0,3030,3032,1,0,0,0,3031,3033,3,274,137,0,3032,3031,1, - 0,0,0,3032,3033,1,0,0,0,3033,3035,1,0,0,0,3034,3036,3,276,138,0, - 3035,3034,1,0,0,0,3035,3036,1,0,0,0,3036,3038,1,0,0,0,3037,3039, - 3,278,139,0,3038,3037,1,0,0,0,3038,3039,1,0,0,0,3039,3041,1,0,0, - 0,3040,3042,3,280,140,0,3041,3040,1,0,0,0,3041,3042,1,0,0,0,3042, - 3086,1,0,0,0,3043,3044,5,275,0,0,3044,3046,3,556,278,0,3045,3047, - 3,196,98,0,3046,3045,1,0,0,0,3046,3047,1,0,0,0,3047,3049,1,0,0,0, - 3048,3050,3,266,133,0,3049,3048,1,0,0,0,3049,3050,1,0,0,0,3050,3052, - 1,0,0,0,3051,3053,3,274,137,0,3052,3051,1,0,0,0,3052,3053,1,0,0, - 0,3053,3055,1,0,0,0,3054,3056,3,276,138,0,3055,3054,1,0,0,0,3055, - 3056,1,0,0,0,3056,3058,1,0,0,0,3057,3059,3,278,139,0,3058,3057,1, - 0,0,0,3058,3059,1,0,0,0,3059,3061,1,0,0,0,3060,3062,3,280,140,0, - 3061,3060,1,0,0,0,3061,3062,1,0,0,0,3062,3086,1,0,0,0,3063,3064, - 5,285,0,0,3064,3065,5,275,0,0,3065,3067,3,1410,705,0,3066,3068,3, - 196,98,0,3067,3066,1,0,0,0,3067,3068,1,0,0,0,3068,3069,1,0,0,0,3069, - 3071,3,144,72,0,3070,3072,3,266,133,0,3071,3070,1,0,0,0,3071,3072, - 1,0,0,0,3072,3074,1,0,0,0,3073,3075,3,274,137,0,3074,3073,1,0,0, - 0,3074,3075,1,0,0,0,3075,3077,1,0,0,0,3076,3078,3,276,138,0,3077, - 3076,1,0,0,0,3077,3078,1,0,0,0,3078,3080,1,0,0,0,3079,3081,3,278, - 139,0,3080,3079,1,0,0,0,3080,3081,1,0,0,0,3081,3083,1,0,0,0,3082, - 3084,3,280,140,0,3083,3082,1,0,0,0,3083,3084,1,0,0,0,3084,3086,1, - 0,0,0,3085,3020,1,0,0,0,3085,3043,1,0,0,0,3085,3063,1,0,0,0,3086, - 189,1,0,0,0,3087,3095,5,354,0,0,3088,3095,5,352,0,0,3089,3090,5, - 254,0,0,3090,3095,7,25,0,0,3091,3092,5,213,0,0,3092,3095,7,25,0, - 0,3093,3095,5,367,0,0,3094,3087,1,0,0,0,3094,3088,1,0,0,0,3094,3089, - 1,0,0,0,3094,3091,1,0,0,0,3094,3093,1,0,0,0,3095,191,1,0,0,0,3096, - 3097,3,198,99,0,3097,193,1,0,0,0,3098,3099,3,198,99,0,3099,195,1, - 0,0,0,3100,3101,5,2,0,0,3101,3102,3,200,100,0,3102,3103,5,3,0,0, - 3103,197,1,0,0,0,3104,3109,3,202,101,0,3105,3106,5,6,0,0,3106,3108, - 3,202,101,0,3107,3105,1,0,0,0,3108,3111,1,0,0,0,3109,3107,1,0,0, - 0,3109,3110,1,0,0,0,3110,199,1,0,0,0,3111,3109,1,0,0,0,3112,3117, - 3,204,102,0,3113,3114,5,6,0,0,3114,3116,3,204,102,0,3115,3113,1, - 0,0,0,3116,3119,1,0,0,0,3117,3115,1,0,0,0,3117,3118,1,0,0,0,3118, - 201,1,0,0,0,3119,3117,1,0,0,0,3120,3124,3,208,104,0,3121,3124,3, - 230,115,0,3122,3124,3,236,118,0,3123,3120,1,0,0,0,3123,3121,1,0, - 0,0,3123,3122,1,0,0,0,3124,203,1,0,0,0,3125,3128,3,214,107,0,3126, - 3128,3,236,118,0,3127,3125,1,0,0,0,3127,3126,1,0,0,0,3128,205,1, - 0,0,0,3129,3130,3,1430,715,0,3130,3132,3,1166,583,0,3131,3133,3, - 366,183,0,3132,3131,1,0,0,0,3132,3133,1,0,0,0,3133,3135,1,0,0,0, - 3134,3136,3,212,106,0,3135,3134,1,0,0,0,3135,3136,1,0,0,0,3136,3138, - 1,0,0,0,3137,3139,3,210,105,0,3138,3137,1,0,0,0,3138,3139,1,0,0, - 0,3139,3142,1,0,0,0,3140,3141,5,43,0,0,3141,3143,3,556,278,0,3142, - 3140,1,0,0,0,3142,3143,1,0,0,0,3143,3146,1,0,0,0,3144,3145,5,105, - 0,0,3145,3147,5,280,0,0,3146,3144,1,0,0,0,3146,3147,1,0,0,0,3147, - 3148,1,0,0,0,3148,3149,3,216,108,0,3149,207,1,0,0,0,3150,3151,3, - 1430,715,0,3151,3153,3,1166,583,0,3152,3154,3,366,183,0,3153,3152, - 1,0,0,0,3153,3154,1,0,0,0,3154,3156,1,0,0,0,3155,3157,3,212,106, - 0,3156,3155,1,0,0,0,3156,3157,1,0,0,0,3157,3159,1,0,0,0,3158,3160, - 3,210,105,0,3159,3158,1,0,0,0,3159,3160,1,0,0,0,3160,3163,1,0,0, - 0,3161,3162,5,43,0,0,3162,3164,3,556,278,0,3163,3161,1,0,0,0,3163, - 3164,1,0,0,0,3164,3167,1,0,0,0,3165,3166,5,105,0,0,3166,3168,5,280, - 0,0,3167,3165,1,0,0,0,3167,3168,1,0,0,0,3168,3169,1,0,0,0,3169,3170, - 3,216,108,0,3170,209,1,0,0,0,3171,3172,5,543,0,0,3172,3173,3,1472, - 736,0,3173,211,1,0,0,0,3174,3181,5,345,0,0,3175,3182,5,544,0,0,3176, - 3182,5,205,0,0,3177,3182,5,545,0,0,3178,3182,5,546,0,0,3179,3182, - 5,53,0,0,3180,3182,3,1472,736,0,3181,3175,1,0,0,0,3181,3176,1,0, - 0,0,3181,3177,1,0,0,0,3181,3178,1,0,0,0,3181,3179,1,0,0,0,3181,3180, - 1,0,0,0,3182,213,1,0,0,0,3183,3186,3,1430,715,0,3184,3185,5,105, - 0,0,3185,3187,5,280,0,0,3186,3184,1,0,0,0,3186,3187,1,0,0,0,3187, - 3188,1,0,0,0,3188,3189,3,216,108,0,3189,215,1,0,0,0,3190,3192,3, - 218,109,0,3191,3190,1,0,0,0,3192,3195,1,0,0,0,3193,3191,1,0,0,0, - 3193,3194,1,0,0,0,3194,217,1,0,0,0,3195,3193,1,0,0,0,3196,3197,5, - 45,0,0,3197,3199,3,1434,717,0,3198,3196,1,0,0,0,3198,3199,1,0,0, - 0,3199,3200,1,0,0,0,3200,3202,3,220,110,0,3201,3203,3,226,113,0, - 3202,3201,1,0,0,0,3202,3203,1,0,0,0,3203,3205,1,0,0,0,3204,3206, - 3,228,114,0,3205,3204,1,0,0,0,3205,3206,1,0,0,0,3206,3215,1,0,0, - 0,3207,3209,3,220,110,0,3208,3210,3,226,113,0,3209,3208,1,0,0,0, - 3209,3210,1,0,0,0,3210,3212,1,0,0,0,3211,3213,3,228,114,0,3212,3211, - 1,0,0,0,3212,3213,1,0,0,0,3213,3215,1,0,0,0,3214,3198,1,0,0,0,3214, - 3207,1,0,0,0,3215,219,1,0,0,0,3216,3217,5,77,0,0,3217,3275,5,78, - 0,0,3218,3275,5,78,0,0,3219,3221,5,98,0,0,3220,3222,3,708,354,0, - 3221,3220,1,0,0,0,3221,3222,1,0,0,0,3222,3224,1,0,0,0,3223,3225, - 3,284,142,0,3224,3223,1,0,0,0,3224,3225,1,0,0,0,3225,3275,1,0,0, - 0,3226,3228,5,98,0,0,3227,3229,3,222,111,0,3228,3227,1,0,0,0,3228, - 3229,1,0,0,0,3229,3230,1,0,0,0,3230,3275,3,282,141,0,3231,3232,5, - 85,0,0,3232,3234,5,245,0,0,3233,3235,3,708,354,0,3234,3233,1,0,0, - 0,3234,3235,1,0,0,0,3235,3237,1,0,0,0,3236,3238,3,284,142,0,3237, - 3236,1,0,0,0,3237,3238,1,0,0,0,3238,3275,1,0,0,0,3239,3240,5,42, - 0,0,3240,3241,5,2,0,0,3241,3242,3,1210,605,0,3242,3244,5,3,0,0,3243, - 3245,3,240,120,0,3244,3243,1,0,0,0,3244,3245,1,0,0,0,3245,3275,1, - 0,0,0,3246,3247,5,53,0,0,3247,3275,3,1250,625,0,3248,3249,5,438, - 0,0,3249,3250,3,224,112,0,3250,3260,5,36,0,0,3251,3253,5,219,0,0, - 3252,3254,3,312,156,0,3253,3252,1,0,0,0,3253,3254,1,0,0,0,3254,3261, - 1,0,0,0,3255,3256,5,2,0,0,3256,3257,3,1210,605,0,3257,3258,5,3,0, - 0,3258,3259,5,440,0,0,3259,3261,1,0,0,0,3260,3251,1,0,0,0,3260,3255, - 1,0,0,0,3261,3275,1,0,0,0,3262,3263,5,86,0,0,3263,3265,3,1410,705, - 0,3264,3266,3,242,121,0,3265,3264,1,0,0,0,3265,3266,1,0,0,0,3266, - 3268,1,0,0,0,3267,3269,3,248,124,0,3268,3267,1,0,0,0,3268,3269,1, - 0,0,0,3269,3271,1,0,0,0,3270,3272,3,256,128,0,3271,3270,1,0,0,0, - 3271,3272,1,0,0,0,3272,3275,1,0,0,0,3273,3275,3,644,322,0,3274,3216, - 1,0,0,0,3274,3218,1,0,0,0,3274,3219,1,0,0,0,3274,3226,1,0,0,0,3274, - 3231,1,0,0,0,3274,3239,1,0,0,0,3274,3246,1,0,0,0,3274,3248,1,0,0, - 0,3274,3262,1,0,0,0,3274,3273,1,0,0,0,3275,221,1,0,0,0,3276,3278, - 5,273,0,0,3277,3279,5,77,0,0,3278,3277,1,0,0,0,3278,3279,1,0,0,0, - 3279,3280,1,0,0,0,3280,3281,5,56,0,0,3281,223,1,0,0,0,3282,3286, - 5,139,0,0,3283,3284,5,147,0,0,3284,3286,5,53,0,0,3285,3282,1,0,0, - 0,3285,3283,1,0,0,0,3286,225,1,0,0,0,3287,3291,5,54,0,0,3288,3289, - 5,77,0,0,3289,3291,5,54,0,0,3290,3287,1,0,0,0,3290,3288,1,0,0,0, - 3291,227,1,0,0,0,3292,3293,5,69,0,0,3293,3294,7,16,0,0,3294,229, - 1,0,0,0,3295,3296,5,120,0,0,3296,3297,3,1410,705,0,3297,3298,3,232, - 116,0,3298,231,1,0,0,0,3299,3300,7,26,0,0,3300,3302,3,234,117,0, - 3301,3299,1,0,0,0,3302,3305,1,0,0,0,3303,3301,1,0,0,0,3303,3304, - 1,0,0,0,3304,233,1,0,0,0,3305,3303,1,0,0,0,3306,3307,7,27,0,0,3307, - 235,1,0,0,0,3308,3309,5,45,0,0,3309,3310,3,1434,717,0,3310,3311, - 3,238,119,0,3311,3314,1,0,0,0,3312,3314,3,238,119,0,3313,3308,1, - 0,0,0,3313,3312,1,0,0,0,3314,237,1,0,0,0,3315,3316,5,42,0,0,3316, - 3317,5,2,0,0,3317,3318,3,1210,605,0,3318,3319,5,3,0,0,3319,3320, - 3,474,237,0,3320,3402,1,0,0,0,3321,3339,5,98,0,0,3322,3323,5,2,0, - 0,3323,3324,3,244,122,0,3324,3326,5,3,0,0,3325,3327,3,246,123,0, - 3326,3325,1,0,0,0,3326,3327,1,0,0,0,3327,3329,1,0,0,0,3328,3330, - 3,708,354,0,3329,3328,1,0,0,0,3329,3330,1,0,0,0,3330,3332,1,0,0, - 0,3331,3333,3,284,142,0,3332,3331,1,0,0,0,3332,3333,1,0,0,0,3333, - 3334,1,0,0,0,3334,3335,3,474,237,0,3335,3340,1,0,0,0,3336,3337,3, - 286,143,0,3337,3338,3,474,237,0,3338,3340,1,0,0,0,3339,3322,1,0, - 0,0,3339,3336,1,0,0,0,3340,3402,1,0,0,0,3341,3342,5,85,0,0,3342, - 3360,5,245,0,0,3343,3344,5,2,0,0,3344,3345,3,244,122,0,3345,3347, - 5,3,0,0,3346,3348,3,246,123,0,3347,3346,1,0,0,0,3347,3348,1,0,0, - 0,3348,3350,1,0,0,0,3349,3351,3,708,354,0,3350,3349,1,0,0,0,3350, - 3351,1,0,0,0,3351,3353,1,0,0,0,3352,3354,3,284,142,0,3353,3352,1, - 0,0,0,3353,3354,1,0,0,0,3354,3355,1,0,0,0,3355,3356,3,474,237,0, - 3356,3361,1,0,0,0,3357,3358,3,286,143,0,3358,3359,3,474,237,0,3359, - 3361,1,0,0,0,3360,3343,1,0,0,0,3360,3357,1,0,0,0,3361,3402,1,0,0, - 0,3362,3364,5,199,0,0,3363,3365,3,632,316,0,3364,3363,1,0,0,0,3364, - 3365,1,0,0,0,3365,3366,1,0,0,0,3366,3367,5,2,0,0,3367,3368,3,250, - 125,0,3368,3370,5,3,0,0,3369,3371,3,246,123,0,3370,3369,1,0,0,0, - 3370,3371,1,0,0,0,3371,3373,1,0,0,0,3372,3374,3,708,354,0,3373,3372, - 1,0,0,0,3373,3374,1,0,0,0,3374,3376,1,0,0,0,3375,3377,3,284,142, - 0,3376,3375,1,0,0,0,3376,3377,1,0,0,0,3377,3379,1,0,0,0,3378,3380, - 3,254,127,0,3379,3378,1,0,0,0,3379,3380,1,0,0,0,3380,3381,1,0,0, - 0,3381,3382,3,474,237,0,3382,3402,1,0,0,0,3383,3384,5,63,0,0,3384, - 3385,5,245,0,0,3385,3386,5,2,0,0,3386,3387,3,244,122,0,3387,3388, - 5,3,0,0,3388,3389,5,86,0,0,3389,3391,3,1410,705,0,3390,3392,3,242, - 121,0,3391,3390,1,0,0,0,3391,3392,1,0,0,0,3392,3394,1,0,0,0,3393, - 3395,3,248,124,0,3394,3393,1,0,0,0,3394,3395,1,0,0,0,3395,3397,1, - 0,0,0,3396,3398,3,256,128,0,3397,3396,1,0,0,0,3397,3398,1,0,0,0, - 3398,3399,1,0,0,0,3399,3400,3,474,237,0,3400,3402,1,0,0,0,3401,3315, - 1,0,0,0,3401,3321,1,0,0,0,3401,3341,1,0,0,0,3401,3362,1,0,0,0,3401, - 3383,1,0,0,0,3402,239,1,0,0,0,3403,3404,5,269,0,0,3404,3405,5,228, - 0,0,3405,241,1,0,0,0,3406,3407,5,2,0,0,3407,3408,3,244,122,0,3408, - 3409,5,3,0,0,3409,243,1,0,0,0,3410,3415,3,1430,715,0,3411,3412,5, - 6,0,0,3412,3414,3,1430,715,0,3413,3411,1,0,0,0,3414,3417,1,0,0,0, - 3415,3413,1,0,0,0,3415,3416,1,0,0,0,3416,245,1,0,0,0,3417,3415,1, - 0,0,0,3418,3419,5,441,0,0,3419,3420,5,2,0,0,3420,3421,3,244,122, - 0,3421,3422,5,3,0,0,3422,247,1,0,0,0,3423,3424,5,258,0,0,3424,3425, - 7,28,0,0,3425,249,1,0,0,0,3426,3431,3,252,126,0,3427,3428,5,6,0, - 0,3428,3430,3,252,126,0,3429,3427,1,0,0,0,3430,3433,1,0,0,0,3431, - 3429,1,0,0,0,3431,3432,1,0,0,0,3432,251,1,0,0,0,3433,3431,1,0,0, - 0,3434,3435,3,638,319,0,3435,3442,5,105,0,0,3436,3443,3,730,365, - 0,3437,3438,5,278,0,0,3438,3439,5,2,0,0,3439,3440,3,730,365,0,3440, - 3441,5,3,0,0,3441,3443,1,0,0,0,3442,3436,1,0,0,0,3442,3437,1,0,0, - 0,3443,253,1,0,0,0,3444,3445,5,103,0,0,3445,3446,5,2,0,0,3446,3447, - 3,1210,605,0,3447,3448,5,3,0,0,3448,255,1,0,0,0,3449,3458,3,258, - 129,0,3450,3458,3,260,130,0,3451,3452,3,258,129,0,3452,3453,3,260, - 130,0,3453,3458,1,0,0,0,3454,3455,3,260,130,0,3455,3456,3,258,129, - 0,3456,3458,1,0,0,0,3457,3449,1,0,0,0,3457,3450,1,0,0,0,3457,3451, - 1,0,0,0,3457,3454,1,0,0,0,3458,257,1,0,0,0,3459,3460,5,80,0,0,3460, - 3461,5,369,0,0,3461,3462,3,262,131,0,3462,259,1,0,0,0,3463,3464, - 5,80,0,0,3464,3465,5,182,0,0,3465,3466,3,262,131,0,3466,261,1,0, - 0,0,3467,3468,5,269,0,0,3468,3477,5,132,0,0,3469,3477,5,315,0,0, - 3470,3477,5,150,0,0,3471,3472,5,333,0,0,3472,3474,7,29,0,0,3473, - 3475,3,244,122,0,3474,3473,1,0,0,0,3474,3475,1,0,0,0,3475,3477,1, - 0,0,0,3476,3467,1,0,0,0,3476,3469,1,0,0,0,3476,3470,1,0,0,0,3476, - 3471,1,0,0,0,3477,263,1,0,0,0,3478,3479,5,238,0,0,3479,3480,5,2, - 0,0,3480,3481,3,1388,694,0,3481,3482,5,3,0,0,3482,265,1,0,0,0,3483, - 3484,3,268,134,0,3484,267,1,0,0,0,3485,3486,5,285,0,0,3486,3487, - 5,147,0,0,3487,3488,3,1472,736,0,3488,3489,5,2,0,0,3489,3490,3,270, - 135,0,3490,3491,5,3,0,0,3491,269,1,0,0,0,3492,3497,3,272,136,0,3493, - 3494,5,6,0,0,3494,3496,3,272,136,0,3495,3493,1,0,0,0,3496,3499,1, - 0,0,0,3497,3495,1,0,0,0,3497,3498,1,0,0,0,3498,271,1,0,0,0,3499, - 3497,1,0,0,0,3500,3502,3,1430,715,0,3501,3503,3,644,322,0,3502,3501, - 1,0,0,0,3502,3503,1,0,0,0,3503,3505,1,0,0,0,3504,3506,3,646,323, - 0,3505,3504,1,0,0,0,3505,3506,1,0,0,0,3506,3524,1,0,0,0,3507,3509, - 3,1260,630,0,3508,3510,3,644,322,0,3509,3508,1,0,0,0,3509,3510,1, - 0,0,0,3510,3512,1,0,0,0,3511,3513,3,646,323,0,3512,3511,1,0,0,0, - 3512,3513,1,0,0,0,3513,3524,1,0,0,0,3514,3515,5,2,0,0,3515,3516, - 3,1210,605,0,3516,3518,5,3,0,0,3517,3519,3,644,322,0,3518,3517,1, - 0,0,0,3518,3519,1,0,0,0,3519,3521,1,0,0,0,3520,3522,3,646,323,0, - 3521,3520,1,0,0,0,3521,3522,1,0,0,0,3522,3524,1,0,0,0,3523,3500, - 1,0,0,0,3523,3507,1,0,0,0,3523,3514,1,0,0,0,3524,273,1,0,0,0,3525, - 3526,5,100,0,0,3526,3527,3,1434,717,0,3527,275,1,0,0,0,3528,3529, - 5,105,0,0,3529,3535,3,132,66,0,3530,3531,5,379,0,0,3531,3535,5,277, - 0,0,3532,3533,5,105,0,0,3533,3535,5,277,0,0,3534,3528,1,0,0,0,3534, - 3530,1,0,0,0,3534,3532,1,0,0,0,3535,277,1,0,0,0,3536,3537,5,80,0, - 0,3537,3543,5,161,0,0,3538,3544,5,191,0,0,3539,3540,5,182,0,0,3540, - 3544,5,320,0,0,3541,3542,5,292,0,0,3542,3544,5,320,0,0,3543,3538, - 1,0,0,0,3543,3539,1,0,0,0,3543,3541,1,0,0,0,3544,279,1,0,0,0,3545, - 3546,5,351,0,0,3546,3547,3,1400,700,0,3547,281,1,0,0,0,3548,3550, - 3,640,320,0,3549,3548,1,0,0,0,3549,3550,1,0,0,0,3550,3552,1,0,0, - 0,3551,3553,3,1012,506,0,3552,3551,1,0,0,0,3552,3553,1,0,0,0,3553, - 3555,1,0,0,0,3554,3556,3,284,142,0,3555,3554,1,0,0,0,3555,3556,1, - 0,0,0,3556,283,1,0,0,0,3557,3558,5,100,0,0,3558,3559,5,226,0,0,3559, - 3560,5,351,0,0,3560,3561,3,1400,700,0,3561,285,1,0,0,0,3562,3563, - 5,100,0,0,3563,3564,5,226,0,0,3564,3565,3,1434,717,0,3565,287,1, - 0,0,0,3566,3567,5,46,0,0,3567,3572,5,342,0,0,3568,3570,3,514,257, - 0,3569,3568,1,0,0,0,3569,3570,1,0,0,0,3570,3571,1,0,0,0,3571,3573, - 3,556,278,0,3572,3569,1,0,0,0,3572,3573,1,0,0,0,3573,3575,1,0,0, - 0,3574,3576,3,916,458,0,3575,3574,1,0,0,0,3575,3576,1,0,0,0,3576, - 3577,1,0,0,0,3577,3580,5,80,0,0,3578,3581,3,1330,665,0,3579,3581, - 3,1326,663,0,3580,3578,1,0,0,0,3580,3579,1,0,0,0,3581,3582,1,0,0, - 0,3582,3583,5,64,0,0,3583,3584,3,1102,551,0,3584,289,1,0,0,0,3585, - 3586,5,138,0,0,3586,3588,5,342,0,0,3587,3589,3,746,373,0,3588,3587, - 1,0,0,0,3588,3589,1,0,0,0,3589,3590,1,0,0,0,3590,3591,3,556,278, - 0,3591,3592,5,333,0,0,3592,3593,5,342,0,0,3593,3594,3,1462,731,0, - 3594,291,1,0,0,0,3595,3597,5,46,0,0,3596,3598,3,190,95,0,3597,3596, - 1,0,0,0,3597,3598,1,0,0,0,3598,3599,1,0,0,0,3599,3601,5,92,0,0,3600, - 3602,3,514,257,0,3601,3600,1,0,0,0,3601,3602,1,0,0,0,3602,3603,1, - 0,0,0,3603,3604,3,294,147,0,3604,3605,5,36,0,0,3605,3607,3,998,499, - 0,3606,3608,3,296,148,0,3607,3606,1,0,0,0,3607,3608,1,0,0,0,3608, - 293,1,0,0,0,3609,3611,3,1402,701,0,3610,3612,3,242,121,0,3611,3610, - 1,0,0,0,3611,3612,1,0,0,0,3612,3614,1,0,0,0,3613,3615,3,274,137, - 0,3614,3613,1,0,0,0,3614,3615,1,0,0,0,3615,3617,1,0,0,0,3616,3618, - 3,276,138,0,3617,3616,1,0,0,0,3617,3618,1,0,0,0,3618,3620,1,0,0, - 0,3619,3621,3,278,139,0,3620,3619,1,0,0,0,3620,3621,1,0,0,0,3621, - 3623,1,0,0,0,3622,3624,3,280,140,0,3623,3622,1,0,0,0,3623,3624,1, - 0,0,0,3624,295,1,0,0,0,3625,3629,5,105,0,0,3626,3630,5,174,0,0,3627, - 3628,5,269,0,0,3628,3630,5,174,0,0,3629,3626,1,0,0,0,3629,3627,1, - 0,0,0,3630,297,1,0,0,0,3631,3633,5,46,0,0,3632,3634,3,302,151,0, - 3633,3632,1,0,0,0,3633,3634,1,0,0,0,3634,3635,1,0,0,0,3635,3636, - 5,259,0,0,3636,3638,5,376,0,0,3637,3639,3,514,257,0,3638,3637,1, - 0,0,0,3638,3639,1,0,0,0,3639,3640,1,0,0,0,3640,3641,3,300,150,0, - 3641,3642,5,36,0,0,3642,3644,3,998,499,0,3643,3645,3,296,148,0,3644, - 3643,1,0,0,0,3644,3645,1,0,0,0,3645,299,1,0,0,0,3646,3648,3,1406, - 703,0,3647,3649,3,242,121,0,3648,3647,1,0,0,0,3648,3649,1,0,0,0, - 3649,3651,1,0,0,0,3650,3652,3,274,137,0,3651,3650,1,0,0,0,3651,3652, - 1,0,0,0,3652,3654,1,0,0,0,3653,3655,3,134,67,0,3654,3653,1,0,0,0, - 3654,3655,1,0,0,0,3655,3657,1,0,0,0,3656,3658,3,280,140,0,3657,3656, - 1,0,0,0,3657,3658,1,0,0,0,3658,301,1,0,0,0,3659,3660,5,367,0,0,3660, - 303,1,0,0,0,3661,3662,5,305,0,0,3662,3663,5,259,0,0,3663,3665,5, - 376,0,0,3664,3666,3,628,314,0,3665,3664,1,0,0,0,3665,3666,1,0,0, - 0,3666,3667,1,0,0,0,3667,3669,3,1408,704,0,3668,3670,3,296,148,0, - 3669,3668,1,0,0,0,3669,3670,1,0,0,0,3670,305,1,0,0,0,3671,3673,5, - 46,0,0,3672,3674,3,190,95,0,3673,3672,1,0,0,0,3673,3674,1,0,0,0, - 3674,3675,1,0,0,0,3675,3677,5,328,0,0,3676,3678,3,514,257,0,3677, - 3676,1,0,0,0,3677,3678,1,0,0,0,3678,3679,1,0,0,0,3679,3681,3,1410, - 705,0,3680,3682,3,310,155,0,3681,3680,1,0,0,0,3681,3682,1,0,0,0, - 3682,307,1,0,0,0,3683,3684,5,138,0,0,3684,3686,5,328,0,0,3685,3687, - 3,746,373,0,3686,3685,1,0,0,0,3686,3687,1,0,0,0,3687,3688,1,0,0, - 0,3688,3689,3,1410,705,0,3689,3690,3,314,157,0,3690,309,1,0,0,0, - 3691,3692,3,314,157,0,3692,311,1,0,0,0,3693,3694,5,2,0,0,3694,3695, - 3,314,157,0,3695,3696,5,3,0,0,3696,313,1,0,0,0,3697,3699,3,316,158, - 0,3698,3697,1,0,0,0,3699,3700,1,0,0,0,3700,3698,1,0,0,0,3700,3701, - 1,0,0,0,3701,315,1,0,0,0,3702,3703,5,36,0,0,3703,3737,3,1170,585, - 0,3704,3705,5,148,0,0,3705,3737,3,320,160,0,3706,3737,5,173,0,0, - 3707,3709,5,225,0,0,3708,3710,3,318,159,0,3709,3708,1,0,0,0,3709, - 3710,1,0,0,0,3710,3711,1,0,0,0,3711,3737,3,320,160,0,3712,3713,5, - 260,0,0,3713,3737,3,320,160,0,3714,3715,5,262,0,0,3715,3737,3,320, - 160,0,3716,3717,5,269,0,0,3717,3737,7,30,0,0,3718,3719,5,281,0,0, - 3719,3720,5,147,0,0,3720,3737,3,1430,715,0,3721,3722,5,328,0,0,3722, - 3723,5,266,0,0,3723,3737,3,556,278,0,3724,3726,5,340,0,0,3725,3727, - 3,14,7,0,3726,3725,1,0,0,0,3726,3727,1,0,0,0,3727,3728,1,0,0,0,3728, - 3737,3,320,160,0,3729,3731,5,314,0,0,3730,3732,3,14,7,0,3731,3730, - 1,0,0,0,3731,3732,1,0,0,0,3732,3734,1,0,0,0,3733,3735,3,320,160, - 0,3734,3733,1,0,0,0,3734,3735,1,0,0,0,3735,3737,1,0,0,0,3736,3702, - 1,0,0,0,3736,3704,1,0,0,0,3736,3706,1,0,0,0,3736,3707,1,0,0,0,3736, - 3712,1,0,0,0,3736,3714,1,0,0,0,3736,3716,1,0,0,0,3736,3718,1,0,0, - 0,3736,3721,1,0,0,0,3736,3724,1,0,0,0,3736,3729,1,0,0,0,3737,317, - 1,0,0,0,3738,3739,5,147,0,0,3739,319,1,0,0,0,3740,3747,3,1452,726, - 0,3741,3742,5,12,0,0,3742,3747,3,1452,726,0,3743,3744,5,13,0,0,3744, - 3747,3,1452,726,0,3745,3747,3,1462,731,0,3746,3740,1,0,0,0,3746, - 3741,1,0,0,0,3746,3743,1,0,0,0,3746,3745,1,0,0,0,3747,321,1,0,0, - 0,3748,3753,3,320,160,0,3749,3750,5,6,0,0,3750,3752,3,320,160,0, - 3751,3749,1,0,0,0,3752,3755,1,0,0,0,3753,3751,1,0,0,0,3753,3754, - 1,0,0,0,3754,323,1,0,0,0,3755,3753,1,0,0,0,3756,3758,5,46,0,0,3757, - 3759,3,656,328,0,3758,3757,1,0,0,0,3758,3759,1,0,0,0,3759,3761,1, - 0,0,0,3760,3762,3,326,163,0,3761,3760,1,0,0,0,3761,3762,1,0,0,0, - 3762,3764,1,0,0,0,3763,3765,3,336,168,0,3764,3763,1,0,0,0,3764,3765, - 1,0,0,0,3765,3766,1,0,0,0,3766,3767,5,247,0,0,3767,3776,3,1434,717, - 0,3768,3769,5,215,0,0,3769,3771,3,328,164,0,3770,3772,3,330,165, - 0,3771,3770,1,0,0,0,3771,3772,1,0,0,0,3772,3774,1,0,0,0,3773,3775, - 3,334,167,0,3774,3773,1,0,0,0,3774,3775,1,0,0,0,3775,3777,1,0,0, - 0,3776,3768,1,0,0,0,3776,3777,1,0,0,0,3777,325,1,0,0,0,3778,3779, - 5,359,0,0,3779,327,1,0,0,0,3780,3782,3,1434,717,0,3781,3783,3,558, - 279,0,3782,3781,1,0,0,0,3782,3783,1,0,0,0,3783,329,1,0,0,0,3784, - 3785,5,239,0,0,3785,3786,3,328,164,0,3786,331,1,0,0,0,3787,3788, - 5,373,0,0,3788,3792,3,328,164,0,3789,3790,5,269,0,0,3790,3792,5, - 373,0,0,3791,3787,1,0,0,0,3791,3789,1,0,0,0,3792,333,1,0,0,0,3793, - 3794,3,332,166,0,3794,335,1,0,0,0,3795,3796,5,295,0,0,3796,337,1, - 0,0,0,3797,3798,5,46,0,0,3798,3799,5,351,0,0,3799,3801,3,1400,700, - 0,3800,3802,3,340,170,0,3801,3800,1,0,0,0,3801,3802,1,0,0,0,3802, - 3803,1,0,0,0,3803,3804,5,255,0,0,3804,3806,3,1456,728,0,3805,3807, - 3,134,67,0,3806,3805,1,0,0,0,3806,3807,1,0,0,0,3807,339,1,0,0,0, - 3808,3809,5,282,0,0,3809,3810,3,1468,734,0,3810,341,1,0,0,0,3811, - 3812,5,46,0,0,3812,3814,5,204,0,0,3813,3815,3,514,257,0,3814,3813, - 1,0,0,0,3814,3815,1,0,0,0,3815,3816,1,0,0,0,3816,3818,3,1434,717, - 0,3817,3819,3,14,7,0,3818,3817,1,0,0,0,3818,3819,1,0,0,0,3819,3820, - 1,0,0,0,3820,3821,3,344,172,0,3821,343,1,0,0,0,3822,3824,3,346,173, - 0,3823,3822,1,0,0,0,3824,3827,1,0,0,0,3825,3823,1,0,0,0,3825,3826, - 1,0,0,0,3826,345,1,0,0,0,3827,3825,1,0,0,0,3828,3829,5,323,0,0,3829, - 3836,3,1420,710,0,3830,3831,5,375,0,0,3831,3836,3,80,40,0,3832,3833, - 5,64,0,0,3833,3836,3,80,40,0,3834,3836,5,150,0,0,3835,3828,1,0,0, - 0,3835,3830,1,0,0,0,3835,3832,1,0,0,0,3835,3834,1,0,0,0,3836,347, - 1,0,0,0,3837,3838,5,138,0,0,3838,3839,5,204,0,0,3839,3840,3,1434, - 717,0,3840,3841,5,369,0,0,3841,3842,3,350,175,0,3842,349,1,0,0,0, - 3843,3845,3,352,176,0,3844,3843,1,0,0,0,3845,3848,1,0,0,0,3846,3844, - 1,0,0,0,3846,3847,1,0,0,0,3847,351,1,0,0,0,3848,3846,1,0,0,0,3849, - 3850,5,94,0,0,3850,3851,3,80,40,0,3851,353,1,0,0,0,3852,3853,5,138, - 0,0,3853,3854,5,204,0,0,3854,3855,3,1434,717,0,3855,3856,3,44,22, - 0,3856,3857,3,546,273,0,3857,3955,1,0,0,0,3858,3859,5,138,0,0,3859, - 3860,5,204,0,0,3860,3861,3,1434,717,0,3861,3862,3,44,22,0,3862,3863, - 3,544,272,0,3863,3955,1,0,0,0,3864,3865,5,138,0,0,3865,3866,5,204, - 0,0,3866,3867,3,1434,717,0,3867,3868,3,44,22,0,3868,3869,5,136,0, - 0,3869,3870,3,696,348,0,3870,3955,1,0,0,0,3871,3872,5,138,0,0,3872, - 3873,5,204,0,0,3873,3874,3,1434,717,0,3874,3875,3,44,22,0,3875,3876, - 5,41,0,0,3876,3877,5,2,0,0,3877,3878,3,1166,583,0,3878,3879,5,36, - 0,0,3879,3880,3,1166,583,0,3880,3881,5,3,0,0,3881,3955,1,0,0,0,3882, - 3883,5,138,0,0,3883,3884,5,204,0,0,3884,3885,3,1434,717,0,3885,3886, - 3,44,22,0,3886,3887,5,189,0,0,3887,3888,3,1166,583,0,3888,3955,1, - 0,0,0,3889,3890,5,138,0,0,3890,3891,5,204,0,0,3891,3892,3,1434,717, - 0,3892,3893,3,44,22,0,3893,3894,5,211,0,0,3894,3895,3,672,336,0, - 3895,3955,1,0,0,0,3896,3897,5,138,0,0,3897,3898,5,204,0,0,3898,3899, - 3,1434,717,0,3899,3900,3,44,22,0,3900,3901,5,278,0,0,3901,3902,3, - 734,367,0,3902,3955,1,0,0,0,3903,3904,5,138,0,0,3904,3905,5,204, - 0,0,3905,3906,3,1434,717,0,3906,3907,3,44,22,0,3907,3908,5,278,0, - 0,3908,3909,5,156,0,0,3909,3910,3,556,278,0,3910,3911,5,100,0,0, - 3911,3912,3,1434,717,0,3912,3955,1,0,0,0,3913,3914,5,138,0,0,3914, - 3915,5,204,0,0,3915,3916,3,1434,717,0,3916,3917,3,44,22,0,3917,3918, - 5,278,0,0,3918,3919,5,206,0,0,3919,3920,3,556,278,0,3920,3921,5, - 100,0,0,3921,3922,3,1434,717,0,3922,3955,1,0,0,0,3923,3924,5,138, - 0,0,3924,3925,5,204,0,0,3925,3926,3,1434,717,0,3926,3927,3,44,22, - 0,3927,3928,5,296,0,0,3928,3929,3,668,334,0,3929,3955,1,0,0,0,3930, - 3931,5,138,0,0,3931,3932,5,204,0,0,3932,3933,3,1434,717,0,3933,3934, - 3,44,22,0,3934,3935,5,442,0,0,3935,3936,3,664,332,0,3936,3955,1, - 0,0,0,3937,3938,5,138,0,0,3938,3939,5,204,0,0,3939,3940,3,1434,717, - 0,3940,3941,3,44,22,0,3941,3942,5,443,0,0,3942,3943,5,62,0,0,3943, - 3944,3,1166,583,0,3944,3945,5,247,0,0,3945,3946,3,1434,717,0,3946, - 3955,1,0,0,0,3947,3948,5,138,0,0,3948,3949,5,204,0,0,3949,3950,3, - 1434,717,0,3950,3951,3,44,22,0,3951,3952,5,360,0,0,3952,3953,3,1166, - 583,0,3953,3955,1,0,0,0,3954,3852,1,0,0,0,3954,3858,1,0,0,0,3954, - 3864,1,0,0,0,3954,3871,1,0,0,0,3954,3882,1,0,0,0,3954,3889,1,0,0, - 0,3954,3896,1,0,0,0,3954,3903,1,0,0,0,3954,3913,1,0,0,0,3954,3923, - 1,0,0,0,3954,3930,1,0,0,0,3954,3937,1,0,0,0,3954,3947,1,0,0,0,3955, - 355,1,0,0,0,3956,3957,5,46,0,0,3957,3958,5,63,0,0,3958,3959,5,174, - 0,0,3959,3960,5,381,0,0,3960,3962,3,1434,717,0,3961,3963,3,362,181, - 0,3962,3961,1,0,0,0,3962,3963,1,0,0,0,3963,3965,1,0,0,0,3964,3966, - 3,366,183,0,3965,3964,1,0,0,0,3965,3966,1,0,0,0,3966,357,1,0,0,0, - 3967,3968,5,215,0,0,3968,3976,3,328,164,0,3969,3970,5,269,0,0,3970, - 3976,5,215,0,0,3971,3972,5,373,0,0,3972,3976,3,328,164,0,3973,3974, - 5,269,0,0,3974,3976,5,373,0,0,3975,3967,1,0,0,0,3975,3969,1,0,0, - 0,3975,3971,1,0,0,0,3975,3973,1,0,0,0,3976,359,1,0,0,0,3977,3979, - 3,358,179,0,3978,3977,1,0,0,0,3979,3980,1,0,0,0,3980,3978,1,0,0, - 0,3980,3981,1,0,0,0,3981,361,1,0,0,0,3982,3983,3,360,180,0,3983, - 363,1,0,0,0,3984,3985,5,138,0,0,3985,3986,5,63,0,0,3986,3987,5,174, - 0,0,3987,3988,5,381,0,0,3988,3990,3,1434,717,0,3989,3991,3,362,181, - 0,3990,3989,1,0,0,0,3990,3991,1,0,0,0,3991,3992,1,0,0,0,3992,3993, - 3,370,185,0,3993,4002,1,0,0,0,3994,3995,5,138,0,0,3995,3996,5,63, - 0,0,3996,3997,5,174,0,0,3997,3998,5,381,0,0,3998,3999,3,1434,717, - 0,3999,4000,3,360,180,0,4000,4002,1,0,0,0,4001,3984,1,0,0,0,4001, - 3994,1,0,0,0,4002,365,1,0,0,0,4003,4004,5,280,0,0,4004,4005,5,2, - 0,0,4005,4006,3,368,184,0,4006,4007,5,3,0,0,4007,367,1,0,0,0,4008, - 4013,3,376,188,0,4009,4010,5,6,0,0,4010,4012,3,376,188,0,4011,4009, - 1,0,0,0,4012,4015,1,0,0,0,4013,4011,1,0,0,0,4013,4014,1,0,0,0,4014, - 369,1,0,0,0,4015,4013,1,0,0,0,4016,4017,5,280,0,0,4017,4018,5,2, - 0,0,4018,4019,3,372,186,0,4019,4020,5,3,0,0,4020,371,1,0,0,0,4021, - 4026,3,374,187,0,4022,4023,5,6,0,0,4023,4025,3,374,187,0,4024,4022, - 1,0,0,0,4025,4028,1,0,0,0,4026,4024,1,0,0,0,4026,4027,1,0,0,0,4027, - 373,1,0,0,0,4028,4026,1,0,0,0,4029,4037,3,376,188,0,4030,4031,5, - 333,0,0,4031,4037,3,376,188,0,4032,4033,5,133,0,0,4033,4037,3,376, - 188,0,4034,4035,5,191,0,0,4035,4037,3,376,188,0,4036,4029,1,0,0, - 0,4036,4030,1,0,0,0,4036,4032,1,0,0,0,4036,4034,1,0,0,0,4037,375, - 1,0,0,0,4038,4039,3,378,189,0,4039,4040,3,380,190,0,4040,377,1,0, - 0,0,4041,4042,3,1488,744,0,4042,379,1,0,0,0,4043,4044,3,1456,728, - 0,4044,381,1,0,0,0,4045,4046,5,46,0,0,4046,4048,5,331,0,0,4047,4049, - 3,514,257,0,4048,4047,1,0,0,0,4048,4049,1,0,0,0,4049,4050,1,0,0, - 0,4050,4052,3,1434,717,0,4051,4053,3,384,192,0,4052,4051,1,0,0,0, - 4052,4053,1,0,0,0,4053,4055,1,0,0,0,4054,4056,3,388,194,0,4055,4054, - 1,0,0,0,4055,4056,1,0,0,0,4056,4057,1,0,0,0,4057,4058,5,63,0,0,4058, - 4059,5,174,0,0,4059,4060,5,381,0,0,4060,4062,3,1434,717,0,4061,4063, - 3,366,183,0,4062,4061,1,0,0,0,4062,4063,1,0,0,0,4063,383,1,0,0,0, - 4064,4065,5,360,0,0,4065,4066,3,1456,728,0,4066,385,1,0,0,0,4067, - 4070,5,375,0,0,4068,4071,3,1456,728,0,4069,4071,5,78,0,0,4070,4068, - 1,0,0,0,4070,4069,1,0,0,0,4071,387,1,0,0,0,4072,4073,3,386,193,0, - 4073,389,1,0,0,0,4074,4075,5,138,0,0,4075,4076,5,331,0,0,4076,4082, - 3,1434,717,0,4077,4083,3,370,185,0,4078,4080,3,386,193,0,4079,4081, - 3,370,185,0,4080,4079,1,0,0,0,4080,4081,1,0,0,0,4081,4083,1,0,0, - 0,4082,4077,1,0,0,0,4082,4078,1,0,0,0,4083,391,1,0,0,0,4084,4085, - 5,46,0,0,4085,4086,5,63,0,0,4086,4088,5,92,0,0,4087,4089,3,514,257, - 0,4088,4087,1,0,0,0,4088,4089,1,0,0,0,4089,4090,1,0,0,0,4090,4091, - 3,1402,701,0,4091,4093,5,2,0,0,4092,4094,3,194,97,0,4093,4092,1, - 0,0,0,4093,4094,1,0,0,0,4094,4095,1,0,0,0,4095,4097,5,3,0,0,4096, - 4098,3,264,132,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0,4098,4099,1, - 0,0,0,4099,4100,5,331,0,0,4100,4102,3,1434,717,0,4101,4103,3,366, - 183,0,4102,4101,1,0,0,0,4102,4103,1,0,0,0,4103,4124,1,0,0,0,4104, - 4105,5,46,0,0,4105,4106,5,63,0,0,4106,4108,5,92,0,0,4107,4109,3, - 514,257,0,4108,4107,1,0,0,0,4108,4109,1,0,0,0,4109,4110,1,0,0,0, - 4110,4111,3,1402,701,0,4111,4112,5,285,0,0,4112,4113,5,275,0,0,4113, - 4115,3,1404,702,0,4114,4116,3,196,98,0,4115,4114,1,0,0,0,4115,4116, - 1,0,0,0,4116,4117,1,0,0,0,4117,4118,3,144,72,0,4118,4119,5,331,0, - 0,4119,4121,3,1434,717,0,4120,4122,3,366,183,0,4121,4120,1,0,0,0, - 4121,4122,1,0,0,0,4122,4124,1,0,0,0,4123,4084,1,0,0,0,4123,4104, - 1,0,0,0,4124,393,1,0,0,0,4125,4126,5,444,0,0,4126,4127,5,63,0,0, - 4127,4128,5,323,0,0,4128,4130,3,1420,710,0,4129,4131,3,398,199,0, - 4130,4129,1,0,0,0,4130,4131,1,0,0,0,4131,4132,1,0,0,0,4132,4133, - 5,64,0,0,4133,4134,5,331,0,0,4134,4135,3,1434,717,0,4135,4136,5, - 71,0,0,4136,4138,3,1434,717,0,4137,4139,3,366,183,0,4138,4137,1, - 0,0,0,4138,4139,1,0,0,0,4139,395,1,0,0,0,4140,4141,5,74,0,0,4141, - 4144,5,94,0,0,4142,4144,5,59,0,0,4143,4140,1,0,0,0,4143,4142,1,0, - 0,0,4144,397,1,0,0,0,4145,4146,3,396,198,0,4146,4147,5,2,0,0,4147, - 4148,3,1122,561,0,4148,4149,5,3,0,0,4149,399,1,0,0,0,4150,4151,5, - 46,0,0,4151,4152,5,99,0,0,4152,4154,5,257,0,0,4153,4155,3,514,257, - 0,4154,4153,1,0,0,0,4154,4155,1,0,0,0,4155,4156,1,0,0,0,4156,4157, - 5,62,0,0,4157,4158,3,402,201,0,4158,4159,5,331,0,0,4159,4161,3,1434, - 717,0,4160,4162,3,366,183,0,4161,4160,1,0,0,0,4161,4162,1,0,0,0, - 4162,401,1,0,0,0,4163,4166,3,1468,734,0,4164,4166,5,99,0,0,4165, - 4163,1,0,0,0,4165,4164,1,0,0,0,4166,403,1,0,0,0,4167,4168,5,138, - 0,0,4168,4169,5,99,0,0,4169,4170,5,257,0,0,4170,4171,5,62,0,0,4171, - 4172,3,402,201,0,4172,4173,5,331,0,0,4173,4174,3,1434,717,0,4174, - 4175,3,370,185,0,4175,405,1,0,0,0,4176,4177,5,46,0,0,4177,4178,5, - 445,0,0,4178,4179,3,1434,717,0,4179,4180,5,80,0,0,4180,4182,3,1410, - 705,0,4181,4183,3,424,212,0,4182,4181,1,0,0,0,4182,4183,1,0,0,0, - 4183,4185,1,0,0,0,4184,4186,3,426,213,0,4185,4184,1,0,0,0,4185,4186, - 1,0,0,0,4186,4188,1,0,0,0,4187,4189,3,420,210,0,4188,4187,1,0,0, - 0,4188,4189,1,0,0,0,4189,4191,1,0,0,0,4190,4192,3,416,208,0,4191, - 4190,1,0,0,0,4191,4192,1,0,0,0,4192,4194,1,0,0,0,4193,4195,3,418, - 209,0,4194,4193,1,0,0,0,4194,4195,1,0,0,0,4195,407,1,0,0,0,4196, - 4197,5,138,0,0,4197,4198,5,445,0,0,4198,4199,3,1434,717,0,4199,4200, - 5,80,0,0,4200,4202,3,1410,705,0,4201,4203,3,422,211,0,4202,4201, - 1,0,0,0,4202,4203,1,0,0,0,4203,4205,1,0,0,0,4204,4206,3,416,208, - 0,4205,4204,1,0,0,0,4205,4206,1,0,0,0,4206,4208,1,0,0,0,4207,4209, - 3,418,209,0,4208,4207,1,0,0,0,4208,4209,1,0,0,0,4209,409,1,0,0,0, - 4210,4211,5,138,0,0,4211,4212,5,296,0,0,4212,4214,3,1426,713,0,4213, - 4215,3,658,329,0,4214,4213,1,0,0,0,4214,4215,1,0,0,0,4215,4216,1, - 0,0,0,4216,4217,3,412,206,0,4217,411,1,0,0,0,4218,4222,3,414,207, - 0,4219,4221,3,414,207,0,4220,4219,1,0,0,0,4221,4224,1,0,0,0,4222, - 4220,1,0,0,0,4222,4223,1,0,0,0,4223,4226,1,0,0,0,4224,4222,1,0,0, - 0,4225,4227,5,315,0,0,4226,4225,1,0,0,0,4226,4227,1,0,0,0,4227,4245, - 1,0,0,0,4228,4229,5,309,0,0,4229,4230,5,94,0,0,4230,4245,3,1428, - 714,0,4231,4232,5,282,0,0,4232,4233,5,94,0,0,4233,4245,3,1468,734, - 0,4234,4235,5,333,0,0,4235,4236,5,323,0,0,4236,4245,3,48,24,0,4237, - 4239,5,269,0,0,4238,4237,1,0,0,0,4238,4239,1,0,0,0,4239,4240,1,0, - 0,0,4240,4241,5,462,0,0,4241,4242,5,80,0,0,4242,4243,5,204,0,0,4243, - 4245,3,1434,717,0,4244,4218,1,0,0,0,4244,4228,1,0,0,0,4244,4231, - 1,0,0,0,4244,4234,1,0,0,0,4244,4238,1,0,0,0,4245,413,1,0,0,0,4246, - 4248,5,205,0,0,4247,4246,1,0,0,0,4247,4248,1,0,0,0,4248,4249,1,0, - 0,0,4249,4250,5,327,0,0,4250,4257,5,243,0,0,4251,4253,5,205,0,0, - 4252,4251,1,0,0,0,4252,4253,1,0,0,0,4253,4254,1,0,0,0,4254,4255, - 5,327,0,0,4255,4257,5,181,0,0,4256,4247,1,0,0,0,4256,4252,1,0,0, - 0,4257,4275,1,0,0,0,4258,4259,5,333,0,0,4259,4260,3,1434,717,0,4260, - 4263,7,31,0,0,4261,4264,3,1434,717,0,4262,4264,5,53,0,0,4263,4261, - 1,0,0,0,4263,4262,1,0,0,0,4264,4275,1,0,0,0,4265,4266,5,333,0,0, - 4266,4267,3,1434,717,0,4267,4268,5,64,0,0,4268,4269,5,434,0,0,4269, - 4275,1,0,0,0,4270,4271,5,313,0,0,4271,4275,3,1434,717,0,4272,4273, - 5,313,0,0,4273,4275,5,30,0,0,4274,4256,1,0,0,0,4274,4258,1,0,0,0, - 4274,4265,1,0,0,0,4274,4270,1,0,0,0,4274,4272,1,0,0,0,4275,415,1, - 0,0,0,4276,4277,5,100,0,0,4277,4278,5,2,0,0,4278,4279,3,1210,605, - 0,4279,4280,5,3,0,0,4280,417,1,0,0,0,4281,4282,5,105,0,0,4282,4283, - 5,42,0,0,4283,4284,5,2,0,0,4284,4285,3,1210,605,0,4285,4286,5,3, - 0,0,4286,419,1,0,0,0,4287,4288,5,94,0,0,4288,4289,3,1470,735,0,4289, - 421,1,0,0,0,4290,4291,5,94,0,0,4291,4292,3,1470,735,0,4292,423,1, - 0,0,0,4293,4297,5,36,0,0,4294,4298,5,541,0,0,4295,4298,5,542,0,0, - 4296,4298,3,1490,745,0,4297,4294,1,0,0,0,4297,4295,1,0,0,0,4297, - 4296,1,0,0,0,4298,425,1,0,0,0,4299,4300,5,62,0,0,4300,4301,3,428, - 214,0,4301,427,1,0,0,0,4302,4303,7,32,0,0,4303,429,1,0,0,0,4304, - 4305,5,46,0,0,4305,4306,5,131,0,0,4306,4307,5,446,0,0,4307,4308, - 3,1434,717,0,4308,4309,5,360,0,0,4309,4310,3,432,216,0,4310,4311, - 5,215,0,0,4311,4312,3,328,164,0,4312,431,1,0,0,0,4313,4314,7,33, - 0,0,4314,433,1,0,0,0,4315,4317,5,46,0,0,4316,4318,3,656,328,0,4317, - 4316,1,0,0,0,4317,4318,1,0,0,0,4318,4319,1,0,0,0,4319,4320,5,357, - 0,0,4320,4321,3,1434,717,0,4321,4322,3,436,218,0,4322,4323,3,442, - 221,0,4323,4324,5,80,0,0,4324,4326,3,1404,702,0,4325,4327,3,446, - 223,0,4326,4325,1,0,0,0,4326,4327,1,0,0,0,4327,4329,1,0,0,0,4328, - 4330,3,458,229,0,4329,4328,1,0,0,0,4329,4330,1,0,0,0,4330,4332,1, - 0,0,0,4331,4333,3,464,232,0,4332,4331,1,0,0,0,4332,4333,1,0,0,0, - 4333,4334,1,0,0,0,4334,4335,5,202,0,0,4335,4336,3,466,233,0,4336, - 4337,5,2,0,0,4337,4338,3,468,234,0,4338,4339,5,3,0,0,4339,4370,1, - 0,0,0,4340,4342,5,46,0,0,4341,4343,3,656,328,0,4342,4341,1,0,0,0, - 4342,4343,1,0,0,0,4343,4345,1,0,0,0,4344,4346,5,45,0,0,4345,4344, - 1,0,0,0,4345,4346,1,0,0,0,4346,4347,1,0,0,0,4347,4348,5,357,0,0, - 4348,4349,3,1434,717,0,4349,4350,3,436,218,0,4350,4351,3,442,221, - 0,4351,4352,5,80,0,0,4352,4354,3,1404,702,0,4353,4355,3,472,236, - 0,4354,4353,1,0,0,0,4354,4355,1,0,0,0,4355,4356,1,0,0,0,4356,4358, - 3,474,237,0,4357,4359,3,438,219,0,4358,4357,1,0,0,0,4358,4359,1, - 0,0,0,4359,4361,1,0,0,0,4360,4362,3,464,232,0,4361,4360,1,0,0,0, - 4361,4362,1,0,0,0,4362,4363,1,0,0,0,4363,4364,5,202,0,0,4364,4365, - 3,466,233,0,4365,4366,5,2,0,0,4366,4367,3,468,234,0,4367,4368,5, - 3,0,0,4368,4370,1,0,0,0,4369,4315,1,0,0,0,4369,4340,1,0,0,0,4370, - 435,1,0,0,0,4371,4376,5,145,0,0,4372,4376,5,135,0,0,4373,4374,5, - 242,0,0,4374,4376,5,275,0,0,4375,4371,1,0,0,0,4375,4372,1,0,0,0, - 4375,4373,1,0,0,0,4376,437,1,0,0,0,4377,4379,5,62,0,0,4378,4380, - 5,192,0,0,4379,4378,1,0,0,0,4379,4380,1,0,0,0,4380,4381,1,0,0,0, - 4381,4382,3,440,220,0,4382,439,1,0,0,0,4383,4384,7,34,0,0,4384,441, - 1,0,0,0,4385,4390,3,444,222,0,4386,4387,5,82,0,0,4387,4389,3,444, - 222,0,4388,4386,1,0,0,0,4389,4392,1,0,0,0,4390,4388,1,0,0,0,4390, - 4391,1,0,0,0,4391,443,1,0,0,0,4392,4390,1,0,0,0,4393,4401,5,241, - 0,0,4394,4401,5,182,0,0,4395,4401,5,369,0,0,4396,4397,5,369,0,0, - 4397,4398,5,275,0,0,4398,4401,3,244,122,0,4399,4401,5,358,0,0,4400, - 4393,1,0,0,0,4400,4394,1,0,0,0,4400,4395,1,0,0,0,4400,4396,1,0,0, - 0,4400,4399,1,0,0,0,4401,445,1,0,0,0,4402,4403,5,447,0,0,4403,4404, - 3,448,224,0,4404,447,1,0,0,0,4405,4407,3,450,225,0,4406,4405,1,0, - 0,0,4407,4408,1,0,0,0,4408,4406,1,0,0,0,4408,4409,1,0,0,0,4409,449, - 1,0,0,0,4410,4411,3,452,226,0,4411,4413,3,454,227,0,4412,4414,3, - 870,435,0,4413,4412,1,0,0,0,4413,4414,1,0,0,0,4414,4415,1,0,0,0, - 4415,4416,3,456,228,0,4416,451,1,0,0,0,4417,4418,7,35,0,0,4418,453, - 1,0,0,0,4419,4420,7,36,0,0,4420,455,1,0,0,0,4421,4422,3,1472,736, - 0,4422,457,1,0,0,0,4423,4425,5,62,0,0,4424,4426,3,460,230,0,4425, - 4424,1,0,0,0,4425,4426,1,0,0,0,4426,4427,1,0,0,0,4427,4428,3,462, - 231,0,4428,459,1,0,0,0,4429,4430,5,192,0,0,4430,461,1,0,0,0,4431, - 4432,7,34,0,0,4432,463,1,0,0,0,4433,4434,5,102,0,0,4434,4435,5,2, - 0,0,4435,4436,3,1210,605,0,4436,4437,5,3,0,0,4437,465,1,0,0,0,4438, - 4439,5,211,0,0,4439,4443,3,1442,721,0,4440,4441,5,296,0,0,4441,4443, - 3,1426,713,0,4442,4438,1,0,0,0,4442,4440,1,0,0,0,4443,467,1,0,0, - 0,4444,4447,3,470,235,0,4445,4447,1,0,0,0,4446,4444,1,0,0,0,4446, - 4445,1,0,0,0,4447,4452,1,0,0,0,4448,4449,5,6,0,0,4449,4451,3,470, - 235,0,4450,4448,1,0,0,0,4451,4454,1,0,0,0,4452,4450,1,0,0,0,4452, - 4453,1,0,0,0,4453,469,1,0,0,0,4454,4452,1,0,0,0,4455,4460,3,1454, - 727,0,4456,4460,3,1452,726,0,4457,4460,3,1456,728,0,4458,4460,3, - 1488,744,0,4459,4455,1,0,0,0,4459,4456,1,0,0,0,4459,4457,1,0,0,0, - 4459,4458,1,0,0,0,4460,471,1,0,0,0,4461,4462,5,64,0,0,4462,4463, - 3,1410,705,0,4463,473,1,0,0,0,4464,4466,3,476,238,0,4465,4464,1, - 0,0,0,4466,4469,1,0,0,0,4467,4465,1,0,0,0,4467,4468,1,0,0,0,4468, - 475,1,0,0,0,4469,4467,1,0,0,0,4470,4471,5,77,0,0,4471,4482,5,54, - 0,0,4472,4482,5,54,0,0,4473,4474,5,69,0,0,4474,4482,5,221,0,0,4475, - 4476,5,69,0,0,4476,4482,5,180,0,0,4477,4478,5,77,0,0,4478,4482,5, - 371,0,0,4479,4480,5,269,0,0,4480,4482,5,228,0,0,4481,4470,1,0,0, - 0,4481,4472,1,0,0,0,4481,4473,1,0,0,0,4481,4475,1,0,0,0,4481,4477, - 1,0,0,0,4481,4479,1,0,0,0,4482,477,1,0,0,0,4483,4484,5,46,0,0,4484, - 4485,5,198,0,0,4485,4486,5,357,0,0,4486,4487,3,1434,717,0,4487,4488, - 5,80,0,0,4488,4489,3,1488,744,0,4489,4490,5,202,0,0,4490,4491,3, - 466,233,0,4491,4492,5,2,0,0,4492,4493,5,3,0,0,4493,4508,1,0,0,0, - 4494,4495,5,46,0,0,4495,4496,5,198,0,0,4496,4497,5,357,0,0,4497, - 4498,3,1434,717,0,4498,4499,5,80,0,0,4499,4500,3,1488,744,0,4500, - 4501,5,102,0,0,4501,4502,3,480,240,0,4502,4503,5,202,0,0,4503,4504, - 3,466,233,0,4504,4505,5,2,0,0,4505,4506,5,3,0,0,4506,4508,1,0,0, - 0,4507,4483,1,0,0,0,4507,4494,1,0,0,0,4508,479,1,0,0,0,4509,4514, - 3,482,241,0,4510,4511,5,33,0,0,4511,4513,3,482,241,0,4512,4510,1, - 0,0,0,4513,4516,1,0,0,0,4514,4512,1,0,0,0,4514,4515,1,0,0,0,4515, - 481,1,0,0,0,4516,4514,1,0,0,0,4517,4518,3,1472,736,0,4518,4519,5, - 68,0,0,4519,4520,5,2,0,0,4520,4521,3,484,242,0,4521,4522,5,3,0,0, - 4522,483,1,0,0,0,4523,4528,3,1456,728,0,4524,4525,5,6,0,0,4525,4527, - 3,1456,728,0,4526,4524,1,0,0,0,4527,4530,1,0,0,0,4528,4526,1,0,0, - 0,4528,4529,1,0,0,0,4529,485,1,0,0,0,4530,4528,1,0,0,0,4531,4532, - 5,138,0,0,4532,4533,5,198,0,0,4533,4534,5,357,0,0,4534,4535,3,1434, - 717,0,4535,4536,3,488,244,0,4536,487,1,0,0,0,4537,4539,5,193,0,0, - 4538,4540,7,20,0,0,4539,4538,1,0,0,0,4539,4540,1,0,0,0,4540,4543, - 1,0,0,0,4541,4543,5,186,0,0,4542,4537,1,0,0,0,4542,4541,1,0,0,0, - 4543,489,1,0,0,0,4544,4545,5,46,0,0,4545,4546,5,140,0,0,4546,4547, - 3,556,278,0,4547,4548,5,42,0,0,4548,4549,5,2,0,0,4549,4550,3,1210, - 605,0,4550,4551,5,3,0,0,4551,4552,3,474,237,0,4552,491,1,0,0,0,4553, - 4555,5,46,0,0,4554,4556,3,656,328,0,4555,4554,1,0,0,0,4555,4556, - 1,0,0,0,4556,4557,1,0,0,0,4557,4558,5,136,0,0,4558,4559,3,1442,721, - 0,4559,4560,3,692,346,0,4560,4561,3,494,247,0,4561,4657,1,0,0,0, - 4562,4564,5,46,0,0,4563,4565,3,656,328,0,4564,4563,1,0,0,0,4564, - 4565,1,0,0,0,4565,4566,1,0,0,0,4566,4567,5,136,0,0,4567,4568,3,1442, - 721,0,4568,4569,3,502,251,0,4569,4657,1,0,0,0,4570,4571,5,46,0,0, - 4571,4572,5,278,0,0,4572,4573,3,730,365,0,4573,4574,3,494,247,0, - 4574,4657,1,0,0,0,4575,4576,5,46,0,0,4576,4577,5,360,0,0,4577,4578, - 3,556,278,0,4578,4579,3,494,247,0,4579,4657,1,0,0,0,4580,4581,5, - 46,0,0,4581,4582,5,360,0,0,4582,4657,3,556,278,0,4583,4584,5,46, - 0,0,4584,4585,5,360,0,0,4585,4586,3,556,278,0,4586,4587,5,36,0,0, - 4587,4589,5,2,0,0,4588,4590,3,1146,573,0,4589,4588,1,0,0,0,4589, - 4590,1,0,0,0,4590,4591,1,0,0,0,4591,4592,5,3,0,0,4592,4657,1,0,0, - 0,4593,4594,5,46,0,0,4594,4595,5,360,0,0,4595,4596,3,556,278,0,4596, - 4597,5,36,0,0,4597,4598,5,196,0,0,4598,4600,5,2,0,0,4599,4601,3, - 508,254,0,4600,4599,1,0,0,0,4600,4601,1,0,0,0,4601,4602,1,0,0,0, - 4602,4603,5,3,0,0,4603,4657,1,0,0,0,4604,4605,5,46,0,0,4605,4606, - 5,360,0,0,4606,4607,3,556,278,0,4607,4608,5,36,0,0,4608,4609,5,299, - 0,0,4609,4610,3,494,247,0,4610,4657,1,0,0,0,4611,4612,5,46,0,0,4612, - 4613,5,355,0,0,4613,4614,5,325,0,0,4614,4615,5,283,0,0,4615,4616, - 3,556,278,0,4616,4617,3,494,247,0,4617,4657,1,0,0,0,4618,4619,5, - 46,0,0,4619,4620,5,355,0,0,4620,4621,5,325,0,0,4621,4622,5,185,0, - 0,4622,4623,3,556,278,0,4623,4624,3,494,247,0,4624,4657,1,0,0,0, - 4625,4626,5,46,0,0,4626,4627,5,355,0,0,4627,4628,5,325,0,0,4628, - 4629,5,353,0,0,4629,4630,3,556,278,0,4630,4631,3,494,247,0,4631, - 4657,1,0,0,0,4632,4633,5,46,0,0,4633,4634,5,355,0,0,4634,4635,5, - 325,0,0,4635,4636,5,163,0,0,4636,4637,3,556,278,0,4637,4638,3,494, - 247,0,4638,4657,1,0,0,0,4639,4640,5,46,0,0,4640,4642,5,108,0,0,4641, - 4643,3,514,257,0,4642,4641,1,0,0,0,4642,4643,1,0,0,0,4643,4644,1, - 0,0,0,4644,4645,3,556,278,0,4645,4646,3,494,247,0,4646,4657,1,0, - 0,0,4647,4648,5,46,0,0,4648,4650,5,108,0,0,4649,4651,3,514,257,0, - 4650,4649,1,0,0,0,4650,4651,1,0,0,0,4651,4652,1,0,0,0,4652,4653, - 3,556,278,0,4653,4654,5,64,0,0,4654,4655,3,556,278,0,4655,4657,1, - 0,0,0,4656,4553,1,0,0,0,4656,4562,1,0,0,0,4656,4570,1,0,0,0,4656, - 4575,1,0,0,0,4656,4580,1,0,0,0,4656,4583,1,0,0,0,4656,4593,1,0,0, - 0,4656,4604,1,0,0,0,4656,4611,1,0,0,0,4656,4618,1,0,0,0,4656,4625, - 1,0,0,0,4656,4632,1,0,0,0,4656,4639,1,0,0,0,4656,4647,1,0,0,0,4657, - 493,1,0,0,0,4658,4659,5,2,0,0,4659,4660,3,496,248,0,4660,4661,5, - 3,0,0,4661,495,1,0,0,0,4662,4667,3,498,249,0,4663,4664,5,6,0,0,4664, - 4666,3,498,249,0,4665,4663,1,0,0,0,4666,4669,1,0,0,0,4667,4665,1, - 0,0,0,4667,4668,1,0,0,0,4668,497,1,0,0,0,4669,4667,1,0,0,0,4670, - 4673,3,1488,744,0,4671,4672,5,10,0,0,4672,4674,3,500,250,0,4673, - 4671,1,0,0,0,4673,4674,1,0,0,0,4674,499,1,0,0,0,4675,4682,3,686, - 343,0,4676,4682,3,1500,750,0,4677,4682,3,1322,661,0,4678,4682,3, - 320,160,0,4679,4682,3,1456,728,0,4680,4682,5,407,0,0,4681,4675,1, - 0,0,0,4681,4676,1,0,0,0,4681,4677,1,0,0,0,4681,4678,1,0,0,0,4681, - 4679,1,0,0,0,4681,4680,1,0,0,0,4682,501,1,0,0,0,4683,4684,5,2,0, - 0,4684,4685,3,504,252,0,4685,4686,5,3,0,0,4686,503,1,0,0,0,4687, - 4692,3,506,253,0,4688,4689,5,6,0,0,4689,4691,3,506,253,0,4690,4688, - 1,0,0,0,4691,4694,1,0,0,0,4692,4690,1,0,0,0,4692,4693,1,0,0,0,4693, - 505,1,0,0,0,4694,4692,1,0,0,0,4695,4696,3,1490,745,0,4696,4697,5, - 10,0,0,4697,4698,3,500,250,0,4698,507,1,0,0,0,4699,4700,3,510,255, - 0,4700,509,1,0,0,0,4701,4706,3,1456,728,0,4702,4703,5,6,0,0,4703, - 4705,3,1456,728,0,4704,4702,1,0,0,0,4705,4708,1,0,0,0,4706,4704, - 1,0,0,0,4706,4707,1,0,0,0,4707,511,1,0,0,0,4708,4706,1,0,0,0,4709, - 4710,5,138,0,0,4710,4711,5,360,0,0,4711,4712,3,556,278,0,4712,4713, - 5,133,0,0,4713,4715,5,450,0,0,4714,4716,3,514,257,0,4715,4714,1, - 0,0,0,4715,4716,1,0,0,0,4716,4717,1,0,0,0,4717,4720,3,1456,728,0, - 4718,4719,7,37,0,0,4719,4721,3,1456,728,0,4720,4718,1,0,0,0,4720, - 4721,1,0,0,0,4721,4732,1,0,0,0,4722,4723,5,138,0,0,4723,4724,5,360, - 0,0,4724,4725,3,556,278,0,4725,4726,5,309,0,0,4726,4727,5,450,0, - 0,4727,4728,3,1456,728,0,4728,4729,5,94,0,0,4729,4730,3,1456,728, - 0,4730,4732,1,0,0,0,4731,4709,1,0,0,0,4731,4722,1,0,0,0,4732,513, - 1,0,0,0,4733,4734,5,220,0,0,4734,4735,5,77,0,0,4735,4736,5,396,0, - 0,4736,515,1,0,0,0,4737,4738,5,46,0,0,4738,4739,5,278,0,0,4739,4740, - 5,156,0,0,4740,4742,3,556,278,0,4741,4743,3,522,261,0,4742,4741, - 1,0,0,0,4742,4743,1,0,0,0,4743,4744,1,0,0,0,4744,4745,5,62,0,0,4745, - 4746,5,360,0,0,4746,4747,3,1166,583,0,4747,4748,5,100,0,0,4748,4750, - 3,1434,717,0,4749,4751,3,524,262,0,4750,4749,1,0,0,0,4750,4751,1, - 0,0,0,4751,4752,1,0,0,0,4752,4753,5,36,0,0,4753,4754,3,518,259,0, - 4754,517,1,0,0,0,4755,4760,3,520,260,0,4756,4757,5,6,0,0,4757,4759, - 3,520,260,0,4758,4756,1,0,0,0,4759,4762,1,0,0,0,4760,4758,1,0,0, - 0,4760,4761,1,0,0,0,4761,519,1,0,0,0,4762,4760,1,0,0,0,4763,4764, - 5,278,0,0,4764,4765,3,1454,727,0,4765,4767,3,730,365,0,4766,4768, - 3,526,263,0,4767,4766,1,0,0,0,4767,4768,1,0,0,0,4768,4770,1,0,0, - 0,4769,4771,3,528,264,0,4770,4769,1,0,0,0,4770,4771,1,0,0,0,4771, - 4795,1,0,0,0,4772,4773,5,278,0,0,4773,4774,3,1454,727,0,4774,4776, - 3,734,367,0,4775,4777,3,526,263,0,4776,4775,1,0,0,0,4776,4777,1, - 0,0,0,4777,4779,1,0,0,0,4778,4780,3,528,264,0,4779,4778,1,0,0,0, - 4779,4780,1,0,0,0,4780,4795,1,0,0,0,4781,4782,5,211,0,0,4782,4783, - 3,1454,727,0,4783,4784,3,672,336,0,4784,4795,1,0,0,0,4785,4786,5, - 211,0,0,4786,4787,3,1454,727,0,4787,4788,5,2,0,0,4788,4789,3,1340, - 670,0,4789,4790,5,3,0,0,4790,4791,3,672,336,0,4791,4795,1,0,0,0, - 4792,4793,5,345,0,0,4793,4795,3,1166,583,0,4794,4763,1,0,0,0,4794, - 4772,1,0,0,0,4794,4781,1,0,0,0,4794,4785,1,0,0,0,4794,4792,1,0,0, - 0,4795,521,1,0,0,0,4796,4797,5,53,0,0,4797,523,1,0,0,0,4798,4799, - 5,206,0,0,4799,4800,3,556,278,0,4800,525,1,0,0,0,4801,4802,5,62, - 0,0,4802,4808,5,325,0,0,4803,4804,5,62,0,0,4804,4805,5,83,0,0,4805, - 4806,5,147,0,0,4806,4808,3,556,278,0,4807,4801,1,0,0,0,4807,4803, - 1,0,0,0,4808,527,1,0,0,0,4809,4810,5,302,0,0,4810,529,1,0,0,0,4811, - 4812,5,46,0,0,4812,4813,5,278,0,0,4813,4814,5,206,0,0,4814,4815, - 3,556,278,0,4815,4816,5,100,0,0,4816,4817,3,1434,717,0,4817,531, - 1,0,0,0,4818,4819,5,138,0,0,4819,4820,5,278,0,0,4820,4821,5,206, - 0,0,4821,4822,3,556,278,0,4822,4823,5,100,0,0,4823,4824,3,1434,717, - 0,4824,4825,5,133,0,0,4825,4826,3,518,259,0,4826,4837,1,0,0,0,4827, - 4828,5,138,0,0,4828,4829,5,278,0,0,4829,4830,5,206,0,0,4830,4831, - 3,556,278,0,4831,4832,5,100,0,0,4832,4833,3,1434,717,0,4833,4834, - 5,191,0,0,4834,4835,3,534,267,0,4835,4837,1,0,0,0,4836,4818,1,0, - 0,0,4836,4827,1,0,0,0,4837,533,1,0,0,0,4838,4843,3,536,268,0,4839, - 4840,5,6,0,0,4840,4842,3,536,268,0,4841,4839,1,0,0,0,4842,4845,1, - 0,0,0,4843,4841,1,0,0,0,4843,4844,1,0,0,0,4844,535,1,0,0,0,4845, - 4843,1,0,0,0,4846,4847,5,278,0,0,4847,4848,3,1454,727,0,4848,4849, - 5,2,0,0,4849,4850,3,1340,670,0,4850,4851,5,3,0,0,4851,4859,1,0,0, - 0,4852,4853,5,211,0,0,4853,4854,3,1454,727,0,4854,4855,5,2,0,0,4855, - 4856,3,1340,670,0,4856,4857,5,3,0,0,4857,4859,1,0,0,0,4858,4846, - 1,0,0,0,4858,4852,1,0,0,0,4859,537,1,0,0,0,4860,4861,5,301,0,0,4861, - 4862,5,281,0,0,4862,4863,5,147,0,0,4863,4864,3,1470,735,0,4864,4865, - 5,94,0,0,4865,4866,3,1468,734,0,4866,539,1,0,0,0,4867,4868,5,191, - 0,0,4868,4870,5,92,0,0,4869,4871,3,746,373,0,4870,4869,1,0,0,0,4870, - 4871,1,0,0,0,4871,4872,1,0,0,0,4872,4874,3,1390,695,0,4873,4875, - 3,124,62,0,4874,4873,1,0,0,0,4874,4875,1,0,0,0,4875,5247,1,0,0,0, - 4876,4877,5,191,0,0,4877,4879,5,328,0,0,4878,4880,3,746,373,0,4879, - 4878,1,0,0,0,4879,4880,1,0,0,0,4880,4881,1,0,0,0,4881,4883,3,1414, - 707,0,4882,4884,3,124,62,0,4883,4882,1,0,0,0,4883,4884,1,0,0,0,4884, - 5247,1,0,0,0,4885,4886,5,191,0,0,4886,4888,5,376,0,0,4887,4889,3, - 746,373,0,4888,4887,1,0,0,0,4888,4889,1,0,0,0,4889,4890,1,0,0,0, - 4890,4892,3,542,271,0,4891,4893,3,124,62,0,4892,4891,1,0,0,0,4892, - 4893,1,0,0,0,4893,5247,1,0,0,0,4894,4895,5,191,0,0,4895,4896,5,259, - 0,0,4896,4898,5,376,0,0,4897,4899,3,746,373,0,4898,4897,1,0,0,0, - 4898,4899,1,0,0,0,4899,4900,1,0,0,0,4900,4902,3,542,271,0,4901,4903, - 3,124,62,0,4902,4901,1,0,0,0,4902,4903,1,0,0,0,4903,5247,1,0,0,0, - 4904,4905,5,191,0,0,4905,4907,5,226,0,0,4906,4908,3,746,373,0,4907, - 4906,1,0,0,0,4907,4908,1,0,0,0,4908,4909,1,0,0,0,4909,4911,3,1414, - 707,0,4910,4912,3,124,62,0,4911,4910,1,0,0,0,4911,4912,1,0,0,0,4912, - 5247,1,0,0,0,4913,4914,5,191,0,0,4914,4915,5,63,0,0,4915,4917,5, - 92,0,0,4916,4918,3,746,373,0,4917,4916,1,0,0,0,4917,4918,1,0,0,0, - 4918,4919,1,0,0,0,4919,4921,3,1390,695,0,4920,4922,3,124,62,0,4921, - 4920,1,0,0,0,4921,4922,1,0,0,0,4922,5247,1,0,0,0,4923,4924,5,191, - 0,0,4924,4926,5,108,0,0,4925,4927,3,746,373,0,4926,4925,1,0,0,0, - 4926,4927,1,0,0,0,4927,4928,1,0,0,0,4928,4930,3,1414,707,0,4929, - 4931,3,124,62,0,4930,4929,1,0,0,0,4930,4931,1,0,0,0,4931,5247,1, - 0,0,0,4932,4933,5,191,0,0,4933,4935,5,168,0,0,4934,4936,3,746,373, - 0,4935,4934,1,0,0,0,4935,4936,1,0,0,0,4936,4937,1,0,0,0,4937,4939, - 3,1414,707,0,4938,4940,3,124,62,0,4939,4938,1,0,0,0,4939,4940,1, - 0,0,0,4940,5247,1,0,0,0,4941,4942,5,191,0,0,4942,4944,5,342,0,0, - 4943,4945,3,746,373,0,4944,4943,1,0,0,0,4944,4945,1,0,0,0,4945,4946, - 1,0,0,0,4946,4948,3,1414,707,0,4947,4949,3,124,62,0,4948,4947,1, - 0,0,0,4948,4949,1,0,0,0,4949,5247,1,0,0,0,4950,4951,5,191,0,0,4951, - 4952,5,355,0,0,4952,4953,5,325,0,0,4953,4955,5,283,0,0,4954,4956, - 3,746,373,0,4955,4954,1,0,0,0,4955,4956,1,0,0,0,4956,4957,1,0,0, - 0,4957,4959,3,1414,707,0,4958,4960,3,124,62,0,4959,4958,1,0,0,0, - 4959,4960,1,0,0,0,4960,5247,1,0,0,0,4961,4962,5,191,0,0,4962,4963, - 5,355,0,0,4963,4964,5,325,0,0,4964,4966,5,185,0,0,4965,4967,3,746, - 373,0,4966,4965,1,0,0,0,4966,4967,1,0,0,0,4967,4968,1,0,0,0,4968, - 4970,3,1414,707,0,4969,4971,3,124,62,0,4970,4969,1,0,0,0,4970,4971, - 1,0,0,0,4971,5247,1,0,0,0,4972,4973,5,191,0,0,4973,4974,5,355,0, - 0,4974,4975,5,325,0,0,4975,4977,5,353,0,0,4976,4978,3,746,373,0, - 4977,4976,1,0,0,0,4977,4978,1,0,0,0,4978,4979,1,0,0,0,4979,4981, - 3,1414,707,0,4980,4982,3,124,62,0,4981,4980,1,0,0,0,4981,4982,1, - 0,0,0,4982,5247,1,0,0,0,4983,4984,5,191,0,0,4984,4985,5,355,0,0, - 4985,4986,5,325,0,0,4986,4988,5,163,0,0,4987,4989,3,746,373,0,4988, - 4987,1,0,0,0,4988,4989,1,0,0,0,4989,4990,1,0,0,0,4990,4992,3,1414, - 707,0,4991,4993,3,124,62,0,4992,4991,1,0,0,0,4992,4993,1,0,0,0,4993, - 5247,1,0,0,0,4994,4995,5,191,0,0,4995,4996,5,131,0,0,4996,4998,5, - 446,0,0,4997,4999,3,746,373,0,4998,4997,1,0,0,0,4998,4999,1,0,0, - 0,4999,5000,1,0,0,0,5000,5002,3,1414,707,0,5001,5003,3,124,62,0, - 5002,5001,1,0,0,0,5002,5003,1,0,0,0,5003,5247,1,0,0,0,5004,5005, - 5,191,0,0,5005,5006,5,198,0,0,5006,5008,5,357,0,0,5007,5009,3,746, - 373,0,5008,5007,1,0,0,0,5008,5009,1,0,0,0,5009,5010,1,0,0,0,5010, - 5012,3,1414,707,0,5011,5013,3,124,62,0,5012,5011,1,0,0,0,5012,5013, - 1,0,0,0,5013,5247,1,0,0,0,5014,5015,5,191,0,0,5015,5017,5,204,0, - 0,5016,5018,3,746,373,0,5017,5016,1,0,0,0,5017,5018,1,0,0,0,5018, - 5019,1,0,0,0,5019,5021,3,1414,707,0,5020,5022,3,124,62,0,5021,5020, - 1,0,0,0,5021,5022,1,0,0,0,5022,5247,1,0,0,0,5023,5024,5,191,0,0, - 5024,5025,5,63,0,0,5025,5026,5,174,0,0,5026,5028,5,381,0,0,5027, - 5029,3,746,373,0,5028,5027,1,0,0,0,5028,5029,1,0,0,0,5029,5030,1, - 0,0,0,5030,5032,3,1414,707,0,5031,5033,3,124,62,0,5032,5031,1,0, - 0,0,5032,5033,1,0,0,0,5033,5247,1,0,0,0,5034,5036,5,191,0,0,5035, - 5037,3,336,168,0,5036,5035,1,0,0,0,5036,5037,1,0,0,0,5037,5038,1, - 0,0,0,5038,5040,5,247,0,0,5039,5041,3,746,373,0,5040,5039,1,0,0, - 0,5040,5041,1,0,0,0,5041,5042,1,0,0,0,5042,5044,3,1414,707,0,5043, - 5045,3,124,62,0,5044,5043,1,0,0,0,5044,5045,1,0,0,0,5045,5247,1, - 0,0,0,5046,5047,5,191,0,0,5047,5049,5,452,0,0,5048,5050,3,746,373, - 0,5049,5048,1,0,0,0,5049,5050,1,0,0,0,5050,5051,1,0,0,0,5051,5053, - 3,1414,707,0,5052,5054,3,124,62,0,5053,5052,1,0,0,0,5053,5054,1, - 0,0,0,5054,5247,1,0,0,0,5055,5056,5,191,0,0,5056,5058,5,331,0,0, - 5057,5059,3,746,373,0,5058,5057,1,0,0,0,5058,5059,1,0,0,0,5059,5060, - 1,0,0,0,5060,5062,3,1414,707,0,5061,5063,3,124,62,0,5062,5061,1, - 0,0,0,5062,5063,1,0,0,0,5063,5247,1,0,0,0,5064,5065,5,191,0,0,5065, - 5067,5,323,0,0,5066,5068,3,746,373,0,5067,5066,1,0,0,0,5067,5068, - 1,0,0,0,5068,5069,1,0,0,0,5069,5071,3,1392,696,0,5070,5072,3,124, - 62,0,5071,5070,1,0,0,0,5071,5072,1,0,0,0,5072,5247,1,0,0,0,5073, - 5074,5,191,0,0,5074,5076,5,445,0,0,5075,5077,3,746,373,0,5076,5075, - 1,0,0,0,5076,5077,1,0,0,0,5077,5078,1,0,0,0,5078,5079,3,1434,717, - 0,5079,5080,5,80,0,0,5080,5082,3,556,278,0,5081,5083,3,124,62,0, - 5082,5081,1,0,0,0,5082,5083,1,0,0,0,5083,5247,1,0,0,0,5084,5085, - 5,191,0,0,5085,5087,5,321,0,0,5086,5088,3,746,373,0,5087,5086,1, - 0,0,0,5087,5088,1,0,0,0,5088,5089,1,0,0,0,5089,5090,3,1434,717,0, - 5090,5091,5,80,0,0,5091,5093,3,556,278,0,5092,5094,3,124,62,0,5093, - 5092,1,0,0,0,5093,5094,1,0,0,0,5094,5247,1,0,0,0,5095,5096,5,191, - 0,0,5096,5098,5,357,0,0,5097,5099,3,746,373,0,5098,5097,1,0,0,0, - 5098,5099,1,0,0,0,5099,5100,1,0,0,0,5100,5101,3,1434,717,0,5101, - 5102,5,80,0,0,5102,5104,3,556,278,0,5103,5105,3,124,62,0,5104,5103, - 1,0,0,0,5104,5105,1,0,0,0,5105,5247,1,0,0,0,5106,5107,5,191,0,0, - 5107,5109,5,360,0,0,5108,5110,3,746,373,0,5109,5108,1,0,0,0,5109, - 5110,1,0,0,0,5110,5111,1,0,0,0,5111,5113,3,560,280,0,5112,5114,3, - 124,62,0,5113,5112,1,0,0,0,5113,5114,1,0,0,0,5114,5247,1,0,0,0,5115, - 5116,5,191,0,0,5116,5118,5,189,0,0,5117,5119,3,746,373,0,5118,5117, - 1,0,0,0,5118,5119,1,0,0,0,5119,5120,1,0,0,0,5120,5122,3,560,280, - 0,5121,5123,3,124,62,0,5122,5121,1,0,0,0,5122,5123,1,0,0,0,5123, - 5247,1,0,0,0,5124,5125,5,191,0,0,5125,5126,5,226,0,0,5126,5128,5, - 109,0,0,5127,5129,3,746,373,0,5128,5127,1,0,0,0,5128,5129,1,0,0, - 0,5129,5130,1,0,0,0,5130,5132,3,550,275,0,5131,5133,3,124,62,0,5132, - 5131,1,0,0,0,5132,5133,1,0,0,0,5133,5247,1,0,0,0,5134,5135,5,191, - 0,0,5135,5137,5,41,0,0,5136,5138,3,746,373,0,5137,5136,1,0,0,0,5137, - 5138,1,0,0,0,5138,5139,1,0,0,0,5139,5140,5,2,0,0,5140,5141,3,1166, - 583,0,5141,5142,5,36,0,0,5142,5143,3,1166,583,0,5143,5145,5,3,0, - 0,5144,5146,3,124,62,0,5145,5144,1,0,0,0,5145,5146,1,0,0,0,5146, - 5247,1,0,0,0,5147,5148,5,191,0,0,5148,5149,5,278,0,0,5149,5151,5, - 156,0,0,5150,5152,3,746,373,0,5151,5150,1,0,0,0,5151,5152,1,0,0, - 0,5152,5153,1,0,0,0,5153,5154,3,556,278,0,5154,5155,5,100,0,0,5155, - 5157,3,1434,717,0,5156,5158,3,124,62,0,5157,5156,1,0,0,0,5157,5158, - 1,0,0,0,5158,5247,1,0,0,0,5159,5160,5,191,0,0,5160,5161,5,278,0, - 0,5161,5163,5,206,0,0,5162,5164,3,746,373,0,5163,5162,1,0,0,0,5163, - 5164,1,0,0,0,5164,5165,1,0,0,0,5165,5166,3,556,278,0,5166,5167,5, - 100,0,0,5167,5169,3,1434,717,0,5168,5170,3,124,62,0,5169,5168,1, - 0,0,0,5169,5170,1,0,0,0,5170,5247,1,0,0,0,5171,5172,5,191,0,0,5172, - 5173,5,281,0,0,5173,5174,5,147,0,0,5174,5176,3,1470,735,0,5175,5177, - 3,124,62,0,5176,5175,1,0,0,0,5176,5177,1,0,0,0,5177,5247,1,0,0,0, - 5178,5179,5,191,0,0,5179,5181,5,376,0,0,5180,5182,3,746,373,0,5181, - 5180,1,0,0,0,5181,5182,1,0,0,0,5182,5183,1,0,0,0,5183,5185,3,542, - 271,0,5184,5186,3,124,62,0,5185,5184,1,0,0,0,5185,5186,1,0,0,0,5186, - 5247,1,0,0,0,5187,5188,5,191,0,0,5188,5190,5,451,0,0,5189,5191,3, - 746,373,0,5190,5189,1,0,0,0,5190,5191,1,0,0,0,5191,5192,1,0,0,0, - 5192,5194,3,1434,717,0,5193,5195,3,124,62,0,5194,5193,1,0,0,0,5194, - 5195,1,0,0,0,5195,5247,1,0,0,0,5196,5197,5,191,0,0,5197,5199,5,351, - 0,0,5198,5200,3,746,373,0,5199,5198,1,0,0,0,5199,5200,1,0,0,0,5200, - 5201,1,0,0,0,5201,5247,3,1400,700,0,5202,5203,5,191,0,0,5203,5205, - 5,443,0,0,5204,5206,3,746,373,0,5205,5204,1,0,0,0,5205,5206,1,0, - 0,0,5206,5207,1,0,0,0,5207,5208,5,62,0,0,5208,5209,3,1166,583,0, - 5209,5210,5,247,0,0,5210,5212,3,1434,717,0,5211,5213,3,124,62,0, - 5212,5211,1,0,0,0,5212,5213,1,0,0,0,5213,5247,1,0,0,0,5214,5215, - 5,191,0,0,5215,5217,7,38,0,0,5216,5218,3,746,373,0,5217,5216,1,0, - 0,0,5217,5218,1,0,0,0,5218,5219,1,0,0,0,5219,5247,3,1470,735,0,5220, - 5221,5,191,0,0,5221,5222,5,99,0,0,5222,5224,5,257,0,0,5223,5225, - 3,746,373,0,5224,5223,1,0,0,0,5224,5225,1,0,0,0,5225,5226,1,0,0, - 0,5226,5227,5,62,0,0,5227,5228,3,402,201,0,5228,5229,5,331,0,0,5229, - 5230,3,1434,717,0,5230,5247,1,0,0,0,5231,5232,5,191,0,0,5232,5234, - 5,175,0,0,5233,5235,3,746,373,0,5234,5233,1,0,0,0,5234,5235,1,0, - 0,0,5235,5236,1,0,0,0,5236,5244,3,1418,709,0,5237,5239,3,14,7,0, - 5238,5237,1,0,0,0,5238,5239,1,0,0,0,5239,5240,1,0,0,0,5240,5241, - 5,2,0,0,5241,5242,3,858,429,0,5242,5243,5,3,0,0,5243,5245,1,0,0, - 0,5244,5238,1,0,0,0,5244,5245,1,0,0,0,5245,5247,1,0,0,0,5246,4867, - 1,0,0,0,5246,4876,1,0,0,0,5246,4885,1,0,0,0,5246,4894,1,0,0,0,5246, - 4904,1,0,0,0,5246,4913,1,0,0,0,5246,4923,1,0,0,0,5246,4932,1,0,0, - 0,5246,4941,1,0,0,0,5246,4950,1,0,0,0,5246,4961,1,0,0,0,5246,4972, - 1,0,0,0,5246,4983,1,0,0,0,5246,4994,1,0,0,0,5246,5004,1,0,0,0,5246, - 5014,1,0,0,0,5246,5023,1,0,0,0,5246,5034,1,0,0,0,5246,5046,1,0,0, - 0,5246,5055,1,0,0,0,5246,5064,1,0,0,0,5246,5073,1,0,0,0,5246,5084, - 1,0,0,0,5246,5095,1,0,0,0,5246,5106,1,0,0,0,5246,5115,1,0,0,0,5246, - 5124,1,0,0,0,5246,5134,1,0,0,0,5246,5147,1,0,0,0,5246,5159,1,0,0, - 0,5246,5171,1,0,0,0,5246,5178,1,0,0,0,5246,5187,1,0,0,0,5246,5196, - 1,0,0,0,5246,5202,1,0,0,0,5246,5214,1,0,0,0,5246,5220,1,0,0,0,5246, - 5231,1,0,0,0,5247,541,1,0,0,0,5248,5253,3,1408,704,0,5249,5250,5, - 6,0,0,5250,5252,3,1408,704,0,5251,5249,1,0,0,0,5252,5255,1,0,0,0, - 5253,5251,1,0,0,0,5253,5254,1,0,0,0,5254,543,1,0,0,0,5255,5253,1, - 0,0,0,5256,5258,5,63,0,0,5257,5256,1,0,0,0,5257,5258,1,0,0,0,5258, - 5259,1,0,0,0,5259,5260,5,92,0,0,5260,5281,3,1404,702,0,5261,5263, - 5,259,0,0,5262,5261,1,0,0,0,5262,5263,1,0,0,0,5263,5264,1,0,0,0, - 5264,5265,5,376,0,0,5265,5281,3,1408,704,0,5266,5267,5,226,0,0,5267, - 5281,3,556,278,0,5268,5269,5,108,0,0,5269,5281,3,556,278,0,5270, - 5271,5,168,0,0,5271,5281,3,556,278,0,5272,5273,5,342,0,0,5273,5281, - 3,556,278,0,5274,5275,5,328,0,0,5275,5281,3,556,278,0,5276,5277, - 5,355,0,0,5277,5278,5,325,0,0,5278,5279,7,39,0,0,5279,5281,3,556, - 278,0,5280,5257,1,0,0,0,5280,5262,1,0,0,0,5280,5266,1,0,0,0,5280, - 5268,1,0,0,0,5280,5270,1,0,0,0,5280,5272,1,0,0,0,5280,5274,1,0,0, - 0,5280,5276,1,0,0,0,5281,545,1,0,0,0,5282,5283,5,131,0,0,5283,5284, - 5,446,0,0,5284,5314,3,1434,717,0,5285,5286,5,198,0,0,5286,5287,5, - 357,0,0,5287,5314,3,1434,717,0,5288,5289,5,204,0,0,5289,5314,3,1434, - 717,0,5290,5291,5,63,0,0,5291,5292,5,174,0,0,5292,5293,5,381,0,0, - 5293,5314,3,1434,717,0,5294,5296,3,336,168,0,5295,5294,1,0,0,0,5295, - 5296,1,0,0,0,5296,5297,1,0,0,0,5297,5298,5,247,0,0,5298,5314,3,1434, - 717,0,5299,5300,5,452,0,0,5300,5314,3,1434,717,0,5301,5302,5,323, - 0,0,5302,5314,3,1420,710,0,5303,5304,5,331,0,0,5304,5314,3,1434, - 717,0,5305,5306,5,175,0,0,5306,5314,3,1418,709,0,5307,5308,5,318, - 0,0,5308,5314,3,1434,717,0,5309,5310,5,451,0,0,5310,5314,3,1434, - 717,0,5311,5312,5,351,0,0,5312,5314,3,1400,700,0,5313,5282,1,0,0, - 0,5313,5285,1,0,0,0,5313,5288,1,0,0,0,5313,5290,1,0,0,0,5313,5295, - 1,0,0,0,5313,5299,1,0,0,0,5313,5301,1,0,0,0,5313,5303,1,0,0,0,5313, - 5305,1,0,0,0,5313,5307,1,0,0,0,5313,5309,1,0,0,0,5313,5311,1,0,0, - 0,5314,547,1,0,0,0,5315,5316,7,40,0,0,5316,549,1,0,0,0,5317,5322, - 3,556,278,0,5318,5319,5,6,0,0,5319,5321,3,556,278,0,5320,5318,1, - 0,0,0,5321,5324,1,0,0,0,5322,5320,1,0,0,0,5322,5323,1,0,0,0,5323, - 551,1,0,0,0,5324,5322,1,0,0,0,5325,5326,3,554,277,0,5326,5327,5, - 11,0,0,5327,5328,3,1430,715,0,5328,553,1,0,0,0,5329,5331,3,1472, - 736,0,5330,5332,3,558,279,0,5331,5330,1,0,0,0,5331,5332,1,0,0,0, - 5332,555,1,0,0,0,5333,5335,3,1472,736,0,5334,5336,3,558,279,0,5335, - 5334,1,0,0,0,5335,5336,1,0,0,0,5336,557,1,0,0,0,5337,5338,5,11,0, - 0,5338,5340,3,1436,718,0,5339,5337,1,0,0,0,5340,5341,1,0,0,0,5341, - 5339,1,0,0,0,5341,5342,1,0,0,0,5342,559,1,0,0,0,5343,5348,3,1166, - 583,0,5344,5345,5,6,0,0,5345,5347,3,1166,583,0,5346,5344,1,0,0,0, - 5347,5350,1,0,0,0,5348,5346,1,0,0,0,5348,5349,1,0,0,0,5349,561,1, - 0,0,0,5350,5348,1,0,0,0,5351,5353,5,358,0,0,5352,5354,5,92,0,0,5353, - 5352,1,0,0,0,5353,5354,1,0,0,0,5354,5355,1,0,0,0,5355,5360,3,564, - 282,0,5356,5357,5,6,0,0,5357,5359,3,564,282,0,5358,5356,1,0,0,0, - 5359,5362,1,0,0,0,5360,5358,1,0,0,0,5360,5361,1,0,0,0,5361,5365, - 1,0,0,0,5362,5360,1,0,0,0,5363,5364,7,41,0,0,5364,5366,5,219,0,0, - 5365,5363,1,0,0,0,5365,5366,1,0,0,0,5366,5368,1,0,0,0,5367,5369, - 3,124,62,0,5368,5367,1,0,0,0,5368,5369,1,0,0,0,5369,563,1,0,0,0, - 5370,5372,5,81,0,0,5371,5370,1,0,0,0,5371,5372,1,0,0,0,5372,5373, - 1,0,0,0,5373,5375,3,1404,702,0,5374,5376,5,9,0,0,5375,5374,1,0,0, - 0,5375,5376,1,0,0,0,5376,565,1,0,0,0,5377,5378,5,159,0,0,5378,5379, - 5,80,0,0,5379,5380,3,544,272,0,5380,5381,5,116,0,0,5381,5382,3,568, - 284,0,5382,5543,1,0,0,0,5383,5384,5,159,0,0,5384,5385,5,80,0,0,5385, - 5386,5,44,0,0,5386,5387,3,552,276,0,5387,5388,5,116,0,0,5388,5389, - 3,568,284,0,5389,5543,1,0,0,0,5390,5391,5,159,0,0,5391,5392,5,80, - 0,0,5392,5393,3,546,273,0,5393,5394,5,116,0,0,5394,5395,3,568,284, - 0,5395,5543,1,0,0,0,5396,5397,5,159,0,0,5397,5398,5,80,0,0,5398, - 5399,5,360,0,0,5399,5400,3,1166,583,0,5400,5401,5,116,0,0,5401,5402, - 3,568,284,0,5402,5543,1,0,0,0,5403,5404,5,159,0,0,5404,5405,5,80, - 0,0,5405,5406,5,189,0,0,5406,5407,3,1166,583,0,5407,5408,5,116,0, - 0,5408,5409,3,568,284,0,5409,5543,1,0,0,0,5410,5411,5,159,0,0,5411, - 5412,5,80,0,0,5412,5413,5,136,0,0,5413,5414,3,696,348,0,5414,5415, - 5,116,0,0,5415,5416,3,568,284,0,5416,5543,1,0,0,0,5417,5418,5,159, - 0,0,5418,5419,5,80,0,0,5419,5420,5,211,0,0,5420,5421,3,672,336,0, - 5421,5422,5,116,0,0,5422,5423,3,568,284,0,5423,5543,1,0,0,0,5424, - 5425,5,159,0,0,5425,5426,5,80,0,0,5426,5427,5,278,0,0,5427,5428, - 3,734,367,0,5428,5429,5,116,0,0,5429,5430,3,568,284,0,5430,5543, - 1,0,0,0,5431,5432,5,159,0,0,5432,5433,5,80,0,0,5433,5434,5,45,0, - 0,5434,5435,3,1434,717,0,5435,5436,5,80,0,0,5436,5437,3,1404,702, - 0,5437,5438,5,116,0,0,5438,5439,3,568,284,0,5439,5543,1,0,0,0,5440, - 5441,5,159,0,0,5441,5442,5,80,0,0,5442,5443,5,45,0,0,5443,5444,3, - 1434,717,0,5444,5446,5,80,0,0,5445,5447,5,189,0,0,5446,5445,1,0, - 0,0,5446,5447,1,0,0,0,5447,5448,1,0,0,0,5448,5449,3,556,278,0,5449, - 5450,5,116,0,0,5450,5451,3,568,284,0,5451,5543,1,0,0,0,5452,5453, - 5,159,0,0,5453,5454,5,80,0,0,5454,5455,5,445,0,0,5455,5456,3,1434, - 717,0,5456,5457,5,80,0,0,5457,5458,3,556,278,0,5458,5459,5,116,0, - 0,5459,5460,3,568,284,0,5460,5543,1,0,0,0,5461,5462,5,159,0,0,5462, - 5463,5,80,0,0,5463,5464,5,321,0,0,5464,5465,3,1434,717,0,5465,5466, - 5,80,0,0,5466,5467,3,556,278,0,5467,5468,5,116,0,0,5468,5469,3,568, - 284,0,5469,5543,1,0,0,0,5470,5471,5,159,0,0,5471,5472,5,80,0,0,5472, - 5473,5,357,0,0,5473,5474,3,1434,717,0,5474,5475,5,80,0,0,5475,5476, - 3,556,278,0,5476,5477,5,116,0,0,5477,5478,3,568,284,0,5478,5543, - 1,0,0,0,5479,5480,5,159,0,0,5480,5481,5,80,0,0,5481,5482,5,296,0, - 0,5482,5483,3,668,334,0,5483,5484,5,116,0,0,5484,5485,3,568,284, - 0,5485,5543,1,0,0,0,5486,5487,5,159,0,0,5487,5488,5,80,0,0,5488, - 5489,5,442,0,0,5489,5490,3,664,332,0,5490,5491,5,116,0,0,5491,5492, - 3,568,284,0,5492,5543,1,0,0,0,5493,5494,5,159,0,0,5494,5495,5,80, - 0,0,5495,5496,5,443,0,0,5496,5497,5,62,0,0,5497,5498,3,1166,583, - 0,5498,5499,5,247,0,0,5499,5500,3,1434,717,0,5500,5501,5,116,0,0, - 5501,5502,3,568,284,0,5502,5543,1,0,0,0,5503,5504,5,159,0,0,5504, - 5505,5,80,0,0,5505,5506,5,278,0,0,5506,5507,5,156,0,0,5507,5508, - 3,556,278,0,5508,5509,5,100,0,0,5509,5510,3,1434,717,0,5510,5511, - 5,116,0,0,5511,5512,3,568,284,0,5512,5543,1,0,0,0,5513,5514,5,159, - 0,0,5514,5515,5,80,0,0,5515,5516,5,278,0,0,5516,5517,5,206,0,0,5517, - 5518,3,556,278,0,5518,5519,5,100,0,0,5519,5520,3,1434,717,0,5520, - 5521,5,116,0,0,5521,5522,3,568,284,0,5522,5543,1,0,0,0,5523,5524, - 5,159,0,0,5524,5525,5,80,0,0,5525,5526,5,248,0,0,5526,5527,5,274, - 0,0,5527,5528,3,320,160,0,5528,5529,5,116,0,0,5529,5530,3,568,284, - 0,5530,5543,1,0,0,0,5531,5532,5,159,0,0,5532,5533,5,80,0,0,5533, - 5534,5,41,0,0,5534,5535,5,2,0,0,5535,5536,3,1166,583,0,5536,5537, - 5,36,0,0,5537,5538,3,1166,583,0,5538,5539,5,3,0,0,5539,5540,5,116, - 0,0,5540,5541,3,568,284,0,5541,5543,1,0,0,0,5542,5377,1,0,0,0,5542, - 5383,1,0,0,0,5542,5390,1,0,0,0,5542,5396,1,0,0,0,5542,5403,1,0,0, - 0,5542,5410,1,0,0,0,5542,5417,1,0,0,0,5542,5424,1,0,0,0,5542,5431, - 1,0,0,0,5542,5440,1,0,0,0,5542,5452,1,0,0,0,5542,5461,1,0,0,0,5542, - 5470,1,0,0,0,5542,5479,1,0,0,0,5542,5486,1,0,0,0,5542,5493,1,0,0, - 0,5542,5503,1,0,0,0,5542,5513,1,0,0,0,5542,5523,1,0,0,0,5542,5531, - 1,0,0,0,5543,567,1,0,0,0,5544,5547,3,1456,728,0,5545,5547,5,78,0, - 0,5546,5544,1,0,0,0,5546,5545,1,0,0,0,5547,569,1,0,0,0,5548,5549, - 5,327,0,0,5549,5551,5,246,0,0,5550,5552,3,572,286,0,5551,5550,1, - 0,0,0,5551,5552,1,0,0,0,5552,5553,1,0,0,0,5553,5554,5,80,0,0,5554, - 5555,5,44,0,0,5555,5556,3,1430,715,0,5556,5557,5,116,0,0,5557,5558, - 3,574,287,0,5558,5658,1,0,0,0,5559,5560,5,327,0,0,5560,5562,5,246, - 0,0,5561,5563,3,572,286,0,5562,5561,1,0,0,0,5562,5563,1,0,0,0,5563, - 5564,1,0,0,0,5564,5565,5,80,0,0,5565,5566,5,360,0,0,5566,5567,3, - 1166,583,0,5567,5568,5,116,0,0,5568,5569,3,574,287,0,5569,5658,1, - 0,0,0,5570,5571,5,327,0,0,5571,5573,5,246,0,0,5572,5574,3,572,286, - 0,5573,5572,1,0,0,0,5573,5574,1,0,0,0,5574,5575,1,0,0,0,5575,5576, - 5,80,0,0,5576,5577,5,189,0,0,5577,5578,3,1166,583,0,5578,5579,5, - 116,0,0,5579,5580,3,574,287,0,5580,5658,1,0,0,0,5581,5582,5,327, - 0,0,5582,5584,5,246,0,0,5583,5585,3,572,286,0,5584,5583,1,0,0,0, - 5584,5585,1,0,0,0,5585,5586,1,0,0,0,5586,5587,5,80,0,0,5587,5588, - 5,136,0,0,5588,5589,3,696,348,0,5589,5590,5,116,0,0,5590,5591,3, - 574,287,0,5591,5658,1,0,0,0,5592,5593,5,327,0,0,5593,5595,5,246, - 0,0,5594,5596,3,572,286,0,5595,5594,1,0,0,0,5595,5596,1,0,0,0,5596, - 5597,1,0,0,0,5597,5598,5,80,0,0,5598,5599,5,211,0,0,5599,5600,3, - 672,336,0,5600,5601,5,116,0,0,5601,5602,3,574,287,0,5602,5658,1, - 0,0,0,5603,5604,5,327,0,0,5604,5606,5,246,0,0,5605,5607,3,572,286, - 0,5606,5605,1,0,0,0,5606,5607,1,0,0,0,5607,5608,1,0,0,0,5608,5609, - 5,80,0,0,5609,5610,5,248,0,0,5610,5611,5,274,0,0,5611,5612,3,320, - 160,0,5612,5613,5,116,0,0,5613,5614,3,574,287,0,5614,5658,1,0,0, - 0,5615,5616,5,327,0,0,5616,5618,5,246,0,0,5617,5619,3,572,286,0, - 5618,5617,1,0,0,0,5618,5619,1,0,0,0,5619,5620,1,0,0,0,5620,5621, - 5,80,0,0,5621,5622,5,296,0,0,5622,5623,3,668,334,0,5623,5624,5,116, - 0,0,5624,5625,3,574,287,0,5625,5658,1,0,0,0,5626,5627,5,327,0,0, - 5627,5629,5,246,0,0,5628,5630,3,572,286,0,5629,5628,1,0,0,0,5629, - 5630,1,0,0,0,5630,5631,1,0,0,0,5631,5632,5,80,0,0,5632,5633,5,442, - 0,0,5633,5634,3,664,332,0,5634,5635,5,116,0,0,5635,5636,3,574,287, - 0,5636,5658,1,0,0,0,5637,5638,5,327,0,0,5638,5640,5,246,0,0,5639, - 5641,3,572,286,0,5640,5639,1,0,0,0,5640,5641,1,0,0,0,5641,5642,1, - 0,0,0,5642,5643,5,80,0,0,5643,5644,3,544,272,0,5644,5645,5,116,0, - 0,5645,5646,3,574,287,0,5646,5658,1,0,0,0,5647,5648,5,327,0,0,5648, - 5650,5,246,0,0,5649,5651,3,572,286,0,5650,5649,1,0,0,0,5650,5651, - 1,0,0,0,5651,5652,1,0,0,0,5652,5653,5,80,0,0,5653,5654,3,546,273, - 0,5654,5655,5,116,0,0,5655,5656,3,574,287,0,5656,5658,1,0,0,0,5657, - 5548,1,0,0,0,5657,5559,1,0,0,0,5657,5570,1,0,0,0,5657,5581,1,0,0, - 0,5657,5592,1,0,0,0,5657,5603,1,0,0,0,5657,5615,1,0,0,0,5657,5626, - 1,0,0,0,5657,5637,1,0,0,0,5657,5647,1,0,0,0,5658,571,1,0,0,0,5659, - 5660,5,62,0,0,5660,5661,3,80,40,0,5661,573,1,0,0,0,5662,5665,3,1456, - 728,0,5663,5665,5,78,0,0,5664,5662,1,0,0,0,5664,5663,1,0,0,0,5665, - 575,1,0,0,0,5666,5667,5,61,0,0,5667,5671,3,578,289,0,5668,5669,5, - 265,0,0,5669,5671,3,578,289,0,5670,5666,1,0,0,0,5670,5668,1,0,0, - 0,5671,577,1,0,0,0,5672,5758,3,992,496,0,5673,5674,3,580,290,0,5674, - 5675,3,992,496,0,5675,5758,1,0,0,0,5676,5678,5,268,0,0,5677,5679, - 3,582,291,0,5678,5677,1,0,0,0,5678,5679,1,0,0,0,5679,5680,1,0,0, - 0,5680,5758,3,992,496,0,5681,5683,5,293,0,0,5682,5684,3,582,291, - 0,5683,5682,1,0,0,0,5683,5684,1,0,0,0,5684,5685,1,0,0,0,5685,5758, - 3,992,496,0,5686,5688,5,207,0,0,5687,5689,3,582,291,0,5688,5687, - 1,0,0,0,5688,5689,1,0,0,0,5689,5690,1,0,0,0,5690,5758,3,992,496, - 0,5691,5693,5,249,0,0,5692,5694,3,582,291,0,5693,5692,1,0,0,0,5693, - 5694,1,0,0,0,5694,5695,1,0,0,0,5695,5758,3,992,496,0,5696,5697,5, - 130,0,0,5697,5699,3,1462,731,0,5698,5700,3,582,291,0,5699,5698,1, - 0,0,0,5699,5700,1,0,0,0,5700,5701,1,0,0,0,5701,5702,3,992,496,0, - 5702,5758,1,0,0,0,5703,5704,5,307,0,0,5704,5706,3,1462,731,0,5705, - 5707,3,582,291,0,5706,5705,1,0,0,0,5706,5707,1,0,0,0,5707,5708,1, - 0,0,0,5708,5709,3,992,496,0,5709,5758,1,0,0,0,5710,5712,3,1462,731, - 0,5711,5713,3,582,291,0,5712,5711,1,0,0,0,5712,5713,1,0,0,0,5713, - 5714,1,0,0,0,5714,5715,3,992,496,0,5715,5758,1,0,0,0,5716,5718,5, - 30,0,0,5717,5719,3,582,291,0,5718,5717,1,0,0,0,5718,5719,1,0,0,0, - 5719,5720,1,0,0,0,5720,5758,3,992,496,0,5721,5723,5,210,0,0,5722, - 5724,3,582,291,0,5723,5722,1,0,0,0,5723,5724,1,0,0,0,5724,5725,1, - 0,0,0,5725,5758,3,992,496,0,5726,5727,5,210,0,0,5727,5729,3,1462, - 731,0,5728,5730,3,582,291,0,5729,5728,1,0,0,0,5729,5730,1,0,0,0, - 5730,5731,1,0,0,0,5731,5732,3,992,496,0,5732,5758,1,0,0,0,5733,5734, - 5,210,0,0,5734,5736,5,30,0,0,5735,5737,3,582,291,0,5736,5735,1,0, - 0,0,5736,5737,1,0,0,0,5737,5738,1,0,0,0,5738,5758,3,992,496,0,5739, - 5741,5,144,0,0,5740,5742,3,582,291,0,5741,5740,1,0,0,0,5741,5742, - 1,0,0,0,5742,5743,1,0,0,0,5743,5758,3,992,496,0,5744,5745,5,144, - 0,0,5745,5747,3,1462,731,0,5746,5748,3,582,291,0,5747,5746,1,0,0, - 0,5747,5748,1,0,0,0,5748,5749,1,0,0,0,5749,5750,3,992,496,0,5750, - 5758,1,0,0,0,5751,5752,5,144,0,0,5752,5754,5,30,0,0,5753,5755,3, - 582,291,0,5754,5753,1,0,0,0,5754,5755,1,0,0,0,5755,5756,1,0,0,0, - 5756,5758,3,992,496,0,5757,5672,1,0,0,0,5757,5673,1,0,0,0,5757,5676, - 1,0,0,0,5757,5681,1,0,0,0,5757,5686,1,0,0,0,5757,5691,1,0,0,0,5757, - 5696,1,0,0,0,5757,5703,1,0,0,0,5757,5710,1,0,0,0,5757,5716,1,0,0, - 0,5757,5721,1,0,0,0,5757,5726,1,0,0,0,5757,5733,1,0,0,0,5757,5739, - 1,0,0,0,5757,5744,1,0,0,0,5757,5751,1,0,0,0,5758,579,1,0,0,0,5759, - 5760,7,42,0,0,5760,581,1,0,0,0,5761,5762,3,580,290,0,5762,583,1, - 0,0,0,5763,5764,5,65,0,0,5764,5765,3,588,294,0,5765,5766,5,80,0, - 0,5766,5767,3,598,299,0,5767,5768,5,94,0,0,5768,5770,3,600,300,0, - 5769,5771,3,604,302,0,5770,5769,1,0,0,0,5770,5771,1,0,0,0,5771,585, - 1,0,0,0,5772,5773,5,317,0,0,5773,5774,3,588,294,0,5774,5775,5,80, - 0,0,5775,5776,3,598,299,0,5776,5777,5,64,0,0,5777,5779,3,600,300, - 0,5778,5780,3,124,62,0,5779,5778,1,0,0,0,5779,5780,1,0,0,0,5780, - 5794,1,0,0,0,5781,5782,5,317,0,0,5782,5783,5,65,0,0,5783,5784,5, - 279,0,0,5784,5785,5,62,0,0,5785,5786,3,588,294,0,5786,5787,5,80, - 0,0,5787,5788,3,598,299,0,5788,5789,5,64,0,0,5789,5791,3,600,300, - 0,5790,5792,3,124,62,0,5791,5790,1,0,0,0,5791,5792,1,0,0,0,5792, - 5794,1,0,0,0,5793,5772,1,0,0,0,5793,5781,1,0,0,0,5794,587,1,0,0, - 0,5795,5812,3,594,297,0,5796,5812,5,30,0,0,5797,5798,5,30,0,0,5798, - 5812,5,294,0,0,5799,5800,5,30,0,0,5800,5801,5,2,0,0,5801,5802,3, - 244,122,0,5802,5803,5,3,0,0,5803,5812,1,0,0,0,5804,5805,5,30,0,0, - 5805,5806,5,294,0,0,5806,5807,5,2,0,0,5807,5808,3,244,122,0,5808, - 5809,5,3,0,0,5809,5812,1,0,0,0,5810,5812,3,590,295,0,5811,5795,1, - 0,0,0,5811,5796,1,0,0,0,5811,5797,1,0,0,0,5811,5799,1,0,0,0,5811, - 5804,1,0,0,0,5811,5810,1,0,0,0,5812,589,1,0,0,0,5813,5818,3,592, - 296,0,5814,5815,5,6,0,0,5815,5817,3,592,296,0,5816,5814,1,0,0,0, - 5817,5820,1,0,0,0,5818,5816,1,0,0,0,5818,5819,1,0,0,0,5819,591,1, - 0,0,0,5820,5818,1,0,0,0,5821,5822,7,43,0,0,5822,593,1,0,0,0,5823, - 5828,3,596,298,0,5824,5825,5,6,0,0,5825,5827,3,596,298,0,5826,5824, - 1,0,0,0,5827,5830,1,0,0,0,5828,5826,1,0,0,0,5828,5829,1,0,0,0,5829, - 595,1,0,0,0,5830,5828,1,0,0,0,5831,5833,5,88,0,0,5832,5834,3,242, - 121,0,5833,5832,1,0,0,0,5833,5834,1,0,0,0,5834,5848,1,0,0,0,5835, - 5837,5,86,0,0,5836,5838,3,242,121,0,5837,5836,1,0,0,0,5837,5838, - 1,0,0,0,5838,5848,1,0,0,0,5839,5841,5,46,0,0,5840,5842,3,242,121, - 0,5841,5840,1,0,0,0,5841,5842,1,0,0,0,5842,5848,1,0,0,0,5843,5845, - 3,1472,736,0,5844,5846,3,242,121,0,5845,5844,1,0,0,0,5845,5846,1, - 0,0,0,5846,5848,1,0,0,0,5847,5831,1,0,0,0,5847,5835,1,0,0,0,5847, - 5839,1,0,0,0,5847,5843,1,0,0,0,5848,597,1,0,0,0,5849,5908,3,1388, - 694,0,5850,5851,5,92,0,0,5851,5908,3,1390,695,0,5852,5853,5,328, - 0,0,5853,5908,3,1388,694,0,5854,5855,5,63,0,0,5855,5856,5,174,0, - 0,5856,5857,5,381,0,0,5857,5908,3,1414,707,0,5858,5859,5,63,0,0, - 5859,5860,5,331,0,0,5860,5908,3,1414,707,0,5861,5862,5,211,0,0,5862, - 5908,3,670,335,0,5863,5864,5,296,0,0,5864,5908,3,666,333,0,5865, - 5866,5,442,0,0,5866,5908,3,662,331,0,5867,5868,5,175,0,0,5868,5908, - 3,1394,697,0,5869,5870,5,189,0,0,5870,5908,3,550,275,0,5871,5872, - 5,247,0,0,5872,5908,3,1414,707,0,5873,5874,5,248,0,0,5874,5875,5, - 274,0,0,5875,5908,3,322,161,0,5876,5877,5,323,0,0,5877,5908,3,1392, - 696,0,5878,5879,5,351,0,0,5879,5908,3,1412,706,0,5880,5881,5,360, - 0,0,5881,5908,3,550,275,0,5882,5883,5,30,0,0,5883,5884,5,350,0,0, - 5884,5885,5,68,0,0,5885,5886,5,323,0,0,5886,5908,3,1392,696,0,5887, - 5888,5,30,0,0,5888,5889,5,329,0,0,5889,5890,5,68,0,0,5890,5891,5, - 323,0,0,5891,5908,3,1392,696,0,5892,5893,5,30,0,0,5893,5894,5,212, - 0,0,5894,5895,5,68,0,0,5895,5896,5,323,0,0,5896,5908,3,1392,696, - 0,5897,5898,5,30,0,0,5898,5899,5,457,0,0,5899,5900,5,68,0,0,5900, - 5901,5,323,0,0,5901,5908,3,1392,696,0,5902,5903,5,30,0,0,5903,5904, - 5,455,0,0,5904,5905,5,68,0,0,5905,5906,5,323,0,0,5906,5908,3,1392, - 696,0,5907,5849,1,0,0,0,5907,5850,1,0,0,0,5907,5852,1,0,0,0,5907, - 5854,1,0,0,0,5907,5858,1,0,0,0,5907,5861,1,0,0,0,5907,5863,1,0,0, - 0,5907,5865,1,0,0,0,5907,5867,1,0,0,0,5907,5869,1,0,0,0,5907,5871, - 1,0,0,0,5907,5873,1,0,0,0,5907,5876,1,0,0,0,5907,5878,1,0,0,0,5907, - 5880,1,0,0,0,5907,5882,1,0,0,0,5907,5887,1,0,0,0,5907,5892,1,0,0, - 0,5907,5897,1,0,0,0,5907,5902,1,0,0,0,5908,599,1,0,0,0,5909,5914, - 3,602,301,0,5910,5911,5,6,0,0,5911,5913,3,602,301,0,5912,5910,1, - 0,0,0,5913,5916,1,0,0,0,5914,5912,1,0,0,0,5914,5915,1,0,0,0,5915, - 601,1,0,0,0,5916,5914,1,0,0,0,5917,5921,3,1468,734,0,5918,5919,5, - 66,0,0,5919,5921,3,1468,734,0,5920,5917,1,0,0,0,5920,5918,1,0,0, - 0,5921,603,1,0,0,0,5922,5923,5,105,0,0,5923,5924,5,65,0,0,5924,5925, - 5,279,0,0,5925,605,1,0,0,0,5926,5927,5,65,0,0,5927,5928,3,594,297, - 0,5928,5929,5,94,0,0,5929,5931,3,1470,735,0,5930,5932,3,610,305, - 0,5931,5930,1,0,0,0,5931,5932,1,0,0,0,5932,5934,1,0,0,0,5933,5935, - 3,612,306,0,5934,5933,1,0,0,0,5934,5935,1,0,0,0,5935,607,1,0,0,0, - 5936,5937,5,317,0,0,5937,5938,3,594,297,0,5938,5939,5,64,0,0,5939, - 5941,3,1470,735,0,5940,5942,3,612,306,0,5941,5940,1,0,0,0,5941,5942, - 1,0,0,0,5942,5944,1,0,0,0,5943,5945,3,124,62,0,5944,5943,1,0,0,0, - 5944,5945,1,0,0,0,5945,5960,1,0,0,0,5946,5947,5,317,0,0,5947,5948, - 5,134,0,0,5948,5949,5,279,0,0,5949,5950,5,62,0,0,5950,5951,3,594, - 297,0,5951,5952,5,64,0,0,5952,5954,3,1470,735,0,5953,5955,3,612, - 306,0,5954,5953,1,0,0,0,5954,5955,1,0,0,0,5955,5957,1,0,0,0,5956, - 5958,3,124,62,0,5957,5956,1,0,0,0,5957,5958,1,0,0,0,5958,5960,1, - 0,0,0,5959,5936,1,0,0,0,5959,5946,1,0,0,0,5960,609,1,0,0,0,5961, - 5962,5,105,0,0,5962,5963,5,134,0,0,5963,5964,5,279,0,0,5964,611, - 1,0,0,0,5965,5966,5,214,0,0,5966,5967,5,147,0,0,5967,5968,3,1468, - 734,0,5968,613,1,0,0,0,5969,5970,5,138,0,0,5970,5971,5,53,0,0,5971, - 5972,5,294,0,0,5972,5973,3,616,308,0,5973,5974,3,620,310,0,5974, - 615,1,0,0,0,5975,5977,3,618,309,0,5976,5975,1,0,0,0,5977,5980,1, - 0,0,0,5978,5976,1,0,0,0,5978,5979,1,0,0,0,5979,617,1,0,0,0,5980, - 5978,1,0,0,0,5981,5982,5,68,0,0,5982,5983,5,323,0,0,5983,5991,3, - 1392,696,0,5984,5985,5,62,0,0,5985,5986,5,318,0,0,5986,5991,3,1470, - 735,0,5987,5988,5,62,0,0,5988,5989,5,99,0,0,5989,5991,3,1470,735, - 0,5990,5981,1,0,0,0,5990,5984,1,0,0,0,5990,5987,1,0,0,0,5991,619, - 1,0,0,0,5992,5993,5,65,0,0,5993,5994,3,588,294,0,5994,5995,5,80, - 0,0,5995,5996,3,622,311,0,5996,5997,5,94,0,0,5997,5999,3,600,300, - 0,5998,6000,3,604,302,0,5999,5998,1,0,0,0,5999,6000,1,0,0,0,6000, - 6023,1,0,0,0,6001,6002,5,317,0,0,6002,6003,3,588,294,0,6003,6004, - 5,80,0,0,6004,6005,3,622,311,0,6005,6006,5,64,0,0,6006,6008,3,600, - 300,0,6007,6009,3,124,62,0,6008,6007,1,0,0,0,6008,6009,1,0,0,0,6009, - 6023,1,0,0,0,6010,6011,5,317,0,0,6011,6012,5,65,0,0,6012,6013,5, - 279,0,0,6013,6014,5,62,0,0,6014,6015,3,588,294,0,6015,6016,5,80, - 0,0,6016,6017,3,622,311,0,6017,6018,5,64,0,0,6018,6020,3,600,300, - 0,6019,6021,3,124,62,0,6020,6019,1,0,0,0,6020,6021,1,0,0,0,6021, - 6023,1,0,0,0,6022,5992,1,0,0,0,6022,6001,1,0,0,0,6022,6010,1,0,0, - 0,6023,621,1,0,0,0,6024,6025,7,44,0,0,6025,623,1,0,0,0,6026,6028, - 5,46,0,0,6027,6029,3,626,313,0,6028,6027,1,0,0,0,6028,6029,1,0,0, - 0,6029,6030,1,0,0,0,6030,6032,5,226,0,0,6031,6033,3,628,314,0,6032, - 6031,1,0,0,0,6032,6033,1,0,0,0,6033,6035,1,0,0,0,6034,6036,3,514, - 257,0,6035,6034,1,0,0,0,6035,6036,1,0,0,0,6036,6038,1,0,0,0,6037, - 6039,3,630,315,0,6038,6037,1,0,0,0,6038,6039,1,0,0,0,6039,6040,1, - 0,0,0,6040,6041,5,80,0,0,6041,6043,3,1116,558,0,6042,6044,3,632, - 316,0,6043,6042,1,0,0,0,6043,6044,1,0,0,0,6044,6045,1,0,0,0,6045, - 6046,5,2,0,0,6046,6047,3,634,317,0,6047,6049,5,3,0,0,6048,6050,3, - 640,320,0,6049,6048,1,0,0,0,6049,6050,1,0,0,0,6050,6052,1,0,0,0, - 6051,6053,3,222,111,0,6052,6051,1,0,0,0,6052,6053,1,0,0,0,6053,6055, - 1,0,0,0,6054,6056,3,134,67,0,6055,6054,1,0,0,0,6055,6056,1,0,0,0, - 6056,6058,1,0,0,0,6057,6059,3,280,140,0,6058,6057,1,0,0,0,6058,6059, - 1,0,0,0,6059,6061,1,0,0,0,6060,6062,3,1142,571,0,6061,6060,1,0,0, - 0,6061,6062,1,0,0,0,6062,625,1,0,0,0,6063,6064,5,98,0,0,6064,627, - 1,0,0,0,6065,6066,5,109,0,0,6066,629,1,0,0,0,6067,6068,3,1434,717, - 0,6068,631,1,0,0,0,6069,6070,5,100,0,0,6070,6071,3,1434,717,0,6071, - 633,1,0,0,0,6072,6077,3,638,319,0,6073,6074,5,6,0,0,6074,6076,3, - 638,319,0,6075,6073,1,0,0,0,6076,6079,1,0,0,0,6077,6075,1,0,0,0, - 6077,6078,1,0,0,0,6078,635,1,0,0,0,6079,6077,1,0,0,0,6080,6082,3, - 644,322,0,6081,6080,1,0,0,0,6081,6082,1,0,0,0,6082,6084,1,0,0,0, - 6083,6085,3,646,323,0,6084,6083,1,0,0,0,6084,6085,1,0,0,0,6085,6087, - 1,0,0,0,6086,6088,3,648,324,0,6087,6086,1,0,0,0,6087,6088,1,0,0, - 0,6088,6090,1,0,0,0,6089,6091,3,650,325,0,6090,6089,1,0,0,0,6090, - 6091,1,0,0,0,6091,6104,1,0,0,0,6092,6094,3,644,322,0,6093,6092,1, - 0,0,0,6093,6094,1,0,0,0,6094,6095,1,0,0,0,6095,6096,3,556,278,0, - 6096,6098,3,132,66,0,6097,6099,3,648,324,0,6098,6097,1,0,0,0,6098, - 6099,1,0,0,0,6099,6101,1,0,0,0,6100,6102,3,650,325,0,6101,6100,1, - 0,0,0,6101,6102,1,0,0,0,6102,6104,1,0,0,0,6103,6081,1,0,0,0,6103, - 6093,1,0,0,0,6104,637,1,0,0,0,6105,6106,3,1430,715,0,6106,6107,3, - 636,318,0,6107,6117,1,0,0,0,6108,6109,3,1260,630,0,6109,6110,3,636, - 318,0,6110,6117,1,0,0,0,6111,6112,5,2,0,0,6112,6113,3,1210,605,0, - 6113,6114,5,3,0,0,6114,6115,3,636,318,0,6115,6117,1,0,0,0,6116,6105, - 1,0,0,0,6116,6108,1,0,0,0,6116,6111,1,0,0,0,6117,639,1,0,0,0,6118, - 6119,5,441,0,0,6119,6120,5,2,0,0,6120,6121,3,642,321,0,6121,6122, - 5,3,0,0,6122,641,1,0,0,0,6123,6128,3,638,319,0,6124,6125,5,6,0,0, - 6125,6127,3,638,319,0,6126,6124,1,0,0,0,6127,6130,1,0,0,0,6128,6126, - 1,0,0,0,6128,6129,1,0,0,0,6129,643,1,0,0,0,6130,6128,1,0,0,0,6131, - 6132,5,43,0,0,6132,6133,3,556,278,0,6133,645,1,0,0,0,6134,6135,3, - 556,278,0,6135,647,1,0,0,0,6136,6137,7,45,0,0,6137,649,1,0,0,0,6138, - 6139,5,273,0,0,6139,6143,5,207,0,0,6140,6141,5,273,0,0,6141,6143, - 5,249,0,0,6142,6138,1,0,0,0,6142,6140,1,0,0,0,6143,651,1,0,0,0,6144, - 6146,5,46,0,0,6145,6147,3,656,328,0,6146,6145,1,0,0,0,6146,6147, - 1,0,0,0,6147,6152,1,0,0,0,6148,6149,5,211,0,0,6149,6153,3,1440,720, - 0,6150,6151,5,296,0,0,6151,6153,3,1428,714,0,6152,6148,1,0,0,0,6152, - 6150,1,0,0,0,6153,6154,1,0,0,0,6154,6164,3,674,337,0,6155,6162,5, - 316,0,0,6156,6163,3,684,342,0,6157,6158,5,92,0,0,6158,6159,5,2,0, - 0,6159,6160,3,712,356,0,6160,6161,5,3,0,0,6161,6163,1,0,0,0,6162, - 6156,1,0,0,0,6162,6157,1,0,0,0,6163,6165,1,0,0,0,6164,6155,1,0,0, - 0,6164,6165,1,0,0,0,6165,6166,1,0,0,0,6166,6169,3,700,350,0,6167, - 6168,5,105,0,0,6168,6170,3,654,327,0,6169,6167,1,0,0,0,6169,6170, - 1,0,0,0,6170,653,1,0,0,0,6171,6172,5,2,0,0,6172,6177,3,1472,736, - 0,6173,6174,5,6,0,0,6174,6176,3,1472,736,0,6175,6173,1,0,0,0,6176, - 6179,1,0,0,0,6177,6175,1,0,0,0,6177,6178,1,0,0,0,6178,6180,1,0,0, - 0,6179,6177,1,0,0,0,6180,6181,5,3,0,0,6181,655,1,0,0,0,6182,6183, - 5,82,0,0,6183,6184,5,311,0,0,6184,657,1,0,0,0,6185,6187,5,2,0,0, - 6186,6188,3,660,330,0,6187,6186,1,0,0,0,6187,6188,1,0,0,0,6188,6189, - 1,0,0,0,6189,6190,5,3,0,0,6190,659,1,0,0,0,6191,6196,3,678,339,0, - 6192,6193,5,6,0,0,6193,6195,3,678,339,0,6194,6192,1,0,0,0,6195,6198, - 1,0,0,0,6196,6194,1,0,0,0,6196,6197,1,0,0,0,6197,661,1,0,0,0,6198, - 6196,1,0,0,0,6199,6204,3,664,332,0,6200,6201,5,6,0,0,6201,6203,3, - 664,332,0,6202,6200,1,0,0,0,6203,6206,1,0,0,0,6204,6202,1,0,0,0, - 6204,6205,1,0,0,0,6205,663,1,0,0,0,6206,6204,1,0,0,0,6207,6208,3, - 1424,712,0,6208,6209,3,658,329,0,6209,6216,1,0,0,0,6210,6216,3,1498, - 749,0,6211,6213,3,1472,736,0,6212,6214,3,1378,689,0,6213,6212,1, - 0,0,0,6213,6214,1,0,0,0,6214,6216,1,0,0,0,6215,6207,1,0,0,0,6215, - 6210,1,0,0,0,6215,6211,1,0,0,0,6216,665,1,0,0,0,6217,6222,3,668, - 334,0,6218,6219,5,6,0,0,6219,6221,3,668,334,0,6220,6218,1,0,0,0, - 6221,6224,1,0,0,0,6222,6220,1,0,0,0,6222,6223,1,0,0,0,6223,667,1, - 0,0,0,6224,6222,1,0,0,0,6225,6226,3,1426,713,0,6226,6227,3,658,329, - 0,6227,6234,1,0,0,0,6228,6234,3,1498,749,0,6229,6231,3,1472,736, - 0,6230,6232,3,1378,689,0,6231,6230,1,0,0,0,6231,6232,1,0,0,0,6232, - 6234,1,0,0,0,6233,6225,1,0,0,0,6233,6228,1,0,0,0,6233,6229,1,0,0, - 0,6234,669,1,0,0,0,6235,6240,3,672,336,0,6236,6237,5,6,0,0,6237, - 6239,3,672,336,0,6238,6236,1,0,0,0,6239,6242,1,0,0,0,6240,6238,1, - 0,0,0,6240,6241,1,0,0,0,6241,671,1,0,0,0,6242,6240,1,0,0,0,6243, - 6244,3,1442,721,0,6244,6245,3,658,329,0,6245,6252,1,0,0,0,6246,6252, - 3,1498,749,0,6247,6249,3,1472,736,0,6248,6250,3,1378,689,0,6249, - 6248,1,0,0,0,6249,6250,1,0,0,0,6250,6252,1,0,0,0,6251,6243,1,0,0, - 0,6251,6246,1,0,0,0,6251,6247,1,0,0,0,6252,673,1,0,0,0,6253,6255, - 5,2,0,0,6254,6256,3,676,338,0,6255,6254,1,0,0,0,6255,6256,1,0,0, - 0,6256,6257,1,0,0,0,6257,6258,5,3,0,0,6258,675,1,0,0,0,6259,6264, - 3,688,344,0,6260,6261,5,6,0,0,6261,6263,3,688,344,0,6262,6260,1, - 0,0,0,6263,6266,1,0,0,0,6264,6262,1,0,0,0,6264,6265,1,0,0,0,6265, - 677,1,0,0,0,6266,6264,1,0,0,0,6267,6269,3,680,340,0,6268,6270,3, - 682,341,0,6269,6268,1,0,0,0,6269,6270,1,0,0,0,6270,6271,1,0,0,0, - 6271,6272,3,686,343,0,6272,6281,1,0,0,0,6273,6275,3,682,341,0,6274, - 6276,3,680,340,0,6275,6274,1,0,0,0,6275,6276,1,0,0,0,6276,6277,1, - 0,0,0,6277,6278,3,686,343,0,6278,6281,1,0,0,0,6279,6281,3,686,343, - 0,6280,6267,1,0,0,0,6280,6273,1,0,0,0,6280,6279,1,0,0,0,6281,679, - 1,0,0,0,6282,6284,5,68,0,0,6283,6285,5,453,0,0,6284,6283,1,0,0,0, - 6284,6285,1,0,0,0,6285,6290,1,0,0,0,6286,6290,5,453,0,0,6287,6290, - 5,400,0,0,6288,6290,5,101,0,0,6289,6282,1,0,0,0,6289,6286,1,0,0, - 0,6289,6287,1,0,0,0,6289,6288,1,0,0,0,6290,681,1,0,0,0,6291,6292, - 3,1480,740,0,6292,683,1,0,0,0,6293,6294,3,686,343,0,6294,685,1,0, - 0,0,6295,6308,3,1166,583,0,6296,6297,3,1480,740,0,6297,6298,3,558, - 279,0,6298,6299,5,27,0,0,6299,6300,5,360,0,0,6300,6308,1,0,0,0,6301, - 6302,5,415,0,0,6302,6303,3,1480,740,0,6303,6304,3,558,279,0,6304, - 6305,5,27,0,0,6305,6306,5,360,0,0,6306,6308,1,0,0,0,6307,6295,1, - 0,0,0,6307,6296,1,0,0,0,6307,6301,1,0,0,0,6308,687,1,0,0,0,6309, - 6312,3,678,339,0,6310,6311,7,46,0,0,6311,6313,3,1210,605,0,6312, - 6310,1,0,0,0,6312,6313,1,0,0,0,6313,689,1,0,0,0,6314,6315,3,678, - 339,0,6315,691,1,0,0,0,6316,6327,5,2,0,0,6317,6328,5,9,0,0,6318, - 6328,3,694,347,0,6319,6320,5,83,0,0,6320,6321,5,147,0,0,6321,6328, - 3,694,347,0,6322,6323,3,694,347,0,6323,6324,5,83,0,0,6324,6325,5, - 147,0,0,6325,6326,3,694,347,0,6326,6328,1,0,0,0,6327,6317,1,0,0, - 0,6327,6318,1,0,0,0,6327,6319,1,0,0,0,6327,6322,1,0,0,0,6328,6329, - 1,0,0,0,6329,6330,5,3,0,0,6330,693,1,0,0,0,6331,6336,3,690,345,0, - 6332,6333,5,6,0,0,6333,6335,3,690,345,0,6334,6332,1,0,0,0,6335,6338, - 1,0,0,0,6336,6334,1,0,0,0,6336,6337,1,0,0,0,6337,695,1,0,0,0,6338, - 6336,1,0,0,0,6339,6340,3,1442,721,0,6340,6341,3,692,346,0,6341,697, - 1,0,0,0,6342,6347,3,696,348,0,6343,6344,5,6,0,0,6344,6346,3,696, - 348,0,6345,6343,1,0,0,0,6346,6349,1,0,0,0,6347,6345,1,0,0,0,6347, - 6348,1,0,0,0,6348,699,1,0,0,0,6349,6347,1,0,0,0,6350,6352,3,704, - 352,0,6351,6350,1,0,0,0,6352,6353,1,0,0,0,6353,6351,1,0,0,0,6353, - 6354,1,0,0,0,6354,701,1,0,0,0,6355,6356,5,149,0,0,6356,6357,5,80, - 0,0,6357,6358,5,78,0,0,6358,6391,5,458,0,0,6359,6360,5,316,0,0,6360, - 6361,5,78,0,0,6361,6362,5,80,0,0,6362,6363,5,78,0,0,6363,6391,5, - 458,0,0,6364,6391,5,346,0,0,6365,6391,5,222,0,0,6366,6391,5,338, - 0,0,6367,6391,5,377,0,0,6368,6369,5,205,0,0,6369,6370,5,327,0,0, - 6370,6391,5,181,0,0,6371,6372,5,205,0,0,6372,6373,5,327,0,0,6373, - 6391,5,243,0,0,6374,6375,5,327,0,0,6375,6391,5,181,0,0,6376,6377, - 5,327,0,0,6377,6391,5,243,0,0,6378,6391,5,250,0,0,6379,6380,5,77, - 0,0,6380,6391,5,250,0,0,6381,6382,5,170,0,0,6382,6391,3,320,160, - 0,6383,6384,5,320,0,0,6384,6391,3,320,160,0,6385,6386,5,459,0,0, - 6386,6391,3,556,278,0,6387,6391,3,90,45,0,6388,6389,5,460,0,0,6389, - 6391,3,1472,736,0,6390,6355,1,0,0,0,6390,6359,1,0,0,0,6390,6364, - 1,0,0,0,6390,6365,1,0,0,0,6390,6366,1,0,0,0,6390,6367,1,0,0,0,6390, - 6368,1,0,0,0,6390,6371,1,0,0,0,6390,6374,1,0,0,0,6390,6376,1,0,0, - 0,6390,6378,1,0,0,0,6390,6379,1,0,0,0,6390,6381,1,0,0,0,6390,6383, - 1,0,0,0,6390,6385,1,0,0,0,6390,6387,1,0,0,0,6390,6388,1,0,0,0,6391, - 703,1,0,0,0,6392,6393,5,36,0,0,6393,6394,3,1456,728,0,6394,6395, - 5,6,0,0,6395,6396,3,1456,728,0,6396,6418,1,0,0,0,6397,6398,5,247, - 0,0,6398,6418,3,80,40,0,6399,6400,5,443,0,0,6400,6418,3,706,353, - 0,6401,6418,5,104,0,0,6402,6403,5,333,0,0,6403,6410,3,1472,736,0, - 6404,6405,5,94,0,0,6405,6411,3,1472,736,0,6406,6407,5,10,0,0,6407, - 6411,3,1472,736,0,6408,6409,5,64,0,0,6409,6411,5,434,0,0,6410,6404, - 1,0,0,0,6410,6406,1,0,0,0,6410,6408,1,0,0,0,6411,6418,1,0,0,0,6412, - 6413,5,36,0,0,6413,6418,3,1472,736,0,6414,6418,3,6,3,0,6415,6418, - 3,702,351,0,6416,6418,3,1472,736,0,6417,6392,1,0,0,0,6417,6397,1, - 0,0,0,6417,6399,1,0,0,0,6417,6401,1,0,0,0,6417,6402,1,0,0,0,6417, - 6412,1,0,0,0,6417,6414,1,0,0,0,6417,6415,1,0,0,0,6417,6416,1,0,0, - 0,6418,705,1,0,0,0,6419,6420,5,62,0,0,6420,6421,5,360,0,0,6421,6428, - 3,1166,583,0,6422,6423,5,6,0,0,6423,6424,5,62,0,0,6424,6425,5,360, - 0,0,6425,6427,3,1166,583,0,6426,6422,1,0,0,0,6427,6430,1,0,0,0,6428, - 6426,1,0,0,0,6428,6429,1,0,0,0,6429,707,1,0,0,0,6430,6428,1,0,0, - 0,6431,6432,5,105,0,0,6432,6433,3,494,247,0,6433,709,1,0,0,0,6434, - 6435,3,1430,715,0,6435,6436,3,686,343,0,6436,711,1,0,0,0,6437,6442, - 3,710,355,0,6438,6439,5,6,0,0,6439,6441,3,710,355,0,6440,6438,1, - 0,0,0,6441,6444,1,0,0,0,6442,6440,1,0,0,0,6442,6443,1,0,0,0,6443, - 713,1,0,0,0,6444,6442,1,0,0,0,6445,6446,5,138,0,0,6446,6447,3,716, - 358,0,6447,6449,3,718,359,0,6448,6450,3,720,360,0,6449,6448,1,0, - 0,0,6449,6450,1,0,0,0,6450,715,1,0,0,0,6451,6452,5,211,0,0,6452, - 6458,3,672,336,0,6453,6454,5,296,0,0,6454,6458,3,668,334,0,6455, - 6456,5,442,0,0,6456,6458,3,664,332,0,6457,6451,1,0,0,0,6457,6453, - 1,0,0,0,6457,6455,1,0,0,0,6458,717,1,0,0,0,6459,6461,3,702,351,0, - 6460,6459,1,0,0,0,6461,6462,1,0,0,0,6462,6460,1,0,0,0,6462,6463, - 1,0,0,0,6463,719,1,0,0,0,6464,6465,5,315,0,0,6465,721,1,0,0,0,6466, - 6467,5,191,0,0,6467,6469,5,211,0,0,6468,6470,3,746,373,0,6469,6468, - 1,0,0,0,6469,6470,1,0,0,0,6470,6471,1,0,0,0,6471,6473,3,670,335, - 0,6472,6474,3,124,62,0,6473,6472,1,0,0,0,6473,6474,1,0,0,0,6474, - 6494,1,0,0,0,6475,6476,5,191,0,0,6476,6478,5,296,0,0,6477,6479,3, - 746,373,0,6478,6477,1,0,0,0,6478,6479,1,0,0,0,6479,6480,1,0,0,0, - 6480,6482,3,666,333,0,6481,6483,3,124,62,0,6482,6481,1,0,0,0,6482, - 6483,1,0,0,0,6483,6494,1,0,0,0,6484,6485,5,191,0,0,6485,6487,5,442, - 0,0,6486,6488,3,746,373,0,6487,6486,1,0,0,0,6487,6488,1,0,0,0,6488, - 6489,1,0,0,0,6489,6491,3,662,331,0,6490,6492,3,124,62,0,6491,6490, - 1,0,0,0,6491,6492,1,0,0,0,6492,6494,1,0,0,0,6493,6466,1,0,0,0,6493, - 6475,1,0,0,0,6493,6484,1,0,0,0,6494,723,1,0,0,0,6495,6496,5,191, - 0,0,6496,6498,5,136,0,0,6497,6499,3,746,373,0,6498,6497,1,0,0,0, - 6498,6499,1,0,0,0,6499,6500,1,0,0,0,6500,6502,3,698,349,0,6501,6503, - 3,124,62,0,6502,6501,1,0,0,0,6502,6503,1,0,0,0,6503,725,1,0,0,0, - 6504,6505,5,191,0,0,6505,6507,5,278,0,0,6506,6508,3,746,373,0,6507, - 6506,1,0,0,0,6507,6508,1,0,0,0,6508,6509,1,0,0,0,6509,6511,3,732, - 366,0,6510,6512,3,124,62,0,6511,6510,1,0,0,0,6511,6512,1,0,0,0,6512, - 727,1,0,0,0,6513,6514,5,2,0,0,6514,6515,3,1166,583,0,6515,6516,5, - 3,0,0,6516,6536,1,0,0,0,6517,6518,5,2,0,0,6518,6519,3,1166,583,0, - 6519,6520,5,6,0,0,6520,6521,3,1166,583,0,6521,6522,5,3,0,0,6522, - 6536,1,0,0,0,6523,6524,5,2,0,0,6524,6525,5,407,0,0,6525,6526,5,6, - 0,0,6526,6527,3,1166,583,0,6527,6528,5,3,0,0,6528,6536,1,0,0,0,6529, - 6530,5,2,0,0,6530,6531,3,1166,583,0,6531,6532,5,6,0,0,6532,6533, - 5,407,0,0,6533,6534,5,3,0,0,6534,6536,1,0,0,0,6535,6513,1,0,0,0, - 6535,6517,1,0,0,0,6535,6523,1,0,0,0,6535,6529,1,0,0,0,6536,729,1, - 0,0,0,6537,6538,3,1472,736,0,6538,6539,5,11,0,0,6539,6541,1,0,0, - 0,6540,6537,1,0,0,0,6541,6544,1,0,0,0,6542,6540,1,0,0,0,6542,6543, - 1,0,0,0,6543,6545,1,0,0,0,6544,6542,1,0,0,0,6545,6546,3,1316,658, - 0,6546,731,1,0,0,0,6547,6552,3,734,367,0,6548,6549,5,6,0,0,6549, - 6551,3,734,367,0,6550,6548,1,0,0,0,6551,6554,1,0,0,0,6552,6550,1, - 0,0,0,6552,6553,1,0,0,0,6553,733,1,0,0,0,6554,6552,1,0,0,0,6555, - 6556,3,730,365,0,6556,6557,3,728,364,0,6557,735,1,0,0,0,6558,6559, - 5,57,0,0,6559,6560,3,738,369,0,6560,737,1,0,0,0,6561,6563,3,740, - 370,0,6562,6561,1,0,0,0,6563,6564,1,0,0,0,6564,6562,1,0,0,0,6564, - 6565,1,0,0,0,6565,739,1,0,0,0,6566,6570,3,1456,728,0,6567,6568,5, - 247,0,0,6568,6570,3,80,40,0,6569,6566,1,0,0,0,6569,6567,1,0,0,0, - 6570,741,1,0,0,0,6571,6572,5,46,0,0,6572,6573,5,41,0,0,6573,6574, - 5,2,0,0,6574,6575,3,1166,583,0,6575,6576,5,36,0,0,6576,6577,3,1166, - 583,0,6577,6578,5,3,0,0,6578,6579,5,105,0,0,6579,6580,5,211,0,0, - 6580,6582,3,672,336,0,6581,6583,3,744,372,0,6582,6581,1,0,0,0,6582, - 6583,1,0,0,0,6583,6609,1,0,0,0,6584,6585,5,46,0,0,6585,6586,5,41, - 0,0,6586,6587,5,2,0,0,6587,6588,3,1166,583,0,6588,6589,5,36,0,0, - 6589,6590,3,1166,583,0,6590,6591,5,3,0,0,6591,6592,5,379,0,0,6592, - 6594,5,211,0,0,6593,6595,3,744,372,0,6594,6593,1,0,0,0,6594,6595, - 1,0,0,0,6595,6609,1,0,0,0,6596,6597,5,46,0,0,6597,6598,5,41,0,0, - 6598,6599,5,2,0,0,6599,6600,3,1166,583,0,6600,6601,5,36,0,0,6601, - 6602,3,1166,583,0,6602,6603,5,3,0,0,6603,6604,5,105,0,0,6604,6606, - 5,400,0,0,6605,6607,3,744,372,0,6606,6605,1,0,0,0,6606,6607,1,0, - 0,0,6607,6609,1,0,0,0,6608,6571,1,0,0,0,6608,6584,1,0,0,0,6608,6596, - 1,0,0,0,6609,743,1,0,0,0,6610,6611,5,36,0,0,6611,6615,5,223,0,0, - 6612,6613,5,36,0,0,6613,6615,5,141,0,0,6614,6610,1,0,0,0,6614,6612, - 1,0,0,0,6615,745,1,0,0,0,6616,6617,5,220,0,0,6617,6618,5,396,0,0, - 6618,747,1,0,0,0,6619,6621,5,46,0,0,6620,6622,3,656,328,0,6621,6620, - 1,0,0,0,6621,6622,1,0,0,0,6622,6623,1,0,0,0,6623,6624,5,443,0,0, - 6624,6625,5,62,0,0,6625,6626,3,1166,583,0,6626,6627,5,247,0,0,6627, - 6628,3,1434,717,0,6628,6629,5,2,0,0,6629,6630,3,750,375,0,6630,6631, - 5,3,0,0,6631,749,1,0,0,0,6632,6633,5,64,0,0,6633,6634,5,461,0,0, - 6634,6635,5,105,0,0,6635,6636,5,211,0,0,6636,6637,3,672,336,0,6637, - 6638,5,6,0,0,6638,6639,5,94,0,0,6639,6640,5,461,0,0,6640,6641,5, - 105,0,0,6641,6642,5,211,0,0,6642,6643,3,672,336,0,6643,6667,1,0, - 0,0,6644,6645,5,94,0,0,6645,6646,5,461,0,0,6646,6647,5,105,0,0,6647, - 6648,5,211,0,0,6648,6649,3,672,336,0,6649,6650,5,6,0,0,6650,6651, - 5,64,0,0,6651,6652,5,461,0,0,6652,6653,5,105,0,0,6653,6654,5,211, - 0,0,6654,6655,3,672,336,0,6655,6667,1,0,0,0,6656,6657,5,64,0,0,6657, - 6658,5,461,0,0,6658,6659,5,105,0,0,6659,6660,5,211,0,0,6660,6667, - 3,672,336,0,6661,6662,5,94,0,0,6662,6663,5,461,0,0,6663,6664,5,105, - 0,0,6664,6665,5,211,0,0,6665,6667,3,672,336,0,6666,6632,1,0,0,0, - 6666,6644,1,0,0,0,6666,6656,1,0,0,0,6666,6661,1,0,0,0,6667,751,1, - 0,0,0,6668,6669,5,306,0,0,6669,6685,3,754,377,0,6670,6671,5,306, - 0,0,6671,6685,3,756,378,0,6672,6673,5,306,0,0,6673,6674,5,2,0,0, - 6674,6675,3,758,379,0,6675,6676,5,3,0,0,6676,6677,3,754,377,0,6677, - 6685,1,0,0,0,6678,6679,5,306,0,0,6679,6680,5,2,0,0,6680,6681,3,758, - 379,0,6681,6682,5,3,0,0,6682,6683,3,756,378,0,6683,6685,1,0,0,0, - 6684,6668,1,0,0,0,6684,6670,1,0,0,0,6684,6672,1,0,0,0,6684,6678, - 1,0,0,0,6685,753,1,0,0,0,6686,6688,5,226,0,0,6687,6689,3,628,314, - 0,6688,6687,1,0,0,0,6688,6689,1,0,0,0,6689,6690,1,0,0,0,6690,6697, - 3,1410,705,0,6691,6693,5,92,0,0,6692,6694,3,628,314,0,6693,6692, - 1,0,0,0,6693,6694,1,0,0,0,6694,6695,1,0,0,0,6695,6697,3,1404,702, - 0,6696,6686,1,0,0,0,6696,6691,1,0,0,0,6697,755,1,0,0,0,6698,6700, - 5,323,0,0,6699,6701,3,628,314,0,6700,6699,1,0,0,0,6700,6701,1,0, - 0,0,6701,6702,1,0,0,0,6702,6714,3,1420,710,0,6703,6705,5,349,0,0, - 6704,6706,3,628,314,0,6705,6704,1,0,0,0,6705,6706,1,0,0,0,6706,6707, - 1,0,0,0,6707,6714,3,1434,717,0,6708,6710,5,175,0,0,6709,6711,3,628, - 314,0,6710,6709,1,0,0,0,6710,6711,1,0,0,0,6711,6712,1,0,0,0,6712, - 6714,3,1418,709,0,6713,6698,1,0,0,0,6713,6703,1,0,0,0,6713,6708, - 1,0,0,0,6714,757,1,0,0,0,6715,6720,3,760,380,0,6716,6717,5,6,0,0, - 6717,6719,3,760,380,0,6718,6716,1,0,0,0,6719,6722,1,0,0,0,6720,6718, - 1,0,0,0,6720,6721,1,0,0,0,6721,759,1,0,0,0,6722,6720,1,0,0,0,6723, - 6724,5,128,0,0,6724,761,1,0,0,0,6725,6726,5,138,0,0,6726,6727,5, - 351,0,0,6727,6728,3,1400,700,0,6728,6729,5,333,0,0,6729,6730,3,132, - 66,0,6730,6738,1,0,0,0,6731,6732,5,138,0,0,6732,6733,5,351,0,0,6733, - 6734,3,1400,700,0,6734,6735,5,313,0,0,6735,6736,3,132,66,0,6736, - 6738,1,0,0,0,6737,6725,1,0,0,0,6737,6731,1,0,0,0,6738,763,1,0,0, - 0,6739,6740,5,138,0,0,6740,6741,5,136,0,0,6741,6742,3,696,348,0, - 6742,6743,5,309,0,0,6743,6744,5,94,0,0,6744,6745,3,1434,717,0,6745, - 7131,1,0,0,0,6746,6747,5,138,0,0,6747,6748,5,108,0,0,6748,6749,3, - 556,278,0,6749,6750,5,309,0,0,6750,6751,5,94,0,0,6751,6752,3,1434, - 717,0,6752,7131,1,0,0,0,6753,6754,5,138,0,0,6754,6755,5,168,0,0, - 6755,6756,3,556,278,0,6756,6757,5,309,0,0,6757,6758,5,94,0,0,6758, - 6759,3,1434,717,0,6759,7131,1,0,0,0,6760,6761,5,138,0,0,6761,6762, - 5,175,0,0,6762,6763,3,1418,709,0,6763,6764,5,309,0,0,6764,6765,5, - 94,0,0,6765,6766,3,1416,708,0,6766,7131,1,0,0,0,6767,6768,5,138, - 0,0,6768,6769,5,189,0,0,6769,6770,3,556,278,0,6770,6771,5,309,0, - 0,6771,6772,5,94,0,0,6772,6773,3,1434,717,0,6773,7131,1,0,0,0,6774, - 6775,5,138,0,0,6775,6776,5,189,0,0,6776,6777,3,556,278,0,6777,6778, - 5,309,0,0,6778,6779,5,45,0,0,6779,6780,3,1434,717,0,6780,6781,5, - 94,0,0,6781,6782,3,1434,717,0,6782,7131,1,0,0,0,6783,6784,5,138, - 0,0,6784,6785,5,63,0,0,6785,6786,5,174,0,0,6786,6787,5,381,0,0,6787, - 6788,3,1434,717,0,6788,6789,5,309,0,0,6789,6790,5,94,0,0,6790,6791, - 3,1434,717,0,6791,7131,1,0,0,0,6792,6793,5,138,0,0,6793,6794,5,211, - 0,0,6794,6795,3,672,336,0,6795,6796,5,309,0,0,6796,6797,5,94,0,0, - 6797,6798,3,1440,720,0,6798,7131,1,0,0,0,6799,6800,5,138,0,0,6800, - 6801,5,66,0,0,6801,6802,3,1466,733,0,6802,6803,5,309,0,0,6803,6804, - 5,94,0,0,6804,6805,3,1466,733,0,6805,7131,1,0,0,0,6806,6808,5,138, - 0,0,6807,6809,3,336,168,0,6808,6807,1,0,0,0,6808,6809,1,0,0,0,6809, - 6810,1,0,0,0,6810,6811,5,247,0,0,6811,6812,3,1434,717,0,6812,6813, - 5,309,0,0,6813,6814,5,94,0,0,6814,6815,3,1434,717,0,6815,7131,1, - 0,0,0,6816,6817,5,138,0,0,6817,6818,5,278,0,0,6818,6819,5,156,0, - 0,6819,6820,3,556,278,0,6820,6821,5,100,0,0,6821,6822,3,1434,717, - 0,6822,6823,5,309,0,0,6823,6824,5,94,0,0,6824,6825,3,1434,717,0, - 6825,7131,1,0,0,0,6826,6827,5,138,0,0,6827,6828,5,278,0,0,6828,6829, - 5,206,0,0,6829,6830,3,556,278,0,6830,6831,5,100,0,0,6831,6832,3, - 1434,717,0,6832,6833,5,309,0,0,6833,6834,5,94,0,0,6834,6835,3,1434, - 717,0,6835,7131,1,0,0,0,6836,6837,5,138,0,0,6837,6839,5,445,0,0, - 6838,6840,3,746,373,0,6839,6838,1,0,0,0,6839,6840,1,0,0,0,6840,6841, - 1,0,0,0,6841,6842,3,1434,717,0,6842,6843,5,80,0,0,6843,6844,3,1410, - 705,0,6844,6845,5,309,0,0,6845,6846,5,94,0,0,6846,6847,3,1434,717, - 0,6847,7131,1,0,0,0,6848,6849,5,138,0,0,6849,6850,5,296,0,0,6850, - 6851,3,668,334,0,6851,6852,5,309,0,0,6852,6853,5,94,0,0,6853,6854, - 3,1428,714,0,6854,7131,1,0,0,0,6855,6856,5,138,0,0,6856,6857,5,452, - 0,0,6857,6858,3,1434,717,0,6858,6859,5,309,0,0,6859,6860,5,94,0, - 0,6860,6861,3,1434,717,0,6861,7131,1,0,0,0,6862,6863,5,138,0,0,6863, - 6864,5,442,0,0,6864,6865,3,664,332,0,6865,6866,5,309,0,0,6866,6867, - 5,94,0,0,6867,6868,3,1434,717,0,6868,7131,1,0,0,0,6869,6870,5,138, - 0,0,6870,6871,5,323,0,0,6871,6872,3,1420,710,0,6872,6873,5,309,0, - 0,6873,6874,5,94,0,0,6874,6875,3,48,24,0,6875,7131,1,0,0,0,6876, - 6877,5,138,0,0,6877,6878,5,331,0,0,6878,6879,3,1434,717,0,6879,6880, - 5,309,0,0,6880,6881,5,94,0,0,6881,6882,3,1434,717,0,6882,7131,1, - 0,0,0,6883,6884,5,138,0,0,6884,6885,5,451,0,0,6885,6886,3,1434,717, - 0,6886,6887,5,309,0,0,6887,6888,5,94,0,0,6888,6889,3,1434,717,0, - 6889,7131,1,0,0,0,6890,6891,5,138,0,0,6891,6893,5,92,0,0,6892,6894, - 3,746,373,0,6893,6892,1,0,0,0,6893,6894,1,0,0,0,6894,6895,1,0,0, - 0,6895,6896,3,1116,558,0,6896,6897,5,309,0,0,6897,6898,5,94,0,0, - 6898,6899,3,1402,701,0,6899,7131,1,0,0,0,6900,6901,5,138,0,0,6901, - 6903,5,328,0,0,6902,6904,3,746,373,0,6903,6902,1,0,0,0,6903,6904, - 1,0,0,0,6904,6905,1,0,0,0,6905,6906,3,1410,705,0,6906,6907,5,309, - 0,0,6907,6908,5,94,0,0,6908,6909,3,1434,717,0,6909,7131,1,0,0,0, - 6910,6911,5,138,0,0,6911,6913,5,376,0,0,6912,6914,3,746,373,0,6913, - 6912,1,0,0,0,6913,6914,1,0,0,0,6914,6915,1,0,0,0,6915,6916,3,1408, - 704,0,6916,6917,5,309,0,0,6917,6918,5,94,0,0,6918,6919,3,1406,703, - 0,6919,7131,1,0,0,0,6920,6921,5,138,0,0,6921,6922,5,259,0,0,6922, - 6924,5,376,0,0,6923,6925,3,746,373,0,6924,6923,1,0,0,0,6924,6925, - 1,0,0,0,6925,6926,1,0,0,0,6926,6927,3,1408,704,0,6927,6928,5,309, - 0,0,6928,6929,5,94,0,0,6929,6930,3,1406,703,0,6930,7131,1,0,0,0, - 6931,6932,5,138,0,0,6932,6934,5,226,0,0,6933,6935,3,746,373,0,6934, - 6933,1,0,0,0,6934,6935,1,0,0,0,6935,6936,1,0,0,0,6936,6937,3,1410, - 705,0,6937,6938,5,309,0,0,6938,6939,5,94,0,0,6939,6940,3,1434,717, - 0,6940,7131,1,0,0,0,6941,6942,5,138,0,0,6942,6943,5,63,0,0,6943, - 6945,5,92,0,0,6944,6946,3,746,373,0,6945,6944,1,0,0,0,6945,6946, - 1,0,0,0,6946,6947,1,0,0,0,6947,6948,3,1116,558,0,6948,6949,5,309, - 0,0,6949,6950,5,94,0,0,6950,6951,3,1402,701,0,6951,7131,1,0,0,0, - 6952,6953,5,138,0,0,6953,6955,5,92,0,0,6954,6956,3,746,373,0,6955, - 6954,1,0,0,0,6955,6956,1,0,0,0,6956,6957,1,0,0,0,6957,6958,3,1116, - 558,0,6958,6960,5,309,0,0,6959,6961,5,44,0,0,6960,6959,1,0,0,0,6960, - 6961,1,0,0,0,6961,6962,1,0,0,0,6962,6963,3,1430,715,0,6963,6964, - 5,94,0,0,6964,6965,3,1432,716,0,6965,7131,1,0,0,0,6966,6967,5,138, - 0,0,6967,6969,5,376,0,0,6968,6970,3,746,373,0,6969,6968,1,0,0,0, - 6969,6970,1,0,0,0,6970,6971,1,0,0,0,6971,6972,3,1408,704,0,6972, - 6974,5,309,0,0,6973,6975,5,44,0,0,6974,6973,1,0,0,0,6974,6975,1, - 0,0,0,6975,6976,1,0,0,0,6976,6977,3,1430,715,0,6977,6978,5,94,0, - 0,6978,6979,3,1432,716,0,6979,7131,1,0,0,0,6980,6981,5,138,0,0,6981, - 6982,5,259,0,0,6982,6984,5,376,0,0,6983,6985,3,746,373,0,6984,6983, - 1,0,0,0,6984,6985,1,0,0,0,6985,6986,1,0,0,0,6986,6987,3,1408,704, - 0,6987,6989,5,309,0,0,6988,6990,5,44,0,0,6989,6988,1,0,0,0,6989, - 6990,1,0,0,0,6990,6991,1,0,0,0,6991,6992,3,1430,715,0,6992,6993, - 5,94,0,0,6993,6994,3,1432,716,0,6994,7131,1,0,0,0,6995,6996,5,138, - 0,0,6996,6998,5,92,0,0,6997,6999,3,746,373,0,6998,6997,1,0,0,0,6998, - 6999,1,0,0,0,6999,7000,1,0,0,0,7000,7001,3,1116,558,0,7001,7002, - 5,309,0,0,7002,7003,5,45,0,0,7003,7004,3,1434,717,0,7004,7005,5, - 94,0,0,7005,7006,3,1434,717,0,7006,7131,1,0,0,0,7007,7008,5,138, - 0,0,7008,7009,5,63,0,0,7009,7011,5,92,0,0,7010,7012,3,746,373,0, - 7011,7010,1,0,0,0,7011,7012,1,0,0,0,7012,7013,1,0,0,0,7013,7014, - 3,1116,558,0,7014,7016,5,309,0,0,7015,7017,5,44,0,0,7016,7015,1, - 0,0,0,7016,7017,1,0,0,0,7017,7018,1,0,0,0,7018,7019,3,1430,715,0, - 7019,7020,5,94,0,0,7020,7021,3,1432,716,0,7021,7131,1,0,0,0,7022, - 7023,5,138,0,0,7023,7024,5,321,0,0,7024,7025,3,1434,717,0,7025,7026, - 5,80,0,0,7026,7027,3,1410,705,0,7027,7028,5,309,0,0,7028,7029,5, - 94,0,0,7029,7030,3,1434,717,0,7030,7131,1,0,0,0,7031,7032,5,138, - 0,0,7032,7033,5,357,0,0,7033,7034,3,1434,717,0,7034,7035,5,80,0, - 0,7035,7036,3,1410,705,0,7036,7037,5,309,0,0,7037,7038,5,94,0,0, - 7038,7039,3,1434,717,0,7039,7131,1,0,0,0,7040,7041,5,138,0,0,7041, - 7042,5,198,0,0,7042,7043,5,357,0,0,7043,7044,3,1434,717,0,7044,7045, - 5,309,0,0,7045,7046,5,94,0,0,7046,7047,3,1434,717,0,7047,7131,1, - 0,0,0,7048,7049,5,138,0,0,7049,7050,5,318,0,0,7050,7051,3,1466,733, - 0,7051,7052,5,309,0,0,7052,7053,5,94,0,0,7053,7054,3,1466,733,0, - 7054,7131,1,0,0,0,7055,7056,5,138,0,0,7056,7057,5,99,0,0,7057,7058, - 3,1466,733,0,7058,7059,5,309,0,0,7059,7060,5,94,0,0,7060,7061,3, - 1466,733,0,7061,7131,1,0,0,0,7062,7063,5,138,0,0,7063,7064,5,351, - 0,0,7064,7065,3,1400,700,0,7065,7066,5,309,0,0,7066,7067,5,94,0, - 0,7067,7068,3,1398,699,0,7068,7131,1,0,0,0,7069,7070,5,138,0,0,7070, - 7071,5,342,0,0,7071,7072,3,556,278,0,7072,7073,5,309,0,0,7073,7074, - 5,94,0,0,7074,7075,3,1434,717,0,7075,7131,1,0,0,0,7076,7077,5,138, - 0,0,7077,7078,5,355,0,0,7078,7079,5,325,0,0,7079,7080,5,283,0,0, - 7080,7081,3,556,278,0,7081,7082,5,309,0,0,7082,7083,5,94,0,0,7083, - 7084,3,1434,717,0,7084,7131,1,0,0,0,7085,7086,5,138,0,0,7086,7087, - 5,355,0,0,7087,7088,5,325,0,0,7088,7089,5,185,0,0,7089,7090,3,556, - 278,0,7090,7091,5,309,0,0,7091,7092,5,94,0,0,7092,7093,3,1434,717, - 0,7093,7131,1,0,0,0,7094,7095,5,138,0,0,7095,7096,5,355,0,0,7096, - 7097,5,325,0,0,7097,7098,5,353,0,0,7098,7099,3,556,278,0,7099,7100, - 5,309,0,0,7100,7101,5,94,0,0,7101,7102,3,1434,717,0,7102,7131,1, - 0,0,0,7103,7104,5,138,0,0,7104,7105,5,355,0,0,7105,7106,5,325,0, - 0,7106,7107,5,163,0,0,7107,7108,3,556,278,0,7108,7109,5,309,0,0, - 7109,7110,5,94,0,0,7110,7111,3,1434,717,0,7111,7131,1,0,0,0,7112, - 7113,5,138,0,0,7113,7114,5,360,0,0,7114,7115,3,556,278,0,7115,7116, - 5,309,0,0,7116,7117,5,94,0,0,7117,7118,3,1434,717,0,7118,7131,1, - 0,0,0,7119,7120,5,138,0,0,7120,7121,5,360,0,0,7121,7122,3,556,278, - 0,7122,7123,5,309,0,0,7123,7124,5,143,0,0,7124,7125,3,1434,717,0, - 7125,7126,5,94,0,0,7126,7128,3,1434,717,0,7127,7129,3,124,62,0,7128, - 7127,1,0,0,0,7128,7129,1,0,0,0,7129,7131,1,0,0,0,7130,6739,1,0,0, - 0,7130,6746,1,0,0,0,7130,6753,1,0,0,0,7130,6760,1,0,0,0,7130,6767, - 1,0,0,0,7130,6774,1,0,0,0,7130,6783,1,0,0,0,7130,6792,1,0,0,0,7130, - 6799,1,0,0,0,7130,6806,1,0,0,0,7130,6816,1,0,0,0,7130,6826,1,0,0, - 0,7130,6836,1,0,0,0,7130,6848,1,0,0,0,7130,6855,1,0,0,0,7130,6862, - 1,0,0,0,7130,6869,1,0,0,0,7130,6876,1,0,0,0,7130,6883,1,0,0,0,7130, - 6890,1,0,0,0,7130,6900,1,0,0,0,7130,6910,1,0,0,0,7130,6920,1,0,0, - 0,7130,6931,1,0,0,0,7130,6941,1,0,0,0,7130,6952,1,0,0,0,7130,6966, - 1,0,0,0,7130,6980,1,0,0,0,7130,6995,1,0,0,0,7130,7007,1,0,0,0,7130, - 7022,1,0,0,0,7130,7031,1,0,0,0,7130,7040,1,0,0,0,7130,7048,1,0,0, - 0,7130,7055,1,0,0,0,7130,7062,1,0,0,0,7130,7069,1,0,0,0,7130,7076, - 1,0,0,0,7130,7085,1,0,0,0,7130,7094,1,0,0,0,7130,7103,1,0,0,0,7130, - 7112,1,0,0,0,7130,7119,1,0,0,0,7131,765,1,0,0,0,7132,7133,5,333, - 0,0,7133,7134,5,174,0,0,7134,767,1,0,0,0,7135,7136,5,138,0,0,7136, - 7137,5,211,0,0,7137,7139,3,672,336,0,7138,7140,3,770,385,0,7139, - 7138,1,0,0,0,7139,7140,1,0,0,0,7140,7141,1,0,0,0,7141,7142,5,462, - 0,0,7142,7143,5,80,0,0,7143,7144,5,204,0,0,7144,7145,3,1434,717, - 0,7145,7205,1,0,0,0,7146,7147,5,138,0,0,7147,7148,5,296,0,0,7148, - 7150,3,668,334,0,7149,7151,3,770,385,0,7150,7149,1,0,0,0,7150,7151, - 1,0,0,0,7151,7152,1,0,0,0,7152,7153,5,462,0,0,7153,7154,5,80,0,0, - 7154,7155,5,204,0,0,7155,7156,3,1434,717,0,7156,7205,1,0,0,0,7157, - 7158,5,138,0,0,7158,7159,5,442,0,0,7159,7161,3,664,332,0,7160,7162, - 3,770,385,0,7161,7160,1,0,0,0,7161,7162,1,0,0,0,7162,7163,1,0,0, - 0,7163,7164,5,462,0,0,7164,7165,5,80,0,0,7165,7166,5,204,0,0,7166, - 7167,3,1434,717,0,7167,7205,1,0,0,0,7168,7169,5,138,0,0,7169,7170, - 5,357,0,0,7170,7171,3,1434,717,0,7171,7172,5,80,0,0,7172,7174,3, - 1410,705,0,7173,7175,3,770,385,0,7174,7173,1,0,0,0,7174,7175,1,0, - 0,0,7175,7176,1,0,0,0,7176,7177,5,462,0,0,7177,7178,5,80,0,0,7178, - 7179,5,204,0,0,7179,7180,3,1434,717,0,7180,7205,1,0,0,0,7181,7182, - 5,138,0,0,7182,7183,5,259,0,0,7183,7184,5,376,0,0,7184,7186,3,1408, - 704,0,7185,7187,3,770,385,0,7186,7185,1,0,0,0,7186,7187,1,0,0,0, - 7187,7188,1,0,0,0,7188,7189,5,462,0,0,7189,7190,5,80,0,0,7190,7191, - 5,204,0,0,7191,7192,3,1434,717,0,7192,7205,1,0,0,0,7193,7194,5,138, - 0,0,7194,7195,5,226,0,0,7195,7197,3,1410,705,0,7196,7198,3,770,385, - 0,7197,7196,1,0,0,0,7197,7198,1,0,0,0,7198,7199,1,0,0,0,7199,7200, - 5,462,0,0,7200,7201,5,80,0,0,7201,7202,5,204,0,0,7202,7203,3,1434, - 717,0,7203,7205,1,0,0,0,7204,7135,1,0,0,0,7204,7146,1,0,0,0,7204, - 7157,1,0,0,0,7204,7168,1,0,0,0,7204,7181,1,0,0,0,7204,7193,1,0,0, - 0,7205,769,1,0,0,0,7206,7207,5,269,0,0,7207,771,1,0,0,0,7208,7209, - 5,138,0,0,7209,7210,5,136,0,0,7210,7211,3,696,348,0,7211,7212,5, - 333,0,0,7212,7213,5,323,0,0,7213,7214,3,48,24,0,7214,7394,1,0,0, - 0,7215,7216,5,138,0,0,7216,7217,5,108,0,0,7217,7218,3,556,278,0, - 7218,7219,5,333,0,0,7219,7220,5,323,0,0,7220,7221,3,48,24,0,7221, - 7394,1,0,0,0,7222,7223,5,138,0,0,7223,7224,5,168,0,0,7224,7225,3, - 556,278,0,7225,7226,5,333,0,0,7226,7227,5,323,0,0,7227,7228,3,48, - 24,0,7228,7394,1,0,0,0,7229,7230,5,138,0,0,7230,7231,5,189,0,0,7231, - 7232,3,556,278,0,7232,7233,5,333,0,0,7233,7234,5,323,0,0,7234,7235, - 3,48,24,0,7235,7394,1,0,0,0,7236,7237,5,138,0,0,7237,7238,5,204, - 0,0,7238,7239,3,1434,717,0,7239,7240,5,333,0,0,7240,7241,5,323,0, - 0,7241,7242,3,48,24,0,7242,7394,1,0,0,0,7243,7244,5,138,0,0,7244, - 7245,5,211,0,0,7245,7246,3,672,336,0,7246,7247,5,333,0,0,7247,7248, - 5,323,0,0,7248,7249,3,48,24,0,7249,7394,1,0,0,0,7250,7251,5,138, - 0,0,7251,7252,5,278,0,0,7252,7253,3,734,367,0,7253,7254,5,333,0, - 0,7254,7255,5,323,0,0,7255,7256,3,48,24,0,7256,7394,1,0,0,0,7257, - 7258,5,138,0,0,7258,7259,5,278,0,0,7259,7260,5,156,0,0,7260,7261, - 3,556,278,0,7261,7262,5,100,0,0,7262,7263,3,1434,717,0,7263,7264, - 5,333,0,0,7264,7265,5,323,0,0,7265,7266,3,48,24,0,7266,7394,1,0, - 0,0,7267,7268,5,138,0,0,7268,7269,5,278,0,0,7269,7270,5,206,0,0, - 7270,7271,3,556,278,0,7271,7272,5,100,0,0,7272,7273,3,1434,717,0, - 7273,7274,5,333,0,0,7274,7275,5,323,0,0,7275,7276,3,48,24,0,7276, - 7394,1,0,0,0,7277,7278,5,138,0,0,7278,7279,5,296,0,0,7279,7280,3, - 668,334,0,7280,7281,5,333,0,0,7281,7282,5,323,0,0,7282,7283,3,48, - 24,0,7283,7394,1,0,0,0,7284,7285,5,138,0,0,7285,7286,5,442,0,0,7286, - 7287,3,664,332,0,7287,7288,5,333,0,0,7288,7289,5,323,0,0,7289,7290, - 3,48,24,0,7290,7394,1,0,0,0,7291,7292,5,138,0,0,7292,7294,5,92,0, - 0,7293,7295,3,746,373,0,7294,7293,1,0,0,0,7294,7295,1,0,0,0,7295, - 7296,1,0,0,0,7296,7297,3,1116,558,0,7297,7298,5,333,0,0,7298,7299, - 5,323,0,0,7299,7300,3,48,24,0,7300,7394,1,0,0,0,7301,7302,5,138, - 0,0,7302,7303,5,342,0,0,7303,7304,3,556,278,0,7304,7305,5,333,0, - 0,7305,7306,5,323,0,0,7306,7307,3,48,24,0,7307,7394,1,0,0,0,7308, - 7309,5,138,0,0,7309,7310,5,355,0,0,7310,7311,5,325,0,0,7311,7312, - 5,283,0,0,7312,7313,3,556,278,0,7313,7314,5,333,0,0,7314,7315,5, - 323,0,0,7315,7316,3,48,24,0,7316,7394,1,0,0,0,7317,7318,5,138,0, - 0,7318,7319,5,355,0,0,7319,7320,5,325,0,0,7320,7321,5,185,0,0,7321, - 7322,3,556,278,0,7322,7323,5,333,0,0,7323,7324,5,323,0,0,7324,7325, - 3,48,24,0,7325,7394,1,0,0,0,7326,7327,5,138,0,0,7327,7328,5,355, - 0,0,7328,7329,5,325,0,0,7329,7330,5,353,0,0,7330,7331,3,556,278, - 0,7331,7332,5,333,0,0,7332,7333,5,323,0,0,7333,7334,3,48,24,0,7334, - 7394,1,0,0,0,7335,7336,5,138,0,0,7336,7337,5,355,0,0,7337,7338,5, - 325,0,0,7338,7339,5,163,0,0,7339,7340,3,556,278,0,7340,7341,5,333, - 0,0,7341,7342,5,323,0,0,7342,7343,3,48,24,0,7343,7394,1,0,0,0,7344, - 7345,5,138,0,0,7345,7347,5,328,0,0,7346,7348,3,746,373,0,7347,7346, - 1,0,0,0,7347,7348,1,0,0,0,7348,7349,1,0,0,0,7349,7350,3,1410,705, - 0,7350,7351,5,333,0,0,7351,7352,5,323,0,0,7352,7353,3,48,24,0,7353, - 7394,1,0,0,0,7354,7355,5,138,0,0,7355,7357,5,376,0,0,7356,7358,3, - 746,373,0,7357,7356,1,0,0,0,7357,7358,1,0,0,0,7358,7359,1,0,0,0, - 7359,7360,3,1408,704,0,7360,7361,5,333,0,0,7361,7362,5,323,0,0,7362, - 7363,3,48,24,0,7363,7394,1,0,0,0,7364,7365,5,138,0,0,7365,7366,5, - 259,0,0,7366,7368,5,376,0,0,7367,7369,3,746,373,0,7368,7367,1,0, - 0,0,7368,7369,1,0,0,0,7369,7370,1,0,0,0,7370,7371,3,1408,704,0,7371, - 7372,5,333,0,0,7372,7373,5,323,0,0,7373,7374,3,48,24,0,7374,7394, - 1,0,0,0,7375,7376,5,138,0,0,7376,7377,5,63,0,0,7377,7379,5,92,0, - 0,7378,7380,3,746,373,0,7379,7378,1,0,0,0,7379,7380,1,0,0,0,7380, - 7381,1,0,0,0,7381,7382,3,1116,558,0,7382,7383,5,333,0,0,7383,7384, - 5,323,0,0,7384,7385,3,48,24,0,7385,7394,1,0,0,0,7386,7387,5,138, - 0,0,7387,7388,5,360,0,0,7388,7389,3,556,278,0,7389,7390,5,333,0, - 0,7390,7391,5,323,0,0,7391,7392,3,48,24,0,7392,7394,1,0,0,0,7393, - 7208,1,0,0,0,7393,7215,1,0,0,0,7393,7222,1,0,0,0,7393,7229,1,0,0, - 0,7393,7236,1,0,0,0,7393,7243,1,0,0,0,7393,7250,1,0,0,0,7393,7257, - 1,0,0,0,7393,7267,1,0,0,0,7393,7277,1,0,0,0,7393,7284,1,0,0,0,7393, - 7291,1,0,0,0,7393,7301,1,0,0,0,7393,7308,1,0,0,0,7393,7317,1,0,0, - 0,7393,7326,1,0,0,0,7393,7335,1,0,0,0,7393,7344,1,0,0,0,7393,7354, - 1,0,0,0,7393,7364,1,0,0,0,7393,7375,1,0,0,0,7393,7386,1,0,0,0,7394, - 773,1,0,0,0,7395,7396,5,138,0,0,7396,7397,5,278,0,0,7397,7398,3, - 734,367,0,7398,7399,5,333,0,0,7399,7400,5,2,0,0,7400,7401,3,776, - 388,0,7401,7402,5,3,0,0,7402,775,1,0,0,0,7403,7408,3,778,389,0,7404, - 7405,5,6,0,0,7405,7407,3,778,389,0,7406,7404,1,0,0,0,7407,7410,1, - 0,0,0,7408,7406,1,0,0,0,7408,7409,1,0,0,0,7409,777,1,0,0,0,7410, - 7408,1,0,0,0,7411,7412,3,1488,744,0,7412,7413,5,10,0,0,7413,7414, - 5,407,0,0,7414,7420,1,0,0,0,7415,7416,3,1488,744,0,7416,7417,5,10, - 0,0,7417,7418,3,780,390,0,7418,7420,1,0,0,0,7419,7411,1,0,0,0,7419, - 7415,1,0,0,0,7420,779,1,0,0,0,7421,7427,3,686,343,0,7422,7427,3, - 1500,750,0,7423,7427,3,1322,661,0,7424,7427,3,320,160,0,7425,7427, - 3,1456,728,0,7426,7421,1,0,0,0,7426,7422,1,0,0,0,7426,7423,1,0,0, - 0,7426,7424,1,0,0,0,7426,7425,1,0,0,0,7427,781,1,0,0,0,7428,7429, - 5,138,0,0,7429,7430,5,360,0,0,7430,7431,3,556,278,0,7431,7432,5, - 333,0,0,7432,7433,5,2,0,0,7433,7434,3,776,388,0,7434,7435,5,3,0, - 0,7435,783,1,0,0,0,7436,7437,5,138,0,0,7437,7438,5,136,0,0,7438, - 7439,3,696,348,0,7439,7440,5,282,0,0,7440,7441,5,94,0,0,7441,7442, - 3,1468,734,0,7442,7622,1,0,0,0,7443,7444,5,138,0,0,7444,7445,5,108, - 0,0,7445,7446,3,556,278,0,7446,7447,5,282,0,0,7447,7448,5,94,0,0, - 7448,7449,3,1468,734,0,7449,7622,1,0,0,0,7450,7451,5,138,0,0,7451, - 7452,5,168,0,0,7452,7453,3,556,278,0,7453,7454,5,282,0,0,7454,7455, - 5,94,0,0,7455,7456,3,1468,734,0,7456,7622,1,0,0,0,7457,7458,5,138, - 0,0,7458,7459,5,175,0,0,7459,7460,3,1418,709,0,7460,7461,5,282,0, - 0,7461,7462,5,94,0,0,7462,7463,3,1468,734,0,7463,7622,1,0,0,0,7464, - 7465,5,138,0,0,7465,7466,5,189,0,0,7466,7467,3,556,278,0,7467,7468, - 5,282,0,0,7468,7469,5,94,0,0,7469,7470,3,1468,734,0,7470,7622,1, - 0,0,0,7471,7472,5,138,0,0,7472,7473,5,211,0,0,7473,7474,3,672,336, - 0,7474,7475,5,282,0,0,7475,7476,5,94,0,0,7476,7477,3,1468,734,0, - 7477,7622,1,0,0,0,7478,7480,5,138,0,0,7479,7481,3,336,168,0,7480, - 7479,1,0,0,0,7480,7481,1,0,0,0,7481,7482,1,0,0,0,7482,7483,5,247, - 0,0,7483,7484,3,1434,717,0,7484,7485,5,282,0,0,7485,7486,5,94,0, - 0,7486,7487,3,1468,734,0,7487,7622,1,0,0,0,7488,7489,5,138,0,0,7489, - 7490,5,248,0,0,7490,7491,5,274,0,0,7491,7492,3,320,160,0,7492,7493, - 5,282,0,0,7493,7494,5,94,0,0,7494,7495,3,1468,734,0,7495,7622,1, - 0,0,0,7496,7497,5,138,0,0,7497,7498,5,278,0,0,7498,7499,3,734,367, - 0,7499,7500,5,282,0,0,7500,7501,5,94,0,0,7501,7502,3,1468,734,0, - 7502,7622,1,0,0,0,7503,7504,5,138,0,0,7504,7505,5,278,0,0,7505,7506, - 5,156,0,0,7506,7507,3,556,278,0,7507,7508,5,100,0,0,7508,7509,3, - 1434,717,0,7509,7510,5,282,0,0,7510,7511,5,94,0,0,7511,7512,3,1468, - 734,0,7512,7622,1,0,0,0,7513,7514,5,138,0,0,7514,7515,5,278,0,0, - 7515,7516,5,206,0,0,7516,7517,3,556,278,0,7517,7518,5,100,0,0,7518, - 7519,3,1434,717,0,7519,7520,5,282,0,0,7520,7521,5,94,0,0,7521,7522, - 3,1468,734,0,7522,7622,1,0,0,0,7523,7524,5,138,0,0,7524,7525,5,296, - 0,0,7525,7526,3,668,334,0,7526,7527,5,282,0,0,7527,7528,5,94,0,0, - 7528,7529,3,1468,734,0,7529,7622,1,0,0,0,7530,7531,5,138,0,0,7531, - 7532,5,442,0,0,7532,7533,3,664,332,0,7533,7534,5,282,0,0,7534,7535, - 5,94,0,0,7535,7536,3,1468,734,0,7536,7622,1,0,0,0,7537,7538,5,138, - 0,0,7538,7539,5,323,0,0,7539,7540,3,1420,710,0,7540,7541,5,282,0, - 0,7541,7542,5,94,0,0,7542,7543,3,1468,734,0,7543,7622,1,0,0,0,7544, - 7545,5,138,0,0,7545,7546,5,360,0,0,7546,7547,3,556,278,0,7547,7548, - 5,282,0,0,7548,7549,5,94,0,0,7549,7550,3,1468,734,0,7550,7622,1, - 0,0,0,7551,7552,5,138,0,0,7552,7553,5,351,0,0,7553,7554,3,1400,700, - 0,7554,7555,5,282,0,0,7555,7556,5,94,0,0,7556,7557,3,1468,734,0, - 7557,7622,1,0,0,0,7558,7559,5,138,0,0,7559,7560,5,342,0,0,7560,7561, - 3,556,278,0,7561,7562,5,282,0,0,7562,7563,5,94,0,0,7563,7564,3,1468, - 734,0,7564,7622,1,0,0,0,7565,7566,5,138,0,0,7566,7567,5,355,0,0, - 7567,7568,5,325,0,0,7568,7569,5,185,0,0,7569,7570,3,556,278,0,7570, - 7571,5,282,0,0,7571,7572,5,94,0,0,7572,7573,3,1468,734,0,7573,7622, - 1,0,0,0,7574,7575,5,138,0,0,7575,7576,5,355,0,0,7576,7577,5,325, - 0,0,7577,7578,5,163,0,0,7578,7579,3,556,278,0,7579,7580,5,282,0, - 0,7580,7581,5,94,0,0,7581,7582,3,1468,734,0,7582,7622,1,0,0,0,7583, - 7584,5,138,0,0,7584,7585,5,63,0,0,7585,7586,5,174,0,0,7586,7587, - 5,381,0,0,7587,7588,3,1434,717,0,7588,7589,5,282,0,0,7589,7590,5, - 94,0,0,7590,7591,3,1468,734,0,7591,7622,1,0,0,0,7592,7593,5,138, - 0,0,7593,7594,5,331,0,0,7594,7595,3,1434,717,0,7595,7596,5,282,0, - 0,7596,7597,5,94,0,0,7597,7598,3,1468,734,0,7598,7622,1,0,0,0,7599, - 7600,5,138,0,0,7600,7601,5,198,0,0,7601,7602,5,357,0,0,7602,7603, - 3,1434,717,0,7603,7604,5,282,0,0,7604,7605,5,94,0,0,7605,7606,3, - 1468,734,0,7606,7622,1,0,0,0,7607,7608,5,138,0,0,7608,7609,5,452, - 0,0,7609,7610,3,1434,717,0,7610,7611,5,282,0,0,7611,7612,5,94,0, - 0,7612,7613,3,1468,734,0,7613,7622,1,0,0,0,7614,7615,5,138,0,0,7615, - 7616,5,451,0,0,7616,7617,3,1434,717,0,7617,7618,5,282,0,0,7618,7619, - 5,94,0,0,7619,7620,3,1468,734,0,7620,7622,1,0,0,0,7621,7436,1,0, - 0,0,7621,7443,1,0,0,0,7621,7450,1,0,0,0,7621,7457,1,0,0,0,7621,7464, - 1,0,0,0,7621,7471,1,0,0,0,7621,7478,1,0,0,0,7621,7488,1,0,0,0,7621, - 7496,1,0,0,0,7621,7503,1,0,0,0,7621,7513,1,0,0,0,7621,7523,1,0,0, - 0,7621,7530,1,0,0,0,7621,7537,1,0,0,0,7621,7544,1,0,0,0,7621,7551, - 1,0,0,0,7621,7558,1,0,0,0,7621,7565,1,0,0,0,7621,7574,1,0,0,0,7621, - 7583,1,0,0,0,7621,7592,1,0,0,0,7621,7599,1,0,0,0,7621,7607,1,0,0, - 0,7621,7614,1,0,0,0,7622,785,1,0,0,0,7623,7624,5,46,0,0,7624,7625, - 5,452,0,0,7625,7627,3,1434,717,0,7626,7628,3,788,394,0,7627,7626, - 1,0,0,0,7627,7628,1,0,0,0,7628,7630,1,0,0,0,7629,7631,3,708,354, - 0,7630,7629,1,0,0,0,7630,7631,1,0,0,0,7631,787,1,0,0,0,7632,7633, - 3,790,395,0,7633,789,1,0,0,0,7634,7635,5,62,0,0,7635,7636,5,92,0, - 0,7636,7641,3,1122,561,0,7637,7638,5,62,0,0,7638,7639,5,30,0,0,7639, - 7641,5,350,0,0,7640,7634,1,0,0,0,7640,7637,1,0,0,0,7641,791,1,0, - 0,0,7642,7643,5,138,0,0,7643,7644,5,452,0,0,7644,7645,3,1434,717, - 0,7645,7646,5,333,0,0,7646,7647,3,494,247,0,7647,7681,1,0,0,0,7648, - 7649,5,138,0,0,7649,7650,5,452,0,0,7650,7651,3,1434,717,0,7651,7652, - 5,133,0,0,7652,7653,3,1124,562,0,7653,7681,1,0,0,0,7654,7655,5,138, - 0,0,7655,7656,5,452,0,0,7656,7657,3,1434,717,0,7657,7658,5,333,0, - 0,7658,7659,3,1124,562,0,7659,7681,1,0,0,0,7660,7661,5,138,0,0,7661, - 7662,5,452,0,0,7662,7663,3,1434,717,0,7663,7664,5,191,0,0,7664,7665, - 3,1124,562,0,7665,7681,1,0,0,0,7666,7667,5,138,0,0,7667,7668,5,452, - 0,0,7668,7669,3,1434,717,0,7669,7670,5,282,0,0,7670,7671,5,94,0, - 0,7671,7672,3,1468,734,0,7672,7681,1,0,0,0,7673,7674,5,138,0,0,7674, - 7675,5,452,0,0,7675,7676,3,1434,717,0,7676,7677,5,309,0,0,7677,7678, - 5,94,0,0,7678,7679,3,1434,717,0,7679,7681,1,0,0,0,7680,7642,1,0, - 0,0,7680,7648,1,0,0,0,7680,7654,1,0,0,0,7680,7660,1,0,0,0,7680,7666, - 1,0,0,0,7680,7673,1,0,0,0,7681,793,1,0,0,0,7682,7683,5,46,0,0,7683, - 7684,5,451,0,0,7684,7685,3,1434,717,0,7685,7686,5,164,0,0,7686,7687, - 3,1456,728,0,7687,7688,5,452,0,0,7688,7690,3,796,398,0,7689,7691, - 3,708,354,0,7690,7689,1,0,0,0,7690,7691,1,0,0,0,7691,795,1,0,0,0, - 7692,7697,3,798,399,0,7693,7694,5,6,0,0,7694,7696,3,798,399,0,7695, - 7693,1,0,0,0,7696,7699,1,0,0,0,7697,7695,1,0,0,0,7697,7698,1,0,0, - 0,7698,797,1,0,0,0,7699,7697,1,0,0,0,7700,7701,3,1488,744,0,7701, - 799,1,0,0,0,7702,7703,5,138,0,0,7703,7704,5,451,0,0,7704,7705,3, - 1434,717,0,7705,7706,5,333,0,0,7706,7707,3,494,247,0,7707,7781,1, - 0,0,0,7708,7709,5,138,0,0,7709,7710,5,451,0,0,7710,7711,3,1434,717, - 0,7711,7712,5,164,0,0,7712,7713,3,1456,728,0,7713,7781,1,0,0,0,7714, - 7715,5,138,0,0,7715,7716,5,451,0,0,7716,7717,3,1434,717,0,7717,7718, - 5,305,0,0,7718,7720,5,452,0,0,7719,7721,3,708,354,0,7720,7719,1, - 0,0,0,7720,7721,1,0,0,0,7721,7781,1,0,0,0,7722,7723,5,138,0,0,7723, - 7724,5,451,0,0,7724,7725,3,1434,717,0,7725,7726,5,333,0,0,7726,7727, - 5,452,0,0,7727,7729,3,796,398,0,7728,7730,3,708,354,0,7729,7728, - 1,0,0,0,7729,7730,1,0,0,0,7730,7781,1,0,0,0,7731,7732,5,138,0,0, - 7732,7733,5,451,0,0,7733,7734,3,1434,717,0,7734,7735,5,133,0,0,7735, - 7736,5,452,0,0,7736,7738,3,796,398,0,7737,7739,3,708,354,0,7738, - 7737,1,0,0,0,7738,7739,1,0,0,0,7739,7781,1,0,0,0,7740,7741,5,138, - 0,0,7741,7742,5,451,0,0,7742,7743,3,1434,717,0,7743,7744,5,191,0, - 0,7744,7745,5,452,0,0,7745,7747,3,796,398,0,7746,7748,3,708,354, - 0,7747,7746,1,0,0,0,7747,7748,1,0,0,0,7748,7781,1,0,0,0,7749,7750, - 5,138,0,0,7750,7751,5,451,0,0,7751,7752,3,1434,717,0,7752,7753,5, - 193,0,0,7753,7781,1,0,0,0,7754,7755,5,138,0,0,7755,7756,5,451,0, - 0,7756,7757,3,1434,717,0,7757,7758,5,186,0,0,7758,7781,1,0,0,0,7759, - 7760,5,138,0,0,7760,7761,5,451,0,0,7761,7762,3,1434,717,0,7762,7763, - 5,333,0,0,7763,7764,3,494,247,0,7764,7781,1,0,0,0,7765,7766,5,138, - 0,0,7766,7767,5,451,0,0,7767,7768,3,1434,717,0,7768,7769,5,465,0, - 0,7769,7770,5,2,0,0,7770,7771,3,506,253,0,7771,7772,5,3,0,0,7772, - 7781,1,0,0,0,7773,7774,5,138,0,0,7774,7775,5,451,0,0,7775,7776,3, - 1434,717,0,7776,7777,5,282,0,0,7777,7778,5,94,0,0,7778,7779,3,1468, - 734,0,7779,7781,1,0,0,0,7780,7702,1,0,0,0,7780,7708,1,0,0,0,7780, - 7714,1,0,0,0,7780,7722,1,0,0,0,7780,7731,1,0,0,0,7780,7740,1,0,0, - 0,7780,7749,1,0,0,0,7780,7754,1,0,0,0,7780,7759,1,0,0,0,7780,7765, - 1,0,0,0,7780,7773,1,0,0,0,7781,801,1,0,0,0,7782,7784,5,46,0,0,7783, - 7785,3,656,328,0,7784,7783,1,0,0,0,7784,7785,1,0,0,0,7785,7786,1, - 0,0,0,7786,7787,5,321,0,0,7787,7788,3,1434,717,0,7788,7789,5,36, - 0,0,7789,7790,5,80,0,0,7790,7791,3,812,406,0,7791,7792,5,94,0,0, - 7792,7794,3,1410,705,0,7793,7795,3,1142,571,0,7794,7793,1,0,0,0, - 7794,7795,1,0,0,0,7795,7796,1,0,0,0,7796,7798,5,57,0,0,7797,7799, - 3,814,407,0,7798,7797,1,0,0,0,7798,7799,1,0,0,0,7799,7800,1,0,0, - 0,7800,7801,3,804,402,0,7801,803,1,0,0,0,7802,7809,5,270,0,0,7803, - 7809,3,808,404,0,7804,7805,5,2,0,0,7805,7806,3,806,403,0,7806,7807, - 5,3,0,0,7807,7809,1,0,0,0,7808,7802,1,0,0,0,7808,7803,1,0,0,0,7808, - 7804,1,0,0,0,7809,805,1,0,0,0,7810,7812,3,810,405,0,7811,7810,1, - 0,0,0,7811,7812,1,0,0,0,7812,7819,1,0,0,0,7813,7815,5,7,0,0,7814, - 7816,3,810,405,0,7815,7814,1,0,0,0,7815,7816,1,0,0,0,7816,7818,1, - 0,0,0,7817,7813,1,0,0,0,7818,7821,1,0,0,0,7819,7817,1,0,0,0,7819, - 7820,1,0,0,0,7820,807,1,0,0,0,7821,7819,1,0,0,0,7822,7828,3,998, - 499,0,7823,7828,3,948,474,0,7824,7828,3,980,490,0,7825,7828,3,966, - 483,0,7826,7828,3,816,408,0,7827,7822,1,0,0,0,7827,7823,1,0,0,0, - 7827,7824,1,0,0,0,7827,7825,1,0,0,0,7827,7826,1,0,0,0,7828,809,1, - 0,0,0,7829,7830,3,808,404,0,7830,811,1,0,0,0,7831,7832,7,47,0,0, - 7832,813,1,0,0,0,7833,7834,7,48,0,0,7834,815,1,0,0,0,7835,7836,5, - 271,0,0,7836,7838,3,1472,736,0,7837,7839,3,818,409,0,7838,7837,1, - 0,0,0,7838,7839,1,0,0,0,7839,817,1,0,0,0,7840,7841,5,6,0,0,7841, - 7842,3,1456,728,0,7842,819,1,0,0,0,7843,7844,5,252,0,0,7844,7845, - 3,1472,736,0,7845,821,1,0,0,0,7846,7847,5,366,0,0,7847,7851,3,1472, - 736,0,7848,7849,5,366,0,0,7849,7851,5,9,0,0,7850,7846,1,0,0,0,7850, - 7848,1,0,0,0,7851,823,1,0,0,0,7852,7854,5,129,0,0,7853,7855,3,826, - 413,0,7854,7853,1,0,0,0,7854,7855,1,0,0,0,7855,7857,1,0,0,0,7856, - 7858,3,834,417,0,7857,7856,1,0,0,0,7857,7858,1,0,0,0,7858,7918,1, - 0,0,0,7859,7861,5,146,0,0,7860,7862,3,826,413,0,7861,7860,1,0,0, - 0,7861,7862,1,0,0,0,7862,7864,1,0,0,0,7863,7865,3,832,416,0,7864, - 7863,1,0,0,0,7864,7865,1,0,0,0,7865,7918,1,0,0,0,7866,7867,5,340, - 0,0,7867,7869,5,356,0,0,7868,7870,3,832,416,0,7869,7868,1,0,0,0, - 7869,7870,1,0,0,0,7870,7918,1,0,0,0,7871,7873,5,454,0,0,7872,7874, - 3,826,413,0,7873,7872,1,0,0,0,7873,7874,1,0,0,0,7874,7876,1,0,0, - 0,7875,7877,3,834,417,0,7876,7875,1,0,0,0,7876,7877,1,0,0,0,7877, - 7918,1,0,0,0,7878,7879,5,322,0,0,7879,7918,3,1472,736,0,7880,7882, - 5,308,0,0,7881,7883,5,322,0,0,7882,7881,1,0,0,0,7882,7883,1,0,0, - 0,7883,7884,1,0,0,0,7884,7918,3,1472,736,0,7885,7886,5,290,0,0,7886, - 7887,5,356,0,0,7887,7918,3,1456,728,0,7888,7889,5,161,0,0,7889,7890, - 5,291,0,0,7890,7918,3,1456,728,0,7891,7893,5,161,0,0,7892,7894,3, - 826,413,0,7893,7892,1,0,0,0,7893,7894,1,0,0,0,7894,7896,1,0,0,0, - 7895,7897,3,834,417,0,7896,7895,1,0,0,0,7896,7897,1,0,0,0,7897,7918, - 1,0,0,0,7898,7899,5,319,0,0,7899,7900,5,291,0,0,7900,7918,3,1456, - 728,0,7901,7903,5,319,0,0,7902,7904,3,826,413,0,7903,7902,1,0,0, - 0,7903,7904,1,0,0,0,7904,7905,1,0,0,0,7905,7907,5,94,0,0,7906,7908, - 5,322,0,0,7907,7906,1,0,0,0,7907,7908,1,0,0,0,7908,7909,1,0,0,0, - 7909,7918,3,1472,736,0,7910,7912,5,319,0,0,7911,7913,3,826,413,0, - 7912,7911,1,0,0,0,7912,7913,1,0,0,0,7913,7915,1,0,0,0,7914,7916, - 3,834,417,0,7915,7914,1,0,0,0,7915,7916,1,0,0,0,7916,7918,1,0,0, - 0,7917,7852,1,0,0,0,7917,7859,1,0,0,0,7917,7866,1,0,0,0,7917,7871, - 1,0,0,0,7917,7878,1,0,0,0,7917,7880,1,0,0,0,7917,7885,1,0,0,0,7917, - 7888,1,0,0,0,7917,7891,1,0,0,0,7917,7898,1,0,0,0,7917,7901,1,0,0, - 0,7917,7910,1,0,0,0,7918,825,1,0,0,0,7919,7920,7,49,0,0,7920,827, - 1,0,0,0,7921,7922,5,244,0,0,7922,7923,5,251,0,0,7923,7932,3,68,34, - 0,7924,7925,5,300,0,0,7925,7932,5,81,0,0,7926,7927,5,300,0,0,7927, - 7932,5,382,0,0,7928,7932,5,54,0,0,7929,7930,5,77,0,0,7930,7932,5, - 54,0,0,7931,7921,1,0,0,0,7931,7924,1,0,0,0,7931,7926,1,0,0,0,7931, - 7928,1,0,0,0,7931,7929,1,0,0,0,7932,829,1,0,0,0,7933,7940,3,828, - 414,0,7934,7936,5,6,0,0,7935,7934,1,0,0,0,7935,7936,1,0,0,0,7936, - 7937,1,0,0,0,7937,7939,3,828,414,0,7938,7935,1,0,0,0,7939,7942,1, - 0,0,0,7940,7938,1,0,0,0,7940,7941,1,0,0,0,7941,831,1,0,0,0,7942, - 7940,1,0,0,0,7943,7944,3,830,415,0,7944,833,1,0,0,0,7945,7947,5, - 33,0,0,7946,7948,5,269,0,0,7947,7946,1,0,0,0,7947,7948,1,0,0,0,7948, - 7949,1,0,0,0,7949,7950,5,153,0,0,7950,835,1,0,0,0,7951,7954,5,46, - 0,0,7952,7953,5,82,0,0,7953,7955,5,311,0,0,7954,7952,1,0,0,0,7954, - 7955,1,0,0,0,7955,7957,1,0,0,0,7956,7958,3,190,95,0,7957,7956,1, - 0,0,0,7957,7958,1,0,0,0,7958,7976,1,0,0,0,7959,7960,5,376,0,0,7960, - 7962,3,1406,703,0,7961,7963,3,242,121,0,7962,7961,1,0,0,0,7962,7963, - 1,0,0,0,7963,7965,1,0,0,0,7964,7966,3,134,67,0,7965,7964,1,0,0,0, - 7965,7966,1,0,0,0,7966,7977,1,0,0,0,7967,7968,5,303,0,0,7968,7969, - 5,376,0,0,7969,7970,3,1406,703,0,7970,7971,5,2,0,0,7971,7972,3,244, - 122,0,7972,7974,5,3,0,0,7973,7975,3,134,67,0,7974,7973,1,0,0,0,7974, - 7975,1,0,0,0,7975,7977,1,0,0,0,7976,7959,1,0,0,0,7976,7967,1,0,0, - 0,7977,7978,1,0,0,0,7978,7979,5,36,0,0,7979,7981,3,998,499,0,7980, - 7982,3,838,419,0,7981,7980,1,0,0,0,7981,7982,1,0,0,0,7982,837,1, - 0,0,0,7983,7985,5,105,0,0,7984,7986,7,50,0,0,7985,7984,1,0,0,0,7985, - 7986,1,0,0,0,7986,7987,1,0,0,0,7987,7988,5,42,0,0,7988,7989,5,279, - 0,0,7989,839,1,0,0,0,7990,7991,5,253,0,0,7991,7992,3,1438,719,0, - 7992,841,1,0,0,0,7993,7994,5,46,0,0,7994,7995,5,175,0,0,7995,7997, - 3,1416,708,0,7996,7998,3,14,7,0,7997,7996,1,0,0,0,7997,7998,1,0, - 0,0,7998,8000,1,0,0,0,7999,8001,3,844,422,0,8000,7999,1,0,0,0,8000, - 8001,1,0,0,0,8001,843,1,0,0,0,8002,8003,3,846,423,0,8003,845,1,0, - 0,0,8004,8006,3,848,424,0,8005,8004,1,0,0,0,8006,8007,1,0,0,0,8007, - 8005,1,0,0,0,8007,8008,1,0,0,0,8008,847,1,0,0,0,8009,8011,3,850, - 425,0,8010,8012,3,852,426,0,8011,8010,1,0,0,0,8011,8012,1,0,0,0, - 8012,8016,1,0,0,0,8013,8017,3,1462,731,0,8014,8017,3,72,36,0,8015, - 8017,5,53,0,0,8016,8013,1,0,0,0,8016,8014,1,0,0,0,8016,8015,1,0, - 0,0,8017,849,1,0,0,0,8018,8019,5,164,0,0,8019,8027,5,74,0,0,8020, - 8027,5,194,0,0,8021,8027,5,255,0,0,8022,8027,5,282,0,0,8023,8027, - 5,351,0,0,8024,8027,5,353,0,0,8025,8027,3,1490,745,0,8026,8018,1, - 0,0,0,8026,8020,1,0,0,0,8026,8021,1,0,0,0,8026,8022,1,0,0,0,8026, - 8023,1,0,0,0,8026,8024,1,0,0,0,8026,8025,1,0,0,0,8027,851,1,0,0, - 0,8028,8029,5,10,0,0,8029,853,1,0,0,0,8030,8031,5,138,0,0,8031,8032, - 5,175,0,0,8032,8044,3,1418,709,0,8033,8034,5,333,0,0,8034,8035,5, - 351,0,0,8035,8037,3,1398,699,0,8036,8033,1,0,0,0,8036,8037,1,0,0, - 0,8037,8045,1,0,0,0,8038,8040,5,105,0,0,8039,8038,1,0,0,0,8039,8040, - 1,0,0,0,8040,8041,1,0,0,0,8041,8043,3,844,422,0,8042,8039,1,0,0, - 0,8042,8043,1,0,0,0,8043,8045,1,0,0,0,8044,8036,1,0,0,0,8044,8042, - 1,0,0,0,8045,855,1,0,0,0,8046,8047,5,138,0,0,8047,8048,5,175,0,0, - 8048,8050,3,1418,709,0,8049,8051,3,88,44,0,8050,8049,1,0,0,0,8050, - 8051,1,0,0,0,8051,857,1,0,0,0,8052,8057,3,860,430,0,8053,8054,5, - 6,0,0,8054,8056,3,860,430,0,8055,8053,1,0,0,0,8056,8059,1,0,0,0, - 8057,8055,1,0,0,0,8057,8058,1,0,0,0,8058,859,1,0,0,0,8059,8057,1, - 0,0,0,8060,8061,5,209,0,0,8061,861,1,0,0,0,8062,8063,5,138,0,0,8063, - 8064,5,108,0,0,8064,8065,3,556,278,0,8065,8066,5,305,0,0,8066,8067, - 5,375,0,0,8067,863,1,0,0,0,8068,8069,5,138,0,0,8069,8070,5,349,0, - 0,8070,8071,7,22,0,0,8071,8072,3,58,29,0,8072,865,1,0,0,0,8073,8074, - 5,46,0,0,8074,8075,5,189,0,0,8075,8077,3,556,278,0,8076,8078,3,870, - 435,0,8077,8076,1,0,0,0,8077,8078,1,0,0,0,8078,8079,1,0,0,0,8079, - 8080,3,1166,583,0,8080,8081,3,216,108,0,8081,867,1,0,0,0,8082,8083, - 5,138,0,0,8083,8084,5,189,0,0,8084,8106,3,556,278,0,8085,8107,3, - 122,61,0,8086,8087,5,191,0,0,8087,8088,5,77,0,0,8088,8107,5,78,0, - 0,8089,8090,5,333,0,0,8090,8091,5,77,0,0,8091,8107,5,78,0,0,8092, - 8093,5,133,0,0,8093,8107,3,236,118,0,8094,8095,5,191,0,0,8095,8097, - 5,45,0,0,8096,8098,3,746,373,0,8097,8096,1,0,0,0,8097,8098,1,0,0, - 0,8098,8099,1,0,0,0,8099,8101,3,1434,717,0,8100,8102,3,124,62,0, - 8101,8100,1,0,0,0,8101,8102,1,0,0,0,8102,8107,1,0,0,0,8103,8104, - 5,372,0,0,8104,8105,5,45,0,0,8105,8107,3,1434,717,0,8106,8085,1, - 0,0,0,8106,8086,1,0,0,0,8106,8089,1,0,0,0,8106,8092,1,0,0,0,8106, - 8094,1,0,0,0,8106,8103,1,0,0,0,8107,869,1,0,0,0,8108,8109,5,36,0, - 0,8109,871,1,0,0,0,8110,8111,5,138,0,0,8111,8112,5,355,0,0,8112, - 8113,5,325,0,0,8113,8114,5,185,0,0,8114,8115,3,556,278,0,8115,8116, - 3,494,247,0,8116,873,1,0,0,0,8117,8118,5,138,0,0,8118,8119,5,355, - 0,0,8119,8120,5,325,0,0,8120,8121,5,163,0,0,8121,8122,3,556,278, - 0,8122,8123,5,133,0,0,8123,8124,5,257,0,0,8124,8125,5,62,0,0,8125, - 8126,3,1414,707,0,8126,8127,3,876,438,0,8127,8128,3,550,275,0,8128, - 8181,1,0,0,0,8129,8130,5,138,0,0,8130,8131,5,355,0,0,8131,8132,5, - 325,0,0,8132,8133,5,163,0,0,8133,8134,3,556,278,0,8134,8135,5,138, - 0,0,8135,8136,5,257,0,0,8136,8137,5,62,0,0,8137,8138,3,1414,707, - 0,8138,8139,3,876,438,0,8139,8140,3,550,275,0,8140,8181,1,0,0,0, - 8141,8142,5,138,0,0,8142,8143,5,355,0,0,8143,8144,5,325,0,0,8144, - 8145,5,163,0,0,8145,8146,3,556,278,0,8146,8147,5,138,0,0,8147,8148, - 5,257,0,0,8148,8149,5,311,0,0,8149,8150,3,556,278,0,8150,8151,3, - 876,438,0,8151,8152,3,556,278,0,8152,8181,1,0,0,0,8153,8154,5,138, - 0,0,8154,8155,5,355,0,0,8155,8156,5,325,0,0,8156,8157,5,163,0,0, - 8157,8158,3,556,278,0,8158,8159,5,138,0,0,8159,8160,5,257,0,0,8160, - 8161,5,62,0,0,8161,8162,3,1414,707,0,8162,8163,5,311,0,0,8163,8164, - 3,556,278,0,8164,8165,3,876,438,0,8165,8166,3,556,278,0,8166,8181, - 1,0,0,0,8167,8168,5,138,0,0,8168,8169,5,355,0,0,8169,8170,5,325, - 0,0,8170,8171,5,163,0,0,8171,8172,3,556,278,0,8172,8173,5,191,0, - 0,8173,8175,5,257,0,0,8174,8176,3,746,373,0,8175,8174,1,0,0,0,8175, - 8176,1,0,0,0,8176,8177,1,0,0,0,8177,8178,5,62,0,0,8178,8179,3,1414, - 707,0,8179,8181,1,0,0,0,8180,8117,1,0,0,0,8180,8129,1,0,0,0,8180, - 8141,1,0,0,0,8180,8153,1,0,0,0,8180,8167,1,0,0,0,8181,875,1,0,0, - 0,8182,8183,5,105,0,0,8183,877,1,0,0,0,8184,8186,5,46,0,0,8185,8187, - 3,522,261,0,8186,8185,1,0,0,0,8186,8187,1,0,0,0,8187,8188,1,0,0, - 0,8188,8189,5,168,0,0,8189,8190,3,556,278,0,8190,8191,5,62,0,0,8191, - 8192,3,1456,728,0,8192,8193,5,94,0,0,8193,8194,3,1456,728,0,8194, - 8195,5,64,0,0,8195,8196,3,556,278,0,8196,879,1,0,0,0,8197,8199,5, - 158,0,0,8198,8200,3,906,453,0,8199,8198,1,0,0,0,8199,8200,1,0,0, - 0,8200,8201,1,0,0,0,8201,8203,3,1404,702,0,8202,8204,3,884,442,0, - 8203,8202,1,0,0,0,8203,8204,1,0,0,0,8204,8216,1,0,0,0,8205,8207, - 5,158,0,0,8206,8208,3,906,453,0,8207,8206,1,0,0,0,8207,8208,1,0, - 0,0,8208,8216,1,0,0,0,8209,8210,5,158,0,0,8210,8211,3,882,441,0, - 8211,8213,3,1404,702,0,8212,8214,3,884,442,0,8213,8212,1,0,0,0,8213, - 8214,1,0,0,0,8214,8216,1,0,0,0,8215,8197,1,0,0,0,8215,8205,1,0,0, - 0,8215,8209,1,0,0,0,8216,881,1,0,0,0,8217,8218,5,2,0,0,8218,8223, - 3,906,453,0,8219,8220,5,6,0,0,8220,8222,3,906,453,0,8221,8219,1, - 0,0,0,8222,8225,1,0,0,0,8223,8221,1,0,0,0,8223,8224,1,0,0,0,8224, - 8226,1,0,0,0,8225,8223,1,0,0,0,8226,8227,5,3,0,0,8227,883,1,0,0, - 0,8228,8229,5,100,0,0,8229,8230,3,1434,717,0,8230,885,1,0,0,0,8231, - 8233,5,370,0,0,8232,8234,3,912,456,0,8233,8232,1,0,0,0,8233,8234, - 1,0,0,0,8234,8236,1,0,0,0,8235,8237,3,914,457,0,8236,8235,1,0,0, - 0,8236,8237,1,0,0,0,8237,8239,1,0,0,0,8238,8240,3,906,453,0,8239, - 8238,1,0,0,0,8239,8240,1,0,0,0,8240,8242,1,0,0,0,8241,8243,3,900, - 450,0,8242,8241,1,0,0,0,8242,8243,1,0,0,0,8243,8245,1,0,0,0,8244, - 8246,3,922,461,0,8245,8244,1,0,0,0,8245,8246,1,0,0,0,8246,8258,1, - 0,0,0,8247,8252,5,370,0,0,8248,8249,5,2,0,0,8249,8250,3,890,445, - 0,8250,8251,5,3,0,0,8251,8253,1,0,0,0,8252,8248,1,0,0,0,8252,8253, - 1,0,0,0,8253,8255,1,0,0,0,8254,8256,3,922,461,0,8255,8254,1,0,0, - 0,8255,8256,1,0,0,0,8256,8258,1,0,0,0,8257,8231,1,0,0,0,8257,8247, - 1,0,0,0,8258,887,1,0,0,0,8259,8261,3,892,446,0,8260,8262,3,906,453, - 0,8261,8260,1,0,0,0,8261,8262,1,0,0,0,8262,8264,1,0,0,0,8263,8265, - 3,922,461,0,8264,8263,1,0,0,0,8264,8265,1,0,0,0,8265,8274,1,0,0, - 0,8266,8267,3,892,446,0,8267,8268,5,2,0,0,8268,8269,3,902,451,0, - 8269,8271,5,3,0,0,8270,8272,3,922,461,0,8271,8270,1,0,0,0,8271,8272, - 1,0,0,0,8272,8274,1,0,0,0,8273,8259,1,0,0,0,8273,8266,1,0,0,0,8274, - 889,1,0,0,0,8275,8280,3,894,447,0,8276,8277,5,6,0,0,8277,8279,3, - 894,447,0,8278,8276,1,0,0,0,8279,8282,1,0,0,0,8280,8278,1,0,0,0, - 8280,8281,1,0,0,0,8281,891,1,0,0,0,8282,8280,1,0,0,0,8283,8284,7, - 51,0,0,8284,893,1,0,0,0,8285,8287,3,896,448,0,8286,8288,3,898,449, - 0,8287,8286,1,0,0,0,8287,8288,1,0,0,0,8288,895,1,0,0,0,8289,8292, - 3,1486,743,0,8290,8292,3,892,446,0,8291,8289,1,0,0,0,8291,8290,1, - 0,0,0,8292,897,1,0,0,0,8293,8296,3,72,36,0,8294,8296,3,320,160,0, - 8295,8293,1,0,0,0,8295,8294,1,0,0,0,8296,899,1,0,0,0,8297,8298,3, - 892,446,0,8298,901,1,0,0,0,8299,8304,3,904,452,0,8300,8301,5,6,0, - 0,8301,8303,3,904,452,0,8302,8300,1,0,0,0,8303,8306,1,0,0,0,8304, - 8302,1,0,0,0,8304,8305,1,0,0,0,8305,903,1,0,0,0,8306,8304,1,0,0, - 0,8307,8311,3,906,453,0,8308,8311,3,908,454,0,8309,8311,3,910,455, - 0,8310,8307,1,0,0,0,8310,8308,1,0,0,0,8310,8309,1,0,0,0,8311,905, - 1,0,0,0,8312,8314,5,128,0,0,8313,8315,7,52,0,0,8314,8313,1,0,0,0, - 8314,8315,1,0,0,0,8315,907,1,0,0,0,8316,8318,5,547,0,0,8317,8319, - 7,52,0,0,8318,8317,1,0,0,0,8318,8319,1,0,0,0,8319,909,1,0,0,0,8320, - 8323,5,548,0,0,8321,8324,3,320,160,0,8322,8324,3,1456,728,0,8323, - 8321,1,0,0,0,8323,8322,1,0,0,0,8324,911,1,0,0,0,8325,8326,5,113, - 0,0,8326,913,1,0,0,0,8327,8328,5,112,0,0,8328,915,1,0,0,0,8329,8330, - 5,2,0,0,8330,8331,3,244,122,0,8331,8332,5,3,0,0,8332,917,1,0,0,0, - 8333,8335,3,1404,702,0,8334,8336,3,916,458,0,8335,8334,1,0,0,0,8335, - 8336,1,0,0,0,8336,919,1,0,0,0,8337,8342,3,918,459,0,8338,8339,5, - 6,0,0,8339,8341,3,918,459,0,8340,8338,1,0,0,0,8341,8344,1,0,0,0, - 8342,8340,1,0,0,0,8342,8343,1,0,0,0,8343,921,1,0,0,0,8344,8342,1, - 0,0,0,8345,8346,3,920,460,0,8346,923,1,0,0,0,8347,8348,5,203,0,0, - 8348,8366,3,926,463,0,8349,8350,5,203,0,0,8350,8352,3,892,446,0, - 8351,8353,3,906,453,0,8352,8351,1,0,0,0,8352,8353,1,0,0,0,8353,8354, - 1,0,0,0,8354,8355,3,926,463,0,8355,8366,1,0,0,0,8356,8357,5,203, - 0,0,8357,8358,5,128,0,0,8358,8366,3,926,463,0,8359,8360,5,203,0, - 0,8360,8361,5,2,0,0,8361,8362,3,928,464,0,8362,8363,5,3,0,0,8363, - 8364,3,926,463,0,8364,8366,1,0,0,0,8365,8347,1,0,0,0,8365,8349,1, - 0,0,0,8365,8356,1,0,0,0,8365,8359,1,0,0,0,8366,925,1,0,0,0,8367, - 8377,3,998,499,0,8368,8377,3,948,474,0,8369,8377,3,980,490,0,8370, - 8377,3,966,483,0,8371,8377,3,990,495,0,8372,8377,3,292,146,0,8373, - 8377,3,298,149,0,8374,8377,3,304,152,0,8375,8377,3,942,471,0,8376, - 8367,1,0,0,0,8376,8368,1,0,0,0,8376,8369,1,0,0,0,8376,8370,1,0,0, - 0,8376,8371,1,0,0,0,8376,8372,1,0,0,0,8376,8373,1,0,0,0,8376,8374, - 1,0,0,0,8376,8375,1,0,0,0,8377,927,1,0,0,0,8378,8383,3,930,465,0, - 8379,8380,5,6,0,0,8380,8382,3,930,465,0,8381,8379,1,0,0,0,8382,8385, - 1,0,0,0,8383,8381,1,0,0,0,8383,8384,1,0,0,0,8384,929,1,0,0,0,8385, - 8383,1,0,0,0,8386,8388,3,932,466,0,8387,8389,3,934,467,0,8388,8387, - 1,0,0,0,8388,8389,1,0,0,0,8389,931,1,0,0,0,8390,8393,3,1486,743, - 0,8391,8393,3,892,446,0,8392,8390,1,0,0,0,8392,8391,1,0,0,0,8393, - 933,1,0,0,0,8394,8397,3,72,36,0,8395,8397,3,320,160,0,8396,8394, - 1,0,0,0,8396,8395,1,0,0,0,8397,935,1,0,0,0,8398,8399,5,290,0,0,8399, - 8401,3,1434,717,0,8400,8402,3,938,469,0,8401,8400,1,0,0,0,8401,8402, - 1,0,0,0,8402,8403,1,0,0,0,8403,8404,5,36,0,0,8404,8405,3,940,470, - 0,8405,937,1,0,0,0,8406,8407,5,2,0,0,8407,8408,3,1340,670,0,8408, - 8409,5,3,0,0,8409,939,1,0,0,0,8410,8415,3,998,499,0,8411,8415,3, - 948,474,0,8412,8415,3,980,490,0,8413,8415,3,966,483,0,8414,8410, - 1,0,0,0,8414,8411,1,0,0,0,8414,8412,1,0,0,0,8414,8413,1,0,0,0,8415, - 941,1,0,0,0,8416,8417,5,202,0,0,8417,8419,3,1434,717,0,8418,8420, - 3,944,472,0,8419,8418,1,0,0,0,8419,8420,1,0,0,0,8420,8440,1,0,0, - 0,8421,8423,5,46,0,0,8422,8424,3,190,95,0,8423,8422,1,0,0,0,8423, - 8424,1,0,0,0,8424,8425,1,0,0,0,8425,8427,5,92,0,0,8426,8428,3,514, - 257,0,8427,8426,1,0,0,0,8427,8428,1,0,0,0,8428,8429,1,0,0,0,8429, - 8430,3,294,147,0,8430,8431,5,36,0,0,8431,8432,5,202,0,0,8432,8434, - 3,1434,717,0,8433,8435,3,944,472,0,8434,8433,1,0,0,0,8434,8435,1, - 0,0,0,8435,8437,1,0,0,0,8436,8438,3,296,148,0,8437,8436,1,0,0,0, - 8437,8438,1,0,0,0,8438,8440,1,0,0,0,8439,8416,1,0,0,0,8439,8421, - 1,0,0,0,8440,943,1,0,0,0,8441,8442,5,2,0,0,8442,8443,3,1326,663, - 0,8443,8444,5,3,0,0,8444,945,1,0,0,0,8445,8447,5,177,0,0,8446,8448, - 5,290,0,0,8447,8446,1,0,0,0,8447,8448,1,0,0,0,8448,8451,1,0,0,0, - 8449,8452,3,1434,717,0,8450,8452,5,30,0,0,8451,8449,1,0,0,0,8451, - 8450,1,0,0,0,8452,947,1,0,0,0,8453,8455,3,1024,512,0,8454,8453,1, - 0,0,0,8454,8455,1,0,0,0,8455,8456,1,0,0,0,8456,8457,5,241,0,0,8457, - 8458,5,71,0,0,8458,8459,3,950,475,0,8459,8461,3,952,476,0,8460,8462, - 3,960,480,0,8461,8460,1,0,0,0,8461,8462,1,0,0,0,8462,8464,1,0,0, - 0,8463,8465,3,964,482,0,8464,8463,1,0,0,0,8464,8465,1,0,0,0,8465, - 949,1,0,0,0,8466,8469,3,1404,702,0,8467,8468,5,36,0,0,8468,8470, - 3,1472,736,0,8469,8467,1,0,0,0,8469,8470,1,0,0,0,8470,951,1,0,0, - 0,8471,8472,5,2,0,0,8472,8473,3,956,478,0,8473,8474,5,3,0,0,8474, - 8476,1,0,0,0,8475,8471,1,0,0,0,8475,8476,1,0,0,0,8476,8481,1,0,0, - 0,8477,8478,5,463,0,0,8478,8479,3,954,477,0,8479,8480,5,450,0,0, - 8480,8482,1,0,0,0,8481,8477,1,0,0,0,8481,8482,1,0,0,0,8482,8485, - 1,0,0,0,8483,8486,3,1692,846,0,8484,8486,3,998,499,0,8485,8483,1, - 0,0,0,8485,8484,1,0,0,0,8486,953,1,0,0,0,8487,8488,7,53,0,0,8488, - 955,1,0,0,0,8489,8494,3,958,479,0,8490,8491,5,6,0,0,8491,8493,3, - 958,479,0,8492,8490,1,0,0,0,8493,8496,1,0,0,0,8494,8492,1,0,0,0, - 8494,8495,1,0,0,0,8495,957,1,0,0,0,8496,8494,1,0,0,0,8497,8498,3, - 1430,715,0,8498,8499,3,1380,690,0,8499,959,1,0,0,0,8500,8501,5,80, - 0,0,8501,8503,5,464,0,0,8502,8504,3,962,481,0,8503,8502,1,0,0,0, - 8503,8504,1,0,0,0,8504,8505,1,0,0,0,8505,8513,5,57,0,0,8506,8507, - 5,369,0,0,8507,8508,5,333,0,0,8508,8510,3,982,491,0,8509,8511,3, - 1142,571,0,8510,8509,1,0,0,0,8510,8511,1,0,0,0,8511,8514,1,0,0,0, - 8512,8514,5,270,0,0,8513,8506,1,0,0,0,8513,8512,1,0,0,0,8514,961, - 1,0,0,0,8515,8516,5,2,0,0,8516,8517,3,634,317,0,8517,8519,5,3,0, - 0,8518,8520,3,1142,571,0,8519,8518,1,0,0,0,8519,8520,1,0,0,0,8520, - 8525,1,0,0,0,8521,8522,5,80,0,0,8522,8523,5,45,0,0,8523,8525,3,1434, - 717,0,8524,8515,1,0,0,0,8524,8521,1,0,0,0,8525,963,1,0,0,0,8526, - 8527,5,87,0,0,8527,8528,3,1384,692,0,8528,965,1,0,0,0,8529,8531, - 3,1024,512,0,8530,8529,1,0,0,0,8530,8531,1,0,0,0,8531,8532,1,0,0, - 0,8532,8533,5,182,0,0,8533,8534,5,64,0,0,8534,8536,3,1126,563,0, - 8535,8537,3,968,484,0,8536,8535,1,0,0,0,8536,8537,1,0,0,0,8537,8539, - 1,0,0,0,8538,8540,3,1144,572,0,8539,8538,1,0,0,0,8539,8540,1,0,0, - 0,8540,8542,1,0,0,0,8541,8543,3,964,482,0,8542,8541,1,0,0,0,8542, - 8543,1,0,0,0,8543,967,1,0,0,0,8544,8545,5,100,0,0,8545,8546,3,1102, - 551,0,8546,969,1,0,0,0,8547,8549,5,256,0,0,8548,8550,3,1032,516, - 0,8549,8548,1,0,0,0,8549,8550,1,0,0,0,8550,8551,1,0,0,0,8551,8553, - 3,1122,561,0,8552,8554,3,972,486,0,8553,8552,1,0,0,0,8553,8554,1, - 0,0,0,8554,8556,1,0,0,0,8555,8557,3,976,488,0,8556,8555,1,0,0,0, - 8556,8557,1,0,0,0,8557,971,1,0,0,0,8558,8559,5,68,0,0,8559,8560, - 3,974,487,0,8560,8561,5,263,0,0,8561,973,1,0,0,0,8562,8563,5,131, - 0,0,8563,8575,7,54,0,0,8564,8565,5,414,0,0,8565,8575,7,54,0,0,8566, - 8571,5,334,0,0,8567,8568,5,369,0,0,8568,8572,5,201,0,0,8569,8570, - 5,414,0,0,8570,8572,5,201,0,0,8571,8567,1,0,0,0,8571,8569,1,0,0, - 0,8571,8572,1,0,0,0,8572,8575,1,0,0,0,8573,8575,5,201,0,0,8574,8562, - 1,0,0,0,8574,8564,1,0,0,0,8574,8566,1,0,0,0,8574,8573,1,0,0,0,8575, - 975,1,0,0,0,8576,8577,5,272,0,0,8577,977,1,0,0,0,8578,8582,5,272, - 0,0,8579,8580,5,465,0,0,8580,8582,5,466,0,0,8581,8578,1,0,0,0,8581, - 8579,1,0,0,0,8582,979,1,0,0,0,8583,8585,3,1024,512,0,8584,8583,1, - 0,0,0,8584,8585,1,0,0,0,8585,8586,1,0,0,0,8586,8587,5,369,0,0,8587, - 8588,3,1126,563,0,8588,8589,5,333,0,0,8589,8591,3,982,491,0,8590, - 8592,3,1100,550,0,8591,8590,1,0,0,0,8591,8592,1,0,0,0,8592,8594, - 1,0,0,0,8593,8595,3,1144,572,0,8594,8593,1,0,0,0,8594,8595,1,0,0, - 0,8595,8597,1,0,0,0,8596,8598,3,964,482,0,8597,8596,1,0,0,0,8597, - 8598,1,0,0,0,8598,981,1,0,0,0,8599,8604,3,984,492,0,8600,8601,5, - 6,0,0,8601,8603,3,984,492,0,8602,8600,1,0,0,0,8603,8606,1,0,0,0, - 8604,8602,1,0,0,0,8604,8605,1,0,0,0,8605,983,1,0,0,0,8606,8604,1, - 0,0,0,8607,8608,3,986,493,0,8608,8609,5,10,0,0,8609,8610,3,1210, - 605,0,8610,8626,1,0,0,0,8611,8612,5,2,0,0,8612,8613,3,988,494,0, - 8613,8614,5,3,0,0,8614,8623,5,10,0,0,8615,8617,5,414,0,0,8616,8615, - 1,0,0,0,8616,8617,1,0,0,0,8617,8618,1,0,0,0,8618,8624,3,1210,605, - 0,8619,8620,5,2,0,0,8620,8621,3,1004,502,0,8621,8622,5,3,0,0,8622, - 8624,1,0,0,0,8623,8616,1,0,0,0,8623,8619,1,0,0,0,8624,8626,1,0,0, - 0,8625,8607,1,0,0,0,8625,8611,1,0,0,0,8626,985,1,0,0,0,8627,8628, - 3,1430,715,0,8628,8629,3,1380,690,0,8629,987,1,0,0,0,8630,8635,3, - 986,493,0,8631,8632,5,6,0,0,8632,8634,3,986,493,0,8633,8631,1,0, - 0,0,8634,8637,1,0,0,0,8635,8633,1,0,0,0,8635,8636,1,0,0,0,8636,989, - 1,0,0,0,8637,8635,1,0,0,0,8638,8639,5,178,0,0,8639,8640,3,992,496, - 0,8640,8641,3,994,497,0,8641,8642,5,172,0,0,8642,8643,3,996,498, - 0,8643,8644,5,62,0,0,8644,8645,3,998,499,0,8645,991,1,0,0,0,8646, - 8647,3,1434,717,0,8647,993,1,0,0,0,8648,8649,5,269,0,0,8649,8654, - 5,324,0,0,8650,8654,5,324,0,0,8651,8654,5,107,0,0,8652,8654,5,240, - 0,0,8653,8648,1,0,0,0,8653,8650,1,0,0,0,8653,8651,1,0,0,0,8653,8652, - 1,0,0,0,8654,8657,1,0,0,0,8655,8653,1,0,0,0,8655,8656,1,0,0,0,8656, - 995,1,0,0,0,8657,8655,1,0,0,0,8658,8664,1,0,0,0,8659,8660,5,105, - 0,0,8660,8664,5,217,0,0,8661,8662,5,379,0,0,8662,8664,5,217,0,0, - 8663,8658,1,0,0,0,8663,8659,1,0,0,0,8663,8661,1,0,0,0,8664,997,1, - 0,0,0,8665,8668,3,1002,501,0,8666,8668,3,1000,500,0,8667,8665,1, - 0,0,0,8667,8666,1,0,0,0,8668,999,1,0,0,0,8669,8670,5,2,0,0,8670, - 8671,3,1002,501,0,8671,8672,5,3,0,0,8672,8678,1,0,0,0,8673,8674, - 5,2,0,0,8674,8675,3,1000,500,0,8675,8676,5,3,0,0,8676,8678,1,0,0, - 0,8677,8669,1,0,0,0,8677,8673,1,0,0,0,8678,1001,1,0,0,0,8679,8681, - 3,1004,502,0,8680,8682,3,1040,520,0,8681,8680,1,0,0,0,8681,8682, - 1,0,0,0,8682,8691,1,0,0,0,8683,8685,3,1086,543,0,8684,8686,3,1050, - 525,0,8685,8684,1,0,0,0,8685,8686,1,0,0,0,8686,8692,1,0,0,0,8687, - 8689,3,1048,524,0,8688,8690,3,1088,544,0,8689,8688,1,0,0,0,8689, - 8690,1,0,0,0,8690,8692,1,0,0,0,8691,8683,1,0,0,0,8691,8687,1,0,0, - 0,8691,8692,1,0,0,0,8692,8709,1,0,0,0,8693,8694,3,1012,506,0,8694, - 8696,3,1004,502,0,8695,8697,3,1040,520,0,8696,8695,1,0,0,0,8696, - 8697,1,0,0,0,8697,8706,1,0,0,0,8698,8700,3,1086,543,0,8699,8701, - 3,1050,525,0,8700,8699,1,0,0,0,8700,8701,1,0,0,0,8701,8707,1,0,0, - 0,8702,8704,3,1048,524,0,8703,8705,3,1088,544,0,8704,8703,1,0,0, - 0,8704,8705,1,0,0,0,8705,8707,1,0,0,0,8706,8698,1,0,0,0,8706,8702, - 1,0,0,0,8706,8707,1,0,0,0,8707,8709,1,0,0,0,8708,8679,1,0,0,0,8708, - 8693,1,0,0,0,8709,1003,1,0,0,0,8710,8713,3,1006,503,0,8711,8713, - 3,1000,500,0,8712,8710,1,0,0,0,8712,8711,1,0,0,0,8713,1005,1,0,0, - 0,8714,8730,5,88,0,0,8715,8717,3,1038,519,0,8716,8715,1,0,0,0,8716, - 8717,1,0,0,0,8717,8719,1,0,0,0,8718,8720,3,1026,513,0,8719,8718, - 1,0,0,0,8719,8720,1,0,0,0,8720,8722,1,0,0,0,8721,8723,3,1382,691, - 0,8722,8721,1,0,0,0,8722,8723,1,0,0,0,8723,8731,1,0,0,0,8724,8726, - 3,1036,518,0,8725,8724,1,0,0,0,8725,8726,1,0,0,0,8726,8728,1,0,0, - 0,8727,8729,3,1384,692,0,8728,8727,1,0,0,0,8728,8729,1,0,0,0,8729, - 8731,1,0,0,0,8730,8716,1,0,0,0,8730,8725,1,0,0,0,8731,8733,1,0,0, - 0,8732,8734,3,1026,513,0,8733,8732,1,0,0,0,8733,8734,1,0,0,0,8734, - 8736,1,0,0,0,8735,8737,3,1100,550,0,8736,8735,1,0,0,0,8736,8737, - 1,0,0,0,8737,8739,1,0,0,0,8738,8740,3,1142,571,0,8739,8738,1,0,0, - 0,8739,8740,1,0,0,0,8740,8742,1,0,0,0,8741,8743,3,1070,535,0,8742, - 8741,1,0,0,0,8742,8743,1,0,0,0,8743,8745,1,0,0,0,8744,8746,3,1084, - 542,0,8745,8744,1,0,0,0,8745,8746,1,0,0,0,8746,8748,1,0,0,0,8747, - 8749,3,1286,643,0,8748,8747,1,0,0,0,8748,8749,1,0,0,0,8749,8760, - 1,0,0,0,8750,8760,3,1098,549,0,8751,8752,5,92,0,0,8752,8760,3,1116, - 558,0,8753,8754,3,1000,500,0,8754,8757,3,1010,505,0,8755,8758,3, - 1006,503,0,8756,8758,3,1000,500,0,8757,8755,1,0,0,0,8757,8756,1, - 0,0,0,8758,8760,1,0,0,0,8759,8714,1,0,0,0,8759,8750,1,0,0,0,8759, - 8751,1,0,0,0,8759,8753,1,0,0,0,8760,8768,1,0,0,0,8761,8764,3,1010, - 505,0,8762,8765,3,1006,503,0,8763,8765,3,1000,500,0,8764,8762,1, - 0,0,0,8764,8763,1,0,0,0,8765,8767,1,0,0,0,8766,8761,1,0,0,0,8767, - 8770,1,0,0,0,8768,8766,1,0,0,0,8768,8769,1,0,0,0,8769,1007,1,0,0, - 0,8770,8768,1,0,0,0,8771,8775,5,97,0,0,8772,8775,5,70,0,0,8773,8775, - 5,59,0,0,8774,8771,1,0,0,0,8774,8772,1,0,0,0,8774,8773,1,0,0,0,8775, - 1009,1,0,0,0,8776,8778,3,1008,504,0,8777,8779,3,1034,517,0,8778, - 8777,1,0,0,0,8778,8779,1,0,0,0,8779,1011,1,0,0,0,8780,8782,5,105, - 0,0,8781,8783,5,303,0,0,8782,8781,1,0,0,0,8782,8783,1,0,0,0,8783, - 8784,1,0,0,0,8784,8785,3,1014,507,0,8785,1013,1,0,0,0,8786,8791, - 3,1016,508,0,8787,8788,5,6,0,0,8788,8790,3,1016,508,0,8789,8787, - 1,0,0,0,8790,8793,1,0,0,0,8791,8789,1,0,0,0,8791,8792,1,0,0,0,8792, - 1015,1,0,0,0,8793,8791,1,0,0,0,8794,8796,3,1434,717,0,8795,8797, - 3,916,458,0,8796,8795,1,0,0,0,8796,8797,1,0,0,0,8797,8798,1,0,0, - 0,8798,8800,5,36,0,0,8799,8801,3,1022,511,0,8800,8799,1,0,0,0,8800, - 8801,1,0,0,0,8801,8802,1,0,0,0,8802,8803,5,2,0,0,8803,8804,3,940, - 470,0,8804,8806,5,3,0,0,8805,8807,3,1018,509,0,8806,8805,1,0,0,0, - 8806,8807,1,0,0,0,8807,8809,1,0,0,0,8808,8810,3,1020,510,0,8809, - 8808,1,0,0,0,8809,8810,1,0,0,0,8810,1017,1,0,0,0,8811,8812,5,325, - 0,0,8812,8813,7,55,0,0,8813,8814,5,207,0,0,8814,8815,5,147,0,0,8815, - 8816,3,244,122,0,8816,8817,5,333,0,0,8817,8818,3,1430,715,0,8818, - 1019,1,0,0,0,8819,8820,5,173,0,0,8820,8821,3,244,122,0,8821,8822, - 5,333,0,0,8822,8828,3,1430,715,0,8823,8824,5,94,0,0,8824,8825,3, - 1434,717,0,8825,8826,5,53,0,0,8826,8827,3,1434,717,0,8827,8829,1, - 0,0,0,8828,8823,1,0,0,0,8828,8829,1,0,0,0,8829,8830,1,0,0,0,8830, - 8831,5,100,0,0,8831,8832,3,1430,715,0,8832,1021,1,0,0,0,8833,8837, - 5,259,0,0,8834,8835,5,77,0,0,8835,8837,5,259,0,0,8836,8833,1,0,0, - 0,8836,8834,1,0,0,0,8837,1023,1,0,0,0,8838,8839,3,1012,506,0,8839, - 1025,1,0,0,0,8840,8845,5,71,0,0,8841,8842,3,1028,514,0,8842,8843, - 3,1030,515,0,8843,8846,1,0,0,0,8844,8846,3,1672,836,0,8845,8841, - 1,0,0,0,8845,8844,1,0,0,0,8846,1027,1,0,0,0,8847,8850,1,0,0,0,8848, - 8850,5,346,0,0,8849,8847,1,0,0,0,8849,8848,1,0,0,0,8850,1029,1,0, - 0,0,8851,8853,7,56,0,0,8852,8851,1,0,0,0,8852,8853,1,0,0,0,8853, - 8854,1,0,0,0,8854,8856,7,25,0,0,8855,8857,3,1032,516,0,8856,8855, - 1,0,0,0,8856,8857,1,0,0,0,8857,8858,1,0,0,0,8858,8868,3,1402,701, - 0,8859,8861,5,367,0,0,8860,8862,3,1032,516,0,8861,8860,1,0,0,0,8861, - 8862,1,0,0,0,8862,8863,1,0,0,0,8863,8868,3,1402,701,0,8864,8865, - 5,92,0,0,8865,8868,3,1402,701,0,8866,8868,3,1402,701,0,8867,8852, - 1,0,0,0,8867,8859,1,0,0,0,8867,8864,1,0,0,0,8867,8866,1,0,0,0,8868, - 1031,1,0,0,0,8869,8870,5,92,0,0,8870,1033,1,0,0,0,8871,8872,7,57, - 0,0,8872,1035,1,0,0,0,8873,8879,5,56,0,0,8874,8875,5,80,0,0,8875, - 8876,5,2,0,0,8876,8877,3,1326,663,0,8877,8878,5,3,0,0,8878,8880, - 1,0,0,0,8879,8874,1,0,0,0,8879,8880,1,0,0,0,8880,1037,1,0,0,0,8881, - 8882,5,30,0,0,8882,1039,1,0,0,0,8883,8884,3,1042,521,0,8884,1041, - 1,0,0,0,8885,8886,5,83,0,0,8886,8887,5,147,0,0,8887,8888,3,1044, - 522,0,8888,1043,1,0,0,0,8889,8894,3,1046,523,0,8890,8891,5,6,0,0, - 8891,8893,3,1046,523,0,8892,8890,1,0,0,0,8893,8896,1,0,0,0,8894, - 8892,1,0,0,0,8894,8895,1,0,0,0,8895,1045,1,0,0,0,8896,8894,1,0,0, - 0,8897,8901,3,1334,667,0,8898,8899,5,100,0,0,8899,8902,3,1322,661, - 0,8900,8902,3,648,324,0,8901,8898,1,0,0,0,8901,8900,1,0,0,0,8901, - 8902,1,0,0,0,8902,8904,1,0,0,0,8903,8905,3,650,325,0,8904,8903,1, - 0,0,0,8904,8905,1,0,0,0,8905,1047,1,0,0,0,8906,8908,3,1052,526,0, - 8907,8909,3,1056,528,0,8908,8907,1,0,0,0,8908,8909,1,0,0,0,8909, - 8919,1,0,0,0,8910,8912,3,1056,528,0,8911,8913,3,1054,527,0,8912, - 8911,1,0,0,0,8912,8913,1,0,0,0,8913,8919,1,0,0,0,8914,8916,3,1054, - 527,0,8915,8917,3,1056,528,0,8916,8915,1,0,0,0,8916,8917,1,0,0,0, - 8917,8919,1,0,0,0,8918,8906,1,0,0,0,8918,8910,1,0,0,0,8918,8914, - 1,0,0,0,8919,1049,1,0,0,0,8920,8921,3,1048,524,0,8921,1051,1,0,0, - 0,8922,8923,5,74,0,0,8923,8926,3,1058,529,0,8924,8925,5,6,0,0,8925, - 8927,3,1060,530,0,8926,8924,1,0,0,0,8926,8927,1,0,0,0,8927,1053, - 1,0,0,0,8928,8929,5,61,0,0,8929,8943,3,1068,534,0,8930,8931,3,1062, - 531,0,8931,8935,3,1066,533,0,8932,8936,5,81,0,0,8933,8934,5,105, - 0,0,8934,8936,5,467,0,0,8935,8932,1,0,0,0,8935,8933,1,0,0,0,8936, - 8944,1,0,0,0,8937,8941,3,1066,533,0,8938,8942,5,81,0,0,8939,8940, - 5,105,0,0,8940,8942,5,467,0,0,8941,8938,1,0,0,0,8941,8939,1,0,0, - 0,8942,8944,1,0,0,0,8943,8930,1,0,0,0,8943,8937,1,0,0,0,8944,1055, - 1,0,0,0,8945,8950,5,79,0,0,8946,8947,3,1062,531,0,8947,8948,3,1066, - 533,0,8948,8951,1,0,0,0,8949,8951,3,1060,530,0,8950,8946,1,0,0,0, - 8950,8949,1,0,0,0,8951,1057,1,0,0,0,8952,8955,3,1210,605,0,8953, - 8955,5,30,0,0,8954,8952,1,0,0,0,8954,8953,1,0,0,0,8955,1059,1,0, - 0,0,8956,8957,3,1210,605,0,8957,1061,1,0,0,0,8958,8959,5,12,0,0, - 8959,8964,3,1064,532,0,8960,8961,5,13,0,0,8961,8964,3,1064,532,0, - 8962,8964,3,1252,626,0,8963,8958,1,0,0,0,8963,8960,1,0,0,0,8963, - 8962,1,0,0,0,8964,1063,1,0,0,0,8965,8968,3,1454,727,0,8966,8968, - 3,1452,726,0,8967,8965,1,0,0,0,8967,8966,1,0,0,0,8968,1065,1,0,0, - 0,8969,8970,7,58,0,0,8970,1067,1,0,0,0,8971,8972,7,59,0,0,8972,1069, - 1,0,0,0,8973,8974,5,66,0,0,8974,8976,5,147,0,0,8975,8977,3,1034, - 517,0,8976,8975,1,0,0,0,8976,8977,1,0,0,0,8977,8978,1,0,0,0,8978, - 8979,3,1072,536,0,8979,1071,1,0,0,0,8980,8985,3,1074,537,0,8981, - 8982,5,6,0,0,8982,8984,3,1074,537,0,8983,8981,1,0,0,0,8984,8987, - 1,0,0,0,8985,8983,1,0,0,0,8985,8986,1,0,0,0,8986,1073,1,0,0,0,8987, - 8985,1,0,0,0,8988,8998,3,1334,667,0,8989,8998,3,1076,538,0,8990, - 8998,3,1080,540,0,8991,8998,3,1078,539,0,8992,8998,3,1082,541,0, - 8993,8994,5,2,0,0,8994,8995,3,1328,664,0,8995,8996,5,3,0,0,8996, - 8998,1,0,0,0,8997,8988,1,0,0,0,8997,8989,1,0,0,0,8997,8990,1,0,0, - 0,8997,8991,1,0,0,0,8997,8992,1,0,0,0,8997,8993,1,0,0,0,8998,1075, - 1,0,0,0,8999,9000,5,2,0,0,9000,9001,5,3,0,0,9001,1077,1,0,0,0,9002, - 9003,5,468,0,0,9003,9004,5,2,0,0,9004,9005,3,1328,664,0,9005,9006, - 5,3,0,0,9006,1079,1,0,0,0,9007,9008,5,469,0,0,9008,9009,5,2,0,0, - 9009,9010,3,1328,664,0,9010,9011,5,3,0,0,9011,1081,1,0,0,0,9012, - 9013,5,470,0,0,9013,9014,5,471,0,0,9014,9015,5,2,0,0,9015,9016,3, - 1072,536,0,9016,9017,5,3,0,0,9017,1083,1,0,0,0,9018,9019,5,67,0, - 0,9019,9020,3,1210,605,0,9020,1085,1,0,0,0,9021,9026,3,1090,545, - 0,9022,9023,5,62,0,0,9023,9024,5,300,0,0,9024,9026,5,81,0,0,9025, - 9021,1,0,0,0,9025,9022,1,0,0,0,9026,1087,1,0,0,0,9027,9028,3,1086, - 543,0,9028,1089,1,0,0,0,9029,9031,3,1092,546,0,9030,9029,1,0,0,0, - 9031,9032,1,0,0,0,9032,9030,1,0,0,0,9032,9033,1,0,0,0,9033,1091, - 1,0,0,0,9034,9036,3,1094,547,0,9035,9037,3,1096,548,0,9036,9035, - 1,0,0,0,9036,9037,1,0,0,0,9037,9039,1,0,0,0,9038,9040,3,978,489, - 0,9039,9038,1,0,0,0,9039,9040,1,0,0,0,9040,1093,1,0,0,0,9041,9051, - 5,62,0,0,9042,9043,5,269,0,0,9043,9045,5,245,0,0,9044,9042,1,0,0, - 0,9044,9045,1,0,0,0,9045,9046,1,0,0,0,9046,9052,5,369,0,0,9047,9049, - 5,245,0,0,9048,9047,1,0,0,0,9048,9049,1,0,0,0,9049,9050,1,0,0,0, - 9050,9052,5,334,0,0,9051,9044,1,0,0,0,9051,9048,1,0,0,0,9052,1095, - 1,0,0,0,9053,9054,5,275,0,0,9054,9055,3,1388,694,0,9055,1097,1,0, - 0,0,9056,9057,5,422,0,0,9057,9058,5,2,0,0,9058,9059,3,1326,663,0, - 9059,9067,5,3,0,0,9060,9061,5,6,0,0,9061,9062,5,2,0,0,9062,9063, - 3,1326,663,0,9063,9064,5,3,0,0,9064,9066,1,0,0,0,9065,9060,1,0,0, - 0,9066,9069,1,0,0,0,9067,9065,1,0,0,0,9067,9068,1,0,0,0,9068,1099, - 1,0,0,0,9069,9067,1,0,0,0,9070,9071,5,64,0,0,9071,9072,3,1102,551, - 0,9072,1101,1,0,0,0,9073,9078,3,1104,552,0,9074,9075,5,6,0,0,9075, - 9077,3,1104,552,0,9076,9074,1,0,0,0,9077,9080,1,0,0,0,9078,9076, - 1,0,0,0,9078,9079,1,0,0,0,9079,1103,1,0,0,0,9080,9078,1,0,0,0,9081, - 9084,3,1116,558,0,9082,9084,3,1118,559,0,9083,9081,1,0,0,0,9083, - 9082,1,0,0,0,9084,9086,1,0,0,0,9085,9087,3,1108,554,0,9086,9085, - 1,0,0,0,9086,9087,1,0,0,0,9087,9089,1,0,0,0,9088,9090,3,1128,564, - 0,9089,9088,1,0,0,0,9089,9090,1,0,0,0,9090,9143,1,0,0,0,9091,9093, - 3,1132,566,0,9092,9094,3,1110,555,0,9093,9092,1,0,0,0,9093,9094, - 1,0,0,0,9094,9143,1,0,0,0,9095,9097,3,1152,576,0,9096,9098,3,1108, - 554,0,9097,9096,1,0,0,0,9097,9098,1,0,0,0,9098,9143,1,0,0,0,9099, - 9101,3,1000,500,0,9100,9102,3,1108,554,0,9101,9100,1,0,0,0,9101, - 9102,1,0,0,0,9102,9143,1,0,0,0,9103,9116,5,72,0,0,9104,9106,3,1152, - 576,0,9105,9107,3,1108,554,0,9106,9105,1,0,0,0,9106,9107,1,0,0,0, - 9107,9117,1,0,0,0,9108,9110,3,1132,566,0,9109,9111,3,1110,555,0, - 9110,9109,1,0,0,0,9110,9111,1,0,0,0,9111,9117,1,0,0,0,9112,9114, - 3,1000,500,0,9113,9115,3,1108,554,0,9114,9113,1,0,0,0,9114,9115, - 1,0,0,0,9115,9117,1,0,0,0,9116,9104,1,0,0,0,9116,9108,1,0,0,0,9116, - 9112,1,0,0,0,9117,9143,1,0,0,0,9118,9119,5,2,0,0,9119,9136,3,1104, - 552,0,9120,9121,5,110,0,0,9121,9122,5,118,0,0,9122,9137,3,1104,552, - 0,9123,9125,5,121,0,0,9124,9126,3,1112,556,0,9125,9124,1,0,0,0,9125, - 9126,1,0,0,0,9126,9127,1,0,0,0,9127,9128,5,118,0,0,9128,9137,3,1104, - 552,0,9129,9131,3,1112,556,0,9130,9129,1,0,0,0,9130,9131,1,0,0,0, - 9131,9132,1,0,0,0,9132,9133,5,118,0,0,9133,9134,3,1104,552,0,9134, - 9135,3,1114,557,0,9135,9137,1,0,0,0,9136,9120,1,0,0,0,9136,9123, - 1,0,0,0,9136,9130,1,0,0,0,9136,9137,1,0,0,0,9137,9138,1,0,0,0,9138, - 9140,5,3,0,0,9139,9141,3,1108,554,0,9140,9139,1,0,0,0,9140,9141, - 1,0,0,0,9141,9143,1,0,0,0,9142,9083,1,0,0,0,9142,9091,1,0,0,0,9142, - 9095,1,0,0,0,9142,9099,1,0,0,0,9142,9103,1,0,0,0,9142,9118,1,0,0, - 0,9143,9162,1,0,0,0,9144,9145,5,110,0,0,9145,9146,5,118,0,0,9146, - 9161,3,1104,552,0,9147,9149,5,121,0,0,9148,9150,3,1112,556,0,9149, - 9148,1,0,0,0,9149,9150,1,0,0,0,9150,9151,1,0,0,0,9151,9152,5,118, - 0,0,9152,9161,3,1104,552,0,9153,9155,3,1112,556,0,9154,9153,1,0, - 0,0,9154,9155,1,0,0,0,9155,9156,1,0,0,0,9156,9157,5,118,0,0,9157, - 9158,3,1104,552,0,9158,9159,3,1114,557,0,9159,9161,1,0,0,0,9160, - 9144,1,0,0,0,9160,9147,1,0,0,0,9160,9154,1,0,0,0,9161,9164,1,0,0, - 0,9162,9160,1,0,0,0,9162,9163,1,0,0,0,9163,1105,1,0,0,0,9164,9162, - 1,0,0,0,9165,9167,5,36,0,0,9166,9165,1,0,0,0,9166,9167,1,0,0,0,9167, - 9168,1,0,0,0,9168,9173,3,1472,736,0,9169,9170,5,2,0,0,9170,9171, - 3,1414,707,0,9171,9172,5,3,0,0,9172,9174,1,0,0,0,9173,9169,1,0,0, - 0,9173,9174,1,0,0,0,9174,1107,1,0,0,0,9175,9176,3,1106,553,0,9176, - 1109,1,0,0,0,9177,9190,3,1106,553,0,9178,9180,5,36,0,0,9179,9181, - 3,1472,736,0,9180,9179,1,0,0,0,9180,9181,1,0,0,0,9181,9184,1,0,0, - 0,9182,9184,3,1472,736,0,9183,9178,1,0,0,0,9183,9182,1,0,0,0,9184, - 9185,1,0,0,0,9185,9186,5,2,0,0,9186,9187,3,1148,574,0,9187,9188, - 5,3,0,0,9188,9190,1,0,0,0,9189,9177,1,0,0,0,9189,9183,1,0,0,0,9190, - 1111,1,0,0,0,9191,9193,7,60,0,0,9192,9194,5,123,0,0,9193,9192,1, - 0,0,0,9193,9194,1,0,0,0,9194,1113,1,0,0,0,9195,9196,5,100,0,0,9196, - 9197,5,2,0,0,9197,9198,3,244,122,0,9198,9199,5,3,0,0,9199,9203,1, - 0,0,0,9200,9201,5,80,0,0,9201,9203,3,1210,605,0,9202,9195,1,0,0, - 0,9202,9200,1,0,0,0,9203,1115,1,0,0,0,9204,9206,5,81,0,0,9205,9204, - 1,0,0,0,9205,9206,1,0,0,0,9206,9207,1,0,0,0,9207,9209,3,1404,702, - 0,9208,9210,5,9,0,0,9209,9208,1,0,0,0,9209,9210,1,0,0,0,9210,9226, - 1,0,0,0,9211,9217,5,81,0,0,9212,9218,3,1404,702,0,9213,9214,5,2, - 0,0,9214,9215,3,1404,702,0,9215,9216,5,3,0,0,9216,9218,1,0,0,0,9217, - 9212,1,0,0,0,9217,9213,1,0,0,0,9218,9226,1,0,0,0,9219,9220,5,68, - 0,0,9220,9223,5,323,0,0,9221,9224,3,1420,710,0,9222,9224,5,111,0, - 0,9223,9221,1,0,0,0,9223,9222,1,0,0,0,9224,9226,1,0,0,0,9225,9205, - 1,0,0,0,9225,9211,1,0,0,0,9225,9219,1,0,0,0,9226,1117,1,0,0,0,9227, - 9229,5,81,0,0,9228,9227,1,0,0,0,9228,9229,1,0,0,0,9229,9230,1,0, - 0,0,9230,9232,3,1408,704,0,9231,9233,5,9,0,0,9232,9231,1,0,0,0,9232, - 9233,1,0,0,0,9233,1119,1,0,0,0,9234,9236,5,92,0,0,9235,9237,5,81, - 0,0,9236,9235,1,0,0,0,9236,9237,1,0,0,0,9237,9238,1,0,0,0,9238,9240, - 3,1404,702,0,9239,9241,5,9,0,0,9240,9239,1,0,0,0,9240,9241,1,0,0, - 0,9241,9246,1,0,0,0,9242,9243,5,2,0,0,9243,9244,3,244,122,0,9244, - 9245,5,3,0,0,9245,9247,1,0,0,0,9246,9242,1,0,0,0,9246,9247,1,0,0, - 0,9247,9249,1,0,0,0,9248,9250,3,1142,571,0,9249,9248,1,0,0,0,9249, - 9250,1,0,0,0,9250,9268,1,0,0,0,9251,9252,5,92,0,0,9252,9258,5,81, - 0,0,9253,9259,3,1404,702,0,9254,9255,5,2,0,0,9255,9256,3,1404,702, - 0,9256,9257,5,3,0,0,9257,9259,1,0,0,0,9258,9253,1,0,0,0,9258,9254, - 1,0,0,0,9259,9268,1,0,0,0,9260,9261,5,350,0,0,9261,9262,5,68,0,0, - 9262,9265,5,323,0,0,9263,9266,3,1420,710,0,9264,9266,5,111,0,0,9265, - 9263,1,0,0,0,9265,9264,1,0,0,0,9266,9268,1,0,0,0,9267,9234,1,0,0, - 0,9267,9251,1,0,0,0,9267,9260,1,0,0,0,9268,1121,1,0,0,0,9269,9274, - 3,1116,558,0,9270,9271,5,6,0,0,9271,9273,3,1116,558,0,9272,9270, - 1,0,0,0,9273,9276,1,0,0,0,9274,9272,1,0,0,0,9274,9275,1,0,0,0,9275, - 1123,1,0,0,0,9276,9274,1,0,0,0,9277,9282,3,1120,560,0,9278,9279, - 5,6,0,0,9279,9281,3,1120,560,0,9280,9278,1,0,0,0,9281,9284,1,0,0, - 0,9282,9280,1,0,0,0,9282,9283,1,0,0,0,9283,1125,1,0,0,0,9284,9282, - 1,0,0,0,9285,9290,3,1116,558,0,9286,9288,5,36,0,0,9287,9286,1,0, - 0,0,9287,9288,1,0,0,0,9288,9289,1,0,0,0,9289,9291,3,1472,736,0,9290, - 9287,1,0,0,0,9290,9291,1,0,0,0,9291,1127,1,0,0,0,9292,9293,5,472, - 0,0,9293,9294,3,1442,721,0,9294,9295,5,2,0,0,9295,9296,3,1326,663, - 0,9296,9298,5,3,0,0,9297,9299,3,1130,565,0,9298,9297,1,0,0,0,9298, - 9299,1,0,0,0,9299,1129,1,0,0,0,9300,9301,5,310,0,0,9301,9302,5,2, - 0,0,9302,9303,3,1210,605,0,9303,9304,5,3,0,0,9304,1131,1,0,0,0,9305, - 9307,3,1260,630,0,9306,9308,3,1140,570,0,9307,9306,1,0,0,0,9307, - 9308,1,0,0,0,9308,9318,1,0,0,0,9309,9310,5,320,0,0,9310,9311,5,64, - 0,0,9311,9312,5,2,0,0,9312,9313,3,1136,568,0,9313,9315,5,3,0,0,9314, - 9316,3,1140,570,0,9315,9314,1,0,0,0,9315,9316,1,0,0,0,9316,9318, - 1,0,0,0,9317,9305,1,0,0,0,9317,9309,1,0,0,0,9318,1133,1,0,0,0,9319, - 9321,3,1260,630,0,9320,9322,3,1138,569,0,9321,9320,1,0,0,0,9321, - 9322,1,0,0,0,9322,1135,1,0,0,0,9323,9328,3,1134,567,0,9324,9325, - 5,6,0,0,9325,9327,3,1134,567,0,9326,9324,1,0,0,0,9327,9330,1,0,0, - 0,9328,9326,1,0,0,0,9328,9329,1,0,0,0,9329,1137,1,0,0,0,9330,9328, - 1,0,0,0,9331,9332,5,36,0,0,9332,9333,5,2,0,0,9333,9334,3,1148,574, - 0,9334,9335,5,3,0,0,9335,1139,1,0,0,0,9336,9337,5,105,0,0,9337,9338, - 5,473,0,0,9338,1141,1,0,0,0,9339,9340,5,103,0,0,9340,9341,3,1334, - 667,0,9341,1143,1,0,0,0,9342,9347,5,103,0,0,9343,9344,5,434,0,0, - 9344,9345,5,275,0,0,9345,9348,3,992,496,0,9346,9348,3,1210,605,0, - 9347,9343,1,0,0,0,9347,9346,1,0,0,0,9348,1145,1,0,0,0,9349,9350, - 3,1148,574,0,9350,1147,1,0,0,0,9351,9356,3,1150,575,0,9352,9353, - 5,6,0,0,9353,9355,3,1150,575,0,9354,9352,1,0,0,0,9355,9358,1,0,0, - 0,9356,9354,1,0,0,0,9356,9357,1,0,0,0,9357,1149,1,0,0,0,9358,9356, - 1,0,0,0,9359,9360,3,1472,736,0,9360,9362,3,1166,583,0,9361,9363, - 3,126,63,0,9362,9361,1,0,0,0,9362,9363,1,0,0,0,9363,1151,1,0,0,0, - 9364,9365,5,474,0,0,9365,9381,5,2,0,0,9366,9367,3,1252,626,0,9367, - 9368,3,1278,639,0,9368,9369,5,475,0,0,9369,9370,3,1154,577,0,9370, - 9382,1,0,0,0,9371,9372,5,476,0,0,9372,9373,5,2,0,0,9373,9374,3,1162, - 581,0,9374,9375,5,3,0,0,9375,9376,5,6,0,0,9376,9377,3,1252,626,0, - 9377,9378,3,1278,639,0,9378,9379,5,475,0,0,9379,9380,3,1154,577, - 0,9380,9382,1,0,0,0,9381,9366,1,0,0,0,9381,9371,1,0,0,0,9382,9383, - 1,0,0,0,9383,9384,5,3,0,0,9384,1153,1,0,0,0,9385,9390,3,1156,578, - 0,9386,9387,5,6,0,0,9387,9389,3,1156,578,0,9388,9386,1,0,0,0,9389, - 9392,1,0,0,0,9390,9388,1,0,0,0,9390,9391,1,0,0,0,9391,1155,1,0,0, - 0,9392,9390,1,0,0,0,9393,9400,3,1472,736,0,9394,9396,3,1166,583, - 0,9395,9397,3,1158,579,0,9396,9395,1,0,0,0,9396,9397,1,0,0,0,9397, - 9401,1,0,0,0,9398,9399,5,62,0,0,9399,9401,5,473,0,0,9400,9394,1, - 0,0,0,9400,9398,1,0,0,0,9401,1157,1,0,0,0,9402,9404,3,1160,580,0, - 9403,9402,1,0,0,0,9404,9405,1,0,0,0,9405,9403,1,0,0,0,9405,9406, - 1,0,0,0,9406,1159,1,0,0,0,9407,9408,5,53,0,0,9408,9416,3,1210,605, - 0,9409,9410,3,1490,745,0,9410,9411,3,1210,605,0,9411,9416,1,0,0, - 0,9412,9413,5,77,0,0,9413,9416,5,78,0,0,9414,9416,5,78,0,0,9415, - 9407,1,0,0,0,9415,9409,1,0,0,0,9415,9412,1,0,0,0,9415,9414,1,0,0, - 0,9416,1161,1,0,0,0,9417,9422,3,1164,582,0,9418,9419,5,6,0,0,9419, - 9421,3,1164,582,0,9420,9418,1,0,0,0,9421,9424,1,0,0,0,9422,9420, - 1,0,0,0,9422,9423,1,0,0,0,9423,1163,1,0,0,0,9424,9422,1,0,0,0,9425, - 9426,3,1250,625,0,9426,9427,5,36,0,0,9427,9428,3,1488,744,0,9428, - 9432,1,0,0,0,9429,9430,5,53,0,0,9430,9432,3,1250,625,0,9431,9425, - 1,0,0,0,9431,9429,1,0,0,0,9432,1165,1,0,0,0,9433,9435,5,415,0,0, - 9434,9433,1,0,0,0,9434,9435,1,0,0,0,9435,9436,1,0,0,0,9436,9445, - 3,1170,585,0,9437,9446,3,1168,584,0,9438,9443,5,35,0,0,9439,9440, - 5,4,0,0,9440,9441,3,1454,727,0,9441,9442,5,5,0,0,9442,9444,1,0,0, - 0,9443,9439,1,0,0,0,9443,9444,1,0,0,0,9444,9446,1,0,0,0,9445,9437, - 1,0,0,0,9445,9438,1,0,0,0,9446,9452,1,0,0,0,9447,9448,3,1410,705, - 0,9448,9449,5,27,0,0,9449,9450,7,61,0,0,9450,9452,1,0,0,0,9451,9434, - 1,0,0,0,9451,9447,1,0,0,0,9452,1167,1,0,0,0,9453,9455,5,4,0,0,9454, - 9456,3,1454,727,0,9455,9454,1,0,0,0,9455,9456,1,0,0,0,9456,9457, - 1,0,0,0,9457,9459,5,5,0,0,9458,9453,1,0,0,0,9459,9462,1,0,0,0,9460, - 9458,1,0,0,0,9460,9461,1,0,0,0,9461,1169,1,0,0,0,9462,9460,1,0,0, - 0,9463,9479,3,1174,587,0,9464,9479,3,1178,589,0,9465,9479,3,1182, - 591,0,9466,9479,3,1190,595,0,9467,9479,3,1198,599,0,9468,9476,3, - 1200,600,0,9469,9471,3,1204,602,0,9470,9469,1,0,0,0,9470,9471,1, - 0,0,0,9471,9477,1,0,0,0,9472,9473,5,2,0,0,9473,9474,3,1454,727,0, - 9474,9475,5,3,0,0,9475,9477,1,0,0,0,9476,9470,1,0,0,0,9476,9472, - 1,0,0,0,9477,9479,1,0,0,0,9478,9463,1,0,0,0,9478,9464,1,0,0,0,9478, - 9465,1,0,0,0,9478,9466,1,0,0,0,9478,9467,1,0,0,0,9478,9468,1,0,0, - 0,9479,1171,1,0,0,0,9480,9485,3,1178,589,0,9481,9485,3,1184,592, - 0,9482,9485,3,1192,596,0,9483,9485,3,1198,599,0,9484,9480,1,0,0, - 0,9484,9481,1,0,0,0,9484,9482,1,0,0,0,9484,9483,1,0,0,0,9485,1173, - 1,0,0,0,9486,9488,3,1480,740,0,9487,9489,3,558,279,0,9488,9487,1, - 0,0,0,9488,9489,1,0,0,0,9489,9491,1,0,0,0,9490,9492,3,1176,588,0, - 9491,9490,1,0,0,0,9491,9492,1,0,0,0,9492,1175,1,0,0,0,9493,9494, - 5,2,0,0,9494,9495,3,1326,663,0,9495,9496,5,3,0,0,9496,1177,1,0,0, - 0,9497,9522,5,401,0,0,9498,9522,5,402,0,0,9499,9522,5,416,0,0,9500, - 9522,5,388,0,0,9501,9522,5,413,0,0,9502,9504,5,398,0,0,9503,9505, - 3,1180,590,0,9504,9503,1,0,0,0,9504,9505,1,0,0,0,9505,9522,1,0,0, - 0,9506,9507,5,190,0,0,9507,9522,5,412,0,0,9508,9510,5,395,0,0,9509, - 9511,3,1176,588,0,9510,9509,1,0,0,0,9510,9511,1,0,0,0,9511,9522, - 1,0,0,0,9512,9514,5,394,0,0,9513,9515,3,1176,588,0,9514,9513,1,0, - 0,0,9514,9515,1,0,0,0,9515,9522,1,0,0,0,9516,9518,5,409,0,0,9517, - 9519,3,1176,588,0,9518,9517,1,0,0,0,9518,9519,1,0,0,0,9519,9522, - 1,0,0,0,9520,9522,5,390,0,0,9521,9497,1,0,0,0,9521,9498,1,0,0,0, - 9521,9499,1,0,0,0,9521,9500,1,0,0,0,9521,9501,1,0,0,0,9521,9502, - 1,0,0,0,9521,9506,1,0,0,0,9521,9508,1,0,0,0,9521,9512,1,0,0,0,9521, - 9516,1,0,0,0,9521,9520,1,0,0,0,9522,1179,1,0,0,0,9523,9524,5,2,0, - 0,9524,9525,3,1454,727,0,9525,9526,5,3,0,0,9526,1181,1,0,0,0,9527, - 9530,3,1186,593,0,9528,9530,3,1188,594,0,9529,9527,1,0,0,0,9529, - 9528,1,0,0,0,9530,1183,1,0,0,0,9531,9534,3,1186,593,0,9532,9534, - 3,1188,594,0,9533,9531,1,0,0,0,9533,9532,1,0,0,0,9534,1185,1,0,0, - 0,9535,9537,5,389,0,0,9536,9538,3,1196,598,0,9537,9536,1,0,0,0,9537, - 9538,1,0,0,0,9538,9539,1,0,0,0,9539,9540,5,2,0,0,9540,9541,3,1326, - 663,0,9541,9542,5,3,0,0,9542,1187,1,0,0,0,9543,9545,5,389,0,0,9544, - 9546,3,1196,598,0,9545,9544,1,0,0,0,9545,9546,1,0,0,0,9546,1189, - 1,0,0,0,9547,9552,3,1194,597,0,9548,9549,5,2,0,0,9549,9550,3,1454, - 727,0,9550,9551,5,3,0,0,9551,9553,1,0,0,0,9552,9548,1,0,0,0,9552, - 9553,1,0,0,0,9553,1191,1,0,0,0,9554,9559,3,1194,597,0,9555,9556, - 5,2,0,0,9556,9557,3,1454,727,0,9557,9558,5,3,0,0,9558,9560,1,0,0, - 0,9559,9555,1,0,0,0,9559,9560,1,0,0,0,9560,1193,1,0,0,0,9561,9563, - 7,62,0,0,9562,9564,3,1196,598,0,9563,9562,1,0,0,0,9563,9564,1,0, - 0,0,9564,9572,1,0,0,0,9565,9572,5,423,0,0,9566,9567,5,405,0,0,9567, - 9569,7,63,0,0,9568,9570,3,1196,598,0,9569,9568,1,0,0,0,9569,9570, - 1,0,0,0,9570,9572,1,0,0,0,9571,9561,1,0,0,0,9571,9565,1,0,0,0,9571, - 9566,1,0,0,0,9572,1195,1,0,0,0,9573,9574,5,374,0,0,9574,1197,1,0, - 0,0,9575,9580,7,64,0,0,9576,9577,5,2,0,0,9577,9578,3,1454,727,0, - 9578,9579,5,3,0,0,9579,9581,1,0,0,0,9580,9576,1,0,0,0,9580,9581, - 1,0,0,0,9581,9583,1,0,0,0,9582,9584,3,1202,601,0,9583,9582,1,0,0, - 0,9583,9584,1,0,0,0,9584,1199,1,0,0,0,9585,9586,5,403,0,0,9586,1201, - 1,0,0,0,9587,9588,5,105,0,0,9588,9589,5,418,0,0,9589,9594,5,386, - 0,0,9590,9591,5,379,0,0,9591,9592,5,418,0,0,9592,9594,5,386,0,0, - 9593,9587,1,0,0,0,9593,9590,1,0,0,0,9594,1203,1,0,0,0,9595,9621, - 5,384,0,0,9596,9621,5,264,0,0,9597,9621,5,176,0,0,9598,9621,5,218, - 0,0,9599,9621,5,261,0,0,9600,9621,3,1206,603,0,9601,9602,5,384,0, - 0,9602,9603,5,94,0,0,9603,9621,5,264,0,0,9604,9605,5,176,0,0,9605, - 9609,5,94,0,0,9606,9610,5,218,0,0,9607,9610,5,261,0,0,9608,9610, - 3,1206,603,0,9609,9606,1,0,0,0,9609,9607,1,0,0,0,9609,9608,1,0,0, - 0,9610,9621,1,0,0,0,9611,9612,5,218,0,0,9612,9615,5,94,0,0,9613, - 9616,5,261,0,0,9614,9616,3,1206,603,0,9615,9613,1,0,0,0,9615,9614, - 1,0,0,0,9616,9621,1,0,0,0,9617,9618,5,261,0,0,9618,9619,5,94,0,0, - 9619,9621,3,1206,603,0,9620,9595,1,0,0,0,9620,9596,1,0,0,0,9620, - 9597,1,0,0,0,9620,9598,1,0,0,0,9620,9599,1,0,0,0,9620,9600,1,0,0, - 0,9620,9601,1,0,0,0,9620,9604,1,0,0,0,9620,9611,1,0,0,0,9620,9617, - 1,0,0,0,9621,1205,1,0,0,0,9622,9627,5,326,0,0,9623,9624,5,2,0,0, - 9624,9625,3,1454,727,0,9625,9626,5,3,0,0,9626,9628,1,0,0,0,9627, - 9623,1,0,0,0,9627,9628,1,0,0,0,9628,1207,1,0,0,0,9629,9630,5,197, - 0,0,9630,9631,3,1210,605,0,9631,1209,1,0,0,0,9632,9633,3,1212,606, - 0,9633,1211,1,0,0,0,9634,9636,3,1214,607,0,9635,9637,3,1320,660, - 0,9636,9635,1,0,0,0,9636,9637,1,0,0,0,9637,1213,1,0,0,0,9638,9643, - 3,1216,608,0,9639,9640,7,65,0,0,9640,9642,3,1216,608,0,9641,9639, - 1,0,0,0,9642,9645,1,0,0,0,9643,9641,1,0,0,0,9643,9644,1,0,0,0,9644, - 1215,1,0,0,0,9645,9643,1,0,0,0,9646,9651,3,1218,609,0,9647,9648, - 5,82,0,0,9648,9650,3,1218,609,0,9649,9647,1,0,0,0,9650,9653,1,0, - 0,0,9651,9649,1,0,0,0,9651,9652,1,0,0,0,9652,1217,1,0,0,0,9653,9651, - 1,0,0,0,9654,9659,3,1220,610,0,9655,9656,5,33,0,0,9656,9658,3,1220, - 610,0,9657,9655,1,0,0,0,9658,9661,1,0,0,0,9659,9657,1,0,0,0,9659, - 9660,1,0,0,0,9660,1219,1,0,0,0,9661,9659,1,0,0,0,9662,9668,3,1222, - 611,0,9663,9665,5,77,0,0,9664,9663,1,0,0,0,9664,9665,1,0,0,0,9665, - 9666,1,0,0,0,9666,9667,5,68,0,0,9667,9669,3,1360,680,0,9668,9664, - 1,0,0,0,9668,9669,1,0,0,0,9669,1221,1,0,0,0,9670,9672,5,77,0,0,9671, - 9670,1,0,0,0,9671,9672,1,0,0,0,9672,9673,1,0,0,0,9673,9674,3,1224, - 612,0,9674,1223,1,0,0,0,9675,9677,3,1226,613,0,9676,9678,7,66,0, - 0,9677,9676,1,0,0,0,9677,9678,1,0,0,0,9678,1225,1,0,0,0,9679,9703, - 3,1228,614,0,9680,9682,5,116,0,0,9681,9683,5,77,0,0,9682,9681,1, - 0,0,0,9682,9683,1,0,0,0,9683,9701,1,0,0,0,9684,9702,5,78,0,0,9685, - 9702,5,96,0,0,9686,9702,5,60,0,0,9687,9702,5,365,0,0,9688,9689,5, - 56,0,0,9689,9690,5,64,0,0,9690,9702,3,1210,605,0,9691,9692,5,275, - 0,0,9692,9693,5,2,0,0,9693,9694,3,1340,670,0,9694,9695,5,3,0,0,9695, - 9702,1,0,0,0,9696,9702,5,188,0,0,9697,9699,3,1350,675,0,9698,9697, - 1,0,0,0,9698,9699,1,0,0,0,9699,9700,1,0,0,0,9700,9702,5,478,0,0, - 9701,9684,1,0,0,0,9701,9685,1,0,0,0,9701,9686,1,0,0,0,9701,9687, - 1,0,0,0,9701,9688,1,0,0,0,9701,9691,1,0,0,0,9701,9696,1,0,0,0,9701, - 9698,1,0,0,0,9702,9704,1,0,0,0,9703,9680,1,0,0,0,9703,9704,1,0,0, - 0,9704,1227,1,0,0,0,9705,9717,3,1230,615,0,9706,9707,7,67,0,0,9707, - 9718,3,1230,615,0,9708,9709,3,1324,662,0,9709,9715,3,1314,657,0, - 9710,9716,3,1000,500,0,9711,9712,5,2,0,0,9712,9713,3,1210,605,0, - 9713,9714,5,3,0,0,9714,9716,1,0,0,0,9715,9710,1,0,0,0,9715,9711, - 1,0,0,0,9716,9718,1,0,0,0,9717,9706,1,0,0,0,9717,9708,1,0,0,0,9717, - 9718,1,0,0,0,9718,1229,1,0,0,0,9719,9737,3,1232,616,0,9720,9722, - 5,77,0,0,9721,9720,1,0,0,0,9721,9722,1,0,0,0,9722,9731,1,0,0,0,9723, - 9732,5,120,0,0,9724,9732,5,114,0,0,9725,9726,5,127,0,0,9726,9732, - 5,94,0,0,9727,9729,5,387,0,0,9728,9730,5,91,0,0,9729,9728,1,0,0, - 0,9729,9730,1,0,0,0,9730,9732,1,0,0,0,9731,9723,1,0,0,0,9731,9724, - 1,0,0,0,9731,9725,1,0,0,0,9731,9727,1,0,0,0,9732,9733,1,0,0,0,9733, - 9735,3,1232,616,0,9734,9736,3,1208,604,0,9735,9734,1,0,0,0,9735, - 9736,1,0,0,0,9736,9738,1,0,0,0,9737,9721,1,0,0,0,9737,9738,1,0,0, - 0,9738,1231,1,0,0,0,9739,9745,3,1234,617,0,9740,9741,3,1320,660, - 0,9741,9742,3,1234,617,0,9742,9744,1,0,0,0,9743,9740,1,0,0,0,9744, - 9747,1,0,0,0,9745,9743,1,0,0,0,9745,9746,1,0,0,0,9746,1233,1,0,0, - 0,9747,9745,1,0,0,0,9748,9750,3,1320,660,0,9749,9748,1,0,0,0,9749, - 9750,1,0,0,0,9750,9751,1,0,0,0,9751,9752,3,1236,618,0,9752,1235, - 1,0,0,0,9753,9758,3,1238,619,0,9754,9755,7,68,0,0,9755,9757,3,1238, - 619,0,9756,9754,1,0,0,0,9757,9760,1,0,0,0,9758,9756,1,0,0,0,9758, - 9759,1,0,0,0,9759,1237,1,0,0,0,9760,9758,1,0,0,0,9761,9766,3,1240, - 620,0,9762,9763,7,69,0,0,9763,9765,3,1240,620,0,9764,9762,1,0,0, - 0,9765,9768,1,0,0,0,9766,9764,1,0,0,0,9766,9767,1,0,0,0,9767,1239, - 1,0,0,0,9768,9766,1,0,0,0,9769,9772,3,1242,621,0,9770,9771,5,15, - 0,0,9771,9773,3,1210,605,0,9772,9770,1,0,0,0,9772,9773,1,0,0,0,9773, - 1241,1,0,0,0,9774,9776,7,68,0,0,9775,9774,1,0,0,0,9775,9776,1,0, - 0,0,9776,9777,1,0,0,0,9777,9778,3,1244,622,0,9778,1243,1,0,0,0,9779, - 9784,3,1246,623,0,9780,9781,5,142,0,0,9781,9782,5,418,0,0,9782,9783, - 5,386,0,0,9783,9785,3,1210,605,0,9784,9780,1,0,0,0,9784,9785,1,0, - 0,0,9785,1245,1,0,0,0,9786,9789,3,1248,624,0,9787,9788,5,43,0,0, - 9788,9790,3,556,278,0,9789,9787,1,0,0,0,9789,9790,1,0,0,0,9790,1247, - 1,0,0,0,9791,9796,3,1252,626,0,9792,9793,5,26,0,0,9793,9795,3,1166, - 583,0,9794,9792,1,0,0,0,9795,9798,1,0,0,0,9796,9794,1,0,0,0,9796, - 9797,1,0,0,0,9797,1249,1,0,0,0,9798,9796,1,0,0,0,9799,9800,6,625, - -1,0,9800,9807,3,1252,626,0,9801,9802,7,68,0,0,9802,9807,3,1250, - 625,9,9803,9804,3,1320,660,0,9804,9805,3,1250,625,3,9805,9807,1, - 0,0,0,9806,9799,1,0,0,0,9806,9801,1,0,0,0,9806,9803,1,0,0,0,9807, - 9847,1,0,0,0,9808,9809,10,8,0,0,9809,9810,5,15,0,0,9810,9846,3,1250, - 625,9,9811,9812,10,7,0,0,9812,9813,7,69,0,0,9813,9846,3,1250,625, - 8,9814,9815,10,6,0,0,9815,9816,7,68,0,0,9816,9846,3,1250,625,7,9817, - 9818,10,5,0,0,9818,9819,3,1320,660,0,9819,9820,3,1250,625,6,9820, - 9846,1,0,0,0,9821,9822,10,4,0,0,9822,9823,7,67,0,0,9823,9846,3,1250, - 625,5,9824,9825,10,10,0,0,9825,9826,5,26,0,0,9826,9846,3,1166,583, - 0,9827,9828,10,2,0,0,9828,9846,3,1320,660,0,9829,9830,10,1,0,0,9830, - 9832,5,116,0,0,9831,9833,5,77,0,0,9832,9831,1,0,0,0,9832,9833,1, - 0,0,0,9833,9843,1,0,0,0,9834,9835,5,56,0,0,9835,9836,5,64,0,0,9836, - 9844,3,1250,625,0,9837,9838,5,275,0,0,9838,9839,5,2,0,0,9839,9840, - 3,1340,670,0,9840,9841,5,3,0,0,9841,9844,1,0,0,0,9842,9844,5,188, - 0,0,9843,9834,1,0,0,0,9843,9837,1,0,0,0,9843,9842,1,0,0,0,9844,9846, - 1,0,0,0,9845,9808,1,0,0,0,9845,9811,1,0,0,0,9845,9814,1,0,0,0,9845, - 9817,1,0,0,0,9845,9821,1,0,0,0,9845,9824,1,0,0,0,9845,9827,1,0,0, - 0,9845,9829,1,0,0,0,9846,9849,1,0,0,0,9847,9845,1,0,0,0,9847,9848, - 1,0,0,0,9848,1251,1,0,0,0,9849,9847,1,0,0,0,9850,9851,5,396,0,0, - 9851,9887,3,1000,500,0,9852,9855,5,35,0,0,9853,9856,3,1000,500,0, - 9854,9856,3,1342,671,0,9855,9853,1,0,0,0,9855,9854,1,0,0,0,9856, - 9887,1,0,0,0,9857,9858,5,28,0,0,9858,9887,3,1380,690,0,9859,9860, - 5,470,0,0,9860,9861,5,2,0,0,9861,9862,3,1326,663,0,9862,9863,5,3, - 0,0,9863,9887,1,0,0,0,9864,9865,5,98,0,0,9865,9887,3,1000,500,0, - 9866,9887,3,1446,723,0,9867,9887,3,1254,627,0,9868,9869,5,2,0,0, - 9869,9870,3,1210,605,0,9870,9871,5,3,0,0,9871,9872,3,1380,690,0, - 9872,9887,1,0,0,0,9873,9887,3,1362,681,0,9874,9887,3,1258,629,0, - 9875,9877,3,1000,500,0,9876,9878,3,1378,689,0,9877,9876,1,0,0,0, - 9877,9878,1,0,0,0,9878,9887,1,0,0,0,9879,9887,3,1310,655,0,9880, - 9887,3,1312,656,0,9881,9882,3,1308,654,0,9882,9883,5,125,0,0,9883, - 9884,3,1308,654,0,9884,9887,1,0,0,0,9885,9887,3,1372,686,0,9886, - 9850,1,0,0,0,9886,9852,1,0,0,0,9886,9857,1,0,0,0,9886,9859,1,0,0, - 0,9886,9864,1,0,0,0,9886,9866,1,0,0,0,9886,9867,1,0,0,0,9886,9868, - 1,0,0,0,9886,9873,1,0,0,0,9886,9874,1,0,0,0,9886,9875,1,0,0,0,9886, - 9879,1,0,0,0,9886,9880,1,0,0,0,9886,9881,1,0,0,0,9886,9885,1,0,0, - 0,9887,1253,1,0,0,0,9888,9889,5,574,0,0,9889,1255,1,0,0,0,9890,9916, - 3,1442,721,0,9891,9913,5,2,0,0,9892,9896,3,1336,668,0,9893,9894, - 5,6,0,0,9894,9895,5,101,0,0,9895,9897,3,1338,669,0,9896,9893,1,0, - 0,0,9896,9897,1,0,0,0,9897,9899,1,0,0,0,9898,9900,3,1040,520,0,9899, - 9898,1,0,0,0,9899,9900,1,0,0,0,9900,9914,1,0,0,0,9901,9902,5,101, - 0,0,9902,9904,3,1338,669,0,9903,9905,3,1040,520,0,9904,9903,1,0, - 0,0,9904,9905,1,0,0,0,9905,9914,1,0,0,0,9906,9907,7,57,0,0,9907, - 9909,3,1336,668,0,9908,9910,3,1040,520,0,9909,9908,1,0,0,0,9909, - 9910,1,0,0,0,9910,9914,1,0,0,0,9911,9914,5,9,0,0,9912,9914,1,0,0, - 0,9913,9892,1,0,0,0,9913,9901,1,0,0,0,9913,9906,1,0,0,0,9913,9911, - 1,0,0,0,9913,9912,1,0,0,0,9914,9915,1,0,0,0,9915,9917,5,3,0,0,9916, - 9891,1,0,0,0,9916,9917,1,0,0,0,9917,1257,1,0,0,0,9918,9920,3,1256, - 628,0,9919,9921,3,1282,641,0,9920,9919,1,0,0,0,9920,9921,1,0,0,0, - 9921,9923,1,0,0,0,9922,9924,3,1284,642,0,9923,9922,1,0,0,0,9923, - 9924,1,0,0,0,9924,9926,1,0,0,0,9925,9927,3,1292,646,0,9926,9925, - 1,0,0,0,9926,9927,1,0,0,0,9927,9930,1,0,0,0,9928,9930,3,1262,631, - 0,9929,9918,1,0,0,0,9929,9928,1,0,0,0,9930,1259,1,0,0,0,9931,9934, - 3,1256,628,0,9932,9934,3,1262,631,0,9933,9931,1,0,0,0,9933,9932, - 1,0,0,0,9934,1261,1,0,0,0,9935,9936,5,108,0,0,9936,9937,5,62,0,0, - 9937,9938,5,2,0,0,9938,9939,3,1210,605,0,9939,9940,5,3,0,0,9940, - 10120,1,0,0,0,9941,10120,5,48,0,0,9942,9947,5,50,0,0,9943,9944,5, - 2,0,0,9944,9945,3,1454,727,0,9945,9946,5,3,0,0,9946,9948,1,0,0,0, - 9947,9943,1,0,0,0,9947,9948,1,0,0,0,9948,10120,1,0,0,0,9949,9954, - 5,51,0,0,9950,9951,5,2,0,0,9951,9952,3,1454,727,0,9952,9953,5,3, - 0,0,9953,9955,1,0,0,0,9954,9950,1,0,0,0,9954,9955,1,0,0,0,9955,10120, - 1,0,0,0,9956,9961,5,75,0,0,9957,9958,5,2,0,0,9958,9959,3,1454,727, - 0,9959,9960,5,3,0,0,9960,9962,1,0,0,0,9961,9957,1,0,0,0,9961,9962, - 1,0,0,0,9962,10120,1,0,0,0,9963,9968,5,76,0,0,9964,9965,5,2,0,0, - 9965,9966,3,1454,727,0,9966,9967,5,3,0,0,9967,9969,1,0,0,0,9968, - 9964,1,0,0,0,9968,9969,1,0,0,0,9969,10120,1,0,0,0,9970,10120,5,49, - 0,0,9971,10120,5,52,0,0,9972,10120,5,89,0,0,9973,10120,5,99,0,0, - 9974,10120,5,47,0,0,9975,10120,5,111,0,0,9976,9977,5,41,0,0,9977, - 9978,5,2,0,0,9978,9979,3,1210,605,0,9979,9980,5,36,0,0,9980,9981, - 3,1166,583,0,9981,9982,5,3,0,0,9982,10120,1,0,0,0,9983,9984,5,397, - 0,0,9984,9986,5,2,0,0,9985,9987,3,1346,673,0,9986,9985,1,0,0,0,9986, - 9987,1,0,0,0,9987,9988,1,0,0,0,9988,10120,5,3,0,0,9989,9990,5,489, - 0,0,9990,9991,5,2,0,0,9991,9994,3,1210,605,0,9992,9993,5,6,0,0,9993, - 9995,3,1350,675,0,9994,9992,1,0,0,0,9994,9995,1,0,0,0,9995,9996, - 1,0,0,0,9996,9997,5,3,0,0,9997,10120,1,0,0,0,9998,9999,5,410,0,0, - 9999,10000,5,2,0,0,10000,10001,3,1352,676,0,10001,10002,5,3,0,0, - 10002,10120,1,0,0,0,10003,10004,5,411,0,0,10004,10006,5,2,0,0,10005, - 10007,3,1354,677,0,10006,10005,1,0,0,0,10006,10007,1,0,0,0,10007, - 10008,1,0,0,0,10008,10120,5,3,0,0,10009,10010,5,417,0,0,10010,10012, - 5,2,0,0,10011,10013,3,1356,678,0,10012,10011,1,0,0,0,10012,10013, - 1,0,0,0,10013,10014,1,0,0,0,10014,10120,5,3,0,0,10015,10016,5,420, - 0,0,10016,10017,5,2,0,0,10017,10018,3,1210,605,0,10018,10019,5,36, - 0,0,10019,10020,3,1166,583,0,10020,10021,5,3,0,0,10021,10120,1,0, - 0,0,10022,10023,5,421,0,0,10023,10025,5,2,0,0,10024,10026,7,70,0, - 0,10025,10024,1,0,0,0,10025,10026,1,0,0,0,10026,10027,1,0,0,0,10027, - 10028,3,1358,679,0,10028,10029,5,3,0,0,10029,10120,1,0,0,0,10030, - 10031,5,408,0,0,10031,10032,5,2,0,0,10032,10033,3,1210,605,0,10033, - 10034,5,6,0,0,10034,10035,3,1210,605,0,10035,10036,5,3,0,0,10036, - 10120,1,0,0,0,10037,10038,5,393,0,0,10038,10039,5,2,0,0,10039,10040, - 3,1326,663,0,10040,10041,5,3,0,0,10041,10120,1,0,0,0,10042,10043, - 5,399,0,0,10043,10044,5,2,0,0,10044,10045,3,1326,663,0,10045,10046, - 5,3,0,0,10046,10120,1,0,0,0,10047,10048,5,404,0,0,10048,10049,5, - 2,0,0,10049,10050,3,1326,663,0,10050,10051,5,3,0,0,10051,10120,1, - 0,0,0,10052,10053,5,425,0,0,10053,10054,5,2,0,0,10054,10055,3,1326, - 663,0,10055,10056,5,3,0,0,10056,10120,1,0,0,0,10057,10058,5,426, - 0,0,10058,10059,5,2,0,0,10059,10060,5,266,0,0,10060,10066,3,1488, - 744,0,10061,10064,5,6,0,0,10062,10065,3,1268,634,0,10063,10065,3, - 1326,663,0,10064,10062,1,0,0,0,10064,10063,1,0,0,0,10065,10067,1, - 0,0,0,10066,10061,1,0,0,0,10066,10067,1,0,0,0,10067,10068,1,0,0, - 0,10068,10069,5,3,0,0,10069,10120,1,0,0,0,10070,10071,5,427,0,0, - 10071,10072,5,2,0,0,10072,10073,3,1252,626,0,10073,10074,3,1278, - 639,0,10074,10075,5,3,0,0,10075,10120,1,0,0,0,10076,10077,5,428, - 0,0,10077,10078,5,2,0,0,10078,10079,3,1270,635,0,10079,10080,5,3, - 0,0,10080,10120,1,0,0,0,10081,10082,5,429,0,0,10082,10083,5,2,0, - 0,10083,10084,3,1274,637,0,10084,10086,3,1210,605,0,10085,10087, - 3,1276,638,0,10086,10085,1,0,0,0,10086,10087,1,0,0,0,10087,10088, - 1,0,0,0,10088,10089,5,3,0,0,10089,10120,1,0,0,0,10090,10091,5,430, - 0,0,10091,10092,5,2,0,0,10092,10093,5,266,0,0,10093,10096,3,1488, - 744,0,10094,10095,5,6,0,0,10095,10097,3,1210,605,0,10096,10094,1, - 0,0,0,10096,10097,1,0,0,0,10097,10098,1,0,0,0,10098,10099,5,3,0, - 0,10099,10120,1,0,0,0,10100,10101,5,431,0,0,10101,10102,5,2,0,0, - 10102,10103,5,383,0,0,10103,10104,3,1210,605,0,10104,10105,5,6,0, - 0,10105,10107,3,1264,632,0,10106,10108,3,1266,633,0,10107,10106, - 1,0,0,0,10107,10108,1,0,0,0,10108,10109,1,0,0,0,10109,10110,5,3, - 0,0,10110,10120,1,0,0,0,10111,10112,5,432,0,0,10112,10113,5,2,0, - 0,10113,10114,3,1274,637,0,10114,10115,3,1210,605,0,10115,10116, - 5,36,0,0,10116,10117,3,1170,585,0,10117,10118,5,3,0,0,10118,10120, - 1,0,0,0,10119,9935,1,0,0,0,10119,9941,1,0,0,0,10119,9942,1,0,0,0, - 10119,9949,1,0,0,0,10119,9956,1,0,0,0,10119,9963,1,0,0,0,10119,9970, - 1,0,0,0,10119,9971,1,0,0,0,10119,9972,1,0,0,0,10119,9973,1,0,0,0, - 10119,9974,1,0,0,0,10119,9975,1,0,0,0,10119,9976,1,0,0,0,10119,9983, - 1,0,0,0,10119,9989,1,0,0,0,10119,9998,1,0,0,0,10119,10003,1,0,0, - 0,10119,10009,1,0,0,0,10119,10015,1,0,0,0,10119,10022,1,0,0,0,10119, - 10030,1,0,0,0,10119,10037,1,0,0,0,10119,10042,1,0,0,0,10119,10047, - 1,0,0,0,10119,10052,1,0,0,0,10119,10057,1,0,0,0,10119,10070,1,0, - 0,0,10119,10076,1,0,0,0,10119,10081,1,0,0,0,10119,10090,1,0,0,0, - 10119,10100,1,0,0,0,10119,10111,1,0,0,0,10120,1263,1,0,0,0,10121, - 10122,5,375,0,0,10122,10127,3,1210,605,0,10123,10124,5,375,0,0,10124, - 10125,5,269,0,0,10125,10127,5,450,0,0,10126,10121,1,0,0,0,10126, - 10123,1,0,0,0,10127,1265,1,0,0,0,10128,10129,5,6,0,0,10129,10130, - 5,339,0,0,10130,10139,5,385,0,0,10131,10132,5,6,0,0,10132,10133, - 5,339,0,0,10133,10139,5,269,0,0,10134,10135,5,6,0,0,10135,10136, - 5,339,0,0,10136,10137,5,269,0,0,10137,10139,5,450,0,0,10138,10128, - 1,0,0,0,10138,10131,1,0,0,0,10138,10134,1,0,0,0,10139,1267,1,0,0, - 0,10140,10141,5,424,0,0,10141,10142,5,2,0,0,10142,10143,3,1270,635, - 0,10143,10144,5,3,0,0,10144,1269,1,0,0,0,10145,10150,3,1272,636, - 0,10146,10147,5,6,0,0,10147,10149,3,1272,636,0,10148,10146,1,0,0, - 0,10149,10152,1,0,0,0,10150,10148,1,0,0,0,10150,10151,1,0,0,0,10151, - 1271,1,0,0,0,10152,10150,1,0,0,0,10153,10156,3,1210,605,0,10154, - 10155,5,36,0,0,10155,10157,3,1488,744,0,10156,10154,1,0,0,0,10156, - 10157,1,0,0,0,10157,1273,1,0,0,0,10158,10159,7,71,0,0,10159,1275, - 1,0,0,0,10160,10161,5,292,0,0,10161,10165,5,378,0,0,10162,10163, - 5,347,0,0,10163,10165,5,378,0,0,10164,10160,1,0,0,0,10164,10162, - 1,0,0,0,10165,1277,1,0,0,0,10166,10167,5,286,0,0,10167,10182,3,1252, - 626,0,10168,10169,5,286,0,0,10169,10170,3,1252,626,0,10170,10171, - 3,1280,640,0,10171,10182,1,0,0,0,10172,10173,5,286,0,0,10173,10174, - 3,1280,640,0,10174,10175,3,1252,626,0,10175,10182,1,0,0,0,10176, - 10177,5,286,0,0,10177,10178,3,1280,640,0,10178,10179,3,1252,626, - 0,10179,10180,3,1280,640,0,10180,10182,1,0,0,0,10181,10166,1,0,0, - 0,10181,10168,1,0,0,0,10181,10172,1,0,0,0,10181,10176,1,0,0,0,10182, - 1279,1,0,0,0,10183,10184,5,147,0,0,10184,10185,7,72,0,0,10185,1281, - 1,0,0,0,10186,10187,5,479,0,0,10187,10188,5,66,0,0,10188,10189,5, - 2,0,0,10189,10190,3,1042,521,0,10190,10191,5,3,0,0,10191,1283,1, - 0,0,0,10192,10193,5,480,0,0,10193,10194,5,2,0,0,10194,10195,5,103, - 0,0,10195,10196,3,1210,605,0,10196,10197,5,3,0,0,10197,1285,1,0, - 0,0,10198,10199,5,104,0,0,10199,10200,3,1288,644,0,10200,1287,1, - 0,0,0,10201,10206,3,1290,645,0,10202,10203,5,6,0,0,10203,10205,3, - 1290,645,0,10204,10202,1,0,0,0,10205,10208,1,0,0,0,10206,10204,1, - 0,0,0,10206,10207,1,0,0,0,10207,1289,1,0,0,0,10208,10206,1,0,0,0, - 10209,10210,3,1472,736,0,10210,10211,5,36,0,0,10211,10212,3,1294, - 647,0,10212,1291,1,0,0,0,10213,10216,5,124,0,0,10214,10217,3,1294, - 647,0,10215,10217,3,1472,736,0,10216,10214,1,0,0,0,10216,10215,1, - 0,0,0,10217,1293,1,0,0,0,10218,10220,5,2,0,0,10219,10221,3,1296, - 648,0,10220,10219,1,0,0,0,10220,10221,1,0,0,0,10221,10223,1,0,0, - 0,10222,10224,3,1298,649,0,10223,10222,1,0,0,0,10223,10224,1,0,0, - 0,10224,10226,1,0,0,0,10225,10227,3,1040,520,0,10226,10225,1,0,0, - 0,10226,10227,1,0,0,0,10227,10229,1,0,0,0,10228,10230,3,1300,650, - 0,10229,10228,1,0,0,0,10229,10230,1,0,0,0,10230,10231,1,0,0,0,10231, - 10232,5,3,0,0,10232,1295,1,0,0,0,10233,10234,3,1472,736,0,10234, - 1297,1,0,0,0,10235,10236,5,285,0,0,10236,10237,5,147,0,0,10237,10238, - 3,1326,663,0,10238,1299,1,0,0,0,10239,10240,5,299,0,0,10240,10242, - 3,1302,651,0,10241,10243,3,1306,653,0,10242,10241,1,0,0,0,10242, - 10243,1,0,0,0,10243,10255,1,0,0,0,10244,10245,5,320,0,0,10245,10247, - 3,1302,651,0,10246,10248,3,1306,653,0,10247,10246,1,0,0,0,10247, - 10248,1,0,0,0,10248,10255,1,0,0,0,10249,10250,5,481,0,0,10250,10252, - 3,1302,651,0,10251,10253,3,1306,653,0,10252,10251,1,0,0,0,10252, - 10253,1,0,0,0,10253,10255,1,0,0,0,10254,10239,1,0,0,0,10254,10244, - 1,0,0,0,10254,10249,1,0,0,0,10255,1301,1,0,0,0,10256,10263,3,1304, - 652,0,10257,10258,5,387,0,0,10258,10259,3,1304,652,0,10259,10260, - 5,33,0,0,10260,10261,3,1304,652,0,10261,10263,1,0,0,0,10262,10256, - 1,0,0,0,10262,10257,1,0,0,0,10263,1303,1,0,0,0,10264,10265,5,362, - 0,0,10265,10272,7,73,0,0,10266,10267,5,434,0,0,10267,10272,5,414, - 0,0,10268,10269,3,1210,605,0,10269,10270,7,73,0,0,10270,10272,1, - 0,0,0,10271,10264,1,0,0,0,10271,10266,1,0,0,0,10271,10268,1,0,0, - 0,10272,1305,1,0,0,0,10273,10280,5,199,0,0,10274,10275,5,434,0,0, - 10275,10281,5,414,0,0,10276,10281,5,66,0,0,10277,10281,5,467,0,0, - 10278,10279,5,269,0,0,10279,10281,5,482,0,0,10280,10274,1,0,0,0, - 10280,10276,1,0,0,0,10280,10277,1,0,0,0,10280,10278,1,0,0,0,10281, - 1307,1,0,0,0,10282,10283,5,414,0,0,10283,10285,5,2,0,0,10284,10286, - 3,1326,663,0,10285,10284,1,0,0,0,10285,10286,1,0,0,0,10286,10287, - 1,0,0,0,10287,10295,5,3,0,0,10288,10289,5,2,0,0,10289,10290,3,1326, - 663,0,10290,10291,5,6,0,0,10291,10292,3,1210,605,0,10292,10293,5, - 3,0,0,10293,10295,1,0,0,0,10294,10282,1,0,0,0,10294,10288,1,0,0, - 0,10295,1309,1,0,0,0,10296,10297,5,414,0,0,10297,10299,5,2,0,0,10298, - 10300,3,1326,663,0,10299,10298,1,0,0,0,10299,10300,1,0,0,0,10300, - 10301,1,0,0,0,10301,10302,5,3,0,0,10302,1311,1,0,0,0,10303,10304, - 5,2,0,0,10304,10305,3,1210,605,0,10305,10306,5,6,0,0,10306,10307, - 3,1326,663,0,10307,10308,5,3,0,0,10308,1313,1,0,0,0,10309,10310, - 7,74,0,0,10310,1315,1,0,0,0,10311,10314,5,29,0,0,10312,10314,3,1318, - 659,0,10313,10311,1,0,0,0,10313,10312,1,0,0,0,10314,1317,1,0,0,0, - 10315,10316,7,75,0,0,10316,1319,1,0,0,0,10317,10324,5,29,0,0,10318, - 10319,5,278,0,0,10319,10320,5,2,0,0,10320,10321,3,730,365,0,10321, - 10322,5,3,0,0,10322,10324,1,0,0,0,10323,10317,1,0,0,0,10323,10318, - 1,0,0,0,10324,1321,1,0,0,0,10325,10332,3,1316,658,0,10326,10327, - 5,278,0,0,10327,10328,5,2,0,0,10328,10329,3,730,365,0,10329,10330, - 5,3,0,0,10330,10332,1,0,0,0,10331,10325,1,0,0,0,10331,10326,1,0, - 0,0,10332,1323,1,0,0,0,10333,10346,3,1316,658,0,10334,10335,5,278, - 0,0,10335,10336,5,2,0,0,10336,10337,3,730,365,0,10337,10338,5,3, - 0,0,10338,10346,1,0,0,0,10339,10346,5,120,0,0,10340,10341,5,77,0, - 0,10341,10346,5,120,0,0,10342,10346,5,114,0,0,10343,10344,5,77,0, - 0,10344,10346,5,114,0,0,10345,10333,1,0,0,0,10345,10334,1,0,0,0, - 10345,10339,1,0,0,0,10345,10340,1,0,0,0,10345,10342,1,0,0,0,10345, - 10343,1,0,0,0,10346,1325,1,0,0,0,10347,10352,3,1210,605,0,10348, - 10349,5,6,0,0,10349,10351,3,1210,605,0,10350,10348,1,0,0,0,10351, - 10354,1,0,0,0,10352,10350,1,0,0,0,10352,10353,1,0,0,0,10353,1327, - 1,0,0,0,10354,10352,1,0,0,0,10355,10360,3,1334,667,0,10356,10357, - 5,6,0,0,10357,10359,3,1334,667,0,10358,10356,1,0,0,0,10359,10362, - 1,0,0,0,10360,10358,1,0,0,0,10360,10361,1,0,0,0,10361,1329,1,0,0, - 0,10362,10360,1,0,0,0,10363,10368,3,1332,666,0,10364,10365,5,6,0, - 0,10365,10367,3,1332,666,0,10366,10364,1,0,0,0,10367,10370,1,0,0, - 0,10368,10366,1,0,0,0,10368,10369,1,0,0,0,10369,1331,1,0,0,0,10370, - 10368,1,0,0,0,10371,10377,3,1430,715,0,10372,10373,5,2,0,0,10373, - 10374,3,1210,605,0,10374,10375,5,3,0,0,10375,10377,1,0,0,0,10376, - 10371,1,0,0,0,10376,10372,1,0,0,0,10377,1333,1,0,0,0,10378,10381, - 3,1430,715,0,10379,10381,3,1210,605,0,10380,10378,1,0,0,0,10380, - 10379,1,0,0,0,10381,1335,1,0,0,0,10382,10387,3,1338,669,0,10383, - 10384,5,6,0,0,10384,10386,3,1338,669,0,10385,10383,1,0,0,0,10386, - 10389,1,0,0,0,10387,10385,1,0,0,0,10387,10388,1,0,0,0,10388,1337, - 1,0,0,0,10389,10387,1,0,0,0,10390,10396,3,1210,605,0,10391,10392, - 3,682,341,0,10392,10393,7,76,0,0,10393,10394,3,1210,605,0,10394, - 10396,1,0,0,0,10395,10390,1,0,0,0,10395,10391,1,0,0,0,10396,1339, - 1,0,0,0,10397,10402,3,1166,583,0,10398,10399,5,6,0,0,10399,10401, - 3,1166,583,0,10400,10398,1,0,0,0,10401,10404,1,0,0,0,10402,10400, - 1,0,0,0,10402,10403,1,0,0,0,10403,1341,1,0,0,0,10404,10402,1,0,0, - 0,10405,10408,5,4,0,0,10406,10409,3,1326,663,0,10407,10409,3,1344, - 672,0,10408,10406,1,0,0,0,10408,10407,1,0,0,0,10408,10409,1,0,0, - 0,10409,10410,1,0,0,0,10410,10411,5,5,0,0,10411,1343,1,0,0,0,10412, - 10417,3,1342,671,0,10413,10414,5,6,0,0,10414,10416,3,1342,671,0, - 10415,10413,1,0,0,0,10416,10419,1,0,0,0,10417,10415,1,0,0,0,10417, - 10418,1,0,0,0,10418,1345,1,0,0,0,10419,10417,1,0,0,0,10420,10421, - 3,1348,674,0,10421,10422,5,64,0,0,10422,10423,3,1210,605,0,10423, - 1347,1,0,0,0,10424,10433,3,1490,745,0,10425,10433,5,384,0,0,10426, - 10433,5,264,0,0,10427,10433,5,176,0,0,10428,10433,5,218,0,0,10429, - 10433,5,261,0,0,10430,10433,5,326,0,0,10431,10433,3,1456,728,0,10432, - 10424,1,0,0,0,10432,10425,1,0,0,0,10432,10426,1,0,0,0,10432,10427, - 1,0,0,0,10432,10428,1,0,0,0,10432,10429,1,0,0,0,10432,10430,1,0, - 0,0,10432,10431,1,0,0,0,10433,1349,1,0,0,0,10434,10435,7,77,0,0, - 10435,1351,1,0,0,0,10436,10437,3,1210,605,0,10437,10438,5,84,0,0, - 10438,10439,3,1210,605,0,10439,10440,5,64,0,0,10440,10443,3,1210, - 605,0,10441,10442,5,62,0,0,10442,10444,3,1210,605,0,10443,10441, - 1,0,0,0,10443,10444,1,0,0,0,10444,1353,1,0,0,0,10445,10446,3,1250, - 625,0,10446,10447,5,68,0,0,10447,10448,3,1250,625,0,10448,1355,1, - 0,0,0,10449,10450,3,1210,605,0,10450,10451,5,64,0,0,10451,10452, - 3,1210,605,0,10452,10453,5,62,0,0,10453,10454,3,1210,605,0,10454, - 10477,1,0,0,0,10455,10456,3,1210,605,0,10456,10457,5,62,0,0,10457, - 10458,3,1210,605,0,10458,10459,5,64,0,0,10459,10460,3,1210,605,0, - 10460,10477,1,0,0,0,10461,10462,3,1210,605,0,10462,10463,5,64,0, - 0,10463,10464,3,1210,605,0,10464,10477,1,0,0,0,10465,10466,3,1210, - 605,0,10466,10467,5,62,0,0,10467,10468,3,1210,605,0,10468,10477, - 1,0,0,0,10469,10470,3,1210,605,0,10470,10471,5,127,0,0,10471,10472, - 3,1210,605,0,10472,10473,5,197,0,0,10473,10474,3,1210,605,0,10474, - 10477,1,0,0,0,10475,10477,3,1326,663,0,10476,10449,1,0,0,0,10476, - 10455,1,0,0,0,10476,10461,1,0,0,0,10476,10465,1,0,0,0,10476,10469, - 1,0,0,0,10476,10475,1,0,0,0,10477,1357,1,0,0,0,10478,10479,3,1210, - 605,0,10479,10480,5,64,0,0,10480,10481,3,1326,663,0,10481,10486, - 1,0,0,0,10482,10483,5,64,0,0,10483,10486,3,1326,663,0,10484,10486, - 3,1326,663,0,10485,10478,1,0,0,0,10485,10482,1,0,0,0,10485,10484, - 1,0,0,0,10486,1359,1,0,0,0,10487,10493,3,1000,500,0,10488,10489, - 5,2,0,0,10489,10490,3,1326,663,0,10490,10491,5,3,0,0,10491,10493, - 1,0,0,0,10492,10487,1,0,0,0,10492,10488,1,0,0,0,10493,1361,1,0,0, - 0,10494,10496,5,40,0,0,10495,10497,3,1370,685,0,10496,10495,1,0, - 0,0,10496,10497,1,0,0,0,10497,10498,1,0,0,0,10498,10500,3,1364,682, - 0,10499,10501,3,1368,684,0,10500,10499,1,0,0,0,10500,10501,1,0,0, - 0,10501,10502,1,0,0,0,10502,10503,5,454,0,0,10503,1363,1,0,0,0,10504, - 10506,3,1366,683,0,10505,10504,1,0,0,0,10506,10507,1,0,0,0,10507, - 10505,1,0,0,0,10507,10508,1,0,0,0,10508,1365,1,0,0,0,10509,10510, - 5,102,0,0,10510,10511,3,1210,605,0,10511,10512,5,93,0,0,10512,10513, - 3,1210,605,0,10513,1367,1,0,0,0,10514,10515,5,58,0,0,10515,10516, - 3,1210,605,0,10516,1369,1,0,0,0,10517,10518,3,1210,605,0,10518,1371, - 1,0,0,0,10519,10521,3,1472,736,0,10520,10522,3,1378,689,0,10521, - 10520,1,0,0,0,10521,10522,1,0,0,0,10522,1373,1,0,0,0,10523,10526, - 5,11,0,0,10524,10527,3,1436,718,0,10525,10527,5,9,0,0,10526,10524, - 1,0,0,0,10526,10525,1,0,0,0,10527,10541,1,0,0,0,10528,10537,5,4, - 0,0,10529,10538,3,1210,605,0,10530,10532,3,1376,688,0,10531,10530, - 1,0,0,0,10531,10532,1,0,0,0,10532,10533,1,0,0,0,10533,10535,5,8, - 0,0,10534,10536,3,1376,688,0,10535,10534,1,0,0,0,10535,10536,1,0, - 0,0,10536,10538,1,0,0,0,10537,10529,1,0,0,0,10537,10531,1,0,0,0, - 10538,10539,1,0,0,0,10539,10541,5,5,0,0,10540,10523,1,0,0,0,10540, - 10528,1,0,0,0,10541,1375,1,0,0,0,10542,10543,3,1210,605,0,10543, - 1377,1,0,0,0,10544,10546,3,1374,687,0,10545,10544,1,0,0,0,10546, - 10547,1,0,0,0,10547,10545,1,0,0,0,10547,10548,1,0,0,0,10548,1379, - 1,0,0,0,10549,10551,3,1374,687,0,10550,10549,1,0,0,0,10551,10554, - 1,0,0,0,10552,10550,1,0,0,0,10552,10553,1,0,0,0,10553,1381,1,0,0, - 0,10554,10552,1,0,0,0,10555,10556,3,1384,692,0,10556,1383,1,0,0, - 0,10557,10562,3,1386,693,0,10558,10559,5,6,0,0,10559,10561,3,1386, - 693,0,10560,10558,1,0,0,0,10561,10564,1,0,0,0,10562,10560,1,0,0, - 0,10562,10563,1,0,0,0,10563,1385,1,0,0,0,10564,10562,1,0,0,0,10565, - 10570,3,1334,667,0,10566,10567,5,36,0,0,10567,10571,3,1488,744,0, - 10568,10571,3,1490,745,0,10569,10571,1,0,0,0,10570,10566,1,0,0,0, - 10570,10568,1,0,0,0,10570,10569,1,0,0,0,10571,10574,1,0,0,0,10572, - 10574,5,9,0,0,10573,10565,1,0,0,0,10573,10572,1,0,0,0,10574,1387, - 1,0,0,0,10575,10580,3,1410,705,0,10576,10577,5,6,0,0,10577,10579, - 3,1410,705,0,10578,10576,1,0,0,0,10579,10582,1,0,0,0,10580,10578, - 1,0,0,0,10580,10581,1,0,0,0,10581,1389,1,0,0,0,10582,10580,1,0,0, - 0,10583,10588,3,1404,702,0,10584,10585,5,6,0,0,10585,10587,3,1404, - 702,0,10586,10584,1,0,0,0,10587,10590,1,0,0,0,10588,10586,1,0,0, - 0,10588,10589,1,0,0,0,10589,1391,1,0,0,0,10590,10588,1,0,0,0,10591, - 10596,3,1420,710,0,10592,10593,5,6,0,0,10593,10595,3,1420,710,0, - 10594,10592,1,0,0,0,10595,10598,1,0,0,0,10596,10594,1,0,0,0,10596, - 10597,1,0,0,0,10597,1393,1,0,0,0,10598,10596,1,0,0,0,10599,10604, - 3,1418,709,0,10600,10601,5,6,0,0,10601,10603,3,1418,709,0,10602, - 10600,1,0,0,0,10603,10606,1,0,0,0,10604,10602,1,0,0,0,10604,10605, - 1,0,0,0,10605,1395,1,0,0,0,10606,10604,1,0,0,0,10607,10612,3,1426, - 713,0,10608,10609,5,6,0,0,10609,10611,3,1426,713,0,10610,10608,1, - 0,0,0,10611,10614,1,0,0,0,10612,10610,1,0,0,0,10612,10613,1,0,0, - 0,10613,1397,1,0,0,0,10614,10612,1,0,0,0,10615,10617,3,1472,736, - 0,10616,10618,3,1378,689,0,10617,10616,1,0,0,0,10617,10618,1,0,0, - 0,10618,1399,1,0,0,0,10619,10621,3,1472,736,0,10620,10622,3,1378, - 689,0,10621,10620,1,0,0,0,10621,10622,1,0,0,0,10622,1401,1,0,0,0, - 10623,10625,3,1472,736,0,10624,10626,3,1378,689,0,10625,10624,1, - 0,0,0,10625,10626,1,0,0,0,10626,1403,1,0,0,0,10627,10629,3,1472, - 736,0,10628,10630,3,1378,689,0,10629,10628,1,0,0,0,10629,10630,1, - 0,0,0,10630,1405,1,0,0,0,10631,10633,3,1472,736,0,10632,10634,3, - 1378,689,0,10633,10632,1,0,0,0,10633,10634,1,0,0,0,10634,1407,1, - 0,0,0,10635,10637,3,1472,736,0,10636,10638,3,558,279,0,10637,10636, - 1,0,0,0,10637,10638,1,0,0,0,10638,1409,1,0,0,0,10639,10641,3,1472, - 736,0,10640,10642,3,1378,689,0,10641,10640,1,0,0,0,10641,10642,1, - 0,0,0,10642,1411,1,0,0,0,10643,10648,3,1400,700,0,10644,10645,5, - 6,0,0,10645,10647,3,1400,700,0,10646,10644,1,0,0,0,10647,10650,1, - 0,0,0,10648,10646,1,0,0,0,10648,10649,1,0,0,0,10649,1413,1,0,0,0, - 10650,10648,1,0,0,0,10651,10656,3,1434,717,0,10652,10653,5,6,0,0, - 10653,10655,3,1434,717,0,10654,10652,1,0,0,0,10655,10658,1,0,0,0, - 10656,10654,1,0,0,0,10656,10657,1,0,0,0,10657,1415,1,0,0,0,10658, - 10656,1,0,0,0,10659,10661,3,1472,736,0,10660,10662,3,558,279,0,10661, - 10660,1,0,0,0,10661,10662,1,0,0,0,10662,1417,1,0,0,0,10663,10665, - 3,1472,736,0,10664,10666,3,558,279,0,10665,10664,1,0,0,0,10665,10666, - 1,0,0,0,10666,1419,1,0,0,0,10667,10669,3,1472,736,0,10668,10670, - 3,558,279,0,10669,10668,1,0,0,0,10669,10670,1,0,0,0,10670,1421,1, - 0,0,0,10671,10672,3,1472,736,0,10672,1423,1,0,0,0,10673,10674,3, - 1472,736,0,10674,1425,1,0,0,0,10675,10680,3,1480,740,0,10676,10677, - 3,1472,736,0,10677,10678,3,1378,689,0,10678,10680,1,0,0,0,10679, - 10675,1,0,0,0,10679,10676,1,0,0,0,10680,1427,1,0,0,0,10681,10686, - 3,1480,740,0,10682,10683,3,1472,736,0,10683,10684,3,1378,689,0,10684, - 10686,1,0,0,0,10685,10681,1,0,0,0,10685,10682,1,0,0,0,10686,1429, - 1,0,0,0,10687,10691,3,1472,736,0,10688,10690,3,1374,687,0,10689, - 10688,1,0,0,0,10690,10693,1,0,0,0,10691,10689,1,0,0,0,10691,10692, - 1,0,0,0,10692,1431,1,0,0,0,10693,10691,1,0,0,0,10694,10695,3,1472, - 736,0,10695,1433,1,0,0,0,10696,10697,3,1472,736,0,10697,1435,1,0, - 0,0,10698,10699,3,1488,744,0,10699,1437,1,0,0,0,10700,10701,3,1456, - 728,0,10701,1439,1,0,0,0,10702,10707,3,1480,740,0,10703,10704,3, - 1472,736,0,10704,10705,3,1378,689,0,10705,10707,1,0,0,0,10706,10702, - 1,0,0,0,10706,10703,1,0,0,0,10707,1441,1,0,0,0,10708,10713,3,1480, - 740,0,10709,10710,3,1472,736,0,10710,10711,3,1378,689,0,10711,10713, - 1,0,0,0,10712,10708,1,0,0,0,10712,10709,1,0,0,0,10713,1443,1,0,0, - 0,10714,10719,3,1482,741,0,10715,10716,3,1472,736,0,10716,10717, - 3,1378,689,0,10717,10719,1,0,0,0,10718,10714,1,0,0,0,10718,10715, - 1,0,0,0,10719,1445,1,0,0,0,10720,10756,3,1454,727,0,10721,10756, - 3,1452,726,0,10722,10756,3,1456,728,0,10723,10756,3,1450,725,0,10724, - 10756,3,1448,724,0,10725,10735,3,1442,721,0,10726,10736,3,1456,728, - 0,10727,10728,5,2,0,0,10728,10730,3,1336,668,0,10729,10731,3,1040, - 520,0,10730,10729,1,0,0,0,10730,10731,1,0,0,0,10731,10732,1,0,0, - 0,10732,10733,5,3,0,0,10733,10734,3,1456,728,0,10734,10736,1,0,0, - 0,10735,10726,1,0,0,0,10735,10727,1,0,0,0,10736,10756,1,0,0,0,10737, - 10738,3,1172,586,0,10738,10739,3,1456,728,0,10739,10756,1,0,0,0, - 10740,10750,3,1200,600,0,10741,10743,3,1456,728,0,10742,10744,3, - 1204,602,0,10743,10742,1,0,0,0,10743,10744,1,0,0,0,10744,10751,1, - 0,0,0,10745,10746,5,2,0,0,10746,10747,3,1454,727,0,10747,10748,5, - 3,0,0,10748,10749,3,1456,728,0,10749,10751,1,0,0,0,10750,10741,1, - 0,0,0,10750,10745,1,0,0,0,10751,10756,1,0,0,0,10752,10756,5,96,0, - 0,10753,10756,5,60,0,0,10754,10756,5,78,0,0,10755,10720,1,0,0,0, - 10755,10721,1,0,0,0,10755,10722,1,0,0,0,10755,10723,1,0,0,0,10755, - 10724,1,0,0,0,10755,10725,1,0,0,0,10755,10737,1,0,0,0,10755,10740, - 1,0,0,0,10755,10752,1,0,0,0,10755,10753,1,0,0,0,10755,10754,1,0, - 0,0,10756,1447,1,0,0,0,10757,10758,5,567,0,0,10758,1449,1,0,0,0, - 10759,10760,5,563,0,0,10760,1451,1,0,0,0,10761,10762,5,573,0,0,10762, - 1453,1,0,0,0,10763,10764,5,571,0,0,10764,1455,1,0,0,0,10765,10767, - 3,1458,729,0,10766,10768,3,1460,730,0,10767,10766,1,0,0,0,10767, - 10768,1,0,0,0,10768,1457,1,0,0,0,10769,10781,5,558,0,0,10770,10781, - 5,560,0,0,10771,10775,5,562,0,0,10772,10774,5,588,0,0,10773,10772, - 1,0,0,0,10774,10777,1,0,0,0,10775,10773,1,0,0,0,10775,10776,1,0, - 0,0,10776,10778,1,0,0,0,10777,10775,1,0,0,0,10778,10781,5,589,0, - 0,10779,10781,5,584,0,0,10780,10769,1,0,0,0,10780,10770,1,0,0,0, - 10780,10771,1,0,0,0,10780,10779,1,0,0,0,10781,1459,1,0,0,0,10782, - 10783,5,487,0,0,10783,10784,3,1458,729,0,10784,1461,1,0,0,0,10785, - 10791,3,1454,727,0,10786,10787,5,12,0,0,10787,10791,3,1454,727,0, - 10788,10789,5,13,0,0,10789,10791,3,1454,727,0,10790,10785,1,0,0, - 0,10790,10786,1,0,0,0,10790,10788,1,0,0,0,10791,1463,1,0,0,0,10792, - 10793,3,1468,734,0,10793,1465,1,0,0,0,10794,10795,3,1468,734,0,10795, - 1467,1,0,0,0,10796,10802,3,1486,743,0,10797,10802,5,52,0,0,10798, - 10802,5,49,0,0,10799,10802,5,89,0,0,10800,10802,5,524,0,0,10801, - 10796,1,0,0,0,10801,10797,1,0,0,0,10801,10798,1,0,0,0,10801,10799, - 1,0,0,0,10801,10800,1,0,0,0,10802,1469,1,0,0,0,10803,10808,3,1468, - 734,0,10804,10805,5,6,0,0,10805,10807,3,1468,734,0,10806,10804,1, - 0,0,0,10807,10810,1,0,0,0,10808,10806,1,0,0,0,10808,10809,1,0,0, - 0,10809,1471,1,0,0,0,10810,10808,1,0,0,0,10811,10816,3,1490,745, - 0,10812,10816,3,1494,747,0,10813,10816,3,1496,748,0,10814,10816, - 3,1732,866,0,10815,10811,1,0,0,0,10815,10812,1,0,0,0,10815,10813, - 1,0,0,0,10815,10814,1,0,0,0,10816,1473,1,0,0,0,10817,10818,3,1490, - 745,0,10818,1475,1,0,0,0,10819,10832,3,708,354,0,10820,10821,5,2, - 0,0,10821,10822,3,1210,605,0,10822,10823,5,3,0,0,10823,10824,1,0, - 0,0,10824,10826,3,1490,745,0,10825,10827,3,648,324,0,10826,10825, - 1,0,0,0,10826,10827,1,0,0,0,10827,10829,1,0,0,0,10828,10830,3,650, - 325,0,10829,10828,1,0,0,0,10829,10830,1,0,0,0,10830,10832,1,0,0, - 0,10831,10819,1,0,0,0,10831,10820,1,0,0,0,10832,1477,1,0,0,0,10833, - 10834,5,105,0,0,10834,10836,3,132,66,0,10835,10833,1,0,0,0,10835, - 10836,1,0,0,0,10836,10838,1,0,0,0,10837,10839,3,284,142,0,10838, - 10837,1,0,0,0,10838,10839,1,0,0,0,10839,1479,1,0,0,0,10840,10845, - 3,1490,745,0,10841,10845,3,1494,747,0,10842,10845,3,1732,866,0,10843, - 10845,3,1498,749,0,10844,10840,1,0,0,0,10844,10841,1,0,0,0,10844, - 10842,1,0,0,0,10844,10843,1,0,0,0,10845,1481,1,0,0,0,10846,10851, - 3,1490,745,0,10847,10851,3,1494,747,0,10848,10851,3,1732,866,0,10849, - 10851,3,1498,749,0,10850,10846,1,0,0,0,10850,10847,1,0,0,0,10850, - 10848,1,0,0,0,10850,10849,1,0,0,0,10851,1483,1,0,0,0,10852,10855, - 3,1430,715,0,10853,10855,3,1498,749,0,10854,10852,1,0,0,0,10854, - 10853,1,0,0,0,10855,1485,1,0,0,0,10856,10861,3,1490,745,0,10857, - 10861,3,1494,747,0,10858,10861,3,1496,748,0,10859,10861,3,1498,749, - 0,10860,10856,1,0,0,0,10860,10857,1,0,0,0,10860,10858,1,0,0,0,10860, - 10859,1,0,0,0,10861,1487,1,0,0,0,10862,10869,3,1490,745,0,10863, - 10869,3,1732,866,0,10864,10869,3,1494,747,0,10865,10869,3,1496,748, - 0,10866,10869,3,1498,749,0,10867,10869,3,1500,750,0,10868,10862, - 1,0,0,0,10868,10863,1,0,0,0,10868,10864,1,0,0,0,10868,10865,1,0, - 0,0,10868,10866,1,0,0,0,10868,10867,1,0,0,0,10869,1489,1,0,0,0,10870, - 10872,5,549,0,0,10871,10873,3,1460,730,0,10872,10871,1,0,0,0,10872, - 10873,1,0,0,0,10873,10881,1,0,0,0,10874,10881,3,1456,728,0,10875, - 10881,5,550,0,0,10876,10881,5,554,0,0,10877,10881,3,1254,627,0,10878, - 10881,3,1492,746,0,10879,10881,3,1732,866,0,10880,10870,1,0,0,0, - 10880,10874,1,0,0,0,10880,10875,1,0,0,0,10880,10876,1,0,0,0,10880, - 10877,1,0,0,0,10880,10878,1,0,0,0,10880,10879,1,0,0,0,10881,1491, - 1,0,0,0,10882,10883,5,575,0,0,10883,1493,1,0,0,0,10884,10885,7,78, - 0,0,10885,1495,1,0,0,0,10886,10938,5,387,0,0,10887,10938,5,388,0, - 0,10888,10938,3,1182,591,0,10889,10938,5,390,0,0,10890,10938,5,391, - 0,0,10891,10938,3,1190,595,0,10892,10938,5,393,0,0,10893,10938,5, - 394,0,0,10894,10938,5,395,0,0,10895,10938,5,396,0,0,10896,10938, - 5,397,0,0,10897,10938,5,398,0,0,10898,10938,5,399,0,0,10899,10938, - 5,470,0,0,10900,10938,5,400,0,0,10901,10938,5,401,0,0,10902,10938, - 5,402,0,0,10903,10938,5,403,0,0,10904,10938,5,404,0,0,10905,10938, - 5,405,0,0,10906,10938,5,406,0,0,10907,10938,5,407,0,0,10908,10938, - 5,489,0,0,10909,10938,5,408,0,0,10910,10938,3,1178,589,0,10911,10938, - 5,453,0,0,10912,10938,5,410,0,0,10913,10938,5,411,0,0,10914,10938, - 5,412,0,0,10915,10938,5,413,0,0,10916,10938,5,414,0,0,10917,10938, - 5,415,0,0,10918,10938,5,416,0,0,10919,10938,5,417,0,0,10920,10938, - 5,418,0,0,10921,10938,5,419,0,0,10922,10938,5,420,0,0,10923,10938, - 5,421,0,0,10924,10938,5,422,0,0,10925,10938,5,423,0,0,10926,10938, - 5,424,0,0,10927,10938,5,425,0,0,10928,10938,5,426,0,0,10929,10938, - 5,427,0,0,10930,10938,5,428,0,0,10931,10938,5,476,0,0,10932,10938, - 5,429,0,0,10933,10938,5,430,0,0,10934,10938,5,431,0,0,10935,10938, - 5,432,0,0,10936,10938,5,474,0,0,10937,10886,1,0,0,0,10937,10887, - 1,0,0,0,10937,10888,1,0,0,0,10937,10889,1,0,0,0,10937,10890,1,0, - 0,0,10937,10891,1,0,0,0,10937,10892,1,0,0,0,10937,10893,1,0,0,0, - 10937,10894,1,0,0,0,10937,10895,1,0,0,0,10937,10896,1,0,0,0,10937, - 10897,1,0,0,0,10937,10898,1,0,0,0,10937,10899,1,0,0,0,10937,10900, - 1,0,0,0,10937,10901,1,0,0,0,10937,10902,1,0,0,0,10937,10903,1,0, - 0,0,10937,10904,1,0,0,0,10937,10905,1,0,0,0,10937,10906,1,0,0,0, - 10937,10907,1,0,0,0,10937,10908,1,0,0,0,10937,10909,1,0,0,0,10937, - 10910,1,0,0,0,10937,10911,1,0,0,0,10937,10912,1,0,0,0,10937,10913, - 1,0,0,0,10937,10914,1,0,0,0,10937,10915,1,0,0,0,10937,10916,1,0, - 0,0,10937,10917,1,0,0,0,10937,10918,1,0,0,0,10937,10919,1,0,0,0, - 10937,10920,1,0,0,0,10937,10921,1,0,0,0,10937,10922,1,0,0,0,10937, - 10923,1,0,0,0,10937,10924,1,0,0,0,10937,10925,1,0,0,0,10937,10926, - 1,0,0,0,10937,10927,1,0,0,0,10937,10928,1,0,0,0,10937,10929,1,0, - 0,0,10937,10930,1,0,0,0,10937,10931,1,0,0,0,10937,10932,1,0,0,0, - 10937,10933,1,0,0,0,10937,10934,1,0,0,0,10937,10935,1,0,0,0,10937, - 10936,1,0,0,0,10938,1497,1,0,0,0,10939,10940,7,79,0,0,10940,1499, - 1,0,0,0,10941,10942,7,80,0,0,10942,1501,1,0,0,0,10943,10944,3,1504, - 752,0,10944,10945,3,1514,757,0,10945,10946,3,1512,756,0,10946,1503, - 1,0,0,0,10947,10949,3,1506,753,0,10948,10947,1,0,0,0,10949,10952, - 1,0,0,0,10950,10948,1,0,0,0,10950,10951,1,0,0,0,10951,1505,1,0,0, - 0,10952,10950,1,0,0,0,10953,10954,3,1508,754,0,10954,10955,5,279, - 0,0,10955,10956,5,490,0,0,10956,10974,1,0,0,0,10957,10958,3,1508, - 754,0,10958,10959,5,491,0,0,10959,10960,3,1510,755,0,10960,10974, - 1,0,0,0,10961,10962,3,1508,754,0,10962,10963,5,492,0,0,10963,10964, - 5,493,0,0,10964,10974,1,0,0,0,10965,10966,3,1508,754,0,10966,10967, - 5,492,0,0,10967,10968,5,494,0,0,10968,10974,1,0,0,0,10969,10970, - 3,1508,754,0,10970,10971,5,492,0,0,10971,10972,5,495,0,0,10972,10974, - 1,0,0,0,10973,10953,1,0,0,0,10973,10957,1,0,0,0,10973,10961,1,0, - 0,0,10973,10965,1,0,0,0,10973,10969,1,0,0,0,10974,1507,1,0,0,0,10975, - 10976,5,29,0,0,10976,1509,1,0,0,0,10977,10982,3,1456,728,0,10978, - 10982,3,1500,750,0,10979,10982,3,1732,866,0,10980,10982,3,1494,747, - 0,10981,10977,1,0,0,0,10981,10978,1,0,0,0,10981,10979,1,0,0,0,10981, - 10980,1,0,0,0,10982,1511,1,0,0,0,10983,10986,1,0,0,0,10984,10986, - 5,7,0,0,10985,10983,1,0,0,0,10985,10984,1,0,0,0,10986,1513,1,0,0, - 0,10987,10988,3,1516,758,0,10988,10989,5,146,0,0,10989,10990,3,1558, - 779,0,10990,10991,3,1712,856,0,10991,10992,5,454,0,0,10992,10993, - 3,1726,863,0,10993,1515,1,0,0,0,10994,10999,3,1722,861,0,10995,10997, - 3,1518,759,0,10996,10998,3,1520,760,0,10997,10996,1,0,0,0,10997, - 10998,1,0,0,0,10998,11000,1,0,0,0,10999,10995,1,0,0,0,10999,11000, - 1,0,0,0,11000,1517,1,0,0,0,11001,11002,5,178,0,0,11002,1519,1,0, - 0,0,11003,11005,3,1524,762,0,11004,11003,1,0,0,0,11005,11006,1,0, - 0,0,11006,11004,1,0,0,0,11006,11007,1,0,0,0,11007,1521,1,0,0,0,11008, - 11009,5,18,0,0,11009,11010,3,1730,865,0,11010,11011,5,19,0,0,11011, - 1523,1,0,0,0,11012,11016,3,1526,763,0,11013,11016,5,178,0,0,11014, - 11016,3,1522,761,0,11015,11012,1,0,0,0,11015,11013,1,0,0,0,11015, - 11014,1,0,0,0,11016,1525,1,0,0,0,11017,11033,3,1542,771,0,11018, - 11019,5,496,0,0,11019,11020,5,62,0,0,11020,11034,3,1540,770,0,11021, - 11022,3,1544,772,0,11022,11023,3,1546,773,0,11023,11024,3,1548,774, - 0,11024,11025,3,1550,775,0,11025,11026,3,1552,776,0,11026,11034, - 1,0,0,0,11027,11028,3,1528,764,0,11028,11029,5,172,0,0,11029,11030, - 3,1532,766,0,11030,11031,3,1538,769,0,11031,11032,3,1530,765,0,11032, - 11034,1,0,0,0,11033,11018,1,0,0,0,11033,11021,1,0,0,0,11033,11027, - 1,0,0,0,11034,11035,1,0,0,0,11035,11036,5,7,0,0,11036,1527,1,0,0, - 0,11037,11042,1,0,0,0,11038,11039,5,269,0,0,11039,11042,5,324,0, - 0,11040,11042,5,324,0,0,11041,11037,1,0,0,0,11041,11038,1,0,0,0, - 11041,11040,1,0,0,0,11042,1529,1,0,0,0,11043,11044,3,998,499,0,11044, - 1531,1,0,0,0,11045,11051,1,0,0,0,11046,11047,5,2,0,0,11047,11048, - 3,1534,767,0,11048,11049,5,3,0,0,11049,11051,1,0,0,0,11050,11045, - 1,0,0,0,11050,11046,1,0,0,0,11051,1533,1,0,0,0,11052,11057,3,1536, - 768,0,11053,11054,5,6,0,0,11054,11056,3,1536,768,0,11055,11053,1, - 0,0,0,11056,11059,1,0,0,0,11057,11055,1,0,0,0,11057,11058,1,0,0, - 0,11058,1535,1,0,0,0,11059,11057,1,0,0,0,11060,11061,3,1542,771, - 0,11061,11062,3,1546,773,0,11062,1537,1,0,0,0,11063,11064,7,81,0, - 0,11064,1539,1,0,0,0,11065,11068,5,28,0,0,11066,11068,3,1472,736, - 0,11067,11065,1,0,0,0,11067,11066,1,0,0,0,11068,1541,1,0,0,0,11069, - 11070,3,1730,865,0,11070,1543,1,0,0,0,11071,11074,1,0,0,0,11072, - 11074,5,497,0,0,11073,11071,1,0,0,0,11073,11072,1,0,0,0,11074,1545, - 1,0,0,0,11075,11076,3,1166,583,0,11076,1547,1,0,0,0,11077,11081, - 1,0,0,0,11078,11079,5,43,0,0,11079,11081,3,556,278,0,11080,11077, - 1,0,0,0,11080,11078,1,0,0,0,11081,1549,1,0,0,0,11082,11086,1,0,0, - 0,11083,11084,5,77,0,0,11084,11086,5,78,0,0,11085,11082,1,0,0,0, - 11085,11083,1,0,0,0,11086,1551,1,0,0,0,11087,11092,1,0,0,0,11088, - 11089,3,1554,777,0,11089,11090,3,1734,867,0,11090,11092,1,0,0,0, - 11091,11087,1,0,0,0,11091,11088,1,0,0,0,11092,1553,1,0,0,0,11093, - 11096,3,1556,778,0,11094,11096,5,53,0,0,11095,11093,1,0,0,0,11095, - 11094,1,0,0,0,11096,1555,1,0,0,0,11097,11098,7,82,0,0,11098,1557, - 1,0,0,0,11099,11101,3,1560,780,0,11100,11099,1,0,0,0,11101,11104, - 1,0,0,0,11102,11100,1,0,0,0,11102,11103,1,0,0,0,11103,1559,1,0,0, - 0,11104,11102,1,0,0,0,11105,11106,3,1514,757,0,11106,11107,5,7,0, - 0,11107,11133,1,0,0,0,11108,11133,3,1626,813,0,11109,11133,3,1630, - 815,0,11110,11133,3,1568,784,0,11111,11133,3,1584,792,0,11112,11133, - 3,1590,795,0,11113,11133,3,1600,800,0,11114,11133,3,1602,801,0,11115, - 11133,3,1604,802,0,11116,11133,3,1618,809,0,11117,11133,3,1622,811, - 0,11118,11133,3,1642,821,0,11119,11133,3,1648,824,0,11120,11133, - 3,1650,825,0,11121,11133,3,1562,781,0,11122,11133,3,1564,782,0,11123, - 11133,3,1570,785,0,11124,11133,3,1658,829,0,11125,11133,3,1670,835, - 0,11126,11133,3,1678,839,0,11127,11133,3,1698,849,0,11128,11133, - 3,1700,850,0,11129,11133,3,1702,851,0,11130,11133,3,1704,852,0,11131, - 11133,3,1708,854,0,11132,11105,1,0,0,0,11132,11108,1,0,0,0,11132, - 11109,1,0,0,0,11132,11110,1,0,0,0,11132,11111,1,0,0,0,11132,11112, - 1,0,0,0,11132,11113,1,0,0,0,11132,11114,1,0,0,0,11132,11115,1,0, - 0,0,11132,11116,1,0,0,0,11132,11117,1,0,0,0,11132,11118,1,0,0,0, - 11132,11119,1,0,0,0,11132,11120,1,0,0,0,11132,11121,1,0,0,0,11132, - 11122,1,0,0,0,11132,11123,1,0,0,0,11132,11124,1,0,0,0,11132,11125, - 1,0,0,0,11132,11126,1,0,0,0,11132,11127,1,0,0,0,11132,11128,1,0, - 0,0,11132,11129,1,0,0,0,11132,11130,1,0,0,0,11132,11131,1,0,0,0, - 11133,1561,1,0,0,0,11134,11135,5,498,0,0,11135,11136,3,1738,869, - 0,11136,11137,5,7,0,0,11137,1563,1,0,0,0,11138,11139,5,433,0,0,11139, - 11145,3,1730,865,0,11140,11141,5,2,0,0,11141,11142,3,1566,783,0, - 11142,11143,5,3,0,0,11143,11144,5,7,0,0,11144,11146,1,0,0,0,11145, - 11140,1,0,0,0,11145,11146,1,0,0,0,11146,11155,1,0,0,0,11147,11148, - 5,57,0,0,11148,11149,3,1730,865,0,11149,11150,5,2,0,0,11150,11151, - 3,1566,783,0,11151,11152,5,3,0,0,11152,11153,5,7,0,0,11153,11155, - 1,0,0,0,11154,11138,1,0,0,0,11154,11147,1,0,0,0,11155,1565,1,0,0, - 0,11156,11159,1,0,0,0,11157,11159,3,1326,663,0,11158,11156,1,0,0, - 0,11158,11157,1,0,0,0,11159,1567,1,0,0,0,11160,11161,3,1582,791, - 0,11161,11162,3,1556,778,0,11162,11163,3,1734,867,0,11163,11164, - 5,7,0,0,11164,1569,1,0,0,0,11165,11166,5,499,0,0,11166,11167,3,1572, - 786,0,11167,11168,5,500,0,0,11168,11169,3,1574,787,0,11169,11170, - 5,7,0,0,11170,1571,1,0,0,0,11171,11175,1,0,0,0,11172,11175,5,434, - 0,0,11173,11175,5,501,0,0,11174,11171,1,0,0,0,11174,11172,1,0,0, - 0,11174,11173,1,0,0,0,11175,1573,1,0,0,0,11176,11181,3,1576,788, - 0,11177,11178,5,6,0,0,11178,11180,3,1576,788,0,11179,11177,1,0,0, - 0,11180,11183,1,0,0,0,11181,11179,1,0,0,0,11181,11182,1,0,0,0,11182, - 1575,1,0,0,0,11183,11181,1,0,0,0,11184,11185,3,1580,790,0,11185, - 11186,3,1556,778,0,11186,11187,3,1578,789,0,11187,1577,1,0,0,0,11188, - 11189,3,1472,736,0,11189,1579,1,0,0,0,11190,11191,3,1582,791,0,11191, - 1581,1,0,0,0,11192,11195,3,556,278,0,11193,11195,5,28,0,0,11194, - 11192,1,0,0,0,11194,11193,1,0,0,0,11195,11202,1,0,0,0,11196,11197, - 5,4,0,0,11197,11198,3,1740,870,0,11198,11199,5,5,0,0,11199,11201, - 1,0,0,0,11200,11196,1,0,0,0,11201,11204,1,0,0,0,11202,11200,1,0, - 0,0,11202,11203,1,0,0,0,11203,1583,1,0,0,0,11204,11202,1,0,0,0,11205, - 11206,5,220,0,0,11206,11207,3,1736,868,0,11207,11208,5,93,0,0,11208, - 11209,3,1558,779,0,11209,11210,3,1586,793,0,11210,11211,3,1588,794, - 0,11211,11212,5,454,0,0,11212,11213,5,220,0,0,11213,11214,5,7,0, - 0,11214,1585,1,0,0,0,11215,11216,5,502,0,0,11216,11217,3,1210,605, - 0,11217,11218,5,93,0,0,11218,11219,3,1558,779,0,11219,11221,1,0, - 0,0,11220,11215,1,0,0,0,11221,11224,1,0,0,0,11222,11220,1,0,0,0, - 11222,11223,1,0,0,0,11223,1587,1,0,0,0,11224,11222,1,0,0,0,11225, - 11229,1,0,0,0,11226,11227,5,58,0,0,11227,11229,3,1558,779,0,11228, - 11225,1,0,0,0,11228,11226,1,0,0,0,11229,1589,1,0,0,0,11230,11231, - 5,40,0,0,11231,11232,3,1592,796,0,11232,11233,3,1594,797,0,11233, - 11234,3,1598,799,0,11234,11235,5,454,0,0,11235,11236,5,40,0,0,11236, - 11237,5,7,0,0,11237,1591,1,0,0,0,11238,11241,1,0,0,0,11239,11241, - 3,1734,867,0,11240,11238,1,0,0,0,11240,11239,1,0,0,0,11241,1593, - 1,0,0,0,11242,11244,3,1596,798,0,11243,11242,1,0,0,0,11244,11245, - 1,0,0,0,11245,11243,1,0,0,0,11245,11246,1,0,0,0,11246,1595,1,0,0, - 0,11247,11248,5,102,0,0,11248,11249,3,1326,663,0,11249,11250,5,93, - 0,0,11250,11251,3,1558,779,0,11251,1597,1,0,0,0,11252,11256,1,0, - 0,0,11253,11254,5,58,0,0,11254,11256,3,1558,779,0,11255,11252,1, - 0,0,0,11255,11253,1,0,0,0,11256,1599,1,0,0,0,11257,11258,3,1724, - 862,0,11258,11259,3,1646,823,0,11259,1601,1,0,0,0,11260,11261,3, - 1724,862,0,11261,11262,5,503,0,0,11262,11263,3,1742,871,0,11263, - 11264,3,1646,823,0,11264,1603,1,0,0,0,11265,11266,3,1724,862,0,11266, - 11267,5,62,0,0,11267,11268,3,1606,803,0,11268,11269,3,1646,823,0, - 11269,1605,1,0,0,0,11270,11271,3,1616,808,0,11271,11287,5,68,0,0, - 11272,11273,3,992,496,0,11273,11274,3,1610,805,0,11274,11288,1,0, - 0,0,11275,11288,3,998,499,0,11276,11288,3,924,462,0,11277,11278, - 5,202,0,0,11278,11279,3,1210,605,0,11279,11280,3,1608,804,0,11280, - 11288,1,0,0,0,11281,11282,3,1612,806,0,11282,11283,3,1210,605,0, - 11283,11284,5,24,0,0,11284,11285,3,1210,605,0,11285,11286,3,1614, - 807,0,11286,11288,1,0,0,0,11287,11272,1,0,0,0,11287,11275,1,0,0, - 0,11287,11276,1,0,0,0,11287,11277,1,0,0,0,11287,11281,1,0,0,0,11288, - 1607,1,0,0,0,11289,11293,1,0,0,0,11290,11291,5,100,0,0,11291,11293, - 3,1326,663,0,11292,11289,1,0,0,0,11292,11290,1,0,0,0,11293,1609, - 1,0,0,0,11294,11307,1,0,0,0,11295,11296,5,2,0,0,11296,11301,3,1210, - 605,0,11297,11298,5,6,0,0,11298,11300,3,1210,605,0,11299,11297,1, - 0,0,0,11300,11303,1,0,0,0,11301,11299,1,0,0,0,11301,11302,1,0,0, - 0,11302,11304,1,0,0,0,11303,11301,1,0,0,0,11304,11305,5,3,0,0,11305, - 11307,1,0,0,0,11306,11294,1,0,0,0,11306,11295,1,0,0,0,11307,1611, - 1,0,0,0,11308,11311,1,0,0,0,11309,11311,5,504,0,0,11310,11308,1, - 0,0,0,11310,11309,1,0,0,0,11311,1613,1,0,0,0,11312,11316,1,0,0,0, - 11313,11314,5,147,0,0,11314,11316,3,1210,605,0,11315,11312,1,0,0, - 0,11315,11313,1,0,0,0,11316,1615,1,0,0,0,11317,11318,3,550,275,0, - 11318,1617,1,0,0,0,11319,11320,3,1724,862,0,11320,11321,5,505,0, - 0,11321,11322,3,1616,808,0,11322,11323,3,1620,810,0,11323,11324, - 5,68,0,0,11324,11325,5,35,0,0,11325,11326,3,1210,605,0,11326,11327, - 3,1646,823,0,11327,1619,1,0,0,0,11328,11332,1,0,0,0,11329,11330, - 5,506,0,0,11330,11332,3,1454,727,0,11331,11328,1,0,0,0,11331,11329, - 1,0,0,0,11332,1621,1,0,0,0,11333,11334,3,1624,812,0,11334,11336, - 3,1726,863,0,11335,11337,3,1728,864,0,11336,11335,1,0,0,0,11336, - 11337,1,0,0,0,11337,11338,1,0,0,0,11338,11339,5,7,0,0,11339,1623, - 1,0,0,0,11340,11341,7,83,0,0,11341,1625,1,0,0,0,11342,11354,5,508, - 0,0,11343,11344,5,268,0,0,11344,11355,3,1734,867,0,11345,11351,5, - 509,0,0,11346,11347,5,202,0,0,11347,11348,3,1210,605,0,11348,11349, - 3,1608,804,0,11349,11352,1,0,0,0,11350,11352,3,998,499,0,11351,11346, - 1,0,0,0,11351,11350,1,0,0,0,11352,11355,1,0,0,0,11353,11355,3,1628, - 814,0,11354,11343,1,0,0,0,11354,11345,1,0,0,0,11354,11353,1,0,0, - 0,11355,11356,1,0,0,0,11356,11357,5,7,0,0,11357,1627,1,0,0,0,11358, - 11361,1,0,0,0,11359,11361,3,1734,867,0,11360,11358,1,0,0,0,11360, - 11359,1,0,0,0,11361,1629,1,0,0,0,11362,11364,5,510,0,0,11363,11365, - 3,1632,816,0,11364,11363,1,0,0,0,11364,11365,1,0,0,0,11365,11366, - 1,0,0,0,11366,11367,3,1456,728,0,11367,11368,3,1634,817,0,11368, - 11369,3,1636,818,0,11369,11370,5,7,0,0,11370,11397,1,0,0,0,11371, - 11373,5,510,0,0,11372,11374,3,1632,816,0,11373,11372,1,0,0,0,11373, - 11374,1,0,0,0,11374,11375,1,0,0,0,11375,11376,3,1490,745,0,11376, - 11377,3,1636,818,0,11377,11378,5,7,0,0,11378,11397,1,0,0,0,11379, - 11381,5,510,0,0,11380,11382,3,1632,816,0,11381,11380,1,0,0,0,11381, - 11382,1,0,0,0,11382,11383,1,0,0,0,11383,11384,5,511,0,0,11384,11385, - 3,1456,728,0,11385,11386,3,1636,818,0,11386,11387,5,7,0,0,11387, - 11397,1,0,0,0,11388,11390,5,510,0,0,11389,11391,3,1632,816,0,11390, - 11389,1,0,0,0,11390,11391,1,0,0,0,11391,11392,1,0,0,0,11392,11393, - 3,1636,818,0,11393,11394,5,7,0,0,11394,11397,1,0,0,0,11395,11397, - 5,510,0,0,11396,11362,1,0,0,0,11396,11371,1,0,0,0,11396,11379,1, - 0,0,0,11396,11388,1,0,0,0,11396,11395,1,0,0,0,11397,1631,1,0,0,0, - 11398,11399,7,84,0,0,11399,1633,1,0,0,0,11400,11408,1,0,0,0,11401, - 11402,5,6,0,0,11402,11404,3,1210,605,0,11403,11401,1,0,0,0,11404, - 11405,1,0,0,0,11405,11403,1,0,0,0,11405,11406,1,0,0,0,11406,11408, - 1,0,0,0,11407,11400,1,0,0,0,11407,11403,1,0,0,0,11408,1635,1,0,0, - 0,11409,11413,1,0,0,0,11410,11411,5,100,0,0,11411,11413,3,1640,820, - 0,11412,11409,1,0,0,0,11412,11410,1,0,0,0,11413,1637,1,0,0,0,11414, - 11415,3,1490,745,0,11415,11416,5,10,0,0,11416,11417,3,1210,605,0, - 11417,1639,1,0,0,0,11418,11423,3,1638,819,0,11419,11420,5,6,0,0, - 11420,11422,3,1638,819,0,11421,11419,1,0,0,0,11422,11425,1,0,0,0, - 11423,11421,1,0,0,0,11423,11424,1,0,0,0,11424,1641,1,0,0,0,11425, - 11423,1,0,0,0,11426,11427,5,518,0,0,11427,11428,3,1734,867,0,11428, - 11429,3,1644,822,0,11429,11430,5,7,0,0,11430,1643,1,0,0,0,11431, - 11435,1,0,0,0,11432,11433,5,6,0,0,11433,11435,3,1734,867,0,11434, - 11431,1,0,0,0,11434,11432,1,0,0,0,11435,1645,1,0,0,0,11436,11437, - 5,519,0,0,11437,11438,3,1558,779,0,11438,11439,5,454,0,0,11439,11440, - 5,519,0,0,11440,11441,3,1726,863,0,11441,11442,5,7,0,0,11442,1647, - 1,0,0,0,11443,11444,3,1744,872,0,11444,11445,5,7,0,0,11445,1649, - 1,0,0,0,11446,11447,5,202,0,0,11447,11455,3,1210,605,0,11448,11449, - 3,1656,828,0,11449,11450,3,1652,826,0,11450,11456,1,0,0,0,11451, - 11452,3,1652,826,0,11452,11453,3,1656,828,0,11453,11456,1,0,0,0, - 11454,11456,1,0,0,0,11455,11448,1,0,0,0,11455,11451,1,0,0,0,11455, - 11454,1,0,0,0,11456,11457,1,0,0,0,11457,11458,5,7,0,0,11458,1651, - 1,0,0,0,11459,11463,1,0,0,0,11460,11461,5,100,0,0,11461,11463,3, - 1654,827,0,11462,11459,1,0,0,0,11462,11460,1,0,0,0,11463,1653,1, - 0,0,0,11464,11469,3,1210,605,0,11465,11466,5,6,0,0,11466,11468,3, - 1210,605,0,11467,11465,1,0,0,0,11468,11471,1,0,0,0,11469,11467,1, - 0,0,0,11469,11470,1,0,0,0,11470,1655,1,0,0,0,11471,11469,1,0,0,0, - 11472,11479,1,0,0,0,11473,11475,5,71,0,0,11474,11476,5,346,0,0,11475, - 11474,1,0,0,0,11475,11476,1,0,0,0,11476,11477,1,0,0,0,11477,11479, - 3,1672,836,0,11478,11472,1,0,0,0,11478,11473,1,0,0,0,11479,1657, - 1,0,0,0,11480,11498,5,520,0,0,11481,11482,3,1710,855,0,11482,11483, - 3,1666,833,0,11483,11489,5,62,0,0,11484,11490,3,998,499,0,11485, - 11486,5,202,0,0,11486,11487,3,1734,867,0,11487,11488,3,1664,832, - 0,11488,11490,1,0,0,0,11489,11484,1,0,0,0,11489,11485,1,0,0,0,11490, - 11499,1,0,0,0,11491,11496,3,1472,736,0,11492,11493,5,2,0,0,11493, - 11494,3,1662,831,0,11494,11495,5,3,0,0,11495,11497,1,0,0,0,11496, - 11492,1,0,0,0,11496,11497,1,0,0,0,11497,11499,1,0,0,0,11498,11481, - 1,0,0,0,11498,11491,1,0,0,0,11499,11500,1,0,0,0,11500,11501,5,7, - 0,0,11501,1659,1,0,0,0,11502,11503,3,1472,736,0,11503,11504,5,20, - 0,0,11504,11505,3,1210,605,0,11505,11508,1,0,0,0,11506,11508,3,1210, - 605,0,11507,11502,1,0,0,0,11507,11506,1,0,0,0,11508,1661,1,0,0,0, - 11509,11514,3,1660,830,0,11510,11511,5,6,0,0,11511,11513,3,1660, - 830,0,11512,11510,1,0,0,0,11513,11516,1,0,0,0,11514,11512,1,0,0, - 0,11514,11515,1,0,0,0,11515,1663,1,0,0,0,11516,11514,1,0,0,0,11517, - 11521,1,0,0,0,11518,11519,5,100,0,0,11519,11521,3,1326,663,0,11520, - 11517,1,0,0,0,11520,11518,1,0,0,0,11521,1665,1,0,0,0,11522,11527, - 1,0,0,0,11523,11524,3,1668,834,0,11524,11525,5,324,0,0,11525,11527, - 1,0,0,0,11526,11522,1,0,0,0,11526,11523,1,0,0,0,11527,1667,1,0,0, - 0,11528,11531,1,0,0,0,11529,11531,5,269,0,0,11530,11528,1,0,0,0, - 11530,11529,1,0,0,0,11531,1669,1,0,0,0,11532,11534,5,61,0,0,11533, - 11535,3,1676,838,0,11534,11533,1,0,0,0,11534,11535,1,0,0,0,11535, - 11536,1,0,0,0,11536,11537,3,1674,837,0,11537,11538,3,1710,855,0, - 11538,11539,5,71,0,0,11539,11540,3,1672,836,0,11540,11541,5,7,0, - 0,11541,1671,1,0,0,0,11542,11543,3,1326,663,0,11543,1673,1,0,0,0, - 11544,11548,1,0,0,0,11545,11548,5,64,0,0,11546,11548,5,68,0,0,11547, - 11544,1,0,0,0,11547,11545,1,0,0,0,11547,11546,1,0,0,0,11548,1675, - 1,0,0,0,11549,11565,5,268,0,0,11550,11565,5,293,0,0,11551,11565, - 5,207,0,0,11552,11565,5,249,0,0,11553,11554,5,130,0,0,11554,11565, - 3,1210,605,0,11555,11556,5,307,0,0,11556,11565,3,1210,605,0,11557, - 11565,3,1210,605,0,11558,11565,5,30,0,0,11559,11562,7,85,0,0,11560, - 11563,3,1210,605,0,11561,11563,5,30,0,0,11562,11560,1,0,0,0,11562, - 11561,1,0,0,0,11562,11563,1,0,0,0,11563,11565,1,0,0,0,11564,11549, - 1,0,0,0,11564,11550,1,0,0,0,11564,11551,1,0,0,0,11564,11552,1,0, - 0,0,11564,11553,1,0,0,0,11564,11555,1,0,0,0,11564,11557,1,0,0,0, - 11564,11558,1,0,0,0,11564,11559,1,0,0,0,11565,1677,1,0,0,0,11566, - 11568,5,265,0,0,11567,11569,3,1676,838,0,11568,11567,1,0,0,0,11568, - 11569,1,0,0,0,11569,11570,1,0,0,0,11570,11571,3,1710,855,0,11571, - 11572,5,7,0,0,11572,1679,1,0,0,0,11573,11575,3,1012,506,0,11574, - 11573,1,0,0,0,11574,11575,1,0,0,0,11575,11576,1,0,0,0,11576,11577, - 5,525,0,0,11577,11579,5,71,0,0,11578,11580,5,81,0,0,11579,11578, - 1,0,0,0,11579,11580,1,0,0,0,11580,11581,1,0,0,0,11581,11583,3,1404, - 702,0,11582,11584,5,9,0,0,11583,11582,1,0,0,0,11583,11584,1,0,0, - 0,11584,11589,1,0,0,0,11585,11587,5,36,0,0,11586,11585,1,0,0,0,11586, - 11587,1,0,0,0,11587,11588,1,0,0,0,11588,11590,3,1472,736,0,11589, - 11586,1,0,0,0,11589,11590,1,0,0,0,11590,11591,1,0,0,0,11591,11592, - 5,100,0,0,11592,11593,3,1682,841,0,11593,11594,5,80,0,0,11594,11596, - 3,1684,842,0,11595,11597,3,1686,843,0,11596,11595,1,0,0,0,11597, - 11598,1,0,0,0,11598,11596,1,0,0,0,11598,11599,1,0,0,0,11599,1681, - 1,0,0,0,11600,11602,5,81,0,0,11601,11600,1,0,0,0,11601,11602,1,0, - 0,0,11602,11603,1,0,0,0,11603,11605,3,1404,702,0,11604,11606,5,9, - 0,0,11605,11604,1,0,0,0,11605,11606,1,0,0,0,11606,11612,1,0,0,0, - 11607,11610,3,1002,501,0,11608,11610,3,1098,549,0,11609,11607,1, - 0,0,0,11609,11608,1,0,0,0,11610,11612,1,0,0,0,11611,11601,1,0,0, - 0,11611,11609,1,0,0,0,11612,11617,1,0,0,0,11613,11615,5,36,0,0,11614, - 11613,1,0,0,0,11614,11615,1,0,0,0,11615,11616,1,0,0,0,11616,11618, - 3,1472,736,0,11617,11614,1,0,0,0,11617,11618,1,0,0,0,11618,1683, - 1,0,0,0,11619,11620,3,1210,605,0,11620,1685,1,0,0,0,11621,11622, - 5,102,0,0,11622,11625,5,526,0,0,11623,11624,5,33,0,0,11624,11626, - 3,1210,605,0,11625,11623,1,0,0,0,11625,11626,1,0,0,0,11626,11627, - 1,0,0,0,11627,11632,5,93,0,0,11628,11633,3,1690,845,0,11629,11633, - 5,182,0,0,11630,11631,5,57,0,0,11631,11633,5,270,0,0,11632,11628, - 1,0,0,0,11632,11629,1,0,0,0,11632,11630,1,0,0,0,11633,11648,1,0, - 0,0,11634,11635,5,102,0,0,11635,11636,5,77,0,0,11636,11639,5,526, - 0,0,11637,11638,5,33,0,0,11638,11640,3,1210,605,0,11639,11637,1, - 0,0,0,11639,11640,1,0,0,0,11640,11641,1,0,0,0,11641,11645,5,93,0, - 0,11642,11646,3,1688,844,0,11643,11644,5,57,0,0,11644,11646,5,270, - 0,0,11645,11642,1,0,0,0,11645,11643,1,0,0,0,11646,11648,1,0,0,0, - 11647,11621,1,0,0,0,11647,11634,1,0,0,0,11648,1687,1,0,0,0,11649, - 11654,5,241,0,0,11650,11651,5,2,0,0,11651,11652,3,244,122,0,11652, - 11653,5,3,0,0,11653,11655,1,0,0,0,11654,11650,1,0,0,0,11654,11655, - 1,0,0,0,11655,11659,1,0,0,0,11656,11657,5,463,0,0,11657,11658,7, - 53,0,0,11658,11660,5,450,0,0,11659,11656,1,0,0,0,11659,11660,1,0, - 0,0,11660,11661,1,0,0,0,11661,11662,3,1692,846,0,11662,1689,1,0, - 0,0,11663,11664,5,369,0,0,11664,11677,5,333,0,0,11665,11666,3,1430, - 715,0,11666,11667,5,10,0,0,11667,11668,3,1696,848,0,11668,11678, - 1,0,0,0,11669,11670,5,2,0,0,11670,11671,3,244,122,0,11671,11672, - 5,3,0,0,11672,11673,5,10,0,0,11673,11674,5,2,0,0,11674,11675,3,1694, - 847,0,11675,11676,5,3,0,0,11676,11678,1,0,0,0,11677,11665,1,0,0, - 0,11677,11669,1,0,0,0,11678,11679,1,0,0,0,11679,11677,1,0,0,0,11679, - 11680,1,0,0,0,11680,1691,1,0,0,0,11681,11682,5,422,0,0,11682,11686, - 3,1694,847,0,11683,11684,5,53,0,0,11684,11686,5,422,0,0,11685,11681, - 1,0,0,0,11685,11683,1,0,0,0,11686,1693,1,0,0,0,11687,11688,5,2,0, - 0,11688,11693,3,1696,848,0,11689,11690,5,6,0,0,11690,11692,3,1696, - 848,0,11691,11689,1,0,0,0,11692,11695,1,0,0,0,11693,11691,1,0,0, - 0,11693,11694,1,0,0,0,11694,11696,1,0,0,0,11695,11693,1,0,0,0,11696, - 11697,5,3,0,0,11697,1695,1,0,0,0,11698,11701,3,1046,523,0,11699, - 11701,5,53,0,0,11700,11698,1,0,0,0,11700,11699,1,0,0,0,11701,1697, - 1,0,0,0,11702,11703,5,157,0,0,11703,11704,3,1710,855,0,11704,11705, - 5,7,0,0,11705,1699,1,0,0,0,11706,11707,5,78,0,0,11707,11708,5,7, - 0,0,11708,1701,1,0,0,0,11709,11711,5,161,0,0,11710,11712,3,1706, - 853,0,11711,11710,1,0,0,0,11711,11712,1,0,0,0,11712,11713,1,0,0, - 0,11713,11714,5,7,0,0,11714,1703,1,0,0,0,11715,11717,5,319,0,0,11716, - 11718,3,1706,853,0,11717,11716,1,0,0,0,11717,11718,1,0,0,0,11718, - 11719,1,0,0,0,11719,11720,5,7,0,0,11720,1705,1,0,0,0,11721,11723, - 5,33,0,0,11722,11724,5,269,0,0,11723,11722,1,0,0,0,11723,11724,1, - 0,0,0,11724,11725,1,0,0,0,11725,11726,5,153,0,0,11726,1707,1,0,0, - 0,11727,11728,5,333,0,0,11728,11729,3,556,278,0,11729,11730,5,94, - 0,0,11730,11731,5,53,0,0,11731,11732,5,7,0,0,11732,11740,1,0,0,0, - 11733,11736,5,313,0,0,11734,11737,3,556,278,0,11735,11737,5,30,0, - 0,11736,11734,1,0,0,0,11736,11735,1,0,0,0,11737,11738,1,0,0,0,11738, - 11740,5,7,0,0,11739,11727,1,0,0,0,11739,11733,1,0,0,0,11740,1709, - 1,0,0,0,11741,11744,3,1472,736,0,11742,11744,5,28,0,0,11743,11741, - 1,0,0,0,11743,11742,1,0,0,0,11744,1711,1,0,0,0,11745,11749,1,0,0, - 0,11746,11747,5,517,0,0,11747,11749,3,1714,857,0,11748,11745,1,0, - 0,0,11748,11746,1,0,0,0,11749,1713,1,0,0,0,11750,11752,3,1716,858, - 0,11751,11750,1,0,0,0,11752,11753,1,0,0,0,11753,11751,1,0,0,0,11753, - 11754,1,0,0,0,11754,1715,1,0,0,0,11755,11756,5,102,0,0,11756,11757, - 3,1718,859,0,11757,11758,5,93,0,0,11758,11759,3,1558,779,0,11759, - 1717,1,0,0,0,11760,11765,3,1720,860,0,11761,11762,5,82,0,0,11762, - 11764,3,1720,860,0,11763,11761,1,0,0,0,11764,11767,1,0,0,0,11765, - 11763,1,0,0,0,11765,11766,1,0,0,0,11766,1719,1,0,0,0,11767,11765, - 1,0,0,0,11768,11772,3,1730,865,0,11769,11770,5,511,0,0,11770,11772, - 3,1456,728,0,11771,11768,1,0,0,0,11771,11769,1,0,0,0,11772,1721, - 1,0,0,0,11773,11776,1,0,0,0,11774,11776,3,1522,761,0,11775,11773, - 1,0,0,0,11775,11774,1,0,0,0,11776,1723,1,0,0,0,11777,11780,1,0,0, - 0,11778,11780,3,1522,761,0,11779,11777,1,0,0,0,11779,11778,1,0,0, - 0,11780,1725,1,0,0,0,11781,11784,1,0,0,0,11782,11784,3,1730,865, - 0,11783,11781,1,0,0,0,11783,11782,1,0,0,0,11784,1727,1,0,0,0,11785, - 11786,5,102,0,0,11786,11787,3,1738,869,0,11787,1729,1,0,0,0,11788, - 11791,3,1472,736,0,11789,11791,3,1732,866,0,11790,11788,1,0,0,0, - 11790,11789,1,0,0,0,11791,1731,1,0,0,0,11792,11793,7,86,0,0,11793, - 1733,1,0,0,0,11794,11796,3,1382,691,0,11795,11794,1,0,0,0,11795, - 11796,1,0,0,0,11796,11798,1,0,0,0,11797,11799,3,1026,513,0,11798, - 11797,1,0,0,0,11798,11799,1,0,0,0,11799,11801,1,0,0,0,11800,11802, - 3,1100,550,0,11801,11800,1,0,0,0,11801,11802,1,0,0,0,11802,11804, - 1,0,0,0,11803,11805,3,1142,571,0,11804,11803,1,0,0,0,11804,11805, - 1,0,0,0,11805,11807,1,0,0,0,11806,11808,3,1070,535,0,11807,11806, - 1,0,0,0,11807,11808,1,0,0,0,11808,11810,1,0,0,0,11809,11811,3,1084, - 542,0,11810,11809,1,0,0,0,11810,11811,1,0,0,0,11811,11813,1,0,0, - 0,11812,11814,3,1286,643,0,11813,11812,1,0,0,0,11813,11814,1,0,0, - 0,11814,1735,1,0,0,0,11815,11816,3,1734,867,0,11816,1737,1,0,0,0, - 11817,11818,3,1734,867,0,11818,1739,1,0,0,0,11819,11820,3,1210,605, - 0,11820,1741,1,0,0,0,11821,11822,3,1210,605,0,11822,1743,1,0,0,0, - 11823,11825,3,6,3,0,11824,11826,3,1746,873,0,11825,11824,1,0,0,0, - 11825,11826,1,0,0,0,11826,1745,1,0,0,0,11827,11828,5,71,0,0,11828, - 11829,3,1028,514,0,11829,11830,3,1672,836,0,11830,1747,1,0,0,0,1283, - 1751,1760,1879,1883,1892,1901,1907,1913,1945,1957,1963,1971,1979, - 1985,1994,2000,2012,2018,2024,2031,2035,2040,2044,2057,2068,2074, - 2090,2093,2098,2104,2109,2118,2122,2134,2138,2141,2145,2156,2174, - 2181,2189,2194,2201,2207,2213,2220,2231,2235,2239,2243,2256,2260, - 2265,2270,2282,2291,2303,2308,2319,2325,2330,2340,2345,2352,2357, - 2362,2373,2379,2384,2392,2401,2416,2422,2428,2433,2440,2452,2460, - 2468,2486,2495,2509,2513,2528,2536,2546,2586,2589,2593,2597,2600, - 2605,2612,2621,2627,2631,2640,2648,2657,2666,2670,2677,2683,2687, - 2691,2696,2699,2703,2709,2716,2732,2746,2756,2758,2763,2767,2770, - 2776,2778,2806,2816,2829,2836,2841,2845,2851,2856,2859,2861,2866, - 2870,2874,2878,2882,2885,2889,2897,2901,2905,2914,2921,2926,2933, - 2938,2945,2950,2968,2973,2985,2990,2999,3006,3013,3017,3022,3026, - 3029,3032,3035,3038,3041,3046,3049,3052,3055,3058,3061,3067,3071, - 3074,3077,3080,3083,3085,3094,3109,3117,3123,3127,3132,3135,3138, - 3142,3146,3153,3156,3159,3163,3167,3181,3186,3193,3198,3202,3205, - 3209,3212,3214,3221,3224,3228,3234,3237,3244,3253,3260,3265,3268, - 3271,3274,3278,3285,3290,3303,3313,3326,3329,3332,3339,3347,3350, - 3353,3360,3364,3370,3373,3376,3379,3391,3394,3397,3401,3415,3431, - 3442,3457,3474,3476,3497,3502,3505,3509,3512,3518,3521,3523,3534, - 3543,3549,3552,3555,3569,3572,3575,3580,3588,3597,3601,3607,3611, - 3614,3617,3620,3623,3629,3633,3638,3644,3648,3651,3654,3657,3665, - 3669,3673,3677,3681,3686,3700,3709,3726,3731,3734,3736,3746,3753, - 3758,3761,3764,3771,3774,3776,3782,3791,3801,3806,3814,3818,3825, - 3835,3846,3954,3962,3965,3975,3980,3990,4001,4013,4026,4036,4048, - 4052,4055,4062,4070,4080,4082,4088,4093,4097,4102,4108,4115,4121, - 4123,4130,4138,4143,4154,4161,4165,4182,4185,4188,4191,4194,4202, - 4205,4208,4214,4222,4226,4238,4244,4247,4252,4256,4263,4274,4297, - 4317,4326,4329,4332,4342,4345,4354,4358,4361,4369,4375,4379,4390, - 4400,4408,4413,4425,4442,4446,4452,4459,4467,4481,4507,4514,4528, - 4539,4542,4555,4564,4589,4600,4642,4650,4656,4667,4673,4681,4692, - 4706,4715,4720,4731,4742,4750,4760,4767,4770,4776,4779,4794,4807, - 4836,4843,4858,4870,4874,4879,4883,4888,4892,4898,4902,4907,4911, - 4917,4921,4926,4930,4935,4939,4944,4948,4955,4959,4966,4970,4977, - 4981,4988,4992,4998,5002,5008,5012,5017,5021,5028,5032,5036,5040, - 5044,5049,5053,5058,5062,5067,5071,5076,5082,5087,5093,5098,5104, - 5109,5113,5118,5122,5128,5132,5137,5145,5151,5157,5163,5169,5176, - 5181,5185,5190,5194,5199,5205,5212,5217,5224,5234,5238,5244,5246, - 5253,5257,5262,5280,5295,5313,5322,5331,5335,5341,5348,5353,5360, - 5365,5368,5371,5375,5446,5542,5546,5551,5562,5573,5584,5595,5606, - 5618,5629,5640,5650,5657,5664,5670,5678,5683,5688,5693,5699,5706, - 5712,5718,5723,5729,5736,5741,5747,5754,5757,5770,5779,5791,5793, - 5811,5818,5828,5833,5837,5841,5845,5847,5907,5914,5920,5931,5934, - 5941,5944,5954,5957,5959,5978,5990,5999,6008,6020,6022,6028,6032, - 6035,6038,6043,6049,6052,6055,6058,6061,6077,6081,6084,6087,6090, - 6093,6098,6101,6103,6116,6128,6142,6146,6152,6162,6164,6169,6177, - 6187,6196,6204,6213,6215,6222,6231,6233,6240,6249,6251,6255,6264, - 6269,6275,6280,6284,6289,6307,6312,6327,6336,6347,6353,6390,6410, - 6417,6428,6442,6449,6457,6462,6469,6473,6478,6482,6487,6491,6493, - 6498,6502,6507,6511,6535,6542,6552,6564,6569,6582,6594,6606,6608, - 6614,6621,6666,6684,6688,6693,6696,6700,6705,6710,6713,6720,6737, - 6808,6839,6893,6903,6913,6924,6934,6945,6955,6960,6969,6974,6984, - 6989,6998,7011,7016,7128,7130,7139,7150,7161,7174,7186,7197,7204, - 7294,7347,7357,7368,7379,7393,7408,7419,7426,7480,7621,7627,7630, - 7640,7680,7690,7697,7720,7729,7738,7747,7780,7784,7794,7798,7808, - 7811,7815,7819,7827,7838,7850,7854,7857,7861,7864,7869,7873,7876, - 7882,7893,7896,7903,7907,7912,7915,7917,7931,7935,7940,7947,7954, - 7957,7962,7965,7974,7976,7981,7985,7997,8000,8007,8011,8016,8026, - 8036,8039,8042,8044,8050,8057,8077,8097,8101,8106,8175,8180,8186, - 8199,8203,8207,8213,8215,8223,8233,8236,8239,8242,8245,8252,8255, - 8257,8261,8264,8271,8273,8280,8287,8291,8295,8304,8310,8314,8318, - 8323,8335,8342,8352,8365,8376,8383,8388,8392,8396,8401,8414,8419, - 8423,8427,8434,8437,8439,8447,8451,8454,8461,8464,8469,8475,8481, - 8485,8494,8503,8510,8513,8519,8524,8530,8536,8539,8542,8549,8553, - 8556,8571,8574,8581,8584,8591,8594,8597,8604,8616,8623,8625,8635, - 8653,8655,8663,8667,8677,8681,8685,8689,8691,8696,8700,8704,8706, - 8708,8712,8716,8719,8722,8725,8728,8730,8733,8736,8739,8742,8745, - 8748,8757,8759,8764,8768,8774,8778,8782,8791,8796,8800,8806,8809, - 8828,8836,8845,8849,8852,8856,8861,8867,8879,8894,8901,8904,8908, - 8912,8916,8918,8926,8935,8941,8943,8950,8954,8963,8967,8976,8985, - 8997,9025,9032,9036,9039,9044,9048,9051,9067,9078,9083,9086,9089, - 9093,9097,9101,9106,9110,9114,9116,9125,9130,9136,9140,9142,9149, - 9154,9160,9162,9166,9173,9180,9183,9189,9193,9202,9205,9209,9217, - 9223,9225,9228,9232,9236,9240,9246,9249,9258,9265,9267,9274,9282, - 9287,9290,9298,9307,9315,9317,9321,9328,9347,9356,9362,9381,9390, - 9396,9400,9405,9415,9422,9431,9434,9443,9445,9451,9455,9460,9470, - 9476,9478,9484,9488,9491,9504,9510,9514,9518,9521,9529,9533,9537, - 9545,9552,9559,9563,9569,9571,9580,9583,9593,9609,9615,9620,9627, - 9636,9643,9651,9659,9664,9668,9671,9677,9682,9698,9701,9703,9715, - 9717,9721,9729,9731,9735,9737,9745,9749,9758,9766,9772,9775,9784, - 9789,9796,9806,9832,9843,9845,9847,9855,9877,9886,9896,9899,9904, - 9909,9913,9916,9920,9923,9926,9929,9933,9947,9954,9961,9968,9986, - 9994,10006,10012,10025,10064,10066,10086,10096,10107,10119,10126, - 10138,10150,10156,10164,10181,10206,10216,10220,10223,10226,10229, - 10242,10247,10252,10254,10262,10271,10280,10285,10294,10299,10313, - 10323,10331,10345,10352,10360,10368,10376,10380,10387,10395,10402, - 10408,10417,10432,10443,10476,10485,10492,10496,10500,10507,10521, - 10526,10531,10535,10537,10540,10547,10552,10562,10570,10573,10580, - 10588,10596,10604,10612,10617,10621,10625,10629,10633,10637,10641, - 10648,10656,10661,10665,10669,10679,10685,10691,10706,10712,10718, - 10730,10735,10743,10750,10755,10767,10775,10780,10790,10801,10808, - 10815,10826,10829,10831,10835,10838,10844,10850,10854,10860,10868, - 10872,10880,10937,10950,10973,10981,10985,10997,10999,11006,11015, - 11033,11041,11050,11057,11067,11073,11080,11085,11091,11095,11102, - 11132,11145,11154,11158,11174,11181,11194,11202,11222,11228,11240, - 11245,11255,11287,11292,11301,11306,11310,11315,11331,11336,11351, - 11354,11360,11364,11373,11381,11390,11396,11405,11407,11412,11423, - 11434,11455,11462,11469,11475,11478,11489,11496,11498,11507,11514, - 11520,11526,11530,11534,11547,11562,11564,11568,11574,11579,11583, - 11586,11589,11598,11601,11605,11609,11611,11614,11617,11625,11632, - 11639,11645,11647,11654,11659,11677,11679,11685,11693,11700,11711, - 11717,11723,11736,11739,11743,11748,11753,11765,11771,11775,11779, - 11783,11790,11795,11798,11801,11804,11807,11810,11813,11825 + 1746,1748,0,87,2,0,195,195,364,364,1,0,228,229,1,0,236,237,1,0,234, + 235,1,0,232,233,1,0,230,231,1,0,535,536,1,0,537,538,1,0,539,540, + 2,0,66,66,318,318,2,0,99,99,318,318,1,0,529,531,2,0,10,10,94,94, + 2,0,133,133,191,191,2,0,254,254,332,332,2,0,162,162,363,363,2,0, + 180,180,221,221,5,0,30,30,288,288,329,329,352,352,354,354,2,0,109, + 109,532,532,2,0,367,367,439,439,2,0,139,139,312,312,2,0,191,191, + 333,333,2,0,313,313,333,333,2,0,150,150,315,315,2,0,64,64,94,94, + 2,0,352,352,354,354,2,0,200,200,224,224,9,0,30,30,160,160,165,165, + 179,179,219,219,227,227,342,342,345,345,438,438,3,0,113,113,284, + 284,336,336,2,0,53,53,78,78,3,0,173,173,260,260,262,262,2,0,9,9, + 94,94,5,0,30,30,88,88,182,182,241,241,369,369,2,0,92,92,226,226, + 2,0,341,341,414,414,1,0,448,449,2,0,92,92,414,414,2,0,135,135,145, + 145,3,0,66,66,99,99,318,318,4,0,163,163,185,185,283,283,353,353, + 3,0,321,321,357,357,445,445,2,0,167,167,314,314,2,0,64,64,68,68, + 10,0,46,46,88,88,182,182,202,202,241,241,352,352,354,354,357,358, + 369,369,521,523,5,0,212,212,329,329,350,350,361,361,455,456,2,0, + 37,37,55,55,2,0,10,10,53,53,4,0,88,88,182,182,241,241,369,369,2, + 0,137,137,242,242,2,0,356,356,380,380,2,0,151,151,254,254,1,0,31, + 32,2,0,60,60,96,96,2,0,99,99,349,349,2,0,201,201,334,334,1,0,527, + 528,2,0,213,213,254,254,2,0,30,30,56,56,2,0,320,320,414,414,2,0, + 207,207,268,268,4,0,113,113,115,115,119,119,126,126,2,0,360,360, + 477,477,2,0,391,392,406,406,1,0,391,392,1,0,418,419,1,0,18,19,2, + 0,117,117,122,122,5,0,10,10,16,17,21,21,23,23,25,25,1,0,12,13,3, + 0,9,9,14,14,27,27,3,0,39,39,73,73,95,95,2,0,166,166,188,188,2,0, + 304,304,450,450,2,0,208,208,289,289,3,0,30,30,34,34,90,90,6,0,9, + 10,12,17,21,21,23,23,25,25,27,27,2,0,20,20,22,22,1,0,483,486,10, + 0,124,124,129,228,238,386,433,452,455,469,471,471,473,473,475,475, + 478,488,547,548,3,0,106,123,125,128,472,472,4,0,30,52,54,70,72,105, + 454,454,2,0,62,62,116,116,2,0,10,10,20,20,2,0,167,167,507,507,1, + 0,512,517,2,0,144,144,210,210,37,0,33,33,35,35,43,43,45,45,53,53, + 57,57,61,61,92,92,116,116,123,123,130,130,144,144,153,153,157,157, + 161,161,167,167,172,172,207,207,210,210,241,241,249,249,265,265, + 268,269,279,279,293,293,307,307,313,313,319,319,323,324,333,333, + 360,360,433,434,477,477,490,502,504,504,506,518,520,520,13157,0, + 1753,1,0,0,0,2,1758,1,0,0,0,4,1760,1,0,0,0,6,1881,1,0,0,0,8,1883, + 1,0,0,0,10,1887,1,0,0,0,12,1890,1,0,0,0,14,1898,1,0,0,0,16,1903, + 1,0,0,0,18,1909,1,0,0,0,20,1947,1,0,0,0,22,1959,1,0,0,0,24,1961, + 1,0,0,0,26,1969,1,0,0,0,28,1981,1,0,0,0,30,1983,1,0,0,0,32,1992, + 1,0,0,0,34,2020,1,0,0,0,36,2022,1,0,0,0,38,2070,1,0,0,0,40,2072, + 1,0,0,0,42,2080,1,0,0,0,44,2087,1,0,0,0,46,2089,1,0,0,0,48,2104, + 1,0,0,0,50,2111,1,0,0,0,52,2120,1,0,0,0,54,2122,1,0,0,0,56,2136, + 1,0,0,0,58,2140,1,0,0,0,60,2176,1,0,0,0,62,2178,1,0,0,0,64,2186, + 1,0,0,0,66,2196,1,0,0,0,68,2203,1,0,0,0,70,2209,1,0,0,0,72,2215, + 1,0,0,0,74,2233,1,0,0,0,76,2237,1,0,0,0,78,2241,1,0,0,0,80,2245, + 1,0,0,0,82,2247,1,0,0,0,84,2258,1,0,0,0,86,2262,1,0,0,0,88,2267, + 1,0,0,0,90,2272,1,0,0,0,92,2274,1,0,0,0,94,2286,1,0,0,0,96,2293, + 1,0,0,0,98,2295,1,0,0,0,100,2297,1,0,0,0,102,2299,1,0,0,0,104,2435, + 1,0,0,0,106,2437,1,0,0,0,108,2454,1,0,0,0,110,2456,1,0,0,0,112,2470, + 1,0,0,0,114,2472,1,0,0,0,116,2488,1,0,0,0,118,2490,1,0,0,0,120,2711, + 1,0,0,0,122,2718,1,0,0,0,124,2720,1,0,0,0,126,2722,1,0,0,0,128,2725, + 1,0,0,0,130,2734,1,0,0,0,132,2736,1,0,0,0,134,2740,1,0,0,0,136,2743, + 1,0,0,0,138,2751,1,0,0,0,140,2763,1,0,0,0,142,2780,1,0,0,0,144,2808, + 1,0,0,0,146,2810,1,0,0,0,148,2813,1,0,0,0,150,2821,1,0,0,0,152,2826, + 1,0,0,0,154,2863,1,0,0,0,156,2865,1,0,0,0,158,2907,1,0,0,0,160,2909, + 1,0,0,0,162,2911,1,0,0,0,164,2916,1,0,0,0,166,2923,1,0,0,0,168,2928, + 1,0,0,0,170,2970,1,0,0,0,172,2972,1,0,0,0,174,2975,1,0,0,0,176,2980, + 1,0,0,0,178,2982,1,0,0,0,180,2990,1,0,0,0,182,3001,1,0,0,0,184,3003, + 1,0,0,0,186,3011,1,0,0,0,188,3013,1,0,0,0,190,3096,1,0,0,0,192,3098, + 1,0,0,0,194,3100,1,0,0,0,196,3102,1,0,0,0,198,3106,1,0,0,0,200,3114, + 1,0,0,0,202,3125,1,0,0,0,204,3129,1,0,0,0,206,3131,1,0,0,0,208,3152, + 1,0,0,0,210,3155,1,0,0,0,212,3164,1,0,0,0,214,3174,1,0,0,0,216,3195, + 1,0,0,0,218,3255,1,0,0,0,220,3257,1,0,0,0,222,3266,1,0,0,0,224,3271, + 1,0,0,0,226,3273,1,0,0,0,228,3276,1,0,0,0,230,3284,1,0,0,0,232,3287, + 1,0,0,0,234,3294,1,0,0,0,236,3382,1,0,0,0,238,3384,1,0,0,0,240,3387, + 1,0,0,0,242,3391,1,0,0,0,244,3395,1,0,0,0,246,3403,1,0,0,0,248,3411, + 1,0,0,0,250,3416,1,0,0,0,252,3419,1,0,0,0,254,3427,1,0,0,0,256,3437, + 1,0,0,0,258,3450,1,0,0,0,260,3452,1,0,0,0,262,3456,1,0,0,0,264,3469, + 1,0,0,0,266,3471,1,0,0,0,268,3476,1,0,0,0,270,3478,1,0,0,0,272,3485, + 1,0,0,0,274,3516,1,0,0,0,276,3518,1,0,0,0,278,3527,1,0,0,0,280,3529, + 1,0,0,0,282,3538,1,0,0,0,284,3542,1,0,0,0,286,3550,1,0,0,0,288,3555, + 1,0,0,0,290,3559,1,0,0,0,292,3578,1,0,0,0,294,3588,1,0,0,0,296,3602, + 1,0,0,0,298,3618,1,0,0,0,300,3624,1,0,0,0,302,3639,1,0,0,0,304,3652, + 1,0,0,0,306,3654,1,0,0,0,308,3664,1,0,0,0,310,3676,1,0,0,0,312,3684, + 1,0,0,0,314,3686,1,0,0,0,316,3691,1,0,0,0,318,3729,1,0,0,0,320,3731, + 1,0,0,0,322,3739,1,0,0,0,324,3741,1,0,0,0,326,3749,1,0,0,0,328,3771, + 1,0,0,0,330,3773,1,0,0,0,332,3777,1,0,0,0,334,3784,1,0,0,0,336,3786, + 1,0,0,0,338,3788,1,0,0,0,340,3790,1,0,0,0,342,3801,1,0,0,0,344,3804, + 1,0,0,0,346,3818,1,0,0,0,348,3828,1,0,0,0,350,3830,1,0,0,0,352,3839, + 1,0,0,0,354,3842,1,0,0,0,356,3947,1,0,0,0,358,3949,1,0,0,0,360,3968, + 1,0,0,0,362,3971,1,0,0,0,364,3975,1,0,0,0,366,3994,1,0,0,0,368,3996, + 1,0,0,0,370,4001,1,0,0,0,372,4009,1,0,0,0,374,4014,1,0,0,0,376,4029, + 1,0,0,0,378,4031,1,0,0,0,380,4034,1,0,0,0,382,4036,1,0,0,0,384,4038, + 1,0,0,0,386,4057,1,0,0,0,388,4060,1,0,0,0,390,4065,1,0,0,0,392,4067, + 1,0,0,0,394,4116,1,0,0,0,396,4118,1,0,0,0,398,4136,1,0,0,0,400,4138, + 1,0,0,0,402,4143,1,0,0,0,404,4158,1,0,0,0,406,4160,1,0,0,0,408,4169, + 1,0,0,0,410,4189,1,0,0,0,412,4203,1,0,0,0,414,4237,1,0,0,0,416,4267, + 1,0,0,0,418,4269,1,0,0,0,420,4274,1,0,0,0,422,4280,1,0,0,0,424,4283, + 1,0,0,0,426,4286,1,0,0,0,428,4292,1,0,0,0,430,4295,1,0,0,0,432,4297, + 1,0,0,0,434,4306,1,0,0,0,436,4362,1,0,0,0,438,4368,1,0,0,0,440,4370, + 1,0,0,0,442,4376,1,0,0,0,444,4378,1,0,0,0,446,4393,1,0,0,0,448,4395, + 1,0,0,0,450,4399,1,0,0,0,452,4403,1,0,0,0,454,4410,1,0,0,0,456,4412, + 1,0,0,0,458,4414,1,0,0,0,460,4416,1,0,0,0,462,4422,1,0,0,0,464,4424, + 1,0,0,0,466,4426,1,0,0,0,468,4435,1,0,0,0,470,4439,1,0,0,0,472,4452, + 1,0,0,0,474,4454,1,0,0,0,476,4460,1,0,0,0,478,4474,1,0,0,0,480,4500, + 1,0,0,0,482,4502,1,0,0,0,484,4510,1,0,0,0,486,4516,1,0,0,0,488,4524, + 1,0,0,0,490,4535,1,0,0,0,492,4537,1,0,0,0,494,4649,1,0,0,0,496,4651, + 1,0,0,0,498,4655,1,0,0,0,500,4663,1,0,0,0,502,4674,1,0,0,0,504,4676, + 1,0,0,0,506,4680,1,0,0,0,508,4688,1,0,0,0,510,4692,1,0,0,0,512,4694, + 1,0,0,0,514,4724,1,0,0,0,516,4726,1,0,0,0,518,4730,1,0,0,0,520,4748, + 1,0,0,0,522,4787,1,0,0,0,524,4789,1,0,0,0,526,4791,1,0,0,0,528,4800, + 1,0,0,0,530,4802,1,0,0,0,532,4804,1,0,0,0,534,4829,1,0,0,0,536,4831, + 1,0,0,0,538,4851,1,0,0,0,540,4853,1,0,0,0,542,5239,1,0,0,0,544,5241, + 1,0,0,0,546,5273,1,0,0,0,548,5306,1,0,0,0,550,5308,1,0,0,0,552,5310, + 1,0,0,0,554,5318,1,0,0,0,556,5322,1,0,0,0,558,5326,1,0,0,0,560,5332, + 1,0,0,0,562,5336,1,0,0,0,564,5344,1,0,0,0,566,5364,1,0,0,0,568,5535, + 1,0,0,0,570,5539,1,0,0,0,572,5650,1,0,0,0,574,5652,1,0,0,0,576,5657, + 1,0,0,0,578,5663,1,0,0,0,580,5750,1,0,0,0,582,5752,1,0,0,0,584,5754, + 1,0,0,0,586,5756,1,0,0,0,588,5786,1,0,0,0,590,5804,1,0,0,0,592,5806, + 1,0,0,0,594,5814,1,0,0,0,596,5816,1,0,0,0,598,5840,1,0,0,0,600,5900, + 1,0,0,0,602,5902,1,0,0,0,604,5913,1,0,0,0,606,5915,1,0,0,0,608,5919, + 1,0,0,0,610,5952,1,0,0,0,612,5954,1,0,0,0,614,5958,1,0,0,0,616,5962, + 1,0,0,0,618,5971,1,0,0,0,620,5983,1,0,0,0,622,6015,1,0,0,0,624,6017, + 1,0,0,0,626,6019,1,0,0,0,628,6056,1,0,0,0,630,6058,1,0,0,0,632,6060, + 1,0,0,0,634,6062,1,0,0,0,636,6065,1,0,0,0,638,6096,1,0,0,0,640,6109, + 1,0,0,0,642,6111,1,0,0,0,644,6116,1,0,0,0,646,6124,1,0,0,0,648,6127, + 1,0,0,0,650,6129,1,0,0,0,652,6135,1,0,0,0,654,6137,1,0,0,0,656,6164, + 1,0,0,0,658,6175,1,0,0,0,660,6178,1,0,0,0,662,6184,1,0,0,0,664,6192, + 1,0,0,0,666,6208,1,0,0,0,668,6210,1,0,0,0,670,6226,1,0,0,0,672,6228, + 1,0,0,0,674,6244,1,0,0,0,676,6246,1,0,0,0,678,6252,1,0,0,0,680,6273, + 1,0,0,0,682,6282,1,0,0,0,684,6284,1,0,0,0,686,6286,1,0,0,0,688,6300, + 1,0,0,0,690,6302,1,0,0,0,692,6307,1,0,0,0,694,6309,1,0,0,0,696,6324, + 1,0,0,0,698,6332,1,0,0,0,700,6335,1,0,0,0,702,6344,1,0,0,0,704,6383, + 1,0,0,0,706,6410,1,0,0,0,708,6412,1,0,0,0,710,6424,1,0,0,0,712,6427, + 1,0,0,0,714,6430,1,0,0,0,716,6438,1,0,0,0,718,6450,1,0,0,0,720,6453, + 1,0,0,0,722,6457,1,0,0,0,724,6486,1,0,0,0,726,6488,1,0,0,0,728,6497, + 1,0,0,0,730,6528,1,0,0,0,732,6535,1,0,0,0,734,6540,1,0,0,0,736,6548, + 1,0,0,0,738,6551,1,0,0,0,740,6555,1,0,0,0,742,6562,1,0,0,0,744,6601, + 1,0,0,0,746,6607,1,0,0,0,748,6609,1,0,0,0,750,6612,1,0,0,0,752,6659, + 1,0,0,0,754,6677,1,0,0,0,756,6689,1,0,0,0,758,6706,1,0,0,0,760,6708, + 1,0,0,0,762,6716,1,0,0,0,764,6730,1,0,0,0,766,7123,1,0,0,0,768,7125, + 1,0,0,0,770,7197,1,0,0,0,772,7199,1,0,0,0,774,7386,1,0,0,0,776,7388, + 1,0,0,0,778,7396,1,0,0,0,780,7412,1,0,0,0,782,7419,1,0,0,0,784,7421, + 1,0,0,0,786,7614,1,0,0,0,788,7616,1,0,0,0,790,7625,1,0,0,0,792,7633, + 1,0,0,0,794,7673,1,0,0,0,796,7675,1,0,0,0,798,7685,1,0,0,0,800,7693, + 1,0,0,0,802,7773,1,0,0,0,804,7775,1,0,0,0,806,7801,1,0,0,0,808,7804, + 1,0,0,0,810,7820,1,0,0,0,812,7822,1,0,0,0,814,7824,1,0,0,0,816,7826, + 1,0,0,0,818,7828,1,0,0,0,820,7833,1,0,0,0,822,7836,1,0,0,0,824,7843, + 1,0,0,0,826,7910,1,0,0,0,828,7912,1,0,0,0,830,7924,1,0,0,0,832,7926, + 1,0,0,0,834,7936,1,0,0,0,836,7938,1,0,0,0,838,7944,1,0,0,0,840,7976, + 1,0,0,0,842,7983,1,0,0,0,844,7986,1,0,0,0,846,7995,1,0,0,0,848,7998, + 1,0,0,0,850,8002,1,0,0,0,852,8019,1,0,0,0,854,8021,1,0,0,0,856,8023, + 1,0,0,0,858,8039,1,0,0,0,860,8045,1,0,0,0,862,8053,1,0,0,0,864,8055, + 1,0,0,0,866,8061,1,0,0,0,868,8066,1,0,0,0,870,8075,1,0,0,0,872,8101, + 1,0,0,0,874,8103,1,0,0,0,876,8173,1,0,0,0,878,8175,1,0,0,0,880,8177, + 1,0,0,0,882,8208,1,0,0,0,884,8210,1,0,0,0,886,8221,1,0,0,0,888,8250, + 1,0,0,0,890,8266,1,0,0,0,892,8268,1,0,0,0,894,8276,1,0,0,0,896,8278, + 1,0,0,0,898,8284,1,0,0,0,900,8288,1,0,0,0,902,8290,1,0,0,0,904,8292, + 1,0,0,0,906,8303,1,0,0,0,908,8305,1,0,0,0,910,8309,1,0,0,0,912,8313, + 1,0,0,0,914,8318,1,0,0,0,916,8320,1,0,0,0,918,8322,1,0,0,0,920,8326, + 1,0,0,0,922,8330,1,0,0,0,924,8338,1,0,0,0,926,8358,1,0,0,0,928,8369, + 1,0,0,0,930,8371,1,0,0,0,932,8379,1,0,0,0,934,8385,1,0,0,0,936,8389, + 1,0,0,0,938,8391,1,0,0,0,940,8399,1,0,0,0,942,8407,1,0,0,0,944,8432, + 1,0,0,0,946,8434,1,0,0,0,948,8438,1,0,0,0,950,8447,1,0,0,0,952,8459, + 1,0,0,0,954,8468,1,0,0,0,956,8480,1,0,0,0,958,8482,1,0,0,0,960,8490, + 1,0,0,0,962,8493,1,0,0,0,964,8517,1,0,0,0,966,8519,1,0,0,0,968,8523, + 1,0,0,0,970,8537,1,0,0,0,972,8540,1,0,0,0,974,8551,1,0,0,0,976,8567, + 1,0,0,0,978,8569,1,0,0,0,980,8574,1,0,0,0,982,8577,1,0,0,0,984,8592, + 1,0,0,0,986,8618,1,0,0,0,988,8620,1,0,0,0,990,8623,1,0,0,0,992,8631, + 1,0,0,0,994,8639,1,0,0,0,996,8648,1,0,0,0,998,8656,1,0,0,0,1000, + 8660,1,0,0,0,1002,8670,1,0,0,0,1004,8701,1,0,0,0,1006,8705,1,0,0, + 0,1008,8752,1,0,0,0,1010,8767,1,0,0,0,1012,8769,1,0,0,0,1014,8773, + 1,0,0,0,1016,8779,1,0,0,0,1018,8787,1,0,0,0,1020,8804,1,0,0,0,1022, + 8812,1,0,0,0,1024,8829,1,0,0,0,1026,8831,1,0,0,0,1028,8833,1,0,0, + 0,1030,8842,1,0,0,0,1032,8860,1,0,0,0,1034,8862,1,0,0,0,1036,8864, + 1,0,0,0,1038,8866,1,0,0,0,1040,8874,1,0,0,0,1042,8876,1,0,0,0,1044, + 8878,1,0,0,0,1046,8882,1,0,0,0,1048,8890,1,0,0,0,1050,8911,1,0,0, + 0,1052,8913,1,0,0,0,1054,8915,1,0,0,0,1056,8921,1,0,0,0,1058,8938, + 1,0,0,0,1060,8947,1,0,0,0,1062,8949,1,0,0,0,1064,8956,1,0,0,0,1066, + 8960,1,0,0,0,1068,8962,1,0,0,0,1070,8964,1,0,0,0,1072,8966,1,0,0, + 0,1074,8973,1,0,0,0,1076,8990,1,0,0,0,1078,8992,1,0,0,0,1080,8995, + 1,0,0,0,1082,9000,1,0,0,0,1084,9005,1,0,0,0,1086,9011,1,0,0,0,1088, + 9018,1,0,0,0,1090,9020,1,0,0,0,1092,9023,1,0,0,0,1094,9027,1,0,0, + 0,1096,9034,1,0,0,0,1098,9046,1,0,0,0,1100,9049,1,0,0,0,1102,9063, + 1,0,0,0,1104,9066,1,0,0,0,1106,9135,1,0,0,0,1108,9159,1,0,0,0,1110, + 9168,1,0,0,0,1112,9182,1,0,0,0,1114,9184,1,0,0,0,1116,9195,1,0,0, + 0,1118,9218,1,0,0,0,1120,9221,1,0,0,0,1122,9266,1,0,0,0,1124,9268, + 1,0,0,0,1126,9276,1,0,0,0,1128,9284,1,0,0,0,1130,9291,1,0,0,0,1132, + 9299,1,0,0,0,1134,9316,1,0,0,0,1136,9318,1,0,0,0,1138,9322,1,0,0, + 0,1140,9330,1,0,0,0,1142,9335,1,0,0,0,1144,9338,1,0,0,0,1146,9341, + 1,0,0,0,1148,9348,1,0,0,0,1150,9350,1,0,0,0,1152,9358,1,0,0,0,1154, + 9363,1,0,0,0,1156,9384,1,0,0,0,1158,9392,1,0,0,0,1160,9402,1,0,0, + 0,1162,9414,1,0,0,0,1164,9416,1,0,0,0,1166,9430,1,0,0,0,1168,9450, + 1,0,0,0,1170,9459,1,0,0,0,1172,9477,1,0,0,0,1174,9483,1,0,0,0,1176, + 9485,1,0,0,0,1178,9492,1,0,0,0,1180,9520,1,0,0,0,1182,9522,1,0,0, + 0,1184,9528,1,0,0,0,1186,9532,1,0,0,0,1188,9534,1,0,0,0,1190,9542, + 1,0,0,0,1192,9546,1,0,0,0,1194,9553,1,0,0,0,1196,9570,1,0,0,0,1198, + 9572,1,0,0,0,1200,9574,1,0,0,0,1202,9584,1,0,0,0,1204,9592,1,0,0, + 0,1206,9619,1,0,0,0,1208,9621,1,0,0,0,1210,9628,1,0,0,0,1212,9631, + 1,0,0,0,1214,9633,1,0,0,0,1216,9637,1,0,0,0,1218,9645,1,0,0,0,1220, + 9653,1,0,0,0,1222,9661,1,0,0,0,1224,9670,1,0,0,0,1226,9674,1,0,0, + 0,1228,9678,1,0,0,0,1230,9704,1,0,0,0,1232,9718,1,0,0,0,1234,9738, + 1,0,0,0,1236,9748,1,0,0,0,1238,9752,1,0,0,0,1240,9760,1,0,0,0,1242, + 9768,1,0,0,0,1244,9774,1,0,0,0,1246,9778,1,0,0,0,1248,9785,1,0,0, + 0,1250,9790,1,0,0,0,1252,9805,1,0,0,0,1254,9885,1,0,0,0,1256,9887, + 1,0,0,0,1258,9889,1,0,0,0,1260,9928,1,0,0,0,1262,9932,1,0,0,0,1264, + 10118,1,0,0,0,1266,10125,1,0,0,0,1268,10137,1,0,0,0,1270,10139,1, + 0,0,0,1272,10144,1,0,0,0,1274,10152,1,0,0,0,1276,10157,1,0,0,0,1278, + 10163,1,0,0,0,1280,10180,1,0,0,0,1282,10182,1,0,0,0,1284,10185,1, + 0,0,0,1286,10191,1,0,0,0,1288,10197,1,0,0,0,1290,10200,1,0,0,0,1292, + 10208,1,0,0,0,1294,10212,1,0,0,0,1296,10217,1,0,0,0,1298,10232,1, + 0,0,0,1300,10234,1,0,0,0,1302,10253,1,0,0,0,1304,10261,1,0,0,0,1306, + 10270,1,0,0,0,1308,10272,1,0,0,0,1310,10293,1,0,0,0,1312,10295,1, + 0,0,0,1314,10302,1,0,0,0,1316,10308,1,0,0,0,1318,10312,1,0,0,0,1320, + 10314,1,0,0,0,1322,10322,1,0,0,0,1324,10330,1,0,0,0,1326,10344,1, + 0,0,0,1328,10346,1,0,0,0,1330,10354,1,0,0,0,1332,10362,1,0,0,0,1334, + 10375,1,0,0,0,1336,10379,1,0,0,0,1338,10381,1,0,0,0,1340,10394,1, + 0,0,0,1342,10396,1,0,0,0,1344,10404,1,0,0,0,1346,10411,1,0,0,0,1348, + 10419,1,0,0,0,1350,10431,1,0,0,0,1352,10433,1,0,0,0,1354,10435,1, + 0,0,0,1356,10444,1,0,0,0,1358,10475,1,0,0,0,1360,10484,1,0,0,0,1362, + 10491,1,0,0,0,1364,10493,1,0,0,0,1366,10504,1,0,0,0,1368,10508,1, + 0,0,0,1370,10513,1,0,0,0,1372,10516,1,0,0,0,1374,10518,1,0,0,0,1376, + 10539,1,0,0,0,1378,10541,1,0,0,0,1380,10544,1,0,0,0,1382,10551,1, + 0,0,0,1384,10554,1,0,0,0,1386,10556,1,0,0,0,1388,10572,1,0,0,0,1390, + 10574,1,0,0,0,1392,10582,1,0,0,0,1394,10590,1,0,0,0,1396,10598,1, + 0,0,0,1398,10606,1,0,0,0,1400,10614,1,0,0,0,1402,10618,1,0,0,0,1404, + 10622,1,0,0,0,1406,10626,1,0,0,0,1408,10630,1,0,0,0,1410,10634,1, + 0,0,0,1412,10638,1,0,0,0,1414,10642,1,0,0,0,1416,10650,1,0,0,0,1418, + 10658,1,0,0,0,1420,10662,1,0,0,0,1422,10666,1,0,0,0,1424,10670,1, + 0,0,0,1426,10672,1,0,0,0,1428,10678,1,0,0,0,1430,10684,1,0,0,0,1432, + 10694,1,0,0,0,1434,10696,1,0,0,0,1436,10698,1,0,0,0,1438,10700,1, + 0,0,0,1440,10702,1,0,0,0,1442,10708,1,0,0,0,1444,10714,1,0,0,0,1446, + 10720,1,0,0,0,1448,10757,1,0,0,0,1450,10759,1,0,0,0,1452,10761,1, + 0,0,0,1454,10763,1,0,0,0,1456,10765,1,0,0,0,1458,10767,1,0,0,0,1460, + 10782,1,0,0,0,1462,10784,1,0,0,0,1464,10792,1,0,0,0,1466,10794,1, + 0,0,0,1468,10796,1,0,0,0,1470,10803,1,0,0,0,1472,10805,1,0,0,0,1474, + 10817,1,0,0,0,1476,10819,1,0,0,0,1478,10833,1,0,0,0,1480,10837,1, + 0,0,0,1482,10846,1,0,0,0,1484,10852,1,0,0,0,1486,10856,1,0,0,0,1488, + 10862,1,0,0,0,1490,10870,1,0,0,0,1492,10882,1,0,0,0,1494,10884,1, + 0,0,0,1496,10886,1,0,0,0,1498,10939,1,0,0,0,1500,10941,1,0,0,0,1502, + 10943,1,0,0,0,1504,10945,1,0,0,0,1506,10952,1,0,0,0,1508,10975,1, + 0,0,0,1510,10977,1,0,0,0,1512,10983,1,0,0,0,1514,10987,1,0,0,0,1516, + 10989,1,0,0,0,1518,10996,1,0,0,0,1520,11003,1,0,0,0,1522,11006,1, + 0,0,0,1524,11010,1,0,0,0,1526,11017,1,0,0,0,1528,11019,1,0,0,0,1530, + 11043,1,0,0,0,1532,11045,1,0,0,0,1534,11052,1,0,0,0,1536,11054,1, + 0,0,0,1538,11062,1,0,0,0,1540,11065,1,0,0,0,1542,11069,1,0,0,0,1544, + 11071,1,0,0,0,1546,11075,1,0,0,0,1548,11077,1,0,0,0,1550,11082,1, + 0,0,0,1552,11087,1,0,0,0,1554,11093,1,0,0,0,1556,11097,1,0,0,0,1558, + 11099,1,0,0,0,1560,11104,1,0,0,0,1562,11134,1,0,0,0,1564,11136,1, + 0,0,0,1566,11156,1,0,0,0,1568,11160,1,0,0,0,1570,11162,1,0,0,0,1572, + 11167,1,0,0,0,1574,11176,1,0,0,0,1576,11178,1,0,0,0,1578,11186,1, + 0,0,0,1580,11190,1,0,0,0,1582,11192,1,0,0,0,1584,11196,1,0,0,0,1586, + 11207,1,0,0,0,1588,11224,1,0,0,0,1590,11230,1,0,0,0,1592,11232,1, + 0,0,0,1594,11242,1,0,0,0,1596,11245,1,0,0,0,1598,11249,1,0,0,0,1600, + 11257,1,0,0,0,1602,11259,1,0,0,0,1604,11262,1,0,0,0,1606,11267,1, + 0,0,0,1608,11272,1,0,0,0,1610,11294,1,0,0,0,1612,11308,1,0,0,0,1614, + 11312,1,0,0,0,1616,11317,1,0,0,0,1618,11319,1,0,0,0,1620,11321,1, + 0,0,0,1622,11333,1,0,0,0,1624,11335,1,0,0,0,1626,11342,1,0,0,0,1628, + 11344,1,0,0,0,1630,11362,1,0,0,0,1632,11398,1,0,0,0,1634,11400,1, + 0,0,0,1636,11409,1,0,0,0,1638,11414,1,0,0,0,1640,11416,1,0,0,0,1642, + 11420,1,0,0,0,1644,11428,1,0,0,0,1646,11436,1,0,0,0,1648,11438,1, + 0,0,0,1650,11445,1,0,0,0,1652,11448,1,0,0,0,1654,11464,1,0,0,0,1656, + 11466,1,0,0,0,1658,11480,1,0,0,0,1660,11482,1,0,0,0,1662,11509,1, + 0,0,0,1664,11511,1,0,0,0,1666,11522,1,0,0,0,1668,11528,1,0,0,0,1670, + 11532,1,0,0,0,1672,11534,1,0,0,0,1674,11544,1,0,0,0,1676,11549,1, + 0,0,0,1678,11566,1,0,0,0,1680,11568,1,0,0,0,1682,11576,1,0,0,0,1684, + 11613,1,0,0,0,1686,11621,1,0,0,0,1688,11649,1,0,0,0,1690,11651,1, + 0,0,0,1692,11665,1,0,0,0,1694,11687,1,0,0,0,1696,11689,1,0,0,0,1698, + 11702,1,0,0,0,1700,11704,1,0,0,0,1702,11708,1,0,0,0,1704,11711,1, + 0,0,0,1706,11717,1,0,0,0,1708,11723,1,0,0,0,1710,11741,1,0,0,0,1712, + 11745,1,0,0,0,1714,11750,1,0,0,0,1716,11753,1,0,0,0,1718,11757,1, + 0,0,0,1720,11762,1,0,0,0,1722,11773,1,0,0,0,1724,11777,1,0,0,0,1726, + 11781,1,0,0,0,1728,11785,1,0,0,0,1730,11787,1,0,0,0,1732,11792,1, + 0,0,0,1734,11794,1,0,0,0,1736,11797,1,0,0,0,1738,11817,1,0,0,0,1740, + 11819,1,0,0,0,1742,11821,1,0,0,0,1744,11823,1,0,0,0,1746,11825,1, + 0,0,0,1748,11829,1,0,0,0,1750,1752,3,4,2,0,1751,1750,1,0,0,0,1752, + 1755,1,0,0,0,1753,1751,1,0,0,0,1753,1754,1,0,0,0,1754,1756,1,0,0, + 0,1755,1753,1,0,0,0,1756,1757,5,0,0,1,1757,1,1,0,0,0,1758,1759,3, + 1504,752,0,1759,3,1,0,0,0,1760,1762,3,6,3,0,1761,1763,5,7,0,0,1762, + 1761,1,0,0,0,1762,1763,1,0,0,0,1763,5,1,0,0,0,1764,1882,3,488,244, + 0,1765,1882,3,864,432,0,1766,1882,3,856,428,0,1767,1882,3,858,429, + 0,1768,1882,3,616,308,0,1769,1882,3,870,435,0,1770,1882,3,514,257, + 0,1771,1882,3,350,175,0,1772,1882,3,356,178,0,1773,1882,3,366,183, + 0,1774,1882,3,392,196,0,1775,1882,3,716,358,0,1776,1882,3,42,21, + 0,1777,1882,3,770,385,0,1778,1882,3,774,387,0,1779,1882,3,786,393, + 0,1780,1882,3,776,388,0,1781,1882,3,784,392,0,1782,1882,3,410,205, + 0,1783,1882,3,412,206,0,1784,1882,3,310,155,0,1785,1882,3,866,433, + 0,1786,1882,3,104,52,0,1787,1882,3,764,382,0,1788,1882,3,150,75, + 0,1789,1882,3,794,397,0,1790,1882,3,30,15,0,1791,1882,3,32,16,0, + 1792,1882,3,26,13,0,1793,1882,3,802,401,0,1794,1882,3,292,146,0, + 1795,1882,3,876,438,0,1796,1882,3,874,437,0,1797,1882,3,406,203, + 0,1798,1882,3,890,445,0,1799,1882,3,10,5,0,1800,1882,3,100,50,0, + 1801,1882,3,156,78,0,1802,1882,3,882,441,0,1803,1882,3,568,284,0, + 1804,1882,3,94,47,0,1805,1882,3,158,79,0,1806,1882,3,432,216,0,1807, + 1882,3,294,147,0,1808,1882,3,492,246,0,1809,1882,3,744,372,0,1810, + 1882,3,880,440,0,1811,1882,3,868,434,0,1812,1882,3,344,172,0,1813, + 1882,3,358,179,0,1814,1882,3,384,192,0,1815,1882,3,394,197,0,1816, + 1882,3,654,327,0,1817,1882,3,40,20,0,1818,1882,3,300,150,0,1819, + 1882,3,518,259,0,1820,1882,3,532,266,0,1821,1882,3,788,394,0,1822, + 1882,3,534,267,0,1823,1882,3,408,204,0,1824,1882,3,326,163,0,1825, + 1882,3,46,23,0,1826,1882,3,308,154,0,1827,1882,3,188,94,0,1828,1882, + 3,796,398,0,1829,1882,3,290,145,0,1830,1882,3,340,170,0,1831,1882, + 3,750,375,0,1832,1882,3,436,218,0,1833,1882,3,480,240,0,1834,1882, + 3,12,6,0,1835,1882,3,24,12,0,1836,1882,3,402,201,0,1837,1882,3,844, + 422,0,1838,1882,3,948,474,0,1839,1882,3,992,496,0,1840,1882,3,494, + 247,0,1841,1882,3,968,484,0,1842,1882,3,102,51,0,1843,1882,3,738, + 369,0,1844,1882,3,542,271,0,1845,1882,3,944,472,0,1846,1882,3,926, + 463,0,1847,1882,3,578,289,0,1848,1882,3,586,293,0,1849,1882,3,608, + 304,0,1850,1882,3,1682,841,0,1851,1882,3,396,198,0,1852,1882,3,626, + 313,0,1853,1882,3,950,475,0,1854,1882,3,822,411,0,1855,1882,3,306, + 153,0,1856,1882,3,842,421,0,1857,1882,3,972,486,0,1858,1882,3,818, + 409,0,1859,1882,3,938,469,0,1860,1882,3,540,270,0,1861,1882,3,754, + 377,0,1862,1882,3,726,363,0,1863,1882,3,724,362,0,1864,1882,3,728, + 364,0,1865,1882,3,766,383,0,1866,1882,3,588,294,0,1867,1882,3,610, + 305,0,1868,1882,3,804,402,0,1869,1882,3,572,286,0,1870,1882,3,1000, + 500,0,1871,1882,3,826,413,0,1872,1882,3,564,282,0,1873,1882,3,824, + 412,0,1874,1882,3,982,491,0,1875,1882,3,888,444,0,1876,1882,3,82, + 41,0,1877,1882,3,54,27,0,1878,1882,3,92,46,0,1879,1882,3,838,419, + 0,1880,1882,3,8,4,0,1881,1764,1,0,0,0,1881,1765,1,0,0,0,1881,1766, + 1,0,0,0,1881,1767,1,0,0,0,1881,1768,1,0,0,0,1881,1769,1,0,0,0,1881, + 1770,1,0,0,0,1881,1771,1,0,0,0,1881,1772,1,0,0,0,1881,1773,1,0,0, + 0,1881,1774,1,0,0,0,1881,1775,1,0,0,0,1881,1776,1,0,0,0,1881,1777, + 1,0,0,0,1881,1778,1,0,0,0,1881,1779,1,0,0,0,1881,1780,1,0,0,0,1881, + 1781,1,0,0,0,1881,1782,1,0,0,0,1881,1783,1,0,0,0,1881,1784,1,0,0, + 0,1881,1785,1,0,0,0,1881,1786,1,0,0,0,1881,1787,1,0,0,0,1881,1788, + 1,0,0,0,1881,1789,1,0,0,0,1881,1790,1,0,0,0,1881,1791,1,0,0,0,1881, + 1792,1,0,0,0,1881,1793,1,0,0,0,1881,1794,1,0,0,0,1881,1795,1,0,0, + 0,1881,1796,1,0,0,0,1881,1797,1,0,0,0,1881,1798,1,0,0,0,1881,1799, + 1,0,0,0,1881,1800,1,0,0,0,1881,1801,1,0,0,0,1881,1802,1,0,0,0,1881, + 1803,1,0,0,0,1881,1804,1,0,0,0,1881,1805,1,0,0,0,1881,1806,1,0,0, + 0,1881,1807,1,0,0,0,1881,1808,1,0,0,0,1881,1809,1,0,0,0,1881,1810, + 1,0,0,0,1881,1811,1,0,0,0,1881,1812,1,0,0,0,1881,1813,1,0,0,0,1881, + 1814,1,0,0,0,1881,1815,1,0,0,0,1881,1816,1,0,0,0,1881,1817,1,0,0, + 0,1881,1818,1,0,0,0,1881,1819,1,0,0,0,1881,1820,1,0,0,0,1881,1821, + 1,0,0,0,1881,1822,1,0,0,0,1881,1823,1,0,0,0,1881,1824,1,0,0,0,1881, + 1825,1,0,0,0,1881,1826,1,0,0,0,1881,1827,1,0,0,0,1881,1828,1,0,0, + 0,1881,1829,1,0,0,0,1881,1830,1,0,0,0,1881,1831,1,0,0,0,1881,1832, + 1,0,0,0,1881,1833,1,0,0,0,1881,1834,1,0,0,0,1881,1835,1,0,0,0,1881, + 1836,1,0,0,0,1881,1837,1,0,0,0,1881,1838,1,0,0,0,1881,1839,1,0,0, + 0,1881,1840,1,0,0,0,1881,1841,1,0,0,0,1881,1842,1,0,0,0,1881,1843, + 1,0,0,0,1881,1844,1,0,0,0,1881,1845,1,0,0,0,1881,1846,1,0,0,0,1881, + 1847,1,0,0,0,1881,1848,1,0,0,0,1881,1849,1,0,0,0,1881,1850,1,0,0, + 0,1881,1851,1,0,0,0,1881,1852,1,0,0,0,1881,1853,1,0,0,0,1881,1854, + 1,0,0,0,1881,1855,1,0,0,0,1881,1856,1,0,0,0,1881,1857,1,0,0,0,1881, + 1858,1,0,0,0,1881,1859,1,0,0,0,1881,1860,1,0,0,0,1881,1861,1,0,0, + 0,1881,1862,1,0,0,0,1881,1863,1,0,0,0,1881,1864,1,0,0,0,1881,1865, + 1,0,0,0,1881,1866,1,0,0,0,1881,1867,1,0,0,0,1881,1868,1,0,0,0,1881, + 1869,1,0,0,0,1881,1870,1,0,0,0,1881,1871,1,0,0,0,1881,1872,1,0,0, + 0,1881,1873,1,0,0,0,1881,1874,1,0,0,0,1881,1875,1,0,0,0,1881,1876, + 1,0,0,0,1881,1877,1,0,0,0,1881,1878,1,0,0,0,1881,1879,1,0,0,0,1881, + 1880,1,0,0,0,1882,7,1,0,0,0,1883,1885,5,581,0,0,1884,1886,5,582, + 0,0,1885,1884,1,0,0,0,1885,1886,1,0,0,0,1886,9,1,0,0,0,1887,1888, + 5,433,0,0,1888,1889,3,1258,629,0,1889,11,1,0,0,0,1890,1891,5,46, + 0,0,1891,1892,5,318,0,0,1892,1894,3,1468,734,0,1893,1895,3,14,7, + 0,1894,1893,1,0,0,0,1894,1895,1,0,0,0,1895,1896,1,0,0,0,1896,1897, + 3,16,8,0,1897,13,1,0,0,0,1898,1899,5,105,0,0,1899,15,1,0,0,0,1900, + 1902,3,22,11,0,1901,1900,1,0,0,0,1902,1905,1,0,0,0,1903,1901,1,0, + 0,0,1903,1904,1,0,0,0,1904,17,1,0,0,0,1905,1903,1,0,0,0,1906,1908, + 3,20,10,0,1907,1906,1,0,0,0,1908,1911,1,0,0,0,1909,1907,1,0,0,0, + 1909,1910,1,0,0,0,1910,19,1,0,0,0,1911,1909,1,0,0,0,1912,1915,5, + 287,0,0,1913,1916,3,1458,729,0,1914,1916,5,78,0,0,1915,1913,1,0, + 0,0,1915,1914,1,0,0,0,1916,1948,1,0,0,0,1917,1918,7,0,0,0,1918,1919, + 5,287,0,0,1919,1948,3,1458,729,0,1920,1948,7,1,0,0,1921,1948,7,2, + 0,0,1922,1948,7,3,0,0,1923,1948,7,4,0,0,1924,1948,7,5,0,0,1925,1948, + 7,6,0,0,1926,1948,7,7,0,0,1927,1948,7,8,0,0,1928,1929,5,164,0,0, + 1929,1930,5,74,0,0,1930,1948,3,1464,732,0,1931,1932,5,371,0,0,1932, + 1933,5,368,0,0,1933,1948,3,1458,729,0,1934,1935,5,68,0,0,1935,1936, + 5,318,0,0,1936,1948,3,1416,708,0,1937,1938,5,68,0,0,1938,1939,5, + 66,0,0,1939,1948,3,1416,708,0,1940,1941,5,318,0,0,1941,1948,3,1472, + 736,0,1942,1943,5,134,0,0,1943,1948,3,1416,708,0,1944,1945,5,99, + 0,0,1945,1948,3,1472,736,0,1946,1948,3,1492,746,0,1947,1912,1,0, + 0,0,1947,1917,1,0,0,0,1947,1920,1,0,0,0,1947,1921,1,0,0,0,1947,1922, + 1,0,0,0,1947,1923,1,0,0,0,1947,1924,1,0,0,0,1947,1925,1,0,0,0,1947, + 1926,1,0,0,0,1947,1927,1,0,0,0,1947,1928,1,0,0,0,1947,1931,1,0,0, + 0,1947,1934,1,0,0,0,1947,1937,1,0,0,0,1947,1940,1,0,0,0,1947,1942, + 1,0,0,0,1947,1944,1,0,0,0,1947,1946,1,0,0,0,1948,21,1,0,0,0,1949, + 1960,3,20,10,0,1950,1951,5,348,0,0,1951,1960,3,1456,728,0,1952,1953, + 5,134,0,0,1953,1960,3,1472,736,0,1954,1955,5,318,0,0,1955,1960,3, + 1472,736,0,1956,1957,5,68,0,0,1957,1958,7,9,0,0,1958,1960,3,1472, + 736,0,1959,1949,1,0,0,0,1959,1950,1,0,0,0,1959,1952,1,0,0,0,1959, + 1954,1,0,0,0,1959,1956,1,0,0,0,1960,23,1,0,0,0,1961,1962,5,46,0, + 0,1962,1963,5,99,0,0,1963,1965,3,1468,734,0,1964,1966,3,14,7,0,1965, + 1964,1,0,0,0,1965,1966,1,0,0,0,1966,1967,1,0,0,0,1967,1968,3,16, + 8,0,1968,25,1,0,0,0,1969,1970,5,138,0,0,1970,1971,7,10,0,0,1971, + 1973,3,1470,735,0,1972,1974,3,14,7,0,1973,1972,1,0,0,0,1973,1974, + 1,0,0,0,1974,1975,1,0,0,0,1975,1976,3,18,9,0,1976,27,1,0,0,0,1977, + 1982,1,0,0,0,1978,1979,5,68,0,0,1979,1980,5,175,0,0,1980,1982,3, + 1420,710,0,1981,1977,1,0,0,0,1981,1978,1,0,0,0,1982,29,1,0,0,0,1983, + 1984,5,138,0,0,1984,1987,7,10,0,0,1985,1988,5,30,0,0,1986,1988,3, + 1470,735,0,1987,1985,1,0,0,0,1987,1986,1,0,0,0,1988,1989,1,0,0,0, + 1989,1990,3,28,14,0,1990,1991,3,88,44,0,1991,31,1,0,0,0,1992,1993, + 5,138,0,0,1993,1994,5,442,0,0,1994,1996,3,1426,713,0,1995,1997,3, + 660,330,0,1996,1995,1,0,0,0,1996,1997,1,0,0,0,1997,1998,1,0,0,0, + 1998,1999,3,34,17,0,1999,33,1,0,0,0,2000,2002,3,36,18,0,2001,2003, + 5,315,0,0,2002,2001,1,0,0,0,2002,2003,1,0,0,0,2003,2021,1,0,0,0, + 2004,2005,5,309,0,0,2005,2006,5,94,0,0,2006,2021,3,1424,712,0,2007, + 2008,5,282,0,0,2008,2009,5,94,0,0,2009,2021,3,1470,735,0,2010,2011, + 5,333,0,0,2011,2012,5,323,0,0,2012,2021,3,48,24,0,2013,2015,5,269, + 0,0,2014,2013,1,0,0,0,2014,2015,1,0,0,0,2015,2016,1,0,0,0,2016,2017, + 5,462,0,0,2017,2018,5,80,0,0,2018,2019,5,204,0,0,2019,2021,3,1436, + 718,0,2020,2000,1,0,0,0,2020,2004,1,0,0,0,2020,2007,1,0,0,0,2020, + 2010,1,0,0,0,2020,2014,1,0,0,0,2021,35,1,0,0,0,2022,2026,3,38,19, + 0,2023,2025,3,38,19,0,2024,2023,1,0,0,0,2025,2028,1,0,0,0,2026,2024, + 1,0,0,0,2026,2027,1,0,0,0,2027,37,1,0,0,0,2028,2026,1,0,0,0,2029, + 2071,5,222,0,0,2030,2071,5,338,0,0,2031,2071,5,377,0,0,2032,2034, + 5,77,0,0,2033,2032,1,0,0,0,2033,2034,1,0,0,0,2034,2035,1,0,0,0,2035, + 2071,5,250,0,0,2036,2038,5,205,0,0,2037,2036,1,0,0,0,2037,2038,1, + 0,0,0,2038,2039,1,0,0,0,2039,2040,5,327,0,0,2040,2047,5,243,0,0, + 2041,2043,5,205,0,0,2042,2041,1,0,0,0,2042,2043,1,0,0,0,2043,2044, + 1,0,0,0,2044,2045,5,327,0,0,2045,2047,5,181,0,0,2046,2037,1,0,0, + 0,2046,2042,1,0,0,0,2047,2071,1,0,0,0,2048,2049,5,460,0,0,2049,2071, + 7,11,0,0,2050,2051,5,170,0,0,2051,2071,3,1438,719,0,2052,2053,5, + 320,0,0,2053,2071,3,1436,718,0,2054,2055,5,333,0,0,2055,2056,3,1436, + 718,0,2056,2059,7,12,0,0,2057,2060,3,1436,718,0,2058,2060,5,53,0, + 0,2059,2057,1,0,0,0,2059,2058,1,0,0,0,2060,2071,1,0,0,0,2061,2062, + 5,333,0,0,2062,2063,3,1436,718,0,2063,2064,5,64,0,0,2064,2065,5, + 434,0,0,2065,2071,1,0,0,0,2066,2067,5,313,0,0,2067,2071,3,1436,718, + 0,2068,2069,5,313,0,0,2069,2071,5,30,0,0,2070,2029,1,0,0,0,2070, + 2030,1,0,0,0,2070,2031,1,0,0,0,2070,2033,1,0,0,0,2070,2046,1,0,0, + 0,2070,2048,1,0,0,0,2070,2050,1,0,0,0,2070,2052,1,0,0,0,2070,2054, + 1,0,0,0,2070,2061,1,0,0,0,2070,2066,1,0,0,0,2070,2068,1,0,0,0,2071, + 39,1,0,0,0,2072,2073,5,46,0,0,2073,2074,5,66,0,0,2074,2076,3,1466, + 733,0,2075,2077,3,14,7,0,2076,2075,1,0,0,0,2076,2077,1,0,0,0,2077, + 2078,1,0,0,0,2078,2079,3,16,8,0,2079,41,1,0,0,0,2080,2081,5,138, + 0,0,2081,2082,5,66,0,0,2082,2083,3,1470,735,0,2083,2084,3,44,22, + 0,2084,2085,5,99,0,0,2085,2086,3,1472,736,0,2086,43,1,0,0,0,2087, + 2088,7,13,0,0,2088,45,1,0,0,0,2089,2090,5,46,0,0,2090,2092,5,323, + 0,0,2091,2093,3,516,258,0,2092,2091,1,0,0,0,2092,2093,1,0,0,0,2093, + 2100,1,0,0,0,2094,2096,3,48,24,0,2095,2094,1,0,0,0,2095,2096,1,0, + 0,0,2096,2097,1,0,0,0,2097,2098,5,106,0,0,2098,2101,3,1470,735,0, + 2099,2101,3,48,24,0,2100,2095,1,0,0,0,2100,2099,1,0,0,0,2101,2102, + 1,0,0,0,2102,2103,3,50,25,0,2103,47,1,0,0,0,2104,2106,3,1474,737, + 0,2105,2107,3,560,280,0,2106,2105,1,0,0,0,2106,2107,1,0,0,0,2107, + 49,1,0,0,0,2108,2110,3,52,26,0,2109,2108,1,0,0,0,2110,2113,1,0,0, + 0,2111,2109,1,0,0,0,2111,2112,1,0,0,0,2112,51,1,0,0,0,2113,2111, + 1,0,0,0,2114,2121,3,188,94,0,2115,2121,3,626,313,0,2116,2121,3,308, + 154,0,2117,2121,3,436,218,0,2118,2121,3,586,293,0,2119,2121,3,838, + 419,0,2120,2114,1,0,0,0,2120,2115,1,0,0,0,2120,2116,1,0,0,0,2120, + 2117,1,0,0,0,2120,2118,1,0,0,0,2120,2119,1,0,0,0,2121,53,1,0,0,0, + 2122,2124,5,333,0,0,2123,2125,7,14,0,0,2124,2123,1,0,0,0,2124,2125, + 1,0,0,0,2125,2126,1,0,0,0,2126,2127,3,56,28,0,2127,55,1,0,0,0,2128, + 2129,5,356,0,0,2129,2137,3,832,416,0,2130,2131,5,332,0,0,2131,2132, + 5,154,0,0,2132,2133,5,36,0,0,2133,2134,5,356,0,0,2134,2137,3,832, + 416,0,2135,2137,3,60,30,0,2136,2128,1,0,0,0,2136,2130,1,0,0,0,2136, + 2135,1,0,0,0,2137,57,1,0,0,0,2138,2141,5,30,0,0,2139,2141,3,62,31, + 0,2140,2138,1,0,0,0,2140,2139,1,0,0,0,2141,2143,1,0,0,0,2142,2144, + 7,12,0,0,2143,2142,1,0,0,0,2143,2144,1,0,0,0,2144,2147,1,0,0,0,2145, + 2148,5,53,0,0,2146,2148,3,64,32,0,2147,2145,1,0,0,0,2147,2146,1, + 0,0,0,2147,2148,1,0,0,0,2148,59,1,0,0,0,2149,2150,5,418,0,0,2150, + 2151,5,386,0,0,2151,2177,3,74,37,0,2152,2153,5,152,0,0,2153,2177, + 3,1458,729,0,2154,2155,5,323,0,0,2155,2177,3,1422,711,0,2156,2158, + 5,267,0,0,2157,2159,3,76,38,0,2158,2157,1,0,0,0,2158,2159,1,0,0, + 0,2159,2177,1,0,0,0,2160,2161,5,318,0,0,2161,2177,3,80,40,0,2162, + 2163,5,332,0,0,2163,2164,5,106,0,0,2164,2177,3,80,40,0,2165,2166, + 5,383,0,0,2166,2167,5,279,0,0,2167,2177,3,1276,638,0,2168,2169,5, + 356,0,0,2169,2170,5,337,0,0,2170,2177,3,1458,729,0,2171,2172,3,62, + 31,0,2172,2173,5,64,0,0,2173,2174,5,434,0,0,2174,2177,1,0,0,0,2175, + 2177,3,58,29,0,2176,2149,1,0,0,0,2176,2152,1,0,0,0,2176,2154,1,0, + 0,0,2176,2156,1,0,0,0,2176,2160,1,0,0,0,2176,2162,1,0,0,0,2176,2165, + 1,0,0,0,2176,2168,1,0,0,0,2176,2171,1,0,0,0,2176,2175,1,0,0,0,2177, + 61,1,0,0,0,2178,2183,3,1474,737,0,2179,2180,5,11,0,0,2180,2182,3, + 1474,737,0,2181,2179,1,0,0,0,2182,2185,1,0,0,0,2183,2181,1,0,0,0, + 2183,2184,1,0,0,0,2184,63,1,0,0,0,2185,2183,1,0,0,0,2186,2191,3, + 66,33,0,2187,2188,5,6,0,0,2188,2190,3,66,33,0,2189,2187,1,0,0,0, + 2190,2193,1,0,0,0,2191,2189,1,0,0,0,2191,2192,1,0,0,0,2192,65,1, + 0,0,0,2193,2191,1,0,0,0,2194,2197,3,72,36,0,2195,2197,3,322,161, + 0,2196,2194,1,0,0,0,2196,2195,1,0,0,0,2197,67,1,0,0,0,2198,2199, + 5,300,0,0,2199,2204,7,15,0,0,2200,2201,5,310,0,0,2201,2204,5,300, + 0,0,2202,2204,5,330,0,0,2203,2198,1,0,0,0,2203,2200,1,0,0,0,2203, + 2202,1,0,0,0,2204,69,1,0,0,0,2205,2210,5,96,0,0,2206,2210,5,60,0, + 0,2207,2210,5,80,0,0,2208,2210,3,78,39,0,2209,2205,1,0,0,0,2209, + 2206,1,0,0,0,2209,2207,1,0,0,0,2209,2208,1,0,0,0,2210,71,1,0,0,0, + 2211,2216,5,96,0,0,2212,2216,5,60,0,0,2213,2216,5,80,0,0,2214,2216, + 3,80,40,0,2215,2211,1,0,0,0,2215,2212,1,0,0,0,2215,2213,1,0,0,0, + 2215,2214,1,0,0,0,2216,73,1,0,0,0,2217,2234,3,1458,729,0,2218,2234, + 3,1492,746,0,2219,2220,3,1202,601,0,2220,2222,3,1458,729,0,2221, + 2223,3,1206,603,0,2222,2221,1,0,0,0,2222,2223,1,0,0,0,2223,2234, + 1,0,0,0,2224,2225,3,1202,601,0,2225,2226,5,2,0,0,2226,2227,3,1456, + 728,0,2227,2228,5,3,0,0,2228,2229,3,1458,729,0,2229,2234,1,0,0,0, + 2230,2234,3,322,161,0,2231,2234,5,53,0,0,2232,2234,5,254,0,0,2233, + 2217,1,0,0,0,2233,2218,1,0,0,0,2233,2219,1,0,0,0,2233,2224,1,0,0, + 0,2233,2230,1,0,0,0,2233,2231,1,0,0,0,2233,2232,1,0,0,0,2234,75, + 1,0,0,0,2235,2238,3,1458,729,0,2236,2238,5,53,0,0,2237,2235,1,0, + 0,0,2237,2236,1,0,0,0,2238,77,1,0,0,0,2239,2242,3,1486,743,0,2240, + 2242,3,1458,729,0,2241,2239,1,0,0,0,2241,2240,1,0,0,0,2242,79,1, + 0,0,0,2243,2246,3,1488,744,0,2244,2246,3,1458,729,0,2245,2243,1, + 0,0,0,2245,2244,1,0,0,0,2246,81,1,0,0,0,2247,2248,5,313,0,0,2248, + 2249,3,84,42,0,2249,83,1,0,0,0,2250,2251,5,418,0,0,2251,2259,5,386, + 0,0,2252,2253,5,356,0,0,2253,2254,5,244,0,0,2254,2259,5,251,0,0, + 2255,2256,5,332,0,0,2256,2259,5,106,0,0,2257,2259,3,86,43,0,2258, + 2250,1,0,0,0,2258,2252,1,0,0,0,2258,2255,1,0,0,0,2258,2257,1,0,0, + 0,2259,85,1,0,0,0,2260,2263,5,30,0,0,2261,2263,3,62,31,0,2262,2260, + 1,0,0,0,2262,2261,1,0,0,0,2263,87,1,0,0,0,2264,2265,5,333,0,0,2265, + 2268,3,56,28,0,2266,2268,3,82,41,0,2267,2264,1,0,0,0,2267,2266,1, + 0,0,0,2268,89,1,0,0,0,2269,2270,5,333,0,0,2270,2273,3,60,30,0,2271, + 2273,3,82,41,0,2272,2269,1,0,0,0,2272,2271,1,0,0,0,2273,91,1,0,0, + 0,2274,2284,5,335,0,0,2275,2285,3,62,31,0,2276,2277,5,418,0,0,2277, + 2285,5,386,0,0,2278,2279,5,356,0,0,2279,2280,5,244,0,0,2280,2285, + 5,251,0,0,2281,2282,5,332,0,0,2282,2285,5,106,0,0,2283,2285,5,30, + 0,0,2284,2275,1,0,0,0,2284,2276,1,0,0,0,2284,2278,1,0,0,0,2284,2281, + 1,0,0,0,2284,2283,1,0,0,0,2285,93,1,0,0,0,2286,2287,5,333,0,0,2287, + 2288,5,165,0,0,2288,2289,3,96,48,0,2289,2290,3,98,49,0,2290,95,1, + 0,0,0,2291,2294,5,30,0,0,2292,2294,3,1390,695,0,2293,2291,1,0,0, + 0,2293,2292,1,0,0,0,2294,97,1,0,0,0,2295,2296,7,16,0,0,2296,99,1, + 0,0,0,2297,2298,5,155,0,0,2298,101,1,0,0,0,2299,2300,5,187,0,0,2300, + 2301,7,17,0,0,2301,103,1,0,0,0,2302,2303,5,138,0,0,2303,2305,5,92, + 0,0,2304,2306,3,748,374,0,2305,2304,1,0,0,0,2305,2306,1,0,0,0,2306, + 2307,1,0,0,0,2307,2310,3,1118,559,0,2308,2311,3,106,53,0,2309,2311, + 3,116,58,0,2310,2308,1,0,0,0,2310,2309,1,0,0,0,2311,2436,1,0,0,0, + 2312,2313,5,138,0,0,2313,2314,5,92,0,0,2314,2315,5,30,0,0,2315,2316, + 5,68,0,0,2316,2317,5,351,0,0,2317,2321,3,1402,701,0,2318,2319,5, + 281,0,0,2319,2320,5,147,0,0,2320,2322,3,1472,736,0,2321,2318,1,0, + 0,0,2321,2322,1,0,0,0,2322,2323,1,0,0,0,2323,2324,5,333,0,0,2324, + 2325,5,351,0,0,2325,2327,3,1400,700,0,2326,2328,3,978,489,0,2327, + 2326,1,0,0,0,2327,2328,1,0,0,0,2328,2436,1,0,0,0,2329,2330,5,138, + 0,0,2330,2332,5,92,0,0,2331,2333,3,748,374,0,2332,2331,1,0,0,0,2332, + 2333,1,0,0,0,2333,2334,1,0,0,0,2334,2335,3,1406,703,0,2335,2336, + 5,435,0,0,2336,2337,5,285,0,0,2337,2342,3,1412,706,0,2338,2339,5, + 62,0,0,2339,2340,5,422,0,0,2340,2343,3,108,54,0,2341,2343,5,53,0, + 0,2342,2338,1,0,0,0,2342,2341,1,0,0,0,2343,2436,1,0,0,0,2344,2345, + 5,138,0,0,2345,2347,5,92,0,0,2346,2348,3,748,374,0,2347,2346,1,0, + 0,0,2347,2348,1,0,0,0,2348,2349,1,0,0,0,2349,2350,3,1406,703,0,2350, + 2351,5,436,0,0,2351,2352,5,285,0,0,2352,2354,3,1412,706,0,2353,2355, + 7,18,0,0,2354,2353,1,0,0,0,2354,2355,1,0,0,0,2355,2436,1,0,0,0,2356, + 2357,5,138,0,0,2357,2359,5,226,0,0,2358,2360,3,748,374,0,2359,2358, + 1,0,0,0,2359,2360,1,0,0,0,2360,2361,1,0,0,0,2361,2364,3,1412,706, + 0,2362,2365,3,106,53,0,2363,2365,3,118,59,0,2364,2362,1,0,0,0,2364, + 2363,1,0,0,0,2365,2436,1,0,0,0,2366,2367,5,138,0,0,2367,2368,5,226, + 0,0,2368,2369,5,30,0,0,2369,2370,5,68,0,0,2370,2371,5,351,0,0,2371, + 2375,3,1402,701,0,2372,2373,5,281,0,0,2373,2374,5,147,0,0,2374,2376, + 3,1472,736,0,2375,2372,1,0,0,0,2375,2376,1,0,0,0,2376,2377,1,0,0, + 0,2377,2378,5,333,0,0,2378,2379,5,351,0,0,2379,2381,3,1402,701,0, + 2380,2382,3,978,489,0,2381,2380,1,0,0,0,2381,2382,1,0,0,0,2382,2436, + 1,0,0,0,2383,2384,5,138,0,0,2384,2386,5,328,0,0,2385,2387,3,748, + 374,0,2386,2385,1,0,0,0,2386,2387,1,0,0,0,2387,2388,1,0,0,0,2388, + 2389,3,1412,706,0,2389,2390,3,106,53,0,2390,2436,1,0,0,0,2391,2392, + 5,138,0,0,2392,2394,5,376,0,0,2393,2395,3,748,374,0,2394,2393,1, + 0,0,0,2394,2395,1,0,0,0,2395,2396,1,0,0,0,2396,2397,3,1410,705,0, + 2397,2398,3,106,53,0,2398,2436,1,0,0,0,2399,2400,5,138,0,0,2400, + 2401,5,259,0,0,2401,2403,5,376,0,0,2402,2404,3,748,374,0,2403,2402, + 1,0,0,0,2403,2404,1,0,0,0,2404,2405,1,0,0,0,2405,2406,3,1410,705, + 0,2406,2407,3,106,53,0,2407,2436,1,0,0,0,2408,2409,5,138,0,0,2409, + 2410,5,259,0,0,2410,2411,5,376,0,0,2411,2412,5,30,0,0,2412,2413, + 5,68,0,0,2413,2414,5,351,0,0,2414,2418,3,1402,701,0,2415,2416,5, + 281,0,0,2416,2417,5,147,0,0,2417,2419,3,1472,736,0,2418,2415,1,0, + 0,0,2418,2419,1,0,0,0,2419,2420,1,0,0,0,2420,2421,5,333,0,0,2421, + 2422,5,351,0,0,2422,2424,3,1400,700,0,2423,2425,3,978,489,0,2424, + 2423,1,0,0,0,2424,2425,1,0,0,0,2425,2436,1,0,0,0,2426,2427,5,138, + 0,0,2427,2428,5,63,0,0,2428,2430,5,92,0,0,2429,2431,3,748,374,0, + 2430,2429,1,0,0,0,2430,2431,1,0,0,0,2431,2432,1,0,0,0,2432,2433, + 3,1118,559,0,2433,2434,3,106,53,0,2434,2436,1,0,0,0,2435,2302,1, + 0,0,0,2435,2312,1,0,0,0,2435,2329,1,0,0,0,2435,2344,1,0,0,0,2435, + 2356,1,0,0,0,2435,2366,1,0,0,0,2435,2383,1,0,0,0,2435,2391,1,0,0, + 0,2435,2399,1,0,0,0,2435,2408,1,0,0,0,2435,2426,1,0,0,0,2436,105, + 1,0,0,0,2437,2442,3,120,60,0,2438,2439,5,6,0,0,2439,2441,3,120,60, + 0,2440,2438,1,0,0,0,2441,2444,1,0,0,0,2442,2440,1,0,0,0,2442,2443, + 1,0,0,0,2443,107,1,0,0,0,2444,2442,1,0,0,0,2445,2446,5,68,0,0,2446, + 2455,3,1178,589,0,2447,2448,5,64,0,0,2448,2449,3,110,55,0,2449,2450, + 5,94,0,0,2450,2451,3,110,55,0,2451,2455,1,0,0,0,2452,2453,5,105, + 0,0,2453,2455,3,114,57,0,2454,2445,1,0,0,0,2454,2447,1,0,0,0,2454, + 2452,1,0,0,0,2455,109,1,0,0,0,2456,2457,5,2,0,0,2457,2462,3,112, + 56,0,2458,2459,5,6,0,0,2459,2461,3,112,56,0,2460,2458,1,0,0,0,2461, + 2464,1,0,0,0,2462,2460,1,0,0,0,2462,2463,1,0,0,0,2463,2465,1,0,0, + 0,2464,2462,1,0,0,0,2465,2466,5,3,0,0,2466,111,1,0,0,0,2467,2471, + 3,1178,589,0,2468,2471,5,262,0,0,2469,2471,5,260,0,0,2470,2467,1, + 0,0,0,2470,2468,1,0,0,0,2470,2469,1,0,0,0,2471,113,1,0,0,0,2472, + 2473,5,2,0,0,2473,2474,5,533,0,0,2474,2475,3,322,161,0,2475,2476, + 5,6,0,0,2476,2477,5,534,0,0,2477,2478,3,322,161,0,2478,2479,5,3, + 0,0,2479,115,1,0,0,0,2480,2481,5,435,0,0,2481,2482,5,285,0,0,2482, + 2483,3,1412,706,0,2483,2484,3,144,72,0,2484,2489,1,0,0,0,2485,2486, + 5,436,0,0,2486,2487,5,285,0,0,2487,2489,3,1412,706,0,2488,2480,1, + 0,0,0,2488,2485,1,0,0,0,2489,117,1,0,0,0,2490,2491,5,435,0,0,2491, + 2492,5,285,0,0,2492,2493,3,1412,706,0,2493,119,1,0,0,0,2494,2497, + 5,133,0,0,2495,2496,5,45,0,0,2496,2498,3,1436,718,0,2497,2495,1, + 0,0,0,2497,2498,1,0,0,0,2498,2499,1,0,0,0,2499,2712,3,236,118,0, + 2500,2501,5,138,0,0,2501,2502,5,45,0,0,2502,2503,3,1436,718,0,2503, + 2504,3,476,238,0,2504,2712,1,0,0,0,2505,2506,5,372,0,0,2506,2507, + 5,45,0,0,2507,2712,3,1436,718,0,2508,2509,5,191,0,0,2509,2511,5, + 45,0,0,2510,2512,3,748,374,0,2511,2510,1,0,0,0,2511,2512,1,0,0,0, + 2512,2513,1,0,0,0,2513,2515,3,1436,718,0,2514,2516,3,124,62,0,2515, + 2514,1,0,0,0,2515,2516,1,0,0,0,2516,2712,1,0,0,0,2517,2518,5,333, + 0,0,2518,2519,5,379,0,0,2519,2712,5,277,0,0,2520,2521,5,158,0,0, + 2521,2522,5,80,0,0,2522,2712,3,1436,718,0,2523,2524,5,333,0,0,2524, + 2525,5,379,0,0,2525,2712,5,158,0,0,2526,2527,5,333,0,0,2527,2712, + 7,19,0,0,2528,2530,5,193,0,0,2529,2531,7,20,0,0,2530,2529,1,0,0, + 0,2530,2531,1,0,0,0,2531,2532,1,0,0,0,2532,2712,5,357,0,0,2533,2534, + 5,186,0,0,2534,2538,5,357,0,0,2535,2539,5,30,0,0,2536,2539,5,99, + 0,0,2537,2539,3,1436,718,0,2538,2535,1,0,0,0,2538,2536,1,0,0,0,2538, + 2537,1,0,0,0,2539,2712,1,0,0,0,2540,2541,5,193,0,0,2541,2542,7,20, + 0,0,2542,2543,5,321,0,0,2543,2712,3,1436,718,0,2544,2545,5,186,0, + 0,2545,2546,5,321,0,0,2546,2712,3,1436,718,0,2547,2549,5,269,0,0, + 2548,2547,1,0,0,0,2548,2549,1,0,0,0,2549,2550,1,0,0,0,2550,2551, + 5,228,0,0,2551,2712,3,1412,706,0,2552,2553,5,275,0,0,2553,2712,3, + 558,279,0,2554,2555,5,77,0,0,2555,2712,5,275,0,0,2556,2557,5,282, + 0,0,2557,2558,5,94,0,0,2558,2712,3,1470,735,0,2559,2560,5,333,0, + 0,2560,2561,5,351,0,0,2561,2712,3,1400,700,0,2562,2563,5,333,0,0, + 2563,2712,3,132,66,0,2564,2565,5,313,0,0,2565,2712,3,132,66,0,2566, + 2567,5,312,0,0,2567,2568,5,219,0,0,2568,2712,3,130,65,0,2569,2570, + 5,193,0,0,2570,2571,5,414,0,0,2571,2572,5,251,0,0,2572,2712,5,327, + 0,0,2573,2574,5,186,0,0,2574,2575,5,414,0,0,2575,2576,5,251,0,0, + 2576,2712,5,327,0,0,2577,2578,5,209,0,0,2578,2579,5,414,0,0,2579, + 2580,5,251,0,0,2580,2712,5,327,0,0,2581,2582,5,269,0,0,2582,2583, + 5,209,0,0,2583,2584,5,414,0,0,2584,2585,5,251,0,0,2585,2712,5,327, + 0,0,2586,2588,5,191,0,0,2587,2589,5,44,0,0,2588,2587,1,0,0,0,2588, + 2589,1,0,0,0,2589,2591,1,0,0,0,2590,2592,3,748,374,0,2591,2590,1, + 0,0,0,2591,2592,1,0,0,0,2592,2593,1,0,0,0,2593,2595,3,1432,716,0, + 2594,2596,3,124,62,0,2595,2594,1,0,0,0,2595,2596,1,0,0,0,2596,2712, + 1,0,0,0,2597,2599,5,133,0,0,2598,2600,5,44,0,0,2599,2598,1,0,0,0, + 2599,2600,1,0,0,0,2600,2602,1,0,0,0,2601,2603,3,516,258,0,2602,2601, + 1,0,0,0,2602,2603,1,0,0,0,2603,2604,1,0,0,0,2604,2712,3,206,103, + 0,2605,2607,5,138,0,0,2606,2608,5,44,0,0,2607,2606,1,0,0,0,2607, + 2608,1,0,0,0,2608,2609,1,0,0,0,2609,2610,3,1432,716,0,2610,2611, + 3,122,61,0,2611,2712,1,0,0,0,2612,2614,5,138,0,0,2613,2615,5,44, + 0,0,2614,2613,1,0,0,0,2614,2615,1,0,0,0,2615,2616,1,0,0,0,2616,2617, + 3,1432,716,0,2617,2618,7,21,0,0,2618,2619,5,77,0,0,2619,2620,5,78, + 0,0,2620,2712,1,0,0,0,2621,2623,5,138,0,0,2622,2624,5,44,0,0,2623, + 2622,1,0,0,0,2623,2624,1,0,0,0,2624,2625,1,0,0,0,2625,2626,3,1432, + 716,0,2626,2627,5,191,0,0,2627,2629,5,437,0,0,2628,2630,3,748,374, + 0,2629,2628,1,0,0,0,2629,2630,1,0,0,0,2630,2712,1,0,0,0,2631,2633, + 5,138,0,0,2632,2634,5,44,0,0,2633,2632,1,0,0,0,2633,2634,1,0,0,0, + 2634,2635,1,0,0,0,2635,2636,3,1432,716,0,2636,2637,5,333,0,0,2637, + 2638,5,342,0,0,2638,2639,3,1464,732,0,2639,2712,1,0,0,0,2640,2642, + 5,138,0,0,2641,2643,5,44,0,0,2642,2641,1,0,0,0,2642,2643,1,0,0,0, + 2643,2644,1,0,0,0,2644,2645,3,1432,716,0,2645,2646,7,22,0,0,2646, + 2647,3,132,66,0,2647,2712,1,0,0,0,2648,2650,5,138,0,0,2649,2651, + 5,44,0,0,2650,2649,1,0,0,0,2650,2651,1,0,0,0,2651,2652,1,0,0,0,2652, + 2653,3,1432,716,0,2653,2654,5,333,0,0,2654,2655,5,345,0,0,2655,2656, + 3,1474,737,0,2656,2712,1,0,0,0,2657,2659,5,138,0,0,2658,2660,5,44, + 0,0,2659,2658,1,0,0,0,2659,2660,1,0,0,0,2660,2661,1,0,0,0,2661,2662, + 3,1432,716,0,2662,2663,5,133,0,0,2663,2664,5,438,0,0,2664,2665,3, + 222,111,0,2665,2666,5,36,0,0,2666,2668,5,219,0,0,2667,2669,3,314, + 157,0,2668,2667,1,0,0,0,2668,2669,1,0,0,0,2669,2712,1,0,0,0,2670, + 2672,5,138,0,0,2671,2673,5,44,0,0,2672,2671,1,0,0,0,2672,2673,1, + 0,0,0,2673,2674,1,0,0,0,2674,2675,3,1432,716,0,2675,2676,3,140,70, + 0,2676,2712,1,0,0,0,2677,2679,5,138,0,0,2678,2680,5,44,0,0,2679, + 2678,1,0,0,0,2679,2680,1,0,0,0,2680,2681,1,0,0,0,2681,2682,3,1432, + 716,0,2682,2683,5,191,0,0,2683,2685,5,219,0,0,2684,2686,3,748,374, + 0,2685,2684,1,0,0,0,2685,2686,1,0,0,0,2686,2712,1,0,0,0,2687,2689, + 5,138,0,0,2688,2690,5,44,0,0,2689,2688,1,0,0,0,2689,2690,1,0,0,0, + 2690,2691,1,0,0,0,2691,2693,3,1432,716,0,2692,2694,3,768,384,0,2693, + 2692,1,0,0,0,2693,2694,1,0,0,0,2694,2695,1,0,0,0,2695,2696,5,360, + 0,0,2696,2698,3,1168,584,0,2697,2699,3,126,63,0,2698,2697,1,0,0, + 0,2698,2699,1,0,0,0,2699,2701,1,0,0,0,2700,2702,3,128,64,0,2701, + 2700,1,0,0,0,2701,2702,1,0,0,0,2702,2712,1,0,0,0,2703,2705,5,138, + 0,0,2704,2706,5,44,0,0,2705,2704,1,0,0,0,2705,2706,1,0,0,0,2706, + 2707,1,0,0,0,2707,2708,3,1432,716,0,2708,2709,3,372,186,0,2709,2712, + 1,0,0,0,2710,2712,3,372,186,0,2711,2494,1,0,0,0,2711,2500,1,0,0, + 0,2711,2505,1,0,0,0,2711,2508,1,0,0,0,2711,2517,1,0,0,0,2711,2520, + 1,0,0,0,2711,2523,1,0,0,0,2711,2526,1,0,0,0,2711,2528,1,0,0,0,2711, + 2533,1,0,0,0,2711,2540,1,0,0,0,2711,2544,1,0,0,0,2711,2548,1,0,0, + 0,2711,2552,1,0,0,0,2711,2554,1,0,0,0,2711,2556,1,0,0,0,2711,2559, + 1,0,0,0,2711,2562,1,0,0,0,2711,2564,1,0,0,0,2711,2566,1,0,0,0,2711, + 2569,1,0,0,0,2711,2573,1,0,0,0,2711,2577,1,0,0,0,2711,2581,1,0,0, + 0,2711,2586,1,0,0,0,2711,2597,1,0,0,0,2711,2605,1,0,0,0,2711,2612, + 1,0,0,0,2711,2621,1,0,0,0,2711,2631,1,0,0,0,2711,2640,1,0,0,0,2711, + 2648,1,0,0,0,2711,2657,1,0,0,0,2711,2670,1,0,0,0,2711,2677,1,0,0, + 0,2711,2687,1,0,0,0,2711,2703,1,0,0,0,2711,2710,1,0,0,0,2712,121, + 1,0,0,0,2713,2714,5,333,0,0,2714,2715,5,53,0,0,2715,2719,3,1212, + 606,0,2716,2717,5,191,0,0,2717,2719,5,53,0,0,2718,2713,1,0,0,0,2718, + 2716,1,0,0,0,2719,123,1,0,0,0,2720,2721,7,23,0,0,2721,125,1,0,0, + 0,2722,2723,5,43,0,0,2723,2724,3,558,279,0,2724,127,1,0,0,0,2725, + 2726,5,100,0,0,2726,2727,3,1212,606,0,2727,129,1,0,0,0,2728,2735, + 5,270,0,0,2729,2735,5,113,0,0,2730,2735,5,53,0,0,2731,2732,5,100, + 0,0,2732,2733,5,226,0,0,2733,2735,3,1436,718,0,2734,2728,1,0,0,0, + 2734,2729,1,0,0,0,2734,2730,1,0,0,0,2734,2731,1,0,0,0,2735,131,1, + 0,0,0,2736,2737,5,2,0,0,2737,2738,3,136,68,0,2738,2739,5,3,0,0,2739, + 133,1,0,0,0,2740,2741,5,105,0,0,2741,2742,3,132,66,0,2742,135,1, + 0,0,0,2743,2748,3,138,69,0,2744,2745,5,6,0,0,2745,2747,3,138,69, + 0,2746,2744,1,0,0,0,2747,2750,1,0,0,0,2748,2746,1,0,0,0,2748,2749, + 1,0,0,0,2749,137,1,0,0,0,2750,2748,1,0,0,0,2751,2760,3,1490,745, + 0,2752,2753,5,10,0,0,2753,2761,3,502,251,0,2754,2755,5,11,0,0,2755, + 2758,3,1490,745,0,2756,2757,5,10,0,0,2757,2759,3,502,251,0,2758, + 2756,1,0,0,0,2758,2759,1,0,0,0,2759,2761,1,0,0,0,2760,2752,1,0,0, + 0,2760,2754,1,0,0,0,2760,2761,1,0,0,0,2761,139,1,0,0,0,2762,2764, + 3,142,71,0,2763,2762,1,0,0,0,2764,2765,1,0,0,0,2765,2763,1,0,0,0, + 2765,2766,1,0,0,0,2766,141,1,0,0,0,2767,2772,5,314,0,0,2768,2770, + 3,14,7,0,2769,2768,1,0,0,0,2769,2770,1,0,0,0,2770,2771,1,0,0,0,2771, + 2773,3,322,161,0,2772,2769,1,0,0,0,2772,2773,1,0,0,0,2773,2781,1, + 0,0,0,2774,2778,5,333,0,0,2775,2779,3,318,159,0,2776,2777,5,438, + 0,0,2777,2779,3,222,111,0,2778,2775,1,0,0,0,2778,2776,1,0,0,0,2779, + 2781,1,0,0,0,2780,2767,1,0,0,0,2780,2774,1,0,0,0,2781,143,1,0,0, + 0,2782,2783,5,62,0,0,2783,2784,5,422,0,0,2784,2785,5,105,0,0,2785, + 2786,5,2,0,0,2786,2787,3,148,74,0,2787,2788,5,3,0,0,2788,2809,1, + 0,0,0,2789,2790,5,62,0,0,2790,2791,5,422,0,0,2791,2792,5,68,0,0, + 2792,2793,5,2,0,0,2793,2794,3,1328,664,0,2794,2795,5,3,0,0,2795, + 2809,1,0,0,0,2796,2797,5,62,0,0,2797,2798,5,422,0,0,2798,2799,5, + 64,0,0,2799,2800,5,2,0,0,2800,2801,3,1328,664,0,2801,2802,5,3,0, + 0,2802,2803,5,94,0,0,2803,2804,5,2,0,0,2804,2805,3,1328,664,0,2805, + 2806,5,3,0,0,2806,2809,1,0,0,0,2807,2809,5,53,0,0,2808,2782,1,0, + 0,0,2808,2789,1,0,0,0,2808,2796,1,0,0,0,2808,2807,1,0,0,0,2809,145, + 1,0,0,0,2810,2811,3,1488,744,0,2811,2812,3,1456,728,0,2812,147,1, + 0,0,0,2813,2818,3,146,73,0,2814,2815,5,6,0,0,2815,2817,3,146,73, + 0,2816,2814,1,0,0,0,2817,2820,1,0,0,0,2818,2816,1,0,0,0,2818,2819, + 1,0,0,0,2819,149,1,0,0,0,2820,2818,1,0,0,0,2821,2822,5,138,0,0,2822, + 2823,5,360,0,0,2823,2824,3,558,279,0,2824,2825,3,152,76,0,2825,151, + 1,0,0,0,2826,2831,3,154,77,0,2827,2828,5,6,0,0,2828,2830,3,154,77, + 0,2829,2827,1,0,0,0,2830,2833,1,0,0,0,2831,2829,1,0,0,0,2831,2832, + 1,0,0,0,2832,153,1,0,0,0,2833,2831,1,0,0,0,2834,2835,5,133,0,0,2835, + 2836,5,143,0,0,2836,2838,3,1152,576,0,2837,2839,3,124,62,0,2838, + 2837,1,0,0,0,2838,2839,1,0,0,0,2839,2864,1,0,0,0,2840,2841,5,191, + 0,0,2841,2843,5,143,0,0,2842,2844,3,748,374,0,2843,2842,1,0,0,0, + 2843,2844,1,0,0,0,2844,2845,1,0,0,0,2845,2847,3,1474,737,0,2846, + 2848,3,124,62,0,2847,2846,1,0,0,0,2847,2848,1,0,0,0,2848,2864,1, + 0,0,0,2849,2850,5,138,0,0,2850,2851,5,143,0,0,2851,2853,3,1474,737, + 0,2852,2854,3,768,384,0,2853,2852,1,0,0,0,2853,2854,1,0,0,0,2854, + 2855,1,0,0,0,2855,2856,5,360,0,0,2856,2858,3,1168,584,0,2857,2859, + 3,126,63,0,2858,2857,1,0,0,0,2858,2859,1,0,0,0,2859,2861,1,0,0,0, + 2860,2862,3,124,62,0,2861,2860,1,0,0,0,2861,2862,1,0,0,0,2862,2864, + 1,0,0,0,2863,2834,1,0,0,0,2863,2840,1,0,0,0,2863,2849,1,0,0,0,2864, + 155,1,0,0,0,2865,2868,5,157,0,0,2866,2869,3,994,497,0,2867,2869, + 5,30,0,0,2868,2866,1,0,0,0,2868,2867,1,0,0,0,2869,157,1,0,0,0,2870, + 2872,5,169,0,0,2871,2873,3,172,86,0,2872,2871,1,0,0,0,2872,2873, + 1,0,0,0,2873,2874,1,0,0,0,2874,2876,3,1406,703,0,2875,2877,3,240, + 120,0,2876,2875,1,0,0,0,2876,2877,1,0,0,0,2877,2878,1,0,0,0,2878, + 2880,3,160,80,0,2879,2881,3,162,81,0,2880,2879,1,0,0,0,2880,2881, + 1,0,0,0,2881,2882,1,0,0,0,2882,2884,3,164,82,0,2883,2885,3,174,87, + 0,2884,2883,1,0,0,0,2884,2885,1,0,0,0,2885,2887,1,0,0,0,2886,2888, + 3,14,7,0,2887,2886,1,0,0,0,2887,2888,1,0,0,0,2888,2889,1,0,0,0,2889, + 2891,3,166,83,0,2890,2892,3,1144,572,0,2891,2890,1,0,0,0,2891,2892, + 1,0,0,0,2892,2908,1,0,0,0,2893,2894,5,169,0,0,2894,2895,5,2,0,0, + 2895,2896,3,942,471,0,2896,2897,5,3,0,0,2897,2899,5,94,0,0,2898, + 2900,3,162,81,0,2899,2898,1,0,0,0,2899,2900,1,0,0,0,2900,2901,1, + 0,0,0,2901,2903,3,164,82,0,2902,2904,3,14,7,0,2903,2902,1,0,0,0, + 2903,2904,1,0,0,0,2904,2905,1,0,0,0,2905,2906,3,166,83,0,2906,2908, + 1,0,0,0,2907,2870,1,0,0,0,2907,2893,1,0,0,0,2908,159,1,0,0,0,2909, + 2910,7,24,0,0,2910,161,1,0,0,0,2911,2912,5,297,0,0,2912,163,1,0, + 0,0,2913,2917,3,1458,729,0,2914,2917,5,343,0,0,2915,2917,5,344,0, + 0,2916,2913,1,0,0,0,2916,2914,1,0,0,0,2916,2915,1,0,0,0,2917,165, + 1,0,0,0,2918,2924,3,168,84,0,2919,2920,5,2,0,0,2920,2921,3,178,89, + 0,2921,2922,5,3,0,0,2922,2924,1,0,0,0,2923,2918,1,0,0,0,2923,2919, + 1,0,0,0,2924,167,1,0,0,0,2925,2927,3,170,85,0,2926,2925,1,0,0,0, + 2927,2930,1,0,0,0,2928,2926,1,0,0,0,2928,2929,1,0,0,0,2929,169,1, + 0,0,0,2930,2928,1,0,0,0,2931,2971,5,107,0,0,2932,2971,5,112,0,0, + 2933,2935,5,183,0,0,2934,2936,3,872,436,0,2935,2934,1,0,0,0,2935, + 2936,1,0,0,0,2936,2937,1,0,0,0,2937,2971,3,1458,729,0,2938,2940, + 5,78,0,0,2939,2941,3,872,436,0,2940,2939,1,0,0,0,2940,2941,1,0,0, + 0,2941,2942,1,0,0,0,2942,2971,3,1458,729,0,2943,2971,5,171,0,0,2944, + 2971,5,216,0,0,2945,2947,5,298,0,0,2946,2948,3,872,436,0,2947,2946, + 1,0,0,0,2947,2948,1,0,0,0,2948,2949,1,0,0,0,2949,2971,3,1458,729, + 0,2950,2952,5,197,0,0,2951,2953,3,872,436,0,2952,2951,1,0,0,0,2952, + 2953,1,0,0,0,2953,2954,1,0,0,0,2954,2971,3,1458,729,0,2955,2956, + 5,209,0,0,2956,2957,5,298,0,0,2957,2971,3,244,122,0,2958,2959,5, + 209,0,0,2959,2960,5,298,0,0,2960,2971,5,9,0,0,2961,2962,5,209,0, + 0,2962,2963,5,77,0,0,2963,2964,5,78,0,0,2964,2971,3,244,122,0,2965, + 2966,5,209,0,0,2966,2967,5,78,0,0,2967,2971,3,244,122,0,2968,2969, + 5,194,0,0,2969,2971,3,1458,729,0,2970,2931,1,0,0,0,2970,2932,1,0, + 0,0,2970,2933,1,0,0,0,2970,2938,1,0,0,0,2970,2943,1,0,0,0,2970,2944, + 1,0,0,0,2970,2945,1,0,0,0,2970,2950,1,0,0,0,2970,2955,1,0,0,0,2970, + 2958,1,0,0,0,2970,2961,1,0,0,0,2970,2965,1,0,0,0,2970,2968,1,0,0, + 0,2971,171,1,0,0,0,2972,2973,5,107,0,0,2973,173,1,0,0,0,2974,2976, + 3,176,88,0,2975,2974,1,0,0,0,2975,2976,1,0,0,0,2976,2977,1,0,0,0, + 2977,2978,5,184,0,0,2978,2979,3,1458,729,0,2979,175,1,0,0,0,2980, + 2981,5,100,0,0,2981,177,1,0,0,0,2982,2987,3,180,90,0,2983,2984,5, + 6,0,0,2984,2986,3,180,90,0,2985,2983,1,0,0,0,2986,2989,1,0,0,0,2987, + 2985,1,0,0,0,2987,2988,1,0,0,0,2988,179,1,0,0,0,2989,2987,1,0,0, + 0,2990,2992,3,1490,745,0,2991,2993,3,182,91,0,2992,2991,1,0,0,0, + 2992,2993,1,0,0,0,2993,181,1,0,0,0,2994,3002,3,72,36,0,2995,3002, + 3,322,161,0,2996,3002,5,9,0,0,2997,2998,5,2,0,0,2998,2999,3,184, + 92,0,2999,3000,5,3,0,0,3000,3002,1,0,0,0,3001,2994,1,0,0,0,3001, + 2995,1,0,0,0,3001,2996,1,0,0,0,3001,2997,1,0,0,0,3002,183,1,0,0, + 0,3003,3008,3,186,93,0,3004,3005,5,6,0,0,3005,3007,3,186,93,0,3006, + 3004,1,0,0,0,3007,3010,1,0,0,0,3008,3006,1,0,0,0,3008,3009,1,0,0, + 0,3009,185,1,0,0,0,3010,3008,1,0,0,0,3011,3012,3,70,35,0,3012,187, + 1,0,0,0,3013,3015,5,46,0,0,3014,3016,3,190,95,0,3015,3014,1,0,0, + 0,3015,3016,1,0,0,0,3016,3017,1,0,0,0,3017,3019,5,92,0,0,3018,3020, + 3,516,258,0,3019,3018,1,0,0,0,3019,3020,1,0,0,0,3020,3021,1,0,0, + 0,3021,3087,3,1404,702,0,3022,3024,5,2,0,0,3023,3025,3,192,96,0, + 3024,3023,1,0,0,0,3024,3025,1,0,0,0,3025,3026,1,0,0,0,3026,3028, + 5,3,0,0,3027,3029,3,266,133,0,3028,3027,1,0,0,0,3028,3029,1,0,0, + 0,3029,3031,1,0,0,0,3030,3032,3,268,134,0,3031,3030,1,0,0,0,3031, + 3032,1,0,0,0,3032,3034,1,0,0,0,3033,3035,3,276,138,0,3034,3033,1, + 0,0,0,3034,3035,1,0,0,0,3035,3037,1,0,0,0,3036,3038,3,278,139,0, + 3037,3036,1,0,0,0,3037,3038,1,0,0,0,3038,3040,1,0,0,0,3039,3041, + 3,280,140,0,3040,3039,1,0,0,0,3040,3041,1,0,0,0,3041,3043,1,0,0, + 0,3042,3044,3,282,141,0,3043,3042,1,0,0,0,3043,3044,1,0,0,0,3044, + 3088,1,0,0,0,3045,3046,5,275,0,0,3046,3048,3,558,279,0,3047,3049, + 3,196,98,0,3048,3047,1,0,0,0,3048,3049,1,0,0,0,3049,3051,1,0,0,0, + 3050,3052,3,268,134,0,3051,3050,1,0,0,0,3051,3052,1,0,0,0,3052,3054, + 1,0,0,0,3053,3055,3,276,138,0,3054,3053,1,0,0,0,3054,3055,1,0,0, + 0,3055,3057,1,0,0,0,3056,3058,3,278,139,0,3057,3056,1,0,0,0,3057, + 3058,1,0,0,0,3058,3060,1,0,0,0,3059,3061,3,280,140,0,3060,3059,1, + 0,0,0,3060,3061,1,0,0,0,3061,3063,1,0,0,0,3062,3064,3,282,141,0, + 3063,3062,1,0,0,0,3063,3064,1,0,0,0,3064,3088,1,0,0,0,3065,3066, + 5,285,0,0,3066,3067,5,275,0,0,3067,3069,3,1412,706,0,3068,3070,3, + 196,98,0,3069,3068,1,0,0,0,3069,3070,1,0,0,0,3070,3071,1,0,0,0,3071, + 3073,3,144,72,0,3072,3074,3,268,134,0,3073,3072,1,0,0,0,3073,3074, + 1,0,0,0,3074,3076,1,0,0,0,3075,3077,3,276,138,0,3076,3075,1,0,0, + 0,3076,3077,1,0,0,0,3077,3079,1,0,0,0,3078,3080,3,278,139,0,3079, + 3078,1,0,0,0,3079,3080,1,0,0,0,3080,3082,1,0,0,0,3081,3083,3,280, + 140,0,3082,3081,1,0,0,0,3082,3083,1,0,0,0,3083,3085,1,0,0,0,3084, + 3086,3,282,141,0,3085,3084,1,0,0,0,3085,3086,1,0,0,0,3086,3088,1, + 0,0,0,3087,3022,1,0,0,0,3087,3045,1,0,0,0,3087,3065,1,0,0,0,3088, + 189,1,0,0,0,3089,3097,5,354,0,0,3090,3097,5,352,0,0,3091,3092,5, + 254,0,0,3092,3097,7,25,0,0,3093,3094,5,213,0,0,3094,3097,7,25,0, + 0,3095,3097,5,367,0,0,3096,3089,1,0,0,0,3096,3090,1,0,0,0,3096,3091, + 1,0,0,0,3096,3093,1,0,0,0,3096,3095,1,0,0,0,3097,191,1,0,0,0,3098, + 3099,3,198,99,0,3099,193,1,0,0,0,3100,3101,3,198,99,0,3101,195,1, + 0,0,0,3102,3103,5,2,0,0,3103,3104,3,200,100,0,3104,3105,5,3,0,0, + 3105,197,1,0,0,0,3106,3111,3,202,101,0,3107,3108,5,6,0,0,3108,3110, + 3,202,101,0,3109,3107,1,0,0,0,3110,3113,1,0,0,0,3111,3109,1,0,0, + 0,3111,3112,1,0,0,0,3112,199,1,0,0,0,3113,3111,1,0,0,0,3114,3119, + 3,204,102,0,3115,3116,5,6,0,0,3116,3118,3,204,102,0,3117,3115,1, + 0,0,0,3118,3121,1,0,0,0,3119,3117,1,0,0,0,3119,3120,1,0,0,0,3120, + 201,1,0,0,0,3121,3119,1,0,0,0,3122,3126,3,206,103,0,3123,3126,3, + 228,114,0,3124,3126,3,234,117,0,3125,3122,1,0,0,0,3125,3123,1,0, + 0,0,3125,3124,1,0,0,0,3126,203,1,0,0,0,3127,3130,3,212,106,0,3128, + 3130,3,234,117,0,3129,3127,1,0,0,0,3129,3128,1,0,0,0,3130,205,1, + 0,0,0,3131,3132,3,1434,717,0,3132,3134,3,1168,584,0,3133,3135,3, + 368,184,0,3134,3133,1,0,0,0,3134,3135,1,0,0,0,3135,3137,1,0,0,0, + 3136,3138,3,210,105,0,3137,3136,1,0,0,0,3137,3138,1,0,0,0,3138,3140, + 1,0,0,0,3139,3141,3,208,104,0,3140,3139,1,0,0,0,3140,3141,1,0,0, + 0,3141,3144,1,0,0,0,3142,3143,5,43,0,0,3143,3145,3,558,279,0,3144, + 3142,1,0,0,0,3144,3145,1,0,0,0,3145,3148,1,0,0,0,3146,3147,5,105, + 0,0,3147,3149,5,280,0,0,3148,3146,1,0,0,0,3148,3149,1,0,0,0,3149, + 3150,1,0,0,0,3150,3151,3,214,107,0,3151,207,1,0,0,0,3152,3153,5, + 543,0,0,3153,3154,3,1474,737,0,3154,209,1,0,0,0,3155,3162,5,345, + 0,0,3156,3163,5,544,0,0,3157,3163,5,205,0,0,3158,3163,5,545,0,0, + 3159,3163,5,546,0,0,3160,3163,5,53,0,0,3161,3163,3,1474,737,0,3162, + 3156,1,0,0,0,3162,3157,1,0,0,0,3162,3158,1,0,0,0,3162,3159,1,0,0, + 0,3162,3160,1,0,0,0,3162,3161,1,0,0,0,3163,211,1,0,0,0,3164,3167, + 3,1434,717,0,3165,3166,5,105,0,0,3166,3168,5,280,0,0,3167,3165,1, + 0,0,0,3167,3168,1,0,0,0,3168,3169,1,0,0,0,3169,3170,3,214,107,0, + 3170,213,1,0,0,0,3171,3173,3,216,108,0,3172,3171,1,0,0,0,3173,3176, + 1,0,0,0,3174,3172,1,0,0,0,3174,3175,1,0,0,0,3175,215,1,0,0,0,3176, + 3174,1,0,0,0,3177,3178,5,45,0,0,3178,3180,3,1436,718,0,3179,3177, + 1,0,0,0,3179,3180,1,0,0,0,3180,3181,1,0,0,0,3181,3183,3,218,109, + 0,3182,3184,3,224,112,0,3183,3182,1,0,0,0,3183,3184,1,0,0,0,3184, + 3186,1,0,0,0,3185,3187,3,226,113,0,3186,3185,1,0,0,0,3186,3187,1, + 0,0,0,3187,3196,1,0,0,0,3188,3190,3,218,109,0,3189,3191,3,224,112, + 0,3190,3189,1,0,0,0,3190,3191,1,0,0,0,3191,3193,1,0,0,0,3192,3194, + 3,226,113,0,3193,3192,1,0,0,0,3193,3194,1,0,0,0,3194,3196,1,0,0, + 0,3195,3179,1,0,0,0,3195,3188,1,0,0,0,3196,217,1,0,0,0,3197,3198, + 5,77,0,0,3198,3256,5,78,0,0,3199,3256,5,78,0,0,3200,3202,5,98,0, + 0,3201,3203,3,710,355,0,3202,3201,1,0,0,0,3202,3203,1,0,0,0,3203, + 3205,1,0,0,0,3204,3206,3,286,143,0,3205,3204,1,0,0,0,3205,3206,1, + 0,0,0,3206,3256,1,0,0,0,3207,3209,5,98,0,0,3208,3210,3,220,110,0, + 3209,3208,1,0,0,0,3209,3210,1,0,0,0,3210,3211,1,0,0,0,3211,3256, + 3,284,142,0,3212,3213,5,85,0,0,3213,3215,5,245,0,0,3214,3216,3,710, + 355,0,3215,3214,1,0,0,0,3215,3216,1,0,0,0,3216,3218,1,0,0,0,3217, + 3219,3,286,143,0,3218,3217,1,0,0,0,3218,3219,1,0,0,0,3219,3256,1, + 0,0,0,3220,3221,5,42,0,0,3221,3222,5,2,0,0,3222,3223,3,1212,606, + 0,3223,3225,5,3,0,0,3224,3226,3,238,119,0,3225,3224,1,0,0,0,3225, + 3226,1,0,0,0,3226,3256,1,0,0,0,3227,3228,5,53,0,0,3228,3256,3,1252, + 626,0,3229,3230,5,438,0,0,3230,3231,3,222,111,0,3231,3241,5,36,0, + 0,3232,3234,5,219,0,0,3233,3235,3,314,157,0,3234,3233,1,0,0,0,3234, + 3235,1,0,0,0,3235,3242,1,0,0,0,3236,3237,5,2,0,0,3237,3238,3,1212, + 606,0,3238,3239,5,3,0,0,3239,3240,5,440,0,0,3240,3242,1,0,0,0,3241, + 3232,1,0,0,0,3241,3236,1,0,0,0,3242,3256,1,0,0,0,3243,3244,5,86, + 0,0,3244,3246,3,1412,706,0,3245,3247,3,240,120,0,3246,3245,1,0,0, + 0,3246,3247,1,0,0,0,3247,3249,1,0,0,0,3248,3250,3,250,125,0,3249, + 3248,1,0,0,0,3249,3250,1,0,0,0,3250,3252,1,0,0,0,3251,3253,3,258, + 129,0,3252,3251,1,0,0,0,3252,3253,1,0,0,0,3253,3256,1,0,0,0,3254, + 3256,3,646,323,0,3255,3197,1,0,0,0,3255,3199,1,0,0,0,3255,3200,1, + 0,0,0,3255,3207,1,0,0,0,3255,3212,1,0,0,0,3255,3220,1,0,0,0,3255, + 3227,1,0,0,0,3255,3229,1,0,0,0,3255,3243,1,0,0,0,3255,3254,1,0,0, + 0,3256,219,1,0,0,0,3257,3259,5,273,0,0,3258,3260,5,77,0,0,3259,3258, + 1,0,0,0,3259,3260,1,0,0,0,3260,3261,1,0,0,0,3261,3262,5,56,0,0,3262, + 221,1,0,0,0,3263,3267,5,139,0,0,3264,3265,5,147,0,0,3265,3267,5, + 53,0,0,3266,3263,1,0,0,0,3266,3264,1,0,0,0,3267,223,1,0,0,0,3268, + 3272,5,54,0,0,3269,3270,5,77,0,0,3270,3272,5,54,0,0,3271,3268,1, + 0,0,0,3271,3269,1,0,0,0,3272,225,1,0,0,0,3273,3274,5,69,0,0,3274, + 3275,7,16,0,0,3275,227,1,0,0,0,3276,3277,5,120,0,0,3277,3278,3,1412, + 706,0,3278,3279,3,230,115,0,3279,229,1,0,0,0,3280,3281,7,26,0,0, + 3281,3283,3,232,116,0,3282,3280,1,0,0,0,3283,3286,1,0,0,0,3284,3282, + 1,0,0,0,3284,3285,1,0,0,0,3285,231,1,0,0,0,3286,3284,1,0,0,0,3287, + 3288,7,27,0,0,3288,233,1,0,0,0,3289,3290,5,45,0,0,3290,3291,3,1436, + 718,0,3291,3292,3,236,118,0,3292,3295,1,0,0,0,3293,3295,3,236,118, + 0,3294,3289,1,0,0,0,3294,3293,1,0,0,0,3295,235,1,0,0,0,3296,3297, + 5,42,0,0,3297,3298,5,2,0,0,3298,3299,3,1212,606,0,3299,3300,5,3, + 0,0,3300,3301,3,476,238,0,3301,3383,1,0,0,0,3302,3320,5,98,0,0,3303, + 3304,5,2,0,0,3304,3305,3,244,122,0,3305,3307,5,3,0,0,3306,3308,3, + 248,124,0,3307,3306,1,0,0,0,3307,3308,1,0,0,0,3308,3310,1,0,0,0, + 3309,3311,3,710,355,0,3310,3309,1,0,0,0,3310,3311,1,0,0,0,3311,3313, + 1,0,0,0,3312,3314,3,286,143,0,3313,3312,1,0,0,0,3313,3314,1,0,0, + 0,3314,3315,1,0,0,0,3315,3316,3,476,238,0,3316,3321,1,0,0,0,3317, + 3318,3,288,144,0,3318,3319,3,476,238,0,3319,3321,1,0,0,0,3320,3303, + 1,0,0,0,3320,3317,1,0,0,0,3321,3383,1,0,0,0,3322,3323,5,85,0,0,3323, + 3341,5,245,0,0,3324,3325,5,2,0,0,3325,3326,3,244,122,0,3326,3328, + 5,3,0,0,3327,3329,3,248,124,0,3328,3327,1,0,0,0,3328,3329,1,0,0, + 0,3329,3331,1,0,0,0,3330,3332,3,710,355,0,3331,3330,1,0,0,0,3331, + 3332,1,0,0,0,3332,3334,1,0,0,0,3333,3335,3,286,143,0,3334,3333,1, + 0,0,0,3334,3335,1,0,0,0,3335,3336,1,0,0,0,3336,3337,3,476,238,0, + 3337,3342,1,0,0,0,3338,3339,3,288,144,0,3339,3340,3,476,238,0,3340, + 3342,1,0,0,0,3341,3324,1,0,0,0,3341,3338,1,0,0,0,3342,3383,1,0,0, + 0,3343,3345,5,199,0,0,3344,3346,3,634,317,0,3345,3344,1,0,0,0,3345, + 3346,1,0,0,0,3346,3347,1,0,0,0,3347,3348,5,2,0,0,3348,3349,3,252, + 126,0,3349,3351,5,3,0,0,3350,3352,3,248,124,0,3351,3350,1,0,0,0, + 3351,3352,1,0,0,0,3352,3354,1,0,0,0,3353,3355,3,710,355,0,3354,3353, + 1,0,0,0,3354,3355,1,0,0,0,3355,3357,1,0,0,0,3356,3358,3,286,143, + 0,3357,3356,1,0,0,0,3357,3358,1,0,0,0,3358,3360,1,0,0,0,3359,3361, + 3,256,128,0,3360,3359,1,0,0,0,3360,3361,1,0,0,0,3361,3362,1,0,0, + 0,3362,3363,3,476,238,0,3363,3383,1,0,0,0,3364,3365,5,63,0,0,3365, + 3366,5,245,0,0,3366,3367,5,2,0,0,3367,3368,3,244,122,0,3368,3369, + 5,3,0,0,3369,3370,5,86,0,0,3370,3372,3,1412,706,0,3371,3373,3,240, + 120,0,3372,3371,1,0,0,0,3372,3373,1,0,0,0,3373,3375,1,0,0,0,3374, + 3376,3,250,125,0,3375,3374,1,0,0,0,3375,3376,1,0,0,0,3376,3378,1, + 0,0,0,3377,3379,3,258,129,0,3378,3377,1,0,0,0,3378,3379,1,0,0,0, + 3379,3380,1,0,0,0,3380,3381,3,476,238,0,3381,3383,1,0,0,0,3382,3296, + 1,0,0,0,3382,3302,1,0,0,0,3382,3322,1,0,0,0,3382,3343,1,0,0,0,3382, + 3364,1,0,0,0,3383,237,1,0,0,0,3384,3385,5,269,0,0,3385,3386,5,228, + 0,0,3386,239,1,0,0,0,3387,3388,5,2,0,0,3388,3389,3,244,122,0,3389, + 3390,5,3,0,0,3390,241,1,0,0,0,3391,3392,5,2,0,0,3392,3393,3,246, + 123,0,3393,3394,5,3,0,0,3394,243,1,0,0,0,3395,3400,3,1432,716,0, + 3396,3397,5,6,0,0,3397,3399,3,1432,716,0,3398,3396,1,0,0,0,3399, + 3402,1,0,0,0,3400,3398,1,0,0,0,3400,3401,1,0,0,0,3401,245,1,0,0, + 0,3402,3400,1,0,0,0,3403,3408,3,1434,717,0,3404,3405,5,6,0,0,3405, + 3407,3,1434,717,0,3406,3404,1,0,0,0,3407,3410,1,0,0,0,3408,3406, + 1,0,0,0,3408,3409,1,0,0,0,3409,247,1,0,0,0,3410,3408,1,0,0,0,3411, + 3412,5,441,0,0,3412,3413,5,2,0,0,3413,3414,3,244,122,0,3414,3415, + 5,3,0,0,3415,249,1,0,0,0,3416,3417,5,258,0,0,3417,3418,7,28,0,0, + 3418,251,1,0,0,0,3419,3424,3,254,127,0,3420,3421,5,6,0,0,3421,3423, + 3,254,127,0,3422,3420,1,0,0,0,3423,3426,1,0,0,0,3424,3422,1,0,0, + 0,3424,3425,1,0,0,0,3425,253,1,0,0,0,3426,3424,1,0,0,0,3427,3428, + 3,640,320,0,3428,3435,5,105,0,0,3429,3436,3,732,366,0,3430,3431, + 5,278,0,0,3431,3432,5,2,0,0,3432,3433,3,732,366,0,3433,3434,5,3, + 0,0,3434,3436,1,0,0,0,3435,3429,1,0,0,0,3435,3430,1,0,0,0,3436,255, + 1,0,0,0,3437,3438,5,103,0,0,3438,3439,5,2,0,0,3439,3440,3,1212,606, + 0,3440,3441,5,3,0,0,3441,257,1,0,0,0,3442,3451,3,260,130,0,3443, + 3451,3,262,131,0,3444,3445,3,260,130,0,3445,3446,3,262,131,0,3446, + 3451,1,0,0,0,3447,3448,3,262,131,0,3448,3449,3,260,130,0,3449,3451, + 1,0,0,0,3450,3442,1,0,0,0,3450,3443,1,0,0,0,3450,3444,1,0,0,0,3450, + 3447,1,0,0,0,3451,259,1,0,0,0,3452,3453,5,80,0,0,3453,3454,5,369, + 0,0,3454,3455,3,264,132,0,3455,261,1,0,0,0,3456,3457,5,80,0,0,3457, + 3458,5,182,0,0,3458,3459,3,264,132,0,3459,263,1,0,0,0,3460,3461, + 5,269,0,0,3461,3470,5,132,0,0,3462,3470,5,315,0,0,3463,3470,5,150, + 0,0,3464,3465,5,333,0,0,3465,3467,7,29,0,0,3466,3468,3,244,122,0, + 3467,3466,1,0,0,0,3467,3468,1,0,0,0,3468,3470,1,0,0,0,3469,3460, + 1,0,0,0,3469,3462,1,0,0,0,3469,3463,1,0,0,0,3469,3464,1,0,0,0,3470, + 265,1,0,0,0,3471,3472,5,238,0,0,3472,3473,5,2,0,0,3473,3474,3,1390, + 695,0,3474,3475,5,3,0,0,3475,267,1,0,0,0,3476,3477,3,270,135,0,3477, + 269,1,0,0,0,3478,3479,5,285,0,0,3479,3480,5,147,0,0,3480,3481,3, + 1474,737,0,3481,3482,5,2,0,0,3482,3483,3,272,136,0,3483,3484,5,3, + 0,0,3484,271,1,0,0,0,3485,3490,3,274,137,0,3486,3487,5,6,0,0,3487, + 3489,3,274,137,0,3488,3486,1,0,0,0,3489,3492,1,0,0,0,3490,3488,1, + 0,0,0,3490,3491,1,0,0,0,3491,273,1,0,0,0,3492,3490,1,0,0,0,3493, + 3495,3,1432,716,0,3494,3496,3,646,323,0,3495,3494,1,0,0,0,3495,3496, + 1,0,0,0,3496,3498,1,0,0,0,3497,3499,3,648,324,0,3498,3497,1,0,0, + 0,3498,3499,1,0,0,0,3499,3517,1,0,0,0,3500,3502,3,1262,631,0,3501, + 3503,3,646,323,0,3502,3501,1,0,0,0,3502,3503,1,0,0,0,3503,3505,1, + 0,0,0,3504,3506,3,648,324,0,3505,3504,1,0,0,0,3505,3506,1,0,0,0, + 3506,3517,1,0,0,0,3507,3508,5,2,0,0,3508,3509,3,1212,606,0,3509, + 3511,5,3,0,0,3510,3512,3,646,323,0,3511,3510,1,0,0,0,3511,3512,1, + 0,0,0,3512,3514,1,0,0,0,3513,3515,3,648,324,0,3514,3513,1,0,0,0, + 3514,3515,1,0,0,0,3515,3517,1,0,0,0,3516,3493,1,0,0,0,3516,3500, + 1,0,0,0,3516,3507,1,0,0,0,3517,275,1,0,0,0,3518,3519,5,100,0,0,3519, + 3520,3,1436,718,0,3520,277,1,0,0,0,3521,3522,5,105,0,0,3522,3528, + 3,132,66,0,3523,3524,5,379,0,0,3524,3528,5,277,0,0,3525,3526,5,105, + 0,0,3526,3528,5,277,0,0,3527,3521,1,0,0,0,3527,3523,1,0,0,0,3527, + 3525,1,0,0,0,3528,279,1,0,0,0,3529,3530,5,80,0,0,3530,3536,5,161, + 0,0,3531,3537,5,191,0,0,3532,3533,5,182,0,0,3533,3537,5,320,0,0, + 3534,3535,5,292,0,0,3535,3537,5,320,0,0,3536,3531,1,0,0,0,3536,3532, + 1,0,0,0,3536,3534,1,0,0,0,3537,281,1,0,0,0,3538,3539,5,351,0,0,3539, + 3540,3,1402,701,0,3540,283,1,0,0,0,3541,3543,3,642,321,0,3542,3541, + 1,0,0,0,3542,3543,1,0,0,0,3543,3545,1,0,0,0,3544,3546,3,1014,507, + 0,3545,3544,1,0,0,0,3545,3546,1,0,0,0,3546,3548,1,0,0,0,3547,3549, + 3,286,143,0,3548,3547,1,0,0,0,3548,3549,1,0,0,0,3549,285,1,0,0,0, + 3550,3551,5,100,0,0,3551,3552,5,226,0,0,3552,3553,5,351,0,0,3553, + 3554,3,1402,701,0,3554,287,1,0,0,0,3555,3556,5,100,0,0,3556,3557, + 5,226,0,0,3557,3558,3,1436,718,0,3558,289,1,0,0,0,3559,3560,5,46, + 0,0,3560,3565,5,342,0,0,3561,3563,3,516,258,0,3562,3561,1,0,0,0, + 3562,3563,1,0,0,0,3563,3564,1,0,0,0,3564,3566,3,558,279,0,3565,3562, + 1,0,0,0,3565,3566,1,0,0,0,3566,3568,1,0,0,0,3567,3569,3,918,459, + 0,3568,3567,1,0,0,0,3568,3569,1,0,0,0,3569,3570,1,0,0,0,3570,3573, + 5,80,0,0,3571,3574,3,1332,666,0,3572,3574,3,1328,664,0,3573,3571, + 1,0,0,0,3573,3572,1,0,0,0,3574,3575,1,0,0,0,3575,3576,5,64,0,0,3576, + 3577,3,1104,552,0,3577,291,1,0,0,0,3578,3579,5,138,0,0,3579,3581, + 5,342,0,0,3580,3582,3,748,374,0,3581,3580,1,0,0,0,3581,3582,1,0, + 0,0,3582,3583,1,0,0,0,3583,3584,3,558,279,0,3584,3585,5,333,0,0, + 3585,3586,5,342,0,0,3586,3587,3,1464,732,0,3587,293,1,0,0,0,3588, + 3590,5,46,0,0,3589,3591,3,190,95,0,3590,3589,1,0,0,0,3590,3591,1, + 0,0,0,3591,3592,1,0,0,0,3592,3594,5,92,0,0,3593,3595,3,516,258,0, + 3594,3593,1,0,0,0,3594,3595,1,0,0,0,3595,3596,1,0,0,0,3596,3597, + 3,296,148,0,3597,3598,5,36,0,0,3598,3600,3,1000,500,0,3599,3601, + 3,298,149,0,3600,3599,1,0,0,0,3600,3601,1,0,0,0,3601,295,1,0,0,0, + 3602,3604,3,1404,702,0,3603,3605,3,242,121,0,3604,3603,1,0,0,0,3604, + 3605,1,0,0,0,3605,3607,1,0,0,0,3606,3608,3,276,138,0,3607,3606,1, + 0,0,0,3607,3608,1,0,0,0,3608,3610,1,0,0,0,3609,3611,3,278,139,0, + 3610,3609,1,0,0,0,3610,3611,1,0,0,0,3611,3613,1,0,0,0,3612,3614, + 3,280,140,0,3613,3612,1,0,0,0,3613,3614,1,0,0,0,3614,3616,1,0,0, + 0,3615,3617,3,282,141,0,3616,3615,1,0,0,0,3616,3617,1,0,0,0,3617, + 297,1,0,0,0,3618,3622,5,105,0,0,3619,3623,5,174,0,0,3620,3621,5, + 269,0,0,3621,3623,5,174,0,0,3622,3619,1,0,0,0,3622,3620,1,0,0,0, + 3623,299,1,0,0,0,3624,3626,5,46,0,0,3625,3627,3,304,152,0,3626,3625, + 1,0,0,0,3626,3627,1,0,0,0,3627,3628,1,0,0,0,3628,3629,5,259,0,0, + 3629,3631,5,376,0,0,3630,3632,3,516,258,0,3631,3630,1,0,0,0,3631, + 3632,1,0,0,0,3632,3633,1,0,0,0,3633,3634,3,302,151,0,3634,3635,5, + 36,0,0,3635,3637,3,1000,500,0,3636,3638,3,298,149,0,3637,3636,1, + 0,0,0,3637,3638,1,0,0,0,3638,301,1,0,0,0,3639,3641,3,1408,704,0, + 3640,3642,3,242,121,0,3641,3640,1,0,0,0,3641,3642,1,0,0,0,3642,3644, + 1,0,0,0,3643,3645,3,276,138,0,3644,3643,1,0,0,0,3644,3645,1,0,0, + 0,3645,3647,1,0,0,0,3646,3648,3,134,67,0,3647,3646,1,0,0,0,3647, + 3648,1,0,0,0,3648,3650,1,0,0,0,3649,3651,3,282,141,0,3650,3649,1, + 0,0,0,3650,3651,1,0,0,0,3651,303,1,0,0,0,3652,3653,5,367,0,0,3653, + 305,1,0,0,0,3654,3655,5,305,0,0,3655,3656,5,259,0,0,3656,3658,5, + 376,0,0,3657,3659,3,630,315,0,3658,3657,1,0,0,0,3658,3659,1,0,0, + 0,3659,3660,1,0,0,0,3660,3662,3,1410,705,0,3661,3663,3,298,149,0, + 3662,3661,1,0,0,0,3662,3663,1,0,0,0,3663,307,1,0,0,0,3664,3666,5, + 46,0,0,3665,3667,3,190,95,0,3666,3665,1,0,0,0,3666,3667,1,0,0,0, + 3667,3668,1,0,0,0,3668,3670,5,328,0,0,3669,3671,3,516,258,0,3670, + 3669,1,0,0,0,3670,3671,1,0,0,0,3671,3672,1,0,0,0,3672,3674,3,1412, + 706,0,3673,3675,3,312,156,0,3674,3673,1,0,0,0,3674,3675,1,0,0,0, + 3675,309,1,0,0,0,3676,3677,5,138,0,0,3677,3679,5,328,0,0,3678,3680, + 3,748,374,0,3679,3678,1,0,0,0,3679,3680,1,0,0,0,3680,3681,1,0,0, + 0,3681,3682,3,1412,706,0,3682,3683,3,316,158,0,3683,311,1,0,0,0, + 3684,3685,3,316,158,0,3685,313,1,0,0,0,3686,3687,5,2,0,0,3687,3688, + 3,316,158,0,3688,3689,5,3,0,0,3689,315,1,0,0,0,3690,3692,3,318,159, + 0,3691,3690,1,0,0,0,3692,3693,1,0,0,0,3693,3691,1,0,0,0,3693,3694, + 1,0,0,0,3694,317,1,0,0,0,3695,3696,5,36,0,0,3696,3730,3,1172,586, + 0,3697,3698,5,148,0,0,3698,3730,3,322,161,0,3699,3730,5,173,0,0, + 3700,3702,5,225,0,0,3701,3703,3,320,160,0,3702,3701,1,0,0,0,3702, + 3703,1,0,0,0,3703,3704,1,0,0,0,3704,3730,3,322,161,0,3705,3706,5, + 260,0,0,3706,3730,3,322,161,0,3707,3708,5,262,0,0,3708,3730,3,322, + 161,0,3709,3710,5,269,0,0,3710,3730,7,30,0,0,3711,3712,5,281,0,0, + 3712,3713,5,147,0,0,3713,3730,3,1432,716,0,3714,3715,5,328,0,0,3715, + 3716,5,266,0,0,3716,3730,3,558,279,0,3717,3719,5,340,0,0,3718,3720, + 3,14,7,0,3719,3718,1,0,0,0,3719,3720,1,0,0,0,3720,3721,1,0,0,0,3721, + 3730,3,322,161,0,3722,3724,5,314,0,0,3723,3725,3,14,7,0,3724,3723, + 1,0,0,0,3724,3725,1,0,0,0,3725,3727,1,0,0,0,3726,3728,3,322,161, + 0,3727,3726,1,0,0,0,3727,3728,1,0,0,0,3728,3730,1,0,0,0,3729,3695, + 1,0,0,0,3729,3697,1,0,0,0,3729,3699,1,0,0,0,3729,3700,1,0,0,0,3729, + 3705,1,0,0,0,3729,3707,1,0,0,0,3729,3709,1,0,0,0,3729,3711,1,0,0, + 0,3729,3714,1,0,0,0,3729,3717,1,0,0,0,3729,3722,1,0,0,0,3730,319, + 1,0,0,0,3731,3732,5,147,0,0,3732,321,1,0,0,0,3733,3740,3,1454,727, + 0,3734,3735,5,12,0,0,3735,3740,3,1454,727,0,3736,3737,5,13,0,0,3737, + 3740,3,1454,727,0,3738,3740,3,1464,732,0,3739,3733,1,0,0,0,3739, + 3734,1,0,0,0,3739,3736,1,0,0,0,3739,3738,1,0,0,0,3740,323,1,0,0, + 0,3741,3746,3,322,161,0,3742,3743,5,6,0,0,3743,3745,3,322,161,0, + 3744,3742,1,0,0,0,3745,3748,1,0,0,0,3746,3744,1,0,0,0,3746,3747, + 1,0,0,0,3747,325,1,0,0,0,3748,3746,1,0,0,0,3749,3751,5,46,0,0,3750, + 3752,3,658,329,0,3751,3750,1,0,0,0,3751,3752,1,0,0,0,3752,3754,1, + 0,0,0,3753,3755,3,328,164,0,3754,3753,1,0,0,0,3754,3755,1,0,0,0, + 3755,3757,1,0,0,0,3756,3758,3,338,169,0,3757,3756,1,0,0,0,3757,3758, + 1,0,0,0,3758,3759,1,0,0,0,3759,3760,5,247,0,0,3760,3769,3,1436,718, + 0,3761,3762,5,215,0,0,3762,3764,3,330,165,0,3763,3765,3,332,166, + 0,3764,3763,1,0,0,0,3764,3765,1,0,0,0,3765,3767,1,0,0,0,3766,3768, + 3,336,168,0,3767,3766,1,0,0,0,3767,3768,1,0,0,0,3768,3770,1,0,0, + 0,3769,3761,1,0,0,0,3769,3770,1,0,0,0,3770,327,1,0,0,0,3771,3772, + 5,359,0,0,3772,329,1,0,0,0,3773,3775,3,1436,718,0,3774,3776,3,560, + 280,0,3775,3774,1,0,0,0,3775,3776,1,0,0,0,3776,331,1,0,0,0,3777, + 3778,5,239,0,0,3778,3779,3,330,165,0,3779,333,1,0,0,0,3780,3781, + 5,373,0,0,3781,3785,3,330,165,0,3782,3783,5,269,0,0,3783,3785,5, + 373,0,0,3784,3780,1,0,0,0,3784,3782,1,0,0,0,3785,335,1,0,0,0,3786, + 3787,3,334,167,0,3787,337,1,0,0,0,3788,3789,5,295,0,0,3789,339,1, + 0,0,0,3790,3791,5,46,0,0,3791,3792,5,351,0,0,3792,3794,3,1402,701, + 0,3793,3795,3,342,171,0,3794,3793,1,0,0,0,3794,3795,1,0,0,0,3795, + 3796,1,0,0,0,3796,3797,5,255,0,0,3797,3799,3,1458,729,0,3798,3800, + 3,134,67,0,3799,3798,1,0,0,0,3799,3800,1,0,0,0,3800,341,1,0,0,0, + 3801,3802,5,282,0,0,3802,3803,3,1470,735,0,3803,343,1,0,0,0,3804, + 3805,5,46,0,0,3805,3807,5,204,0,0,3806,3808,3,516,258,0,3807,3806, + 1,0,0,0,3807,3808,1,0,0,0,3808,3809,1,0,0,0,3809,3811,3,1436,718, + 0,3810,3812,3,14,7,0,3811,3810,1,0,0,0,3811,3812,1,0,0,0,3812,3813, + 1,0,0,0,3813,3814,3,346,173,0,3814,345,1,0,0,0,3815,3817,3,348,174, + 0,3816,3815,1,0,0,0,3817,3820,1,0,0,0,3818,3816,1,0,0,0,3818,3819, + 1,0,0,0,3819,347,1,0,0,0,3820,3818,1,0,0,0,3821,3822,5,323,0,0,3822, + 3829,3,1422,711,0,3823,3824,5,375,0,0,3824,3829,3,80,40,0,3825,3826, + 5,64,0,0,3826,3829,3,80,40,0,3827,3829,5,150,0,0,3828,3821,1,0,0, + 0,3828,3823,1,0,0,0,3828,3825,1,0,0,0,3828,3827,1,0,0,0,3829,349, + 1,0,0,0,3830,3831,5,138,0,0,3831,3832,5,204,0,0,3832,3833,3,1436, + 718,0,3833,3834,5,369,0,0,3834,3835,3,352,176,0,3835,351,1,0,0,0, + 3836,3838,3,354,177,0,3837,3836,1,0,0,0,3838,3841,1,0,0,0,3839,3837, + 1,0,0,0,3839,3840,1,0,0,0,3840,353,1,0,0,0,3841,3839,1,0,0,0,3842, + 3843,5,94,0,0,3843,3844,3,80,40,0,3844,355,1,0,0,0,3845,3846,5,138, + 0,0,3846,3847,5,204,0,0,3847,3848,3,1436,718,0,3848,3849,3,44,22, + 0,3849,3850,3,548,274,0,3850,3948,1,0,0,0,3851,3852,5,138,0,0,3852, + 3853,5,204,0,0,3853,3854,3,1436,718,0,3854,3855,3,44,22,0,3855,3856, + 3,546,273,0,3856,3948,1,0,0,0,3857,3858,5,138,0,0,3858,3859,5,204, + 0,0,3859,3860,3,1436,718,0,3860,3861,3,44,22,0,3861,3862,5,136,0, + 0,3862,3863,3,698,349,0,3863,3948,1,0,0,0,3864,3865,5,138,0,0,3865, + 3866,5,204,0,0,3866,3867,3,1436,718,0,3867,3868,3,44,22,0,3868,3869, + 5,41,0,0,3869,3870,5,2,0,0,3870,3871,3,1168,584,0,3871,3872,5,36, + 0,0,3872,3873,3,1168,584,0,3873,3874,5,3,0,0,3874,3948,1,0,0,0,3875, + 3876,5,138,0,0,3876,3877,5,204,0,0,3877,3878,3,1436,718,0,3878,3879, + 3,44,22,0,3879,3880,5,189,0,0,3880,3881,3,1168,584,0,3881,3948,1, + 0,0,0,3882,3883,5,138,0,0,3883,3884,5,204,0,0,3884,3885,3,1436,718, + 0,3885,3886,3,44,22,0,3886,3887,5,211,0,0,3887,3888,3,674,337,0, + 3888,3948,1,0,0,0,3889,3890,5,138,0,0,3890,3891,5,204,0,0,3891,3892, + 3,1436,718,0,3892,3893,3,44,22,0,3893,3894,5,278,0,0,3894,3895,3, + 736,368,0,3895,3948,1,0,0,0,3896,3897,5,138,0,0,3897,3898,5,204, + 0,0,3898,3899,3,1436,718,0,3899,3900,3,44,22,0,3900,3901,5,278,0, + 0,3901,3902,5,156,0,0,3902,3903,3,558,279,0,3903,3904,5,100,0,0, + 3904,3905,3,1436,718,0,3905,3948,1,0,0,0,3906,3907,5,138,0,0,3907, + 3908,5,204,0,0,3908,3909,3,1436,718,0,3909,3910,3,44,22,0,3910,3911, + 5,278,0,0,3911,3912,5,206,0,0,3912,3913,3,558,279,0,3913,3914,5, + 100,0,0,3914,3915,3,1436,718,0,3915,3948,1,0,0,0,3916,3917,5,138, + 0,0,3917,3918,5,204,0,0,3918,3919,3,1436,718,0,3919,3920,3,44,22, + 0,3920,3921,5,296,0,0,3921,3922,3,670,335,0,3922,3948,1,0,0,0,3923, + 3924,5,138,0,0,3924,3925,5,204,0,0,3925,3926,3,1436,718,0,3926,3927, + 3,44,22,0,3927,3928,5,442,0,0,3928,3929,3,666,333,0,3929,3948,1, + 0,0,0,3930,3931,5,138,0,0,3931,3932,5,204,0,0,3932,3933,3,1436,718, + 0,3933,3934,3,44,22,0,3934,3935,5,443,0,0,3935,3936,5,62,0,0,3936, + 3937,3,1168,584,0,3937,3938,5,247,0,0,3938,3939,3,1436,718,0,3939, + 3948,1,0,0,0,3940,3941,5,138,0,0,3941,3942,5,204,0,0,3942,3943,3, + 1436,718,0,3943,3944,3,44,22,0,3944,3945,5,360,0,0,3945,3946,3,1168, + 584,0,3946,3948,1,0,0,0,3947,3845,1,0,0,0,3947,3851,1,0,0,0,3947, + 3857,1,0,0,0,3947,3864,1,0,0,0,3947,3875,1,0,0,0,3947,3882,1,0,0, + 0,3947,3889,1,0,0,0,3947,3896,1,0,0,0,3947,3906,1,0,0,0,3947,3916, + 1,0,0,0,3947,3923,1,0,0,0,3947,3930,1,0,0,0,3947,3940,1,0,0,0,3948, + 357,1,0,0,0,3949,3950,5,46,0,0,3950,3951,5,63,0,0,3951,3952,5,174, + 0,0,3952,3953,5,381,0,0,3953,3955,3,1436,718,0,3954,3956,3,364,182, + 0,3955,3954,1,0,0,0,3955,3956,1,0,0,0,3956,3958,1,0,0,0,3957,3959, + 3,368,184,0,3958,3957,1,0,0,0,3958,3959,1,0,0,0,3959,359,1,0,0,0, + 3960,3961,5,215,0,0,3961,3969,3,330,165,0,3962,3963,5,269,0,0,3963, + 3969,5,215,0,0,3964,3965,5,373,0,0,3965,3969,3,330,165,0,3966,3967, + 5,269,0,0,3967,3969,5,373,0,0,3968,3960,1,0,0,0,3968,3962,1,0,0, + 0,3968,3964,1,0,0,0,3968,3966,1,0,0,0,3969,361,1,0,0,0,3970,3972, + 3,360,180,0,3971,3970,1,0,0,0,3972,3973,1,0,0,0,3973,3971,1,0,0, + 0,3973,3974,1,0,0,0,3974,363,1,0,0,0,3975,3976,3,362,181,0,3976, + 365,1,0,0,0,3977,3978,5,138,0,0,3978,3979,5,63,0,0,3979,3980,5,174, + 0,0,3980,3981,5,381,0,0,3981,3983,3,1436,718,0,3982,3984,3,364,182, + 0,3983,3982,1,0,0,0,3983,3984,1,0,0,0,3984,3985,1,0,0,0,3985,3986, + 3,372,186,0,3986,3995,1,0,0,0,3987,3988,5,138,0,0,3988,3989,5,63, + 0,0,3989,3990,5,174,0,0,3990,3991,5,381,0,0,3991,3992,3,1436,718, + 0,3992,3993,3,362,181,0,3993,3995,1,0,0,0,3994,3977,1,0,0,0,3994, + 3987,1,0,0,0,3995,367,1,0,0,0,3996,3997,5,280,0,0,3997,3998,5,2, + 0,0,3998,3999,3,370,185,0,3999,4000,5,3,0,0,4000,369,1,0,0,0,4001, + 4006,3,378,189,0,4002,4003,5,6,0,0,4003,4005,3,378,189,0,4004,4002, + 1,0,0,0,4005,4008,1,0,0,0,4006,4004,1,0,0,0,4006,4007,1,0,0,0,4007, + 371,1,0,0,0,4008,4006,1,0,0,0,4009,4010,5,280,0,0,4010,4011,5,2, + 0,0,4011,4012,3,374,187,0,4012,4013,5,3,0,0,4013,373,1,0,0,0,4014, + 4019,3,376,188,0,4015,4016,5,6,0,0,4016,4018,3,376,188,0,4017,4015, + 1,0,0,0,4018,4021,1,0,0,0,4019,4017,1,0,0,0,4019,4020,1,0,0,0,4020, + 375,1,0,0,0,4021,4019,1,0,0,0,4022,4030,3,378,189,0,4023,4024,5, + 333,0,0,4024,4030,3,378,189,0,4025,4026,5,133,0,0,4026,4030,3,378, + 189,0,4027,4028,5,191,0,0,4028,4030,3,378,189,0,4029,4022,1,0,0, + 0,4029,4023,1,0,0,0,4029,4025,1,0,0,0,4029,4027,1,0,0,0,4030,377, + 1,0,0,0,4031,4032,3,380,190,0,4032,4033,3,382,191,0,4033,379,1,0, + 0,0,4034,4035,3,1490,745,0,4035,381,1,0,0,0,4036,4037,3,1458,729, + 0,4037,383,1,0,0,0,4038,4039,5,46,0,0,4039,4041,5,331,0,0,4040,4042, + 3,516,258,0,4041,4040,1,0,0,0,4041,4042,1,0,0,0,4042,4043,1,0,0, + 0,4043,4045,3,1436,718,0,4044,4046,3,386,193,0,4045,4044,1,0,0,0, + 4045,4046,1,0,0,0,4046,4048,1,0,0,0,4047,4049,3,390,195,0,4048,4047, + 1,0,0,0,4048,4049,1,0,0,0,4049,4050,1,0,0,0,4050,4051,5,63,0,0,4051, + 4052,5,174,0,0,4052,4053,5,381,0,0,4053,4055,3,1436,718,0,4054,4056, + 3,368,184,0,4055,4054,1,0,0,0,4055,4056,1,0,0,0,4056,385,1,0,0,0, + 4057,4058,5,360,0,0,4058,4059,3,1458,729,0,4059,387,1,0,0,0,4060, + 4063,5,375,0,0,4061,4064,3,1458,729,0,4062,4064,5,78,0,0,4063,4061, + 1,0,0,0,4063,4062,1,0,0,0,4064,389,1,0,0,0,4065,4066,3,388,194,0, + 4066,391,1,0,0,0,4067,4068,5,138,0,0,4068,4069,5,331,0,0,4069,4075, + 3,1436,718,0,4070,4076,3,372,186,0,4071,4073,3,388,194,0,4072,4074, + 3,372,186,0,4073,4072,1,0,0,0,4073,4074,1,0,0,0,4074,4076,1,0,0, + 0,4075,4070,1,0,0,0,4075,4071,1,0,0,0,4076,393,1,0,0,0,4077,4078, + 5,46,0,0,4078,4079,5,63,0,0,4079,4081,5,92,0,0,4080,4082,3,516,258, + 0,4081,4080,1,0,0,0,4081,4082,1,0,0,0,4082,4083,1,0,0,0,4083,4084, + 3,1404,702,0,4084,4086,5,2,0,0,4085,4087,3,194,97,0,4086,4085,1, + 0,0,0,4086,4087,1,0,0,0,4087,4088,1,0,0,0,4088,4090,5,3,0,0,4089, + 4091,3,266,133,0,4090,4089,1,0,0,0,4090,4091,1,0,0,0,4091,4092,1, + 0,0,0,4092,4093,5,331,0,0,4093,4095,3,1436,718,0,4094,4096,3,368, + 184,0,4095,4094,1,0,0,0,4095,4096,1,0,0,0,4096,4117,1,0,0,0,4097, + 4098,5,46,0,0,4098,4099,5,63,0,0,4099,4101,5,92,0,0,4100,4102,3, + 516,258,0,4101,4100,1,0,0,0,4101,4102,1,0,0,0,4102,4103,1,0,0,0, + 4103,4104,3,1404,702,0,4104,4105,5,285,0,0,4105,4106,5,275,0,0,4106, + 4108,3,1406,703,0,4107,4109,3,196,98,0,4108,4107,1,0,0,0,4108,4109, + 1,0,0,0,4109,4110,1,0,0,0,4110,4111,3,144,72,0,4111,4112,5,331,0, + 0,4112,4114,3,1436,718,0,4113,4115,3,368,184,0,4114,4113,1,0,0,0, + 4114,4115,1,0,0,0,4115,4117,1,0,0,0,4116,4077,1,0,0,0,4116,4097, + 1,0,0,0,4117,395,1,0,0,0,4118,4119,5,444,0,0,4119,4120,5,63,0,0, + 4120,4121,5,323,0,0,4121,4123,3,1422,711,0,4122,4124,3,400,200,0, + 4123,4122,1,0,0,0,4123,4124,1,0,0,0,4124,4125,1,0,0,0,4125,4126, + 5,64,0,0,4126,4127,5,331,0,0,4127,4128,3,1436,718,0,4128,4129,5, + 71,0,0,4129,4131,3,1436,718,0,4130,4132,3,368,184,0,4131,4130,1, + 0,0,0,4131,4132,1,0,0,0,4132,397,1,0,0,0,4133,4134,5,74,0,0,4134, + 4137,5,94,0,0,4135,4137,5,59,0,0,4136,4133,1,0,0,0,4136,4135,1,0, + 0,0,4137,399,1,0,0,0,4138,4139,3,398,199,0,4139,4140,5,2,0,0,4140, + 4141,3,1124,562,0,4141,4142,5,3,0,0,4142,401,1,0,0,0,4143,4144,5, + 46,0,0,4144,4145,5,99,0,0,4145,4147,5,257,0,0,4146,4148,3,516,258, + 0,4147,4146,1,0,0,0,4147,4148,1,0,0,0,4148,4149,1,0,0,0,4149,4150, + 5,62,0,0,4150,4151,3,404,202,0,4151,4152,5,331,0,0,4152,4154,3,1436, + 718,0,4153,4155,3,368,184,0,4154,4153,1,0,0,0,4154,4155,1,0,0,0, + 4155,403,1,0,0,0,4156,4159,3,1470,735,0,4157,4159,5,99,0,0,4158, + 4156,1,0,0,0,4158,4157,1,0,0,0,4159,405,1,0,0,0,4160,4161,5,138, + 0,0,4161,4162,5,99,0,0,4162,4163,5,257,0,0,4163,4164,5,62,0,0,4164, + 4165,3,404,202,0,4165,4166,5,331,0,0,4166,4167,3,1436,718,0,4167, + 4168,3,372,186,0,4168,407,1,0,0,0,4169,4170,5,46,0,0,4170,4171,5, + 445,0,0,4171,4172,3,1436,718,0,4172,4173,5,80,0,0,4173,4175,3,1412, + 706,0,4174,4176,3,426,213,0,4175,4174,1,0,0,0,4175,4176,1,0,0,0, + 4176,4178,1,0,0,0,4177,4179,3,428,214,0,4178,4177,1,0,0,0,4178,4179, + 1,0,0,0,4179,4181,1,0,0,0,4180,4182,3,422,211,0,4181,4180,1,0,0, + 0,4181,4182,1,0,0,0,4182,4184,1,0,0,0,4183,4185,3,418,209,0,4184, + 4183,1,0,0,0,4184,4185,1,0,0,0,4185,4187,1,0,0,0,4186,4188,3,420, + 210,0,4187,4186,1,0,0,0,4187,4188,1,0,0,0,4188,409,1,0,0,0,4189, + 4190,5,138,0,0,4190,4191,5,445,0,0,4191,4192,3,1436,718,0,4192,4193, + 5,80,0,0,4193,4195,3,1412,706,0,4194,4196,3,424,212,0,4195,4194, + 1,0,0,0,4195,4196,1,0,0,0,4196,4198,1,0,0,0,4197,4199,3,418,209, + 0,4198,4197,1,0,0,0,4198,4199,1,0,0,0,4199,4201,1,0,0,0,4200,4202, + 3,420,210,0,4201,4200,1,0,0,0,4201,4202,1,0,0,0,4202,411,1,0,0,0, + 4203,4204,5,138,0,0,4204,4205,5,296,0,0,4205,4207,3,1428,714,0,4206, + 4208,3,660,330,0,4207,4206,1,0,0,0,4207,4208,1,0,0,0,4208,4209,1, + 0,0,0,4209,4210,3,414,207,0,4210,413,1,0,0,0,4211,4215,3,416,208, + 0,4212,4214,3,416,208,0,4213,4212,1,0,0,0,4214,4217,1,0,0,0,4215, + 4213,1,0,0,0,4215,4216,1,0,0,0,4216,4219,1,0,0,0,4217,4215,1,0,0, + 0,4218,4220,5,315,0,0,4219,4218,1,0,0,0,4219,4220,1,0,0,0,4220,4238, + 1,0,0,0,4221,4222,5,309,0,0,4222,4223,5,94,0,0,4223,4238,3,1430, + 715,0,4224,4225,5,282,0,0,4225,4226,5,94,0,0,4226,4238,3,1470,735, + 0,4227,4228,5,333,0,0,4228,4229,5,323,0,0,4229,4238,3,48,24,0,4230, + 4232,5,269,0,0,4231,4230,1,0,0,0,4231,4232,1,0,0,0,4232,4233,1,0, + 0,0,4233,4234,5,462,0,0,4234,4235,5,80,0,0,4235,4236,5,204,0,0,4236, + 4238,3,1436,718,0,4237,4211,1,0,0,0,4237,4221,1,0,0,0,4237,4224, + 1,0,0,0,4237,4227,1,0,0,0,4237,4231,1,0,0,0,4238,415,1,0,0,0,4239, + 4241,5,205,0,0,4240,4239,1,0,0,0,4240,4241,1,0,0,0,4241,4242,1,0, + 0,0,4242,4243,5,327,0,0,4243,4250,5,243,0,0,4244,4246,5,205,0,0, + 4245,4244,1,0,0,0,4245,4246,1,0,0,0,4246,4247,1,0,0,0,4247,4248, + 5,327,0,0,4248,4250,5,181,0,0,4249,4240,1,0,0,0,4249,4245,1,0,0, + 0,4250,4268,1,0,0,0,4251,4252,5,333,0,0,4252,4253,3,1436,718,0,4253, + 4256,7,31,0,0,4254,4257,3,1436,718,0,4255,4257,5,53,0,0,4256,4254, + 1,0,0,0,4256,4255,1,0,0,0,4257,4268,1,0,0,0,4258,4259,5,333,0,0, + 4259,4260,3,1436,718,0,4260,4261,5,64,0,0,4261,4262,5,434,0,0,4262, + 4268,1,0,0,0,4263,4264,5,313,0,0,4264,4268,3,1436,718,0,4265,4266, + 5,313,0,0,4266,4268,5,30,0,0,4267,4249,1,0,0,0,4267,4251,1,0,0,0, + 4267,4258,1,0,0,0,4267,4263,1,0,0,0,4267,4265,1,0,0,0,4268,417,1, + 0,0,0,4269,4270,5,100,0,0,4270,4271,5,2,0,0,4271,4272,3,1212,606, + 0,4272,4273,5,3,0,0,4273,419,1,0,0,0,4274,4275,5,105,0,0,4275,4276, + 5,42,0,0,4276,4277,5,2,0,0,4277,4278,3,1212,606,0,4278,4279,5,3, + 0,0,4279,421,1,0,0,0,4280,4281,5,94,0,0,4281,4282,3,1472,736,0,4282, + 423,1,0,0,0,4283,4284,5,94,0,0,4284,4285,3,1472,736,0,4285,425,1, + 0,0,0,4286,4290,5,36,0,0,4287,4291,5,541,0,0,4288,4291,5,542,0,0, + 4289,4291,3,1492,746,0,4290,4287,1,0,0,0,4290,4288,1,0,0,0,4290, + 4289,1,0,0,0,4291,427,1,0,0,0,4292,4293,5,62,0,0,4293,4294,3,430, + 215,0,4294,429,1,0,0,0,4295,4296,7,32,0,0,4296,431,1,0,0,0,4297, + 4298,5,46,0,0,4298,4299,5,131,0,0,4299,4300,5,446,0,0,4300,4301, + 3,1436,718,0,4301,4302,5,360,0,0,4302,4303,3,434,217,0,4303,4304, + 5,215,0,0,4304,4305,3,330,165,0,4305,433,1,0,0,0,4306,4307,7,33, + 0,0,4307,435,1,0,0,0,4308,4310,5,46,0,0,4309,4311,3,658,329,0,4310, + 4309,1,0,0,0,4310,4311,1,0,0,0,4311,4312,1,0,0,0,4312,4313,5,357, + 0,0,4313,4314,3,1436,718,0,4314,4315,3,438,219,0,4315,4316,3,444, + 222,0,4316,4317,5,80,0,0,4317,4319,3,1406,703,0,4318,4320,3,448, + 224,0,4319,4318,1,0,0,0,4319,4320,1,0,0,0,4320,4322,1,0,0,0,4321, + 4323,3,460,230,0,4322,4321,1,0,0,0,4322,4323,1,0,0,0,4323,4325,1, + 0,0,0,4324,4326,3,466,233,0,4325,4324,1,0,0,0,4325,4326,1,0,0,0, + 4326,4327,1,0,0,0,4327,4328,5,202,0,0,4328,4329,3,468,234,0,4329, + 4330,5,2,0,0,4330,4331,3,470,235,0,4331,4332,5,3,0,0,4332,4363,1, + 0,0,0,4333,4335,5,46,0,0,4334,4336,3,658,329,0,4335,4334,1,0,0,0, + 4335,4336,1,0,0,0,4336,4338,1,0,0,0,4337,4339,5,45,0,0,4338,4337, + 1,0,0,0,4338,4339,1,0,0,0,4339,4340,1,0,0,0,4340,4341,5,357,0,0, + 4341,4342,3,1436,718,0,4342,4343,3,438,219,0,4343,4344,3,444,222, + 0,4344,4345,5,80,0,0,4345,4347,3,1406,703,0,4346,4348,3,474,237, + 0,4347,4346,1,0,0,0,4347,4348,1,0,0,0,4348,4349,1,0,0,0,4349,4351, + 3,476,238,0,4350,4352,3,440,220,0,4351,4350,1,0,0,0,4351,4352,1, + 0,0,0,4352,4354,1,0,0,0,4353,4355,3,466,233,0,4354,4353,1,0,0,0, + 4354,4355,1,0,0,0,4355,4356,1,0,0,0,4356,4357,5,202,0,0,4357,4358, + 3,468,234,0,4358,4359,5,2,0,0,4359,4360,3,470,235,0,4360,4361,5, + 3,0,0,4361,4363,1,0,0,0,4362,4308,1,0,0,0,4362,4333,1,0,0,0,4363, + 437,1,0,0,0,4364,4369,5,145,0,0,4365,4369,5,135,0,0,4366,4367,5, + 242,0,0,4367,4369,5,275,0,0,4368,4364,1,0,0,0,4368,4365,1,0,0,0, + 4368,4366,1,0,0,0,4369,439,1,0,0,0,4370,4372,5,62,0,0,4371,4373, + 5,192,0,0,4372,4371,1,0,0,0,4372,4373,1,0,0,0,4373,4374,1,0,0,0, + 4374,4375,3,442,221,0,4375,441,1,0,0,0,4376,4377,7,34,0,0,4377,443, + 1,0,0,0,4378,4383,3,446,223,0,4379,4380,5,82,0,0,4380,4382,3,446, + 223,0,4381,4379,1,0,0,0,4382,4385,1,0,0,0,4383,4381,1,0,0,0,4383, + 4384,1,0,0,0,4384,445,1,0,0,0,4385,4383,1,0,0,0,4386,4394,5,241, + 0,0,4387,4394,5,182,0,0,4388,4394,5,369,0,0,4389,4390,5,369,0,0, + 4390,4391,5,275,0,0,4391,4394,3,244,122,0,4392,4394,5,358,0,0,4393, + 4386,1,0,0,0,4393,4387,1,0,0,0,4393,4388,1,0,0,0,4393,4389,1,0,0, + 0,4393,4392,1,0,0,0,4394,447,1,0,0,0,4395,4396,5,447,0,0,4396,4397, + 3,450,225,0,4397,449,1,0,0,0,4398,4400,3,452,226,0,4399,4398,1,0, + 0,0,4400,4401,1,0,0,0,4401,4399,1,0,0,0,4401,4402,1,0,0,0,4402,451, + 1,0,0,0,4403,4404,3,454,227,0,4404,4406,3,456,228,0,4405,4407,3, + 872,436,0,4406,4405,1,0,0,0,4406,4407,1,0,0,0,4407,4408,1,0,0,0, + 4408,4409,3,458,229,0,4409,453,1,0,0,0,4410,4411,7,35,0,0,4411,455, + 1,0,0,0,4412,4413,7,36,0,0,4413,457,1,0,0,0,4414,4415,3,1474,737, + 0,4415,459,1,0,0,0,4416,4418,5,62,0,0,4417,4419,3,462,231,0,4418, + 4417,1,0,0,0,4418,4419,1,0,0,0,4419,4420,1,0,0,0,4420,4421,3,464, + 232,0,4421,461,1,0,0,0,4422,4423,5,192,0,0,4423,463,1,0,0,0,4424, + 4425,7,34,0,0,4425,465,1,0,0,0,4426,4427,5,102,0,0,4427,4428,5,2, + 0,0,4428,4429,3,1212,606,0,4429,4430,5,3,0,0,4430,467,1,0,0,0,4431, + 4432,5,211,0,0,4432,4436,3,1444,722,0,4433,4434,5,296,0,0,4434,4436, + 3,1428,714,0,4435,4431,1,0,0,0,4435,4433,1,0,0,0,4436,469,1,0,0, + 0,4437,4440,3,472,236,0,4438,4440,1,0,0,0,4439,4437,1,0,0,0,4439, + 4438,1,0,0,0,4440,4445,1,0,0,0,4441,4442,5,6,0,0,4442,4444,3,472, + 236,0,4443,4441,1,0,0,0,4444,4447,1,0,0,0,4445,4443,1,0,0,0,4445, + 4446,1,0,0,0,4446,471,1,0,0,0,4447,4445,1,0,0,0,4448,4453,3,1456, + 728,0,4449,4453,3,1454,727,0,4450,4453,3,1458,729,0,4451,4453,3, + 1490,745,0,4452,4448,1,0,0,0,4452,4449,1,0,0,0,4452,4450,1,0,0,0, + 4452,4451,1,0,0,0,4453,473,1,0,0,0,4454,4455,5,64,0,0,4455,4456, + 3,1412,706,0,4456,475,1,0,0,0,4457,4459,3,478,239,0,4458,4457,1, + 0,0,0,4459,4462,1,0,0,0,4460,4458,1,0,0,0,4460,4461,1,0,0,0,4461, + 477,1,0,0,0,4462,4460,1,0,0,0,4463,4464,5,77,0,0,4464,4475,5,54, + 0,0,4465,4475,5,54,0,0,4466,4467,5,69,0,0,4467,4475,5,221,0,0,4468, + 4469,5,69,0,0,4469,4475,5,180,0,0,4470,4471,5,77,0,0,4471,4475,5, + 371,0,0,4472,4473,5,269,0,0,4473,4475,5,228,0,0,4474,4463,1,0,0, + 0,4474,4465,1,0,0,0,4474,4466,1,0,0,0,4474,4468,1,0,0,0,4474,4470, + 1,0,0,0,4474,4472,1,0,0,0,4475,479,1,0,0,0,4476,4477,5,46,0,0,4477, + 4478,5,198,0,0,4478,4479,5,357,0,0,4479,4480,3,1436,718,0,4480,4481, + 5,80,0,0,4481,4482,3,1490,745,0,4482,4483,5,202,0,0,4483,4484,3, + 468,234,0,4484,4485,5,2,0,0,4485,4486,5,3,0,0,4486,4501,1,0,0,0, + 4487,4488,5,46,0,0,4488,4489,5,198,0,0,4489,4490,5,357,0,0,4490, + 4491,3,1436,718,0,4491,4492,5,80,0,0,4492,4493,3,1490,745,0,4493, + 4494,5,102,0,0,4494,4495,3,482,241,0,4495,4496,5,202,0,0,4496,4497, + 3,468,234,0,4497,4498,5,2,0,0,4498,4499,5,3,0,0,4499,4501,1,0,0, + 0,4500,4476,1,0,0,0,4500,4487,1,0,0,0,4501,481,1,0,0,0,4502,4507, + 3,484,242,0,4503,4504,5,33,0,0,4504,4506,3,484,242,0,4505,4503,1, + 0,0,0,4506,4509,1,0,0,0,4507,4505,1,0,0,0,4507,4508,1,0,0,0,4508, + 483,1,0,0,0,4509,4507,1,0,0,0,4510,4511,3,1474,737,0,4511,4512,5, + 68,0,0,4512,4513,5,2,0,0,4513,4514,3,486,243,0,4514,4515,5,3,0,0, + 4515,485,1,0,0,0,4516,4521,3,1458,729,0,4517,4518,5,6,0,0,4518,4520, + 3,1458,729,0,4519,4517,1,0,0,0,4520,4523,1,0,0,0,4521,4519,1,0,0, + 0,4521,4522,1,0,0,0,4522,487,1,0,0,0,4523,4521,1,0,0,0,4524,4525, + 5,138,0,0,4525,4526,5,198,0,0,4526,4527,5,357,0,0,4527,4528,3,1436, + 718,0,4528,4529,3,490,245,0,4529,489,1,0,0,0,4530,4532,5,193,0,0, + 4531,4533,7,20,0,0,4532,4531,1,0,0,0,4532,4533,1,0,0,0,4533,4536, + 1,0,0,0,4534,4536,5,186,0,0,4535,4530,1,0,0,0,4535,4534,1,0,0,0, + 4536,491,1,0,0,0,4537,4538,5,46,0,0,4538,4539,5,140,0,0,4539,4540, + 3,558,279,0,4540,4541,5,42,0,0,4541,4542,5,2,0,0,4542,4543,3,1212, + 606,0,4543,4544,5,3,0,0,4544,4545,3,476,238,0,4545,493,1,0,0,0,4546, + 4548,5,46,0,0,4547,4549,3,658,329,0,4548,4547,1,0,0,0,4548,4549, + 1,0,0,0,4549,4550,1,0,0,0,4550,4551,5,136,0,0,4551,4552,3,1444,722, + 0,4552,4553,3,694,347,0,4553,4554,3,496,248,0,4554,4650,1,0,0,0, + 4555,4557,5,46,0,0,4556,4558,3,658,329,0,4557,4556,1,0,0,0,4557, + 4558,1,0,0,0,4558,4559,1,0,0,0,4559,4560,5,136,0,0,4560,4561,3,1444, + 722,0,4561,4562,3,504,252,0,4562,4650,1,0,0,0,4563,4564,5,46,0,0, + 4564,4565,5,278,0,0,4565,4566,3,732,366,0,4566,4567,3,496,248,0, + 4567,4650,1,0,0,0,4568,4569,5,46,0,0,4569,4570,5,360,0,0,4570,4571, + 3,558,279,0,4571,4572,3,496,248,0,4572,4650,1,0,0,0,4573,4574,5, + 46,0,0,4574,4575,5,360,0,0,4575,4650,3,558,279,0,4576,4577,5,46, + 0,0,4577,4578,5,360,0,0,4578,4579,3,558,279,0,4579,4580,5,36,0,0, + 4580,4582,5,2,0,0,4581,4583,3,1148,574,0,4582,4581,1,0,0,0,4582, + 4583,1,0,0,0,4583,4584,1,0,0,0,4584,4585,5,3,0,0,4585,4650,1,0,0, + 0,4586,4587,5,46,0,0,4587,4588,5,360,0,0,4588,4589,3,558,279,0,4589, + 4590,5,36,0,0,4590,4591,5,196,0,0,4591,4593,5,2,0,0,4592,4594,3, + 510,255,0,4593,4592,1,0,0,0,4593,4594,1,0,0,0,4594,4595,1,0,0,0, + 4595,4596,5,3,0,0,4596,4650,1,0,0,0,4597,4598,5,46,0,0,4598,4599, + 5,360,0,0,4599,4600,3,558,279,0,4600,4601,5,36,0,0,4601,4602,5,299, + 0,0,4602,4603,3,496,248,0,4603,4650,1,0,0,0,4604,4605,5,46,0,0,4605, + 4606,5,355,0,0,4606,4607,5,325,0,0,4607,4608,5,283,0,0,4608,4609, + 3,558,279,0,4609,4610,3,496,248,0,4610,4650,1,0,0,0,4611,4612,5, + 46,0,0,4612,4613,5,355,0,0,4613,4614,5,325,0,0,4614,4615,5,185,0, + 0,4615,4616,3,558,279,0,4616,4617,3,496,248,0,4617,4650,1,0,0,0, + 4618,4619,5,46,0,0,4619,4620,5,355,0,0,4620,4621,5,325,0,0,4621, + 4622,5,353,0,0,4622,4623,3,558,279,0,4623,4624,3,496,248,0,4624, + 4650,1,0,0,0,4625,4626,5,46,0,0,4626,4627,5,355,0,0,4627,4628,5, + 325,0,0,4628,4629,5,163,0,0,4629,4630,3,558,279,0,4630,4631,3,496, + 248,0,4631,4650,1,0,0,0,4632,4633,5,46,0,0,4633,4635,5,108,0,0,4634, + 4636,3,516,258,0,4635,4634,1,0,0,0,4635,4636,1,0,0,0,4636,4637,1, + 0,0,0,4637,4638,3,558,279,0,4638,4639,3,496,248,0,4639,4650,1,0, + 0,0,4640,4641,5,46,0,0,4641,4643,5,108,0,0,4642,4644,3,516,258,0, + 4643,4642,1,0,0,0,4643,4644,1,0,0,0,4644,4645,1,0,0,0,4645,4646, + 3,558,279,0,4646,4647,5,64,0,0,4647,4648,3,558,279,0,4648,4650,1, + 0,0,0,4649,4546,1,0,0,0,4649,4555,1,0,0,0,4649,4563,1,0,0,0,4649, + 4568,1,0,0,0,4649,4573,1,0,0,0,4649,4576,1,0,0,0,4649,4586,1,0,0, + 0,4649,4597,1,0,0,0,4649,4604,1,0,0,0,4649,4611,1,0,0,0,4649,4618, + 1,0,0,0,4649,4625,1,0,0,0,4649,4632,1,0,0,0,4649,4640,1,0,0,0,4650, + 495,1,0,0,0,4651,4652,5,2,0,0,4652,4653,3,498,249,0,4653,4654,5, + 3,0,0,4654,497,1,0,0,0,4655,4660,3,500,250,0,4656,4657,5,6,0,0,4657, + 4659,3,500,250,0,4658,4656,1,0,0,0,4659,4662,1,0,0,0,4660,4658,1, + 0,0,0,4660,4661,1,0,0,0,4661,499,1,0,0,0,4662,4660,1,0,0,0,4663, + 4666,3,1490,745,0,4664,4665,5,10,0,0,4665,4667,3,502,251,0,4666, + 4664,1,0,0,0,4666,4667,1,0,0,0,4667,501,1,0,0,0,4668,4675,3,688, + 344,0,4669,4675,3,1502,751,0,4670,4675,3,1324,662,0,4671,4675,3, + 322,161,0,4672,4675,3,1458,729,0,4673,4675,5,407,0,0,4674,4668,1, + 0,0,0,4674,4669,1,0,0,0,4674,4670,1,0,0,0,4674,4671,1,0,0,0,4674, + 4672,1,0,0,0,4674,4673,1,0,0,0,4675,503,1,0,0,0,4676,4677,5,2,0, + 0,4677,4678,3,506,253,0,4678,4679,5,3,0,0,4679,505,1,0,0,0,4680, + 4685,3,508,254,0,4681,4682,5,6,0,0,4682,4684,3,508,254,0,4683,4681, + 1,0,0,0,4684,4687,1,0,0,0,4685,4683,1,0,0,0,4685,4686,1,0,0,0,4686, + 507,1,0,0,0,4687,4685,1,0,0,0,4688,4689,3,1492,746,0,4689,4690,5, + 10,0,0,4690,4691,3,502,251,0,4691,509,1,0,0,0,4692,4693,3,512,256, + 0,4693,511,1,0,0,0,4694,4699,3,1458,729,0,4695,4696,5,6,0,0,4696, + 4698,3,1458,729,0,4697,4695,1,0,0,0,4698,4701,1,0,0,0,4699,4697, + 1,0,0,0,4699,4700,1,0,0,0,4700,513,1,0,0,0,4701,4699,1,0,0,0,4702, + 4703,5,138,0,0,4703,4704,5,360,0,0,4704,4705,3,558,279,0,4705,4706, + 5,133,0,0,4706,4708,5,450,0,0,4707,4709,3,516,258,0,4708,4707,1, + 0,0,0,4708,4709,1,0,0,0,4709,4710,1,0,0,0,4710,4713,3,1458,729,0, + 4711,4712,7,37,0,0,4712,4714,3,1458,729,0,4713,4711,1,0,0,0,4713, + 4714,1,0,0,0,4714,4725,1,0,0,0,4715,4716,5,138,0,0,4716,4717,5,360, + 0,0,4717,4718,3,558,279,0,4718,4719,5,309,0,0,4719,4720,5,450,0, + 0,4720,4721,3,1458,729,0,4721,4722,5,94,0,0,4722,4723,3,1458,729, + 0,4723,4725,1,0,0,0,4724,4702,1,0,0,0,4724,4715,1,0,0,0,4725,515, + 1,0,0,0,4726,4727,5,220,0,0,4727,4728,5,77,0,0,4728,4729,5,396,0, + 0,4729,517,1,0,0,0,4730,4731,5,46,0,0,4731,4732,5,278,0,0,4732,4733, + 5,156,0,0,4733,4735,3,558,279,0,4734,4736,3,524,262,0,4735,4734, + 1,0,0,0,4735,4736,1,0,0,0,4736,4737,1,0,0,0,4737,4738,5,62,0,0,4738, + 4739,5,360,0,0,4739,4740,3,1168,584,0,4740,4741,5,100,0,0,4741,4743, + 3,1436,718,0,4742,4744,3,526,263,0,4743,4742,1,0,0,0,4743,4744,1, + 0,0,0,4744,4745,1,0,0,0,4745,4746,5,36,0,0,4746,4747,3,520,260,0, + 4747,519,1,0,0,0,4748,4753,3,522,261,0,4749,4750,5,6,0,0,4750,4752, + 3,522,261,0,4751,4749,1,0,0,0,4752,4755,1,0,0,0,4753,4751,1,0,0, + 0,4753,4754,1,0,0,0,4754,521,1,0,0,0,4755,4753,1,0,0,0,4756,4757, + 5,278,0,0,4757,4758,3,1456,728,0,4758,4760,3,732,366,0,4759,4761, + 3,528,264,0,4760,4759,1,0,0,0,4760,4761,1,0,0,0,4761,4763,1,0,0, + 0,4762,4764,3,530,265,0,4763,4762,1,0,0,0,4763,4764,1,0,0,0,4764, + 4788,1,0,0,0,4765,4766,5,278,0,0,4766,4767,3,1456,728,0,4767,4769, + 3,736,368,0,4768,4770,3,528,264,0,4769,4768,1,0,0,0,4769,4770,1, + 0,0,0,4770,4772,1,0,0,0,4771,4773,3,530,265,0,4772,4771,1,0,0,0, + 4772,4773,1,0,0,0,4773,4788,1,0,0,0,4774,4775,5,211,0,0,4775,4776, + 3,1456,728,0,4776,4777,3,674,337,0,4777,4788,1,0,0,0,4778,4779,5, + 211,0,0,4779,4780,3,1456,728,0,4780,4781,5,2,0,0,4781,4782,3,1342, + 671,0,4782,4783,5,3,0,0,4783,4784,3,674,337,0,4784,4788,1,0,0,0, + 4785,4786,5,345,0,0,4786,4788,3,1168,584,0,4787,4756,1,0,0,0,4787, + 4765,1,0,0,0,4787,4774,1,0,0,0,4787,4778,1,0,0,0,4787,4785,1,0,0, + 0,4788,523,1,0,0,0,4789,4790,5,53,0,0,4790,525,1,0,0,0,4791,4792, + 5,206,0,0,4792,4793,3,558,279,0,4793,527,1,0,0,0,4794,4795,5,62, + 0,0,4795,4801,5,325,0,0,4796,4797,5,62,0,0,4797,4798,5,83,0,0,4798, + 4799,5,147,0,0,4799,4801,3,558,279,0,4800,4794,1,0,0,0,4800,4796, + 1,0,0,0,4801,529,1,0,0,0,4802,4803,5,302,0,0,4803,531,1,0,0,0,4804, + 4805,5,46,0,0,4805,4806,5,278,0,0,4806,4807,5,206,0,0,4807,4808, + 3,558,279,0,4808,4809,5,100,0,0,4809,4810,3,1436,718,0,4810,533, + 1,0,0,0,4811,4812,5,138,0,0,4812,4813,5,278,0,0,4813,4814,5,206, + 0,0,4814,4815,3,558,279,0,4815,4816,5,100,0,0,4816,4817,3,1436,718, + 0,4817,4818,5,133,0,0,4818,4819,3,520,260,0,4819,4830,1,0,0,0,4820, + 4821,5,138,0,0,4821,4822,5,278,0,0,4822,4823,5,206,0,0,4823,4824, + 3,558,279,0,4824,4825,5,100,0,0,4825,4826,3,1436,718,0,4826,4827, + 5,191,0,0,4827,4828,3,536,268,0,4828,4830,1,0,0,0,4829,4811,1,0, + 0,0,4829,4820,1,0,0,0,4830,535,1,0,0,0,4831,4836,3,538,269,0,4832, + 4833,5,6,0,0,4833,4835,3,538,269,0,4834,4832,1,0,0,0,4835,4838,1, + 0,0,0,4836,4834,1,0,0,0,4836,4837,1,0,0,0,4837,537,1,0,0,0,4838, + 4836,1,0,0,0,4839,4840,5,278,0,0,4840,4841,3,1456,728,0,4841,4842, + 5,2,0,0,4842,4843,3,1342,671,0,4843,4844,5,3,0,0,4844,4852,1,0,0, + 0,4845,4846,5,211,0,0,4846,4847,3,1456,728,0,4847,4848,5,2,0,0,4848, + 4849,3,1342,671,0,4849,4850,5,3,0,0,4850,4852,1,0,0,0,4851,4839, + 1,0,0,0,4851,4845,1,0,0,0,4852,539,1,0,0,0,4853,4854,5,301,0,0,4854, + 4855,5,281,0,0,4855,4856,5,147,0,0,4856,4857,3,1472,736,0,4857,4858, + 5,94,0,0,4858,4859,3,1470,735,0,4859,541,1,0,0,0,4860,4861,5,191, + 0,0,4861,4863,5,92,0,0,4862,4864,3,748,374,0,4863,4862,1,0,0,0,4863, + 4864,1,0,0,0,4864,4865,1,0,0,0,4865,4867,3,1392,696,0,4866,4868, + 3,124,62,0,4867,4866,1,0,0,0,4867,4868,1,0,0,0,4868,5240,1,0,0,0, + 4869,4870,5,191,0,0,4870,4872,5,328,0,0,4871,4873,3,748,374,0,4872, + 4871,1,0,0,0,4872,4873,1,0,0,0,4873,4874,1,0,0,0,4874,4876,3,1416, + 708,0,4875,4877,3,124,62,0,4876,4875,1,0,0,0,4876,4877,1,0,0,0,4877, + 5240,1,0,0,0,4878,4879,5,191,0,0,4879,4881,5,376,0,0,4880,4882,3, + 748,374,0,4881,4880,1,0,0,0,4881,4882,1,0,0,0,4882,4883,1,0,0,0, + 4883,4885,3,544,272,0,4884,4886,3,124,62,0,4885,4884,1,0,0,0,4885, + 4886,1,0,0,0,4886,5240,1,0,0,0,4887,4888,5,191,0,0,4888,4889,5,259, + 0,0,4889,4891,5,376,0,0,4890,4892,3,748,374,0,4891,4890,1,0,0,0, + 4891,4892,1,0,0,0,4892,4893,1,0,0,0,4893,4895,3,544,272,0,4894,4896, + 3,124,62,0,4895,4894,1,0,0,0,4895,4896,1,0,0,0,4896,5240,1,0,0,0, + 4897,4898,5,191,0,0,4898,4900,5,226,0,0,4899,4901,3,748,374,0,4900, + 4899,1,0,0,0,4900,4901,1,0,0,0,4901,4902,1,0,0,0,4902,4904,3,1416, + 708,0,4903,4905,3,124,62,0,4904,4903,1,0,0,0,4904,4905,1,0,0,0,4905, + 5240,1,0,0,0,4906,4907,5,191,0,0,4907,4908,5,63,0,0,4908,4910,5, + 92,0,0,4909,4911,3,748,374,0,4910,4909,1,0,0,0,4910,4911,1,0,0,0, + 4911,4912,1,0,0,0,4912,4914,3,1392,696,0,4913,4915,3,124,62,0,4914, + 4913,1,0,0,0,4914,4915,1,0,0,0,4915,5240,1,0,0,0,4916,4917,5,191, + 0,0,4917,4919,5,108,0,0,4918,4920,3,748,374,0,4919,4918,1,0,0,0, + 4919,4920,1,0,0,0,4920,4921,1,0,0,0,4921,4923,3,1416,708,0,4922, + 4924,3,124,62,0,4923,4922,1,0,0,0,4923,4924,1,0,0,0,4924,5240,1, + 0,0,0,4925,4926,5,191,0,0,4926,4928,5,168,0,0,4927,4929,3,748,374, + 0,4928,4927,1,0,0,0,4928,4929,1,0,0,0,4929,4930,1,0,0,0,4930,4932, + 3,1416,708,0,4931,4933,3,124,62,0,4932,4931,1,0,0,0,4932,4933,1, + 0,0,0,4933,5240,1,0,0,0,4934,4935,5,191,0,0,4935,4937,5,342,0,0, + 4936,4938,3,748,374,0,4937,4936,1,0,0,0,4937,4938,1,0,0,0,4938,4939, + 1,0,0,0,4939,4941,3,1416,708,0,4940,4942,3,124,62,0,4941,4940,1, + 0,0,0,4941,4942,1,0,0,0,4942,5240,1,0,0,0,4943,4944,5,191,0,0,4944, + 4945,5,355,0,0,4945,4946,5,325,0,0,4946,4948,5,283,0,0,4947,4949, + 3,748,374,0,4948,4947,1,0,0,0,4948,4949,1,0,0,0,4949,4950,1,0,0, + 0,4950,4952,3,1416,708,0,4951,4953,3,124,62,0,4952,4951,1,0,0,0, + 4952,4953,1,0,0,0,4953,5240,1,0,0,0,4954,4955,5,191,0,0,4955,4956, + 5,355,0,0,4956,4957,5,325,0,0,4957,4959,5,185,0,0,4958,4960,3,748, + 374,0,4959,4958,1,0,0,0,4959,4960,1,0,0,0,4960,4961,1,0,0,0,4961, + 4963,3,1416,708,0,4962,4964,3,124,62,0,4963,4962,1,0,0,0,4963,4964, + 1,0,0,0,4964,5240,1,0,0,0,4965,4966,5,191,0,0,4966,4967,5,355,0, + 0,4967,4968,5,325,0,0,4968,4970,5,353,0,0,4969,4971,3,748,374,0, + 4970,4969,1,0,0,0,4970,4971,1,0,0,0,4971,4972,1,0,0,0,4972,4974, + 3,1416,708,0,4973,4975,3,124,62,0,4974,4973,1,0,0,0,4974,4975,1, + 0,0,0,4975,5240,1,0,0,0,4976,4977,5,191,0,0,4977,4978,5,355,0,0, + 4978,4979,5,325,0,0,4979,4981,5,163,0,0,4980,4982,3,748,374,0,4981, + 4980,1,0,0,0,4981,4982,1,0,0,0,4982,4983,1,0,0,0,4983,4985,3,1416, + 708,0,4984,4986,3,124,62,0,4985,4984,1,0,0,0,4985,4986,1,0,0,0,4986, + 5240,1,0,0,0,4987,4988,5,191,0,0,4988,4989,5,131,0,0,4989,4991,5, + 446,0,0,4990,4992,3,748,374,0,4991,4990,1,0,0,0,4991,4992,1,0,0, + 0,4992,4993,1,0,0,0,4993,4995,3,1416,708,0,4994,4996,3,124,62,0, + 4995,4994,1,0,0,0,4995,4996,1,0,0,0,4996,5240,1,0,0,0,4997,4998, + 5,191,0,0,4998,4999,5,198,0,0,4999,5001,5,357,0,0,5000,5002,3,748, + 374,0,5001,5000,1,0,0,0,5001,5002,1,0,0,0,5002,5003,1,0,0,0,5003, + 5005,3,1416,708,0,5004,5006,3,124,62,0,5005,5004,1,0,0,0,5005,5006, + 1,0,0,0,5006,5240,1,0,0,0,5007,5008,5,191,0,0,5008,5010,5,204,0, + 0,5009,5011,3,748,374,0,5010,5009,1,0,0,0,5010,5011,1,0,0,0,5011, + 5012,1,0,0,0,5012,5014,3,1416,708,0,5013,5015,3,124,62,0,5014,5013, + 1,0,0,0,5014,5015,1,0,0,0,5015,5240,1,0,0,0,5016,5017,5,191,0,0, + 5017,5018,5,63,0,0,5018,5019,5,174,0,0,5019,5021,5,381,0,0,5020, + 5022,3,748,374,0,5021,5020,1,0,0,0,5021,5022,1,0,0,0,5022,5023,1, + 0,0,0,5023,5025,3,1416,708,0,5024,5026,3,124,62,0,5025,5024,1,0, + 0,0,5025,5026,1,0,0,0,5026,5240,1,0,0,0,5027,5029,5,191,0,0,5028, + 5030,3,338,169,0,5029,5028,1,0,0,0,5029,5030,1,0,0,0,5030,5031,1, + 0,0,0,5031,5033,5,247,0,0,5032,5034,3,748,374,0,5033,5032,1,0,0, + 0,5033,5034,1,0,0,0,5034,5035,1,0,0,0,5035,5037,3,1416,708,0,5036, + 5038,3,124,62,0,5037,5036,1,0,0,0,5037,5038,1,0,0,0,5038,5240,1, + 0,0,0,5039,5040,5,191,0,0,5040,5042,5,452,0,0,5041,5043,3,748,374, + 0,5042,5041,1,0,0,0,5042,5043,1,0,0,0,5043,5044,1,0,0,0,5044,5046, + 3,1416,708,0,5045,5047,3,124,62,0,5046,5045,1,0,0,0,5046,5047,1, + 0,0,0,5047,5240,1,0,0,0,5048,5049,5,191,0,0,5049,5051,5,331,0,0, + 5050,5052,3,748,374,0,5051,5050,1,0,0,0,5051,5052,1,0,0,0,5052,5053, + 1,0,0,0,5053,5055,3,1416,708,0,5054,5056,3,124,62,0,5055,5054,1, + 0,0,0,5055,5056,1,0,0,0,5056,5240,1,0,0,0,5057,5058,5,191,0,0,5058, + 5060,5,323,0,0,5059,5061,3,748,374,0,5060,5059,1,0,0,0,5060,5061, + 1,0,0,0,5061,5062,1,0,0,0,5062,5064,3,1394,697,0,5063,5065,3,124, + 62,0,5064,5063,1,0,0,0,5064,5065,1,0,0,0,5065,5240,1,0,0,0,5066, + 5067,5,191,0,0,5067,5069,5,445,0,0,5068,5070,3,748,374,0,5069,5068, + 1,0,0,0,5069,5070,1,0,0,0,5070,5071,1,0,0,0,5071,5072,3,1436,718, + 0,5072,5073,5,80,0,0,5073,5075,3,558,279,0,5074,5076,3,124,62,0, + 5075,5074,1,0,0,0,5075,5076,1,0,0,0,5076,5240,1,0,0,0,5077,5078, + 5,191,0,0,5078,5080,5,321,0,0,5079,5081,3,748,374,0,5080,5079,1, + 0,0,0,5080,5081,1,0,0,0,5081,5082,1,0,0,0,5082,5083,3,1436,718,0, + 5083,5084,5,80,0,0,5084,5086,3,558,279,0,5085,5087,3,124,62,0,5086, + 5085,1,0,0,0,5086,5087,1,0,0,0,5087,5240,1,0,0,0,5088,5089,5,191, + 0,0,5089,5091,5,357,0,0,5090,5092,3,748,374,0,5091,5090,1,0,0,0, + 5091,5092,1,0,0,0,5092,5093,1,0,0,0,5093,5094,3,1436,718,0,5094, + 5095,5,80,0,0,5095,5097,3,558,279,0,5096,5098,3,124,62,0,5097,5096, + 1,0,0,0,5097,5098,1,0,0,0,5098,5240,1,0,0,0,5099,5100,5,191,0,0, + 5100,5102,5,360,0,0,5101,5103,3,748,374,0,5102,5101,1,0,0,0,5102, + 5103,1,0,0,0,5103,5104,1,0,0,0,5104,5106,3,562,281,0,5105,5107,3, + 124,62,0,5106,5105,1,0,0,0,5106,5107,1,0,0,0,5107,5240,1,0,0,0,5108, + 5109,5,191,0,0,5109,5111,5,189,0,0,5110,5112,3,748,374,0,5111,5110, + 1,0,0,0,5111,5112,1,0,0,0,5112,5113,1,0,0,0,5113,5115,3,562,281, + 0,5114,5116,3,124,62,0,5115,5114,1,0,0,0,5115,5116,1,0,0,0,5116, + 5240,1,0,0,0,5117,5118,5,191,0,0,5118,5119,5,226,0,0,5119,5121,5, + 109,0,0,5120,5122,3,748,374,0,5121,5120,1,0,0,0,5121,5122,1,0,0, + 0,5122,5123,1,0,0,0,5123,5125,3,552,276,0,5124,5126,3,124,62,0,5125, + 5124,1,0,0,0,5125,5126,1,0,0,0,5126,5240,1,0,0,0,5127,5128,5,191, + 0,0,5128,5130,5,41,0,0,5129,5131,3,748,374,0,5130,5129,1,0,0,0,5130, + 5131,1,0,0,0,5131,5132,1,0,0,0,5132,5133,5,2,0,0,5133,5134,3,1168, + 584,0,5134,5135,5,36,0,0,5135,5136,3,1168,584,0,5136,5138,5,3,0, + 0,5137,5139,3,124,62,0,5138,5137,1,0,0,0,5138,5139,1,0,0,0,5139, + 5240,1,0,0,0,5140,5141,5,191,0,0,5141,5142,5,278,0,0,5142,5144,5, + 156,0,0,5143,5145,3,748,374,0,5144,5143,1,0,0,0,5144,5145,1,0,0, + 0,5145,5146,1,0,0,0,5146,5147,3,558,279,0,5147,5148,5,100,0,0,5148, + 5150,3,1436,718,0,5149,5151,3,124,62,0,5150,5149,1,0,0,0,5150,5151, + 1,0,0,0,5151,5240,1,0,0,0,5152,5153,5,191,0,0,5153,5154,5,278,0, + 0,5154,5156,5,206,0,0,5155,5157,3,748,374,0,5156,5155,1,0,0,0,5156, + 5157,1,0,0,0,5157,5158,1,0,0,0,5158,5159,3,558,279,0,5159,5160,5, + 100,0,0,5160,5162,3,1436,718,0,5161,5163,3,124,62,0,5162,5161,1, + 0,0,0,5162,5163,1,0,0,0,5163,5240,1,0,0,0,5164,5165,5,191,0,0,5165, + 5166,5,281,0,0,5166,5167,5,147,0,0,5167,5169,3,1472,736,0,5168,5170, + 3,124,62,0,5169,5168,1,0,0,0,5169,5170,1,0,0,0,5170,5240,1,0,0,0, + 5171,5172,5,191,0,0,5172,5174,5,376,0,0,5173,5175,3,748,374,0,5174, + 5173,1,0,0,0,5174,5175,1,0,0,0,5175,5176,1,0,0,0,5176,5178,3,544, + 272,0,5177,5179,3,124,62,0,5178,5177,1,0,0,0,5178,5179,1,0,0,0,5179, + 5240,1,0,0,0,5180,5181,5,191,0,0,5181,5183,5,451,0,0,5182,5184,3, + 748,374,0,5183,5182,1,0,0,0,5183,5184,1,0,0,0,5184,5185,1,0,0,0, + 5185,5187,3,1436,718,0,5186,5188,3,124,62,0,5187,5186,1,0,0,0,5187, + 5188,1,0,0,0,5188,5240,1,0,0,0,5189,5190,5,191,0,0,5190,5192,5,351, + 0,0,5191,5193,3,748,374,0,5192,5191,1,0,0,0,5192,5193,1,0,0,0,5193, + 5194,1,0,0,0,5194,5240,3,1402,701,0,5195,5196,5,191,0,0,5196,5198, + 5,443,0,0,5197,5199,3,748,374,0,5198,5197,1,0,0,0,5198,5199,1,0, + 0,0,5199,5200,1,0,0,0,5200,5201,5,62,0,0,5201,5202,3,1168,584,0, + 5202,5203,5,247,0,0,5203,5205,3,1436,718,0,5204,5206,3,124,62,0, + 5205,5204,1,0,0,0,5205,5206,1,0,0,0,5206,5240,1,0,0,0,5207,5208, + 5,191,0,0,5208,5210,7,38,0,0,5209,5211,3,748,374,0,5210,5209,1,0, + 0,0,5210,5211,1,0,0,0,5211,5212,1,0,0,0,5212,5240,3,1472,736,0,5213, + 5214,5,191,0,0,5214,5215,5,99,0,0,5215,5217,5,257,0,0,5216,5218, + 3,748,374,0,5217,5216,1,0,0,0,5217,5218,1,0,0,0,5218,5219,1,0,0, + 0,5219,5220,5,62,0,0,5220,5221,3,404,202,0,5221,5222,5,331,0,0,5222, + 5223,3,1436,718,0,5223,5240,1,0,0,0,5224,5225,5,191,0,0,5225,5227, + 5,175,0,0,5226,5228,3,748,374,0,5227,5226,1,0,0,0,5227,5228,1,0, + 0,0,5228,5229,1,0,0,0,5229,5237,3,1420,710,0,5230,5232,3,14,7,0, + 5231,5230,1,0,0,0,5231,5232,1,0,0,0,5232,5233,1,0,0,0,5233,5234, + 5,2,0,0,5234,5235,3,860,430,0,5235,5236,5,3,0,0,5236,5238,1,0,0, + 0,5237,5231,1,0,0,0,5237,5238,1,0,0,0,5238,5240,1,0,0,0,5239,4860, + 1,0,0,0,5239,4869,1,0,0,0,5239,4878,1,0,0,0,5239,4887,1,0,0,0,5239, + 4897,1,0,0,0,5239,4906,1,0,0,0,5239,4916,1,0,0,0,5239,4925,1,0,0, + 0,5239,4934,1,0,0,0,5239,4943,1,0,0,0,5239,4954,1,0,0,0,5239,4965, + 1,0,0,0,5239,4976,1,0,0,0,5239,4987,1,0,0,0,5239,4997,1,0,0,0,5239, + 5007,1,0,0,0,5239,5016,1,0,0,0,5239,5027,1,0,0,0,5239,5039,1,0,0, + 0,5239,5048,1,0,0,0,5239,5057,1,0,0,0,5239,5066,1,0,0,0,5239,5077, + 1,0,0,0,5239,5088,1,0,0,0,5239,5099,1,0,0,0,5239,5108,1,0,0,0,5239, + 5117,1,0,0,0,5239,5127,1,0,0,0,5239,5140,1,0,0,0,5239,5152,1,0,0, + 0,5239,5164,1,0,0,0,5239,5171,1,0,0,0,5239,5180,1,0,0,0,5239,5189, + 1,0,0,0,5239,5195,1,0,0,0,5239,5207,1,0,0,0,5239,5213,1,0,0,0,5239, + 5224,1,0,0,0,5240,543,1,0,0,0,5241,5246,3,1410,705,0,5242,5243,5, + 6,0,0,5243,5245,3,1410,705,0,5244,5242,1,0,0,0,5245,5248,1,0,0,0, + 5246,5244,1,0,0,0,5246,5247,1,0,0,0,5247,545,1,0,0,0,5248,5246,1, + 0,0,0,5249,5251,5,63,0,0,5250,5249,1,0,0,0,5250,5251,1,0,0,0,5251, + 5252,1,0,0,0,5252,5253,5,92,0,0,5253,5274,3,1406,703,0,5254,5256, + 5,259,0,0,5255,5254,1,0,0,0,5255,5256,1,0,0,0,5256,5257,1,0,0,0, + 5257,5258,5,376,0,0,5258,5274,3,1410,705,0,5259,5260,5,226,0,0,5260, + 5274,3,558,279,0,5261,5262,5,108,0,0,5262,5274,3,558,279,0,5263, + 5264,5,168,0,0,5264,5274,3,558,279,0,5265,5266,5,342,0,0,5266,5274, + 3,558,279,0,5267,5268,5,328,0,0,5268,5274,3,558,279,0,5269,5270, + 5,355,0,0,5270,5271,5,325,0,0,5271,5272,7,39,0,0,5272,5274,3,558, + 279,0,5273,5250,1,0,0,0,5273,5255,1,0,0,0,5273,5259,1,0,0,0,5273, + 5261,1,0,0,0,5273,5263,1,0,0,0,5273,5265,1,0,0,0,5273,5267,1,0,0, + 0,5273,5269,1,0,0,0,5274,547,1,0,0,0,5275,5276,5,131,0,0,5276,5277, + 5,446,0,0,5277,5307,3,1436,718,0,5278,5279,5,198,0,0,5279,5280,5, + 357,0,0,5280,5307,3,1436,718,0,5281,5282,5,204,0,0,5282,5307,3,1436, + 718,0,5283,5284,5,63,0,0,5284,5285,5,174,0,0,5285,5286,5,381,0,0, + 5286,5307,3,1436,718,0,5287,5289,3,338,169,0,5288,5287,1,0,0,0,5288, + 5289,1,0,0,0,5289,5290,1,0,0,0,5290,5291,5,247,0,0,5291,5307,3,1436, + 718,0,5292,5293,5,452,0,0,5293,5307,3,1436,718,0,5294,5295,5,323, + 0,0,5295,5307,3,1422,711,0,5296,5297,5,331,0,0,5297,5307,3,1436, + 718,0,5298,5299,5,175,0,0,5299,5307,3,1420,710,0,5300,5301,5,318, + 0,0,5301,5307,3,1436,718,0,5302,5303,5,451,0,0,5303,5307,3,1436, + 718,0,5304,5305,5,351,0,0,5305,5307,3,1402,701,0,5306,5275,1,0,0, + 0,5306,5278,1,0,0,0,5306,5281,1,0,0,0,5306,5283,1,0,0,0,5306,5288, + 1,0,0,0,5306,5292,1,0,0,0,5306,5294,1,0,0,0,5306,5296,1,0,0,0,5306, + 5298,1,0,0,0,5306,5300,1,0,0,0,5306,5302,1,0,0,0,5306,5304,1,0,0, + 0,5307,549,1,0,0,0,5308,5309,7,40,0,0,5309,551,1,0,0,0,5310,5315, + 3,558,279,0,5311,5312,5,6,0,0,5312,5314,3,558,279,0,5313,5311,1, + 0,0,0,5314,5317,1,0,0,0,5315,5313,1,0,0,0,5315,5316,1,0,0,0,5316, + 553,1,0,0,0,5317,5315,1,0,0,0,5318,5319,3,556,278,0,5319,5320,5, + 11,0,0,5320,5321,3,1432,716,0,5321,555,1,0,0,0,5322,5324,3,1474, + 737,0,5323,5325,3,560,280,0,5324,5323,1,0,0,0,5324,5325,1,0,0,0, + 5325,557,1,0,0,0,5326,5328,3,1474,737,0,5327,5329,3,560,280,0,5328, + 5327,1,0,0,0,5328,5329,1,0,0,0,5329,559,1,0,0,0,5330,5331,5,11,0, + 0,5331,5333,3,1438,719,0,5332,5330,1,0,0,0,5333,5334,1,0,0,0,5334, + 5332,1,0,0,0,5334,5335,1,0,0,0,5335,561,1,0,0,0,5336,5341,3,1168, + 584,0,5337,5338,5,6,0,0,5338,5340,3,1168,584,0,5339,5337,1,0,0,0, + 5340,5343,1,0,0,0,5341,5339,1,0,0,0,5341,5342,1,0,0,0,5342,563,1, + 0,0,0,5343,5341,1,0,0,0,5344,5346,5,358,0,0,5345,5347,5,92,0,0,5346, + 5345,1,0,0,0,5346,5347,1,0,0,0,5347,5348,1,0,0,0,5348,5353,3,566, + 283,0,5349,5350,5,6,0,0,5350,5352,3,566,283,0,5351,5349,1,0,0,0, + 5352,5355,1,0,0,0,5353,5351,1,0,0,0,5353,5354,1,0,0,0,5354,5358, + 1,0,0,0,5355,5353,1,0,0,0,5356,5357,7,41,0,0,5357,5359,5,219,0,0, + 5358,5356,1,0,0,0,5358,5359,1,0,0,0,5359,5361,1,0,0,0,5360,5362, + 3,124,62,0,5361,5360,1,0,0,0,5361,5362,1,0,0,0,5362,565,1,0,0,0, + 5363,5365,5,81,0,0,5364,5363,1,0,0,0,5364,5365,1,0,0,0,5365,5366, + 1,0,0,0,5366,5368,3,1406,703,0,5367,5369,5,9,0,0,5368,5367,1,0,0, + 0,5368,5369,1,0,0,0,5369,567,1,0,0,0,5370,5371,5,159,0,0,5371,5372, + 5,80,0,0,5372,5373,3,546,273,0,5373,5374,5,116,0,0,5374,5375,3,570, + 285,0,5375,5536,1,0,0,0,5376,5377,5,159,0,0,5377,5378,5,80,0,0,5378, + 5379,5,44,0,0,5379,5380,3,554,277,0,5380,5381,5,116,0,0,5381,5382, + 3,570,285,0,5382,5536,1,0,0,0,5383,5384,5,159,0,0,5384,5385,5,80, + 0,0,5385,5386,3,548,274,0,5386,5387,5,116,0,0,5387,5388,3,570,285, + 0,5388,5536,1,0,0,0,5389,5390,5,159,0,0,5390,5391,5,80,0,0,5391, + 5392,5,360,0,0,5392,5393,3,1168,584,0,5393,5394,5,116,0,0,5394,5395, + 3,570,285,0,5395,5536,1,0,0,0,5396,5397,5,159,0,0,5397,5398,5,80, + 0,0,5398,5399,5,189,0,0,5399,5400,3,1168,584,0,5400,5401,5,116,0, + 0,5401,5402,3,570,285,0,5402,5536,1,0,0,0,5403,5404,5,159,0,0,5404, + 5405,5,80,0,0,5405,5406,5,136,0,0,5406,5407,3,698,349,0,5407,5408, + 5,116,0,0,5408,5409,3,570,285,0,5409,5536,1,0,0,0,5410,5411,5,159, + 0,0,5411,5412,5,80,0,0,5412,5413,5,211,0,0,5413,5414,3,674,337,0, + 5414,5415,5,116,0,0,5415,5416,3,570,285,0,5416,5536,1,0,0,0,5417, + 5418,5,159,0,0,5418,5419,5,80,0,0,5419,5420,5,278,0,0,5420,5421, + 3,736,368,0,5421,5422,5,116,0,0,5422,5423,3,570,285,0,5423,5536, + 1,0,0,0,5424,5425,5,159,0,0,5425,5426,5,80,0,0,5426,5427,5,45,0, + 0,5427,5428,3,1436,718,0,5428,5429,5,80,0,0,5429,5430,3,1406,703, + 0,5430,5431,5,116,0,0,5431,5432,3,570,285,0,5432,5536,1,0,0,0,5433, + 5434,5,159,0,0,5434,5435,5,80,0,0,5435,5436,5,45,0,0,5436,5437,3, + 1436,718,0,5437,5439,5,80,0,0,5438,5440,5,189,0,0,5439,5438,1,0, + 0,0,5439,5440,1,0,0,0,5440,5441,1,0,0,0,5441,5442,3,558,279,0,5442, + 5443,5,116,0,0,5443,5444,3,570,285,0,5444,5536,1,0,0,0,5445,5446, + 5,159,0,0,5446,5447,5,80,0,0,5447,5448,5,445,0,0,5448,5449,3,1436, + 718,0,5449,5450,5,80,0,0,5450,5451,3,558,279,0,5451,5452,5,116,0, + 0,5452,5453,3,570,285,0,5453,5536,1,0,0,0,5454,5455,5,159,0,0,5455, + 5456,5,80,0,0,5456,5457,5,321,0,0,5457,5458,3,1436,718,0,5458,5459, + 5,80,0,0,5459,5460,3,558,279,0,5460,5461,5,116,0,0,5461,5462,3,570, + 285,0,5462,5536,1,0,0,0,5463,5464,5,159,0,0,5464,5465,5,80,0,0,5465, + 5466,5,357,0,0,5466,5467,3,1436,718,0,5467,5468,5,80,0,0,5468,5469, + 3,558,279,0,5469,5470,5,116,0,0,5470,5471,3,570,285,0,5471,5536, + 1,0,0,0,5472,5473,5,159,0,0,5473,5474,5,80,0,0,5474,5475,5,296,0, + 0,5475,5476,3,670,335,0,5476,5477,5,116,0,0,5477,5478,3,570,285, + 0,5478,5536,1,0,0,0,5479,5480,5,159,0,0,5480,5481,5,80,0,0,5481, + 5482,5,442,0,0,5482,5483,3,666,333,0,5483,5484,5,116,0,0,5484,5485, + 3,570,285,0,5485,5536,1,0,0,0,5486,5487,5,159,0,0,5487,5488,5,80, + 0,0,5488,5489,5,443,0,0,5489,5490,5,62,0,0,5490,5491,3,1168,584, + 0,5491,5492,5,247,0,0,5492,5493,3,1436,718,0,5493,5494,5,116,0,0, + 5494,5495,3,570,285,0,5495,5536,1,0,0,0,5496,5497,5,159,0,0,5497, + 5498,5,80,0,0,5498,5499,5,278,0,0,5499,5500,5,156,0,0,5500,5501, + 3,558,279,0,5501,5502,5,100,0,0,5502,5503,3,1436,718,0,5503,5504, + 5,116,0,0,5504,5505,3,570,285,0,5505,5536,1,0,0,0,5506,5507,5,159, + 0,0,5507,5508,5,80,0,0,5508,5509,5,278,0,0,5509,5510,5,206,0,0,5510, + 5511,3,558,279,0,5511,5512,5,100,0,0,5512,5513,3,1436,718,0,5513, + 5514,5,116,0,0,5514,5515,3,570,285,0,5515,5536,1,0,0,0,5516,5517, + 5,159,0,0,5517,5518,5,80,0,0,5518,5519,5,248,0,0,5519,5520,5,274, + 0,0,5520,5521,3,322,161,0,5521,5522,5,116,0,0,5522,5523,3,570,285, + 0,5523,5536,1,0,0,0,5524,5525,5,159,0,0,5525,5526,5,80,0,0,5526, + 5527,5,41,0,0,5527,5528,5,2,0,0,5528,5529,3,1168,584,0,5529,5530, + 5,36,0,0,5530,5531,3,1168,584,0,5531,5532,5,3,0,0,5532,5533,5,116, + 0,0,5533,5534,3,570,285,0,5534,5536,1,0,0,0,5535,5370,1,0,0,0,5535, + 5376,1,0,0,0,5535,5383,1,0,0,0,5535,5389,1,0,0,0,5535,5396,1,0,0, + 0,5535,5403,1,0,0,0,5535,5410,1,0,0,0,5535,5417,1,0,0,0,5535,5424, + 1,0,0,0,5535,5433,1,0,0,0,5535,5445,1,0,0,0,5535,5454,1,0,0,0,5535, + 5463,1,0,0,0,5535,5472,1,0,0,0,5535,5479,1,0,0,0,5535,5486,1,0,0, + 0,5535,5496,1,0,0,0,5535,5506,1,0,0,0,5535,5516,1,0,0,0,5535,5524, + 1,0,0,0,5536,569,1,0,0,0,5537,5540,3,1458,729,0,5538,5540,5,78,0, + 0,5539,5537,1,0,0,0,5539,5538,1,0,0,0,5540,571,1,0,0,0,5541,5542, + 5,327,0,0,5542,5544,5,246,0,0,5543,5545,3,574,287,0,5544,5543,1, + 0,0,0,5544,5545,1,0,0,0,5545,5546,1,0,0,0,5546,5547,5,80,0,0,5547, + 5548,5,44,0,0,5548,5549,3,1432,716,0,5549,5550,5,116,0,0,5550,5551, + 3,576,288,0,5551,5651,1,0,0,0,5552,5553,5,327,0,0,5553,5555,5,246, + 0,0,5554,5556,3,574,287,0,5555,5554,1,0,0,0,5555,5556,1,0,0,0,5556, + 5557,1,0,0,0,5557,5558,5,80,0,0,5558,5559,5,360,0,0,5559,5560,3, + 1168,584,0,5560,5561,5,116,0,0,5561,5562,3,576,288,0,5562,5651,1, + 0,0,0,5563,5564,5,327,0,0,5564,5566,5,246,0,0,5565,5567,3,574,287, + 0,5566,5565,1,0,0,0,5566,5567,1,0,0,0,5567,5568,1,0,0,0,5568,5569, + 5,80,0,0,5569,5570,5,189,0,0,5570,5571,3,1168,584,0,5571,5572,5, + 116,0,0,5572,5573,3,576,288,0,5573,5651,1,0,0,0,5574,5575,5,327, + 0,0,5575,5577,5,246,0,0,5576,5578,3,574,287,0,5577,5576,1,0,0,0, + 5577,5578,1,0,0,0,5578,5579,1,0,0,0,5579,5580,5,80,0,0,5580,5581, + 5,136,0,0,5581,5582,3,698,349,0,5582,5583,5,116,0,0,5583,5584,3, + 576,288,0,5584,5651,1,0,0,0,5585,5586,5,327,0,0,5586,5588,5,246, + 0,0,5587,5589,3,574,287,0,5588,5587,1,0,0,0,5588,5589,1,0,0,0,5589, + 5590,1,0,0,0,5590,5591,5,80,0,0,5591,5592,5,211,0,0,5592,5593,3, + 674,337,0,5593,5594,5,116,0,0,5594,5595,3,576,288,0,5595,5651,1, + 0,0,0,5596,5597,5,327,0,0,5597,5599,5,246,0,0,5598,5600,3,574,287, + 0,5599,5598,1,0,0,0,5599,5600,1,0,0,0,5600,5601,1,0,0,0,5601,5602, + 5,80,0,0,5602,5603,5,248,0,0,5603,5604,5,274,0,0,5604,5605,3,322, + 161,0,5605,5606,5,116,0,0,5606,5607,3,576,288,0,5607,5651,1,0,0, + 0,5608,5609,5,327,0,0,5609,5611,5,246,0,0,5610,5612,3,574,287,0, + 5611,5610,1,0,0,0,5611,5612,1,0,0,0,5612,5613,1,0,0,0,5613,5614, + 5,80,0,0,5614,5615,5,296,0,0,5615,5616,3,670,335,0,5616,5617,5,116, + 0,0,5617,5618,3,576,288,0,5618,5651,1,0,0,0,5619,5620,5,327,0,0, + 5620,5622,5,246,0,0,5621,5623,3,574,287,0,5622,5621,1,0,0,0,5622, + 5623,1,0,0,0,5623,5624,1,0,0,0,5624,5625,5,80,0,0,5625,5626,5,442, + 0,0,5626,5627,3,666,333,0,5627,5628,5,116,0,0,5628,5629,3,576,288, + 0,5629,5651,1,0,0,0,5630,5631,5,327,0,0,5631,5633,5,246,0,0,5632, + 5634,3,574,287,0,5633,5632,1,0,0,0,5633,5634,1,0,0,0,5634,5635,1, + 0,0,0,5635,5636,5,80,0,0,5636,5637,3,546,273,0,5637,5638,5,116,0, + 0,5638,5639,3,576,288,0,5639,5651,1,0,0,0,5640,5641,5,327,0,0,5641, + 5643,5,246,0,0,5642,5644,3,574,287,0,5643,5642,1,0,0,0,5643,5644, + 1,0,0,0,5644,5645,1,0,0,0,5645,5646,5,80,0,0,5646,5647,3,548,274, + 0,5647,5648,5,116,0,0,5648,5649,3,576,288,0,5649,5651,1,0,0,0,5650, + 5541,1,0,0,0,5650,5552,1,0,0,0,5650,5563,1,0,0,0,5650,5574,1,0,0, + 0,5650,5585,1,0,0,0,5650,5596,1,0,0,0,5650,5608,1,0,0,0,5650,5619, + 1,0,0,0,5650,5630,1,0,0,0,5650,5640,1,0,0,0,5651,573,1,0,0,0,5652, + 5653,5,62,0,0,5653,5654,3,80,40,0,5654,575,1,0,0,0,5655,5658,3,1458, + 729,0,5656,5658,5,78,0,0,5657,5655,1,0,0,0,5657,5656,1,0,0,0,5658, + 577,1,0,0,0,5659,5660,5,61,0,0,5660,5664,3,580,290,0,5661,5662,5, + 265,0,0,5662,5664,3,580,290,0,5663,5659,1,0,0,0,5663,5661,1,0,0, + 0,5664,579,1,0,0,0,5665,5751,3,994,497,0,5666,5667,3,582,291,0,5667, + 5668,3,994,497,0,5668,5751,1,0,0,0,5669,5671,5,268,0,0,5670,5672, + 3,584,292,0,5671,5670,1,0,0,0,5671,5672,1,0,0,0,5672,5673,1,0,0, + 0,5673,5751,3,994,497,0,5674,5676,5,293,0,0,5675,5677,3,584,292, + 0,5676,5675,1,0,0,0,5676,5677,1,0,0,0,5677,5678,1,0,0,0,5678,5751, + 3,994,497,0,5679,5681,5,207,0,0,5680,5682,3,584,292,0,5681,5680, + 1,0,0,0,5681,5682,1,0,0,0,5682,5683,1,0,0,0,5683,5751,3,994,497, + 0,5684,5686,5,249,0,0,5685,5687,3,584,292,0,5686,5685,1,0,0,0,5686, + 5687,1,0,0,0,5687,5688,1,0,0,0,5688,5751,3,994,497,0,5689,5690,5, + 130,0,0,5690,5692,3,1464,732,0,5691,5693,3,584,292,0,5692,5691,1, + 0,0,0,5692,5693,1,0,0,0,5693,5694,1,0,0,0,5694,5695,3,994,497,0, + 5695,5751,1,0,0,0,5696,5697,5,307,0,0,5697,5699,3,1464,732,0,5698, + 5700,3,584,292,0,5699,5698,1,0,0,0,5699,5700,1,0,0,0,5700,5701,1, + 0,0,0,5701,5702,3,994,497,0,5702,5751,1,0,0,0,5703,5705,3,1464,732, + 0,5704,5706,3,584,292,0,5705,5704,1,0,0,0,5705,5706,1,0,0,0,5706, + 5707,1,0,0,0,5707,5708,3,994,497,0,5708,5751,1,0,0,0,5709,5711,5, + 30,0,0,5710,5712,3,584,292,0,5711,5710,1,0,0,0,5711,5712,1,0,0,0, + 5712,5713,1,0,0,0,5713,5751,3,994,497,0,5714,5716,5,210,0,0,5715, + 5717,3,584,292,0,5716,5715,1,0,0,0,5716,5717,1,0,0,0,5717,5718,1, + 0,0,0,5718,5751,3,994,497,0,5719,5720,5,210,0,0,5720,5722,3,1464, + 732,0,5721,5723,3,584,292,0,5722,5721,1,0,0,0,5722,5723,1,0,0,0, + 5723,5724,1,0,0,0,5724,5725,3,994,497,0,5725,5751,1,0,0,0,5726,5727, + 5,210,0,0,5727,5729,5,30,0,0,5728,5730,3,584,292,0,5729,5728,1,0, + 0,0,5729,5730,1,0,0,0,5730,5731,1,0,0,0,5731,5751,3,994,497,0,5732, + 5734,5,144,0,0,5733,5735,3,584,292,0,5734,5733,1,0,0,0,5734,5735, + 1,0,0,0,5735,5736,1,0,0,0,5736,5751,3,994,497,0,5737,5738,5,144, + 0,0,5738,5740,3,1464,732,0,5739,5741,3,584,292,0,5740,5739,1,0,0, + 0,5740,5741,1,0,0,0,5741,5742,1,0,0,0,5742,5743,3,994,497,0,5743, + 5751,1,0,0,0,5744,5745,5,144,0,0,5745,5747,5,30,0,0,5746,5748,3, + 584,292,0,5747,5746,1,0,0,0,5747,5748,1,0,0,0,5748,5749,1,0,0,0, + 5749,5751,3,994,497,0,5750,5665,1,0,0,0,5750,5666,1,0,0,0,5750,5669, + 1,0,0,0,5750,5674,1,0,0,0,5750,5679,1,0,0,0,5750,5684,1,0,0,0,5750, + 5689,1,0,0,0,5750,5696,1,0,0,0,5750,5703,1,0,0,0,5750,5709,1,0,0, + 0,5750,5714,1,0,0,0,5750,5719,1,0,0,0,5750,5726,1,0,0,0,5750,5732, + 1,0,0,0,5750,5737,1,0,0,0,5750,5744,1,0,0,0,5751,581,1,0,0,0,5752, + 5753,7,42,0,0,5753,583,1,0,0,0,5754,5755,3,582,291,0,5755,585,1, + 0,0,0,5756,5757,5,65,0,0,5757,5758,3,590,295,0,5758,5759,5,80,0, + 0,5759,5760,3,600,300,0,5760,5761,5,94,0,0,5761,5763,3,602,301,0, + 5762,5764,3,606,303,0,5763,5762,1,0,0,0,5763,5764,1,0,0,0,5764,587, + 1,0,0,0,5765,5766,5,317,0,0,5766,5767,3,590,295,0,5767,5768,5,80, + 0,0,5768,5769,3,600,300,0,5769,5770,5,64,0,0,5770,5772,3,602,301, + 0,5771,5773,3,124,62,0,5772,5771,1,0,0,0,5772,5773,1,0,0,0,5773, + 5787,1,0,0,0,5774,5775,5,317,0,0,5775,5776,5,65,0,0,5776,5777,5, + 279,0,0,5777,5778,5,62,0,0,5778,5779,3,590,295,0,5779,5780,5,80, + 0,0,5780,5781,3,600,300,0,5781,5782,5,64,0,0,5782,5784,3,602,301, + 0,5783,5785,3,124,62,0,5784,5783,1,0,0,0,5784,5785,1,0,0,0,5785, + 5787,1,0,0,0,5786,5765,1,0,0,0,5786,5774,1,0,0,0,5787,589,1,0,0, + 0,5788,5805,3,596,298,0,5789,5805,5,30,0,0,5790,5791,5,30,0,0,5791, + 5805,5,294,0,0,5792,5793,5,30,0,0,5793,5794,5,2,0,0,5794,5795,3, + 244,122,0,5795,5796,5,3,0,0,5796,5805,1,0,0,0,5797,5798,5,30,0,0, + 5798,5799,5,294,0,0,5799,5800,5,2,0,0,5800,5801,3,244,122,0,5801, + 5802,5,3,0,0,5802,5805,1,0,0,0,5803,5805,3,592,296,0,5804,5788,1, + 0,0,0,5804,5789,1,0,0,0,5804,5790,1,0,0,0,5804,5792,1,0,0,0,5804, + 5797,1,0,0,0,5804,5803,1,0,0,0,5805,591,1,0,0,0,5806,5811,3,594, + 297,0,5807,5808,5,6,0,0,5808,5810,3,594,297,0,5809,5807,1,0,0,0, + 5810,5813,1,0,0,0,5811,5809,1,0,0,0,5811,5812,1,0,0,0,5812,593,1, + 0,0,0,5813,5811,1,0,0,0,5814,5815,7,43,0,0,5815,595,1,0,0,0,5816, + 5821,3,598,299,0,5817,5818,5,6,0,0,5818,5820,3,598,299,0,5819,5817, + 1,0,0,0,5820,5823,1,0,0,0,5821,5819,1,0,0,0,5821,5822,1,0,0,0,5822, + 597,1,0,0,0,5823,5821,1,0,0,0,5824,5826,5,88,0,0,5825,5827,3,240, + 120,0,5826,5825,1,0,0,0,5826,5827,1,0,0,0,5827,5841,1,0,0,0,5828, + 5830,5,86,0,0,5829,5831,3,240,120,0,5830,5829,1,0,0,0,5830,5831, + 1,0,0,0,5831,5841,1,0,0,0,5832,5834,5,46,0,0,5833,5835,3,240,120, + 0,5834,5833,1,0,0,0,5834,5835,1,0,0,0,5835,5841,1,0,0,0,5836,5838, + 3,1474,737,0,5837,5839,3,240,120,0,5838,5837,1,0,0,0,5838,5839,1, + 0,0,0,5839,5841,1,0,0,0,5840,5824,1,0,0,0,5840,5828,1,0,0,0,5840, + 5832,1,0,0,0,5840,5836,1,0,0,0,5841,599,1,0,0,0,5842,5901,3,1390, + 695,0,5843,5844,5,92,0,0,5844,5901,3,1392,696,0,5845,5846,5,328, + 0,0,5846,5901,3,1390,695,0,5847,5848,5,63,0,0,5848,5849,5,174,0, + 0,5849,5850,5,381,0,0,5850,5901,3,1416,708,0,5851,5852,5,63,0,0, + 5852,5853,5,331,0,0,5853,5901,3,1416,708,0,5854,5855,5,211,0,0,5855, + 5901,3,672,336,0,5856,5857,5,296,0,0,5857,5901,3,668,334,0,5858, + 5859,5,442,0,0,5859,5901,3,664,332,0,5860,5861,5,175,0,0,5861,5901, + 3,1396,698,0,5862,5863,5,189,0,0,5863,5901,3,552,276,0,5864,5865, + 5,247,0,0,5865,5901,3,1416,708,0,5866,5867,5,248,0,0,5867,5868,5, + 274,0,0,5868,5901,3,324,162,0,5869,5870,5,323,0,0,5870,5901,3,1394, + 697,0,5871,5872,5,351,0,0,5872,5901,3,1414,707,0,5873,5874,5,360, + 0,0,5874,5901,3,552,276,0,5875,5876,5,30,0,0,5876,5877,5,350,0,0, + 5877,5878,5,68,0,0,5878,5879,5,323,0,0,5879,5901,3,1394,697,0,5880, + 5881,5,30,0,0,5881,5882,5,329,0,0,5882,5883,5,68,0,0,5883,5884,5, + 323,0,0,5884,5901,3,1394,697,0,5885,5886,5,30,0,0,5886,5887,5,212, + 0,0,5887,5888,5,68,0,0,5888,5889,5,323,0,0,5889,5901,3,1394,697, + 0,5890,5891,5,30,0,0,5891,5892,5,457,0,0,5892,5893,5,68,0,0,5893, + 5894,5,323,0,0,5894,5901,3,1394,697,0,5895,5896,5,30,0,0,5896,5897, + 5,455,0,0,5897,5898,5,68,0,0,5898,5899,5,323,0,0,5899,5901,3,1394, + 697,0,5900,5842,1,0,0,0,5900,5843,1,0,0,0,5900,5845,1,0,0,0,5900, + 5847,1,0,0,0,5900,5851,1,0,0,0,5900,5854,1,0,0,0,5900,5856,1,0,0, + 0,5900,5858,1,0,0,0,5900,5860,1,0,0,0,5900,5862,1,0,0,0,5900,5864, + 1,0,0,0,5900,5866,1,0,0,0,5900,5869,1,0,0,0,5900,5871,1,0,0,0,5900, + 5873,1,0,0,0,5900,5875,1,0,0,0,5900,5880,1,0,0,0,5900,5885,1,0,0, + 0,5900,5890,1,0,0,0,5900,5895,1,0,0,0,5901,601,1,0,0,0,5902,5907, + 3,604,302,0,5903,5904,5,6,0,0,5904,5906,3,604,302,0,5905,5903,1, + 0,0,0,5906,5909,1,0,0,0,5907,5905,1,0,0,0,5907,5908,1,0,0,0,5908, + 603,1,0,0,0,5909,5907,1,0,0,0,5910,5914,3,1470,735,0,5911,5912,5, + 66,0,0,5912,5914,3,1470,735,0,5913,5910,1,0,0,0,5913,5911,1,0,0, + 0,5914,605,1,0,0,0,5915,5916,5,105,0,0,5916,5917,5,65,0,0,5917,5918, + 5,279,0,0,5918,607,1,0,0,0,5919,5920,5,65,0,0,5920,5921,3,596,298, + 0,5921,5922,5,94,0,0,5922,5924,3,1472,736,0,5923,5925,3,612,306, + 0,5924,5923,1,0,0,0,5924,5925,1,0,0,0,5925,5927,1,0,0,0,5926,5928, + 3,614,307,0,5927,5926,1,0,0,0,5927,5928,1,0,0,0,5928,609,1,0,0,0, + 5929,5930,5,317,0,0,5930,5931,3,596,298,0,5931,5932,5,64,0,0,5932, + 5934,3,1472,736,0,5933,5935,3,614,307,0,5934,5933,1,0,0,0,5934,5935, + 1,0,0,0,5935,5937,1,0,0,0,5936,5938,3,124,62,0,5937,5936,1,0,0,0, + 5937,5938,1,0,0,0,5938,5953,1,0,0,0,5939,5940,5,317,0,0,5940,5941, + 5,134,0,0,5941,5942,5,279,0,0,5942,5943,5,62,0,0,5943,5944,3,596, + 298,0,5944,5945,5,64,0,0,5945,5947,3,1472,736,0,5946,5948,3,614, + 307,0,5947,5946,1,0,0,0,5947,5948,1,0,0,0,5948,5950,1,0,0,0,5949, + 5951,3,124,62,0,5950,5949,1,0,0,0,5950,5951,1,0,0,0,5951,5953,1, + 0,0,0,5952,5929,1,0,0,0,5952,5939,1,0,0,0,5953,611,1,0,0,0,5954, + 5955,5,105,0,0,5955,5956,5,134,0,0,5956,5957,5,279,0,0,5957,613, + 1,0,0,0,5958,5959,5,214,0,0,5959,5960,5,147,0,0,5960,5961,3,1470, + 735,0,5961,615,1,0,0,0,5962,5963,5,138,0,0,5963,5964,5,53,0,0,5964, + 5965,5,294,0,0,5965,5966,3,618,309,0,5966,5967,3,622,311,0,5967, + 617,1,0,0,0,5968,5970,3,620,310,0,5969,5968,1,0,0,0,5970,5973,1, + 0,0,0,5971,5969,1,0,0,0,5971,5972,1,0,0,0,5972,619,1,0,0,0,5973, + 5971,1,0,0,0,5974,5975,5,68,0,0,5975,5976,5,323,0,0,5976,5984,3, + 1394,697,0,5977,5978,5,62,0,0,5978,5979,5,318,0,0,5979,5984,3,1472, + 736,0,5980,5981,5,62,0,0,5981,5982,5,99,0,0,5982,5984,3,1472,736, + 0,5983,5974,1,0,0,0,5983,5977,1,0,0,0,5983,5980,1,0,0,0,5984,621, + 1,0,0,0,5985,5986,5,65,0,0,5986,5987,3,590,295,0,5987,5988,5,80, + 0,0,5988,5989,3,624,312,0,5989,5990,5,94,0,0,5990,5992,3,602,301, + 0,5991,5993,3,606,303,0,5992,5991,1,0,0,0,5992,5993,1,0,0,0,5993, + 6016,1,0,0,0,5994,5995,5,317,0,0,5995,5996,3,590,295,0,5996,5997, + 5,80,0,0,5997,5998,3,624,312,0,5998,5999,5,64,0,0,5999,6001,3,602, + 301,0,6000,6002,3,124,62,0,6001,6000,1,0,0,0,6001,6002,1,0,0,0,6002, + 6016,1,0,0,0,6003,6004,5,317,0,0,6004,6005,5,65,0,0,6005,6006,5, + 279,0,0,6006,6007,5,62,0,0,6007,6008,3,590,295,0,6008,6009,5,80, + 0,0,6009,6010,3,624,312,0,6010,6011,5,64,0,0,6011,6013,3,602,301, + 0,6012,6014,3,124,62,0,6013,6012,1,0,0,0,6013,6014,1,0,0,0,6014, + 6016,1,0,0,0,6015,5985,1,0,0,0,6015,5994,1,0,0,0,6015,6003,1,0,0, + 0,6016,623,1,0,0,0,6017,6018,7,44,0,0,6018,625,1,0,0,0,6019,6021, + 5,46,0,0,6020,6022,3,628,314,0,6021,6020,1,0,0,0,6021,6022,1,0,0, + 0,6022,6023,1,0,0,0,6023,6025,5,226,0,0,6024,6026,3,630,315,0,6025, + 6024,1,0,0,0,6025,6026,1,0,0,0,6026,6028,1,0,0,0,6027,6029,3,516, + 258,0,6028,6027,1,0,0,0,6028,6029,1,0,0,0,6029,6031,1,0,0,0,6030, + 6032,3,632,316,0,6031,6030,1,0,0,0,6031,6032,1,0,0,0,6032,6033,1, + 0,0,0,6033,6034,5,80,0,0,6034,6036,3,1118,559,0,6035,6037,3,634, + 317,0,6036,6035,1,0,0,0,6036,6037,1,0,0,0,6037,6038,1,0,0,0,6038, + 6039,5,2,0,0,6039,6040,3,636,318,0,6040,6042,5,3,0,0,6041,6043,3, + 642,321,0,6042,6041,1,0,0,0,6042,6043,1,0,0,0,6043,6045,1,0,0,0, + 6044,6046,3,220,110,0,6045,6044,1,0,0,0,6045,6046,1,0,0,0,6046,6048, + 1,0,0,0,6047,6049,3,134,67,0,6048,6047,1,0,0,0,6048,6049,1,0,0,0, + 6049,6051,1,0,0,0,6050,6052,3,282,141,0,6051,6050,1,0,0,0,6051,6052, + 1,0,0,0,6052,6054,1,0,0,0,6053,6055,3,1144,572,0,6054,6053,1,0,0, + 0,6054,6055,1,0,0,0,6055,627,1,0,0,0,6056,6057,5,98,0,0,6057,629, + 1,0,0,0,6058,6059,5,109,0,0,6059,631,1,0,0,0,6060,6061,3,1436,718, + 0,6061,633,1,0,0,0,6062,6063,5,100,0,0,6063,6064,3,1436,718,0,6064, + 635,1,0,0,0,6065,6070,3,640,320,0,6066,6067,5,6,0,0,6067,6069,3, + 640,320,0,6068,6066,1,0,0,0,6069,6072,1,0,0,0,6070,6068,1,0,0,0, + 6070,6071,1,0,0,0,6071,637,1,0,0,0,6072,6070,1,0,0,0,6073,6075,3, + 646,323,0,6074,6073,1,0,0,0,6074,6075,1,0,0,0,6075,6077,1,0,0,0, + 6076,6078,3,648,324,0,6077,6076,1,0,0,0,6077,6078,1,0,0,0,6078,6080, + 1,0,0,0,6079,6081,3,650,325,0,6080,6079,1,0,0,0,6080,6081,1,0,0, + 0,6081,6083,1,0,0,0,6082,6084,3,652,326,0,6083,6082,1,0,0,0,6083, + 6084,1,0,0,0,6084,6097,1,0,0,0,6085,6087,3,646,323,0,6086,6085,1, + 0,0,0,6086,6087,1,0,0,0,6087,6088,1,0,0,0,6088,6089,3,558,279,0, + 6089,6091,3,132,66,0,6090,6092,3,650,325,0,6091,6090,1,0,0,0,6091, + 6092,1,0,0,0,6092,6094,1,0,0,0,6093,6095,3,652,326,0,6094,6093,1, + 0,0,0,6094,6095,1,0,0,0,6095,6097,1,0,0,0,6096,6074,1,0,0,0,6096, + 6086,1,0,0,0,6097,639,1,0,0,0,6098,6099,3,1432,716,0,6099,6100,3, + 638,319,0,6100,6110,1,0,0,0,6101,6102,3,1262,631,0,6102,6103,3,638, + 319,0,6103,6110,1,0,0,0,6104,6105,5,2,0,0,6105,6106,3,1212,606,0, + 6106,6107,5,3,0,0,6107,6108,3,638,319,0,6108,6110,1,0,0,0,6109,6098, + 1,0,0,0,6109,6101,1,0,0,0,6109,6104,1,0,0,0,6110,641,1,0,0,0,6111, + 6112,5,441,0,0,6112,6113,5,2,0,0,6113,6114,3,644,322,0,6114,6115, + 5,3,0,0,6115,643,1,0,0,0,6116,6121,3,640,320,0,6117,6118,5,6,0,0, + 6118,6120,3,640,320,0,6119,6117,1,0,0,0,6120,6123,1,0,0,0,6121,6119, + 1,0,0,0,6121,6122,1,0,0,0,6122,645,1,0,0,0,6123,6121,1,0,0,0,6124, + 6125,5,43,0,0,6125,6126,3,558,279,0,6126,647,1,0,0,0,6127,6128,3, + 558,279,0,6128,649,1,0,0,0,6129,6130,7,45,0,0,6130,651,1,0,0,0,6131, + 6132,5,273,0,0,6132,6136,5,207,0,0,6133,6134,5,273,0,0,6134,6136, + 5,249,0,0,6135,6131,1,0,0,0,6135,6133,1,0,0,0,6136,653,1,0,0,0,6137, + 6139,5,46,0,0,6138,6140,3,658,329,0,6139,6138,1,0,0,0,6139,6140, + 1,0,0,0,6140,6145,1,0,0,0,6141,6142,5,211,0,0,6142,6146,3,1442,721, + 0,6143,6144,5,296,0,0,6144,6146,3,1430,715,0,6145,6141,1,0,0,0,6145, + 6143,1,0,0,0,6146,6147,1,0,0,0,6147,6157,3,676,338,0,6148,6155,5, + 316,0,0,6149,6156,3,686,343,0,6150,6151,5,92,0,0,6151,6152,5,2,0, + 0,6152,6153,3,714,357,0,6153,6154,5,3,0,0,6154,6156,1,0,0,0,6155, + 6149,1,0,0,0,6155,6150,1,0,0,0,6156,6158,1,0,0,0,6157,6148,1,0,0, + 0,6157,6158,1,0,0,0,6158,6159,1,0,0,0,6159,6162,3,702,351,0,6160, + 6161,5,105,0,0,6161,6163,3,656,328,0,6162,6160,1,0,0,0,6162,6163, + 1,0,0,0,6163,655,1,0,0,0,6164,6165,5,2,0,0,6165,6170,3,1474,737, + 0,6166,6167,5,6,0,0,6167,6169,3,1474,737,0,6168,6166,1,0,0,0,6169, + 6172,1,0,0,0,6170,6168,1,0,0,0,6170,6171,1,0,0,0,6171,6173,1,0,0, + 0,6172,6170,1,0,0,0,6173,6174,5,3,0,0,6174,657,1,0,0,0,6175,6176, + 5,82,0,0,6176,6177,5,311,0,0,6177,659,1,0,0,0,6178,6180,5,2,0,0, + 6179,6181,3,662,331,0,6180,6179,1,0,0,0,6180,6181,1,0,0,0,6181,6182, + 1,0,0,0,6182,6183,5,3,0,0,6183,661,1,0,0,0,6184,6189,3,680,340,0, + 6185,6186,5,6,0,0,6186,6188,3,680,340,0,6187,6185,1,0,0,0,6188,6191, + 1,0,0,0,6189,6187,1,0,0,0,6189,6190,1,0,0,0,6190,663,1,0,0,0,6191, + 6189,1,0,0,0,6192,6197,3,666,333,0,6193,6194,5,6,0,0,6194,6196,3, + 666,333,0,6195,6193,1,0,0,0,6196,6199,1,0,0,0,6197,6195,1,0,0,0, + 6197,6198,1,0,0,0,6198,665,1,0,0,0,6199,6197,1,0,0,0,6200,6201,3, + 1426,713,0,6201,6202,3,660,330,0,6202,6209,1,0,0,0,6203,6209,3,1500, + 750,0,6204,6206,3,1474,737,0,6205,6207,3,1380,690,0,6206,6205,1, + 0,0,0,6206,6207,1,0,0,0,6207,6209,1,0,0,0,6208,6200,1,0,0,0,6208, + 6203,1,0,0,0,6208,6204,1,0,0,0,6209,667,1,0,0,0,6210,6215,3,670, + 335,0,6211,6212,5,6,0,0,6212,6214,3,670,335,0,6213,6211,1,0,0,0, + 6214,6217,1,0,0,0,6215,6213,1,0,0,0,6215,6216,1,0,0,0,6216,669,1, + 0,0,0,6217,6215,1,0,0,0,6218,6219,3,1428,714,0,6219,6220,3,660,330, + 0,6220,6227,1,0,0,0,6221,6227,3,1500,750,0,6222,6224,3,1474,737, + 0,6223,6225,3,1380,690,0,6224,6223,1,0,0,0,6224,6225,1,0,0,0,6225, + 6227,1,0,0,0,6226,6218,1,0,0,0,6226,6221,1,0,0,0,6226,6222,1,0,0, + 0,6227,671,1,0,0,0,6228,6233,3,674,337,0,6229,6230,5,6,0,0,6230, + 6232,3,674,337,0,6231,6229,1,0,0,0,6232,6235,1,0,0,0,6233,6231,1, + 0,0,0,6233,6234,1,0,0,0,6234,673,1,0,0,0,6235,6233,1,0,0,0,6236, + 6237,3,1444,722,0,6237,6238,3,660,330,0,6238,6245,1,0,0,0,6239,6245, + 3,1500,750,0,6240,6242,3,1474,737,0,6241,6243,3,1380,690,0,6242, + 6241,1,0,0,0,6242,6243,1,0,0,0,6243,6245,1,0,0,0,6244,6236,1,0,0, + 0,6244,6239,1,0,0,0,6244,6240,1,0,0,0,6245,675,1,0,0,0,6246,6248, + 5,2,0,0,6247,6249,3,678,339,0,6248,6247,1,0,0,0,6248,6249,1,0,0, + 0,6249,6250,1,0,0,0,6250,6251,5,3,0,0,6251,677,1,0,0,0,6252,6257, + 3,690,345,0,6253,6254,5,6,0,0,6254,6256,3,690,345,0,6255,6253,1, + 0,0,0,6256,6259,1,0,0,0,6257,6255,1,0,0,0,6257,6258,1,0,0,0,6258, + 679,1,0,0,0,6259,6257,1,0,0,0,6260,6262,3,682,341,0,6261,6263,3, + 684,342,0,6262,6261,1,0,0,0,6262,6263,1,0,0,0,6263,6264,1,0,0,0, + 6264,6265,3,688,344,0,6265,6274,1,0,0,0,6266,6268,3,684,342,0,6267, + 6269,3,682,341,0,6268,6267,1,0,0,0,6268,6269,1,0,0,0,6269,6270,1, + 0,0,0,6270,6271,3,688,344,0,6271,6274,1,0,0,0,6272,6274,3,688,344, + 0,6273,6260,1,0,0,0,6273,6266,1,0,0,0,6273,6272,1,0,0,0,6274,681, + 1,0,0,0,6275,6277,5,68,0,0,6276,6278,5,453,0,0,6277,6276,1,0,0,0, + 6277,6278,1,0,0,0,6278,6283,1,0,0,0,6279,6283,5,453,0,0,6280,6283, + 5,400,0,0,6281,6283,5,101,0,0,6282,6275,1,0,0,0,6282,6279,1,0,0, + 0,6282,6280,1,0,0,0,6282,6281,1,0,0,0,6283,683,1,0,0,0,6284,6285, + 3,1482,741,0,6285,685,1,0,0,0,6286,6287,3,688,344,0,6287,687,1,0, + 0,0,6288,6301,3,1168,584,0,6289,6290,3,1482,741,0,6290,6291,3,560, + 280,0,6291,6292,5,27,0,0,6292,6293,5,360,0,0,6293,6301,1,0,0,0,6294, + 6295,5,415,0,0,6295,6296,3,1482,741,0,6296,6297,3,560,280,0,6297, + 6298,5,27,0,0,6298,6299,5,360,0,0,6299,6301,1,0,0,0,6300,6288,1, + 0,0,0,6300,6289,1,0,0,0,6300,6294,1,0,0,0,6301,689,1,0,0,0,6302, + 6305,3,680,340,0,6303,6304,7,46,0,0,6304,6306,3,1212,606,0,6305, + 6303,1,0,0,0,6305,6306,1,0,0,0,6306,691,1,0,0,0,6307,6308,3,680, + 340,0,6308,693,1,0,0,0,6309,6320,5,2,0,0,6310,6321,5,9,0,0,6311, + 6321,3,696,348,0,6312,6313,5,83,0,0,6313,6314,5,147,0,0,6314,6321, + 3,696,348,0,6315,6316,3,696,348,0,6316,6317,5,83,0,0,6317,6318,5, + 147,0,0,6318,6319,3,696,348,0,6319,6321,1,0,0,0,6320,6310,1,0,0, + 0,6320,6311,1,0,0,0,6320,6312,1,0,0,0,6320,6315,1,0,0,0,6321,6322, + 1,0,0,0,6322,6323,5,3,0,0,6323,695,1,0,0,0,6324,6329,3,692,346,0, + 6325,6326,5,6,0,0,6326,6328,3,692,346,0,6327,6325,1,0,0,0,6328,6331, + 1,0,0,0,6329,6327,1,0,0,0,6329,6330,1,0,0,0,6330,697,1,0,0,0,6331, + 6329,1,0,0,0,6332,6333,3,1444,722,0,6333,6334,3,694,347,0,6334,699, + 1,0,0,0,6335,6340,3,698,349,0,6336,6337,5,6,0,0,6337,6339,3,698, + 349,0,6338,6336,1,0,0,0,6339,6342,1,0,0,0,6340,6338,1,0,0,0,6340, + 6341,1,0,0,0,6341,701,1,0,0,0,6342,6340,1,0,0,0,6343,6345,3,706, + 353,0,6344,6343,1,0,0,0,6345,6346,1,0,0,0,6346,6344,1,0,0,0,6346, + 6347,1,0,0,0,6347,703,1,0,0,0,6348,6349,5,149,0,0,6349,6350,5,80, + 0,0,6350,6351,5,78,0,0,6351,6384,5,458,0,0,6352,6353,5,316,0,0,6353, + 6354,5,78,0,0,6354,6355,5,80,0,0,6355,6356,5,78,0,0,6356,6384,5, + 458,0,0,6357,6384,5,346,0,0,6358,6384,5,222,0,0,6359,6384,5,338, + 0,0,6360,6384,5,377,0,0,6361,6362,5,205,0,0,6362,6363,5,327,0,0, + 6363,6384,5,181,0,0,6364,6365,5,205,0,0,6365,6366,5,327,0,0,6366, + 6384,5,243,0,0,6367,6368,5,327,0,0,6368,6384,5,181,0,0,6369,6370, + 5,327,0,0,6370,6384,5,243,0,0,6371,6384,5,250,0,0,6372,6373,5,77, + 0,0,6373,6384,5,250,0,0,6374,6375,5,170,0,0,6375,6384,3,322,161, + 0,6376,6377,5,320,0,0,6377,6384,3,322,161,0,6378,6379,5,459,0,0, + 6379,6384,3,558,279,0,6380,6384,3,90,45,0,6381,6382,5,460,0,0,6382, + 6384,3,1474,737,0,6383,6348,1,0,0,0,6383,6352,1,0,0,0,6383,6357, + 1,0,0,0,6383,6358,1,0,0,0,6383,6359,1,0,0,0,6383,6360,1,0,0,0,6383, + 6361,1,0,0,0,6383,6364,1,0,0,0,6383,6367,1,0,0,0,6383,6369,1,0,0, + 0,6383,6371,1,0,0,0,6383,6372,1,0,0,0,6383,6374,1,0,0,0,6383,6376, + 1,0,0,0,6383,6378,1,0,0,0,6383,6380,1,0,0,0,6383,6381,1,0,0,0,6384, + 705,1,0,0,0,6385,6386,5,36,0,0,6386,6387,3,1458,729,0,6387,6388, + 5,6,0,0,6388,6389,3,1458,729,0,6389,6411,1,0,0,0,6390,6391,5,247, + 0,0,6391,6411,3,80,40,0,6392,6393,5,443,0,0,6393,6411,3,708,354, + 0,6394,6411,5,104,0,0,6395,6396,5,333,0,0,6396,6403,3,1474,737,0, + 6397,6398,5,94,0,0,6398,6404,3,1474,737,0,6399,6400,5,10,0,0,6400, + 6404,3,1474,737,0,6401,6402,5,64,0,0,6402,6404,5,434,0,0,6403,6397, + 1,0,0,0,6403,6399,1,0,0,0,6403,6401,1,0,0,0,6404,6411,1,0,0,0,6405, + 6406,5,36,0,0,6406,6411,3,1474,737,0,6407,6411,3,6,3,0,6408,6411, + 3,704,352,0,6409,6411,3,1474,737,0,6410,6385,1,0,0,0,6410,6390,1, + 0,0,0,6410,6392,1,0,0,0,6410,6394,1,0,0,0,6410,6395,1,0,0,0,6410, + 6405,1,0,0,0,6410,6407,1,0,0,0,6410,6408,1,0,0,0,6410,6409,1,0,0, + 0,6411,707,1,0,0,0,6412,6413,5,62,0,0,6413,6414,5,360,0,0,6414,6421, + 3,1168,584,0,6415,6416,5,6,0,0,6416,6417,5,62,0,0,6417,6418,5,360, + 0,0,6418,6420,3,1168,584,0,6419,6415,1,0,0,0,6420,6423,1,0,0,0,6421, + 6419,1,0,0,0,6421,6422,1,0,0,0,6422,709,1,0,0,0,6423,6421,1,0,0, + 0,6424,6425,5,105,0,0,6425,6426,3,496,248,0,6426,711,1,0,0,0,6427, + 6428,3,1432,716,0,6428,6429,3,688,344,0,6429,713,1,0,0,0,6430,6435, + 3,712,356,0,6431,6432,5,6,0,0,6432,6434,3,712,356,0,6433,6431,1, + 0,0,0,6434,6437,1,0,0,0,6435,6433,1,0,0,0,6435,6436,1,0,0,0,6436, + 715,1,0,0,0,6437,6435,1,0,0,0,6438,6439,5,138,0,0,6439,6440,3,718, + 359,0,6440,6442,3,720,360,0,6441,6443,3,722,361,0,6442,6441,1,0, + 0,0,6442,6443,1,0,0,0,6443,717,1,0,0,0,6444,6445,5,211,0,0,6445, + 6451,3,674,337,0,6446,6447,5,296,0,0,6447,6451,3,670,335,0,6448, + 6449,5,442,0,0,6449,6451,3,666,333,0,6450,6444,1,0,0,0,6450,6446, + 1,0,0,0,6450,6448,1,0,0,0,6451,719,1,0,0,0,6452,6454,3,704,352,0, + 6453,6452,1,0,0,0,6454,6455,1,0,0,0,6455,6453,1,0,0,0,6455,6456, + 1,0,0,0,6456,721,1,0,0,0,6457,6458,5,315,0,0,6458,723,1,0,0,0,6459, + 6460,5,191,0,0,6460,6462,5,211,0,0,6461,6463,3,748,374,0,6462,6461, + 1,0,0,0,6462,6463,1,0,0,0,6463,6464,1,0,0,0,6464,6466,3,672,336, + 0,6465,6467,3,124,62,0,6466,6465,1,0,0,0,6466,6467,1,0,0,0,6467, + 6487,1,0,0,0,6468,6469,5,191,0,0,6469,6471,5,296,0,0,6470,6472,3, + 748,374,0,6471,6470,1,0,0,0,6471,6472,1,0,0,0,6472,6473,1,0,0,0, + 6473,6475,3,668,334,0,6474,6476,3,124,62,0,6475,6474,1,0,0,0,6475, + 6476,1,0,0,0,6476,6487,1,0,0,0,6477,6478,5,191,0,0,6478,6480,5,442, + 0,0,6479,6481,3,748,374,0,6480,6479,1,0,0,0,6480,6481,1,0,0,0,6481, + 6482,1,0,0,0,6482,6484,3,664,332,0,6483,6485,3,124,62,0,6484,6483, + 1,0,0,0,6484,6485,1,0,0,0,6485,6487,1,0,0,0,6486,6459,1,0,0,0,6486, + 6468,1,0,0,0,6486,6477,1,0,0,0,6487,725,1,0,0,0,6488,6489,5,191, + 0,0,6489,6491,5,136,0,0,6490,6492,3,748,374,0,6491,6490,1,0,0,0, + 6491,6492,1,0,0,0,6492,6493,1,0,0,0,6493,6495,3,700,350,0,6494,6496, + 3,124,62,0,6495,6494,1,0,0,0,6495,6496,1,0,0,0,6496,727,1,0,0,0, + 6497,6498,5,191,0,0,6498,6500,5,278,0,0,6499,6501,3,748,374,0,6500, + 6499,1,0,0,0,6500,6501,1,0,0,0,6501,6502,1,0,0,0,6502,6504,3,734, + 367,0,6503,6505,3,124,62,0,6504,6503,1,0,0,0,6504,6505,1,0,0,0,6505, + 729,1,0,0,0,6506,6507,5,2,0,0,6507,6508,3,1168,584,0,6508,6509,5, + 3,0,0,6509,6529,1,0,0,0,6510,6511,5,2,0,0,6511,6512,3,1168,584,0, + 6512,6513,5,6,0,0,6513,6514,3,1168,584,0,6514,6515,5,3,0,0,6515, + 6529,1,0,0,0,6516,6517,5,2,0,0,6517,6518,5,407,0,0,6518,6519,5,6, + 0,0,6519,6520,3,1168,584,0,6520,6521,5,3,0,0,6521,6529,1,0,0,0,6522, + 6523,5,2,0,0,6523,6524,3,1168,584,0,6524,6525,5,6,0,0,6525,6526, + 5,407,0,0,6526,6527,5,3,0,0,6527,6529,1,0,0,0,6528,6506,1,0,0,0, + 6528,6510,1,0,0,0,6528,6516,1,0,0,0,6528,6522,1,0,0,0,6529,731,1, + 0,0,0,6530,6531,3,1474,737,0,6531,6532,5,11,0,0,6532,6534,1,0,0, + 0,6533,6530,1,0,0,0,6534,6537,1,0,0,0,6535,6533,1,0,0,0,6535,6536, + 1,0,0,0,6536,6538,1,0,0,0,6537,6535,1,0,0,0,6538,6539,3,1318,659, + 0,6539,733,1,0,0,0,6540,6545,3,736,368,0,6541,6542,5,6,0,0,6542, + 6544,3,736,368,0,6543,6541,1,0,0,0,6544,6547,1,0,0,0,6545,6543,1, + 0,0,0,6545,6546,1,0,0,0,6546,735,1,0,0,0,6547,6545,1,0,0,0,6548, + 6549,3,732,366,0,6549,6550,3,730,365,0,6550,737,1,0,0,0,6551,6552, + 5,57,0,0,6552,6553,3,740,370,0,6553,739,1,0,0,0,6554,6556,3,742, + 371,0,6555,6554,1,0,0,0,6556,6557,1,0,0,0,6557,6555,1,0,0,0,6557, + 6558,1,0,0,0,6558,741,1,0,0,0,6559,6563,3,1458,729,0,6560,6561,5, + 247,0,0,6561,6563,3,80,40,0,6562,6559,1,0,0,0,6562,6560,1,0,0,0, + 6563,743,1,0,0,0,6564,6565,5,46,0,0,6565,6566,5,41,0,0,6566,6567, + 5,2,0,0,6567,6568,3,1168,584,0,6568,6569,5,36,0,0,6569,6570,3,1168, + 584,0,6570,6571,5,3,0,0,6571,6572,5,105,0,0,6572,6573,5,211,0,0, + 6573,6575,3,674,337,0,6574,6576,3,746,373,0,6575,6574,1,0,0,0,6575, + 6576,1,0,0,0,6576,6602,1,0,0,0,6577,6578,5,46,0,0,6578,6579,5,41, + 0,0,6579,6580,5,2,0,0,6580,6581,3,1168,584,0,6581,6582,5,36,0,0, + 6582,6583,3,1168,584,0,6583,6584,5,3,0,0,6584,6585,5,379,0,0,6585, + 6587,5,211,0,0,6586,6588,3,746,373,0,6587,6586,1,0,0,0,6587,6588, + 1,0,0,0,6588,6602,1,0,0,0,6589,6590,5,46,0,0,6590,6591,5,41,0,0, + 6591,6592,5,2,0,0,6592,6593,3,1168,584,0,6593,6594,5,36,0,0,6594, + 6595,3,1168,584,0,6595,6596,5,3,0,0,6596,6597,5,105,0,0,6597,6599, + 5,400,0,0,6598,6600,3,746,373,0,6599,6598,1,0,0,0,6599,6600,1,0, + 0,0,6600,6602,1,0,0,0,6601,6564,1,0,0,0,6601,6577,1,0,0,0,6601,6589, + 1,0,0,0,6602,745,1,0,0,0,6603,6604,5,36,0,0,6604,6608,5,223,0,0, + 6605,6606,5,36,0,0,6606,6608,5,141,0,0,6607,6603,1,0,0,0,6607,6605, + 1,0,0,0,6608,747,1,0,0,0,6609,6610,5,220,0,0,6610,6611,5,396,0,0, + 6611,749,1,0,0,0,6612,6614,5,46,0,0,6613,6615,3,658,329,0,6614,6613, + 1,0,0,0,6614,6615,1,0,0,0,6615,6616,1,0,0,0,6616,6617,5,443,0,0, + 6617,6618,5,62,0,0,6618,6619,3,1168,584,0,6619,6620,5,247,0,0,6620, + 6621,3,1436,718,0,6621,6622,5,2,0,0,6622,6623,3,752,376,0,6623,6624, + 5,3,0,0,6624,751,1,0,0,0,6625,6626,5,64,0,0,6626,6627,5,461,0,0, + 6627,6628,5,105,0,0,6628,6629,5,211,0,0,6629,6630,3,674,337,0,6630, + 6631,5,6,0,0,6631,6632,5,94,0,0,6632,6633,5,461,0,0,6633,6634,5, + 105,0,0,6634,6635,5,211,0,0,6635,6636,3,674,337,0,6636,6660,1,0, + 0,0,6637,6638,5,94,0,0,6638,6639,5,461,0,0,6639,6640,5,105,0,0,6640, + 6641,5,211,0,0,6641,6642,3,674,337,0,6642,6643,5,6,0,0,6643,6644, + 5,64,0,0,6644,6645,5,461,0,0,6645,6646,5,105,0,0,6646,6647,5,211, + 0,0,6647,6648,3,674,337,0,6648,6660,1,0,0,0,6649,6650,5,64,0,0,6650, + 6651,5,461,0,0,6651,6652,5,105,0,0,6652,6653,5,211,0,0,6653,6660, + 3,674,337,0,6654,6655,5,94,0,0,6655,6656,5,461,0,0,6656,6657,5,105, + 0,0,6657,6658,5,211,0,0,6658,6660,3,674,337,0,6659,6625,1,0,0,0, + 6659,6637,1,0,0,0,6659,6649,1,0,0,0,6659,6654,1,0,0,0,6660,753,1, + 0,0,0,6661,6662,5,306,0,0,6662,6678,3,756,378,0,6663,6664,5,306, + 0,0,6664,6678,3,758,379,0,6665,6666,5,306,0,0,6666,6667,5,2,0,0, + 6667,6668,3,760,380,0,6668,6669,5,3,0,0,6669,6670,3,756,378,0,6670, + 6678,1,0,0,0,6671,6672,5,306,0,0,6672,6673,5,2,0,0,6673,6674,3,760, + 380,0,6674,6675,5,3,0,0,6675,6676,3,758,379,0,6676,6678,1,0,0,0, + 6677,6661,1,0,0,0,6677,6663,1,0,0,0,6677,6665,1,0,0,0,6677,6671, + 1,0,0,0,6678,755,1,0,0,0,6679,6681,5,226,0,0,6680,6682,3,630,315, + 0,6681,6680,1,0,0,0,6681,6682,1,0,0,0,6682,6683,1,0,0,0,6683,6690, + 3,1412,706,0,6684,6686,5,92,0,0,6685,6687,3,630,315,0,6686,6685, + 1,0,0,0,6686,6687,1,0,0,0,6687,6688,1,0,0,0,6688,6690,3,1406,703, + 0,6689,6679,1,0,0,0,6689,6684,1,0,0,0,6690,757,1,0,0,0,6691,6693, + 5,323,0,0,6692,6694,3,630,315,0,6693,6692,1,0,0,0,6693,6694,1,0, + 0,0,6694,6695,1,0,0,0,6695,6707,3,1422,711,0,6696,6698,5,349,0,0, + 6697,6699,3,630,315,0,6698,6697,1,0,0,0,6698,6699,1,0,0,0,6699,6700, + 1,0,0,0,6700,6707,3,1436,718,0,6701,6703,5,175,0,0,6702,6704,3,630, + 315,0,6703,6702,1,0,0,0,6703,6704,1,0,0,0,6704,6705,1,0,0,0,6705, + 6707,3,1420,710,0,6706,6691,1,0,0,0,6706,6696,1,0,0,0,6706,6701, + 1,0,0,0,6707,759,1,0,0,0,6708,6713,3,762,381,0,6709,6710,5,6,0,0, + 6710,6712,3,762,381,0,6711,6709,1,0,0,0,6712,6715,1,0,0,0,6713,6711, + 1,0,0,0,6713,6714,1,0,0,0,6714,761,1,0,0,0,6715,6713,1,0,0,0,6716, + 6717,5,128,0,0,6717,763,1,0,0,0,6718,6719,5,138,0,0,6719,6720,5, + 351,0,0,6720,6721,3,1402,701,0,6721,6722,5,333,0,0,6722,6723,3,132, + 66,0,6723,6731,1,0,0,0,6724,6725,5,138,0,0,6725,6726,5,351,0,0,6726, + 6727,3,1402,701,0,6727,6728,5,313,0,0,6728,6729,3,132,66,0,6729, + 6731,1,0,0,0,6730,6718,1,0,0,0,6730,6724,1,0,0,0,6731,765,1,0,0, + 0,6732,6733,5,138,0,0,6733,6734,5,136,0,0,6734,6735,3,698,349,0, + 6735,6736,5,309,0,0,6736,6737,5,94,0,0,6737,6738,3,1436,718,0,6738, + 7124,1,0,0,0,6739,6740,5,138,0,0,6740,6741,5,108,0,0,6741,6742,3, + 558,279,0,6742,6743,5,309,0,0,6743,6744,5,94,0,0,6744,6745,3,1436, + 718,0,6745,7124,1,0,0,0,6746,6747,5,138,0,0,6747,6748,5,168,0,0, + 6748,6749,3,558,279,0,6749,6750,5,309,0,0,6750,6751,5,94,0,0,6751, + 6752,3,1436,718,0,6752,7124,1,0,0,0,6753,6754,5,138,0,0,6754,6755, + 5,175,0,0,6755,6756,3,1420,710,0,6756,6757,5,309,0,0,6757,6758,5, + 94,0,0,6758,6759,3,1418,709,0,6759,7124,1,0,0,0,6760,6761,5,138, + 0,0,6761,6762,5,189,0,0,6762,6763,3,558,279,0,6763,6764,5,309,0, + 0,6764,6765,5,94,0,0,6765,6766,3,1436,718,0,6766,7124,1,0,0,0,6767, + 6768,5,138,0,0,6768,6769,5,189,0,0,6769,6770,3,558,279,0,6770,6771, + 5,309,0,0,6771,6772,5,45,0,0,6772,6773,3,1436,718,0,6773,6774,5, + 94,0,0,6774,6775,3,1436,718,0,6775,7124,1,0,0,0,6776,6777,5,138, + 0,0,6777,6778,5,63,0,0,6778,6779,5,174,0,0,6779,6780,5,381,0,0,6780, + 6781,3,1436,718,0,6781,6782,5,309,0,0,6782,6783,5,94,0,0,6783,6784, + 3,1436,718,0,6784,7124,1,0,0,0,6785,6786,5,138,0,0,6786,6787,5,211, + 0,0,6787,6788,3,674,337,0,6788,6789,5,309,0,0,6789,6790,5,94,0,0, + 6790,6791,3,1442,721,0,6791,7124,1,0,0,0,6792,6793,5,138,0,0,6793, + 6794,5,66,0,0,6794,6795,3,1468,734,0,6795,6796,5,309,0,0,6796,6797, + 5,94,0,0,6797,6798,3,1468,734,0,6798,7124,1,0,0,0,6799,6801,5,138, + 0,0,6800,6802,3,338,169,0,6801,6800,1,0,0,0,6801,6802,1,0,0,0,6802, + 6803,1,0,0,0,6803,6804,5,247,0,0,6804,6805,3,1436,718,0,6805,6806, + 5,309,0,0,6806,6807,5,94,0,0,6807,6808,3,1436,718,0,6808,7124,1, + 0,0,0,6809,6810,5,138,0,0,6810,6811,5,278,0,0,6811,6812,5,156,0, + 0,6812,6813,3,558,279,0,6813,6814,5,100,0,0,6814,6815,3,1436,718, + 0,6815,6816,5,309,0,0,6816,6817,5,94,0,0,6817,6818,3,1436,718,0, + 6818,7124,1,0,0,0,6819,6820,5,138,0,0,6820,6821,5,278,0,0,6821,6822, + 5,206,0,0,6822,6823,3,558,279,0,6823,6824,5,100,0,0,6824,6825,3, + 1436,718,0,6825,6826,5,309,0,0,6826,6827,5,94,0,0,6827,6828,3,1436, + 718,0,6828,7124,1,0,0,0,6829,6830,5,138,0,0,6830,6832,5,445,0,0, + 6831,6833,3,748,374,0,6832,6831,1,0,0,0,6832,6833,1,0,0,0,6833,6834, + 1,0,0,0,6834,6835,3,1436,718,0,6835,6836,5,80,0,0,6836,6837,3,1412, + 706,0,6837,6838,5,309,0,0,6838,6839,5,94,0,0,6839,6840,3,1436,718, + 0,6840,7124,1,0,0,0,6841,6842,5,138,0,0,6842,6843,5,296,0,0,6843, + 6844,3,670,335,0,6844,6845,5,309,0,0,6845,6846,5,94,0,0,6846,6847, + 3,1430,715,0,6847,7124,1,0,0,0,6848,6849,5,138,0,0,6849,6850,5,452, + 0,0,6850,6851,3,1436,718,0,6851,6852,5,309,0,0,6852,6853,5,94,0, + 0,6853,6854,3,1436,718,0,6854,7124,1,0,0,0,6855,6856,5,138,0,0,6856, + 6857,5,442,0,0,6857,6858,3,666,333,0,6858,6859,5,309,0,0,6859,6860, + 5,94,0,0,6860,6861,3,1436,718,0,6861,7124,1,0,0,0,6862,6863,5,138, + 0,0,6863,6864,5,323,0,0,6864,6865,3,1422,711,0,6865,6866,5,309,0, + 0,6866,6867,5,94,0,0,6867,6868,3,48,24,0,6868,7124,1,0,0,0,6869, + 6870,5,138,0,0,6870,6871,5,331,0,0,6871,6872,3,1436,718,0,6872,6873, + 5,309,0,0,6873,6874,5,94,0,0,6874,6875,3,1436,718,0,6875,7124,1, + 0,0,0,6876,6877,5,138,0,0,6877,6878,5,451,0,0,6878,6879,3,1436,718, + 0,6879,6880,5,309,0,0,6880,6881,5,94,0,0,6881,6882,3,1436,718,0, + 6882,7124,1,0,0,0,6883,6884,5,138,0,0,6884,6886,5,92,0,0,6885,6887, + 3,748,374,0,6886,6885,1,0,0,0,6886,6887,1,0,0,0,6887,6888,1,0,0, + 0,6888,6889,3,1118,559,0,6889,6890,5,309,0,0,6890,6891,5,94,0,0, + 6891,6892,3,1404,702,0,6892,7124,1,0,0,0,6893,6894,5,138,0,0,6894, + 6896,5,328,0,0,6895,6897,3,748,374,0,6896,6895,1,0,0,0,6896,6897, + 1,0,0,0,6897,6898,1,0,0,0,6898,6899,3,1412,706,0,6899,6900,5,309, + 0,0,6900,6901,5,94,0,0,6901,6902,3,1436,718,0,6902,7124,1,0,0,0, + 6903,6904,5,138,0,0,6904,6906,5,376,0,0,6905,6907,3,748,374,0,6906, + 6905,1,0,0,0,6906,6907,1,0,0,0,6907,6908,1,0,0,0,6908,6909,3,1410, + 705,0,6909,6910,5,309,0,0,6910,6911,5,94,0,0,6911,6912,3,1408,704, + 0,6912,7124,1,0,0,0,6913,6914,5,138,0,0,6914,6915,5,259,0,0,6915, + 6917,5,376,0,0,6916,6918,3,748,374,0,6917,6916,1,0,0,0,6917,6918, + 1,0,0,0,6918,6919,1,0,0,0,6919,6920,3,1410,705,0,6920,6921,5,309, + 0,0,6921,6922,5,94,0,0,6922,6923,3,1408,704,0,6923,7124,1,0,0,0, + 6924,6925,5,138,0,0,6925,6927,5,226,0,0,6926,6928,3,748,374,0,6927, + 6926,1,0,0,0,6927,6928,1,0,0,0,6928,6929,1,0,0,0,6929,6930,3,1412, + 706,0,6930,6931,5,309,0,0,6931,6932,5,94,0,0,6932,6933,3,1436,718, + 0,6933,7124,1,0,0,0,6934,6935,5,138,0,0,6935,6936,5,63,0,0,6936, + 6938,5,92,0,0,6937,6939,3,748,374,0,6938,6937,1,0,0,0,6938,6939, + 1,0,0,0,6939,6940,1,0,0,0,6940,6941,3,1118,559,0,6941,6942,5,309, + 0,0,6942,6943,5,94,0,0,6943,6944,3,1404,702,0,6944,7124,1,0,0,0, + 6945,6946,5,138,0,0,6946,6948,5,92,0,0,6947,6949,3,748,374,0,6948, + 6947,1,0,0,0,6948,6949,1,0,0,0,6949,6950,1,0,0,0,6950,6951,3,1118, + 559,0,6951,6953,5,309,0,0,6952,6954,5,44,0,0,6953,6952,1,0,0,0,6953, + 6954,1,0,0,0,6954,6955,1,0,0,0,6955,6956,3,1432,716,0,6956,6957, + 5,94,0,0,6957,6958,3,1434,717,0,6958,7124,1,0,0,0,6959,6960,5,138, + 0,0,6960,6962,5,376,0,0,6961,6963,3,748,374,0,6962,6961,1,0,0,0, + 6962,6963,1,0,0,0,6963,6964,1,0,0,0,6964,6965,3,1410,705,0,6965, + 6967,5,309,0,0,6966,6968,5,44,0,0,6967,6966,1,0,0,0,6967,6968,1, + 0,0,0,6968,6969,1,0,0,0,6969,6970,3,1432,716,0,6970,6971,5,94,0, + 0,6971,6972,3,1434,717,0,6972,7124,1,0,0,0,6973,6974,5,138,0,0,6974, + 6975,5,259,0,0,6975,6977,5,376,0,0,6976,6978,3,748,374,0,6977,6976, + 1,0,0,0,6977,6978,1,0,0,0,6978,6979,1,0,0,0,6979,6980,3,1410,705, + 0,6980,6982,5,309,0,0,6981,6983,5,44,0,0,6982,6981,1,0,0,0,6982, + 6983,1,0,0,0,6983,6984,1,0,0,0,6984,6985,3,1432,716,0,6985,6986, + 5,94,0,0,6986,6987,3,1434,717,0,6987,7124,1,0,0,0,6988,6989,5,138, + 0,0,6989,6991,5,92,0,0,6990,6992,3,748,374,0,6991,6990,1,0,0,0,6991, + 6992,1,0,0,0,6992,6993,1,0,0,0,6993,6994,3,1118,559,0,6994,6995, + 5,309,0,0,6995,6996,5,45,0,0,6996,6997,3,1436,718,0,6997,6998,5, + 94,0,0,6998,6999,3,1436,718,0,6999,7124,1,0,0,0,7000,7001,5,138, + 0,0,7001,7002,5,63,0,0,7002,7004,5,92,0,0,7003,7005,3,748,374,0, + 7004,7003,1,0,0,0,7004,7005,1,0,0,0,7005,7006,1,0,0,0,7006,7007, + 3,1118,559,0,7007,7009,5,309,0,0,7008,7010,5,44,0,0,7009,7008,1, + 0,0,0,7009,7010,1,0,0,0,7010,7011,1,0,0,0,7011,7012,3,1432,716,0, + 7012,7013,5,94,0,0,7013,7014,3,1434,717,0,7014,7124,1,0,0,0,7015, + 7016,5,138,0,0,7016,7017,5,321,0,0,7017,7018,3,1436,718,0,7018,7019, + 5,80,0,0,7019,7020,3,1412,706,0,7020,7021,5,309,0,0,7021,7022,5, + 94,0,0,7022,7023,3,1436,718,0,7023,7124,1,0,0,0,7024,7025,5,138, + 0,0,7025,7026,5,357,0,0,7026,7027,3,1436,718,0,7027,7028,5,80,0, + 0,7028,7029,3,1412,706,0,7029,7030,5,309,0,0,7030,7031,5,94,0,0, + 7031,7032,3,1436,718,0,7032,7124,1,0,0,0,7033,7034,5,138,0,0,7034, + 7035,5,198,0,0,7035,7036,5,357,0,0,7036,7037,3,1436,718,0,7037,7038, + 5,309,0,0,7038,7039,5,94,0,0,7039,7040,3,1436,718,0,7040,7124,1, + 0,0,0,7041,7042,5,138,0,0,7042,7043,5,318,0,0,7043,7044,3,1468,734, + 0,7044,7045,5,309,0,0,7045,7046,5,94,0,0,7046,7047,3,1468,734,0, + 7047,7124,1,0,0,0,7048,7049,5,138,0,0,7049,7050,5,99,0,0,7050,7051, + 3,1468,734,0,7051,7052,5,309,0,0,7052,7053,5,94,0,0,7053,7054,3, + 1468,734,0,7054,7124,1,0,0,0,7055,7056,5,138,0,0,7056,7057,5,351, + 0,0,7057,7058,3,1402,701,0,7058,7059,5,309,0,0,7059,7060,5,94,0, + 0,7060,7061,3,1400,700,0,7061,7124,1,0,0,0,7062,7063,5,138,0,0,7063, + 7064,5,342,0,0,7064,7065,3,558,279,0,7065,7066,5,309,0,0,7066,7067, + 5,94,0,0,7067,7068,3,1436,718,0,7068,7124,1,0,0,0,7069,7070,5,138, + 0,0,7070,7071,5,355,0,0,7071,7072,5,325,0,0,7072,7073,5,283,0,0, + 7073,7074,3,558,279,0,7074,7075,5,309,0,0,7075,7076,5,94,0,0,7076, + 7077,3,1436,718,0,7077,7124,1,0,0,0,7078,7079,5,138,0,0,7079,7080, + 5,355,0,0,7080,7081,5,325,0,0,7081,7082,5,185,0,0,7082,7083,3,558, + 279,0,7083,7084,5,309,0,0,7084,7085,5,94,0,0,7085,7086,3,1436,718, + 0,7086,7124,1,0,0,0,7087,7088,5,138,0,0,7088,7089,5,355,0,0,7089, + 7090,5,325,0,0,7090,7091,5,353,0,0,7091,7092,3,558,279,0,7092,7093, + 5,309,0,0,7093,7094,5,94,0,0,7094,7095,3,1436,718,0,7095,7124,1, + 0,0,0,7096,7097,5,138,0,0,7097,7098,5,355,0,0,7098,7099,5,325,0, + 0,7099,7100,5,163,0,0,7100,7101,3,558,279,0,7101,7102,5,309,0,0, + 7102,7103,5,94,0,0,7103,7104,3,1436,718,0,7104,7124,1,0,0,0,7105, + 7106,5,138,0,0,7106,7107,5,360,0,0,7107,7108,3,558,279,0,7108,7109, + 5,309,0,0,7109,7110,5,94,0,0,7110,7111,3,1436,718,0,7111,7124,1, + 0,0,0,7112,7113,5,138,0,0,7113,7114,5,360,0,0,7114,7115,3,558,279, + 0,7115,7116,5,309,0,0,7116,7117,5,143,0,0,7117,7118,3,1436,718,0, + 7118,7119,5,94,0,0,7119,7121,3,1436,718,0,7120,7122,3,124,62,0,7121, + 7120,1,0,0,0,7121,7122,1,0,0,0,7122,7124,1,0,0,0,7123,6732,1,0,0, + 0,7123,6739,1,0,0,0,7123,6746,1,0,0,0,7123,6753,1,0,0,0,7123,6760, + 1,0,0,0,7123,6767,1,0,0,0,7123,6776,1,0,0,0,7123,6785,1,0,0,0,7123, + 6792,1,0,0,0,7123,6799,1,0,0,0,7123,6809,1,0,0,0,7123,6819,1,0,0, + 0,7123,6829,1,0,0,0,7123,6841,1,0,0,0,7123,6848,1,0,0,0,7123,6855, + 1,0,0,0,7123,6862,1,0,0,0,7123,6869,1,0,0,0,7123,6876,1,0,0,0,7123, + 6883,1,0,0,0,7123,6893,1,0,0,0,7123,6903,1,0,0,0,7123,6913,1,0,0, + 0,7123,6924,1,0,0,0,7123,6934,1,0,0,0,7123,6945,1,0,0,0,7123,6959, + 1,0,0,0,7123,6973,1,0,0,0,7123,6988,1,0,0,0,7123,7000,1,0,0,0,7123, + 7015,1,0,0,0,7123,7024,1,0,0,0,7123,7033,1,0,0,0,7123,7041,1,0,0, + 0,7123,7048,1,0,0,0,7123,7055,1,0,0,0,7123,7062,1,0,0,0,7123,7069, + 1,0,0,0,7123,7078,1,0,0,0,7123,7087,1,0,0,0,7123,7096,1,0,0,0,7123, + 7105,1,0,0,0,7123,7112,1,0,0,0,7124,767,1,0,0,0,7125,7126,5,333, + 0,0,7126,7127,5,174,0,0,7127,769,1,0,0,0,7128,7129,5,138,0,0,7129, + 7130,5,211,0,0,7130,7132,3,674,337,0,7131,7133,3,772,386,0,7132, + 7131,1,0,0,0,7132,7133,1,0,0,0,7133,7134,1,0,0,0,7134,7135,5,462, + 0,0,7135,7136,5,80,0,0,7136,7137,5,204,0,0,7137,7138,3,1436,718, + 0,7138,7198,1,0,0,0,7139,7140,5,138,0,0,7140,7141,5,296,0,0,7141, + 7143,3,670,335,0,7142,7144,3,772,386,0,7143,7142,1,0,0,0,7143,7144, + 1,0,0,0,7144,7145,1,0,0,0,7145,7146,5,462,0,0,7146,7147,5,80,0,0, + 7147,7148,5,204,0,0,7148,7149,3,1436,718,0,7149,7198,1,0,0,0,7150, + 7151,5,138,0,0,7151,7152,5,442,0,0,7152,7154,3,666,333,0,7153,7155, + 3,772,386,0,7154,7153,1,0,0,0,7154,7155,1,0,0,0,7155,7156,1,0,0, + 0,7156,7157,5,462,0,0,7157,7158,5,80,0,0,7158,7159,5,204,0,0,7159, + 7160,3,1436,718,0,7160,7198,1,0,0,0,7161,7162,5,138,0,0,7162,7163, + 5,357,0,0,7163,7164,3,1436,718,0,7164,7165,5,80,0,0,7165,7167,3, + 1412,706,0,7166,7168,3,772,386,0,7167,7166,1,0,0,0,7167,7168,1,0, + 0,0,7168,7169,1,0,0,0,7169,7170,5,462,0,0,7170,7171,5,80,0,0,7171, + 7172,5,204,0,0,7172,7173,3,1436,718,0,7173,7198,1,0,0,0,7174,7175, + 5,138,0,0,7175,7176,5,259,0,0,7176,7177,5,376,0,0,7177,7179,3,1410, + 705,0,7178,7180,3,772,386,0,7179,7178,1,0,0,0,7179,7180,1,0,0,0, + 7180,7181,1,0,0,0,7181,7182,5,462,0,0,7182,7183,5,80,0,0,7183,7184, + 5,204,0,0,7184,7185,3,1436,718,0,7185,7198,1,0,0,0,7186,7187,5,138, + 0,0,7187,7188,5,226,0,0,7188,7190,3,1412,706,0,7189,7191,3,772,386, + 0,7190,7189,1,0,0,0,7190,7191,1,0,0,0,7191,7192,1,0,0,0,7192,7193, + 5,462,0,0,7193,7194,5,80,0,0,7194,7195,5,204,0,0,7195,7196,3,1436, + 718,0,7196,7198,1,0,0,0,7197,7128,1,0,0,0,7197,7139,1,0,0,0,7197, + 7150,1,0,0,0,7197,7161,1,0,0,0,7197,7174,1,0,0,0,7197,7186,1,0,0, + 0,7198,771,1,0,0,0,7199,7200,5,269,0,0,7200,773,1,0,0,0,7201,7202, + 5,138,0,0,7202,7203,5,136,0,0,7203,7204,3,698,349,0,7204,7205,5, + 333,0,0,7205,7206,5,323,0,0,7206,7207,3,1422,711,0,7207,7387,1,0, + 0,0,7208,7209,5,138,0,0,7209,7210,5,108,0,0,7210,7211,3,558,279, + 0,7211,7212,5,333,0,0,7212,7213,5,323,0,0,7213,7214,3,1422,711,0, + 7214,7387,1,0,0,0,7215,7216,5,138,0,0,7216,7217,5,168,0,0,7217,7218, + 3,558,279,0,7218,7219,5,333,0,0,7219,7220,5,323,0,0,7220,7221,3, + 1422,711,0,7221,7387,1,0,0,0,7222,7223,5,138,0,0,7223,7224,5,189, + 0,0,7224,7225,3,558,279,0,7225,7226,5,333,0,0,7226,7227,5,323,0, + 0,7227,7228,3,1422,711,0,7228,7387,1,0,0,0,7229,7230,5,138,0,0,7230, + 7231,5,204,0,0,7231,7232,3,1436,718,0,7232,7233,5,333,0,0,7233,7234, + 5,323,0,0,7234,7235,3,1422,711,0,7235,7387,1,0,0,0,7236,7237,5,138, + 0,0,7237,7238,5,211,0,0,7238,7239,3,674,337,0,7239,7240,5,333,0, + 0,7240,7241,5,323,0,0,7241,7242,3,1422,711,0,7242,7387,1,0,0,0,7243, + 7244,5,138,0,0,7244,7245,5,278,0,0,7245,7246,3,736,368,0,7246,7247, + 5,333,0,0,7247,7248,5,323,0,0,7248,7249,3,1422,711,0,7249,7387,1, + 0,0,0,7250,7251,5,138,0,0,7251,7252,5,278,0,0,7252,7253,5,156,0, + 0,7253,7254,3,558,279,0,7254,7255,5,100,0,0,7255,7256,3,1436,718, + 0,7256,7257,5,333,0,0,7257,7258,5,323,0,0,7258,7259,3,1422,711,0, + 7259,7387,1,0,0,0,7260,7261,5,138,0,0,7261,7262,5,278,0,0,7262,7263, + 5,206,0,0,7263,7264,3,558,279,0,7264,7265,5,100,0,0,7265,7266,3, + 1436,718,0,7266,7267,5,333,0,0,7267,7268,5,323,0,0,7268,7269,3,1422, + 711,0,7269,7387,1,0,0,0,7270,7271,5,138,0,0,7271,7272,5,296,0,0, + 7272,7273,3,670,335,0,7273,7274,5,333,0,0,7274,7275,5,323,0,0,7275, + 7276,3,1422,711,0,7276,7387,1,0,0,0,7277,7278,5,138,0,0,7278,7279, + 5,442,0,0,7279,7280,3,666,333,0,7280,7281,5,333,0,0,7281,7282,5, + 323,0,0,7282,7283,3,1422,711,0,7283,7387,1,0,0,0,7284,7285,5,138, + 0,0,7285,7287,5,92,0,0,7286,7288,3,748,374,0,7287,7286,1,0,0,0,7287, + 7288,1,0,0,0,7288,7289,1,0,0,0,7289,7290,3,1118,559,0,7290,7291, + 5,333,0,0,7291,7292,5,323,0,0,7292,7293,3,1422,711,0,7293,7387,1, + 0,0,0,7294,7295,5,138,0,0,7295,7296,5,342,0,0,7296,7297,3,558,279, + 0,7297,7298,5,333,0,0,7298,7299,5,323,0,0,7299,7300,3,1422,711,0, + 7300,7387,1,0,0,0,7301,7302,5,138,0,0,7302,7303,5,355,0,0,7303,7304, + 5,325,0,0,7304,7305,5,283,0,0,7305,7306,3,558,279,0,7306,7307,5, + 333,0,0,7307,7308,5,323,0,0,7308,7309,3,1422,711,0,7309,7387,1,0, + 0,0,7310,7311,5,138,0,0,7311,7312,5,355,0,0,7312,7313,5,325,0,0, + 7313,7314,5,185,0,0,7314,7315,3,558,279,0,7315,7316,5,333,0,0,7316, + 7317,5,323,0,0,7317,7318,3,1422,711,0,7318,7387,1,0,0,0,7319,7320, + 5,138,0,0,7320,7321,5,355,0,0,7321,7322,5,325,0,0,7322,7323,5,353, + 0,0,7323,7324,3,558,279,0,7324,7325,5,333,0,0,7325,7326,5,323,0, + 0,7326,7327,3,1422,711,0,7327,7387,1,0,0,0,7328,7329,5,138,0,0,7329, + 7330,5,355,0,0,7330,7331,5,325,0,0,7331,7332,5,163,0,0,7332,7333, + 3,558,279,0,7333,7334,5,333,0,0,7334,7335,5,323,0,0,7335,7336,3, + 1422,711,0,7336,7387,1,0,0,0,7337,7338,5,138,0,0,7338,7340,5,328, + 0,0,7339,7341,3,748,374,0,7340,7339,1,0,0,0,7340,7341,1,0,0,0,7341, + 7342,1,0,0,0,7342,7343,3,1412,706,0,7343,7344,5,333,0,0,7344,7345, + 5,323,0,0,7345,7346,3,1422,711,0,7346,7387,1,0,0,0,7347,7348,5,138, + 0,0,7348,7350,5,376,0,0,7349,7351,3,748,374,0,7350,7349,1,0,0,0, + 7350,7351,1,0,0,0,7351,7352,1,0,0,0,7352,7353,3,1410,705,0,7353, + 7354,5,333,0,0,7354,7355,5,323,0,0,7355,7356,3,1422,711,0,7356,7387, + 1,0,0,0,7357,7358,5,138,0,0,7358,7359,5,259,0,0,7359,7361,5,376, + 0,0,7360,7362,3,748,374,0,7361,7360,1,0,0,0,7361,7362,1,0,0,0,7362, + 7363,1,0,0,0,7363,7364,3,1410,705,0,7364,7365,5,333,0,0,7365,7366, + 5,323,0,0,7366,7367,3,1422,711,0,7367,7387,1,0,0,0,7368,7369,5,138, + 0,0,7369,7370,5,63,0,0,7370,7372,5,92,0,0,7371,7373,3,748,374,0, + 7372,7371,1,0,0,0,7372,7373,1,0,0,0,7373,7374,1,0,0,0,7374,7375, + 3,1118,559,0,7375,7376,5,333,0,0,7376,7377,5,323,0,0,7377,7378,3, + 1422,711,0,7378,7387,1,0,0,0,7379,7380,5,138,0,0,7380,7381,5,360, + 0,0,7381,7382,3,558,279,0,7382,7383,5,333,0,0,7383,7384,5,323,0, + 0,7384,7385,3,1422,711,0,7385,7387,1,0,0,0,7386,7201,1,0,0,0,7386, + 7208,1,0,0,0,7386,7215,1,0,0,0,7386,7222,1,0,0,0,7386,7229,1,0,0, + 0,7386,7236,1,0,0,0,7386,7243,1,0,0,0,7386,7250,1,0,0,0,7386,7260, + 1,0,0,0,7386,7270,1,0,0,0,7386,7277,1,0,0,0,7386,7284,1,0,0,0,7386, + 7294,1,0,0,0,7386,7301,1,0,0,0,7386,7310,1,0,0,0,7386,7319,1,0,0, + 0,7386,7328,1,0,0,0,7386,7337,1,0,0,0,7386,7347,1,0,0,0,7386,7357, + 1,0,0,0,7386,7368,1,0,0,0,7386,7379,1,0,0,0,7387,775,1,0,0,0,7388, + 7389,5,138,0,0,7389,7390,5,278,0,0,7390,7391,3,736,368,0,7391,7392, + 5,333,0,0,7392,7393,5,2,0,0,7393,7394,3,778,389,0,7394,7395,5,3, + 0,0,7395,777,1,0,0,0,7396,7401,3,780,390,0,7397,7398,5,6,0,0,7398, + 7400,3,780,390,0,7399,7397,1,0,0,0,7400,7403,1,0,0,0,7401,7399,1, + 0,0,0,7401,7402,1,0,0,0,7402,779,1,0,0,0,7403,7401,1,0,0,0,7404, + 7405,3,1490,745,0,7405,7406,5,10,0,0,7406,7407,5,407,0,0,7407,7413, + 1,0,0,0,7408,7409,3,1490,745,0,7409,7410,5,10,0,0,7410,7411,3,782, + 391,0,7411,7413,1,0,0,0,7412,7404,1,0,0,0,7412,7408,1,0,0,0,7413, + 781,1,0,0,0,7414,7420,3,688,344,0,7415,7420,3,1502,751,0,7416,7420, + 3,1324,662,0,7417,7420,3,322,161,0,7418,7420,3,1458,729,0,7419,7414, + 1,0,0,0,7419,7415,1,0,0,0,7419,7416,1,0,0,0,7419,7417,1,0,0,0,7419, + 7418,1,0,0,0,7420,783,1,0,0,0,7421,7422,5,138,0,0,7422,7423,5,360, + 0,0,7423,7424,3,558,279,0,7424,7425,5,333,0,0,7425,7426,5,2,0,0, + 7426,7427,3,778,389,0,7427,7428,5,3,0,0,7428,785,1,0,0,0,7429,7430, + 5,138,0,0,7430,7431,5,136,0,0,7431,7432,3,698,349,0,7432,7433,5, + 282,0,0,7433,7434,5,94,0,0,7434,7435,3,1470,735,0,7435,7615,1,0, + 0,0,7436,7437,5,138,0,0,7437,7438,5,108,0,0,7438,7439,3,558,279, + 0,7439,7440,5,282,0,0,7440,7441,5,94,0,0,7441,7442,3,1470,735,0, + 7442,7615,1,0,0,0,7443,7444,5,138,0,0,7444,7445,5,168,0,0,7445,7446, + 3,558,279,0,7446,7447,5,282,0,0,7447,7448,5,94,0,0,7448,7449,3,1470, + 735,0,7449,7615,1,0,0,0,7450,7451,5,138,0,0,7451,7452,5,175,0,0, + 7452,7453,3,1420,710,0,7453,7454,5,282,0,0,7454,7455,5,94,0,0,7455, + 7456,3,1470,735,0,7456,7615,1,0,0,0,7457,7458,5,138,0,0,7458,7459, + 5,189,0,0,7459,7460,3,558,279,0,7460,7461,5,282,0,0,7461,7462,5, + 94,0,0,7462,7463,3,1470,735,0,7463,7615,1,0,0,0,7464,7465,5,138, + 0,0,7465,7466,5,211,0,0,7466,7467,3,674,337,0,7467,7468,5,282,0, + 0,7468,7469,5,94,0,0,7469,7470,3,1470,735,0,7470,7615,1,0,0,0,7471, + 7473,5,138,0,0,7472,7474,3,338,169,0,7473,7472,1,0,0,0,7473,7474, + 1,0,0,0,7474,7475,1,0,0,0,7475,7476,5,247,0,0,7476,7477,3,1436,718, + 0,7477,7478,5,282,0,0,7478,7479,5,94,0,0,7479,7480,3,1470,735,0, + 7480,7615,1,0,0,0,7481,7482,5,138,0,0,7482,7483,5,248,0,0,7483,7484, + 5,274,0,0,7484,7485,3,322,161,0,7485,7486,5,282,0,0,7486,7487,5, + 94,0,0,7487,7488,3,1470,735,0,7488,7615,1,0,0,0,7489,7490,5,138, + 0,0,7490,7491,5,278,0,0,7491,7492,3,736,368,0,7492,7493,5,282,0, + 0,7493,7494,5,94,0,0,7494,7495,3,1470,735,0,7495,7615,1,0,0,0,7496, + 7497,5,138,0,0,7497,7498,5,278,0,0,7498,7499,5,156,0,0,7499,7500, + 3,558,279,0,7500,7501,5,100,0,0,7501,7502,3,1436,718,0,7502,7503, + 5,282,0,0,7503,7504,5,94,0,0,7504,7505,3,1470,735,0,7505,7615,1, + 0,0,0,7506,7507,5,138,0,0,7507,7508,5,278,0,0,7508,7509,5,206,0, + 0,7509,7510,3,558,279,0,7510,7511,5,100,0,0,7511,7512,3,1436,718, + 0,7512,7513,5,282,0,0,7513,7514,5,94,0,0,7514,7515,3,1470,735,0, + 7515,7615,1,0,0,0,7516,7517,5,138,0,0,7517,7518,5,296,0,0,7518,7519, + 3,670,335,0,7519,7520,5,282,0,0,7520,7521,5,94,0,0,7521,7522,3,1470, + 735,0,7522,7615,1,0,0,0,7523,7524,5,138,0,0,7524,7525,5,442,0,0, + 7525,7526,3,666,333,0,7526,7527,5,282,0,0,7527,7528,5,94,0,0,7528, + 7529,3,1470,735,0,7529,7615,1,0,0,0,7530,7531,5,138,0,0,7531,7532, + 5,323,0,0,7532,7533,3,1422,711,0,7533,7534,5,282,0,0,7534,7535,5, + 94,0,0,7535,7536,3,1470,735,0,7536,7615,1,0,0,0,7537,7538,5,138, + 0,0,7538,7539,5,360,0,0,7539,7540,3,558,279,0,7540,7541,5,282,0, + 0,7541,7542,5,94,0,0,7542,7543,3,1470,735,0,7543,7615,1,0,0,0,7544, + 7545,5,138,0,0,7545,7546,5,351,0,0,7546,7547,3,1402,701,0,7547,7548, + 5,282,0,0,7548,7549,5,94,0,0,7549,7550,3,1470,735,0,7550,7615,1, + 0,0,0,7551,7552,5,138,0,0,7552,7553,5,342,0,0,7553,7554,3,558,279, + 0,7554,7555,5,282,0,0,7555,7556,5,94,0,0,7556,7557,3,1470,735,0, + 7557,7615,1,0,0,0,7558,7559,5,138,0,0,7559,7560,5,355,0,0,7560,7561, + 5,325,0,0,7561,7562,5,185,0,0,7562,7563,3,558,279,0,7563,7564,5, + 282,0,0,7564,7565,5,94,0,0,7565,7566,3,1470,735,0,7566,7615,1,0, + 0,0,7567,7568,5,138,0,0,7568,7569,5,355,0,0,7569,7570,5,325,0,0, + 7570,7571,5,163,0,0,7571,7572,3,558,279,0,7572,7573,5,282,0,0,7573, + 7574,5,94,0,0,7574,7575,3,1470,735,0,7575,7615,1,0,0,0,7576,7577, + 5,138,0,0,7577,7578,5,63,0,0,7578,7579,5,174,0,0,7579,7580,5,381, + 0,0,7580,7581,3,1436,718,0,7581,7582,5,282,0,0,7582,7583,5,94,0, + 0,7583,7584,3,1470,735,0,7584,7615,1,0,0,0,7585,7586,5,138,0,0,7586, + 7587,5,331,0,0,7587,7588,3,1436,718,0,7588,7589,5,282,0,0,7589,7590, + 5,94,0,0,7590,7591,3,1470,735,0,7591,7615,1,0,0,0,7592,7593,5,138, + 0,0,7593,7594,5,198,0,0,7594,7595,5,357,0,0,7595,7596,3,1436,718, + 0,7596,7597,5,282,0,0,7597,7598,5,94,0,0,7598,7599,3,1470,735,0, + 7599,7615,1,0,0,0,7600,7601,5,138,0,0,7601,7602,5,452,0,0,7602,7603, + 3,1436,718,0,7603,7604,5,282,0,0,7604,7605,5,94,0,0,7605,7606,3, + 1470,735,0,7606,7615,1,0,0,0,7607,7608,5,138,0,0,7608,7609,5,451, + 0,0,7609,7610,3,1436,718,0,7610,7611,5,282,0,0,7611,7612,5,94,0, + 0,7612,7613,3,1470,735,0,7613,7615,1,0,0,0,7614,7429,1,0,0,0,7614, + 7436,1,0,0,0,7614,7443,1,0,0,0,7614,7450,1,0,0,0,7614,7457,1,0,0, + 0,7614,7464,1,0,0,0,7614,7471,1,0,0,0,7614,7481,1,0,0,0,7614,7489, + 1,0,0,0,7614,7496,1,0,0,0,7614,7506,1,0,0,0,7614,7516,1,0,0,0,7614, + 7523,1,0,0,0,7614,7530,1,0,0,0,7614,7537,1,0,0,0,7614,7544,1,0,0, + 0,7614,7551,1,0,0,0,7614,7558,1,0,0,0,7614,7567,1,0,0,0,7614,7576, + 1,0,0,0,7614,7585,1,0,0,0,7614,7592,1,0,0,0,7614,7600,1,0,0,0,7614, + 7607,1,0,0,0,7615,787,1,0,0,0,7616,7617,5,46,0,0,7617,7618,5,452, + 0,0,7618,7620,3,1436,718,0,7619,7621,3,790,395,0,7620,7619,1,0,0, + 0,7620,7621,1,0,0,0,7621,7623,1,0,0,0,7622,7624,3,710,355,0,7623, + 7622,1,0,0,0,7623,7624,1,0,0,0,7624,789,1,0,0,0,7625,7626,3,792, + 396,0,7626,791,1,0,0,0,7627,7628,5,62,0,0,7628,7629,5,92,0,0,7629, + 7634,3,1124,562,0,7630,7631,5,62,0,0,7631,7632,5,30,0,0,7632,7634, + 5,350,0,0,7633,7627,1,0,0,0,7633,7630,1,0,0,0,7634,793,1,0,0,0,7635, + 7636,5,138,0,0,7636,7637,5,452,0,0,7637,7638,3,1436,718,0,7638,7639, + 5,333,0,0,7639,7640,3,496,248,0,7640,7674,1,0,0,0,7641,7642,5,138, + 0,0,7642,7643,5,452,0,0,7643,7644,3,1436,718,0,7644,7645,5,133,0, + 0,7645,7646,3,1126,563,0,7646,7674,1,0,0,0,7647,7648,5,138,0,0,7648, + 7649,5,452,0,0,7649,7650,3,1436,718,0,7650,7651,5,333,0,0,7651,7652, + 3,1126,563,0,7652,7674,1,0,0,0,7653,7654,5,138,0,0,7654,7655,5,452, + 0,0,7655,7656,3,1436,718,0,7656,7657,5,191,0,0,7657,7658,3,1126, + 563,0,7658,7674,1,0,0,0,7659,7660,5,138,0,0,7660,7661,5,452,0,0, + 7661,7662,3,1436,718,0,7662,7663,5,282,0,0,7663,7664,5,94,0,0,7664, + 7665,3,1470,735,0,7665,7674,1,0,0,0,7666,7667,5,138,0,0,7667,7668, + 5,452,0,0,7668,7669,3,1436,718,0,7669,7670,5,309,0,0,7670,7671,5, + 94,0,0,7671,7672,3,1436,718,0,7672,7674,1,0,0,0,7673,7635,1,0,0, + 0,7673,7641,1,0,0,0,7673,7647,1,0,0,0,7673,7653,1,0,0,0,7673,7659, + 1,0,0,0,7673,7666,1,0,0,0,7674,795,1,0,0,0,7675,7676,5,46,0,0,7676, + 7677,5,451,0,0,7677,7678,3,1436,718,0,7678,7679,5,164,0,0,7679,7680, + 3,1458,729,0,7680,7681,5,452,0,0,7681,7683,3,798,399,0,7682,7684, + 3,710,355,0,7683,7682,1,0,0,0,7683,7684,1,0,0,0,7684,797,1,0,0,0, + 7685,7690,3,800,400,0,7686,7687,5,6,0,0,7687,7689,3,800,400,0,7688, + 7686,1,0,0,0,7689,7692,1,0,0,0,7690,7688,1,0,0,0,7690,7691,1,0,0, + 0,7691,799,1,0,0,0,7692,7690,1,0,0,0,7693,7694,3,1490,745,0,7694, + 801,1,0,0,0,7695,7696,5,138,0,0,7696,7697,5,451,0,0,7697,7698,3, + 1436,718,0,7698,7699,5,333,0,0,7699,7700,3,496,248,0,7700,7774,1, + 0,0,0,7701,7702,5,138,0,0,7702,7703,5,451,0,0,7703,7704,3,1436,718, + 0,7704,7705,5,164,0,0,7705,7706,3,1458,729,0,7706,7774,1,0,0,0,7707, + 7708,5,138,0,0,7708,7709,5,451,0,0,7709,7710,3,1436,718,0,7710,7711, + 5,305,0,0,7711,7713,5,452,0,0,7712,7714,3,710,355,0,7713,7712,1, + 0,0,0,7713,7714,1,0,0,0,7714,7774,1,0,0,0,7715,7716,5,138,0,0,7716, + 7717,5,451,0,0,7717,7718,3,1436,718,0,7718,7719,5,333,0,0,7719,7720, + 5,452,0,0,7720,7722,3,798,399,0,7721,7723,3,710,355,0,7722,7721, + 1,0,0,0,7722,7723,1,0,0,0,7723,7774,1,0,0,0,7724,7725,5,138,0,0, + 7725,7726,5,451,0,0,7726,7727,3,1436,718,0,7727,7728,5,133,0,0,7728, + 7729,5,452,0,0,7729,7731,3,798,399,0,7730,7732,3,710,355,0,7731, + 7730,1,0,0,0,7731,7732,1,0,0,0,7732,7774,1,0,0,0,7733,7734,5,138, + 0,0,7734,7735,5,451,0,0,7735,7736,3,1436,718,0,7736,7737,5,191,0, + 0,7737,7738,5,452,0,0,7738,7740,3,798,399,0,7739,7741,3,710,355, + 0,7740,7739,1,0,0,0,7740,7741,1,0,0,0,7741,7774,1,0,0,0,7742,7743, + 5,138,0,0,7743,7744,5,451,0,0,7744,7745,3,1436,718,0,7745,7746,5, + 193,0,0,7746,7774,1,0,0,0,7747,7748,5,138,0,0,7748,7749,5,451,0, + 0,7749,7750,3,1436,718,0,7750,7751,5,186,0,0,7751,7774,1,0,0,0,7752, + 7753,5,138,0,0,7753,7754,5,451,0,0,7754,7755,3,1436,718,0,7755,7756, + 5,333,0,0,7756,7757,3,496,248,0,7757,7774,1,0,0,0,7758,7759,5,138, + 0,0,7759,7760,5,451,0,0,7760,7761,3,1436,718,0,7761,7762,5,465,0, + 0,7762,7763,5,2,0,0,7763,7764,3,508,254,0,7764,7765,5,3,0,0,7765, + 7774,1,0,0,0,7766,7767,5,138,0,0,7767,7768,5,451,0,0,7768,7769,3, + 1436,718,0,7769,7770,5,282,0,0,7770,7771,5,94,0,0,7771,7772,3,1470, + 735,0,7772,7774,1,0,0,0,7773,7695,1,0,0,0,7773,7701,1,0,0,0,7773, + 7707,1,0,0,0,7773,7715,1,0,0,0,7773,7724,1,0,0,0,7773,7733,1,0,0, + 0,7773,7742,1,0,0,0,7773,7747,1,0,0,0,7773,7752,1,0,0,0,7773,7758, + 1,0,0,0,7773,7766,1,0,0,0,7774,803,1,0,0,0,7775,7777,5,46,0,0,7776, + 7778,3,658,329,0,7777,7776,1,0,0,0,7777,7778,1,0,0,0,7778,7779,1, + 0,0,0,7779,7780,5,321,0,0,7780,7781,3,1436,718,0,7781,7782,5,36, + 0,0,7782,7783,5,80,0,0,7783,7784,3,814,407,0,7784,7785,5,94,0,0, + 7785,7787,3,1412,706,0,7786,7788,3,1144,572,0,7787,7786,1,0,0,0, + 7787,7788,1,0,0,0,7788,7789,1,0,0,0,7789,7791,5,57,0,0,7790,7792, + 3,816,408,0,7791,7790,1,0,0,0,7791,7792,1,0,0,0,7792,7793,1,0,0, + 0,7793,7794,3,806,403,0,7794,805,1,0,0,0,7795,7802,5,270,0,0,7796, + 7802,3,810,405,0,7797,7798,5,2,0,0,7798,7799,3,808,404,0,7799,7800, + 5,3,0,0,7800,7802,1,0,0,0,7801,7795,1,0,0,0,7801,7796,1,0,0,0,7801, + 7797,1,0,0,0,7802,807,1,0,0,0,7803,7805,3,812,406,0,7804,7803,1, + 0,0,0,7804,7805,1,0,0,0,7805,7812,1,0,0,0,7806,7808,5,7,0,0,7807, + 7809,3,812,406,0,7808,7807,1,0,0,0,7808,7809,1,0,0,0,7809,7811,1, + 0,0,0,7810,7806,1,0,0,0,7811,7814,1,0,0,0,7812,7810,1,0,0,0,7812, + 7813,1,0,0,0,7813,809,1,0,0,0,7814,7812,1,0,0,0,7815,7821,3,1000, + 500,0,7816,7821,3,950,475,0,7817,7821,3,982,491,0,7818,7821,3,968, + 484,0,7819,7821,3,818,409,0,7820,7815,1,0,0,0,7820,7816,1,0,0,0, + 7820,7817,1,0,0,0,7820,7818,1,0,0,0,7820,7819,1,0,0,0,7821,811,1, + 0,0,0,7822,7823,3,810,405,0,7823,813,1,0,0,0,7824,7825,7,47,0,0, + 7825,815,1,0,0,0,7826,7827,7,48,0,0,7827,817,1,0,0,0,7828,7829,5, + 271,0,0,7829,7831,3,1474,737,0,7830,7832,3,820,410,0,7831,7830,1, + 0,0,0,7831,7832,1,0,0,0,7832,819,1,0,0,0,7833,7834,5,6,0,0,7834, + 7835,3,1458,729,0,7835,821,1,0,0,0,7836,7837,5,252,0,0,7837,7838, + 3,1474,737,0,7838,823,1,0,0,0,7839,7840,5,366,0,0,7840,7844,3,1474, + 737,0,7841,7842,5,366,0,0,7842,7844,5,9,0,0,7843,7839,1,0,0,0,7843, + 7841,1,0,0,0,7844,825,1,0,0,0,7845,7847,5,129,0,0,7846,7848,3,828, + 414,0,7847,7846,1,0,0,0,7847,7848,1,0,0,0,7848,7850,1,0,0,0,7849, + 7851,3,836,418,0,7850,7849,1,0,0,0,7850,7851,1,0,0,0,7851,7911,1, + 0,0,0,7852,7854,5,146,0,0,7853,7855,3,828,414,0,7854,7853,1,0,0, + 0,7854,7855,1,0,0,0,7855,7857,1,0,0,0,7856,7858,3,834,417,0,7857, + 7856,1,0,0,0,7857,7858,1,0,0,0,7858,7911,1,0,0,0,7859,7860,5,340, + 0,0,7860,7862,5,356,0,0,7861,7863,3,834,417,0,7862,7861,1,0,0,0, + 7862,7863,1,0,0,0,7863,7911,1,0,0,0,7864,7866,5,454,0,0,7865,7867, + 3,828,414,0,7866,7865,1,0,0,0,7866,7867,1,0,0,0,7867,7869,1,0,0, + 0,7868,7870,3,836,418,0,7869,7868,1,0,0,0,7869,7870,1,0,0,0,7870, + 7911,1,0,0,0,7871,7872,5,322,0,0,7872,7911,3,1474,737,0,7873,7875, + 5,308,0,0,7874,7876,5,322,0,0,7875,7874,1,0,0,0,7875,7876,1,0,0, + 0,7876,7877,1,0,0,0,7877,7911,3,1474,737,0,7878,7879,5,290,0,0,7879, + 7880,5,356,0,0,7880,7911,3,1458,729,0,7881,7882,5,161,0,0,7882,7883, + 5,291,0,0,7883,7911,3,1458,729,0,7884,7886,5,161,0,0,7885,7887,3, + 828,414,0,7886,7885,1,0,0,0,7886,7887,1,0,0,0,7887,7889,1,0,0,0, + 7888,7890,3,836,418,0,7889,7888,1,0,0,0,7889,7890,1,0,0,0,7890,7911, + 1,0,0,0,7891,7892,5,319,0,0,7892,7893,5,291,0,0,7893,7911,3,1458, + 729,0,7894,7896,5,319,0,0,7895,7897,3,828,414,0,7896,7895,1,0,0, + 0,7896,7897,1,0,0,0,7897,7898,1,0,0,0,7898,7900,5,94,0,0,7899,7901, + 5,322,0,0,7900,7899,1,0,0,0,7900,7901,1,0,0,0,7901,7902,1,0,0,0, + 7902,7911,3,1474,737,0,7903,7905,5,319,0,0,7904,7906,3,828,414,0, + 7905,7904,1,0,0,0,7905,7906,1,0,0,0,7906,7908,1,0,0,0,7907,7909, + 3,836,418,0,7908,7907,1,0,0,0,7908,7909,1,0,0,0,7909,7911,1,0,0, + 0,7910,7845,1,0,0,0,7910,7852,1,0,0,0,7910,7859,1,0,0,0,7910,7864, + 1,0,0,0,7910,7871,1,0,0,0,7910,7873,1,0,0,0,7910,7878,1,0,0,0,7910, + 7881,1,0,0,0,7910,7884,1,0,0,0,7910,7891,1,0,0,0,7910,7894,1,0,0, + 0,7910,7903,1,0,0,0,7911,827,1,0,0,0,7912,7913,7,49,0,0,7913,829, + 1,0,0,0,7914,7915,5,244,0,0,7915,7916,5,251,0,0,7916,7925,3,68,34, + 0,7917,7918,5,300,0,0,7918,7925,5,81,0,0,7919,7920,5,300,0,0,7920, + 7925,5,382,0,0,7921,7925,5,54,0,0,7922,7923,5,77,0,0,7923,7925,5, + 54,0,0,7924,7914,1,0,0,0,7924,7917,1,0,0,0,7924,7919,1,0,0,0,7924, + 7921,1,0,0,0,7924,7922,1,0,0,0,7925,831,1,0,0,0,7926,7933,3,830, + 415,0,7927,7929,5,6,0,0,7928,7927,1,0,0,0,7928,7929,1,0,0,0,7929, + 7930,1,0,0,0,7930,7932,3,830,415,0,7931,7928,1,0,0,0,7932,7935,1, + 0,0,0,7933,7931,1,0,0,0,7933,7934,1,0,0,0,7934,833,1,0,0,0,7935, + 7933,1,0,0,0,7936,7937,3,832,416,0,7937,835,1,0,0,0,7938,7940,5, + 33,0,0,7939,7941,5,269,0,0,7940,7939,1,0,0,0,7940,7941,1,0,0,0,7941, + 7942,1,0,0,0,7942,7943,5,153,0,0,7943,837,1,0,0,0,7944,7947,5,46, + 0,0,7945,7946,5,82,0,0,7946,7948,5,311,0,0,7947,7945,1,0,0,0,7947, + 7948,1,0,0,0,7948,7950,1,0,0,0,7949,7951,3,190,95,0,7950,7949,1, + 0,0,0,7950,7951,1,0,0,0,7951,7969,1,0,0,0,7952,7953,5,376,0,0,7953, + 7955,3,1408,704,0,7954,7956,3,242,121,0,7955,7954,1,0,0,0,7955,7956, + 1,0,0,0,7956,7958,1,0,0,0,7957,7959,3,134,67,0,7958,7957,1,0,0,0, + 7958,7959,1,0,0,0,7959,7970,1,0,0,0,7960,7961,5,303,0,0,7961,7962, + 5,376,0,0,7962,7963,3,1408,704,0,7963,7964,5,2,0,0,7964,7965,3,244, + 122,0,7965,7967,5,3,0,0,7966,7968,3,134,67,0,7967,7966,1,0,0,0,7967, + 7968,1,0,0,0,7968,7970,1,0,0,0,7969,7952,1,0,0,0,7969,7960,1,0,0, + 0,7970,7971,1,0,0,0,7971,7972,5,36,0,0,7972,7974,3,1000,500,0,7973, + 7975,3,840,420,0,7974,7973,1,0,0,0,7974,7975,1,0,0,0,7975,839,1, + 0,0,0,7976,7978,5,105,0,0,7977,7979,7,50,0,0,7978,7977,1,0,0,0,7978, + 7979,1,0,0,0,7979,7980,1,0,0,0,7980,7981,5,42,0,0,7981,7982,5,279, + 0,0,7982,841,1,0,0,0,7983,7984,5,253,0,0,7984,7985,3,1440,720,0, + 7985,843,1,0,0,0,7986,7987,5,46,0,0,7987,7988,5,175,0,0,7988,7990, + 3,1418,709,0,7989,7991,3,14,7,0,7990,7989,1,0,0,0,7990,7991,1,0, + 0,0,7991,7993,1,0,0,0,7992,7994,3,846,423,0,7993,7992,1,0,0,0,7993, + 7994,1,0,0,0,7994,845,1,0,0,0,7995,7996,3,848,424,0,7996,847,1,0, + 0,0,7997,7999,3,850,425,0,7998,7997,1,0,0,0,7999,8000,1,0,0,0,8000, + 7998,1,0,0,0,8000,8001,1,0,0,0,8001,849,1,0,0,0,8002,8004,3,852, + 426,0,8003,8005,3,854,427,0,8004,8003,1,0,0,0,8004,8005,1,0,0,0, + 8005,8009,1,0,0,0,8006,8010,3,1464,732,0,8007,8010,3,72,36,0,8008, + 8010,5,53,0,0,8009,8006,1,0,0,0,8009,8007,1,0,0,0,8009,8008,1,0, + 0,0,8010,851,1,0,0,0,8011,8012,5,164,0,0,8012,8020,5,74,0,0,8013, + 8020,5,194,0,0,8014,8020,5,255,0,0,8015,8020,5,282,0,0,8016,8020, + 5,351,0,0,8017,8020,5,353,0,0,8018,8020,3,1492,746,0,8019,8011,1, + 0,0,0,8019,8013,1,0,0,0,8019,8014,1,0,0,0,8019,8015,1,0,0,0,8019, + 8016,1,0,0,0,8019,8017,1,0,0,0,8019,8018,1,0,0,0,8020,853,1,0,0, + 0,8021,8022,5,10,0,0,8022,855,1,0,0,0,8023,8024,5,138,0,0,8024,8025, + 5,175,0,0,8025,8037,3,1420,710,0,8026,8027,5,333,0,0,8027,8028,5, + 351,0,0,8028,8030,3,1400,700,0,8029,8026,1,0,0,0,8029,8030,1,0,0, + 0,8030,8038,1,0,0,0,8031,8033,5,105,0,0,8032,8031,1,0,0,0,8032,8033, + 1,0,0,0,8033,8034,1,0,0,0,8034,8036,3,846,423,0,8035,8032,1,0,0, + 0,8035,8036,1,0,0,0,8036,8038,1,0,0,0,8037,8029,1,0,0,0,8037,8035, + 1,0,0,0,8038,857,1,0,0,0,8039,8040,5,138,0,0,8040,8041,5,175,0,0, + 8041,8043,3,1420,710,0,8042,8044,3,88,44,0,8043,8042,1,0,0,0,8043, + 8044,1,0,0,0,8044,859,1,0,0,0,8045,8050,3,862,431,0,8046,8047,5, + 6,0,0,8047,8049,3,862,431,0,8048,8046,1,0,0,0,8049,8052,1,0,0,0, + 8050,8048,1,0,0,0,8050,8051,1,0,0,0,8051,861,1,0,0,0,8052,8050,1, + 0,0,0,8053,8054,5,209,0,0,8054,863,1,0,0,0,8055,8056,5,138,0,0,8056, + 8057,5,108,0,0,8057,8058,3,558,279,0,8058,8059,5,305,0,0,8059,8060, + 5,375,0,0,8060,865,1,0,0,0,8061,8062,5,138,0,0,8062,8063,5,349,0, + 0,8063,8064,7,22,0,0,8064,8065,3,58,29,0,8065,867,1,0,0,0,8066,8067, + 5,46,0,0,8067,8068,5,189,0,0,8068,8070,3,558,279,0,8069,8071,3,872, + 436,0,8070,8069,1,0,0,0,8070,8071,1,0,0,0,8071,8072,1,0,0,0,8072, + 8073,3,1168,584,0,8073,8074,3,214,107,0,8074,869,1,0,0,0,8075,8076, + 5,138,0,0,8076,8077,5,189,0,0,8077,8099,3,558,279,0,8078,8100,3, + 122,61,0,8079,8080,5,191,0,0,8080,8081,5,77,0,0,8081,8100,5,78,0, + 0,8082,8083,5,333,0,0,8083,8084,5,77,0,0,8084,8100,5,78,0,0,8085, + 8086,5,133,0,0,8086,8100,3,234,117,0,8087,8088,5,191,0,0,8088,8090, + 5,45,0,0,8089,8091,3,748,374,0,8090,8089,1,0,0,0,8090,8091,1,0,0, + 0,8091,8092,1,0,0,0,8092,8094,3,1436,718,0,8093,8095,3,124,62,0, + 8094,8093,1,0,0,0,8094,8095,1,0,0,0,8095,8100,1,0,0,0,8096,8097, + 5,372,0,0,8097,8098,5,45,0,0,8098,8100,3,1436,718,0,8099,8078,1, + 0,0,0,8099,8079,1,0,0,0,8099,8082,1,0,0,0,8099,8085,1,0,0,0,8099, + 8087,1,0,0,0,8099,8096,1,0,0,0,8100,871,1,0,0,0,8101,8102,5,36,0, + 0,8102,873,1,0,0,0,8103,8104,5,138,0,0,8104,8105,5,355,0,0,8105, + 8106,5,325,0,0,8106,8107,5,185,0,0,8107,8108,3,558,279,0,8108,8109, + 3,496,248,0,8109,875,1,0,0,0,8110,8111,5,138,0,0,8111,8112,5,355, + 0,0,8112,8113,5,325,0,0,8113,8114,5,163,0,0,8114,8115,3,558,279, + 0,8115,8116,5,133,0,0,8116,8117,5,257,0,0,8117,8118,5,62,0,0,8118, + 8119,3,1416,708,0,8119,8120,3,878,439,0,8120,8121,3,552,276,0,8121, + 8174,1,0,0,0,8122,8123,5,138,0,0,8123,8124,5,355,0,0,8124,8125,5, + 325,0,0,8125,8126,5,163,0,0,8126,8127,3,558,279,0,8127,8128,5,138, + 0,0,8128,8129,5,257,0,0,8129,8130,5,62,0,0,8130,8131,3,1416,708, + 0,8131,8132,3,878,439,0,8132,8133,3,552,276,0,8133,8174,1,0,0,0, + 8134,8135,5,138,0,0,8135,8136,5,355,0,0,8136,8137,5,325,0,0,8137, + 8138,5,163,0,0,8138,8139,3,558,279,0,8139,8140,5,138,0,0,8140,8141, + 5,257,0,0,8141,8142,5,311,0,0,8142,8143,3,558,279,0,8143,8144,3, + 878,439,0,8144,8145,3,558,279,0,8145,8174,1,0,0,0,8146,8147,5,138, + 0,0,8147,8148,5,355,0,0,8148,8149,5,325,0,0,8149,8150,5,163,0,0, + 8150,8151,3,558,279,0,8151,8152,5,138,0,0,8152,8153,5,257,0,0,8153, + 8154,5,62,0,0,8154,8155,3,1416,708,0,8155,8156,5,311,0,0,8156,8157, + 3,558,279,0,8157,8158,3,878,439,0,8158,8159,3,558,279,0,8159,8174, + 1,0,0,0,8160,8161,5,138,0,0,8161,8162,5,355,0,0,8162,8163,5,325, + 0,0,8163,8164,5,163,0,0,8164,8165,3,558,279,0,8165,8166,5,191,0, + 0,8166,8168,5,257,0,0,8167,8169,3,748,374,0,8168,8167,1,0,0,0,8168, + 8169,1,0,0,0,8169,8170,1,0,0,0,8170,8171,5,62,0,0,8171,8172,3,1416, + 708,0,8172,8174,1,0,0,0,8173,8110,1,0,0,0,8173,8122,1,0,0,0,8173, + 8134,1,0,0,0,8173,8146,1,0,0,0,8173,8160,1,0,0,0,8174,877,1,0,0, + 0,8175,8176,5,105,0,0,8176,879,1,0,0,0,8177,8179,5,46,0,0,8178,8180, + 3,524,262,0,8179,8178,1,0,0,0,8179,8180,1,0,0,0,8180,8181,1,0,0, + 0,8181,8182,5,168,0,0,8182,8183,3,558,279,0,8183,8184,5,62,0,0,8184, + 8185,3,1458,729,0,8185,8186,5,94,0,0,8186,8187,3,1458,729,0,8187, + 8188,5,64,0,0,8188,8189,3,558,279,0,8189,881,1,0,0,0,8190,8192,5, + 158,0,0,8191,8193,3,908,454,0,8192,8191,1,0,0,0,8192,8193,1,0,0, + 0,8193,8194,1,0,0,0,8194,8196,3,1406,703,0,8195,8197,3,886,443,0, + 8196,8195,1,0,0,0,8196,8197,1,0,0,0,8197,8209,1,0,0,0,8198,8200, + 5,158,0,0,8199,8201,3,908,454,0,8200,8199,1,0,0,0,8200,8201,1,0, + 0,0,8201,8209,1,0,0,0,8202,8203,5,158,0,0,8203,8204,3,884,442,0, + 8204,8206,3,1406,703,0,8205,8207,3,886,443,0,8206,8205,1,0,0,0,8206, + 8207,1,0,0,0,8207,8209,1,0,0,0,8208,8190,1,0,0,0,8208,8198,1,0,0, + 0,8208,8202,1,0,0,0,8209,883,1,0,0,0,8210,8211,5,2,0,0,8211,8216, + 3,908,454,0,8212,8213,5,6,0,0,8213,8215,3,908,454,0,8214,8212,1, + 0,0,0,8215,8218,1,0,0,0,8216,8214,1,0,0,0,8216,8217,1,0,0,0,8217, + 8219,1,0,0,0,8218,8216,1,0,0,0,8219,8220,5,3,0,0,8220,885,1,0,0, + 0,8221,8222,5,100,0,0,8222,8223,3,1436,718,0,8223,887,1,0,0,0,8224, + 8226,5,370,0,0,8225,8227,3,914,457,0,8226,8225,1,0,0,0,8226,8227, + 1,0,0,0,8227,8229,1,0,0,0,8228,8230,3,916,458,0,8229,8228,1,0,0, + 0,8229,8230,1,0,0,0,8230,8232,1,0,0,0,8231,8233,3,908,454,0,8232, + 8231,1,0,0,0,8232,8233,1,0,0,0,8233,8235,1,0,0,0,8234,8236,3,902, + 451,0,8235,8234,1,0,0,0,8235,8236,1,0,0,0,8236,8238,1,0,0,0,8237, + 8239,3,924,462,0,8238,8237,1,0,0,0,8238,8239,1,0,0,0,8239,8251,1, + 0,0,0,8240,8245,5,370,0,0,8241,8242,5,2,0,0,8242,8243,3,892,446, + 0,8243,8244,5,3,0,0,8244,8246,1,0,0,0,8245,8241,1,0,0,0,8245,8246, + 1,0,0,0,8246,8248,1,0,0,0,8247,8249,3,924,462,0,8248,8247,1,0,0, + 0,8248,8249,1,0,0,0,8249,8251,1,0,0,0,8250,8224,1,0,0,0,8250,8240, + 1,0,0,0,8251,889,1,0,0,0,8252,8254,3,894,447,0,8253,8255,3,908,454, + 0,8254,8253,1,0,0,0,8254,8255,1,0,0,0,8255,8257,1,0,0,0,8256,8258, + 3,924,462,0,8257,8256,1,0,0,0,8257,8258,1,0,0,0,8258,8267,1,0,0, + 0,8259,8260,3,894,447,0,8260,8261,5,2,0,0,8261,8262,3,904,452,0, + 8262,8264,5,3,0,0,8263,8265,3,924,462,0,8264,8263,1,0,0,0,8264,8265, + 1,0,0,0,8265,8267,1,0,0,0,8266,8252,1,0,0,0,8266,8259,1,0,0,0,8267, + 891,1,0,0,0,8268,8273,3,896,448,0,8269,8270,5,6,0,0,8270,8272,3, + 896,448,0,8271,8269,1,0,0,0,8272,8275,1,0,0,0,8273,8271,1,0,0,0, + 8273,8274,1,0,0,0,8274,893,1,0,0,0,8275,8273,1,0,0,0,8276,8277,7, + 51,0,0,8277,895,1,0,0,0,8278,8280,3,898,449,0,8279,8281,3,900,450, + 0,8280,8279,1,0,0,0,8280,8281,1,0,0,0,8281,897,1,0,0,0,8282,8285, + 3,1488,744,0,8283,8285,3,894,447,0,8284,8282,1,0,0,0,8284,8283,1, + 0,0,0,8285,899,1,0,0,0,8286,8289,3,72,36,0,8287,8289,3,322,161,0, + 8288,8286,1,0,0,0,8288,8287,1,0,0,0,8289,901,1,0,0,0,8290,8291,3, + 894,447,0,8291,903,1,0,0,0,8292,8297,3,906,453,0,8293,8294,5,6,0, + 0,8294,8296,3,906,453,0,8295,8293,1,0,0,0,8296,8299,1,0,0,0,8297, + 8295,1,0,0,0,8297,8298,1,0,0,0,8298,905,1,0,0,0,8299,8297,1,0,0, + 0,8300,8304,3,908,454,0,8301,8304,3,910,455,0,8302,8304,3,912,456, + 0,8303,8300,1,0,0,0,8303,8301,1,0,0,0,8303,8302,1,0,0,0,8304,907, + 1,0,0,0,8305,8307,5,128,0,0,8306,8308,7,52,0,0,8307,8306,1,0,0,0, + 8307,8308,1,0,0,0,8308,909,1,0,0,0,8309,8311,5,547,0,0,8310,8312, + 7,52,0,0,8311,8310,1,0,0,0,8311,8312,1,0,0,0,8312,911,1,0,0,0,8313, + 8316,5,548,0,0,8314,8317,3,322,161,0,8315,8317,3,1458,729,0,8316, + 8314,1,0,0,0,8316,8315,1,0,0,0,8317,913,1,0,0,0,8318,8319,5,113, + 0,0,8319,915,1,0,0,0,8320,8321,5,112,0,0,8321,917,1,0,0,0,8322,8323, + 5,2,0,0,8323,8324,3,244,122,0,8324,8325,5,3,0,0,8325,919,1,0,0,0, + 8326,8328,3,1406,703,0,8327,8329,3,918,459,0,8328,8327,1,0,0,0,8328, + 8329,1,0,0,0,8329,921,1,0,0,0,8330,8335,3,920,460,0,8331,8332,5, + 6,0,0,8332,8334,3,920,460,0,8333,8331,1,0,0,0,8334,8337,1,0,0,0, + 8335,8333,1,0,0,0,8335,8336,1,0,0,0,8336,923,1,0,0,0,8337,8335,1, + 0,0,0,8338,8339,3,922,461,0,8339,925,1,0,0,0,8340,8341,5,203,0,0, + 8341,8359,3,928,464,0,8342,8343,5,203,0,0,8343,8345,3,894,447,0, + 8344,8346,3,908,454,0,8345,8344,1,0,0,0,8345,8346,1,0,0,0,8346,8347, + 1,0,0,0,8347,8348,3,928,464,0,8348,8359,1,0,0,0,8349,8350,5,203, + 0,0,8350,8351,5,128,0,0,8351,8359,3,928,464,0,8352,8353,5,203,0, + 0,8353,8354,5,2,0,0,8354,8355,3,930,465,0,8355,8356,5,3,0,0,8356, + 8357,3,928,464,0,8357,8359,1,0,0,0,8358,8340,1,0,0,0,8358,8342,1, + 0,0,0,8358,8349,1,0,0,0,8358,8352,1,0,0,0,8359,927,1,0,0,0,8360, + 8370,3,1000,500,0,8361,8370,3,950,475,0,8362,8370,3,982,491,0,8363, + 8370,3,968,484,0,8364,8370,3,992,496,0,8365,8370,3,294,147,0,8366, + 8370,3,300,150,0,8367,8370,3,306,153,0,8368,8370,3,944,472,0,8369, + 8360,1,0,0,0,8369,8361,1,0,0,0,8369,8362,1,0,0,0,8369,8363,1,0,0, + 0,8369,8364,1,0,0,0,8369,8365,1,0,0,0,8369,8366,1,0,0,0,8369,8367, + 1,0,0,0,8369,8368,1,0,0,0,8370,929,1,0,0,0,8371,8376,3,932,466,0, + 8372,8373,5,6,0,0,8373,8375,3,932,466,0,8374,8372,1,0,0,0,8375,8378, + 1,0,0,0,8376,8374,1,0,0,0,8376,8377,1,0,0,0,8377,931,1,0,0,0,8378, + 8376,1,0,0,0,8379,8381,3,934,467,0,8380,8382,3,936,468,0,8381,8380, + 1,0,0,0,8381,8382,1,0,0,0,8382,933,1,0,0,0,8383,8386,3,1488,744, + 0,8384,8386,3,894,447,0,8385,8383,1,0,0,0,8385,8384,1,0,0,0,8386, + 935,1,0,0,0,8387,8390,3,72,36,0,8388,8390,3,322,161,0,8389,8387, + 1,0,0,0,8389,8388,1,0,0,0,8390,937,1,0,0,0,8391,8392,5,290,0,0,8392, + 8394,3,1436,718,0,8393,8395,3,940,470,0,8394,8393,1,0,0,0,8394,8395, + 1,0,0,0,8395,8396,1,0,0,0,8396,8397,5,36,0,0,8397,8398,3,942,471, + 0,8398,939,1,0,0,0,8399,8400,5,2,0,0,8400,8401,3,1342,671,0,8401, + 8402,5,3,0,0,8402,941,1,0,0,0,8403,8408,3,1000,500,0,8404,8408,3, + 950,475,0,8405,8408,3,982,491,0,8406,8408,3,968,484,0,8407,8403, + 1,0,0,0,8407,8404,1,0,0,0,8407,8405,1,0,0,0,8407,8406,1,0,0,0,8408, + 943,1,0,0,0,8409,8410,5,202,0,0,8410,8412,3,1436,718,0,8411,8413, + 3,946,473,0,8412,8411,1,0,0,0,8412,8413,1,0,0,0,8413,8433,1,0,0, + 0,8414,8416,5,46,0,0,8415,8417,3,190,95,0,8416,8415,1,0,0,0,8416, + 8417,1,0,0,0,8417,8418,1,0,0,0,8418,8420,5,92,0,0,8419,8421,3,516, + 258,0,8420,8419,1,0,0,0,8420,8421,1,0,0,0,8421,8422,1,0,0,0,8422, + 8423,3,296,148,0,8423,8424,5,36,0,0,8424,8425,5,202,0,0,8425,8427, + 3,1436,718,0,8426,8428,3,946,473,0,8427,8426,1,0,0,0,8427,8428,1, + 0,0,0,8428,8430,1,0,0,0,8429,8431,3,298,149,0,8430,8429,1,0,0,0, + 8430,8431,1,0,0,0,8431,8433,1,0,0,0,8432,8409,1,0,0,0,8432,8414, + 1,0,0,0,8433,945,1,0,0,0,8434,8435,5,2,0,0,8435,8436,3,1328,664, + 0,8436,8437,5,3,0,0,8437,947,1,0,0,0,8438,8440,5,177,0,0,8439,8441, + 5,290,0,0,8440,8439,1,0,0,0,8440,8441,1,0,0,0,8441,8444,1,0,0,0, + 8442,8445,3,1436,718,0,8443,8445,5,30,0,0,8444,8442,1,0,0,0,8444, + 8443,1,0,0,0,8445,949,1,0,0,0,8446,8448,3,1026,513,0,8447,8446,1, + 0,0,0,8447,8448,1,0,0,0,8448,8449,1,0,0,0,8449,8450,5,241,0,0,8450, + 8451,5,71,0,0,8451,8452,3,952,476,0,8452,8454,3,954,477,0,8453,8455, + 3,962,481,0,8454,8453,1,0,0,0,8454,8455,1,0,0,0,8455,8457,1,0,0, + 0,8456,8458,3,966,483,0,8457,8456,1,0,0,0,8457,8458,1,0,0,0,8458, + 951,1,0,0,0,8459,8462,3,1406,703,0,8460,8461,5,36,0,0,8461,8463, + 3,1474,737,0,8462,8460,1,0,0,0,8462,8463,1,0,0,0,8463,953,1,0,0, + 0,8464,8465,5,2,0,0,8465,8466,3,958,479,0,8466,8467,5,3,0,0,8467, + 8469,1,0,0,0,8468,8464,1,0,0,0,8468,8469,1,0,0,0,8469,8474,1,0,0, + 0,8470,8471,5,463,0,0,8471,8472,3,956,478,0,8472,8473,5,450,0,0, + 8473,8475,1,0,0,0,8474,8470,1,0,0,0,8474,8475,1,0,0,0,8475,8478, + 1,0,0,0,8476,8479,3,1694,847,0,8477,8479,3,1000,500,0,8478,8476, + 1,0,0,0,8478,8477,1,0,0,0,8479,955,1,0,0,0,8480,8481,7,53,0,0,8481, + 957,1,0,0,0,8482,8487,3,960,480,0,8483,8484,5,6,0,0,8484,8486,3, + 960,480,0,8485,8483,1,0,0,0,8486,8489,1,0,0,0,8487,8485,1,0,0,0, + 8487,8488,1,0,0,0,8488,959,1,0,0,0,8489,8487,1,0,0,0,8490,8491,3, + 1432,716,0,8491,8492,3,1382,691,0,8492,961,1,0,0,0,8493,8494,5,80, + 0,0,8494,8496,5,464,0,0,8495,8497,3,964,482,0,8496,8495,1,0,0,0, + 8496,8497,1,0,0,0,8497,8498,1,0,0,0,8498,8506,5,57,0,0,8499,8500, + 5,369,0,0,8500,8501,5,333,0,0,8501,8503,3,984,492,0,8502,8504,3, + 1144,572,0,8503,8502,1,0,0,0,8503,8504,1,0,0,0,8504,8507,1,0,0,0, + 8505,8507,5,270,0,0,8506,8499,1,0,0,0,8506,8505,1,0,0,0,8507,963, + 1,0,0,0,8508,8509,5,2,0,0,8509,8510,3,636,318,0,8510,8512,5,3,0, + 0,8511,8513,3,1144,572,0,8512,8511,1,0,0,0,8512,8513,1,0,0,0,8513, + 8518,1,0,0,0,8514,8515,5,80,0,0,8515,8516,5,45,0,0,8516,8518,3,1436, + 718,0,8517,8508,1,0,0,0,8517,8514,1,0,0,0,8518,965,1,0,0,0,8519, + 8520,5,87,0,0,8520,8521,3,1386,693,0,8521,967,1,0,0,0,8522,8524, + 3,1026,513,0,8523,8522,1,0,0,0,8523,8524,1,0,0,0,8524,8525,1,0,0, + 0,8525,8526,5,182,0,0,8526,8527,5,64,0,0,8527,8529,3,1128,564,0, + 8528,8530,3,970,485,0,8529,8528,1,0,0,0,8529,8530,1,0,0,0,8530,8532, + 1,0,0,0,8531,8533,3,1146,573,0,8532,8531,1,0,0,0,8532,8533,1,0,0, + 0,8533,8535,1,0,0,0,8534,8536,3,966,483,0,8535,8534,1,0,0,0,8535, + 8536,1,0,0,0,8536,969,1,0,0,0,8537,8538,5,100,0,0,8538,8539,3,1104, + 552,0,8539,971,1,0,0,0,8540,8542,5,256,0,0,8541,8543,3,1034,517, + 0,8542,8541,1,0,0,0,8542,8543,1,0,0,0,8543,8544,1,0,0,0,8544,8546, + 3,1124,562,0,8545,8547,3,974,487,0,8546,8545,1,0,0,0,8546,8547,1, + 0,0,0,8547,8549,1,0,0,0,8548,8550,3,978,489,0,8549,8548,1,0,0,0, + 8549,8550,1,0,0,0,8550,973,1,0,0,0,8551,8552,5,68,0,0,8552,8553, + 3,976,488,0,8553,8554,5,263,0,0,8554,975,1,0,0,0,8555,8556,5,131, + 0,0,8556,8568,7,54,0,0,8557,8558,5,414,0,0,8558,8568,7,54,0,0,8559, + 8564,5,334,0,0,8560,8561,5,369,0,0,8561,8565,5,201,0,0,8562,8563, + 5,414,0,0,8563,8565,5,201,0,0,8564,8560,1,0,0,0,8564,8562,1,0,0, + 0,8564,8565,1,0,0,0,8565,8568,1,0,0,0,8566,8568,5,201,0,0,8567,8555, + 1,0,0,0,8567,8557,1,0,0,0,8567,8559,1,0,0,0,8567,8566,1,0,0,0,8568, + 977,1,0,0,0,8569,8570,5,272,0,0,8570,979,1,0,0,0,8571,8575,5,272, + 0,0,8572,8573,5,465,0,0,8573,8575,5,466,0,0,8574,8571,1,0,0,0,8574, + 8572,1,0,0,0,8575,981,1,0,0,0,8576,8578,3,1026,513,0,8577,8576,1, + 0,0,0,8577,8578,1,0,0,0,8578,8579,1,0,0,0,8579,8580,5,369,0,0,8580, + 8581,3,1128,564,0,8581,8582,5,333,0,0,8582,8584,3,984,492,0,8583, + 8585,3,1102,551,0,8584,8583,1,0,0,0,8584,8585,1,0,0,0,8585,8587, + 1,0,0,0,8586,8588,3,1146,573,0,8587,8586,1,0,0,0,8587,8588,1,0,0, + 0,8588,8590,1,0,0,0,8589,8591,3,966,483,0,8590,8589,1,0,0,0,8590, + 8591,1,0,0,0,8591,983,1,0,0,0,8592,8597,3,986,493,0,8593,8594,5, + 6,0,0,8594,8596,3,986,493,0,8595,8593,1,0,0,0,8596,8599,1,0,0,0, + 8597,8595,1,0,0,0,8597,8598,1,0,0,0,8598,985,1,0,0,0,8599,8597,1, + 0,0,0,8600,8601,3,988,494,0,8601,8602,5,10,0,0,8602,8603,3,1212, + 606,0,8603,8619,1,0,0,0,8604,8605,5,2,0,0,8605,8606,3,990,495,0, + 8606,8607,5,3,0,0,8607,8616,5,10,0,0,8608,8610,5,414,0,0,8609,8608, + 1,0,0,0,8609,8610,1,0,0,0,8610,8611,1,0,0,0,8611,8617,3,1212,606, + 0,8612,8613,5,2,0,0,8613,8614,3,1006,503,0,8614,8615,5,3,0,0,8615, + 8617,1,0,0,0,8616,8609,1,0,0,0,8616,8612,1,0,0,0,8617,8619,1,0,0, + 0,8618,8600,1,0,0,0,8618,8604,1,0,0,0,8619,987,1,0,0,0,8620,8621, + 3,1432,716,0,8621,8622,3,1382,691,0,8622,989,1,0,0,0,8623,8628,3, + 988,494,0,8624,8625,5,6,0,0,8625,8627,3,988,494,0,8626,8624,1,0, + 0,0,8627,8630,1,0,0,0,8628,8626,1,0,0,0,8628,8629,1,0,0,0,8629,991, + 1,0,0,0,8630,8628,1,0,0,0,8631,8632,5,178,0,0,8632,8633,3,994,497, + 0,8633,8634,3,996,498,0,8634,8635,5,172,0,0,8635,8636,3,998,499, + 0,8636,8637,5,62,0,0,8637,8638,3,1000,500,0,8638,993,1,0,0,0,8639, + 8640,3,1436,718,0,8640,995,1,0,0,0,8641,8642,5,269,0,0,8642,8647, + 5,324,0,0,8643,8647,5,324,0,0,8644,8647,5,107,0,0,8645,8647,5,240, + 0,0,8646,8641,1,0,0,0,8646,8643,1,0,0,0,8646,8644,1,0,0,0,8646,8645, + 1,0,0,0,8647,8650,1,0,0,0,8648,8646,1,0,0,0,8648,8649,1,0,0,0,8649, + 997,1,0,0,0,8650,8648,1,0,0,0,8651,8657,1,0,0,0,8652,8653,5,105, + 0,0,8653,8657,5,217,0,0,8654,8655,5,379,0,0,8655,8657,5,217,0,0, + 8656,8651,1,0,0,0,8656,8652,1,0,0,0,8656,8654,1,0,0,0,8657,999,1, + 0,0,0,8658,8661,3,1004,502,0,8659,8661,3,1002,501,0,8660,8658,1, + 0,0,0,8660,8659,1,0,0,0,8661,1001,1,0,0,0,8662,8663,5,2,0,0,8663, + 8664,3,1004,502,0,8664,8665,5,3,0,0,8665,8671,1,0,0,0,8666,8667, + 5,2,0,0,8667,8668,3,1002,501,0,8668,8669,5,3,0,0,8669,8671,1,0,0, + 0,8670,8662,1,0,0,0,8670,8666,1,0,0,0,8671,1003,1,0,0,0,8672,8674, + 3,1006,503,0,8673,8675,3,1042,521,0,8674,8673,1,0,0,0,8674,8675, + 1,0,0,0,8675,8684,1,0,0,0,8676,8678,3,1088,544,0,8677,8679,3,1052, + 526,0,8678,8677,1,0,0,0,8678,8679,1,0,0,0,8679,8685,1,0,0,0,8680, + 8682,3,1050,525,0,8681,8683,3,1090,545,0,8682,8681,1,0,0,0,8682, + 8683,1,0,0,0,8683,8685,1,0,0,0,8684,8676,1,0,0,0,8684,8680,1,0,0, + 0,8684,8685,1,0,0,0,8685,8702,1,0,0,0,8686,8687,3,1014,507,0,8687, + 8689,3,1006,503,0,8688,8690,3,1042,521,0,8689,8688,1,0,0,0,8689, + 8690,1,0,0,0,8690,8699,1,0,0,0,8691,8693,3,1088,544,0,8692,8694, + 3,1052,526,0,8693,8692,1,0,0,0,8693,8694,1,0,0,0,8694,8700,1,0,0, + 0,8695,8697,3,1050,525,0,8696,8698,3,1090,545,0,8697,8696,1,0,0, + 0,8697,8698,1,0,0,0,8698,8700,1,0,0,0,8699,8691,1,0,0,0,8699,8695, + 1,0,0,0,8699,8700,1,0,0,0,8700,8702,1,0,0,0,8701,8672,1,0,0,0,8701, + 8686,1,0,0,0,8702,1005,1,0,0,0,8703,8706,3,1008,504,0,8704,8706, + 3,1002,501,0,8705,8703,1,0,0,0,8705,8704,1,0,0,0,8706,1007,1,0,0, + 0,8707,8723,5,88,0,0,8708,8710,3,1040,520,0,8709,8708,1,0,0,0,8709, + 8710,1,0,0,0,8710,8712,1,0,0,0,8711,8713,3,1028,514,0,8712,8711, + 1,0,0,0,8712,8713,1,0,0,0,8713,8715,1,0,0,0,8714,8716,3,1384,692, + 0,8715,8714,1,0,0,0,8715,8716,1,0,0,0,8716,8724,1,0,0,0,8717,8719, + 3,1038,519,0,8718,8717,1,0,0,0,8718,8719,1,0,0,0,8719,8721,1,0,0, + 0,8720,8722,3,1386,693,0,8721,8720,1,0,0,0,8721,8722,1,0,0,0,8722, + 8724,1,0,0,0,8723,8709,1,0,0,0,8723,8718,1,0,0,0,8724,8726,1,0,0, + 0,8725,8727,3,1028,514,0,8726,8725,1,0,0,0,8726,8727,1,0,0,0,8727, + 8729,1,0,0,0,8728,8730,3,1102,551,0,8729,8728,1,0,0,0,8729,8730, + 1,0,0,0,8730,8732,1,0,0,0,8731,8733,3,1144,572,0,8732,8731,1,0,0, + 0,8732,8733,1,0,0,0,8733,8735,1,0,0,0,8734,8736,3,1072,536,0,8735, + 8734,1,0,0,0,8735,8736,1,0,0,0,8736,8738,1,0,0,0,8737,8739,3,1086, + 543,0,8738,8737,1,0,0,0,8738,8739,1,0,0,0,8739,8741,1,0,0,0,8740, + 8742,3,1288,644,0,8741,8740,1,0,0,0,8741,8742,1,0,0,0,8742,8753, + 1,0,0,0,8743,8753,3,1100,550,0,8744,8745,5,92,0,0,8745,8753,3,1118, + 559,0,8746,8747,3,1002,501,0,8747,8750,3,1012,506,0,8748,8751,3, + 1008,504,0,8749,8751,3,1002,501,0,8750,8748,1,0,0,0,8750,8749,1, + 0,0,0,8751,8753,1,0,0,0,8752,8707,1,0,0,0,8752,8743,1,0,0,0,8752, + 8744,1,0,0,0,8752,8746,1,0,0,0,8753,8761,1,0,0,0,8754,8757,3,1012, + 506,0,8755,8758,3,1008,504,0,8756,8758,3,1002,501,0,8757,8755,1, + 0,0,0,8757,8756,1,0,0,0,8758,8760,1,0,0,0,8759,8754,1,0,0,0,8760, + 8763,1,0,0,0,8761,8759,1,0,0,0,8761,8762,1,0,0,0,8762,1009,1,0,0, + 0,8763,8761,1,0,0,0,8764,8768,5,97,0,0,8765,8768,5,70,0,0,8766,8768, + 5,59,0,0,8767,8764,1,0,0,0,8767,8765,1,0,0,0,8767,8766,1,0,0,0,8768, + 1011,1,0,0,0,8769,8771,3,1010,505,0,8770,8772,3,1036,518,0,8771, + 8770,1,0,0,0,8771,8772,1,0,0,0,8772,1013,1,0,0,0,8773,8775,5,105, + 0,0,8774,8776,5,303,0,0,8775,8774,1,0,0,0,8775,8776,1,0,0,0,8776, + 8777,1,0,0,0,8777,8778,3,1016,508,0,8778,1015,1,0,0,0,8779,8784, + 3,1018,509,0,8780,8781,5,6,0,0,8781,8783,3,1018,509,0,8782,8780, + 1,0,0,0,8783,8786,1,0,0,0,8784,8782,1,0,0,0,8784,8785,1,0,0,0,8785, + 1017,1,0,0,0,8786,8784,1,0,0,0,8787,8789,3,1436,718,0,8788,8790, + 3,918,459,0,8789,8788,1,0,0,0,8789,8790,1,0,0,0,8790,8791,1,0,0, + 0,8791,8793,5,36,0,0,8792,8794,3,1024,512,0,8793,8792,1,0,0,0,8793, + 8794,1,0,0,0,8794,8795,1,0,0,0,8795,8796,5,2,0,0,8796,8797,3,942, + 471,0,8797,8799,5,3,0,0,8798,8800,3,1020,510,0,8799,8798,1,0,0,0, + 8799,8800,1,0,0,0,8800,8802,1,0,0,0,8801,8803,3,1022,511,0,8802, + 8801,1,0,0,0,8802,8803,1,0,0,0,8803,1019,1,0,0,0,8804,8805,5,325, + 0,0,8805,8806,7,55,0,0,8806,8807,5,207,0,0,8807,8808,5,147,0,0,8808, + 8809,3,244,122,0,8809,8810,5,333,0,0,8810,8811,3,1432,716,0,8811, + 1021,1,0,0,0,8812,8813,5,173,0,0,8813,8814,3,244,122,0,8814,8815, + 5,333,0,0,8815,8821,3,1432,716,0,8816,8817,5,94,0,0,8817,8818,3, + 1436,718,0,8818,8819,5,53,0,0,8819,8820,3,1436,718,0,8820,8822,1, + 0,0,0,8821,8816,1,0,0,0,8821,8822,1,0,0,0,8822,8823,1,0,0,0,8823, + 8824,5,100,0,0,8824,8825,3,1432,716,0,8825,1023,1,0,0,0,8826,8830, + 5,259,0,0,8827,8828,5,77,0,0,8828,8830,5,259,0,0,8829,8826,1,0,0, + 0,8829,8827,1,0,0,0,8830,1025,1,0,0,0,8831,8832,3,1014,507,0,8832, + 1027,1,0,0,0,8833,8838,5,71,0,0,8834,8835,3,1030,515,0,8835,8836, + 3,1032,516,0,8836,8839,1,0,0,0,8837,8839,3,1674,837,0,8838,8834, + 1,0,0,0,8838,8837,1,0,0,0,8839,1029,1,0,0,0,8840,8843,1,0,0,0,8841, + 8843,5,346,0,0,8842,8840,1,0,0,0,8842,8841,1,0,0,0,8843,1031,1,0, + 0,0,8844,8846,7,56,0,0,8845,8844,1,0,0,0,8845,8846,1,0,0,0,8846, + 8847,1,0,0,0,8847,8849,7,25,0,0,8848,8850,3,1034,517,0,8849,8848, + 1,0,0,0,8849,8850,1,0,0,0,8850,8851,1,0,0,0,8851,8861,3,1404,702, + 0,8852,8854,5,367,0,0,8853,8855,3,1034,517,0,8854,8853,1,0,0,0,8854, + 8855,1,0,0,0,8855,8856,1,0,0,0,8856,8861,3,1404,702,0,8857,8858, + 5,92,0,0,8858,8861,3,1404,702,0,8859,8861,3,1404,702,0,8860,8845, + 1,0,0,0,8860,8852,1,0,0,0,8860,8857,1,0,0,0,8860,8859,1,0,0,0,8861, + 1033,1,0,0,0,8862,8863,5,92,0,0,8863,1035,1,0,0,0,8864,8865,7,57, + 0,0,8865,1037,1,0,0,0,8866,8872,5,56,0,0,8867,8868,5,80,0,0,8868, + 8869,5,2,0,0,8869,8870,3,1328,664,0,8870,8871,5,3,0,0,8871,8873, + 1,0,0,0,8872,8867,1,0,0,0,8872,8873,1,0,0,0,8873,1039,1,0,0,0,8874, + 8875,5,30,0,0,8875,1041,1,0,0,0,8876,8877,3,1044,522,0,8877,1043, + 1,0,0,0,8878,8879,5,83,0,0,8879,8880,5,147,0,0,8880,8881,3,1046, + 523,0,8881,1045,1,0,0,0,8882,8887,3,1048,524,0,8883,8884,5,6,0,0, + 8884,8886,3,1048,524,0,8885,8883,1,0,0,0,8886,8889,1,0,0,0,8887, + 8885,1,0,0,0,8887,8888,1,0,0,0,8888,1047,1,0,0,0,8889,8887,1,0,0, + 0,8890,8894,3,1336,668,0,8891,8892,5,100,0,0,8892,8895,3,1324,662, + 0,8893,8895,3,650,325,0,8894,8891,1,0,0,0,8894,8893,1,0,0,0,8894, + 8895,1,0,0,0,8895,8897,1,0,0,0,8896,8898,3,652,326,0,8897,8896,1, + 0,0,0,8897,8898,1,0,0,0,8898,1049,1,0,0,0,8899,8901,3,1054,527,0, + 8900,8902,3,1058,529,0,8901,8900,1,0,0,0,8901,8902,1,0,0,0,8902, + 8912,1,0,0,0,8903,8905,3,1058,529,0,8904,8906,3,1056,528,0,8905, + 8904,1,0,0,0,8905,8906,1,0,0,0,8906,8912,1,0,0,0,8907,8909,3,1056, + 528,0,8908,8910,3,1058,529,0,8909,8908,1,0,0,0,8909,8910,1,0,0,0, + 8910,8912,1,0,0,0,8911,8899,1,0,0,0,8911,8903,1,0,0,0,8911,8907, + 1,0,0,0,8912,1051,1,0,0,0,8913,8914,3,1050,525,0,8914,1053,1,0,0, + 0,8915,8916,5,74,0,0,8916,8919,3,1060,530,0,8917,8918,5,6,0,0,8918, + 8920,3,1062,531,0,8919,8917,1,0,0,0,8919,8920,1,0,0,0,8920,1055, + 1,0,0,0,8921,8922,5,61,0,0,8922,8936,3,1070,535,0,8923,8924,3,1064, + 532,0,8924,8928,3,1068,534,0,8925,8929,5,81,0,0,8926,8927,5,105, + 0,0,8927,8929,5,467,0,0,8928,8925,1,0,0,0,8928,8926,1,0,0,0,8929, + 8937,1,0,0,0,8930,8934,3,1068,534,0,8931,8935,5,81,0,0,8932,8933, + 5,105,0,0,8933,8935,5,467,0,0,8934,8931,1,0,0,0,8934,8932,1,0,0, + 0,8935,8937,1,0,0,0,8936,8923,1,0,0,0,8936,8930,1,0,0,0,8937,1057, + 1,0,0,0,8938,8943,5,79,0,0,8939,8940,3,1064,532,0,8940,8941,3,1068, + 534,0,8941,8944,1,0,0,0,8942,8944,3,1062,531,0,8943,8939,1,0,0,0, + 8943,8942,1,0,0,0,8944,1059,1,0,0,0,8945,8948,3,1212,606,0,8946, + 8948,5,30,0,0,8947,8945,1,0,0,0,8947,8946,1,0,0,0,8948,1061,1,0, + 0,0,8949,8950,3,1212,606,0,8950,1063,1,0,0,0,8951,8952,5,12,0,0, + 8952,8957,3,1066,533,0,8953,8954,5,13,0,0,8954,8957,3,1066,533,0, + 8955,8957,3,1254,627,0,8956,8951,1,0,0,0,8956,8953,1,0,0,0,8956, + 8955,1,0,0,0,8957,1065,1,0,0,0,8958,8961,3,1456,728,0,8959,8961, + 3,1454,727,0,8960,8958,1,0,0,0,8960,8959,1,0,0,0,8961,1067,1,0,0, + 0,8962,8963,7,58,0,0,8963,1069,1,0,0,0,8964,8965,7,59,0,0,8965,1071, + 1,0,0,0,8966,8967,5,66,0,0,8967,8969,5,147,0,0,8968,8970,3,1036, + 518,0,8969,8968,1,0,0,0,8969,8970,1,0,0,0,8970,8971,1,0,0,0,8971, + 8972,3,1074,537,0,8972,1073,1,0,0,0,8973,8978,3,1076,538,0,8974, + 8975,5,6,0,0,8975,8977,3,1076,538,0,8976,8974,1,0,0,0,8977,8980, + 1,0,0,0,8978,8976,1,0,0,0,8978,8979,1,0,0,0,8979,1075,1,0,0,0,8980, + 8978,1,0,0,0,8981,8991,3,1336,668,0,8982,8991,3,1078,539,0,8983, + 8991,3,1082,541,0,8984,8991,3,1080,540,0,8985,8991,3,1084,542,0, + 8986,8987,5,2,0,0,8987,8988,3,1330,665,0,8988,8989,5,3,0,0,8989, + 8991,1,0,0,0,8990,8981,1,0,0,0,8990,8982,1,0,0,0,8990,8983,1,0,0, + 0,8990,8984,1,0,0,0,8990,8985,1,0,0,0,8990,8986,1,0,0,0,8991,1077, + 1,0,0,0,8992,8993,5,2,0,0,8993,8994,5,3,0,0,8994,1079,1,0,0,0,8995, + 8996,5,468,0,0,8996,8997,5,2,0,0,8997,8998,3,1330,665,0,8998,8999, + 5,3,0,0,8999,1081,1,0,0,0,9000,9001,5,469,0,0,9001,9002,5,2,0,0, + 9002,9003,3,1330,665,0,9003,9004,5,3,0,0,9004,1083,1,0,0,0,9005, + 9006,5,470,0,0,9006,9007,5,471,0,0,9007,9008,5,2,0,0,9008,9009,3, + 1074,537,0,9009,9010,5,3,0,0,9010,1085,1,0,0,0,9011,9012,5,67,0, + 0,9012,9013,3,1212,606,0,9013,1087,1,0,0,0,9014,9019,3,1092,546, + 0,9015,9016,5,62,0,0,9016,9017,5,300,0,0,9017,9019,5,81,0,0,9018, + 9014,1,0,0,0,9018,9015,1,0,0,0,9019,1089,1,0,0,0,9020,9021,3,1088, + 544,0,9021,1091,1,0,0,0,9022,9024,3,1094,547,0,9023,9022,1,0,0,0, + 9024,9025,1,0,0,0,9025,9023,1,0,0,0,9025,9026,1,0,0,0,9026,1093, + 1,0,0,0,9027,9029,3,1096,548,0,9028,9030,3,1098,549,0,9029,9028, + 1,0,0,0,9029,9030,1,0,0,0,9030,9032,1,0,0,0,9031,9033,3,980,490, + 0,9032,9031,1,0,0,0,9032,9033,1,0,0,0,9033,1095,1,0,0,0,9034,9044, + 5,62,0,0,9035,9036,5,269,0,0,9036,9038,5,245,0,0,9037,9035,1,0,0, + 0,9037,9038,1,0,0,0,9038,9039,1,0,0,0,9039,9045,5,369,0,0,9040,9042, + 5,245,0,0,9041,9040,1,0,0,0,9041,9042,1,0,0,0,9042,9043,1,0,0,0, + 9043,9045,5,334,0,0,9044,9037,1,0,0,0,9044,9041,1,0,0,0,9045,1097, + 1,0,0,0,9046,9047,5,275,0,0,9047,9048,3,1390,695,0,9048,1099,1,0, + 0,0,9049,9050,5,422,0,0,9050,9051,5,2,0,0,9051,9052,3,1328,664,0, + 9052,9060,5,3,0,0,9053,9054,5,6,0,0,9054,9055,5,2,0,0,9055,9056, + 3,1328,664,0,9056,9057,5,3,0,0,9057,9059,1,0,0,0,9058,9053,1,0,0, + 0,9059,9062,1,0,0,0,9060,9058,1,0,0,0,9060,9061,1,0,0,0,9061,1101, + 1,0,0,0,9062,9060,1,0,0,0,9063,9064,5,64,0,0,9064,9065,3,1104,552, + 0,9065,1103,1,0,0,0,9066,9071,3,1106,553,0,9067,9068,5,6,0,0,9068, + 9070,3,1106,553,0,9069,9067,1,0,0,0,9070,9073,1,0,0,0,9071,9069, + 1,0,0,0,9071,9072,1,0,0,0,9072,1105,1,0,0,0,9073,9071,1,0,0,0,9074, + 9077,3,1118,559,0,9075,9077,3,1120,560,0,9076,9074,1,0,0,0,9076, + 9075,1,0,0,0,9077,9079,1,0,0,0,9078,9080,3,1110,555,0,9079,9078, + 1,0,0,0,9079,9080,1,0,0,0,9080,9082,1,0,0,0,9081,9083,3,1130,565, + 0,9082,9081,1,0,0,0,9082,9083,1,0,0,0,9083,9136,1,0,0,0,9084,9086, + 3,1134,567,0,9085,9087,3,1112,556,0,9086,9085,1,0,0,0,9086,9087, + 1,0,0,0,9087,9136,1,0,0,0,9088,9090,3,1154,577,0,9089,9091,3,1110, + 555,0,9090,9089,1,0,0,0,9090,9091,1,0,0,0,9091,9136,1,0,0,0,9092, + 9094,3,1002,501,0,9093,9095,3,1110,555,0,9094,9093,1,0,0,0,9094, + 9095,1,0,0,0,9095,9136,1,0,0,0,9096,9109,5,72,0,0,9097,9099,3,1154, + 577,0,9098,9100,3,1110,555,0,9099,9098,1,0,0,0,9099,9100,1,0,0,0, + 9100,9110,1,0,0,0,9101,9103,3,1134,567,0,9102,9104,3,1112,556,0, + 9103,9102,1,0,0,0,9103,9104,1,0,0,0,9104,9110,1,0,0,0,9105,9107, + 3,1002,501,0,9106,9108,3,1110,555,0,9107,9106,1,0,0,0,9107,9108, + 1,0,0,0,9108,9110,1,0,0,0,9109,9097,1,0,0,0,9109,9101,1,0,0,0,9109, + 9105,1,0,0,0,9110,9136,1,0,0,0,9111,9112,5,2,0,0,9112,9129,3,1106, + 553,0,9113,9114,5,110,0,0,9114,9115,5,118,0,0,9115,9130,3,1106,553, + 0,9116,9118,5,121,0,0,9117,9119,3,1114,557,0,9118,9117,1,0,0,0,9118, + 9119,1,0,0,0,9119,9120,1,0,0,0,9120,9121,5,118,0,0,9121,9130,3,1106, + 553,0,9122,9124,3,1114,557,0,9123,9122,1,0,0,0,9123,9124,1,0,0,0, + 9124,9125,1,0,0,0,9125,9126,5,118,0,0,9126,9127,3,1106,553,0,9127, + 9128,3,1116,558,0,9128,9130,1,0,0,0,9129,9113,1,0,0,0,9129,9116, + 1,0,0,0,9129,9123,1,0,0,0,9129,9130,1,0,0,0,9130,9131,1,0,0,0,9131, + 9133,5,3,0,0,9132,9134,3,1110,555,0,9133,9132,1,0,0,0,9133,9134, + 1,0,0,0,9134,9136,1,0,0,0,9135,9076,1,0,0,0,9135,9084,1,0,0,0,9135, + 9088,1,0,0,0,9135,9092,1,0,0,0,9135,9096,1,0,0,0,9135,9111,1,0,0, + 0,9136,9155,1,0,0,0,9137,9138,5,110,0,0,9138,9139,5,118,0,0,9139, + 9154,3,1106,553,0,9140,9142,5,121,0,0,9141,9143,3,1114,557,0,9142, + 9141,1,0,0,0,9142,9143,1,0,0,0,9143,9144,1,0,0,0,9144,9145,5,118, + 0,0,9145,9154,3,1106,553,0,9146,9148,3,1114,557,0,9147,9146,1,0, + 0,0,9147,9148,1,0,0,0,9148,9149,1,0,0,0,9149,9150,5,118,0,0,9150, + 9151,3,1106,553,0,9151,9152,3,1116,558,0,9152,9154,1,0,0,0,9153, + 9137,1,0,0,0,9153,9140,1,0,0,0,9153,9147,1,0,0,0,9154,9157,1,0,0, + 0,9155,9153,1,0,0,0,9155,9156,1,0,0,0,9156,1107,1,0,0,0,9157,9155, + 1,0,0,0,9158,9160,5,36,0,0,9159,9158,1,0,0,0,9159,9160,1,0,0,0,9160, + 9161,1,0,0,0,9161,9166,3,1474,737,0,9162,9163,5,2,0,0,9163,9164, + 3,1416,708,0,9164,9165,5,3,0,0,9165,9167,1,0,0,0,9166,9162,1,0,0, + 0,9166,9167,1,0,0,0,9167,1109,1,0,0,0,9168,9169,3,1108,554,0,9169, + 1111,1,0,0,0,9170,9183,3,1108,554,0,9171,9173,5,36,0,0,9172,9174, + 3,1474,737,0,9173,9172,1,0,0,0,9173,9174,1,0,0,0,9174,9177,1,0,0, + 0,9175,9177,3,1474,737,0,9176,9171,1,0,0,0,9176,9175,1,0,0,0,9177, + 9178,1,0,0,0,9178,9179,5,2,0,0,9179,9180,3,1150,575,0,9180,9181, + 5,3,0,0,9181,9183,1,0,0,0,9182,9170,1,0,0,0,9182,9176,1,0,0,0,9183, + 1113,1,0,0,0,9184,9186,7,60,0,0,9185,9187,5,123,0,0,9186,9185,1, + 0,0,0,9186,9187,1,0,0,0,9187,1115,1,0,0,0,9188,9189,5,100,0,0,9189, + 9190,5,2,0,0,9190,9191,3,244,122,0,9191,9192,5,3,0,0,9192,9196,1, + 0,0,0,9193,9194,5,80,0,0,9194,9196,3,1212,606,0,9195,9188,1,0,0, + 0,9195,9193,1,0,0,0,9196,1117,1,0,0,0,9197,9199,5,81,0,0,9198,9197, + 1,0,0,0,9198,9199,1,0,0,0,9199,9200,1,0,0,0,9200,9202,3,1406,703, + 0,9201,9203,5,9,0,0,9202,9201,1,0,0,0,9202,9203,1,0,0,0,9203,9219, + 1,0,0,0,9204,9210,5,81,0,0,9205,9211,3,1406,703,0,9206,9207,5,2, + 0,0,9207,9208,3,1406,703,0,9208,9209,5,3,0,0,9209,9211,1,0,0,0,9210, + 9205,1,0,0,0,9210,9206,1,0,0,0,9211,9219,1,0,0,0,9212,9213,5,68, + 0,0,9213,9216,5,323,0,0,9214,9217,3,1422,711,0,9215,9217,5,111,0, + 0,9216,9214,1,0,0,0,9216,9215,1,0,0,0,9217,9219,1,0,0,0,9218,9198, + 1,0,0,0,9218,9204,1,0,0,0,9218,9212,1,0,0,0,9219,1119,1,0,0,0,9220, + 9222,5,81,0,0,9221,9220,1,0,0,0,9221,9222,1,0,0,0,9222,9223,1,0, + 0,0,9223,9225,3,1410,705,0,9224,9226,5,9,0,0,9225,9224,1,0,0,0,9225, + 9226,1,0,0,0,9226,9228,1,0,0,0,9227,9229,3,244,122,0,9228,9227,1, + 0,0,0,9228,9229,1,0,0,0,9229,9231,1,0,0,0,9230,9232,3,1144,572,0, + 9231,9230,1,0,0,0,9231,9232,1,0,0,0,9232,1121,1,0,0,0,9233,9235, + 5,92,0,0,9234,9236,5,81,0,0,9235,9234,1,0,0,0,9235,9236,1,0,0,0, + 9236,9237,1,0,0,0,9237,9239,3,1406,703,0,9238,9240,5,9,0,0,9239, + 9238,1,0,0,0,9239,9240,1,0,0,0,9240,9245,1,0,0,0,9241,9242,5,2,0, + 0,9242,9243,3,244,122,0,9243,9244,5,3,0,0,9244,9246,1,0,0,0,9245, + 9241,1,0,0,0,9245,9246,1,0,0,0,9246,9248,1,0,0,0,9247,9249,3,1144, + 572,0,9248,9247,1,0,0,0,9248,9249,1,0,0,0,9249,9267,1,0,0,0,9250, + 9251,5,92,0,0,9251,9257,5,81,0,0,9252,9258,3,1406,703,0,9253,9254, + 5,2,0,0,9254,9255,3,1406,703,0,9255,9256,5,3,0,0,9256,9258,1,0,0, + 0,9257,9252,1,0,0,0,9257,9253,1,0,0,0,9258,9267,1,0,0,0,9259,9260, + 5,350,0,0,9260,9261,5,68,0,0,9261,9264,5,323,0,0,9262,9265,3,1422, + 711,0,9263,9265,5,111,0,0,9264,9262,1,0,0,0,9264,9263,1,0,0,0,9265, + 9267,1,0,0,0,9266,9233,1,0,0,0,9266,9250,1,0,0,0,9266,9259,1,0,0, + 0,9267,1123,1,0,0,0,9268,9273,3,1118,559,0,9269,9270,5,6,0,0,9270, + 9272,3,1118,559,0,9271,9269,1,0,0,0,9272,9275,1,0,0,0,9273,9271, + 1,0,0,0,9273,9274,1,0,0,0,9274,1125,1,0,0,0,9275,9273,1,0,0,0,9276, + 9281,3,1122,561,0,9277,9278,5,6,0,0,9278,9280,3,1122,561,0,9279, + 9277,1,0,0,0,9280,9283,1,0,0,0,9281,9279,1,0,0,0,9281,9282,1,0,0, + 0,9282,1127,1,0,0,0,9283,9281,1,0,0,0,9284,9289,3,1118,559,0,9285, + 9287,5,36,0,0,9286,9285,1,0,0,0,9286,9287,1,0,0,0,9287,9288,1,0, + 0,0,9288,9290,3,1474,737,0,9289,9286,1,0,0,0,9289,9290,1,0,0,0,9290, + 1129,1,0,0,0,9291,9292,5,472,0,0,9292,9293,3,1444,722,0,9293,9294, + 5,2,0,0,9294,9295,3,1328,664,0,9295,9297,5,3,0,0,9296,9298,3,1132, + 566,0,9297,9296,1,0,0,0,9297,9298,1,0,0,0,9298,1131,1,0,0,0,9299, + 9300,5,310,0,0,9300,9301,5,2,0,0,9301,9302,3,1212,606,0,9302,9303, + 5,3,0,0,9303,1133,1,0,0,0,9304,9306,3,1262,631,0,9305,9307,3,1142, + 571,0,9306,9305,1,0,0,0,9306,9307,1,0,0,0,9307,9317,1,0,0,0,9308, + 9309,5,320,0,0,9309,9310,5,64,0,0,9310,9311,5,2,0,0,9311,9312,3, + 1138,569,0,9312,9314,5,3,0,0,9313,9315,3,1142,571,0,9314,9313,1, + 0,0,0,9314,9315,1,0,0,0,9315,9317,1,0,0,0,9316,9304,1,0,0,0,9316, + 9308,1,0,0,0,9317,1135,1,0,0,0,9318,9320,3,1262,631,0,9319,9321, + 3,1140,570,0,9320,9319,1,0,0,0,9320,9321,1,0,0,0,9321,1137,1,0,0, + 0,9322,9327,3,1136,568,0,9323,9324,5,6,0,0,9324,9326,3,1136,568, + 0,9325,9323,1,0,0,0,9326,9329,1,0,0,0,9327,9325,1,0,0,0,9327,9328, + 1,0,0,0,9328,1139,1,0,0,0,9329,9327,1,0,0,0,9330,9331,5,36,0,0,9331, + 9332,5,2,0,0,9332,9333,3,1150,575,0,9333,9334,5,3,0,0,9334,1141, + 1,0,0,0,9335,9336,5,105,0,0,9336,9337,5,473,0,0,9337,1143,1,0,0, + 0,9338,9339,5,103,0,0,9339,9340,3,1336,668,0,9340,1145,1,0,0,0,9341, + 9346,5,103,0,0,9342,9343,5,434,0,0,9343,9344,5,275,0,0,9344,9347, + 3,994,497,0,9345,9347,3,1212,606,0,9346,9342,1,0,0,0,9346,9345,1, + 0,0,0,9347,1147,1,0,0,0,9348,9349,3,1150,575,0,9349,1149,1,0,0,0, + 9350,9355,3,1152,576,0,9351,9352,5,6,0,0,9352,9354,3,1152,576,0, + 9353,9351,1,0,0,0,9354,9357,1,0,0,0,9355,9353,1,0,0,0,9355,9356, + 1,0,0,0,9356,1151,1,0,0,0,9357,9355,1,0,0,0,9358,9359,3,1474,737, + 0,9359,9361,3,1168,584,0,9360,9362,3,126,63,0,9361,9360,1,0,0,0, + 9361,9362,1,0,0,0,9362,1153,1,0,0,0,9363,9364,5,474,0,0,9364,9380, + 5,2,0,0,9365,9366,3,1254,627,0,9366,9367,3,1280,640,0,9367,9368, + 5,475,0,0,9368,9369,3,1156,578,0,9369,9381,1,0,0,0,9370,9371,5,476, + 0,0,9371,9372,5,2,0,0,9372,9373,3,1164,582,0,9373,9374,5,3,0,0,9374, + 9375,5,6,0,0,9375,9376,3,1254,627,0,9376,9377,3,1280,640,0,9377, + 9378,5,475,0,0,9378,9379,3,1156,578,0,9379,9381,1,0,0,0,9380,9365, + 1,0,0,0,9380,9370,1,0,0,0,9381,9382,1,0,0,0,9382,9383,5,3,0,0,9383, + 1155,1,0,0,0,9384,9389,3,1158,579,0,9385,9386,5,6,0,0,9386,9388, + 3,1158,579,0,9387,9385,1,0,0,0,9388,9391,1,0,0,0,9389,9387,1,0,0, + 0,9389,9390,1,0,0,0,9390,1157,1,0,0,0,9391,9389,1,0,0,0,9392,9399, + 3,1474,737,0,9393,9395,3,1168,584,0,9394,9396,3,1160,580,0,9395, + 9394,1,0,0,0,9395,9396,1,0,0,0,9396,9400,1,0,0,0,9397,9398,5,62, + 0,0,9398,9400,5,473,0,0,9399,9393,1,0,0,0,9399,9397,1,0,0,0,9400, + 1159,1,0,0,0,9401,9403,3,1162,581,0,9402,9401,1,0,0,0,9403,9404, + 1,0,0,0,9404,9402,1,0,0,0,9404,9405,1,0,0,0,9405,1161,1,0,0,0,9406, + 9407,5,53,0,0,9407,9415,3,1212,606,0,9408,9409,3,1492,746,0,9409, + 9410,3,1212,606,0,9410,9415,1,0,0,0,9411,9412,5,77,0,0,9412,9415, + 5,78,0,0,9413,9415,5,78,0,0,9414,9406,1,0,0,0,9414,9408,1,0,0,0, + 9414,9411,1,0,0,0,9414,9413,1,0,0,0,9415,1163,1,0,0,0,9416,9421, + 3,1166,583,0,9417,9418,5,6,0,0,9418,9420,3,1166,583,0,9419,9417, + 1,0,0,0,9420,9423,1,0,0,0,9421,9419,1,0,0,0,9421,9422,1,0,0,0,9422, + 1165,1,0,0,0,9423,9421,1,0,0,0,9424,9425,3,1252,626,0,9425,9426, + 5,36,0,0,9426,9427,3,1490,745,0,9427,9431,1,0,0,0,9428,9429,5,53, + 0,0,9429,9431,3,1252,626,0,9430,9424,1,0,0,0,9430,9428,1,0,0,0,9431, + 1167,1,0,0,0,9432,9434,5,415,0,0,9433,9432,1,0,0,0,9433,9434,1,0, + 0,0,9434,9435,1,0,0,0,9435,9444,3,1172,586,0,9436,9445,3,1170,585, + 0,9437,9442,5,35,0,0,9438,9439,5,4,0,0,9439,9440,3,1456,728,0,9440, + 9441,5,5,0,0,9441,9443,1,0,0,0,9442,9438,1,0,0,0,9442,9443,1,0,0, + 0,9443,9445,1,0,0,0,9444,9436,1,0,0,0,9444,9437,1,0,0,0,9445,9451, + 1,0,0,0,9446,9447,3,1412,706,0,9447,9448,5,27,0,0,9448,9449,7,61, + 0,0,9449,9451,1,0,0,0,9450,9433,1,0,0,0,9450,9446,1,0,0,0,9451,1169, + 1,0,0,0,9452,9454,5,4,0,0,9453,9455,3,1456,728,0,9454,9453,1,0,0, + 0,9454,9455,1,0,0,0,9455,9456,1,0,0,0,9456,9458,5,5,0,0,9457,9452, + 1,0,0,0,9458,9461,1,0,0,0,9459,9457,1,0,0,0,9459,9460,1,0,0,0,9460, + 1171,1,0,0,0,9461,9459,1,0,0,0,9462,9478,3,1176,588,0,9463,9478, + 3,1180,590,0,9464,9478,3,1184,592,0,9465,9478,3,1192,596,0,9466, + 9478,3,1200,600,0,9467,9475,3,1202,601,0,9468,9470,3,1206,603,0, + 9469,9468,1,0,0,0,9469,9470,1,0,0,0,9470,9476,1,0,0,0,9471,9472, + 5,2,0,0,9472,9473,3,1456,728,0,9473,9474,5,3,0,0,9474,9476,1,0,0, + 0,9475,9469,1,0,0,0,9475,9471,1,0,0,0,9476,9478,1,0,0,0,9477,9462, + 1,0,0,0,9477,9463,1,0,0,0,9477,9464,1,0,0,0,9477,9465,1,0,0,0,9477, + 9466,1,0,0,0,9477,9467,1,0,0,0,9478,1173,1,0,0,0,9479,9484,3,1180, + 590,0,9480,9484,3,1186,593,0,9481,9484,3,1194,597,0,9482,9484,3, + 1200,600,0,9483,9479,1,0,0,0,9483,9480,1,0,0,0,9483,9481,1,0,0,0, + 9483,9482,1,0,0,0,9484,1175,1,0,0,0,9485,9487,3,1482,741,0,9486, + 9488,3,560,280,0,9487,9486,1,0,0,0,9487,9488,1,0,0,0,9488,9490,1, + 0,0,0,9489,9491,3,1178,589,0,9490,9489,1,0,0,0,9490,9491,1,0,0,0, + 9491,1177,1,0,0,0,9492,9493,5,2,0,0,9493,9494,3,1328,664,0,9494, + 9495,5,3,0,0,9495,1179,1,0,0,0,9496,9521,5,401,0,0,9497,9521,5,402, + 0,0,9498,9521,5,416,0,0,9499,9521,5,388,0,0,9500,9521,5,413,0,0, + 9501,9503,5,398,0,0,9502,9504,3,1182,591,0,9503,9502,1,0,0,0,9503, + 9504,1,0,0,0,9504,9521,1,0,0,0,9505,9506,5,190,0,0,9506,9521,5,412, + 0,0,9507,9509,5,395,0,0,9508,9510,3,1178,589,0,9509,9508,1,0,0,0, + 9509,9510,1,0,0,0,9510,9521,1,0,0,0,9511,9513,5,394,0,0,9512,9514, + 3,1178,589,0,9513,9512,1,0,0,0,9513,9514,1,0,0,0,9514,9521,1,0,0, + 0,9515,9517,5,409,0,0,9516,9518,3,1178,589,0,9517,9516,1,0,0,0,9517, + 9518,1,0,0,0,9518,9521,1,0,0,0,9519,9521,5,390,0,0,9520,9496,1,0, + 0,0,9520,9497,1,0,0,0,9520,9498,1,0,0,0,9520,9499,1,0,0,0,9520,9500, + 1,0,0,0,9520,9501,1,0,0,0,9520,9505,1,0,0,0,9520,9507,1,0,0,0,9520, + 9511,1,0,0,0,9520,9515,1,0,0,0,9520,9519,1,0,0,0,9521,1181,1,0,0, + 0,9522,9523,5,2,0,0,9523,9524,3,1456,728,0,9524,9525,5,3,0,0,9525, + 1183,1,0,0,0,9526,9529,3,1188,594,0,9527,9529,3,1190,595,0,9528, + 9526,1,0,0,0,9528,9527,1,0,0,0,9529,1185,1,0,0,0,9530,9533,3,1188, + 594,0,9531,9533,3,1190,595,0,9532,9530,1,0,0,0,9532,9531,1,0,0,0, + 9533,1187,1,0,0,0,9534,9536,5,389,0,0,9535,9537,3,1198,599,0,9536, + 9535,1,0,0,0,9536,9537,1,0,0,0,9537,9538,1,0,0,0,9538,9539,5,2,0, + 0,9539,9540,3,1328,664,0,9540,9541,5,3,0,0,9541,1189,1,0,0,0,9542, + 9544,5,389,0,0,9543,9545,3,1198,599,0,9544,9543,1,0,0,0,9544,9545, + 1,0,0,0,9545,1191,1,0,0,0,9546,9551,3,1196,598,0,9547,9548,5,2,0, + 0,9548,9549,3,1456,728,0,9549,9550,5,3,0,0,9550,9552,1,0,0,0,9551, + 9547,1,0,0,0,9551,9552,1,0,0,0,9552,1193,1,0,0,0,9553,9558,3,1196, + 598,0,9554,9555,5,2,0,0,9555,9556,3,1456,728,0,9556,9557,5,3,0,0, + 9557,9559,1,0,0,0,9558,9554,1,0,0,0,9558,9559,1,0,0,0,9559,1195, + 1,0,0,0,9560,9562,7,62,0,0,9561,9563,3,1198,599,0,9562,9561,1,0, + 0,0,9562,9563,1,0,0,0,9563,9571,1,0,0,0,9564,9571,5,423,0,0,9565, + 9566,5,405,0,0,9566,9568,7,63,0,0,9567,9569,3,1198,599,0,9568,9567, + 1,0,0,0,9568,9569,1,0,0,0,9569,9571,1,0,0,0,9570,9560,1,0,0,0,9570, + 9564,1,0,0,0,9570,9565,1,0,0,0,9571,1197,1,0,0,0,9572,9573,5,374, + 0,0,9573,1199,1,0,0,0,9574,9579,7,64,0,0,9575,9576,5,2,0,0,9576, + 9577,3,1456,728,0,9577,9578,5,3,0,0,9578,9580,1,0,0,0,9579,9575, + 1,0,0,0,9579,9580,1,0,0,0,9580,9582,1,0,0,0,9581,9583,3,1204,602, + 0,9582,9581,1,0,0,0,9582,9583,1,0,0,0,9583,1201,1,0,0,0,9584,9585, + 5,403,0,0,9585,1203,1,0,0,0,9586,9587,5,105,0,0,9587,9588,5,418, + 0,0,9588,9593,5,386,0,0,9589,9590,5,379,0,0,9590,9591,5,418,0,0, + 9591,9593,5,386,0,0,9592,9586,1,0,0,0,9592,9589,1,0,0,0,9593,1205, + 1,0,0,0,9594,9620,5,384,0,0,9595,9620,5,264,0,0,9596,9620,5,176, + 0,0,9597,9620,5,218,0,0,9598,9620,5,261,0,0,9599,9620,3,1208,604, + 0,9600,9601,5,384,0,0,9601,9602,5,94,0,0,9602,9620,5,264,0,0,9603, + 9604,5,176,0,0,9604,9608,5,94,0,0,9605,9609,5,218,0,0,9606,9609, + 5,261,0,0,9607,9609,3,1208,604,0,9608,9605,1,0,0,0,9608,9606,1,0, + 0,0,9608,9607,1,0,0,0,9609,9620,1,0,0,0,9610,9611,5,218,0,0,9611, + 9614,5,94,0,0,9612,9615,5,261,0,0,9613,9615,3,1208,604,0,9614,9612, + 1,0,0,0,9614,9613,1,0,0,0,9615,9620,1,0,0,0,9616,9617,5,261,0,0, + 9617,9618,5,94,0,0,9618,9620,3,1208,604,0,9619,9594,1,0,0,0,9619, + 9595,1,0,0,0,9619,9596,1,0,0,0,9619,9597,1,0,0,0,9619,9598,1,0,0, + 0,9619,9599,1,0,0,0,9619,9600,1,0,0,0,9619,9603,1,0,0,0,9619,9610, + 1,0,0,0,9619,9616,1,0,0,0,9620,1207,1,0,0,0,9621,9626,5,326,0,0, + 9622,9623,5,2,0,0,9623,9624,3,1456,728,0,9624,9625,5,3,0,0,9625, + 9627,1,0,0,0,9626,9622,1,0,0,0,9626,9627,1,0,0,0,9627,1209,1,0,0, + 0,9628,9629,5,197,0,0,9629,9630,3,1212,606,0,9630,1211,1,0,0,0,9631, + 9632,3,1214,607,0,9632,1213,1,0,0,0,9633,9635,3,1216,608,0,9634, + 9636,3,1322,661,0,9635,9634,1,0,0,0,9635,9636,1,0,0,0,9636,1215, + 1,0,0,0,9637,9642,3,1218,609,0,9638,9639,7,65,0,0,9639,9641,3,1218, + 609,0,9640,9638,1,0,0,0,9641,9644,1,0,0,0,9642,9640,1,0,0,0,9642, + 9643,1,0,0,0,9643,1217,1,0,0,0,9644,9642,1,0,0,0,9645,9650,3,1220, + 610,0,9646,9647,5,82,0,0,9647,9649,3,1220,610,0,9648,9646,1,0,0, + 0,9649,9652,1,0,0,0,9650,9648,1,0,0,0,9650,9651,1,0,0,0,9651,1219, + 1,0,0,0,9652,9650,1,0,0,0,9653,9658,3,1222,611,0,9654,9655,5,33, + 0,0,9655,9657,3,1222,611,0,9656,9654,1,0,0,0,9657,9660,1,0,0,0,9658, + 9656,1,0,0,0,9658,9659,1,0,0,0,9659,1221,1,0,0,0,9660,9658,1,0,0, + 0,9661,9667,3,1224,612,0,9662,9664,5,77,0,0,9663,9662,1,0,0,0,9663, + 9664,1,0,0,0,9664,9665,1,0,0,0,9665,9666,5,68,0,0,9666,9668,3,1362, + 681,0,9667,9663,1,0,0,0,9667,9668,1,0,0,0,9668,1223,1,0,0,0,9669, + 9671,5,77,0,0,9670,9669,1,0,0,0,9670,9671,1,0,0,0,9671,9672,1,0, + 0,0,9672,9673,3,1226,613,0,9673,1225,1,0,0,0,9674,9676,3,1228,614, + 0,9675,9677,7,66,0,0,9676,9675,1,0,0,0,9676,9677,1,0,0,0,9677,1227, + 1,0,0,0,9678,9702,3,1230,615,0,9679,9681,5,116,0,0,9680,9682,5,77, + 0,0,9681,9680,1,0,0,0,9681,9682,1,0,0,0,9682,9700,1,0,0,0,9683,9701, + 5,78,0,0,9684,9701,5,96,0,0,9685,9701,5,60,0,0,9686,9701,5,365,0, + 0,9687,9688,5,56,0,0,9688,9689,5,64,0,0,9689,9701,3,1212,606,0,9690, + 9691,5,275,0,0,9691,9692,5,2,0,0,9692,9693,3,1342,671,0,9693,9694, + 5,3,0,0,9694,9701,1,0,0,0,9695,9701,5,188,0,0,9696,9698,3,1352,676, + 0,9697,9696,1,0,0,0,9697,9698,1,0,0,0,9698,9699,1,0,0,0,9699,9701, + 5,478,0,0,9700,9683,1,0,0,0,9700,9684,1,0,0,0,9700,9685,1,0,0,0, + 9700,9686,1,0,0,0,9700,9687,1,0,0,0,9700,9690,1,0,0,0,9700,9695, + 1,0,0,0,9700,9697,1,0,0,0,9701,9703,1,0,0,0,9702,9679,1,0,0,0,9702, + 9703,1,0,0,0,9703,1229,1,0,0,0,9704,9716,3,1232,616,0,9705,9706, + 7,67,0,0,9706,9717,3,1232,616,0,9707,9708,3,1326,663,0,9708,9714, + 3,1316,658,0,9709,9715,3,1002,501,0,9710,9711,5,2,0,0,9711,9712, + 3,1212,606,0,9712,9713,5,3,0,0,9713,9715,1,0,0,0,9714,9709,1,0,0, + 0,9714,9710,1,0,0,0,9715,9717,1,0,0,0,9716,9705,1,0,0,0,9716,9707, + 1,0,0,0,9716,9717,1,0,0,0,9717,1231,1,0,0,0,9718,9736,3,1234,617, + 0,9719,9721,5,77,0,0,9720,9719,1,0,0,0,9720,9721,1,0,0,0,9721,9730, + 1,0,0,0,9722,9731,5,120,0,0,9723,9731,5,114,0,0,9724,9725,5,127, + 0,0,9725,9731,5,94,0,0,9726,9728,5,387,0,0,9727,9729,5,91,0,0,9728, + 9727,1,0,0,0,9728,9729,1,0,0,0,9729,9731,1,0,0,0,9730,9722,1,0,0, + 0,9730,9723,1,0,0,0,9730,9724,1,0,0,0,9730,9726,1,0,0,0,9731,9732, + 1,0,0,0,9732,9734,3,1234,617,0,9733,9735,3,1210,605,0,9734,9733, + 1,0,0,0,9734,9735,1,0,0,0,9735,9737,1,0,0,0,9736,9720,1,0,0,0,9736, + 9737,1,0,0,0,9737,1233,1,0,0,0,9738,9744,3,1236,618,0,9739,9740, + 3,1322,661,0,9740,9741,3,1236,618,0,9741,9743,1,0,0,0,9742,9739, + 1,0,0,0,9743,9746,1,0,0,0,9744,9742,1,0,0,0,9744,9745,1,0,0,0,9745, + 1235,1,0,0,0,9746,9744,1,0,0,0,9747,9749,3,1322,661,0,9748,9747, + 1,0,0,0,9748,9749,1,0,0,0,9749,9750,1,0,0,0,9750,9751,3,1238,619, + 0,9751,1237,1,0,0,0,9752,9757,3,1240,620,0,9753,9754,7,68,0,0,9754, + 9756,3,1240,620,0,9755,9753,1,0,0,0,9756,9759,1,0,0,0,9757,9755, + 1,0,0,0,9757,9758,1,0,0,0,9758,1239,1,0,0,0,9759,9757,1,0,0,0,9760, + 9765,3,1242,621,0,9761,9762,7,69,0,0,9762,9764,3,1242,621,0,9763, + 9761,1,0,0,0,9764,9767,1,0,0,0,9765,9763,1,0,0,0,9765,9766,1,0,0, + 0,9766,1241,1,0,0,0,9767,9765,1,0,0,0,9768,9771,3,1244,622,0,9769, + 9770,5,15,0,0,9770,9772,3,1212,606,0,9771,9769,1,0,0,0,9771,9772, + 1,0,0,0,9772,1243,1,0,0,0,9773,9775,7,68,0,0,9774,9773,1,0,0,0,9774, + 9775,1,0,0,0,9775,9776,1,0,0,0,9776,9777,3,1246,623,0,9777,1245, + 1,0,0,0,9778,9783,3,1248,624,0,9779,9780,5,142,0,0,9780,9781,5,418, + 0,0,9781,9782,5,386,0,0,9782,9784,3,1212,606,0,9783,9779,1,0,0,0, + 9783,9784,1,0,0,0,9784,1247,1,0,0,0,9785,9788,3,1250,625,0,9786, + 9787,5,43,0,0,9787,9789,3,558,279,0,9788,9786,1,0,0,0,9788,9789, + 1,0,0,0,9789,1249,1,0,0,0,9790,9795,3,1254,627,0,9791,9792,5,26, + 0,0,9792,9794,3,1168,584,0,9793,9791,1,0,0,0,9794,9797,1,0,0,0,9795, + 9793,1,0,0,0,9795,9796,1,0,0,0,9796,1251,1,0,0,0,9797,9795,1,0,0, + 0,9798,9799,6,626,-1,0,9799,9806,3,1254,627,0,9800,9801,7,68,0,0, + 9801,9806,3,1252,626,9,9802,9803,3,1322,661,0,9803,9804,3,1252,626, + 3,9804,9806,1,0,0,0,9805,9798,1,0,0,0,9805,9800,1,0,0,0,9805,9802, + 1,0,0,0,9806,9846,1,0,0,0,9807,9808,10,8,0,0,9808,9809,5,15,0,0, + 9809,9845,3,1252,626,9,9810,9811,10,7,0,0,9811,9812,7,69,0,0,9812, + 9845,3,1252,626,8,9813,9814,10,6,0,0,9814,9815,7,68,0,0,9815,9845, + 3,1252,626,7,9816,9817,10,5,0,0,9817,9818,3,1322,661,0,9818,9819, + 3,1252,626,6,9819,9845,1,0,0,0,9820,9821,10,4,0,0,9821,9822,7,67, + 0,0,9822,9845,3,1252,626,5,9823,9824,10,10,0,0,9824,9825,5,26,0, + 0,9825,9845,3,1168,584,0,9826,9827,10,2,0,0,9827,9845,3,1322,661, + 0,9828,9829,10,1,0,0,9829,9831,5,116,0,0,9830,9832,5,77,0,0,9831, + 9830,1,0,0,0,9831,9832,1,0,0,0,9832,9842,1,0,0,0,9833,9834,5,56, + 0,0,9834,9835,5,64,0,0,9835,9843,3,1252,626,0,9836,9837,5,275,0, + 0,9837,9838,5,2,0,0,9838,9839,3,1342,671,0,9839,9840,5,3,0,0,9840, + 9843,1,0,0,0,9841,9843,5,188,0,0,9842,9833,1,0,0,0,9842,9836,1,0, + 0,0,9842,9841,1,0,0,0,9843,9845,1,0,0,0,9844,9807,1,0,0,0,9844,9810, + 1,0,0,0,9844,9813,1,0,0,0,9844,9816,1,0,0,0,9844,9820,1,0,0,0,9844, + 9823,1,0,0,0,9844,9826,1,0,0,0,9844,9828,1,0,0,0,9845,9848,1,0,0, + 0,9846,9844,1,0,0,0,9846,9847,1,0,0,0,9847,1253,1,0,0,0,9848,9846, + 1,0,0,0,9849,9850,5,396,0,0,9850,9886,3,1002,501,0,9851,9854,5,35, + 0,0,9852,9855,3,1002,501,0,9853,9855,3,1344,672,0,9854,9852,1,0, + 0,0,9854,9853,1,0,0,0,9855,9886,1,0,0,0,9856,9857,5,28,0,0,9857, + 9886,3,1382,691,0,9858,9859,5,470,0,0,9859,9860,5,2,0,0,9860,9861, + 3,1328,664,0,9861,9862,5,3,0,0,9862,9886,1,0,0,0,9863,9864,5,98, + 0,0,9864,9886,3,1002,501,0,9865,9886,3,1448,724,0,9866,9886,3,1256, + 628,0,9867,9868,5,2,0,0,9868,9869,3,1212,606,0,9869,9870,5,3,0,0, + 9870,9871,3,1382,691,0,9871,9886,1,0,0,0,9872,9886,3,1364,682,0, + 9873,9886,3,1260,630,0,9874,9876,3,1002,501,0,9875,9877,3,1380,690, + 0,9876,9875,1,0,0,0,9876,9877,1,0,0,0,9877,9886,1,0,0,0,9878,9886, + 3,1312,656,0,9879,9886,3,1314,657,0,9880,9881,3,1310,655,0,9881, + 9882,5,125,0,0,9882,9883,3,1310,655,0,9883,9886,1,0,0,0,9884,9886, + 3,1374,687,0,9885,9849,1,0,0,0,9885,9851,1,0,0,0,9885,9856,1,0,0, + 0,9885,9858,1,0,0,0,9885,9863,1,0,0,0,9885,9865,1,0,0,0,9885,9866, + 1,0,0,0,9885,9867,1,0,0,0,9885,9872,1,0,0,0,9885,9873,1,0,0,0,9885, + 9874,1,0,0,0,9885,9878,1,0,0,0,9885,9879,1,0,0,0,9885,9880,1,0,0, + 0,9885,9884,1,0,0,0,9886,1255,1,0,0,0,9887,9888,5,574,0,0,9888,1257, + 1,0,0,0,9889,9915,3,1444,722,0,9890,9912,5,2,0,0,9891,9895,3,1338, + 669,0,9892,9893,5,6,0,0,9893,9894,5,101,0,0,9894,9896,3,1340,670, + 0,9895,9892,1,0,0,0,9895,9896,1,0,0,0,9896,9898,1,0,0,0,9897,9899, + 3,1042,521,0,9898,9897,1,0,0,0,9898,9899,1,0,0,0,9899,9913,1,0,0, + 0,9900,9901,5,101,0,0,9901,9903,3,1340,670,0,9902,9904,3,1042,521, + 0,9903,9902,1,0,0,0,9903,9904,1,0,0,0,9904,9913,1,0,0,0,9905,9906, + 7,57,0,0,9906,9908,3,1338,669,0,9907,9909,3,1042,521,0,9908,9907, + 1,0,0,0,9908,9909,1,0,0,0,9909,9913,1,0,0,0,9910,9913,5,9,0,0,9911, + 9913,1,0,0,0,9912,9891,1,0,0,0,9912,9900,1,0,0,0,9912,9905,1,0,0, + 0,9912,9910,1,0,0,0,9912,9911,1,0,0,0,9913,9914,1,0,0,0,9914,9916, + 5,3,0,0,9915,9890,1,0,0,0,9915,9916,1,0,0,0,9916,1259,1,0,0,0,9917, + 9919,3,1258,629,0,9918,9920,3,1284,642,0,9919,9918,1,0,0,0,9919, + 9920,1,0,0,0,9920,9922,1,0,0,0,9921,9923,3,1286,643,0,9922,9921, + 1,0,0,0,9922,9923,1,0,0,0,9923,9925,1,0,0,0,9924,9926,3,1294,647, + 0,9925,9924,1,0,0,0,9925,9926,1,0,0,0,9926,9929,1,0,0,0,9927,9929, + 3,1264,632,0,9928,9917,1,0,0,0,9928,9927,1,0,0,0,9929,1261,1,0,0, + 0,9930,9933,3,1258,629,0,9931,9933,3,1264,632,0,9932,9930,1,0,0, + 0,9932,9931,1,0,0,0,9933,1263,1,0,0,0,9934,9935,5,108,0,0,9935,9936, + 5,62,0,0,9936,9937,5,2,0,0,9937,9938,3,1212,606,0,9938,9939,5,3, + 0,0,9939,10119,1,0,0,0,9940,10119,5,48,0,0,9941,9946,5,50,0,0,9942, + 9943,5,2,0,0,9943,9944,3,1456,728,0,9944,9945,5,3,0,0,9945,9947, + 1,0,0,0,9946,9942,1,0,0,0,9946,9947,1,0,0,0,9947,10119,1,0,0,0,9948, + 9953,5,51,0,0,9949,9950,5,2,0,0,9950,9951,3,1456,728,0,9951,9952, + 5,3,0,0,9952,9954,1,0,0,0,9953,9949,1,0,0,0,9953,9954,1,0,0,0,9954, + 10119,1,0,0,0,9955,9960,5,75,0,0,9956,9957,5,2,0,0,9957,9958,3,1456, + 728,0,9958,9959,5,3,0,0,9959,9961,1,0,0,0,9960,9956,1,0,0,0,9960, + 9961,1,0,0,0,9961,10119,1,0,0,0,9962,9967,5,76,0,0,9963,9964,5,2, + 0,0,9964,9965,3,1456,728,0,9965,9966,5,3,0,0,9966,9968,1,0,0,0,9967, + 9963,1,0,0,0,9967,9968,1,0,0,0,9968,10119,1,0,0,0,9969,10119,5,49, + 0,0,9970,10119,5,52,0,0,9971,10119,5,89,0,0,9972,10119,5,99,0,0, + 9973,10119,5,47,0,0,9974,10119,5,111,0,0,9975,9976,5,41,0,0,9976, + 9977,5,2,0,0,9977,9978,3,1212,606,0,9978,9979,5,36,0,0,9979,9980, + 3,1168,584,0,9980,9981,5,3,0,0,9981,10119,1,0,0,0,9982,9983,5,397, + 0,0,9983,9985,5,2,0,0,9984,9986,3,1348,674,0,9985,9984,1,0,0,0,9985, + 9986,1,0,0,0,9986,9987,1,0,0,0,9987,10119,5,3,0,0,9988,9989,5,489, + 0,0,9989,9990,5,2,0,0,9990,9993,3,1212,606,0,9991,9992,5,6,0,0,9992, + 9994,3,1352,676,0,9993,9991,1,0,0,0,9993,9994,1,0,0,0,9994,9995, + 1,0,0,0,9995,9996,5,3,0,0,9996,10119,1,0,0,0,9997,9998,5,410,0,0, + 9998,9999,5,2,0,0,9999,10000,3,1354,677,0,10000,10001,5,3,0,0,10001, + 10119,1,0,0,0,10002,10003,5,411,0,0,10003,10005,5,2,0,0,10004,10006, + 3,1356,678,0,10005,10004,1,0,0,0,10005,10006,1,0,0,0,10006,10007, + 1,0,0,0,10007,10119,5,3,0,0,10008,10009,5,417,0,0,10009,10011,5, + 2,0,0,10010,10012,3,1358,679,0,10011,10010,1,0,0,0,10011,10012,1, + 0,0,0,10012,10013,1,0,0,0,10013,10119,5,3,0,0,10014,10015,5,420, + 0,0,10015,10016,5,2,0,0,10016,10017,3,1212,606,0,10017,10018,5,36, + 0,0,10018,10019,3,1168,584,0,10019,10020,5,3,0,0,10020,10119,1,0, + 0,0,10021,10022,5,421,0,0,10022,10024,5,2,0,0,10023,10025,7,70,0, + 0,10024,10023,1,0,0,0,10024,10025,1,0,0,0,10025,10026,1,0,0,0,10026, + 10027,3,1360,680,0,10027,10028,5,3,0,0,10028,10119,1,0,0,0,10029, + 10030,5,408,0,0,10030,10031,5,2,0,0,10031,10032,3,1212,606,0,10032, + 10033,5,6,0,0,10033,10034,3,1212,606,0,10034,10035,5,3,0,0,10035, + 10119,1,0,0,0,10036,10037,5,393,0,0,10037,10038,5,2,0,0,10038,10039, + 3,1328,664,0,10039,10040,5,3,0,0,10040,10119,1,0,0,0,10041,10042, + 5,399,0,0,10042,10043,5,2,0,0,10043,10044,3,1328,664,0,10044,10045, + 5,3,0,0,10045,10119,1,0,0,0,10046,10047,5,404,0,0,10047,10048,5, + 2,0,0,10048,10049,3,1328,664,0,10049,10050,5,3,0,0,10050,10119,1, + 0,0,0,10051,10052,5,425,0,0,10052,10053,5,2,0,0,10053,10054,3,1328, + 664,0,10054,10055,5,3,0,0,10055,10119,1,0,0,0,10056,10057,5,426, + 0,0,10057,10058,5,2,0,0,10058,10059,5,266,0,0,10059,10065,3,1490, + 745,0,10060,10063,5,6,0,0,10061,10064,3,1270,635,0,10062,10064,3, + 1328,664,0,10063,10061,1,0,0,0,10063,10062,1,0,0,0,10064,10066,1, + 0,0,0,10065,10060,1,0,0,0,10065,10066,1,0,0,0,10066,10067,1,0,0, + 0,10067,10068,5,3,0,0,10068,10119,1,0,0,0,10069,10070,5,427,0,0, + 10070,10071,5,2,0,0,10071,10072,3,1254,627,0,10072,10073,3,1280, + 640,0,10073,10074,5,3,0,0,10074,10119,1,0,0,0,10075,10076,5,428, + 0,0,10076,10077,5,2,0,0,10077,10078,3,1272,636,0,10078,10079,5,3, + 0,0,10079,10119,1,0,0,0,10080,10081,5,429,0,0,10081,10082,5,2,0, + 0,10082,10083,3,1276,638,0,10083,10085,3,1212,606,0,10084,10086, + 3,1278,639,0,10085,10084,1,0,0,0,10085,10086,1,0,0,0,10086,10087, + 1,0,0,0,10087,10088,5,3,0,0,10088,10119,1,0,0,0,10089,10090,5,430, + 0,0,10090,10091,5,2,0,0,10091,10092,5,266,0,0,10092,10095,3,1490, + 745,0,10093,10094,5,6,0,0,10094,10096,3,1212,606,0,10095,10093,1, + 0,0,0,10095,10096,1,0,0,0,10096,10097,1,0,0,0,10097,10098,5,3,0, + 0,10098,10119,1,0,0,0,10099,10100,5,431,0,0,10100,10101,5,2,0,0, + 10101,10102,5,383,0,0,10102,10103,3,1212,606,0,10103,10104,5,6,0, + 0,10104,10106,3,1266,633,0,10105,10107,3,1268,634,0,10106,10105, + 1,0,0,0,10106,10107,1,0,0,0,10107,10108,1,0,0,0,10108,10109,5,3, + 0,0,10109,10119,1,0,0,0,10110,10111,5,432,0,0,10111,10112,5,2,0, + 0,10112,10113,3,1276,638,0,10113,10114,3,1212,606,0,10114,10115, + 5,36,0,0,10115,10116,3,1172,586,0,10116,10117,5,3,0,0,10117,10119, + 1,0,0,0,10118,9934,1,0,0,0,10118,9940,1,0,0,0,10118,9941,1,0,0,0, + 10118,9948,1,0,0,0,10118,9955,1,0,0,0,10118,9962,1,0,0,0,10118,9969, + 1,0,0,0,10118,9970,1,0,0,0,10118,9971,1,0,0,0,10118,9972,1,0,0,0, + 10118,9973,1,0,0,0,10118,9974,1,0,0,0,10118,9975,1,0,0,0,10118,9982, + 1,0,0,0,10118,9988,1,0,0,0,10118,9997,1,0,0,0,10118,10002,1,0,0, + 0,10118,10008,1,0,0,0,10118,10014,1,0,0,0,10118,10021,1,0,0,0,10118, + 10029,1,0,0,0,10118,10036,1,0,0,0,10118,10041,1,0,0,0,10118,10046, + 1,0,0,0,10118,10051,1,0,0,0,10118,10056,1,0,0,0,10118,10069,1,0, + 0,0,10118,10075,1,0,0,0,10118,10080,1,0,0,0,10118,10089,1,0,0,0, + 10118,10099,1,0,0,0,10118,10110,1,0,0,0,10119,1265,1,0,0,0,10120, + 10121,5,375,0,0,10121,10126,3,1212,606,0,10122,10123,5,375,0,0,10123, + 10124,5,269,0,0,10124,10126,5,450,0,0,10125,10120,1,0,0,0,10125, + 10122,1,0,0,0,10126,1267,1,0,0,0,10127,10128,5,6,0,0,10128,10129, + 5,339,0,0,10129,10138,5,385,0,0,10130,10131,5,6,0,0,10131,10132, + 5,339,0,0,10132,10138,5,269,0,0,10133,10134,5,6,0,0,10134,10135, + 5,339,0,0,10135,10136,5,269,0,0,10136,10138,5,450,0,0,10137,10127, + 1,0,0,0,10137,10130,1,0,0,0,10137,10133,1,0,0,0,10138,1269,1,0,0, + 0,10139,10140,5,424,0,0,10140,10141,5,2,0,0,10141,10142,3,1272,636, + 0,10142,10143,5,3,0,0,10143,1271,1,0,0,0,10144,10149,3,1274,637, + 0,10145,10146,5,6,0,0,10146,10148,3,1274,637,0,10147,10145,1,0,0, + 0,10148,10151,1,0,0,0,10149,10147,1,0,0,0,10149,10150,1,0,0,0,10150, + 1273,1,0,0,0,10151,10149,1,0,0,0,10152,10155,3,1212,606,0,10153, + 10154,5,36,0,0,10154,10156,3,1490,745,0,10155,10153,1,0,0,0,10155, + 10156,1,0,0,0,10156,1275,1,0,0,0,10157,10158,7,71,0,0,10158,1277, + 1,0,0,0,10159,10160,5,292,0,0,10160,10164,5,378,0,0,10161,10162, + 5,347,0,0,10162,10164,5,378,0,0,10163,10159,1,0,0,0,10163,10161, + 1,0,0,0,10164,1279,1,0,0,0,10165,10166,5,286,0,0,10166,10181,3,1254, + 627,0,10167,10168,5,286,0,0,10168,10169,3,1254,627,0,10169,10170, + 3,1282,641,0,10170,10181,1,0,0,0,10171,10172,5,286,0,0,10172,10173, + 3,1282,641,0,10173,10174,3,1254,627,0,10174,10181,1,0,0,0,10175, + 10176,5,286,0,0,10176,10177,3,1282,641,0,10177,10178,3,1254,627, + 0,10178,10179,3,1282,641,0,10179,10181,1,0,0,0,10180,10165,1,0,0, + 0,10180,10167,1,0,0,0,10180,10171,1,0,0,0,10180,10175,1,0,0,0,10181, + 1281,1,0,0,0,10182,10183,5,147,0,0,10183,10184,7,72,0,0,10184,1283, + 1,0,0,0,10185,10186,5,479,0,0,10186,10187,5,66,0,0,10187,10188,5, + 2,0,0,10188,10189,3,1044,522,0,10189,10190,5,3,0,0,10190,1285,1, + 0,0,0,10191,10192,5,480,0,0,10192,10193,5,2,0,0,10193,10194,5,103, + 0,0,10194,10195,3,1212,606,0,10195,10196,5,3,0,0,10196,1287,1,0, + 0,0,10197,10198,5,104,0,0,10198,10199,3,1290,645,0,10199,1289,1, + 0,0,0,10200,10205,3,1292,646,0,10201,10202,5,6,0,0,10202,10204,3, + 1292,646,0,10203,10201,1,0,0,0,10204,10207,1,0,0,0,10205,10203,1, + 0,0,0,10205,10206,1,0,0,0,10206,1291,1,0,0,0,10207,10205,1,0,0,0, + 10208,10209,3,1474,737,0,10209,10210,5,36,0,0,10210,10211,3,1296, + 648,0,10211,1293,1,0,0,0,10212,10215,5,124,0,0,10213,10216,3,1296, + 648,0,10214,10216,3,1474,737,0,10215,10213,1,0,0,0,10215,10214,1, + 0,0,0,10216,1295,1,0,0,0,10217,10219,5,2,0,0,10218,10220,3,1298, + 649,0,10219,10218,1,0,0,0,10219,10220,1,0,0,0,10220,10222,1,0,0, + 0,10221,10223,3,1300,650,0,10222,10221,1,0,0,0,10222,10223,1,0,0, + 0,10223,10225,1,0,0,0,10224,10226,3,1042,521,0,10225,10224,1,0,0, + 0,10225,10226,1,0,0,0,10226,10228,1,0,0,0,10227,10229,3,1302,651, + 0,10228,10227,1,0,0,0,10228,10229,1,0,0,0,10229,10230,1,0,0,0,10230, + 10231,5,3,0,0,10231,1297,1,0,0,0,10232,10233,3,1474,737,0,10233, + 1299,1,0,0,0,10234,10235,5,285,0,0,10235,10236,5,147,0,0,10236,10237, + 3,1328,664,0,10237,1301,1,0,0,0,10238,10239,5,299,0,0,10239,10241, + 3,1304,652,0,10240,10242,3,1308,654,0,10241,10240,1,0,0,0,10241, + 10242,1,0,0,0,10242,10254,1,0,0,0,10243,10244,5,320,0,0,10244,10246, + 3,1304,652,0,10245,10247,3,1308,654,0,10246,10245,1,0,0,0,10246, + 10247,1,0,0,0,10247,10254,1,0,0,0,10248,10249,5,481,0,0,10249,10251, + 3,1304,652,0,10250,10252,3,1308,654,0,10251,10250,1,0,0,0,10251, + 10252,1,0,0,0,10252,10254,1,0,0,0,10253,10238,1,0,0,0,10253,10243, + 1,0,0,0,10253,10248,1,0,0,0,10254,1303,1,0,0,0,10255,10262,3,1306, + 653,0,10256,10257,5,387,0,0,10257,10258,3,1306,653,0,10258,10259, + 5,33,0,0,10259,10260,3,1306,653,0,10260,10262,1,0,0,0,10261,10255, + 1,0,0,0,10261,10256,1,0,0,0,10262,1305,1,0,0,0,10263,10264,5,362, + 0,0,10264,10271,7,73,0,0,10265,10266,5,434,0,0,10266,10271,5,414, + 0,0,10267,10268,3,1212,606,0,10268,10269,7,73,0,0,10269,10271,1, + 0,0,0,10270,10263,1,0,0,0,10270,10265,1,0,0,0,10270,10267,1,0,0, + 0,10271,1307,1,0,0,0,10272,10279,5,199,0,0,10273,10274,5,434,0,0, + 10274,10280,5,414,0,0,10275,10280,5,66,0,0,10276,10280,5,467,0,0, + 10277,10278,5,269,0,0,10278,10280,5,482,0,0,10279,10273,1,0,0,0, + 10279,10275,1,0,0,0,10279,10276,1,0,0,0,10279,10277,1,0,0,0,10280, + 1309,1,0,0,0,10281,10282,5,414,0,0,10282,10284,5,2,0,0,10283,10285, + 3,1328,664,0,10284,10283,1,0,0,0,10284,10285,1,0,0,0,10285,10286, + 1,0,0,0,10286,10294,5,3,0,0,10287,10288,5,2,0,0,10288,10289,3,1328, + 664,0,10289,10290,5,6,0,0,10290,10291,3,1212,606,0,10291,10292,5, + 3,0,0,10292,10294,1,0,0,0,10293,10281,1,0,0,0,10293,10287,1,0,0, + 0,10294,1311,1,0,0,0,10295,10296,5,414,0,0,10296,10298,5,2,0,0,10297, + 10299,3,1328,664,0,10298,10297,1,0,0,0,10298,10299,1,0,0,0,10299, + 10300,1,0,0,0,10300,10301,5,3,0,0,10301,1313,1,0,0,0,10302,10303, + 5,2,0,0,10303,10304,3,1212,606,0,10304,10305,5,6,0,0,10305,10306, + 3,1328,664,0,10306,10307,5,3,0,0,10307,1315,1,0,0,0,10308,10309, + 7,74,0,0,10309,1317,1,0,0,0,10310,10313,5,29,0,0,10311,10313,3,1320, + 660,0,10312,10310,1,0,0,0,10312,10311,1,0,0,0,10313,1319,1,0,0,0, + 10314,10315,7,75,0,0,10315,1321,1,0,0,0,10316,10323,5,29,0,0,10317, + 10318,5,278,0,0,10318,10319,5,2,0,0,10319,10320,3,732,366,0,10320, + 10321,5,3,0,0,10321,10323,1,0,0,0,10322,10316,1,0,0,0,10322,10317, + 1,0,0,0,10323,1323,1,0,0,0,10324,10331,3,1318,659,0,10325,10326, + 5,278,0,0,10326,10327,5,2,0,0,10327,10328,3,732,366,0,10328,10329, + 5,3,0,0,10329,10331,1,0,0,0,10330,10324,1,0,0,0,10330,10325,1,0, + 0,0,10331,1325,1,0,0,0,10332,10345,3,1318,659,0,10333,10334,5,278, + 0,0,10334,10335,5,2,0,0,10335,10336,3,732,366,0,10336,10337,5,3, + 0,0,10337,10345,1,0,0,0,10338,10345,5,120,0,0,10339,10340,5,77,0, + 0,10340,10345,5,120,0,0,10341,10345,5,114,0,0,10342,10343,5,77,0, + 0,10343,10345,5,114,0,0,10344,10332,1,0,0,0,10344,10333,1,0,0,0, + 10344,10338,1,0,0,0,10344,10339,1,0,0,0,10344,10341,1,0,0,0,10344, + 10342,1,0,0,0,10345,1327,1,0,0,0,10346,10351,3,1212,606,0,10347, + 10348,5,6,0,0,10348,10350,3,1212,606,0,10349,10347,1,0,0,0,10350, + 10353,1,0,0,0,10351,10349,1,0,0,0,10351,10352,1,0,0,0,10352,1329, + 1,0,0,0,10353,10351,1,0,0,0,10354,10359,3,1336,668,0,10355,10356, + 5,6,0,0,10356,10358,3,1336,668,0,10357,10355,1,0,0,0,10358,10361, + 1,0,0,0,10359,10357,1,0,0,0,10359,10360,1,0,0,0,10360,1331,1,0,0, + 0,10361,10359,1,0,0,0,10362,10367,3,1334,667,0,10363,10364,5,6,0, + 0,10364,10366,3,1334,667,0,10365,10363,1,0,0,0,10366,10369,1,0,0, + 0,10367,10365,1,0,0,0,10367,10368,1,0,0,0,10368,1333,1,0,0,0,10369, + 10367,1,0,0,0,10370,10371,5,2,0,0,10371,10372,3,1212,606,0,10372, + 10373,5,3,0,0,10373,10376,1,0,0,0,10374,10376,3,1432,716,0,10375, + 10370,1,0,0,0,10375,10374,1,0,0,0,10376,1335,1,0,0,0,10377,10380, + 3,1212,606,0,10378,10380,3,1432,716,0,10379,10377,1,0,0,0,10379, + 10378,1,0,0,0,10380,1337,1,0,0,0,10381,10386,3,1340,670,0,10382, + 10383,5,6,0,0,10383,10385,3,1340,670,0,10384,10382,1,0,0,0,10385, + 10388,1,0,0,0,10386,10384,1,0,0,0,10386,10387,1,0,0,0,10387,1339, + 1,0,0,0,10388,10386,1,0,0,0,10389,10395,3,1212,606,0,10390,10391, + 3,684,342,0,10391,10392,7,76,0,0,10392,10393,3,1212,606,0,10393, + 10395,1,0,0,0,10394,10389,1,0,0,0,10394,10390,1,0,0,0,10395,1341, + 1,0,0,0,10396,10401,3,1168,584,0,10397,10398,5,6,0,0,10398,10400, + 3,1168,584,0,10399,10397,1,0,0,0,10400,10403,1,0,0,0,10401,10399, + 1,0,0,0,10401,10402,1,0,0,0,10402,1343,1,0,0,0,10403,10401,1,0,0, + 0,10404,10407,5,4,0,0,10405,10408,3,1328,664,0,10406,10408,3,1346, + 673,0,10407,10405,1,0,0,0,10407,10406,1,0,0,0,10407,10408,1,0,0, + 0,10408,10409,1,0,0,0,10409,10410,5,5,0,0,10410,1345,1,0,0,0,10411, + 10416,3,1344,672,0,10412,10413,5,6,0,0,10413,10415,3,1344,672,0, + 10414,10412,1,0,0,0,10415,10418,1,0,0,0,10416,10414,1,0,0,0,10416, + 10417,1,0,0,0,10417,1347,1,0,0,0,10418,10416,1,0,0,0,10419,10420, + 3,1350,675,0,10420,10421,5,64,0,0,10421,10422,3,1212,606,0,10422, + 1349,1,0,0,0,10423,10432,3,1492,746,0,10424,10432,5,384,0,0,10425, + 10432,5,264,0,0,10426,10432,5,176,0,0,10427,10432,5,218,0,0,10428, + 10432,5,261,0,0,10429,10432,5,326,0,0,10430,10432,3,1458,729,0,10431, + 10423,1,0,0,0,10431,10424,1,0,0,0,10431,10425,1,0,0,0,10431,10426, + 1,0,0,0,10431,10427,1,0,0,0,10431,10428,1,0,0,0,10431,10429,1,0, + 0,0,10431,10430,1,0,0,0,10432,1351,1,0,0,0,10433,10434,7,77,0,0, + 10434,1353,1,0,0,0,10435,10436,3,1212,606,0,10436,10437,5,84,0,0, + 10437,10438,3,1212,606,0,10438,10439,5,64,0,0,10439,10442,3,1212, + 606,0,10440,10441,5,62,0,0,10441,10443,3,1212,606,0,10442,10440, + 1,0,0,0,10442,10443,1,0,0,0,10443,1355,1,0,0,0,10444,10445,3,1252, + 626,0,10445,10446,5,68,0,0,10446,10447,3,1252,626,0,10447,1357,1, + 0,0,0,10448,10449,3,1212,606,0,10449,10450,5,64,0,0,10450,10451, + 3,1212,606,0,10451,10452,5,62,0,0,10452,10453,3,1212,606,0,10453, + 10476,1,0,0,0,10454,10455,3,1212,606,0,10455,10456,5,62,0,0,10456, + 10457,3,1212,606,0,10457,10458,5,64,0,0,10458,10459,3,1212,606,0, + 10459,10476,1,0,0,0,10460,10461,3,1212,606,0,10461,10462,5,64,0, + 0,10462,10463,3,1212,606,0,10463,10476,1,0,0,0,10464,10465,3,1212, + 606,0,10465,10466,5,62,0,0,10466,10467,3,1212,606,0,10467,10476, + 1,0,0,0,10468,10469,3,1212,606,0,10469,10470,5,127,0,0,10470,10471, + 3,1212,606,0,10471,10472,5,197,0,0,10472,10473,3,1212,606,0,10473, + 10476,1,0,0,0,10474,10476,3,1328,664,0,10475,10448,1,0,0,0,10475, + 10454,1,0,0,0,10475,10460,1,0,0,0,10475,10464,1,0,0,0,10475,10468, + 1,0,0,0,10475,10474,1,0,0,0,10476,1359,1,0,0,0,10477,10478,3,1212, + 606,0,10478,10479,5,64,0,0,10479,10480,3,1328,664,0,10480,10485, + 1,0,0,0,10481,10482,5,64,0,0,10482,10485,3,1328,664,0,10483,10485, + 3,1328,664,0,10484,10477,1,0,0,0,10484,10481,1,0,0,0,10484,10483, + 1,0,0,0,10485,1361,1,0,0,0,10486,10492,3,1002,501,0,10487,10488, + 5,2,0,0,10488,10489,3,1328,664,0,10489,10490,5,3,0,0,10490,10492, + 1,0,0,0,10491,10486,1,0,0,0,10491,10487,1,0,0,0,10492,1363,1,0,0, + 0,10493,10495,5,40,0,0,10494,10496,3,1372,686,0,10495,10494,1,0, + 0,0,10495,10496,1,0,0,0,10496,10497,1,0,0,0,10497,10499,3,1366,683, + 0,10498,10500,3,1370,685,0,10499,10498,1,0,0,0,10499,10500,1,0,0, + 0,10500,10501,1,0,0,0,10501,10502,5,454,0,0,10502,1365,1,0,0,0,10503, + 10505,3,1368,684,0,10504,10503,1,0,0,0,10505,10506,1,0,0,0,10506, + 10504,1,0,0,0,10506,10507,1,0,0,0,10507,1367,1,0,0,0,10508,10509, + 5,102,0,0,10509,10510,3,1212,606,0,10510,10511,5,93,0,0,10511,10512, + 3,1212,606,0,10512,1369,1,0,0,0,10513,10514,5,58,0,0,10514,10515, + 3,1212,606,0,10515,1371,1,0,0,0,10516,10517,3,1212,606,0,10517,1373, + 1,0,0,0,10518,10520,3,1474,737,0,10519,10521,3,1380,690,0,10520, + 10519,1,0,0,0,10520,10521,1,0,0,0,10521,1375,1,0,0,0,10522,10525, + 5,11,0,0,10523,10526,3,1438,719,0,10524,10526,5,9,0,0,10525,10523, + 1,0,0,0,10525,10524,1,0,0,0,10526,10540,1,0,0,0,10527,10536,5,4, + 0,0,10528,10537,3,1212,606,0,10529,10531,3,1378,689,0,10530,10529, + 1,0,0,0,10530,10531,1,0,0,0,10531,10532,1,0,0,0,10532,10534,5,8, + 0,0,10533,10535,3,1378,689,0,10534,10533,1,0,0,0,10534,10535,1,0, + 0,0,10535,10537,1,0,0,0,10536,10528,1,0,0,0,10536,10530,1,0,0,0, + 10537,10538,1,0,0,0,10538,10540,5,5,0,0,10539,10522,1,0,0,0,10539, + 10527,1,0,0,0,10540,1377,1,0,0,0,10541,10542,3,1212,606,0,10542, + 1379,1,0,0,0,10543,10545,3,1376,688,0,10544,10543,1,0,0,0,10545, + 10546,1,0,0,0,10546,10544,1,0,0,0,10546,10547,1,0,0,0,10547,1381, + 1,0,0,0,10548,10550,3,1376,688,0,10549,10548,1,0,0,0,10550,10553, + 1,0,0,0,10551,10549,1,0,0,0,10551,10552,1,0,0,0,10552,1383,1,0,0, + 0,10553,10551,1,0,0,0,10554,10555,3,1386,693,0,10555,1385,1,0,0, + 0,10556,10561,3,1388,694,0,10557,10558,5,6,0,0,10558,10560,3,1388, + 694,0,10559,10557,1,0,0,0,10560,10563,1,0,0,0,10561,10559,1,0,0, + 0,10561,10562,1,0,0,0,10562,1387,1,0,0,0,10563,10561,1,0,0,0,10564, + 10569,3,1336,668,0,10565,10566,5,36,0,0,10566,10570,3,1490,745,0, + 10567,10570,3,1492,746,0,10568,10570,1,0,0,0,10569,10565,1,0,0,0, + 10569,10567,1,0,0,0,10569,10568,1,0,0,0,10570,10573,1,0,0,0,10571, + 10573,5,9,0,0,10572,10564,1,0,0,0,10572,10571,1,0,0,0,10573,1389, + 1,0,0,0,10574,10579,3,1412,706,0,10575,10576,5,6,0,0,10576,10578, + 3,1412,706,0,10577,10575,1,0,0,0,10578,10581,1,0,0,0,10579,10577, + 1,0,0,0,10579,10580,1,0,0,0,10580,1391,1,0,0,0,10581,10579,1,0,0, + 0,10582,10587,3,1406,703,0,10583,10584,5,6,0,0,10584,10586,3,1406, + 703,0,10585,10583,1,0,0,0,10586,10589,1,0,0,0,10587,10585,1,0,0, + 0,10587,10588,1,0,0,0,10588,1393,1,0,0,0,10589,10587,1,0,0,0,10590, + 10595,3,1422,711,0,10591,10592,5,6,0,0,10592,10594,3,1422,711,0, + 10593,10591,1,0,0,0,10594,10597,1,0,0,0,10595,10593,1,0,0,0,10595, + 10596,1,0,0,0,10596,1395,1,0,0,0,10597,10595,1,0,0,0,10598,10603, + 3,1420,710,0,10599,10600,5,6,0,0,10600,10602,3,1420,710,0,10601, + 10599,1,0,0,0,10602,10605,1,0,0,0,10603,10601,1,0,0,0,10603,10604, + 1,0,0,0,10604,1397,1,0,0,0,10605,10603,1,0,0,0,10606,10611,3,1428, + 714,0,10607,10608,5,6,0,0,10608,10610,3,1428,714,0,10609,10607,1, + 0,0,0,10610,10613,1,0,0,0,10611,10609,1,0,0,0,10611,10612,1,0,0, + 0,10612,1399,1,0,0,0,10613,10611,1,0,0,0,10614,10616,3,1474,737, + 0,10615,10617,3,1380,690,0,10616,10615,1,0,0,0,10616,10617,1,0,0, + 0,10617,1401,1,0,0,0,10618,10620,3,1474,737,0,10619,10621,3,1380, + 690,0,10620,10619,1,0,0,0,10620,10621,1,0,0,0,10621,1403,1,0,0,0, + 10622,10624,3,1474,737,0,10623,10625,3,1380,690,0,10624,10623,1, + 0,0,0,10624,10625,1,0,0,0,10625,1405,1,0,0,0,10626,10628,3,1474, + 737,0,10627,10629,3,1380,690,0,10628,10627,1,0,0,0,10628,10629,1, + 0,0,0,10629,1407,1,0,0,0,10630,10632,3,1474,737,0,10631,10633,3, + 1380,690,0,10632,10631,1,0,0,0,10632,10633,1,0,0,0,10633,1409,1, + 0,0,0,10634,10636,3,1474,737,0,10635,10637,3,560,280,0,10636,10635, + 1,0,0,0,10636,10637,1,0,0,0,10637,1411,1,0,0,0,10638,10640,3,1474, + 737,0,10639,10641,3,1380,690,0,10640,10639,1,0,0,0,10640,10641,1, + 0,0,0,10641,1413,1,0,0,0,10642,10647,3,1402,701,0,10643,10644,5, + 6,0,0,10644,10646,3,1402,701,0,10645,10643,1,0,0,0,10646,10649,1, + 0,0,0,10647,10645,1,0,0,0,10647,10648,1,0,0,0,10648,1415,1,0,0,0, + 10649,10647,1,0,0,0,10650,10655,3,1436,718,0,10651,10652,5,6,0,0, + 10652,10654,3,1436,718,0,10653,10651,1,0,0,0,10654,10657,1,0,0,0, + 10655,10653,1,0,0,0,10655,10656,1,0,0,0,10656,1417,1,0,0,0,10657, + 10655,1,0,0,0,10658,10660,3,1474,737,0,10659,10661,3,560,280,0,10660, + 10659,1,0,0,0,10660,10661,1,0,0,0,10661,1419,1,0,0,0,10662,10664, + 3,1474,737,0,10663,10665,3,560,280,0,10664,10663,1,0,0,0,10664,10665, + 1,0,0,0,10665,1421,1,0,0,0,10666,10668,3,1474,737,0,10667,10669, + 3,560,280,0,10668,10667,1,0,0,0,10668,10669,1,0,0,0,10669,1423,1, + 0,0,0,10670,10671,3,1474,737,0,10671,1425,1,0,0,0,10672,10673,3, + 1474,737,0,10673,1427,1,0,0,0,10674,10679,3,1482,741,0,10675,10676, + 3,1474,737,0,10676,10677,3,1380,690,0,10677,10679,1,0,0,0,10678, + 10674,1,0,0,0,10678,10675,1,0,0,0,10679,1429,1,0,0,0,10680,10685, + 3,1482,741,0,10681,10682,3,1474,737,0,10682,10683,3,1380,690,0,10683, + 10685,1,0,0,0,10684,10680,1,0,0,0,10684,10681,1,0,0,0,10685,1431, + 1,0,0,0,10686,10690,3,1474,737,0,10687,10689,3,1376,688,0,10688, + 10687,1,0,0,0,10689,10692,1,0,0,0,10690,10688,1,0,0,0,10690,10691, + 1,0,0,0,10691,10695,1,0,0,0,10692,10690,1,0,0,0,10693,10695,4,716, + 8,0,10694,10686,1,0,0,0,10694,10693,1,0,0,0,10695,1433,1,0,0,0,10696, + 10697,3,1474,737,0,10697,1435,1,0,0,0,10698,10699,3,1474,737,0,10699, + 1437,1,0,0,0,10700,10701,3,1490,745,0,10701,1439,1,0,0,0,10702,10703, + 3,1458,729,0,10703,1441,1,0,0,0,10704,10709,3,1482,741,0,10705,10706, + 3,1474,737,0,10706,10707,3,1380,690,0,10707,10709,1,0,0,0,10708, + 10704,1,0,0,0,10708,10705,1,0,0,0,10709,1443,1,0,0,0,10710,10715, + 3,1482,741,0,10711,10712,3,1474,737,0,10712,10713,3,1380,690,0,10713, + 10715,1,0,0,0,10714,10710,1,0,0,0,10714,10711,1,0,0,0,10715,1445, + 1,0,0,0,10716,10721,3,1484,742,0,10717,10718,3,1474,737,0,10718, + 10719,3,1380,690,0,10719,10721,1,0,0,0,10720,10716,1,0,0,0,10720, + 10717,1,0,0,0,10721,1447,1,0,0,0,10722,10758,3,1456,728,0,10723, + 10758,3,1454,727,0,10724,10758,3,1458,729,0,10725,10758,3,1452,726, + 0,10726,10758,3,1450,725,0,10727,10737,3,1444,722,0,10728,10738, + 3,1458,729,0,10729,10730,5,2,0,0,10730,10732,3,1338,669,0,10731, + 10733,3,1042,521,0,10732,10731,1,0,0,0,10732,10733,1,0,0,0,10733, + 10734,1,0,0,0,10734,10735,5,3,0,0,10735,10736,3,1458,729,0,10736, + 10738,1,0,0,0,10737,10728,1,0,0,0,10737,10729,1,0,0,0,10738,10758, + 1,0,0,0,10739,10740,3,1174,587,0,10740,10741,3,1458,729,0,10741, + 10758,1,0,0,0,10742,10752,3,1202,601,0,10743,10745,3,1458,729,0, + 10744,10746,3,1206,603,0,10745,10744,1,0,0,0,10745,10746,1,0,0,0, + 10746,10753,1,0,0,0,10747,10748,5,2,0,0,10748,10749,3,1456,728,0, + 10749,10750,5,3,0,0,10750,10751,3,1458,729,0,10751,10753,1,0,0,0, + 10752,10743,1,0,0,0,10752,10747,1,0,0,0,10753,10758,1,0,0,0,10754, + 10758,5,96,0,0,10755,10758,5,60,0,0,10756,10758,5,78,0,0,10757,10722, + 1,0,0,0,10757,10723,1,0,0,0,10757,10724,1,0,0,0,10757,10725,1,0, + 0,0,10757,10726,1,0,0,0,10757,10727,1,0,0,0,10757,10739,1,0,0,0, + 10757,10742,1,0,0,0,10757,10754,1,0,0,0,10757,10755,1,0,0,0,10757, + 10756,1,0,0,0,10758,1449,1,0,0,0,10759,10760,5,567,0,0,10760,1451, + 1,0,0,0,10761,10762,5,563,0,0,10762,1453,1,0,0,0,10763,10764,5,573, + 0,0,10764,1455,1,0,0,0,10765,10766,5,571,0,0,10766,1457,1,0,0,0, + 10767,10769,3,1460,730,0,10768,10770,3,1462,731,0,10769,10768,1, + 0,0,0,10769,10770,1,0,0,0,10770,1459,1,0,0,0,10771,10783,5,558,0, + 0,10772,10783,5,560,0,0,10773,10777,5,562,0,0,10774,10776,5,588, + 0,0,10775,10774,1,0,0,0,10776,10779,1,0,0,0,10777,10775,1,0,0,0, + 10777,10778,1,0,0,0,10778,10780,1,0,0,0,10779,10777,1,0,0,0,10780, + 10783,5,589,0,0,10781,10783,5,584,0,0,10782,10771,1,0,0,0,10782, + 10772,1,0,0,0,10782,10773,1,0,0,0,10782,10781,1,0,0,0,10783,1461, + 1,0,0,0,10784,10785,5,487,0,0,10785,10786,3,1460,730,0,10786,1463, + 1,0,0,0,10787,10793,3,1456,728,0,10788,10789,5,12,0,0,10789,10793, + 3,1456,728,0,10790,10791,5,13,0,0,10791,10793,3,1456,728,0,10792, + 10787,1,0,0,0,10792,10788,1,0,0,0,10792,10790,1,0,0,0,10793,1465, + 1,0,0,0,10794,10795,3,1470,735,0,10795,1467,1,0,0,0,10796,10797, + 3,1470,735,0,10797,1469,1,0,0,0,10798,10804,3,1488,744,0,10799,10804, + 5,52,0,0,10800,10804,5,49,0,0,10801,10804,5,89,0,0,10802,10804,5, + 524,0,0,10803,10798,1,0,0,0,10803,10799,1,0,0,0,10803,10800,1,0, + 0,0,10803,10801,1,0,0,0,10803,10802,1,0,0,0,10804,1471,1,0,0,0,10805, + 10810,3,1470,735,0,10806,10807,5,6,0,0,10807,10809,3,1470,735,0, + 10808,10806,1,0,0,0,10809,10812,1,0,0,0,10810,10808,1,0,0,0,10810, + 10811,1,0,0,0,10811,1473,1,0,0,0,10812,10810,1,0,0,0,10813,10818, + 3,1492,746,0,10814,10818,3,1496,748,0,10815,10818,3,1498,749,0,10816, + 10818,3,1734,867,0,10817,10813,1,0,0,0,10817,10814,1,0,0,0,10817, + 10815,1,0,0,0,10817,10816,1,0,0,0,10818,1475,1,0,0,0,10819,10820, + 3,1492,746,0,10820,1477,1,0,0,0,10821,10834,3,710,355,0,10822,10823, + 5,2,0,0,10823,10824,3,1212,606,0,10824,10825,5,3,0,0,10825,10826, + 1,0,0,0,10826,10828,3,1492,746,0,10827,10829,3,650,325,0,10828,10827, + 1,0,0,0,10828,10829,1,0,0,0,10829,10831,1,0,0,0,10830,10832,3,652, + 326,0,10831,10830,1,0,0,0,10831,10832,1,0,0,0,10832,10834,1,0,0, + 0,10833,10821,1,0,0,0,10833,10822,1,0,0,0,10834,1479,1,0,0,0,10835, + 10836,5,105,0,0,10836,10838,3,132,66,0,10837,10835,1,0,0,0,10837, + 10838,1,0,0,0,10838,10840,1,0,0,0,10839,10841,3,286,143,0,10840, + 10839,1,0,0,0,10840,10841,1,0,0,0,10841,1481,1,0,0,0,10842,10847, + 3,1492,746,0,10843,10847,3,1496,748,0,10844,10847,3,1734,867,0,10845, + 10847,3,1500,750,0,10846,10842,1,0,0,0,10846,10843,1,0,0,0,10846, + 10844,1,0,0,0,10846,10845,1,0,0,0,10847,1483,1,0,0,0,10848,10853, + 3,1492,746,0,10849,10853,3,1496,748,0,10850,10853,3,1734,867,0,10851, + 10853,3,1500,750,0,10852,10848,1,0,0,0,10852,10849,1,0,0,0,10852, + 10850,1,0,0,0,10852,10851,1,0,0,0,10853,1485,1,0,0,0,10854,10857, + 3,1432,716,0,10855,10857,3,1500,750,0,10856,10854,1,0,0,0,10856, + 10855,1,0,0,0,10857,1487,1,0,0,0,10858,10863,3,1492,746,0,10859, + 10863,3,1496,748,0,10860,10863,3,1498,749,0,10861,10863,3,1500,750, + 0,10862,10858,1,0,0,0,10862,10859,1,0,0,0,10862,10860,1,0,0,0,10862, + 10861,1,0,0,0,10863,1489,1,0,0,0,10864,10871,3,1492,746,0,10865, + 10871,3,1734,867,0,10866,10871,3,1496,748,0,10867,10871,3,1498,749, + 0,10868,10871,3,1500,750,0,10869,10871,3,1502,751,0,10870,10864, + 1,0,0,0,10870,10865,1,0,0,0,10870,10866,1,0,0,0,10870,10867,1,0, + 0,0,10870,10868,1,0,0,0,10870,10869,1,0,0,0,10871,1491,1,0,0,0,10872, + 10874,5,549,0,0,10873,10875,3,1462,731,0,10874,10873,1,0,0,0,10874, + 10875,1,0,0,0,10875,10883,1,0,0,0,10876,10883,3,1458,729,0,10877, + 10883,5,550,0,0,10878,10883,5,554,0,0,10879,10883,3,1256,628,0,10880, + 10883,3,1494,747,0,10881,10883,3,1734,867,0,10882,10872,1,0,0,0, + 10882,10876,1,0,0,0,10882,10877,1,0,0,0,10882,10878,1,0,0,0,10882, + 10879,1,0,0,0,10882,10880,1,0,0,0,10882,10881,1,0,0,0,10883,1493, + 1,0,0,0,10884,10885,5,575,0,0,10885,1495,1,0,0,0,10886,10887,7,78, + 0,0,10887,1497,1,0,0,0,10888,10940,5,387,0,0,10889,10940,5,388,0, + 0,10890,10940,3,1184,592,0,10891,10940,5,390,0,0,10892,10940,5,391, + 0,0,10893,10940,3,1192,596,0,10894,10940,5,393,0,0,10895,10940,5, + 394,0,0,10896,10940,5,395,0,0,10897,10940,5,396,0,0,10898,10940, + 5,397,0,0,10899,10940,5,398,0,0,10900,10940,5,399,0,0,10901,10940, + 5,470,0,0,10902,10940,5,400,0,0,10903,10940,5,401,0,0,10904,10940, + 5,402,0,0,10905,10940,5,403,0,0,10906,10940,5,404,0,0,10907,10940, + 5,405,0,0,10908,10940,5,406,0,0,10909,10940,5,407,0,0,10910,10940, + 5,489,0,0,10911,10940,5,408,0,0,10912,10940,3,1180,590,0,10913,10940, + 5,453,0,0,10914,10940,5,410,0,0,10915,10940,5,411,0,0,10916,10940, + 5,412,0,0,10917,10940,5,413,0,0,10918,10940,5,414,0,0,10919,10940, + 5,415,0,0,10920,10940,5,416,0,0,10921,10940,5,417,0,0,10922,10940, + 5,418,0,0,10923,10940,5,419,0,0,10924,10940,5,420,0,0,10925,10940, + 5,421,0,0,10926,10940,5,422,0,0,10927,10940,5,423,0,0,10928,10940, + 5,424,0,0,10929,10940,5,425,0,0,10930,10940,5,426,0,0,10931,10940, + 5,427,0,0,10932,10940,5,428,0,0,10933,10940,5,476,0,0,10934,10940, + 5,429,0,0,10935,10940,5,430,0,0,10936,10940,5,431,0,0,10937,10940, + 5,432,0,0,10938,10940,5,474,0,0,10939,10888,1,0,0,0,10939,10889, + 1,0,0,0,10939,10890,1,0,0,0,10939,10891,1,0,0,0,10939,10892,1,0, + 0,0,10939,10893,1,0,0,0,10939,10894,1,0,0,0,10939,10895,1,0,0,0, + 10939,10896,1,0,0,0,10939,10897,1,0,0,0,10939,10898,1,0,0,0,10939, + 10899,1,0,0,0,10939,10900,1,0,0,0,10939,10901,1,0,0,0,10939,10902, + 1,0,0,0,10939,10903,1,0,0,0,10939,10904,1,0,0,0,10939,10905,1,0, + 0,0,10939,10906,1,0,0,0,10939,10907,1,0,0,0,10939,10908,1,0,0,0, + 10939,10909,1,0,0,0,10939,10910,1,0,0,0,10939,10911,1,0,0,0,10939, + 10912,1,0,0,0,10939,10913,1,0,0,0,10939,10914,1,0,0,0,10939,10915, + 1,0,0,0,10939,10916,1,0,0,0,10939,10917,1,0,0,0,10939,10918,1,0, + 0,0,10939,10919,1,0,0,0,10939,10920,1,0,0,0,10939,10921,1,0,0,0, + 10939,10922,1,0,0,0,10939,10923,1,0,0,0,10939,10924,1,0,0,0,10939, + 10925,1,0,0,0,10939,10926,1,0,0,0,10939,10927,1,0,0,0,10939,10928, + 1,0,0,0,10939,10929,1,0,0,0,10939,10930,1,0,0,0,10939,10931,1,0, + 0,0,10939,10932,1,0,0,0,10939,10933,1,0,0,0,10939,10934,1,0,0,0, + 10939,10935,1,0,0,0,10939,10936,1,0,0,0,10939,10937,1,0,0,0,10939, + 10938,1,0,0,0,10940,1499,1,0,0,0,10941,10942,7,79,0,0,10942,1501, + 1,0,0,0,10943,10944,7,80,0,0,10944,1503,1,0,0,0,10945,10946,3,1506, + 753,0,10946,10947,3,1516,758,0,10947,10948,3,1514,757,0,10948,1505, + 1,0,0,0,10949,10951,3,1508,754,0,10950,10949,1,0,0,0,10951,10954, + 1,0,0,0,10952,10950,1,0,0,0,10952,10953,1,0,0,0,10953,1507,1,0,0, + 0,10954,10952,1,0,0,0,10955,10956,3,1510,755,0,10956,10957,5,279, + 0,0,10957,10958,5,490,0,0,10958,10976,1,0,0,0,10959,10960,3,1510, + 755,0,10960,10961,5,491,0,0,10961,10962,3,1512,756,0,10962,10976, + 1,0,0,0,10963,10964,3,1510,755,0,10964,10965,5,492,0,0,10965,10966, + 5,493,0,0,10966,10976,1,0,0,0,10967,10968,3,1510,755,0,10968,10969, + 5,492,0,0,10969,10970,5,494,0,0,10970,10976,1,0,0,0,10971,10972, + 3,1510,755,0,10972,10973,5,492,0,0,10973,10974,5,495,0,0,10974,10976, + 1,0,0,0,10975,10955,1,0,0,0,10975,10959,1,0,0,0,10975,10963,1,0, + 0,0,10975,10967,1,0,0,0,10975,10971,1,0,0,0,10976,1509,1,0,0,0,10977, + 10978,5,29,0,0,10978,1511,1,0,0,0,10979,10984,3,1458,729,0,10980, + 10984,3,1502,751,0,10981,10984,3,1734,867,0,10982,10984,3,1496,748, + 0,10983,10979,1,0,0,0,10983,10980,1,0,0,0,10983,10981,1,0,0,0,10983, + 10982,1,0,0,0,10984,1513,1,0,0,0,10985,10988,1,0,0,0,10986,10988, + 5,7,0,0,10987,10985,1,0,0,0,10987,10986,1,0,0,0,10988,1515,1,0,0, + 0,10989,10990,3,1518,759,0,10990,10991,5,146,0,0,10991,10992,3,1560, + 780,0,10992,10993,3,1714,857,0,10993,10994,5,454,0,0,10994,10995, + 3,1728,864,0,10995,1517,1,0,0,0,10996,11001,3,1724,862,0,10997,10999, + 3,1520,760,0,10998,11000,3,1522,761,0,10999,10998,1,0,0,0,10999, + 11000,1,0,0,0,11000,11002,1,0,0,0,11001,10997,1,0,0,0,11001,11002, + 1,0,0,0,11002,1519,1,0,0,0,11003,11004,5,178,0,0,11004,1521,1,0, + 0,0,11005,11007,3,1526,763,0,11006,11005,1,0,0,0,11007,11008,1,0, + 0,0,11008,11006,1,0,0,0,11008,11009,1,0,0,0,11009,1523,1,0,0,0,11010, + 11011,5,18,0,0,11011,11012,3,1732,866,0,11012,11013,5,19,0,0,11013, + 1525,1,0,0,0,11014,11018,3,1528,764,0,11015,11018,5,178,0,0,11016, + 11018,3,1524,762,0,11017,11014,1,0,0,0,11017,11015,1,0,0,0,11017, + 11016,1,0,0,0,11018,1527,1,0,0,0,11019,11035,3,1544,772,0,11020, + 11021,5,496,0,0,11021,11022,5,62,0,0,11022,11036,3,1542,771,0,11023, + 11024,3,1546,773,0,11024,11025,3,1548,774,0,11025,11026,3,1550,775, + 0,11026,11027,3,1552,776,0,11027,11028,3,1554,777,0,11028,11036, + 1,0,0,0,11029,11030,3,1530,765,0,11030,11031,5,172,0,0,11031,11032, + 3,1534,767,0,11032,11033,3,1540,770,0,11033,11034,3,1532,766,0,11034, + 11036,1,0,0,0,11035,11020,1,0,0,0,11035,11023,1,0,0,0,11035,11029, + 1,0,0,0,11036,11037,1,0,0,0,11037,11038,5,7,0,0,11038,1529,1,0,0, + 0,11039,11044,1,0,0,0,11040,11041,5,269,0,0,11041,11044,5,324,0, + 0,11042,11044,5,324,0,0,11043,11039,1,0,0,0,11043,11040,1,0,0,0, + 11043,11042,1,0,0,0,11044,1531,1,0,0,0,11045,11046,3,1000,500,0, + 11046,1533,1,0,0,0,11047,11053,1,0,0,0,11048,11049,5,2,0,0,11049, + 11050,3,1536,768,0,11050,11051,5,3,0,0,11051,11053,1,0,0,0,11052, + 11047,1,0,0,0,11052,11048,1,0,0,0,11053,1535,1,0,0,0,11054,11059, + 3,1538,769,0,11055,11056,5,6,0,0,11056,11058,3,1538,769,0,11057, + 11055,1,0,0,0,11058,11061,1,0,0,0,11059,11057,1,0,0,0,11059,11060, + 1,0,0,0,11060,1537,1,0,0,0,11061,11059,1,0,0,0,11062,11063,3,1544, + 772,0,11063,11064,3,1548,774,0,11064,1539,1,0,0,0,11065,11066,7, + 81,0,0,11066,1541,1,0,0,0,11067,11070,5,28,0,0,11068,11070,3,1474, + 737,0,11069,11067,1,0,0,0,11069,11068,1,0,0,0,11070,1543,1,0,0,0, + 11071,11072,3,1732,866,0,11072,1545,1,0,0,0,11073,11076,1,0,0,0, + 11074,11076,5,497,0,0,11075,11073,1,0,0,0,11075,11074,1,0,0,0,11076, + 1547,1,0,0,0,11077,11078,3,1168,584,0,11078,1549,1,0,0,0,11079,11083, + 1,0,0,0,11080,11081,5,43,0,0,11081,11083,3,558,279,0,11082,11079, + 1,0,0,0,11082,11080,1,0,0,0,11083,1551,1,0,0,0,11084,11088,1,0,0, + 0,11085,11086,5,77,0,0,11086,11088,5,78,0,0,11087,11084,1,0,0,0, + 11087,11085,1,0,0,0,11088,1553,1,0,0,0,11089,11094,1,0,0,0,11090, + 11091,3,1556,778,0,11091,11092,3,1736,868,0,11092,11094,1,0,0,0, + 11093,11089,1,0,0,0,11093,11090,1,0,0,0,11094,1555,1,0,0,0,11095, + 11098,3,1558,779,0,11096,11098,5,53,0,0,11097,11095,1,0,0,0,11097, + 11096,1,0,0,0,11098,1557,1,0,0,0,11099,11100,7,82,0,0,11100,1559, + 1,0,0,0,11101,11103,3,1562,781,0,11102,11101,1,0,0,0,11103,11106, + 1,0,0,0,11104,11102,1,0,0,0,11104,11105,1,0,0,0,11105,1561,1,0,0, + 0,11106,11104,1,0,0,0,11107,11108,3,1516,758,0,11108,11109,5,7,0, + 0,11109,11135,1,0,0,0,11110,11135,3,1628,814,0,11111,11135,3,1632, + 816,0,11112,11135,3,1570,785,0,11113,11135,3,1586,793,0,11114,11135, + 3,1592,796,0,11115,11135,3,1602,801,0,11116,11135,3,1604,802,0,11117, + 11135,3,1606,803,0,11118,11135,3,1620,810,0,11119,11135,3,1624,812, + 0,11120,11135,3,1644,822,0,11121,11135,3,1650,825,0,11122,11135, + 3,1652,826,0,11123,11135,3,1564,782,0,11124,11135,3,1566,783,0,11125, + 11135,3,1572,786,0,11126,11135,3,1660,830,0,11127,11135,3,1672,836, + 0,11128,11135,3,1680,840,0,11129,11135,3,1700,850,0,11130,11135, + 3,1702,851,0,11131,11135,3,1704,852,0,11132,11135,3,1706,853,0,11133, + 11135,3,1710,855,0,11134,11107,1,0,0,0,11134,11110,1,0,0,0,11134, + 11111,1,0,0,0,11134,11112,1,0,0,0,11134,11113,1,0,0,0,11134,11114, + 1,0,0,0,11134,11115,1,0,0,0,11134,11116,1,0,0,0,11134,11117,1,0, + 0,0,11134,11118,1,0,0,0,11134,11119,1,0,0,0,11134,11120,1,0,0,0, + 11134,11121,1,0,0,0,11134,11122,1,0,0,0,11134,11123,1,0,0,0,11134, + 11124,1,0,0,0,11134,11125,1,0,0,0,11134,11126,1,0,0,0,11134,11127, + 1,0,0,0,11134,11128,1,0,0,0,11134,11129,1,0,0,0,11134,11130,1,0, + 0,0,11134,11131,1,0,0,0,11134,11132,1,0,0,0,11134,11133,1,0,0,0, + 11135,1563,1,0,0,0,11136,11137,5,498,0,0,11137,11138,3,1740,870, + 0,11138,11139,5,7,0,0,11139,1565,1,0,0,0,11140,11141,5,433,0,0,11141, + 11147,3,1732,866,0,11142,11143,5,2,0,0,11143,11144,3,1568,784,0, + 11144,11145,5,3,0,0,11145,11146,5,7,0,0,11146,11148,1,0,0,0,11147, + 11142,1,0,0,0,11147,11148,1,0,0,0,11148,11157,1,0,0,0,11149,11150, + 5,57,0,0,11150,11151,3,1732,866,0,11151,11152,5,2,0,0,11152,11153, + 3,1568,784,0,11153,11154,5,3,0,0,11154,11155,5,7,0,0,11155,11157, + 1,0,0,0,11156,11140,1,0,0,0,11156,11149,1,0,0,0,11157,1567,1,0,0, + 0,11158,11161,1,0,0,0,11159,11161,3,1328,664,0,11160,11158,1,0,0, + 0,11160,11159,1,0,0,0,11161,1569,1,0,0,0,11162,11163,3,1584,792, + 0,11163,11164,3,1558,779,0,11164,11165,3,1736,868,0,11165,11166, + 5,7,0,0,11166,1571,1,0,0,0,11167,11168,5,499,0,0,11168,11169,3,1574, + 787,0,11169,11170,5,500,0,0,11170,11171,3,1576,788,0,11171,11172, + 5,7,0,0,11172,1573,1,0,0,0,11173,11177,1,0,0,0,11174,11177,5,434, + 0,0,11175,11177,5,501,0,0,11176,11173,1,0,0,0,11176,11174,1,0,0, + 0,11176,11175,1,0,0,0,11177,1575,1,0,0,0,11178,11183,3,1578,789, + 0,11179,11180,5,6,0,0,11180,11182,3,1578,789,0,11181,11179,1,0,0, + 0,11182,11185,1,0,0,0,11183,11181,1,0,0,0,11183,11184,1,0,0,0,11184, + 1577,1,0,0,0,11185,11183,1,0,0,0,11186,11187,3,1582,791,0,11187, + 11188,3,1558,779,0,11188,11189,3,1580,790,0,11189,1579,1,0,0,0,11190, + 11191,3,1474,737,0,11191,1581,1,0,0,0,11192,11193,3,1584,792,0,11193, + 1583,1,0,0,0,11194,11197,3,558,279,0,11195,11197,5,28,0,0,11196, + 11194,1,0,0,0,11196,11195,1,0,0,0,11197,11204,1,0,0,0,11198,11199, + 5,4,0,0,11199,11200,3,1742,871,0,11200,11201,5,5,0,0,11201,11203, + 1,0,0,0,11202,11198,1,0,0,0,11203,11206,1,0,0,0,11204,11202,1,0, + 0,0,11204,11205,1,0,0,0,11205,1585,1,0,0,0,11206,11204,1,0,0,0,11207, + 11208,5,220,0,0,11208,11209,3,1738,869,0,11209,11210,5,93,0,0,11210, + 11211,3,1560,780,0,11211,11212,3,1588,794,0,11212,11213,3,1590,795, + 0,11213,11214,5,454,0,0,11214,11215,5,220,0,0,11215,11216,5,7,0, + 0,11216,1587,1,0,0,0,11217,11218,5,502,0,0,11218,11219,3,1212,606, + 0,11219,11220,5,93,0,0,11220,11221,3,1560,780,0,11221,11223,1,0, + 0,0,11222,11217,1,0,0,0,11223,11226,1,0,0,0,11224,11222,1,0,0,0, + 11224,11225,1,0,0,0,11225,1589,1,0,0,0,11226,11224,1,0,0,0,11227, + 11231,1,0,0,0,11228,11229,5,58,0,0,11229,11231,3,1560,780,0,11230, + 11227,1,0,0,0,11230,11228,1,0,0,0,11231,1591,1,0,0,0,11232,11233, + 5,40,0,0,11233,11234,3,1594,797,0,11234,11235,3,1596,798,0,11235, + 11236,3,1600,800,0,11236,11237,5,454,0,0,11237,11238,5,40,0,0,11238, + 11239,5,7,0,0,11239,1593,1,0,0,0,11240,11243,1,0,0,0,11241,11243, + 3,1736,868,0,11242,11240,1,0,0,0,11242,11241,1,0,0,0,11243,1595, + 1,0,0,0,11244,11246,3,1598,799,0,11245,11244,1,0,0,0,11246,11247, + 1,0,0,0,11247,11245,1,0,0,0,11247,11248,1,0,0,0,11248,1597,1,0,0, + 0,11249,11250,5,102,0,0,11250,11251,3,1328,664,0,11251,11252,5,93, + 0,0,11252,11253,3,1560,780,0,11253,1599,1,0,0,0,11254,11258,1,0, + 0,0,11255,11256,5,58,0,0,11256,11258,3,1560,780,0,11257,11254,1, + 0,0,0,11257,11255,1,0,0,0,11258,1601,1,0,0,0,11259,11260,3,1726, + 863,0,11260,11261,3,1648,824,0,11261,1603,1,0,0,0,11262,11263,3, + 1726,863,0,11263,11264,5,503,0,0,11264,11265,3,1744,872,0,11265, + 11266,3,1648,824,0,11266,1605,1,0,0,0,11267,11268,3,1726,863,0,11268, + 11269,5,62,0,0,11269,11270,3,1608,804,0,11270,11271,3,1648,824,0, + 11271,1607,1,0,0,0,11272,11273,3,1618,809,0,11273,11289,5,68,0,0, + 11274,11275,3,994,497,0,11275,11276,3,1612,806,0,11276,11290,1,0, + 0,0,11277,11290,3,1000,500,0,11278,11290,3,926,463,0,11279,11280, + 5,202,0,0,11280,11281,3,1212,606,0,11281,11282,3,1610,805,0,11282, + 11290,1,0,0,0,11283,11284,3,1614,807,0,11284,11285,3,1212,606,0, + 11285,11286,5,24,0,0,11286,11287,3,1212,606,0,11287,11288,3,1616, + 808,0,11288,11290,1,0,0,0,11289,11274,1,0,0,0,11289,11277,1,0,0, + 0,11289,11278,1,0,0,0,11289,11279,1,0,0,0,11289,11283,1,0,0,0,11290, + 1609,1,0,0,0,11291,11295,1,0,0,0,11292,11293,5,100,0,0,11293,11295, + 3,1328,664,0,11294,11291,1,0,0,0,11294,11292,1,0,0,0,11295,1611, + 1,0,0,0,11296,11309,1,0,0,0,11297,11298,5,2,0,0,11298,11303,3,1212, + 606,0,11299,11300,5,6,0,0,11300,11302,3,1212,606,0,11301,11299,1, + 0,0,0,11302,11305,1,0,0,0,11303,11301,1,0,0,0,11303,11304,1,0,0, + 0,11304,11306,1,0,0,0,11305,11303,1,0,0,0,11306,11307,5,3,0,0,11307, + 11309,1,0,0,0,11308,11296,1,0,0,0,11308,11297,1,0,0,0,11309,1613, + 1,0,0,0,11310,11313,1,0,0,0,11311,11313,5,504,0,0,11312,11310,1, + 0,0,0,11312,11311,1,0,0,0,11313,1615,1,0,0,0,11314,11318,1,0,0,0, + 11315,11316,5,147,0,0,11316,11318,3,1212,606,0,11317,11314,1,0,0, + 0,11317,11315,1,0,0,0,11318,1617,1,0,0,0,11319,11320,3,552,276,0, + 11320,1619,1,0,0,0,11321,11322,3,1726,863,0,11322,11323,5,505,0, + 0,11323,11324,3,1618,809,0,11324,11325,3,1622,811,0,11325,11326, + 5,68,0,0,11326,11327,5,35,0,0,11327,11328,3,1212,606,0,11328,11329, + 3,1648,824,0,11329,1621,1,0,0,0,11330,11334,1,0,0,0,11331,11332, + 5,506,0,0,11332,11334,3,1456,728,0,11333,11330,1,0,0,0,11333,11331, + 1,0,0,0,11334,1623,1,0,0,0,11335,11336,3,1626,813,0,11336,11338, + 3,1728,864,0,11337,11339,3,1730,865,0,11338,11337,1,0,0,0,11338, + 11339,1,0,0,0,11339,11340,1,0,0,0,11340,11341,5,7,0,0,11341,1625, + 1,0,0,0,11342,11343,7,83,0,0,11343,1627,1,0,0,0,11344,11356,5,508, + 0,0,11345,11346,5,268,0,0,11346,11357,3,1736,868,0,11347,11353,5, + 509,0,0,11348,11349,5,202,0,0,11349,11350,3,1212,606,0,11350,11351, + 3,1610,805,0,11351,11354,1,0,0,0,11352,11354,3,1000,500,0,11353, + 11348,1,0,0,0,11353,11352,1,0,0,0,11354,11357,1,0,0,0,11355,11357, + 3,1630,815,0,11356,11345,1,0,0,0,11356,11347,1,0,0,0,11356,11355, + 1,0,0,0,11357,11358,1,0,0,0,11358,11359,5,7,0,0,11359,1629,1,0,0, + 0,11360,11363,1,0,0,0,11361,11363,3,1736,868,0,11362,11360,1,0,0, + 0,11362,11361,1,0,0,0,11363,1631,1,0,0,0,11364,11366,5,510,0,0,11365, + 11367,3,1634,817,0,11366,11365,1,0,0,0,11366,11367,1,0,0,0,11367, + 11368,1,0,0,0,11368,11369,3,1458,729,0,11369,11370,3,1636,818,0, + 11370,11371,3,1638,819,0,11371,11372,5,7,0,0,11372,11399,1,0,0,0, + 11373,11375,5,510,0,0,11374,11376,3,1634,817,0,11375,11374,1,0,0, + 0,11375,11376,1,0,0,0,11376,11377,1,0,0,0,11377,11378,3,1492,746, + 0,11378,11379,3,1638,819,0,11379,11380,5,7,0,0,11380,11399,1,0,0, + 0,11381,11383,5,510,0,0,11382,11384,3,1634,817,0,11383,11382,1,0, + 0,0,11383,11384,1,0,0,0,11384,11385,1,0,0,0,11385,11386,5,511,0, + 0,11386,11387,3,1458,729,0,11387,11388,3,1638,819,0,11388,11389, + 5,7,0,0,11389,11399,1,0,0,0,11390,11392,5,510,0,0,11391,11393,3, + 1634,817,0,11392,11391,1,0,0,0,11392,11393,1,0,0,0,11393,11394,1, + 0,0,0,11394,11395,3,1638,819,0,11395,11396,5,7,0,0,11396,11399,1, + 0,0,0,11397,11399,5,510,0,0,11398,11364,1,0,0,0,11398,11373,1,0, + 0,0,11398,11381,1,0,0,0,11398,11390,1,0,0,0,11398,11397,1,0,0,0, + 11399,1633,1,0,0,0,11400,11401,7,84,0,0,11401,1635,1,0,0,0,11402, + 11410,1,0,0,0,11403,11404,5,6,0,0,11404,11406,3,1212,606,0,11405, + 11403,1,0,0,0,11406,11407,1,0,0,0,11407,11405,1,0,0,0,11407,11408, + 1,0,0,0,11408,11410,1,0,0,0,11409,11402,1,0,0,0,11409,11405,1,0, + 0,0,11410,1637,1,0,0,0,11411,11415,1,0,0,0,11412,11413,5,100,0,0, + 11413,11415,3,1642,821,0,11414,11411,1,0,0,0,11414,11412,1,0,0,0, + 11415,1639,1,0,0,0,11416,11417,3,1492,746,0,11417,11418,5,10,0,0, + 11418,11419,3,1212,606,0,11419,1641,1,0,0,0,11420,11425,3,1640,820, + 0,11421,11422,5,6,0,0,11422,11424,3,1640,820,0,11423,11421,1,0,0, + 0,11424,11427,1,0,0,0,11425,11423,1,0,0,0,11425,11426,1,0,0,0,11426, + 1643,1,0,0,0,11427,11425,1,0,0,0,11428,11429,5,518,0,0,11429,11430, + 3,1736,868,0,11430,11431,3,1646,823,0,11431,11432,5,7,0,0,11432, + 1645,1,0,0,0,11433,11437,1,0,0,0,11434,11435,5,6,0,0,11435,11437, + 3,1736,868,0,11436,11433,1,0,0,0,11436,11434,1,0,0,0,11437,1647, + 1,0,0,0,11438,11439,5,519,0,0,11439,11440,3,1560,780,0,11440,11441, + 5,454,0,0,11441,11442,5,519,0,0,11442,11443,3,1728,864,0,11443,11444, + 5,7,0,0,11444,1649,1,0,0,0,11445,11446,3,1746,873,0,11446,11447, + 5,7,0,0,11447,1651,1,0,0,0,11448,11449,5,202,0,0,11449,11457,3,1212, + 606,0,11450,11451,3,1658,829,0,11451,11452,3,1654,827,0,11452,11458, + 1,0,0,0,11453,11454,3,1654,827,0,11454,11455,3,1658,829,0,11455, + 11458,1,0,0,0,11456,11458,1,0,0,0,11457,11450,1,0,0,0,11457,11453, + 1,0,0,0,11457,11456,1,0,0,0,11458,11459,1,0,0,0,11459,11460,5,7, + 0,0,11460,1653,1,0,0,0,11461,11465,1,0,0,0,11462,11463,5,100,0,0, + 11463,11465,3,1656,828,0,11464,11461,1,0,0,0,11464,11462,1,0,0,0, + 11465,1655,1,0,0,0,11466,11471,3,1212,606,0,11467,11468,5,6,0,0, + 11468,11470,3,1212,606,0,11469,11467,1,0,0,0,11470,11473,1,0,0,0, + 11471,11469,1,0,0,0,11471,11472,1,0,0,0,11472,1657,1,0,0,0,11473, + 11471,1,0,0,0,11474,11481,1,0,0,0,11475,11477,5,71,0,0,11476,11478, + 5,346,0,0,11477,11476,1,0,0,0,11477,11478,1,0,0,0,11478,11479,1, + 0,0,0,11479,11481,3,1674,837,0,11480,11474,1,0,0,0,11480,11475,1, + 0,0,0,11481,1659,1,0,0,0,11482,11500,5,520,0,0,11483,11484,3,1712, + 856,0,11484,11485,3,1668,834,0,11485,11491,5,62,0,0,11486,11492, + 3,1000,500,0,11487,11488,5,202,0,0,11488,11489,3,1736,868,0,11489, + 11490,3,1666,833,0,11490,11492,1,0,0,0,11491,11486,1,0,0,0,11491, + 11487,1,0,0,0,11492,11501,1,0,0,0,11493,11498,3,1474,737,0,11494, + 11495,5,2,0,0,11495,11496,3,1664,832,0,11496,11497,5,3,0,0,11497, + 11499,1,0,0,0,11498,11494,1,0,0,0,11498,11499,1,0,0,0,11499,11501, + 1,0,0,0,11500,11483,1,0,0,0,11500,11493,1,0,0,0,11501,11502,1,0, + 0,0,11502,11503,5,7,0,0,11503,1661,1,0,0,0,11504,11505,3,1474,737, + 0,11505,11506,5,20,0,0,11506,11507,3,1212,606,0,11507,11510,1,0, + 0,0,11508,11510,3,1212,606,0,11509,11504,1,0,0,0,11509,11508,1,0, + 0,0,11510,1663,1,0,0,0,11511,11516,3,1662,831,0,11512,11513,5,6, + 0,0,11513,11515,3,1662,831,0,11514,11512,1,0,0,0,11515,11518,1,0, + 0,0,11516,11514,1,0,0,0,11516,11517,1,0,0,0,11517,1665,1,0,0,0,11518, + 11516,1,0,0,0,11519,11523,1,0,0,0,11520,11521,5,100,0,0,11521,11523, + 3,1328,664,0,11522,11519,1,0,0,0,11522,11520,1,0,0,0,11523,1667, + 1,0,0,0,11524,11529,1,0,0,0,11525,11526,3,1670,835,0,11526,11527, + 5,324,0,0,11527,11529,1,0,0,0,11528,11524,1,0,0,0,11528,11525,1, + 0,0,0,11529,1669,1,0,0,0,11530,11533,1,0,0,0,11531,11533,5,269,0, + 0,11532,11530,1,0,0,0,11532,11531,1,0,0,0,11533,1671,1,0,0,0,11534, + 11536,5,61,0,0,11535,11537,3,1678,839,0,11536,11535,1,0,0,0,11536, + 11537,1,0,0,0,11537,11538,1,0,0,0,11538,11539,3,1676,838,0,11539, + 11540,3,1712,856,0,11540,11541,5,71,0,0,11541,11542,3,1674,837,0, + 11542,11543,5,7,0,0,11543,1673,1,0,0,0,11544,11545,3,1328,664,0, + 11545,1675,1,0,0,0,11546,11550,1,0,0,0,11547,11550,5,64,0,0,11548, + 11550,5,68,0,0,11549,11546,1,0,0,0,11549,11547,1,0,0,0,11549,11548, + 1,0,0,0,11550,1677,1,0,0,0,11551,11567,5,268,0,0,11552,11567,5,293, + 0,0,11553,11567,5,207,0,0,11554,11567,5,249,0,0,11555,11556,5,130, + 0,0,11556,11567,3,1212,606,0,11557,11558,5,307,0,0,11558,11567,3, + 1212,606,0,11559,11567,3,1212,606,0,11560,11567,5,30,0,0,11561,11564, + 7,85,0,0,11562,11565,3,1212,606,0,11563,11565,5,30,0,0,11564,11562, + 1,0,0,0,11564,11563,1,0,0,0,11564,11565,1,0,0,0,11565,11567,1,0, + 0,0,11566,11551,1,0,0,0,11566,11552,1,0,0,0,11566,11553,1,0,0,0, + 11566,11554,1,0,0,0,11566,11555,1,0,0,0,11566,11557,1,0,0,0,11566, + 11559,1,0,0,0,11566,11560,1,0,0,0,11566,11561,1,0,0,0,11567,1679, + 1,0,0,0,11568,11570,5,265,0,0,11569,11571,3,1678,839,0,11570,11569, + 1,0,0,0,11570,11571,1,0,0,0,11571,11572,1,0,0,0,11572,11573,3,1712, + 856,0,11573,11574,5,7,0,0,11574,1681,1,0,0,0,11575,11577,3,1014, + 507,0,11576,11575,1,0,0,0,11576,11577,1,0,0,0,11577,11578,1,0,0, + 0,11578,11579,5,525,0,0,11579,11581,5,71,0,0,11580,11582,5,81,0, + 0,11581,11580,1,0,0,0,11581,11582,1,0,0,0,11582,11583,1,0,0,0,11583, + 11585,3,1406,703,0,11584,11586,5,9,0,0,11585,11584,1,0,0,0,11585, + 11586,1,0,0,0,11586,11591,1,0,0,0,11587,11589,5,36,0,0,11588,11587, + 1,0,0,0,11588,11589,1,0,0,0,11589,11590,1,0,0,0,11590,11592,3,1474, + 737,0,11591,11588,1,0,0,0,11591,11592,1,0,0,0,11592,11593,1,0,0, + 0,11593,11594,5,100,0,0,11594,11595,3,1684,842,0,11595,11596,5,80, + 0,0,11596,11598,3,1686,843,0,11597,11599,3,1688,844,0,11598,11597, + 1,0,0,0,11599,11600,1,0,0,0,11600,11598,1,0,0,0,11600,11601,1,0, + 0,0,11601,1683,1,0,0,0,11602,11604,5,81,0,0,11603,11602,1,0,0,0, + 11603,11604,1,0,0,0,11604,11605,1,0,0,0,11605,11607,3,1406,703,0, + 11606,11608,5,9,0,0,11607,11606,1,0,0,0,11607,11608,1,0,0,0,11608, + 11614,1,0,0,0,11609,11612,3,1004,502,0,11610,11612,3,1100,550,0, + 11611,11609,1,0,0,0,11611,11610,1,0,0,0,11612,11614,1,0,0,0,11613, + 11603,1,0,0,0,11613,11611,1,0,0,0,11614,11619,1,0,0,0,11615,11617, + 5,36,0,0,11616,11615,1,0,0,0,11616,11617,1,0,0,0,11617,11618,1,0, + 0,0,11618,11620,3,1474,737,0,11619,11616,1,0,0,0,11619,11620,1,0, + 0,0,11620,1685,1,0,0,0,11621,11622,3,1212,606,0,11622,1687,1,0,0, + 0,11623,11624,5,102,0,0,11624,11627,5,526,0,0,11625,11626,5,33,0, + 0,11626,11628,3,1212,606,0,11627,11625,1,0,0,0,11627,11628,1,0,0, + 0,11628,11629,1,0,0,0,11629,11634,5,93,0,0,11630,11635,3,1692,846, + 0,11631,11635,5,182,0,0,11632,11633,5,57,0,0,11633,11635,5,270,0, + 0,11634,11630,1,0,0,0,11634,11631,1,0,0,0,11634,11632,1,0,0,0,11635, + 11650,1,0,0,0,11636,11637,5,102,0,0,11637,11638,5,77,0,0,11638,11641, + 5,526,0,0,11639,11640,5,33,0,0,11640,11642,3,1212,606,0,11641,11639, + 1,0,0,0,11641,11642,1,0,0,0,11642,11643,1,0,0,0,11643,11647,5,93, + 0,0,11644,11648,3,1690,845,0,11645,11646,5,57,0,0,11646,11648,5, + 270,0,0,11647,11644,1,0,0,0,11647,11645,1,0,0,0,11648,11650,1,0, + 0,0,11649,11623,1,0,0,0,11649,11636,1,0,0,0,11650,1689,1,0,0,0,11651, + 11656,5,241,0,0,11652,11653,5,2,0,0,11653,11654,3,244,122,0,11654, + 11655,5,3,0,0,11655,11657,1,0,0,0,11656,11652,1,0,0,0,11656,11657, + 1,0,0,0,11657,11661,1,0,0,0,11658,11659,5,463,0,0,11659,11660,7, + 53,0,0,11660,11662,5,450,0,0,11661,11658,1,0,0,0,11661,11662,1,0, + 0,0,11662,11663,1,0,0,0,11663,11664,3,1694,847,0,11664,1691,1,0, + 0,0,11665,11666,5,369,0,0,11666,11679,5,333,0,0,11667,11668,3,1432, + 716,0,11668,11669,5,10,0,0,11669,11670,3,1698,849,0,11670,11680, + 1,0,0,0,11671,11672,5,2,0,0,11672,11673,3,244,122,0,11673,11674, + 5,3,0,0,11674,11675,5,10,0,0,11675,11676,5,2,0,0,11676,11677,3,1696, + 848,0,11677,11678,5,3,0,0,11678,11680,1,0,0,0,11679,11667,1,0,0, + 0,11679,11671,1,0,0,0,11680,11681,1,0,0,0,11681,11679,1,0,0,0,11681, + 11682,1,0,0,0,11682,1693,1,0,0,0,11683,11684,5,422,0,0,11684,11688, + 3,1696,848,0,11685,11686,5,53,0,0,11686,11688,5,422,0,0,11687,11683, + 1,0,0,0,11687,11685,1,0,0,0,11688,1695,1,0,0,0,11689,11690,5,2,0, + 0,11690,11695,3,1698,849,0,11691,11692,5,6,0,0,11692,11694,3,1698, + 849,0,11693,11691,1,0,0,0,11694,11697,1,0,0,0,11695,11693,1,0,0, + 0,11695,11696,1,0,0,0,11696,11698,1,0,0,0,11697,11695,1,0,0,0,11698, + 11699,5,3,0,0,11699,1697,1,0,0,0,11700,11703,3,1048,524,0,11701, + 11703,5,53,0,0,11702,11700,1,0,0,0,11702,11701,1,0,0,0,11703,1699, + 1,0,0,0,11704,11705,5,157,0,0,11705,11706,3,1712,856,0,11706,11707, + 5,7,0,0,11707,1701,1,0,0,0,11708,11709,5,78,0,0,11709,11710,5,7, + 0,0,11710,1703,1,0,0,0,11711,11713,5,161,0,0,11712,11714,3,1708, + 854,0,11713,11712,1,0,0,0,11713,11714,1,0,0,0,11714,11715,1,0,0, + 0,11715,11716,5,7,0,0,11716,1705,1,0,0,0,11717,11719,5,319,0,0,11718, + 11720,3,1708,854,0,11719,11718,1,0,0,0,11719,11720,1,0,0,0,11720, + 11721,1,0,0,0,11721,11722,5,7,0,0,11722,1707,1,0,0,0,11723,11725, + 5,33,0,0,11724,11726,5,269,0,0,11725,11724,1,0,0,0,11725,11726,1, + 0,0,0,11726,11727,1,0,0,0,11727,11728,5,153,0,0,11728,1709,1,0,0, + 0,11729,11730,5,333,0,0,11730,11731,3,558,279,0,11731,11732,5,94, + 0,0,11732,11733,5,53,0,0,11733,11734,5,7,0,0,11734,11742,1,0,0,0, + 11735,11738,5,313,0,0,11736,11739,3,558,279,0,11737,11739,5,30,0, + 0,11738,11736,1,0,0,0,11738,11737,1,0,0,0,11739,11740,1,0,0,0,11740, + 11742,5,7,0,0,11741,11729,1,0,0,0,11741,11735,1,0,0,0,11742,1711, + 1,0,0,0,11743,11746,3,1474,737,0,11744,11746,5,28,0,0,11745,11743, + 1,0,0,0,11745,11744,1,0,0,0,11746,1713,1,0,0,0,11747,11751,1,0,0, + 0,11748,11749,5,517,0,0,11749,11751,3,1716,858,0,11750,11747,1,0, + 0,0,11750,11748,1,0,0,0,11751,1715,1,0,0,0,11752,11754,3,1718,859, + 0,11753,11752,1,0,0,0,11754,11755,1,0,0,0,11755,11753,1,0,0,0,11755, + 11756,1,0,0,0,11756,1717,1,0,0,0,11757,11758,5,102,0,0,11758,11759, + 3,1720,860,0,11759,11760,5,93,0,0,11760,11761,3,1560,780,0,11761, + 1719,1,0,0,0,11762,11767,3,1722,861,0,11763,11764,5,82,0,0,11764, + 11766,3,1722,861,0,11765,11763,1,0,0,0,11766,11769,1,0,0,0,11767, + 11765,1,0,0,0,11767,11768,1,0,0,0,11768,1721,1,0,0,0,11769,11767, + 1,0,0,0,11770,11774,3,1732,866,0,11771,11772,5,511,0,0,11772,11774, + 3,1458,729,0,11773,11770,1,0,0,0,11773,11771,1,0,0,0,11774,1723, + 1,0,0,0,11775,11778,1,0,0,0,11776,11778,3,1524,762,0,11777,11775, + 1,0,0,0,11777,11776,1,0,0,0,11778,1725,1,0,0,0,11779,11782,1,0,0, + 0,11780,11782,3,1524,762,0,11781,11779,1,0,0,0,11781,11780,1,0,0, + 0,11782,1727,1,0,0,0,11783,11786,1,0,0,0,11784,11786,3,1732,866, + 0,11785,11783,1,0,0,0,11785,11784,1,0,0,0,11786,1729,1,0,0,0,11787, + 11788,5,102,0,0,11788,11789,3,1740,870,0,11789,1731,1,0,0,0,11790, + 11793,3,1474,737,0,11791,11793,3,1734,867,0,11792,11790,1,0,0,0, + 11792,11791,1,0,0,0,11793,1733,1,0,0,0,11794,11795,7,86,0,0,11795, + 1735,1,0,0,0,11796,11798,3,1384,692,0,11797,11796,1,0,0,0,11797, + 11798,1,0,0,0,11798,11800,1,0,0,0,11799,11801,3,1028,514,0,11800, + 11799,1,0,0,0,11800,11801,1,0,0,0,11801,11803,1,0,0,0,11802,11804, + 3,1102,551,0,11803,11802,1,0,0,0,11803,11804,1,0,0,0,11804,11806, + 1,0,0,0,11805,11807,3,1144,572,0,11806,11805,1,0,0,0,11806,11807, + 1,0,0,0,11807,11809,1,0,0,0,11808,11810,3,1072,536,0,11809,11808, + 1,0,0,0,11809,11810,1,0,0,0,11810,11812,1,0,0,0,11811,11813,3,1086, + 543,0,11812,11811,1,0,0,0,11812,11813,1,0,0,0,11813,11815,1,0,0, + 0,11814,11816,3,1288,644,0,11815,11814,1,0,0,0,11815,11816,1,0,0, + 0,11816,1737,1,0,0,0,11817,11818,3,1736,868,0,11818,1739,1,0,0,0, + 11819,11820,3,1736,868,0,11820,1741,1,0,0,0,11821,11822,3,1212,606, + 0,11822,1743,1,0,0,0,11823,11824,3,1212,606,0,11824,1745,1,0,0,0, + 11825,11827,3,6,3,0,11826,11828,3,1748,874,0,11827,11826,1,0,0,0, + 11827,11828,1,0,0,0,11828,1747,1,0,0,0,11829,11830,5,71,0,0,11830, + 11831,3,1030,515,0,11831,11832,3,1674,837,0,11832,1749,1,0,0,0,1282, + 1753,1762,1881,1885,1894,1903,1909,1915,1947,1959,1965,1973,1981, + 1987,1996,2002,2014,2020,2026,2033,2037,2042,2046,2059,2070,2076, + 2092,2095,2100,2106,2111,2120,2124,2136,2140,2143,2147,2158,2176, + 2183,2191,2196,2203,2209,2215,2222,2233,2237,2241,2245,2258,2262, + 2267,2272,2284,2293,2305,2310,2321,2327,2332,2342,2347,2354,2359, + 2364,2375,2381,2386,2394,2403,2418,2424,2430,2435,2442,2454,2462, + 2470,2488,2497,2511,2515,2530,2538,2548,2588,2591,2595,2599,2602, + 2607,2614,2623,2629,2633,2642,2650,2659,2668,2672,2679,2685,2689, + 2693,2698,2701,2705,2711,2718,2734,2748,2758,2760,2765,2769,2772, + 2778,2780,2808,2818,2831,2838,2843,2847,2853,2858,2861,2863,2868, + 2872,2876,2880,2884,2887,2891,2899,2903,2907,2916,2923,2928,2935, + 2940,2947,2952,2970,2975,2987,2992,3001,3008,3015,3019,3024,3028, + 3031,3034,3037,3040,3043,3048,3051,3054,3057,3060,3063,3069,3073, + 3076,3079,3082,3085,3087,3096,3111,3119,3125,3129,3134,3137,3140, + 3144,3148,3162,3167,3174,3179,3183,3186,3190,3193,3195,3202,3205, + 3209,3215,3218,3225,3234,3241,3246,3249,3252,3255,3259,3266,3271, + 3284,3294,3307,3310,3313,3320,3328,3331,3334,3341,3345,3351,3354, + 3357,3360,3372,3375,3378,3382,3400,3408,3424,3435,3450,3467,3469, + 3490,3495,3498,3502,3505,3511,3514,3516,3527,3536,3542,3545,3548, + 3562,3565,3568,3573,3581,3590,3594,3600,3604,3607,3610,3613,3616, + 3622,3626,3631,3637,3641,3644,3647,3650,3658,3662,3666,3670,3674, + 3679,3693,3702,3719,3724,3727,3729,3739,3746,3751,3754,3757,3764, + 3767,3769,3775,3784,3794,3799,3807,3811,3818,3828,3839,3947,3955, + 3958,3968,3973,3983,3994,4006,4019,4029,4041,4045,4048,4055,4063, + 4073,4075,4081,4086,4090,4095,4101,4108,4114,4116,4123,4131,4136, + 4147,4154,4158,4175,4178,4181,4184,4187,4195,4198,4201,4207,4215, + 4219,4231,4237,4240,4245,4249,4256,4267,4290,4310,4319,4322,4325, + 4335,4338,4347,4351,4354,4362,4368,4372,4383,4393,4401,4406,4418, + 4435,4439,4445,4452,4460,4474,4500,4507,4521,4532,4535,4548,4557, + 4582,4593,4635,4643,4649,4660,4666,4674,4685,4699,4708,4713,4724, + 4735,4743,4753,4760,4763,4769,4772,4787,4800,4829,4836,4851,4863, + 4867,4872,4876,4881,4885,4891,4895,4900,4904,4910,4914,4919,4923, + 4928,4932,4937,4941,4948,4952,4959,4963,4970,4974,4981,4985,4991, + 4995,5001,5005,5010,5014,5021,5025,5029,5033,5037,5042,5046,5051, + 5055,5060,5064,5069,5075,5080,5086,5091,5097,5102,5106,5111,5115, + 5121,5125,5130,5138,5144,5150,5156,5162,5169,5174,5178,5183,5187, + 5192,5198,5205,5210,5217,5227,5231,5237,5239,5246,5250,5255,5273, + 5288,5306,5315,5324,5328,5334,5341,5346,5353,5358,5361,5364,5368, + 5439,5535,5539,5544,5555,5566,5577,5588,5599,5611,5622,5633,5643, + 5650,5657,5663,5671,5676,5681,5686,5692,5699,5705,5711,5716,5722, + 5729,5734,5740,5747,5750,5763,5772,5784,5786,5804,5811,5821,5826, + 5830,5834,5838,5840,5900,5907,5913,5924,5927,5934,5937,5947,5950, + 5952,5971,5983,5992,6001,6013,6015,6021,6025,6028,6031,6036,6042, + 6045,6048,6051,6054,6070,6074,6077,6080,6083,6086,6091,6094,6096, + 6109,6121,6135,6139,6145,6155,6157,6162,6170,6180,6189,6197,6206, + 6208,6215,6224,6226,6233,6242,6244,6248,6257,6262,6268,6273,6277, + 6282,6300,6305,6320,6329,6340,6346,6383,6403,6410,6421,6435,6442, + 6450,6455,6462,6466,6471,6475,6480,6484,6486,6491,6495,6500,6504, + 6528,6535,6545,6557,6562,6575,6587,6599,6601,6607,6614,6659,6677, + 6681,6686,6689,6693,6698,6703,6706,6713,6730,6801,6832,6886,6896, + 6906,6917,6927,6938,6948,6953,6962,6967,6977,6982,6991,7004,7009, + 7121,7123,7132,7143,7154,7167,7179,7190,7197,7287,7340,7350,7361, + 7372,7386,7401,7412,7419,7473,7614,7620,7623,7633,7673,7683,7690, + 7713,7722,7731,7740,7773,7777,7787,7791,7801,7804,7808,7812,7820, + 7831,7843,7847,7850,7854,7857,7862,7866,7869,7875,7886,7889,7896, + 7900,7905,7908,7910,7924,7928,7933,7940,7947,7950,7955,7958,7967, + 7969,7974,7978,7990,7993,8000,8004,8009,8019,8029,8032,8035,8037, + 8043,8050,8070,8090,8094,8099,8168,8173,8179,8192,8196,8200,8206, + 8208,8216,8226,8229,8232,8235,8238,8245,8248,8250,8254,8257,8264, + 8266,8273,8280,8284,8288,8297,8303,8307,8311,8316,8328,8335,8345, + 8358,8369,8376,8381,8385,8389,8394,8407,8412,8416,8420,8427,8430, + 8432,8440,8444,8447,8454,8457,8462,8468,8474,8478,8487,8496,8503, + 8506,8512,8517,8523,8529,8532,8535,8542,8546,8549,8564,8567,8574, + 8577,8584,8587,8590,8597,8609,8616,8618,8628,8646,8648,8656,8660, + 8670,8674,8678,8682,8684,8689,8693,8697,8699,8701,8705,8709,8712, + 8715,8718,8721,8723,8726,8729,8732,8735,8738,8741,8750,8752,8757, + 8761,8767,8771,8775,8784,8789,8793,8799,8802,8821,8829,8838,8842, + 8845,8849,8854,8860,8872,8887,8894,8897,8901,8905,8909,8911,8919, + 8928,8934,8936,8943,8947,8956,8960,8969,8978,8990,9018,9025,9029, + 9032,9037,9041,9044,9060,9071,9076,9079,9082,9086,9090,9094,9099, + 9103,9107,9109,9118,9123,9129,9133,9135,9142,9147,9153,9155,9159, + 9166,9173,9176,9182,9186,9195,9198,9202,9210,9216,9218,9221,9225, + 9228,9231,9235,9239,9245,9248,9257,9264,9266,9273,9281,9286,9289, + 9297,9306,9314,9316,9320,9327,9346,9355,9361,9380,9389,9395,9399, + 9404,9414,9421,9430,9433,9442,9444,9450,9454,9459,9469,9475,9477, + 9483,9487,9490,9503,9509,9513,9517,9520,9528,9532,9536,9544,9551, + 9558,9562,9568,9570,9579,9582,9592,9608,9614,9619,9626,9635,9642, + 9650,9658,9663,9667,9670,9676,9681,9697,9700,9702,9714,9716,9720, + 9728,9730,9734,9736,9744,9748,9757,9765,9771,9774,9783,9788,9795, + 9805,9831,9842,9844,9846,9854,9876,9885,9895,9898,9903,9908,9912, + 9915,9919,9922,9925,9928,9932,9946,9953,9960,9967,9985,9993,10005, + 10011,10024,10063,10065,10085,10095,10106,10118,10125,10137,10149, + 10155,10163,10180,10205,10215,10219,10222,10225,10228,10241,10246, + 10251,10253,10261,10270,10279,10284,10293,10298,10312,10322,10330, + 10344,10351,10359,10367,10375,10379,10386,10394,10401,10407,10416, + 10431,10442,10475,10484,10491,10495,10499,10506,10520,10525,10530, + 10534,10536,10539,10546,10551,10561,10569,10572,10579,10587,10595, + 10603,10611,10616,10620,10624,10628,10632,10636,10640,10647,10655, + 10660,10664,10668,10678,10684,10690,10694,10708,10714,10720,10732, + 10737,10745,10752,10757,10769,10777,10782,10792,10803,10810,10817, + 10828,10831,10833,10837,10840,10846,10852,10856,10862,10870,10874, + 10882,10939,10952,10975,10983,10987,10999,11001,11008,11017,11035, + 11043,11052,11059,11069,11075,11082,11087,11093,11097,11104,11134, + 11147,11156,11160,11176,11183,11196,11204,11224,11230,11242,11247, + 11257,11289,11294,11303,11308,11312,11317,11333,11338,11353,11356, + 11362,11366,11375,11383,11392,11398,11407,11409,11414,11425,11436, + 11457,11464,11471,11477,11480,11491,11498,11500,11509,11516,11522, + 11528,11532,11536,11549,11564,11566,11570,11576,11581,11585,11588, + 11591,11600,11603,11607,11611,11613,11616,11619,11627,11634,11641, + 11647,11649,11656,11661,11679,11681,11687,11695,11702,11713,11719, + 11725,11738,11741,11745,11750,11755,11767,11773,11777,11781,11785, + 11792,11797,11800,11803,11806,11809,11812,11815,11827 ]; private static __ATN: antlr.ATN; @@ -77768,28 +75332,37 @@ export class Schema_name_createContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_schema_name_create; + } + public override copyFrom(ctx: Schema_name_createContext): void { + super.copyFrom(ctx); + } +} +export class SchemaNameCreateContext extends Schema_name_createContext { + public constructor(ctx: Schema_name_createContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } public attrs(): AttrsContext | null { return this.getRuleContext(0, AttrsContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_schema_name_create; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterSchema_name_create) { - listener.enterSchema_name_create(this); + if(listener.enterSchemaNameCreate) { + listener.enterSchemaNameCreate(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitSchema_name_create) { - listener.exitSchema_name_create(this); + if(listener.exitSchemaNameCreate) { + listener.exitSchemaNameCreate(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitSchema_name_create) { - return visitor.visitSchema_name_create(this); + if (visitor.visitSchemaNameCreate) { + return visitor.visitSchemaNameCreate(this); } else { return visitor.visitChildren(this); } @@ -78962,8 +76535,14 @@ export class AltertablestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSQLParser.KW_TABLESPACE, i); } } - public tablespace_name(): Tablespace_nameContext | null { - return this.getRuleContext(0, Tablespace_nameContext); + public tablespace_name(): Tablespace_nameContext[]; + public tablespace_name(i: number): Tablespace_nameContext | null; + public tablespace_name(i?: number): Tablespace_nameContext[] | Tablespace_nameContext | null { + if (i === undefined) { + return this.getRuleContexts(Tablespace_nameContext); + } + + return this.getRuleContext(i, Tablespace_nameContext); } public KW_SET(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_SET, 0); @@ -79517,8 +77096,8 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public KW_COLUMN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_COLUMN, 0); } - public columnDefCluase(): ColumnDefCluaseContext | null { - return this.getRuleContext(0, ColumnDefCluaseContext); + public column_def(): Column_defContext | null { + return this.getRuleContext(0, Column_defContext); } public opt_if_not_exists(): Opt_if_not_existsContext | null { return this.getRuleContext(0, Opt_if_not_existsContext); @@ -80648,8 +78227,8 @@ export class Copy_opt_itemContext extends antlr.ParserRuleContext { public KW_FORCE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_FORCE, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public column_list(): Column_listContext | null { + return this.getRuleContext(0, Column_listContext); } public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.STAR, 0); @@ -80981,6 +78560,18 @@ export class CreatestmtContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_createstmt; + } + public override copyFrom(ctx: CreatestmtContext): void { + super.copyFrom(ctx); + } +} +export class ColumnCreateTableContext extends CreatestmtContext { + public constructor(ctx: CreatestmtContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public KW_CREATE(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_CREATE, 0)!; } @@ -81041,22 +78632,19 @@ export class CreatestmtContext extends antlr.ParserRuleContext { public opttypedtableelementlist(): OpttypedtableelementlistContext | null { return this.getRuleContext(0, OpttypedtableelementlistContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_createstmt; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterCreatestmt) { - listener.enterCreatestmt(this); + if(listener.enterColumnCreateTable) { + listener.enterColumnCreateTable(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitCreatestmt) { - listener.exitCreatestmt(this); + if(listener.exitColumnCreateTable) { + listener.exitColumnCreateTable(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitCreatestmt) { - return visitor.visitCreatestmt(this); + if (visitor.visitColumnCreateTable) { + return visitor.visitColumnCreateTable(this); } else { return visitor.visitChildren(this); } @@ -81296,8 +78884,8 @@ export class TableelementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnDef(): ColumnDefContext | null { - return this.getRuleContext(0, ColumnDefContext); + public column_def(): Column_defContext | null { + return this.getRuleContext(0, Column_defContext); } public tablelikeclause(): TablelikeclauseContext | null { return this.getRuleContext(0, TablelikeclauseContext); @@ -81361,12 +78949,12 @@ export class TypedtableelementContext extends antlr.ParserRuleContext { } -export class ColumnDefCluaseContext extends antlr.ParserRuleContext { +export class Column_defContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public column_name(): Column_nameContext { - return this.getRuleContext(0, Column_nameContext)!; + public column_name_create(): Column_name_createContext { + return this.getRuleContext(0, Column_name_createContext)!; } public typename(): TypenameContext { return this.getRuleContext(0, TypenameContext)!; @@ -81396,78 +78984,21 @@ export class ColumnDefCluaseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSQLParser.KW_OPTIONS, 0); } public override get ruleIndex(): number { - return PostgreSQLParser.RULE_columnDefCluase; + return PostgreSQLParser.RULE_column_def; } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterColumnDefCluase) { - listener.enterColumnDefCluase(this); + if(listener.enterColumn_def) { + listener.enterColumn_def(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitColumnDefCluase) { - listener.exitColumnDefCluase(this); + if(listener.exitColumn_def) { + listener.exitColumn_def(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitColumnDefCluase) { - return visitor.visitColumnDefCluase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ColumnDefContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public column_name(): Column_nameContext { - return this.getRuleContext(0, Column_nameContext)!; - } - public typename(): TypenameContext { - return this.getRuleContext(0, TypenameContext)!; - } - public colquallist(): ColquallistContext { - return this.getRuleContext(0, ColquallistContext)!; - } - public create_generic_options(): Create_generic_optionsContext | null { - return this.getRuleContext(0, Create_generic_optionsContext); - } - public storageCluase(): StorageCluaseContext | null { - return this.getRuleContext(0, StorageCluaseContext); - } - public compressionCluase(): CompressionCluaseContext | null { - return this.getRuleContext(0, CompressionCluaseContext); - } - public KW_COLLATE(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_COLLATE, 0); - } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); - } - public KW_WITH(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_WITH, 0); - } - public KW_OPTIONS(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_OPTIONS, 0); - } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_columnDef; - } - public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterColumnDef) { - listener.enterColumnDef(this); - } - } - public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitColumnDef) { - listener.exitColumnDef(this); - } - } - public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitColumnDef) { - return visitor.visitColumnDef(this); + if (visitor.visitColumn_def) { + return visitor.visitColumn_def(this); } else { return visitor.visitChildren(this); } @@ -81560,8 +79091,8 @@ export class ColumnOptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public column_name(): Column_nameContext { - return this.getRuleContext(0, Column_nameContext)!; + public column_name_create(): Column_name_createContext { + return this.getRuleContext(0, Column_name_createContext)!; } public colquallist(): ColquallistContext { return this.getRuleContext(0, ColquallistContext)!; @@ -82127,8 +79658,8 @@ export class ConstraintelemContext extends antlr.ParserRuleContext { public KW_UNIQUE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_UNIQUE, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public column_list(): Column_listContext | null { + return this.getRuleContext(0, Column_listContext); } public existingindex(): ExistingindexContext | null { return this.getRuleContext(0, ExistingindexContext); @@ -82241,8 +79772,8 @@ export class Opt_column_listContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0)!; } - public columnlist(): ColumnlistContext { - return this.getRuleContext(0, ColumnlistContext)!; + public column_list(): Column_listContext { + return this.getRuleContext(0, Column_listContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0)!; @@ -82270,7 +79801,43 @@ export class Opt_column_listContext extends antlr.ParserRuleContext { } -export class ColumnlistContext extends antlr.ParserRuleContext { +export class Opt_column_list_createContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public OPEN_PAREN(): antlr.TerminalNode { + return this.getToken(PostgreSQLParser.OPEN_PAREN, 0)!; + } + public column_list_create(): Column_list_createContext { + return this.getRuleContext(0, Column_list_createContext)!; + } + public CLOSE_PAREN(): antlr.TerminalNode { + return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0)!; + } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_opt_column_list_create; + } + public override enterRule(listener: PostgreSQLParserListener): void { + if(listener.enterOpt_column_list_create) { + listener.enterOpt_column_list_create(this); + } + } + public override exitRule(listener: PostgreSQLParserListener): void { + if(listener.exitOpt_column_list_create) { + listener.exitOpt_column_list_create(this); + } + } + public override accept(visitor: PostgreSQLParserVisitor): Result | null { + if (visitor.visitOpt_column_list_create) { + return visitor.visitOpt_column_list_create(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class Column_listContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -82293,21 +79860,66 @@ export class ColumnlistContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSQLParser.RULE_columnlist; + return PostgreSQLParser.RULE_column_list; } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterColumnlist) { - listener.enterColumnlist(this); + if(listener.enterColumn_list) { + listener.enterColumn_list(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitColumnlist) { - listener.exitColumnlist(this); + if(listener.exitColumn_list) { + listener.exitColumn_list(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitColumnlist) { - return visitor.visitColumnlist(this); + if (visitor.visitColumn_list) { + return visitor.visitColumn_list(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class Column_list_createContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public column_name_create(): Column_name_createContext[]; + public column_name_create(i: number): Column_name_createContext | null; + public column_name_create(i?: number): Column_name_createContext[] | Column_name_createContext | null { + if (i === undefined) { + return this.getRuleContexts(Column_name_createContext); + } + + return this.getRuleContext(i, Column_name_createContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(PostgreSQLParser.COMMA); + } else { + return this.getToken(PostgreSQLParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_column_list_create; + } + public override enterRule(listener: PostgreSQLParserListener): void { + if(listener.enterColumn_list_create) { + listener.enterColumn_list_create(this); + } + } + public override exitRule(listener: PostgreSQLParserListener): void { + if(listener.exitColumn_list_create) { + listener.exitColumn_list_create(this); + } + } + public override accept(visitor: PostgreSQLParserVisitor): Result | null { + if (visitor.visitColumn_list_create) { + return visitor.visitColumn_list_create(this); } else { return visitor.visitChildren(this); } @@ -82325,8 +79937,8 @@ export class Opt_c_includeContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0)!; } - public columnlist(): ColumnlistContext { - return this.getRuleContext(0, ColumnlistContext)!; + public column_list(): Column_listContext { + return this.getRuleContext(0, Column_listContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0)!; @@ -82652,8 +80264,8 @@ export class Key_actionContext extends antlr.ParserRuleContext { public KW_DEFAULT(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_DEFAULT, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public column_list(): Column_listContext | null { + return this.getRuleContext(0, Column_listContext); } public override get ruleIndex(): number { return PostgreSQLParser.RULE_key_action; @@ -83258,6 +80870,18 @@ export class CreateasstmtContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_createasstmt; + } + public override copyFrom(ctx: CreateasstmtContext): void { + super.copyFrom(ctx); + } +} +export class QueryCreateTableContext extends CreateasstmtContext { + public constructor(ctx: CreateasstmtContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public KW_CREATE(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_CREATE, 0)!; } @@ -83282,22 +80906,19 @@ export class CreateasstmtContext extends antlr.ParserRuleContext { public opt_with_data(): Opt_with_dataContext | null { return this.getRuleContext(0, Opt_with_dataContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_createasstmt; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterCreateasstmt) { - listener.enterCreateasstmt(this); + if(listener.enterQueryCreateTable) { + listener.enterQueryCreateTable(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitCreateasstmt) { - listener.exitCreateasstmt(this); + if(listener.exitQueryCreateTable) { + listener.exitQueryCreateTable(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitCreateasstmt) { - return visitor.visitCreateasstmt(this); + if (visitor.visitQueryCreateTable) { + return visitor.visitQueryCreateTable(this); } else { return visitor.visitChildren(this); } @@ -83312,8 +80933,8 @@ export class Create_as_targetContext extends antlr.ParserRuleContext { public table_name_create(): Table_name_createContext { return this.getRuleContext(0, Table_name_createContext)!; } - public opt_column_list(): Opt_column_listContext | null { - return this.getRuleContext(0, Opt_column_listContext); + public opt_column_list_create(): Opt_column_list_createContext | null { + return this.getRuleContext(0, Opt_column_list_createContext); } public table_access_method_clause(): Table_access_method_clauseContext | null { return this.getRuleContext(0, Table_access_method_clauseContext); @@ -83390,6 +81011,18 @@ export class CreatematviewstmtContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_creatematviewstmt; + } + public override copyFrom(ctx: CreatematviewstmtContext): void { + super.copyFrom(ctx); + } +} +export class CreateMaterializedViewContext extends CreatematviewstmtContext { + public constructor(ctx: CreatematviewstmtContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public KW_CREATE(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_CREATE, 0)!; } @@ -83417,22 +81050,19 @@ export class CreatematviewstmtContext extends antlr.ParserRuleContext { public opt_with_data(): Opt_with_dataContext | null { return this.getRuleContext(0, Opt_with_dataContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_creatematviewstmt; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterCreatematviewstmt) { - listener.enterCreatematviewstmt(this); + if(listener.enterCreateMaterializedView) { + listener.enterCreateMaterializedView(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitCreatematviewstmt) { - listener.exitCreatematviewstmt(this); + if(listener.exitCreateMaterializedView) { + listener.exitCreateMaterializedView(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitCreatematviewstmt) { - return visitor.visitCreatematviewstmt(this); + if (visitor.visitCreateMaterializedView) { + return visitor.visitCreateMaterializedView(this); } else { return visitor.visitChildren(this); } @@ -83447,8 +81077,8 @@ export class Create_mv_targetContext extends antlr.ParserRuleContext { public view_name_create(): View_name_createContext { return this.getRuleContext(0, View_name_createContext)!; } - public opt_column_list(): Opt_column_listContext | null { - return this.getRuleContext(0, Opt_column_listContext); + public opt_column_list_create(): Opt_column_list_createContext | null { + return this.getRuleContext(0, Opt_column_list_createContext); } public table_access_method_clause(): Table_access_method_clauseContext | null { return this.getRuleContext(0, Table_access_method_clauseContext); @@ -85352,6 +82982,18 @@ export class CreateforeigntablestmtContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_createforeigntablestmt; + } + public override copyFrom(ctx: CreateforeigntablestmtContext): void { + super.copyFrom(ctx); + } +} +export class CreateForeignTableContext extends CreateforeigntablestmtContext { + public constructor(ctx: CreateforeigntablestmtContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public KW_CREATE(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_CREATE, 0)!; } @@ -85364,11 +83006,11 @@ export class CreateforeigntablestmtContext extends antlr.ParserRuleContext { public table_name_create(): Table_name_createContext { return this.getRuleContext(0, Table_name_createContext)!; } - public OPEN_PAREN(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.OPEN_PAREN, 0); + public OPEN_PAREN(): antlr.TerminalNode { + return this.getToken(PostgreSQLParser.OPEN_PAREN, 0)!; } - public CLOSE_PAREN(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0); + public CLOSE_PAREN(): antlr.TerminalNode { + return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0)!; } public KW_SERVER(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_SERVER, 0)!; @@ -85388,37 +83030,81 @@ export class CreateforeigntablestmtContext extends antlr.ParserRuleContext { public create_generic_options(): Create_generic_optionsContext | null { return this.getRuleContext(0, Create_generic_optionsContext); } - public KW_PARTITION(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_PARTITION, 0); + public override enterRule(listener: PostgreSQLParserListener): void { + if(listener.enterCreateForeignTable) { + listener.enterCreateForeignTable(this); + } } - public KW_OF(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_OF, 0); + public override exitRule(listener: PostgreSQLParserListener): void { + if(listener.exitCreateForeignTable) { + listener.exitCreateForeignTable(this); + } } - public table_name(): Table_nameContext | null { - return this.getRuleContext(0, Table_nameContext); + public override accept(visitor: PostgreSQLParserVisitor): Result | null { + if (visitor.visitCreateForeignTable) { + return visitor.visitCreateForeignTable(this); + } else { + return visitor.visitChildren(this); + } } - public partitionboundspec(): PartitionboundspecContext | null { - return this.getRuleContext(0, PartitionboundspecContext); +} +export class CreatePartitionForeignTableContext extends CreateforeigntablestmtContext { + public constructor(ctx: CreateforeigntablestmtContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(PostgreSQLParser.KW_CREATE, 0)!; + } + public KW_FOREIGN(): antlr.TerminalNode { + return this.getToken(PostgreSQLParser.KW_FOREIGN, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(PostgreSQLParser.KW_TABLE, 0)!; + } + public table_name_create(): Table_name_createContext { + return this.getRuleContext(0, Table_name_createContext)!; + } + public KW_PARTITION(): antlr.TerminalNode { + return this.getToken(PostgreSQLParser.KW_PARTITION, 0)!; + } + public KW_OF(): antlr.TerminalNode { + return this.getToken(PostgreSQLParser.KW_OF, 0)!; + } + public table_name(): Table_nameContext { + return this.getRuleContext(0, Table_nameContext)!; + } + public partitionboundspec(): PartitionboundspecContext { + return this.getRuleContext(0, PartitionboundspecContext)!; + } + public KW_SERVER(): antlr.TerminalNode { + return this.getToken(PostgreSQLParser.KW_SERVER, 0)!; + } + public name(): NameContext { + return this.getRuleContext(0, NameContext)!; + } + public opt_if_not_exists(): Opt_if_not_existsContext | null { + return this.getRuleContext(0, Opt_if_not_existsContext); } public opttypedtableelementlist(): OpttypedtableelementlistContext | null { return this.getRuleContext(0, OpttypedtableelementlistContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_createforeigntablestmt; + public create_generic_options(): Create_generic_optionsContext | null { + return this.getRuleContext(0, Create_generic_optionsContext); } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterCreateforeigntablestmt) { - listener.enterCreateforeigntablestmt(this); + if(listener.enterCreatePartitionForeignTable) { + listener.enterCreatePartitionForeignTable(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitCreateforeigntablestmt) { - listener.exitCreateforeigntablestmt(this); + if(listener.exitCreatePartitionForeignTable) { + listener.exitCreatePartitionForeignTable(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitCreateforeigntablestmt) { - return visitor.visitCreateforeigntablestmt(this); + if (visitor.visitCreatePartitionForeignTable) { + return visitor.visitCreatePartitionForeignTable(this); } else { return visitor.visitChildren(this); } @@ -86603,8 +84289,8 @@ export class TriggeroneeventContext extends antlr.ParserRuleContext { public KW_OF(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_OF, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public column_list(): Column_listContext | null { + return this.getRuleContext(0, Column_listContext); } public KW_TRUNCATE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_TRUNCATE, 0); @@ -90140,8 +87826,8 @@ export class PrivilegesContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public column_list(): Column_listContext | null { + return this.getRuleContext(0, Column_listContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0); @@ -94499,8 +92185,8 @@ export class AlterobjectschemastmtContext extends antlr.ParserRuleContext { public KW_SCHEMA(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_SCHEMA, 0)!; } - public schema_name_create(): Schema_name_createContext { - return this.getRuleContext(0, Schema_name_createContext)!; + public schema_name(): Schema_nameContext { + return this.getRuleContext(0, Schema_nameContext)!; } public KW_COLLATION(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_COLLATION, 0); @@ -96131,6 +93817,18 @@ export class ViewstmtContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_viewstmt; + } + public override copyFrom(ctx: ViewstmtContext): void { + super.copyFrom(ctx); + } +} +export class CreateViewContext extends ViewstmtContext { + public constructor(ctx: ViewstmtContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public KW_CREATE(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_CREATE, 0)!; } @@ -96152,8 +93850,8 @@ export class ViewstmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public column_list(): Column_listContext | null { + return this.getRuleContext(0, Column_listContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0); @@ -96170,28 +93868,25 @@ export class ViewstmtContext extends antlr.ParserRuleContext { public opt_check_option(): Opt_check_optionContext | null { return this.getRuleContext(0, Opt_check_optionContext); } - public opt_column_list(): Opt_column_listContext | null { - return this.getRuleContext(0, Opt_column_listContext); + public opt_column_list_create(): Opt_column_list_createContext | null { + return this.getRuleContext(0, Opt_column_list_createContext); } public opt_reloptions(): Opt_reloptionsContext | null { return this.getRuleContext(0, Opt_reloptionsContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_viewstmt; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterViewstmt) { - listener.enterViewstmt(this); + if(listener.enterCreateView) { + listener.enterCreateView(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitViewstmt) { - listener.exitViewstmt(this); + if(listener.exitCreateView) { + listener.exitCreateView(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitViewstmt) { - return visitor.visitViewstmt(this); + if (visitor.visitCreateView) { + return visitor.visitCreateView(this); } else { return visitor.visitChildren(this); } @@ -96278,6 +93973,18 @@ export class CreatedbstmtContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_createdbstmt; + } + public override copyFrom(ctx: CreatedbstmtContext): void { + super.copyFrom(ctx); + } +} +export class CreateDatabaseContext extends CreatedbstmtContext { + public constructor(ctx: CreatedbstmtContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public KW_CREATE(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_CREATE, 0)!; } @@ -96293,22 +94000,19 @@ export class CreatedbstmtContext extends antlr.ParserRuleContext { public createdb_opt_list(): Createdb_opt_listContext | null { return this.getRuleContext(0, Createdb_opt_listContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_createdbstmt; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterCreatedbstmt) { - listener.enterCreatedbstmt(this); + if(listener.enterCreateDatabase) { + listener.enterCreateDatabase(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitCreatedbstmt) { - listener.exitCreatedbstmt(this); + if(listener.exitCreateDatabase) { + listener.exitCreateDatabase(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitCreatedbstmt) { - return visitor.visitCreatedbstmt(this); + if (visitor.visitCreateDatabase) { + return visitor.visitCreateDatabase(this); } else { return visitor.visitChildren(this); } @@ -97808,8 +95512,8 @@ export class Opt_name_listContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0)!; } - public columnlist(): ColumnlistContext { - return this.getRuleContext(0, ColumnlistContext)!; + public column_list(): Column_listContext { + return this.getRuleContext(0, Column_listContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0)!; @@ -98447,6 +96151,18 @@ export class InsertstmtContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_insertstmt; + } + public override copyFrom(ctx: InsertstmtContext): void { + super.copyFrom(ctx); + } +} +export class InsertStatementContext extends InsertstmtContext { + public constructor(ctx: InsertstmtContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public KW_INSERT(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_INSERT, 0)!; } @@ -98468,22 +96184,19 @@ export class InsertstmtContext extends antlr.ParserRuleContext { public returning_clause(): Returning_clauseContext | null { return this.getRuleContext(0, Returning_clauseContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_insertstmt; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterInsertstmt) { - listener.enterInsertstmt(this); + if(listener.enterInsertStatement) { + listener.enterInsertStatement(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitInsertstmt) { - listener.exitInsertstmt(this); + if(listener.exitInsertStatement) { + listener.exitInsertStatement(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitInsertstmt) { - return visitor.visitInsertstmt(this); + if (visitor.visitInsertStatement) { + return visitor.visitInsertStatement(this); } else { return visitor.visitChildren(this); } @@ -99509,28 +97222,37 @@ export class SelectstmtContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_selectstmt; + } + public override copyFrom(ctx: SelectstmtContext): void { + super.copyFrom(ctx); + } +} +export class SelectStatementContext extends SelectstmtContext { + public constructor(ctx: SelectstmtContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public select_no_parens(): Select_no_parensContext | null { return this.getRuleContext(0, Select_no_parensContext); } public select_with_parens(): Select_with_parensContext | null { return this.getRuleContext(0, Select_with_parensContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_selectstmt; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterSelectstmt) { - listener.enterSelectstmt(this); + if(listener.enterSelectStatement) { + listener.enterSelectStatement(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitSelectstmt) { - listener.exitSelectstmt(this); + if(listener.exitSelectStatement) { + listener.exitSelectStatement(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitSelectstmt) { - return visitor.visitSelectstmt(this); + if (visitor.visitSelectStatement) { + return visitor.visitSelectStatement(this); } else { return visitor.visitChildren(this); } @@ -100032,8 +97754,8 @@ export class Search_cluaseContext extends antlr.ParserRuleContext { public KW_BY(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_BY, 0)!; } - public columnlist(): ColumnlistContext { - return this.getRuleContext(0, ColumnlistContext)!; + public column_list(): Column_listContext { + return this.getRuleContext(0, Column_listContext)!; } public KW_SET(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_SET, 0)!; @@ -100077,8 +97799,8 @@ export class Cycle_cluaseContext extends antlr.ParserRuleContext { public KW_CYCLE(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_CYCLE, 0)!; } - public columnlist(): ColumnlistContext { - return this.getRuleContext(0, ColumnlistContext)!; + public column_list(): Column_listContext { + return this.getRuleContext(0, Column_listContext)!; } public KW_SET(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_SET, 0)!; @@ -101961,8 +99683,8 @@ export class Join_qualContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public column_list(): Column_listContext | null { + return this.getRuleContext(0, Column_listContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0); @@ -102063,6 +99785,12 @@ export class View_relation_exprContext extends antlr.ParserRuleContext { public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.STAR, 0); } + public column_list(): Column_listContext | null { + return this.getRuleContext(0, Column_listContext); + } + public where_clause(): Where_clauseContext | null { + return this.getRuleContext(0, Where_clauseContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_view_relation_expr; } @@ -102105,8 +99833,8 @@ export class Publication_relation_exprContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public column_list(): Column_listContext | null { + return this.getRuleContext(0, Column_listContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0); @@ -106952,9 +104680,6 @@ export class Column_exprContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public column_name(): Column_nameContext | null { - return this.getRuleContext(0, Column_nameContext); - } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0); } @@ -106964,6 +104689,9 @@ export class Column_exprContext extends antlr.ParserRuleContext { public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0); } + public column_name(): Column_nameContext | null { + return this.getRuleContext(0, Column_nameContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_column_expr; } @@ -106991,12 +104719,12 @@ export class Column_expr_noparenContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public column_name(): Column_nameContext | null { - return this.getRuleContext(0, Column_nameContext); - } public a_expr(): A_exprContext | null { return this.getRuleContext(0, A_exprContext); } + public column_name(): Column_nameContext | null { + return this.getRuleContext(0, Column_nameContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_column_expr_noparen; } @@ -108354,28 +106082,37 @@ export class Tablespace_name_createContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_tablespace_name_create; + } + public override copyFrom(ctx: Tablespace_name_createContext): void { + super.copyFrom(ctx); + } +} +export class TablespaceNameCreateContext extends Tablespace_name_createContext { + public constructor(ctx: Tablespace_name_createContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_tablespace_name_create; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterTablespace_name_create) { - listener.enterTablespace_name_create(this); + if(listener.enterTablespaceNameCreate) { + listener.enterTablespaceNameCreate(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitTablespace_name_create) { - listener.exitTablespace_name_create(this); + if(listener.exitTablespaceNameCreate) { + listener.exitTablespaceNameCreate(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitTablespace_name_create) { - return visitor.visitTablespace_name_create(this); + if (visitor.visitTablespaceNameCreate) { + return visitor.visitTablespaceNameCreate(this); } else { return visitor.visitChildren(this); } @@ -108387,28 +106124,37 @@ export class Tablespace_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_tablespace_name; + } + public override copyFrom(ctx: Tablespace_nameContext): void { + super.copyFrom(ctx); + } +} +export class TablespaceNameContext extends Tablespace_nameContext { + public constructor(ctx: Tablespace_nameContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_tablespace_name; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterTablespace_name) { - listener.enterTablespace_name(this); + if(listener.enterTablespaceName) { + listener.enterTablespaceName(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitTablespace_name) { - listener.exitTablespace_name(this); + if(listener.exitTablespaceName) { + listener.exitTablespaceName(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitTablespace_name) { - return visitor.visitTablespace_name(this); + if (visitor.visitTablespaceName) { + return visitor.visitTablespaceName(this); } else { return visitor.visitChildren(this); } @@ -108420,28 +106166,37 @@ export class Table_name_createContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_table_name_create; + } + public override copyFrom(ctx: Table_name_createContext): void { + super.copyFrom(ctx); + } +} +export class TableNameCreateContext extends Table_name_createContext { + public constructor(ctx: Table_name_createContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_table_name_create; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterTable_name_create) { - listener.enterTable_name_create(this); + if(listener.enterTableNameCreate) { + listener.enterTableNameCreate(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitTable_name_create) { - listener.exitTable_name_create(this); + if(listener.exitTableNameCreate) { + listener.exitTableNameCreate(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitTable_name_create) { - return visitor.visitTable_name_create(this); + if (visitor.visitTableNameCreate) { + return visitor.visitTableNameCreate(this); } else { return visitor.visitChildren(this); } @@ -108453,28 +106208,37 @@ export class Table_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_table_name; + } + public override copyFrom(ctx: Table_nameContext): void { + super.copyFrom(ctx); + } +} +export class TableNameContext extends Table_nameContext { + public constructor(ctx: Table_nameContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_table_name; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterTable_name) { - listener.enterTable_name(this); + if(listener.enterTableName) { + listener.enterTableName(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitTable_name) { - listener.exitTable_name(this); + if(listener.exitTableName) { + listener.exitTableName(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitTable_name) { - return visitor.visitTable_name(this); + if (visitor.visitTableName) { + return visitor.visitTableName(this); } else { return visitor.visitChildren(this); } @@ -108486,28 +106250,37 @@ export class View_name_createContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_view_name_create; + } + public override copyFrom(ctx: View_name_createContext): void { + super.copyFrom(ctx); + } +} +export class ViewNameCreateContext extends View_name_createContext { + public constructor(ctx: View_name_createContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_view_name_create; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterView_name_create) { - listener.enterView_name_create(this); + if(listener.enterViewNameCreate) { + listener.enterViewNameCreate(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitView_name_create) { - listener.exitView_name_create(this); + if(listener.exitViewNameCreate) { + listener.exitViewNameCreate(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitView_name_create) { - return visitor.visitView_name_create(this); + if (visitor.visitViewNameCreate) { + return visitor.visitViewNameCreate(this); } else { return visitor.visitChildren(this); } @@ -108519,28 +106292,37 @@ export class View_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_view_name; + } + public override copyFrom(ctx: View_nameContext): void { + super.copyFrom(ctx); + } +} +export class ViewNameContext extends View_nameContext { + public constructor(ctx: View_nameContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } public attrs(): AttrsContext | null { return this.getRuleContext(0, AttrsContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_view_name; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterView_name) { - listener.enterView_name(this); + if(listener.enterViewName) { + listener.enterViewName(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitView_name) { - listener.exitView_name(this); + if(listener.exitViewName) { + listener.exitViewName(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitView_name) { - return visitor.visitView_name(this); + if (visitor.visitViewName) { + return visitor.visitViewName(this); } else { return visitor.visitChildren(this); } @@ -108675,28 +106457,37 @@ export class Database_name_createContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_database_name_create; + } + public override copyFrom(ctx: Database_name_createContext): void { + super.copyFrom(ctx); + } +} +export class DatabaseNameCreateContext extends Database_name_createContext { + public constructor(ctx: Database_name_createContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } public attrs(): AttrsContext | null { return this.getRuleContext(0, AttrsContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_database_name_create; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterDatabase_name_create) { - listener.enterDatabase_name_create(this); + if(listener.enterDatabaseNameCreate) { + listener.enterDatabaseNameCreate(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitDatabase_name_create) { - listener.exitDatabase_name_create(this); + if(listener.exitDatabaseNameCreate) { + listener.exitDatabaseNameCreate(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitDatabase_name_create) { - return visitor.visitDatabase_name_create(this); + if (visitor.visitDatabaseNameCreate) { + return visitor.visitDatabaseNameCreate(this); } else { return visitor.visitChildren(this); } @@ -108708,28 +106499,37 @@ export class Database_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_database_name; + } + public override copyFrom(ctx: Database_nameContext): void { + super.copyFrom(ctx); + } +} +export class DatabaseNameContext extends Database_nameContext { + public constructor(ctx: Database_nameContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } public attrs(): AttrsContext | null { return this.getRuleContext(0, AttrsContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_database_name; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterDatabase_name) { - listener.enterDatabase_name(this); + if(listener.enterDatabaseName) { + listener.enterDatabaseName(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitDatabase_name) { - listener.exitDatabase_name(this); + if(listener.exitDatabaseName) { + listener.exitDatabaseName(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitDatabase_name) { - return visitor.visitDatabase_name(this); + if (visitor.visitDatabaseName) { + return visitor.visitDatabaseName(this); } else { return visitor.visitChildren(this); } @@ -108741,28 +106541,37 @@ export class Schema_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_schema_name; + } + public override copyFrom(ctx: Schema_nameContext): void { + super.copyFrom(ctx); + } +} +export class SchemaNameContext extends Schema_nameContext { + public constructor(ctx: Schema_nameContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } public attrs(): AttrsContext | null { return this.getRuleContext(0, AttrsContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_schema_name; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterSchema_name) { - listener.enterSchema_name(this); + if(listener.enterSchemaName) { + listener.enterSchemaName(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitSchema_name) { - listener.exitSchema_name(this); + if(listener.exitSchemaName) { + listener.exitSchemaName(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitSchema_name) { - return visitor.visitSchema_name(this); + if (visitor.visitSchemaName) { + return visitor.visitSchemaName(this); } else { return visitor.visitChildren(this); } @@ -108774,25 +106583,34 @@ export class Routine_name_createContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; - } public override get ruleIndex(): number { return PostgreSQLParser.RULE_routine_name_create; } + public override copyFrom(ctx: Routine_name_createContext): void { + super.copyFrom(ctx); + } +} +export class RoutineNameCreateContext extends Routine_name_createContext { + public constructor(ctx: Routine_name_createContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public colid(): ColidContext { + return this.getRuleContext(0, ColidContext)!; + } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterRoutine_name_create) { - listener.enterRoutine_name_create(this); + if(listener.enterRoutineNameCreate) { + listener.enterRoutineNameCreate(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitRoutine_name_create) { - listener.exitRoutine_name_create(this); + if(listener.exitRoutineNameCreate) { + listener.exitRoutineNameCreate(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitRoutine_name_create) { - return visitor.visitRoutine_name_create(this); + if (visitor.visitRoutineNameCreate) { + return visitor.visitRoutineNameCreate(this); } else { return visitor.visitChildren(this); } @@ -108804,25 +106622,34 @@ export class Routine_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; - } public override get ruleIndex(): number { return PostgreSQLParser.RULE_routine_name; } + public override copyFrom(ctx: Routine_nameContext): void { + super.copyFrom(ctx); + } +} +export class RoutineNameContext extends Routine_nameContext { + public constructor(ctx: Routine_nameContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public colid(): ColidContext { + return this.getRuleContext(0, ColidContext)!; + } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterRoutine_name) { - listener.enterRoutine_name(this); + if(listener.enterRoutineName) { + listener.enterRoutineName(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitRoutine_name) { - listener.exitRoutine_name(this); + if(listener.exitRoutineName) { + listener.exitRoutineName(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitRoutine_name) { - return visitor.visitRoutine_name(this); + if (visitor.visitRoutineName) { + return visitor.visitRoutineName(this); } else { return visitor.visitChildren(this); } @@ -108834,6 +106661,18 @@ export class Procedure_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_procedure_name; + } + public override copyFrom(ctx: Procedure_nameContext): void { + super.copyFrom(ctx); + } +} +export class ProcedureNameContext extends Procedure_nameContext { + public constructor(ctx: Procedure_nameContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public type_function_name(): Type_function_nameContext | null { return this.getRuleContext(0, Type_function_nameContext); } @@ -108843,22 +106682,19 @@ export class Procedure_nameContext extends antlr.ParserRuleContext { public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_procedure_name; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterProcedure_name) { - listener.enterProcedure_name(this); + if(listener.enterProcedureName) { + listener.enterProcedureName(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitProcedure_name) { - listener.exitProcedure_name(this); + if(listener.exitProcedureName) { + listener.exitProcedureName(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitProcedure_name) { - return visitor.visitProcedure_name(this); + if (visitor.visitProcedureName) { + return visitor.visitProcedureName(this); } else { return visitor.visitChildren(this); } @@ -108870,6 +106706,18 @@ export class Procedure_name_createContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_procedure_name_create; + } + public override copyFrom(ctx: Procedure_name_createContext): void { + super.copyFrom(ctx); + } +} +export class ProcedureNameCreateContext extends Procedure_name_createContext { + public constructor(ctx: Procedure_name_createContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public type_function_name(): Type_function_nameContext | null { return this.getRuleContext(0, Type_function_nameContext); } @@ -108879,22 +106727,19 @@ export class Procedure_name_createContext extends antlr.ParserRuleContext { public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_procedure_name_create; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterProcedure_name_create) { - listener.enterProcedure_name_create(this); + if(listener.enterProcedureNameCreate) { + listener.enterProcedureNameCreate(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitProcedure_name_create) { - listener.exitProcedure_name_create(this); + if(listener.exitProcedureNameCreate) { + listener.exitProcedureNameCreate(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitProcedure_name_create) { - return visitor.visitProcedure_name_create(this); + if (visitor.visitProcedureNameCreate) { + return visitor.visitProcedureNameCreate(this); } else { return visitor.visitChildren(this); } @@ -108906,6 +106751,41 @@ export class Column_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_column_name; + } + public override copyFrom(ctx: Column_nameContext): void { + super.copyFrom(ctx); + } +} +export class ColumnNameMatchContext extends Column_nameContext { + public constructor(ctx: Column_nameContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public override enterRule(listener: PostgreSQLParserListener): void { + if(listener.enterColumnNameMatch) { + listener.enterColumnNameMatch(this); + } + } + public override exitRule(listener: PostgreSQLParserListener): void { + if(listener.exitColumnNameMatch) { + listener.exitColumnNameMatch(this); + } + } + public override accept(visitor: PostgreSQLParserVisitor): Result | null { + if (visitor.visitColumnNameMatch) { + return visitor.visitColumnNameMatch(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ColumnNameContext extends Column_nameContext { + public constructor(ctx: Column_nameContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } @@ -108918,22 +106798,19 @@ export class Column_nameContext extends antlr.ParserRuleContext { return this.getRuleContext(i, Indirection_elContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_column_name; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterColumn_name) { - listener.enterColumn_name(this); + if(listener.enterColumnName) { + listener.enterColumnName(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitColumn_name) { - listener.exitColumn_name(this); + if(listener.exitColumnName) { + listener.exitColumnName(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitColumn_name) { - return visitor.visitColumn_name(this); + if (visitor.visitColumnName) { + return visitor.visitColumnName(this); } else { return visitor.visitChildren(this); } @@ -108945,25 +106822,34 @@ export class Column_name_createContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; - } public override get ruleIndex(): number { return PostgreSQLParser.RULE_column_name_create; } + public override copyFrom(ctx: Column_name_createContext): void { + super.copyFrom(ctx); + } +} +export class ColumnNameCreateContext extends Column_name_createContext { + public constructor(ctx: Column_name_createContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public colid(): ColidContext { + return this.getRuleContext(0, ColidContext)!; + } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterColumn_name_create) { - listener.enterColumn_name_create(this); + if(listener.enterColumnNameCreate) { + listener.enterColumnNameCreate(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitColumn_name_create) { - listener.exitColumn_name_create(this); + if(listener.exitColumnNameCreate) { + listener.exitColumnNameCreate(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitColumn_name_create) { - return visitor.visitColumn_name_create(this); + if (visitor.visitColumnNameCreate) { + return visitor.visitColumnNameCreate(this); } else { return visitor.visitChildren(this); } @@ -109065,6 +106951,18 @@ export class Function_name_createContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_function_name_create; + } + public override copyFrom(ctx: Function_name_createContext): void { + super.copyFrom(ctx); + } +} +export class FunctionNameCreateContext extends Function_name_createContext { + public constructor(ctx: Function_name_createContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public type_function_name(): Type_function_nameContext | null { return this.getRuleContext(0, Type_function_nameContext); } @@ -109074,22 +106972,19 @@ export class Function_name_createContext extends antlr.ParserRuleContext { public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_function_name_create; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterFunction_name_create) { - listener.enterFunction_name_create(this); + if(listener.enterFunctionNameCreate) { + listener.enterFunctionNameCreate(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitFunction_name_create) { - listener.exitFunction_name_create(this); + if(listener.exitFunctionNameCreate) { + listener.exitFunctionNameCreate(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitFunction_name_create) { - return visitor.visitFunction_name_create(this); + if (visitor.visitFunctionNameCreate) { + return visitor.visitFunctionNameCreate(this); } else { return visitor.visitChildren(this); } @@ -109101,6 +106996,18 @@ export class Function_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSQLParser.RULE_function_name; + } + public override copyFrom(ctx: Function_nameContext): void { + super.copyFrom(ctx); + } +} +export class FunctionNameContext extends Function_nameContext { + public constructor(ctx: Function_nameContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public type_function_name(): Type_function_nameContext | null { return this.getRuleContext(0, Type_function_nameContext); } @@ -109110,22 +107017,19 @@ export class Function_nameContext extends antlr.ParserRuleContext { public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_function_name; - } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterFunction_name) { - listener.enterFunction_name(this); + if(listener.enterFunctionName) { + listener.enterFunctionName(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitFunction_name) { - listener.exitFunction_name(this); + if(listener.exitFunctionName) { + listener.exitFunctionName(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitFunction_name) { - return visitor.visitFunction_name(this); + if (visitor.visitFunctionName) { + return visitor.visitFunctionName(this); } else { return visitor.visitChildren(this); } @@ -115315,8 +113219,8 @@ export class Merge_insertContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public column_list(): Column_listContext | null { + return this.getRuleContext(0, Column_listContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0); @@ -115402,14 +113306,14 @@ export class Merge_updateContext extends antlr.ParserRuleContext { return this.getToken(PostgreSQLParser.OPEN_PAREN, i); } } - public columnlist(): ColumnlistContext[]; - public columnlist(i: number): ColumnlistContext | null; - public columnlist(i?: number): ColumnlistContext[] | ColumnlistContext | null { + public column_list(): Column_listContext[]; + public column_list(i: number): Column_listContext | null; + public column_list(i?: number): Column_listContext[] | Column_listContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnlistContext); + return this.getRuleContexts(Column_listContext); } - return this.getRuleContext(i, ColumnlistContext); + return this.getRuleContext(i, Column_listContext); } public CLOSE_PAREN(): antlr.TerminalNode[]; public CLOSE_PAREN(i: number): antlr.TerminalNode | null; diff --git a/src/lib/pgsql/PostgreSQLParserListener.ts b/src/lib/pgsql/PostgreSQLParserListener.ts index 99ba2e3..e989b94 100644 --- a/src/lib/pgsql/PostgreSQLParserListener.ts +++ b/src/lib/pgsql/PostgreSQLParserListener.ts @@ -3,6 +3,9 @@ import { ErrorNode, ParseTreeListener, ParserRuleContext, TerminalNode } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./PostgreSQLParser.js"; import { PlsqlrootContext } from "./PostgreSQLParser.js"; import { SingleStmtContext } from "./PostgreSQLParser.js"; @@ -27,7 +30,7 @@ import { CreategroupstmtContext } from "./PostgreSQLParser.js"; import { AltergroupstmtContext } from "./PostgreSQLParser.js"; import { Add_dropContext } from "./PostgreSQLParser.js"; import { CreateschemastmtContext } from "./PostgreSQLParser.js"; -import { Schema_name_createContext } from "./PostgreSQLParser.js"; +import { SchemaNameCreateContext } from "./PostgreSQLParser.js"; import { OptschemaeltlistContext } from "./PostgreSQLParser.js"; import { Schema_stmtContext } from "./PostgreSQLParser.js"; import { VariablesetstmtContext } from "./PostgreSQLParser.js"; @@ -97,7 +100,7 @@ import { Copy_generic_opt_elemContext } from "./PostgreSQLParser.js"; import { Copy_generic_opt_argContext } from "./PostgreSQLParser.js"; import { Copy_generic_opt_arg_listContext } from "./PostgreSQLParser.js"; import { Copy_generic_opt_arg_list_itemContext } from "./PostgreSQLParser.js"; -import { CreatestmtContext } from "./PostgreSQLParser.js"; +import { ColumnCreateTableContext } from "./PostgreSQLParser.js"; import { OpttempContext } from "./PostgreSQLParser.js"; import { Table_column_listContext } from "./PostgreSQLParser.js"; import { OpttableelementlistContext } from "./PostgreSQLParser.js"; @@ -106,8 +109,7 @@ import { TableelementlistContext } from "./PostgreSQLParser.js"; import { TypedtableelementlistContext } from "./PostgreSQLParser.js"; import { TableelementContext } from "./PostgreSQLParser.js"; import { TypedtableelementContext } from "./PostgreSQLParser.js"; -import { ColumnDefCluaseContext } from "./PostgreSQLParser.js"; -import { ColumnDefContext } from "./PostgreSQLParser.js"; +import { Column_defContext } from "./PostgreSQLParser.js"; import { CompressionCluaseContext } from "./PostgreSQLParser.js"; import { StorageCluaseContext } from "./PostgreSQLParser.js"; import { ColumnOptionsContext } from "./PostgreSQLParser.js"; @@ -125,7 +127,9 @@ import { TableconstraintContext } from "./PostgreSQLParser.js"; import { ConstraintelemContext } from "./PostgreSQLParser.js"; import { Opt_no_inheritContext } from "./PostgreSQLParser.js"; import { Opt_column_listContext } from "./PostgreSQLParser.js"; -import { ColumnlistContext } from "./PostgreSQLParser.js"; +import { Opt_column_list_createContext } from "./PostgreSQLParser.js"; +import { Column_listContext } from "./PostgreSQLParser.js"; +import { Column_list_createContext } from "./PostgreSQLParser.js"; import { Opt_c_includeContext } from "./PostgreSQLParser.js"; import { Key_matchContext } from "./PostgreSQLParser.js"; import { ExclusionconstraintlistContext } from "./PostgreSQLParser.js"; @@ -149,10 +153,10 @@ import { OptconstablespaceContext } from "./PostgreSQLParser.js"; import { ExistingindexContext } from "./PostgreSQLParser.js"; import { CreatestatsstmtContext } from "./PostgreSQLParser.js"; import { AlterstatsstmtContext } from "./PostgreSQLParser.js"; -import { CreateasstmtContext } from "./PostgreSQLParser.js"; +import { QueryCreateTableContext } from "./PostgreSQLParser.js"; import { Create_as_targetContext } from "./PostgreSQLParser.js"; import { Opt_with_dataContext } from "./PostgreSQLParser.js"; -import { CreatematviewstmtContext } from "./PostgreSQLParser.js"; +import { CreateMaterializedViewContext } from "./PostgreSQLParser.js"; import { Create_mv_targetContext } from "./PostgreSQLParser.js"; import { OptnologContext } from "./PostgreSQLParser.js"; import { RefreshmatviewstmtContext } from "./PostgreSQLParser.js"; @@ -199,7 +203,8 @@ import { Opt_typeContext } from "./PostgreSQLParser.js"; import { Foreign_server_versionContext } from "./PostgreSQLParser.js"; import { Opt_foreign_server_versionContext } from "./PostgreSQLParser.js"; import { AlterforeignserverstmtContext } from "./PostgreSQLParser.js"; -import { CreateforeigntablestmtContext } from "./PostgreSQLParser.js"; +import { CreateForeignTableContext } from "./PostgreSQLParser.js"; +import { CreatePartitionForeignTableContext } from "./PostgreSQLParser.js"; import { ImportforeignschemastmtContext } from "./PostgreSQLParser.js"; import { Import_qualification_typeContext } from "./PostgreSQLParser.js"; import { Import_qualificationContext } from "./PostgreSQLParser.js"; @@ -421,10 +426,10 @@ import { Transaction_mode_itemContext } from "./PostgreSQLParser.js"; import { Transaction_mode_listContext } from "./PostgreSQLParser.js"; import { Transaction_mode_list_or_emptyContext } from "./PostgreSQLParser.js"; import { Opt_transaction_chainContext } from "./PostgreSQLParser.js"; -import { ViewstmtContext } from "./PostgreSQLParser.js"; +import { CreateViewContext } from "./PostgreSQLParser.js"; import { Opt_check_optionContext } from "./PostgreSQLParser.js"; import { LoadstmtContext } from "./PostgreSQLParser.js"; -import { CreatedbstmtContext } from "./PostgreSQLParser.js"; +import { CreateDatabaseContext } from "./PostgreSQLParser.js"; import { Createdb_opt_listContext } from "./PostgreSQLParser.js"; import { Createdb_opt_itemsContext } from "./PostgreSQLParser.js"; import { Createdb_opt_itemContext } from "./PostgreSQLParser.js"; @@ -477,7 +482,7 @@ import { PreparablestmtContext } from "./PostgreSQLParser.js"; import { ExecutestmtContext } from "./PostgreSQLParser.js"; import { Execute_param_clauseContext } from "./PostgreSQLParser.js"; import { DeallocatestmtContext } from "./PostgreSQLParser.js"; -import { InsertstmtContext } from "./PostgreSQLParser.js"; +import { InsertStatementContext } from "./PostgreSQLParser.js"; import { Insert_targetContext } from "./PostgreSQLParser.js"; import { Insert_restContext } from "./PostgreSQLParser.js"; import { Override_kindContext } from "./PostgreSQLParser.js"; @@ -502,7 +507,7 @@ import { DeclarecursorstmtContext } from "./PostgreSQLParser.js"; import { Cursor_nameContext } from "./PostgreSQLParser.js"; import { Cursor_optionsContext } from "./PostgreSQLParser.js"; import { Opt_holdContext } from "./PostgreSQLParser.js"; -import { SelectstmtContext } from "./PostgreSQLParser.js"; +import { SelectStatementContext } from "./PostgreSQLParser.js"; import { Select_with_parensContext } from "./PostgreSQLParser.js"; import { Select_no_parensContext } from "./PostgreSQLParser.js"; import { Select_clauseContext } from "./PostgreSQLParser.js"; @@ -708,29 +713,30 @@ import { Table_name_listContext } from "./PostgreSQLParser.js"; import { Schema_name_listContext } from "./PostgreSQLParser.js"; import { Database_nameListContext } from "./PostgreSQLParser.js"; import { Procedure_name_listContext } from "./PostgreSQLParser.js"; -import { Tablespace_name_createContext } from "./PostgreSQLParser.js"; -import { Tablespace_nameContext } from "./PostgreSQLParser.js"; -import { Table_name_createContext } from "./PostgreSQLParser.js"; -import { Table_nameContext } from "./PostgreSQLParser.js"; -import { View_name_createContext } from "./PostgreSQLParser.js"; -import { View_nameContext } from "./PostgreSQLParser.js"; +import { TablespaceNameCreateContext } from "./PostgreSQLParser.js"; +import { TablespaceNameContext } from "./PostgreSQLParser.js"; +import { TableNameCreateContext } from "./PostgreSQLParser.js"; +import { TableNameContext } from "./PostgreSQLParser.js"; +import { ViewNameCreateContext } from "./PostgreSQLParser.js"; +import { ViewNameContext } from "./PostgreSQLParser.js"; import { Qualified_nameContext } from "./PostgreSQLParser.js"; import { Tablespace_name_listContext } from "./PostgreSQLParser.js"; import { Name_listContext } from "./PostgreSQLParser.js"; -import { Database_name_createContext } from "./PostgreSQLParser.js"; -import { Database_nameContext } from "./PostgreSQLParser.js"; -import { Schema_nameContext } from "./PostgreSQLParser.js"; -import { Routine_name_createContext } from "./PostgreSQLParser.js"; -import { Routine_nameContext } from "./PostgreSQLParser.js"; -import { Procedure_nameContext } from "./PostgreSQLParser.js"; -import { Procedure_name_createContext } from "./PostgreSQLParser.js"; -import { Column_nameContext } from "./PostgreSQLParser.js"; -import { Column_name_createContext } from "./PostgreSQLParser.js"; +import { DatabaseNameCreateContext } from "./PostgreSQLParser.js"; +import { DatabaseNameContext } from "./PostgreSQLParser.js"; +import { SchemaNameContext } from "./PostgreSQLParser.js"; +import { RoutineNameCreateContext } from "./PostgreSQLParser.js"; +import { RoutineNameContext } from "./PostgreSQLParser.js"; +import { ProcedureNameContext } from "./PostgreSQLParser.js"; +import { ProcedureNameCreateContext } from "./PostgreSQLParser.js"; +import { ColumnNameContext } from "./PostgreSQLParser.js"; +import { ColumnNameMatchContext } from "./PostgreSQLParser.js"; +import { ColumnNameCreateContext } from "./PostgreSQLParser.js"; import { NameContext } from "./PostgreSQLParser.js"; import { Attr_nameContext } from "./PostgreSQLParser.js"; import { File_nameContext } from "./PostgreSQLParser.js"; -import { Function_name_createContext } from "./PostgreSQLParser.js"; -import { Function_nameContext } from "./PostgreSQLParser.js"; +import { FunctionNameCreateContext } from "./PostgreSQLParser.js"; +import { FunctionNameContext } from "./PostgreSQLParser.js"; import { Usual_nameContext } from "./PostgreSQLParser.js"; import { AexprconstContext } from "./PostgreSQLParser.js"; import { XconstContext } from "./PostgreSQLParser.js"; @@ -1131,15 +1137,17 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitCreateschemastmt?: (ctx: CreateschemastmtContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.schema_name_create`. + * Enter a parse tree produced by the `schemaNameCreate` + * labeled alternative in `PostgreSQLParser.schema_name_create`. * @param ctx the parse tree */ - enterSchema_name_create?: (ctx: Schema_name_createContext) => void; + enterSchemaNameCreate?: (ctx: SchemaNameCreateContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.schema_name_create`. + * Exit a parse tree produced by the `schemaNameCreate` + * labeled alternative in `PostgreSQLParser.schema_name_create`. * @param ctx the parse tree */ - exitSchema_name_create?: (ctx: Schema_name_createContext) => void; + exitSchemaNameCreate?: (ctx: SchemaNameCreateContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.optschemaeltlist`. * @param ctx the parse tree @@ -1831,15 +1839,17 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitCopy_generic_opt_arg_list_item?: (ctx: Copy_generic_opt_arg_list_itemContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.createstmt`. + * Enter a parse tree produced by the `columnCreateTable` + * labeled alternative in `PostgreSQLParser.createstmt`. * @param ctx the parse tree */ - enterCreatestmt?: (ctx: CreatestmtContext) => void; + enterColumnCreateTable?: (ctx: ColumnCreateTableContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.createstmt`. + * Exit a parse tree produced by the `columnCreateTable` + * labeled alternative in `PostgreSQLParser.createstmt`. * @param ctx the parse tree */ - exitCreatestmt?: (ctx: CreatestmtContext) => void; + exitColumnCreateTable?: (ctx: ColumnCreateTableContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.opttemp`. * @param ctx the parse tree @@ -1921,25 +1931,15 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitTypedtableelement?: (ctx: TypedtableelementContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.columnDefCluase`. + * Enter a parse tree produced by `PostgreSQLParser.column_def`. * @param ctx the parse tree */ - enterColumnDefCluase?: (ctx: ColumnDefCluaseContext) => void; + enterColumn_def?: (ctx: Column_defContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.columnDefCluase`. + * Exit a parse tree produced by `PostgreSQLParser.column_def`. * @param ctx the parse tree */ - exitColumnDefCluase?: (ctx: ColumnDefCluaseContext) => void; - /** - * Enter a parse tree produced by `PostgreSQLParser.columnDef`. - * @param ctx the parse tree - */ - enterColumnDef?: (ctx: ColumnDefContext) => void; - /** - * Exit a parse tree produced by `PostgreSQLParser.columnDef`. - * @param ctx the parse tree - */ - exitColumnDef?: (ctx: ColumnDefContext) => void; + exitColumn_def?: (ctx: Column_defContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.compressionCluase`. * @param ctx the parse tree @@ -2111,15 +2111,35 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitOpt_column_list?: (ctx: Opt_column_listContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.columnlist`. + * Enter a parse tree produced by `PostgreSQLParser.opt_column_list_create`. * @param ctx the parse tree */ - enterColumnlist?: (ctx: ColumnlistContext) => void; + enterOpt_column_list_create?: (ctx: Opt_column_list_createContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.columnlist`. + * Exit a parse tree produced by `PostgreSQLParser.opt_column_list_create`. * @param ctx the parse tree */ - exitColumnlist?: (ctx: ColumnlistContext) => void; + exitOpt_column_list_create?: (ctx: Opt_column_list_createContext) => void; + /** + * Enter a parse tree produced by `PostgreSQLParser.column_list`. + * @param ctx the parse tree + */ + enterColumn_list?: (ctx: Column_listContext) => void; + /** + * Exit a parse tree produced by `PostgreSQLParser.column_list`. + * @param ctx the parse tree + */ + exitColumn_list?: (ctx: Column_listContext) => void; + /** + * Enter a parse tree produced by `PostgreSQLParser.column_list_create`. + * @param ctx the parse tree + */ + enterColumn_list_create?: (ctx: Column_list_createContext) => void; + /** + * Exit a parse tree produced by `PostgreSQLParser.column_list_create`. + * @param ctx the parse tree + */ + exitColumn_list_create?: (ctx: Column_list_createContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.opt_c_include`. * @param ctx the parse tree @@ -2351,15 +2371,17 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitAlterstatsstmt?: (ctx: AlterstatsstmtContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.createasstmt`. + * Enter a parse tree produced by the `queryCreateTable` + * labeled alternative in `PostgreSQLParser.createasstmt`. * @param ctx the parse tree */ - enterCreateasstmt?: (ctx: CreateasstmtContext) => void; + enterQueryCreateTable?: (ctx: QueryCreateTableContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.createasstmt`. + * Exit a parse tree produced by the `queryCreateTable` + * labeled alternative in `PostgreSQLParser.createasstmt`. * @param ctx the parse tree */ - exitCreateasstmt?: (ctx: CreateasstmtContext) => void; + exitQueryCreateTable?: (ctx: QueryCreateTableContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.create_as_target`. * @param ctx the parse tree @@ -2381,15 +2403,17 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitOpt_with_data?: (ctx: Opt_with_dataContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.creatematviewstmt`. + * Enter a parse tree produced by the `createMaterializedView` + * labeled alternative in `PostgreSQLParser.creatematviewstmt`. * @param ctx the parse tree */ - enterCreatematviewstmt?: (ctx: CreatematviewstmtContext) => void; + enterCreateMaterializedView?: (ctx: CreateMaterializedViewContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.creatematviewstmt`. + * Exit a parse tree produced by the `createMaterializedView` + * labeled alternative in `PostgreSQLParser.creatematviewstmt`. * @param ctx the parse tree */ - exitCreatematviewstmt?: (ctx: CreatematviewstmtContext) => void; + exitCreateMaterializedView?: (ctx: CreateMaterializedViewContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.create_mv_target`. * @param ctx the parse tree @@ -2851,15 +2875,29 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitAlterforeignserverstmt?: (ctx: AlterforeignserverstmtContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.createforeigntablestmt`. + * Enter a parse tree produced by the `createForeignTable` + * labeled alternative in `PostgreSQLParser.createforeigntablestmt`. * @param ctx the parse tree */ - enterCreateforeigntablestmt?: (ctx: CreateforeigntablestmtContext) => void; + enterCreateForeignTable?: (ctx: CreateForeignTableContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.createforeigntablestmt`. + * Exit a parse tree produced by the `createForeignTable` + * labeled alternative in `PostgreSQLParser.createforeigntablestmt`. * @param ctx the parse tree */ - exitCreateforeigntablestmt?: (ctx: CreateforeigntablestmtContext) => void; + exitCreateForeignTable?: (ctx: CreateForeignTableContext) => void; + /** + * Enter a parse tree produced by the `createPartitionForeignTable` + * labeled alternative in `PostgreSQLParser.createforeigntablestmt`. + * @param ctx the parse tree + */ + enterCreatePartitionForeignTable?: (ctx: CreatePartitionForeignTableContext) => void; + /** + * Exit a parse tree produced by the `createPartitionForeignTable` + * labeled alternative in `PostgreSQLParser.createforeigntablestmt`. + * @param ctx the parse tree + */ + exitCreatePartitionForeignTable?: (ctx: CreatePartitionForeignTableContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.importforeignschemastmt`. * @param ctx the parse tree @@ -5071,15 +5109,17 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitOpt_transaction_chain?: (ctx: Opt_transaction_chainContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.viewstmt`. + * Enter a parse tree produced by the `createView` + * labeled alternative in `PostgreSQLParser.viewstmt`. * @param ctx the parse tree */ - enterViewstmt?: (ctx: ViewstmtContext) => void; + enterCreateView?: (ctx: CreateViewContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.viewstmt`. + * Exit a parse tree produced by the `createView` + * labeled alternative in `PostgreSQLParser.viewstmt`. * @param ctx the parse tree */ - exitViewstmt?: (ctx: ViewstmtContext) => void; + exitCreateView?: (ctx: CreateViewContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.opt_check_option`. * @param ctx the parse tree @@ -5101,15 +5141,17 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitLoadstmt?: (ctx: LoadstmtContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.createdbstmt`. + * Enter a parse tree produced by the `createDatabase` + * labeled alternative in `PostgreSQLParser.createdbstmt`. * @param ctx the parse tree */ - enterCreatedbstmt?: (ctx: CreatedbstmtContext) => void; + enterCreateDatabase?: (ctx: CreateDatabaseContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.createdbstmt`. + * Exit a parse tree produced by the `createDatabase` + * labeled alternative in `PostgreSQLParser.createdbstmt`. * @param ctx the parse tree */ - exitCreatedbstmt?: (ctx: CreatedbstmtContext) => void; + exitCreateDatabase?: (ctx: CreateDatabaseContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.createdb_opt_list`. * @param ctx the parse tree @@ -5631,15 +5673,17 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitDeallocatestmt?: (ctx: DeallocatestmtContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.insertstmt`. + * Enter a parse tree produced by the `insertStatement` + * labeled alternative in `PostgreSQLParser.insertstmt`. * @param ctx the parse tree */ - enterInsertstmt?: (ctx: InsertstmtContext) => void; + enterInsertStatement?: (ctx: InsertStatementContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.insertstmt`. + * Exit a parse tree produced by the `insertStatement` + * labeled alternative in `PostgreSQLParser.insertstmt`. * @param ctx the parse tree */ - exitInsertstmt?: (ctx: InsertstmtContext) => void; + exitInsertStatement?: (ctx: InsertStatementContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.insert_target`. * @param ctx the parse tree @@ -5881,15 +5925,17 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitOpt_hold?: (ctx: Opt_holdContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.selectstmt`. + * Enter a parse tree produced by the `selectStatement` + * labeled alternative in `PostgreSQLParser.selectstmt`. * @param ctx the parse tree */ - enterSelectstmt?: (ctx: SelectstmtContext) => void; + enterSelectStatement?: (ctx: SelectStatementContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.selectstmt`. + * Exit a parse tree produced by the `selectStatement` + * labeled alternative in `PostgreSQLParser.selectstmt`. * @param ctx the parse tree */ - exitSelectstmt?: (ctx: SelectstmtContext) => void; + exitSelectStatement?: (ctx: SelectStatementContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.select_with_parens`. * @param ctx the parse tree @@ -7961,65 +8007,77 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitProcedure_name_list?: (ctx: Procedure_name_listContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.tablespace_name_create`. + * Enter a parse tree produced by the `tablespaceNameCreate` + * labeled alternative in `PostgreSQLParser.tablespace_name_create`. * @param ctx the parse tree */ - enterTablespace_name_create?: (ctx: Tablespace_name_createContext) => void; + enterTablespaceNameCreate?: (ctx: TablespaceNameCreateContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.tablespace_name_create`. + * Exit a parse tree produced by the `tablespaceNameCreate` + * labeled alternative in `PostgreSQLParser.tablespace_name_create`. * @param ctx the parse tree */ - exitTablespace_name_create?: (ctx: Tablespace_name_createContext) => void; + exitTablespaceNameCreate?: (ctx: TablespaceNameCreateContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.tablespace_name`. + * Enter a parse tree produced by the `tablespaceName` + * labeled alternative in `PostgreSQLParser.tablespace_name`. * @param ctx the parse tree */ - enterTablespace_name?: (ctx: Tablespace_nameContext) => void; + enterTablespaceName?: (ctx: TablespaceNameContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.tablespace_name`. + * Exit a parse tree produced by the `tablespaceName` + * labeled alternative in `PostgreSQLParser.tablespace_name`. * @param ctx the parse tree */ - exitTablespace_name?: (ctx: Tablespace_nameContext) => void; + exitTablespaceName?: (ctx: TablespaceNameContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.table_name_create`. + * Enter a parse tree produced by the `tableNameCreate` + * labeled alternative in `PostgreSQLParser.table_name_create`. * @param ctx the parse tree */ - enterTable_name_create?: (ctx: Table_name_createContext) => void; + enterTableNameCreate?: (ctx: TableNameCreateContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.table_name_create`. + * Exit a parse tree produced by the `tableNameCreate` + * labeled alternative in `PostgreSQLParser.table_name_create`. * @param ctx the parse tree */ - exitTable_name_create?: (ctx: Table_name_createContext) => void; + exitTableNameCreate?: (ctx: TableNameCreateContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.table_name`. + * Enter a parse tree produced by the `tableName` + * labeled alternative in `PostgreSQLParser.table_name`. * @param ctx the parse tree */ - enterTable_name?: (ctx: Table_nameContext) => void; + enterTableName?: (ctx: TableNameContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.table_name`. + * Exit a parse tree produced by the `tableName` + * labeled alternative in `PostgreSQLParser.table_name`. * @param ctx the parse tree */ - exitTable_name?: (ctx: Table_nameContext) => void; + exitTableName?: (ctx: TableNameContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.view_name_create`. + * Enter a parse tree produced by the `viewNameCreate` + * labeled alternative in `PostgreSQLParser.view_name_create`. * @param ctx the parse tree */ - enterView_name_create?: (ctx: View_name_createContext) => void; + enterViewNameCreate?: (ctx: ViewNameCreateContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.view_name_create`. + * Exit a parse tree produced by the `viewNameCreate` + * labeled alternative in `PostgreSQLParser.view_name_create`. * @param ctx the parse tree */ - exitView_name_create?: (ctx: View_name_createContext) => void; + exitViewNameCreate?: (ctx: ViewNameCreateContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.view_name`. + * Enter a parse tree produced by the `viewName` + * labeled alternative in `PostgreSQLParser.view_name`. * @param ctx the parse tree */ - enterView_name?: (ctx: View_nameContext) => void; + enterViewName?: (ctx: ViewNameContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.view_name`. + * Exit a parse tree produced by the `viewName` + * labeled alternative in `PostgreSQLParser.view_name`. * @param ctx the parse tree */ - exitView_name?: (ctx: View_nameContext) => void; + exitViewName?: (ctx: ViewNameContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.qualified_name`. * @param ctx the parse tree @@ -8051,95 +8109,125 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitName_list?: (ctx: Name_listContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.database_name_create`. + * Enter a parse tree produced by the `databaseNameCreate` + * labeled alternative in `PostgreSQLParser.database_name_create`. * @param ctx the parse tree */ - enterDatabase_name_create?: (ctx: Database_name_createContext) => void; + enterDatabaseNameCreate?: (ctx: DatabaseNameCreateContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.database_name_create`. + * Exit a parse tree produced by the `databaseNameCreate` + * labeled alternative in `PostgreSQLParser.database_name_create`. * @param ctx the parse tree */ - exitDatabase_name_create?: (ctx: Database_name_createContext) => void; + exitDatabaseNameCreate?: (ctx: DatabaseNameCreateContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.database_name`. + * Enter a parse tree produced by the `databaseName` + * labeled alternative in `PostgreSQLParser.database_name`. * @param ctx the parse tree */ - enterDatabase_name?: (ctx: Database_nameContext) => void; + enterDatabaseName?: (ctx: DatabaseNameContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.database_name`. + * Exit a parse tree produced by the `databaseName` + * labeled alternative in `PostgreSQLParser.database_name`. * @param ctx the parse tree */ - exitDatabase_name?: (ctx: Database_nameContext) => void; + exitDatabaseName?: (ctx: DatabaseNameContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.schema_name`. + * Enter a parse tree produced by the `schemaName` + * labeled alternative in `PostgreSQLParser.schema_name`. * @param ctx the parse tree */ - enterSchema_name?: (ctx: Schema_nameContext) => void; + enterSchemaName?: (ctx: SchemaNameContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.schema_name`. + * Exit a parse tree produced by the `schemaName` + * labeled alternative in `PostgreSQLParser.schema_name`. * @param ctx the parse tree */ - exitSchema_name?: (ctx: Schema_nameContext) => void; + exitSchemaName?: (ctx: SchemaNameContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.routine_name_create`. + * Enter a parse tree produced by the `routineNameCreate` + * labeled alternative in `PostgreSQLParser.routine_name_create`. * @param ctx the parse tree */ - enterRoutine_name_create?: (ctx: Routine_name_createContext) => void; + enterRoutineNameCreate?: (ctx: RoutineNameCreateContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.routine_name_create`. + * Exit a parse tree produced by the `routineNameCreate` + * labeled alternative in `PostgreSQLParser.routine_name_create`. * @param ctx the parse tree */ - exitRoutine_name_create?: (ctx: Routine_name_createContext) => void; + exitRoutineNameCreate?: (ctx: RoutineNameCreateContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.routine_name`. + * Enter a parse tree produced by the `routineName` + * labeled alternative in `PostgreSQLParser.routine_name`. * @param ctx the parse tree */ - enterRoutine_name?: (ctx: Routine_nameContext) => void; + enterRoutineName?: (ctx: RoutineNameContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.routine_name`. + * Exit a parse tree produced by the `routineName` + * labeled alternative in `PostgreSQLParser.routine_name`. * @param ctx the parse tree */ - exitRoutine_name?: (ctx: Routine_nameContext) => void; + exitRoutineName?: (ctx: RoutineNameContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.procedure_name`. + * Enter a parse tree produced by the `procedureName` + * labeled alternative in `PostgreSQLParser.procedure_name`. * @param ctx the parse tree */ - enterProcedure_name?: (ctx: Procedure_nameContext) => void; + enterProcedureName?: (ctx: ProcedureNameContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.procedure_name`. + * Exit a parse tree produced by the `procedureName` + * labeled alternative in `PostgreSQLParser.procedure_name`. * @param ctx the parse tree */ - exitProcedure_name?: (ctx: Procedure_nameContext) => void; + exitProcedureName?: (ctx: ProcedureNameContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.procedure_name_create`. + * Enter a parse tree produced by the `procedureNameCreate` + * labeled alternative in `PostgreSQLParser.procedure_name_create`. * @param ctx the parse tree */ - enterProcedure_name_create?: (ctx: Procedure_name_createContext) => void; + enterProcedureNameCreate?: (ctx: ProcedureNameCreateContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.procedure_name_create`. + * Exit a parse tree produced by the `procedureNameCreate` + * labeled alternative in `PostgreSQLParser.procedure_name_create`. * @param ctx the parse tree */ - exitProcedure_name_create?: (ctx: Procedure_name_createContext) => void; + exitProcedureNameCreate?: (ctx: ProcedureNameCreateContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.column_name`. + * Enter a parse tree produced by the `columnName` + * labeled alternative in `PostgreSQLParser.column_name`. * @param ctx the parse tree */ - enterColumn_name?: (ctx: Column_nameContext) => void; + enterColumnName?: (ctx: ColumnNameContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.column_name`. + * Exit a parse tree produced by the `columnName` + * labeled alternative in `PostgreSQLParser.column_name`. * @param ctx the parse tree */ - exitColumn_name?: (ctx: Column_nameContext) => void; + exitColumnName?: (ctx: ColumnNameContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.column_name_create`. + * Enter a parse tree produced by the `columnNameMatch` + * labeled alternative in `PostgreSQLParser.column_name`. * @param ctx the parse tree */ - enterColumn_name_create?: (ctx: Column_name_createContext) => void; + enterColumnNameMatch?: (ctx: ColumnNameMatchContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.column_name_create`. + * Exit a parse tree produced by the `columnNameMatch` + * labeled alternative in `PostgreSQLParser.column_name`. * @param ctx the parse tree */ - exitColumn_name_create?: (ctx: Column_name_createContext) => void; + exitColumnNameMatch?: (ctx: ColumnNameMatchContext) => void; + /** + * Enter a parse tree produced by the `columnNameCreate` + * labeled alternative in `PostgreSQLParser.column_name_create`. + * @param ctx the parse tree + */ + enterColumnNameCreate?: (ctx: ColumnNameCreateContext) => void; + /** + * Exit a parse tree produced by the `columnNameCreate` + * labeled alternative in `PostgreSQLParser.column_name_create`. + * @param ctx the parse tree + */ + exitColumnNameCreate?: (ctx: ColumnNameCreateContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.name`. * @param ctx the parse tree @@ -8171,25 +8259,29 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitFile_name?: (ctx: File_nameContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.function_name_create`. + * Enter a parse tree produced by the `functionNameCreate` + * labeled alternative in `PostgreSQLParser.function_name_create`. * @param ctx the parse tree */ - enterFunction_name_create?: (ctx: Function_name_createContext) => void; + enterFunctionNameCreate?: (ctx: FunctionNameCreateContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.function_name_create`. + * Exit a parse tree produced by the `functionNameCreate` + * labeled alternative in `PostgreSQLParser.function_name_create`. * @param ctx the parse tree */ - exitFunction_name_create?: (ctx: Function_name_createContext) => void; + exitFunctionNameCreate?: (ctx: FunctionNameCreateContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.function_name`. + * Enter a parse tree produced by the `functionName` + * labeled alternative in `PostgreSQLParser.function_name`. * @param ctx the parse tree */ - enterFunction_name?: (ctx: Function_nameContext) => void; + enterFunctionName?: (ctx: FunctionNameContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.function_name`. + * Exit a parse tree produced by the `functionName` + * labeled alternative in `PostgreSQLParser.function_name`. * @param ctx the parse tree */ - exitFunction_name?: (ctx: Function_nameContext) => void; + exitFunctionName?: (ctx: FunctionNameContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.usual_name`. * @param ctx the parse tree diff --git a/src/lib/pgsql/PostgreSQLParserVisitor.ts b/src/lib/pgsql/PostgreSQLParserVisitor.ts index 273a1be..944580b 100644 --- a/src/lib/pgsql/PostgreSQLParserVisitor.ts +++ b/src/lib/pgsql/PostgreSQLParserVisitor.ts @@ -3,6 +3,9 @@ import { AbstractParseTreeVisitor } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./PostgreSQLParser.js"; import { PlsqlrootContext } from "./PostgreSQLParser.js"; import { SingleStmtContext } from "./PostgreSQLParser.js"; @@ -27,7 +30,7 @@ import { CreategroupstmtContext } from "./PostgreSQLParser.js"; import { AltergroupstmtContext } from "./PostgreSQLParser.js"; import { Add_dropContext } from "./PostgreSQLParser.js"; import { CreateschemastmtContext } from "./PostgreSQLParser.js"; -import { Schema_name_createContext } from "./PostgreSQLParser.js"; +import { SchemaNameCreateContext } from "./PostgreSQLParser.js"; import { OptschemaeltlistContext } from "./PostgreSQLParser.js"; import { Schema_stmtContext } from "./PostgreSQLParser.js"; import { VariablesetstmtContext } from "./PostgreSQLParser.js"; @@ -97,7 +100,7 @@ import { Copy_generic_opt_elemContext } from "./PostgreSQLParser.js"; import { Copy_generic_opt_argContext } from "./PostgreSQLParser.js"; import { Copy_generic_opt_arg_listContext } from "./PostgreSQLParser.js"; import { Copy_generic_opt_arg_list_itemContext } from "./PostgreSQLParser.js"; -import { CreatestmtContext } from "./PostgreSQLParser.js"; +import { ColumnCreateTableContext } from "./PostgreSQLParser.js"; import { OpttempContext } from "./PostgreSQLParser.js"; import { Table_column_listContext } from "./PostgreSQLParser.js"; import { OpttableelementlistContext } from "./PostgreSQLParser.js"; @@ -106,8 +109,7 @@ import { TableelementlistContext } from "./PostgreSQLParser.js"; import { TypedtableelementlistContext } from "./PostgreSQLParser.js"; import { TableelementContext } from "./PostgreSQLParser.js"; import { TypedtableelementContext } from "./PostgreSQLParser.js"; -import { ColumnDefCluaseContext } from "./PostgreSQLParser.js"; -import { ColumnDefContext } from "./PostgreSQLParser.js"; +import { Column_defContext } from "./PostgreSQLParser.js"; import { CompressionCluaseContext } from "./PostgreSQLParser.js"; import { StorageCluaseContext } from "./PostgreSQLParser.js"; import { ColumnOptionsContext } from "./PostgreSQLParser.js"; @@ -125,7 +127,9 @@ import { TableconstraintContext } from "./PostgreSQLParser.js"; import { ConstraintelemContext } from "./PostgreSQLParser.js"; import { Opt_no_inheritContext } from "./PostgreSQLParser.js"; import { Opt_column_listContext } from "./PostgreSQLParser.js"; -import { ColumnlistContext } from "./PostgreSQLParser.js"; +import { Opt_column_list_createContext } from "./PostgreSQLParser.js"; +import { Column_listContext } from "./PostgreSQLParser.js"; +import { Column_list_createContext } from "./PostgreSQLParser.js"; import { Opt_c_includeContext } from "./PostgreSQLParser.js"; import { Key_matchContext } from "./PostgreSQLParser.js"; import { ExclusionconstraintlistContext } from "./PostgreSQLParser.js"; @@ -149,10 +153,10 @@ import { OptconstablespaceContext } from "./PostgreSQLParser.js"; import { ExistingindexContext } from "./PostgreSQLParser.js"; import { CreatestatsstmtContext } from "./PostgreSQLParser.js"; import { AlterstatsstmtContext } from "./PostgreSQLParser.js"; -import { CreateasstmtContext } from "./PostgreSQLParser.js"; +import { QueryCreateTableContext } from "./PostgreSQLParser.js"; import { Create_as_targetContext } from "./PostgreSQLParser.js"; import { Opt_with_dataContext } from "./PostgreSQLParser.js"; -import { CreatematviewstmtContext } from "./PostgreSQLParser.js"; +import { CreateMaterializedViewContext } from "./PostgreSQLParser.js"; import { Create_mv_targetContext } from "./PostgreSQLParser.js"; import { OptnologContext } from "./PostgreSQLParser.js"; import { RefreshmatviewstmtContext } from "./PostgreSQLParser.js"; @@ -199,7 +203,8 @@ import { Opt_typeContext } from "./PostgreSQLParser.js"; import { Foreign_server_versionContext } from "./PostgreSQLParser.js"; import { Opt_foreign_server_versionContext } from "./PostgreSQLParser.js"; import { AlterforeignserverstmtContext } from "./PostgreSQLParser.js"; -import { CreateforeigntablestmtContext } from "./PostgreSQLParser.js"; +import { CreateForeignTableContext } from "./PostgreSQLParser.js"; +import { CreatePartitionForeignTableContext } from "./PostgreSQLParser.js"; import { ImportforeignschemastmtContext } from "./PostgreSQLParser.js"; import { Import_qualification_typeContext } from "./PostgreSQLParser.js"; import { Import_qualificationContext } from "./PostgreSQLParser.js"; @@ -421,10 +426,10 @@ import { Transaction_mode_itemContext } from "./PostgreSQLParser.js"; import { Transaction_mode_listContext } from "./PostgreSQLParser.js"; import { Transaction_mode_list_or_emptyContext } from "./PostgreSQLParser.js"; import { Opt_transaction_chainContext } from "./PostgreSQLParser.js"; -import { ViewstmtContext } from "./PostgreSQLParser.js"; +import { CreateViewContext } from "./PostgreSQLParser.js"; import { Opt_check_optionContext } from "./PostgreSQLParser.js"; import { LoadstmtContext } from "./PostgreSQLParser.js"; -import { CreatedbstmtContext } from "./PostgreSQLParser.js"; +import { CreateDatabaseContext } from "./PostgreSQLParser.js"; import { Createdb_opt_listContext } from "./PostgreSQLParser.js"; import { Createdb_opt_itemsContext } from "./PostgreSQLParser.js"; import { Createdb_opt_itemContext } from "./PostgreSQLParser.js"; @@ -477,7 +482,7 @@ import { PreparablestmtContext } from "./PostgreSQLParser.js"; import { ExecutestmtContext } from "./PostgreSQLParser.js"; import { Execute_param_clauseContext } from "./PostgreSQLParser.js"; import { DeallocatestmtContext } from "./PostgreSQLParser.js"; -import { InsertstmtContext } from "./PostgreSQLParser.js"; +import { InsertStatementContext } from "./PostgreSQLParser.js"; import { Insert_targetContext } from "./PostgreSQLParser.js"; import { Insert_restContext } from "./PostgreSQLParser.js"; import { Override_kindContext } from "./PostgreSQLParser.js"; @@ -502,7 +507,7 @@ import { DeclarecursorstmtContext } from "./PostgreSQLParser.js"; import { Cursor_nameContext } from "./PostgreSQLParser.js"; import { Cursor_optionsContext } from "./PostgreSQLParser.js"; import { Opt_holdContext } from "./PostgreSQLParser.js"; -import { SelectstmtContext } from "./PostgreSQLParser.js"; +import { SelectStatementContext } from "./PostgreSQLParser.js"; import { Select_with_parensContext } from "./PostgreSQLParser.js"; import { Select_no_parensContext } from "./PostgreSQLParser.js"; import { Select_clauseContext } from "./PostgreSQLParser.js"; @@ -708,29 +713,30 @@ import { Table_name_listContext } from "./PostgreSQLParser.js"; import { Schema_name_listContext } from "./PostgreSQLParser.js"; import { Database_nameListContext } from "./PostgreSQLParser.js"; import { Procedure_name_listContext } from "./PostgreSQLParser.js"; -import { Tablespace_name_createContext } from "./PostgreSQLParser.js"; -import { Tablespace_nameContext } from "./PostgreSQLParser.js"; -import { Table_name_createContext } from "./PostgreSQLParser.js"; -import { Table_nameContext } from "./PostgreSQLParser.js"; -import { View_name_createContext } from "./PostgreSQLParser.js"; -import { View_nameContext } from "./PostgreSQLParser.js"; +import { TablespaceNameCreateContext } from "./PostgreSQLParser.js"; +import { TablespaceNameContext } from "./PostgreSQLParser.js"; +import { TableNameCreateContext } from "./PostgreSQLParser.js"; +import { TableNameContext } from "./PostgreSQLParser.js"; +import { ViewNameCreateContext } from "./PostgreSQLParser.js"; +import { ViewNameContext } from "./PostgreSQLParser.js"; import { Qualified_nameContext } from "./PostgreSQLParser.js"; import { Tablespace_name_listContext } from "./PostgreSQLParser.js"; import { Name_listContext } from "./PostgreSQLParser.js"; -import { Database_name_createContext } from "./PostgreSQLParser.js"; -import { Database_nameContext } from "./PostgreSQLParser.js"; -import { Schema_nameContext } from "./PostgreSQLParser.js"; -import { Routine_name_createContext } from "./PostgreSQLParser.js"; -import { Routine_nameContext } from "./PostgreSQLParser.js"; -import { Procedure_nameContext } from "./PostgreSQLParser.js"; -import { Procedure_name_createContext } from "./PostgreSQLParser.js"; -import { Column_nameContext } from "./PostgreSQLParser.js"; -import { Column_name_createContext } from "./PostgreSQLParser.js"; +import { DatabaseNameCreateContext } from "./PostgreSQLParser.js"; +import { DatabaseNameContext } from "./PostgreSQLParser.js"; +import { SchemaNameContext } from "./PostgreSQLParser.js"; +import { RoutineNameCreateContext } from "./PostgreSQLParser.js"; +import { RoutineNameContext } from "./PostgreSQLParser.js"; +import { ProcedureNameContext } from "./PostgreSQLParser.js"; +import { ProcedureNameCreateContext } from "./PostgreSQLParser.js"; +import { ColumnNameContext } from "./PostgreSQLParser.js"; +import { ColumnNameMatchContext } from "./PostgreSQLParser.js"; +import { ColumnNameCreateContext } from "./PostgreSQLParser.js"; import { NameContext } from "./PostgreSQLParser.js"; import { Attr_nameContext } from "./PostgreSQLParser.js"; import { File_nameContext } from "./PostgreSQLParser.js"; -import { Function_name_createContext } from "./PostgreSQLParser.js"; -import { Function_nameContext } from "./PostgreSQLParser.js"; +import { FunctionNameCreateContext } from "./PostgreSQLParser.js"; +import { FunctionNameContext } from "./PostgreSQLParser.js"; import { Usual_nameContext } from "./PostgreSQLParser.js"; import { AexprconstContext } from "./PostgreSQLParser.js"; import { XconstContext } from "./PostgreSQLParser.js"; @@ -1038,11 +1044,12 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.schema_name_create`. + * Visit a parse tree produced by the `schemaNameCreate` + * labeled alternative in `PostgreSQLParser.schema_name_create`. * @param ctx the parse tree * @return the visitor result */ - visitSchema_name_create?: (ctx: Schema_name_createContext) => Result; + visitSchemaNameCreate?: (ctx: SchemaNameCreateContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.optschemaeltlist`. * @param ctx the parse tree @@ -1458,11 +1465,12 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.createstmt`. + * Visit a parse tree produced by the `columnCreateTable` + * labeled alternative in `PostgreSQLParser.createstmt`. * @param ctx the parse tree * @return the visitor result */ - visitCreatestmt?: (ctx: CreatestmtContext) => Result; + visitColumnCreateTable?: (ctx: ColumnCreateTableContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.opttemp`. * @param ctx the parse tree @@ -1512,17 +1520,11 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.columnDefCluase`. + * Visit a parse tree produced by `PostgreSQLParser.column_def`. * @param ctx the parse tree * @return the visitor result */ - visitColumnDefCluase?: (ctx: ColumnDefCluaseContext) => Result; - /** - * Visit a parse tree produced by `PostgreSQLParser.columnDef`. - * @param ctx the parse tree - * @return the visitor result - */ - visitColumnDef?: (ctx: ColumnDefContext) => Result; + visitColumn_def?: (ctx: Column_defContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.compressionCluase`. * @param ctx the parse tree @@ -1626,11 +1628,23 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.columnlist`. + * Visit a parse tree produced by `PostgreSQLParser.opt_column_list_create`. * @param ctx the parse tree * @return the visitor result */ - visitColumnlist?: (ctx: ColumnlistContext) => Result; + visitOpt_column_list_create?: (ctx: Opt_column_list_createContext) => Result; + /** + * Visit a parse tree produced by `PostgreSQLParser.column_list`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumn_list?: (ctx: Column_listContext) => Result; + /** + * Visit a parse tree produced by `PostgreSQLParser.column_list_create`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumn_list_create?: (ctx: Column_list_createContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.opt_c_include`. * @param ctx the parse tree @@ -1770,11 +1784,12 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.createasstmt`. + * Visit a parse tree produced by the `queryCreateTable` + * labeled alternative in `PostgreSQLParser.createasstmt`. * @param ctx the parse tree * @return the visitor result */ - visitCreateasstmt?: (ctx: CreateasstmtContext) => Result; + visitQueryCreateTable?: (ctx: QueryCreateTableContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.create_as_target`. * @param ctx the parse tree @@ -1788,11 +1803,12 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.creatematviewstmt`. + * Visit a parse tree produced by the `createMaterializedView` + * labeled alternative in `PostgreSQLParser.creatematviewstmt`. * @param ctx the parse tree * @return the visitor result */ - visitCreatematviewstmt?: (ctx: CreatematviewstmtContext) => Result; + visitCreateMaterializedView?: (ctx: CreateMaterializedViewContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.create_mv_target`. * @param ctx the parse tree @@ -2070,11 +2086,19 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.createforeigntablestmt`. + * Visit a parse tree produced by the `createForeignTable` + * labeled alternative in `PostgreSQLParser.createforeigntablestmt`. * @param ctx the parse tree * @return the visitor result */ - visitCreateforeigntablestmt?: (ctx: CreateforeigntablestmtContext) => Result; + visitCreateForeignTable?: (ctx: CreateForeignTableContext) => Result; + /** + * Visit a parse tree produced by the `createPartitionForeignTable` + * labeled alternative in `PostgreSQLParser.createforeigntablestmt`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCreatePartitionForeignTable?: (ctx: CreatePartitionForeignTableContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.importforeignschemastmt`. * @param ctx the parse tree @@ -3402,11 +3426,12 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.viewstmt`. + * Visit a parse tree produced by the `createView` + * labeled alternative in `PostgreSQLParser.viewstmt`. * @param ctx the parse tree * @return the visitor result */ - visitViewstmt?: (ctx: ViewstmtContext) => Result; + visitCreateView?: (ctx: CreateViewContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.opt_check_option`. * @param ctx the parse tree @@ -3420,11 +3445,12 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.createdbstmt`. + * Visit a parse tree produced by the `createDatabase` + * labeled alternative in `PostgreSQLParser.createdbstmt`. * @param ctx the parse tree * @return the visitor result */ - visitCreatedbstmt?: (ctx: CreatedbstmtContext) => Result; + visitCreateDatabase?: (ctx: CreateDatabaseContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.createdb_opt_list`. * @param ctx the parse tree @@ -3738,11 +3764,12 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.insertstmt`. + * Visit a parse tree produced by the `insertStatement` + * labeled alternative in `PostgreSQLParser.insertstmt`. * @param ctx the parse tree * @return the visitor result */ - visitInsertstmt?: (ctx: InsertstmtContext) => Result; + visitInsertStatement?: (ctx: InsertStatementContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.insert_target`. * @param ctx the parse tree @@ -3888,11 +3915,12 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.selectstmt`. + * Visit a parse tree produced by the `selectStatement` + * labeled alternative in `PostgreSQLParser.selectstmt`. * @param ctx the parse tree * @return the visitor result */ - visitSelectstmt?: (ctx: SelectstmtContext) => Result; + visitSelectStatement?: (ctx: SelectStatementContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.select_with_parens`. * @param ctx the parse tree @@ -5134,41 +5162,47 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.tablespace_name_create`. + * Visit a parse tree produced by the `tablespaceNameCreate` + * labeled alternative in `PostgreSQLParser.tablespace_name_create`. * @param ctx the parse tree * @return the visitor result */ - visitTablespace_name_create?: (ctx: Tablespace_name_createContext) => Result; + visitTablespaceNameCreate?: (ctx: TablespaceNameCreateContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.tablespace_name`. + * Visit a parse tree produced by the `tablespaceName` + * labeled alternative in `PostgreSQLParser.tablespace_name`. * @param ctx the parse tree * @return the visitor result */ - visitTablespace_name?: (ctx: Tablespace_nameContext) => Result; + visitTablespaceName?: (ctx: TablespaceNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.table_name_create`. + * Visit a parse tree produced by the `tableNameCreate` + * labeled alternative in `PostgreSQLParser.table_name_create`. * @param ctx the parse tree * @return the visitor result */ - visitTable_name_create?: (ctx: Table_name_createContext) => Result; + visitTableNameCreate?: (ctx: TableNameCreateContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.table_name`. + * Visit a parse tree produced by the `tableName` + * labeled alternative in `PostgreSQLParser.table_name`. * @param ctx the parse tree * @return the visitor result */ - visitTable_name?: (ctx: Table_nameContext) => Result; + visitTableName?: (ctx: TableNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.view_name_create`. + * Visit a parse tree produced by the `viewNameCreate` + * labeled alternative in `PostgreSQLParser.view_name_create`. * @param ctx the parse tree * @return the visitor result */ - visitView_name_create?: (ctx: View_name_createContext) => Result; + visitViewNameCreate?: (ctx: ViewNameCreateContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.view_name`. + * Visit a parse tree produced by the `viewName` + * labeled alternative in `PostgreSQLParser.view_name`. * @param ctx the parse tree * @return the visitor result */ - visitView_name?: (ctx: View_nameContext) => Result; + visitViewName?: (ctx: ViewNameContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.qualified_name`. * @param ctx the parse tree @@ -5188,59 +5222,75 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.database_name_create`. + * Visit a parse tree produced by the `databaseNameCreate` + * labeled alternative in `PostgreSQLParser.database_name_create`. * @param ctx the parse tree * @return the visitor result */ - visitDatabase_name_create?: (ctx: Database_name_createContext) => Result; + visitDatabaseNameCreate?: (ctx: DatabaseNameCreateContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.database_name`. + * Visit a parse tree produced by the `databaseName` + * labeled alternative in `PostgreSQLParser.database_name`. * @param ctx the parse tree * @return the visitor result */ - visitDatabase_name?: (ctx: Database_nameContext) => Result; + visitDatabaseName?: (ctx: DatabaseNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.schema_name`. + * Visit a parse tree produced by the `schemaName` + * labeled alternative in `PostgreSQLParser.schema_name`. * @param ctx the parse tree * @return the visitor result */ - visitSchema_name?: (ctx: Schema_nameContext) => Result; + visitSchemaName?: (ctx: SchemaNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.routine_name_create`. + * Visit a parse tree produced by the `routineNameCreate` + * labeled alternative in `PostgreSQLParser.routine_name_create`. * @param ctx the parse tree * @return the visitor result */ - visitRoutine_name_create?: (ctx: Routine_name_createContext) => Result; + visitRoutineNameCreate?: (ctx: RoutineNameCreateContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.routine_name`. + * Visit a parse tree produced by the `routineName` + * labeled alternative in `PostgreSQLParser.routine_name`. * @param ctx the parse tree * @return the visitor result */ - visitRoutine_name?: (ctx: Routine_nameContext) => Result; + visitRoutineName?: (ctx: RoutineNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.procedure_name`. + * Visit a parse tree produced by the `procedureName` + * labeled alternative in `PostgreSQLParser.procedure_name`. * @param ctx the parse tree * @return the visitor result */ - visitProcedure_name?: (ctx: Procedure_nameContext) => Result; + visitProcedureName?: (ctx: ProcedureNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.procedure_name_create`. + * Visit a parse tree produced by the `procedureNameCreate` + * labeled alternative in `PostgreSQLParser.procedure_name_create`. * @param ctx the parse tree * @return the visitor result */ - visitProcedure_name_create?: (ctx: Procedure_name_createContext) => Result; + visitProcedureNameCreate?: (ctx: ProcedureNameCreateContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.column_name`. + * Visit a parse tree produced by the `columnName` + * labeled alternative in `PostgreSQLParser.column_name`. * @param ctx the parse tree * @return the visitor result */ - visitColumn_name?: (ctx: Column_nameContext) => Result; + visitColumnName?: (ctx: ColumnNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.column_name_create`. + * Visit a parse tree produced by the `columnNameMatch` + * labeled alternative in `PostgreSQLParser.column_name`. * @param ctx the parse tree * @return the visitor result */ - visitColumn_name_create?: (ctx: Column_name_createContext) => Result; + visitColumnNameMatch?: (ctx: ColumnNameMatchContext) => Result; + /** + * Visit a parse tree produced by the `columnNameCreate` + * labeled alternative in `PostgreSQLParser.column_name_create`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNameCreate?: (ctx: ColumnNameCreateContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.name`. * @param ctx the parse tree @@ -5260,17 +5310,19 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.function_name_create`. + * Visit a parse tree produced by the `functionNameCreate` + * labeled alternative in `PostgreSQLParser.function_name_create`. * @param ctx the parse tree * @return the visitor result */ - visitFunction_name_create?: (ctx: Function_name_createContext) => Result; + visitFunctionNameCreate?: (ctx: FunctionNameCreateContext) => Result; /** - * Visit a parse tree produced by `PostgreSQLParser.function_name`. + * Visit a parse tree produced by the `functionName` + * labeled alternative in `PostgreSQLParser.function_name`. * @param ctx the parse tree * @return the visitor result */ - visitFunction_name?: (ctx: Function_nameContext) => Result; + visitFunctionName?: (ctx: FunctionNameContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.usual_name`. * @param ctx the parse tree diff --git a/src/lib/plsql/PlSqlBaseParser.ts b/src/lib/plsql/PlSqlBaseParser.ts index 6afca81..e06d42d 100644 --- a/src/lib/plsql/PlSqlBaseParser.ts +++ b/src/lib/plsql/PlSqlBaseParser.ts @@ -1,5 +1,6 @@ -import { Parser, TokenStream } from "antlr4ng"; -export default abstract class PlSqlBaseParser extends Parser { +import { TokenStream } from "antlr4ng"; +import SQLParserBase from "../SQLParserBase"; +export default abstract class PlSqlBaseParser extends SQLParserBase { private _isVersion10: boolean = false; private _isVersion12: boolean = true; diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index 2828e9c..0e1f916 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -807,8 +807,8 @@ insertInto partitionSpecLocation partitionSpec partitionVal -dbSchema -dbSchemas +namespace +namespaces describeFuncName describeColName ctes @@ -828,8 +828,8 @@ fileFormat storageHandler resource dmlStatementNoWith -dbSchemaName -dbSchemaNameCreate +namespaceName +namespaceNameCreate tableNameCreate tableName viewNameCreate @@ -991,4 +991,4 @@ nonReserved atn: -[4, 1, 392, 3959, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 2, 1, 2, 3, 2, 413, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 426, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 431, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 439, 8, 2, 10, 2, 12, 2, 442, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 460, 8, 2, 1, 2, 1, 2, 3, 2, 464, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 470, 8, 2, 1, 2, 3, 2, 473, 8, 2, 1, 2, 3, 2, 476, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 483, 8, 2, 1, 2, 3, 2, 486, 8, 2, 1, 2, 1, 2, 3, 2, 490, 8, 2, 1, 2, 3, 2, 493, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 498, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 509, 8, 2, 10, 2, 12, 2, 512, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 519, 8, 2, 1, 2, 3, 2, 522, 8, 2, 1, 2, 1, 2, 3, 2, 526, 8, 2, 1, 2, 3, 2, 529, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 535, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 546, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 552, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 557, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 590, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 600, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 611, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 622, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 633, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 638, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 647, 8, 2, 1, 2, 1, 2, 3, 2, 651, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 657, 8, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 666, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 672, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 684, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 692, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 698, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 709, 8, 2, 1, 2, 1, 2, 3, 2, 713, 8, 2, 1, 2, 4, 2, 716, 8, 2, 11, 2, 12, 2, 717, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 733, 8, 2, 1, 2, 1, 2, 3, 2, 737, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 742, 8, 2, 10, 2, 12, 2, 745, 9, 2, 1, 2, 3, 2, 748, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 754, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 783, 8, 2, 1, 2, 1, 2, 3, 2, 787, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 792, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 799, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 805, 8, 2, 1, 2, 3, 2, 808, 8, 2, 1, 2, 3, 2, 811, 8, 2, 1, 2, 1, 2, 3, 2, 815, 8, 2, 1, 2, 1, 2, 3, 2, 819, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 827, 8, 2, 10, 2, 12, 2, 830, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 838, 8, 2, 1, 2, 3, 2, 841, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 850, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 855, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 861, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 868, 8, 2, 1, 2, 3, 2, 871, 8, 2, 1, 2, 1, 2, 3, 2, 875, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 884, 8, 2, 10, 2, 12, 2, 887, 9, 2, 3, 2, 889, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 895, 8, 2, 1, 2, 1, 2, 3, 2, 899, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 914, 8, 2, 10, 2, 12, 2, 917, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 924, 8, 2, 1, 2, 1, 2, 3, 2, 928, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 934, 8, 2, 1, 2, 3, 2, 937, 8, 2, 1, 2, 1, 2, 3, 2, 941, 8, 2, 1, 2, 3, 2, 944, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 950, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 955, 8, 2, 1, 2, 1, 2, 3, 2, 959, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 966, 8, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 3, 2, 972, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 979, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 984, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 993, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1001, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1007, 8, 2, 1, 2, 3, 2, 1010, 8, 2, 1, 2, 3, 2, 1013, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1019, 8, 2, 1, 2, 1, 2, 3, 2, 1023, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1028, 8, 2, 1, 2, 3, 2, 1031, 8, 2, 1, 2, 1, 2, 3, 2, 1035, 8, 2, 3, 2, 1037, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1045, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1053, 8, 2, 1, 2, 3, 2, 1056, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1063, 8, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 2, 3, 2, 1069, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1078, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1083, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1089, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1094, 8, 2, 1, 2, 3, 2, 1097, 8, 2, 1, 2, 1, 2, 3, 2, 1101, 8, 2, 1, 2, 3, 2, 1104, 8, 2, 1, 2, 1, 2, 3, 2, 1108, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1134, 8, 2, 10, 2, 12, 2, 1137, 9, 2, 3, 2, 1139, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1147, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1153, 8, 2, 1, 2, 3, 2, 1156, 8, 2, 1, 2, 3, 2, 1159, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1164, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1172, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1177, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1183, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1189, 8, 2, 1, 2, 3, 2, 1192, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1199, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1204, 8, 2, 10, 2, 12, 2, 1207, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1212, 8, 2, 10, 2, 12, 2, 1215, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1229, 8, 2, 10, 2, 12, 2, 1232, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1256, 8, 2, 10, 2, 12, 2, 1259, 9, 2, 3, 2, 1261, 8, 2, 1, 2, 1, 2, 5, 2, 1265, 8, 2, 10, 2, 12, 2, 1268, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1274, 8, 2, 10, 2, 12, 2, 1277, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1283, 8, 2, 10, 2, 12, 2, 1286, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1291, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1296, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1301, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1308, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1313, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1318, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1325, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1331, 8, 2, 10, 2, 12, 2, 1334, 9, 2, 3, 2, 1336, 8, 2, 1, 3, 1, 3, 3, 3, 1340, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1352, 8, 6, 1, 6, 1, 6, 3, 6, 1356, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1363, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1479, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1487, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1495, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1504, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1514, 8, 6, 1, 7, 1, 7, 3, 7, 1518, 8, 7, 1, 7, 3, 7, 1521, 8, 7, 1, 7, 1, 7, 3, 7, 1525, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1531, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1543, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1555, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1560, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1569, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1577, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1582, 8, 14, 3, 14, 1584, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1592, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1597, 8, 14, 1, 14, 1, 14, 3, 14, 1601, 8, 14, 1, 14, 3, 14, 1604, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1612, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1617, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1626, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1631, 8, 14, 1, 14, 3, 14, 1634, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1639, 8, 14, 1, 14, 1, 14, 3, 14, 1643, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1648, 8, 14, 3, 14, 1650, 8, 14, 1, 15, 1, 15, 3, 15, 1654, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1661, 8, 16, 10, 16, 12, 16, 1664, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1671, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1677, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1688, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1693, 8, 21, 10, 21, 12, 21, 1696, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1702, 8, 22, 10, 22, 12, 22, 1705, 9, 22, 1, 23, 1, 23, 3, 23, 1709, 8, 23, 1, 23, 3, 23, 1712, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1734, 8, 25, 10, 25, 12, 25, 1737, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1743, 8, 26, 10, 26, 12, 26, 1746, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 1752, 8, 27, 1, 27, 3, 27, 1755, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 1760, 8, 28, 10, 28, 12, 28, 1763, 9, 28, 1, 28, 3, 28, 1766, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1772, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1778, 8, 30, 10, 30, 12, 30, 1781, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 3, 31, 1787, 8, 31, 1, 31, 3, 31, 1790, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1796, 8, 32, 10, 32, 12, 32, 1799, 9, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1807, 8, 33, 10, 33, 12, 33, 1810, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1820, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1828, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1834, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 4, 38, 1844, 8, 38, 11, 38, 12, 38, 1845, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1853, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1860, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1872, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1878, 8, 38, 10, 38, 12, 38, 1881, 9, 38, 1, 38, 5, 38, 1884, 8, 38, 10, 38, 12, 38, 1887, 9, 38, 1, 38, 5, 38, 1890, 8, 38, 10, 38, 12, 38, 1893, 9, 38, 3, 38, 1895, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 5, 46, 1914, 8, 46, 10, 46, 12, 46, 1917, 9, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1927, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1934, 8, 49, 10, 49, 12, 49, 1937, 9, 49, 3, 49, 1939, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1946, 8, 49, 10, 49, 12, 49, 1949, 9, 49, 3, 49, 1951, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1958, 8, 49, 10, 49, 12, 49, 1961, 9, 49, 3, 49, 1963, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1970, 8, 49, 10, 49, 12, 49, 1973, 9, 49, 3, 49, 1975, 8, 49, 1, 49, 3, 49, 1978, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1983, 8, 49, 3, 49, 1985, 8, 49, 1, 49, 1, 49, 3, 49, 1989, 8, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2000, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2006, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2012, 8, 51, 1, 51, 5, 51, 2015, 8, 51, 10, 51, 12, 51, 2018, 9, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2029, 8, 52, 1, 53, 1, 53, 3, 53, 2033, 8, 53, 1, 53, 3, 53, 2036, 8, 53, 1, 53, 1, 53, 3, 53, 2040, 8, 53, 1, 54, 1, 54, 4, 54, 2044, 8, 54, 11, 54, 12, 54, 2045, 1, 55, 1, 55, 3, 55, 2050, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2056, 8, 55, 10, 55, 12, 55, 2059, 9, 55, 1, 55, 3, 55, 2062, 8, 55, 1, 55, 3, 55, 2065, 8, 55, 1, 55, 3, 55, 2068, 8, 55, 1, 55, 3, 55, 2071, 8, 55, 1, 55, 1, 55, 3, 55, 2075, 8, 55, 1, 56, 1, 56, 3, 56, 2079, 8, 56, 1, 56, 5, 56, 2082, 8, 56, 10, 56, 12, 56, 2085, 9, 56, 1, 56, 3, 56, 2088, 8, 56, 1, 56, 3, 56, 2091, 8, 56, 1, 56, 3, 56, 2094, 8, 56, 1, 56, 3, 56, 2097, 8, 56, 1, 56, 1, 56, 3, 56, 2101, 8, 56, 1, 56, 5, 56, 2104, 8, 56, 10, 56, 12, 56, 2107, 9, 56, 1, 56, 3, 56, 2110, 8, 56, 1, 56, 3, 56, 2113, 8, 56, 1, 56, 3, 56, 2116, 8, 56, 1, 56, 3, 56, 2119, 8, 56, 3, 56, 2121, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2127, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2134, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2139, 8, 57, 1, 57, 3, 57, 2142, 8, 57, 1, 57, 3, 57, 2145, 8, 57, 1, 57, 1, 57, 3, 57, 2149, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2159, 8, 57, 1, 57, 1, 57, 3, 57, 2163, 8, 57, 3, 57, 2165, 8, 57, 1, 57, 3, 57, 2168, 8, 57, 1, 57, 1, 57, 3, 57, 2172, 8, 57, 1, 58, 1, 58, 5, 58, 2176, 8, 58, 10, 58, 12, 58, 2179, 9, 58, 1, 58, 3, 58, 2182, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2193, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2203, 8, 61, 1, 61, 1, 61, 3, 61, 2207, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2219, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2231, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2244, 8, 64, 10, 64, 12, 64, 2247, 9, 64, 1, 64, 1, 64, 3, 64, 2251, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2257, 8, 65, 1, 66, 1, 66, 1, 66, 5, 66, 2262, 8, 66, 10, 66, 12, 66, 2265, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 3, 70, 2280, 8, 70, 1, 70, 5, 70, 2283, 8, 70, 10, 70, 12, 70, 2286, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2296, 8, 71, 10, 71, 12, 71, 2299, 9, 71, 1, 71, 1, 71, 3, 71, 2303, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2309, 8, 72, 10, 72, 12, 72, 2312, 9, 72, 1, 72, 5, 72, 2315, 8, 72, 10, 72, 12, 72, 2318, 9, 72, 1, 72, 3, 72, 2321, 8, 72, 1, 72, 3, 72, 2324, 8, 72, 1, 73, 1, 73, 1, 74, 3, 74, 2329, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2336, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2342, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2349, 8, 75, 10, 75, 12, 75, 2352, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2359, 8, 75, 10, 75, 12, 75, 2362, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2374, 8, 75, 10, 75, 12, 75, 2377, 9, 75, 1, 75, 1, 75, 3, 75, 2381, 8, 75, 3, 75, 2383, 8, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2388, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2395, 8, 77, 10, 77, 12, 77, 2398, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2408, 8, 77, 10, 77, 12, 77, 2411, 9, 77, 1, 77, 1, 77, 3, 77, 2415, 8, 77, 1, 78, 1, 78, 3, 78, 2419, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2426, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2431, 8, 79, 5, 79, 2433, 8, 79, 10, 79, 12, 79, 2436, 9, 79, 3, 79, 2438, 8, 79, 1, 79, 3, 79, 2441, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2453, 8, 80, 10, 80, 12, 80, 2456, 9, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2466, 8, 81, 10, 81, 12, 81, 2469, 9, 81, 1, 81, 1, 81, 3, 81, 2473, 8, 81, 1, 82, 1, 82, 3, 82, 2477, 8, 82, 1, 82, 3, 82, 2480, 8, 82, 1, 83, 1, 83, 3, 83, 2484, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2490, 8, 83, 1, 83, 3, 83, 2493, 8, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 2500, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 2510, 8, 86, 10, 86, 12, 86, 2513, 9, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2521, 8, 87, 10, 87, 12, 87, 2524, 9, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2534, 8, 87, 10, 87, 12, 87, 2537, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2545, 8, 88, 10, 88, 12, 88, 2548, 9, 88, 1, 88, 1, 88, 3, 88, 2552, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 2560, 8, 91, 1, 92, 1, 92, 1, 93, 3, 93, 2565, 8, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2579, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2586, 8, 96, 10, 96, 12, 96, 2589, 9, 96, 3, 96, 2591, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2596, 8, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2601, 8, 96, 10, 96, 12, 96, 2604, 9, 96, 3, 96, 2606, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 2612, 8, 98, 1, 98, 1, 98, 5, 98, 2616, 8, 98, 10, 98, 12, 98, 2619, 9, 98, 3, 98, 2621, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2626, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2631, 8, 100, 1, 100, 1, 100, 3, 100, 2635, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2641, 8, 100, 1, 100, 1, 100, 3, 100, 2645, 8, 100, 1, 101, 3, 101, 2648, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2653, 8, 101, 1, 101, 3, 101, 2656, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2661, 8, 101, 1, 101, 1, 101, 3, 101, 2665, 8, 101, 1, 101, 3, 101, 2668, 8, 101, 1, 101, 3, 101, 2671, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2677, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 2682, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2689, 8, 103, 1, 104, 3, 104, 2692, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2710, 8, 104, 3, 104, 2712, 8, 104, 1, 104, 3, 104, 2715, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 5, 106, 2724, 8, 106, 10, 106, 12, 106, 2727, 9, 106, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2733, 8, 107, 10, 107, 12, 107, 2736, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 3, 108, 2742, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 2748, 8, 109, 10, 109, 12, 109, 2751, 9, 109, 1, 109, 1, 109, 1, 110, 1, 110, 3, 110, 2757, 8, 110, 1, 111, 1, 111, 3, 111, 2761, 8, 111, 1, 111, 3, 111, 2764, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2772, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2780, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2786, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 2792, 8, 112, 10, 112, 12, 112, 2795, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 2802, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2809, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2816, 8, 113, 3, 113, 2818, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2829, 8, 114, 10, 114, 12, 114, 2832, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2837, 8, 114, 3, 114, 2839, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2847, 8, 114, 10, 114, 12, 114, 2850, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2855, 8, 114, 3, 114, 2857, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 3, 116, 2865, 8, 116, 1, 117, 1, 117, 3, 117, 2869, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 2876, 8, 118, 10, 118, 12, 118, 2879, 9, 118, 3, 118, 2881, 8, 118, 1, 118, 1, 118, 1, 118, 1, 119, 3, 119, 2887, 8, 119, 1, 119, 1, 119, 3, 119, 2891, 8, 119, 3, 119, 2893, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2902, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2914, 8, 120, 3, 120, 2916, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2923, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2930, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2936, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2942, 8, 120, 3, 120, 2944, 8, 120, 1, 121, 1, 121, 1, 121, 5, 121, 2949, 8, 121, 10, 121, 12, 121, 2952, 9, 121, 1, 122, 1, 122, 1, 122, 5, 122, 2957, 8, 122, 10, 122, 12, 122, 2960, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 2965, 8, 123, 10, 123, 12, 123, 2968, 9, 123, 1, 124, 1, 124, 1, 124, 3, 124, 2973, 8, 124, 1, 125, 1, 125, 1, 125, 3, 125, 2978, 8, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 2985, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 3, 127, 2991, 8, 127, 1, 127, 3, 127, 2994, 8, 127, 1, 127, 1, 127, 3, 127, 2998, 8, 127, 3, 127, 3000, 8, 127, 1, 128, 1, 128, 1, 128, 5, 128, 3005, 8, 128, 10, 128, 12, 128, 3008, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3014, 8, 129, 10, 129, 12, 129, 3017, 9, 129, 1, 129, 1, 129, 1, 130, 1, 130, 3, 130, 3023, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 3031, 8, 131, 10, 131, 12, 131, 3034, 9, 131, 1, 131, 1, 131, 3, 131, 3038, 8, 131, 1, 132, 1, 132, 3, 132, 3042, 8, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 3052, 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 3057, 8, 136, 10, 136, 12, 136, 3060, 9, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 3072, 8, 137, 3, 137, 3074, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3082, 8, 137, 10, 137, 12, 137, 3085, 9, 137, 1, 138, 3, 138, 3088, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3096, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3103, 8, 138, 10, 138, 12, 138, 3106, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3111, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3119, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3124, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3134, 8, 138, 10, 138, 12, 138, 3137, 9, 138, 1, 138, 1, 138, 3, 138, 3141, 8, 138, 1, 138, 3, 138, 3144, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3150, 8, 138, 1, 138, 1, 138, 3, 138, 3154, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3159, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3164, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3169, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3175, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3196, 8, 139, 10, 139, 12, 139, 3199, 9, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3209, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3221, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3231, 8, 141, 11, 141, 12, 141, 3232, 1, 141, 1, 141, 3, 141, 3237, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3244, 8, 141, 11, 141, 12, 141, 3245, 1, 141, 1, 141, 3, 141, 3250, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3266, 8, 141, 10, 141, 12, 141, 3269, 9, 141, 3, 141, 3271, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3279, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3288, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3297, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3318, 8, 141, 11, 141, 12, 141, 3319, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3336, 8, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3341, 8, 141, 10, 141, 12, 141, 3344, 9, 141, 3, 141, 3346, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3355, 8, 141, 1, 141, 1, 141, 3, 141, 3359, 8, 141, 1, 141, 1, 141, 3, 141, 3363, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3373, 8, 141, 11, 141, 12, 141, 3374, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3400, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3407, 8, 141, 1, 141, 3, 141, 3410, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3425, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3446, 8, 141, 1, 141, 1, 141, 3, 141, 3450, 8, 141, 3, 141, 3452, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3462, 8, 141, 10, 141, 12, 141, 3465, 9, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3474, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 4, 143, 3487, 8, 143, 11, 143, 12, 143, 3488, 3, 143, 3491, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 3, 148, 3504, 8, 148, 1, 149, 1, 149, 3, 149, 3508, 8, 149, 1, 150, 1, 150, 1, 150, 4, 150, 3513, 8, 150, 11, 150, 12, 150, 3514, 1, 151, 1, 151, 1, 151, 3, 151, 3520, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 3, 153, 3528, 8, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3533, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 3, 156, 3542, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3574, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3591, 8, 158, 1, 158, 1, 158, 3, 158, 3595, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3601, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3607, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 3614, 8, 158, 10, 158, 12, 158, 3617, 9, 158, 1, 158, 3, 158, 3620, 8, 158, 3, 158, 3622, 8, 158, 1, 159, 1, 159, 1, 159, 5, 159, 3627, 8, 159, 10, 159, 12, 159, 3630, 9, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3635, 8, 160, 10, 160, 12, 160, 3638, 9, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3643, 8, 161, 10, 161, 12, 161, 3646, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3651, 8, 162, 10, 162, 12, 162, 3654, 9, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3661, 8, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3672, 8, 166, 10, 166, 12, 166, 3675, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 3681, 8, 167, 1, 167, 3, 167, 3684, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 3689, 8, 168, 10, 168, 12, 168, 3692, 9, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3697, 8, 169, 10, 169, 12, 169, 3700, 9, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3707, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3719, 8, 172, 10, 172, 12, 172, 3722, 9, 172, 1, 173, 1, 173, 3, 173, 3726, 8, 173, 1, 173, 1, 173, 1, 173, 3, 173, 3731, 8, 173, 1, 173, 3, 173, 3734, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 5, 175, 3745, 8, 175, 10, 175, 12, 175, 3748, 9, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3769, 8, 178, 10, 178, 12, 178, 3772, 9, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3779, 8, 178, 10, 178, 12, 178, 3782, 9, 178, 3, 178, 3784, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3791, 8, 178, 10, 178, 12, 178, 3794, 9, 178, 3, 178, 3796, 8, 178, 3, 178, 3798, 8, 178, 1, 178, 3, 178, 3801, 8, 178, 1, 178, 3, 178, 3804, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3822, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3831, 8, 180, 1, 181, 1, 181, 1, 181, 5, 181, 3836, 8, 181, 10, 181, 12, 181, 3839, 9, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 3850, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 3857, 8, 184, 10, 184, 12, 184, 3860, 9, 184, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 4, 186, 3867, 8, 186, 11, 186, 12, 186, 3868, 1, 186, 3, 186, 3872, 8, 186, 1, 187, 1, 187, 3, 187, 3876, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3882, 8, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 3, 191, 3889, 8, 191, 1, 191, 1, 191, 3, 191, 3893, 8, 191, 1, 191, 1, 191, 3, 191, 3897, 8, 191, 1, 191, 1, 191, 3, 191, 3901, 8, 191, 1, 191, 1, 191, 3, 191, 3905, 8, 191, 1, 191, 1, 191, 3, 191, 3909, 8, 191, 1, 191, 1, 191, 3, 191, 3913, 8, 191, 1, 191, 1, 191, 3, 191, 3917, 8, 191, 1, 191, 1, 191, 3, 191, 3921, 8, 191, 1, 191, 1, 191, 3, 191, 3925, 8, 191, 1, 191, 3, 191, 3928, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3941, 8, 192, 1, 193, 1, 193, 1, 194, 1, 194, 3, 194, 3947, 8, 194, 1, 195, 1, 195, 3, 195, 3951, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 9, 1135, 1205, 1213, 1230, 1257, 1266, 1275, 1284, 1332, 4, 102, 274, 278, 282, 199, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 64, 2, 0, 78, 78, 228, 228, 2, 0, 34, 34, 246, 246, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 172, 172, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 288, 288, 2, 0, 8, 8, 166, 166, 1, 0, 334, 335, 3, 0, 72, 72, 189, 189, 260, 260, 3, 0, 73, 73, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 269, 269, 322, 322, 3, 0, 102, 102, 269, 269, 322, 322, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 289, 289, 330, 330, 2, 0, 291, 291, 336, 336, 2, 0, 290, 290, 302, 302, 2, 0, 61, 61, 255, 255, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 381, 381, 383, 383, 2, 0, 93, 93, 216, 216, 2, 0, 208, 208, 277, 277, 2, 0, 196, 196, 359, 359, 1, 0, 250, 251, 1, 0, 162, 163, 3, 0, 10, 10, 16, 16, 276, 276, 3, 0, 111, 111, 315, 315, 324, 324, 2, 0, 360, 361, 365, 365, 2, 0, 94, 94, 362, 364, 2, 0, 360, 361, 368, 368, 11, 0, 67, 67, 69, 69, 134, 134, 179, 179, 181, 181, 183, 183, 185, 185, 230, 230, 258, 258, 340, 340, 347, 347, 4, 0, 63, 63, 65, 66, 267, 267, 330, 330, 2, 0, 74, 75, 305, 305, 3, 0, 76, 77, 301, 301, 306, 306, 2, 0, 36, 36, 317, 317, 2, 0, 138, 138, 245, 245, 1, 0, 286, 287, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 310, 310, 1, 0, 219, 220, 1, 0, 351, 358, 2, 0, 94, 94, 360, 369, 4, 0, 14, 14, 140, 140, 196, 196, 207, 207, 2, 0, 111, 111, 315, 315, 1, 0, 360, 361, 7, 0, 67, 68, 134, 135, 179, 186, 191, 192, 258, 259, 340, 341, 347, 348, 6, 0, 67, 67, 134, 134, 183, 183, 185, 185, 258, 258, 347, 347, 2, 0, 185, 185, 347, 347, 4, 0, 67, 67, 134, 134, 183, 183, 258, 258, 3, 0, 134, 134, 183, 183, 258, 258, 2, 0, 82, 82, 351, 351, 2, 0, 118, 118, 225, 225, 2, 0, 377, 377, 388, 388, 1, 0, 382, 383, 2, 0, 96, 96, 268, 268, 1, 0, 376, 377, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 162, 192, 194, 194, 198, 200, 204, 206, 209, 209, 211, 212, 214, 218, 221, 225, 227, 237, 239, 248, 250, 261, 263, 266, 268, 275, 277, 291, 293, 298, 301, 307, 309, 309, 311, 321, 325, 329, 332, 341, 344, 344, 347, 350, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 193, 193, 202, 202, 249, 249, 263, 263, 269, 269, 322, 322, 331, 331, 18, 0, 8, 14, 16, 59, 61, 101, 103, 123, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 192, 194, 194, 196, 201, 203, 248, 250, 261, 264, 268, 270, 321, 323, 330, 332, 350, 4570, 0, 401, 1, 0, 0, 0, 2, 406, 1, 0, 0, 0, 4, 1335, 1, 0, 0, 0, 6, 1339, 1, 0, 0, 0, 8, 1341, 1, 0, 0, 0, 10, 1343, 1, 0, 0, 0, 12, 1513, 1, 0, 0, 0, 14, 1515, 1, 0, 0, 0, 16, 1530, 1, 0, 0, 0, 18, 1536, 1, 0, 0, 0, 20, 1548, 1, 0, 0, 0, 22, 1561, 1, 0, 0, 0, 24, 1564, 1, 0, 0, 0, 26, 1568, 1, 0, 0, 0, 28, 1649, 1, 0, 0, 0, 30, 1651, 1, 0, 0, 0, 32, 1655, 1, 0, 0, 0, 34, 1676, 1, 0, 0, 0, 36, 1678, 1, 0, 0, 0, 38, 1680, 1, 0, 0, 0, 40, 1687, 1, 0, 0, 0, 42, 1689, 1, 0, 0, 0, 44, 1697, 1, 0, 0, 0, 46, 1706, 1, 0, 0, 0, 48, 1717, 1, 0, 0, 0, 50, 1735, 1, 0, 0, 0, 52, 1738, 1, 0, 0, 0, 54, 1749, 1, 0, 0, 0, 56, 1765, 1, 0, 0, 0, 58, 1771, 1, 0, 0, 0, 60, 1773, 1, 0, 0, 0, 62, 1784, 1, 0, 0, 0, 64, 1791, 1, 0, 0, 0, 66, 1802, 1, 0, 0, 0, 68, 1819, 1, 0, 0, 0, 70, 1827, 1, 0, 0, 0, 72, 1829, 1, 0, 0, 0, 74, 1835, 1, 0, 0, 0, 76, 1894, 1, 0, 0, 0, 78, 1896, 1, 0, 0, 0, 80, 1898, 1, 0, 0, 0, 82, 1900, 1, 0, 0, 0, 84, 1902, 1, 0, 0, 0, 86, 1904, 1, 0, 0, 0, 88, 1906, 1, 0, 0, 0, 90, 1908, 1, 0, 0, 0, 92, 1910, 1, 0, 0, 0, 94, 1918, 1, 0, 0, 0, 96, 1926, 1, 0, 0, 0, 98, 1938, 1, 0, 0, 0, 100, 1990, 1, 0, 0, 0, 102, 1993, 1, 0, 0, 0, 104, 2028, 1, 0, 0, 0, 106, 2032, 1, 0, 0, 0, 108, 2041, 1, 0, 0, 0, 110, 2074, 1, 0, 0, 0, 112, 2120, 1, 0, 0, 0, 114, 2141, 1, 0, 0, 0, 116, 2173, 1, 0, 0, 0, 118, 2185, 1, 0, 0, 0, 120, 2188, 1, 0, 0, 0, 122, 2197, 1, 0, 0, 0, 124, 2211, 1, 0, 0, 0, 126, 2230, 1, 0, 0, 0, 128, 2250, 1, 0, 0, 0, 130, 2256, 1, 0, 0, 0, 132, 2258, 1, 0, 0, 0, 134, 2266, 1, 0, 0, 0, 136, 2270, 1, 0, 0, 0, 138, 2273, 1, 0, 0, 0, 140, 2276, 1, 0, 0, 0, 142, 2302, 1, 0, 0, 0, 144, 2304, 1, 0, 0, 0, 146, 2325, 1, 0, 0, 0, 148, 2341, 1, 0, 0, 0, 150, 2382, 1, 0, 0, 0, 152, 2387, 1, 0, 0, 0, 154, 2414, 1, 0, 0, 0, 156, 2418, 1, 0, 0, 0, 158, 2440, 1, 0, 0, 0, 160, 2442, 1, 0, 0, 0, 162, 2472, 1, 0, 0, 0, 164, 2474, 1, 0, 0, 0, 166, 2481, 1, 0, 0, 0, 168, 2494, 1, 0, 0, 0, 170, 2499, 1, 0, 0, 0, 172, 2501, 1, 0, 0, 0, 174, 2516, 1, 0, 0, 0, 176, 2540, 1, 0, 0, 0, 178, 2553, 1, 0, 0, 0, 180, 2555, 1, 0, 0, 0, 182, 2557, 1, 0, 0, 0, 184, 2561, 1, 0, 0, 0, 186, 2564, 1, 0, 0, 0, 188, 2568, 1, 0, 0, 0, 190, 2572, 1, 0, 0, 0, 192, 2575, 1, 0, 0, 0, 194, 2607, 1, 0, 0, 0, 196, 2620, 1, 0, 0, 0, 198, 2625, 1, 0, 0, 0, 200, 2644, 1, 0, 0, 0, 202, 2670, 1, 0, 0, 0, 204, 2676, 1, 0, 0, 0, 206, 2678, 1, 0, 0, 0, 208, 2714, 1, 0, 0, 0, 210, 2716, 1, 0, 0, 0, 212, 2720, 1, 0, 0, 0, 214, 2728, 1, 0, 0, 0, 216, 2739, 1, 0, 0, 0, 218, 2743, 1, 0, 0, 0, 220, 2754, 1, 0, 0, 0, 222, 2785, 1, 0, 0, 0, 224, 2787, 1, 0, 0, 0, 226, 2817, 1, 0, 0, 0, 228, 2838, 1, 0, 0, 0, 230, 2858, 1, 0, 0, 0, 232, 2864, 1, 0, 0, 0, 234, 2868, 1, 0, 0, 0, 236, 2870, 1, 0, 0, 0, 238, 2892, 1, 0, 0, 0, 240, 2943, 1, 0, 0, 0, 242, 2945, 1, 0, 0, 0, 244, 2953, 1, 0, 0, 0, 246, 2961, 1, 0, 0, 0, 248, 2969, 1, 0, 0, 0, 250, 2977, 1, 0, 0, 0, 252, 2984, 1, 0, 0, 0, 254, 2990, 1, 0, 0, 0, 256, 3001, 1, 0, 0, 0, 258, 3009, 1, 0, 0, 0, 260, 3022, 1, 0, 0, 0, 262, 3037, 1, 0, 0, 0, 264, 3041, 1, 0, 0, 0, 266, 3043, 1, 0, 0, 0, 268, 3045, 1, 0, 0, 0, 270, 3051, 1, 0, 0, 0, 272, 3053, 1, 0, 0, 0, 274, 3073, 1, 0, 0, 0, 276, 3168, 1, 0, 0, 0, 278, 3174, 1, 0, 0, 0, 280, 3200, 1, 0, 0, 0, 282, 3451, 1, 0, 0, 0, 284, 3473, 1, 0, 0, 0, 286, 3490, 1, 0, 0, 0, 288, 3492, 1, 0, 0, 0, 290, 3494, 1, 0, 0, 0, 292, 3496, 1, 0, 0, 0, 294, 3498, 1, 0, 0, 0, 296, 3500, 1, 0, 0, 0, 298, 3505, 1, 0, 0, 0, 300, 3512, 1, 0, 0, 0, 302, 3516, 1, 0, 0, 0, 304, 3521, 1, 0, 0, 0, 306, 3527, 1, 0, 0, 0, 308, 3534, 1, 0, 0, 0, 310, 3536, 1, 0, 0, 0, 312, 3541, 1, 0, 0, 0, 314, 3573, 1, 0, 0, 0, 316, 3621, 1, 0, 0, 0, 318, 3623, 1, 0, 0, 0, 320, 3631, 1, 0, 0, 0, 322, 3639, 1, 0, 0, 0, 324, 3647, 1, 0, 0, 0, 326, 3660, 1, 0, 0, 0, 328, 3662, 1, 0, 0, 0, 330, 3665, 1, 0, 0, 0, 332, 3668, 1, 0, 0, 0, 334, 3676, 1, 0, 0, 0, 336, 3685, 1, 0, 0, 0, 338, 3693, 1, 0, 0, 0, 340, 3706, 1, 0, 0, 0, 342, 3708, 1, 0, 0, 0, 344, 3715, 1, 0, 0, 0, 346, 3723, 1, 0, 0, 0, 348, 3735, 1, 0, 0, 0, 350, 3740, 1, 0, 0, 0, 352, 3749, 1, 0, 0, 0, 354, 3753, 1, 0, 0, 0, 356, 3803, 1, 0, 0, 0, 358, 3821, 1, 0, 0, 0, 360, 3830, 1, 0, 0, 0, 362, 3832, 1, 0, 0, 0, 364, 3849, 1, 0, 0, 0, 366, 3851, 1, 0, 0, 0, 368, 3853, 1, 0, 0, 0, 370, 3861, 1, 0, 0, 0, 372, 3871, 1, 0, 0, 0, 374, 3875, 1, 0, 0, 0, 376, 3881, 1, 0, 0, 0, 378, 3883, 1, 0, 0, 0, 380, 3885, 1, 0, 0, 0, 382, 3927, 1, 0, 0, 0, 384, 3940, 1, 0, 0, 0, 386, 3942, 1, 0, 0, 0, 388, 3946, 1, 0, 0, 0, 390, 3950, 1, 0, 0, 0, 392, 3952, 1, 0, 0, 0, 394, 3954, 1, 0, 0, 0, 396, 3956, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 1, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 3, 1, 0, 0, 0, 410, 1336, 3, 26, 13, 0, 411, 413, 3, 44, 22, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 1336, 3, 76, 38, 0, 415, 416, 5, 329, 0, 0, 416, 1336, 3, 78, 39, 0, 417, 418, 5, 329, 0, 0, 418, 419, 3, 36, 18, 0, 419, 420, 3, 78, 39, 0, 420, 1336, 1, 0, 0, 0, 421, 422, 5, 268, 0, 0, 422, 425, 5, 37, 0, 0, 423, 426, 3, 374, 187, 0, 424, 426, 3, 386, 193, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 1336, 1, 0, 0, 0, 427, 428, 5, 59, 0, 0, 428, 430, 3, 36, 18, 0, 429, 431, 3, 188, 94, 0, 430, 429, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 440, 3, 80, 40, 0, 433, 439, 3, 24, 12, 0, 434, 439, 3, 22, 11, 0, 435, 436, 5, 345, 0, 0, 436, 437, 7, 0, 0, 0, 437, 439, 3, 52, 26, 0, 438, 433, 1, 0, 0, 0, 438, 434, 1, 0, 0, 0, 438, 435, 1, 0, 0, 0, 439, 442, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 1336, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 443, 444, 5, 11, 0, 0, 444, 445, 3, 36, 18, 0, 445, 446, 3, 78, 39, 0, 446, 447, 5, 268, 0, 0, 447, 448, 7, 0, 0, 0, 448, 449, 3, 52, 26, 0, 449, 1336, 1, 0, 0, 0, 450, 451, 5, 11, 0, 0, 451, 452, 3, 36, 18, 0, 452, 453, 3, 78, 39, 0, 453, 454, 5, 268, 0, 0, 454, 455, 3, 22, 11, 0, 455, 1336, 1, 0, 0, 0, 456, 457, 5, 96, 0, 0, 457, 459, 3, 36, 18, 0, 458, 460, 3, 190, 95, 0, 459, 458, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 463, 3, 78, 39, 0, 462, 464, 7, 1, 0, 0, 463, 462, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 1336, 1, 0, 0, 0, 465, 466, 5, 272, 0, 0, 466, 469, 3, 38, 19, 0, 467, 468, 7, 2, 0, 0, 468, 470, 3, 244, 122, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 475, 1, 0, 0, 0, 471, 473, 5, 162, 0, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 476, 3, 386, 193, 0, 475, 472, 1, 0, 0, 0, 475, 476, 1, 0, 0, 0, 476, 1336, 1, 0, 0, 0, 477, 482, 3, 14, 7, 0, 478, 479, 5, 2, 0, 0, 479, 480, 3, 336, 168, 0, 480, 481, 5, 3, 0, 0, 481, 483, 1, 0, 0, 0, 482, 478, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 485, 1, 0, 0, 0, 484, 486, 3, 48, 24, 0, 485, 484, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 492, 3, 50, 25, 0, 488, 490, 5, 20, 0, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 493, 3, 26, 13, 0, 492, 489, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 1336, 1, 0, 0, 0, 494, 495, 5, 59, 0, 0, 495, 497, 5, 292, 0, 0, 496, 498, 3, 188, 94, 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 3, 82, 41, 0, 500, 501, 5, 162, 0, 0, 501, 510, 3, 84, 42, 0, 502, 509, 3, 48, 24, 0, 503, 509, 3, 240, 120, 0, 504, 509, 3, 68, 34, 0, 505, 509, 3, 22, 11, 0, 506, 507, 5, 296, 0, 0, 507, 509, 3, 52, 26, 0, 508, 502, 1, 0, 0, 0, 508, 503, 1, 0, 0, 0, 508, 504, 1, 0, 0, 0, 508, 505, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 512, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 1336, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 513, 518, 3, 16, 8, 0, 514, 515, 5, 2, 0, 0, 515, 516, 3, 336, 168, 0, 516, 517, 5, 3, 0, 0, 517, 519, 1, 0, 0, 0, 518, 514, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 522, 3, 48, 24, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 528, 3, 50, 25, 0, 524, 526, 5, 20, 0, 0, 525, 524, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 529, 3, 26, 13, 0, 528, 525, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 1336, 1, 0, 0, 0, 530, 531, 5, 13, 0, 0, 531, 532, 5, 292, 0, 0, 532, 534, 3, 84, 42, 0, 533, 535, 3, 32, 16, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 5, 55, 0, 0, 537, 545, 5, 281, 0, 0, 538, 546, 5, 195, 0, 0, 539, 540, 5, 119, 0, 0, 540, 541, 5, 50, 0, 0, 541, 546, 3, 92, 46, 0, 542, 543, 5, 119, 0, 0, 543, 544, 5, 10, 0, 0, 544, 546, 5, 50, 0, 0, 545, 538, 1, 0, 0, 0, 545, 539, 1, 0, 0, 0, 545, 542, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 1336, 1, 0, 0, 0, 547, 548, 5, 13, 0, 0, 548, 551, 5, 293, 0, 0, 549, 550, 7, 2, 0, 0, 550, 552, 3, 78, 39, 0, 551, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 5, 55, 0, 0, 554, 556, 5, 281, 0, 0, 555, 557, 5, 195, 0, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 1336, 1, 0, 0, 0, 558, 559, 5, 11, 0, 0, 559, 560, 5, 292, 0, 0, 560, 561, 3, 84, 42, 0, 561, 562, 5, 8, 0, 0, 562, 563, 5, 49, 0, 0, 563, 564, 3, 320, 160, 0, 564, 1336, 1, 0, 0, 0, 565, 566, 5, 11, 0, 0, 566, 567, 5, 292, 0, 0, 567, 568, 3, 84, 42, 0, 568, 569, 5, 8, 0, 0, 569, 570, 5, 50, 0, 0, 570, 571, 5, 2, 0, 0, 571, 572, 3, 318, 159, 0, 572, 573, 5, 3, 0, 0, 573, 1336, 1, 0, 0, 0, 574, 575, 5, 11, 0, 0, 575, 576, 5, 292, 0, 0, 576, 577, 3, 84, 42, 0, 577, 578, 5, 240, 0, 0, 578, 579, 5, 49, 0, 0, 579, 580, 3, 90, 45, 0, 580, 581, 5, 308, 0, 0, 581, 582, 3, 94, 47, 0, 582, 1336, 1, 0, 0, 0, 583, 584, 5, 11, 0, 0, 584, 585, 5, 292, 0, 0, 585, 586, 3, 84, 42, 0, 586, 587, 5, 96, 0, 0, 587, 589, 5, 49, 0, 0, 588, 590, 3, 190, 95, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 592, 3, 90, 45, 0, 592, 1336, 1, 0, 0, 0, 593, 594, 5, 11, 0, 0, 594, 595, 5, 292, 0, 0, 595, 596, 3, 84, 42, 0, 596, 597, 5, 96, 0, 0, 597, 599, 5, 50, 0, 0, 598, 600, 3, 190, 95, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 5, 2, 0, 0, 602, 603, 3, 92, 46, 0, 603, 604, 5, 3, 0, 0, 604, 1336, 1, 0, 0, 0, 605, 610, 5, 11, 0, 0, 606, 607, 5, 292, 0, 0, 607, 611, 3, 84, 42, 0, 608, 609, 5, 337, 0, 0, 609, 611, 3, 88, 44, 0, 610, 606, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 5, 240, 0, 0, 613, 614, 5, 308, 0, 0, 614, 615, 3, 244, 122, 0, 615, 1336, 1, 0, 0, 0, 616, 621, 5, 11, 0, 0, 617, 618, 5, 292, 0, 0, 618, 622, 3, 84, 42, 0, 619, 620, 5, 337, 0, 0, 620, 622, 3, 88, 44, 0, 621, 617, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 5, 268, 0, 0, 624, 625, 5, 296, 0, 0, 625, 626, 3, 52, 26, 0, 626, 1336, 1, 0, 0, 0, 627, 632, 5, 11, 0, 0, 628, 629, 5, 292, 0, 0, 629, 633, 3, 84, 42, 0, 630, 631, 5, 337, 0, 0, 631, 633, 3, 88, 44, 0, 632, 628, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 5, 327, 0, 0, 635, 637, 5, 296, 0, 0, 636, 638, 3, 190, 95, 0, 637, 636, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 3, 52, 26, 0, 640, 1336, 1, 0, 0, 0, 641, 642, 5, 11, 0, 0, 642, 643, 5, 292, 0, 0, 643, 644, 3, 84, 42, 0, 644, 646, 7, 3, 0, 0, 645, 647, 5, 49, 0, 0, 646, 645, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 3, 90, 45, 0, 649, 651, 3, 384, 192, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 1336, 1, 0, 0, 0, 652, 653, 5, 11, 0, 0, 653, 654, 5, 292, 0, 0, 654, 656, 3, 84, 42, 0, 655, 657, 3, 32, 16, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 660, 5, 39, 0, 0, 659, 661, 5, 49, 0, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 3, 90, 45, 0, 663, 665, 3, 334, 167, 0, 664, 666, 3, 312, 156, 0, 665, 664, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 1336, 1, 0, 0, 0, 667, 668, 5, 11, 0, 0, 668, 669, 5, 292, 0, 0, 669, 671, 3, 84, 42, 0, 670, 672, 3, 32, 16, 0, 671, 670, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 5, 243, 0, 0, 674, 675, 5, 50, 0, 0, 675, 676, 5, 2, 0, 0, 676, 677, 3, 322, 161, 0, 677, 678, 5, 3, 0, 0, 678, 1336, 1, 0, 0, 0, 679, 680, 5, 11, 0, 0, 680, 681, 5, 292, 0, 0, 681, 683, 3, 84, 42, 0, 682, 684, 3, 32, 16, 0, 683, 682, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 686, 5, 268, 0, 0, 686, 687, 5, 265, 0, 0, 687, 691, 3, 386, 193, 0, 688, 689, 5, 345, 0, 0, 689, 690, 5, 266, 0, 0, 690, 692, 3, 52, 26, 0, 691, 688, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 1336, 1, 0, 0, 0, 693, 694, 5, 11, 0, 0, 694, 695, 5, 292, 0, 0, 695, 697, 3, 84, 42, 0, 696, 698, 3, 32, 16, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 5, 268, 0, 0, 700, 701, 5, 266, 0, 0, 701, 702, 3, 52, 26, 0, 702, 1336, 1, 0, 0, 0, 703, 708, 5, 11, 0, 0, 704, 705, 5, 292, 0, 0, 705, 709, 3, 84, 42, 0, 706, 707, 5, 337, 0, 0, 707, 709, 3, 88, 44, 0, 708, 704, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 712, 5, 8, 0, 0, 711, 713, 3, 188, 94, 0, 712, 711, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 715, 1, 0, 0, 0, 714, 716, 3, 30, 15, 0, 715, 714, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 1336, 1, 0, 0, 0, 719, 720, 5, 11, 0, 0, 720, 721, 5, 292, 0, 0, 721, 722, 3, 84, 42, 0, 722, 723, 3, 32, 16, 0, 723, 724, 5, 240, 0, 0, 724, 725, 5, 308, 0, 0, 725, 726, 3, 32, 16, 0, 726, 1336, 1, 0, 0, 0, 727, 732, 5, 11, 0, 0, 728, 729, 5, 292, 0, 0, 729, 733, 3, 84, 42, 0, 730, 731, 5, 337, 0, 0, 731, 733, 3, 88, 44, 0, 732, 728, 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 736, 5, 96, 0, 0, 735, 737, 3, 190, 95, 0, 736, 735, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 743, 3, 32, 16, 0, 739, 740, 5, 4, 0, 0, 740, 742, 3, 32, 16, 0, 741, 739, 1, 0, 0, 0, 742, 745, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 746, 748, 5, 229, 0, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 1336, 1, 0, 0, 0, 749, 750, 5, 11, 0, 0, 750, 751, 5, 292, 0, 0, 751, 753, 3, 84, 42, 0, 752, 754, 3, 32, 16, 0, 753, 752, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 5, 268, 0, 0, 756, 757, 3, 22, 11, 0, 757, 1336, 1, 0, 0, 0, 758, 759, 5, 11, 0, 0, 759, 760, 5, 292, 0, 0, 760, 761, 3, 84, 42, 0, 761, 762, 5, 236, 0, 0, 762, 763, 5, 218, 0, 0, 763, 1336, 1, 0, 0, 0, 764, 765, 5, 11, 0, 0, 765, 766, 5, 175, 0, 0, 766, 767, 5, 337, 0, 0, 767, 768, 3, 88, 44, 0, 768, 769, 7, 4, 0, 0, 769, 770, 5, 247, 0, 0, 770, 1336, 1, 0, 0, 0, 771, 772, 5, 11, 0, 0, 772, 773, 5, 175, 0, 0, 773, 774, 5, 337, 0, 0, 774, 775, 3, 88, 44, 0, 775, 776, 5, 268, 0, 0, 776, 777, 5, 296, 0, 0, 777, 778, 3, 52, 26, 0, 778, 1336, 1, 0, 0, 0, 779, 780, 5, 96, 0, 0, 780, 782, 5, 292, 0, 0, 781, 783, 3, 190, 95, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 786, 3, 84, 42, 0, 785, 787, 5, 229, 0, 0, 786, 785, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 1336, 1, 0, 0, 0, 788, 789, 5, 96, 0, 0, 789, 791, 5, 337, 0, 0, 790, 792, 3, 190, 95, 0, 791, 790, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 1336, 3, 88, 44, 0, 794, 795, 5, 96, 0, 0, 795, 796, 5, 175, 0, 0, 796, 798, 5, 337, 0, 0, 797, 799, 3, 190, 95, 0, 798, 797, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 1336, 3, 88, 44, 0, 801, 804, 5, 59, 0, 0, 802, 803, 5, 207, 0, 0, 803, 805, 5, 243, 0, 0, 804, 802, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 810, 1, 0, 0, 0, 806, 808, 5, 128, 0, 0, 807, 806, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 811, 5, 297, 0, 0, 810, 807, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 5, 337, 0, 0, 813, 815, 3, 188, 94, 0, 814, 813, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 818, 3, 86, 43, 0, 817, 819, 3, 218, 109, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 828, 1, 0, 0, 0, 820, 827, 3, 24, 12, 0, 821, 822, 5, 217, 0, 0, 822, 823, 5, 202, 0, 0, 823, 827, 3, 210, 105, 0, 824, 825, 5, 296, 0, 0, 825, 827, 3, 52, 26, 0, 826, 820, 1, 0, 0, 0, 826, 821, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 830, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 831, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 832, 5, 20, 0, 0, 832, 833, 3, 26, 13, 0, 833, 1336, 1, 0, 0, 0, 834, 837, 5, 59, 0, 0, 835, 836, 5, 207, 0, 0, 836, 838, 5, 243, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 841, 5, 128, 0, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 5, 297, 0, 0, 843, 844, 5, 337, 0, 0, 844, 849, 3, 86, 43, 0, 845, 846, 5, 2, 0, 0, 846, 847, 3, 332, 166, 0, 847, 848, 5, 3, 0, 0, 848, 850, 1, 0, 0, 0, 849, 845, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 854, 3, 48, 24, 0, 852, 853, 5, 206, 0, 0, 853, 855, 3, 52, 26, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 1336, 1, 0, 0, 0, 856, 857, 5, 11, 0, 0, 857, 858, 5, 337, 0, 0, 858, 860, 3, 88, 44, 0, 859, 861, 5, 20, 0, 0, 860, 859, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 3, 26, 13, 0, 863, 1336, 1, 0, 0, 0, 864, 867, 5, 59, 0, 0, 865, 866, 5, 207, 0, 0, 866, 868, 5, 243, 0, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 5, 297, 0, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 125, 0, 0, 873, 875, 3, 188, 94, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 3, 366, 183, 0, 877, 878, 5, 20, 0, 0, 878, 888, 3, 386, 193, 0, 879, 880, 5, 331, 0, 0, 880, 885, 3, 74, 37, 0, 881, 882, 5, 4, 0, 0, 882, 884, 3, 74, 37, 0, 883, 881, 1, 0, 0, 0, 884, 887, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 888, 879, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 1336, 1, 0, 0, 0, 890, 891, 5, 59, 0, 0, 891, 892, 5, 175, 0, 0, 892, 894, 5, 337, 0, 0, 893, 895, 3, 188, 94, 0, 894, 893, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 898, 3, 86, 43, 0, 897, 899, 3, 48, 24, 0, 898, 897, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 915, 1, 0, 0, 0, 900, 901, 5, 206, 0, 0, 901, 914, 3, 52, 26, 0, 902, 903, 5, 217, 0, 0, 903, 904, 5, 31, 0, 0, 904, 914, 3, 258, 129, 0, 905, 914, 3, 20, 10, 0, 906, 914, 3, 18, 9, 0, 907, 914, 3, 240, 120, 0, 908, 914, 3, 68, 34, 0, 909, 914, 3, 22, 11, 0, 910, 914, 3, 24, 12, 0, 911, 912, 5, 296, 0, 0, 912, 914, 3, 52, 26, 0, 913, 900, 1, 0, 0, 0, 913, 902, 1, 0, 0, 0, 913, 905, 1, 0, 0, 0, 913, 906, 1, 0, 0, 0, 913, 907, 1, 0, 0, 0, 913, 908, 1, 0, 0, 0, 913, 909, 1, 0, 0, 0, 913, 910, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 914, 917, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 918, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 918, 919, 5, 20, 0, 0, 919, 920, 3, 26, 13, 0, 920, 1336, 1, 0, 0, 0, 921, 923, 5, 96, 0, 0, 922, 924, 5, 297, 0, 0, 923, 922, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 927, 5, 125, 0, 0, 926, 928, 3, 190, 95, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 1336, 3, 364, 182, 0, 930, 933, 5, 81, 0, 0, 931, 932, 5, 207, 0, 0, 932, 934, 5, 243, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 936, 1, 0, 0, 0, 935, 937, 5, 335, 0, 0, 936, 935, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 940, 3, 364, 182, 0, 939, 941, 3, 316, 158, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 943, 1, 0, 0, 0, 942, 944, 3, 330, 165, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 1336, 1, 0, 0, 0, 945, 946, 5, 96, 0, 0, 946, 947, 5, 297, 0, 0, 947, 949, 5, 335, 0, 0, 948, 950, 3, 190, 95, 0, 949, 948, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 954, 1, 0, 0, 0, 951, 955, 3, 84, 42, 0, 952, 955, 3, 88, 44, 0, 953, 955, 3, 364, 182, 0, 954, 951, 1, 0, 0, 0, 954, 952, 1, 0, 0, 0, 954, 953, 1, 0, 0, 0, 955, 1336, 1, 0, 0, 0, 956, 958, 5, 106, 0, 0, 957, 959, 7, 5, 0, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 1336, 3, 4, 2, 0, 961, 962, 5, 272, 0, 0, 962, 965, 5, 293, 0, 0, 963, 964, 7, 2, 0, 0, 964, 966, 3, 78, 39, 0, 965, 963, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 971, 1, 0, 0, 0, 967, 969, 5, 162, 0, 0, 968, 967, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 972, 3, 386, 193, 0, 971, 968, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 1336, 1, 0, 0, 0, 973, 974, 5, 272, 0, 0, 974, 975, 5, 292, 0, 0, 975, 978, 5, 108, 0, 0, 976, 977, 7, 2, 0, 0, 977, 979, 3, 78, 39, 0, 978, 976, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 5, 162, 0, 0, 981, 983, 3, 386, 193, 0, 982, 984, 3, 32, 16, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 1336, 1, 0, 0, 0, 985, 986, 5, 272, 0, 0, 986, 987, 5, 296, 0, 0, 987, 992, 3, 84, 42, 0, 988, 989, 5, 2, 0, 0, 989, 990, 3, 56, 28, 0, 990, 991, 5, 3, 0, 0, 991, 993, 1, 0, 0, 0, 992, 988, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 1336, 1, 0, 0, 0, 994, 995, 5, 272, 0, 0, 995, 996, 5, 50, 0, 0, 996, 997, 7, 2, 0, 0, 997, 1000, 3, 84, 42, 0, 998, 999, 7, 2, 0, 0, 999, 1001, 3, 78, 39, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1336, 1, 0, 0, 0, 1002, 1003, 5, 272, 0, 0, 1003, 1006, 5, 338, 0, 0, 1004, 1005, 7, 2, 0, 0, 1005, 1007, 3, 78, 39, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1012, 1, 0, 0, 0, 1008, 1010, 5, 162, 0, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 3, 386, 193, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1336, 1, 0, 0, 0, 1014, 1015, 5, 272, 0, 0, 1015, 1016, 5, 218, 0, 0, 1016, 1018, 3, 84, 42, 0, 1017, 1019, 3, 32, 16, 0, 1018, 1017, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1336, 1, 0, 0, 0, 1020, 1022, 5, 272, 0, 0, 1021, 1023, 3, 146, 73, 0, 1022, 1021, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1027, 5, 126, 0, 0, 1025, 1026, 7, 2, 0, 0, 1026, 1028, 3, 78, 39, 0, 1027, 1025, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1036, 1, 0, 0, 0, 1029, 1031, 5, 162, 0, 0, 1030, 1029, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1034, 1, 0, 0, 0, 1032, 1035, 3, 244, 122, 0, 1033, 1035, 3, 386, 193, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1033, 1, 0, 0, 0, 1035, 1037, 1, 0, 0, 0, 1036, 1030, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1336, 1, 0, 0, 0, 1038, 1039, 5, 272, 0, 0, 1039, 1040, 5, 59, 0, 0, 1040, 1041, 5, 292, 0, 0, 1041, 1044, 3, 84, 42, 0, 1042, 1043, 5, 20, 0, 0, 1043, 1045, 5, 265, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1336, 1, 0, 0, 0, 1046, 1047, 5, 272, 0, 0, 1047, 1048, 5, 62, 0, 0, 1048, 1336, 3, 36, 18, 0, 1049, 1050, 5, 272, 0, 0, 1050, 1055, 5, 38, 0, 0, 1051, 1053, 5, 162, 0, 0, 1052, 1051, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1056, 3, 386, 193, 0, 1055, 1052, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1336, 1, 0, 0, 0, 1057, 1058, 5, 272, 0, 0, 1058, 1059, 5, 175, 0, 0, 1059, 1062, 5, 338, 0, 0, 1060, 1061, 7, 2, 0, 0, 1061, 1063, 3, 78, 39, 0, 1062, 1060, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1068, 1, 0, 0, 0, 1064, 1066, 5, 162, 0, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1069, 3, 386, 193, 0, 1068, 1065, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1336, 1, 0, 0, 0, 1070, 1071, 5, 272, 0, 0, 1071, 1072, 5, 59, 0, 0, 1072, 1073, 5, 175, 0, 0, 1073, 1074, 5, 337, 0, 0, 1074, 1077, 3, 88, 44, 0, 1075, 1076, 5, 20, 0, 0, 1076, 1078, 5, 265, 0, 0, 1077, 1075, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1336, 1, 0, 0, 0, 1079, 1080, 7, 6, 0, 0, 1080, 1082, 5, 125, 0, 0, 1081, 1083, 5, 108, 0, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1336, 3, 40, 20, 0, 1085, 1086, 7, 6, 0, 0, 1086, 1088, 5, 72, 0, 0, 1087, 1089, 5, 108, 0, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1336, 3, 78, 39, 0, 1091, 1093, 7, 6, 0, 0, 1092, 1094, 5, 292, 0, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1096, 1, 0, 0, 0, 1095, 1097, 7, 7, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 3, 84, 42, 0, 1099, 1101, 3, 32, 16, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1104, 3, 42, 21, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1336, 1, 0, 0, 0, 1105, 1107, 7, 6, 0, 0, 1106, 1108, 5, 231, 0, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1336, 3, 26, 13, 0, 1110, 1111, 5, 51, 0, 0, 1111, 1112, 5, 202, 0, 0, 1112, 1113, 3, 36, 18, 0, 1113, 1114, 3, 78, 39, 0, 1114, 1115, 5, 153, 0, 0, 1115, 1116, 3, 388, 194, 0, 1116, 1336, 1, 0, 0, 0, 1117, 1118, 5, 51, 0, 0, 1118, 1119, 5, 202, 0, 0, 1119, 1120, 5, 292, 0, 0, 1120, 1121, 3, 84, 42, 0, 1121, 1122, 5, 153, 0, 0, 1122, 1123, 3, 388, 194, 0, 1123, 1336, 1, 0, 0, 0, 1124, 1125, 5, 239, 0, 0, 1125, 1126, 5, 292, 0, 0, 1126, 1336, 3, 84, 42, 0, 1127, 1128, 5, 239, 0, 0, 1128, 1129, 5, 125, 0, 0, 1129, 1336, 3, 364, 182, 0, 1130, 1138, 5, 239, 0, 0, 1131, 1139, 3, 386, 193, 0, 1132, 1134, 9, 0, 0, 0, 1133, 1132, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1131, 1, 0, 0, 0, 1138, 1135, 1, 0, 0, 0, 1139, 1336, 1, 0, 0, 0, 1140, 1141, 5, 239, 0, 0, 1141, 1142, 5, 175, 0, 0, 1142, 1143, 5, 337, 0, 0, 1143, 1336, 3, 88, 44, 0, 1144, 1146, 5, 33, 0, 0, 1145, 1147, 5, 159, 0, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 5, 292, 0, 0, 1149, 1152, 3, 84, 42, 0, 1150, 1151, 5, 206, 0, 0, 1151, 1153, 3, 52, 26, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1158, 1, 0, 0, 0, 1154, 1156, 5, 20, 0, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 3, 26, 13, 0, 1158, 1155, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1336, 1, 0, 0, 0, 1160, 1161, 5, 321, 0, 0, 1161, 1163, 5, 292, 0, 0, 1162, 1164, 3, 190, 95, 0, 1163, 1162, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1336, 3, 84, 42, 0, 1166, 1167, 5, 43, 0, 0, 1167, 1336, 5, 33, 0, 0, 1168, 1169, 5, 167, 0, 0, 1169, 1171, 5, 70, 0, 0, 1170, 1172, 5, 168, 0, 0, 1171, 1170, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 5, 145, 0, 0, 1174, 1176, 3, 386, 193, 0, 1175, 1177, 5, 215, 0, 0, 1176, 1175, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 5, 152, 0, 0, 1179, 1180, 5, 292, 0, 0, 1180, 1182, 3, 84, 42, 0, 1181, 1183, 3, 32, 16, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1336, 1, 0, 0, 0, 1184, 1185, 5, 316, 0, 0, 1185, 1186, 5, 292, 0, 0, 1186, 1188, 3, 84, 42, 0, 1187, 1189, 3, 32, 16, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1336, 1, 0, 0, 0, 1190, 1192, 5, 187, 0, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 5, 241, 0, 0, 1194, 1195, 5, 292, 0, 0, 1195, 1198, 3, 84, 42, 0, 1196, 1197, 7, 8, 0, 0, 1197, 1199, 5, 218, 0, 0, 1198, 1196, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1336, 1, 0, 0, 0, 1200, 1201, 7, 9, 0, 0, 1201, 1205, 3, 374, 187, 0, 1202, 1204, 9, 0, 0, 0, 1203, 1202, 1, 0, 0, 0, 1204, 1207, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1206, 1336, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1209, 5, 268, 0, 0, 1209, 1213, 5, 252, 0, 0, 1210, 1212, 9, 0, 0, 0, 1211, 1210, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1214, 1336, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1217, 5, 268, 0, 0, 1217, 1218, 5, 300, 0, 0, 1218, 1219, 5, 349, 0, 0, 1219, 1336, 3, 296, 148, 0, 1220, 1221, 5, 268, 0, 0, 1221, 1222, 5, 300, 0, 0, 1222, 1223, 5, 349, 0, 0, 1223, 1336, 3, 6, 3, 0, 1224, 1225, 5, 268, 0, 0, 1225, 1226, 5, 300, 0, 0, 1226, 1230, 5, 349, 0, 0, 1227, 1229, 9, 0, 0, 0, 1228, 1227, 1, 0, 0, 0, 1229, 1232, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1230, 1228, 1, 0, 0, 0, 1231, 1336, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1234, 5, 268, 0, 0, 1234, 1235, 7, 10, 0, 0, 1235, 1336, 3, 132, 66, 0, 1236, 1237, 5, 268, 0, 0, 1237, 1238, 7, 10, 0, 0, 1238, 1239, 5, 2, 0, 0, 1239, 1240, 3, 242, 121, 0, 1240, 1241, 5, 3, 0, 0, 1241, 1242, 5, 351, 0, 0, 1242, 1243, 5, 2, 0, 0, 1243, 1244, 3, 26, 13, 0, 1244, 1245, 5, 3, 0, 0, 1245, 1336, 1, 0, 0, 0, 1246, 1247, 5, 268, 0, 0, 1247, 1248, 3, 8, 4, 0, 1248, 1249, 5, 351, 0, 0, 1249, 1250, 3, 10, 5, 0, 1250, 1336, 1, 0, 0, 0, 1251, 1252, 5, 268, 0, 0, 1252, 1260, 3, 8, 4, 0, 1253, 1257, 5, 351, 0, 0, 1254, 1256, 9, 0, 0, 0, 1255, 1254, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1253, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1336, 1, 0, 0, 0, 1262, 1266, 5, 268, 0, 0, 1263, 1265, 9, 0, 0, 0, 1264, 1263, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1270, 5, 351, 0, 0, 1270, 1336, 3, 10, 5, 0, 1271, 1275, 5, 268, 0, 0, 1272, 1274, 9, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 1277, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1336, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1279, 5, 244, 0, 0, 1279, 1336, 3, 8, 4, 0, 1280, 1284, 5, 244, 0, 0, 1281, 1283, 9, 0, 0, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1286, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1336, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1288, 5, 59, 0, 0, 1288, 1290, 5, 142, 0, 0, 1289, 1291, 3, 188, 94, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 3, 374, 187, 0, 1293, 1295, 5, 202, 0, 0, 1294, 1296, 5, 292, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1300, 3, 84, 42, 0, 1298, 1299, 5, 331, 0, 0, 1299, 1301, 3, 374, 187, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 5, 2, 0, 0, 1303, 1304, 3, 246, 123, 0, 1304, 1307, 5, 3, 0, 0, 1305, 1306, 5, 206, 0, 0, 1306, 1308, 3, 52, 26, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1336, 1, 0, 0, 0, 1309, 1310, 5, 96, 0, 0, 1310, 1312, 5, 142, 0, 0, 1311, 1313, 3, 190, 95, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 3, 374, 187, 0, 1315, 1317, 5, 202, 0, 0, 1316, 1318, 5, 292, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 3, 84, 42, 0, 1320, 1336, 1, 0, 0, 0, 1321, 1322, 5, 204, 0, 0, 1322, 1324, 3, 84, 42, 0, 1323, 1325, 3, 136, 68, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 3, 352, 176, 0, 1327, 1336, 1, 0, 0, 0, 1328, 1332, 3, 12, 6, 0, 1329, 1331, 9, 0, 0, 0, 1330, 1329, 1, 0, 0, 0, 1331, 1334, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1332, 1330, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 410, 1, 0, 0, 0, 1335, 412, 1, 0, 0, 0, 1335, 415, 1, 0, 0, 0, 1335, 417, 1, 0, 0, 0, 1335, 421, 1, 0, 0, 0, 1335, 427, 1, 0, 0, 0, 1335, 443, 1, 0, 0, 0, 1335, 450, 1, 0, 0, 0, 1335, 456, 1, 0, 0, 0, 1335, 465, 1, 0, 0, 0, 1335, 477, 1, 0, 0, 0, 1335, 494, 1, 0, 0, 0, 1335, 513, 1, 0, 0, 0, 1335, 530, 1, 0, 0, 0, 1335, 547, 1, 0, 0, 0, 1335, 558, 1, 0, 0, 0, 1335, 565, 1, 0, 0, 0, 1335, 574, 1, 0, 0, 0, 1335, 583, 1, 0, 0, 0, 1335, 593, 1, 0, 0, 0, 1335, 605, 1, 0, 0, 0, 1335, 616, 1, 0, 0, 0, 1335, 627, 1, 0, 0, 0, 1335, 641, 1, 0, 0, 0, 1335, 652, 1, 0, 0, 0, 1335, 667, 1, 0, 0, 0, 1335, 679, 1, 0, 0, 0, 1335, 693, 1, 0, 0, 0, 1335, 703, 1, 0, 0, 0, 1335, 719, 1, 0, 0, 0, 1335, 727, 1, 0, 0, 0, 1335, 749, 1, 0, 0, 0, 1335, 758, 1, 0, 0, 0, 1335, 764, 1, 0, 0, 0, 1335, 771, 1, 0, 0, 0, 1335, 779, 1, 0, 0, 0, 1335, 788, 1, 0, 0, 0, 1335, 794, 1, 0, 0, 0, 1335, 801, 1, 0, 0, 0, 1335, 834, 1, 0, 0, 0, 1335, 856, 1, 0, 0, 0, 1335, 864, 1, 0, 0, 0, 1335, 890, 1, 0, 0, 0, 1335, 921, 1, 0, 0, 0, 1335, 930, 1, 0, 0, 0, 1335, 945, 1, 0, 0, 0, 1335, 956, 1, 0, 0, 0, 1335, 961, 1, 0, 0, 0, 1335, 973, 1, 0, 0, 0, 1335, 985, 1, 0, 0, 0, 1335, 994, 1, 0, 0, 0, 1335, 1002, 1, 0, 0, 0, 1335, 1014, 1, 0, 0, 0, 1335, 1020, 1, 0, 0, 0, 1335, 1038, 1, 0, 0, 0, 1335, 1046, 1, 0, 0, 0, 1335, 1049, 1, 0, 0, 0, 1335, 1057, 1, 0, 0, 0, 1335, 1070, 1, 0, 0, 0, 1335, 1079, 1, 0, 0, 0, 1335, 1085, 1, 0, 0, 0, 1335, 1091, 1, 0, 0, 0, 1335, 1105, 1, 0, 0, 0, 1335, 1110, 1, 0, 0, 0, 1335, 1117, 1, 0, 0, 0, 1335, 1124, 1, 0, 0, 0, 1335, 1127, 1, 0, 0, 0, 1335, 1130, 1, 0, 0, 0, 1335, 1140, 1, 0, 0, 0, 1335, 1144, 1, 0, 0, 0, 1335, 1160, 1, 0, 0, 0, 1335, 1166, 1, 0, 0, 0, 1335, 1168, 1, 0, 0, 0, 1335, 1184, 1, 0, 0, 0, 1335, 1191, 1, 0, 0, 0, 1335, 1200, 1, 0, 0, 0, 1335, 1208, 1, 0, 0, 0, 1335, 1216, 1, 0, 0, 0, 1335, 1220, 1, 0, 0, 0, 1335, 1224, 1, 0, 0, 0, 1335, 1233, 1, 0, 0, 0, 1335, 1236, 1, 0, 0, 0, 1335, 1246, 1, 0, 0, 0, 1335, 1251, 1, 0, 0, 0, 1335, 1262, 1, 0, 0, 0, 1335, 1271, 1, 0, 0, 0, 1335, 1278, 1, 0, 0, 0, 1335, 1280, 1, 0, 0, 0, 1335, 1287, 1, 0, 0, 0, 1335, 1309, 1, 0, 0, 0, 1335, 1321, 1, 0, 0, 0, 1335, 1328, 1, 0, 0, 0, 1336, 5, 1, 0, 0, 0, 1337, 1340, 3, 386, 193, 0, 1338, 1340, 5, 168, 0, 0, 1339, 1337, 1, 0, 0, 0, 1339, 1338, 1, 0, 0, 0, 1340, 7, 1, 0, 0, 0, 1341, 1342, 3, 378, 189, 0, 1342, 9, 1, 0, 0, 0, 1343, 1344, 3, 380, 190, 0, 1344, 11, 1, 0, 0, 0, 1345, 1346, 5, 59, 0, 0, 1346, 1514, 5, 252, 0, 0, 1347, 1348, 5, 96, 0, 0, 1348, 1514, 5, 252, 0, 0, 1349, 1351, 5, 129, 0, 0, 1350, 1352, 5, 252, 0, 0, 1351, 1350, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1514, 1, 0, 0, 0, 1353, 1355, 5, 248, 0, 0, 1354, 1356, 5, 252, 0, 0, 1355, 1354, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1514, 1, 0, 0, 0, 1357, 1358, 5, 272, 0, 0, 1358, 1514, 5, 129, 0, 0, 1359, 1360, 5, 272, 0, 0, 1360, 1362, 5, 252, 0, 0, 1361, 1363, 5, 129, 0, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1514, 1, 0, 0, 0, 1364, 1365, 5, 272, 0, 0, 1365, 1514, 5, 227, 0, 0, 1366, 1367, 5, 272, 0, 0, 1367, 1514, 5, 253, 0, 0, 1368, 1369, 5, 272, 0, 0, 1369, 1370, 5, 62, 0, 0, 1370, 1514, 5, 253, 0, 0, 1371, 1372, 5, 107, 0, 0, 1372, 1514, 5, 292, 0, 0, 1373, 1374, 5, 139, 0, 0, 1374, 1514, 5, 292, 0, 0, 1375, 1376, 5, 272, 0, 0, 1376, 1514, 5, 54, 0, 0, 1377, 1378, 5, 272, 0, 0, 1378, 1379, 5, 59, 0, 0, 1379, 1514, 5, 292, 0, 0, 1380, 1381, 5, 272, 0, 0, 1381, 1514, 5, 312, 0, 0, 1382, 1383, 5, 272, 0, 0, 1383, 1514, 5, 143, 0, 0, 1384, 1385, 5, 272, 0, 0, 1385, 1514, 5, 171, 0, 0, 1386, 1387, 5, 59, 0, 0, 1387, 1514, 5, 142, 0, 0, 1388, 1389, 5, 96, 0, 0, 1389, 1514, 5, 142, 0, 0, 1390, 1391, 5, 11, 0, 0, 1391, 1514, 5, 142, 0, 0, 1392, 1393, 5, 170, 0, 0, 1393, 1514, 5, 292, 0, 0, 1394, 1395, 5, 170, 0, 0, 1395, 1514, 5, 72, 0, 0, 1396, 1397, 5, 325, 0, 0, 1397, 1514, 5, 292, 0, 0, 1398, 1399, 5, 325, 0, 0, 1399, 1514, 5, 72, 0, 0, 1400, 1401, 5, 59, 0, 0, 1401, 1402, 5, 297, 0, 0, 1402, 1514, 5, 174, 0, 0, 1403, 1404, 5, 96, 0, 0, 1404, 1405, 5, 297, 0, 0, 1405, 1514, 5, 174, 0, 0, 1406, 1407, 5, 11, 0, 0, 1407, 1408, 5, 292, 0, 0, 1408, 1409, 3, 84, 42, 0, 1409, 1410, 5, 196, 0, 0, 1410, 1411, 5, 45, 0, 0, 1411, 1514, 1, 0, 0, 0, 1412, 1413, 5, 11, 0, 0, 1413, 1414, 5, 292, 0, 0, 1414, 1415, 3, 84, 42, 0, 1415, 1416, 5, 45, 0, 0, 1416, 1417, 5, 31, 0, 0, 1417, 1514, 1, 0, 0, 0, 1418, 1419, 5, 11, 0, 0, 1419, 1420, 5, 292, 0, 0, 1420, 1421, 3, 84, 42, 0, 1421, 1422, 5, 196, 0, 0, 1422, 1423, 5, 278, 0, 0, 1423, 1514, 1, 0, 0, 0, 1424, 1425, 5, 11, 0, 0, 1425, 1426, 5, 292, 0, 0, 1426, 1427, 3, 84, 42, 0, 1427, 1428, 5, 274, 0, 0, 1428, 1429, 5, 31, 0, 0, 1429, 1514, 1, 0, 0, 0, 1430, 1431, 5, 11, 0, 0, 1431, 1432, 5, 292, 0, 0, 1432, 1433, 3, 84, 42, 0, 1433, 1434, 5, 196, 0, 0, 1434, 1435, 5, 274, 0, 0, 1435, 1514, 1, 0, 0, 0, 1436, 1437, 5, 11, 0, 0, 1437, 1438, 5, 292, 0, 0, 1438, 1439, 3, 84, 42, 0, 1439, 1440, 5, 196, 0, 0, 1440, 1441, 5, 282, 0, 0, 1441, 1442, 5, 20, 0, 0, 1442, 1443, 5, 89, 0, 0, 1443, 1514, 1, 0, 0, 0, 1444, 1445, 5, 11, 0, 0, 1445, 1446, 5, 292, 0, 0, 1446, 1447, 3, 84, 42, 0, 1447, 1448, 5, 268, 0, 0, 1448, 1449, 5, 274, 0, 0, 1449, 1450, 5, 169, 0, 0, 1450, 1514, 1, 0, 0, 0, 1451, 1452, 5, 11, 0, 0, 1452, 1453, 5, 292, 0, 0, 1453, 1454, 3, 84, 42, 0, 1454, 1455, 5, 103, 0, 0, 1455, 1456, 5, 216, 0, 0, 1456, 1514, 1, 0, 0, 0, 1457, 1458, 5, 11, 0, 0, 1458, 1459, 5, 292, 0, 0, 1459, 1460, 3, 84, 42, 0, 1460, 1461, 5, 18, 0, 0, 1461, 1462, 5, 216, 0, 0, 1462, 1514, 1, 0, 0, 0, 1463, 1464, 5, 11, 0, 0, 1464, 1465, 5, 292, 0, 0, 1465, 1466, 3, 84, 42, 0, 1466, 1467, 5, 319, 0, 0, 1467, 1468, 5, 216, 0, 0, 1468, 1514, 1, 0, 0, 0, 1469, 1470, 5, 11, 0, 0, 1470, 1471, 5, 292, 0, 0, 1471, 1472, 3, 84, 42, 0, 1472, 1473, 5, 309, 0, 0, 1473, 1514, 1, 0, 0, 0, 1474, 1475, 5, 11, 0, 0, 1475, 1476, 5, 292, 0, 0, 1476, 1478, 3, 84, 42, 0, 1477, 1479, 3, 32, 16, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1481, 5, 53, 0, 0, 1481, 1514, 1, 0, 0, 0, 1482, 1483, 5, 11, 0, 0, 1483, 1484, 5, 292, 0, 0, 1484, 1486, 3, 84, 42, 0, 1485, 1487, 3, 32, 16, 0, 1486, 1485, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, 5, 56, 0, 0, 1489, 1514, 1, 0, 0, 0, 1490, 1491, 5, 11, 0, 0, 1491, 1492, 5, 292, 0, 0, 1492, 1494, 3, 84, 42, 0, 1493, 1495, 3, 32, 16, 0, 1494, 1493, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 5, 268, 0, 0, 1497, 1498, 5, 115, 0, 0, 1498, 1514, 1, 0, 0, 0, 1499, 1500, 5, 11, 0, 0, 1500, 1501, 5, 292, 0, 0, 1501, 1503, 3, 84, 42, 0, 1502, 1504, 3, 32, 16, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1506, 5, 243, 0, 0, 1506, 1507, 5, 50, 0, 0, 1507, 1514, 1, 0, 0, 0, 1508, 1509, 5, 280, 0, 0, 1509, 1514, 5, 311, 0, 0, 1510, 1514, 5, 52, 0, 0, 1511, 1514, 5, 254, 0, 0, 1512, 1514, 5, 88, 0, 0, 1513, 1345, 1, 0, 0, 0, 1513, 1347, 1, 0, 0, 0, 1513, 1349, 1, 0, 0, 0, 1513, 1353, 1, 0, 0, 0, 1513, 1357, 1, 0, 0, 0, 1513, 1359, 1, 0, 0, 0, 1513, 1364, 1, 0, 0, 0, 1513, 1366, 1, 0, 0, 0, 1513, 1368, 1, 0, 0, 0, 1513, 1371, 1, 0, 0, 0, 1513, 1373, 1, 0, 0, 0, 1513, 1375, 1, 0, 0, 0, 1513, 1377, 1, 0, 0, 0, 1513, 1380, 1, 0, 0, 0, 1513, 1382, 1, 0, 0, 0, 1513, 1384, 1, 0, 0, 0, 1513, 1386, 1, 0, 0, 0, 1513, 1388, 1, 0, 0, 0, 1513, 1390, 1, 0, 0, 0, 1513, 1392, 1, 0, 0, 0, 1513, 1394, 1, 0, 0, 0, 1513, 1396, 1, 0, 0, 0, 1513, 1398, 1, 0, 0, 0, 1513, 1400, 1, 0, 0, 0, 1513, 1403, 1, 0, 0, 0, 1513, 1406, 1, 0, 0, 0, 1513, 1412, 1, 0, 0, 0, 1513, 1418, 1, 0, 0, 0, 1513, 1424, 1, 0, 0, 0, 1513, 1430, 1, 0, 0, 0, 1513, 1436, 1, 0, 0, 0, 1513, 1444, 1, 0, 0, 0, 1513, 1451, 1, 0, 0, 0, 1513, 1457, 1, 0, 0, 0, 1513, 1463, 1, 0, 0, 0, 1513, 1469, 1, 0, 0, 0, 1513, 1474, 1, 0, 0, 0, 1513, 1482, 1, 0, 0, 0, 1513, 1490, 1, 0, 0, 0, 1513, 1499, 1, 0, 0, 0, 1513, 1508, 1, 0, 0, 0, 1513, 1510, 1, 0, 0, 0, 1513, 1511, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 13, 1, 0, 0, 0, 1515, 1517, 5, 59, 0, 0, 1516, 1518, 5, 297, 0, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1520, 1, 0, 0, 0, 1519, 1521, 5, 109, 0, 0, 1520, 1519, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1524, 5, 292, 0, 0, 1523, 1525, 3, 188, 94, 0, 1524, 1523, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1527, 3, 82, 41, 0, 1527, 15, 1, 0, 0, 0, 1528, 1529, 5, 59, 0, 0, 1529, 1531, 5, 207, 0, 0, 1530, 1528, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 5, 243, 0, 0, 1533, 1534, 5, 292, 0, 0, 1534, 1535, 3, 82, 41, 0, 1535, 17, 1, 0, 0, 0, 1536, 1537, 5, 45, 0, 0, 1537, 1538, 5, 31, 0, 0, 1538, 1542, 3, 210, 105, 0, 1539, 1540, 5, 278, 0, 0, 1540, 1541, 5, 31, 0, 0, 1541, 1543, 3, 214, 107, 0, 1542, 1539, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1545, 5, 152, 0, 0, 1545, 1546, 5, 381, 0, 0, 1546, 1547, 5, 30, 0, 0, 1547, 19, 1, 0, 0, 0, 1548, 1549, 5, 274, 0, 0, 1549, 1550, 5, 31, 0, 0, 1550, 1551, 3, 210, 105, 0, 1551, 1554, 5, 202, 0, 0, 1552, 1555, 3, 64, 32, 0, 1553, 1555, 3, 66, 33, 0, 1554, 1552, 1, 0, 0, 0, 1554, 1553, 1, 0, 0, 0, 1555, 1559, 1, 0, 0, 0, 1556, 1557, 5, 282, 0, 0, 1557, 1558, 5, 20, 0, 0, 1558, 1560, 5, 89, 0, 0, 1559, 1556, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 21, 1, 0, 0, 0, 1561, 1562, 5, 169, 0, 0, 1562, 1563, 3, 386, 193, 0, 1563, 23, 1, 0, 0, 0, 1564, 1565, 5, 51, 0, 0, 1565, 1566, 3, 386, 193, 0, 1566, 25, 1, 0, 0, 0, 1567, 1569, 3, 44, 22, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 3, 102, 51, 0, 1571, 1572, 3, 98, 49, 0, 1572, 27, 1, 0, 0, 0, 1573, 1574, 5, 147, 0, 0, 1574, 1576, 5, 215, 0, 0, 1575, 1577, 5, 292, 0, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1583, 3, 84, 42, 0, 1579, 1581, 3, 32, 16, 0, 1580, 1582, 3, 188, 94, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1584, 1, 0, 0, 0, 1583, 1579, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1591, 1, 0, 0, 0, 1585, 1586, 5, 31, 0, 0, 1586, 1592, 5, 188, 0, 0, 1587, 1588, 5, 2, 0, 0, 1588, 1589, 3, 92, 46, 0, 1589, 1590, 5, 3, 0, 0, 1590, 1592, 1, 0, 0, 0, 1591, 1585, 1, 0, 0, 0, 1591, 1587, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1650, 1, 0, 0, 0, 1593, 1594, 5, 147, 0, 0, 1594, 1596, 5, 152, 0, 0, 1595, 1597, 5, 292, 0, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1600, 3, 84, 42, 0, 1599, 1601, 3, 32, 16, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1603, 1, 0, 0, 0, 1602, 1604, 3, 188, 94, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1611, 1, 0, 0, 0, 1605, 1606, 5, 31, 0, 0, 1606, 1612, 5, 188, 0, 0, 1607, 1608, 5, 2, 0, 0, 1608, 1609, 3, 92, 46, 0, 1609, 1610, 5, 3, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1605, 1, 0, 0, 0, 1611, 1607, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1650, 1, 0, 0, 0, 1613, 1614, 5, 147, 0, 0, 1614, 1616, 5, 152, 0, 0, 1615, 1617, 5, 292, 0, 0, 1616, 1615, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 3, 84, 42, 0, 1619, 1620, 5, 243, 0, 0, 1620, 1621, 3, 136, 68, 0, 1621, 1650, 1, 0, 0, 0, 1622, 1623, 5, 147, 0, 0, 1623, 1625, 5, 215, 0, 0, 1624, 1626, 5, 168, 0, 0, 1625, 1624, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1628, 5, 90, 0, 0, 1628, 1630, 3, 386, 193, 0, 1629, 1631, 3, 240, 120, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 1, 0, 0, 0, 1632, 1634, 3, 68, 34, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1650, 1, 0, 0, 0, 1635, 1636, 5, 147, 0, 0, 1636, 1638, 5, 215, 0, 0, 1637, 1639, 5, 168, 0, 0, 1638, 1637, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1642, 5, 90, 0, 0, 1641, 1643, 3, 386, 193, 0, 1642, 1641, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1647, 3, 48, 24, 0, 1645, 1646, 5, 206, 0, 0, 1646, 1648, 3, 52, 26, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1650, 1, 0, 0, 0, 1649, 1573, 1, 0, 0, 0, 1649, 1593, 1, 0, 0, 0, 1649, 1613, 1, 0, 0, 0, 1649, 1622, 1, 0, 0, 0, 1649, 1635, 1, 0, 0, 0, 1650, 29, 1, 0, 0, 0, 1651, 1653, 3, 32, 16, 0, 1652, 1654, 3, 22, 11, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 31, 1, 0, 0, 0, 1655, 1656, 5, 216, 0, 0, 1656, 1657, 5, 2, 0, 0, 1657, 1662, 3, 34, 17, 0, 1658, 1659, 5, 4, 0, 0, 1659, 1661, 3, 34, 17, 0, 1660, 1658, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1665, 1666, 5, 3, 0, 0, 1666, 33, 1, 0, 0, 0, 1667, 1670, 3, 374, 187, 0, 1668, 1669, 5, 351, 0, 0, 1669, 1671, 3, 286, 143, 0, 1670, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1677, 1, 0, 0, 0, 1672, 1673, 3, 374, 187, 0, 1673, 1674, 5, 351, 0, 0, 1674, 1675, 5, 82, 0, 0, 1675, 1677, 1, 0, 0, 0, 1676, 1667, 1, 0, 0, 0, 1676, 1672, 1, 0, 0, 0, 1677, 35, 1, 0, 0, 0, 1678, 1679, 7, 11, 0, 0, 1679, 37, 1, 0, 0, 0, 1680, 1681, 7, 12, 0, 0, 1681, 39, 1, 0, 0, 0, 1682, 1688, 3, 96, 48, 0, 1683, 1688, 3, 386, 193, 0, 1684, 1688, 3, 288, 144, 0, 1685, 1688, 3, 290, 145, 0, 1686, 1688, 3, 292, 146, 0, 1687, 1682, 1, 0, 0, 0, 1687, 1683, 1, 0, 0, 0, 1687, 1684, 1, 0, 0, 0, 1687, 1685, 1, 0, 0, 0, 1687, 1686, 1, 0, 0, 0, 1688, 41, 1, 0, 0, 0, 1689, 1694, 3, 374, 187, 0, 1690, 1691, 5, 5, 0, 0, 1691, 1693, 3, 374, 187, 0, 1692, 1690, 1, 0, 0, 0, 1693, 1696, 1, 0, 0, 0, 1694, 1692, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 43, 1, 0, 0, 0, 1696, 1694, 1, 0, 0, 0, 1697, 1698, 5, 345, 0, 0, 1698, 1703, 3, 46, 23, 0, 1699, 1700, 5, 4, 0, 0, 1700, 1702, 3, 46, 23, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 45, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1708, 3, 370, 185, 0, 1707, 1709, 3, 210, 105, 0, 1708, 1707, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1711, 1, 0, 0, 0, 1710, 1712, 5, 20, 0, 0, 1711, 1710, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 5, 2, 0, 0, 1714, 1715, 3, 26, 13, 0, 1715, 1716, 5, 3, 0, 0, 1716, 47, 1, 0, 0, 0, 1717, 1718, 5, 331, 0, 0, 1718, 1719, 3, 244, 122, 0, 1719, 49, 1, 0, 0, 0, 1720, 1721, 5, 206, 0, 0, 1721, 1734, 3, 60, 30, 0, 1722, 1723, 5, 217, 0, 0, 1723, 1724, 5, 31, 0, 0, 1724, 1734, 3, 258, 129, 0, 1725, 1734, 3, 20, 10, 0, 1726, 1734, 3, 18, 9, 0, 1727, 1734, 3, 240, 120, 0, 1728, 1734, 3, 68, 34, 0, 1729, 1734, 3, 22, 11, 0, 1730, 1734, 3, 24, 12, 0, 1731, 1732, 5, 296, 0, 0, 1732, 1734, 3, 52, 26, 0, 1733, 1720, 1, 0, 0, 0, 1733, 1722, 1, 0, 0, 0, 1733, 1725, 1, 0, 0, 0, 1733, 1726, 1, 0, 0, 0, 1733, 1727, 1, 0, 0, 0, 1733, 1728, 1, 0, 0, 0, 1733, 1729, 1, 0, 0, 0, 1733, 1730, 1, 0, 0, 0, 1733, 1731, 1, 0, 0, 0, 1734, 1737, 1, 0, 0, 0, 1735, 1733, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 51, 1, 0, 0, 0, 1737, 1735, 1, 0, 0, 0, 1738, 1739, 5, 2, 0, 0, 1739, 1744, 3, 54, 27, 0, 1740, 1741, 5, 4, 0, 0, 1741, 1743, 3, 54, 27, 0, 1742, 1740, 1, 0, 0, 0, 1743, 1746, 1, 0, 0, 0, 1744, 1742, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1747, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 1748, 5, 3, 0, 0, 1748, 53, 1, 0, 0, 0, 1749, 1754, 3, 56, 28, 0, 1750, 1752, 5, 351, 0, 0, 1751, 1750, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1755, 3, 58, 29, 0, 1754, 1751, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 55, 1, 0, 0, 0, 1756, 1761, 3, 374, 187, 0, 1757, 1758, 5, 5, 0, 0, 1758, 1760, 3, 374, 187, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1766, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1766, 3, 386, 193, 0, 1765, 1756, 1, 0, 0, 0, 1765, 1764, 1, 0, 0, 0, 1766, 57, 1, 0, 0, 0, 1767, 1772, 5, 381, 0, 0, 1768, 1772, 5, 383, 0, 0, 1769, 1772, 3, 294, 147, 0, 1770, 1772, 3, 386, 193, 0, 1771, 1767, 1, 0, 0, 0, 1771, 1768, 1, 0, 0, 0, 1771, 1769, 1, 0, 0, 0, 1771, 1770, 1, 0, 0, 0, 1772, 59, 1, 0, 0, 0, 1773, 1774, 5, 2, 0, 0, 1774, 1779, 3, 62, 31, 0, 1775, 1776, 5, 4, 0, 0, 1776, 1778, 3, 62, 31, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1782, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1783, 5, 3, 0, 0, 1783, 61, 1, 0, 0, 0, 1784, 1789, 3, 56, 28, 0, 1785, 1787, 5, 351, 0, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1790, 3, 266, 133, 0, 1789, 1786, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 63, 1, 0, 0, 0, 1791, 1792, 5, 2, 0, 0, 1792, 1797, 3, 286, 143, 0, 1793, 1794, 5, 4, 0, 0, 1794, 1796, 3, 286, 143, 0, 1795, 1793, 1, 0, 0, 0, 1796, 1799, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1800, 1801, 5, 3, 0, 0, 1801, 65, 1, 0, 0, 0, 1802, 1803, 5, 2, 0, 0, 1803, 1808, 3, 64, 32, 0, 1804, 1805, 5, 4, 0, 0, 1805, 1807, 3, 64, 32, 0, 1806, 1804, 1, 0, 0, 0, 1807, 1810, 1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1811, 1, 0, 0, 0, 1810, 1808, 1, 0, 0, 0, 1811, 1812, 5, 3, 0, 0, 1812, 67, 1, 0, 0, 0, 1813, 1814, 5, 282, 0, 0, 1814, 1815, 5, 20, 0, 0, 1815, 1820, 3, 70, 35, 0, 1816, 1817, 5, 282, 0, 0, 1817, 1818, 5, 31, 0, 0, 1818, 1820, 3, 72, 36, 0, 1819, 1813, 1, 0, 0, 0, 1819, 1816, 1, 0, 0, 0, 1820, 69, 1, 0, 0, 0, 1821, 1822, 5, 146, 0, 0, 1822, 1823, 3, 386, 193, 0, 1823, 1824, 5, 211, 0, 0, 1824, 1825, 3, 386, 193, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1828, 3, 374, 187, 0, 1827, 1821, 1, 0, 0, 0, 1827, 1826, 1, 0, 0, 0, 1828, 71, 1, 0, 0, 0, 1829, 1833, 3, 386, 193, 0, 1830, 1831, 5, 345, 0, 0, 1831, 1832, 5, 266, 0, 0, 1832, 1834, 3, 52, 26, 0, 1833, 1830, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 73, 1, 0, 0, 0, 1835, 1836, 3, 374, 187, 0, 1836, 1837, 3, 386, 193, 0, 1837, 75, 1, 0, 0, 0, 1838, 1839, 3, 28, 14, 0, 1839, 1840, 3, 26, 13, 0, 1840, 1895, 1, 0, 0, 0, 1841, 1843, 3, 144, 72, 0, 1842, 1844, 3, 100, 50, 0, 1843, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1895, 1, 0, 0, 0, 1847, 1848, 5, 84, 0, 0, 1848, 1849, 5, 123, 0, 0, 1849, 1850, 3, 84, 42, 0, 1850, 1852, 3, 238, 119, 0, 1851, 1853, 3, 136, 68, 0, 1852, 1851, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1895, 1, 0, 0, 0, 1854, 1855, 5, 328, 0, 0, 1855, 1856, 3, 84, 42, 0, 1856, 1857, 3, 238, 119, 0, 1857, 1859, 3, 118, 59, 0, 1858, 1860, 3, 136, 68, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1895, 1, 0, 0, 0, 1861, 1862, 5, 178, 0, 0, 1862, 1863, 5, 152, 0, 0, 1863, 1864, 3, 84, 42, 0, 1864, 1865, 3, 238, 119, 0, 1865, 1871, 5, 331, 0, 0, 1866, 1872, 3, 96, 48, 0, 1867, 1868, 5, 2, 0, 0, 1868, 1869, 3, 26, 13, 0, 1869, 1870, 5, 3, 0, 0, 1870, 1872, 1, 0, 0, 0, 1871, 1866, 1, 0, 0, 0, 1871, 1867, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1874, 3, 238, 119, 0, 1874, 1875, 5, 202, 0, 0, 1875, 1879, 3, 274, 137, 0, 1876, 1878, 3, 120, 60, 0, 1877, 1876, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1885, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1884, 3, 122, 61, 0, 1883, 1882, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1891, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1890, 3, 124, 62, 0, 1889, 1888, 1, 0, 0, 0, 1890, 1893, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1895, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1838, 1, 0, 0, 0, 1894, 1841, 1, 0, 0, 0, 1894, 1847, 1, 0, 0, 0, 1894, 1854, 1, 0, 0, 0, 1894, 1861, 1, 0, 0, 0, 1895, 77, 1, 0, 0, 0, 1896, 1897, 3, 96, 48, 0, 1897, 79, 1, 0, 0, 0, 1898, 1899, 3, 96, 48, 0, 1899, 81, 1, 0, 0, 0, 1900, 1901, 3, 250, 125, 0, 1901, 83, 1, 0, 0, 0, 1902, 1903, 3, 250, 125, 0, 1903, 85, 1, 0, 0, 0, 1904, 1905, 3, 252, 126, 0, 1905, 87, 1, 0, 0, 0, 1906, 1907, 3, 252, 126, 0, 1907, 89, 1, 0, 0, 0, 1908, 1909, 3, 244, 122, 0, 1909, 91, 1, 0, 0, 0, 1910, 1915, 3, 90, 45, 0, 1911, 1912, 5, 4, 0, 0, 1912, 1914, 3, 90, 45, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1917, 1, 0, 0, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 93, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1918, 1919, 3, 370, 185, 0, 1919, 95, 1, 0, 0, 0, 1920, 1921, 5, 136, 0, 0, 1921, 1922, 5, 2, 0, 0, 1922, 1923, 3, 266, 133, 0, 1923, 1924, 5, 3, 0, 0, 1924, 1927, 1, 0, 0, 0, 1925, 1927, 3, 244, 122, 0, 1926, 1920, 1, 0, 0, 0, 1926, 1925, 1, 0, 0, 0, 1927, 97, 1, 0, 0, 0, 1928, 1929, 5, 208, 0, 0, 1929, 1930, 5, 31, 0, 0, 1930, 1935, 3, 106, 53, 0, 1931, 1932, 5, 4, 0, 0, 1932, 1934, 3, 106, 53, 0, 1933, 1931, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1939, 1, 0, 0, 0, 1937, 1935, 1, 0, 0, 0, 1938, 1928, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1950, 1, 0, 0, 0, 1940, 1941, 5, 44, 0, 0, 1941, 1942, 5, 31, 0, 0, 1942, 1947, 3, 266, 133, 0, 1943, 1944, 5, 4, 0, 0, 1944, 1946, 3, 266, 133, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1949, 1, 0, 0, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1950, 1940, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1962, 1, 0, 0, 0, 1952, 1953, 5, 93, 0, 0, 1953, 1954, 5, 31, 0, 0, 1954, 1959, 3, 266, 133, 0, 1955, 1956, 5, 4, 0, 0, 1956, 1958, 3, 266, 133, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1961, 1, 0, 0, 0, 1959, 1957, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1963, 1, 0, 0, 0, 1961, 1959, 1, 0, 0, 0, 1962, 1952, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1974, 1, 0, 0, 0, 1964, 1965, 5, 277, 0, 0, 1965, 1966, 5, 31, 0, 0, 1966, 1971, 3, 106, 53, 0, 1967, 1968, 5, 4, 0, 0, 1968, 1970, 3, 106, 53, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1973, 1, 0, 0, 0, 1971, 1969, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1975, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1974, 1964, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1978, 3, 350, 175, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1984, 1, 0, 0, 0, 1979, 1982, 5, 164, 0, 0, 1980, 1983, 5, 10, 0, 0, 1981, 1983, 3, 266, 133, 0, 1982, 1980, 1, 0, 0, 0, 1982, 1981, 1, 0, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1979, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1988, 1, 0, 0, 0, 1986, 1987, 5, 201, 0, 0, 1987, 1989, 3, 266, 133, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 99, 1, 0, 0, 0, 1990, 1991, 3, 28, 14, 0, 1991, 1992, 3, 110, 55, 0, 1992, 101, 1, 0, 0, 0, 1993, 1994, 6, 51, -1, 0, 1994, 1995, 3, 104, 52, 0, 1995, 2016, 1, 0, 0, 0, 1996, 1997, 10, 3, 0, 0, 1997, 1999, 7, 13, 0, 0, 1998, 2000, 3, 194, 97, 0, 1999, 1998, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2015, 3, 102, 51, 4, 2002, 2003, 10, 2, 0, 0, 2003, 2005, 5, 148, 0, 0, 2004, 2006, 3, 194, 97, 0, 2005, 2004, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2015, 3, 102, 51, 3, 2008, 2009, 10, 1, 0, 0, 2009, 2011, 7, 14, 0, 0, 2010, 2012, 3, 194, 97, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 3, 102, 51, 2, 2014, 1996, 1, 0, 0, 0, 2014, 2002, 1, 0, 0, 0, 2014, 2008, 1, 0, 0, 0, 2015, 2018, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 103, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2029, 3, 112, 56, 0, 2020, 2029, 3, 108, 54, 0, 2021, 2022, 5, 292, 0, 0, 2022, 2029, 3, 84, 42, 0, 2023, 2029, 3, 224, 112, 0, 2024, 2025, 5, 2, 0, 0, 2025, 2026, 3, 26, 13, 0, 2026, 2027, 5, 3, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2019, 1, 0, 0, 0, 2028, 2020, 1, 0, 0, 0, 2028, 2021, 1, 0, 0, 0, 2028, 2023, 1, 0, 0, 0, 2028, 2024, 1, 0, 0, 0, 2029, 105, 1, 0, 0, 0, 2030, 2033, 3, 90, 45, 0, 2031, 2033, 3, 266, 133, 0, 2032, 2030, 1, 0, 0, 0, 2032, 2031, 1, 0, 0, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2036, 7, 15, 0, 0, 2035, 2034, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2039, 1, 0, 0, 0, 2037, 2038, 5, 198, 0, 0, 2038, 2040, 7, 16, 0, 0, 2039, 2037, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 107, 1, 0, 0, 0, 2041, 2043, 3, 144, 72, 0, 2042, 2044, 3, 110, 55, 0, 2043, 2042, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2043, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 109, 1, 0, 0, 0, 2047, 2049, 3, 114, 57, 0, 2048, 2050, 3, 136, 68, 0, 2049, 2048, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 3, 98, 49, 0, 2052, 2075, 1, 0, 0, 0, 2053, 2057, 3, 116, 58, 0, 2054, 2056, 3, 192, 96, 0, 2055, 2054, 1, 0, 0, 0, 2056, 2059, 1, 0, 0, 0, 2057, 2055, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2061, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2060, 2062, 3, 136, 68, 0, 2061, 2060, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2064, 1, 0, 0, 0, 2063, 2065, 3, 150, 75, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2067, 1, 0, 0, 0, 2066, 2068, 3, 138, 69, 0, 2067, 2066, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2070, 1, 0, 0, 0, 2069, 2071, 3, 350, 175, 0, 2070, 2069, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2073, 3, 98, 49, 0, 2073, 2075, 1, 0, 0, 0, 2074, 2047, 1, 0, 0, 0, 2074, 2053, 1, 0, 0, 0, 2075, 111, 1, 0, 0, 0, 2076, 2078, 3, 114, 57, 0, 2077, 2079, 3, 144, 72, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2083, 1, 0, 0, 0, 2080, 2082, 3, 192, 96, 0, 2081, 2080, 1, 0, 0, 0, 2082, 2085, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2087, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2086, 2088, 3, 136, 68, 0, 2087, 2086, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2091, 3, 150, 75, 0, 2090, 2089, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2093, 1, 0, 0, 0, 2092, 2094, 3, 138, 69, 0, 2093, 2092, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2097, 3, 350, 175, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2121, 1, 0, 0, 0, 2098, 2100, 3, 116, 58, 0, 2099, 2101, 3, 144, 72, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2105, 1, 0, 0, 0, 2102, 2104, 3, 192, 96, 0, 2103, 2102, 1, 0, 0, 0, 2104, 2107, 1, 0, 0, 0, 2105, 2103, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2109, 1, 0, 0, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2110, 3, 136, 68, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 150, 75, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2116, 3, 138, 69, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2119, 3, 350, 175, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2076, 1, 0, 0, 0, 2120, 2098, 1, 0, 0, 0, 2121, 113, 1, 0, 0, 0, 2122, 2123, 5, 262, 0, 0, 2123, 2124, 5, 313, 0, 0, 2124, 2126, 5, 2, 0, 0, 2125, 2127, 3, 194, 97, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 3, 272, 136, 0, 2129, 2130, 5, 3, 0, 0, 2130, 2142, 1, 0, 0, 0, 2131, 2133, 5, 176, 0, 0, 2132, 2134, 3, 194, 97, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2142, 3, 272, 136, 0, 2136, 2138, 5, 237, 0, 0, 2137, 2139, 3, 194, 97, 0, 2138, 2137, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 3, 272, 136, 0, 2141, 2122, 1, 0, 0, 0, 2141, 2131, 1, 0, 0, 0, 2141, 2136, 1, 0, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2145, 3, 240, 120, 0, 2144, 2143, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2148, 1, 0, 0, 0, 2146, 2147, 5, 235, 0, 0, 2147, 2149, 3, 386, 193, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2151, 5, 331, 0, 0, 2151, 2164, 3, 386, 193, 0, 2152, 2162, 5, 20, 0, 0, 2153, 2163, 3, 212, 106, 0, 2154, 2163, 3, 332, 166, 0, 2155, 2158, 5, 2, 0, 0, 2156, 2159, 3, 212, 106, 0, 2157, 2159, 3, 332, 166, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2161, 5, 3, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2153, 1, 0, 0, 0, 2162, 2154, 1, 0, 0, 0, 2162, 2155, 1, 0, 0, 0, 2163, 2165, 1, 0, 0, 0, 2164, 2152, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2167, 1, 0, 0, 0, 2166, 2168, 3, 240, 120, 0, 2167, 2166, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2171, 1, 0, 0, 0, 2169, 2170, 5, 234, 0, 0, 2170, 2172, 3, 386, 193, 0, 2171, 2169, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 115, 1, 0, 0, 0, 2173, 2177, 5, 262, 0, 0, 2174, 2176, 3, 140, 70, 0, 2175, 2174, 1, 0, 0, 0, 2176, 2179, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2182, 3, 194, 97, 0, 2181, 2180, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2184, 3, 256, 128, 0, 2184, 117, 1, 0, 0, 0, 2185, 2186, 5, 268, 0, 0, 2186, 2187, 3, 132, 66, 0, 2187, 119, 1, 0, 0, 0, 2188, 2189, 5, 342, 0, 0, 2189, 2192, 5, 177, 0, 0, 2190, 2191, 5, 14, 0, 0, 2191, 2193, 3, 274, 137, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2195, 5, 299, 0, 0, 2195, 2196, 3, 126, 63, 0, 2196, 121, 1, 0, 0, 0, 2197, 2198, 5, 342, 0, 0, 2198, 2199, 5, 196, 0, 0, 2199, 2202, 5, 177, 0, 0, 2200, 2201, 5, 31, 0, 0, 2201, 2203, 5, 295, 0, 0, 2202, 2200, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2206, 1, 0, 0, 0, 2204, 2205, 5, 14, 0, 0, 2205, 2207, 3, 274, 137, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2209, 5, 299, 0, 0, 2209, 2210, 3, 128, 64, 0, 2210, 123, 1, 0, 0, 0, 2211, 2212, 5, 342, 0, 0, 2212, 2213, 5, 196, 0, 0, 2213, 2214, 5, 177, 0, 0, 2214, 2215, 5, 31, 0, 0, 2215, 2218, 5, 279, 0, 0, 2216, 2217, 5, 14, 0, 0, 2217, 2219, 3, 274, 137, 0, 2218, 2216, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2221, 5, 299, 0, 0, 2221, 2222, 3, 130, 65, 0, 2222, 125, 1, 0, 0, 0, 2223, 2231, 5, 84, 0, 0, 2224, 2225, 5, 328, 0, 0, 2225, 2226, 5, 268, 0, 0, 2226, 2231, 5, 362, 0, 0, 2227, 2228, 5, 328, 0, 0, 2228, 2229, 5, 268, 0, 0, 2229, 2231, 3, 132, 66, 0, 2230, 2223, 1, 0, 0, 0, 2230, 2224, 1, 0, 0, 0, 2230, 2227, 1, 0, 0, 0, 2231, 127, 1, 0, 0, 0, 2232, 2233, 5, 147, 0, 0, 2233, 2251, 5, 362, 0, 0, 2234, 2235, 5, 147, 0, 0, 2235, 2236, 5, 2, 0, 0, 2236, 2237, 3, 242, 121, 0, 2237, 2238, 5, 3, 0, 0, 2238, 2239, 5, 332, 0, 0, 2239, 2240, 5, 2, 0, 0, 2240, 2245, 3, 266, 133, 0, 2241, 2242, 5, 4, 0, 0, 2242, 2244, 3, 266, 133, 0, 2243, 2241, 1, 0, 0, 0, 2244, 2247, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2248, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2248, 2249, 5, 3, 0, 0, 2249, 2251, 1, 0, 0, 0, 2250, 2232, 1, 0, 0, 0, 2250, 2234, 1, 0, 0, 0, 2251, 129, 1, 0, 0, 0, 2252, 2257, 5, 84, 0, 0, 2253, 2254, 5, 328, 0, 0, 2254, 2255, 5, 268, 0, 0, 2255, 2257, 3, 132, 66, 0, 2256, 2252, 1, 0, 0, 0, 2256, 2253, 1, 0, 0, 0, 2257, 131, 1, 0, 0, 0, 2258, 2263, 3, 134, 67, 0, 2259, 2260, 5, 4, 0, 0, 2260, 2262, 3, 134, 67, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 133, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 3, 244, 122, 0, 2267, 2268, 5, 351, 0, 0, 2268, 2269, 3, 266, 133, 0, 2269, 135, 1, 0, 0, 0, 2270, 2271, 5, 343, 0, 0, 2271, 2272, 3, 274, 137, 0, 2272, 137, 1, 0, 0, 0, 2273, 2274, 5, 132, 0, 0, 2274, 2275, 3, 274, 137, 0, 2275, 139, 1, 0, 0, 0, 2276, 2277, 5, 373, 0, 0, 2277, 2284, 3, 142, 71, 0, 2278, 2280, 5, 4, 0, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2283, 3, 142, 71, 0, 2282, 2279, 1, 0, 0, 0, 2283, 2286, 1, 0, 0, 0, 2284, 2282, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2287, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2287, 2288, 5, 374, 0, 0, 2288, 141, 1, 0, 0, 0, 2289, 2303, 3, 374, 187, 0, 2290, 2291, 3, 374, 187, 0, 2291, 2292, 5, 2, 0, 0, 2292, 2297, 3, 282, 141, 0, 2293, 2294, 5, 4, 0, 0, 2294, 2296, 3, 282, 141, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2299, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2300, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2301, 5, 3, 0, 0, 2301, 2303, 1, 0, 0, 0, 2302, 2289, 1, 0, 0, 0, 2302, 2290, 1, 0, 0, 0, 2303, 143, 1, 0, 0, 0, 2304, 2305, 5, 123, 0, 0, 2305, 2310, 3, 196, 98, 0, 2306, 2307, 5, 4, 0, 0, 2307, 2309, 3, 196, 98, 0, 2308, 2306, 1, 0, 0, 0, 2309, 2312, 1, 0, 0, 0, 2310, 2308, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2316, 1, 0, 0, 0, 2312, 2310, 1, 0, 0, 0, 2313, 2315, 3, 192, 96, 0, 2314, 2313, 1, 0, 0, 0, 2315, 2318, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2321, 3, 160, 80, 0, 2320, 2319, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2323, 1, 0, 0, 0, 2322, 2324, 3, 166, 83, 0, 2323, 2322, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 145, 1, 0, 0, 0, 2325, 2326, 7, 17, 0, 0, 2326, 147, 1, 0, 0, 0, 2327, 2329, 5, 119, 0, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2331, 7, 18, 0, 0, 2331, 2332, 5, 20, 0, 0, 2332, 2333, 5, 200, 0, 0, 2333, 2342, 3, 390, 195, 0, 2334, 2336, 5, 119, 0, 0, 2335, 2334, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 7, 19, 0, 0, 2338, 2339, 5, 20, 0, 0, 2339, 2340, 5, 200, 0, 0, 2340, 2342, 3, 278, 139, 0, 2341, 2328, 1, 0, 0, 0, 2341, 2335, 1, 0, 0, 0, 2342, 149, 1, 0, 0, 0, 2343, 2344, 5, 130, 0, 0, 2344, 2345, 5, 31, 0, 0, 2345, 2350, 3, 152, 76, 0, 2346, 2347, 5, 4, 0, 0, 2347, 2349, 3, 152, 76, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2383, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2353, 2354, 5, 130, 0, 0, 2354, 2355, 5, 31, 0, 0, 2355, 2360, 3, 266, 133, 0, 2356, 2357, 5, 4, 0, 0, 2357, 2359, 3, 266, 133, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2362, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2380, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2363, 2364, 5, 345, 0, 0, 2364, 2381, 5, 255, 0, 0, 2365, 2366, 5, 345, 0, 0, 2366, 2381, 5, 61, 0, 0, 2367, 2368, 5, 131, 0, 0, 2368, 2369, 5, 270, 0, 0, 2369, 2370, 5, 2, 0, 0, 2370, 2375, 3, 158, 79, 0, 2371, 2372, 5, 4, 0, 0, 2372, 2374, 3, 158, 79, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2377, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2378, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2379, 5, 3, 0, 0, 2379, 2381, 1, 0, 0, 0, 2380, 2363, 1, 0, 0, 0, 2380, 2365, 1, 0, 0, 0, 2380, 2367, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2383, 1, 0, 0, 0, 2382, 2343, 1, 0, 0, 0, 2382, 2353, 1, 0, 0, 0, 2383, 151, 1, 0, 0, 0, 2384, 2388, 3, 90, 45, 0, 2385, 2388, 3, 154, 77, 0, 2386, 2388, 3, 266, 133, 0, 2387, 2384, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2386, 1, 0, 0, 0, 2388, 153, 1, 0, 0, 0, 2389, 2390, 7, 20, 0, 0, 2390, 2391, 5, 2, 0, 0, 2391, 2396, 3, 158, 79, 0, 2392, 2393, 5, 4, 0, 0, 2393, 2395, 3, 158, 79, 0, 2394, 2392, 1, 0, 0, 0, 2395, 2398, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2399, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2399, 2400, 5, 3, 0, 0, 2400, 2415, 1, 0, 0, 0, 2401, 2402, 5, 131, 0, 0, 2402, 2403, 5, 270, 0, 0, 2403, 2404, 5, 2, 0, 0, 2404, 2409, 3, 156, 78, 0, 2405, 2406, 5, 4, 0, 0, 2406, 2408, 3, 156, 78, 0, 2407, 2405, 1, 0, 0, 0, 2408, 2411, 1, 0, 0, 0, 2409, 2407, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2412, 1, 0, 0, 0, 2411, 2409, 1, 0, 0, 0, 2412, 2413, 5, 3, 0, 0, 2413, 2415, 1, 0, 0, 0, 2414, 2389, 1, 0, 0, 0, 2414, 2401, 1, 0, 0, 0, 2415, 155, 1, 0, 0, 0, 2416, 2419, 3, 154, 77, 0, 2417, 2419, 3, 158, 79, 0, 2418, 2416, 1, 0, 0, 0, 2418, 2417, 1, 0, 0, 0, 2419, 157, 1, 0, 0, 0, 2420, 2441, 3, 90, 45, 0, 2421, 2441, 3, 266, 133, 0, 2422, 2437, 5, 2, 0, 0, 2423, 2426, 3, 90, 45, 0, 2424, 2426, 3, 266, 133, 0, 2425, 2423, 1, 0, 0, 0, 2425, 2424, 1, 0, 0, 0, 2426, 2434, 1, 0, 0, 0, 2427, 2430, 5, 4, 0, 0, 2428, 2431, 3, 90, 45, 0, 2429, 2431, 3, 266, 133, 0, 2430, 2428, 1, 0, 0, 0, 2430, 2429, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2427, 1, 0, 0, 0, 2433, 2436, 1, 0, 0, 0, 2434, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2425, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 5, 3, 0, 0, 2440, 2420, 1, 0, 0, 0, 2440, 2421, 1, 0, 0, 0, 2440, 2422, 1, 0, 0, 0, 2441, 159, 1, 0, 0, 0, 2442, 2443, 5, 222, 0, 0, 2443, 2444, 5, 2, 0, 0, 2444, 2445, 3, 256, 128, 0, 2445, 2446, 5, 119, 0, 0, 2446, 2447, 3, 162, 81, 0, 2447, 2448, 5, 140, 0, 0, 2448, 2449, 5, 2, 0, 0, 2449, 2454, 3, 164, 82, 0, 2450, 2451, 5, 4, 0, 0, 2451, 2453, 3, 164, 82, 0, 2452, 2450, 1, 0, 0, 0, 2453, 2456, 1, 0, 0, 0, 2454, 2452, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2457, 2458, 5, 3, 0, 0, 2458, 2459, 5, 3, 0, 0, 2459, 161, 1, 0, 0, 0, 2460, 2473, 3, 374, 187, 0, 2461, 2462, 5, 2, 0, 0, 2462, 2467, 3, 374, 187, 0, 2463, 2464, 5, 4, 0, 0, 2464, 2466, 3, 374, 187, 0, 2465, 2463, 1, 0, 0, 0, 2466, 2469, 1, 0, 0, 0, 2467, 2465, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2470, 1, 0, 0, 0, 2469, 2467, 1, 0, 0, 0, 2470, 2471, 5, 3, 0, 0, 2471, 2473, 1, 0, 0, 0, 2472, 2460, 1, 0, 0, 0, 2472, 2461, 1, 0, 0, 0, 2473, 163, 1, 0, 0, 0, 2474, 2479, 3, 266, 133, 0, 2475, 2477, 5, 20, 0, 0, 2476, 2475, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2480, 3, 374, 187, 0, 2479, 2476, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 165, 1, 0, 0, 0, 2481, 2483, 5, 326, 0, 0, 2482, 2484, 3, 168, 84, 0, 2483, 2482, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 5, 2, 0, 0, 2486, 2487, 3, 170, 85, 0, 2487, 2492, 5, 3, 0, 0, 2488, 2490, 5, 20, 0, 0, 2489, 2488, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2493, 3, 374, 187, 0, 2492, 2489, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 167, 1, 0, 0, 0, 2494, 2495, 7, 21, 0, 0, 2495, 2496, 5, 198, 0, 0, 2496, 169, 1, 0, 0, 0, 2497, 2500, 3, 172, 86, 0, 2498, 2500, 3, 174, 87, 0, 2499, 2497, 1, 0, 0, 0, 2499, 2498, 1, 0, 0, 0, 2500, 171, 1, 0, 0, 0, 2501, 2502, 3, 178, 89, 0, 2502, 2503, 5, 119, 0, 0, 2503, 2504, 3, 180, 90, 0, 2504, 2505, 5, 140, 0, 0, 2505, 2506, 5, 2, 0, 0, 2506, 2511, 3, 182, 91, 0, 2507, 2508, 5, 4, 0, 0, 2508, 2510, 3, 182, 91, 0, 2509, 2507, 1, 0, 0, 0, 2510, 2513, 1, 0, 0, 0, 2511, 2509, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2511, 1, 0, 0, 0, 2514, 2515, 5, 3, 0, 0, 2515, 173, 1, 0, 0, 0, 2516, 2517, 5, 2, 0, 0, 2517, 2522, 3, 178, 89, 0, 2518, 2519, 5, 4, 0, 0, 2519, 2521, 3, 178, 89, 0, 2520, 2518, 1, 0, 0, 0, 2521, 2524, 1, 0, 0, 0, 2522, 2520, 1, 0, 0, 0, 2522, 2523, 1, 0, 0, 0, 2523, 2525, 1, 0, 0, 0, 2524, 2522, 1, 0, 0, 0, 2525, 2526, 5, 3, 0, 0, 2526, 2527, 5, 119, 0, 0, 2527, 2528, 3, 180, 90, 0, 2528, 2529, 5, 140, 0, 0, 2529, 2530, 5, 2, 0, 0, 2530, 2535, 3, 176, 88, 0, 2531, 2532, 5, 4, 0, 0, 2532, 2534, 3, 176, 88, 0, 2533, 2531, 1, 0, 0, 0, 2534, 2537, 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2538, 1, 0, 0, 0, 2537, 2535, 1, 0, 0, 0, 2538, 2539, 5, 3, 0, 0, 2539, 175, 1, 0, 0, 0, 2540, 2541, 5, 2, 0, 0, 2541, 2546, 3, 184, 92, 0, 2542, 2543, 5, 4, 0, 0, 2543, 2545, 3, 184, 92, 0, 2544, 2542, 1, 0, 0, 0, 2545, 2548, 1, 0, 0, 0, 2546, 2544, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2549, 1, 0, 0, 0, 2548, 2546, 1, 0, 0, 0, 2549, 2551, 5, 3, 0, 0, 2550, 2552, 3, 186, 93, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 177, 1, 0, 0, 0, 2553, 2554, 3, 374, 187, 0, 2554, 179, 1, 0, 0, 0, 2555, 2556, 3, 374, 187, 0, 2556, 181, 1, 0, 0, 0, 2557, 2559, 3, 184, 92, 0, 2558, 2560, 3, 186, 93, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 183, 1, 0, 0, 0, 2561, 2562, 3, 244, 122, 0, 2562, 185, 1, 0, 0, 0, 2563, 2565, 5, 20, 0, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2567, 3, 374, 187, 0, 2567, 187, 1, 0, 0, 0, 2568, 2569, 5, 137, 0, 0, 2569, 2570, 5, 196, 0, 0, 2570, 2571, 5, 105, 0, 0, 2571, 189, 1, 0, 0, 0, 2572, 2573, 5, 137, 0, 0, 2573, 2574, 5, 105, 0, 0, 2574, 191, 1, 0, 0, 0, 2575, 2576, 5, 158, 0, 0, 2576, 2578, 5, 337, 0, 0, 2577, 2579, 5, 210, 0, 0, 2578, 2577, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 3, 88, 44, 0, 2581, 2590, 5, 2, 0, 0, 2582, 2587, 3, 266, 133, 0, 2583, 2584, 5, 4, 0, 0, 2584, 2586, 3, 266, 133, 0, 2585, 2583, 1, 0, 0, 0, 2586, 2589, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2591, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2590, 2582, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 5, 3, 0, 0, 2593, 2605, 3, 238, 119, 0, 2594, 2596, 5, 20, 0, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2602, 3, 374, 187, 0, 2598, 2599, 5, 4, 0, 0, 2599, 2601, 3, 374, 187, 0, 2600, 2598, 1, 0, 0, 0, 2601, 2604, 1, 0, 0, 0, 2602, 2600, 1, 0, 0, 0, 2602, 2603, 1, 0, 0, 0, 2603, 2606, 1, 0, 0, 0, 2604, 2602, 1, 0, 0, 0, 2605, 2595, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 193, 1, 0, 0, 0, 2607, 2608, 7, 22, 0, 0, 2608, 195, 1, 0, 0, 0, 2609, 2621, 3, 84, 42, 0, 2610, 2612, 5, 158, 0, 0, 2611, 2610, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2617, 3, 222, 111, 0, 2614, 2616, 3, 198, 99, 0, 2615, 2614, 1, 0, 0, 0, 2616, 2619, 1, 0, 0, 0, 2617, 2615, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2621, 1, 0, 0, 0, 2619, 2617, 1, 0, 0, 0, 2620, 2609, 1, 0, 0, 0, 2620, 2611, 1, 0, 0, 0, 2621, 197, 1, 0, 0, 0, 2622, 2626, 3, 200, 100, 0, 2623, 2626, 3, 160, 80, 0, 2624, 2626, 3, 166, 83, 0, 2625, 2622, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 199, 1, 0, 0, 0, 2627, 2628, 3, 202, 101, 0, 2628, 2630, 5, 155, 0, 0, 2629, 2631, 5, 158, 0, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2634, 3, 222, 111, 0, 2633, 2635, 3, 204, 102, 0, 2634, 2633, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2645, 1, 0, 0, 0, 2636, 2637, 5, 193, 0, 0, 2637, 2638, 3, 202, 101, 0, 2638, 2640, 5, 155, 0, 0, 2639, 2641, 5, 158, 0, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 3, 222, 111, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2627, 1, 0, 0, 0, 2644, 2636, 1, 0, 0, 0, 2645, 201, 1, 0, 0, 0, 2646, 2648, 5, 144, 0, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2671, 1, 0, 0, 0, 2649, 2671, 5, 60, 0, 0, 2650, 2652, 5, 161, 0, 0, 2651, 2653, 5, 210, 0, 0, 2652, 2651, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2671, 1, 0, 0, 0, 2654, 2656, 5, 161, 0, 0, 2655, 2654, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2671, 5, 263, 0, 0, 2658, 2660, 5, 249, 0, 0, 2659, 2661, 5, 210, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2671, 1, 0, 0, 0, 2662, 2664, 5, 124, 0, 0, 2663, 2665, 5, 210, 0, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2671, 1, 0, 0, 0, 2666, 2668, 5, 161, 0, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2671, 5, 15, 0, 0, 2670, 2647, 1, 0, 0, 0, 2670, 2649, 1, 0, 0, 0, 2670, 2650, 1, 0, 0, 0, 2670, 2655, 1, 0, 0, 0, 2670, 2658, 1, 0, 0, 0, 2670, 2662, 1, 0, 0, 0, 2670, 2667, 1, 0, 0, 0, 2671, 203, 1, 0, 0, 0, 2672, 2673, 5, 202, 0, 0, 2673, 2677, 3, 274, 137, 0, 2674, 2675, 5, 331, 0, 0, 2675, 2677, 3, 210, 105, 0, 2676, 2672, 1, 0, 0, 0, 2676, 2674, 1, 0, 0, 0, 2677, 205, 1, 0, 0, 0, 2678, 2679, 5, 294, 0, 0, 2679, 2681, 5, 2, 0, 0, 2680, 2682, 3, 208, 104, 0, 2681, 2680, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2688, 5, 3, 0, 0, 2684, 2685, 5, 242, 0, 0, 2685, 2686, 5, 2, 0, 0, 2686, 2687, 5, 381, 0, 0, 2687, 2689, 5, 3, 0, 0, 2688, 2684, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 207, 1, 0, 0, 0, 2690, 2692, 5, 361, 0, 0, 2691, 2690, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2694, 7, 23, 0, 0, 2694, 2715, 5, 221, 0, 0, 2695, 2696, 3, 266, 133, 0, 2696, 2697, 5, 257, 0, 0, 2697, 2715, 1, 0, 0, 0, 2698, 2699, 5, 29, 0, 0, 2699, 2700, 5, 381, 0, 0, 2700, 2701, 5, 209, 0, 0, 2701, 2702, 5, 200, 0, 0, 2702, 2711, 5, 381, 0, 0, 2703, 2709, 5, 202, 0, 0, 2704, 2710, 3, 374, 187, 0, 2705, 2706, 3, 368, 184, 0, 2706, 2707, 5, 2, 0, 0, 2707, 2708, 5, 3, 0, 0, 2708, 2710, 1, 0, 0, 0, 2709, 2704, 1, 0, 0, 0, 2709, 2705, 1, 0, 0, 0, 2710, 2712, 1, 0, 0, 0, 2711, 2703, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2715, 1, 0, 0, 0, 2713, 2715, 3, 266, 133, 0, 2714, 2691, 1, 0, 0, 0, 2714, 2695, 1, 0, 0, 0, 2714, 2698, 1, 0, 0, 0, 2714, 2713, 1, 0, 0, 0, 2715, 209, 1, 0, 0, 0, 2716, 2717, 5, 2, 0, 0, 2717, 2718, 3, 212, 106, 0, 2718, 2719, 5, 3, 0, 0, 2719, 211, 1, 0, 0, 0, 2720, 2725, 3, 370, 185, 0, 2721, 2722, 5, 4, 0, 0, 2722, 2724, 3, 370, 185, 0, 2723, 2721, 1, 0, 0, 0, 2724, 2727, 1, 0, 0, 0, 2725, 2723, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 213, 1, 0, 0, 0, 2727, 2725, 1, 0, 0, 0, 2728, 2729, 5, 2, 0, 0, 2729, 2734, 3, 216, 108, 0, 2730, 2731, 5, 4, 0, 0, 2731, 2733, 3, 216, 108, 0, 2732, 2730, 1, 0, 0, 0, 2733, 2736, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2737, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2738, 5, 3, 0, 0, 2738, 215, 1, 0, 0, 0, 2739, 2741, 3, 370, 185, 0, 2740, 2742, 7, 15, 0, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 217, 1, 0, 0, 0, 2743, 2744, 5, 2, 0, 0, 2744, 2749, 3, 220, 110, 0, 2745, 2746, 5, 4, 0, 0, 2746, 2748, 3, 220, 110, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2751, 1, 0, 0, 0, 2749, 2747, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2752, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2752, 2753, 5, 3, 0, 0, 2753, 219, 1, 0, 0, 0, 2754, 2756, 3, 374, 187, 0, 2755, 2757, 3, 24, 12, 0, 2756, 2755, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 221, 1, 0, 0, 0, 2758, 2760, 3, 96, 48, 0, 2759, 2761, 3, 148, 74, 0, 2760, 2759, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2763, 1, 0, 0, 0, 2762, 2764, 3, 206, 103, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2766, 3, 238, 119, 0, 2766, 2786, 1, 0, 0, 0, 2767, 2768, 5, 2, 0, 0, 2768, 2769, 3, 26, 13, 0, 2769, 2771, 5, 3, 0, 0, 2770, 2772, 3, 206, 103, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2774, 3, 238, 119, 0, 2774, 2786, 1, 0, 0, 0, 2775, 2776, 5, 2, 0, 0, 2776, 2777, 3, 196, 98, 0, 2777, 2779, 5, 3, 0, 0, 2778, 2780, 3, 206, 103, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2782, 3, 238, 119, 0, 2782, 2786, 1, 0, 0, 0, 2783, 2786, 3, 224, 112, 0, 2784, 2786, 3, 236, 118, 0, 2785, 2758, 1, 0, 0, 0, 2785, 2767, 1, 0, 0, 0, 2785, 2775, 1, 0, 0, 0, 2785, 2783, 1, 0, 0, 0, 2785, 2784, 1, 0, 0, 0, 2786, 223, 1, 0, 0, 0, 2787, 2788, 5, 332, 0, 0, 2788, 2793, 3, 266, 133, 0, 2789, 2790, 5, 4, 0, 0, 2790, 2792, 3, 266, 133, 0, 2791, 2789, 1, 0, 0, 0, 2792, 2795, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2796, 1, 0, 0, 0, 2795, 2793, 1, 0, 0, 0, 2796, 2797, 3, 238, 119, 0, 2797, 225, 1, 0, 0, 0, 2798, 2799, 5, 292, 0, 0, 2799, 2801, 3, 84, 42, 0, 2800, 2802, 3, 228, 114, 0, 2801, 2800, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2818, 1, 0, 0, 0, 2803, 2804, 5, 292, 0, 0, 2804, 2805, 5, 2, 0, 0, 2805, 2806, 3, 84, 42, 0, 2806, 2808, 5, 3, 0, 0, 2807, 2809, 3, 228, 114, 0, 2808, 2807, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, 0, 2809, 2818, 1, 0, 0, 0, 2810, 2811, 5, 292, 0, 0, 2811, 2812, 5, 2, 0, 0, 2812, 2813, 3, 26, 13, 0, 2813, 2815, 5, 3, 0, 0, 2814, 2816, 3, 228, 114, 0, 2815, 2814, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 1, 0, 0, 0, 2817, 2798, 1, 0, 0, 0, 2817, 2803, 1, 0, 0, 0, 2817, 2810, 1, 0, 0, 0, 2818, 227, 1, 0, 0, 0, 2819, 2820, 5, 345, 0, 0, 2820, 2821, 5, 273, 0, 0, 2821, 2839, 5, 216, 0, 0, 2822, 2823, 7, 24, 0, 0, 2823, 2836, 5, 31, 0, 0, 2824, 2825, 5, 2, 0, 0, 2825, 2830, 3, 266, 133, 0, 2826, 2827, 5, 4, 0, 0, 2827, 2829, 3, 266, 133, 0, 2828, 2826, 1, 0, 0, 0, 2829, 2832, 1, 0, 0, 0, 2830, 2828, 1, 0, 0, 0, 2830, 2831, 1, 0, 0, 0, 2831, 2833, 1, 0, 0, 0, 2832, 2830, 1, 0, 0, 0, 2833, 2834, 5, 3, 0, 0, 2834, 2837, 1, 0, 0, 0, 2835, 2837, 3, 266, 133, 0, 2836, 2824, 1, 0, 0, 0, 2836, 2835, 1, 0, 0, 0, 2837, 2839, 1, 0, 0, 0, 2838, 2819, 1, 0, 0, 0, 2838, 2822, 1, 0, 0, 0, 2839, 2856, 1, 0, 0, 0, 2840, 2841, 7, 25, 0, 0, 2841, 2854, 5, 31, 0, 0, 2842, 2843, 5, 2, 0, 0, 2843, 2848, 3, 106, 53, 0, 2844, 2845, 5, 4, 0, 0, 2845, 2847, 3, 106, 53, 0, 2846, 2844, 1, 0, 0, 0, 2847, 2850, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2851, 1, 0, 0, 0, 2850, 2848, 1, 0, 0, 0, 2851, 2852, 5, 3, 0, 0, 2852, 2855, 1, 0, 0, 0, 2853, 2855, 3, 106, 53, 0, 2854, 2842, 1, 0, 0, 0, 2854, 2853, 1, 0, 0, 0, 2855, 2857, 1, 0, 0, 0, 2856, 2840, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 229, 1, 0, 0, 0, 2858, 2859, 3, 374, 187, 0, 2859, 2860, 5, 372, 0, 0, 2860, 2861, 3, 226, 113, 0, 2861, 231, 1, 0, 0, 0, 2862, 2865, 3, 226, 113, 0, 2863, 2865, 3, 230, 115, 0, 2864, 2862, 1, 0, 0, 0, 2864, 2863, 1, 0, 0, 0, 2865, 233, 1, 0, 0, 0, 2866, 2869, 3, 232, 116, 0, 2867, 2869, 3, 270, 135, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2867, 1, 0, 0, 0, 2869, 235, 1, 0, 0, 0, 2870, 2871, 3, 364, 182, 0, 2871, 2880, 5, 2, 0, 0, 2872, 2877, 3, 234, 117, 0, 2873, 2874, 5, 4, 0, 0, 2874, 2876, 3, 234, 117, 0, 2875, 2873, 1, 0, 0, 0, 2876, 2879, 1, 0, 0, 0, 2877, 2875, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2881, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2880, 2872, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2883, 5, 3, 0, 0, 2883, 2884, 3, 238, 119, 0, 2884, 237, 1, 0, 0, 0, 2885, 2887, 5, 20, 0, 0, 2886, 2885, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2890, 3, 376, 188, 0, 2889, 2891, 3, 210, 105, 0, 2890, 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, 2886, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 239, 1, 0, 0, 0, 2894, 2895, 5, 256, 0, 0, 2895, 2896, 5, 121, 0, 0, 2896, 2897, 5, 265, 0, 0, 2897, 2901, 3, 386, 193, 0, 2898, 2899, 5, 345, 0, 0, 2899, 2900, 5, 266, 0, 0, 2900, 2902, 3, 52, 26, 0, 2901, 2898, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2944, 1, 0, 0, 0, 2903, 2904, 5, 256, 0, 0, 2904, 2905, 5, 121, 0, 0, 2905, 2915, 5, 85, 0, 0, 2906, 2907, 5, 113, 0, 0, 2907, 2908, 5, 298, 0, 0, 2908, 2909, 5, 31, 0, 0, 2909, 2913, 3, 386, 193, 0, 2910, 2911, 5, 101, 0, 0, 2911, 2912, 5, 31, 0, 0, 2912, 2914, 3, 386, 193, 0, 2913, 2910, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2916, 1, 0, 0, 0, 2915, 2906, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 2922, 1, 0, 0, 0, 2917, 2918, 5, 48, 0, 0, 2918, 2919, 5, 154, 0, 0, 2919, 2920, 5, 298, 0, 0, 2920, 2921, 5, 31, 0, 0, 2921, 2923, 3, 386, 193, 0, 2922, 2917, 1, 0, 0, 0, 2922, 2923, 1, 0, 0, 0, 2923, 2929, 1, 0, 0, 0, 2924, 2925, 5, 176, 0, 0, 2925, 2926, 5, 156, 0, 0, 2926, 2927, 5, 298, 0, 0, 2927, 2928, 5, 31, 0, 0, 2928, 2930, 3, 386, 193, 0, 2929, 2924, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2935, 1, 0, 0, 0, 2931, 2932, 5, 165, 0, 0, 2932, 2933, 5, 298, 0, 0, 2933, 2934, 5, 31, 0, 0, 2934, 2936, 3, 386, 193, 0, 2935, 2931, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2941, 1, 0, 0, 0, 2937, 2938, 5, 197, 0, 0, 2938, 2939, 5, 83, 0, 0, 2939, 2940, 5, 20, 0, 0, 2940, 2942, 3, 386, 193, 0, 2941, 2937, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2894, 1, 0, 0, 0, 2943, 2903, 1, 0, 0, 0, 2944, 241, 1, 0, 0, 0, 2945, 2950, 3, 244, 122, 0, 2946, 2947, 5, 4, 0, 0, 2947, 2949, 3, 244, 122, 0, 2948, 2946, 1, 0, 0, 0, 2949, 2952, 1, 0, 0, 0, 2950, 2948, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 243, 1, 0, 0, 0, 2952, 2950, 1, 0, 0, 0, 2953, 2958, 3, 370, 185, 0, 2954, 2955, 5, 5, 0, 0, 2955, 2957, 3, 370, 185, 0, 2956, 2954, 1, 0, 0, 0, 2957, 2960, 1, 0, 0, 0, 2958, 2956, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 245, 1, 0, 0, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2966, 3, 248, 124, 0, 2962, 2963, 5, 4, 0, 0, 2963, 2965, 3, 248, 124, 0, 2964, 2962, 1, 0, 0, 0, 2965, 2968, 1, 0, 0, 0, 2966, 2964, 1, 0, 0, 0, 2966, 2967, 1, 0, 0, 0, 2967, 247, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2969, 2972, 3, 244, 122, 0, 2970, 2971, 5, 206, 0, 0, 2971, 2973, 3, 52, 26, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 249, 1, 0, 0, 0, 2974, 2975, 3, 370, 185, 0, 2975, 2976, 5, 5, 0, 0, 2976, 2978, 1, 0, 0, 0, 2977, 2974, 1, 0, 0, 0, 2977, 2978, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2980, 3, 370, 185, 0, 2980, 251, 1, 0, 0, 0, 2981, 2982, 3, 370, 185, 0, 2982, 2983, 5, 5, 0, 0, 2983, 2985, 1, 0, 0, 0, 2984, 2981, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 3, 370, 185, 0, 2987, 253, 1, 0, 0, 0, 2988, 2991, 3, 90, 45, 0, 2989, 2991, 3, 266, 133, 0, 2990, 2988, 1, 0, 0, 0, 2990, 2989, 1, 0, 0, 0, 2991, 2999, 1, 0, 0, 0, 2992, 2994, 5, 20, 0, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2997, 1, 0, 0, 0, 2995, 2998, 3, 370, 185, 0, 2996, 2998, 3, 210, 105, 0, 2997, 2995, 1, 0, 0, 0, 2997, 2996, 1, 0, 0, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2993, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 255, 1, 0, 0, 0, 3001, 3006, 3, 254, 127, 0, 3002, 3003, 5, 4, 0, 0, 3003, 3005, 3, 254, 127, 0, 3004, 3002, 1, 0, 0, 0, 3005, 3008, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 257, 1, 0, 0, 0, 3008, 3006, 1, 0, 0, 0, 3009, 3010, 5, 2, 0, 0, 3010, 3015, 3, 260, 130, 0, 3011, 3012, 5, 4, 0, 0, 3012, 3014, 3, 260, 130, 0, 3013, 3011, 1, 0, 0, 0, 3014, 3017, 1, 0, 0, 0, 3015, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3018, 1, 0, 0, 0, 3017, 3015, 1, 0, 0, 0, 3018, 3019, 5, 3, 0, 0, 3019, 259, 1, 0, 0, 0, 3020, 3023, 3, 262, 131, 0, 3021, 3023, 3, 334, 167, 0, 3022, 3020, 1, 0, 0, 0, 3022, 3021, 1, 0, 0, 0, 3023, 261, 1, 0, 0, 0, 3024, 3038, 3, 368, 184, 0, 3025, 3026, 3, 374, 187, 0, 3026, 3027, 5, 2, 0, 0, 3027, 3032, 3, 264, 132, 0, 3028, 3029, 5, 4, 0, 0, 3029, 3031, 3, 264, 132, 0, 3030, 3028, 1, 0, 0, 0, 3031, 3034, 1, 0, 0, 0, 3032, 3030, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3035, 1, 0, 0, 0, 3034, 3032, 1, 0, 0, 0, 3035, 3036, 5, 3, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3024, 1, 0, 0, 0, 3037, 3025, 1, 0, 0, 0, 3038, 263, 1, 0, 0, 0, 3039, 3042, 3, 368, 184, 0, 3040, 3042, 3, 286, 143, 0, 3041, 3039, 1, 0, 0, 0, 3041, 3040, 1, 0, 0, 0, 3042, 265, 1, 0, 0, 0, 3043, 3044, 3, 274, 137, 0, 3044, 267, 1, 0, 0, 0, 3045, 3046, 3, 374, 187, 0, 3046, 3047, 5, 372, 0, 0, 3047, 3048, 3, 266, 133, 0, 3048, 269, 1, 0, 0, 0, 3049, 3052, 3, 266, 133, 0, 3050, 3052, 3, 268, 134, 0, 3051, 3049, 1, 0, 0, 0, 3051, 3050, 1, 0, 0, 0, 3052, 271, 1, 0, 0, 0, 3053, 3058, 3, 266, 133, 0, 3054, 3055, 5, 4, 0, 0, 3055, 3057, 3, 266, 133, 0, 3056, 3054, 1, 0, 0, 0, 3057, 3060, 1, 0, 0, 0, 3058, 3056, 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 273, 1, 0, 0, 0, 3060, 3058, 1, 0, 0, 0, 3061, 3062, 6, 137, -1, 0, 3062, 3063, 7, 26, 0, 0, 3063, 3074, 3, 274, 137, 5, 3064, 3065, 5, 105, 0, 0, 3065, 3066, 5, 2, 0, 0, 3066, 3067, 3, 26, 13, 0, 3067, 3068, 5, 3, 0, 0, 3068, 3074, 1, 0, 0, 0, 3069, 3071, 3, 278, 139, 0, 3070, 3072, 3, 276, 138, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3074, 1, 0, 0, 0, 3073, 3061, 1, 0, 0, 0, 3073, 3064, 1, 0, 0, 0, 3073, 3069, 1, 0, 0, 0, 3074, 3083, 1, 0, 0, 0, 3075, 3076, 10, 2, 0, 0, 3076, 3077, 5, 14, 0, 0, 3077, 3082, 3, 274, 137, 3, 3078, 3079, 10, 1, 0, 0, 3079, 3080, 5, 207, 0, 0, 3080, 3082, 3, 274, 137, 2, 3081, 3075, 1, 0, 0, 0, 3081, 3078, 1, 0, 0, 0, 3082, 3085, 1, 0, 0, 0, 3083, 3081, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 275, 1, 0, 0, 0, 3085, 3083, 1, 0, 0, 0, 3086, 3088, 5, 196, 0, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3090, 5, 24, 0, 0, 3090, 3091, 3, 278, 139, 0, 3091, 3092, 5, 14, 0, 0, 3092, 3093, 3, 278, 139, 0, 3093, 3169, 1, 0, 0, 0, 3094, 3096, 5, 196, 0, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3097, 1, 0, 0, 0, 3097, 3098, 5, 140, 0, 0, 3098, 3099, 5, 2, 0, 0, 3099, 3104, 3, 266, 133, 0, 3100, 3101, 5, 4, 0, 0, 3101, 3103, 3, 266, 133, 0, 3102, 3100, 1, 0, 0, 0, 3103, 3106, 1, 0, 0, 0, 3104, 3102, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3107, 1, 0, 0, 0, 3106, 3104, 1, 0, 0, 0, 3107, 3108, 5, 3, 0, 0, 3108, 3169, 1, 0, 0, 0, 3109, 3111, 5, 196, 0, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3113, 5, 140, 0, 0, 3113, 3114, 5, 2, 0, 0, 3114, 3115, 3, 26, 13, 0, 3115, 3116, 5, 3, 0, 0, 3116, 3169, 1, 0, 0, 0, 3117, 3119, 5, 196, 0, 0, 3118, 3117, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 3121, 7, 27, 0, 0, 3121, 3169, 3, 278, 139, 0, 3122, 3124, 5, 196, 0, 0, 3123, 3122, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 7, 28, 0, 0, 3126, 3140, 7, 29, 0, 0, 3127, 3128, 5, 2, 0, 0, 3128, 3141, 5, 3, 0, 0, 3129, 3130, 5, 2, 0, 0, 3130, 3135, 3, 266, 133, 0, 3131, 3132, 5, 4, 0, 0, 3132, 3134, 3, 266, 133, 0, 3133, 3131, 1, 0, 0, 0, 3134, 3137, 1, 0, 0, 0, 3135, 3133, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3138, 1, 0, 0, 0, 3137, 3135, 1, 0, 0, 0, 3138, 3139, 5, 3, 0, 0, 3139, 3141, 1, 0, 0, 0, 3140, 3127, 1, 0, 0, 0, 3140, 3129, 1, 0, 0, 0, 3141, 3169, 1, 0, 0, 0, 3142, 3144, 5, 196, 0, 0, 3143, 3142, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3146, 7, 28, 0, 0, 3146, 3149, 3, 278, 139, 0, 3147, 3148, 5, 100, 0, 0, 3148, 3150, 3, 386, 193, 0, 3149, 3147, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3169, 1, 0, 0, 0, 3151, 3153, 5, 153, 0, 0, 3152, 3154, 5, 196, 0, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3169, 5, 197, 0, 0, 3156, 3158, 5, 153, 0, 0, 3157, 3159, 5, 196, 0, 0, 3158, 3157, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3169, 7, 30, 0, 0, 3161, 3163, 5, 153, 0, 0, 3162, 3164, 5, 196, 0, 0, 3163, 3162, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3166, 5, 92, 0, 0, 3166, 3167, 5, 123, 0, 0, 3167, 3169, 3, 278, 139, 0, 3168, 3087, 1, 0, 0, 0, 3168, 3095, 1, 0, 0, 0, 3168, 3110, 1, 0, 0, 0, 3168, 3118, 1, 0, 0, 0, 3168, 3123, 1, 0, 0, 0, 3168, 3143, 1, 0, 0, 0, 3168, 3151, 1, 0, 0, 0, 3168, 3156, 1, 0, 0, 0, 3168, 3161, 1, 0, 0, 0, 3169, 277, 1, 0, 0, 0, 3170, 3171, 6, 139, -1, 0, 3171, 3175, 3, 282, 141, 0, 3172, 3173, 7, 31, 0, 0, 3173, 3175, 3, 278, 139, 7, 3174, 3170, 1, 0, 0, 0, 3174, 3172, 1, 0, 0, 0, 3175, 3197, 1, 0, 0, 0, 3176, 3177, 10, 6, 0, 0, 3177, 3178, 7, 32, 0, 0, 3178, 3196, 3, 278, 139, 7, 3179, 3180, 10, 5, 0, 0, 3180, 3181, 7, 33, 0, 0, 3181, 3196, 3, 278, 139, 6, 3182, 3183, 10, 4, 0, 0, 3183, 3184, 5, 366, 0, 0, 3184, 3196, 3, 278, 139, 5, 3185, 3186, 10, 3, 0, 0, 3186, 3187, 5, 369, 0, 0, 3187, 3196, 3, 278, 139, 4, 3188, 3189, 10, 2, 0, 0, 3189, 3190, 5, 367, 0, 0, 3190, 3196, 3, 278, 139, 3, 3191, 3192, 10, 1, 0, 0, 3192, 3193, 3, 288, 144, 0, 3193, 3194, 3, 278, 139, 2, 3194, 3196, 1, 0, 0, 0, 3195, 3176, 1, 0, 0, 0, 3195, 3179, 1, 0, 0, 0, 3195, 3182, 1, 0, 0, 0, 3195, 3185, 1, 0, 0, 0, 3195, 3188, 1, 0, 0, 0, 3195, 3191, 1, 0, 0, 0, 3196, 3199, 1, 0, 0, 0, 3197, 3195, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 279, 1, 0, 0, 0, 3199, 3197, 1, 0, 0, 0, 3200, 3201, 7, 34, 0, 0, 3201, 281, 1, 0, 0, 0, 3202, 3203, 6, 141, -1, 0, 3203, 3452, 7, 35, 0, 0, 3204, 3205, 7, 36, 0, 0, 3205, 3208, 5, 2, 0, 0, 3206, 3209, 3, 280, 140, 0, 3207, 3209, 3, 386, 193, 0, 3208, 3206, 1, 0, 0, 0, 3208, 3207, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3211, 5, 4, 0, 0, 3211, 3212, 3, 278, 139, 0, 3212, 3213, 5, 4, 0, 0, 3213, 3214, 3, 278, 139, 0, 3214, 3215, 5, 3, 0, 0, 3215, 3452, 1, 0, 0, 0, 3216, 3217, 7, 37, 0, 0, 3217, 3220, 5, 2, 0, 0, 3218, 3221, 3, 280, 140, 0, 3219, 3221, 3, 386, 193, 0, 3220, 3218, 1, 0, 0, 0, 3220, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3223, 5, 4, 0, 0, 3223, 3224, 3, 278, 139, 0, 3224, 3225, 5, 4, 0, 0, 3225, 3226, 3, 278, 139, 0, 3226, 3227, 5, 3, 0, 0, 3227, 3452, 1, 0, 0, 0, 3228, 3230, 5, 35, 0, 0, 3229, 3231, 3, 348, 174, 0, 3230, 3229, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3230, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3236, 1, 0, 0, 0, 3234, 3235, 5, 97, 0, 0, 3235, 3237, 3, 266, 133, 0, 3236, 3234, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3239, 5, 99, 0, 0, 3239, 3452, 1, 0, 0, 0, 3240, 3241, 5, 35, 0, 0, 3241, 3243, 3, 266, 133, 0, 3242, 3244, 3, 348, 174, 0, 3243, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3243, 1, 0, 0, 0, 3245, 3246, 1, 0, 0, 0, 3246, 3249, 1, 0, 0, 0, 3247, 3248, 5, 97, 0, 0, 3248, 3250, 3, 266, 133, 0, 3249, 3247, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3252, 5, 99, 0, 0, 3252, 3452, 1, 0, 0, 0, 3253, 3254, 7, 38, 0, 0, 3254, 3255, 5, 2, 0, 0, 3255, 3256, 3, 266, 133, 0, 3256, 3257, 5, 20, 0, 0, 3257, 3258, 3, 316, 158, 0, 3258, 3259, 5, 3, 0, 0, 3259, 3452, 1, 0, 0, 0, 3260, 3261, 5, 285, 0, 0, 3261, 3270, 5, 2, 0, 0, 3262, 3267, 3, 254, 127, 0, 3263, 3264, 5, 4, 0, 0, 3264, 3266, 3, 254, 127, 0, 3265, 3263, 1, 0, 0, 0, 3266, 3269, 1, 0, 0, 0, 3267, 3265, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3271, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3270, 3262, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3452, 5, 3, 0, 0, 3273, 3274, 5, 116, 0, 0, 3274, 3275, 5, 2, 0, 0, 3275, 3278, 3, 266, 133, 0, 3276, 3277, 5, 138, 0, 0, 3277, 3279, 5, 198, 0, 0, 3278, 3276, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3281, 5, 3, 0, 0, 3281, 3452, 1, 0, 0, 0, 3282, 3283, 5, 17, 0, 0, 3283, 3284, 5, 2, 0, 0, 3284, 3287, 3, 266, 133, 0, 3285, 3286, 5, 138, 0, 0, 3286, 3288, 5, 198, 0, 0, 3287, 3285, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3289, 1, 0, 0, 0, 3289, 3290, 5, 3, 0, 0, 3290, 3452, 1, 0, 0, 0, 3291, 3292, 5, 157, 0, 0, 3292, 3293, 5, 2, 0, 0, 3293, 3296, 3, 266, 133, 0, 3294, 3295, 5, 138, 0, 0, 3295, 3297, 5, 198, 0, 0, 3296, 3294, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 3299, 5, 3, 0, 0, 3299, 3452, 1, 0, 0, 0, 3300, 3301, 5, 224, 0, 0, 3301, 3302, 5, 2, 0, 0, 3302, 3303, 3, 278, 139, 0, 3303, 3304, 5, 140, 0, 0, 3304, 3305, 3, 278, 139, 0, 3305, 3306, 5, 3, 0, 0, 3306, 3452, 1, 0, 0, 0, 3307, 3452, 3, 286, 143, 0, 3308, 3452, 5, 362, 0, 0, 3309, 3310, 3, 368, 184, 0, 3310, 3311, 5, 5, 0, 0, 3311, 3312, 5, 362, 0, 0, 3312, 3452, 1, 0, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3317, 3, 254, 127, 0, 3315, 3316, 5, 4, 0, 0, 3316, 3318, 3, 254, 127, 0, 3317, 3315, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3317, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3322, 5, 3, 0, 0, 3322, 3452, 1, 0, 0, 0, 3323, 3324, 5, 2, 0, 0, 3324, 3325, 3, 26, 13, 0, 3325, 3326, 5, 3, 0, 0, 3326, 3452, 1, 0, 0, 0, 3327, 3328, 5, 136, 0, 0, 3328, 3329, 5, 2, 0, 0, 3329, 3330, 3, 266, 133, 0, 3330, 3331, 5, 3, 0, 0, 3331, 3452, 1, 0, 0, 0, 3332, 3333, 3, 364, 182, 0, 3333, 3345, 5, 2, 0, 0, 3334, 3336, 3, 194, 97, 0, 3335, 3334, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3342, 3, 270, 135, 0, 3338, 3339, 5, 4, 0, 0, 3339, 3341, 3, 270, 135, 0, 3340, 3338, 1, 0, 0, 0, 3341, 3344, 1, 0, 0, 0, 3342, 3340, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3346, 1, 0, 0, 0, 3344, 3342, 1, 0, 0, 0, 3345, 3335, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3354, 5, 3, 0, 0, 3348, 3349, 5, 114, 0, 0, 3349, 3350, 5, 2, 0, 0, 3350, 3351, 5, 343, 0, 0, 3351, 3352, 3, 274, 137, 0, 3352, 3353, 5, 3, 0, 0, 3353, 3355, 1, 0, 0, 0, 3354, 3348, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3357, 7, 39, 0, 0, 3357, 3359, 5, 198, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3362, 1, 0, 0, 0, 3360, 3361, 5, 212, 0, 0, 3361, 3363, 3, 356, 178, 0, 3362, 3360, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3452, 1, 0, 0, 0, 3364, 3365, 3, 374, 187, 0, 3365, 3366, 5, 371, 0, 0, 3366, 3367, 3, 266, 133, 0, 3367, 3452, 1, 0, 0, 0, 3368, 3369, 5, 2, 0, 0, 3369, 3372, 3, 374, 187, 0, 3370, 3371, 5, 4, 0, 0, 3371, 3373, 3, 374, 187, 0, 3372, 3370, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 5, 3, 0, 0, 3377, 3378, 5, 371, 0, 0, 3378, 3379, 3, 266, 133, 0, 3379, 3452, 1, 0, 0, 0, 3380, 3452, 3, 374, 187, 0, 3381, 3382, 5, 2, 0, 0, 3382, 3383, 3, 266, 133, 0, 3383, 3384, 5, 3, 0, 0, 3384, 3452, 1, 0, 0, 0, 3385, 3386, 5, 110, 0, 0, 3386, 3387, 5, 2, 0, 0, 3387, 3388, 3, 374, 187, 0, 3388, 3389, 5, 123, 0, 0, 3389, 3390, 3, 278, 139, 0, 3390, 3391, 5, 3, 0, 0, 3391, 3452, 1, 0, 0, 0, 3392, 3393, 7, 40, 0, 0, 3393, 3394, 5, 2, 0, 0, 3394, 3395, 3, 278, 139, 0, 3395, 3396, 7, 41, 0, 0, 3396, 3399, 3, 278, 139, 0, 3397, 3398, 7, 42, 0, 0, 3398, 3400, 3, 278, 139, 0, 3399, 3397, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 5, 3, 0, 0, 3402, 3452, 1, 0, 0, 0, 3403, 3404, 5, 314, 0, 0, 3404, 3406, 5, 2, 0, 0, 3405, 3407, 7, 43, 0, 0, 3406, 3405, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3409, 1, 0, 0, 0, 3408, 3410, 3, 278, 139, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3412, 5, 123, 0, 0, 3412, 3413, 3, 278, 139, 0, 3413, 3414, 5, 3, 0, 0, 3414, 3452, 1, 0, 0, 0, 3415, 3416, 5, 214, 0, 0, 3416, 3417, 5, 2, 0, 0, 3417, 3418, 3, 278, 139, 0, 3418, 3419, 5, 223, 0, 0, 3419, 3420, 3, 278, 139, 0, 3420, 3421, 5, 123, 0, 0, 3421, 3424, 3, 278, 139, 0, 3422, 3423, 5, 119, 0, 0, 3423, 3425, 3, 278, 139, 0, 3424, 3422, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3427, 5, 3, 0, 0, 3427, 3452, 1, 0, 0, 0, 3428, 3429, 7, 44, 0, 0, 3429, 3430, 5, 2, 0, 0, 3430, 3431, 3, 278, 139, 0, 3431, 3432, 5, 3, 0, 0, 3432, 3433, 5, 346, 0, 0, 3433, 3434, 5, 130, 0, 0, 3434, 3435, 5, 2, 0, 0, 3435, 3436, 5, 208, 0, 0, 3436, 3437, 5, 31, 0, 0, 3437, 3438, 3, 106, 53, 0, 3438, 3445, 5, 3, 0, 0, 3439, 3440, 5, 114, 0, 0, 3440, 3441, 5, 2, 0, 0, 3441, 3442, 5, 343, 0, 0, 3442, 3443, 3, 274, 137, 0, 3443, 3444, 5, 3, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3439, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3449, 1, 0, 0, 0, 3447, 3448, 5, 212, 0, 0, 3448, 3450, 3, 356, 178, 0, 3449, 3447, 1, 0, 0, 0, 3449, 3450, 1, 0, 0, 0, 3450, 3452, 1, 0, 0, 0, 3451, 3202, 1, 0, 0, 0, 3451, 3204, 1, 0, 0, 0, 3451, 3216, 1, 0, 0, 0, 3451, 3228, 1, 0, 0, 0, 3451, 3240, 1, 0, 0, 0, 3451, 3253, 1, 0, 0, 0, 3451, 3260, 1, 0, 0, 0, 3451, 3273, 1, 0, 0, 0, 3451, 3282, 1, 0, 0, 0, 3451, 3291, 1, 0, 0, 0, 3451, 3300, 1, 0, 0, 0, 3451, 3307, 1, 0, 0, 0, 3451, 3308, 1, 0, 0, 0, 3451, 3309, 1, 0, 0, 0, 3451, 3313, 1, 0, 0, 0, 3451, 3323, 1, 0, 0, 0, 3451, 3327, 1, 0, 0, 0, 3451, 3332, 1, 0, 0, 0, 3451, 3364, 1, 0, 0, 0, 3451, 3368, 1, 0, 0, 0, 3451, 3380, 1, 0, 0, 0, 3451, 3381, 1, 0, 0, 0, 3451, 3385, 1, 0, 0, 0, 3451, 3392, 1, 0, 0, 0, 3451, 3403, 1, 0, 0, 0, 3451, 3415, 1, 0, 0, 0, 3451, 3428, 1, 0, 0, 0, 3452, 3463, 1, 0, 0, 0, 3453, 3454, 10, 9, 0, 0, 3454, 3455, 5, 6, 0, 0, 3455, 3456, 3, 278, 139, 0, 3456, 3457, 5, 7, 0, 0, 3457, 3462, 1, 0, 0, 0, 3458, 3459, 10, 7, 0, 0, 3459, 3460, 5, 5, 0, 0, 3460, 3462, 3, 374, 187, 0, 3461, 3453, 1, 0, 0, 0, 3461, 3458, 1, 0, 0, 0, 3462, 3465, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 283, 1, 0, 0, 0, 3465, 3463, 1, 0, 0, 0, 3466, 3474, 5, 71, 0, 0, 3467, 3474, 5, 302, 0, 0, 3468, 3474, 5, 303, 0, 0, 3469, 3474, 5, 304, 0, 0, 3470, 3474, 5, 149, 0, 0, 3471, 3474, 5, 133, 0, 0, 3472, 3474, 3, 374, 187, 0, 3473, 3466, 1, 0, 0, 0, 3473, 3467, 1, 0, 0, 0, 3473, 3468, 1, 0, 0, 0, 3473, 3469, 1, 0, 0, 0, 3473, 3470, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3473, 3472, 1, 0, 0, 0, 3474, 285, 1, 0, 0, 0, 3475, 3491, 5, 197, 0, 0, 3476, 3491, 5, 375, 0, 0, 3477, 3478, 5, 370, 0, 0, 3478, 3491, 3, 374, 187, 0, 3479, 3491, 3, 296, 148, 0, 3480, 3481, 3, 284, 142, 0, 3481, 3482, 3, 386, 193, 0, 3482, 3491, 1, 0, 0, 0, 3483, 3491, 3, 382, 191, 0, 3484, 3491, 3, 294, 147, 0, 3485, 3487, 3, 386, 193, 0, 3486, 3485, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3486, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3491, 1, 0, 0, 0, 3490, 3475, 1, 0, 0, 0, 3490, 3476, 1, 0, 0, 0, 3490, 3477, 1, 0, 0, 0, 3490, 3479, 1, 0, 0, 0, 3490, 3480, 1, 0, 0, 0, 3490, 3483, 1, 0, 0, 0, 3490, 3484, 1, 0, 0, 0, 3490, 3486, 1, 0, 0, 0, 3491, 287, 1, 0, 0, 0, 3492, 3493, 7, 45, 0, 0, 3493, 289, 1, 0, 0, 0, 3494, 3495, 7, 46, 0, 0, 3495, 291, 1, 0, 0, 0, 3496, 3497, 7, 47, 0, 0, 3497, 293, 1, 0, 0, 0, 3498, 3499, 7, 48, 0, 0, 3499, 295, 1, 0, 0, 0, 3500, 3503, 5, 149, 0, 0, 3501, 3504, 3, 298, 149, 0, 3502, 3504, 3, 302, 151, 0, 3503, 3501, 1, 0, 0, 0, 3503, 3502, 1, 0, 0, 0, 3504, 297, 1, 0, 0, 0, 3505, 3507, 3, 300, 150, 0, 3506, 3508, 3, 304, 152, 0, 3507, 3506, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 299, 1, 0, 0, 0, 3509, 3510, 3, 306, 153, 0, 3510, 3511, 3, 308, 154, 0, 3511, 3513, 1, 0, 0, 0, 3512, 3509, 1, 0, 0, 0, 3513, 3514, 1, 0, 0, 0, 3514, 3512, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 301, 1, 0, 0, 0, 3516, 3519, 3, 304, 152, 0, 3517, 3520, 3, 300, 150, 0, 3518, 3520, 3, 304, 152, 0, 3519, 3517, 1, 0, 0, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 303, 1, 0, 0, 0, 3521, 3522, 3, 306, 153, 0, 3522, 3523, 3, 310, 155, 0, 3523, 3524, 5, 308, 0, 0, 3524, 3525, 3, 310, 155, 0, 3525, 305, 1, 0, 0, 0, 3526, 3528, 7, 49, 0, 0, 3527, 3526, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3532, 1, 0, 0, 0, 3529, 3533, 5, 381, 0, 0, 3530, 3533, 5, 383, 0, 0, 3531, 3533, 3, 386, 193, 0, 3532, 3529, 1, 0, 0, 0, 3532, 3530, 1, 0, 0, 0, 3532, 3531, 1, 0, 0, 0, 3533, 307, 1, 0, 0, 0, 3534, 3535, 7, 50, 0, 0, 3535, 309, 1, 0, 0, 0, 3536, 3537, 7, 51, 0, 0, 3537, 311, 1, 0, 0, 0, 3538, 3542, 5, 116, 0, 0, 3539, 3540, 5, 9, 0, 0, 3540, 3542, 3, 370, 185, 0, 3541, 3538, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3542, 313, 1, 0, 0, 0, 3543, 3574, 5, 27, 0, 0, 3544, 3574, 5, 307, 0, 0, 3545, 3574, 5, 32, 0, 0, 3546, 3574, 5, 275, 0, 0, 3547, 3574, 5, 271, 0, 0, 3548, 3574, 5, 150, 0, 0, 3549, 3574, 5, 151, 0, 0, 3550, 3574, 5, 25, 0, 0, 3551, 3574, 5, 173, 0, 0, 3552, 3574, 5, 117, 0, 0, 3553, 3574, 5, 233, 0, 0, 3554, 3574, 5, 95, 0, 0, 3555, 3574, 5, 71, 0, 0, 3556, 3574, 5, 302, 0, 0, 3557, 3574, 5, 304, 0, 0, 3558, 3574, 5, 303, 0, 0, 3559, 3574, 5, 284, 0, 0, 3560, 3574, 5, 41, 0, 0, 3561, 3574, 5, 40, 0, 0, 3562, 3574, 5, 333, 0, 0, 3563, 3574, 5, 26, 0, 0, 3564, 3574, 5, 80, 0, 0, 3565, 3574, 5, 79, 0, 0, 3566, 3574, 5, 199, 0, 0, 3567, 3574, 5, 339, 0, 0, 3568, 3574, 5, 149, 0, 0, 3569, 3574, 5, 19, 0, 0, 3570, 3574, 5, 285, 0, 0, 3571, 3574, 5, 176, 0, 0, 3572, 3574, 3, 374, 187, 0, 3573, 3543, 1, 0, 0, 0, 3573, 3544, 1, 0, 0, 0, 3573, 3545, 1, 0, 0, 0, 3573, 3546, 1, 0, 0, 0, 3573, 3547, 1, 0, 0, 0, 3573, 3548, 1, 0, 0, 0, 3573, 3549, 1, 0, 0, 0, 3573, 3550, 1, 0, 0, 0, 3573, 3551, 1, 0, 0, 0, 3573, 3552, 1, 0, 0, 0, 3573, 3553, 1, 0, 0, 0, 3573, 3554, 1, 0, 0, 0, 3573, 3555, 1, 0, 0, 0, 3573, 3556, 1, 0, 0, 0, 3573, 3557, 1, 0, 0, 0, 3573, 3558, 1, 0, 0, 0, 3573, 3559, 1, 0, 0, 0, 3573, 3560, 1, 0, 0, 0, 3573, 3561, 1, 0, 0, 0, 3573, 3562, 1, 0, 0, 0, 3573, 3563, 1, 0, 0, 0, 3573, 3564, 1, 0, 0, 0, 3573, 3565, 1, 0, 0, 0, 3573, 3566, 1, 0, 0, 0, 3573, 3567, 1, 0, 0, 0, 3573, 3568, 1, 0, 0, 0, 3573, 3569, 1, 0, 0, 0, 3573, 3570, 1, 0, 0, 0, 3573, 3571, 1, 0, 0, 0, 3573, 3572, 1, 0, 0, 0, 3574, 315, 1, 0, 0, 0, 3575, 3576, 5, 19, 0, 0, 3576, 3577, 5, 355, 0, 0, 3577, 3578, 3, 316, 158, 0, 3578, 3579, 5, 357, 0, 0, 3579, 3622, 1, 0, 0, 0, 3580, 3581, 5, 176, 0, 0, 3581, 3582, 5, 355, 0, 0, 3582, 3583, 3, 316, 158, 0, 3583, 3584, 5, 4, 0, 0, 3584, 3585, 3, 316, 158, 0, 3585, 3586, 5, 357, 0, 0, 3586, 3622, 1, 0, 0, 0, 3587, 3594, 5, 285, 0, 0, 3588, 3590, 5, 355, 0, 0, 3589, 3591, 3, 344, 172, 0, 3590, 3589, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 3595, 5, 357, 0, 0, 3593, 3595, 5, 353, 0, 0, 3594, 3588, 1, 0, 0, 0, 3594, 3593, 1, 0, 0, 0, 3595, 3622, 1, 0, 0, 0, 3596, 3597, 5, 149, 0, 0, 3597, 3600, 7, 52, 0, 0, 3598, 3599, 5, 308, 0, 0, 3599, 3601, 5, 185, 0, 0, 3600, 3598, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 3622, 1, 0, 0, 0, 3602, 3603, 5, 149, 0, 0, 3603, 3606, 7, 53, 0, 0, 3604, 3605, 5, 308, 0, 0, 3605, 3607, 7, 54, 0, 0, 3606, 3604, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 3622, 1, 0, 0, 0, 3608, 3619, 3, 314, 157, 0, 3609, 3610, 5, 2, 0, 0, 3610, 3615, 5, 381, 0, 0, 3611, 3612, 5, 4, 0, 0, 3612, 3614, 5, 381, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3617, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3615, 3616, 1, 0, 0, 0, 3616, 3618, 1, 0, 0, 0, 3617, 3615, 1, 0, 0, 0, 3618, 3620, 5, 3, 0, 0, 3619, 3609, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 3622, 1, 0, 0, 0, 3621, 3575, 1, 0, 0, 0, 3621, 3580, 1, 0, 0, 0, 3621, 3587, 1, 0, 0, 0, 3621, 3596, 1, 0, 0, 0, 3621, 3602, 1, 0, 0, 0, 3621, 3608, 1, 0, 0, 0, 3622, 317, 1, 0, 0, 0, 3623, 3628, 3, 320, 160, 0, 3624, 3625, 5, 4, 0, 0, 3625, 3627, 3, 320, 160, 0, 3626, 3624, 1, 0, 0, 0, 3627, 3630, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3629, 1, 0, 0, 0, 3629, 319, 1, 0, 0, 0, 3630, 3628, 1, 0, 0, 0, 3631, 3632, 3, 94, 47, 0, 3632, 3636, 3, 316, 158, 0, 3633, 3635, 3, 326, 163, 0, 3634, 3633, 1, 0, 0, 0, 3635, 3638, 1, 0, 0, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3637, 1, 0, 0, 0, 3637, 321, 1, 0, 0, 0, 3638, 3636, 1, 0, 0, 0, 3639, 3644, 3, 324, 162, 0, 3640, 3641, 5, 4, 0, 0, 3641, 3643, 3, 324, 162, 0, 3642, 3640, 1, 0, 0, 0, 3643, 3646, 1, 0, 0, 0, 3644, 3642, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 323, 1, 0, 0, 0, 3646, 3644, 1, 0, 0, 0, 3647, 3648, 3, 90, 45, 0, 3648, 3652, 3, 316, 158, 0, 3649, 3651, 3, 326, 163, 0, 3650, 3649, 1, 0, 0, 0, 3651, 3654, 1, 0, 0, 0, 3652, 3650, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 325, 1, 0, 0, 0, 3654, 3652, 1, 0, 0, 0, 3655, 3656, 5, 196, 0, 0, 3656, 3661, 5, 197, 0, 0, 3657, 3661, 3, 328, 164, 0, 3658, 3661, 3, 24, 12, 0, 3659, 3661, 3, 312, 156, 0, 3660, 3655, 1, 0, 0, 0, 3660, 3657, 1, 0, 0, 0, 3660, 3658, 1, 0, 0, 0, 3660, 3659, 1, 0, 0, 0, 3661, 327, 1, 0, 0, 0, 3662, 3663, 5, 82, 0, 0, 3663, 3664, 3, 266, 133, 0, 3664, 329, 1, 0, 0, 0, 3665, 3666, 7, 55, 0, 0, 3666, 3667, 3, 266, 133, 0, 3667, 331, 1, 0, 0, 0, 3668, 3673, 3, 334, 167, 0, 3669, 3670, 5, 4, 0, 0, 3670, 3672, 3, 334, 167, 0, 3671, 3669, 1, 0, 0, 0, 3672, 3675, 1, 0, 0, 0, 3673, 3671, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 333, 1, 0, 0, 0, 3675, 3673, 1, 0, 0, 0, 3676, 3677, 3, 370, 185, 0, 3677, 3680, 3, 316, 158, 0, 3678, 3679, 5, 196, 0, 0, 3679, 3681, 5, 197, 0, 0, 3680, 3678, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3683, 1, 0, 0, 0, 3682, 3684, 3, 24, 12, 0, 3683, 3682, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 335, 1, 0, 0, 0, 3685, 3690, 3, 338, 169, 0, 3686, 3687, 5, 4, 0, 0, 3687, 3689, 3, 338, 169, 0, 3688, 3686, 1, 0, 0, 0, 3689, 3692, 1, 0, 0, 0, 3690, 3688, 1, 0, 0, 0, 3690, 3691, 1, 0, 0, 0, 3691, 337, 1, 0, 0, 0, 3692, 3690, 1, 0, 0, 0, 3693, 3694, 3, 94, 47, 0, 3694, 3698, 3, 316, 158, 0, 3695, 3697, 3, 340, 170, 0, 3696, 3695, 1, 0, 0, 0, 3697, 3700, 1, 0, 0, 0, 3698, 3696, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 339, 1, 0, 0, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3702, 5, 196, 0, 0, 3702, 3707, 5, 197, 0, 0, 3703, 3707, 3, 328, 164, 0, 3704, 3707, 3, 342, 171, 0, 3705, 3707, 3, 24, 12, 0, 3706, 3701, 1, 0, 0, 0, 3706, 3703, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3706, 3705, 1, 0, 0, 0, 3707, 341, 1, 0, 0, 0, 3708, 3709, 5, 127, 0, 0, 3709, 3710, 5, 12, 0, 0, 3710, 3711, 5, 20, 0, 0, 3711, 3712, 5, 2, 0, 0, 3712, 3713, 3, 266, 133, 0, 3713, 3714, 5, 3, 0, 0, 3714, 343, 1, 0, 0, 0, 3715, 3720, 3, 346, 173, 0, 3716, 3717, 5, 4, 0, 0, 3717, 3719, 3, 346, 173, 0, 3718, 3716, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 345, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3723, 3725, 3, 374, 187, 0, 3724, 3726, 5, 370, 0, 0, 3725, 3724, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3730, 3, 316, 158, 0, 3728, 3729, 5, 196, 0, 0, 3729, 3731, 5, 197, 0, 0, 3730, 3728, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3733, 1, 0, 0, 0, 3732, 3734, 3, 24, 12, 0, 3733, 3732, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 347, 1, 0, 0, 0, 3735, 3736, 5, 342, 0, 0, 3736, 3737, 3, 266, 133, 0, 3737, 3738, 5, 299, 0, 0, 3738, 3739, 3, 266, 133, 0, 3739, 349, 1, 0, 0, 0, 3740, 3741, 5, 344, 0, 0, 3741, 3746, 3, 354, 177, 0, 3742, 3743, 5, 4, 0, 0, 3743, 3745, 3, 354, 177, 0, 3744, 3742, 1, 0, 0, 0, 3745, 3748, 1, 0, 0, 0, 3746, 3744, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 351, 1, 0, 0, 0, 3748, 3746, 1, 0, 0, 0, 3749, 3750, 5, 350, 0, 0, 3750, 3751, 5, 31, 0, 0, 3751, 3752, 3, 92, 46, 0, 3752, 353, 1, 0, 0, 0, 3753, 3754, 3, 370, 185, 0, 3754, 3755, 5, 20, 0, 0, 3755, 3756, 3, 356, 178, 0, 3756, 355, 1, 0, 0, 0, 3757, 3804, 3, 370, 185, 0, 3758, 3759, 5, 2, 0, 0, 3759, 3760, 3, 370, 185, 0, 3760, 3761, 5, 3, 0, 0, 3761, 3804, 1, 0, 0, 0, 3762, 3797, 5, 2, 0, 0, 3763, 3764, 5, 44, 0, 0, 3764, 3765, 5, 31, 0, 0, 3765, 3770, 3, 266, 133, 0, 3766, 3767, 5, 4, 0, 0, 3767, 3769, 3, 266, 133, 0, 3768, 3766, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3768, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3798, 1, 0, 0, 0, 3772, 3770, 1, 0, 0, 0, 3773, 3774, 7, 24, 0, 0, 3774, 3775, 5, 31, 0, 0, 3775, 3780, 3, 266, 133, 0, 3776, 3777, 5, 4, 0, 0, 3777, 3779, 3, 266, 133, 0, 3778, 3776, 1, 0, 0, 0, 3779, 3782, 1, 0, 0, 0, 3780, 3778, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3780, 1, 0, 0, 0, 3783, 3773, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3795, 1, 0, 0, 0, 3785, 3786, 7, 25, 0, 0, 3786, 3787, 5, 31, 0, 0, 3787, 3792, 3, 106, 53, 0, 3788, 3789, 5, 4, 0, 0, 3789, 3791, 3, 106, 53, 0, 3790, 3788, 1, 0, 0, 0, 3791, 3794, 1, 0, 0, 0, 3792, 3790, 1, 0, 0, 0, 3792, 3793, 1, 0, 0, 0, 3793, 3796, 1, 0, 0, 0, 3794, 3792, 1, 0, 0, 0, 3795, 3785, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3798, 1, 0, 0, 0, 3797, 3763, 1, 0, 0, 0, 3797, 3783, 1, 0, 0, 0, 3798, 3800, 1, 0, 0, 0, 3799, 3801, 3, 358, 179, 0, 3800, 3799, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3804, 5, 3, 0, 0, 3803, 3757, 1, 0, 0, 0, 3803, 3758, 1, 0, 0, 0, 3803, 3762, 1, 0, 0, 0, 3804, 357, 1, 0, 0, 0, 3805, 3806, 5, 232, 0, 0, 3806, 3822, 3, 360, 180, 0, 3807, 3808, 5, 257, 0, 0, 3808, 3822, 3, 360, 180, 0, 3809, 3810, 5, 232, 0, 0, 3810, 3811, 5, 24, 0, 0, 3811, 3812, 3, 360, 180, 0, 3812, 3813, 5, 14, 0, 0, 3813, 3814, 3, 360, 180, 0, 3814, 3822, 1, 0, 0, 0, 3815, 3816, 5, 257, 0, 0, 3816, 3817, 5, 24, 0, 0, 3817, 3818, 3, 360, 180, 0, 3818, 3819, 5, 14, 0, 0, 3819, 3820, 3, 360, 180, 0, 3820, 3822, 1, 0, 0, 0, 3821, 3805, 1, 0, 0, 0, 3821, 3807, 1, 0, 0, 0, 3821, 3809, 1, 0, 0, 0, 3821, 3815, 1, 0, 0, 0, 3822, 359, 1, 0, 0, 0, 3823, 3824, 5, 320, 0, 0, 3824, 3831, 7, 56, 0, 0, 3825, 3826, 5, 62, 0, 0, 3826, 3831, 5, 256, 0, 0, 3827, 3828, 3, 266, 133, 0, 3828, 3829, 7, 56, 0, 0, 3829, 3831, 1, 0, 0, 0, 3830, 3823, 1, 0, 0, 0, 3830, 3825, 1, 0, 0, 0, 3830, 3827, 1, 0, 0, 0, 3831, 361, 1, 0, 0, 0, 3832, 3837, 3, 368, 184, 0, 3833, 3834, 5, 4, 0, 0, 3834, 3836, 3, 368, 184, 0, 3835, 3833, 1, 0, 0, 0, 3836, 3839, 1, 0, 0, 0, 3837, 3835, 1, 0, 0, 0, 3837, 3838, 1, 0, 0, 0, 3838, 363, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3840, 3841, 5, 136, 0, 0, 3841, 3842, 5, 2, 0, 0, 3842, 3843, 3, 266, 133, 0, 3843, 3844, 5, 3, 0, 0, 3844, 3850, 1, 0, 0, 0, 3845, 3850, 3, 368, 184, 0, 3846, 3850, 5, 114, 0, 0, 3847, 3850, 5, 161, 0, 0, 3848, 3850, 5, 249, 0, 0, 3849, 3840, 1, 0, 0, 0, 3849, 3845, 1, 0, 0, 0, 3849, 3846, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3849, 3848, 1, 0, 0, 0, 3850, 365, 1, 0, 0, 0, 3851, 3852, 3, 368, 184, 0, 3852, 367, 1, 0, 0, 0, 3853, 3858, 3, 374, 187, 0, 3854, 3855, 5, 5, 0, 0, 3855, 3857, 3, 374, 187, 0, 3856, 3854, 1, 0, 0, 0, 3857, 3860, 1, 0, 0, 0, 3858, 3856, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 369, 1, 0, 0, 0, 3860, 3858, 1, 0, 0, 0, 3861, 3862, 3, 374, 187, 0, 3862, 3863, 3, 372, 186, 0, 3863, 371, 1, 0, 0, 0, 3864, 3865, 5, 361, 0, 0, 3865, 3867, 3, 374, 187, 0, 3866, 3864, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3866, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 3872, 1, 0, 0, 0, 3870, 3872, 1, 0, 0, 0, 3871, 3866, 1, 0, 0, 0, 3871, 3870, 1, 0, 0, 0, 3872, 373, 1, 0, 0, 0, 3873, 3876, 3, 376, 188, 0, 3874, 3876, 3, 394, 197, 0, 3875, 3873, 1, 0, 0, 0, 3875, 3874, 1, 0, 0, 0, 3876, 375, 1, 0, 0, 0, 3877, 3882, 5, 387, 0, 0, 3878, 3882, 3, 378, 189, 0, 3879, 3882, 3, 392, 196, 0, 3880, 3882, 3, 396, 198, 0, 3881, 3877, 1, 0, 0, 0, 3881, 3878, 1, 0, 0, 0, 3881, 3879, 1, 0, 0, 0, 3881, 3880, 1, 0, 0, 0, 3882, 377, 1, 0, 0, 0, 3883, 3884, 7, 57, 0, 0, 3884, 379, 1, 0, 0, 0, 3885, 3886, 5, 388, 0, 0, 3886, 381, 1, 0, 0, 0, 3887, 3889, 5, 361, 0, 0, 3888, 3887, 1, 0, 0, 0, 3888, 3889, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3928, 5, 382, 0, 0, 3891, 3893, 5, 361, 0, 0, 3892, 3891, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3928, 5, 383, 0, 0, 3895, 3897, 5, 361, 0, 0, 3896, 3895, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3928, 7, 58, 0, 0, 3899, 3901, 5, 361, 0, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3928, 5, 381, 0, 0, 3903, 3905, 5, 361, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3928, 5, 378, 0, 0, 3907, 3909, 5, 361, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3928, 5, 379, 0, 0, 3911, 3913, 5, 361, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3928, 5, 380, 0, 0, 3915, 3917, 5, 361, 0, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3928, 5, 385, 0, 0, 3919, 3921, 5, 361, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3928, 5, 384, 0, 0, 3923, 3925, 5, 361, 0, 0, 3924, 3923, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3928, 5, 386, 0, 0, 3927, 3888, 1, 0, 0, 0, 3927, 3892, 1, 0, 0, 0, 3927, 3896, 1, 0, 0, 0, 3927, 3900, 1, 0, 0, 0, 3927, 3904, 1, 0, 0, 0, 3927, 3908, 1, 0, 0, 0, 3927, 3912, 1, 0, 0, 0, 3927, 3916, 1, 0, 0, 0, 3927, 3920, 1, 0, 0, 0, 3927, 3924, 1, 0, 0, 0, 3928, 383, 1, 0, 0, 0, 3929, 3930, 5, 318, 0, 0, 3930, 3941, 3, 316, 158, 0, 3931, 3941, 3, 24, 12, 0, 3932, 3941, 3, 312, 156, 0, 3933, 3934, 7, 59, 0, 0, 3934, 3935, 5, 196, 0, 0, 3935, 3941, 5, 197, 0, 0, 3936, 3937, 5, 268, 0, 0, 3937, 3941, 3, 328, 164, 0, 3938, 3939, 5, 96, 0, 0, 3939, 3941, 5, 82, 0, 0, 3940, 3929, 1, 0, 0, 0, 3940, 3931, 1, 0, 0, 0, 3940, 3932, 1, 0, 0, 0, 3940, 3933, 1, 0, 0, 0, 3940, 3936, 1, 0, 0, 0, 3940, 3938, 1, 0, 0, 0, 3941, 385, 1, 0, 0, 0, 3942, 3943, 7, 60, 0, 0, 3943, 387, 1, 0, 0, 0, 3944, 3947, 3, 386, 193, 0, 3945, 3947, 5, 197, 0, 0, 3946, 3944, 1, 0, 0, 0, 3946, 3945, 1, 0, 0, 0, 3947, 389, 1, 0, 0, 0, 3948, 3951, 5, 381, 0, 0, 3949, 3951, 3, 386, 193, 0, 3950, 3948, 1, 0, 0, 0, 3950, 3949, 1, 0, 0, 0, 3951, 391, 1, 0, 0, 0, 3952, 3953, 7, 61, 0, 0, 3953, 393, 1, 0, 0, 0, 3954, 3955, 7, 62, 0, 0, 3955, 395, 1, 0, 0, 0, 3956, 3957, 7, 63, 0, 0, 3957, 397, 1, 0, 0, 0, 514, 401, 408, 412, 425, 430, 438, 440, 459, 463, 469, 472, 475, 482, 485, 489, 492, 497, 508, 510, 518, 521, 525, 528, 534, 545, 551, 556, 589, 599, 610, 621, 632, 637, 646, 650, 656, 660, 665, 671, 683, 691, 697, 708, 712, 717, 732, 736, 743, 747, 753, 782, 786, 791, 798, 804, 807, 810, 814, 818, 826, 828, 837, 840, 849, 854, 860, 867, 870, 874, 885, 888, 894, 898, 913, 915, 923, 927, 933, 936, 940, 943, 949, 954, 958, 965, 968, 971, 978, 983, 992, 1000, 1006, 1009, 1012, 1018, 1022, 1027, 1030, 1034, 1036, 1044, 1052, 1055, 1062, 1065, 1068, 1077, 1082, 1088, 1093, 1096, 1100, 1103, 1107, 1135, 1138, 1146, 1152, 1155, 1158, 1163, 1171, 1176, 1182, 1188, 1191, 1198, 1205, 1213, 1230, 1257, 1260, 1266, 1275, 1284, 1290, 1295, 1300, 1307, 1312, 1317, 1324, 1332, 1335, 1339, 1351, 1355, 1362, 1478, 1486, 1494, 1503, 1513, 1517, 1520, 1524, 1530, 1542, 1554, 1559, 1568, 1576, 1581, 1583, 1591, 1596, 1600, 1603, 1611, 1616, 1625, 1630, 1633, 1638, 1642, 1647, 1649, 1653, 1662, 1670, 1676, 1687, 1694, 1703, 1708, 1711, 1733, 1735, 1744, 1751, 1754, 1761, 1765, 1771, 1779, 1786, 1789, 1797, 1808, 1819, 1827, 1833, 1845, 1852, 1859, 1871, 1879, 1885, 1891, 1894, 1915, 1926, 1935, 1938, 1947, 1950, 1959, 1962, 1971, 1974, 1977, 1982, 1984, 1988, 1999, 2005, 2011, 2014, 2016, 2028, 2032, 2035, 2039, 2045, 2049, 2057, 2061, 2064, 2067, 2070, 2074, 2078, 2083, 2087, 2090, 2093, 2096, 2100, 2105, 2109, 2112, 2115, 2118, 2120, 2126, 2133, 2138, 2141, 2144, 2148, 2158, 2162, 2164, 2167, 2171, 2177, 2181, 2192, 2202, 2206, 2218, 2230, 2245, 2250, 2256, 2263, 2279, 2284, 2297, 2302, 2310, 2316, 2320, 2323, 2328, 2335, 2341, 2350, 2360, 2375, 2380, 2382, 2387, 2396, 2409, 2414, 2418, 2425, 2430, 2434, 2437, 2440, 2454, 2467, 2472, 2476, 2479, 2483, 2489, 2492, 2499, 2511, 2522, 2535, 2546, 2551, 2559, 2564, 2578, 2587, 2590, 2595, 2602, 2605, 2611, 2617, 2620, 2625, 2630, 2634, 2640, 2644, 2647, 2652, 2655, 2660, 2664, 2667, 2670, 2676, 2681, 2688, 2691, 2709, 2711, 2714, 2725, 2734, 2741, 2749, 2756, 2760, 2763, 2771, 2779, 2785, 2793, 2801, 2808, 2815, 2817, 2830, 2836, 2838, 2848, 2854, 2856, 2864, 2868, 2877, 2880, 2886, 2890, 2892, 2901, 2913, 2915, 2922, 2929, 2935, 2941, 2943, 2950, 2958, 2966, 2972, 2977, 2984, 2990, 2993, 2997, 2999, 3006, 3015, 3022, 3032, 3037, 3041, 3051, 3058, 3071, 3073, 3081, 3083, 3087, 3095, 3104, 3110, 3118, 3123, 3135, 3140, 3143, 3149, 3153, 3158, 3163, 3168, 3174, 3195, 3197, 3208, 3220, 3232, 3236, 3245, 3249, 3267, 3270, 3278, 3287, 3296, 3319, 3335, 3342, 3345, 3354, 3358, 3362, 3374, 3399, 3406, 3409, 3424, 3445, 3449, 3451, 3461, 3463, 3473, 3488, 3490, 3503, 3507, 3514, 3519, 3527, 3532, 3541, 3573, 3590, 3594, 3600, 3606, 3615, 3619, 3621, 3628, 3636, 3644, 3652, 3660, 3673, 3680, 3683, 3690, 3698, 3706, 3720, 3725, 3730, 3733, 3746, 3770, 3780, 3783, 3792, 3795, 3797, 3800, 3803, 3821, 3830, 3837, 3849, 3858, 3868, 3871, 3875, 3881, 3888, 3892, 3896, 3900, 3904, 3908, 3912, 3916, 3920, 3924, 3927, 3940, 3946, 3950] \ No newline at end of file +[4, 1, 392, 3964, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 2, 1, 2, 3, 2, 413, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 418, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 425, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 430, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 438, 8, 2, 10, 2, 12, 2, 441, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 459, 8, 2, 1, 2, 1, 2, 3, 2, 463, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 469, 8, 2, 1, 2, 3, 2, 472, 8, 2, 1, 2, 3, 2, 475, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 482, 8, 2, 1, 2, 3, 2, 485, 8, 2, 1, 2, 1, 2, 3, 2, 489, 8, 2, 1, 2, 3, 2, 492, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 497, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 508, 8, 2, 10, 2, 12, 2, 511, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 518, 8, 2, 1, 2, 3, 2, 521, 8, 2, 1, 2, 1, 2, 3, 2, 525, 8, 2, 1, 2, 3, 2, 528, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 534, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 545, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 551, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 556, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 589, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 599, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 610, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 621, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 632, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 637, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 646, 8, 2, 1, 2, 1, 2, 3, 2, 650, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 656, 8, 2, 1, 2, 1, 2, 3, 2, 660, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 665, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 671, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 683, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 691, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 697, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 708, 8, 2, 1, 2, 1, 2, 3, 2, 712, 8, 2, 1, 2, 4, 2, 715, 8, 2, 11, 2, 12, 2, 716, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 732, 8, 2, 1, 2, 1, 2, 3, 2, 736, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 741, 8, 2, 10, 2, 12, 2, 744, 9, 2, 1, 2, 3, 2, 747, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 753, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 782, 8, 2, 1, 2, 1, 2, 3, 2, 786, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 791, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 798, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 804, 8, 2, 1, 2, 3, 2, 807, 8, 2, 1, 2, 3, 2, 810, 8, 2, 1, 2, 1, 2, 3, 2, 814, 8, 2, 1, 2, 1, 2, 3, 2, 818, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 826, 8, 2, 10, 2, 12, 2, 829, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 837, 8, 2, 1, 2, 3, 2, 840, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 849, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 854, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 860, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 867, 8, 2, 1, 2, 3, 2, 870, 8, 2, 1, 2, 1, 2, 3, 2, 874, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 883, 8, 2, 10, 2, 12, 2, 886, 9, 2, 3, 2, 888, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 894, 8, 2, 1, 2, 1, 2, 3, 2, 898, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 913, 8, 2, 10, 2, 12, 2, 916, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 923, 8, 2, 1, 2, 1, 2, 3, 2, 927, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 933, 8, 2, 1, 2, 3, 2, 936, 8, 2, 1, 2, 1, 2, 3, 2, 940, 8, 2, 1, 2, 3, 2, 943, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 949, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 954, 8, 2, 1, 2, 1, 2, 3, 2, 958, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 965, 8, 2, 1, 2, 3, 2, 968, 8, 2, 1, 2, 3, 2, 971, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 978, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 983, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 992, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1000, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1006, 8, 2, 1, 2, 3, 2, 1009, 8, 2, 1, 2, 3, 2, 1012, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1018, 8, 2, 1, 2, 1, 2, 3, 2, 1022, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1027, 8, 2, 1, 2, 3, 2, 1030, 8, 2, 1, 2, 1, 2, 3, 2, 1034, 8, 2, 3, 2, 1036, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1044, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1052, 8, 2, 1, 2, 3, 2, 1055, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1062, 8, 2, 1, 2, 3, 2, 1065, 8, 2, 1, 2, 3, 2, 1068, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1077, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1082, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1088, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1093, 8, 2, 1, 2, 3, 2, 1096, 8, 2, 1, 2, 1, 2, 3, 2, 1100, 8, 2, 1, 2, 3, 2, 1103, 8, 2, 1, 2, 1, 2, 3, 2, 1107, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1133, 8, 2, 10, 2, 12, 2, 1136, 9, 2, 3, 2, 1138, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1146, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1152, 8, 2, 1, 2, 3, 2, 1155, 8, 2, 1, 2, 3, 2, 1158, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1163, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1171, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1176, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1182, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1188, 8, 2, 1, 2, 3, 2, 1191, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1198, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1203, 8, 2, 10, 2, 12, 2, 1206, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1211, 8, 2, 10, 2, 12, 2, 1214, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1228, 8, 2, 10, 2, 12, 2, 1231, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1255, 8, 2, 10, 2, 12, 2, 1258, 9, 2, 3, 2, 1260, 8, 2, 1, 2, 1, 2, 5, 2, 1264, 8, 2, 10, 2, 12, 2, 1267, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1273, 8, 2, 10, 2, 12, 2, 1276, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1282, 8, 2, 10, 2, 12, 2, 1285, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1290, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1295, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1300, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1307, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1312, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1317, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1324, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1330, 8, 2, 10, 2, 12, 2, 1333, 9, 2, 3, 2, 1335, 8, 2, 1, 3, 1, 3, 3, 3, 1339, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1351, 8, 6, 1, 6, 1, 6, 3, 6, 1355, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1362, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1478, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1486, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1494, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1503, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1513, 8, 6, 1, 7, 1, 7, 3, 7, 1517, 8, 7, 1, 7, 3, 7, 1520, 8, 7, 1, 7, 1, 7, 3, 7, 1524, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1530, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1542, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1554, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1559, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1568, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1576, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1581, 8, 14, 3, 14, 1583, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1591, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1596, 8, 14, 1, 14, 1, 14, 3, 14, 1600, 8, 14, 1, 14, 3, 14, 1603, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1611, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1616, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1625, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1630, 8, 14, 1, 14, 3, 14, 1633, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1638, 8, 14, 1, 14, 1, 14, 3, 14, 1642, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1647, 8, 14, 3, 14, 1649, 8, 14, 1, 15, 1, 15, 3, 15, 1653, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1660, 8, 16, 10, 16, 12, 16, 1663, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1670, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1676, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1687, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1692, 8, 21, 10, 21, 12, 21, 1695, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1701, 8, 22, 10, 22, 12, 22, 1704, 9, 22, 1, 23, 1, 23, 3, 23, 1708, 8, 23, 1, 23, 3, 23, 1711, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1733, 8, 25, 10, 25, 12, 25, 1736, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1742, 8, 26, 10, 26, 12, 26, 1745, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 1751, 8, 27, 1, 27, 3, 27, 1754, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 1759, 8, 28, 10, 28, 12, 28, 1762, 9, 28, 1, 28, 3, 28, 1765, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1771, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1777, 8, 30, 10, 30, 12, 30, 1780, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 3, 31, 1786, 8, 31, 1, 31, 3, 31, 1789, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1795, 8, 32, 10, 32, 12, 32, 1798, 9, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1806, 8, 33, 10, 33, 12, 33, 1809, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1819, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1827, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1833, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 4, 38, 1843, 8, 38, 11, 38, 12, 38, 1844, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1852, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1859, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1871, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1877, 8, 38, 10, 38, 12, 38, 1880, 9, 38, 1, 38, 5, 38, 1883, 8, 38, 10, 38, 12, 38, 1886, 9, 38, 1, 38, 5, 38, 1889, 8, 38, 10, 38, 12, 38, 1892, 9, 38, 3, 38, 1894, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 3, 45, 1910, 8, 45, 1, 46, 1, 46, 1, 46, 5, 46, 1915, 8, 46, 10, 46, 12, 46, 1918, 9, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1928, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1935, 8, 49, 10, 49, 12, 49, 1938, 9, 49, 3, 49, 1940, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1947, 8, 49, 10, 49, 12, 49, 1950, 9, 49, 3, 49, 1952, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1959, 8, 49, 10, 49, 12, 49, 1962, 9, 49, 3, 49, 1964, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1971, 8, 49, 10, 49, 12, 49, 1974, 9, 49, 3, 49, 1976, 8, 49, 1, 49, 3, 49, 1979, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1984, 8, 49, 3, 49, 1986, 8, 49, 1, 49, 1, 49, 3, 49, 1990, 8, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2001, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2007, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2013, 8, 51, 1, 51, 5, 51, 2016, 8, 51, 10, 51, 12, 51, 2019, 9, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2030, 8, 52, 1, 53, 1, 53, 3, 53, 2034, 8, 53, 1, 53, 3, 53, 2037, 8, 53, 1, 53, 1, 53, 3, 53, 2041, 8, 53, 1, 54, 1, 54, 4, 54, 2045, 8, 54, 11, 54, 12, 54, 2046, 1, 55, 1, 55, 3, 55, 2051, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2057, 8, 55, 10, 55, 12, 55, 2060, 9, 55, 1, 55, 3, 55, 2063, 8, 55, 1, 55, 3, 55, 2066, 8, 55, 1, 55, 3, 55, 2069, 8, 55, 1, 55, 3, 55, 2072, 8, 55, 1, 55, 1, 55, 3, 55, 2076, 8, 55, 1, 56, 1, 56, 3, 56, 2080, 8, 56, 1, 56, 5, 56, 2083, 8, 56, 10, 56, 12, 56, 2086, 9, 56, 1, 56, 3, 56, 2089, 8, 56, 1, 56, 3, 56, 2092, 8, 56, 1, 56, 3, 56, 2095, 8, 56, 1, 56, 3, 56, 2098, 8, 56, 1, 56, 1, 56, 3, 56, 2102, 8, 56, 1, 56, 5, 56, 2105, 8, 56, 10, 56, 12, 56, 2108, 9, 56, 1, 56, 3, 56, 2111, 8, 56, 1, 56, 3, 56, 2114, 8, 56, 1, 56, 3, 56, 2117, 8, 56, 1, 56, 3, 56, 2120, 8, 56, 3, 56, 2122, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2128, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2135, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2140, 8, 57, 1, 57, 3, 57, 2143, 8, 57, 1, 57, 3, 57, 2146, 8, 57, 1, 57, 1, 57, 3, 57, 2150, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2160, 8, 57, 1, 57, 1, 57, 3, 57, 2164, 8, 57, 3, 57, 2166, 8, 57, 1, 57, 3, 57, 2169, 8, 57, 1, 57, 1, 57, 3, 57, 2173, 8, 57, 1, 58, 1, 58, 5, 58, 2177, 8, 58, 10, 58, 12, 58, 2180, 9, 58, 1, 58, 3, 58, 2183, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2194, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2204, 8, 61, 1, 61, 1, 61, 3, 61, 2208, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2220, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2232, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2245, 8, 64, 10, 64, 12, 64, 2248, 9, 64, 1, 64, 1, 64, 3, 64, 2252, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2258, 8, 65, 1, 66, 1, 66, 1, 66, 5, 66, 2263, 8, 66, 10, 66, 12, 66, 2266, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 3, 70, 2281, 8, 70, 1, 70, 5, 70, 2284, 8, 70, 10, 70, 12, 70, 2287, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2297, 8, 71, 10, 71, 12, 71, 2300, 9, 71, 1, 71, 1, 71, 3, 71, 2304, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2310, 8, 72, 10, 72, 12, 72, 2313, 9, 72, 1, 72, 5, 72, 2316, 8, 72, 10, 72, 12, 72, 2319, 9, 72, 1, 72, 3, 72, 2322, 8, 72, 1, 72, 3, 72, 2325, 8, 72, 1, 73, 1, 73, 1, 74, 3, 74, 2330, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2337, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2343, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2350, 8, 75, 10, 75, 12, 75, 2353, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2360, 8, 75, 10, 75, 12, 75, 2363, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2375, 8, 75, 10, 75, 12, 75, 2378, 9, 75, 1, 75, 1, 75, 3, 75, 2382, 8, 75, 3, 75, 2384, 8, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2389, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2396, 8, 77, 10, 77, 12, 77, 2399, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2409, 8, 77, 10, 77, 12, 77, 2412, 9, 77, 1, 77, 1, 77, 3, 77, 2416, 8, 77, 1, 78, 1, 78, 3, 78, 2420, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2427, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2432, 8, 79, 5, 79, 2434, 8, 79, 10, 79, 12, 79, 2437, 9, 79, 3, 79, 2439, 8, 79, 1, 79, 3, 79, 2442, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2454, 8, 80, 10, 80, 12, 80, 2457, 9, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2467, 8, 81, 10, 81, 12, 81, 2470, 9, 81, 1, 81, 1, 81, 3, 81, 2474, 8, 81, 1, 82, 1, 82, 3, 82, 2478, 8, 82, 1, 82, 3, 82, 2481, 8, 82, 1, 83, 1, 83, 3, 83, 2485, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2491, 8, 83, 1, 83, 3, 83, 2494, 8, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 2501, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 2511, 8, 86, 10, 86, 12, 86, 2514, 9, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2522, 8, 87, 10, 87, 12, 87, 2525, 9, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2535, 8, 87, 10, 87, 12, 87, 2538, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2546, 8, 88, 10, 88, 12, 88, 2549, 9, 88, 1, 88, 1, 88, 3, 88, 2553, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 2561, 8, 91, 1, 92, 1, 92, 1, 93, 3, 93, 2566, 8, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2580, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2587, 8, 96, 10, 96, 12, 96, 2590, 9, 96, 3, 96, 2592, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2597, 8, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2602, 8, 96, 10, 96, 12, 96, 2605, 9, 96, 3, 96, 2607, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 2613, 8, 98, 1, 98, 1, 98, 5, 98, 2617, 8, 98, 10, 98, 12, 98, 2620, 9, 98, 3, 98, 2622, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2627, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2632, 8, 100, 1, 100, 1, 100, 3, 100, 2636, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2642, 8, 100, 1, 100, 1, 100, 3, 100, 2646, 8, 100, 1, 101, 3, 101, 2649, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2654, 8, 101, 1, 101, 3, 101, 2657, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2662, 8, 101, 1, 101, 1, 101, 3, 101, 2666, 8, 101, 1, 101, 3, 101, 2669, 8, 101, 1, 101, 3, 101, 2672, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2678, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 2683, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2690, 8, 103, 1, 104, 3, 104, 2693, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2711, 8, 104, 3, 104, 2713, 8, 104, 1, 104, 3, 104, 2716, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 5, 106, 2725, 8, 106, 10, 106, 12, 106, 2728, 9, 106, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2734, 8, 107, 10, 107, 12, 107, 2737, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 3, 108, 2743, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 2749, 8, 109, 10, 109, 12, 109, 2752, 9, 109, 1, 109, 1, 109, 1, 110, 1, 110, 3, 110, 2758, 8, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2763, 8, 111, 1, 111, 3, 111, 2766, 8, 111, 1, 111, 3, 111, 2769, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2777, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2785, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2791, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 2797, 8, 112, 10, 112, 12, 112, 2800, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 2807, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2814, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2821, 8, 113, 3, 113, 2823, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2834, 8, 114, 10, 114, 12, 114, 2837, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2842, 8, 114, 3, 114, 2844, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2852, 8, 114, 10, 114, 12, 114, 2855, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2860, 8, 114, 3, 114, 2862, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 3, 116, 2870, 8, 116, 1, 117, 1, 117, 3, 117, 2874, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 2881, 8, 118, 10, 118, 12, 118, 2884, 9, 118, 3, 118, 2886, 8, 118, 1, 118, 1, 118, 1, 118, 1, 119, 3, 119, 2892, 8, 119, 1, 119, 1, 119, 3, 119, 2896, 8, 119, 3, 119, 2898, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2907, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2919, 8, 120, 3, 120, 2921, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2928, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2935, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2941, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2947, 8, 120, 3, 120, 2949, 8, 120, 1, 121, 1, 121, 1, 121, 5, 121, 2954, 8, 121, 10, 121, 12, 121, 2957, 9, 121, 1, 122, 1, 122, 1, 122, 5, 122, 2962, 8, 122, 10, 122, 12, 122, 2965, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 2970, 8, 123, 10, 123, 12, 123, 2973, 9, 123, 1, 124, 1, 124, 1, 124, 3, 124, 2978, 8, 124, 1, 125, 1, 125, 1, 125, 3, 125, 2983, 8, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 2990, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 3, 127, 2996, 8, 127, 1, 127, 3, 127, 2999, 8, 127, 1, 127, 1, 127, 3, 127, 3003, 8, 127, 3, 127, 3005, 8, 127, 1, 128, 1, 128, 1, 128, 5, 128, 3010, 8, 128, 10, 128, 12, 128, 3013, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3019, 8, 129, 10, 129, 12, 129, 3022, 9, 129, 1, 129, 1, 129, 1, 130, 1, 130, 3, 130, 3028, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 3036, 8, 131, 10, 131, 12, 131, 3039, 9, 131, 1, 131, 1, 131, 3, 131, 3043, 8, 131, 1, 132, 1, 132, 3, 132, 3047, 8, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 3057, 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 3062, 8, 136, 10, 136, 12, 136, 3065, 9, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 3077, 8, 137, 3, 137, 3079, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3087, 8, 137, 10, 137, 12, 137, 3090, 9, 137, 1, 138, 3, 138, 3093, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3101, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3108, 8, 138, 10, 138, 12, 138, 3111, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3116, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3124, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3129, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3139, 8, 138, 10, 138, 12, 138, 3142, 9, 138, 1, 138, 1, 138, 3, 138, 3146, 8, 138, 1, 138, 3, 138, 3149, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3155, 8, 138, 1, 138, 1, 138, 3, 138, 3159, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3164, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3169, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3174, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3180, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3201, 8, 139, 10, 139, 12, 139, 3204, 9, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3214, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3226, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3236, 8, 141, 11, 141, 12, 141, 3237, 1, 141, 1, 141, 3, 141, 3242, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3249, 8, 141, 11, 141, 12, 141, 3250, 1, 141, 1, 141, 3, 141, 3255, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3271, 8, 141, 10, 141, 12, 141, 3274, 9, 141, 3, 141, 3276, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3284, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3293, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3302, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3323, 8, 141, 11, 141, 12, 141, 3324, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3341, 8, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3346, 8, 141, 10, 141, 12, 141, 3349, 9, 141, 3, 141, 3351, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3360, 8, 141, 1, 141, 1, 141, 3, 141, 3364, 8, 141, 1, 141, 1, 141, 3, 141, 3368, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3378, 8, 141, 11, 141, 12, 141, 3379, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3405, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3412, 8, 141, 1, 141, 3, 141, 3415, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3430, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3451, 8, 141, 1, 141, 1, 141, 3, 141, 3455, 8, 141, 3, 141, 3457, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3467, 8, 141, 10, 141, 12, 141, 3470, 9, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3479, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 4, 143, 3492, 8, 143, 11, 143, 12, 143, 3493, 3, 143, 3496, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 3, 148, 3509, 8, 148, 1, 149, 1, 149, 3, 149, 3513, 8, 149, 1, 150, 1, 150, 1, 150, 4, 150, 3518, 8, 150, 11, 150, 12, 150, 3519, 1, 151, 1, 151, 1, 151, 3, 151, 3525, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 3, 153, 3533, 8, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3538, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 3, 156, 3547, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3579, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3596, 8, 158, 1, 158, 1, 158, 3, 158, 3600, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3606, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3612, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 3619, 8, 158, 10, 158, 12, 158, 3622, 9, 158, 1, 158, 3, 158, 3625, 8, 158, 3, 158, 3627, 8, 158, 1, 159, 1, 159, 1, 159, 5, 159, 3632, 8, 159, 10, 159, 12, 159, 3635, 9, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3640, 8, 160, 10, 160, 12, 160, 3643, 9, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3648, 8, 161, 10, 161, 12, 161, 3651, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3656, 8, 162, 10, 162, 12, 162, 3659, 9, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3666, 8, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3677, 8, 166, 10, 166, 12, 166, 3680, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 3686, 8, 167, 1, 167, 3, 167, 3689, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 3694, 8, 168, 10, 168, 12, 168, 3697, 9, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3702, 8, 169, 10, 169, 12, 169, 3705, 9, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3712, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3724, 8, 172, 10, 172, 12, 172, 3727, 9, 172, 1, 173, 1, 173, 3, 173, 3731, 8, 173, 1, 173, 1, 173, 1, 173, 3, 173, 3736, 8, 173, 1, 173, 3, 173, 3739, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 5, 175, 3750, 8, 175, 10, 175, 12, 175, 3753, 9, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3774, 8, 178, 10, 178, 12, 178, 3777, 9, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3784, 8, 178, 10, 178, 12, 178, 3787, 9, 178, 3, 178, 3789, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3796, 8, 178, 10, 178, 12, 178, 3799, 9, 178, 3, 178, 3801, 8, 178, 3, 178, 3803, 8, 178, 1, 178, 3, 178, 3806, 8, 178, 1, 178, 3, 178, 3809, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3827, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3836, 8, 180, 1, 181, 1, 181, 1, 181, 5, 181, 3841, 8, 181, 10, 181, 12, 181, 3844, 9, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 3855, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 3862, 8, 184, 10, 184, 12, 184, 3865, 9, 184, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 4, 186, 3872, 8, 186, 11, 186, 12, 186, 3873, 1, 186, 3, 186, 3877, 8, 186, 1, 187, 1, 187, 3, 187, 3881, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3887, 8, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 3, 191, 3894, 8, 191, 1, 191, 1, 191, 3, 191, 3898, 8, 191, 1, 191, 1, 191, 3, 191, 3902, 8, 191, 1, 191, 1, 191, 3, 191, 3906, 8, 191, 1, 191, 1, 191, 3, 191, 3910, 8, 191, 1, 191, 1, 191, 3, 191, 3914, 8, 191, 1, 191, 1, 191, 3, 191, 3918, 8, 191, 1, 191, 1, 191, 3, 191, 3922, 8, 191, 1, 191, 1, 191, 3, 191, 3926, 8, 191, 1, 191, 1, 191, 3, 191, 3930, 8, 191, 1, 191, 3, 191, 3933, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3946, 8, 192, 1, 193, 1, 193, 1, 194, 1, 194, 3, 194, 3952, 8, 194, 1, 195, 1, 195, 3, 195, 3956, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 9, 1134, 1204, 1212, 1229, 1256, 1265, 1274, 1283, 1331, 4, 102, 274, 278, 282, 199, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 64, 2, 0, 78, 78, 228, 228, 2, 0, 34, 34, 246, 246, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 172, 172, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 288, 288, 2, 0, 8, 8, 166, 166, 1, 0, 334, 335, 3, 0, 72, 72, 189, 189, 260, 260, 3, 0, 73, 73, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 269, 269, 322, 322, 3, 0, 102, 102, 269, 269, 322, 322, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 289, 289, 330, 330, 2, 0, 291, 291, 336, 336, 2, 0, 290, 290, 302, 302, 2, 0, 61, 61, 255, 255, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 381, 381, 383, 383, 2, 0, 93, 93, 216, 216, 2, 0, 208, 208, 277, 277, 2, 0, 196, 196, 359, 359, 1, 0, 250, 251, 1, 0, 162, 163, 3, 0, 10, 10, 16, 16, 276, 276, 3, 0, 111, 111, 315, 315, 324, 324, 2, 0, 360, 361, 365, 365, 2, 0, 94, 94, 362, 364, 2, 0, 360, 361, 368, 368, 11, 0, 67, 67, 69, 69, 134, 134, 179, 179, 181, 181, 183, 183, 185, 185, 230, 230, 258, 258, 340, 340, 347, 347, 4, 0, 63, 63, 65, 66, 267, 267, 330, 330, 2, 0, 74, 75, 305, 305, 3, 0, 76, 77, 301, 301, 306, 306, 2, 0, 36, 36, 317, 317, 2, 0, 138, 138, 245, 245, 1, 0, 286, 287, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 310, 310, 1, 0, 219, 220, 1, 0, 351, 358, 2, 0, 94, 94, 360, 369, 4, 0, 14, 14, 140, 140, 196, 196, 207, 207, 2, 0, 111, 111, 315, 315, 1, 0, 360, 361, 7, 0, 67, 68, 134, 135, 179, 186, 191, 192, 258, 259, 340, 341, 347, 348, 6, 0, 67, 67, 134, 134, 183, 183, 185, 185, 258, 258, 347, 347, 2, 0, 185, 185, 347, 347, 4, 0, 67, 67, 134, 134, 183, 183, 258, 258, 3, 0, 134, 134, 183, 183, 258, 258, 2, 0, 82, 82, 351, 351, 2, 0, 118, 118, 225, 225, 2, 0, 377, 377, 388, 388, 1, 0, 382, 383, 2, 0, 96, 96, 268, 268, 1, 0, 376, 377, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 162, 192, 194, 194, 198, 200, 204, 206, 209, 209, 211, 212, 214, 218, 221, 225, 227, 237, 239, 248, 250, 261, 263, 266, 268, 275, 277, 291, 293, 298, 301, 307, 309, 309, 311, 321, 325, 329, 332, 341, 344, 344, 347, 350, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 193, 193, 202, 202, 249, 249, 263, 263, 269, 269, 322, 322, 331, 331, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 192, 194, 194, 196, 201, 203, 248, 250, 261, 264, 268, 270, 291, 293, 321, 323, 330, 332, 350, 4578, 0, 401, 1, 0, 0, 0, 2, 406, 1, 0, 0, 0, 4, 1334, 1, 0, 0, 0, 6, 1338, 1, 0, 0, 0, 8, 1340, 1, 0, 0, 0, 10, 1342, 1, 0, 0, 0, 12, 1512, 1, 0, 0, 0, 14, 1514, 1, 0, 0, 0, 16, 1529, 1, 0, 0, 0, 18, 1535, 1, 0, 0, 0, 20, 1547, 1, 0, 0, 0, 22, 1560, 1, 0, 0, 0, 24, 1563, 1, 0, 0, 0, 26, 1567, 1, 0, 0, 0, 28, 1648, 1, 0, 0, 0, 30, 1650, 1, 0, 0, 0, 32, 1654, 1, 0, 0, 0, 34, 1675, 1, 0, 0, 0, 36, 1677, 1, 0, 0, 0, 38, 1679, 1, 0, 0, 0, 40, 1686, 1, 0, 0, 0, 42, 1688, 1, 0, 0, 0, 44, 1696, 1, 0, 0, 0, 46, 1705, 1, 0, 0, 0, 48, 1716, 1, 0, 0, 0, 50, 1734, 1, 0, 0, 0, 52, 1737, 1, 0, 0, 0, 54, 1748, 1, 0, 0, 0, 56, 1764, 1, 0, 0, 0, 58, 1770, 1, 0, 0, 0, 60, 1772, 1, 0, 0, 0, 62, 1783, 1, 0, 0, 0, 64, 1790, 1, 0, 0, 0, 66, 1801, 1, 0, 0, 0, 68, 1818, 1, 0, 0, 0, 70, 1826, 1, 0, 0, 0, 72, 1828, 1, 0, 0, 0, 74, 1834, 1, 0, 0, 0, 76, 1893, 1, 0, 0, 0, 78, 1895, 1, 0, 0, 0, 80, 1897, 1, 0, 0, 0, 82, 1899, 1, 0, 0, 0, 84, 1901, 1, 0, 0, 0, 86, 1903, 1, 0, 0, 0, 88, 1905, 1, 0, 0, 0, 90, 1909, 1, 0, 0, 0, 92, 1911, 1, 0, 0, 0, 94, 1919, 1, 0, 0, 0, 96, 1927, 1, 0, 0, 0, 98, 1939, 1, 0, 0, 0, 100, 1991, 1, 0, 0, 0, 102, 1994, 1, 0, 0, 0, 104, 2029, 1, 0, 0, 0, 106, 2033, 1, 0, 0, 0, 108, 2042, 1, 0, 0, 0, 110, 2075, 1, 0, 0, 0, 112, 2121, 1, 0, 0, 0, 114, 2142, 1, 0, 0, 0, 116, 2174, 1, 0, 0, 0, 118, 2186, 1, 0, 0, 0, 120, 2189, 1, 0, 0, 0, 122, 2198, 1, 0, 0, 0, 124, 2212, 1, 0, 0, 0, 126, 2231, 1, 0, 0, 0, 128, 2251, 1, 0, 0, 0, 130, 2257, 1, 0, 0, 0, 132, 2259, 1, 0, 0, 0, 134, 2267, 1, 0, 0, 0, 136, 2271, 1, 0, 0, 0, 138, 2274, 1, 0, 0, 0, 140, 2277, 1, 0, 0, 0, 142, 2303, 1, 0, 0, 0, 144, 2305, 1, 0, 0, 0, 146, 2326, 1, 0, 0, 0, 148, 2342, 1, 0, 0, 0, 150, 2383, 1, 0, 0, 0, 152, 2388, 1, 0, 0, 0, 154, 2415, 1, 0, 0, 0, 156, 2419, 1, 0, 0, 0, 158, 2441, 1, 0, 0, 0, 160, 2443, 1, 0, 0, 0, 162, 2473, 1, 0, 0, 0, 164, 2475, 1, 0, 0, 0, 166, 2482, 1, 0, 0, 0, 168, 2495, 1, 0, 0, 0, 170, 2500, 1, 0, 0, 0, 172, 2502, 1, 0, 0, 0, 174, 2517, 1, 0, 0, 0, 176, 2541, 1, 0, 0, 0, 178, 2554, 1, 0, 0, 0, 180, 2556, 1, 0, 0, 0, 182, 2558, 1, 0, 0, 0, 184, 2562, 1, 0, 0, 0, 186, 2565, 1, 0, 0, 0, 188, 2569, 1, 0, 0, 0, 190, 2573, 1, 0, 0, 0, 192, 2576, 1, 0, 0, 0, 194, 2608, 1, 0, 0, 0, 196, 2621, 1, 0, 0, 0, 198, 2626, 1, 0, 0, 0, 200, 2645, 1, 0, 0, 0, 202, 2671, 1, 0, 0, 0, 204, 2677, 1, 0, 0, 0, 206, 2679, 1, 0, 0, 0, 208, 2715, 1, 0, 0, 0, 210, 2717, 1, 0, 0, 0, 212, 2721, 1, 0, 0, 0, 214, 2729, 1, 0, 0, 0, 216, 2740, 1, 0, 0, 0, 218, 2744, 1, 0, 0, 0, 220, 2755, 1, 0, 0, 0, 222, 2790, 1, 0, 0, 0, 224, 2792, 1, 0, 0, 0, 226, 2822, 1, 0, 0, 0, 228, 2843, 1, 0, 0, 0, 230, 2863, 1, 0, 0, 0, 232, 2869, 1, 0, 0, 0, 234, 2873, 1, 0, 0, 0, 236, 2875, 1, 0, 0, 0, 238, 2897, 1, 0, 0, 0, 240, 2948, 1, 0, 0, 0, 242, 2950, 1, 0, 0, 0, 244, 2958, 1, 0, 0, 0, 246, 2966, 1, 0, 0, 0, 248, 2974, 1, 0, 0, 0, 250, 2982, 1, 0, 0, 0, 252, 2989, 1, 0, 0, 0, 254, 2995, 1, 0, 0, 0, 256, 3006, 1, 0, 0, 0, 258, 3014, 1, 0, 0, 0, 260, 3027, 1, 0, 0, 0, 262, 3042, 1, 0, 0, 0, 264, 3046, 1, 0, 0, 0, 266, 3048, 1, 0, 0, 0, 268, 3050, 1, 0, 0, 0, 270, 3056, 1, 0, 0, 0, 272, 3058, 1, 0, 0, 0, 274, 3078, 1, 0, 0, 0, 276, 3173, 1, 0, 0, 0, 278, 3179, 1, 0, 0, 0, 280, 3205, 1, 0, 0, 0, 282, 3456, 1, 0, 0, 0, 284, 3478, 1, 0, 0, 0, 286, 3495, 1, 0, 0, 0, 288, 3497, 1, 0, 0, 0, 290, 3499, 1, 0, 0, 0, 292, 3501, 1, 0, 0, 0, 294, 3503, 1, 0, 0, 0, 296, 3505, 1, 0, 0, 0, 298, 3510, 1, 0, 0, 0, 300, 3517, 1, 0, 0, 0, 302, 3521, 1, 0, 0, 0, 304, 3526, 1, 0, 0, 0, 306, 3532, 1, 0, 0, 0, 308, 3539, 1, 0, 0, 0, 310, 3541, 1, 0, 0, 0, 312, 3546, 1, 0, 0, 0, 314, 3578, 1, 0, 0, 0, 316, 3626, 1, 0, 0, 0, 318, 3628, 1, 0, 0, 0, 320, 3636, 1, 0, 0, 0, 322, 3644, 1, 0, 0, 0, 324, 3652, 1, 0, 0, 0, 326, 3665, 1, 0, 0, 0, 328, 3667, 1, 0, 0, 0, 330, 3670, 1, 0, 0, 0, 332, 3673, 1, 0, 0, 0, 334, 3681, 1, 0, 0, 0, 336, 3690, 1, 0, 0, 0, 338, 3698, 1, 0, 0, 0, 340, 3711, 1, 0, 0, 0, 342, 3713, 1, 0, 0, 0, 344, 3720, 1, 0, 0, 0, 346, 3728, 1, 0, 0, 0, 348, 3740, 1, 0, 0, 0, 350, 3745, 1, 0, 0, 0, 352, 3754, 1, 0, 0, 0, 354, 3758, 1, 0, 0, 0, 356, 3808, 1, 0, 0, 0, 358, 3826, 1, 0, 0, 0, 360, 3835, 1, 0, 0, 0, 362, 3837, 1, 0, 0, 0, 364, 3854, 1, 0, 0, 0, 366, 3856, 1, 0, 0, 0, 368, 3858, 1, 0, 0, 0, 370, 3866, 1, 0, 0, 0, 372, 3876, 1, 0, 0, 0, 374, 3880, 1, 0, 0, 0, 376, 3886, 1, 0, 0, 0, 378, 3888, 1, 0, 0, 0, 380, 3890, 1, 0, 0, 0, 382, 3932, 1, 0, 0, 0, 384, 3945, 1, 0, 0, 0, 386, 3947, 1, 0, 0, 0, 388, 3951, 1, 0, 0, 0, 390, 3955, 1, 0, 0, 0, 392, 3957, 1, 0, 0, 0, 394, 3959, 1, 0, 0, 0, 396, 3961, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 1, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 3, 1, 0, 0, 0, 410, 1335, 3, 26, 13, 0, 411, 413, 3, 44, 22, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 1335, 3, 76, 38, 0, 415, 417, 5, 329, 0, 0, 416, 418, 3, 36, 18, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 1335, 3, 78, 39, 0, 420, 421, 5, 268, 0, 0, 421, 424, 5, 37, 0, 0, 422, 425, 3, 374, 187, 0, 423, 425, 3, 386, 193, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 425, 1335, 1, 0, 0, 0, 426, 427, 5, 59, 0, 0, 427, 429, 3, 36, 18, 0, 428, 430, 3, 188, 94, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 439, 3, 80, 40, 0, 432, 438, 3, 24, 12, 0, 433, 438, 3, 22, 11, 0, 434, 435, 5, 345, 0, 0, 435, 436, 7, 0, 0, 0, 436, 438, 3, 52, 26, 0, 437, 432, 1, 0, 0, 0, 437, 433, 1, 0, 0, 0, 437, 434, 1, 0, 0, 0, 438, 441, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 1335, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 442, 443, 5, 11, 0, 0, 443, 444, 3, 36, 18, 0, 444, 445, 3, 78, 39, 0, 445, 446, 5, 268, 0, 0, 446, 447, 7, 0, 0, 0, 447, 448, 3, 52, 26, 0, 448, 1335, 1, 0, 0, 0, 449, 450, 5, 11, 0, 0, 450, 451, 3, 36, 18, 0, 451, 452, 3, 78, 39, 0, 452, 453, 5, 268, 0, 0, 453, 454, 3, 22, 11, 0, 454, 1335, 1, 0, 0, 0, 455, 456, 5, 96, 0, 0, 456, 458, 3, 36, 18, 0, 457, 459, 3, 190, 95, 0, 458, 457, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 462, 3, 78, 39, 0, 461, 463, 7, 1, 0, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 1335, 1, 0, 0, 0, 464, 465, 5, 272, 0, 0, 465, 468, 3, 38, 19, 0, 466, 467, 7, 2, 0, 0, 467, 469, 3, 244, 122, 0, 468, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 474, 1, 0, 0, 0, 470, 472, 5, 162, 0, 0, 471, 470, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 475, 3, 386, 193, 0, 474, 471, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 1335, 1, 0, 0, 0, 476, 481, 3, 14, 7, 0, 477, 478, 5, 2, 0, 0, 478, 479, 3, 336, 168, 0, 479, 480, 5, 3, 0, 0, 480, 482, 1, 0, 0, 0, 481, 477, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 484, 1, 0, 0, 0, 483, 485, 3, 48, 24, 0, 484, 483, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 491, 3, 50, 25, 0, 487, 489, 5, 20, 0, 0, 488, 487, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 492, 3, 26, 13, 0, 491, 488, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 1335, 1, 0, 0, 0, 493, 494, 5, 59, 0, 0, 494, 496, 5, 292, 0, 0, 495, 497, 3, 188, 94, 0, 496, 495, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 3, 82, 41, 0, 499, 500, 5, 162, 0, 0, 500, 509, 3, 84, 42, 0, 501, 508, 3, 48, 24, 0, 502, 508, 3, 240, 120, 0, 503, 508, 3, 68, 34, 0, 504, 508, 3, 22, 11, 0, 505, 506, 5, 296, 0, 0, 506, 508, 3, 52, 26, 0, 507, 501, 1, 0, 0, 0, 507, 502, 1, 0, 0, 0, 507, 503, 1, 0, 0, 0, 507, 504, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 511, 1, 0, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 1335, 1, 0, 0, 0, 511, 509, 1, 0, 0, 0, 512, 517, 3, 16, 8, 0, 513, 514, 5, 2, 0, 0, 514, 515, 3, 336, 168, 0, 515, 516, 5, 3, 0, 0, 516, 518, 1, 0, 0, 0, 517, 513, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 520, 1, 0, 0, 0, 519, 521, 3, 48, 24, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 527, 3, 50, 25, 0, 523, 525, 5, 20, 0, 0, 524, 523, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 528, 3, 26, 13, 0, 527, 524, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 1335, 1, 0, 0, 0, 529, 530, 5, 13, 0, 0, 530, 531, 5, 292, 0, 0, 531, 533, 3, 84, 42, 0, 532, 534, 3, 32, 16, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 5, 55, 0, 0, 536, 544, 5, 281, 0, 0, 537, 545, 5, 195, 0, 0, 538, 539, 5, 119, 0, 0, 539, 540, 5, 50, 0, 0, 540, 545, 3, 92, 46, 0, 541, 542, 5, 119, 0, 0, 542, 543, 5, 10, 0, 0, 543, 545, 5, 50, 0, 0, 544, 537, 1, 0, 0, 0, 544, 538, 1, 0, 0, 0, 544, 541, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 1335, 1, 0, 0, 0, 546, 547, 5, 13, 0, 0, 547, 550, 5, 293, 0, 0, 548, 549, 7, 2, 0, 0, 549, 551, 3, 78, 39, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 55, 0, 0, 553, 555, 5, 281, 0, 0, 554, 556, 5, 195, 0, 0, 555, 554, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 1335, 1, 0, 0, 0, 557, 558, 5, 11, 0, 0, 558, 559, 5, 292, 0, 0, 559, 560, 3, 84, 42, 0, 560, 561, 5, 8, 0, 0, 561, 562, 5, 49, 0, 0, 562, 563, 3, 320, 160, 0, 563, 1335, 1, 0, 0, 0, 564, 565, 5, 11, 0, 0, 565, 566, 5, 292, 0, 0, 566, 567, 3, 84, 42, 0, 567, 568, 5, 8, 0, 0, 568, 569, 5, 50, 0, 0, 569, 570, 5, 2, 0, 0, 570, 571, 3, 318, 159, 0, 571, 572, 5, 3, 0, 0, 572, 1335, 1, 0, 0, 0, 573, 574, 5, 11, 0, 0, 574, 575, 5, 292, 0, 0, 575, 576, 3, 84, 42, 0, 576, 577, 5, 240, 0, 0, 577, 578, 5, 49, 0, 0, 578, 579, 3, 90, 45, 0, 579, 580, 5, 308, 0, 0, 580, 581, 3, 94, 47, 0, 581, 1335, 1, 0, 0, 0, 582, 583, 5, 11, 0, 0, 583, 584, 5, 292, 0, 0, 584, 585, 3, 84, 42, 0, 585, 586, 5, 96, 0, 0, 586, 588, 5, 49, 0, 0, 587, 589, 3, 190, 95, 0, 588, 587, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 3, 90, 45, 0, 591, 1335, 1, 0, 0, 0, 592, 593, 5, 11, 0, 0, 593, 594, 5, 292, 0, 0, 594, 595, 3, 84, 42, 0, 595, 596, 5, 96, 0, 0, 596, 598, 5, 50, 0, 0, 597, 599, 3, 190, 95, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 5, 2, 0, 0, 601, 602, 3, 92, 46, 0, 602, 603, 5, 3, 0, 0, 603, 1335, 1, 0, 0, 0, 604, 609, 5, 11, 0, 0, 605, 606, 5, 292, 0, 0, 606, 610, 3, 84, 42, 0, 607, 608, 5, 337, 0, 0, 608, 610, 3, 88, 44, 0, 609, 605, 1, 0, 0, 0, 609, 607, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 5, 240, 0, 0, 612, 613, 5, 308, 0, 0, 613, 614, 3, 244, 122, 0, 614, 1335, 1, 0, 0, 0, 615, 620, 5, 11, 0, 0, 616, 617, 5, 292, 0, 0, 617, 621, 3, 84, 42, 0, 618, 619, 5, 337, 0, 0, 619, 621, 3, 88, 44, 0, 620, 616, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 5, 268, 0, 0, 623, 624, 5, 296, 0, 0, 624, 625, 3, 52, 26, 0, 625, 1335, 1, 0, 0, 0, 626, 631, 5, 11, 0, 0, 627, 628, 5, 292, 0, 0, 628, 632, 3, 84, 42, 0, 629, 630, 5, 337, 0, 0, 630, 632, 3, 88, 44, 0, 631, 627, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 5, 327, 0, 0, 634, 636, 5, 296, 0, 0, 635, 637, 3, 190, 95, 0, 636, 635, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 3, 52, 26, 0, 639, 1335, 1, 0, 0, 0, 640, 641, 5, 11, 0, 0, 641, 642, 5, 292, 0, 0, 642, 643, 3, 84, 42, 0, 643, 645, 7, 3, 0, 0, 644, 646, 5, 49, 0, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 649, 3, 90, 45, 0, 648, 650, 3, 384, 192, 0, 649, 648, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 1335, 1, 0, 0, 0, 651, 652, 5, 11, 0, 0, 652, 653, 5, 292, 0, 0, 653, 655, 3, 84, 42, 0, 654, 656, 3, 32, 16, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 659, 5, 39, 0, 0, 658, 660, 5, 49, 0, 0, 659, 658, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 3, 90, 45, 0, 662, 664, 3, 334, 167, 0, 663, 665, 3, 312, 156, 0, 664, 663, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 1335, 1, 0, 0, 0, 666, 667, 5, 11, 0, 0, 667, 668, 5, 292, 0, 0, 668, 670, 3, 84, 42, 0, 669, 671, 3, 32, 16, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 243, 0, 0, 673, 674, 5, 50, 0, 0, 674, 675, 5, 2, 0, 0, 675, 676, 3, 322, 161, 0, 676, 677, 5, 3, 0, 0, 677, 1335, 1, 0, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 5, 292, 0, 0, 680, 682, 3, 84, 42, 0, 681, 683, 3, 32, 16, 0, 682, 681, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 5, 268, 0, 0, 685, 686, 5, 265, 0, 0, 686, 690, 3, 386, 193, 0, 687, 688, 5, 345, 0, 0, 688, 689, 5, 266, 0, 0, 689, 691, 3, 52, 26, 0, 690, 687, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 1335, 1, 0, 0, 0, 692, 693, 5, 11, 0, 0, 693, 694, 5, 292, 0, 0, 694, 696, 3, 84, 42, 0, 695, 697, 3, 32, 16, 0, 696, 695, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 5, 268, 0, 0, 699, 700, 5, 266, 0, 0, 700, 701, 3, 52, 26, 0, 701, 1335, 1, 0, 0, 0, 702, 707, 5, 11, 0, 0, 703, 704, 5, 292, 0, 0, 704, 708, 3, 84, 42, 0, 705, 706, 5, 337, 0, 0, 706, 708, 3, 88, 44, 0, 707, 703, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 711, 5, 8, 0, 0, 710, 712, 3, 188, 94, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 714, 1, 0, 0, 0, 713, 715, 3, 30, 15, 0, 714, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 714, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 1335, 1, 0, 0, 0, 718, 719, 5, 11, 0, 0, 719, 720, 5, 292, 0, 0, 720, 721, 3, 84, 42, 0, 721, 722, 3, 32, 16, 0, 722, 723, 5, 240, 0, 0, 723, 724, 5, 308, 0, 0, 724, 725, 3, 32, 16, 0, 725, 1335, 1, 0, 0, 0, 726, 731, 5, 11, 0, 0, 727, 728, 5, 292, 0, 0, 728, 732, 3, 84, 42, 0, 729, 730, 5, 337, 0, 0, 730, 732, 3, 88, 44, 0, 731, 727, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 735, 5, 96, 0, 0, 734, 736, 3, 190, 95, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 742, 3, 32, 16, 0, 738, 739, 5, 4, 0, 0, 739, 741, 3, 32, 16, 0, 740, 738, 1, 0, 0, 0, 741, 744, 1, 0, 0, 0, 742, 740, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 746, 1, 0, 0, 0, 744, 742, 1, 0, 0, 0, 745, 747, 5, 229, 0, 0, 746, 745, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 1335, 1, 0, 0, 0, 748, 749, 5, 11, 0, 0, 749, 750, 5, 292, 0, 0, 750, 752, 3, 84, 42, 0, 751, 753, 3, 32, 16, 0, 752, 751, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 5, 268, 0, 0, 755, 756, 3, 22, 11, 0, 756, 1335, 1, 0, 0, 0, 757, 758, 5, 11, 0, 0, 758, 759, 5, 292, 0, 0, 759, 760, 3, 84, 42, 0, 760, 761, 5, 236, 0, 0, 761, 762, 5, 218, 0, 0, 762, 1335, 1, 0, 0, 0, 763, 764, 5, 11, 0, 0, 764, 765, 5, 175, 0, 0, 765, 766, 5, 337, 0, 0, 766, 767, 3, 88, 44, 0, 767, 768, 7, 4, 0, 0, 768, 769, 5, 247, 0, 0, 769, 1335, 1, 0, 0, 0, 770, 771, 5, 11, 0, 0, 771, 772, 5, 175, 0, 0, 772, 773, 5, 337, 0, 0, 773, 774, 3, 88, 44, 0, 774, 775, 5, 268, 0, 0, 775, 776, 5, 296, 0, 0, 776, 777, 3, 52, 26, 0, 777, 1335, 1, 0, 0, 0, 778, 779, 5, 96, 0, 0, 779, 781, 5, 292, 0, 0, 780, 782, 3, 190, 95, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 785, 3, 84, 42, 0, 784, 786, 5, 229, 0, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 1335, 1, 0, 0, 0, 787, 788, 5, 96, 0, 0, 788, 790, 5, 337, 0, 0, 789, 791, 3, 190, 95, 0, 790, 789, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 1335, 3, 88, 44, 0, 793, 794, 5, 96, 0, 0, 794, 795, 5, 175, 0, 0, 795, 797, 5, 337, 0, 0, 796, 798, 3, 190, 95, 0, 797, 796, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 1335, 3, 88, 44, 0, 800, 803, 5, 59, 0, 0, 801, 802, 5, 207, 0, 0, 802, 804, 5, 243, 0, 0, 803, 801, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 809, 1, 0, 0, 0, 805, 807, 5, 128, 0, 0, 806, 805, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 810, 5, 297, 0, 0, 809, 806, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 5, 337, 0, 0, 812, 814, 3, 188, 94, 0, 813, 812, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 817, 3, 86, 43, 0, 816, 818, 3, 218, 109, 0, 817, 816, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 827, 1, 0, 0, 0, 819, 826, 3, 24, 12, 0, 820, 821, 5, 217, 0, 0, 821, 822, 5, 202, 0, 0, 822, 826, 3, 210, 105, 0, 823, 824, 5, 296, 0, 0, 824, 826, 3, 52, 26, 0, 825, 819, 1, 0, 0, 0, 825, 820, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 826, 829, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 830, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 830, 831, 5, 20, 0, 0, 831, 832, 3, 26, 13, 0, 832, 1335, 1, 0, 0, 0, 833, 836, 5, 59, 0, 0, 834, 835, 5, 207, 0, 0, 835, 837, 5, 243, 0, 0, 836, 834, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 839, 1, 0, 0, 0, 838, 840, 5, 128, 0, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 297, 0, 0, 842, 843, 5, 337, 0, 0, 843, 848, 3, 86, 43, 0, 844, 845, 5, 2, 0, 0, 845, 846, 3, 332, 166, 0, 846, 847, 5, 3, 0, 0, 847, 849, 1, 0, 0, 0, 848, 844, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 853, 3, 48, 24, 0, 851, 852, 5, 206, 0, 0, 852, 854, 3, 52, 26, 0, 853, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 1335, 1, 0, 0, 0, 855, 856, 5, 11, 0, 0, 856, 857, 5, 337, 0, 0, 857, 859, 3, 88, 44, 0, 858, 860, 5, 20, 0, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 862, 3, 26, 13, 0, 862, 1335, 1, 0, 0, 0, 863, 866, 5, 59, 0, 0, 864, 865, 5, 207, 0, 0, 865, 867, 5, 243, 0, 0, 866, 864, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 869, 1, 0, 0, 0, 868, 870, 5, 297, 0, 0, 869, 868, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 873, 5, 125, 0, 0, 872, 874, 3, 188, 94, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 3, 366, 183, 0, 876, 877, 5, 20, 0, 0, 877, 887, 3, 386, 193, 0, 878, 879, 5, 331, 0, 0, 879, 884, 3, 74, 37, 0, 880, 881, 5, 4, 0, 0, 881, 883, 3, 74, 37, 0, 882, 880, 1, 0, 0, 0, 883, 886, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 888, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 887, 878, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 1335, 1, 0, 0, 0, 889, 890, 5, 59, 0, 0, 890, 891, 5, 175, 0, 0, 891, 893, 5, 337, 0, 0, 892, 894, 3, 188, 94, 0, 893, 892, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 897, 3, 86, 43, 0, 896, 898, 3, 48, 24, 0, 897, 896, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 914, 1, 0, 0, 0, 899, 900, 5, 206, 0, 0, 900, 913, 3, 52, 26, 0, 901, 902, 5, 217, 0, 0, 902, 903, 5, 31, 0, 0, 903, 913, 3, 258, 129, 0, 904, 913, 3, 20, 10, 0, 905, 913, 3, 18, 9, 0, 906, 913, 3, 240, 120, 0, 907, 913, 3, 68, 34, 0, 908, 913, 3, 22, 11, 0, 909, 913, 3, 24, 12, 0, 910, 911, 5, 296, 0, 0, 911, 913, 3, 52, 26, 0, 912, 899, 1, 0, 0, 0, 912, 901, 1, 0, 0, 0, 912, 904, 1, 0, 0, 0, 912, 905, 1, 0, 0, 0, 912, 906, 1, 0, 0, 0, 912, 907, 1, 0, 0, 0, 912, 908, 1, 0, 0, 0, 912, 909, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 913, 916, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 917, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 917, 918, 5, 20, 0, 0, 918, 919, 3, 26, 13, 0, 919, 1335, 1, 0, 0, 0, 920, 922, 5, 96, 0, 0, 921, 923, 5, 297, 0, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 926, 5, 125, 0, 0, 925, 927, 3, 190, 95, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 1335, 3, 364, 182, 0, 929, 932, 5, 81, 0, 0, 930, 931, 5, 207, 0, 0, 931, 933, 5, 243, 0, 0, 932, 930, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 935, 1, 0, 0, 0, 934, 936, 5, 335, 0, 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 939, 3, 364, 182, 0, 938, 940, 3, 316, 158, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 942, 1, 0, 0, 0, 941, 943, 3, 330, 165, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 1335, 1, 0, 0, 0, 944, 945, 5, 96, 0, 0, 945, 946, 5, 297, 0, 0, 946, 948, 5, 335, 0, 0, 947, 949, 3, 190, 95, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 953, 1, 0, 0, 0, 950, 954, 3, 84, 42, 0, 951, 954, 3, 88, 44, 0, 952, 954, 3, 364, 182, 0, 953, 950, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 953, 952, 1, 0, 0, 0, 954, 1335, 1, 0, 0, 0, 955, 957, 5, 106, 0, 0, 956, 958, 7, 5, 0, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 1335, 3, 4, 2, 0, 960, 961, 5, 272, 0, 0, 961, 964, 5, 293, 0, 0, 962, 963, 7, 2, 0, 0, 963, 965, 3, 78, 39, 0, 964, 962, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 970, 1, 0, 0, 0, 966, 968, 5, 162, 0, 0, 967, 966, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 971, 3, 386, 193, 0, 970, 967, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 1335, 1, 0, 0, 0, 972, 973, 5, 272, 0, 0, 973, 974, 5, 292, 0, 0, 974, 977, 5, 108, 0, 0, 975, 976, 7, 2, 0, 0, 976, 978, 3, 78, 39, 0, 977, 975, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 5, 162, 0, 0, 980, 982, 3, 386, 193, 0, 981, 983, 3, 32, 16, 0, 982, 981, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 1335, 1, 0, 0, 0, 984, 985, 5, 272, 0, 0, 985, 986, 5, 296, 0, 0, 986, 991, 3, 84, 42, 0, 987, 988, 5, 2, 0, 0, 988, 989, 3, 56, 28, 0, 989, 990, 5, 3, 0, 0, 990, 992, 1, 0, 0, 0, 991, 987, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 1335, 1, 0, 0, 0, 993, 994, 5, 272, 0, 0, 994, 995, 5, 50, 0, 0, 995, 996, 7, 2, 0, 0, 996, 999, 3, 84, 42, 0, 997, 998, 7, 2, 0, 0, 998, 1000, 3, 78, 39, 0, 999, 997, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1335, 1, 0, 0, 0, 1001, 1002, 5, 272, 0, 0, 1002, 1005, 5, 338, 0, 0, 1003, 1004, 7, 2, 0, 0, 1004, 1006, 3, 78, 39, 0, 1005, 1003, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1011, 1, 0, 0, 0, 1007, 1009, 5, 162, 0, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1012, 3, 386, 193, 0, 1011, 1008, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1335, 1, 0, 0, 0, 1013, 1014, 5, 272, 0, 0, 1014, 1015, 5, 218, 0, 0, 1015, 1017, 3, 84, 42, 0, 1016, 1018, 3, 32, 16, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1335, 1, 0, 0, 0, 1019, 1021, 5, 272, 0, 0, 1020, 1022, 3, 146, 73, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1026, 5, 126, 0, 0, 1024, 1025, 7, 2, 0, 0, 1025, 1027, 3, 78, 39, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1035, 1, 0, 0, 0, 1028, 1030, 5, 162, 0, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1033, 1, 0, 0, 0, 1031, 1034, 3, 244, 122, 0, 1032, 1034, 3, 386, 193, 0, 1033, 1031, 1, 0, 0, 0, 1033, 1032, 1, 0, 0, 0, 1034, 1036, 1, 0, 0, 0, 1035, 1029, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1335, 1, 0, 0, 0, 1037, 1038, 5, 272, 0, 0, 1038, 1039, 5, 59, 0, 0, 1039, 1040, 5, 292, 0, 0, 1040, 1043, 3, 84, 42, 0, 1041, 1042, 5, 20, 0, 0, 1042, 1044, 5, 265, 0, 0, 1043, 1041, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1335, 1, 0, 0, 0, 1045, 1046, 5, 272, 0, 0, 1046, 1047, 5, 62, 0, 0, 1047, 1335, 3, 36, 18, 0, 1048, 1049, 5, 272, 0, 0, 1049, 1054, 5, 38, 0, 0, 1050, 1052, 5, 162, 0, 0, 1051, 1050, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1055, 3, 386, 193, 0, 1054, 1051, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1335, 1, 0, 0, 0, 1056, 1057, 5, 272, 0, 0, 1057, 1058, 5, 175, 0, 0, 1058, 1061, 5, 338, 0, 0, 1059, 1060, 7, 2, 0, 0, 1060, 1062, 3, 78, 39, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1067, 1, 0, 0, 0, 1063, 1065, 5, 162, 0, 0, 1064, 1063, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1068, 3, 386, 193, 0, 1067, 1064, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1335, 1, 0, 0, 0, 1069, 1070, 5, 272, 0, 0, 1070, 1071, 5, 59, 0, 0, 1071, 1072, 5, 175, 0, 0, 1072, 1073, 5, 337, 0, 0, 1073, 1076, 3, 88, 44, 0, 1074, 1075, 5, 20, 0, 0, 1075, 1077, 5, 265, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1335, 1, 0, 0, 0, 1078, 1079, 7, 6, 0, 0, 1079, 1081, 5, 125, 0, 0, 1080, 1082, 5, 108, 0, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1335, 3, 40, 20, 0, 1084, 1085, 7, 6, 0, 0, 1085, 1087, 5, 72, 0, 0, 1086, 1088, 5, 108, 0, 0, 1087, 1086, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1335, 3, 78, 39, 0, 1090, 1092, 7, 6, 0, 0, 1091, 1093, 5, 292, 0, 0, 1092, 1091, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1095, 1, 0, 0, 0, 1094, 1096, 7, 7, 0, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1099, 3, 84, 42, 0, 1098, 1100, 3, 32, 16, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 1, 0, 0, 0, 1101, 1103, 3, 42, 21, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1335, 1, 0, 0, 0, 1104, 1106, 7, 6, 0, 0, 1105, 1107, 5, 231, 0, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1335, 3, 26, 13, 0, 1109, 1110, 5, 51, 0, 0, 1110, 1111, 5, 202, 0, 0, 1111, 1112, 3, 36, 18, 0, 1112, 1113, 3, 78, 39, 0, 1113, 1114, 5, 153, 0, 0, 1114, 1115, 3, 388, 194, 0, 1115, 1335, 1, 0, 0, 0, 1116, 1117, 5, 51, 0, 0, 1117, 1118, 5, 202, 0, 0, 1118, 1119, 5, 292, 0, 0, 1119, 1120, 3, 84, 42, 0, 1120, 1121, 5, 153, 0, 0, 1121, 1122, 3, 388, 194, 0, 1122, 1335, 1, 0, 0, 0, 1123, 1124, 5, 239, 0, 0, 1124, 1125, 5, 292, 0, 0, 1125, 1335, 3, 84, 42, 0, 1126, 1127, 5, 239, 0, 0, 1127, 1128, 5, 125, 0, 0, 1128, 1335, 3, 364, 182, 0, 1129, 1137, 5, 239, 0, 0, 1130, 1138, 3, 386, 193, 0, 1131, 1133, 9, 0, 0, 0, 1132, 1131, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1130, 1, 0, 0, 0, 1137, 1134, 1, 0, 0, 0, 1138, 1335, 1, 0, 0, 0, 1139, 1140, 5, 239, 0, 0, 1140, 1141, 5, 175, 0, 0, 1141, 1142, 5, 337, 0, 0, 1142, 1335, 3, 88, 44, 0, 1143, 1145, 5, 33, 0, 0, 1144, 1146, 5, 159, 0, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 5, 292, 0, 0, 1148, 1151, 3, 84, 42, 0, 1149, 1150, 5, 206, 0, 0, 1150, 1152, 3, 52, 26, 0, 1151, 1149, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1157, 1, 0, 0, 0, 1153, 1155, 5, 20, 0, 0, 1154, 1153, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1158, 3, 26, 13, 0, 1157, 1154, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1335, 1, 0, 0, 0, 1159, 1160, 5, 321, 0, 0, 1160, 1162, 5, 292, 0, 0, 1161, 1163, 3, 190, 95, 0, 1162, 1161, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1335, 3, 84, 42, 0, 1165, 1166, 5, 43, 0, 0, 1166, 1335, 5, 33, 0, 0, 1167, 1168, 5, 167, 0, 0, 1168, 1170, 5, 70, 0, 0, 1169, 1171, 5, 168, 0, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 5, 145, 0, 0, 1173, 1175, 3, 386, 193, 0, 1174, 1176, 5, 215, 0, 0, 1175, 1174, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 5, 152, 0, 0, 1178, 1179, 5, 292, 0, 0, 1179, 1181, 3, 84, 42, 0, 1180, 1182, 3, 32, 16, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1335, 1, 0, 0, 0, 1183, 1184, 5, 316, 0, 0, 1184, 1185, 5, 292, 0, 0, 1185, 1187, 3, 84, 42, 0, 1186, 1188, 3, 32, 16, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1335, 1, 0, 0, 0, 1189, 1191, 5, 187, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 5, 241, 0, 0, 1193, 1194, 5, 292, 0, 0, 1194, 1197, 3, 84, 42, 0, 1195, 1196, 7, 8, 0, 0, 1196, 1198, 5, 218, 0, 0, 1197, 1195, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1335, 1, 0, 0, 0, 1199, 1200, 7, 9, 0, 0, 1200, 1204, 3, 374, 187, 0, 1201, 1203, 9, 0, 0, 0, 1202, 1201, 1, 0, 0, 0, 1203, 1206, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1205, 1335, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1208, 5, 268, 0, 0, 1208, 1212, 5, 252, 0, 0, 1209, 1211, 9, 0, 0, 0, 1210, 1209, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1335, 1, 0, 0, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1216, 5, 268, 0, 0, 1216, 1217, 5, 300, 0, 0, 1217, 1218, 5, 349, 0, 0, 1218, 1335, 3, 296, 148, 0, 1219, 1220, 5, 268, 0, 0, 1220, 1221, 5, 300, 0, 0, 1221, 1222, 5, 349, 0, 0, 1222, 1335, 3, 6, 3, 0, 1223, 1224, 5, 268, 0, 0, 1224, 1225, 5, 300, 0, 0, 1225, 1229, 5, 349, 0, 0, 1226, 1228, 9, 0, 0, 0, 1227, 1226, 1, 0, 0, 0, 1228, 1231, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1335, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1232, 1233, 5, 268, 0, 0, 1233, 1234, 7, 10, 0, 0, 1234, 1335, 3, 132, 66, 0, 1235, 1236, 5, 268, 0, 0, 1236, 1237, 7, 10, 0, 0, 1237, 1238, 5, 2, 0, 0, 1238, 1239, 3, 242, 121, 0, 1239, 1240, 5, 3, 0, 0, 1240, 1241, 5, 351, 0, 0, 1241, 1242, 5, 2, 0, 0, 1242, 1243, 3, 26, 13, 0, 1243, 1244, 5, 3, 0, 0, 1244, 1335, 1, 0, 0, 0, 1245, 1246, 5, 268, 0, 0, 1246, 1247, 3, 8, 4, 0, 1247, 1248, 5, 351, 0, 0, 1248, 1249, 3, 10, 5, 0, 1249, 1335, 1, 0, 0, 0, 1250, 1251, 5, 268, 0, 0, 1251, 1259, 3, 8, 4, 0, 1252, 1256, 5, 351, 0, 0, 1253, 1255, 9, 0, 0, 0, 1254, 1253, 1, 0, 0, 0, 1255, 1258, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1257, 1260, 1, 0, 0, 0, 1258, 1256, 1, 0, 0, 0, 1259, 1252, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1335, 1, 0, 0, 0, 1261, 1265, 5, 268, 0, 0, 1262, 1264, 9, 0, 0, 0, 1263, 1262, 1, 0, 0, 0, 1264, 1267, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1268, 1, 0, 0, 0, 1267, 1265, 1, 0, 0, 0, 1268, 1269, 5, 351, 0, 0, 1269, 1335, 3, 10, 5, 0, 1270, 1274, 5, 268, 0, 0, 1271, 1273, 9, 0, 0, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1276, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1275, 1335, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1277, 1278, 5, 244, 0, 0, 1278, 1335, 3, 8, 4, 0, 1279, 1283, 5, 244, 0, 0, 1280, 1282, 9, 0, 0, 0, 1281, 1280, 1, 0, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1335, 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1286, 1287, 5, 59, 0, 0, 1287, 1289, 5, 142, 0, 0, 1288, 1290, 3, 188, 94, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 3, 374, 187, 0, 1292, 1294, 5, 202, 0, 0, 1293, 1295, 5, 292, 0, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1299, 3, 84, 42, 0, 1297, 1298, 5, 331, 0, 0, 1298, 1300, 3, 374, 187, 0, 1299, 1297, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 5, 2, 0, 0, 1302, 1303, 3, 246, 123, 0, 1303, 1306, 5, 3, 0, 0, 1304, 1305, 5, 206, 0, 0, 1305, 1307, 3, 52, 26, 0, 1306, 1304, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1335, 1, 0, 0, 0, 1308, 1309, 5, 96, 0, 0, 1309, 1311, 5, 142, 0, 0, 1310, 1312, 3, 190, 95, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 3, 374, 187, 0, 1314, 1316, 5, 202, 0, 0, 1315, 1317, 5, 292, 0, 0, 1316, 1315, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 3, 84, 42, 0, 1319, 1335, 1, 0, 0, 0, 1320, 1321, 5, 204, 0, 0, 1321, 1323, 3, 84, 42, 0, 1322, 1324, 3, 136, 68, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 3, 352, 176, 0, 1326, 1335, 1, 0, 0, 0, 1327, 1331, 3, 12, 6, 0, 1328, 1330, 9, 0, 0, 0, 1329, 1328, 1, 0, 0, 0, 1330, 1333, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1331, 1329, 1, 0, 0, 0, 1332, 1335, 1, 0, 0, 0, 1333, 1331, 1, 0, 0, 0, 1334, 410, 1, 0, 0, 0, 1334, 412, 1, 0, 0, 0, 1334, 415, 1, 0, 0, 0, 1334, 420, 1, 0, 0, 0, 1334, 426, 1, 0, 0, 0, 1334, 442, 1, 0, 0, 0, 1334, 449, 1, 0, 0, 0, 1334, 455, 1, 0, 0, 0, 1334, 464, 1, 0, 0, 0, 1334, 476, 1, 0, 0, 0, 1334, 493, 1, 0, 0, 0, 1334, 512, 1, 0, 0, 0, 1334, 529, 1, 0, 0, 0, 1334, 546, 1, 0, 0, 0, 1334, 557, 1, 0, 0, 0, 1334, 564, 1, 0, 0, 0, 1334, 573, 1, 0, 0, 0, 1334, 582, 1, 0, 0, 0, 1334, 592, 1, 0, 0, 0, 1334, 604, 1, 0, 0, 0, 1334, 615, 1, 0, 0, 0, 1334, 626, 1, 0, 0, 0, 1334, 640, 1, 0, 0, 0, 1334, 651, 1, 0, 0, 0, 1334, 666, 1, 0, 0, 0, 1334, 678, 1, 0, 0, 0, 1334, 692, 1, 0, 0, 0, 1334, 702, 1, 0, 0, 0, 1334, 718, 1, 0, 0, 0, 1334, 726, 1, 0, 0, 0, 1334, 748, 1, 0, 0, 0, 1334, 757, 1, 0, 0, 0, 1334, 763, 1, 0, 0, 0, 1334, 770, 1, 0, 0, 0, 1334, 778, 1, 0, 0, 0, 1334, 787, 1, 0, 0, 0, 1334, 793, 1, 0, 0, 0, 1334, 800, 1, 0, 0, 0, 1334, 833, 1, 0, 0, 0, 1334, 855, 1, 0, 0, 0, 1334, 863, 1, 0, 0, 0, 1334, 889, 1, 0, 0, 0, 1334, 920, 1, 0, 0, 0, 1334, 929, 1, 0, 0, 0, 1334, 944, 1, 0, 0, 0, 1334, 955, 1, 0, 0, 0, 1334, 960, 1, 0, 0, 0, 1334, 972, 1, 0, 0, 0, 1334, 984, 1, 0, 0, 0, 1334, 993, 1, 0, 0, 0, 1334, 1001, 1, 0, 0, 0, 1334, 1013, 1, 0, 0, 0, 1334, 1019, 1, 0, 0, 0, 1334, 1037, 1, 0, 0, 0, 1334, 1045, 1, 0, 0, 0, 1334, 1048, 1, 0, 0, 0, 1334, 1056, 1, 0, 0, 0, 1334, 1069, 1, 0, 0, 0, 1334, 1078, 1, 0, 0, 0, 1334, 1084, 1, 0, 0, 0, 1334, 1090, 1, 0, 0, 0, 1334, 1104, 1, 0, 0, 0, 1334, 1109, 1, 0, 0, 0, 1334, 1116, 1, 0, 0, 0, 1334, 1123, 1, 0, 0, 0, 1334, 1126, 1, 0, 0, 0, 1334, 1129, 1, 0, 0, 0, 1334, 1139, 1, 0, 0, 0, 1334, 1143, 1, 0, 0, 0, 1334, 1159, 1, 0, 0, 0, 1334, 1165, 1, 0, 0, 0, 1334, 1167, 1, 0, 0, 0, 1334, 1183, 1, 0, 0, 0, 1334, 1190, 1, 0, 0, 0, 1334, 1199, 1, 0, 0, 0, 1334, 1207, 1, 0, 0, 0, 1334, 1215, 1, 0, 0, 0, 1334, 1219, 1, 0, 0, 0, 1334, 1223, 1, 0, 0, 0, 1334, 1232, 1, 0, 0, 0, 1334, 1235, 1, 0, 0, 0, 1334, 1245, 1, 0, 0, 0, 1334, 1250, 1, 0, 0, 0, 1334, 1261, 1, 0, 0, 0, 1334, 1270, 1, 0, 0, 0, 1334, 1277, 1, 0, 0, 0, 1334, 1279, 1, 0, 0, 0, 1334, 1286, 1, 0, 0, 0, 1334, 1308, 1, 0, 0, 0, 1334, 1320, 1, 0, 0, 0, 1334, 1327, 1, 0, 0, 0, 1335, 5, 1, 0, 0, 0, 1336, 1339, 3, 386, 193, 0, 1337, 1339, 5, 168, 0, 0, 1338, 1336, 1, 0, 0, 0, 1338, 1337, 1, 0, 0, 0, 1339, 7, 1, 0, 0, 0, 1340, 1341, 3, 378, 189, 0, 1341, 9, 1, 0, 0, 0, 1342, 1343, 3, 380, 190, 0, 1343, 11, 1, 0, 0, 0, 1344, 1345, 5, 59, 0, 0, 1345, 1513, 5, 252, 0, 0, 1346, 1347, 5, 96, 0, 0, 1347, 1513, 5, 252, 0, 0, 1348, 1350, 5, 129, 0, 0, 1349, 1351, 5, 252, 0, 0, 1350, 1349, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1513, 1, 0, 0, 0, 1352, 1354, 5, 248, 0, 0, 1353, 1355, 5, 252, 0, 0, 1354, 1353, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1513, 1, 0, 0, 0, 1356, 1357, 5, 272, 0, 0, 1357, 1513, 5, 129, 0, 0, 1358, 1359, 5, 272, 0, 0, 1359, 1361, 5, 252, 0, 0, 1360, 1362, 5, 129, 0, 0, 1361, 1360, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1513, 1, 0, 0, 0, 1363, 1364, 5, 272, 0, 0, 1364, 1513, 5, 227, 0, 0, 1365, 1366, 5, 272, 0, 0, 1366, 1513, 5, 253, 0, 0, 1367, 1368, 5, 272, 0, 0, 1368, 1369, 5, 62, 0, 0, 1369, 1513, 5, 253, 0, 0, 1370, 1371, 5, 107, 0, 0, 1371, 1513, 5, 292, 0, 0, 1372, 1373, 5, 139, 0, 0, 1373, 1513, 5, 292, 0, 0, 1374, 1375, 5, 272, 0, 0, 1375, 1513, 5, 54, 0, 0, 1376, 1377, 5, 272, 0, 0, 1377, 1378, 5, 59, 0, 0, 1378, 1513, 5, 292, 0, 0, 1379, 1380, 5, 272, 0, 0, 1380, 1513, 5, 312, 0, 0, 1381, 1382, 5, 272, 0, 0, 1382, 1513, 5, 143, 0, 0, 1383, 1384, 5, 272, 0, 0, 1384, 1513, 5, 171, 0, 0, 1385, 1386, 5, 59, 0, 0, 1386, 1513, 5, 142, 0, 0, 1387, 1388, 5, 96, 0, 0, 1388, 1513, 5, 142, 0, 0, 1389, 1390, 5, 11, 0, 0, 1390, 1513, 5, 142, 0, 0, 1391, 1392, 5, 170, 0, 0, 1392, 1513, 5, 292, 0, 0, 1393, 1394, 5, 170, 0, 0, 1394, 1513, 5, 72, 0, 0, 1395, 1396, 5, 325, 0, 0, 1396, 1513, 5, 292, 0, 0, 1397, 1398, 5, 325, 0, 0, 1398, 1513, 5, 72, 0, 0, 1399, 1400, 5, 59, 0, 0, 1400, 1401, 5, 297, 0, 0, 1401, 1513, 5, 174, 0, 0, 1402, 1403, 5, 96, 0, 0, 1403, 1404, 5, 297, 0, 0, 1404, 1513, 5, 174, 0, 0, 1405, 1406, 5, 11, 0, 0, 1406, 1407, 5, 292, 0, 0, 1407, 1408, 3, 84, 42, 0, 1408, 1409, 5, 196, 0, 0, 1409, 1410, 5, 45, 0, 0, 1410, 1513, 1, 0, 0, 0, 1411, 1412, 5, 11, 0, 0, 1412, 1413, 5, 292, 0, 0, 1413, 1414, 3, 84, 42, 0, 1414, 1415, 5, 45, 0, 0, 1415, 1416, 5, 31, 0, 0, 1416, 1513, 1, 0, 0, 0, 1417, 1418, 5, 11, 0, 0, 1418, 1419, 5, 292, 0, 0, 1419, 1420, 3, 84, 42, 0, 1420, 1421, 5, 196, 0, 0, 1421, 1422, 5, 278, 0, 0, 1422, 1513, 1, 0, 0, 0, 1423, 1424, 5, 11, 0, 0, 1424, 1425, 5, 292, 0, 0, 1425, 1426, 3, 84, 42, 0, 1426, 1427, 5, 274, 0, 0, 1427, 1428, 5, 31, 0, 0, 1428, 1513, 1, 0, 0, 0, 1429, 1430, 5, 11, 0, 0, 1430, 1431, 5, 292, 0, 0, 1431, 1432, 3, 84, 42, 0, 1432, 1433, 5, 196, 0, 0, 1433, 1434, 5, 274, 0, 0, 1434, 1513, 1, 0, 0, 0, 1435, 1436, 5, 11, 0, 0, 1436, 1437, 5, 292, 0, 0, 1437, 1438, 3, 84, 42, 0, 1438, 1439, 5, 196, 0, 0, 1439, 1440, 5, 282, 0, 0, 1440, 1441, 5, 20, 0, 0, 1441, 1442, 5, 89, 0, 0, 1442, 1513, 1, 0, 0, 0, 1443, 1444, 5, 11, 0, 0, 1444, 1445, 5, 292, 0, 0, 1445, 1446, 3, 84, 42, 0, 1446, 1447, 5, 268, 0, 0, 1447, 1448, 5, 274, 0, 0, 1448, 1449, 5, 169, 0, 0, 1449, 1513, 1, 0, 0, 0, 1450, 1451, 5, 11, 0, 0, 1451, 1452, 5, 292, 0, 0, 1452, 1453, 3, 84, 42, 0, 1453, 1454, 5, 103, 0, 0, 1454, 1455, 5, 216, 0, 0, 1455, 1513, 1, 0, 0, 0, 1456, 1457, 5, 11, 0, 0, 1457, 1458, 5, 292, 0, 0, 1458, 1459, 3, 84, 42, 0, 1459, 1460, 5, 18, 0, 0, 1460, 1461, 5, 216, 0, 0, 1461, 1513, 1, 0, 0, 0, 1462, 1463, 5, 11, 0, 0, 1463, 1464, 5, 292, 0, 0, 1464, 1465, 3, 84, 42, 0, 1465, 1466, 5, 319, 0, 0, 1466, 1467, 5, 216, 0, 0, 1467, 1513, 1, 0, 0, 0, 1468, 1469, 5, 11, 0, 0, 1469, 1470, 5, 292, 0, 0, 1470, 1471, 3, 84, 42, 0, 1471, 1472, 5, 309, 0, 0, 1472, 1513, 1, 0, 0, 0, 1473, 1474, 5, 11, 0, 0, 1474, 1475, 5, 292, 0, 0, 1475, 1477, 3, 84, 42, 0, 1476, 1478, 3, 32, 16, 0, 1477, 1476, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 5, 53, 0, 0, 1480, 1513, 1, 0, 0, 0, 1481, 1482, 5, 11, 0, 0, 1482, 1483, 5, 292, 0, 0, 1483, 1485, 3, 84, 42, 0, 1484, 1486, 3, 32, 16, 0, 1485, 1484, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 5, 56, 0, 0, 1488, 1513, 1, 0, 0, 0, 1489, 1490, 5, 11, 0, 0, 1490, 1491, 5, 292, 0, 0, 1491, 1493, 3, 84, 42, 0, 1492, 1494, 3, 32, 16, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 5, 268, 0, 0, 1496, 1497, 5, 115, 0, 0, 1497, 1513, 1, 0, 0, 0, 1498, 1499, 5, 11, 0, 0, 1499, 1500, 5, 292, 0, 0, 1500, 1502, 3, 84, 42, 0, 1501, 1503, 3, 32, 16, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 5, 243, 0, 0, 1505, 1506, 5, 50, 0, 0, 1506, 1513, 1, 0, 0, 0, 1507, 1508, 5, 280, 0, 0, 1508, 1513, 5, 311, 0, 0, 1509, 1513, 5, 52, 0, 0, 1510, 1513, 5, 254, 0, 0, 1511, 1513, 5, 88, 0, 0, 1512, 1344, 1, 0, 0, 0, 1512, 1346, 1, 0, 0, 0, 1512, 1348, 1, 0, 0, 0, 1512, 1352, 1, 0, 0, 0, 1512, 1356, 1, 0, 0, 0, 1512, 1358, 1, 0, 0, 0, 1512, 1363, 1, 0, 0, 0, 1512, 1365, 1, 0, 0, 0, 1512, 1367, 1, 0, 0, 0, 1512, 1370, 1, 0, 0, 0, 1512, 1372, 1, 0, 0, 0, 1512, 1374, 1, 0, 0, 0, 1512, 1376, 1, 0, 0, 0, 1512, 1379, 1, 0, 0, 0, 1512, 1381, 1, 0, 0, 0, 1512, 1383, 1, 0, 0, 0, 1512, 1385, 1, 0, 0, 0, 1512, 1387, 1, 0, 0, 0, 1512, 1389, 1, 0, 0, 0, 1512, 1391, 1, 0, 0, 0, 1512, 1393, 1, 0, 0, 0, 1512, 1395, 1, 0, 0, 0, 1512, 1397, 1, 0, 0, 0, 1512, 1399, 1, 0, 0, 0, 1512, 1402, 1, 0, 0, 0, 1512, 1405, 1, 0, 0, 0, 1512, 1411, 1, 0, 0, 0, 1512, 1417, 1, 0, 0, 0, 1512, 1423, 1, 0, 0, 0, 1512, 1429, 1, 0, 0, 0, 1512, 1435, 1, 0, 0, 0, 1512, 1443, 1, 0, 0, 0, 1512, 1450, 1, 0, 0, 0, 1512, 1456, 1, 0, 0, 0, 1512, 1462, 1, 0, 0, 0, 1512, 1468, 1, 0, 0, 0, 1512, 1473, 1, 0, 0, 0, 1512, 1481, 1, 0, 0, 0, 1512, 1489, 1, 0, 0, 0, 1512, 1498, 1, 0, 0, 0, 1512, 1507, 1, 0, 0, 0, 1512, 1509, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1512, 1511, 1, 0, 0, 0, 1513, 13, 1, 0, 0, 0, 1514, 1516, 5, 59, 0, 0, 1515, 1517, 5, 297, 0, 0, 1516, 1515, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1519, 1, 0, 0, 0, 1518, 1520, 5, 109, 0, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1523, 5, 292, 0, 0, 1522, 1524, 3, 188, 94, 0, 1523, 1522, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 3, 82, 41, 0, 1526, 15, 1, 0, 0, 0, 1527, 1528, 5, 59, 0, 0, 1528, 1530, 5, 207, 0, 0, 1529, 1527, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 5, 243, 0, 0, 1532, 1533, 5, 292, 0, 0, 1533, 1534, 3, 82, 41, 0, 1534, 17, 1, 0, 0, 0, 1535, 1536, 5, 45, 0, 0, 1536, 1537, 5, 31, 0, 0, 1537, 1541, 3, 210, 105, 0, 1538, 1539, 5, 278, 0, 0, 1539, 1540, 5, 31, 0, 0, 1540, 1542, 3, 214, 107, 0, 1541, 1538, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 5, 152, 0, 0, 1544, 1545, 5, 381, 0, 0, 1545, 1546, 5, 30, 0, 0, 1546, 19, 1, 0, 0, 0, 1547, 1548, 5, 274, 0, 0, 1548, 1549, 5, 31, 0, 0, 1549, 1550, 3, 210, 105, 0, 1550, 1553, 5, 202, 0, 0, 1551, 1554, 3, 64, 32, 0, 1552, 1554, 3, 66, 33, 0, 1553, 1551, 1, 0, 0, 0, 1553, 1552, 1, 0, 0, 0, 1554, 1558, 1, 0, 0, 0, 1555, 1556, 5, 282, 0, 0, 1556, 1557, 5, 20, 0, 0, 1557, 1559, 5, 89, 0, 0, 1558, 1555, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 21, 1, 0, 0, 0, 1560, 1561, 5, 169, 0, 0, 1561, 1562, 3, 386, 193, 0, 1562, 23, 1, 0, 0, 0, 1563, 1564, 5, 51, 0, 0, 1564, 1565, 3, 386, 193, 0, 1565, 25, 1, 0, 0, 0, 1566, 1568, 3, 44, 22, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 3, 102, 51, 0, 1570, 1571, 3, 98, 49, 0, 1571, 27, 1, 0, 0, 0, 1572, 1573, 5, 147, 0, 0, 1573, 1575, 5, 215, 0, 0, 1574, 1576, 5, 292, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1582, 3, 84, 42, 0, 1578, 1580, 3, 32, 16, 0, 1579, 1581, 3, 188, 94, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1583, 1, 0, 0, 0, 1582, 1578, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1590, 1, 0, 0, 0, 1584, 1585, 5, 31, 0, 0, 1585, 1591, 5, 188, 0, 0, 1586, 1587, 5, 2, 0, 0, 1587, 1588, 3, 92, 46, 0, 1588, 1589, 5, 3, 0, 0, 1589, 1591, 1, 0, 0, 0, 1590, 1584, 1, 0, 0, 0, 1590, 1586, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1649, 1, 0, 0, 0, 1592, 1593, 5, 147, 0, 0, 1593, 1595, 5, 152, 0, 0, 1594, 1596, 5, 292, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1599, 3, 84, 42, 0, 1598, 1600, 3, 32, 16, 0, 1599, 1598, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1602, 1, 0, 0, 0, 1601, 1603, 3, 188, 94, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1610, 1, 0, 0, 0, 1604, 1605, 5, 31, 0, 0, 1605, 1611, 5, 188, 0, 0, 1606, 1607, 5, 2, 0, 0, 1607, 1608, 3, 92, 46, 0, 1608, 1609, 5, 3, 0, 0, 1609, 1611, 1, 0, 0, 0, 1610, 1604, 1, 0, 0, 0, 1610, 1606, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1649, 1, 0, 0, 0, 1612, 1613, 5, 147, 0, 0, 1613, 1615, 5, 152, 0, 0, 1614, 1616, 5, 292, 0, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1618, 3, 84, 42, 0, 1618, 1619, 5, 243, 0, 0, 1619, 1620, 3, 136, 68, 0, 1620, 1649, 1, 0, 0, 0, 1621, 1622, 5, 147, 0, 0, 1622, 1624, 5, 215, 0, 0, 1623, 1625, 5, 168, 0, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 5, 90, 0, 0, 1627, 1629, 3, 386, 193, 0, 1628, 1630, 3, 240, 120, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1632, 1, 0, 0, 0, 1631, 1633, 3, 68, 34, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1649, 1, 0, 0, 0, 1634, 1635, 5, 147, 0, 0, 1635, 1637, 5, 215, 0, 0, 1636, 1638, 5, 168, 0, 0, 1637, 1636, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 1641, 5, 90, 0, 0, 1640, 1642, 3, 386, 193, 0, 1641, 1640, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1646, 3, 48, 24, 0, 1644, 1645, 5, 206, 0, 0, 1645, 1647, 3, 52, 26, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1649, 1, 0, 0, 0, 1648, 1572, 1, 0, 0, 0, 1648, 1592, 1, 0, 0, 0, 1648, 1612, 1, 0, 0, 0, 1648, 1621, 1, 0, 0, 0, 1648, 1634, 1, 0, 0, 0, 1649, 29, 1, 0, 0, 0, 1650, 1652, 3, 32, 16, 0, 1651, 1653, 3, 22, 11, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 31, 1, 0, 0, 0, 1654, 1655, 5, 216, 0, 0, 1655, 1656, 5, 2, 0, 0, 1656, 1661, 3, 34, 17, 0, 1657, 1658, 5, 4, 0, 0, 1658, 1660, 3, 34, 17, 0, 1659, 1657, 1, 0, 0, 0, 1660, 1663, 1, 0, 0, 0, 1661, 1659, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1661, 1, 0, 0, 0, 1664, 1665, 5, 3, 0, 0, 1665, 33, 1, 0, 0, 0, 1666, 1669, 3, 374, 187, 0, 1667, 1668, 5, 351, 0, 0, 1668, 1670, 3, 286, 143, 0, 1669, 1667, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1676, 1, 0, 0, 0, 1671, 1672, 3, 374, 187, 0, 1672, 1673, 5, 351, 0, 0, 1673, 1674, 5, 82, 0, 0, 1674, 1676, 1, 0, 0, 0, 1675, 1666, 1, 0, 0, 0, 1675, 1671, 1, 0, 0, 0, 1676, 35, 1, 0, 0, 0, 1677, 1678, 7, 11, 0, 0, 1678, 37, 1, 0, 0, 0, 1679, 1680, 7, 12, 0, 0, 1680, 39, 1, 0, 0, 0, 1681, 1687, 3, 96, 48, 0, 1682, 1687, 3, 386, 193, 0, 1683, 1687, 3, 288, 144, 0, 1684, 1687, 3, 290, 145, 0, 1685, 1687, 3, 292, 146, 0, 1686, 1681, 1, 0, 0, 0, 1686, 1682, 1, 0, 0, 0, 1686, 1683, 1, 0, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1685, 1, 0, 0, 0, 1687, 41, 1, 0, 0, 0, 1688, 1693, 3, 374, 187, 0, 1689, 1690, 5, 5, 0, 0, 1690, 1692, 3, 374, 187, 0, 1691, 1689, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 43, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1697, 5, 345, 0, 0, 1697, 1702, 3, 46, 23, 0, 1698, 1699, 5, 4, 0, 0, 1699, 1701, 3, 46, 23, 0, 1700, 1698, 1, 0, 0, 0, 1701, 1704, 1, 0, 0, 0, 1702, 1700, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 45, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1707, 3, 370, 185, 0, 1706, 1708, 3, 210, 105, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1711, 5, 20, 0, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 5, 2, 0, 0, 1713, 1714, 3, 26, 13, 0, 1714, 1715, 5, 3, 0, 0, 1715, 47, 1, 0, 0, 0, 1716, 1717, 5, 331, 0, 0, 1717, 1718, 3, 244, 122, 0, 1718, 49, 1, 0, 0, 0, 1719, 1720, 5, 206, 0, 0, 1720, 1733, 3, 60, 30, 0, 1721, 1722, 5, 217, 0, 0, 1722, 1723, 5, 31, 0, 0, 1723, 1733, 3, 258, 129, 0, 1724, 1733, 3, 20, 10, 0, 1725, 1733, 3, 18, 9, 0, 1726, 1733, 3, 240, 120, 0, 1727, 1733, 3, 68, 34, 0, 1728, 1733, 3, 22, 11, 0, 1729, 1733, 3, 24, 12, 0, 1730, 1731, 5, 296, 0, 0, 1731, 1733, 3, 52, 26, 0, 1732, 1719, 1, 0, 0, 0, 1732, 1721, 1, 0, 0, 0, 1732, 1724, 1, 0, 0, 0, 1732, 1725, 1, 0, 0, 0, 1732, 1726, 1, 0, 0, 0, 1732, 1727, 1, 0, 0, 0, 1732, 1728, 1, 0, 0, 0, 1732, 1729, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1733, 1736, 1, 0, 0, 0, 1734, 1732, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 51, 1, 0, 0, 0, 1736, 1734, 1, 0, 0, 0, 1737, 1738, 5, 2, 0, 0, 1738, 1743, 3, 54, 27, 0, 1739, 1740, 5, 4, 0, 0, 1740, 1742, 3, 54, 27, 0, 1741, 1739, 1, 0, 0, 0, 1742, 1745, 1, 0, 0, 0, 1743, 1741, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1746, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1746, 1747, 5, 3, 0, 0, 1747, 53, 1, 0, 0, 0, 1748, 1753, 3, 56, 28, 0, 1749, 1751, 5, 351, 0, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 3, 58, 29, 0, 1753, 1750, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 55, 1, 0, 0, 0, 1755, 1760, 3, 374, 187, 0, 1756, 1757, 5, 5, 0, 0, 1757, 1759, 3, 374, 187, 0, 1758, 1756, 1, 0, 0, 0, 1759, 1762, 1, 0, 0, 0, 1760, 1758, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1765, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1765, 3, 386, 193, 0, 1764, 1755, 1, 0, 0, 0, 1764, 1763, 1, 0, 0, 0, 1765, 57, 1, 0, 0, 0, 1766, 1771, 5, 381, 0, 0, 1767, 1771, 5, 383, 0, 0, 1768, 1771, 3, 294, 147, 0, 1769, 1771, 3, 386, 193, 0, 1770, 1766, 1, 0, 0, 0, 1770, 1767, 1, 0, 0, 0, 1770, 1768, 1, 0, 0, 0, 1770, 1769, 1, 0, 0, 0, 1771, 59, 1, 0, 0, 0, 1772, 1773, 5, 2, 0, 0, 1773, 1778, 3, 62, 31, 0, 1774, 1775, 5, 4, 0, 0, 1775, 1777, 3, 62, 31, 0, 1776, 1774, 1, 0, 0, 0, 1777, 1780, 1, 0, 0, 0, 1778, 1776, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1781, 1, 0, 0, 0, 1780, 1778, 1, 0, 0, 0, 1781, 1782, 5, 3, 0, 0, 1782, 61, 1, 0, 0, 0, 1783, 1788, 3, 56, 28, 0, 1784, 1786, 5, 351, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 3, 266, 133, 0, 1788, 1785, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 63, 1, 0, 0, 0, 1790, 1791, 5, 2, 0, 0, 1791, 1796, 3, 286, 143, 0, 1792, 1793, 5, 4, 0, 0, 1793, 1795, 3, 286, 143, 0, 1794, 1792, 1, 0, 0, 0, 1795, 1798, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1799, 1, 0, 0, 0, 1798, 1796, 1, 0, 0, 0, 1799, 1800, 5, 3, 0, 0, 1800, 65, 1, 0, 0, 0, 1801, 1802, 5, 2, 0, 0, 1802, 1807, 3, 64, 32, 0, 1803, 1804, 5, 4, 0, 0, 1804, 1806, 3, 64, 32, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1809, 1, 0, 0, 0, 1807, 1805, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1810, 1, 0, 0, 0, 1809, 1807, 1, 0, 0, 0, 1810, 1811, 5, 3, 0, 0, 1811, 67, 1, 0, 0, 0, 1812, 1813, 5, 282, 0, 0, 1813, 1814, 5, 20, 0, 0, 1814, 1819, 3, 70, 35, 0, 1815, 1816, 5, 282, 0, 0, 1816, 1817, 5, 31, 0, 0, 1817, 1819, 3, 72, 36, 0, 1818, 1812, 1, 0, 0, 0, 1818, 1815, 1, 0, 0, 0, 1819, 69, 1, 0, 0, 0, 1820, 1821, 5, 146, 0, 0, 1821, 1822, 3, 386, 193, 0, 1822, 1823, 5, 211, 0, 0, 1823, 1824, 3, 386, 193, 0, 1824, 1827, 1, 0, 0, 0, 1825, 1827, 3, 374, 187, 0, 1826, 1820, 1, 0, 0, 0, 1826, 1825, 1, 0, 0, 0, 1827, 71, 1, 0, 0, 0, 1828, 1832, 3, 386, 193, 0, 1829, 1830, 5, 345, 0, 0, 1830, 1831, 5, 266, 0, 0, 1831, 1833, 3, 52, 26, 0, 1832, 1829, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 73, 1, 0, 0, 0, 1834, 1835, 3, 374, 187, 0, 1835, 1836, 3, 386, 193, 0, 1836, 75, 1, 0, 0, 0, 1837, 1838, 3, 28, 14, 0, 1838, 1839, 3, 26, 13, 0, 1839, 1894, 1, 0, 0, 0, 1840, 1842, 3, 144, 72, 0, 1841, 1843, 3, 100, 50, 0, 1842, 1841, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1894, 1, 0, 0, 0, 1846, 1847, 5, 84, 0, 0, 1847, 1848, 5, 123, 0, 0, 1848, 1849, 3, 84, 42, 0, 1849, 1851, 3, 238, 119, 0, 1850, 1852, 3, 136, 68, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1894, 1, 0, 0, 0, 1853, 1854, 5, 328, 0, 0, 1854, 1855, 3, 84, 42, 0, 1855, 1856, 3, 238, 119, 0, 1856, 1858, 3, 118, 59, 0, 1857, 1859, 3, 136, 68, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1894, 1, 0, 0, 0, 1860, 1861, 5, 178, 0, 0, 1861, 1862, 5, 152, 0, 0, 1862, 1863, 3, 84, 42, 0, 1863, 1864, 3, 238, 119, 0, 1864, 1870, 5, 331, 0, 0, 1865, 1871, 3, 96, 48, 0, 1866, 1867, 5, 2, 0, 0, 1867, 1868, 3, 26, 13, 0, 1868, 1869, 5, 3, 0, 0, 1869, 1871, 1, 0, 0, 0, 1870, 1865, 1, 0, 0, 0, 1870, 1866, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1873, 3, 238, 119, 0, 1873, 1874, 5, 202, 0, 0, 1874, 1878, 3, 274, 137, 0, 1875, 1877, 3, 120, 60, 0, 1876, 1875, 1, 0, 0, 0, 1877, 1880, 1, 0, 0, 0, 1878, 1876, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1884, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1881, 1883, 3, 122, 61, 0, 1882, 1881, 1, 0, 0, 0, 1883, 1886, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1890, 1, 0, 0, 0, 1886, 1884, 1, 0, 0, 0, 1887, 1889, 3, 124, 62, 0, 1888, 1887, 1, 0, 0, 0, 1889, 1892, 1, 0, 0, 0, 1890, 1888, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1893, 1837, 1, 0, 0, 0, 1893, 1840, 1, 0, 0, 0, 1893, 1846, 1, 0, 0, 0, 1893, 1853, 1, 0, 0, 0, 1893, 1860, 1, 0, 0, 0, 1894, 77, 1, 0, 0, 0, 1895, 1896, 3, 96, 48, 0, 1896, 79, 1, 0, 0, 0, 1897, 1898, 3, 96, 48, 0, 1898, 81, 1, 0, 0, 0, 1899, 1900, 3, 250, 125, 0, 1900, 83, 1, 0, 0, 0, 1901, 1902, 3, 250, 125, 0, 1902, 85, 1, 0, 0, 0, 1903, 1904, 3, 252, 126, 0, 1904, 87, 1, 0, 0, 0, 1905, 1906, 3, 252, 126, 0, 1906, 89, 1, 0, 0, 0, 1907, 1910, 3, 244, 122, 0, 1908, 1910, 4, 45, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1908, 1, 0, 0, 0, 1910, 91, 1, 0, 0, 0, 1911, 1916, 3, 90, 45, 0, 1912, 1913, 5, 4, 0, 0, 1913, 1915, 3, 90, 45, 0, 1914, 1912, 1, 0, 0, 0, 1915, 1918, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 93, 1, 0, 0, 0, 1918, 1916, 1, 0, 0, 0, 1919, 1920, 3, 370, 185, 0, 1920, 95, 1, 0, 0, 0, 1921, 1922, 5, 136, 0, 0, 1922, 1923, 5, 2, 0, 0, 1923, 1924, 3, 266, 133, 0, 1924, 1925, 5, 3, 0, 0, 1925, 1928, 1, 0, 0, 0, 1926, 1928, 3, 244, 122, 0, 1927, 1921, 1, 0, 0, 0, 1927, 1926, 1, 0, 0, 0, 1928, 97, 1, 0, 0, 0, 1929, 1930, 5, 208, 0, 0, 1930, 1931, 5, 31, 0, 0, 1931, 1936, 3, 106, 53, 0, 1932, 1933, 5, 4, 0, 0, 1933, 1935, 3, 106, 53, 0, 1934, 1932, 1, 0, 0, 0, 1935, 1938, 1, 0, 0, 0, 1936, 1934, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1940, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1939, 1929, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1951, 1, 0, 0, 0, 1941, 1942, 5, 44, 0, 0, 1942, 1943, 5, 31, 0, 0, 1943, 1948, 3, 266, 133, 0, 1944, 1945, 5, 4, 0, 0, 1945, 1947, 3, 266, 133, 0, 1946, 1944, 1, 0, 0, 0, 1947, 1950, 1, 0, 0, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1952, 1, 0, 0, 0, 1950, 1948, 1, 0, 0, 0, 1951, 1941, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1963, 1, 0, 0, 0, 1953, 1954, 5, 93, 0, 0, 1954, 1955, 5, 31, 0, 0, 1955, 1960, 3, 266, 133, 0, 1956, 1957, 5, 4, 0, 0, 1957, 1959, 3, 266, 133, 0, 1958, 1956, 1, 0, 0, 0, 1959, 1962, 1, 0, 0, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1964, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1963, 1953, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1975, 1, 0, 0, 0, 1965, 1966, 5, 277, 0, 0, 1966, 1967, 5, 31, 0, 0, 1967, 1972, 3, 106, 53, 0, 1968, 1969, 5, 4, 0, 0, 1969, 1971, 3, 106, 53, 0, 1970, 1968, 1, 0, 0, 0, 1971, 1974, 1, 0, 0, 0, 1972, 1970, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1976, 1, 0, 0, 0, 1974, 1972, 1, 0, 0, 0, 1975, 1965, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1978, 1, 0, 0, 0, 1977, 1979, 3, 350, 175, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1985, 1, 0, 0, 0, 1980, 1983, 5, 164, 0, 0, 1981, 1984, 5, 10, 0, 0, 1982, 1984, 3, 266, 133, 0, 1983, 1981, 1, 0, 0, 0, 1983, 1982, 1, 0, 0, 0, 1984, 1986, 1, 0, 0, 0, 1985, 1980, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1989, 1, 0, 0, 0, 1987, 1988, 5, 201, 0, 0, 1988, 1990, 3, 266, 133, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 99, 1, 0, 0, 0, 1991, 1992, 3, 28, 14, 0, 1992, 1993, 3, 110, 55, 0, 1993, 101, 1, 0, 0, 0, 1994, 1995, 6, 51, -1, 0, 1995, 1996, 3, 104, 52, 0, 1996, 2017, 1, 0, 0, 0, 1997, 1998, 10, 3, 0, 0, 1998, 2000, 7, 13, 0, 0, 1999, 2001, 3, 194, 97, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2016, 3, 102, 51, 4, 2003, 2004, 10, 2, 0, 0, 2004, 2006, 5, 148, 0, 0, 2005, 2007, 3, 194, 97, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2016, 3, 102, 51, 3, 2009, 2010, 10, 1, 0, 0, 2010, 2012, 7, 14, 0, 0, 2011, 2013, 3, 194, 97, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2016, 3, 102, 51, 2, 2015, 1997, 1, 0, 0, 0, 2015, 2003, 1, 0, 0, 0, 2015, 2009, 1, 0, 0, 0, 2016, 2019, 1, 0, 0, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 103, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2020, 2030, 3, 112, 56, 0, 2021, 2030, 3, 108, 54, 0, 2022, 2023, 5, 292, 0, 0, 2023, 2030, 3, 84, 42, 0, 2024, 2030, 3, 224, 112, 0, 2025, 2026, 5, 2, 0, 0, 2026, 2027, 3, 26, 13, 0, 2027, 2028, 5, 3, 0, 0, 2028, 2030, 1, 0, 0, 0, 2029, 2020, 1, 0, 0, 0, 2029, 2021, 1, 0, 0, 0, 2029, 2022, 1, 0, 0, 0, 2029, 2024, 1, 0, 0, 0, 2029, 2025, 1, 0, 0, 0, 2030, 105, 1, 0, 0, 0, 2031, 2034, 3, 90, 45, 0, 2032, 2034, 3, 266, 133, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2032, 1, 0, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2037, 7, 15, 0, 0, 2036, 2035, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2039, 5, 198, 0, 0, 2039, 2041, 7, 16, 0, 0, 2040, 2038, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 107, 1, 0, 0, 0, 2042, 2044, 3, 144, 72, 0, 2043, 2045, 3, 110, 55, 0, 2044, 2043, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2044, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 109, 1, 0, 0, 0, 2048, 2050, 3, 114, 57, 0, 2049, 2051, 3, 136, 68, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2053, 3, 98, 49, 0, 2053, 2076, 1, 0, 0, 0, 2054, 2058, 3, 116, 58, 0, 2055, 2057, 3, 192, 96, 0, 2056, 2055, 1, 0, 0, 0, 2057, 2060, 1, 0, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2062, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2061, 2063, 3, 136, 68, 0, 2062, 2061, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2065, 1, 0, 0, 0, 2064, 2066, 3, 150, 75, 0, 2065, 2064, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2068, 1, 0, 0, 0, 2067, 2069, 3, 138, 69, 0, 2068, 2067, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2071, 1, 0, 0, 0, 2070, 2072, 3, 350, 175, 0, 2071, 2070, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 3, 98, 49, 0, 2074, 2076, 1, 0, 0, 0, 2075, 2048, 1, 0, 0, 0, 2075, 2054, 1, 0, 0, 0, 2076, 111, 1, 0, 0, 0, 2077, 2079, 3, 114, 57, 0, 2078, 2080, 3, 144, 72, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2084, 1, 0, 0, 0, 2081, 2083, 3, 192, 96, 0, 2082, 2081, 1, 0, 0, 0, 2083, 2086, 1, 0, 0, 0, 2084, 2082, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2088, 1, 0, 0, 0, 2086, 2084, 1, 0, 0, 0, 2087, 2089, 3, 136, 68, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2091, 1, 0, 0, 0, 2090, 2092, 3, 150, 75, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2095, 3, 138, 69, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 1, 0, 0, 0, 2096, 2098, 3, 350, 175, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2122, 1, 0, 0, 0, 2099, 2101, 3, 116, 58, 0, 2100, 2102, 3, 144, 72, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2106, 1, 0, 0, 0, 2103, 2105, 3, 192, 96, 0, 2104, 2103, 1, 0, 0, 0, 2105, 2108, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2110, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2109, 2111, 3, 136, 68, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2114, 3, 150, 75, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2117, 3, 138, 69, 0, 2116, 2115, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2119, 1, 0, 0, 0, 2118, 2120, 3, 350, 175, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2077, 1, 0, 0, 0, 2121, 2099, 1, 0, 0, 0, 2122, 113, 1, 0, 0, 0, 2123, 2124, 5, 262, 0, 0, 2124, 2125, 5, 313, 0, 0, 2125, 2127, 5, 2, 0, 0, 2126, 2128, 3, 194, 97, 0, 2127, 2126, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2130, 3, 272, 136, 0, 2130, 2131, 5, 3, 0, 0, 2131, 2143, 1, 0, 0, 0, 2132, 2134, 5, 176, 0, 0, 2133, 2135, 3, 194, 97, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2143, 3, 272, 136, 0, 2137, 2139, 5, 237, 0, 0, 2138, 2140, 3, 194, 97, 0, 2139, 2138, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 3, 272, 136, 0, 2142, 2123, 1, 0, 0, 0, 2142, 2132, 1, 0, 0, 0, 2142, 2137, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2146, 3, 240, 120, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2149, 1, 0, 0, 0, 2147, 2148, 5, 235, 0, 0, 2148, 2150, 3, 386, 193, 0, 2149, 2147, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2152, 5, 331, 0, 0, 2152, 2165, 3, 386, 193, 0, 2153, 2163, 5, 20, 0, 0, 2154, 2164, 3, 212, 106, 0, 2155, 2164, 3, 332, 166, 0, 2156, 2159, 5, 2, 0, 0, 2157, 2160, 3, 212, 106, 0, 2158, 2160, 3, 332, 166, 0, 2159, 2157, 1, 0, 0, 0, 2159, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2162, 5, 3, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2154, 1, 0, 0, 0, 2163, 2155, 1, 0, 0, 0, 2163, 2156, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2153, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2168, 1, 0, 0, 0, 2167, 2169, 3, 240, 120, 0, 2168, 2167, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2172, 1, 0, 0, 0, 2170, 2171, 5, 234, 0, 0, 2171, 2173, 3, 386, 193, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 115, 1, 0, 0, 0, 2174, 2178, 5, 262, 0, 0, 2175, 2177, 3, 140, 70, 0, 2176, 2175, 1, 0, 0, 0, 2177, 2180, 1, 0, 0, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2182, 1, 0, 0, 0, 2180, 2178, 1, 0, 0, 0, 2181, 2183, 3, 194, 97, 0, 2182, 2181, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 3, 256, 128, 0, 2185, 117, 1, 0, 0, 0, 2186, 2187, 5, 268, 0, 0, 2187, 2188, 3, 132, 66, 0, 2188, 119, 1, 0, 0, 0, 2189, 2190, 5, 342, 0, 0, 2190, 2193, 5, 177, 0, 0, 2191, 2192, 5, 14, 0, 0, 2192, 2194, 3, 274, 137, 0, 2193, 2191, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 5, 299, 0, 0, 2196, 2197, 3, 126, 63, 0, 2197, 121, 1, 0, 0, 0, 2198, 2199, 5, 342, 0, 0, 2199, 2200, 5, 196, 0, 0, 2200, 2203, 5, 177, 0, 0, 2201, 2202, 5, 31, 0, 0, 2202, 2204, 5, 295, 0, 0, 2203, 2201, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2207, 1, 0, 0, 0, 2205, 2206, 5, 14, 0, 0, 2206, 2208, 3, 274, 137, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2209, 1, 0, 0, 0, 2209, 2210, 5, 299, 0, 0, 2210, 2211, 3, 128, 64, 0, 2211, 123, 1, 0, 0, 0, 2212, 2213, 5, 342, 0, 0, 2213, 2214, 5, 196, 0, 0, 2214, 2215, 5, 177, 0, 0, 2215, 2216, 5, 31, 0, 0, 2216, 2219, 5, 279, 0, 0, 2217, 2218, 5, 14, 0, 0, 2218, 2220, 3, 274, 137, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 2222, 5, 299, 0, 0, 2222, 2223, 3, 130, 65, 0, 2223, 125, 1, 0, 0, 0, 2224, 2232, 5, 84, 0, 0, 2225, 2226, 5, 328, 0, 0, 2226, 2227, 5, 268, 0, 0, 2227, 2232, 5, 362, 0, 0, 2228, 2229, 5, 328, 0, 0, 2229, 2230, 5, 268, 0, 0, 2230, 2232, 3, 132, 66, 0, 2231, 2224, 1, 0, 0, 0, 2231, 2225, 1, 0, 0, 0, 2231, 2228, 1, 0, 0, 0, 2232, 127, 1, 0, 0, 0, 2233, 2234, 5, 147, 0, 0, 2234, 2252, 5, 362, 0, 0, 2235, 2236, 5, 147, 0, 0, 2236, 2237, 5, 2, 0, 0, 2237, 2238, 3, 242, 121, 0, 2238, 2239, 5, 3, 0, 0, 2239, 2240, 5, 332, 0, 0, 2240, 2241, 5, 2, 0, 0, 2241, 2246, 3, 266, 133, 0, 2242, 2243, 5, 4, 0, 0, 2243, 2245, 3, 266, 133, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2248, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2249, 1, 0, 0, 0, 2248, 2246, 1, 0, 0, 0, 2249, 2250, 5, 3, 0, 0, 2250, 2252, 1, 0, 0, 0, 2251, 2233, 1, 0, 0, 0, 2251, 2235, 1, 0, 0, 0, 2252, 129, 1, 0, 0, 0, 2253, 2258, 5, 84, 0, 0, 2254, 2255, 5, 328, 0, 0, 2255, 2256, 5, 268, 0, 0, 2256, 2258, 3, 132, 66, 0, 2257, 2253, 1, 0, 0, 0, 2257, 2254, 1, 0, 0, 0, 2258, 131, 1, 0, 0, 0, 2259, 2264, 3, 134, 67, 0, 2260, 2261, 5, 4, 0, 0, 2261, 2263, 3, 134, 67, 0, 2262, 2260, 1, 0, 0, 0, 2263, 2266, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 133, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2267, 2268, 3, 244, 122, 0, 2268, 2269, 5, 351, 0, 0, 2269, 2270, 3, 266, 133, 0, 2270, 135, 1, 0, 0, 0, 2271, 2272, 5, 343, 0, 0, 2272, 2273, 3, 274, 137, 0, 2273, 137, 1, 0, 0, 0, 2274, 2275, 5, 132, 0, 0, 2275, 2276, 3, 274, 137, 0, 2276, 139, 1, 0, 0, 0, 2277, 2278, 5, 373, 0, 0, 2278, 2285, 3, 142, 71, 0, 2279, 2281, 5, 4, 0, 0, 2280, 2279, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2284, 3, 142, 71, 0, 2283, 2280, 1, 0, 0, 0, 2284, 2287, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2288, 1, 0, 0, 0, 2287, 2285, 1, 0, 0, 0, 2288, 2289, 5, 374, 0, 0, 2289, 141, 1, 0, 0, 0, 2290, 2304, 3, 374, 187, 0, 2291, 2292, 3, 374, 187, 0, 2292, 2293, 5, 2, 0, 0, 2293, 2298, 3, 282, 141, 0, 2294, 2295, 5, 4, 0, 0, 2295, 2297, 3, 282, 141, 0, 2296, 2294, 1, 0, 0, 0, 2297, 2300, 1, 0, 0, 0, 2298, 2296, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2301, 1, 0, 0, 0, 2300, 2298, 1, 0, 0, 0, 2301, 2302, 5, 3, 0, 0, 2302, 2304, 1, 0, 0, 0, 2303, 2290, 1, 0, 0, 0, 2303, 2291, 1, 0, 0, 0, 2304, 143, 1, 0, 0, 0, 2305, 2306, 5, 123, 0, 0, 2306, 2311, 3, 196, 98, 0, 2307, 2308, 5, 4, 0, 0, 2308, 2310, 3, 196, 98, 0, 2309, 2307, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2317, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2316, 3, 192, 96, 0, 2315, 2314, 1, 0, 0, 0, 2316, 2319, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2321, 1, 0, 0, 0, 2319, 2317, 1, 0, 0, 0, 2320, 2322, 3, 160, 80, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2324, 1, 0, 0, 0, 2323, 2325, 3, 166, 83, 0, 2324, 2323, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 145, 1, 0, 0, 0, 2326, 2327, 7, 17, 0, 0, 2327, 147, 1, 0, 0, 0, 2328, 2330, 5, 119, 0, 0, 2329, 2328, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 7, 18, 0, 0, 2332, 2333, 5, 20, 0, 0, 2333, 2334, 5, 200, 0, 0, 2334, 2343, 3, 390, 195, 0, 2335, 2337, 5, 119, 0, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2339, 7, 19, 0, 0, 2339, 2340, 5, 20, 0, 0, 2340, 2341, 5, 200, 0, 0, 2341, 2343, 3, 278, 139, 0, 2342, 2329, 1, 0, 0, 0, 2342, 2336, 1, 0, 0, 0, 2343, 149, 1, 0, 0, 0, 2344, 2345, 5, 130, 0, 0, 2345, 2346, 5, 31, 0, 0, 2346, 2351, 3, 152, 76, 0, 2347, 2348, 5, 4, 0, 0, 2348, 2350, 3, 152, 76, 0, 2349, 2347, 1, 0, 0, 0, 2350, 2353, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2384, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2354, 2355, 5, 130, 0, 0, 2355, 2356, 5, 31, 0, 0, 2356, 2361, 3, 266, 133, 0, 2357, 2358, 5, 4, 0, 0, 2358, 2360, 3, 266, 133, 0, 2359, 2357, 1, 0, 0, 0, 2360, 2363, 1, 0, 0, 0, 2361, 2359, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2381, 1, 0, 0, 0, 2363, 2361, 1, 0, 0, 0, 2364, 2365, 5, 345, 0, 0, 2365, 2382, 5, 255, 0, 0, 2366, 2367, 5, 345, 0, 0, 2367, 2382, 5, 61, 0, 0, 2368, 2369, 5, 131, 0, 0, 2369, 2370, 5, 270, 0, 0, 2370, 2371, 5, 2, 0, 0, 2371, 2376, 3, 158, 79, 0, 2372, 2373, 5, 4, 0, 0, 2373, 2375, 3, 158, 79, 0, 2374, 2372, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2379, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2380, 5, 3, 0, 0, 2380, 2382, 1, 0, 0, 0, 2381, 2364, 1, 0, 0, 0, 2381, 2366, 1, 0, 0, 0, 2381, 2368, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2384, 1, 0, 0, 0, 2383, 2344, 1, 0, 0, 0, 2383, 2354, 1, 0, 0, 0, 2384, 151, 1, 0, 0, 0, 2385, 2389, 3, 90, 45, 0, 2386, 2389, 3, 154, 77, 0, 2387, 2389, 3, 266, 133, 0, 2388, 2385, 1, 0, 0, 0, 2388, 2386, 1, 0, 0, 0, 2388, 2387, 1, 0, 0, 0, 2389, 153, 1, 0, 0, 0, 2390, 2391, 7, 20, 0, 0, 2391, 2392, 5, 2, 0, 0, 2392, 2397, 3, 158, 79, 0, 2393, 2394, 5, 4, 0, 0, 2394, 2396, 3, 158, 79, 0, 2395, 2393, 1, 0, 0, 0, 2396, 2399, 1, 0, 0, 0, 2397, 2395, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2397, 1, 0, 0, 0, 2400, 2401, 5, 3, 0, 0, 2401, 2416, 1, 0, 0, 0, 2402, 2403, 5, 131, 0, 0, 2403, 2404, 5, 270, 0, 0, 2404, 2405, 5, 2, 0, 0, 2405, 2410, 3, 156, 78, 0, 2406, 2407, 5, 4, 0, 0, 2407, 2409, 3, 156, 78, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2412, 1, 0, 0, 0, 2410, 2408, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2410, 1, 0, 0, 0, 2413, 2414, 5, 3, 0, 0, 2414, 2416, 1, 0, 0, 0, 2415, 2390, 1, 0, 0, 0, 2415, 2402, 1, 0, 0, 0, 2416, 155, 1, 0, 0, 0, 2417, 2420, 3, 154, 77, 0, 2418, 2420, 3, 158, 79, 0, 2419, 2417, 1, 0, 0, 0, 2419, 2418, 1, 0, 0, 0, 2420, 157, 1, 0, 0, 0, 2421, 2442, 3, 90, 45, 0, 2422, 2442, 3, 266, 133, 0, 2423, 2438, 5, 2, 0, 0, 2424, 2427, 3, 90, 45, 0, 2425, 2427, 3, 266, 133, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2425, 1, 0, 0, 0, 2427, 2435, 1, 0, 0, 0, 2428, 2431, 5, 4, 0, 0, 2429, 2432, 3, 90, 45, 0, 2430, 2432, 3, 266, 133, 0, 2431, 2429, 1, 0, 0, 0, 2431, 2430, 1, 0, 0, 0, 2432, 2434, 1, 0, 0, 0, 2433, 2428, 1, 0, 0, 0, 2434, 2437, 1, 0, 0, 0, 2435, 2433, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2439, 1, 0, 0, 0, 2437, 2435, 1, 0, 0, 0, 2438, 2426, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2442, 5, 3, 0, 0, 2441, 2421, 1, 0, 0, 0, 2441, 2422, 1, 0, 0, 0, 2441, 2423, 1, 0, 0, 0, 2442, 159, 1, 0, 0, 0, 2443, 2444, 5, 222, 0, 0, 2444, 2445, 5, 2, 0, 0, 2445, 2446, 3, 256, 128, 0, 2446, 2447, 5, 119, 0, 0, 2447, 2448, 3, 162, 81, 0, 2448, 2449, 5, 140, 0, 0, 2449, 2450, 5, 2, 0, 0, 2450, 2455, 3, 164, 82, 0, 2451, 2452, 5, 4, 0, 0, 2452, 2454, 3, 164, 82, 0, 2453, 2451, 1, 0, 0, 0, 2454, 2457, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2458, 1, 0, 0, 0, 2457, 2455, 1, 0, 0, 0, 2458, 2459, 5, 3, 0, 0, 2459, 2460, 5, 3, 0, 0, 2460, 161, 1, 0, 0, 0, 2461, 2474, 3, 374, 187, 0, 2462, 2463, 5, 2, 0, 0, 2463, 2468, 3, 374, 187, 0, 2464, 2465, 5, 4, 0, 0, 2465, 2467, 3, 374, 187, 0, 2466, 2464, 1, 0, 0, 0, 2467, 2470, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2471, 1, 0, 0, 0, 2470, 2468, 1, 0, 0, 0, 2471, 2472, 5, 3, 0, 0, 2472, 2474, 1, 0, 0, 0, 2473, 2461, 1, 0, 0, 0, 2473, 2462, 1, 0, 0, 0, 2474, 163, 1, 0, 0, 0, 2475, 2480, 3, 266, 133, 0, 2476, 2478, 5, 20, 0, 0, 2477, 2476, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2481, 3, 374, 187, 0, 2480, 2477, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 165, 1, 0, 0, 0, 2482, 2484, 5, 326, 0, 0, 2483, 2485, 3, 168, 84, 0, 2484, 2483, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 5, 2, 0, 0, 2487, 2488, 3, 170, 85, 0, 2488, 2493, 5, 3, 0, 0, 2489, 2491, 5, 20, 0, 0, 2490, 2489, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2494, 3, 374, 187, 0, 2493, 2490, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 167, 1, 0, 0, 0, 2495, 2496, 7, 21, 0, 0, 2496, 2497, 5, 198, 0, 0, 2497, 169, 1, 0, 0, 0, 2498, 2501, 3, 172, 86, 0, 2499, 2501, 3, 174, 87, 0, 2500, 2498, 1, 0, 0, 0, 2500, 2499, 1, 0, 0, 0, 2501, 171, 1, 0, 0, 0, 2502, 2503, 3, 178, 89, 0, 2503, 2504, 5, 119, 0, 0, 2504, 2505, 3, 180, 90, 0, 2505, 2506, 5, 140, 0, 0, 2506, 2507, 5, 2, 0, 0, 2507, 2512, 3, 182, 91, 0, 2508, 2509, 5, 4, 0, 0, 2509, 2511, 3, 182, 91, 0, 2510, 2508, 1, 0, 0, 0, 2511, 2514, 1, 0, 0, 0, 2512, 2510, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2515, 1, 0, 0, 0, 2514, 2512, 1, 0, 0, 0, 2515, 2516, 5, 3, 0, 0, 2516, 173, 1, 0, 0, 0, 2517, 2518, 5, 2, 0, 0, 2518, 2523, 3, 178, 89, 0, 2519, 2520, 5, 4, 0, 0, 2520, 2522, 3, 178, 89, 0, 2521, 2519, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2526, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2527, 5, 3, 0, 0, 2527, 2528, 5, 119, 0, 0, 2528, 2529, 3, 180, 90, 0, 2529, 2530, 5, 140, 0, 0, 2530, 2531, 5, 2, 0, 0, 2531, 2536, 3, 176, 88, 0, 2532, 2533, 5, 4, 0, 0, 2533, 2535, 3, 176, 88, 0, 2534, 2532, 1, 0, 0, 0, 2535, 2538, 1, 0, 0, 0, 2536, 2534, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2536, 1, 0, 0, 0, 2539, 2540, 5, 3, 0, 0, 2540, 175, 1, 0, 0, 0, 2541, 2542, 5, 2, 0, 0, 2542, 2547, 3, 184, 92, 0, 2543, 2544, 5, 4, 0, 0, 2544, 2546, 3, 184, 92, 0, 2545, 2543, 1, 0, 0, 0, 2546, 2549, 1, 0, 0, 0, 2547, 2545, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2550, 1, 0, 0, 0, 2549, 2547, 1, 0, 0, 0, 2550, 2552, 5, 3, 0, 0, 2551, 2553, 3, 186, 93, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 177, 1, 0, 0, 0, 2554, 2555, 3, 374, 187, 0, 2555, 179, 1, 0, 0, 0, 2556, 2557, 3, 374, 187, 0, 2557, 181, 1, 0, 0, 0, 2558, 2560, 3, 184, 92, 0, 2559, 2561, 3, 186, 93, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 183, 1, 0, 0, 0, 2562, 2563, 3, 244, 122, 0, 2563, 185, 1, 0, 0, 0, 2564, 2566, 5, 20, 0, 0, 2565, 2564, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 2568, 3, 374, 187, 0, 2568, 187, 1, 0, 0, 0, 2569, 2570, 5, 137, 0, 0, 2570, 2571, 5, 196, 0, 0, 2571, 2572, 5, 105, 0, 0, 2572, 189, 1, 0, 0, 0, 2573, 2574, 5, 137, 0, 0, 2574, 2575, 5, 105, 0, 0, 2575, 191, 1, 0, 0, 0, 2576, 2577, 5, 158, 0, 0, 2577, 2579, 5, 337, 0, 0, 2578, 2580, 5, 210, 0, 0, 2579, 2578, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2582, 3, 88, 44, 0, 2582, 2591, 5, 2, 0, 0, 2583, 2588, 3, 266, 133, 0, 2584, 2585, 5, 4, 0, 0, 2585, 2587, 3, 266, 133, 0, 2586, 2584, 1, 0, 0, 0, 2587, 2590, 1, 0, 0, 0, 2588, 2586, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2592, 1, 0, 0, 0, 2590, 2588, 1, 0, 0, 0, 2591, 2583, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2594, 5, 3, 0, 0, 2594, 2606, 3, 238, 119, 0, 2595, 2597, 5, 20, 0, 0, 2596, 2595, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2603, 3, 374, 187, 0, 2599, 2600, 5, 4, 0, 0, 2600, 2602, 3, 374, 187, 0, 2601, 2599, 1, 0, 0, 0, 2602, 2605, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2607, 1, 0, 0, 0, 2605, 2603, 1, 0, 0, 0, 2606, 2596, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 193, 1, 0, 0, 0, 2608, 2609, 7, 22, 0, 0, 2609, 195, 1, 0, 0, 0, 2610, 2622, 3, 84, 42, 0, 2611, 2613, 5, 158, 0, 0, 2612, 2611, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2618, 3, 222, 111, 0, 2615, 2617, 3, 198, 99, 0, 2616, 2615, 1, 0, 0, 0, 2617, 2620, 1, 0, 0, 0, 2618, 2616, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2622, 1, 0, 0, 0, 2620, 2618, 1, 0, 0, 0, 2621, 2610, 1, 0, 0, 0, 2621, 2612, 1, 0, 0, 0, 2622, 197, 1, 0, 0, 0, 2623, 2627, 3, 200, 100, 0, 2624, 2627, 3, 160, 80, 0, 2625, 2627, 3, 166, 83, 0, 2626, 2623, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2625, 1, 0, 0, 0, 2627, 199, 1, 0, 0, 0, 2628, 2629, 3, 202, 101, 0, 2629, 2631, 5, 155, 0, 0, 2630, 2632, 5, 158, 0, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2635, 3, 222, 111, 0, 2634, 2636, 3, 204, 102, 0, 2635, 2634, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2646, 1, 0, 0, 0, 2637, 2638, 5, 193, 0, 0, 2638, 2639, 3, 202, 101, 0, 2639, 2641, 5, 155, 0, 0, 2640, 2642, 5, 158, 0, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2644, 3, 222, 111, 0, 2644, 2646, 1, 0, 0, 0, 2645, 2628, 1, 0, 0, 0, 2645, 2637, 1, 0, 0, 0, 2646, 201, 1, 0, 0, 0, 2647, 2649, 5, 144, 0, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2672, 1, 0, 0, 0, 2650, 2672, 5, 60, 0, 0, 2651, 2653, 5, 161, 0, 0, 2652, 2654, 5, 210, 0, 0, 2653, 2652, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 2672, 1, 0, 0, 0, 2655, 2657, 5, 161, 0, 0, 2656, 2655, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2672, 5, 263, 0, 0, 2659, 2661, 5, 249, 0, 0, 2660, 2662, 5, 210, 0, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2672, 1, 0, 0, 0, 2663, 2665, 5, 124, 0, 0, 2664, 2666, 5, 210, 0, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2672, 1, 0, 0, 0, 2667, 2669, 5, 161, 0, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 5, 15, 0, 0, 2671, 2648, 1, 0, 0, 0, 2671, 2650, 1, 0, 0, 0, 2671, 2651, 1, 0, 0, 0, 2671, 2656, 1, 0, 0, 0, 2671, 2659, 1, 0, 0, 0, 2671, 2663, 1, 0, 0, 0, 2671, 2668, 1, 0, 0, 0, 2672, 203, 1, 0, 0, 0, 2673, 2674, 5, 202, 0, 0, 2674, 2678, 3, 274, 137, 0, 2675, 2676, 5, 331, 0, 0, 2676, 2678, 3, 210, 105, 0, 2677, 2673, 1, 0, 0, 0, 2677, 2675, 1, 0, 0, 0, 2678, 205, 1, 0, 0, 0, 2679, 2680, 5, 294, 0, 0, 2680, 2682, 5, 2, 0, 0, 2681, 2683, 3, 208, 104, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2689, 5, 3, 0, 0, 2685, 2686, 5, 242, 0, 0, 2686, 2687, 5, 2, 0, 0, 2687, 2688, 5, 381, 0, 0, 2688, 2690, 5, 3, 0, 0, 2689, 2685, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 207, 1, 0, 0, 0, 2691, 2693, 5, 361, 0, 0, 2692, 2691, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2695, 7, 23, 0, 0, 2695, 2716, 5, 221, 0, 0, 2696, 2697, 3, 266, 133, 0, 2697, 2698, 5, 257, 0, 0, 2698, 2716, 1, 0, 0, 0, 2699, 2700, 5, 29, 0, 0, 2700, 2701, 5, 381, 0, 0, 2701, 2702, 5, 209, 0, 0, 2702, 2703, 5, 200, 0, 0, 2703, 2712, 5, 381, 0, 0, 2704, 2710, 5, 202, 0, 0, 2705, 2711, 3, 374, 187, 0, 2706, 2707, 3, 368, 184, 0, 2707, 2708, 5, 2, 0, 0, 2708, 2709, 5, 3, 0, 0, 2709, 2711, 1, 0, 0, 0, 2710, 2705, 1, 0, 0, 0, 2710, 2706, 1, 0, 0, 0, 2711, 2713, 1, 0, 0, 0, 2712, 2704, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2716, 1, 0, 0, 0, 2714, 2716, 3, 266, 133, 0, 2715, 2692, 1, 0, 0, 0, 2715, 2696, 1, 0, 0, 0, 2715, 2699, 1, 0, 0, 0, 2715, 2714, 1, 0, 0, 0, 2716, 209, 1, 0, 0, 0, 2717, 2718, 5, 2, 0, 0, 2718, 2719, 3, 212, 106, 0, 2719, 2720, 5, 3, 0, 0, 2720, 211, 1, 0, 0, 0, 2721, 2726, 3, 370, 185, 0, 2722, 2723, 5, 4, 0, 0, 2723, 2725, 3, 370, 185, 0, 2724, 2722, 1, 0, 0, 0, 2725, 2728, 1, 0, 0, 0, 2726, 2724, 1, 0, 0, 0, 2726, 2727, 1, 0, 0, 0, 2727, 213, 1, 0, 0, 0, 2728, 2726, 1, 0, 0, 0, 2729, 2730, 5, 2, 0, 0, 2730, 2735, 3, 216, 108, 0, 2731, 2732, 5, 4, 0, 0, 2732, 2734, 3, 216, 108, 0, 2733, 2731, 1, 0, 0, 0, 2734, 2737, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2738, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 2739, 5, 3, 0, 0, 2739, 215, 1, 0, 0, 0, 2740, 2742, 3, 370, 185, 0, 2741, 2743, 7, 15, 0, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 217, 1, 0, 0, 0, 2744, 2745, 5, 2, 0, 0, 2745, 2750, 3, 220, 110, 0, 2746, 2747, 5, 4, 0, 0, 2747, 2749, 3, 220, 110, 0, 2748, 2746, 1, 0, 0, 0, 2749, 2752, 1, 0, 0, 0, 2750, 2748, 1, 0, 0, 0, 2750, 2751, 1, 0, 0, 0, 2751, 2753, 1, 0, 0, 0, 2752, 2750, 1, 0, 0, 0, 2753, 2754, 5, 3, 0, 0, 2754, 219, 1, 0, 0, 0, 2755, 2757, 3, 94, 47, 0, 2756, 2758, 3, 24, 12, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 221, 1, 0, 0, 0, 2759, 2763, 3, 84, 42, 0, 2760, 2763, 3, 88, 44, 0, 2761, 2763, 3, 96, 48, 0, 2762, 2759, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2761, 1, 0, 0, 0, 2763, 2765, 1, 0, 0, 0, 2764, 2766, 3, 148, 74, 0, 2765, 2764, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2768, 1, 0, 0, 0, 2767, 2769, 3, 206, 103, 0, 2768, 2767, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 3, 238, 119, 0, 2771, 2791, 1, 0, 0, 0, 2772, 2773, 5, 2, 0, 0, 2773, 2774, 3, 26, 13, 0, 2774, 2776, 5, 3, 0, 0, 2775, 2777, 3, 206, 103, 0, 2776, 2775, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2779, 3, 238, 119, 0, 2779, 2791, 1, 0, 0, 0, 2780, 2781, 5, 2, 0, 0, 2781, 2782, 3, 196, 98, 0, 2782, 2784, 5, 3, 0, 0, 2783, 2785, 3, 206, 103, 0, 2784, 2783, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2787, 3, 238, 119, 0, 2787, 2791, 1, 0, 0, 0, 2788, 2791, 3, 224, 112, 0, 2789, 2791, 3, 236, 118, 0, 2790, 2762, 1, 0, 0, 0, 2790, 2772, 1, 0, 0, 0, 2790, 2780, 1, 0, 0, 0, 2790, 2788, 1, 0, 0, 0, 2790, 2789, 1, 0, 0, 0, 2791, 223, 1, 0, 0, 0, 2792, 2793, 5, 332, 0, 0, 2793, 2798, 3, 266, 133, 0, 2794, 2795, 5, 4, 0, 0, 2795, 2797, 3, 266, 133, 0, 2796, 2794, 1, 0, 0, 0, 2797, 2800, 1, 0, 0, 0, 2798, 2796, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2801, 1, 0, 0, 0, 2800, 2798, 1, 0, 0, 0, 2801, 2802, 3, 238, 119, 0, 2802, 225, 1, 0, 0, 0, 2803, 2804, 5, 292, 0, 0, 2804, 2806, 3, 84, 42, 0, 2805, 2807, 3, 228, 114, 0, 2806, 2805, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 2823, 1, 0, 0, 0, 2808, 2809, 5, 292, 0, 0, 2809, 2810, 5, 2, 0, 0, 2810, 2811, 3, 84, 42, 0, 2811, 2813, 5, 3, 0, 0, 2812, 2814, 3, 228, 114, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2823, 1, 0, 0, 0, 2815, 2816, 5, 292, 0, 0, 2816, 2817, 5, 2, 0, 0, 2817, 2818, 3, 26, 13, 0, 2818, 2820, 5, 3, 0, 0, 2819, 2821, 3, 228, 114, 0, 2820, 2819, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2823, 1, 0, 0, 0, 2822, 2803, 1, 0, 0, 0, 2822, 2808, 1, 0, 0, 0, 2822, 2815, 1, 0, 0, 0, 2823, 227, 1, 0, 0, 0, 2824, 2825, 5, 345, 0, 0, 2825, 2826, 5, 273, 0, 0, 2826, 2844, 5, 216, 0, 0, 2827, 2828, 7, 24, 0, 0, 2828, 2841, 5, 31, 0, 0, 2829, 2830, 5, 2, 0, 0, 2830, 2835, 3, 266, 133, 0, 2831, 2832, 5, 4, 0, 0, 2832, 2834, 3, 266, 133, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2837, 1, 0, 0, 0, 2835, 2833, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2838, 1, 0, 0, 0, 2837, 2835, 1, 0, 0, 0, 2838, 2839, 5, 3, 0, 0, 2839, 2842, 1, 0, 0, 0, 2840, 2842, 3, 266, 133, 0, 2841, 2829, 1, 0, 0, 0, 2841, 2840, 1, 0, 0, 0, 2842, 2844, 1, 0, 0, 0, 2843, 2824, 1, 0, 0, 0, 2843, 2827, 1, 0, 0, 0, 2844, 2861, 1, 0, 0, 0, 2845, 2846, 7, 25, 0, 0, 2846, 2859, 5, 31, 0, 0, 2847, 2848, 5, 2, 0, 0, 2848, 2853, 3, 106, 53, 0, 2849, 2850, 5, 4, 0, 0, 2850, 2852, 3, 106, 53, 0, 2851, 2849, 1, 0, 0, 0, 2852, 2855, 1, 0, 0, 0, 2853, 2851, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2856, 1, 0, 0, 0, 2855, 2853, 1, 0, 0, 0, 2856, 2857, 5, 3, 0, 0, 2857, 2860, 1, 0, 0, 0, 2858, 2860, 3, 106, 53, 0, 2859, 2847, 1, 0, 0, 0, 2859, 2858, 1, 0, 0, 0, 2860, 2862, 1, 0, 0, 0, 2861, 2845, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 229, 1, 0, 0, 0, 2863, 2864, 3, 374, 187, 0, 2864, 2865, 5, 372, 0, 0, 2865, 2866, 3, 226, 113, 0, 2866, 231, 1, 0, 0, 0, 2867, 2870, 3, 226, 113, 0, 2868, 2870, 3, 230, 115, 0, 2869, 2867, 1, 0, 0, 0, 2869, 2868, 1, 0, 0, 0, 2870, 233, 1, 0, 0, 0, 2871, 2874, 3, 232, 116, 0, 2872, 2874, 3, 270, 135, 0, 2873, 2871, 1, 0, 0, 0, 2873, 2872, 1, 0, 0, 0, 2874, 235, 1, 0, 0, 0, 2875, 2876, 3, 364, 182, 0, 2876, 2885, 5, 2, 0, 0, 2877, 2882, 3, 234, 117, 0, 2878, 2879, 5, 4, 0, 0, 2879, 2881, 3, 234, 117, 0, 2880, 2878, 1, 0, 0, 0, 2881, 2884, 1, 0, 0, 0, 2882, 2880, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2886, 1, 0, 0, 0, 2884, 2882, 1, 0, 0, 0, 2885, 2877, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2888, 5, 3, 0, 0, 2888, 2889, 3, 238, 119, 0, 2889, 237, 1, 0, 0, 0, 2890, 2892, 5, 20, 0, 0, 2891, 2890, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2895, 3, 376, 188, 0, 2894, 2896, 3, 210, 105, 0, 2895, 2894, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 2898, 1, 0, 0, 0, 2897, 2891, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 239, 1, 0, 0, 0, 2899, 2900, 5, 256, 0, 0, 2900, 2901, 5, 121, 0, 0, 2901, 2902, 5, 265, 0, 0, 2902, 2906, 3, 386, 193, 0, 2903, 2904, 5, 345, 0, 0, 2904, 2905, 5, 266, 0, 0, 2905, 2907, 3, 52, 26, 0, 2906, 2903, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2949, 1, 0, 0, 0, 2908, 2909, 5, 256, 0, 0, 2909, 2910, 5, 121, 0, 0, 2910, 2920, 5, 85, 0, 0, 2911, 2912, 5, 113, 0, 0, 2912, 2913, 5, 298, 0, 0, 2913, 2914, 5, 31, 0, 0, 2914, 2918, 3, 386, 193, 0, 2915, 2916, 5, 101, 0, 0, 2916, 2917, 5, 31, 0, 0, 2917, 2919, 3, 386, 193, 0, 2918, 2915, 1, 0, 0, 0, 2918, 2919, 1, 0, 0, 0, 2919, 2921, 1, 0, 0, 0, 2920, 2911, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2927, 1, 0, 0, 0, 2922, 2923, 5, 48, 0, 0, 2923, 2924, 5, 154, 0, 0, 2924, 2925, 5, 298, 0, 0, 2925, 2926, 5, 31, 0, 0, 2926, 2928, 3, 386, 193, 0, 2927, 2922, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2934, 1, 0, 0, 0, 2929, 2930, 5, 176, 0, 0, 2930, 2931, 5, 156, 0, 0, 2931, 2932, 5, 298, 0, 0, 2932, 2933, 5, 31, 0, 0, 2933, 2935, 3, 386, 193, 0, 2934, 2929, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2940, 1, 0, 0, 0, 2936, 2937, 5, 165, 0, 0, 2937, 2938, 5, 298, 0, 0, 2938, 2939, 5, 31, 0, 0, 2939, 2941, 3, 386, 193, 0, 2940, 2936, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 2946, 1, 0, 0, 0, 2942, 2943, 5, 197, 0, 0, 2943, 2944, 5, 83, 0, 0, 2944, 2945, 5, 20, 0, 0, 2945, 2947, 3, 386, 193, 0, 2946, 2942, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2949, 1, 0, 0, 0, 2948, 2899, 1, 0, 0, 0, 2948, 2908, 1, 0, 0, 0, 2949, 241, 1, 0, 0, 0, 2950, 2955, 3, 244, 122, 0, 2951, 2952, 5, 4, 0, 0, 2952, 2954, 3, 244, 122, 0, 2953, 2951, 1, 0, 0, 0, 2954, 2957, 1, 0, 0, 0, 2955, 2953, 1, 0, 0, 0, 2955, 2956, 1, 0, 0, 0, 2956, 243, 1, 0, 0, 0, 2957, 2955, 1, 0, 0, 0, 2958, 2963, 3, 370, 185, 0, 2959, 2960, 5, 5, 0, 0, 2960, 2962, 3, 370, 185, 0, 2961, 2959, 1, 0, 0, 0, 2962, 2965, 1, 0, 0, 0, 2963, 2961, 1, 0, 0, 0, 2963, 2964, 1, 0, 0, 0, 2964, 245, 1, 0, 0, 0, 2965, 2963, 1, 0, 0, 0, 2966, 2971, 3, 248, 124, 0, 2967, 2968, 5, 4, 0, 0, 2968, 2970, 3, 248, 124, 0, 2969, 2967, 1, 0, 0, 0, 2970, 2973, 1, 0, 0, 0, 2971, 2969, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 247, 1, 0, 0, 0, 2973, 2971, 1, 0, 0, 0, 2974, 2977, 3, 244, 122, 0, 2975, 2976, 5, 206, 0, 0, 2976, 2978, 3, 52, 26, 0, 2977, 2975, 1, 0, 0, 0, 2977, 2978, 1, 0, 0, 0, 2978, 249, 1, 0, 0, 0, 2979, 2980, 3, 370, 185, 0, 2980, 2981, 5, 5, 0, 0, 2981, 2983, 1, 0, 0, 0, 2982, 2979, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 2985, 3, 370, 185, 0, 2985, 251, 1, 0, 0, 0, 2986, 2987, 3, 370, 185, 0, 2987, 2988, 5, 5, 0, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2986, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 3, 370, 185, 0, 2992, 253, 1, 0, 0, 0, 2993, 2996, 3, 90, 45, 0, 2994, 2996, 3, 266, 133, 0, 2995, 2993, 1, 0, 0, 0, 2995, 2994, 1, 0, 0, 0, 2996, 3004, 1, 0, 0, 0, 2997, 2999, 5, 20, 0, 0, 2998, 2997, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3002, 1, 0, 0, 0, 3000, 3003, 3, 370, 185, 0, 3001, 3003, 3, 210, 105, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3001, 1, 0, 0, 0, 3003, 3005, 1, 0, 0, 0, 3004, 2998, 1, 0, 0, 0, 3004, 3005, 1, 0, 0, 0, 3005, 255, 1, 0, 0, 0, 3006, 3011, 3, 254, 127, 0, 3007, 3008, 5, 4, 0, 0, 3008, 3010, 3, 254, 127, 0, 3009, 3007, 1, 0, 0, 0, 3010, 3013, 1, 0, 0, 0, 3011, 3009, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 257, 1, 0, 0, 0, 3013, 3011, 1, 0, 0, 0, 3014, 3015, 5, 2, 0, 0, 3015, 3020, 3, 260, 130, 0, 3016, 3017, 5, 4, 0, 0, 3017, 3019, 3, 260, 130, 0, 3018, 3016, 1, 0, 0, 0, 3019, 3022, 1, 0, 0, 0, 3020, 3018, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3023, 1, 0, 0, 0, 3022, 3020, 1, 0, 0, 0, 3023, 3024, 5, 3, 0, 0, 3024, 259, 1, 0, 0, 0, 3025, 3028, 3, 262, 131, 0, 3026, 3028, 3, 334, 167, 0, 3027, 3025, 1, 0, 0, 0, 3027, 3026, 1, 0, 0, 0, 3028, 261, 1, 0, 0, 0, 3029, 3043, 3, 368, 184, 0, 3030, 3031, 3, 374, 187, 0, 3031, 3032, 5, 2, 0, 0, 3032, 3037, 3, 264, 132, 0, 3033, 3034, 5, 4, 0, 0, 3034, 3036, 3, 264, 132, 0, 3035, 3033, 1, 0, 0, 0, 3036, 3039, 1, 0, 0, 0, 3037, 3035, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3040, 1, 0, 0, 0, 3039, 3037, 1, 0, 0, 0, 3040, 3041, 5, 3, 0, 0, 3041, 3043, 1, 0, 0, 0, 3042, 3029, 1, 0, 0, 0, 3042, 3030, 1, 0, 0, 0, 3043, 263, 1, 0, 0, 0, 3044, 3047, 3, 368, 184, 0, 3045, 3047, 3, 286, 143, 0, 3046, 3044, 1, 0, 0, 0, 3046, 3045, 1, 0, 0, 0, 3047, 265, 1, 0, 0, 0, 3048, 3049, 3, 274, 137, 0, 3049, 267, 1, 0, 0, 0, 3050, 3051, 3, 374, 187, 0, 3051, 3052, 5, 372, 0, 0, 3052, 3053, 3, 266, 133, 0, 3053, 269, 1, 0, 0, 0, 3054, 3057, 3, 266, 133, 0, 3055, 3057, 3, 268, 134, 0, 3056, 3054, 1, 0, 0, 0, 3056, 3055, 1, 0, 0, 0, 3057, 271, 1, 0, 0, 0, 3058, 3063, 3, 266, 133, 0, 3059, 3060, 5, 4, 0, 0, 3060, 3062, 3, 266, 133, 0, 3061, 3059, 1, 0, 0, 0, 3062, 3065, 1, 0, 0, 0, 3063, 3061, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 273, 1, 0, 0, 0, 3065, 3063, 1, 0, 0, 0, 3066, 3067, 6, 137, -1, 0, 3067, 3068, 7, 26, 0, 0, 3068, 3079, 3, 274, 137, 5, 3069, 3070, 5, 105, 0, 0, 3070, 3071, 5, 2, 0, 0, 3071, 3072, 3, 26, 13, 0, 3072, 3073, 5, 3, 0, 0, 3073, 3079, 1, 0, 0, 0, 3074, 3076, 3, 278, 139, 0, 3075, 3077, 3, 276, 138, 0, 3076, 3075, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3079, 1, 0, 0, 0, 3078, 3066, 1, 0, 0, 0, 3078, 3069, 1, 0, 0, 0, 3078, 3074, 1, 0, 0, 0, 3079, 3088, 1, 0, 0, 0, 3080, 3081, 10, 2, 0, 0, 3081, 3082, 5, 14, 0, 0, 3082, 3087, 3, 274, 137, 3, 3083, 3084, 10, 1, 0, 0, 3084, 3085, 5, 207, 0, 0, 3085, 3087, 3, 274, 137, 2, 3086, 3080, 1, 0, 0, 0, 3086, 3083, 1, 0, 0, 0, 3087, 3090, 1, 0, 0, 0, 3088, 3086, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 275, 1, 0, 0, 0, 3090, 3088, 1, 0, 0, 0, 3091, 3093, 5, 196, 0, 0, 3092, 3091, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3095, 5, 24, 0, 0, 3095, 3096, 3, 278, 139, 0, 3096, 3097, 5, 14, 0, 0, 3097, 3098, 3, 278, 139, 0, 3098, 3174, 1, 0, 0, 0, 3099, 3101, 5, 196, 0, 0, 3100, 3099, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3103, 5, 140, 0, 0, 3103, 3104, 5, 2, 0, 0, 3104, 3109, 3, 266, 133, 0, 3105, 3106, 5, 4, 0, 0, 3106, 3108, 3, 266, 133, 0, 3107, 3105, 1, 0, 0, 0, 3108, 3111, 1, 0, 0, 0, 3109, 3107, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3112, 1, 0, 0, 0, 3111, 3109, 1, 0, 0, 0, 3112, 3113, 5, 3, 0, 0, 3113, 3174, 1, 0, 0, 0, 3114, 3116, 5, 196, 0, 0, 3115, 3114, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3118, 5, 140, 0, 0, 3118, 3119, 5, 2, 0, 0, 3119, 3120, 3, 26, 13, 0, 3120, 3121, 5, 3, 0, 0, 3121, 3174, 1, 0, 0, 0, 3122, 3124, 5, 196, 0, 0, 3123, 3122, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 7, 27, 0, 0, 3126, 3174, 3, 278, 139, 0, 3127, 3129, 5, 196, 0, 0, 3128, 3127, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3131, 7, 28, 0, 0, 3131, 3145, 7, 29, 0, 0, 3132, 3133, 5, 2, 0, 0, 3133, 3146, 5, 3, 0, 0, 3134, 3135, 5, 2, 0, 0, 3135, 3140, 3, 266, 133, 0, 3136, 3137, 5, 4, 0, 0, 3137, 3139, 3, 266, 133, 0, 3138, 3136, 1, 0, 0, 0, 3139, 3142, 1, 0, 0, 0, 3140, 3138, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3143, 1, 0, 0, 0, 3142, 3140, 1, 0, 0, 0, 3143, 3144, 5, 3, 0, 0, 3144, 3146, 1, 0, 0, 0, 3145, 3132, 1, 0, 0, 0, 3145, 3134, 1, 0, 0, 0, 3146, 3174, 1, 0, 0, 0, 3147, 3149, 5, 196, 0, 0, 3148, 3147, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 7, 28, 0, 0, 3151, 3154, 3, 278, 139, 0, 3152, 3153, 5, 100, 0, 0, 3153, 3155, 3, 386, 193, 0, 3154, 3152, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3174, 1, 0, 0, 0, 3156, 3158, 5, 153, 0, 0, 3157, 3159, 5, 196, 0, 0, 3158, 3157, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3174, 5, 197, 0, 0, 3161, 3163, 5, 153, 0, 0, 3162, 3164, 5, 196, 0, 0, 3163, 3162, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3174, 7, 30, 0, 0, 3166, 3168, 5, 153, 0, 0, 3167, 3169, 5, 196, 0, 0, 3168, 3167, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3171, 5, 92, 0, 0, 3171, 3172, 5, 123, 0, 0, 3172, 3174, 3, 278, 139, 0, 3173, 3092, 1, 0, 0, 0, 3173, 3100, 1, 0, 0, 0, 3173, 3115, 1, 0, 0, 0, 3173, 3123, 1, 0, 0, 0, 3173, 3128, 1, 0, 0, 0, 3173, 3148, 1, 0, 0, 0, 3173, 3156, 1, 0, 0, 0, 3173, 3161, 1, 0, 0, 0, 3173, 3166, 1, 0, 0, 0, 3174, 277, 1, 0, 0, 0, 3175, 3176, 6, 139, -1, 0, 3176, 3180, 3, 282, 141, 0, 3177, 3178, 7, 31, 0, 0, 3178, 3180, 3, 278, 139, 7, 3179, 3175, 1, 0, 0, 0, 3179, 3177, 1, 0, 0, 0, 3180, 3202, 1, 0, 0, 0, 3181, 3182, 10, 6, 0, 0, 3182, 3183, 7, 32, 0, 0, 3183, 3201, 3, 278, 139, 7, 3184, 3185, 10, 5, 0, 0, 3185, 3186, 7, 33, 0, 0, 3186, 3201, 3, 278, 139, 6, 3187, 3188, 10, 4, 0, 0, 3188, 3189, 5, 366, 0, 0, 3189, 3201, 3, 278, 139, 5, 3190, 3191, 10, 3, 0, 0, 3191, 3192, 5, 369, 0, 0, 3192, 3201, 3, 278, 139, 4, 3193, 3194, 10, 2, 0, 0, 3194, 3195, 5, 367, 0, 0, 3195, 3201, 3, 278, 139, 3, 3196, 3197, 10, 1, 0, 0, 3197, 3198, 3, 288, 144, 0, 3198, 3199, 3, 278, 139, 2, 3199, 3201, 1, 0, 0, 0, 3200, 3181, 1, 0, 0, 0, 3200, 3184, 1, 0, 0, 0, 3200, 3187, 1, 0, 0, 0, 3200, 3190, 1, 0, 0, 0, 3200, 3193, 1, 0, 0, 0, 3200, 3196, 1, 0, 0, 0, 3201, 3204, 1, 0, 0, 0, 3202, 3200, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 279, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3205, 3206, 7, 34, 0, 0, 3206, 281, 1, 0, 0, 0, 3207, 3208, 6, 141, -1, 0, 3208, 3457, 7, 35, 0, 0, 3209, 3210, 7, 36, 0, 0, 3210, 3213, 5, 2, 0, 0, 3211, 3214, 3, 280, 140, 0, 3212, 3214, 3, 386, 193, 0, 3213, 3211, 1, 0, 0, 0, 3213, 3212, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3216, 5, 4, 0, 0, 3216, 3217, 3, 278, 139, 0, 3217, 3218, 5, 4, 0, 0, 3218, 3219, 3, 278, 139, 0, 3219, 3220, 5, 3, 0, 0, 3220, 3457, 1, 0, 0, 0, 3221, 3222, 7, 37, 0, 0, 3222, 3225, 5, 2, 0, 0, 3223, 3226, 3, 280, 140, 0, 3224, 3226, 3, 386, 193, 0, 3225, 3223, 1, 0, 0, 0, 3225, 3224, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3228, 5, 4, 0, 0, 3228, 3229, 3, 278, 139, 0, 3229, 3230, 5, 4, 0, 0, 3230, 3231, 3, 278, 139, 0, 3231, 3232, 5, 3, 0, 0, 3232, 3457, 1, 0, 0, 0, 3233, 3235, 5, 35, 0, 0, 3234, 3236, 3, 348, 174, 0, 3235, 3234, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3235, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3241, 1, 0, 0, 0, 3239, 3240, 5, 97, 0, 0, 3240, 3242, 3, 266, 133, 0, 3241, 3239, 1, 0, 0, 0, 3241, 3242, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3244, 5, 99, 0, 0, 3244, 3457, 1, 0, 0, 0, 3245, 3246, 5, 35, 0, 0, 3246, 3248, 3, 266, 133, 0, 3247, 3249, 3, 348, 174, 0, 3248, 3247, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3248, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3254, 1, 0, 0, 0, 3252, 3253, 5, 97, 0, 0, 3253, 3255, 3, 266, 133, 0, 3254, 3252, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 5, 99, 0, 0, 3257, 3457, 1, 0, 0, 0, 3258, 3259, 7, 38, 0, 0, 3259, 3260, 5, 2, 0, 0, 3260, 3261, 3, 266, 133, 0, 3261, 3262, 5, 20, 0, 0, 3262, 3263, 3, 316, 158, 0, 3263, 3264, 5, 3, 0, 0, 3264, 3457, 1, 0, 0, 0, 3265, 3266, 5, 285, 0, 0, 3266, 3275, 5, 2, 0, 0, 3267, 3272, 3, 254, 127, 0, 3268, 3269, 5, 4, 0, 0, 3269, 3271, 3, 254, 127, 0, 3270, 3268, 1, 0, 0, 0, 3271, 3274, 1, 0, 0, 0, 3272, 3270, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3276, 1, 0, 0, 0, 3274, 3272, 1, 0, 0, 0, 3275, 3267, 1, 0, 0, 0, 3275, 3276, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 3457, 5, 3, 0, 0, 3278, 3279, 5, 116, 0, 0, 3279, 3280, 5, 2, 0, 0, 3280, 3283, 3, 266, 133, 0, 3281, 3282, 5, 138, 0, 0, 3282, 3284, 5, 198, 0, 0, 3283, 3281, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3286, 5, 3, 0, 0, 3286, 3457, 1, 0, 0, 0, 3287, 3288, 5, 17, 0, 0, 3288, 3289, 5, 2, 0, 0, 3289, 3292, 3, 266, 133, 0, 3290, 3291, 5, 138, 0, 0, 3291, 3293, 5, 198, 0, 0, 3292, 3290, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3295, 5, 3, 0, 0, 3295, 3457, 1, 0, 0, 0, 3296, 3297, 5, 157, 0, 0, 3297, 3298, 5, 2, 0, 0, 3298, 3301, 3, 266, 133, 0, 3299, 3300, 5, 138, 0, 0, 3300, 3302, 5, 198, 0, 0, 3301, 3299, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3304, 5, 3, 0, 0, 3304, 3457, 1, 0, 0, 0, 3305, 3306, 5, 224, 0, 0, 3306, 3307, 5, 2, 0, 0, 3307, 3308, 3, 278, 139, 0, 3308, 3309, 5, 140, 0, 0, 3309, 3310, 3, 278, 139, 0, 3310, 3311, 5, 3, 0, 0, 3311, 3457, 1, 0, 0, 0, 3312, 3457, 3, 286, 143, 0, 3313, 3457, 5, 362, 0, 0, 3314, 3315, 3, 368, 184, 0, 3315, 3316, 5, 5, 0, 0, 3316, 3317, 5, 362, 0, 0, 3317, 3457, 1, 0, 0, 0, 3318, 3319, 5, 2, 0, 0, 3319, 3322, 3, 254, 127, 0, 3320, 3321, 5, 4, 0, 0, 3321, 3323, 3, 254, 127, 0, 3322, 3320, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 3327, 5, 3, 0, 0, 3327, 3457, 1, 0, 0, 0, 3328, 3329, 5, 2, 0, 0, 3329, 3330, 3, 26, 13, 0, 3330, 3331, 5, 3, 0, 0, 3331, 3457, 1, 0, 0, 0, 3332, 3333, 5, 136, 0, 0, 3333, 3334, 5, 2, 0, 0, 3334, 3335, 3, 266, 133, 0, 3335, 3336, 5, 3, 0, 0, 3336, 3457, 1, 0, 0, 0, 3337, 3338, 3, 364, 182, 0, 3338, 3350, 5, 2, 0, 0, 3339, 3341, 3, 194, 97, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3347, 3, 270, 135, 0, 3343, 3344, 5, 4, 0, 0, 3344, 3346, 3, 270, 135, 0, 3345, 3343, 1, 0, 0, 0, 3346, 3349, 1, 0, 0, 0, 3347, 3345, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3351, 1, 0, 0, 0, 3349, 3347, 1, 0, 0, 0, 3350, 3340, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3359, 5, 3, 0, 0, 3353, 3354, 5, 114, 0, 0, 3354, 3355, 5, 2, 0, 0, 3355, 3356, 5, 343, 0, 0, 3356, 3357, 3, 274, 137, 0, 3357, 3358, 5, 3, 0, 0, 3358, 3360, 1, 0, 0, 0, 3359, 3353, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 3363, 1, 0, 0, 0, 3361, 3362, 7, 39, 0, 0, 3362, 3364, 5, 198, 0, 0, 3363, 3361, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3367, 1, 0, 0, 0, 3365, 3366, 5, 212, 0, 0, 3366, 3368, 3, 356, 178, 0, 3367, 3365, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3457, 1, 0, 0, 0, 3369, 3370, 3, 374, 187, 0, 3370, 3371, 5, 371, 0, 0, 3371, 3372, 3, 266, 133, 0, 3372, 3457, 1, 0, 0, 0, 3373, 3374, 5, 2, 0, 0, 3374, 3377, 3, 374, 187, 0, 3375, 3376, 5, 4, 0, 0, 3376, 3378, 3, 374, 187, 0, 3377, 3375, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3382, 5, 3, 0, 0, 3382, 3383, 5, 371, 0, 0, 3383, 3384, 3, 266, 133, 0, 3384, 3457, 1, 0, 0, 0, 3385, 3457, 3, 374, 187, 0, 3386, 3387, 5, 2, 0, 0, 3387, 3388, 3, 266, 133, 0, 3388, 3389, 5, 3, 0, 0, 3389, 3457, 1, 0, 0, 0, 3390, 3391, 5, 110, 0, 0, 3391, 3392, 5, 2, 0, 0, 3392, 3393, 3, 374, 187, 0, 3393, 3394, 5, 123, 0, 0, 3394, 3395, 3, 278, 139, 0, 3395, 3396, 5, 3, 0, 0, 3396, 3457, 1, 0, 0, 0, 3397, 3398, 7, 40, 0, 0, 3398, 3399, 5, 2, 0, 0, 3399, 3400, 3, 278, 139, 0, 3400, 3401, 7, 41, 0, 0, 3401, 3404, 3, 278, 139, 0, 3402, 3403, 7, 42, 0, 0, 3403, 3405, 3, 278, 139, 0, 3404, 3402, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 3407, 5, 3, 0, 0, 3407, 3457, 1, 0, 0, 0, 3408, 3409, 5, 314, 0, 0, 3409, 3411, 5, 2, 0, 0, 3410, 3412, 7, 43, 0, 0, 3411, 3410, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3414, 1, 0, 0, 0, 3413, 3415, 3, 278, 139, 0, 3414, 3413, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3417, 5, 123, 0, 0, 3417, 3418, 3, 278, 139, 0, 3418, 3419, 5, 3, 0, 0, 3419, 3457, 1, 0, 0, 0, 3420, 3421, 5, 214, 0, 0, 3421, 3422, 5, 2, 0, 0, 3422, 3423, 3, 278, 139, 0, 3423, 3424, 5, 223, 0, 0, 3424, 3425, 3, 278, 139, 0, 3425, 3426, 5, 123, 0, 0, 3426, 3429, 3, 278, 139, 0, 3427, 3428, 5, 119, 0, 0, 3428, 3430, 3, 278, 139, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 5, 3, 0, 0, 3432, 3457, 1, 0, 0, 0, 3433, 3434, 7, 44, 0, 0, 3434, 3435, 5, 2, 0, 0, 3435, 3436, 3, 278, 139, 0, 3436, 3437, 5, 3, 0, 0, 3437, 3438, 5, 346, 0, 0, 3438, 3439, 5, 130, 0, 0, 3439, 3440, 5, 2, 0, 0, 3440, 3441, 5, 208, 0, 0, 3441, 3442, 5, 31, 0, 0, 3442, 3443, 3, 106, 53, 0, 3443, 3450, 5, 3, 0, 0, 3444, 3445, 5, 114, 0, 0, 3445, 3446, 5, 2, 0, 0, 3446, 3447, 5, 343, 0, 0, 3447, 3448, 3, 274, 137, 0, 3448, 3449, 5, 3, 0, 0, 3449, 3451, 1, 0, 0, 0, 3450, 3444, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3454, 1, 0, 0, 0, 3452, 3453, 5, 212, 0, 0, 3453, 3455, 3, 356, 178, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3457, 1, 0, 0, 0, 3456, 3207, 1, 0, 0, 0, 3456, 3209, 1, 0, 0, 0, 3456, 3221, 1, 0, 0, 0, 3456, 3233, 1, 0, 0, 0, 3456, 3245, 1, 0, 0, 0, 3456, 3258, 1, 0, 0, 0, 3456, 3265, 1, 0, 0, 0, 3456, 3278, 1, 0, 0, 0, 3456, 3287, 1, 0, 0, 0, 3456, 3296, 1, 0, 0, 0, 3456, 3305, 1, 0, 0, 0, 3456, 3312, 1, 0, 0, 0, 3456, 3313, 1, 0, 0, 0, 3456, 3314, 1, 0, 0, 0, 3456, 3318, 1, 0, 0, 0, 3456, 3328, 1, 0, 0, 0, 3456, 3332, 1, 0, 0, 0, 3456, 3337, 1, 0, 0, 0, 3456, 3369, 1, 0, 0, 0, 3456, 3373, 1, 0, 0, 0, 3456, 3385, 1, 0, 0, 0, 3456, 3386, 1, 0, 0, 0, 3456, 3390, 1, 0, 0, 0, 3456, 3397, 1, 0, 0, 0, 3456, 3408, 1, 0, 0, 0, 3456, 3420, 1, 0, 0, 0, 3456, 3433, 1, 0, 0, 0, 3457, 3468, 1, 0, 0, 0, 3458, 3459, 10, 9, 0, 0, 3459, 3460, 5, 6, 0, 0, 3460, 3461, 3, 278, 139, 0, 3461, 3462, 5, 7, 0, 0, 3462, 3467, 1, 0, 0, 0, 3463, 3464, 10, 7, 0, 0, 3464, 3465, 5, 5, 0, 0, 3465, 3467, 3, 374, 187, 0, 3466, 3458, 1, 0, 0, 0, 3466, 3463, 1, 0, 0, 0, 3467, 3470, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 283, 1, 0, 0, 0, 3470, 3468, 1, 0, 0, 0, 3471, 3479, 5, 71, 0, 0, 3472, 3479, 5, 302, 0, 0, 3473, 3479, 5, 303, 0, 0, 3474, 3479, 5, 304, 0, 0, 3475, 3479, 5, 149, 0, 0, 3476, 3479, 5, 133, 0, 0, 3477, 3479, 3, 374, 187, 0, 3478, 3471, 1, 0, 0, 0, 3478, 3472, 1, 0, 0, 0, 3478, 3473, 1, 0, 0, 0, 3478, 3474, 1, 0, 0, 0, 3478, 3475, 1, 0, 0, 0, 3478, 3476, 1, 0, 0, 0, 3478, 3477, 1, 0, 0, 0, 3479, 285, 1, 0, 0, 0, 3480, 3496, 5, 197, 0, 0, 3481, 3496, 5, 375, 0, 0, 3482, 3483, 5, 370, 0, 0, 3483, 3496, 3, 374, 187, 0, 3484, 3496, 3, 296, 148, 0, 3485, 3486, 3, 284, 142, 0, 3486, 3487, 3, 386, 193, 0, 3487, 3496, 1, 0, 0, 0, 3488, 3496, 3, 382, 191, 0, 3489, 3496, 3, 294, 147, 0, 3490, 3492, 3, 386, 193, 0, 3491, 3490, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3491, 1, 0, 0, 0, 3493, 3494, 1, 0, 0, 0, 3494, 3496, 1, 0, 0, 0, 3495, 3480, 1, 0, 0, 0, 3495, 3481, 1, 0, 0, 0, 3495, 3482, 1, 0, 0, 0, 3495, 3484, 1, 0, 0, 0, 3495, 3485, 1, 0, 0, 0, 3495, 3488, 1, 0, 0, 0, 3495, 3489, 1, 0, 0, 0, 3495, 3491, 1, 0, 0, 0, 3496, 287, 1, 0, 0, 0, 3497, 3498, 7, 45, 0, 0, 3498, 289, 1, 0, 0, 0, 3499, 3500, 7, 46, 0, 0, 3500, 291, 1, 0, 0, 0, 3501, 3502, 7, 47, 0, 0, 3502, 293, 1, 0, 0, 0, 3503, 3504, 7, 48, 0, 0, 3504, 295, 1, 0, 0, 0, 3505, 3508, 5, 149, 0, 0, 3506, 3509, 3, 298, 149, 0, 3507, 3509, 3, 302, 151, 0, 3508, 3506, 1, 0, 0, 0, 3508, 3507, 1, 0, 0, 0, 3509, 297, 1, 0, 0, 0, 3510, 3512, 3, 300, 150, 0, 3511, 3513, 3, 304, 152, 0, 3512, 3511, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 299, 1, 0, 0, 0, 3514, 3515, 3, 306, 153, 0, 3515, 3516, 3, 308, 154, 0, 3516, 3518, 1, 0, 0, 0, 3517, 3514, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3517, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 301, 1, 0, 0, 0, 3521, 3524, 3, 304, 152, 0, 3522, 3525, 3, 300, 150, 0, 3523, 3525, 3, 304, 152, 0, 3524, 3522, 1, 0, 0, 0, 3524, 3523, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 303, 1, 0, 0, 0, 3526, 3527, 3, 306, 153, 0, 3527, 3528, 3, 310, 155, 0, 3528, 3529, 5, 308, 0, 0, 3529, 3530, 3, 310, 155, 0, 3530, 305, 1, 0, 0, 0, 3531, 3533, 7, 49, 0, 0, 3532, 3531, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3537, 1, 0, 0, 0, 3534, 3538, 5, 381, 0, 0, 3535, 3538, 5, 383, 0, 0, 3536, 3538, 3, 386, 193, 0, 3537, 3534, 1, 0, 0, 0, 3537, 3535, 1, 0, 0, 0, 3537, 3536, 1, 0, 0, 0, 3538, 307, 1, 0, 0, 0, 3539, 3540, 7, 50, 0, 0, 3540, 309, 1, 0, 0, 0, 3541, 3542, 7, 51, 0, 0, 3542, 311, 1, 0, 0, 0, 3543, 3547, 5, 116, 0, 0, 3544, 3545, 5, 9, 0, 0, 3545, 3547, 3, 370, 185, 0, 3546, 3543, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3547, 313, 1, 0, 0, 0, 3548, 3579, 5, 27, 0, 0, 3549, 3579, 5, 307, 0, 0, 3550, 3579, 5, 32, 0, 0, 3551, 3579, 5, 275, 0, 0, 3552, 3579, 5, 271, 0, 0, 3553, 3579, 5, 150, 0, 0, 3554, 3579, 5, 151, 0, 0, 3555, 3579, 5, 25, 0, 0, 3556, 3579, 5, 173, 0, 0, 3557, 3579, 5, 117, 0, 0, 3558, 3579, 5, 233, 0, 0, 3559, 3579, 5, 95, 0, 0, 3560, 3579, 5, 71, 0, 0, 3561, 3579, 5, 302, 0, 0, 3562, 3579, 5, 304, 0, 0, 3563, 3579, 5, 303, 0, 0, 3564, 3579, 5, 284, 0, 0, 3565, 3579, 5, 41, 0, 0, 3566, 3579, 5, 40, 0, 0, 3567, 3579, 5, 333, 0, 0, 3568, 3579, 5, 26, 0, 0, 3569, 3579, 5, 80, 0, 0, 3570, 3579, 5, 79, 0, 0, 3571, 3579, 5, 199, 0, 0, 3572, 3579, 5, 339, 0, 0, 3573, 3579, 5, 149, 0, 0, 3574, 3579, 5, 19, 0, 0, 3575, 3579, 5, 285, 0, 0, 3576, 3579, 5, 176, 0, 0, 3577, 3579, 3, 374, 187, 0, 3578, 3548, 1, 0, 0, 0, 3578, 3549, 1, 0, 0, 0, 3578, 3550, 1, 0, 0, 0, 3578, 3551, 1, 0, 0, 0, 3578, 3552, 1, 0, 0, 0, 3578, 3553, 1, 0, 0, 0, 3578, 3554, 1, 0, 0, 0, 3578, 3555, 1, 0, 0, 0, 3578, 3556, 1, 0, 0, 0, 3578, 3557, 1, 0, 0, 0, 3578, 3558, 1, 0, 0, 0, 3578, 3559, 1, 0, 0, 0, 3578, 3560, 1, 0, 0, 0, 3578, 3561, 1, 0, 0, 0, 3578, 3562, 1, 0, 0, 0, 3578, 3563, 1, 0, 0, 0, 3578, 3564, 1, 0, 0, 0, 3578, 3565, 1, 0, 0, 0, 3578, 3566, 1, 0, 0, 0, 3578, 3567, 1, 0, 0, 0, 3578, 3568, 1, 0, 0, 0, 3578, 3569, 1, 0, 0, 0, 3578, 3570, 1, 0, 0, 0, 3578, 3571, 1, 0, 0, 0, 3578, 3572, 1, 0, 0, 0, 3578, 3573, 1, 0, 0, 0, 3578, 3574, 1, 0, 0, 0, 3578, 3575, 1, 0, 0, 0, 3578, 3576, 1, 0, 0, 0, 3578, 3577, 1, 0, 0, 0, 3579, 315, 1, 0, 0, 0, 3580, 3581, 5, 19, 0, 0, 3581, 3582, 5, 355, 0, 0, 3582, 3583, 3, 316, 158, 0, 3583, 3584, 5, 357, 0, 0, 3584, 3627, 1, 0, 0, 0, 3585, 3586, 5, 176, 0, 0, 3586, 3587, 5, 355, 0, 0, 3587, 3588, 3, 316, 158, 0, 3588, 3589, 5, 4, 0, 0, 3589, 3590, 3, 316, 158, 0, 3590, 3591, 5, 357, 0, 0, 3591, 3627, 1, 0, 0, 0, 3592, 3599, 5, 285, 0, 0, 3593, 3595, 5, 355, 0, 0, 3594, 3596, 3, 344, 172, 0, 3595, 3594, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3597, 1, 0, 0, 0, 3597, 3600, 5, 357, 0, 0, 3598, 3600, 5, 353, 0, 0, 3599, 3593, 1, 0, 0, 0, 3599, 3598, 1, 0, 0, 0, 3600, 3627, 1, 0, 0, 0, 3601, 3602, 5, 149, 0, 0, 3602, 3605, 7, 52, 0, 0, 3603, 3604, 5, 308, 0, 0, 3604, 3606, 5, 185, 0, 0, 3605, 3603, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 3627, 1, 0, 0, 0, 3607, 3608, 5, 149, 0, 0, 3608, 3611, 7, 53, 0, 0, 3609, 3610, 5, 308, 0, 0, 3610, 3612, 7, 54, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 3627, 1, 0, 0, 0, 3613, 3624, 3, 314, 157, 0, 3614, 3615, 5, 2, 0, 0, 3615, 3620, 5, 381, 0, 0, 3616, 3617, 5, 4, 0, 0, 3617, 3619, 5, 381, 0, 0, 3618, 3616, 1, 0, 0, 0, 3619, 3622, 1, 0, 0, 0, 3620, 3618, 1, 0, 0, 0, 3620, 3621, 1, 0, 0, 0, 3621, 3623, 1, 0, 0, 0, 3622, 3620, 1, 0, 0, 0, 3623, 3625, 5, 3, 0, 0, 3624, 3614, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 3627, 1, 0, 0, 0, 3626, 3580, 1, 0, 0, 0, 3626, 3585, 1, 0, 0, 0, 3626, 3592, 1, 0, 0, 0, 3626, 3601, 1, 0, 0, 0, 3626, 3607, 1, 0, 0, 0, 3626, 3613, 1, 0, 0, 0, 3627, 317, 1, 0, 0, 0, 3628, 3633, 3, 320, 160, 0, 3629, 3630, 5, 4, 0, 0, 3630, 3632, 3, 320, 160, 0, 3631, 3629, 1, 0, 0, 0, 3632, 3635, 1, 0, 0, 0, 3633, 3631, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 319, 1, 0, 0, 0, 3635, 3633, 1, 0, 0, 0, 3636, 3637, 3, 94, 47, 0, 3637, 3641, 3, 316, 158, 0, 3638, 3640, 3, 326, 163, 0, 3639, 3638, 1, 0, 0, 0, 3640, 3643, 1, 0, 0, 0, 3641, 3639, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 321, 1, 0, 0, 0, 3643, 3641, 1, 0, 0, 0, 3644, 3649, 3, 324, 162, 0, 3645, 3646, 5, 4, 0, 0, 3646, 3648, 3, 324, 162, 0, 3647, 3645, 1, 0, 0, 0, 3648, 3651, 1, 0, 0, 0, 3649, 3647, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3650, 323, 1, 0, 0, 0, 3651, 3649, 1, 0, 0, 0, 3652, 3653, 3, 90, 45, 0, 3653, 3657, 3, 316, 158, 0, 3654, 3656, 3, 326, 163, 0, 3655, 3654, 1, 0, 0, 0, 3656, 3659, 1, 0, 0, 0, 3657, 3655, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 325, 1, 0, 0, 0, 3659, 3657, 1, 0, 0, 0, 3660, 3661, 5, 196, 0, 0, 3661, 3666, 5, 197, 0, 0, 3662, 3666, 3, 328, 164, 0, 3663, 3666, 3, 24, 12, 0, 3664, 3666, 3, 312, 156, 0, 3665, 3660, 1, 0, 0, 0, 3665, 3662, 1, 0, 0, 0, 3665, 3663, 1, 0, 0, 0, 3665, 3664, 1, 0, 0, 0, 3666, 327, 1, 0, 0, 0, 3667, 3668, 5, 82, 0, 0, 3668, 3669, 3, 266, 133, 0, 3669, 329, 1, 0, 0, 0, 3670, 3671, 7, 55, 0, 0, 3671, 3672, 3, 266, 133, 0, 3672, 331, 1, 0, 0, 0, 3673, 3678, 3, 334, 167, 0, 3674, 3675, 5, 4, 0, 0, 3675, 3677, 3, 334, 167, 0, 3676, 3674, 1, 0, 0, 0, 3677, 3680, 1, 0, 0, 0, 3678, 3676, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 333, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3681, 3682, 3, 370, 185, 0, 3682, 3685, 3, 316, 158, 0, 3683, 3684, 5, 196, 0, 0, 3684, 3686, 5, 197, 0, 0, 3685, 3683, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 3688, 1, 0, 0, 0, 3687, 3689, 3, 24, 12, 0, 3688, 3687, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 335, 1, 0, 0, 0, 3690, 3695, 3, 338, 169, 0, 3691, 3692, 5, 4, 0, 0, 3692, 3694, 3, 338, 169, 0, 3693, 3691, 1, 0, 0, 0, 3694, 3697, 1, 0, 0, 0, 3695, 3693, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 337, 1, 0, 0, 0, 3697, 3695, 1, 0, 0, 0, 3698, 3699, 3, 94, 47, 0, 3699, 3703, 3, 316, 158, 0, 3700, 3702, 3, 340, 170, 0, 3701, 3700, 1, 0, 0, 0, 3702, 3705, 1, 0, 0, 0, 3703, 3701, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 339, 1, 0, 0, 0, 3705, 3703, 1, 0, 0, 0, 3706, 3707, 5, 196, 0, 0, 3707, 3712, 5, 197, 0, 0, 3708, 3712, 3, 328, 164, 0, 3709, 3712, 3, 342, 171, 0, 3710, 3712, 3, 24, 12, 0, 3711, 3706, 1, 0, 0, 0, 3711, 3708, 1, 0, 0, 0, 3711, 3709, 1, 0, 0, 0, 3711, 3710, 1, 0, 0, 0, 3712, 341, 1, 0, 0, 0, 3713, 3714, 5, 127, 0, 0, 3714, 3715, 5, 12, 0, 0, 3715, 3716, 5, 20, 0, 0, 3716, 3717, 5, 2, 0, 0, 3717, 3718, 3, 266, 133, 0, 3718, 3719, 5, 3, 0, 0, 3719, 343, 1, 0, 0, 0, 3720, 3725, 3, 346, 173, 0, 3721, 3722, 5, 4, 0, 0, 3722, 3724, 3, 346, 173, 0, 3723, 3721, 1, 0, 0, 0, 3724, 3727, 1, 0, 0, 0, 3725, 3723, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 345, 1, 0, 0, 0, 3727, 3725, 1, 0, 0, 0, 3728, 3730, 3, 374, 187, 0, 3729, 3731, 5, 370, 0, 0, 3730, 3729, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3735, 3, 316, 158, 0, 3733, 3734, 5, 196, 0, 0, 3734, 3736, 5, 197, 0, 0, 3735, 3733, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3738, 1, 0, 0, 0, 3737, 3739, 3, 24, 12, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 347, 1, 0, 0, 0, 3740, 3741, 5, 342, 0, 0, 3741, 3742, 3, 266, 133, 0, 3742, 3743, 5, 299, 0, 0, 3743, 3744, 3, 266, 133, 0, 3744, 349, 1, 0, 0, 0, 3745, 3746, 5, 344, 0, 0, 3746, 3751, 3, 354, 177, 0, 3747, 3748, 5, 4, 0, 0, 3748, 3750, 3, 354, 177, 0, 3749, 3747, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 351, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3754, 3755, 5, 350, 0, 0, 3755, 3756, 5, 31, 0, 0, 3756, 3757, 3, 92, 46, 0, 3757, 353, 1, 0, 0, 0, 3758, 3759, 3, 370, 185, 0, 3759, 3760, 5, 20, 0, 0, 3760, 3761, 3, 356, 178, 0, 3761, 355, 1, 0, 0, 0, 3762, 3809, 3, 370, 185, 0, 3763, 3764, 5, 2, 0, 0, 3764, 3765, 3, 370, 185, 0, 3765, 3766, 5, 3, 0, 0, 3766, 3809, 1, 0, 0, 0, 3767, 3802, 5, 2, 0, 0, 3768, 3769, 5, 44, 0, 0, 3769, 3770, 5, 31, 0, 0, 3770, 3775, 3, 266, 133, 0, 3771, 3772, 5, 4, 0, 0, 3772, 3774, 3, 266, 133, 0, 3773, 3771, 1, 0, 0, 0, 3774, 3777, 1, 0, 0, 0, 3775, 3773, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3803, 1, 0, 0, 0, 3777, 3775, 1, 0, 0, 0, 3778, 3779, 7, 24, 0, 0, 3779, 3780, 5, 31, 0, 0, 3780, 3785, 3, 266, 133, 0, 3781, 3782, 5, 4, 0, 0, 3782, 3784, 3, 266, 133, 0, 3783, 3781, 1, 0, 0, 0, 3784, 3787, 1, 0, 0, 0, 3785, 3783, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3789, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3788, 3778, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3800, 1, 0, 0, 0, 3790, 3791, 7, 25, 0, 0, 3791, 3792, 5, 31, 0, 0, 3792, 3797, 3, 106, 53, 0, 3793, 3794, 5, 4, 0, 0, 3794, 3796, 3, 106, 53, 0, 3795, 3793, 1, 0, 0, 0, 3796, 3799, 1, 0, 0, 0, 3797, 3795, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3801, 1, 0, 0, 0, 3799, 3797, 1, 0, 0, 0, 3800, 3790, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3803, 1, 0, 0, 0, 3802, 3768, 1, 0, 0, 0, 3802, 3788, 1, 0, 0, 0, 3803, 3805, 1, 0, 0, 0, 3804, 3806, 3, 358, 179, 0, 3805, 3804, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3809, 5, 3, 0, 0, 3808, 3762, 1, 0, 0, 0, 3808, 3763, 1, 0, 0, 0, 3808, 3767, 1, 0, 0, 0, 3809, 357, 1, 0, 0, 0, 3810, 3811, 5, 232, 0, 0, 3811, 3827, 3, 360, 180, 0, 3812, 3813, 5, 257, 0, 0, 3813, 3827, 3, 360, 180, 0, 3814, 3815, 5, 232, 0, 0, 3815, 3816, 5, 24, 0, 0, 3816, 3817, 3, 360, 180, 0, 3817, 3818, 5, 14, 0, 0, 3818, 3819, 3, 360, 180, 0, 3819, 3827, 1, 0, 0, 0, 3820, 3821, 5, 257, 0, 0, 3821, 3822, 5, 24, 0, 0, 3822, 3823, 3, 360, 180, 0, 3823, 3824, 5, 14, 0, 0, 3824, 3825, 3, 360, 180, 0, 3825, 3827, 1, 0, 0, 0, 3826, 3810, 1, 0, 0, 0, 3826, 3812, 1, 0, 0, 0, 3826, 3814, 1, 0, 0, 0, 3826, 3820, 1, 0, 0, 0, 3827, 359, 1, 0, 0, 0, 3828, 3829, 5, 320, 0, 0, 3829, 3836, 7, 56, 0, 0, 3830, 3831, 5, 62, 0, 0, 3831, 3836, 5, 256, 0, 0, 3832, 3833, 3, 266, 133, 0, 3833, 3834, 7, 56, 0, 0, 3834, 3836, 1, 0, 0, 0, 3835, 3828, 1, 0, 0, 0, 3835, 3830, 1, 0, 0, 0, 3835, 3832, 1, 0, 0, 0, 3836, 361, 1, 0, 0, 0, 3837, 3842, 3, 368, 184, 0, 3838, 3839, 5, 4, 0, 0, 3839, 3841, 3, 368, 184, 0, 3840, 3838, 1, 0, 0, 0, 3841, 3844, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 363, 1, 0, 0, 0, 3844, 3842, 1, 0, 0, 0, 3845, 3846, 5, 136, 0, 0, 3846, 3847, 5, 2, 0, 0, 3847, 3848, 3, 266, 133, 0, 3848, 3849, 5, 3, 0, 0, 3849, 3855, 1, 0, 0, 0, 3850, 3855, 3, 368, 184, 0, 3851, 3855, 5, 114, 0, 0, 3852, 3855, 5, 161, 0, 0, 3853, 3855, 5, 249, 0, 0, 3854, 3845, 1, 0, 0, 0, 3854, 3850, 1, 0, 0, 0, 3854, 3851, 1, 0, 0, 0, 3854, 3852, 1, 0, 0, 0, 3854, 3853, 1, 0, 0, 0, 3855, 365, 1, 0, 0, 0, 3856, 3857, 3, 368, 184, 0, 3857, 367, 1, 0, 0, 0, 3858, 3863, 3, 374, 187, 0, 3859, 3860, 5, 5, 0, 0, 3860, 3862, 3, 374, 187, 0, 3861, 3859, 1, 0, 0, 0, 3862, 3865, 1, 0, 0, 0, 3863, 3861, 1, 0, 0, 0, 3863, 3864, 1, 0, 0, 0, 3864, 369, 1, 0, 0, 0, 3865, 3863, 1, 0, 0, 0, 3866, 3867, 3, 374, 187, 0, 3867, 3868, 3, 372, 186, 0, 3868, 371, 1, 0, 0, 0, 3869, 3870, 5, 361, 0, 0, 3870, 3872, 3, 374, 187, 0, 3871, 3869, 1, 0, 0, 0, 3872, 3873, 1, 0, 0, 0, 3873, 3871, 1, 0, 0, 0, 3873, 3874, 1, 0, 0, 0, 3874, 3877, 1, 0, 0, 0, 3875, 3877, 1, 0, 0, 0, 3876, 3871, 1, 0, 0, 0, 3876, 3875, 1, 0, 0, 0, 3877, 373, 1, 0, 0, 0, 3878, 3881, 3, 376, 188, 0, 3879, 3881, 3, 394, 197, 0, 3880, 3878, 1, 0, 0, 0, 3880, 3879, 1, 0, 0, 0, 3881, 375, 1, 0, 0, 0, 3882, 3887, 5, 387, 0, 0, 3883, 3887, 3, 378, 189, 0, 3884, 3887, 3, 392, 196, 0, 3885, 3887, 3, 396, 198, 0, 3886, 3882, 1, 0, 0, 0, 3886, 3883, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3886, 3885, 1, 0, 0, 0, 3887, 377, 1, 0, 0, 0, 3888, 3889, 7, 57, 0, 0, 3889, 379, 1, 0, 0, 0, 3890, 3891, 5, 388, 0, 0, 3891, 381, 1, 0, 0, 0, 3892, 3894, 5, 361, 0, 0, 3893, 3892, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3895, 1, 0, 0, 0, 3895, 3933, 5, 382, 0, 0, 3896, 3898, 5, 361, 0, 0, 3897, 3896, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3933, 5, 383, 0, 0, 3900, 3902, 5, 361, 0, 0, 3901, 3900, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3903, 1, 0, 0, 0, 3903, 3933, 7, 58, 0, 0, 3904, 3906, 5, 361, 0, 0, 3905, 3904, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3907, 1, 0, 0, 0, 3907, 3933, 5, 381, 0, 0, 3908, 3910, 5, 361, 0, 0, 3909, 3908, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3933, 5, 378, 0, 0, 3912, 3914, 5, 361, 0, 0, 3913, 3912, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3933, 5, 379, 0, 0, 3916, 3918, 5, 361, 0, 0, 3917, 3916, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3933, 5, 380, 0, 0, 3920, 3922, 5, 361, 0, 0, 3921, 3920, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3933, 5, 385, 0, 0, 3924, 3926, 5, 361, 0, 0, 3925, 3924, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3933, 5, 384, 0, 0, 3928, 3930, 5, 361, 0, 0, 3929, 3928, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 3933, 5, 386, 0, 0, 3932, 3893, 1, 0, 0, 0, 3932, 3897, 1, 0, 0, 0, 3932, 3901, 1, 0, 0, 0, 3932, 3905, 1, 0, 0, 0, 3932, 3909, 1, 0, 0, 0, 3932, 3913, 1, 0, 0, 0, 3932, 3917, 1, 0, 0, 0, 3932, 3921, 1, 0, 0, 0, 3932, 3925, 1, 0, 0, 0, 3932, 3929, 1, 0, 0, 0, 3933, 383, 1, 0, 0, 0, 3934, 3935, 5, 318, 0, 0, 3935, 3946, 3, 316, 158, 0, 3936, 3946, 3, 24, 12, 0, 3937, 3946, 3, 312, 156, 0, 3938, 3939, 7, 59, 0, 0, 3939, 3940, 5, 196, 0, 0, 3940, 3946, 5, 197, 0, 0, 3941, 3942, 5, 268, 0, 0, 3942, 3946, 3, 328, 164, 0, 3943, 3944, 5, 96, 0, 0, 3944, 3946, 5, 82, 0, 0, 3945, 3934, 1, 0, 0, 0, 3945, 3936, 1, 0, 0, 0, 3945, 3937, 1, 0, 0, 0, 3945, 3938, 1, 0, 0, 0, 3945, 3941, 1, 0, 0, 0, 3945, 3943, 1, 0, 0, 0, 3946, 385, 1, 0, 0, 0, 3947, 3948, 7, 60, 0, 0, 3948, 387, 1, 0, 0, 0, 3949, 3952, 3, 386, 193, 0, 3950, 3952, 5, 197, 0, 0, 3951, 3949, 1, 0, 0, 0, 3951, 3950, 1, 0, 0, 0, 3952, 389, 1, 0, 0, 0, 3953, 3956, 5, 381, 0, 0, 3954, 3956, 3, 386, 193, 0, 3955, 3953, 1, 0, 0, 0, 3955, 3954, 1, 0, 0, 0, 3956, 391, 1, 0, 0, 0, 3957, 3958, 7, 61, 0, 0, 3958, 393, 1, 0, 0, 0, 3959, 3960, 7, 62, 0, 0, 3960, 395, 1, 0, 0, 0, 3961, 3962, 7, 63, 0, 0, 3962, 397, 1, 0, 0, 0, 517, 401, 408, 412, 417, 424, 429, 437, 439, 458, 462, 468, 471, 474, 481, 484, 488, 491, 496, 507, 509, 517, 520, 524, 527, 533, 544, 550, 555, 588, 598, 609, 620, 631, 636, 645, 649, 655, 659, 664, 670, 682, 690, 696, 707, 711, 716, 731, 735, 742, 746, 752, 781, 785, 790, 797, 803, 806, 809, 813, 817, 825, 827, 836, 839, 848, 853, 859, 866, 869, 873, 884, 887, 893, 897, 912, 914, 922, 926, 932, 935, 939, 942, 948, 953, 957, 964, 967, 970, 977, 982, 991, 999, 1005, 1008, 1011, 1017, 1021, 1026, 1029, 1033, 1035, 1043, 1051, 1054, 1061, 1064, 1067, 1076, 1081, 1087, 1092, 1095, 1099, 1102, 1106, 1134, 1137, 1145, 1151, 1154, 1157, 1162, 1170, 1175, 1181, 1187, 1190, 1197, 1204, 1212, 1229, 1256, 1259, 1265, 1274, 1283, 1289, 1294, 1299, 1306, 1311, 1316, 1323, 1331, 1334, 1338, 1350, 1354, 1361, 1477, 1485, 1493, 1502, 1512, 1516, 1519, 1523, 1529, 1541, 1553, 1558, 1567, 1575, 1580, 1582, 1590, 1595, 1599, 1602, 1610, 1615, 1624, 1629, 1632, 1637, 1641, 1646, 1648, 1652, 1661, 1669, 1675, 1686, 1693, 1702, 1707, 1710, 1732, 1734, 1743, 1750, 1753, 1760, 1764, 1770, 1778, 1785, 1788, 1796, 1807, 1818, 1826, 1832, 1844, 1851, 1858, 1870, 1878, 1884, 1890, 1893, 1909, 1916, 1927, 1936, 1939, 1948, 1951, 1960, 1963, 1972, 1975, 1978, 1983, 1985, 1989, 2000, 2006, 2012, 2015, 2017, 2029, 2033, 2036, 2040, 2046, 2050, 2058, 2062, 2065, 2068, 2071, 2075, 2079, 2084, 2088, 2091, 2094, 2097, 2101, 2106, 2110, 2113, 2116, 2119, 2121, 2127, 2134, 2139, 2142, 2145, 2149, 2159, 2163, 2165, 2168, 2172, 2178, 2182, 2193, 2203, 2207, 2219, 2231, 2246, 2251, 2257, 2264, 2280, 2285, 2298, 2303, 2311, 2317, 2321, 2324, 2329, 2336, 2342, 2351, 2361, 2376, 2381, 2383, 2388, 2397, 2410, 2415, 2419, 2426, 2431, 2435, 2438, 2441, 2455, 2468, 2473, 2477, 2480, 2484, 2490, 2493, 2500, 2512, 2523, 2536, 2547, 2552, 2560, 2565, 2579, 2588, 2591, 2596, 2603, 2606, 2612, 2618, 2621, 2626, 2631, 2635, 2641, 2645, 2648, 2653, 2656, 2661, 2665, 2668, 2671, 2677, 2682, 2689, 2692, 2710, 2712, 2715, 2726, 2735, 2742, 2750, 2757, 2762, 2765, 2768, 2776, 2784, 2790, 2798, 2806, 2813, 2820, 2822, 2835, 2841, 2843, 2853, 2859, 2861, 2869, 2873, 2882, 2885, 2891, 2895, 2897, 2906, 2918, 2920, 2927, 2934, 2940, 2946, 2948, 2955, 2963, 2971, 2977, 2982, 2989, 2995, 2998, 3002, 3004, 3011, 3020, 3027, 3037, 3042, 3046, 3056, 3063, 3076, 3078, 3086, 3088, 3092, 3100, 3109, 3115, 3123, 3128, 3140, 3145, 3148, 3154, 3158, 3163, 3168, 3173, 3179, 3200, 3202, 3213, 3225, 3237, 3241, 3250, 3254, 3272, 3275, 3283, 3292, 3301, 3324, 3340, 3347, 3350, 3359, 3363, 3367, 3379, 3404, 3411, 3414, 3429, 3450, 3454, 3456, 3466, 3468, 3478, 3493, 3495, 3508, 3512, 3519, 3524, 3532, 3537, 3546, 3578, 3595, 3599, 3605, 3611, 3620, 3624, 3626, 3633, 3641, 3649, 3657, 3665, 3678, 3685, 3688, 3695, 3703, 3711, 3725, 3730, 3735, 3738, 3751, 3775, 3785, 3788, 3797, 3800, 3802, 3805, 3808, 3826, 3835, 3842, 3854, 3863, 3873, 3876, 3880, 3886, 3893, 3897, 3901, 3905, 3909, 3913, 3917, 3921, 3925, 3929, 3932, 3945, 3951, 3955] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index 8ab2b21..dc17e39 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -11,7 +11,10 @@ import { SparkSqlParserVisitor } from "./SparkSqlParserVisitor.js"; type int = number; -export class SparkSqlParser extends antlr.Parser { +import SQLParserBase from '../SQLParserBase'; + + +export class SparkSqlParser extends SQLParserBase { public static readonly SEMICOLON = 1; public static readonly LEFT_PAREN = 2; public static readonly RIGHT_PAREN = 3; @@ -422,8 +425,8 @@ export class SparkSqlParser extends antlr.Parser { public static readonly RULE_partitionSpecLocation = 15; public static readonly RULE_partitionSpec = 16; public static readonly RULE_partitionVal = 17; - public static readonly RULE_dbSchema = 18; - public static readonly RULE_dbSchemas = 19; + public static readonly RULE_namespace = 18; + public static readonly RULE_namespaces = 19; public static readonly RULE_describeFuncName = 20; public static readonly RULE_describeColName = 21; public static readonly RULE_ctes = 22; @@ -443,8 +446,8 @@ export class SparkSqlParser extends antlr.Parser { public static readonly RULE_storageHandler = 36; public static readonly RULE_resource = 37; public static readonly RULE_dmlStatementNoWith = 38; - public static readonly RULE_dbSchemaName = 39; - public static readonly RULE_dbSchemaNameCreate = 40; + public static readonly RULE_namespaceName = 39; + public static readonly RULE_namespaceNameCreate = 40; public static readonly RULE_tableNameCreate = 41; public static readonly RULE_tableName = 42; public static readonly RULE_viewNameCreate = 43; @@ -755,12 +758,12 @@ export class SparkSqlParser extends antlr.Parser { "configValue", "unsupportedHiveNativeCommands", "createTableHeader", "replaceTableHeader", "bucketSpec", "skewSpec", "locationSpec", "commentSpec", "query", "insertInto", "partitionSpecLocation", "partitionSpec", - "partitionVal", "dbSchema", "dbSchemas", "describeFuncName", "describeColName", + "partitionVal", "namespace", "namespaces", "describeFuncName", "describeColName", "ctes", "namedQuery", "tableProvider", "createTableClauses", "propertyList", "property", "propertyKey", "propertyValue", "expressionPropertyList", "expressionProperty", "constantList", "nestedConstantList", "createFileFormat", "fileFormat", "storageHandler", "resource", "dmlStatementNoWith", - "dbSchemaName", "dbSchemaNameCreate", "tableNameCreate", "tableName", + "namespaceName", "namespaceNameCreate", "tableNameCreate", "tableName", "viewNameCreate", "viewName", "columnName", "columnNameSeq", "columnNameCreate", "identifierReference", "queryOrganization", "multiInsertQueryBody", "queryTerm", "queryPrimary", "sortItem", "fromStatement", "fromStatementBody", @@ -900,10 +903,11 @@ export class SparkSqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 1335; + this.state = 1334; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: + localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 410; @@ -911,6 +915,7 @@ export class SparkSqlParser extends antlr.Parser { } break; case 2: + localContext = new DmlStatementContext(localContext); this.enterOuterAlt(localContext, 2); { this.state = 412; @@ -928,96 +933,98 @@ export class SparkSqlParser extends antlr.Parser { } break; case 3: + localContext = new UseNamespaceContext(localContext); this.enterOuterAlt(localContext, 3); { this.state = 415; this.match(SparkSqlParser.KW_USE); - this.state = 416; - this.dbSchemaName(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { this.state = 417; - this.match(SparkSqlParser.KW_USE); - this.state = 418; - this.dbSchema(); - this.state = 419; - this.dbSchemaName(); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 421; - this.match(SparkSqlParser.KW_SET); - this.state = 422; - this.match(SparkSqlParser.KW_CATALOG); - this.state = 425; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: { - this.state = 423; + this.state = 416; + this.namespace(); + } + break; + } + this.state = 419; + this.namespaceName(); + } + break; + case 4: + localContext = new SetCatalogContext(localContext); + this.enterOuterAlt(localContext, 4); + { + this.state = 420; + this.match(SparkSqlParser.KW_SET); + this.state = 421; + this.match(SparkSqlParser.KW_CATALOG); + this.state = 424; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { + case 1: + { + this.state = 422; this.identifier(); } break; case 2: { - this.state = 424; + this.state = 423; this.stringLit(); } break; } } break; - case 6: - this.enterOuterAlt(localContext, 6); + case 5: + localContext = new CreateNamespaceContext(localContext); + this.enterOuterAlt(localContext, 5); { - this.state = 427; + this.state = 426; this.match(SparkSqlParser.KW_CREATE); - this.state = 428; - this.dbSchema(); - this.state = 430; + this.state = 427; + this.namespace(); + this.state = 429; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: { - this.state = 429; + this.state = 428; this.ifNotExists(); } break; } - this.state = 432; - this.dbSchemaNameCreate(); - this.state = 440; + this.state = 431; + this.namespaceNameCreate(); + this.state = 439; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 438; + this.state = 437; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 433; + this.state = 432; this.commentSpec(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 434; + this.state = 433; this.locationSpec(); } break; case SparkSqlParser.KW_WITH: { { - this.state = 435; + this.state = 434; this.match(SparkSqlParser.KW_WITH); - this.state = 436; + this.state = 435; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 228)) { this.errorHandler.recoverInline(this); @@ -1026,7 +1033,7 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 437; + this.state = 436; this.propertyList(); } } @@ -1036,24 +1043,25 @@ export class SparkSqlParser extends antlr.Parser { } } } - this.state = 442; + this.state = 441; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); } } break; - case 7: - this.enterOuterAlt(localContext, 7); + case 6: + localContext = new SetNamespacePropertiesContext(localContext); + this.enterOuterAlt(localContext, 6); { - this.state = 443; + this.state = 442; this.match(SparkSqlParser.KW_ALTER); + this.state = 443; + this.namespace(); this.state = 444; - this.dbSchema(); + this.namespaceName(); this.state = 445; - this.dbSchemaName(); - this.state = 446; this.match(SparkSqlParser.KW_SET); - this.state = 447; + this.state = 446; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 228)) { this.errorHandler.recoverInline(this); @@ -1062,50 +1070,52 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 448; + this.state = 447; this.propertyList(); } break; - case 8: - this.enterOuterAlt(localContext, 8); + case 7: + localContext = new SetNamespaceLocationContext(localContext); + this.enterOuterAlt(localContext, 7); { - this.state = 450; + this.state = 449; this.match(SparkSqlParser.KW_ALTER); + this.state = 450; + this.namespace(); this.state = 451; - this.dbSchema(); + this.namespaceName(); this.state = 452; - this.dbSchemaName(); - this.state = 453; this.match(SparkSqlParser.KW_SET); - this.state = 454; + this.state = 453; this.locationSpec(); } break; - case 9: - this.enterOuterAlt(localContext, 9); + case 8: + localContext = new DropNamespaceContext(localContext); + this.enterOuterAlt(localContext, 8); { - this.state = 456; + this.state = 455; this.match(SparkSqlParser.KW_DROP); - this.state = 457; - this.dbSchema(); - this.state = 459; + this.state = 456; + this.namespace(); + this.state = 458; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 458; + this.state = 457; this.ifExists(); } break; } - this.state = 461; - this.dbSchemaName(); - this.state = 463; + this.state = 460; + this.namespaceName(); + this.state = 462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 246) { { - this.state = 462; + this.state = 461; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 246)) { this.errorHandler.recoverInline(this); @@ -1119,19 +1129,20 @@ export class SparkSqlParser extends antlr.Parser { } break; - case 10: - this.enterOuterAlt(localContext, 10); + case 9: + localContext = new ShowNamespacesContext(localContext); + this.enterOuterAlt(localContext, 9); { - this.state = 465; + this.state = 464; this.match(SparkSqlParser.KW_SHOW); - this.state = 466; - this.dbSchemas(); - this.state = 469; + this.state = 465; + this.namespaces(); + this.state = 468; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 467; + this.state = 466; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1140,148 +1151,150 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 468; + this.state = 467; this.multipartIdentifier(); } break; } - this.state = 475; + this.state = 474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162 || _la === 376 || _la === 377) { { - this.state = 472; + this.state = 471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 471; + this.state = 470; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 474; - localContext._pattern = this.stringLit(); + this.state = 473; + (localContext as ShowNamespacesContext)._pattern = this.stringLit(); } } } break; - case 11: - this.enterOuterAlt(localContext, 11); + case 10: + localContext = new CreateTableContext(localContext); + this.enterOuterAlt(localContext, 10); { - this.state = 477; + this.state = 476; this.createTableHeader(); - this.state = 482; + this.state = 481; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 478; + this.state = 477; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 479; + this.state = 478; this.createOrReplaceTableColTypeList(); - this.state = 480; + this.state = 479; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 485; + this.state = 484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 484; + this.state = 483; this.tableProvider(); } } - this.state = 487; + this.state = 486; this.createTableClauses(); - this.state = 492; + this.state = 491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 489; + this.state = 488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 488; + this.state = 487; this.match(SparkSqlParser.KW_AS); } } - this.state = 491; + this.state = 490; this.query(); } break; } } break; - case 12: - this.enterOuterAlt(localContext, 12); + case 11: + localContext = new CreateTableLikeContext(localContext); + this.enterOuterAlt(localContext, 11); { - this.state = 494; + this.state = 493; this.match(SparkSqlParser.KW_CREATE); - this.state = 495; + this.state = 494; this.match(SparkSqlParser.KW_TABLE); - this.state = 497; + this.state = 496; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: { - this.state = 496; + this.state = 495; this.ifNotExists(); } break; } + this.state = 498; + (localContext as CreateTableLikeContext)._target = this.tableNameCreate(); this.state = 499; - localContext._target = this.tableNameCreate(); - this.state = 500; this.match(SparkSqlParser.KW_LIKE); - this.state = 501; - localContext._source = this.tableName(); - this.state = 510; + this.state = 500; + (localContext as CreateTableLikeContext)._source = this.tableName(); + this.state = 509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 169 || _la === 256 || _la === 282 || _la === 296 || _la === 331) { { - this.state = 508; + this.state = 507; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_USING: { - this.state = 502; + this.state = 501; this.tableProvider(); } break; case SparkSqlParser.KW_ROW: { - this.state = 503; + this.state = 502; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 504; + this.state = 503; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 505; + this.state = 504; this.locationSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 506; + this.state = 505; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 507; - localContext._tableProps = this.propertyList(); + this.state = 506; + (localContext as CreateTableLikeContext)._tableProps = this.propertyList(); } } break; @@ -1289,133 +1302,136 @@ export class SparkSqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 512; + this.state = 511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; - case 13: - this.enterOuterAlt(localContext, 13); + case 12: + localContext = new ReplaceTableContext(localContext); + this.enterOuterAlt(localContext, 12); { - this.state = 513; + this.state = 512; this.replaceTableHeader(); - this.state = 518; + this.state = 517; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 514; + this.state = 513; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 515; + this.state = 514; this.createOrReplaceTableColTypeList(); - this.state = 516; + this.state = 515; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 521; + this.state = 520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 520; + this.state = 519; this.tableProvider(); } } - this.state = 523; + this.state = 522; this.createTableClauses(); - this.state = 528; + this.state = 527; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 525; + this.state = 524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 524; + this.state = 523; this.match(SparkSqlParser.KW_AS); } } - this.state = 527; + this.state = 526; this.query(); } break; } } break; - case 14: - this.enterOuterAlt(localContext, 14); + case 13: + localContext = new AnalyzeContext(localContext); + this.enterOuterAlt(localContext, 13); { - this.state = 530; + this.state = 529; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 531; + this.state = 530; this.match(SparkSqlParser.KW_TABLE); - this.state = 532; + this.state = 531; this.tableName(); - this.state = 534; + this.state = 533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 533; + this.state = 532; this.partitionSpec(); } } - this.state = 536; + this.state = 535; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 537; + this.state = 536; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 545; + this.state = 544; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: { - this.state = 538; + this.state = 537; this.match(SparkSqlParser.KW_NOSCAN); } break; case 2: { - this.state = 539; + this.state = 538; this.match(SparkSqlParser.KW_FOR); - this.state = 540; + this.state = 539; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 541; + this.state = 540; this.columnNameSeq(); } break; case 3: { - this.state = 542; + this.state = 541; this.match(SparkSqlParser.KW_FOR); - this.state = 543; + this.state = 542; this.match(SparkSqlParser.KW_ALL); - this.state = 544; + this.state = 543; this.match(SparkSqlParser.KW_COLUMNS); } break; } } break; - case 15: - this.enterOuterAlt(localContext, 15); + case 14: + localContext = new AnalyzeTablesContext(localContext); + this.enterOuterAlt(localContext, 14); { - this.state = 547; + this.state = 546; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 548; + this.state = 547; this.match(SparkSqlParser.KW_TABLES); - this.state = 551; + this.state = 550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 549; + this.state = 548; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1424,269 +1440,278 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 550; - this.dbSchemaName(); + this.state = 549; + this.namespaceName(); } } - this.state = 553; + this.state = 552; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 554; + this.state = 553; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 556; + this.state = 555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 555; + this.state = 554; this.match(SparkSqlParser.KW_NOSCAN); } } } break; - case 16: - this.enterOuterAlt(localContext, 16); + case 15: + localContext = new AlterTableAddColumnContext(localContext); + this.enterOuterAlt(localContext, 15); { - this.state = 558; + this.state = 557; this.match(SparkSqlParser.KW_ALTER); - this.state = 559; + this.state = 558; this.match(SparkSqlParser.KW_TABLE); - this.state = 560; + this.state = 559; this.tableName(); - this.state = 561; + this.state = 560; this.match(SparkSqlParser.KW_ADD); - this.state = 562; + this.state = 561; this.match(SparkSqlParser.KW_COLUMN); - this.state = 563; + this.state = 562; this.qualifiedColTypeWithPositionForAdd(); } break; - case 17: - this.enterOuterAlt(localContext, 17); + case 16: + localContext = new AlterTableAddColumnsContext(localContext); + this.enterOuterAlt(localContext, 16); { - this.state = 565; + this.state = 564; this.match(SparkSqlParser.KW_ALTER); - this.state = 566; + this.state = 565; this.match(SparkSqlParser.KW_TABLE); - this.state = 567; + this.state = 566; this.tableName(); - this.state = 568; + this.state = 567; this.match(SparkSqlParser.KW_ADD); - this.state = 569; + this.state = 568; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 570; + this.state = 569; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 571; + this.state = 570; this.qualifiedColTypeWithPositionSeqForAdd(); - this.state = 572; + this.state = 571; this.match(SparkSqlParser.RIGHT_PAREN); } break; - case 18: - this.enterOuterAlt(localContext, 18); + case 17: + localContext = new RenameTableColumnContext(localContext); + this.enterOuterAlt(localContext, 17); { - this.state = 574; + this.state = 573; this.match(SparkSqlParser.KW_ALTER); - this.state = 575; + this.state = 574; this.match(SparkSqlParser.KW_TABLE); + this.state = 575; + (localContext as RenameTableColumnContext)._table = this.tableName(); this.state = 576; - localContext._table = this.tableName(); - this.state = 577; this.match(SparkSqlParser.KW_RENAME); - this.state = 578; + this.state = 577; this.match(SparkSqlParser.KW_COLUMN); - this.state = 579; + this.state = 578; this.columnName(); - this.state = 580; + this.state = 579; this.match(SparkSqlParser.KW_TO); - this.state = 581; + this.state = 580; this.columnNameCreate(); } break; - case 19: - this.enterOuterAlt(localContext, 19); + case 18: + localContext = new AlterTableDropColumnContext(localContext); + this.enterOuterAlt(localContext, 18); { - this.state = 583; + this.state = 582; this.match(SparkSqlParser.KW_ALTER); - this.state = 584; + this.state = 583; this.match(SparkSqlParser.KW_TABLE); - this.state = 585; + this.state = 584; this.tableName(); - this.state = 586; + this.state = 585; this.match(SparkSqlParser.KW_DROP); - this.state = 587; + this.state = 586; this.match(SparkSqlParser.KW_COLUMN); - this.state = 589; + this.state = 588; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 588; + this.state = 587; this.ifExists(); } break; } - this.state = 591; + this.state = 590; this.columnName(); } break; - case 20: - this.enterOuterAlt(localContext, 20); + case 19: + localContext = new DropTableColumnsContext(localContext); + this.enterOuterAlt(localContext, 19); { - this.state = 593; + this.state = 592; this.match(SparkSqlParser.KW_ALTER); - this.state = 594; + this.state = 593; this.match(SparkSqlParser.KW_TABLE); - this.state = 595; + this.state = 594; this.tableName(); - this.state = 596; + this.state = 595; this.match(SparkSqlParser.KW_DROP); - this.state = 597; + this.state = 596; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 599; + this.state = 598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 598; + this.state = 597; this.ifExists(); } } - this.state = 601; + this.state = 600; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 602; + this.state = 601; this.columnNameSeq(); - this.state = 603; + this.state = 602; this.match(SparkSqlParser.RIGHT_PAREN); } break; - case 21: - this.enterOuterAlt(localContext, 21); + case 20: + localContext = new RenameTableContext(localContext); + this.enterOuterAlt(localContext, 20); { - this.state = 605; + this.state = 604; this.match(SparkSqlParser.KW_ALTER); - this.state = 610; + this.state = 609; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 606; + this.state = 605; this.match(SparkSqlParser.KW_TABLE); - this.state = 607; + this.state = 606; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 608; + this.state = 607; this.match(SparkSqlParser.KW_VIEW); - this.state = 609; + this.state = 608; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 612; + this.state = 611; this.match(SparkSqlParser.KW_RENAME); - this.state = 613; + this.state = 612; this.match(SparkSqlParser.KW_TO); - this.state = 614; + this.state = 613; this.multipartIdentifier(); } break; - case 22: - this.enterOuterAlt(localContext, 22); + case 21: + localContext = new SetTablePropertiesContext(localContext); + this.enterOuterAlt(localContext, 21); { - this.state = 616; + this.state = 615; this.match(SparkSqlParser.KW_ALTER); - this.state = 621; + this.state = 620; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 617; + this.state = 616; this.match(SparkSqlParser.KW_TABLE); - this.state = 618; + this.state = 617; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 619; + this.state = 618; this.match(SparkSqlParser.KW_VIEW); - this.state = 620; + this.state = 619; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 623; + this.state = 622; this.match(SparkSqlParser.KW_SET); - this.state = 624; + this.state = 623; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 625; + this.state = 624; + this.propertyList(); + } + break; + case 22: + localContext = new UnsetTablePropertiesContext(localContext); + this.enterOuterAlt(localContext, 22); + { + this.state = 626; + this.match(SparkSqlParser.KW_ALTER); + this.state = 631; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_TABLE: + { + this.state = 627; + this.match(SparkSqlParser.KW_TABLE); + this.state = 628; + this.tableName(); + } + break; + case SparkSqlParser.KW_VIEW: + { + this.state = 629; + this.match(SparkSqlParser.KW_VIEW); + this.state = 630; + this.viewName(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 633; + this.match(SparkSqlParser.KW_UNSET); + this.state = 634; + this.match(SparkSqlParser.KW_TBLPROPERTIES); + this.state = 636; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 137) { + { + this.state = 635; + this.ifExists(); + } + } + + this.state = 638; this.propertyList(); } break; case 23: + localContext = new AlterTableAlterColumnContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 627; + this.state = 640; this.match(SparkSqlParser.KW_ALTER); - this.state = 632; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.KW_TABLE: - { - this.state = 628; - this.match(SparkSqlParser.KW_TABLE); - this.state = 629; - this.tableName(); - } - break; - case SparkSqlParser.KW_VIEW: - { - this.state = 630; - this.match(SparkSqlParser.KW_VIEW); - this.state = 631; - this.viewName(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 634; - this.match(SparkSqlParser.KW_UNSET); - this.state = 635; - this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 637; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 137) { - { - this.state = 636; - this.ifExists(); - } - } - - this.state = 639; - this.propertyList(); - } - break; - case 24: - this.enterOuterAlt(localContext, 24); - { this.state = 641; - this.match(SparkSqlParser.KW_ALTER); - this.state = 642; this.match(SparkSqlParser.KW_TABLE); + this.state = 642; + (localContext as AlterTableAlterColumnContext)._table = this.tableName(); this.state = 643; - localContext._table = this.tableName(); - this.state = 644; _la = this.tokenStream.LA(1); if(!(_la === 11 || _la === 39)) { this.errorHandler.recoverInline(this); @@ -1695,371 +1720,381 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 646; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { - case 1: - { - this.state = 645; - this.match(SparkSqlParser.KW_COLUMN); - } - break; - } - this.state = 648; - localContext._column = this.columnName(); - this.state = 650; + this.state = 645; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: { - this.state = 649; + this.state = 644; + this.match(SparkSqlParser.KW_COLUMN); + } + break; + } + this.state = 647; + (localContext as AlterTableAlterColumnContext)._column = this.columnName(); + this.state = 649; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 35, this.context) ) { + case 1: + { + this.state = 648; this.alterColumnAction(); } break; } } break; - case 25: - this.enterOuterAlt(localContext, 25); + case 24: + localContext = new HiveChangeColumnContext(localContext); + this.enterOuterAlt(localContext, 24); { - this.state = 652; + this.state = 651; this.match(SparkSqlParser.KW_ALTER); - this.state = 653; + this.state = 652; this.match(SparkSqlParser.KW_TABLE); - this.state = 654; - localContext._table = this.tableName(); - this.state = 656; + this.state = 653; + (localContext as HiveChangeColumnContext)._table = this.tableName(); + this.state = 655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 655; + this.state = 654; this.partitionSpec(); } } - this.state = 658; + this.state = 657; this.match(SparkSqlParser.KW_CHANGE); - this.state = 660; + this.state = 659; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 659; + this.state = 658; this.match(SparkSqlParser.KW_COLUMN); } break; } + this.state = 661; + (localContext as HiveChangeColumnContext)._colName = this.columnName(); this.state = 662; - localContext._colName = this.columnName(); - this.state = 663; this.colType(); - this.state = 665; + this.state = 664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 116) { { - this.state = 664; + this.state = 663; this.colPosition(); } } } break; - case 26: - this.enterOuterAlt(localContext, 26); + case 25: + localContext = new HiveReplaceColumnsContext(localContext); + this.enterOuterAlt(localContext, 25); { - this.state = 667; + this.state = 666; this.match(SparkSqlParser.KW_ALTER); - this.state = 668; + this.state = 667; this.match(SparkSqlParser.KW_TABLE); - this.state = 669; - localContext._table = this.tableName(); - this.state = 671; + this.state = 668; + (localContext as HiveReplaceColumnsContext)._table = this.tableName(); + this.state = 670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 670; + this.state = 669; this.partitionSpec(); } } - this.state = 673; + this.state = 672; this.match(SparkSqlParser.KW_REPLACE); - this.state = 674; + this.state = 673; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 675; + this.state = 674; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 676; + this.state = 675; this.qualifiedColTypeWithPositionSeqForReplace(); - this.state = 677; + this.state = 676; this.match(SparkSqlParser.RIGHT_PAREN); } break; - case 27: - this.enterOuterAlt(localContext, 27); + case 26: + localContext = new SetTableSerDeContext(localContext); + this.enterOuterAlt(localContext, 26); { - this.state = 679; + this.state = 678; this.match(SparkSqlParser.KW_ALTER); - this.state = 680; + this.state = 679; this.match(SparkSqlParser.KW_TABLE); - this.state = 681; + this.state = 680; this.tableName(); - this.state = 683; + this.state = 682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 682; + this.state = 681; this.partitionSpec(); } } - this.state = 685; + this.state = 684; this.match(SparkSqlParser.KW_SET); - this.state = 686; + this.state = 685; this.match(SparkSqlParser.KW_SERDE); - this.state = 687; + this.state = 686; this.stringLit(); - this.state = 691; + this.state = 690; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 688; + this.state = 687; this.match(SparkSqlParser.KW_WITH); - this.state = 689; + this.state = 688; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 690; + this.state = 689; this.propertyList(); } break; } } break; - case 28: - this.enterOuterAlt(localContext, 28); + case 27: + localContext = new SetTableSerDePropertiesContext(localContext); + this.enterOuterAlt(localContext, 27); { - this.state = 693; + this.state = 692; this.match(SparkSqlParser.KW_ALTER); - this.state = 694; + this.state = 693; this.match(SparkSqlParser.KW_TABLE); - this.state = 695; + this.state = 694; this.tableName(); - this.state = 697; + this.state = 696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 696; + this.state = 695; this.partitionSpec(); } } - this.state = 699; + this.state = 698; this.match(SparkSqlParser.KW_SET); - this.state = 700; + this.state = 699; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 701; + this.state = 700; this.propertyList(); } break; - case 29: - this.enterOuterAlt(localContext, 29); + case 28: + localContext = new AddTablePartitionContext(localContext); + this.enterOuterAlt(localContext, 28); { - this.state = 703; + this.state = 702; this.match(SparkSqlParser.KW_ALTER); - this.state = 708; + this.state = 707; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 704; + this.state = 703; this.match(SparkSqlParser.KW_TABLE); - this.state = 705; + this.state = 704; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 706; + this.state = 705; this.match(SparkSqlParser.KW_VIEW); - this.state = 707; + this.state = 706; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 710; + this.state = 709; this.match(SparkSqlParser.KW_ADD); - this.state = 712; + this.state = 711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 711; + this.state = 710; this.ifNotExists(); } } - this.state = 715; + this.state = 714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 714; + this.state = 713; this.partitionSpecLocation(); } } - this.state = 717; + this.state = 716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 216); } break; - case 30: - this.enterOuterAlt(localContext, 30); + case 29: + localContext = new RenameTablePartitionContext(localContext); + this.enterOuterAlt(localContext, 29); { - this.state = 719; + this.state = 718; this.match(SparkSqlParser.KW_ALTER); - this.state = 720; + this.state = 719; this.match(SparkSqlParser.KW_TABLE); - this.state = 721; + this.state = 720; this.tableName(); - this.state = 722; + this.state = 721; this.partitionSpec(); - this.state = 723; + this.state = 722; this.match(SparkSqlParser.KW_RENAME); - this.state = 724; + this.state = 723; this.match(SparkSqlParser.KW_TO); - this.state = 725; + this.state = 724; this.partitionSpec(); } break; - case 31: - this.enterOuterAlt(localContext, 31); + case 30: + localContext = new DropTablePartitionsContext(localContext); + this.enterOuterAlt(localContext, 30); { - this.state = 727; + this.state = 726; this.match(SparkSqlParser.KW_ALTER); - this.state = 732; + this.state = 731; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 728; + this.state = 727; this.match(SparkSqlParser.KW_TABLE); - this.state = 729; + this.state = 728; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 730; + this.state = 729; this.match(SparkSqlParser.KW_VIEW); - this.state = 731; + this.state = 730; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 734; + this.state = 733; this.match(SparkSqlParser.KW_DROP); - this.state = 736; + this.state = 735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 735; + this.state = 734; this.ifExists(); } } - this.state = 738; + this.state = 737; this.partitionSpec(); - this.state = 743; + this.state = 742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 739; + this.state = 738; this.match(SparkSqlParser.COMMA); - this.state = 740; + this.state = 739; this.partitionSpec(); } } - this.state = 745; + this.state = 744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 747; + this.state = 746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 746; + this.state = 745; this.match(SparkSqlParser.KW_PURGE); } } } break; - case 32: - this.enterOuterAlt(localContext, 32); + case 31: + localContext = new SetTableLocationContext(localContext); + this.enterOuterAlt(localContext, 31); { - this.state = 749; + this.state = 748; this.match(SparkSqlParser.KW_ALTER); - this.state = 750; + this.state = 749; this.match(SparkSqlParser.KW_TABLE); - this.state = 751; + this.state = 750; this.tableName(); - this.state = 753; + this.state = 752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 752; + this.state = 751; this.partitionSpec(); } } - this.state = 755; + this.state = 754; this.match(SparkSqlParser.KW_SET); - this.state = 756; + this.state = 755; this.locationSpec(); } break; - case 33: - this.enterOuterAlt(localContext, 33); + case 32: + localContext = new RecoverPartitionsContext(localContext); + this.enterOuterAlt(localContext, 32); { - this.state = 758; + this.state = 757; this.match(SparkSqlParser.KW_ALTER); - this.state = 759; + this.state = 758; this.match(SparkSqlParser.KW_TABLE); - this.state = 760; + this.state = 759; this.tableName(); - this.state = 761; + this.state = 760; this.match(SparkSqlParser.KW_RECOVER); - this.state = 762; + this.state = 761; this.match(SparkSqlParser.KW_PARTITIONS); } break; - case 34: - this.enterOuterAlt(localContext, 34); + case 33: + localContext = new AlterMaterializedViewRewriteContext(localContext); + this.enterOuterAlt(localContext, 33); { - this.state = 764; + this.state = 763; this.match(SparkSqlParser.KW_ALTER); - this.state = 765; + this.state = 764; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 766; + this.state = 765; this.match(SparkSqlParser.KW_VIEW); - this.state = 767; + this.state = 766; this.viewName(); - this.state = 768; + this.state = 767; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 98)) { this.errorHandler.recoverInline(this); @@ -2068,187 +2103,192 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 769; + this.state = 768; this.match(SparkSqlParser.KW_REWRITE); } break; - case 35: - this.enterOuterAlt(localContext, 35); + case 34: + localContext = new AlterMaterializedViewPropertiesContext(localContext); + this.enterOuterAlt(localContext, 34); { - this.state = 771; + this.state = 770; this.match(SparkSqlParser.KW_ALTER); - this.state = 772; + this.state = 771; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 773; + this.state = 772; this.match(SparkSqlParser.KW_VIEW); - this.state = 774; + this.state = 773; this.viewName(); - this.state = 775; + this.state = 774; this.match(SparkSqlParser.KW_SET); - this.state = 776; + this.state = 775; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 777; + this.state = 776; this.propertyList(); } break; - case 36: - this.enterOuterAlt(localContext, 36); + case 35: + localContext = new DropTableContext(localContext); + this.enterOuterAlt(localContext, 35); { - this.state = 779; + this.state = 778; this.match(SparkSqlParser.KW_DROP); - this.state = 780; + this.state = 779; this.match(SparkSqlParser.KW_TABLE); - this.state = 782; + this.state = 781; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 781; + this.state = 780; this.ifExists(); } break; } - this.state = 784; + this.state = 783; this.tableName(); - this.state = 786; + this.state = 785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 785; + this.state = 784; this.match(SparkSqlParser.KW_PURGE); } } } break; - case 37: - this.enterOuterAlt(localContext, 37); + case 36: + localContext = new DropViewContext(localContext); + this.enterOuterAlt(localContext, 36); { + this.state = 787; + this.match(SparkSqlParser.KW_DROP); this.state = 788; - this.match(SparkSqlParser.KW_DROP); - this.state = 789; this.match(SparkSqlParser.KW_VIEW); - this.state = 791; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 52, this.context) ) { - case 1: - { - this.state = 790; - this.ifExists(); - } - break; - } - this.state = 793; - this.viewName(); - } - break; - case 38: - this.enterOuterAlt(localContext, 38); - { - this.state = 794; - this.match(SparkSqlParser.KW_DROP); - this.state = 795; - this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 796; - this.match(SparkSqlParser.KW_VIEW); - this.state = 798; + this.state = 790; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 797; + this.state = 789; this.ifExists(); } break; } - this.state = 800; + this.state = 792; this.viewName(); } break; - case 39: - this.enterOuterAlt(localContext, 39); + case 37: + localContext = new DropMaterializedViewContext(localContext); + this.enterOuterAlt(localContext, 37); { - this.state = 801; + this.state = 793; + this.match(SparkSqlParser.KW_DROP); + this.state = 794; + this.match(SparkSqlParser.KW_MATERIALIZED); + this.state = 795; + this.match(SparkSqlParser.KW_VIEW); + this.state = 797; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { + case 1: + { + this.state = 796; + this.ifExists(); + } + break; + } + this.state = 799; + this.viewName(); + } + break; + case 38: + localContext = new CreateViewContext(localContext); + this.enterOuterAlt(localContext, 38); + { + this.state = 800; this.match(SparkSqlParser.KW_CREATE); - this.state = 804; + this.state = 803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 802; + this.state = 801; this.match(SparkSqlParser.KW_OR); - this.state = 803; + this.state = 802; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 810; + this.state = 809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128 || _la === 297) { { - this.state = 807; + this.state = 806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 806; + this.state = 805; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 809; + this.state = 808; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 812; + this.state = 811; this.match(SparkSqlParser.KW_VIEW); - this.state = 814; + this.state = 813; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 813; + this.state = 812; this.ifNotExists(); } break; } - this.state = 816; + this.state = 815; this.viewNameCreate(); - this.state = 818; + this.state = 817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 817; + this.state = 816; this.identifierCommentList(); } } - this.state = 828; + this.state = 827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 217 || _la === 296) { { - this.state = 826; + this.state = 825; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 820; + this.state = 819; this.commentSpec(); } break; case SparkSqlParser.KW_PARTITIONED: { { - this.state = 821; + this.state = 820; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 822; + this.state = 821; this.match(SparkSqlParser.KW_ON); - this.state = 823; + this.state = 822; this.identifierList(); } } @@ -2256,9 +2296,9 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 824; + this.state = 823; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 825; + this.state = 824; this.propertyList(); } } @@ -2267,169 +2307,172 @@ export class SparkSqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 830; + this.state = 829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 831; + this.state = 830; this.match(SparkSqlParser.KW_AS); - this.state = 832; + this.state = 831; this.query(); } break; - case 40: - this.enterOuterAlt(localContext, 40); + case 39: + localContext = new CreateTempViewUsingContext(localContext); + this.enterOuterAlt(localContext, 39); { - this.state = 834; + this.state = 833; this.match(SparkSqlParser.KW_CREATE); - this.state = 837; + this.state = 836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 835; + this.state = 834; this.match(SparkSqlParser.KW_OR); - this.state = 836; + this.state = 835; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 840; + this.state = 839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 839; + this.state = 838; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 842; + this.state = 841; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 843; + this.state = 842; this.match(SparkSqlParser.KW_VIEW); - this.state = 844; + this.state = 843; this.viewNameCreate(); - this.state = 849; + this.state = 848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 845; + this.state = 844; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 846; + this.state = 845; this.colTypeList(); - this.state = 847; + this.state = 846; this.match(SparkSqlParser.RIGHT_PAREN); } } - this.state = 851; + this.state = 850; this.tableProvider(); - this.state = 854; + this.state = 853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 852; + this.state = 851; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 853; + this.state = 852; this.propertyList(); } } } break; - case 41: - this.enterOuterAlt(localContext, 41); + case 40: + localContext = new AlterViewQueryContext(localContext); + this.enterOuterAlt(localContext, 40); { - this.state = 856; + this.state = 855; this.match(SparkSqlParser.KW_ALTER); - this.state = 857; + this.state = 856; this.match(SparkSqlParser.KW_VIEW); - this.state = 858; + this.state = 857; this.viewName(); - this.state = 860; + this.state = 859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 859; + this.state = 858; this.match(SparkSqlParser.KW_AS); } } - this.state = 862; + this.state = 861; this.query(); } break; - case 42: - this.enterOuterAlt(localContext, 42); + case 41: + localContext = new CreateFunctionContext(localContext); + this.enterOuterAlt(localContext, 41); { - this.state = 864; + this.state = 863; this.match(SparkSqlParser.KW_CREATE); - this.state = 867; + this.state = 866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 865; + this.state = 864; this.match(SparkSqlParser.KW_OR); - this.state = 866; + this.state = 865; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 870; + this.state = 869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 869; + this.state = 868; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 872; + this.state = 871; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 874; + this.state = 873; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 68, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 873; + this.state = 872; this.ifNotExists(); } break; } - this.state = 876; + this.state = 875; this.functionNameCreate(); - this.state = 877; + this.state = 876; this.match(SparkSqlParser.KW_AS); - this.state = 878; - localContext._className = this.stringLit(); - this.state = 888; + this.state = 877; + (localContext as CreateFunctionContext)._className = this.stringLit(); + this.state = 887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 879; + this.state = 878; this.match(SparkSqlParser.KW_USING); - this.state = 880; + this.state = 879; this.resource(); - this.state = 885; + this.state = 884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 881; + this.state = 880; this.match(SparkSqlParser.COMMA); - this.state = 882; + this.state = 881; this.resource(); } } - this.state = 887; + this.state = 886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2438,110 +2481,111 @@ export class SparkSqlParser extends antlr.Parser { } break; - case 43: - this.enterOuterAlt(localContext, 43); + case 42: + localContext = new CreateMaterializedViewContext(localContext); + this.enterOuterAlt(localContext, 42); { - this.state = 890; + this.state = 889; this.match(SparkSqlParser.KW_CREATE); - this.state = 891; + this.state = 890; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 892; + this.state = 891; this.match(SparkSqlParser.KW_VIEW); - this.state = 894; + this.state = 893; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 893; + this.state = 892; this.ifNotExists(); } break; } - this.state = 896; + this.state = 895; this.viewNameCreate(); - this.state = 898; + this.state = 897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 897; + this.state = 896; this.tableProvider(); } } - this.state = 915; + this.state = 914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 45 || _la === 51 || _la === 169 || _la === 206 || _la === 217 || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 67371009) !== 0) || _la === 296) { { - this.state = 913; + this.state = 912; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 900; + this.state = 899; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 901; - localContext._options = this.propertyList(); + this.state = 900; + (localContext as CreateMaterializedViewContext)._options = this.propertyList(); } } break; case SparkSqlParser.KW_PARTITIONED: { { - this.state = 902; + this.state = 901; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 903; + this.state = 902; this.match(SparkSqlParser.KW_BY); - this.state = 904; - localContext._partitioning = this.partitionFieldList(); + this.state = 903; + (localContext as CreateMaterializedViewContext)._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 905; + this.state = 904; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 906; + this.state = 905; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 907; + this.state = 906; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 908; + this.state = 907; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 909; + this.state = 908; this.locationSpec(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 910; + this.state = 909; this.commentSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 911; + this.state = 910; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 912; - localContext._tableProps = this.propertyList(); + this.state = 911; + (localContext as CreateMaterializedViewContext)._tableProps = this.propertyList(); } } break; @@ -2549,152 +2593,156 @@ export class SparkSqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 917; + this.state = 916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 918; + this.state = 917; this.match(SparkSqlParser.KW_AS); - this.state = 919; + this.state = 918; this.query(); } break; - case 44: - this.enterOuterAlt(localContext, 44); + case 43: + localContext = new DropFunctionContext(localContext); + this.enterOuterAlt(localContext, 43); { - this.state = 921; + this.state = 920; this.match(SparkSqlParser.KW_DROP); - this.state = 923; + this.state = 922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 922; + this.state = 921; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 925; + this.state = 924; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 927; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { - case 1: - { - this.state = 926; - this.ifExists(); - } - break; - } - this.state = 929; - this.functionName(); - } - break; - case 45: - this.enterOuterAlt(localContext, 45); - { - this.state = 930; - this.match(SparkSqlParser.KW_DECLARE); - this.state = 933; + this.state = 926; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 931; - this.match(SparkSqlParser.KW_OR); - this.state = 932; - this.match(SparkSqlParser.KW_REPLACE); + this.state = 925; + this.ifExists(); } break; } - this.state = 936; + this.state = 928; + this.functionName(); + } + break; + case 44: + localContext = new DeclareVariableContext(localContext); + this.enterOuterAlt(localContext, 44); + { + this.state = 929; + this.match(SparkSqlParser.KW_DECLARE); + this.state = 932; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 935; - this.match(SparkSqlParser.KW_VARIABLE); + this.state = 930; + this.match(SparkSqlParser.KW_OR); + this.state = 931; + this.match(SparkSqlParser.KW_REPLACE); } break; } - this.state = 938; - this.functionName(); - this.state = 940; + this.state = 935; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 79, this.context) ) { case 1: { - this.state = 939; + this.state = 934; + this.match(SparkSqlParser.KW_VARIABLE); + } + break; + } + this.state = 937; + this.functionName(); + this.state = 939; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { + case 1: + { + this.state = 938; this.dataType(); } break; } - this.state = 943; + this.state = 942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 351) { { - this.state = 942; + this.state = 941; this.variableDefaultExpression(); } } } break; - case 46: - this.enterOuterAlt(localContext, 46); + case 45: + localContext = new DropVariableContext(localContext); + this.enterOuterAlt(localContext, 45); { - this.state = 945; + this.state = 944; this.match(SparkSqlParser.KW_DROP); - this.state = 946; + this.state = 945; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 947; + this.state = 946; this.match(SparkSqlParser.KW_VARIABLE); - this.state = 949; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { - case 1: - { - this.state = 948; - this.ifExists(); - } - break; - } - this.state = 954; + this.state = 948; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 951; + this.state = 947; + this.ifExists(); + } + break; + } + this.state = 953; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { + case 1: + { + this.state = 950; this.tableName(); } break; case 2: { - this.state = 952; + this.state = 951; this.viewName(); } break; case 3: { - this.state = 953; + this.state = 952; this.functionName(); } break; } } break; - case 47: - this.enterOuterAlt(localContext, 47); + case 46: + localContext = new ExplainStatementContext(localContext); + this.enterOuterAlt(localContext, 46); { - this.state = 956; + this.state = 955; this.match(SparkSqlParser.KW_EXPLAIN); - this.state = 958; + this.state = 957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 172) { { - this.state = 957; + this.state = 956; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 172)) { this.errorHandler.recoverInline(this); @@ -2706,23 +2754,24 @@ export class SparkSqlParser extends antlr.Parser { } } - this.state = 960; + this.state = 959; this.statement(); } break; - case 48: - this.enterOuterAlt(localContext, 48); + case 47: + localContext = new ShowTablesContext(localContext); + this.enterOuterAlt(localContext, 47); { - this.state = 961; + this.state = 960; this.match(SparkSqlParser.KW_SHOW); - this.state = 962; + this.state = 961; this.match(SparkSqlParser.KW_TABLES); - this.state = 965; + this.state = 964; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { case 1: { - this.state = 963; + this.state = 962; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2731,48 +2780,49 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 964; - this.dbSchemaName(); + this.state = 963; + this.namespaceName(); } break; } - this.state = 971; + this.state = 970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162 || _la === 376 || _la === 377) { { - this.state = 968; + this.state = 967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 967; + this.state = 966; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 970; - localContext._pattern = this.stringLit(); + this.state = 969; + (localContext as ShowTablesContext)._pattern = this.stringLit(); } } } break; - case 49: - this.enterOuterAlt(localContext, 49); + case 48: + localContext = new ShowTableExtendedContext(localContext); + this.enterOuterAlt(localContext, 48); { - this.state = 973; + this.state = 972; this.match(SparkSqlParser.KW_SHOW); - this.state = 974; + this.state = 973; this.match(SparkSqlParser.KW_TABLE); - this.state = 975; + this.state = 974; this.match(SparkSqlParser.KW_EXTENDED); - this.state = 978; + this.state = 977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 976; + this.state = 975; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2781,60 +2831,62 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 977; - localContext._ns = this.dbSchemaName(); + this.state = 976; + (localContext as ShowTableExtendedContext)._ns = this.namespaceName(); } } - this.state = 980; + this.state = 979; this.match(SparkSqlParser.KW_LIKE); - this.state = 981; - localContext._pattern = this.stringLit(); - this.state = 983; + this.state = 980; + (localContext as ShowTableExtendedContext)._pattern = this.stringLit(); + this.state = 982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 982; + this.state = 981; this.partitionSpec(); } } } break; - case 50: - this.enterOuterAlt(localContext, 50); + case 49: + localContext = new ShowTblPropertiesContext(localContext); + this.enterOuterAlt(localContext, 49); { - this.state = 985; + this.state = 984; this.match(SparkSqlParser.KW_SHOW); - this.state = 986; + this.state = 985; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 987; - localContext._table = this.tableName(); - this.state = 992; + this.state = 986; + (localContext as ShowTblPropertiesContext)._table = this.tableName(); + this.state = 991; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 988; + this.state = 987; this.match(SparkSqlParser.LEFT_PAREN); + this.state = 988; + (localContext as ShowTblPropertiesContext)._key = this.propertyKey(); this.state = 989; - localContext._key = this.propertyKey(); - this.state = 990; this.match(SparkSqlParser.RIGHT_PAREN); } break; } } break; - case 51: - this.enterOuterAlt(localContext, 51); + case 50: + localContext = new ShowColumnsContext(localContext); + this.enterOuterAlt(localContext, 50); { - this.state = 994; + this.state = 993; this.match(SparkSqlParser.KW_SHOW); - this.state = 995; + this.state = 994; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 996; + this.state = 995; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2843,14 +2895,14 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 997; - localContext._table = this.tableName(); - this.state = 1000; + this.state = 996; + (localContext as ShowColumnsContext)._table = this.tableName(); + this.state = 999; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 998; + this.state = 997; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2859,26 +2911,27 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 999; - this.dbSchemaName(); + this.state = 998; + this.namespaceName(); } break; } } break; - case 52: - this.enterOuterAlt(localContext, 52); + case 51: + localContext = new ShowViewsContext(localContext); + this.enterOuterAlt(localContext, 51); { - this.state = 1002; + this.state = 1001; this.match(SparkSqlParser.KW_SHOW); - this.state = 1003; + this.state = 1002; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1006; + this.state = 1005; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1004; + this.state = 1003; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2887,77 +2940,79 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1005; - this.dbSchemaName(); + this.state = 1004; + this.namespaceName(); } break; } - this.state = 1012; + this.state = 1011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162 || _la === 376 || _la === 377) { { - this.state = 1009; + this.state = 1008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 1008; + this.state = 1007; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1011; - localContext._pattern = this.stringLit(); + this.state = 1010; + (localContext as ShowViewsContext)._pattern = this.stringLit(); + } + } + + } + break; + case 52: + localContext = new ShowPartitionsContext(localContext); + this.enterOuterAlt(localContext, 52); + { + this.state = 1013; + this.match(SparkSqlParser.KW_SHOW); + this.state = 1014; + this.match(SparkSqlParser.KW_PARTITIONS); + this.state = 1015; + this.tableName(); + this.state = 1017; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 216) { + { + this.state = 1016; + this.partitionSpec(); } } } break; case 53: + localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 1014; + this.state = 1019; this.match(SparkSqlParser.KW_SHOW); - this.state = 1015; - this.match(SparkSqlParser.KW_PARTITIONS); - this.state = 1016; - this.tableName(); - this.state = 1018; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 216) { - { - this.state = 1017; - this.partitionSpec(); - } - } - - } - break; - case 54: - this.enterOuterAlt(localContext, 54); - { - this.state = 1020; - this.match(SparkSqlParser.KW_SHOW); - this.state = 1022; + this.state = 1021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 289 || _la === 330) { { - this.state = 1021; + this.state = 1020; this.functionKind(); } } - this.state = 1024; + this.state = 1023; this.match(SparkSqlParser.KW_FUNCTIONS); - this.state = 1027; + this.state = 1026; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: { - this.state = 1025; + this.state = 1024; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2966,39 +3021,39 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1026; - localContext._ns = this.dbSchemaName(); + this.state = 1025; + (localContext as ShowFunctionsContext)._ns = this.namespaceName(); } break; } - this.state = 1036; + this.state = 1035; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: { - this.state = 1030; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { - case 1: - { - this.state = 1029; - this.match(SparkSqlParser.KW_LIKE); - } - break; - } - this.state = 1034; + this.state = 1029; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { case 1: { - this.state = 1032; - localContext._legacy = this.multipartIdentifier(); + this.state = 1028; + this.match(SparkSqlParser.KW_LIKE); + } + break; + } + this.state = 1033; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { + case 1: + { + this.state = 1031; + (localContext as ShowFunctionsContext)._legacy = this.multipartIdentifier(); } break; case 2: { - this.state = 1033; - localContext._pattern = this.stringLit(); + this.state = 1032; + (localContext as ShowFunctionsContext)._pattern = this.stringLit(); } break; } @@ -3007,208 +3062,187 @@ export class SparkSqlParser extends antlr.Parser { } } break; - case 55: - this.enterOuterAlt(localContext, 55); + case 54: + localContext = new ShowCreateTableContext(localContext); + this.enterOuterAlt(localContext, 54); { - this.state = 1038; + this.state = 1037; this.match(SparkSqlParser.KW_SHOW); - this.state = 1039; + this.state = 1038; this.match(SparkSqlParser.KW_CREATE); - this.state = 1040; + this.state = 1039; this.match(SparkSqlParser.KW_TABLE); - this.state = 1041; + this.state = 1040; this.tableName(); - this.state = 1044; + this.state = 1043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1042; + this.state = 1041; this.match(SparkSqlParser.KW_AS); - this.state = 1043; + this.state = 1042; this.match(SparkSqlParser.KW_SERDE); } } } break; - case 56: - this.enterOuterAlt(localContext, 56); + case 55: + localContext = new ShowCurrentNamespaceContext(localContext); + this.enterOuterAlt(localContext, 55); { - this.state = 1046; + this.state = 1045; this.match(SparkSqlParser.KW_SHOW); - this.state = 1047; + this.state = 1046; this.match(SparkSqlParser.KW_CURRENT); - this.state = 1048; - this.dbSchema(); + this.state = 1047; + this.namespace(); } break; - case 57: - this.enterOuterAlt(localContext, 57); + case 56: + localContext = new ShowCatalogsContext(localContext); + this.enterOuterAlt(localContext, 56); { - this.state = 1049; + this.state = 1048; this.match(SparkSqlParser.KW_SHOW); - this.state = 1050; + this.state = 1049; this.match(SparkSqlParser.KW_CATALOGS); - this.state = 1055; + this.state = 1054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162 || _la === 376 || _la === 377) { { - this.state = 1052; + this.state = 1051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 1051; + this.state = 1050; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1054; - localContext._pattern = this.stringLit(); + this.state = 1053; + (localContext as ShowCatalogsContext)._pattern = this.stringLit(); + } + } + + } + break; + case 57: + localContext = new ShowMaterializedViewsContext(localContext); + this.enterOuterAlt(localContext, 57); + { + this.state = 1056; + this.match(SparkSqlParser.KW_SHOW); + this.state = 1057; + this.match(SparkSqlParser.KW_MATERIALIZED); + this.state = 1058; + this.match(SparkSqlParser.KW_VIEWS); + this.state = 1061; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { + case 1: + { + this.state = 1059; + _la = this.tokenStream.LA(1); + if(!(_la === 123 || _la === 140)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1060; + (localContext as ShowMaterializedViewsContext)._db_name = this.namespaceName(); + } + break; + } + this.state = 1067; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 162 || _la === 376 || _la === 377) { + { + this.state = 1064; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 162) { + { + this.state = 1063; + this.match(SparkSqlParser.KW_LIKE); + } + } + + this.state = 1066; + (localContext as ShowMaterializedViewsContext)._pattern = this.stringLit(); } } } break; case 58: + localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1057; + this.state = 1069; this.match(SparkSqlParser.KW_SHOW); - this.state = 1058; - this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1059; - this.match(SparkSqlParser.KW_VIEWS); - this.state = 1062; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { - case 1: - { - this.state = 1060; - _la = this.tokenStream.LA(1); - if(!(_la === 123 || _la === 140)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 1061; - localContext._db_name = this.dbSchemaName(); - } - break; - } - this.state = 1068; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 162 || _la === 376 || _la === 377) { - { - this.state = 1065; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 162) { - { - this.state = 1064; - this.match(SparkSqlParser.KW_LIKE); - } - } - - this.state = 1067; - localContext._pattern = this.stringLit(); - } - } - - } - break; - case 59: - this.enterOuterAlt(localContext, 59); - { this.state = 1070; - this.match(SparkSqlParser.KW_SHOW); - this.state = 1071; this.match(SparkSqlParser.KW_CREATE); - this.state = 1072; + this.state = 1071; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1073; + this.state = 1072; this.match(SparkSqlParser.KW_VIEW); - this.state = 1074; + this.state = 1073; this.viewName(); - this.state = 1077; + this.state = 1076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1075; + this.state = 1074; this.match(SparkSqlParser.KW_AS); - this.state = 1076; + this.state = 1075; this.match(SparkSqlParser.KW_SERDE); } } } break; - case 60: - this.enterOuterAlt(localContext, 60); + case 59: + localContext = new DescribeFunctionContext(localContext); + this.enterOuterAlt(localContext, 59); { + this.state = 1078; + _la = this.tokenStream.LA(1); + if(!(_la === 86 || _la === 87)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } this.state = 1079; - _la = this.tokenStream.LA(1); - if(!(_la === 86 || _la === 87)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 1080; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1082; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { - case 1: - { - this.state = 1081; - this.match(SparkSqlParser.KW_EXTENDED); - } - break; - } - this.state = 1084; - this.describeFuncName(); - } - break; - case 61: - this.enterOuterAlt(localContext, 61); - { - this.state = 1085; - _la = this.tokenStream.LA(1); - if(!(_la === 86 || _la === 87)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 1086; - this.match(SparkSqlParser.KW_DATABASE); - this.state = 1088; + this.state = 1081; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1087; + this.state = 1080; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1090; - this.dbSchemaName(); + this.state = 1083; + this.describeFuncName(); } break; - case 62: - this.enterOuterAlt(localContext, 62); + case 60: + localContext = new DescribeNamespaceContext(localContext); + this.enterOuterAlt(localContext, 60); { - this.state = 1091; + this.state = 1084; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3217,26 +3251,55 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1093; + this.state = 1085; + this.match(SparkSqlParser.KW_DATABASE); + this.state = 1087; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1092; - this.match(SparkSqlParser.KW_TABLE); + this.state = 1086; + this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1096; + this.state = 1089; + this.namespaceName(); + } + break; + case 61: + localContext = new DescribeRelationContext(localContext); + this.enterOuterAlt(localContext, 61); + { + this.state = 1090; + _la = this.tokenStream.LA(1); + if(!(_la === 86 || _la === 87)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1092; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 110, this.context) ) { + _la = this.tokenStream.LA(1); + if (_la === 292) { + { + this.state = 1091; + this.match(SparkSqlParser.KW_TABLE); + } + } + + this.state = 1095; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1095; - localContext._option = this.tokenStream.LT(1); + this.state = 1094; + (localContext as DescribeRelationContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 122)) { - localContext._option = this.errorHandler.recoverInline(this); + (localContext as DescribeRelationContext)._option = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); @@ -3245,34 +3308,35 @@ export class SparkSqlParser extends antlr.Parser { } break; } - this.state = 1098; + this.state = 1097; this.tableName(); - this.state = 1100; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { - case 1: - { - this.state = 1099; - this.partitionSpec(); - } - break; - } - this.state = 1103; + this.state = 1099; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1102; + this.state = 1098; + this.partitionSpec(); + } + break; + } + this.state = 1102; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { + case 1: + { + this.state = 1101; this.describeColName(); } break; } } break; - case 63: - this.enterOuterAlt(localContext, 63); + case 62: + localContext = new DescribeQueryContext(localContext); + this.enterOuterAlt(localContext, 62); { - this.state = 1105; + this.state = 1104; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3281,252 +3345,284 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1107; + this.state = 1106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 1106; + this.state = 1105; this.match(SparkSqlParser.KW_QUERY); } } - this.state = 1109; + this.state = 1108; this.query(); } break; + case 63: + localContext = new CommentNamespaceContext(localContext); + this.enterOuterAlt(localContext, 63); + { + this.state = 1109; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 1110; + this.match(SparkSqlParser.KW_ON); + this.state = 1111; + this.namespace(); + this.state = 1112; + this.namespaceName(); + this.state = 1113; + this.match(SparkSqlParser.KW_IS); + this.state = 1114; + this.comment(); + } + break; case 64: + localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1110; + this.state = 1116; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1111; + this.state = 1117; this.match(SparkSqlParser.KW_ON); - this.state = 1112; - this.dbSchema(); - this.state = 1113; - this.dbSchemaName(); - this.state = 1114; + this.state = 1118; + this.match(SparkSqlParser.KW_TABLE); + this.state = 1119; + this.tableName(); + this.state = 1120; this.match(SparkSqlParser.KW_IS); - this.state = 1115; + this.state = 1121; this.comment(); } break; case 65: + localContext = new RefreshTableContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1117; - this.match(SparkSqlParser.KW_COMMENT); - this.state = 1118; - this.match(SparkSqlParser.KW_ON); - this.state = 1119; + this.state = 1123; + this.match(SparkSqlParser.KW_REFRESH); + this.state = 1124; this.match(SparkSqlParser.KW_TABLE); - this.state = 1120; + this.state = 1125; this.tableName(); - this.state = 1121; - this.match(SparkSqlParser.KW_IS); - this.state = 1122; - this.comment(); } break; case 66: + localContext = new RefreshFunctionContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1124; - this.match(SparkSqlParser.KW_REFRESH); - this.state = 1125; - this.match(SparkSqlParser.KW_TABLE); this.state = 1126; - this.tableName(); - } - break; - case 67: - this.enterOuterAlt(localContext, 67); - { - this.state = 1127; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1128; + this.state = 1127; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1129; + this.state = 1128; this.functionName(); } break; - case 68: - this.enterOuterAlt(localContext, 68); + case 67: + localContext = new RefreshResourceContext(localContext); + this.enterOuterAlt(localContext, 67); { - this.state = 1130; + this.state = 1129; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1138; + this.state = 1137; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1131; + this.state = 1130; this.stringLit(); } break; case 2: { - this.state = 1135; + this.state = 1134; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 114, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1132; + this.state = 1131; this.matchWildcard(); } } } - this.state = 1137; + this.state = 1136; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 114, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); } } break; } } break; - case 69: - this.enterOuterAlt(localContext, 69); + case 68: + localContext = new RefreshMaterializedViewContext(localContext); + this.enterOuterAlt(localContext, 68); { - this.state = 1140; + this.state = 1139; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1141; + this.state = 1140; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1142; + this.state = 1141; this.match(SparkSqlParser.KW_VIEW); - this.state = 1143; + this.state = 1142; this.viewName(); } break; - case 70: - this.enterOuterAlt(localContext, 70); + case 69: + localContext = new CacheTableContext(localContext); + this.enterOuterAlt(localContext, 69); { - this.state = 1144; + this.state = 1143; this.match(SparkSqlParser.KW_CACHE); - this.state = 1146; + this.state = 1145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 1145; + this.state = 1144; this.match(SparkSqlParser.KW_LAZY); } } - this.state = 1148; + this.state = 1147; this.match(SparkSqlParser.KW_TABLE); - this.state = 1149; + this.state = 1148; this.tableName(); - this.state = 1152; + this.state = 1151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 1150; + this.state = 1149; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1151; - localContext._options = this.propertyList(); + this.state = 1150; + (localContext as CacheTableContext)._options = this.propertyList(); } } - this.state = 1158; + this.state = 1157; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1155; + this.state = 1154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1154; + this.state = 1153; this.match(SparkSqlParser.KW_AS); } } - this.state = 1157; + this.state = 1156; this.query(); } break; } } break; - case 71: - this.enterOuterAlt(localContext, 71); + case 70: + localContext = new UnCacheTableContext(localContext); + this.enterOuterAlt(localContext, 70); { - this.state = 1160; + this.state = 1159; this.match(SparkSqlParser.KW_UNCACHE); - this.state = 1161; + this.state = 1160; this.match(SparkSqlParser.KW_TABLE); - this.state = 1163; + this.state = 1162; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1162; + this.state = 1161; this.ifExists(); } break; } - this.state = 1165; + this.state = 1164; this.tableName(); } break; - case 72: - this.enterOuterAlt(localContext, 72); + case 71: + localContext = new ClearCacheContext(localContext); + this.enterOuterAlt(localContext, 71); { - this.state = 1166; + this.state = 1165; this.match(SparkSqlParser.KW_CLEAR); - this.state = 1167; + this.state = 1166; this.match(SparkSqlParser.KW_CACHE); } break; - case 73: - this.enterOuterAlt(localContext, 73); + case 72: + localContext = new LoadDataContext(localContext); + this.enterOuterAlt(localContext, 72); { - this.state = 1168; + this.state = 1167; this.match(SparkSqlParser.KW_LOAD); - this.state = 1169; + this.state = 1168; this.match(SparkSqlParser.KW_DATA); - this.state = 1171; + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1170; + this.state = 1169; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1173; + this.state = 1172; this.match(SparkSqlParser.KW_INPATH); - this.state = 1174; - localContext._path = this.stringLit(); - this.state = 1176; + this.state = 1173; + (localContext as LoadDataContext)._path = this.stringLit(); + this.state = 1175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1175; + this.state = 1174; this.match(SparkSqlParser.KW_OVERWRITE); } } - this.state = 1178; + this.state = 1177; this.match(SparkSqlParser.KW_INTO); - this.state = 1179; + this.state = 1178; this.match(SparkSqlParser.KW_TABLE); - this.state = 1180; + this.state = 1179; this.tableName(); - this.state = 1182; + this.state = 1181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1181; + this.state = 1180; + this.partitionSpec(); + } + } + + } + break; + case 73: + localContext = new TruncateTableContext(localContext); + this.enterOuterAlt(localContext, 73); + { + this.state = 1183; + this.match(SparkSqlParser.KW_TRUNCATE); + this.state = 1184; + this.match(SparkSqlParser.KW_TABLE); + this.state = 1185; + this.tableName(); + this.state = 1187; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 216) { + { + this.state = 1186; this.partitionSpec(); } } @@ -3534,184 +3630,170 @@ export class SparkSqlParser extends antlr.Parser { } break; case 74: + localContext = new RepairTableContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1184; - this.match(SparkSqlParser.KW_TRUNCATE); - this.state = 1185; - this.match(SparkSqlParser.KW_TABLE); - this.state = 1186; - this.tableName(); - this.state = 1188; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 216) { - { - this.state = 1187; - this.partitionSpec(); - } - } - - } - break; - case 75: - this.enterOuterAlt(localContext, 75); - { - this.state = 1191; + this.state = 1190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 1190; + this.state = 1189; this.match(SparkSqlParser.KW_MSCK); } } - this.state = 1193; + this.state = 1192; this.match(SparkSqlParser.KW_REPAIR); - this.state = 1194; + this.state = 1193; this.match(SparkSqlParser.KW_TABLE); - this.state = 1195; + this.state = 1194; this.tableName(); - this.state = 1198; + this.state = 1197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1196; - localContext._option = this.tokenStream.LT(1); + this.state = 1195; + (localContext as RepairTableContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 96 || _la === 288)) { - localContext._option = this.errorHandler.recoverInline(this); + (localContext as RepairTableContext)._option = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1197; + this.state = 1196; this.match(SparkSqlParser.KW_PARTITIONS); } break; } } break; - case 76: - this.enterOuterAlt(localContext, 76); + case 75: + localContext = new ManageResourceContext(localContext); + this.enterOuterAlt(localContext, 75); { - this.state = 1200; - localContext._op = this.tokenStream.LT(1); + this.state = 1199; + (localContext as ManageResourceContext)._op = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 166)) { - localContext._op = this.errorHandler.recoverInline(this); + (localContext as ManageResourceContext)._op = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1201; + this.state = 1200; this.identifier(); - this.state = 1205; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 127, this.context); - while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1 + 1) { - { - { - this.state = 1202; - this.matchWildcard(); - } - } - } - this.state = 1207; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 127, this.context); - } - } - break; - case 77: - this.enterOuterAlt(localContext, 77); - { - this.state = 1208; - this.match(SparkSqlParser.KW_SET); - this.state = 1209; - this.match(SparkSqlParser.KW_ROLE); - this.state = 1213; + this.state = 1204; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1210; + this.state = 1201; this.matchWildcard(); } } } - this.state = 1215; + this.state = 1206; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); } } break; - case 78: - this.enterOuterAlt(localContext, 78); + case 76: + localContext = new FailNativeCommandContext(localContext); + this.enterOuterAlt(localContext, 76); { - this.state = 1216; + this.state = 1207; this.match(SparkSqlParser.KW_SET); - this.state = 1217; - this.match(SparkSqlParser.KW_TIME); - this.state = 1218; - this.match(SparkSqlParser.KW_ZONE); - this.state = 1219; - this.interval(); - } - break; - case 79: - this.enterOuterAlt(localContext, 79); - { - this.state = 1220; - this.match(SparkSqlParser.KW_SET); - this.state = 1221; - this.match(SparkSqlParser.KW_TIME); - this.state = 1222; - this.match(SparkSqlParser.KW_ZONE); - this.state = 1223; - this.timezone(); - } - break; - case 80: - this.enterOuterAlt(localContext, 80); - { - this.state = 1224; - this.match(SparkSqlParser.KW_SET); - this.state = 1225; - this.match(SparkSqlParser.KW_TIME); - this.state = 1226; - this.match(SparkSqlParser.KW_ZONE); - this.state = 1230; + this.state = 1208; + this.match(SparkSqlParser.KW_ROLE); + this.state = 1212; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1227; + this.state = 1209; this.matchWildcard(); } } } - this.state = 1232; + this.state = 1214; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); } } break; - case 81: - this.enterOuterAlt(localContext, 81); + case 77: + localContext = new SetTimeZoneIntervalContext(localContext); + this.enterOuterAlt(localContext, 77); { - this.state = 1233; + this.state = 1215; this.match(SparkSqlParser.KW_SET); - this.state = 1234; + this.state = 1216; + this.match(SparkSqlParser.KW_TIME); + this.state = 1217; + this.match(SparkSqlParser.KW_ZONE); + this.state = 1218; + this.interval(); + } + break; + case 78: + localContext = new SetTimeZoneContext(localContext); + this.enterOuterAlt(localContext, 78); + { + this.state = 1219; + this.match(SparkSqlParser.KW_SET); + this.state = 1220; + this.match(SparkSqlParser.KW_TIME); + this.state = 1221; + this.match(SparkSqlParser.KW_ZONE); + this.state = 1222; + this.timezone(); + } + break; + case 79: + localContext = new SetTimeZoneAnyContext(localContext); + this.enterOuterAlt(localContext, 79); + { + this.state = 1223; + this.match(SparkSqlParser.KW_SET); + this.state = 1224; + this.match(SparkSqlParser.KW_TIME); + this.state = 1225; + this.match(SparkSqlParser.KW_ZONE); + this.state = 1229; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); + while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1 + 1) { + { + { + this.state = 1226; + this.matchWildcard(); + } + } + } + this.state = 1231; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); + } + } + break; + case 80: + localContext = new SetVariableAssignmentContext(localContext); + this.enterOuterAlt(localContext, 80); + { + this.state = 1232; + this.match(SparkSqlParser.KW_SET); + this.state = 1233; _la = this.tokenStream.LA(1); if(!(_la === 334 || _la === 335)) { this.errorHandler.recoverInline(this); @@ -3720,16 +3802,17 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1235; + this.state = 1234; this.assignmentList(); } break; - case 82: - this.enterOuterAlt(localContext, 82); + case 81: + localContext = new SetVariableMultiAssignmentContext(localContext); + this.enterOuterAlt(localContext, 81); { - this.state = 1236; + this.state = 1235; this.match(SparkSqlParser.KW_SET); - this.state = 1237; + this.state = 1236; _la = this.tokenStream.LA(1); if(!(_la === 334 || _la === 335)) { this.errorHandler.recoverInline(this); @@ -3738,293 +3821,303 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } + this.state = 1237; + this.match(SparkSqlParser.LEFT_PAREN); this.state = 1238; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1239; this.multipartIdentifierList(); - this.state = 1240; + this.state = 1239; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1241; + this.state = 1240; this.match(SparkSqlParser.EQ); - this.state = 1242; + this.state = 1241; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1243; + this.state = 1242; this.query(); - this.state = 1244; + this.state = 1243; this.match(SparkSqlParser.RIGHT_PAREN); } break; - case 83: - this.enterOuterAlt(localContext, 83); + case 82: + localContext = new SetConfigContext(localContext); + this.enterOuterAlt(localContext, 82); { - this.state = 1246; + this.state = 1245; this.match(SparkSqlParser.KW_SET); - this.state = 1247; + this.state = 1246; this.configKey(); - this.state = 1248; + this.state = 1247; this.match(SparkSqlParser.EQ); - this.state = 1249; + this.state = 1248; this.configValue(); } break; - case 84: - this.enterOuterAlt(localContext, 84); + case 83: + localContext = new SetConfigAndValueContext(localContext); + this.enterOuterAlt(localContext, 83); { - this.state = 1251; + this.state = 1250; this.match(SparkSqlParser.KW_SET); - this.state = 1252; + this.state = 1251; this.configKey(); - this.state = 1260; + this.state = 1259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 1253; + this.state = 1252; this.match(SparkSqlParser.EQ); - this.state = 1257; + this.state = 1256; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1254; + this.state = 1253; this.matchWildcard(); } } } - this.state = 1259; + this.state = 1258; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); } } } } break; - case 85: - this.enterOuterAlt(localContext, 85); + case 84: + localContext = new SetConfigAnyKeyContext(localContext); + this.enterOuterAlt(localContext, 84); { - this.state = 1262; + this.state = 1261; this.match(SparkSqlParser.KW_SET); - this.state = 1266; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 132, this.context); - while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1 + 1) { - { - { - this.state = 1263; - this.matchWildcard(); - } - } - } - this.state = 1268; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 132, this.context); - } - this.state = 1269; - this.match(SparkSqlParser.EQ); - this.state = 1270; - this.configValue(); - } - break; - case 86: - this.enterOuterAlt(localContext, 86); - { - this.state = 1271; - this.match(SparkSqlParser.KW_SET); - this.state = 1275; + this.state = 1265; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1272; + this.state = 1262; this.matchWildcard(); } } } - this.state = 1277; + this.state = 1267; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); } + this.state = 1268; + this.match(SparkSqlParser.EQ); + this.state = 1269; + this.configValue(); } break; - case 87: - this.enterOuterAlt(localContext, 87); + case 85: + localContext = new SetAnyContext(localContext); + this.enterOuterAlt(localContext, 85); { - this.state = 1278; - this.match(SparkSqlParser.KW_RESET); - this.state = 1279; - this.configKey(); - } - break; - case 88: - this.enterOuterAlt(localContext, 88); - { - this.state = 1280; - this.match(SparkSqlParser.KW_RESET); - this.state = 1284; + this.state = 1270; + this.match(SparkSqlParser.KW_SET); + this.state = 1274; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1281; + this.state = 1271; this.matchWildcard(); } } } - this.state = 1286; + this.state = 1276; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } } break; - case 89: - this.enterOuterAlt(localContext, 89); + case 86: + localContext = new ResetConfigContext(localContext); + this.enterOuterAlt(localContext, 86); { - this.state = 1287; - this.match(SparkSqlParser.KW_CREATE); - this.state = 1288; - this.match(SparkSqlParser.KW_INDEX); - this.state = 1290; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { - case 1: - { - this.state = 1289; - this.ifNotExists(); - } - break; - } - this.state = 1292; - this.identifier(); - this.state = 1293; - this.match(SparkSqlParser.KW_ON); - this.state = 1295; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { - case 1: - { - this.state = 1294; - this.match(SparkSqlParser.KW_TABLE); - } - break; - } - this.state = 1297; - this.tableName(); - this.state = 1300; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 331) { - { - this.state = 1298; - this.match(SparkSqlParser.KW_USING); - this.state = 1299; - localContext._indexType = this.identifier(); - } - } - - this.state = 1302; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1303; - this.multipartIdentifierPropertyList(); - this.state = 1304; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1307; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 206) { - { - this.state = 1305; - this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1306; - localContext._options = this.propertyList(); - } - } - + this.state = 1277; + this.match(SparkSqlParser.KW_RESET); + this.state = 1278; + this.configKey(); } break; - case 90: - this.enterOuterAlt(localContext, 90); + case 87: + localContext = new ResetAnyContext(localContext); + this.enterOuterAlt(localContext, 87); { - this.state = 1309; - this.match(SparkSqlParser.KW_DROP); - this.state = 1310; - this.match(SparkSqlParser.KW_INDEX); - this.state = 1312; + this.state = 1279; + this.match(SparkSqlParser.KW_RESET); + this.state = 1283; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { - case 1: - { - this.state = 1311; - this.ifExists(); - } - break; - } - this.state = 1314; - this.identifier(); - this.state = 1315; - this.match(SparkSqlParser.KW_ON); - this.state = 1317; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { - case 1: - { - this.state = 1316; - this.match(SparkSqlParser.KW_TABLE); - } - break; - } - this.state = 1319; - this.tableName(); - } - break; - case 91: - this.enterOuterAlt(localContext, 91); - { - this.state = 1321; - this.match(SparkSqlParser.KW_OPTIMIZE); - this.state = 1322; - this.tableName(); - this.state = 1324; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 343) { - { - this.state = 1323; - this.whereClause(); - } - } - - this.state = 1326; - this.zorderClause(); - } - break; - case 92: - this.enterOuterAlt(localContext, 92); - { - this.state = 1328; - this.unsupportedHiveNativeCommands(); - this.state = 1332; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1329; + this.state = 1280; this.matchWildcard(); } } } - this.state = 1334; + this.state = 1285; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); + } + } + break; + case 88: + localContext = new CreateIndexContext(localContext); + this.enterOuterAlt(localContext, 88); + { + this.state = 1286; + this.match(SparkSqlParser.KW_CREATE); + this.state = 1287; + this.match(SparkSqlParser.KW_INDEX); + this.state = 1289; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + case 1: + { + this.state = 1288; + this.ifNotExists(); + } + break; + } + this.state = 1291; + this.identifier(); + this.state = 1292; + this.match(SparkSqlParser.KW_ON); + this.state = 1294; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 292) { + { + this.state = 1293; + this.match(SparkSqlParser.KW_TABLE); + } + } + + this.state = 1296; + this.tableName(); + this.state = 1299; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 331) { + { + this.state = 1297; + this.match(SparkSqlParser.KW_USING); + this.state = 1298; + (localContext as CreateIndexContext)._indexType = this.identifier(); + } + } + + this.state = 1301; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 1302; + this.multipartIdentifierPropertyList(); + this.state = 1303; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 1306; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 206) { + { + this.state = 1304; + this.match(SparkSqlParser.KW_OPTIONS); + this.state = 1305; + (localContext as CreateIndexContext)._options = this.propertyList(); + } + } + + } + break; + case 89: + localContext = new DropIndexContext(localContext); + this.enterOuterAlt(localContext, 89); + { + this.state = 1308; + this.match(SparkSqlParser.KW_DROP); + this.state = 1309; + this.match(SparkSqlParser.KW_INDEX); + this.state = 1311; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + case 1: + { + this.state = 1310; + this.ifExists(); + } + break; + } + this.state = 1313; + this.identifier(); + this.state = 1314; + this.match(SparkSqlParser.KW_ON); + this.state = 1316; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 292) { + { + this.state = 1315; + this.match(SparkSqlParser.KW_TABLE); + } + } + + this.state = 1318; + this.tableName(); + } + break; + case 90: + localContext = new OptimizeTableContext(localContext); + this.enterOuterAlt(localContext, 90); + { + this.state = 1320; + this.match(SparkSqlParser.KW_OPTIMIZE); + this.state = 1321; + this.tableName(); + this.state = 1323; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 343) { + { + this.state = 1322; + this.whereClause(); + } + } + + this.state = 1325; + this.zorderClause(); + } + break; + case 91: + localContext = new UnsupportHiveCommandsContext(localContext); + this.enterOuterAlt(localContext, 91); + { + this.state = 1327; + this.unsupportedHiveNativeCommands(); + this.state = 1331; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); + while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1 + 1) { + { + { + this.state = 1328; + this.matchWildcard(); + } + } + } + this.state = 1333; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); } } break; @@ -4048,21 +4141,21 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new TimezoneContext(this.context, this.state); this.enterRule(localContext, 6, SparkSqlParser.RULE_timezone); try { - this.state = 1339; + this.state = 1338; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 1337; + this.state = 1336; this.stringLit(); } break; case SparkSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 2); { - this.state = 1338; + this.state = 1337; this.match(SparkSqlParser.KW_LOCAL); } break; @@ -4090,7 +4183,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1341; + this.state = 1340; this.quotedIdentifier(); } } @@ -4114,7 +4207,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1342; this.backQuotedIdentifier(); } } @@ -4137,38 +4230,38 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 12, SparkSqlParser.RULE_unsupportedHiveNativeCommands); let _la: number; try { - this.state = 1513; + this.state = 1512; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1345; + this.state = 1344; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1346; + this.state = 1345; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1347; + this.state = 1346; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1348; + this.state = 1347; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1349; + this.state = 1348; localContext._kw1 = this.match(SparkSqlParser.KW_GRANT); - this.state = 1351; + this.state = 1350; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1350; + this.state = 1349; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; @@ -4178,14 +4271,14 @@ export class SparkSqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1353; + this.state = 1352; localContext._kw1 = this.match(SparkSqlParser.KW_REVOKE); - this.state = 1355; + this.state = 1354; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1354; + this.state = 1353; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; @@ -4195,25 +4288,25 @@ export class SparkSqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1357; + this.state = 1356; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1358; + this.state = 1357; localContext._kw2 = this.match(SparkSqlParser.KW_GRANT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1359; + this.state = 1358; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1360; + this.state = 1359; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); - this.state = 1362; + this.state = 1361; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { - this.state = 1361; + this.state = 1360; localContext._kw3 = this.match(SparkSqlParser.KW_GRANT); } break; @@ -4223,474 +4316,474 @@ export class SparkSqlParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1364; + this.state = 1363; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1365; + this.state = 1364; localContext._kw2 = this.match(SparkSqlParser.KW_PRINCIPALS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1366; + this.state = 1365; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1367; + this.state = 1366; localContext._kw2 = this.match(SparkSqlParser.KW_ROLES); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1368; + this.state = 1367; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1369; + this.state = 1368; localContext._kw2 = this.match(SparkSqlParser.KW_CURRENT); - this.state = 1370; + this.state = 1369; localContext._kw3 = this.match(SparkSqlParser.KW_ROLES); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1371; + this.state = 1370; localContext._kw1 = this.match(SparkSqlParser.KW_EXPORT); - this.state = 1372; + this.state = 1371; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1373; + this.state = 1372; localContext._kw1 = this.match(SparkSqlParser.KW_IMPORT); - this.state = 1374; + this.state = 1373; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1375; + this.state = 1374; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1376; + this.state = 1375; localContext._kw2 = this.match(SparkSqlParser.KW_COMPACTIONS); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1377; + this.state = 1376; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1378; + this.state = 1377; localContext._kw2 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1379; + this.state = 1378; localContext._kw3 = this.match(SparkSqlParser.KW_TABLE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1380; + this.state = 1379; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1381; + this.state = 1380; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTIONS); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1382; + this.state = 1381; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1383; + this.state = 1382; localContext._kw2 = this.match(SparkSqlParser.KW_INDEXES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1384; + this.state = 1383; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1385; + this.state = 1384; localContext._kw2 = this.match(SparkSqlParser.KW_LOCKS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1386; + this.state = 1385; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1387; + this.state = 1386; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1388; + this.state = 1387; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1389; + this.state = 1388; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1390; + this.state = 1389; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1391; + this.state = 1390; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1392; + this.state = 1391; localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1393; + this.state = 1392; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1394; + this.state = 1393; localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1395; + this.state = 1394; localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1396; + this.state = 1395; localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1397; + this.state = 1396; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1398; + this.state = 1397; localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1399; + this.state = 1398; localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1400; + this.state = 1399; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1401; + this.state = 1400; localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1402; + this.state = 1401; localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1403; + this.state = 1402; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1404; + this.state = 1403; localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1405; + this.state = 1404; localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1406; + this.state = 1405; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1407; + this.state = 1406; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1408; + this.state = 1407; this.tableName(); - this.state = 1409; + this.state = 1408; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1410; + this.state = 1409; localContext._kw4 = this.match(SparkSqlParser.KW_CLUSTERED); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1412; + this.state = 1411; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1413; + this.state = 1412; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1414; + this.state = 1413; this.tableName(); - this.state = 1415; + this.state = 1414; localContext._kw3 = this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1416; + this.state = 1415; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1418; + this.state = 1417; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1419; + this.state = 1418; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1420; + this.state = 1419; this.tableName(); - this.state = 1421; + this.state = 1420; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1422; + this.state = 1421; localContext._kw4 = this.match(SparkSqlParser.KW_SORTED); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1424; + this.state = 1423; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1425; + this.state = 1424; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1426; + this.state = 1425; this.tableName(); - this.state = 1427; + this.state = 1426; localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1428; + this.state = 1427; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1430; + this.state = 1429; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1431; + this.state = 1430; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1432; + this.state = 1431; this.tableName(); - this.state = 1433; + this.state = 1432; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1434; + this.state = 1433; localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1436; + this.state = 1435; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1437; + this.state = 1436; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1438; + this.state = 1437; this.tableName(); - this.state = 1439; + this.state = 1438; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1440; + this.state = 1439; localContext._kw4 = this.match(SparkSqlParser.KW_STORED); - this.state = 1441; + this.state = 1440; localContext._kw5 = this.match(SparkSqlParser.KW_AS); - this.state = 1442; + this.state = 1441; localContext._kw6 = this.match(SparkSqlParser.KW_DIRECTORIES); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1444; + this.state = 1443; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1445; + this.state = 1444; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1446; + this.state = 1445; this.tableName(); - this.state = 1447; + this.state = 1446; localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1448; + this.state = 1447; localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1449; + this.state = 1448; localContext._kw5 = this.match(SparkSqlParser.KW_LOCATION); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1451; + this.state = 1450; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1452; + this.state = 1451; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1453; + this.state = 1452; this.tableName(); - this.state = 1454; + this.state = 1453; localContext._kw3 = this.match(SparkSqlParser.KW_EXCHANGE); - this.state = 1455; + this.state = 1454; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1457; + this.state = 1456; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1458; + this.state = 1457; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1459; + this.state = 1458; this.tableName(); - this.state = 1460; + this.state = 1459; localContext._kw3 = this.match(SparkSqlParser.KW_ARCHIVE); - this.state = 1461; + this.state = 1460; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1463; + this.state = 1462; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1464; + this.state = 1463; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1465; + this.state = 1464; this.tableName(); - this.state = 1466; + this.state = 1465; localContext._kw3 = this.match(SparkSqlParser.KW_UNARCHIVE); - this.state = 1467; + this.state = 1466; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1469; + this.state = 1468; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1470; + this.state = 1469; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1471; + this.state = 1470; this.tableName(); - this.state = 1472; + this.state = 1471; localContext._kw3 = this.match(SparkSqlParser.KW_TOUCH); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1474; + this.state = 1473; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1475; + this.state = 1474; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1476; + this.state = 1475; this.tableName(); - this.state = 1478; + this.state = 1477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1477; + this.state = 1476; this.partitionSpec(); } } - this.state = 1480; + this.state = 1479; localContext._kw3 = this.match(SparkSqlParser.KW_COMPACT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1482; + this.state = 1481; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1483; + this.state = 1482; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1484; + this.state = 1483; this.tableName(); - this.state = 1486; + this.state = 1485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1485; + this.state = 1484; this.partitionSpec(); } } - this.state = 1488; + this.state = 1487; localContext._kw3 = this.match(SparkSqlParser.KW_CONCATENATE); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1490; + this.state = 1489; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1491; + this.state = 1490; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1492; + this.state = 1491; this.tableName(); - this.state = 1494; + this.state = 1493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1493; + this.state = 1492; this.partitionSpec(); } } - this.state = 1496; + this.state = 1495; localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1497; + this.state = 1496; localContext._kw4 = this.match(SparkSqlParser.KW_FILEFORMAT); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1499; + this.state = 1498; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1500; + this.state = 1499; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1501; + this.state = 1500; this.tableName(); - this.state = 1503; + this.state = 1502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1502; + this.state = 1501; this.partitionSpec(); } } - this.state = 1505; + this.state = 1504; localContext._kw3 = this.match(SparkSqlParser.KW_REPLACE); - this.state = 1506; + this.state = 1505; localContext._kw4 = this.match(SparkSqlParser.KW_COLUMNS); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1508; + this.state = 1507; localContext._kw1 = this.match(SparkSqlParser.KW_START); - this.state = 1509; + this.state = 1508; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTION); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1510; + this.state = 1509; localContext._kw1 = this.match(SparkSqlParser.KW_COMMIT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1511; + this.state = 1510; localContext._kw1 = this.match(SparkSqlParser.KW_ROLLBACK); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1512; + this.state = 1511; localContext._kw1 = this.match(SparkSqlParser.KW_DFS); } break; @@ -4717,41 +4810,41 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1515; + this.state = 1514; this.match(SparkSqlParser.KW_CREATE); - this.state = 1517; + this.state = 1516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 1516; + this.state = 1515; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 1520; + this.state = 1519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 1519; + this.state = 1518; this.match(SparkSqlParser.KW_EXTERNAL); } } - this.state = 1522; + this.state = 1521; this.match(SparkSqlParser.KW_TABLE); - this.state = 1524; + this.state = 1523; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: { - this.state = 1523; + this.state = 1522; this.ifNotExists(); } break; } - this.state = 1526; + this.state = 1525; this.tableNameCreate(); } } @@ -4776,23 +4869,23 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1530; + this.state = 1529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 1528; + this.state = 1527; this.match(SparkSqlParser.KW_CREATE); - this.state = 1529; + this.state = 1528; this.match(SparkSqlParser.KW_OR); } } - this.state = 1532; + this.state = 1531; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1533; + this.state = 1532; this.match(SparkSqlParser.KW_TABLE); - this.state = 1534; + this.state = 1533; this.tableNameCreate(); } } @@ -4817,31 +4910,31 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1536; + this.state = 1535; this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1537; + this.state = 1536; this.match(SparkSqlParser.KW_BY); - this.state = 1538; + this.state = 1537; this.identifierList(); - this.state = 1542; + this.state = 1541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 278) { { - this.state = 1539; + this.state = 1538; this.match(SparkSqlParser.KW_SORTED); - this.state = 1540; + this.state = 1539; this.match(SparkSqlParser.KW_BY); - this.state = 1541; + this.state = 1540; this.orderedIdentifierList(); } } - this.state = 1544; + this.state = 1543; this.match(SparkSqlParser.KW_INTO); - this.state = 1545; + this.state = 1544; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 1546; + this.state = 1545; this.match(SparkSqlParser.KW_BUCKETS); } } @@ -4865,40 +4958,40 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1548; + this.state = 1547; this.match(SparkSqlParser.KW_SKEWED); - this.state = 1549; + this.state = 1548; this.match(SparkSqlParser.KW_BY); - this.state = 1550; + this.state = 1549; this.identifierList(); - this.state = 1551; + this.state = 1550; this.match(SparkSqlParser.KW_ON); - this.state = 1554; + this.state = 1553; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1552; + this.state = 1551; this.constantList(); } break; case 2: { - this.state = 1553; + this.state = 1552; this.nestedConstantList(); } break; } - this.state = 1559; + this.state = 1558; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1556; + this.state = 1555; this.match(SparkSqlParser.KW_STORED); - this.state = 1557; + this.state = 1556; this.match(SparkSqlParser.KW_AS); - this.state = 1558; + this.state = 1557; this.match(SparkSqlParser.KW_DIRECTORIES); } break; @@ -4925,9 +5018,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1561; + this.state = 1560; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1562; + this.state = 1561; this.stringLit(); } } @@ -4951,9 +5044,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1564; + this.state = 1563; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1565; + this.state = 1564; this.stringLit(); } } @@ -4976,21 +5069,22 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 26, SparkSqlParser.RULE_query); let _la: number; try { + localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1568; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 345) { { - this.state = 1567; + this.state = 1566; this.ctes(); } } - this.state = 1570; + this.state = 1569; this.queryTerm(0); - this.state = 1571; + this.state = 1570; this.queryOrganization(); } } @@ -5013,41 +5107,41 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 28, SparkSqlParser.RULE_insertInto); let _la: number; try { - this.state = 1649; + this.state = 1648; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1573; + this.state = 1572; this.match(SparkSqlParser.KW_INSERT); - this.state = 1574; + this.state = 1573; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1576; + this.state = 1575; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 292) { { - this.state = 1575; + this.state = 1574; this.match(SparkSqlParser.KW_TABLE); } - break; } - this.state = 1578; + + this.state = 1577; this.tableName(); - this.state = 1583; + this.state = 1582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1579; + this.state = 1578; this.partitionSpec(); - this.state = 1581; + this.state = 1580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1580; + this.state = 1579; this.ifNotExists(); } } @@ -5055,15 +5149,15 @@ export class SparkSqlParser extends antlr.Parser { } } - this.state = 1591; + this.state = 1590; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: { { - this.state = 1585; + this.state = 1584; this.match(SparkSqlParser.KW_BY); - this.state = 1586; + this.state = 1585; this.match(SparkSqlParser.KW_NAME); } } @@ -5071,11 +5165,11 @@ export class SparkSqlParser extends antlr.Parser { case 2: { { - this.state = 1587; + this.state = 1586; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1588; + this.state = 1587; this.columnNameSeq(); - this.state = 1589; + this.state = 1588; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5086,51 +5180,51 @@ export class SparkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1593; + this.state = 1592; this.match(SparkSqlParser.KW_INSERT); - this.state = 1594; + this.state = 1593; this.match(SparkSqlParser.KW_INTO); - this.state = 1596; + this.state = 1595; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 292) { { - this.state = 1595; + this.state = 1594; this.match(SparkSqlParser.KW_TABLE); } - break; } - this.state = 1598; + + this.state = 1597; this.tableName(); - this.state = 1600; + this.state = 1599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1599; + this.state = 1598; this.partitionSpec(); } } - this.state = 1603; + this.state = 1602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1602; + this.state = 1601; this.ifNotExists(); } } - this.state = 1611; + this.state = 1610; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { { - this.state = 1605; + this.state = 1604; this.match(SparkSqlParser.KW_BY); - this.state = 1606; + this.state = 1605; this.match(SparkSqlParser.KW_NAME); } } @@ -5138,11 +5232,11 @@ export class SparkSqlParser extends antlr.Parser { case 2: { { - this.state = 1607; + this.state = 1606; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1608; + this.state = 1607; this.columnNameSeq(); - this.state = 1609; + this.state = 1608; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5153,65 +5247,65 @@ export class SparkSqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1613; + this.state = 1612; this.match(SparkSqlParser.KW_INSERT); - this.state = 1614; + this.state = 1613; this.match(SparkSqlParser.KW_INTO); - this.state = 1616; + this.state = 1615; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 292) { { - this.state = 1615; + this.state = 1614; this.match(SparkSqlParser.KW_TABLE); } - break; } - this.state = 1618; + + this.state = 1617; this.tableName(); - this.state = 1619; + this.state = 1618; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1620; + this.state = 1619; this.whereClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1622; + this.state = 1621; this.match(SparkSqlParser.KW_INSERT); - this.state = 1623; + this.state = 1622; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1625; + this.state = 1624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1624; + this.state = 1623; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1627; + this.state = 1626; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1628; + this.state = 1627; localContext._path = this.stringLit(); - this.state = 1630; + this.state = 1629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 1629; + this.state = 1628; this.rowFormat(); } } - this.state = 1633; + this.state = 1632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 282) { { - this.state = 1632; + this.state = 1631; this.createFileFormat(); } } @@ -5221,42 +5315,42 @@ export class SparkSqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1635; + this.state = 1634; this.match(SparkSqlParser.KW_INSERT); - this.state = 1636; + this.state = 1635; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1638; + this.state = 1637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1637; + this.state = 1636; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1640; + this.state = 1639; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1642; + this.state = 1641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 376 || _la === 377) { { - this.state = 1641; + this.state = 1640; localContext._path = this.stringLit(); } } - this.state = 1644; + this.state = 1643; this.tableProvider(); - this.state = 1647; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 1645; + this.state = 1644; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1646; + this.state = 1645; localContext._options = this.propertyList(); } } @@ -5286,14 +5380,14 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1651; + this.state = 1650; this.partitionSpec(); - this.state = 1653; + this.state = 1652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1652; + this.state = 1651; this.locationSpec(); } } @@ -5321,29 +5415,29 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1655; + this.state = 1654; this.match(SparkSqlParser.KW_PARTITION); - this.state = 1656; + this.state = 1655; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1657; + this.state = 1656; this.partitionVal(); - this.state = 1662; + this.state = 1661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1658; + this.state = 1657; this.match(SparkSqlParser.COMMA); - this.state = 1659; + this.state = 1658; this.partitionVal(); } } - this.state = 1664; + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1665; + this.state = 1664; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5366,22 +5460,22 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 34, SparkSqlParser.RULE_partitionVal); let _la: number; try { - this.state = 1676; + this.state = 1675; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1667; + this.state = 1666; this.identifier(); - this.state = 1670; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 1668; + this.state = 1667; this.match(SparkSqlParser.EQ); - this.state = 1669; + this.state = 1668; this.constant(); } } @@ -5391,11 +5485,11 @@ export class SparkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1672; + this.state = 1671; this.identifier(); - this.state = 1673; + this.state = 1672; this.match(SparkSqlParser.EQ); - this.state = 1674; + this.state = 1673; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -5415,14 +5509,14 @@ export class SparkSqlParser extends antlr.Parser { } return localContext; } - public dbSchema(): DbSchemaContext { - let localContext = new DbSchemaContext(this.context, this.state); - this.enterRule(localContext, 36, SparkSqlParser.RULE_dbSchema); + public namespace(): NamespaceContext { + let localContext = new NamespaceContext(this.context, this.state); + this.enterRule(localContext, 36, SparkSqlParser.RULE_namespace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1678; + this.state = 1677; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 189 || _la === 260)) { this.errorHandler.recoverInline(this); @@ -5447,14 +5541,14 @@ export class SparkSqlParser extends antlr.Parser { } return localContext; } - public dbSchemas(): DbSchemasContext { - let localContext = new DbSchemasContext(this.context, this.state); - this.enterRule(localContext, 38, SparkSqlParser.RULE_dbSchemas); + public namespaces(): NamespacesContext { + let localContext = new NamespacesContext(this.context, this.state); + this.enterRule(localContext, 38, SparkSqlParser.RULE_namespaces); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1680; + this.state = 1679; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 190 || _la === 261)) { this.errorHandler.recoverInline(this); @@ -5483,41 +5577,41 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new DescribeFuncNameContext(this.context, this.state); this.enterRule(localContext, 40, SparkSqlParser.RULE_describeFuncName); try { - this.state = 1687; + this.state = 1686; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1682; + this.state = 1681; this.identifierReference(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1683; + this.state = 1682; this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1684; + this.state = 1683; this.comparisonOperator(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1685; + this.state = 1684; this.arithmeticOperator(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1686; + this.state = 1685; this.predicateOperator(); } break; @@ -5544,23 +5638,23 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1689; + this.state = 1688; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); - this.state = 1694; + this.state = 1693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1690; + this.state = 1689; this.match(SparkSqlParser.DOT); - this.state = 1691; + this.state = 1690; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); } } - this.state = 1696; + this.state = 1695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5587,23 +5681,23 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1697; + this.state = 1696; this.match(SparkSqlParser.KW_WITH); - this.state = 1698; + this.state = 1697; this.namedQuery(); - this.state = 1703; + this.state = 1702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1699; + this.state = 1698; this.match(SparkSqlParser.COMMA); - this.state = 1700; + this.state = 1699; this.namedQuery(); } } - this.state = 1705; + this.state = 1704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5630,33 +5724,33 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1706; + this.state = 1705; localContext._name = this.errorCapturingIdentifier(); - this.state = 1708; + this.state = 1707; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1707; + this.state = 1706; localContext._columnAliases = this.identifierList(); } break; } - this.state = 1711; + this.state = 1710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1710; + this.state = 1709; this.match(SparkSqlParser.KW_AS); } } - this.state = 1713; + this.state = 1712; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1714; + this.state = 1713; this.query(); - this.state = 1715; + this.state = 1714; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5680,9 +5774,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1717; + this.state = 1716; this.match(SparkSqlParser.KW_USING); - this.state = 1718; + this.state = 1717; this.multipartIdentifier(); } } @@ -5707,21 +5801,21 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1735; + this.state = 1734; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 187, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1733; + this.state = 1732; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 1720; + this.state = 1719; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1721; + this.state = 1720; localContext._options = this.expressionPropertyList(); } } @@ -5729,57 +5823,57 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 1722; + this.state = 1721; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 1723; + this.state = 1722; this.match(SparkSqlParser.KW_BY); - this.state = 1724; + this.state = 1723; localContext._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 1725; + this.state = 1724; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 1726; + this.state = 1725; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 1727; + this.state = 1726; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 1728; + this.state = 1727; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 1729; + this.state = 1728; this.locationSpec(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 1730; + this.state = 1729; this.commentSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 1731; + this.state = 1730; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 1732; + this.state = 1731; localContext._tableProps = this.propertyList(); } } @@ -5789,9 +5883,9 @@ export class SparkSqlParser extends antlr.Parser { } } } - this.state = 1737; + this.state = 1736; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 187, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); } } } @@ -5816,27 +5910,27 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1737; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1739; + this.state = 1738; this.property(); - this.state = 1744; + this.state = 1743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1740; + this.state = 1739; this.match(SparkSqlParser.COMMA); - this.state = 1741; + this.state = 1740; this.property(); } } - this.state = 1746; + this.state = 1745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1747; + this.state = 1746; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5861,24 +5955,24 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1749; + this.state = 1748; localContext._key = this.propertyKey(); - this.state = 1754; + this.state = 1753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111 || _la === 315 || ((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 1174405121) !== 0) || _la === 383) { { - this.state = 1751; + this.state = 1750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 1750; + this.state = 1749; this.match(SparkSqlParser.EQ); } } - this.state = 1753; + this.state = 1752; localContext._value = this.propertyValue(); } } @@ -5904,27 +5998,27 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 56, SparkSqlParser.RULE_propertyKey); let _la: number; try { - this.state = 1765; + this.state = 1764; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1756; + this.state = 1755; this.identifier(); - this.state = 1761; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1757; + this.state = 1756; this.match(SparkSqlParser.DOT); - this.state = 1758; + this.state = 1757; this.identifier(); } } - this.state = 1763; + this.state = 1762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5933,7 +6027,7 @@ export class SparkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1764; + this.state = 1763; this.stringLit(); } break; @@ -5957,20 +6051,20 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 58, SparkSqlParser.RULE_propertyValue); try { - this.state = 1771; + this.state = 1770; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1767; + this.state = 1766; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1768; + this.state = 1767; this.match(SparkSqlParser.DECIMAL_VALUE); } break; @@ -5978,7 +6072,7 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 1769; + this.state = 1768; this.booleanValue(); } break; @@ -5986,7 +6080,7 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 4); { - this.state = 1770; + this.state = 1769; this.stringLit(); } break; @@ -6015,27 +6109,27 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1773; + this.state = 1772; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1774; + this.state = 1773; this.expressionProperty(); - this.state = 1779; + this.state = 1778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1775; + this.state = 1774; this.match(SparkSqlParser.COMMA); - this.state = 1776; + this.state = 1775; this.expressionProperty(); } } - this.state = 1781; + this.state = 1780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1782; + this.state = 1781; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6060,24 +6154,24 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1784; + this.state = 1783; localContext._key = this.propertyKey(); - this.state = 1789; + this.state = 1788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { - this.state = 1786; + this.state = 1785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 1785; + this.state = 1784; this.match(SparkSqlParser.EQ); } } - this.state = 1788; + this.state = 1787; localContext._value = this.expression(); } } @@ -6105,27 +6199,27 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1791; + this.state = 1790; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1792; + this.state = 1791; this.constant(); - this.state = 1797; + this.state = 1796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1793; + this.state = 1792; this.match(SparkSqlParser.COMMA); - this.state = 1794; + this.state = 1793; this.constant(); } } - this.state = 1799; + this.state = 1798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1800; + this.state = 1799; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6150,27 +6244,27 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1802; + this.state = 1801; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1803; + this.state = 1802; this.constantList(); - this.state = 1808; + this.state = 1807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1804; + this.state = 1803; this.match(SparkSqlParser.COMMA); - this.state = 1805; + this.state = 1804; this.constantList(); } } - this.state = 1810; + this.state = 1809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1811; + this.state = 1810; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6192,28 +6286,28 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new CreateFileFormatContext(this.context, this.state); this.enterRule(localContext, 68, SparkSqlParser.RULE_createFileFormat); try { - this.state = 1819; + this.state = 1818; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1813; + this.state = 1812; this.match(SparkSqlParser.KW_STORED); - this.state = 1814; + this.state = 1813; this.match(SparkSqlParser.KW_AS); - this.state = 1815; + this.state = 1814; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1816; + this.state = 1815; this.match(SparkSqlParser.KW_STORED); - this.state = 1817; + this.state = 1816; this.match(SparkSqlParser.KW_BY); - this.state = 1818; + this.state = 1817; this.storageHandler(); } break; @@ -6237,26 +6331,26 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new FileFormatContext(this.context, this.state); this.enterRule(localContext, 70, SparkSqlParser.RULE_fileFormat); try { - this.state = 1827; + this.state = 1826; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1821; + this.state = 1820; this.match(SparkSqlParser.KW_INPUTFORMAT); - this.state = 1822; + this.state = 1821; localContext._inFmt = this.stringLit(); - this.state = 1823; + this.state = 1822; this.match(SparkSqlParser.KW_OUTPUTFORMAT); - this.state = 1824; + this.state = 1823; localContext._outFmt = this.stringLit(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1826; + this.state = 1825; this.identifier(); } break; @@ -6282,18 +6376,18 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1829; + this.state = 1828; this.stringLit(); - this.state = 1833; + this.state = 1832; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 1830; + this.state = 1829; this.match(SparkSqlParser.KW_WITH); - this.state = 1831; + this.state = 1830; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 1832; + this.state = 1831; this.propertyList(); } break; @@ -6320,9 +6414,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1835; + this.state = 1834; this.identifier(); - this.state = 1836; + this.state = 1835; this.stringLit(); } } @@ -6346,24 +6440,26 @@ export class SparkSqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 1894; + this.state = 1893; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_INSERT: + localContext = new InsertFromQueryContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1838; + this.state = 1837; this.insertInto(); - this.state = 1839; + this.state = 1838; this.query(); } break; case SparkSqlParser.KW_FROM: + localContext = new MultipleInsertContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1841; + this.state = 1840; this.fromClause(); - this.state = 1843; + this.state = 1842; this.errorHandler.sync(this); alternative = 1; do { @@ -6371,7 +6467,7 @@ export class SparkSqlParser extends antlr.Parser { case 1: { { - this.state = 1842; + this.state = 1841; this.multiInsertQueryBody(); } } @@ -6379,29 +6475,30 @@ export class SparkSqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 1845; + this.state = 1844; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 202, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 203, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case SparkSqlParser.KW_DELETE: + localContext = new DeleteFromTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1847; + this.state = 1846; this.match(SparkSqlParser.KW_DELETE); - this.state = 1848; + this.state = 1847; this.match(SparkSqlParser.KW_FROM); - this.state = 1849; + this.state = 1848; this.tableName(); - this.state = 1850; + this.state = 1849; this.tableAlias(); - this.state = 1852; + this.state = 1851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 343) { { - this.state = 1851; + this.state = 1850; this.whereClause(); } } @@ -6409,22 +6506,23 @@ export class SparkSqlParser extends antlr.Parser { } break; case SparkSqlParser.KW_UPDATE: + localContext = new UpdateTableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1854; + this.state = 1853; this.match(SparkSqlParser.KW_UPDATE); - this.state = 1855; + this.state = 1854; this.tableName(); - this.state = 1856; + this.state = 1855; this.tableAlias(); - this.state = 1857; + this.state = 1856; this.setClause(); - this.state = 1859; + this.state = 1858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 343) { { - this.state = 1858; + this.state = 1857; this.whereClause(); } } @@ -6432,19 +6530,20 @@ export class SparkSqlParser extends antlr.Parser { } break; case SparkSqlParser.KW_MERGE: + localContext = new MergeIntoTableContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1861; + this.state = 1860; this.match(SparkSqlParser.KW_MERGE); - this.state = 1862; + this.state = 1861; this.match(SparkSqlParser.KW_INTO); + this.state = 1862; + (localContext as MergeIntoTableContext)._target = this.tableName(); this.state = 1863; - localContext._target = this.tableName(); + (localContext as MergeIntoTableContext)._targetAlias = this.tableAlias(); this.state = 1864; - localContext._targetAlias = this.tableAlias(); - this.state = 1865; this.match(SparkSqlParser.KW_USING); - this.state = 1871; + this.state = 1870; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -6562,7 +6661,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_FOREIGN: case SparkSqlParser.KW_FORMAT: case SparkSqlParser.KW_FORMATTED: - case SparkSqlParser.KW_FROM: case SparkSqlParser.KW_FULL: case SparkSqlParser.KW_FUNCTION: case SparkSqlParser.KW_FUNCTIONS: @@ -6729,7 +6827,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_SYSTEM: case SparkSqlParser.KW_SYSTEM_TIME: case SparkSqlParser.KW_SYSTEM_VERSION: - case SparkSqlParser.KW_TABLE: case SparkSqlParser.KW_TABLES: case SparkSqlParser.KW_TABLESAMPLE: case SparkSqlParser.KW_TARGET: @@ -6792,72 +6889,72 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1866; - localContext._source = this.identifierReference(); + this.state = 1865; + (localContext as MergeIntoTableContext)._source = this.identifierReference(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 1867; + this.state = 1866; this.match(SparkSqlParser.LEFT_PAREN); + this.state = 1867; + (localContext as MergeIntoTableContext)._sourceQuery = this.query(); this.state = 1868; - localContext._sourceQuery = this.query(); - this.state = 1869; this.match(SparkSqlParser.RIGHT_PAREN); } break; default: throw new antlr.NoViableAltException(this); } + this.state = 1872; + (localContext as MergeIntoTableContext)._sourceAlias = this.tableAlias(); this.state = 1873; - localContext._sourceAlias = this.tableAlias(); - this.state = 1874; this.match(SparkSqlParser.KW_ON); - this.state = 1875; - localContext._mergeCondition = this.booleanExpression(0); - this.state = 1879; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 206, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1876; - this.matchedClause(); - } - } - } - this.state = 1881; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 206, this.context); - } - this.state = 1885; + this.state = 1874; + (localContext as MergeIntoTableContext)._mergeCondition = this.booleanExpression(0); + this.state = 1878; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1882; + this.state = 1875; + this.matchedClause(); + } + } + } + this.state = 1880; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); + } + this.state = 1884; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1881; this.notMatchedClause(); } } } - this.state = 1887; + this.state = 1886; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); } - this.state = 1891; + this.state = 1890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 342) { { { - this.state = 1888; + this.state = 1887; this.notMatchedBySourceClause(); } } - this.state = 1893; + this.state = 1892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6881,13 +6978,13 @@ export class SparkSqlParser extends antlr.Parser { } return localContext; } - public dbSchemaName(): DbSchemaNameContext { - let localContext = new DbSchemaNameContext(this.context, this.state); - this.enterRule(localContext, 78, SparkSqlParser.RULE_dbSchemaName); + public namespaceName(): NamespaceNameContext { + let localContext = new NamespaceNameContext(this.context, this.state); + this.enterRule(localContext, 78, SparkSqlParser.RULE_namespaceName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1896; + this.state = 1895; this.identifierReference(); } } @@ -6905,13 +7002,13 @@ export class SparkSqlParser extends antlr.Parser { } return localContext; } - public dbSchemaNameCreate(): DbSchemaNameCreateContext { - let localContext = new DbSchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 80, SparkSqlParser.RULE_dbSchemaNameCreate); + public namespaceNameCreate(): NamespaceNameCreateContext { + let localContext = new NamespaceNameCreateContext(this.context, this.state); + this.enterRule(localContext, 80, SparkSqlParser.RULE_namespaceNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1898; + this.state = 1897; this.identifierReference(); } } @@ -6935,7 +7032,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1900; + this.state = 1899; this.tableIdentifier(); } } @@ -6959,7 +7056,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1902; + this.state = 1901; this.tableIdentifier(); } } @@ -6983,7 +7080,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1904; + this.state = 1903; this.viewIdentifier(); } } @@ -7007,7 +7104,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1905; this.viewIdentifier(); } } @@ -7029,10 +7126,25 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 90, SparkSqlParser.RULE_columnName); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1908; - this.multipartIdentifier(); + this.state = 1909; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1907; + this.multipartIdentifier(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1908; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + } + break; } } catch (re) { @@ -7056,21 +7168,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1910; + this.state = 1911; this.columnName(); - this.state = 1915; + this.state = 1916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1911; - this.match(SparkSqlParser.COMMA); this.state = 1912; + this.match(SparkSqlParser.COMMA); + this.state = 1913; this.columnName(); } } - this.state = 1917; + this.state = 1918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7096,7 +7208,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1918; + this.state = 1919; this.errorCapturingIdentifier(); } } @@ -7118,26 +7230,26 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new IdentifierReferenceContext(this.context, this.state); this.enterRule(localContext, 96, SparkSqlParser.RULE_identifierReference); try { - this.state = 1926; + this.state = 1927; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1920; - this.match(SparkSqlParser.KW_IDENTIFIER); this.state = 1921; - this.match(SparkSqlParser.LEFT_PAREN); + this.match(SparkSqlParser.KW_IDENTIFIER); this.state = 1922; - this.expression(); + this.match(SparkSqlParser.LEFT_PAREN); this.state = 1923; + this.expression(); + this.state = 1924; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1925; + this.state = 1926; this.multipartIdentifier(); } break; @@ -7164,171 +7276,171 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1938; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { - case 1: - { - this.state = 1928; - this.match(SparkSqlParser.KW_ORDER); - this.state = 1929; - this.match(SparkSqlParser.KW_BY); - this.state = 1930; - localContext._sortItem = this.sortItem(); - localContext._order.push(localContext._sortItem); - this.state = 1935; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 212, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1931; - this.match(SparkSqlParser.COMMA); - this.state = 1932; - localContext._sortItem = this.sortItem(); - localContext._order.push(localContext._sortItem); - } - } - } - this.state = 1937; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 212, this.context); - } - } - break; - } - this.state = 1950; + this.state = 1939; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1940; - this.match(SparkSqlParser.KW_CLUSTER); - this.state = 1941; + this.state = 1929; + this.match(SparkSqlParser.KW_ORDER); + this.state = 1930; this.match(SparkSqlParser.KW_BY); - this.state = 1942; - localContext._expression = this.expression(); - localContext._clusterBy.push(localContext._expression); - this.state = 1947; + this.state = 1931; + localContext._sortItem = this.sortItem(); + localContext._order.push(localContext._sortItem); + this.state = 1936; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1943; + this.state = 1932; this.match(SparkSqlParser.COMMA); - this.state = 1944; - localContext._expression = this.expression(); - localContext._clusterBy.push(localContext._expression); + this.state = 1933; + localContext._sortItem = this.sortItem(); + localContext._order.push(localContext._sortItem); } } } - this.state = 1949; + this.state = 1938; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); } } break; } - this.state = 1962; + this.state = 1951; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 1952; - this.match(SparkSqlParser.KW_DISTRIBUTE); - this.state = 1953; + this.state = 1941; + this.match(SparkSqlParser.KW_CLUSTER); + this.state = 1942; this.match(SparkSqlParser.KW_BY); - this.state = 1954; + this.state = 1943; localContext._expression = this.expression(); - localContext._distributeBy.push(localContext._expression); - this.state = 1959; + localContext._clusterBy.push(localContext._expression); + this.state = 1948; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1955; + this.state = 1944; this.match(SparkSqlParser.COMMA); - this.state = 1956; + this.state = 1945; localContext._expression = this.expression(); - localContext._distributeBy.push(localContext._expression); + localContext._clusterBy.push(localContext._expression); } } } - this.state = 1961; + this.state = 1950; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); } } break; } - this.state = 1974; + this.state = 1963; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 1964; - this.match(SparkSqlParser.KW_SORT); - this.state = 1965; + this.state = 1953; + this.match(SparkSqlParser.KW_DISTRIBUTE); + this.state = 1954; this.match(SparkSqlParser.KW_BY); - this.state = 1966; - localContext._sortItem = this.sortItem(); - localContext._sort.push(localContext._sortItem); - this.state = 1971; + this.state = 1955; + localContext._expression = this.expression(); + localContext._distributeBy.push(localContext._expression); + this.state = 1960; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1967; + this.state = 1956; this.match(SparkSqlParser.COMMA); - this.state = 1968; - localContext._sortItem = this.sortItem(); - localContext._sort.push(localContext._sortItem); + this.state = 1957; + localContext._expression = this.expression(); + localContext._distributeBy.push(localContext._expression); } } } - this.state = 1973; + this.state = 1962; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); } } break; } - this.state = 1977; + this.state = 1975; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 1976; - this.windowClause(); + this.state = 1965; + this.match(SparkSqlParser.KW_SORT); + this.state = 1966; + this.match(SparkSqlParser.KW_BY); + this.state = 1967; + localContext._sortItem = this.sortItem(); + localContext._sort.push(localContext._sortItem); + this.state = 1972; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1968; + this.match(SparkSqlParser.COMMA); + this.state = 1969; + localContext._sortItem = this.sortItem(); + localContext._sort.push(localContext._sortItem); + } + } + } + this.state = 1974; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); + } } break; } - this.state = 1984; + this.state = 1978; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 1979; + this.state = 1977; + this.windowClause(); + } + break; + } + this.state = 1985; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { + case 1: + { + this.state = 1980; this.match(SparkSqlParser.KW_LIMIT); - this.state = 1982; + this.state = 1983; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1980; + this.state = 1981; this.match(SparkSqlParser.KW_ALL); } break; case 2: { - this.state = 1981; + this.state = 1982; localContext._limit = this.expression(); } break; @@ -7336,14 +7448,14 @@ export class SparkSqlParser extends antlr.Parser { } break; } - this.state = 1988; + this.state = 1989; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { - this.state = 1986; - this.match(SparkSqlParser.KW_OFFSET); this.state = 1987; + this.match(SparkSqlParser.KW_OFFSET); + this.state = 1988; localContext._offset = this.expression(); } break; @@ -7370,9 +7482,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1990; - this.insertInto(); this.state = 1991; + this.insertInto(); + this.state = 1992; this.fromStatementBody(); } } @@ -7410,13 +7522,13 @@ export class SparkSqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { { - this.state = 1994; + this.state = 1995; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2016; + this.state = 2017; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -7424,19 +7536,19 @@ export class SparkSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 2014; + this.state = 2015; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 1996; + this.state = 1997; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1997; + this.state = 1998; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 148 || _la === 269 || _la === 322)) { @@ -7446,17 +7558,17 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1999; + this.state = 2000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 1998; + this.state = 1999; this.setQuantifier(); } } - this.state = 2001; + this.state = 2002; localContext._right = this.queryTerm(4); } break; @@ -7465,23 +7577,23 @@ export class SparkSqlParser extends antlr.Parser { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2002; + this.state = 2003; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2003; + this.state = 2004; localContext._operator = this.match(SparkSqlParser.KW_INTERSECT); - this.state = 2005; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2004; + this.state = 2005; this.setQuantifier(); } } - this.state = 2007; + this.state = 2008; localContext._right = this.queryTerm(3); } break; @@ -7490,11 +7602,11 @@ export class SparkSqlParser extends antlr.Parser { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2008; + this.state = 2009; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2009; + this.state = 2010; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 269 || _la === 322)) { @@ -7504,26 +7616,26 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2011; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2010; + this.state = 2011; this.setQuantifier(); } } - this.state = 2013; + this.state = 2014; localContext._right = this.queryTerm(2); } break; } } } - this.state = 2018; + this.state = 2019; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } } } @@ -7545,7 +7657,7 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new QueryPrimaryContext(this.context, this.state); this.enterRule(localContext, 104, SparkSqlParser.RULE_queryPrimary); try { - this.state = 2028; + this.state = 2029; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_MAP: @@ -7553,41 +7665,41 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2019; + this.state = 2020; this.querySpecification(); } break; case SparkSqlParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 2020; + this.state = 2021; this.fromStatement(); } break; case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 3); { - this.state = 2021; - this.match(SparkSqlParser.KW_TABLE); this.state = 2022; + this.match(SparkSqlParser.KW_TABLE); + this.state = 2023; this.tableName(); } break; case SparkSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 4); { - this.state = 2023; + this.state = 2024; this.inlineTable(); } break; case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 5); { - this.state = 2024; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 2025; - this.query(); + this.match(SparkSqlParser.LEFT_PAREN); this.state = 2026; + this.query(); + this.state = 2027; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -7616,28 +7728,28 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2032; + this.state = 2033; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2030; + this.state = 2031; this.columnName(); } break; case 2: { - this.state = 2031; + this.state = 2032; this.expression(); } break; } - this.state = 2035; + this.state = 2036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 2034; + this.state = 2035; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -7650,14 +7762,14 @@ export class SparkSqlParser extends antlr.Parser { } break; } - this.state = 2039; + this.state = 2040; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 2037; - this.match(SparkSqlParser.KW_NULLS); this.state = 2038; + this.match(SparkSqlParser.KW_NULLS); + this.state = 2039; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 157)) { @@ -7693,9 +7805,9 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2041; + this.state = 2042; this.fromClause(); - this.state = 2043; + this.state = 2044; this.errorHandler.sync(this); alternative = 1; do { @@ -7703,7 +7815,7 @@ export class SparkSqlParser extends antlr.Parser { case 1: { { - this.state = 2042; + this.state = 2043; this.fromStatementBody(); } } @@ -7711,9 +7823,9 @@ export class SparkSqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 2045; + this.state = 2046; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -7736,90 +7848,90 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 110, SparkSqlParser.RULE_fromStatementBody); try { let alternative: number; - this.state = 2074; + this.state = 2075; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2047; + this.state = 2048; this.transformClause(); - this.state = 2049; + this.state = 2050; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 2048; + this.state = 2049; this.whereClause(); } break; } - this.state = 2051; + this.state = 2052; this.queryOrganization(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2053; + this.state = 2054; this.selectClause(); - this.state = 2057; + this.state = 2058; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2054; + this.state = 2055; this.lateralView(); } } } - this.state = 2059; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); - } - this.state = 2061; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { - case 1: - { this.state = 2060; - this.whereClause(); - } - break; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); } - this.state = 2064; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { - case 1: - { - this.state = 2063; - this.aggregationClause(); - } - break; - } - this.state = 2067; + this.state = 2062; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 2066; - this.havingClause(); + this.state = 2061; + this.whereClause(); } break; } - this.state = 2070; + this.state = 2065; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 2069; + this.state = 2064; + this.aggregationClause(); + } + break; + } + this.state = 2068; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + case 1: + { + this.state = 2067; + this.havingClause(); + } + break; + } + this.state = 2071; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + case 1: + { + this.state = 2070; this.windowClause(); } break; } - this.state = 2072; + this.state = 2073; this.queryOrganization(); } break; @@ -7844,76 +7956,76 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 112, SparkSqlParser.RULE_querySpecification); try { let alternative: number; - this.state = 2120; + this.state = 2121; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2076; + this.state = 2077; this.transformClause(); - this.state = 2078; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { - case 1: - { - this.state = 2077; - this.fromClause(); - } - break; - } - this.state = 2083; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 242, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 2080; - this.lateralView(); - } - } - } - this.state = 2085; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 242, this.context); - } - this.state = 2087; + this.state = 2079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 2086; - this.whereClause(); + this.state = 2078; + this.fromClause(); } break; } - this.state = 2090; + this.state = 2084; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { - case 1: - { - this.state = 2089; - this.aggregationClause(); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2081; + this.lateralView(); + } + } } - break; + this.state = 2086; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); } - this.state = 2093; + this.state = 2088; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2092; - this.havingClause(); + this.state = 2087; + this.whereClause(); } break; } - this.state = 2096; + this.state = 2091; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 2095; + this.state = 2090; + this.aggregationClause(); + } + break; + } + this.state = 2094; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + case 1: + { + this.state = 2093; + this.havingClause(); + } + break; + } + this.state = 2097; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + case 1: + { + this.state = 2096; this.windowClause(); } break; @@ -7923,70 +8035,70 @@ export class SparkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2098; + this.state = 2099; this.selectClause(); - this.state = 2100; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { - case 1: - { - this.state = 2099; - this.fromClause(); - } - break; - } - this.state = 2105; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 248, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 2102; - this.lateralView(); - } - } - } - this.state = 2107; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 248, this.context); - } - this.state = 2109; + this.state = 2101; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: { - this.state = 2108; - this.whereClause(); + this.state = 2100; + this.fromClause(); } break; } - this.state = 2112; + this.state = 2106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { - case 1: - { - this.state = 2111; - this.aggregationClause(); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2103; + this.lateralView(); + } + } } - break; + this.state = 2108; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); } - this.state = 2115; + this.state = 2110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 2114; - this.havingClause(); + this.state = 2109; + this.whereClause(); } break; } - this.state = 2118; + this.state = 2113; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2117; + this.state = 2112; + this.aggregationClause(); + } + break; + } + this.state = 2116; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + case 1: + { + this.state = 2115; + this.havingClause(); + } + break; + } + this.state = 2119; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + case 1: + { + this.state = 2118; this.windowClause(); } break; @@ -8016,142 +8128,142 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2141; + this.state = 2142; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_SELECT: { - this.state = 2122; - this.match(SparkSqlParser.KW_SELECT); this.state = 2123; - localContext._kind = this.match(SparkSqlParser.KW_TRANSFORM); + this.match(SparkSqlParser.KW_SELECT); this.state = 2124; + localContext._kind = this.match(SparkSqlParser.KW_TRANSFORM); + this.state = 2125; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2126; + this.state = 2127; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2125; + this.state = 2126; this.setQuantifier(); } break; } - this.state = 2128; - this.expressionSeq(); this.state = 2129; + this.expressionSeq(); + this.state = 2130; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_MAP: { - this.state = 2131; + this.state = 2132; localContext._kind = this.match(SparkSqlParser.KW_MAP); - this.state = 2133; + this.state = 2134; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2132; + this.state = 2133; this.setQuantifier(); } break; } - this.state = 2135; + this.state = 2136; this.expressionSeq(); } break; case SparkSqlParser.KW_REDUCE: { - this.state = 2136; + this.state = 2137; localContext._kind = this.match(SparkSqlParser.KW_REDUCE); - this.state = 2138; + this.state = 2139; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2137; + this.state = 2138; this.setQuantifier(); } break; } - this.state = 2140; + this.state = 2141; this.expressionSeq(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2144; + this.state = 2145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2143; + this.state = 2144; localContext._inRowFormat = this.rowFormat(); } } - this.state = 2148; + this.state = 2149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 235) { { - this.state = 2146; - this.match(SparkSqlParser.KW_RECORDWRITER); this.state = 2147; + this.match(SparkSqlParser.KW_RECORDWRITER); + this.state = 2148; localContext._recordWriter = this.stringLit(); } } - this.state = 2150; - this.match(SparkSqlParser.KW_USING); this.state = 2151; + this.match(SparkSqlParser.KW_USING); + this.state = 2152; localContext._script = this.stringLit(); - this.state = 2164; + this.state = 2165; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2152; + this.state = 2153; this.match(SparkSqlParser.KW_AS); - this.state = 2162; + this.state = 2163; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2153; + this.state = 2154; this.identifierSeq(); } break; case 2: { - this.state = 2154; + this.state = 2155; this.colTypeList(); } break; case 3: { { - this.state = 2155; + this.state = 2156; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2158; + this.state = 2159; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2156; + this.state = 2157; this.identifierSeq(); } break; case 2: { - this.state = 2157; + this.state = 2158; this.colTypeList(); } break; } - this.state = 2160; + this.state = 2161; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -8160,24 +8272,24 @@ export class SparkSqlParser extends antlr.Parser { } break; } - this.state = 2167; + this.state = 2168; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2166; + this.state = 2167; localContext._outRowFormat = this.rowFormat(); } break; } - this.state = 2171; + this.state = 2172; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2169; - this.match(SparkSqlParser.KW_RECORDREADER); this.state = 2170; + this.match(SparkSqlParser.KW_RECORDREADER); + this.state = 2171; localContext._recordReader = this.stringLit(); } break; @@ -8201,38 +8313,40 @@ export class SparkSqlParser extends antlr.Parser { public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); this.enterRule(localContext, 116, SparkSqlParser.RULE_selectClause); - let _la: number; try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2173; + this.state = 2174; this.match(SparkSqlParser.KW_SELECT); - this.state = 2177; + this.state = 2178; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 373) { - { - { - this.state = 2174; - localContext._hint = this.hint(); - localContext._hints.push(localContext._hint); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2175; + localContext._hint = this.hint(); + localContext._hints.push(localContext._hint); + } + } } - } - this.state = 2179; + this.state = 2180; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); } - this.state = 2181; + this.state = 2182; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2180; + this.state = 2181; this.setQuantifier(); } break; } - this.state = 2183; + this.state = 2184; this.namedExpressionSeq(); } } @@ -8256,9 +8370,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2185; - this.match(SparkSqlParser.KW_SET); this.state = 2186; + this.match(SparkSqlParser.KW_SET); + this.state = 2187; this.assignmentList(); } } @@ -8283,25 +8397,25 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2188; - this.match(SparkSqlParser.KW_WHEN); this.state = 2189; + this.match(SparkSqlParser.KW_WHEN); + this.state = 2190; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2192; + this.state = 2193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2190; - this.match(SparkSqlParser.KW_AND); this.state = 2191; + this.match(SparkSqlParser.KW_AND); + this.state = 2192; localContext._matchedCond = this.booleanExpression(0); } } - this.state = 2194; - this.match(SparkSqlParser.KW_THEN); this.state = 2195; + this.match(SparkSqlParser.KW_THEN); + this.state = 2196; this.matchedAction(); } } @@ -8326,39 +8440,39 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2197; - this.match(SparkSqlParser.KW_WHEN); this.state = 2198; - this.match(SparkSqlParser.KW_NOT); + this.match(SparkSqlParser.KW_WHEN); this.state = 2199; + this.match(SparkSqlParser.KW_NOT); + this.state = 2200; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2202; + this.state = 2203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2200; - this.match(SparkSqlParser.KW_BY); this.state = 2201; + this.match(SparkSqlParser.KW_BY); + this.state = 2202; this.match(SparkSqlParser.KW_TARGET); } } - this.state = 2206; + this.state = 2207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2204; - this.match(SparkSqlParser.KW_AND); this.state = 2205; + this.match(SparkSqlParser.KW_AND); + this.state = 2206; localContext._notMatchedCond = this.booleanExpression(0); } } - this.state = 2208; - this.match(SparkSqlParser.KW_THEN); this.state = 2209; + this.match(SparkSqlParser.KW_THEN); + this.state = 2210; this.notMatchedAction(); } } @@ -8383,31 +8497,31 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2211; - this.match(SparkSqlParser.KW_WHEN); this.state = 2212; - this.match(SparkSqlParser.KW_NOT); + this.match(SparkSqlParser.KW_WHEN); this.state = 2213; - this.match(SparkSqlParser.KW_MATCHED); + this.match(SparkSqlParser.KW_NOT); this.state = 2214; - this.match(SparkSqlParser.KW_BY); + this.match(SparkSqlParser.KW_MATCHED); this.state = 2215; + this.match(SparkSqlParser.KW_BY); + this.state = 2216; this.match(SparkSqlParser.KW_SOURCE); - this.state = 2218; + this.state = 2219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2216; - this.match(SparkSqlParser.KW_AND); this.state = 2217; + this.match(SparkSqlParser.KW_AND); + this.state = 2218; localContext._notMatchedBySourceCond = this.booleanExpression(0); } } - this.state = 2220; - this.match(SparkSqlParser.KW_THEN); this.state = 2221; + this.match(SparkSqlParser.KW_THEN); + this.state = 2222; this.notMatchedBySourceAction(); } } @@ -8429,35 +8543,35 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new MatchedActionContext(this.context, this.state); this.enterRule(localContext, 126, SparkSqlParser.RULE_matchedAction); try { - this.state = 2230; + this.state = 2231; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2223; + this.state = 2224; this.match(SparkSqlParser.KW_DELETE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2224; - this.match(SparkSqlParser.KW_UPDATE); this.state = 2225; - this.match(SparkSqlParser.KW_SET); + this.match(SparkSqlParser.KW_UPDATE); this.state = 2226; + this.match(SparkSqlParser.KW_SET); + this.state = 2227; this.match(SparkSqlParser.ASTERISK); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2227; - this.match(SparkSqlParser.KW_UPDATE); this.state = 2228; - this.match(SparkSqlParser.KW_SET); + this.match(SparkSqlParser.KW_UPDATE); this.state = 2229; + this.match(SparkSqlParser.KW_SET); + this.state = 2230; this.assignmentList(); } break; @@ -8482,52 +8596,52 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 128, SparkSqlParser.RULE_notMatchedAction); let _la: number; try { - this.state = 2250; + this.state = 2251; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2232; - this.match(SparkSqlParser.KW_INSERT); this.state = 2233; + this.match(SparkSqlParser.KW_INSERT); + this.state = 2234; this.match(SparkSqlParser.ASTERISK); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2234; - this.match(SparkSqlParser.KW_INSERT); this.state = 2235; - this.match(SparkSqlParser.LEFT_PAREN); + this.match(SparkSqlParser.KW_INSERT); this.state = 2236; - this.multipartIdentifierList(); - this.state = 2237; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2238; - this.match(SparkSqlParser.KW_VALUES); - this.state = 2239; this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2237; + this.multipartIdentifierList(); + this.state = 2238; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 2239; + this.match(SparkSqlParser.KW_VALUES); this.state = 2240; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2241; this.expression(); - this.state = 2245; + this.state = 2246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2241; - this.match(SparkSqlParser.COMMA); this.state = 2242; + this.match(SparkSqlParser.COMMA); + this.state = 2243; this.expression(); } } - this.state = 2247; + this.state = 2248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2248; + this.state = 2249; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8551,24 +8665,24 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new NotMatchedBySourceActionContext(this.context, this.state); this.enterRule(localContext, 130, SparkSqlParser.RULE_notMatchedBySourceAction); try { - this.state = 2256; + this.state = 2257; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 1); { - this.state = 2252; + this.state = 2253; this.match(SparkSqlParser.KW_DELETE); } break; case SparkSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 2); { - this.state = 2253; - this.match(SparkSqlParser.KW_UPDATE); this.state = 2254; - this.match(SparkSqlParser.KW_SET); + this.match(SparkSqlParser.KW_UPDATE); this.state = 2255; + this.match(SparkSqlParser.KW_SET); + this.state = 2256; this.assignmentList(); } break; @@ -8597,21 +8711,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2258; + this.state = 2259; this.assignment(); - this.state = 2263; + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2259; - this.match(SparkSqlParser.COMMA); this.state = 2260; + this.match(SparkSqlParser.COMMA); + this.state = 2261; this.assignment(); } } - this.state = 2265; + this.state = 2266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8637,11 +8751,11 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2266; - localContext._key = this.multipartIdentifier(); this.state = 2267; - this.match(SparkSqlParser.EQ); + localContext._key = this.multipartIdentifier(); this.state = 2268; + this.match(SparkSqlParser.EQ); + this.state = 2269; localContext._value = this.expression(); } } @@ -8665,9 +8779,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2270; - this.match(SparkSqlParser.KW_WHERE); this.state = 2271; + this.match(SparkSqlParser.KW_WHERE); + this.state = 2272; this.booleanExpression(0); } } @@ -8691,9 +8805,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2273; - this.match(SparkSqlParser.KW_HAVING); this.state = 2274; + this.match(SparkSqlParser.KW_HAVING); + this.state = 2275; this.booleanExpression(0); } } @@ -8718,37 +8832,37 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2276; - this.match(SparkSqlParser.HENT_START); this.state = 2277; + this.match(SparkSqlParser.HENT_START); + this.state = 2278; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); - this.state = 2284; + this.state = 2285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { { { - this.state = 2279; + this.state = 2280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4) { { - this.state = 2278; + this.state = 2279; this.match(SparkSqlParser.COMMA); } } - this.state = 2281; + this.state = 2282; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); } } - this.state = 2286; + this.state = 2287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2287; + this.state = 2288; this.match(SparkSqlParser.HENT_END); } } @@ -8771,44 +8885,44 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 142, SparkSqlParser.RULE_hintStatement); let _la: number; try { - this.state = 2302; + this.state = 2303; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 279, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2289; + this.state = 2290; localContext._hintName = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2290; - localContext._hintName = this.identifier(); this.state = 2291; - this.match(SparkSqlParser.LEFT_PAREN); + localContext._hintName = this.identifier(); this.state = 2292; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2293; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); - this.state = 2297; + this.state = 2298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2293; - this.match(SparkSqlParser.COMMA); this.state = 2294; + this.match(SparkSqlParser.COMMA); + this.state = 2295; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); } } - this.state = 2299; + this.state = 2300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2300; + this.state = 2301; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8835,60 +8949,60 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2304; - this.match(SparkSqlParser.KW_FROM); this.state = 2305; + this.match(SparkSqlParser.KW_FROM); + this.state = 2306; this.relation(); - this.state = 2310; + this.state = 2311; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 280, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2306; - this.match(SparkSqlParser.COMMA); this.state = 2307; + this.match(SparkSqlParser.COMMA); + this.state = 2308; this.relation(); } } } - this.state = 2312; + this.state = 2313; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 280, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); } - this.state = 2316; + this.state = 2317; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2313; + this.state = 2314; this.lateralView(); } } } - this.state = 2318; + this.state = 2319; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); } - this.state = 2320; + this.state = 2321; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: { - this.state = 2319; + this.state = 2320; this.pivotClause(); } break; } - this.state = 2323; + this.state = 2324; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2322; + this.state = 2323; this.unpivotClause(); } break; @@ -8916,7 +9030,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2325; + this.state = 2326; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 289 || _la === 330)) { this.errorHandler.recoverInline(this); @@ -8946,23 +9060,23 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 148, SparkSqlParser.RULE_temporalClause); let _la: number; try { - this.state = 2341; + this.state = 2342; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 286, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2328; + this.state = 2329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2327; + this.state = 2328; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2330; + this.state = 2331; _la = this.tokenStream.LA(1); if(!(_la === 291 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -8971,28 +9085,28 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2331; - this.match(SparkSqlParser.KW_AS); this.state = 2332; - this.match(SparkSqlParser.KW_OF); + this.match(SparkSqlParser.KW_AS); this.state = 2333; + this.match(SparkSqlParser.KW_OF); + this.state = 2334; this.version(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2335; + this.state = 2336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2334; + this.state = 2335; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2337; + this.state = 2338; _la = this.tokenStream.LA(1); if(!(_la === 290 || _la === 302)) { this.errorHandler.recoverInline(this); @@ -9001,11 +9115,11 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2338; - this.match(SparkSqlParser.KW_AS); this.state = 2339; - this.match(SparkSqlParser.KW_OF); + this.match(SparkSqlParser.KW_AS); this.state = 2340; + this.match(SparkSqlParser.KW_OF); + this.state = 2341; localContext._timestamp = this.valueExpression(0); } break; @@ -9031,115 +9145,115 @@ export class SparkSqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 2382; + this.state = 2383; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2343; - this.match(SparkSqlParser.KW_GROUP); this.state = 2344; - this.match(SparkSqlParser.KW_BY); + this.match(SparkSqlParser.KW_GROUP); this.state = 2345; + this.match(SparkSqlParser.KW_BY); + this.state = 2346; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); - this.state = 2350; + this.state = 2351; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 287, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2346; - this.match(SparkSqlParser.COMMA); this.state = 2347; + this.match(SparkSqlParser.COMMA); + this.state = 2348; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); } } } - this.state = 2352; + this.state = 2353; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 287, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2353; - this.match(SparkSqlParser.KW_GROUP); this.state = 2354; - this.match(SparkSqlParser.KW_BY); + this.match(SparkSqlParser.KW_GROUP); this.state = 2355; + this.match(SparkSqlParser.KW_BY); + this.state = 2356; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); - this.state = 2360; + this.state = 2361; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 288, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2356; - this.match(SparkSqlParser.COMMA); this.state = 2357; + this.match(SparkSqlParser.COMMA); + this.state = 2358; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); } } } - this.state = 2362; + this.state = 2363; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 288, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); } - this.state = 2380; + this.state = 2381; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2363; - this.match(SparkSqlParser.KW_WITH); this.state = 2364; + this.match(SparkSqlParser.KW_WITH); + this.state = 2365; localContext._kind = this.match(SparkSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 2365; - this.match(SparkSqlParser.KW_WITH); this.state = 2366; + this.match(SparkSqlParser.KW_WITH); + this.state = 2367; localContext._kind = this.match(SparkSqlParser.KW_CUBE); } break; case 3: { - this.state = 2367; - localContext._kind = this.match(SparkSqlParser.KW_GROUPING); this.state = 2368; - this.match(SparkSqlParser.KW_SETS); + localContext._kind = this.match(SparkSqlParser.KW_GROUPING); this.state = 2369; - this.match(SparkSqlParser.LEFT_PAREN); + this.match(SparkSqlParser.KW_SETS); this.state = 2370; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2371; this.groupingSet(); - this.state = 2375; + this.state = 2376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2371; - this.match(SparkSqlParser.COMMA); this.state = 2372; + this.match(SparkSqlParser.COMMA); + this.state = 2373; this.groupingSet(); } } - this.state = 2377; + this.state = 2378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2378; + this.state = 2379; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9166,27 +9280,27 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new GroupByClauseContext(this.context, this.state); this.enterRule(localContext, 152, SparkSqlParser.RULE_groupByClause); try { - this.state = 2387; + this.state = 2388; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2384; + this.state = 2385; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2385; + this.state = 2386; this.groupingAnalytics(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2386; + this.state = 2387; this.expression(); } break; @@ -9211,14 +9325,14 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 154, SparkSqlParser.RULE_groupingAnalytics); let _la: number; try { - this.state = 2414; + this.state = 2415; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CUBE: case SparkSqlParser.KW_ROLLUP: this.enterOuterAlt(localContext, 1); { - this.state = 2389; + this.state = 2390; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 255)) { this.errorHandler.recoverInline(this); @@ -9227,58 +9341,58 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2390; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 2391; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2392; this.groupingSet(); - this.state = 2396; + this.state = 2397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2392; - this.match(SparkSqlParser.COMMA); this.state = 2393; + this.match(SparkSqlParser.COMMA); + this.state = 2394; this.groupingSet(); } } - this.state = 2398; + this.state = 2399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2399; + this.state = 2400; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 2); { - this.state = 2401; - this.match(SparkSqlParser.KW_GROUPING); this.state = 2402; - this.match(SparkSqlParser.KW_SETS); + this.match(SparkSqlParser.KW_GROUPING); this.state = 2403; - this.match(SparkSqlParser.LEFT_PAREN); + this.match(SparkSqlParser.KW_SETS); this.state = 2404; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2405; this.groupingElement(); - this.state = 2409; + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2405; - this.match(SparkSqlParser.COMMA); this.state = 2406; + this.match(SparkSqlParser.COMMA); + this.state = 2407; this.groupingElement(); } } - this.state = 2411; + this.state = 2412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2412; + this.state = 2413; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9304,20 +9418,20 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new GroupingElementContext(this.context, this.state); this.enterRule(localContext, 156, SparkSqlParser.RULE_groupingElement); try { - this.state = 2418; + this.state = 2419; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2416; + this.state = 2417; this.groupingAnalytics(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2417; + this.state = 2418; this.groupingSet(); } break; @@ -9342,83 +9456,83 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 158, SparkSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 2440; + this.state = 2441; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2420; + this.state = 2421; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2421; + this.state = 2422; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2422; + this.state = 2423; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2437; + this.state = 2438; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + case 1: { - this.state = 2425; + this.state = 2426; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2423; + this.state = 2424; this.columnName(); } break; case 2: { - this.state = 2424; + this.state = 2425; this.expression(); } break; } - this.state = 2434; + this.state = 2435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2427; + this.state = 2428; this.match(SparkSqlParser.COMMA); - this.state = 2430; + this.state = 2431; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { case 1: { - this.state = 2428; + this.state = 2429; this.columnName(); } break; case 2: { - this.state = 2429; + this.state = 2430; this.expression(); } break; } } } - this.state = 2436; + this.state = 2437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } + break; } - - this.state = 2439; + this.state = 2440; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9445,44 +9559,44 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2442; - this.match(SparkSqlParser.KW_PIVOT); this.state = 2443; - this.match(SparkSqlParser.LEFT_PAREN); + this.match(SparkSqlParser.KW_PIVOT); this.state = 2444; - localContext._aggregates = this.namedExpressionSeq(); - this.state = 2445; - this.match(SparkSqlParser.KW_FOR); - this.state = 2446; - this.pivotColumn(); - this.state = 2447; - this.match(SparkSqlParser.KW_IN); - this.state = 2448; this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2445; + localContext._aggregates = this.namedExpressionSeq(); + this.state = 2446; + this.match(SparkSqlParser.KW_FOR); + this.state = 2447; + this.pivotColumn(); + this.state = 2448; + this.match(SparkSqlParser.KW_IN); this.state = 2449; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2450; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); - this.state = 2454; + this.state = 2455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2450; - this.match(SparkSqlParser.COMMA); this.state = 2451; + this.match(SparkSqlParser.COMMA); + this.state = 2452; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); } } - this.state = 2456; + this.state = 2457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2457; - this.match(SparkSqlParser.RIGHT_PAREN); this.state = 2458; this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 2459; + this.match(SparkSqlParser.RIGHT_PAREN); } } catch (re) { @@ -9504,7 +9618,7 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 162, SparkSqlParser.RULE_pivotColumn); let _la: number; try { - this.state = 2472; + this.state = 2473; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -9622,7 +9736,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_FOREIGN: case SparkSqlParser.KW_FORMAT: case SparkSqlParser.KW_FORMATTED: - case SparkSqlParser.KW_FROM: case SparkSqlParser.KW_FULL: case SparkSqlParser.KW_FUNCTION: case SparkSqlParser.KW_FUNCTIONS: @@ -9789,7 +9902,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_SYSTEM: case SparkSqlParser.KW_SYSTEM_TIME: case SparkSqlParser.KW_SYSTEM_VERSION: - case SparkSqlParser.KW_TABLE: case SparkSqlParser.KW_TABLES: case SparkSqlParser.KW_TABLESAMPLE: case SparkSqlParser.KW_TARGET: @@ -9853,7 +9965,7 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2460; + this.state = 2461; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } @@ -9861,29 +9973,29 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2461; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 2462; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2463; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); - this.state = 2467; + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2463; - this.match(SparkSqlParser.COMMA); this.state = 2464; + this.match(SparkSqlParser.COMMA); + this.state = 2465; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } } - this.state = 2469; + this.state = 2470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2470; + this.state = 2471; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9912,24 +10024,24 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2474; + this.state = 2475; this.expression(); - this.state = 2479; + this.state = 2480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { { - this.state = 2476; + this.state = 2477; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2475; + this.state = 2476; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2478; + this.state = 2479; this.identifier(); } } @@ -9957,40 +10069,40 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2481; + this.state = 2482; this.match(SparkSqlParser.KW_UNPIVOT); - this.state = 2483; + this.state = 2484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104 || _la === 141) { { - this.state = 2482; + this.state = 2483; localContext._nullOperator = this.unpivotNullClause(); } } - this.state = 2485; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 2486; - localContext._operator = this.unpivotOperator(); + this.match(SparkSqlParser.LEFT_PAREN); this.state = 2487; + localContext._operator = this.unpivotOperator(); + this.state = 2488; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2492; + this.state = 2493; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { case 1: { - this.state = 2489; + this.state = 2490; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 2488; + this.state = 2489; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2491; + this.state = 2492; this.identifier(); } break; @@ -10018,7 +10130,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2494; + this.state = 2495; _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 141)) { this.errorHandler.recoverInline(this); @@ -10027,7 +10139,7 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2495; + this.state = 2496; this.match(SparkSqlParser.KW_NULLS); } } @@ -10051,7 +10163,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2499; + this.state = 2500; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10169,7 +10281,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_FOREIGN: case SparkSqlParser.KW_FORMAT: case SparkSqlParser.KW_FORMATTED: - case SparkSqlParser.KW_FROM: case SparkSqlParser.KW_FULL: case SparkSqlParser.KW_FUNCTION: case SparkSqlParser.KW_FUNCTIONS: @@ -10336,7 +10447,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_SYSTEM: case SparkSqlParser.KW_SYSTEM_TIME: case SparkSqlParser.KW_SYSTEM_VERSION: - case SparkSqlParser.KW_TABLE: case SparkSqlParser.KW_TABLES: case SparkSqlParser.KW_TABLESAMPLE: case SparkSqlParser.KW_TARGET: @@ -10399,13 +10509,13 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2497; + this.state = 2498; this.unpivotSingleValueColumnClause(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2498; + this.state = 2499; this.unpivotMultiValueColumnClause(); } break; @@ -10435,37 +10545,37 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2501; - this.unpivotValueColumn(); this.state = 2502; - this.match(SparkSqlParser.KW_FOR); + this.unpivotValueColumn(); this.state = 2503; - this.unpivotNameColumn(); + this.match(SparkSqlParser.KW_FOR); this.state = 2504; - this.match(SparkSqlParser.KW_IN); + this.unpivotNameColumn(); this.state = 2505; - this.match(SparkSqlParser.LEFT_PAREN); + this.match(SparkSqlParser.KW_IN); this.state = 2506; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2507; localContext._unpivotColumnAndAlias = this.unpivotColumnAndAlias(); localContext._unpivotColumns.push(localContext._unpivotColumnAndAlias); - this.state = 2511; + this.state = 2512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2507; - this.match(SparkSqlParser.COMMA); this.state = 2508; + this.match(SparkSqlParser.COMMA); + this.state = 2509; localContext._unpivotColumnAndAlias = this.unpivotColumnAndAlias(); localContext._unpivotColumns.push(localContext._unpivotColumnAndAlias); } } - this.state = 2513; + this.state = 2514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2514; + this.state = 2515; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10490,59 +10600,59 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2516; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 2517; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2518; localContext._unpivotValueColumn = this.unpivotValueColumn(); localContext._unpivotValueColumns.push(localContext._unpivotValueColumn); - this.state = 2522; + this.state = 2523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2518; - this.match(SparkSqlParser.COMMA); this.state = 2519; + this.match(SparkSqlParser.COMMA); + this.state = 2520; localContext._unpivotValueColumn = this.unpivotValueColumn(); localContext._unpivotValueColumns.push(localContext._unpivotValueColumn); } } - this.state = 2524; + this.state = 2525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2525; - this.match(SparkSqlParser.RIGHT_PAREN); this.state = 2526; - this.match(SparkSqlParser.KW_FOR); + this.match(SparkSqlParser.RIGHT_PAREN); this.state = 2527; - this.unpivotNameColumn(); + this.match(SparkSqlParser.KW_FOR); this.state = 2528; - this.match(SparkSqlParser.KW_IN); + this.unpivotNameColumn(); this.state = 2529; - this.match(SparkSqlParser.LEFT_PAREN); + this.match(SparkSqlParser.KW_IN); this.state = 2530; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2531; localContext._unpivotColumnSet = this.unpivotColumnSet(); localContext._unpivotColumnSets.push(localContext._unpivotColumnSet); - this.state = 2535; + this.state = 2536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2531; - this.match(SparkSqlParser.COMMA); this.state = 2532; + this.match(SparkSqlParser.COMMA); + this.state = 2533; localContext._unpivotColumnSet = this.unpivotColumnSet(); localContext._unpivotColumnSets.push(localContext._unpivotColumnSet); } } - this.state = 2537; + this.state = 2538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2538; + this.state = 2539; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10567,36 +10677,36 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2540; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 2541; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2542; localContext._unpivotColumn = this.unpivotColumn(); localContext._unpivotColumns.push(localContext._unpivotColumn); - this.state = 2546; + this.state = 2547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2542; - this.match(SparkSqlParser.COMMA); this.state = 2543; + this.match(SparkSqlParser.COMMA); + this.state = 2544; localContext._unpivotColumn = this.unpivotColumn(); localContext._unpivotColumns.push(localContext._unpivotColumn); } } - this.state = 2548; + this.state = 2549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2549; + this.state = 2550; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2551; + this.state = 2552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { { - this.state = 2550; + this.state = 2551; this.unpivotAlias(); } } @@ -10623,7 +10733,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2553; + this.state = 2554; this.identifier(); } } @@ -10647,7 +10757,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2555; + this.state = 2556; this.identifier(); } } @@ -10672,14 +10782,14 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2557; + this.state = 2558; this.unpivotColumn(); - this.state = 2559; + this.state = 2560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { { - this.state = 2558; + this.state = 2559; this.unpivotAlias(); } } @@ -10706,7 +10816,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2561; + this.state = 2562; this.multipartIdentifier(); } } @@ -10730,17 +10840,17 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2564; + this.state = 2565; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { case 1: { - this.state = 2563; + this.state = 2564; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2566; + this.state = 2567; this.identifier(); } } @@ -10764,11 +10874,11 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2568; - this.match(SparkSqlParser.KW_IF); this.state = 2569; - this.match(SparkSqlParser.KW_NOT); + this.match(SparkSqlParser.KW_IF); this.state = 2570; + this.match(SparkSqlParser.KW_NOT); + this.state = 2571; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10792,9 +10902,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2572; - this.match(SparkSqlParser.KW_IF); this.state = 2573; + this.match(SparkSqlParser.KW_IF); + this.state = 2574; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10820,90 +10930,90 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2575; - this.match(SparkSqlParser.KW_LATERAL); this.state = 2576; + this.match(SparkSqlParser.KW_LATERAL); + this.state = 2577; this.match(SparkSqlParser.KW_VIEW); - this.state = 2578; + this.state = 2579; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 2577; + this.state = 2578; this.match(SparkSqlParser.KW_OUTER); } break; } - this.state = 2580; - this.viewName(); this.state = 2581; + this.viewName(); + this.state = 2582; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2590; + this.state = 2591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { - this.state = 2582; + this.state = 2583; this.expression(); - this.state = 2587; + this.state = 2588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2583; - this.match(SparkSqlParser.COMMA); this.state = 2584; + this.match(SparkSqlParser.COMMA); + this.state = 2585; this.expression(); } } - this.state = 2589; + this.state = 2590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2592; - this.match(SparkSqlParser.RIGHT_PAREN); this.state = 2593; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 2594; this.tableAlias(); - this.state = 2605; + this.state = 2606; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: { - this.state = 2595; + this.state = 2596; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2594; + this.state = 2595; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2597; + this.state = 2598; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); - this.state = 2602; + this.state = 2603; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 322, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2598; - this.match(SparkSqlParser.COMMA); this.state = 2599; + this.match(SparkSqlParser.COMMA); + this.state = 2600; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); } } } - this.state = 2604; + this.state = 2605; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 322, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); } } break; @@ -10931,7 +11041,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2607; + this.state = 2608; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -10961,46 +11071,46 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 196, SparkSqlParser.RULE_relation); try { let alternative: number; - this.state = 2620; + this.state = 2621; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2609; + this.state = 2610; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2611; + this.state = 2612; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2610; + this.state = 2611; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2613; + this.state = 2614; this.relationPrimary(); - this.state = 2617; + this.state = 2618; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2614; + this.state = 2615; this.relationExtension(); } } } - this.state = 2619; + this.state = 2620; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); } } break; @@ -11024,7 +11134,7 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new RelationExtensionContext(this.context, this.state); this.enterRule(localContext, 198, SparkSqlParser.RULE_relationExtension); try { - this.state = 2625; + this.state = 2626; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11038,21 +11148,21 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_SEMI: this.enterOuterAlt(localContext, 1); { - this.state = 2622; + this.state = 2623; this.joinRelation(); } break; case SparkSqlParser.KW_PIVOT: this.enterOuterAlt(localContext, 2); { - this.state = 2623; + this.state = 2624; this.pivotClause(); } break; case SparkSqlParser.KW_UNPIVOT: this.enterOuterAlt(localContext, 3); { - this.state = 2624; + this.state = 2625; this.unpivotClause(); } break; @@ -11078,7 +11188,7 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new JoinRelationContext(this.context, this.state); this.enterRule(localContext, 200, SparkSqlParser.RULE_joinRelation); try { - this.state = 2644; + this.state = 2645; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11092,29 +11202,29 @@ export class SparkSqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { { - this.state = 2627; + this.state = 2628; this.joinType(); } - this.state = 2628; + this.state = 2629; this.match(SparkSqlParser.KW_JOIN); - this.state = 2630; + this.state = 2631; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2629; + this.state = 2630; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2632; + this.state = 2633; localContext._right = this.relationPrimary(); - this.state = 2634; + this.state = 2635; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 2633; + this.state = 2634; this.joinCriteria(); } break; @@ -11124,23 +11234,23 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_NATURAL: this.enterOuterAlt(localContext, 2); { - this.state = 2636; - this.match(SparkSqlParser.KW_NATURAL); this.state = 2637; - this.joinType(); + this.match(SparkSqlParser.KW_NATURAL); this.state = 2638; + this.joinType(); + this.state = 2639; this.match(SparkSqlParser.KW_JOIN); - this.state = 2640; + this.state = 2641; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: { - this.state = 2639; + this.state = 2640; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2642; + this.state = 2643; localContext._right = this.relationPrimary(); } break; @@ -11167,18 +11277,18 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 202, SparkSqlParser.RULE_joinType); let _la: number; try { - this.state = 2670; + this.state = 2671; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2647; + this.state = 2648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2646; + this.state = 2647; this.match(SparkSqlParser.KW_INNER); } } @@ -11188,21 +11298,21 @@ export class SparkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2649; + this.state = 2650; this.match(SparkSqlParser.KW_CROSS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2650; + this.state = 2651; this.match(SparkSqlParser.KW_LEFT); - this.state = 2652; + this.state = 2653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 210) { { - this.state = 2651; + this.state = 2652; this.match(SparkSqlParser.KW_OUTER); } } @@ -11212,31 +11322,31 @@ export class SparkSqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2655; + this.state = 2656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2654; + this.state = 2655; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2657; + this.state = 2658; this.match(SparkSqlParser.KW_SEMI); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2658; + this.state = 2659; this.match(SparkSqlParser.KW_RIGHT); - this.state = 2660; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 210) { { - this.state = 2659; + this.state = 2660; this.match(SparkSqlParser.KW_OUTER); } } @@ -11246,14 +11356,14 @@ export class SparkSqlParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2662; + this.state = 2663; this.match(SparkSqlParser.KW_FULL); - this.state = 2664; + this.state = 2665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 210) { { - this.state = 2663; + this.state = 2664; this.match(SparkSqlParser.KW_OUTER); } } @@ -11263,17 +11373,17 @@ export class SparkSqlParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2667; + this.state = 2668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2666; + this.state = 2667; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2669; + this.state = 2670; this.match(SparkSqlParser.KW_ANTI); } break; @@ -11297,24 +11407,24 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new JoinCriteriaContext(this.context, this.state); this.enterRule(localContext, 204, SparkSqlParser.RULE_joinCriteria); try { - this.state = 2676; + this.state = 2677; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2672; - this.match(SparkSqlParser.KW_ON); this.state = 2673; + this.match(SparkSqlParser.KW_ON); + this.state = 2674; this.booleanExpression(0); } break; case SparkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2674; - this.match(SparkSqlParser.KW_USING); this.state = 2675; + this.match(SparkSqlParser.KW_USING); + this.state = 2676; this.identifierList(); } break; @@ -11343,34 +11453,34 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2678; - this.match(SparkSqlParser.KW_TABLESAMPLE); this.state = 2679; + this.match(SparkSqlParser.KW_TABLESAMPLE); + this.state = 2680; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2681; + this.state = 2682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { - this.state = 2680; + this.state = 2681; this.sampleMethod(); } } - this.state = 2683; + this.state = 2684; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2688; + this.state = 2689; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: { - this.state = 2684; - this.match(SparkSqlParser.KW_REPEATABLE); this.state = 2685; - this.match(SparkSqlParser.LEFT_PAREN); + this.match(SparkSqlParser.KW_REPEATABLE); this.state = 2686; - localContext._seed = this.match(SparkSqlParser.INTEGER_VALUE); + this.match(SparkSqlParser.LEFT_PAREN); this.state = 2687; + localContext._seed = this.match(SparkSqlParser.INTEGER_VALUE); + this.state = 2688; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11396,23 +11506,23 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 208, SparkSqlParser.RULE_sampleMethod); let _la: number; try { - this.state = 2714; + this.state = 2715; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2691; + this.state = 2692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 2690; + this.state = 2691; localContext._negativeSign = this.match(SparkSqlParser.MINUS); } } - this.state = 2693; + this.state = 2694; localContext._percentage = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 381 || _la === 383)) { @@ -11422,55 +11532,55 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2694; + this.state = 2695; this.match(SparkSqlParser.KW_PERCENTLIT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2695; - this.expression(); this.state = 2696; + this.expression(); + this.state = 2697; this.match(SparkSqlParser.KW_ROWS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2698; - localContext._sampleType = this.match(SparkSqlParser.KW_BUCKET); this.state = 2699; - localContext._numerator = this.match(SparkSqlParser.INTEGER_VALUE); + localContext._sampleType = this.match(SparkSqlParser.KW_BUCKET); this.state = 2700; - this.match(SparkSqlParser.KW_OUT); + localContext._numerator = this.match(SparkSqlParser.INTEGER_VALUE); this.state = 2701; - this.match(SparkSqlParser.KW_OF); + this.match(SparkSqlParser.KW_OUT); this.state = 2702; + this.match(SparkSqlParser.KW_OF); + this.state = 2703; localContext._denominator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2711; + this.state = 2712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202) { { - this.state = 2703; + this.state = 2704; this.match(SparkSqlParser.KW_ON); - this.state = 2709; + this.state = 2710; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: { - this.state = 2704; + this.state = 2705; this.identifier(); } break; case 2: { - this.state = 2705; - this.qualifiedName(); this.state = 2706; - this.match(SparkSqlParser.LEFT_PAREN); + this.qualifiedName(); this.state = 2707; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2708; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11483,7 +11593,7 @@ export class SparkSqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2713; + this.state = 2714; localContext._bytes = this.expression(); } break; @@ -11509,11 +11619,11 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2716; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 2717; - this.identifierSeq(); + this.match(SparkSqlParser.LEFT_PAREN); this.state = 2718; + this.identifierSeq(); + this.state = 2719; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11538,27 +11648,27 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2720; + this.state = 2721; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); - this.state = 2725; + this.state = 2726; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2721; - this.match(SparkSqlParser.COMMA); this.state = 2722; + this.match(SparkSqlParser.COMMA); + this.state = 2723; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); } } } - this.state = 2727; + this.state = 2728; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); } } } @@ -11583,27 +11693,27 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2728; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 2729; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2730; this.orderedIdentifier(); - this.state = 2734; + this.state = 2735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2730; - this.match(SparkSqlParser.COMMA); this.state = 2731; + this.match(SparkSqlParser.COMMA); + this.state = 2732; this.orderedIdentifier(); } } - this.state = 2736; + this.state = 2737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2737; + this.state = 2738; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11628,14 +11738,14 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2739; + this.state = 2740; localContext._ident = this.errorCapturingIdentifier(); - this.state = 2741; + this.state = 2742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21 || _la === 86) { { - this.state = 2740; + this.state = 2741; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -11671,27 +11781,27 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2743; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 2744; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2745; this.identifierComment(); - this.state = 2749; + this.state = 2750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2745; - this.match(SparkSqlParser.COMMA); this.state = 2746; + this.match(SparkSqlParser.COMMA); + this.state = 2747; this.identifierComment(); } } - this.state = 2751; + this.state = 2752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2752; + this.state = 2753; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11716,14 +11826,14 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2754; - this.identifier(); - this.state = 2756; + this.state = 2755; + this.columnNameCreate(); + this.state = 2757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 2755; + this.state = 2756; this.commentSpec(); } } @@ -11748,95 +11858,115 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new RelationPrimaryContext(this.context, this.state); this.enterRule(localContext, 222, SparkSqlParser.RULE_relationPrimary); try { - this.state = 2785; + this.state = 2790; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2758; - this.identifierReference(); - this.state = 2760; + this.state = 2762; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { this.state = 2759; - this.temporalClause(); + this.tableName(); } break; - } - this.state = 2763; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { - case 1: + case 2: { - this.state = 2762; - this.sample(); + this.state = 2760; + this.viewName(); + } + break; + case 3: + { + this.state = 2761; + this.identifierReference(); } break; } this.state = 2765; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + case 1: + { + this.state = 2764; + this.temporalClause(); + } + break; + } + this.state = 2768; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + case 1: + { + this.state = 2767; + this.sample(); + } + break; + } + this.state = 2770; this.tableAlias(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2767; + this.state = 2772; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2768; + this.state = 2773; this.query(); - this.state = 2769; + this.state = 2774; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2771; + this.state = 2776; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { case 1: { - this.state = 2770; + this.state = 2775; this.sample(); } break; } - this.state = 2773; + this.state = 2778; this.tableAlias(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2775; + this.state = 2780; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2776; + this.state = 2781; this.relation(); - this.state = 2777; + this.state = 2782; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2779; + this.state = 2784; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { - this.state = 2778; + this.state = 2783; this.sample(); } break; } - this.state = 2781; + this.state = 2786; this.tableAlias(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2783; + this.state = 2788; this.inlineTable(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2784; + this.state = 2789; this.functionTable(); } break; @@ -11863,29 +11993,29 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2787; + this.state = 2792; this.match(SparkSqlParser.KW_VALUES); - this.state = 2788; - this.expression(); this.state = 2793; + this.expression(); + this.state = 2798; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 356, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2789; + this.state = 2794; this.match(SparkSqlParser.COMMA); - this.state = 2790; + this.state = 2795; this.expression(); } } } - this.state = 2795; + this.state = 2800; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 356, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); } - this.state = 2796; + this.state = 2801; this.tableAlias(); } } @@ -11908,22 +12038,22 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 226, SparkSqlParser.RULE_functionTableSubqueryArgument); let _la: number; try { - this.state = 2817; + this.state = 2822; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 363, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2798; + this.state = 2803; this.match(SparkSqlParser.KW_TABLE); - this.state = 2799; + this.state = 2804; this.tableName(); - this.state = 2801; + this.state = 2806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 216 || _la === 345) { { - this.state = 2800; + this.state = 2805; this.tableArgumentPartitioning(); } } @@ -11933,20 +12063,20 @@ export class SparkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2803; - this.match(SparkSqlParser.KW_TABLE); - this.state = 2804; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2805; - this.tableName(); - this.state = 2806; - this.match(SparkSqlParser.RIGHT_PAREN); this.state = 2808; + this.match(SparkSqlParser.KW_TABLE); + this.state = 2809; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2810; + this.tableName(); + this.state = 2811; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 2813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 216 || _la === 345) { { - this.state = 2807; + this.state = 2812; this.tableArgumentPartitioning(); } } @@ -11956,20 +12086,20 @@ export class SparkSqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2810; - this.match(SparkSqlParser.KW_TABLE); - this.state = 2811; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2812; - this.query(); - this.state = 2813; - this.match(SparkSqlParser.RIGHT_PAREN); this.state = 2815; + this.match(SparkSqlParser.KW_TABLE); + this.state = 2816; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2817; + this.query(); + this.state = 2818; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 2820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 216 || _la === 345) { { - this.state = 2814; + this.state = 2819; this.tableArgumentPartitioning(); } } @@ -11999,17 +12129,17 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2838; + this.state = 2843; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_WITH: { { - this.state = 2819; + this.state = 2824; this.match(SparkSqlParser.KW_WITH); - this.state = 2820; + this.state = 2825; this.match(SparkSqlParser.KW_SINGLE); - this.state = 2821; + this.state = 2826; this.match(SparkSqlParser.KW_PARTITION); } } @@ -12018,7 +12148,7 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_PARTITION: { { - this.state = 2822; + this.state = 2827; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 216)) { this.errorHandler.recoverInline(this); @@ -12027,38 +12157,38 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2823; + this.state = 2828; this.match(SparkSqlParser.KW_BY); - this.state = 2836; + this.state = 2841; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 362, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { case 1: { { { - this.state = 2824; + this.state = 2829; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2825; + this.state = 2830; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2830; + this.state = 2835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2826; + this.state = 2831; this.match(SparkSqlParser.COMMA); - this.state = 2827; + this.state = 2832; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2832; + this.state = 2837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2833; + this.state = 2838; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -12066,7 +12196,7 @@ export class SparkSqlParser extends antlr.Parser { break; case 2: { - this.state = 2835; + this.state = 2840; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } @@ -12078,12 +12208,12 @@ export class SparkSqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 2856; + this.state = 2861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208 || _la === 277) { { - this.state = 2840; + this.state = 2845; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 277)) { this.errorHandler.recoverInline(this); @@ -12092,43 +12222,43 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2841; + this.state = 2846; this.match(SparkSqlParser.KW_BY); { - this.state = 2854; + this.state = 2859; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { case 1: { { - this.state = 2842; + this.state = 2847; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2843; - this.sortItem(); this.state = 2848; + this.sortItem(); + this.state = 2853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2844; + this.state = 2849; this.match(SparkSqlParser.COMMA); - this.state = 2845; + this.state = 2850; this.sortItem(); } } - this.state = 2850; + this.state = 2855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2851; + this.state = 2856; this.match(SparkSqlParser.RIGHT_PAREN); } } break; case 2: { - this.state = 2853; + this.state = 2858; this.sortItem(); } break; @@ -12159,11 +12289,11 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2858; + this.state = 2863; localContext._key = this.identifier(); - this.state = 2859; + this.state = 2864; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2860; + this.state = 2865; localContext._table = this.functionTableSubqueryArgument(); } } @@ -12185,23 +12315,366 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new FunctionTableReferenceArgumentContext(this.context, this.state); this.enterRule(localContext, 232, SparkSqlParser.RULE_functionTableReferenceArgument); try { - this.state = 2864; + this.state = 2869; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 367, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 2862; + this.state = 2867; this.functionTableSubqueryArgument(); } break; - case 2: + case SparkSqlParser.KW_ADD: + case SparkSqlParser.KW_AFTER: + case SparkSqlParser.KW_ALL: + case SparkSqlParser.KW_ALTER: + case SparkSqlParser.KW_ALWAYS: + case SparkSqlParser.KW_ANALYZE: + case SparkSqlParser.KW_AND: + case SparkSqlParser.KW_ANTI: + case SparkSqlParser.KW_ANY: + case SparkSqlParser.KW_ANY_VALUE: + case SparkSqlParser.KW_ARCHIVE: + case SparkSqlParser.KW_ARRAY: + case SparkSqlParser.KW_AS: + case SparkSqlParser.KW_ASC: + case SparkSqlParser.KW_AT: + case SparkSqlParser.KW_AUTHORIZATION: + case SparkSqlParser.KW_BETWEEN: + case SparkSqlParser.KW_BIGINT: + case SparkSqlParser.KW_BINARY: + case SparkSqlParser.KW_BOOLEAN: + case SparkSqlParser.KW_BOTH: + case SparkSqlParser.KW_BUCKET: + case SparkSqlParser.KW_BUCKETS: + case SparkSqlParser.KW_BY: + case SparkSqlParser.KW_BYTE: + case SparkSqlParser.KW_CACHE: + case SparkSqlParser.KW_CASCADE: + case SparkSqlParser.KW_CASE: + case SparkSqlParser.KW_CAST: + case SparkSqlParser.KW_CATALOG: + case SparkSqlParser.KW_CATALOGS: + case SparkSqlParser.KW_CHANGE: + case SparkSqlParser.KW_CHAR: + case SparkSqlParser.KW_CHARACTER: + case SparkSqlParser.KW_CHECK: + case SparkSqlParser.KW_CLEAR: + case SparkSqlParser.KW_CLUSTER: + case SparkSqlParser.KW_CLUSTERED: + case SparkSqlParser.KW_CODEGEN: + case SparkSqlParser.KW_COLLATE: + case SparkSqlParser.KW_COLLECTION: + case SparkSqlParser.KW_COLUMN: + case SparkSqlParser.KW_COLUMNS: + case SparkSqlParser.KW_COMMENT: + case SparkSqlParser.KW_COMMIT: + case SparkSqlParser.KW_COMPACT: + case SparkSqlParser.KW_COMPACTIONS: + case SparkSqlParser.KW_COMPUTE: + case SparkSqlParser.KW_CONCATENATE: + case SparkSqlParser.KW_CONSTRAINT: + case SparkSqlParser.KW_COST: + case SparkSqlParser.KW_CREATE: + case SparkSqlParser.KW_CROSS: + case SparkSqlParser.KW_CUBE: + case SparkSqlParser.KW_CURRENT: + case SparkSqlParser.KW_CURRENT_DATE: + case SparkSqlParser.KW_CURRENT_TIME: + case SparkSqlParser.KW_CURRENT_TIMESTAMP: + case SparkSqlParser.KW_CURRENT_USER: + case SparkSqlParser.KW_DAY: + case SparkSqlParser.KW_DAYS: + case SparkSqlParser.KW_DAYOFYEAR: + case SparkSqlParser.KW_DATA: + case SparkSqlParser.KW_DATE: + case SparkSqlParser.KW_DATABASE: + case SparkSqlParser.KW_DATABASES: + case SparkSqlParser.KW_DATEADD: + case SparkSqlParser.KW_DATE_ADD: + case SparkSqlParser.KW_DATEDIFF: + case SparkSqlParser.KW_DATE_DIFF: + case SparkSqlParser.KW_DBPROPERTIES: + case SparkSqlParser.KW_DEC: + case SparkSqlParser.KW_DECIMAL: + case SparkSqlParser.KW_DECLARE: + case SparkSqlParser.KW_DEFAULT: + case SparkSqlParser.KW_DEFINED: + case SparkSqlParser.KW_DELETE: + case SparkSqlParser.KW_DELIMITED: + case SparkSqlParser.KW_DESC: + case SparkSqlParser.KW_DESCRIBE: + case SparkSqlParser.KW_DFS: + case SparkSqlParser.KW_DIRECTORIES: + case SparkSqlParser.KW_DIRECTORY: + case SparkSqlParser.KW_DISABLE: + case SparkSqlParser.KW_DISTINCT: + case SparkSqlParser.KW_DISTRIBUTE: + case SparkSqlParser.KW_DIV: + case SparkSqlParser.KW_DOUBLE: + case SparkSqlParser.KW_DROP: + case SparkSqlParser.KW_ELSE: + case SparkSqlParser.KW_ENABLE: + case SparkSqlParser.KW_END: + case SparkSqlParser.KW_ESCAPE: + case SparkSqlParser.KW_ESCAPED: + case SparkSqlParser.KW_EXCEPT: + case SparkSqlParser.KW_EXCHANGE: + case SparkSqlParser.KW_EXCLUDE: + case SparkSqlParser.KW_EXISTS: + case SparkSqlParser.KW_EXPLAIN: + case SparkSqlParser.KW_EXPORT: + case SparkSqlParser.KW_EXTENDED: + case SparkSqlParser.KW_EXTERNAL: + case SparkSqlParser.KW_EXTRACT: + case SparkSqlParser.KW_FALSE: + case SparkSqlParser.KW_FETCH: + case SparkSqlParser.KW_FIELDS: + case SparkSqlParser.KW_FILTER: + case SparkSqlParser.KW_FILEFORMAT: + case SparkSqlParser.KW_FIRST: + case SparkSqlParser.KW_FLOAT: + case SparkSqlParser.KW_FOLLOWING: + case SparkSqlParser.KW_FOR: + case SparkSqlParser.KW_FOREIGN: + case SparkSqlParser.KW_FORMAT: + case SparkSqlParser.KW_FORMATTED: + case SparkSqlParser.KW_FULL: + case SparkSqlParser.KW_FUNCTION: + case SparkSqlParser.KW_FUNCTIONS: + case SparkSqlParser.KW_GENERATED: + case SparkSqlParser.KW_GLOBAL: + case SparkSqlParser.KW_GRANT: + case SparkSqlParser.KW_GROUP: + case SparkSqlParser.KW_GROUPING: + case SparkSqlParser.KW_HAVING: + case SparkSqlParser.KW_BINARY_HEX: + case SparkSqlParser.KW_HOUR: + case SparkSqlParser.KW_HOURS: + case SparkSqlParser.KW_IDENTIFIER: + case SparkSqlParser.KW_IF: + case SparkSqlParser.KW_IGNORE: + case SparkSqlParser.KW_IMPORT: + case SparkSqlParser.KW_IN: + case SparkSqlParser.KW_INCLUDE: + case SparkSqlParser.KW_INDEX: + case SparkSqlParser.KW_INDEXES: + case SparkSqlParser.KW_INNER: + case SparkSqlParser.KW_INPATH: + case SparkSqlParser.KW_INPUTFORMAT: + case SparkSqlParser.KW_INSERT: + case SparkSqlParser.KW_INTERSECT: + case SparkSqlParser.KW_INTERVAL: + case SparkSqlParser.KW_INT: + case SparkSqlParser.KW_INTEGER: + case SparkSqlParser.KW_INTO: + case SparkSqlParser.KW_IS: + case SparkSqlParser.KW_ITEMS: + case SparkSqlParser.KW_JOIN: + case SparkSqlParser.KW_KEYS: + case SparkSqlParser.KW_LAST: + case SparkSqlParser.KW_LATERAL: + case SparkSqlParser.KW_LAZY: + case SparkSqlParser.KW_LEADING: + case SparkSqlParser.KW_LEFT: + case SparkSqlParser.KW_LIKE: + case SparkSqlParser.KW_ILIKE: + case SparkSqlParser.KW_LIMIT: + case SparkSqlParser.KW_LINES: + case SparkSqlParser.KW_LIST: + case SparkSqlParser.KW_LOAD: + case SparkSqlParser.KW_LOCAL: + case SparkSqlParser.KW_LOCATION: + case SparkSqlParser.KW_LOCK: + case SparkSqlParser.KW_LOCKS: + case SparkSqlParser.KW_LOGICAL: + case SparkSqlParser.KW_LONG: + case SparkSqlParser.KW_MACRO: + case SparkSqlParser.KW_MATERIALIZED: + case SparkSqlParser.KW_MAP: + case SparkSqlParser.KW_MATCHED: + case SparkSqlParser.KW_MERGE: + case SparkSqlParser.KW_MICROSECOND: + case SparkSqlParser.KW_MICROSECONDS: + case SparkSqlParser.KW_MILLISECOND: + case SparkSqlParser.KW_MILLISECONDS: + case SparkSqlParser.KW_MINUTE: + case SparkSqlParser.KW_MINUTES: + case SparkSqlParser.KW_MONTH: + case SparkSqlParser.KW_MONTHS: + case SparkSqlParser.KW_MSCK: + case SparkSqlParser.KW_NAME: + case SparkSqlParser.KW_NAMESPACE: + case SparkSqlParser.KW_NAMESPACES: + case SparkSqlParser.KW_NANOSECOND: + case SparkSqlParser.KW_NANOSECONDS: + case SparkSqlParser.KW_NATURAL: + case SparkSqlParser.KW_NO: + case SparkSqlParser.KW_NOT: + case SparkSqlParser.KW_NULL: + case SparkSqlParser.KW_NULLS: + case SparkSqlParser.KW_NUMERIC: + case SparkSqlParser.KW_OF: + case SparkSqlParser.KW_OFFSET: + case SparkSqlParser.KW_ON: + case SparkSqlParser.KW_ONLY: + case SparkSqlParser.KW_OPTIMIZE: + case SparkSqlParser.KW_OPTION: + case SparkSqlParser.KW_OPTIONS: + case SparkSqlParser.KW_OR: + case SparkSqlParser.KW_ORDER: + case SparkSqlParser.KW_OUT: + case SparkSqlParser.KW_OUTER: + case SparkSqlParser.KW_OUTPUTFORMAT: + case SparkSqlParser.KW_OVER: + case SparkSqlParser.KW_OVERLAPS: + case SparkSqlParser.KW_OVERLAY: + case SparkSqlParser.KW_OVERWRITE: + case SparkSqlParser.KW_PARTITION: + case SparkSqlParser.KW_PARTITIONED: + case SparkSqlParser.KW_PARTITIONS: + case SparkSqlParser.KW_PERCENTILE_CONT: + case SparkSqlParser.KW_PERCENTILE_DISC: + case SparkSqlParser.KW_PERCENTLIT: + case SparkSqlParser.KW_PIVOT: + case SparkSqlParser.KW_PLACING: + case SparkSqlParser.KW_POSITION: + case SparkSqlParser.KW_PRECEDING: + case SparkSqlParser.KW_PRIMARY: + case SparkSqlParser.KW_PRINCIPALS: + case SparkSqlParser.KW_PROPERTIES: + case SparkSqlParser.KW_PURGE: + case SparkSqlParser.KW_QUARTER: + case SparkSqlParser.KW_QUERY: + case SparkSqlParser.KW_RANGE: + case SparkSqlParser.KW_REAL: + case SparkSqlParser.KW_RECORDREADER: + case SparkSqlParser.KW_RECORDWRITER: + case SparkSqlParser.KW_RECOVER: + case SparkSqlParser.KW_REDUCE: + case SparkSqlParser.KW_REFERENCES: + case SparkSqlParser.KW_REFRESH: + case SparkSqlParser.KW_RENAME: + case SparkSqlParser.KW_REPAIR: + case SparkSqlParser.KW_REPEATABLE: + case SparkSqlParser.KW_REPLACE: + case SparkSqlParser.KW_RESET: + case SparkSqlParser.KW_RESPECT: + case SparkSqlParser.KW_RESTRICT: + case SparkSqlParser.KW_REWRITE: + case SparkSqlParser.KW_REVOKE: + case SparkSqlParser.KW_RIGHT: + case SparkSqlParser.KW_RLIKE: + case SparkSqlParser.KW_REGEXP: + case SparkSqlParser.KW_ROLE: + case SparkSqlParser.KW_ROLES: + case SparkSqlParser.KW_ROLLBACK: + case SparkSqlParser.KW_ROLLUP: + case SparkSqlParser.KW_ROW: + case SparkSqlParser.KW_ROWS: + case SparkSqlParser.KW_SECOND: + case SparkSqlParser.KW_SECONDS: + case SparkSqlParser.KW_SCHEMA: + case SparkSqlParser.KW_SCHEMAS: + case SparkSqlParser.KW_SEMI: + case SparkSqlParser.KW_SEPARATED: + case SparkSqlParser.KW_SERDE: + case SparkSqlParser.KW_SERDEPROPERTIES: + case SparkSqlParser.KW_SESSION_USER: + case SparkSqlParser.KW_SET: + case SparkSqlParser.KW_MINUS: + case SparkSqlParser.KW_SETS: + case SparkSqlParser.KW_SHORT: + case SparkSqlParser.KW_SHOW: + case SparkSqlParser.KW_SINGLE: + case SparkSqlParser.KW_SKEWED: + case SparkSqlParser.KW_SMALLINT: + case SparkSqlParser.KW_SOME: + case SparkSqlParser.KW_SORT: + case SparkSqlParser.KW_SORTED: + case SparkSqlParser.KW_SOURCE: + case SparkSqlParser.KW_START: + case SparkSqlParser.KW_STATISTICS: + case SparkSqlParser.KW_STORED: + case SparkSqlParser.KW_STRATIFY: + case SparkSqlParser.KW_STRING: + case SparkSqlParser.KW_STRUCT: + case SparkSqlParser.KW_SUBSTR: + case SparkSqlParser.KW_SUBSTRING: + case SparkSqlParser.KW_SYNC: + case SparkSqlParser.KW_SYSTEM: + case SparkSqlParser.KW_SYSTEM_TIME: + case SparkSqlParser.KW_SYSTEM_VERSION: + case SparkSqlParser.KW_TABLES: + case SparkSqlParser.KW_TABLESAMPLE: + case SparkSqlParser.KW_TARGET: + case SparkSqlParser.KW_TBLPROPERTIES: + case SparkSqlParser.KW_TEMPORARY: + case SparkSqlParser.KW_TERMINATED: + case SparkSqlParser.KW_THEN: + case SparkSqlParser.KW_TIME: + case SparkSqlParser.KW_TIMEDIFF: + case SparkSqlParser.KW_TIMESTAMP: + case SparkSqlParser.KW_TIMESTAMP_LTZ: + case SparkSqlParser.KW_TIMESTAMP_NTZ: + case SparkSqlParser.KW_TIMESTAMPADD: + case SparkSqlParser.KW_TIMESTAMPDIFF: + case SparkSqlParser.KW_TINYINT: + case SparkSqlParser.KW_TO: + case SparkSqlParser.KW_TOUCH: + case SparkSqlParser.KW_TRAILING: + case SparkSqlParser.KW_TRANSACTION: + case SparkSqlParser.KW_TRANSACTIONS: + case SparkSqlParser.KW_TRANSFORM: + case SparkSqlParser.KW_TRIM: + case SparkSqlParser.KW_TRUE: + case SparkSqlParser.KW_TRUNCATE: + case SparkSqlParser.KW_TRY_CAST: + case SparkSqlParser.KW_TYPE: + case SparkSqlParser.KW_UNARCHIVE: + case SparkSqlParser.KW_UNBOUNDED: + case SparkSqlParser.KW_UNCACHE: + case SparkSqlParser.KW_UNION: + case SparkSqlParser.KW_UNIQUE: + case SparkSqlParser.KW_UNKNOWN: + case SparkSqlParser.KW_UNLOCK: + case SparkSqlParser.KW_UNPIVOT: + case SparkSqlParser.KW_UNSET: + case SparkSqlParser.KW_UPDATE: + case SparkSqlParser.KW_USE: + case SparkSqlParser.KW_USER: + case SparkSqlParser.KW_USING: + case SparkSqlParser.KW_VALUES: + case SparkSqlParser.KW_VARCHAR: + case SparkSqlParser.KW_VAR: + case SparkSqlParser.KW_VARIABLE: + case SparkSqlParser.KW_VERSION: + case SparkSqlParser.KW_VIEW: + case SparkSqlParser.KW_VIEWS: + case SparkSqlParser.KW_VOID: + case SparkSqlParser.KW_WEEK: + case SparkSqlParser.KW_WEEKS: + case SparkSqlParser.KW_WHEN: + case SparkSqlParser.KW_WHERE: + case SparkSqlParser.KW_WINDOW: + case SparkSqlParser.KW_WITH: + case SparkSqlParser.KW_WITHIN: + case SparkSqlParser.KW_YEAR: + case SparkSqlParser.KW_YEARS: + case SparkSqlParser.KW_ZONE: + case SparkSqlParser.KW_ZORDER: + case SparkSqlParser.DOUBLEQUOTED_STRING: + case SparkSqlParser.IDENTIFIER: + case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2863; + this.state = 2868; this.functionTableNamedArgumentExpression(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -12222,20 +12695,20 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new FunctionTableArgumentContext(this.context, this.state); this.enterRule(localContext, 234, SparkSqlParser.RULE_functionTableArgument); try { - this.state = 2868; + this.state = 2873; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2866; + this.state = 2871; this.functionTableReferenceArgument(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2867; + this.state = 2872; this.functionArgument(); } break; @@ -12262,39 +12735,39 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2870; + this.state = 2875; this.functionName(); - this.state = 2871; + this.state = 2876; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2880; + this.state = 2885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { - this.state = 2872; - this.functionTableArgument(); this.state = 2877; + this.functionTableArgument(); + this.state = 2882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2873; + this.state = 2878; this.match(SparkSqlParser.COMMA); - this.state = 2874; + this.state = 2879; this.functionTableArgument(); } } - this.state = 2879; + this.state = 2884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2882; + this.state = 2887; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2883; + this.state = 2888; this.tableAlias(); } } @@ -12318,29 +12791,29 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2892; + this.state = 2897; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: { - this.state = 2886; + this.state = 2891; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: { - this.state = 2885; + this.state = 2890; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2888; + this.state = 2893; this.strictIdentifier(); - this.state = 2890; + this.state = 2895; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: { - this.state = 2889; + this.state = 2894; this.identifierList(); } break; @@ -12368,30 +12841,30 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new RowFormatContext(this.context, this.state); this.enterRule(localContext, 240, SparkSqlParser.RULE_rowFormat); try { - this.state = 2943; + this.state = 2948; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2894; + this.state = 2899; this.match(SparkSqlParser.KW_ROW); - this.state = 2895; + this.state = 2900; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2896; - this.match(SparkSqlParser.KW_SERDE); - this.state = 2897; - localContext._name = this.stringLit(); this.state = 2901; + this.match(SparkSqlParser.KW_SERDE); + this.state = 2902; + localContext._name = this.stringLit(); + this.state = 2906; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: { - this.state = 2898; + this.state = 2903; this.match(SparkSqlParser.KW_WITH); - this.state = 2899; + this.state = 2904; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 2900; + this.state = 2905; localContext._props = this.propertyList(); } break; @@ -12401,35 +12874,35 @@ export class SparkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2903; + this.state = 2908; this.match(SparkSqlParser.KW_ROW); - this.state = 2904; + this.state = 2909; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2905; + this.state = 2910; this.match(SparkSqlParser.KW_DELIMITED); - this.state = 2915; + this.state = 2920; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 2906; + this.state = 2911; this.match(SparkSqlParser.KW_FIELDS); - this.state = 2907; + this.state = 2912; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2908; - this.match(SparkSqlParser.KW_BY); - this.state = 2909; - localContext._fieldsTerminatedBy = this.stringLit(); this.state = 2913; + this.match(SparkSqlParser.KW_BY); + this.state = 2914; + localContext._fieldsTerminatedBy = this.stringLit(); + this.state = 2918; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2910; + this.state = 2915; this.match(SparkSqlParser.KW_ESCAPED); - this.state = 2911; + this.state = 2916; this.match(SparkSqlParser.KW_BY); - this.state = 2912; + this.state = 2917; localContext._escapedBy = this.stringLit(); } break; @@ -12437,70 +12910,70 @@ export class SparkSqlParser extends antlr.Parser { } break; } - this.state = 2922; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { - case 1: - { - this.state = 2917; - this.match(SparkSqlParser.KW_COLLECTION); - this.state = 2918; - this.match(SparkSqlParser.KW_ITEMS); - this.state = 2919; - this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2920; - this.match(SparkSqlParser.KW_BY); - this.state = 2921; - localContext._collectionItemsTerminatedBy = this.stringLit(); - } - break; - } - this.state = 2929; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { - case 1: - { - this.state = 2924; - this.match(SparkSqlParser.KW_MAP); - this.state = 2925; - this.match(SparkSqlParser.KW_KEYS); - this.state = 2926; - this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2927; - this.match(SparkSqlParser.KW_BY); - this.state = 2928; - localContext._keysTerminatedBy = this.stringLit(); - } - break; - } - this.state = 2935; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { - case 1: - { - this.state = 2931; - this.match(SparkSqlParser.KW_LINES); - this.state = 2932; - this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2933; - this.match(SparkSqlParser.KW_BY); - this.state = 2934; - localContext._linesSeparatedBy = this.stringLit(); - } - break; - } - this.state = 2941; + this.state = 2927; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { + this.state = 2922; + this.match(SparkSqlParser.KW_COLLECTION); + this.state = 2923; + this.match(SparkSqlParser.KW_ITEMS); + this.state = 2924; + this.match(SparkSqlParser.KW_TERMINATED); + this.state = 2925; + this.match(SparkSqlParser.KW_BY); + this.state = 2926; + localContext._collectionItemsTerminatedBy = this.stringLit(); + } + break; + } + this.state = 2934; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + case 1: + { + this.state = 2929; + this.match(SparkSqlParser.KW_MAP); + this.state = 2930; + this.match(SparkSqlParser.KW_KEYS); + this.state = 2931; + this.match(SparkSqlParser.KW_TERMINATED); + this.state = 2932; + this.match(SparkSqlParser.KW_BY); + this.state = 2933; + localContext._keysTerminatedBy = this.stringLit(); + } + break; + } + this.state = 2940; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + case 1: + { + this.state = 2936; + this.match(SparkSqlParser.KW_LINES); this.state = 2937; - this.match(SparkSqlParser.KW_NULL); + this.match(SparkSqlParser.KW_TERMINATED); this.state = 2938; - this.match(SparkSqlParser.KW_DEFINED); + this.match(SparkSqlParser.KW_BY); this.state = 2939; + localContext._linesSeparatedBy = this.stringLit(); + } + break; + } + this.state = 2946; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + case 1: + { + this.state = 2942; + this.match(SparkSqlParser.KW_NULL); + this.state = 2943; + this.match(SparkSqlParser.KW_DEFINED); + this.state = 2944; this.match(SparkSqlParser.KW_AS); - this.state = 2940; + this.state = 2945; localContext._nullDefinedAs = this.stringLit(); } break; @@ -12530,21 +13003,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2945; - this.multipartIdentifier(); this.state = 2950; + this.multipartIdentifier(); + this.state = 2955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2946; + this.state = 2951; this.match(SparkSqlParser.COMMA); - this.state = 2947; + this.state = 2952; this.multipartIdentifier(); } } - this.state = 2952; + this.state = 2957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12571,27 +13044,27 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2953; + this.state = 2958; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); - this.state = 2958; + this.state = 2963; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 383, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2954; + this.state = 2959; this.match(SparkSqlParser.DOT); - this.state = 2955; + this.state = 2960; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); } } } - this.state = 2960; + this.state = 2965; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 383, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); } } } @@ -12616,21 +13089,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2961; - this.multipartIdentifierProperty(); this.state = 2966; + this.multipartIdentifierProperty(); + this.state = 2971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2962; + this.state = 2967; this.match(SparkSqlParser.COMMA); - this.state = 2963; + this.state = 2968; this.multipartIdentifierProperty(); } } - this.state = 2968; + this.state = 2973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12657,16 +13130,16 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2969; + this.state = 2974; this.multipartIdentifier(); - this.state = 2972; + this.state = 2977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 2970; + this.state = 2975; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 2971; + this.state = 2976; localContext._options = this.propertyList(); } } @@ -12693,19 +13166,19 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2977; + this.state = 2982; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 2974; + this.state = 2979; localContext._db = this.errorCapturingIdentifier(); - this.state = 2975; + this.state = 2980; this.match(SparkSqlParser.DOT); } break; } - this.state = 2979; + this.state = 2984; localContext._table = this.errorCapturingIdentifier(); } } @@ -12729,19 +13202,19 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2984; + this.state = 2989; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 2981; + this.state = 2986; localContext._db = this.errorCapturingIdentifier(); - this.state = 2982; + this.state = 2987; this.match(SparkSqlParser.DOT); } break; } - this.state = 2986; + this.state = 2991; localContext._view = this.errorCapturingIdentifier(); } } @@ -12765,38 +13238,38 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2990; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { - case 1: - { - this.state = 2988; - this.columnName(); - } - break; - case 2: - { - this.state = 2989; - this.expression(); - } - break; - } - this.state = 2999; + this.state = 2995; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: { this.state = 2993; + this.columnName(); + } + break; + case 2: + { + this.state = 2994; + this.expression(); + } + break; + } + this.state = 3004; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { + case 1: + { + this.state = 2998; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 2992; + this.state = 2997; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2997; + this.state = 3002; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -12914,7 +13387,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_FOREIGN: case SparkSqlParser.KW_FORMAT: case SparkSqlParser.KW_FORMATTED: - case SparkSqlParser.KW_FROM: case SparkSqlParser.KW_FULL: case SparkSqlParser.KW_FUNCTION: case SparkSqlParser.KW_FUNCTIONS: @@ -13081,7 +13553,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_SYSTEM: case SparkSqlParser.KW_SYSTEM_TIME: case SparkSqlParser.KW_SYSTEM_VERSION: - case SparkSqlParser.KW_TABLE: case SparkSqlParser.KW_TABLES: case SparkSqlParser.KW_TABLESAMPLE: case SparkSqlParser.KW_TARGET: @@ -13144,13 +13615,13 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2995; + this.state = 3000; localContext._name = this.errorCapturingIdentifier(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2996; + this.state = 3001; this.identifierList(); } break; @@ -13183,25 +13654,25 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3001; - this.namedExpression(); this.state = 3006; + this.namedExpression(); + this.state = 3011; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 392, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3002; + this.state = 3007; this.match(SparkSqlParser.COMMA); - this.state = 3003; + this.state = 3008; this.namedExpression(); } } } - this.state = 3008; + this.state = 3013; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 392, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); } } } @@ -13226,29 +13697,29 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3009; + this.state = 3014; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3010; + this.state = 3015; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); - this.state = 3015; + this.state = 3020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3011; + this.state = 3016; this.match(SparkSqlParser.COMMA); - this.state = 3012; + this.state = 3017; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); } } - this.state = 3017; + this.state = 3022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3018; + this.state = 3023; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -13270,20 +13741,20 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new PartitionFieldContext(this.context, this.state); this.enterRule(localContext, 260, SparkSqlParser.RULE_partitionField); try { - this.state = 3022; + this.state = 3027; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3020; + this.state = 3025; this.transform(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3021; + this.state = 3026; this.colType(); } break; @@ -13308,42 +13779,42 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 262, SparkSqlParser.RULE_transform); let _la: number; try { - this.state = 3037; + this.state = 3042; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3024; + this.state = 3029; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3025; + this.state = 3030; localContext._transformName = this.identifier(); - this.state = 3026; + this.state = 3031; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3027; - this.transformArgument(); this.state = 3032; + this.transformArgument(); + this.state = 3037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3028; + this.state = 3033; this.match(SparkSqlParser.COMMA); - this.state = 3029; + this.state = 3034; this.transformArgument(); } } - this.state = 3034; + this.state = 3039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3035; + this.state = 3040; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -13367,20 +13838,20 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new TransformArgumentContext(this.context, this.state); this.enterRule(localContext, 264, SparkSqlParser.RULE_transformArgument); try { - this.state = 3041; + this.state = 3046; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3039; + this.state = 3044; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3040; + this.state = 3045; this.constant(); } break; @@ -13406,7 +13877,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3043; + this.state = 3048; this.booleanExpression(0); } } @@ -13430,11 +13901,11 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3045; + this.state = 3050; localContext._key = this.identifier(); - this.state = 3046; + this.state = 3051; this.match(SparkSqlParser.FAT_ARROW); - this.state = 3047; + this.state = 3052; localContext._value = this.expression(); } } @@ -13456,20 +13927,20 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new FunctionArgumentContext(this.context, this.state); this.enterRule(localContext, 270, SparkSqlParser.RULE_functionArgument); try { - this.state = 3051; + this.state = 3056; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3049; + this.state = 3054; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3050; + this.state = 3055; this.namedArgumentExpression(); } break; @@ -13496,21 +13967,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3053; - this.expression(); this.state = 3058; + this.expression(); + this.state = 3063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3054; + this.state = 3059; this.match(SparkSqlParser.COMMA); - this.state = 3055; + this.state = 3060; this.expression(); } } - this.state = 3060; + this.state = 3065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13549,12 +14020,12 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3073; + this.state = 3078; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { case 1: { - this.state = 3062; + this.state = 3067; _la = this.tokenStream.LA(1); if(!(_la === 196 || _la === 359)) { this.errorHandler.recoverInline(this); @@ -13563,32 +14034,32 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3063; + this.state = 3068; this.booleanExpression(5); } break; case 2: { - this.state = 3064; + this.state = 3069; this.match(SparkSqlParser.KW_EXISTS); - this.state = 3065; + this.state = 3070; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3066; + this.state = 3071; this.query(); - this.state = 3067; + this.state = 3072; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3069; + this.state = 3074; this.valueExpression(0); - this.state = 3071; + this.state = 3076; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: { - this.state = 3070; + this.state = 3075; this.predicate(); } break; @@ -13597,9 +14068,9 @@ export class SparkSqlParser extends antlr.Parser { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3083; + this.state = 3088; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 403, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -13607,21 +14078,21 @@ export class SparkSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 3081; + this.state = 3086; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3075; + this.state = 3080; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3076; + this.state = 3081; localContext._operator = this.match(SparkSqlParser.KW_AND); - this.state = 3077; + this.state = 3082; localContext._right = this.booleanExpression(3); } break; @@ -13630,22 +14101,22 @@ export class SparkSqlParser extends antlr.Parser { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3078; + this.state = 3083; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3079; + this.state = 3084; localContext._operator = this.match(SparkSqlParser.KW_OR); - this.state = 3080; + this.state = 3085; localContext._right = this.booleanExpression(2); } break; } } } - this.state = 3085; + this.state = 3090; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 403, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); } } } @@ -13668,124 +14139,97 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 276, SparkSqlParser.RULE_predicate); let _la: number; try { - this.state = 3168; + this.state = 3173; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3087; + this.state = 3092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 3086; + this.state = 3091; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3089; + this.state = 3094; localContext._kind = this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3090; + this.state = 3095; localContext._lower = this.valueExpression(0); - this.state = 3091; + this.state = 3096; this.match(SparkSqlParser.KW_AND); - this.state = 3092; + this.state = 3097; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3095; + this.state = 3100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 3094; + this.state = 3099; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3097; + this.state = 3102; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3098; + this.state = 3103; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3099; - this.expression(); this.state = 3104; + this.expression(); + this.state = 3109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3100; + this.state = 3105; this.match(SparkSqlParser.COMMA); - this.state = 3101; + this.state = 3106; this.expression(); } } - this.state = 3106; + this.state = 3111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3107; + this.state = 3112; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3110; + this.state = 3115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 3109; + this.state = 3114; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3112; + this.state = 3117; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3113; + this.state = 3118; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3114; + this.state = 3119; this.query(); - this.state = 3115; + this.state = 3120; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3118; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 196) { - { - this.state = 3117; - this.match(SparkSqlParser.KW_NOT); - } - } - - this.state = 3120; - localContext._kind = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 250 || _la === 251)) { - localContext._kind = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 3121; - localContext._pattern = this.valueExpression(0); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { this.state = 3123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -13799,7 +14243,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 3125; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 162 || _la === 163)) { + if(!(_la === 250 || _la === 251)) { localContext._kind = this.errorHandler.recoverInline(this); } else { @@ -13807,69 +14251,23 @@ export class SparkSqlParser extends antlr.Parser { this.consume(); } this.state = 3126; - localContext._quantifier = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 10 || _la === 16 || _la === 276)) { - localContext._quantifier = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 3140; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { - case 1: - { - this.state = 3127; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3128; - this.match(SparkSqlParser.RIGHT_PAREN); - } - break; - case 2: - { - this.state = 3129; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3130; - this.expression(); - this.state = 3135; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 4) { - { - { - this.state = 3131; - this.match(SparkSqlParser.COMMA); - this.state = 3132; - this.expression(); - } - } - this.state = 3137; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 3138; - this.match(SparkSqlParser.RIGHT_PAREN); - } - break; - } + localContext._pattern = this.valueExpression(0); } break; - case 6: - this.enterOuterAlt(localContext, 6); + case 5: + this.enterOuterAlt(localContext, 5); { - this.state = 3143; + this.state = 3128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 3142; + this.state = 3127; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3145; + this.state = 3130; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 162 || _la === 163)) { @@ -13879,16 +14277,89 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3146; - localContext._pattern = this.valueExpression(0); - this.state = 3149; + this.state = 3131; + localContext._quantifier = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 10 || _la === 16 || _la === 276)) { + localContext._quantifier = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 3145; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { case 1: + { + this.state = 3132; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3133; + this.match(SparkSqlParser.RIGHT_PAREN); + } + break; + case 2: + { + this.state = 3134; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3135; + this.expression(); + this.state = 3140; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 4) { + { + { + this.state = 3136; + this.match(SparkSqlParser.COMMA); + this.state = 3137; + this.expression(); + } + } + this.state = 3142; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 3143; + this.match(SparkSqlParser.RIGHT_PAREN); + } + break; + } + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 3148; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 196) { { this.state = 3147; + this.match(SparkSqlParser.KW_NOT); + } + } + + this.state = 3150; + localContext._kind = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 162 || _la === 163)) { + localContext._kind = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 3151; + localContext._pattern = this.valueExpression(0); + this.state = 3154; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { + case 1: + { + this.state = 3152; this.match(SparkSqlParser.KW_ESCAPE); - this.state = 3148; + this.state = 3153; localContext._escapeChar = this.stringLit(); } break; @@ -13898,25 +14369,6 @@ export class SparkSqlParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3151; - this.match(SparkSqlParser.KW_IS); - this.state = 3153; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 196) { - { - this.state = 3152; - this.match(SparkSqlParser.KW_NOT); - } - } - - this.state = 3155; - localContext._kind = this.match(SparkSqlParser.KW_NULL); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { this.state = 3156; this.match(SparkSqlParser.KW_IS); this.state = 3158; @@ -13930,19 +14382,11 @@ export class SparkSqlParser extends antlr.Parser { } this.state = 3160; - localContext._kind = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 111 || _la === 315 || _la === 324)) { - localContext._kind = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + localContext._kind = this.match(SparkSqlParser.KW_NULL); } break; - case 9: - this.enterOuterAlt(localContext, 9); + case 8: + this.enterOuterAlt(localContext, 8); { this.state = 3161; this.match(SparkSqlParser.KW_IS); @@ -13957,10 +14401,37 @@ export class SparkSqlParser extends antlr.Parser { } this.state = 3165; - localContext._kind = this.match(SparkSqlParser.KW_DISTINCT); + localContext._kind = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 111 || _la === 315 || _la === 324)) { + localContext._kind = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + case 9: + this.enterOuterAlt(localContext, 9); + { this.state = 3166; + this.match(SparkSqlParser.KW_IS); + this.state = 3168; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 196) { + { + this.state = 3167; + this.match(SparkSqlParser.KW_NOT); + } + } + + this.state = 3170; + localContext._kind = this.match(SparkSqlParser.KW_DISTINCT); + this.state = 3171; this.match(SparkSqlParser.KW_FROM); - this.state = 3167; + this.state = 3172; localContext._right = this.valueExpression(0); } break; @@ -13999,18 +14470,18 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3174; + this.state = 3179; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3171; + this.state = 3176; this.primaryExpression(0); } break; case 2: { - this.state = 3172; + this.state = 3177; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 35) !== 0))) { @@ -14020,15 +14491,15 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3173; + this.state = 3178; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3197; + this.state = 3202; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 420, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14036,19 +14507,19 @@ export class SparkSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 3195; + this.state = 3200; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3176; + this.state = 3181; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 3177; + this.state = 3182; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 7) !== 0))) { @@ -14058,7 +14529,7 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3178; + this.state = 3183; localContext._right = this.valueExpression(7); } break; @@ -14067,11 +14538,11 @@ export class SparkSqlParser extends antlr.Parser { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3179; + this.state = 3184; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 3180; + this.state = 3185; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 259) !== 0))) { @@ -14081,7 +14552,7 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3181; + this.state = 3186; localContext._right = this.valueExpression(6); } break; @@ -14090,13 +14561,13 @@ export class SparkSqlParser extends antlr.Parser { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3182; + this.state = 3187; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 3183; + this.state = 3188; localContext._operator = this.match(SparkSqlParser.AMPERSAND); - this.state = 3184; + this.state = 3189; localContext._right = this.valueExpression(5); } break; @@ -14105,13 +14576,13 @@ export class SparkSqlParser extends antlr.Parser { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3185; + this.state = 3190; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 3186; + this.state = 3191; localContext._operator = this.match(SparkSqlParser.HAT); - this.state = 3187; + this.state = 3192; localContext._right = this.valueExpression(4); } break; @@ -14120,13 +14591,13 @@ export class SparkSqlParser extends antlr.Parser { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3188; + this.state = 3193; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3189; + this.state = 3194; localContext._operator = this.match(SparkSqlParser.PIPE); - this.state = 3190; + this.state = 3195; localContext._right = this.valueExpression(3); } break; @@ -14135,22 +14606,22 @@ export class SparkSqlParser extends antlr.Parser { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3191; + this.state = 3196; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3192; + this.state = 3197; this.comparisonOperator(); - this.state = 3193; + this.state = 3198; localContext._right = this.valueExpression(2); } break; } } } - this.state = 3199; + this.state = 3204; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 420, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); } } } @@ -14175,7 +14646,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3200; + this.state = 3205; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 69 || _la === 134 || ((((_la - 179)) & ~0x1F) === 0 && ((1 << (_la - 179)) & 85) !== 0) || _la === 230 || _la === 258 || _la === 340 || _la === 347)) { this.errorHandler.recoverInline(this); @@ -14219,12 +14690,12 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3451; + this.state = 3456; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3203; + this.state = 3208; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 13) !== 0) || _la === 267 || _la === 330)) { @@ -14238,7 +14709,7 @@ export class SparkSqlParser extends antlr.Parser { break; case 2: { - this.state = 3204; + this.state = 3209; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 75 || _la === 305)) { @@ -14248,9 +14719,9 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3205; + this.state = 3210; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3208; + this.state = 3213; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14265,35 +14736,35 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3206; + this.state = 3211; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3207; + this.state = 3212; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3210; + this.state = 3215; this.match(SparkSqlParser.COMMA); - this.state = 3211; + this.state = 3216; localContext._unitsAmount = this.valueExpression(0); - this.state = 3212; + this.state = 3217; this.match(SparkSqlParser.COMMA); - this.state = 3213; + this.state = 3218; localContext._timestamp = this.valueExpression(0); - this.state = 3214; + this.state = 3219; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3216; + this.state = 3221; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 76 || _la === 77 || _la === 301 || _la === 306)) { @@ -14303,9 +14774,9 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3217; + this.state = 3222; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3220; + this.state = 3225; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14320,105 +14791,105 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3218; + this.state = 3223; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3219; + this.state = 3224; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3222; + this.state = 3227; this.match(SparkSqlParser.COMMA); - this.state = 3223; + this.state = 3228; localContext._startTimestamp = this.valueExpression(0); - this.state = 3224; + this.state = 3229; this.match(SparkSqlParser.COMMA); - this.state = 3225; + this.state = 3230; localContext._endTimestamp = this.valueExpression(0); - this.state = 3226; + this.state = 3231; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: { - this.state = 3228; + this.state = 3233; this.match(SparkSqlParser.KW_CASE); - this.state = 3230; + this.state = 3235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3229; + this.state = 3234; this.whenClause(); } } - this.state = 3232; + this.state = 3237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 342); - this.state = 3236; + this.state = 3241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3234; + this.state = 3239; this.match(SparkSqlParser.KW_ELSE); - this.state = 3235; + this.state = 3240; localContext._elseExpression = this.expression(); } } - this.state = 3238; + this.state = 3243; this.match(SparkSqlParser.KW_END); } break; case 5: { - this.state = 3240; + this.state = 3245; this.match(SparkSqlParser.KW_CASE); - this.state = 3241; + this.state = 3246; this.expression(); - this.state = 3243; + this.state = 3248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3242; + this.state = 3247; this.whenClause(); } } - this.state = 3245; + this.state = 3250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 342); - this.state = 3249; + this.state = 3254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3247; + this.state = 3252; this.match(SparkSqlParser.KW_ELSE); - this.state = 3248; + this.state = 3253; localContext._elseExpression = this.expression(); } } - this.state = 3251; + this.state = 3256; this.match(SparkSqlParser.KW_END); } break; case 6: { - this.state = 3253; + this.state = 3258; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 317)) { @@ -14428,280 +14899,280 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3254; + this.state = 3259; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3255; + this.state = 3260; this.expression(); - this.state = 3256; + this.state = 3261; this.match(SparkSqlParser.KW_AS); - this.state = 3257; + this.state = 3262; this.dataType(); - this.state = 3258; + this.state = 3263; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 7: { - this.state = 3260; + this.state = 3265; this.match(SparkSqlParser.KW_STRUCT); - this.state = 3261; + this.state = 3266; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3270; + this.state = 3275; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + case 1: { - this.state = 3262; - this.namedExpression(); this.state = 3267; + this.namedExpression(); + this.state = 3272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3263; + this.state = 3268; this.match(SparkSqlParser.COMMA); - this.state = 3264; + this.state = 3269; this.namedExpression(); } } - this.state = 3269; + this.state = 3274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } + break; } - - this.state = 3272; + this.state = 3277; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 8: { - this.state = 3273; - this.match(SparkSqlParser.KW_FIRST); - this.state = 3274; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3275; - this.expression(); this.state = 3278; + this.match(SparkSqlParser.KW_FIRST); + this.state = 3279; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3280; + this.expression(); + this.state = 3283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3276; + this.state = 3281; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3277; + this.state = 3282; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3280; + this.state = 3285; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 9: { - this.state = 3282; - this.match(SparkSqlParser.KW_ANY_VALUE); - this.state = 3283; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3284; - this.expression(); this.state = 3287; + this.match(SparkSqlParser.KW_ANY_VALUE); + this.state = 3288; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3289; + this.expression(); + this.state = 3292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3285; + this.state = 3290; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3286; + this.state = 3291; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3289; + this.state = 3294; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 10: { - this.state = 3291; - this.match(SparkSqlParser.KW_LAST); - this.state = 3292; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3293; - this.expression(); this.state = 3296; + this.match(SparkSqlParser.KW_LAST); + this.state = 3297; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3298; + this.expression(); + this.state = 3301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3294; + this.state = 3299; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3295; + this.state = 3300; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3298; + this.state = 3303; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 11: { - this.state = 3300; - this.match(SparkSqlParser.KW_POSITION); - this.state = 3301; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3302; - localContext._substr = this.valueExpression(0); - this.state = 3303; - this.match(SparkSqlParser.KW_IN); - this.state = 3304; - localContext._str = this.valueExpression(0); this.state = 3305; + this.match(SparkSqlParser.KW_POSITION); + this.state = 3306; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3307; + localContext._substr = this.valueExpression(0); + this.state = 3308; + this.match(SparkSqlParser.KW_IN); + this.state = 3309; + localContext._str = this.valueExpression(0); + this.state = 3310; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 12: { - this.state = 3307; + this.state = 3312; this.constant(); } break; case 13: { - this.state = 3308; + this.state = 3313; this.match(SparkSqlParser.ASTERISK); } break; case 14: { - this.state = 3309; + this.state = 3314; this.qualifiedName(); - this.state = 3310; + this.state = 3315; this.match(SparkSqlParser.DOT); - this.state = 3311; + this.state = 3316; this.match(SparkSqlParser.ASTERISK); } break; case 15: { - this.state = 3313; + this.state = 3318; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3314; + this.state = 3319; this.namedExpression(); - this.state = 3317; + this.state = 3322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3315; + this.state = 3320; this.match(SparkSqlParser.COMMA); - this.state = 3316; + this.state = 3321; this.namedExpression(); } } - this.state = 3319; + this.state = 3324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3321; + this.state = 3326; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 16: { - this.state = 3323; + this.state = 3328; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3324; + this.state = 3329; this.query(); - this.state = 3325; + this.state = 3330; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 17: { - this.state = 3327; + this.state = 3332; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3328; + this.state = 3333; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3329; + this.state = 3334; this.expression(); - this.state = 3330; + this.state = 3335; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 18: { - this.state = 3332; + this.state = 3337; this.functionName(); - this.state = 3333; + this.state = 3338; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3345; + this.state = 3350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { - this.state = 3335; + this.state = 3340; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { case 1: { - this.state = 3334; + this.state = 3339; this.setQuantifier(); } break; } - this.state = 3337; - this.functionArgument(); this.state = 3342; + this.functionArgument(); + this.state = 3347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3338; + this.state = 3343; this.match(SparkSqlParser.COMMA); - this.state = 3339; + this.state = 3344; this.functionArgument(); } } - this.state = 3344; + this.state = 3349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3347; + this.state = 3352; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3354; + this.state = 3359; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 3348; + this.state = 3353; this.match(SparkSqlParser.KW_FILTER); - this.state = 3349; + this.state = 3354; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3350; + this.state = 3355; this.match(SparkSqlParser.KW_WHERE); - this.state = 3351; + this.state = 3356; localContext._where = this.booleanExpression(0); - this.state = 3352; + this.state = 3357; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3358; + this.state = 3363; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3356; + this.state = 3361; localContext._nullsOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 138 || _la === 245)) { @@ -14711,19 +15182,19 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3357; + this.state = 3362; this.match(SparkSqlParser.KW_NULLS); } break; } - this.state = 3362; + this.state = 3367; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3360; + this.state = 3365; this.match(SparkSqlParser.KW_OVER); - this.state = 3361; + this.state = 3366; this.windowSpec(); } break; @@ -14732,79 +15203,79 @@ export class SparkSqlParser extends antlr.Parser { break; case 19: { - this.state = 3364; + this.state = 3369; this.identifier(); - this.state = 3365; + this.state = 3370; this.match(SparkSqlParser.ARROW); - this.state = 3366; + this.state = 3371; this.expression(); } break; case 20: { - this.state = 3368; + this.state = 3373; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3369; + this.state = 3374; this.identifier(); - this.state = 3372; + this.state = 3377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3370; + this.state = 3375; this.match(SparkSqlParser.COMMA); - this.state = 3371; + this.state = 3376; this.identifier(); } } - this.state = 3374; + this.state = 3379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3376; + this.state = 3381; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3377; + this.state = 3382; this.match(SparkSqlParser.ARROW); - this.state = 3378; + this.state = 3383; this.expression(); } break; case 21: { - this.state = 3380; + this.state = 3385; this.identifier(); } break; case 22: { - this.state = 3381; + this.state = 3386; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3382; + this.state = 3387; this.expression(); - this.state = 3383; + this.state = 3388; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 23: { - this.state = 3385; - this.match(SparkSqlParser.KW_EXTRACT); - this.state = 3386; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3387; - localContext._field = this.identifier(); - this.state = 3388; - this.match(SparkSqlParser.KW_FROM); - this.state = 3389; - localContext._source = this.valueExpression(0); this.state = 3390; + this.match(SparkSqlParser.KW_EXTRACT); + this.state = 3391; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3392; + localContext._field = this.identifier(); + this.state = 3393; + this.match(SparkSqlParser.KW_FROM); + this.state = 3394; + localContext._source = this.valueExpression(0); + this.state = 3395; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 24: { - this.state = 3392; + this.state = 3397; _la = this.tokenStream.LA(1); if(!(_la === 286 || _la === 287)) { this.errorHandler.recoverInline(this); @@ -14813,11 +15284,11 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3393; + this.state = 3398; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3394; + this.state = 3399; localContext._str = this.valueExpression(0); - this.state = 3395; + this.state = 3400; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -14826,14 +15297,14 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3396; + this.state = 3401; localContext._pos = this.valueExpression(0); - this.state = 3399; + this.state = 3404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 119) { { - this.state = 3397; + this.state = 3402; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -14842,27 +15313,27 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3398; + this.state = 3403; localContext._len = this.valueExpression(0); } } - this.state = 3401; + this.state = 3406; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 25: { - this.state = 3403; + this.state = 3408; this.match(SparkSqlParser.KW_TRIM); - this.state = 3404; + this.state = 3409; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3406; + this.state = 3411; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3405; + this.state = 3410; localContext._trimOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 28 || _la === 160 || _la === 310)) { @@ -14875,59 +15346,59 @@ export class SparkSqlParser extends antlr.Parser { } break; } - this.state = 3409; + this.state = 3414; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 536839207) !== 0)) { { - this.state = 3408; + this.state = 3413; localContext._trimStr = this.valueExpression(0); } - break; } - this.state = 3411; + + this.state = 3416; this.match(SparkSqlParser.KW_FROM); - this.state = 3412; + this.state = 3417; localContext._srcStr = this.valueExpression(0); - this.state = 3413; + this.state = 3418; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 26: { - this.state = 3415; - this.match(SparkSqlParser.KW_OVERLAY); - this.state = 3416; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3417; - localContext._input = this.valueExpression(0); - this.state = 3418; - this.match(SparkSqlParser.KW_PLACING); - this.state = 3419; - localContext._replace = this.valueExpression(0); this.state = 3420; - this.match(SparkSqlParser.KW_FROM); + this.match(SparkSqlParser.KW_OVERLAY); this.state = 3421; - localContext._position = this.valueExpression(0); + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3422; + localContext._input = this.valueExpression(0); + this.state = 3423; + this.match(SparkSqlParser.KW_PLACING); this.state = 3424; + localContext._replace = this.valueExpression(0); + this.state = 3425; + this.match(SparkSqlParser.KW_FROM); + this.state = 3426; + localContext._position = this.valueExpression(0); + this.state = 3429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3422; + this.state = 3427; this.match(SparkSqlParser.KW_FOR); - this.state = 3423; + this.state = 3428; localContext._length = this.valueExpression(0); } } - this.state = 3426; + this.state = 3431; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 27: { - this.state = 3428; + this.state = 3433; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 219 || _la === 220)) { @@ -14937,52 +15408,52 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3429; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3430; - localContext._percentage = this.valueExpression(0); - this.state = 3431; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3432; - this.match(SparkSqlParser.KW_WITHIN); - this.state = 3433; - this.match(SparkSqlParser.KW_GROUP); this.state = 3434; this.match(SparkSqlParser.LEFT_PAREN); this.state = 3435; - this.match(SparkSqlParser.KW_ORDER); + localContext._percentage = this.valueExpression(0); this.state = 3436; - this.match(SparkSqlParser.KW_BY); - this.state = 3437; - this.sortItem(); - this.state = 3438; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3445; + this.state = 3437; + this.match(SparkSqlParser.KW_WITHIN); + this.state = 3438; + this.match(SparkSqlParser.KW_GROUP); + this.state = 3439; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3440; + this.match(SparkSqlParser.KW_ORDER); + this.state = 3441; + this.match(SparkSqlParser.KW_BY); + this.state = 3442; + this.sortItem(); + this.state = 3443; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 3450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { case 1: { - this.state = 3439; + this.state = 3444; this.match(SparkSqlParser.KW_FILTER); - this.state = 3440; + this.state = 3445; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3441; + this.state = 3446; this.match(SparkSqlParser.KW_WHERE); - this.state = 3442; + this.state = 3447; localContext._where = this.booleanExpression(0); - this.state = 3443; + this.state = 3448; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3449; + this.state = 3454; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { case 1: { - this.state = 3447; + this.state = 3452; this.match(SparkSqlParser.KW_OVER); - this.state = 3448; + this.state = 3453; this.windowSpec(); } break; @@ -14991,9 +15462,9 @@ export class SparkSqlParser extends antlr.Parser { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3463; + this.state = 3468; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 448, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -15001,23 +15472,23 @@ export class SparkSqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 3461; + this.state = 3466; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._value = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3453; + this.state = 3458; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 3454; + this.state = 3459; this.match(SparkSqlParser.LEFT_BRACKET); - this.state = 3455; + this.state = 3460; localContext._index = this.valueExpression(0); - this.state = 3456; + this.state = 3461; this.match(SparkSqlParser.RIGHT_BRACKET); } break; @@ -15026,22 +15497,22 @@ export class SparkSqlParser extends antlr.Parser { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._base = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3458; + this.state = 3463; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 3459; + this.state = 3464; this.match(SparkSqlParser.DOT); - this.state = 3460; + this.state = 3465; localContext._fieldName = this.identifier(); } break; } } } - this.state = 3465; + this.state = 3470; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 448, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); } } } @@ -15063,55 +15534,55 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new LiteralTypeContext(this.context, this.state); this.enterRule(localContext, 284, SparkSqlParser.RULE_literalType); try { - this.state = 3473; + this.state = 3478; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3466; + this.state = 3471; this.match(SparkSqlParser.KW_DATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3467; + this.state = 3472; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3468; + this.state = 3473; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3469; + this.state = 3474; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3470; + this.state = 3475; this.match(SparkSqlParser.KW_INTERVAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3471; + this.state = 3476; this.match(SparkSqlParser.KW_BINARY_HEX); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3472; + this.state = 3477; localContext._unsupportedType = this.identifier(); } break; @@ -15136,66 +15607,66 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 286, SparkSqlParser.RULE_constant); try { let alternative: number; - this.state = 3490; + this.state = 3495; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3475; + this.state = 3480; this.match(SparkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3476; + this.state = 3481; this.match(SparkSqlParser.QUESTION); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3477; + this.state = 3482; this.match(SparkSqlParser.COLON); - this.state = 3478; + this.state = 3483; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3479; + this.state = 3484; this.interval(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3480; + this.state = 3485; this.literalType(); - this.state = 3481; + this.state = 3486; this.stringLit(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3483; + this.state = 3488; this.number_(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3484; + this.state = 3489; this.booleanValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3486; + this.state = 3491; this.errorHandler.sync(this); alternative = 1; do { @@ -15203,7 +15674,7 @@ export class SparkSqlParser extends antlr.Parser { case 1: { { - this.state = 3485; + this.state = 3490; this.stringLit(); } } @@ -15211,9 +15682,9 @@ export class SparkSqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3488; + this.state = 3493; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 450, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -15240,7 +15711,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3492; + this.state = 3497; _la = this.tokenStream.LA(1); if(!(((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -15272,7 +15743,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3494; + this.state = 3499; _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -15304,7 +15775,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3496; + this.state = 3501; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 140 || _la === 196 || _la === 207)) { this.errorHandler.recoverInline(this); @@ -15336,7 +15807,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3498; + this.state = 3503; _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -15367,20 +15838,20 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3500; + this.state = 3505; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3503; + this.state = 3508; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3501; + this.state = 3506; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 3502; + this.state = 3507; this.errorCapturingUnitToUnitInterval(); } break; @@ -15407,14 +15878,14 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3505; + this.state = 3510; localContext._body = this.multiUnitsInterval(); - this.state = 3507; + this.state = 3512; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: { - this.state = 3506; + this.state = 3511; this.unitToUnitInterval(); } break; @@ -15442,7 +15913,7 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3512; + this.state = 3517; this.errorHandler.sync(this); alternative = 1; do { @@ -15450,9 +15921,9 @@ export class SparkSqlParser extends antlr.Parser { case 1: { { - this.state = 3509; + this.state = 3514; this.intervalValue(); - this.state = 3510; + this.state = 3515; localContext._unitInMultiUnits = this.unitInMultiUnits(); localContext._unit.push(localContext._unitInMultiUnits); } @@ -15461,9 +15932,9 @@ export class SparkSqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3514; + this.state = 3519; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -15487,20 +15958,20 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3516; + this.state = 3521; localContext._body = this.unitToUnitInterval(); - this.state = 3519; + this.state = 3524; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3517; + this.state = 3522; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 3518; + this.state = 3523; localContext._error2 = this.unitToUnitInterval(); } break; @@ -15527,13 +15998,13 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3521; + this.state = 3526; localContext._value = this.intervalValue(); - this.state = 3522; + this.state = 3527; this.unitInUnitToUnit(); - this.state = 3523; + this.state = 3528; this.match(SparkSqlParser.KW_TO); - this.state = 3524; + this.state = 3529; this.unitInUnitToUnit(); } } @@ -15558,12 +16029,12 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3527; + this.state = 3532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360 || _la === 361) { { - this.state = 3526; + this.state = 3531; _la = this.tokenStream.LA(1); if(!(_la === 360 || _la === 361)) { this.errorHandler.recoverInline(this); @@ -15575,25 +16046,25 @@ export class SparkSqlParser extends antlr.Parser { } } - this.state = 3532; + this.state = 3537; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 3529; + this.state = 3534; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: { - this.state = 3530; + this.state = 3535; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3531; + this.state = 3536; this.stringLit(); } break; @@ -15623,7 +16094,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3534; + this.state = 3539; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 68 || _la === 134 || _la === 135 || ((((_la - 179)) & ~0x1F) === 0 && ((1 << (_la - 179)) & 12543) !== 0) || _la === 258 || _la === 259 || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -15655,7 +16126,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3536; + this.state = 3541; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 183 || _la === 185 || _la === 258 || _la === 347)) { this.errorHandler.recoverInline(this); @@ -15684,22 +16155,22 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new ColPositionContext(this.context, this.state); this.enterRule(localContext, 312, SparkSqlParser.RULE_colPosition); try { - this.state = 3541; + this.state = 3546; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3538; + this.state = 3543; localContext._position = this.match(SparkSqlParser.KW_FIRST); } break; case SparkSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3539; + this.state = 3544; localContext._position = this.match(SparkSqlParser.KW_AFTER); - this.state = 3540; + this.state = 3545; localContext._afterCol = this.errorCapturingIdentifier(); } break; @@ -15725,216 +16196,216 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new TypeContext(this.context, this.state); this.enterRule(localContext, 314, SparkSqlParser.RULE_type); try { - this.state = 3573; + this.state = 3578; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3543; + this.state = 3548; this.match(SparkSqlParser.KW_BOOLEAN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3544; + this.state = 3549; this.match(SparkSqlParser.KW_TINYINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3545; + this.state = 3550; this.match(SparkSqlParser.KW_BYTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3546; + this.state = 3551; this.match(SparkSqlParser.KW_SMALLINT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3547; + this.state = 3552; this.match(SparkSqlParser.KW_SHORT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3548; + this.state = 3553; this.match(SparkSqlParser.KW_INT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3549; + this.state = 3554; this.match(SparkSqlParser.KW_INTEGER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3550; + this.state = 3555; this.match(SparkSqlParser.KW_BIGINT); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3551; + this.state = 3556; this.match(SparkSqlParser.KW_LONG); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3552; + this.state = 3557; this.match(SparkSqlParser.KW_FLOAT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3553; + this.state = 3558; this.match(SparkSqlParser.KW_REAL); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3554; + this.state = 3559; this.match(SparkSqlParser.KW_DOUBLE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3555; + this.state = 3560; this.match(SparkSqlParser.KW_DATE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3556; + this.state = 3561; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3557; + this.state = 3562; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3558; + this.state = 3563; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3559; + this.state = 3564; this.match(SparkSqlParser.KW_STRING); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3560; + this.state = 3565; this.match(SparkSqlParser.KW_CHARACTER); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 3561; + this.state = 3566; this.match(SparkSqlParser.KW_CHAR); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 3562; + this.state = 3567; this.match(SparkSqlParser.KW_VARCHAR); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 3563; + this.state = 3568; this.match(SparkSqlParser.KW_BINARY); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 3564; + this.state = 3569; this.match(SparkSqlParser.KW_DECIMAL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 3565; + this.state = 3570; this.match(SparkSqlParser.KW_DEC); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 3566; + this.state = 3571; this.match(SparkSqlParser.KW_NUMERIC); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 3567; + this.state = 3572; this.match(SparkSqlParser.KW_VOID); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 3568; + this.state = 3573; this.match(SparkSqlParser.KW_INTERVAL); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 3569; + this.state = 3574; this.match(SparkSqlParser.KW_ARRAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 3570; + this.state = 3575; this.match(SparkSqlParser.KW_STRUCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 3571; + this.state = 3576; this.match(SparkSqlParser.KW_MAP); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 3572; + this.state = 3577; localContext._unsupportedType = this.identifier(); } break; @@ -15959,68 +16430,68 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 316, SparkSqlParser.RULE_dataType); let _la: number; try { - this.state = 3621; + this.state = 3626; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3575; + this.state = 3580; localContext._complex = this.match(SparkSqlParser.KW_ARRAY); - this.state = 3576; + this.state = 3581; this.match(SparkSqlParser.LT); - this.state = 3577; + this.state = 3582; this.dataType(); - this.state = 3578; + this.state = 3583; this.match(SparkSqlParser.GT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3580; - localContext._complex = this.match(SparkSqlParser.KW_MAP); - this.state = 3581; - this.match(SparkSqlParser.LT); - this.state = 3582; - this.dataType(); - this.state = 3583; - this.match(SparkSqlParser.COMMA); - this.state = 3584; - this.dataType(); this.state = 3585; + localContext._complex = this.match(SparkSqlParser.KW_MAP); + this.state = 3586; + this.match(SparkSqlParser.LT); + this.state = 3587; + this.dataType(); + this.state = 3588; + this.match(SparkSqlParser.COMMA); + this.state = 3589; + this.dataType(); + this.state = 3590; this.match(SparkSqlParser.GT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3587; + this.state = 3592; localContext._complex = this.match(SparkSqlParser.KW_STRUCT); - this.state = 3594; + this.state = 3599; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.LT: { - this.state = 3588; + this.state = 3593; this.match(SparkSqlParser.LT); - this.state = 3590; + this.state = 3595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { { - this.state = 3589; + this.state = 3594; this.complexColTypeList(); } } - this.state = 3592; + this.state = 3597; this.match(SparkSqlParser.GT); } break; case SparkSqlParser.NEQ: { - this.state = 3593; + this.state = 3598; this.match(SparkSqlParser.NEQ); } break; @@ -16032,9 +16503,9 @@ export class SparkSqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3596; + this.state = 3601; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3597; + this.state = 3602; _la = this.tokenStream.LA(1); if(!(_la === 185 || _la === 347)) { this.errorHandler.recoverInline(this); @@ -16043,14 +16514,14 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3600; + this.state = 3605; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3598; + this.state = 3603; this.match(SparkSqlParser.KW_TO); - this.state = 3599; + this.state = 3604; this.match(SparkSqlParser.KW_MONTH); } break; @@ -16060,9 +16531,9 @@ export class SparkSqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3602; + this.state = 3607; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3603; + this.state = 3608; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 183 || _la === 258)) { this.errorHandler.recoverInline(this); @@ -16071,14 +16542,14 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3606; + this.state = 3611; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 3604; + this.state = 3609; this.match(SparkSqlParser.KW_TO); - this.state = 3605; + this.state = 3610; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 183 || _la === 258)) { this.errorHandler.recoverInline(this); @@ -16095,34 +16566,34 @@ export class SparkSqlParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3608; + this.state = 3613; this.type_(); - this.state = 3619; + this.state = 3624; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 3609; + this.state = 3614; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3610; - this.match(SparkSqlParser.INTEGER_VALUE); this.state = 3615; + this.match(SparkSqlParser.INTEGER_VALUE); + this.state = 3620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3611; + this.state = 3616; this.match(SparkSqlParser.COMMA); - this.state = 3612; + this.state = 3617; this.match(SparkSqlParser.INTEGER_VALUE); } } - this.state = 3617; + this.state = 3622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3618; + this.state = 3623; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -16152,21 +16623,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3623; - this.qualifiedColTypeWithPositionForAdd(); this.state = 3628; + this.qualifiedColTypeWithPositionForAdd(); + this.state = 3633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3624; + this.state = 3629; this.match(SparkSqlParser.COMMA); - this.state = 3625; + this.state = 3630; this.qualifiedColTypeWithPositionForAdd(); } } - this.state = 3630; + this.state = 3635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16193,25 +16664,25 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3631; - localContext._name = this.columnNameCreate(); - this.state = 3632; - this.dataType(); this.state = 3636; + localContext._name = this.columnNameCreate(); + this.state = 3637; + this.dataType(); + this.state = 3641; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 468, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3633; + this.state = 3638; this.colDefinitionDescriptorWithPosition(); } } } - this.state = 3638; + this.state = 3643; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 468, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); } } } @@ -16236,21 +16707,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3639; - this.qualifiedColTypeWithPositionForReplace(); this.state = 3644; + this.qualifiedColTypeWithPositionForReplace(); + this.state = 3649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3640; + this.state = 3645; this.match(SparkSqlParser.COMMA); - this.state = 3641; + this.state = 3646; this.qualifiedColTypeWithPositionForReplace(); } } - this.state = 3646; + this.state = 3651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16277,21 +16748,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3647; - localContext._name = this.columnName(); - this.state = 3648; - this.dataType(); this.state = 3652; + localContext._name = this.columnName(); + this.state = 3653; + this.dataType(); + this.state = 3657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 9 || _la === 51 || _la === 82 || _la === 116 || _la === 196) { { { - this.state = 3649; + this.state = 3654; this.colDefinitionDescriptorWithPosition(); } } - this.state = 3654; + this.state = 3659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16315,29 +16786,29 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new ColDefinitionDescriptorWithPositionContext(this.context, this.state); this.enterRule(localContext, 326, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); try { - this.state = 3660; + this.state = 3665; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3655; + this.state = 3660; this.match(SparkSqlParser.KW_NOT); - this.state = 3656; + this.state = 3661; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3657; + this.state = 3662; this.defaultExpression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 3); { - this.state = 3658; + this.state = 3663; this.commentSpec(); } break; @@ -16345,7 +16816,7 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 4); { - this.state = 3659; + this.state = 3664; this.colPosition(); } break; @@ -16373,9 +16844,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3662; + this.state = 3667; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3663; + this.state = 3668; this.expression(); } } @@ -16400,7 +16871,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3665; + this.state = 3670; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 351)) { this.errorHandler.recoverInline(this); @@ -16409,7 +16880,7 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3666; + this.state = 3671; this.expression(); } } @@ -16434,25 +16905,25 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3668; - this.colType(); this.state = 3673; + this.colType(); + this.state = 3678; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3669; + this.state = 3674; this.match(SparkSqlParser.COMMA); - this.state = 3670; + this.state = 3675; this.colType(); } } } - this.state = 3675; + this.state = 3680; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); } } } @@ -16476,28 +16947,28 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3676; + this.state = 3681; localContext._colName = this.errorCapturingIdentifier(); - this.state = 3677; + this.state = 3682; this.dataType(); - this.state = 3680; + this.state = 3685; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: { - this.state = 3678; + this.state = 3683; this.match(SparkSqlParser.KW_NOT); - this.state = 3679; + this.state = 3684; this.match(SparkSqlParser.KW_NULL); } break; } - this.state = 3683; + this.state = 3688; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 3682; + this.state = 3687; this.commentSpec(); } break; @@ -16525,21 +16996,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3685; - this.createOrReplaceTableColType(); this.state = 3690; + this.createOrReplaceTableColType(); + this.state = 3695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3686; + this.state = 3691; this.match(SparkSqlParser.COMMA); - this.state = 3687; + this.state = 3692; this.createOrReplaceTableColType(); } } - this.state = 3692; + this.state = 3697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16566,21 +17037,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3693; - localContext._colName = this.columnNameCreate(); - this.state = 3694; - this.dataType(); this.state = 3698; + localContext._colName = this.columnNameCreate(); + this.state = 3699; + this.dataType(); + this.state = 3703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 82 || _la === 127 || _la === 196) { { { - this.state = 3695; + this.state = 3700; this.colDefinitionOption(); } } - this.state = 3700; + this.state = 3705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16604,36 +17075,36 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new ColDefinitionOptionContext(this.context, this.state); this.enterRule(localContext, 340, SparkSqlParser.RULE_colDefinitionOption); try { - this.state = 3706; + this.state = 3711; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3701; + this.state = 3706; this.match(SparkSqlParser.KW_NOT); - this.state = 3702; + this.state = 3707; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3703; + this.state = 3708; this.defaultExpression(); } break; case SparkSqlParser.KW_GENERATED: this.enterOuterAlt(localContext, 3); { - this.state = 3704; + this.state = 3709; this.generationExpression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 3705; + this.state = 3710; this.commentSpec(); } break; @@ -16661,17 +17132,17 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3708; - this.match(SparkSqlParser.KW_GENERATED); - this.state = 3709; - this.match(SparkSqlParser.KW_ALWAYS); - this.state = 3710; - this.match(SparkSqlParser.KW_AS); - this.state = 3711; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3712; - this.expression(); this.state = 3713; + this.match(SparkSqlParser.KW_GENERATED); + this.state = 3714; + this.match(SparkSqlParser.KW_ALWAYS); + this.state = 3715; + this.match(SparkSqlParser.KW_AS); + this.state = 3716; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3717; + this.expression(); + this.state = 3718; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -16696,21 +17167,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3715; - this.complexColType(); this.state = 3720; + this.complexColType(); + this.state = 3725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3716; + this.state = 3721; this.match(SparkSqlParser.COMMA); - this.state = 3717; + this.state = 3722; this.complexColType(); } } - this.state = 3722; + this.state = 3727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16737,38 +17208,38 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3723; + this.state = 3728; this.identifier(); - this.state = 3725; + this.state = 3730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 370) { { - this.state = 3724; + this.state = 3729; this.match(SparkSqlParser.COLON); } } - this.state = 3727; + this.state = 3732; this.dataType(); - this.state = 3730; + this.state = 3735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 3728; + this.state = 3733; this.match(SparkSqlParser.KW_NOT); - this.state = 3729; + this.state = 3734; this.match(SparkSqlParser.KW_NULL); } } - this.state = 3733; + this.state = 3738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 3732; + this.state = 3737; this.commentSpec(); } } @@ -16795,13 +17266,13 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3735; + this.state = 3740; this.match(SparkSqlParser.KW_WHEN); - this.state = 3736; + this.state = 3741; localContext._condition = this.expression(); - this.state = 3737; + this.state = 3742; this.match(SparkSqlParser.KW_THEN); - this.state = 3738; + this.state = 3743; localContext._result = this.expression(); } } @@ -16826,27 +17297,27 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3740; + this.state = 3745; this.match(SparkSqlParser.KW_WINDOW); - this.state = 3741; - this.namedWindow(); this.state = 3746; + this.namedWindow(); + this.state = 3751; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3742; + this.state = 3747; this.match(SparkSqlParser.COMMA); - this.state = 3743; + this.state = 3748; this.namedWindow(); } } } - this.state = 3748; + this.state = 3753; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); } } } @@ -16870,11 +17341,11 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3749; + this.state = 3754; this.match(SparkSqlParser.KW_ZORDER); - this.state = 3750; + this.state = 3755; this.match(SparkSqlParser.KW_BY); - this.state = 3751; + this.state = 3756; this.columnNameSeq(); } } @@ -16898,11 +17369,11 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3753; + this.state = 3758; localContext._name = this.errorCapturingIdentifier(); - this.state = 3754; + this.state = 3759; this.match(SparkSqlParser.KW_AS); - this.state = 3755; + this.state = 3760; this.windowSpec(); } } @@ -16925,58 +17396,58 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 356, SparkSqlParser.RULE_windowSpec); let _la: number; try { - this.state = 3803; + this.state = 3808; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3757; + this.state = 3762; localContext._name = this.errorCapturingIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3758; + this.state = 3763; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3759; + this.state = 3764; localContext._name = this.errorCapturingIdentifier(); - this.state = 3760; + this.state = 3765; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3762; + this.state = 3767; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3797; + this.state = 3802; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CLUSTER: { - this.state = 3763; + this.state = 3768; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 3764; + this.state = 3769; this.match(SparkSqlParser.KW_BY); - this.state = 3765; + this.state = 3770; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3770; + this.state = 3775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3766; + this.state = 3771; this.match(SparkSqlParser.COMMA); - this.state = 3767; + this.state = 3772; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3772; + this.state = 3777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16990,12 +17461,12 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_ROWS: case SparkSqlParser.KW_SORT: { - this.state = 3783; + this.state = 3788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 216) { { - this.state = 3773; + this.state = 3778; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 216)) { this.errorHandler.recoverInline(this); @@ -17004,37 +17475,37 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3774; + this.state = 3779; this.match(SparkSqlParser.KW_BY); - this.state = 3775; + this.state = 3780; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3780; + this.state = 3785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3776; + this.state = 3781; this.match(SparkSqlParser.COMMA); - this.state = 3777; + this.state = 3782; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3782; + this.state = 3787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3795; + this.state = 3800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208 || _la === 277) { { - this.state = 3785; + this.state = 3790; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 277)) { this.errorHandler.recoverInline(this); @@ -17043,23 +17514,23 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3786; + this.state = 3791; this.match(SparkSqlParser.KW_BY); - this.state = 3787; - this.sortItem(); this.state = 3792; + this.sortItem(); + this.state = 3797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3788; + this.state = 3793; this.match(SparkSqlParser.COMMA); - this.state = 3789; + this.state = 3794; this.sortItem(); } } - this.state = 3794; + this.state = 3799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17071,17 +17542,17 @@ export class SparkSqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3800; + this.state = 3805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232 || _la === 257) { { - this.state = 3799; + this.state = 3804; this.windowFrame(); } } - this.state = 3802; + this.state = 3807; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -17105,54 +17576,54 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new WindowFrameContext(this.context, this.state); this.enterRule(localContext, 358, SparkSqlParser.RULE_windowFrame); try { - this.state = 3821; + this.state = 3826; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3805; + this.state = 3810; localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3806; + this.state = 3811; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3807; + this.state = 3812; localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3808; + this.state = 3813; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3809; + this.state = 3814; localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3810; + this.state = 3815; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3811; + this.state = 3816; localContext._start_ = this.frameBound(); - this.state = 3812; + this.state = 3817; this.match(SparkSqlParser.KW_AND); - this.state = 3813; + this.state = 3818; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3815; + this.state = 3820; localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3816; + this.state = 3821; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3817; + this.state = 3822; localContext._start_ = this.frameBound(); - this.state = 3818; + this.state = 3823; this.match(SparkSqlParser.KW_AND); - this.state = 3819; + this.state = 3824; localContext._end = this.frameBound(); } break; @@ -17177,15 +17648,15 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 360, SparkSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3830; + this.state = 3835; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3823; + this.state = 3828; this.match(SparkSqlParser.KW_UNBOUNDED); - this.state = 3824; + this.state = 3829; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 225)) { @@ -17200,18 +17671,18 @@ export class SparkSqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3825; + this.state = 3830; localContext._boundType = this.match(SparkSqlParser.KW_CURRENT); - this.state = 3826; + this.state = 3831; this.match(SparkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3827; + this.state = 3832; this.expression(); - this.state = 3828; + this.state = 3833; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 225)) { @@ -17246,21 +17717,21 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3832; - this.qualifiedName(); this.state = 3837; + this.qualifiedName(); + this.state = 3842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3833; + this.state = 3838; this.match(SparkSqlParser.COMMA); - this.state = 3834; + this.state = 3839; this.qualifiedName(); } } - this.state = 3839; + this.state = 3844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17284,47 +17755,47 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new FunctionNameContext(this.context, this.state); this.enterRule(localContext, 364, SparkSqlParser.RULE_functionName); try { - this.state = 3849; + this.state = 3854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3840; + this.state = 3845; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3841; + this.state = 3846; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3842; + this.state = 3847; this.expression(); - this.state = 3843; + this.state = 3848; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3845; + this.state = 3850; this.qualifiedName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3846; + this.state = 3851; this.match(SparkSqlParser.KW_FILTER); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3847; + this.state = 3852; this.match(SparkSqlParser.KW_LEFT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3848; + this.state = 3853; this.match(SparkSqlParser.KW_RIGHT); } break; @@ -17350,7 +17821,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3851; + this.state = 3856; this.qualifiedName(); } } @@ -17375,25 +17846,25 @@ export class SparkSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3853; - this.identifier(); this.state = 3858; + this.identifier(); + this.state = 3863; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 495, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3854; + this.state = 3859; this.match(SparkSqlParser.DOT); - this.state = 3855; + this.state = 3860; this.identifier(); } } } - this.state = 3860; + this.state = 3865; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 495, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); } } } @@ -17417,9 +17888,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3861; + this.state = 3866; this.identifier(); - this.state = 3862; + this.state = 3867; this.errorCapturingIdentifierExtra(); } } @@ -17442,13 +17913,13 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 372, SparkSqlParser.RULE_errorCapturingIdentifierExtra); try { let alternative: number; - this.state = 3871; + this.state = 3876; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3866; + this.state = 3871; this.errorHandler.sync(this); alternative = 1; do { @@ -17456,9 +17927,9 @@ export class SparkSqlParser extends antlr.Parser { case 1: { { - this.state = 3864; + this.state = 3869; this.match(SparkSqlParser.MINUS); - this.state = 3865; + this.state = 3870; this.identifier(); } } @@ -17466,9 +17937,9 @@ export class SparkSqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3868; + this.state = 3873; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -17498,20 +17969,20 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new IdentifierContext(this.context, this.state); this.enterRule(localContext, 374, SparkSqlParser.RULE_identifier); try { - this.state = 3875; + this.state = 3880; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3873; + this.state = 3878; this.strictIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3874; + this.state = 3879; this.strictNonReserved(); } break; @@ -17535,34 +18006,34 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new StrictIdentifierContext(this.context, this.state); this.enterRule(localContext, 376, SparkSqlParser.RULE_strictIdentifier); try { - this.state = 3881; + this.state = 3886; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3877; + this.state = 3882; this.match(SparkSqlParser.IDENTIFIER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3878; + this.state = 3883; this.quotedIdentifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3879; + this.state = 3884; this.ansiNonReserved(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3880; + this.state = 3885; this.nonReserved(); } break; @@ -17589,7 +18060,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3883; + this.state = 3888; _la = this.tokenStream.LA(1); if(!(_la === 377 || _la === 388)) { this.errorHandler.recoverInline(this); @@ -17620,7 +18091,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3885; + this.state = 3890; this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } } @@ -17643,57 +18114,57 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 382, SparkSqlParser.RULE_number); let _la: number; try { - this.state = 3927; + this.state = 3932; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3888; + this.state = 3893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 3887; + this.state = 3892; this.match(SparkSqlParser.MINUS); } } - this.state = 3890; + this.state = 3895; this.match(SparkSqlParser.EXPONENT_VALUE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3892; + this.state = 3897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 3891; + this.state = 3896; this.match(SparkSqlParser.MINUS); } } - this.state = 3894; + this.state = 3899; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3896; + this.state = 3901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 3895; + this.state = 3900; this.match(SparkSqlParser.MINUS); } } - this.state = 3898; + this.state = 3903; _la = this.tokenStream.LA(1); if(!(_la === 382 || _la === 383)) { this.errorHandler.recoverInline(this); @@ -17707,119 +18178,119 @@ export class SparkSqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3900; + this.state = 3905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 3899; + this.state = 3904; this.match(SparkSqlParser.MINUS); } } - this.state = 3902; + this.state = 3907; this.match(SparkSqlParser.INTEGER_VALUE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3904; + this.state = 3909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 3903; + this.state = 3908; this.match(SparkSqlParser.MINUS); } } - this.state = 3906; + this.state = 3911; this.match(SparkSqlParser.BIGINT_LITERAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3908; + this.state = 3913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 3907; + this.state = 3912; this.match(SparkSqlParser.MINUS); } } - this.state = 3910; + this.state = 3915; this.match(SparkSqlParser.SMALLINT_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3912; + this.state = 3917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 3911; + this.state = 3916; this.match(SparkSqlParser.MINUS); } } - this.state = 3914; + this.state = 3919; this.match(SparkSqlParser.TINYINT_LITERAL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3916; + this.state = 3921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 3915; + this.state = 3920; this.match(SparkSqlParser.MINUS); } } - this.state = 3918; + this.state = 3923; this.match(SparkSqlParser.DOUBLE_LITERAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3920; + this.state = 3925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 3919; + this.state = 3924; this.match(SparkSqlParser.MINUS); } } - this.state = 3922; + this.state = 3927; this.match(SparkSqlParser.FLOAT_LITERAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3924; + this.state = 3929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361) { { - this.state = 3923; + this.state = 3928; this.match(SparkSqlParser.MINUS); } } - this.state = 3926; + this.state = 3931; this.match(SparkSqlParser.BIGDECIMAL_LITERAL); } break; @@ -17844,36 +18315,36 @@ export class SparkSqlParser extends antlr.Parser { this.enterRule(localContext, 384, SparkSqlParser.RULE_alterColumnAction); let _la: number; try { - this.state = 3940; + this.state = 3945; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 511, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3929; + this.state = 3934; this.match(SparkSqlParser.KW_TYPE); - this.state = 3930; + this.state = 3935; this.dataType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3931; + this.state = 3936; this.commentSpec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3932; + this.state = 3937; this.colPosition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3933; + this.state = 3938; localContext._setOrDrop = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 96 || _la === 268)) { @@ -17883,27 +18354,27 @@ export class SparkSqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3934; + this.state = 3939; this.match(SparkSqlParser.KW_NOT); - this.state = 3935; + this.state = 3940; this.match(SparkSqlParser.KW_NULL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3936; + this.state = 3941; this.match(SparkSqlParser.KW_SET); - this.state = 3937; + this.state = 3942; this.defaultExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3938; + this.state = 3943; localContext._dropDefault = this.match(SparkSqlParser.KW_DROP); - this.state = 3939; + this.state = 3944; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -17930,7 +18401,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3942; + this.state = 3947; _la = this.tokenStream.LA(1); if(!(_la === 376 || _la === 377)) { this.errorHandler.recoverInline(this); @@ -17959,21 +18430,21 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new CommentContext(this.context, this.state); this.enterRule(localContext, 388, SparkSqlParser.RULE_comment); try { - this.state = 3946; + this.state = 3951; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 3944; + this.state = 3949; this.stringLit(); } break; case SparkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 3945; + this.state = 3950; this.match(SparkSqlParser.KW_NULL); } break; @@ -17999,13 +18470,13 @@ export class SparkSqlParser extends antlr.Parser { let localContext = new VersionContext(this.context, this.state); this.enterRule(localContext, 390, SparkSqlParser.RULE_version); try { - this.state = 3950; + this.state = 3955; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 3948; + this.state = 3953; this.match(SparkSqlParser.INTEGER_VALUE); } break; @@ -18013,7 +18484,7 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 3949; + this.state = 3954; this.stringLit(); } break; @@ -18042,7 +18513,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3952; + this.state = 3957; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4017011456) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1711111143) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 3187671039) !== 0) || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 1328796669) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 3852957567) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 805306367) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4020201927) !== 0) || ((((_la - 230)) & ~0x1F) === 0 && ((1 << (_la - 230)) & 4294442751) !== 0) || ((((_la - 263)) & ~0x1F) === 0 && ((1 << (_la - 263)) & 3758088175) !== 0) || ((((_la - 295)) & ~0x1F) === 0 && ((1 << (_la - 295)) & 3355402191) !== 0) || ((((_la - 327)) & ~0x1F) === 0 && ((1 << (_la - 327)) & 15892455) !== 0))) { this.errorHandler.recoverInline(this); @@ -18074,7 +18545,7 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3954; + this.state = 3959; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 60 || _la === 102 || _la === 124 || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 149521) !== 0) || _la === 193 || _la === 202 || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 1064961) !== 0) || _la === 322 || _la === 331)) { this.errorHandler.recoverInline(this); @@ -18106,9 +18577,9 @@ export class SparkSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3956; + this.state = 3961; _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4026531775) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294966261) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4261412863) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294958911) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147481595) !== 0))) { + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3892314047) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294966261) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4261412863) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294958911) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147481595) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -18134,6 +18605,8 @@ export class SparkSqlParser extends antlr.Parser { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { + case 45: + return this.columnName_sempred(localContext as ColumnNameContext, predIndex); case 51: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); case 137: @@ -18145,55 +18618,62 @@ export class SparkSqlParser extends antlr.Parser { } return true; } - private queryTerm_sempred(localContext: QueryTermContext | null, predIndex: number): boolean { + private columnName_sempred(localContext: ColumnNameContext | null, predIndex: number): boolean { switch (predIndex) { case 0: - return this.precpred(this.context, 3); + return this.shouldMatchEmpty(); + } + return true; + } + private queryTerm_sempred(localContext: QueryTermContext | null, predIndex: number): boolean { + switch (predIndex) { case 1: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 2: + return this.precpred(this.context, 2); + case 3: return this.precpred(this.context, 1); } return true; } private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 3: - return this.precpred(this.context, 2); case 4: + return this.precpred(this.context, 2); + case 5: return this.precpred(this.context, 1); } return true; } private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 5: - return this.precpred(this.context, 6); case 6: - return this.precpred(this.context, 5); + return this.precpred(this.context, 6); case 7: - return this.precpred(this.context, 4); + return this.precpred(this.context, 5); case 8: - return this.precpred(this.context, 3); + return this.precpred(this.context, 4); case 9: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 10: + return this.precpred(this.context, 2); + case 11: return this.precpred(this.context, 1); } return true; } private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 11: - return this.precpred(this.context, 9); case 12: + return this.precpred(this.context, 9); + case 13: return this.precpred(this.context, 7); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,392,3959,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,392,3964,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -18227,77 +18707,77 @@ export class SparkSqlParser extends antlr.Parser { 7,186,2,187,7,187,2,188,7,188,2,189,7,189,2,190,7,190,2,191,7,191, 2,192,7,192,2,193,7,193,2,194,7,194,2,195,7,195,2,196,7,196,2,197, 7,197,2,198,7,198,1,0,5,0,400,8,0,10,0,12,0,403,9,0,1,0,1,0,1,1, - 1,1,3,1,409,8,1,1,2,1,2,3,2,413,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,426,8,2,1,2,1,2,1,2,3,2,431,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,5,2,439,8,2,10,2,12,2,442,9,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,460,8,2,1,2,1,2,3, - 2,464,8,2,1,2,1,2,1,2,1,2,3,2,470,8,2,1,2,3,2,473,8,2,1,2,3,2,476, - 8,2,1,2,1,2,1,2,1,2,1,2,3,2,483,8,2,1,2,3,2,486,8,2,1,2,1,2,3,2, - 490,8,2,1,2,3,2,493,8,2,1,2,1,2,1,2,3,2,498,8,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,5,2,509,8,2,10,2,12,2,512,9,2,1,2,1,2,1,2,1, - 2,1,2,3,2,519,8,2,1,2,3,2,522,8,2,1,2,1,2,3,2,526,8,2,1,2,3,2,529, - 8,2,1,2,1,2,1,2,1,2,3,2,535,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,3,2,546,8,2,1,2,1,2,1,2,1,2,3,2,552,8,2,1,2,1,2,1,2,3,2,557, + 1,1,3,1,409,8,1,1,2,1,2,3,2,413,8,2,1,2,1,2,1,2,3,2,418,8,2,1,2, + 1,2,1,2,1,2,1,2,3,2,425,8,2,1,2,1,2,1,2,3,2,430,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,5,2,438,8,2,10,2,12,2,441,9,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,459,8,2,1,2,1,2,3, + 2,463,8,2,1,2,1,2,1,2,1,2,3,2,469,8,2,1,2,3,2,472,8,2,1,2,3,2,475, + 8,2,1,2,1,2,1,2,1,2,1,2,3,2,482,8,2,1,2,3,2,485,8,2,1,2,1,2,3,2, + 489,8,2,1,2,3,2,492,8,2,1,2,1,2,1,2,3,2,497,8,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,5,2,508,8,2,10,2,12,2,511,9,2,1,2,1,2,1,2,1, + 2,1,2,3,2,518,8,2,1,2,3,2,521,8,2,1,2,1,2,3,2,525,8,2,1,2,3,2,528, + 8,2,1,2,1,2,1,2,1,2,3,2,534,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,3,2,545,8,2,1,2,1,2,1,2,1,2,3,2,551,8,2,1,2,1,2,1,2,3,2,556, 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,590,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,600,8,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,611,8,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,622,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 633,8,2,1,2,1,2,1,2,3,2,638,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 647,8,2,1,2,1,2,3,2,651,8,2,1,2,1,2,1,2,1,2,3,2,657,8,2,1,2,1,2, - 3,2,661,8,2,1,2,1,2,1,2,3,2,666,8,2,1,2,1,2,1,2,1,2,3,2,672,8,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,684,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,692,8,2,1,2,1,2,1,2,1,2,3,2,698,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,3,2,709,8,2,1,2,1,2,3,2,713,8,2,1,2,4,2, - 716,8,2,11,2,12,2,717,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,3,2,733,8,2,1,2,1,2,3,2,737,8,2,1,2,1,2,1,2,5,2,742,8, - 2,10,2,12,2,745,9,2,1,2,3,2,748,8,2,1,2,1,2,1,2,1,2,3,2,754,8,2, + 3,2,589,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,599,8,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,610,8,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,621,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 632,8,2,1,2,1,2,1,2,3,2,637,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 646,8,2,1,2,1,2,3,2,650,8,2,1,2,1,2,1,2,1,2,3,2,656,8,2,1,2,1,2, + 3,2,660,8,2,1,2,1,2,1,2,3,2,665,8,2,1,2,1,2,1,2,1,2,3,2,671,8,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,683,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,691,8,2,1,2,1,2,1,2,1,2,3,2,697,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,3,2,708,8,2,1,2,1,2,3,2,712,8,2,1,2,4,2, + 715,8,2,11,2,12,2,716,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,3,2,732,8,2,1,2,1,2,3,2,736,8,2,1,2,1,2,1,2,5,2,741,8, + 2,10,2,12,2,744,9,2,1,2,3,2,747,8,2,1,2,1,2,1,2,1,2,3,2,753,8,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,783,8,2,1,2,1,2, - 3,2,787,8,2,1,2,1,2,1,2,3,2,792,8,2,1,2,1,2,1,2,1,2,1,2,3,2,799, - 8,2,1,2,1,2,1,2,1,2,3,2,805,8,2,1,2,3,2,808,8,2,1,2,3,2,811,8,2, - 1,2,1,2,3,2,815,8,2,1,2,1,2,3,2,819,8,2,1,2,1,2,1,2,1,2,1,2,1,2, - 5,2,827,8,2,10,2,12,2,830,9,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,838,8, - 2,1,2,3,2,841,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,850,8,2,1,2,1, - 2,1,2,3,2,855,8,2,1,2,1,2,1,2,1,2,3,2,861,8,2,1,2,1,2,1,2,1,2,1, - 2,3,2,868,8,2,1,2,3,2,871,8,2,1,2,1,2,3,2,875,8,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,5,2,884,8,2,10,2,12,2,887,9,2,3,2,889,8,2,1,2,1,2, - 1,2,1,2,3,2,895,8,2,1,2,1,2,3,2,899,8,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,914,8,2,10,2,12,2,917,9,2,1,2,1, - 2,1,2,1,2,1,2,3,2,924,8,2,1,2,1,2,3,2,928,8,2,1,2,1,2,1,2,1,2,3, - 2,934,8,2,1,2,3,2,937,8,2,1,2,1,2,3,2,941,8,2,1,2,3,2,944,8,2,1, - 2,1,2,1,2,1,2,3,2,950,8,2,1,2,1,2,1,2,3,2,955,8,2,1,2,1,2,3,2,959, - 8,2,1,2,1,2,1,2,1,2,1,2,3,2,966,8,2,1,2,3,2,969,8,2,1,2,3,2,972, - 8,2,1,2,1,2,1,2,1,2,1,2,3,2,979,8,2,1,2,1,2,1,2,3,2,984,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,3,2,993,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 1001,8,2,1,2,1,2,1,2,1,2,3,2,1007,8,2,1,2,3,2,1010,8,2,1,2,3,2,1013, - 8,2,1,2,1,2,1,2,1,2,3,2,1019,8,2,1,2,1,2,3,2,1023,8,2,1,2,1,2,1, - 2,3,2,1028,8,2,1,2,3,2,1031,8,2,1,2,1,2,3,2,1035,8,2,3,2,1037,8, - 2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1045,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3, - 2,1053,8,2,1,2,3,2,1056,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1063,8,2,1,2, - 3,2,1066,8,2,1,2,3,2,1069,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1078, - 8,2,1,2,1,2,1,2,3,2,1083,8,2,1,2,1,2,1,2,1,2,3,2,1089,8,2,1,2,1, - 2,1,2,3,2,1094,8,2,1,2,3,2,1097,8,2,1,2,1,2,3,2,1101,8,2,1,2,3,2, - 1104,8,2,1,2,1,2,3,2,1108,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,782,8,2,1,2,1,2, + 3,2,786,8,2,1,2,1,2,1,2,3,2,791,8,2,1,2,1,2,1,2,1,2,1,2,3,2,798, + 8,2,1,2,1,2,1,2,1,2,3,2,804,8,2,1,2,3,2,807,8,2,1,2,3,2,810,8,2, + 1,2,1,2,3,2,814,8,2,1,2,1,2,3,2,818,8,2,1,2,1,2,1,2,1,2,1,2,1,2, + 5,2,826,8,2,10,2,12,2,829,9,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,837,8, + 2,1,2,3,2,840,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,849,8,2,1,2,1, + 2,1,2,3,2,854,8,2,1,2,1,2,1,2,1,2,3,2,860,8,2,1,2,1,2,1,2,1,2,1, + 2,3,2,867,8,2,1,2,3,2,870,8,2,1,2,1,2,3,2,874,8,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,5,2,883,8,2,10,2,12,2,886,9,2,3,2,888,8,2,1,2,1,2, + 1,2,1,2,3,2,894,8,2,1,2,1,2,3,2,898,8,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,913,8,2,10,2,12,2,916,9,2,1,2,1, + 2,1,2,1,2,1,2,3,2,923,8,2,1,2,1,2,3,2,927,8,2,1,2,1,2,1,2,1,2,3, + 2,933,8,2,1,2,3,2,936,8,2,1,2,1,2,3,2,940,8,2,1,2,3,2,943,8,2,1, + 2,1,2,1,2,1,2,3,2,949,8,2,1,2,1,2,1,2,3,2,954,8,2,1,2,1,2,3,2,958, + 8,2,1,2,1,2,1,2,1,2,1,2,3,2,965,8,2,1,2,3,2,968,8,2,1,2,3,2,971, + 8,2,1,2,1,2,1,2,1,2,1,2,3,2,978,8,2,1,2,1,2,1,2,3,2,983,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,3,2,992,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 1000,8,2,1,2,1,2,1,2,1,2,3,2,1006,8,2,1,2,3,2,1009,8,2,1,2,3,2,1012, + 8,2,1,2,1,2,1,2,1,2,3,2,1018,8,2,1,2,1,2,3,2,1022,8,2,1,2,1,2,1, + 2,3,2,1027,8,2,1,2,3,2,1030,8,2,1,2,1,2,3,2,1034,8,2,3,2,1036,8, + 2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1044,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3, + 2,1052,8,2,1,2,3,2,1055,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1062,8,2,1,2, + 3,2,1065,8,2,1,2,3,2,1068,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1077, + 8,2,1,2,1,2,1,2,3,2,1082,8,2,1,2,1,2,1,2,1,2,3,2,1088,8,2,1,2,1, + 2,1,2,3,2,1093,8,2,1,2,3,2,1096,8,2,1,2,1,2,3,2,1100,8,2,1,2,3,2, + 1103,8,2,1,2,1,2,3,2,1107,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5, - 2,1134,8,2,10,2,12,2,1137,9,2,3,2,1139,8,2,1,2,1,2,1,2,1,2,1,2,1, - 2,3,2,1147,8,2,1,2,1,2,1,2,1,2,3,2,1153,8,2,1,2,3,2,1156,8,2,1,2, - 3,2,1159,8,2,1,2,1,2,1,2,3,2,1164,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3, - 2,1172,8,2,1,2,1,2,1,2,3,2,1177,8,2,1,2,1,2,1,2,1,2,3,2,1183,8,2, - 1,2,1,2,1,2,1,2,3,2,1189,8,2,1,2,3,2,1192,8,2,1,2,1,2,1,2,1,2,1, - 2,3,2,1199,8,2,1,2,1,2,1,2,5,2,1204,8,2,10,2,12,2,1207,9,2,1,2,1, - 2,1,2,5,2,1212,8,2,10,2,12,2,1215,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,5,2,1229,8,2,10,2,12,2,1232,9,2,1,2,1,2,1, + 2,1133,8,2,10,2,12,2,1136,9,2,3,2,1138,8,2,1,2,1,2,1,2,1,2,1,2,1, + 2,3,2,1146,8,2,1,2,1,2,1,2,1,2,3,2,1152,8,2,1,2,3,2,1155,8,2,1,2, + 3,2,1158,8,2,1,2,1,2,1,2,3,2,1163,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3, + 2,1171,8,2,1,2,1,2,1,2,3,2,1176,8,2,1,2,1,2,1,2,1,2,3,2,1182,8,2, + 1,2,1,2,1,2,1,2,3,2,1188,8,2,1,2,3,2,1191,8,2,1,2,1,2,1,2,1,2,1, + 2,3,2,1198,8,2,1,2,1,2,1,2,5,2,1203,8,2,10,2,12,2,1206,9,2,1,2,1, + 2,1,2,5,2,1211,8,2,10,2,12,2,1214,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,5,2,1228,8,2,10,2,12,2,1231,9,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,5,2,1256,8,2,10,2,12,2,1259,9,2,3,2,1261,8,2,1,2,1, - 2,5,2,1265,8,2,10,2,12,2,1268,9,2,1,2,1,2,1,2,1,2,5,2,1274,8,2,10, - 2,12,2,1277,9,2,1,2,1,2,1,2,1,2,5,2,1283,8,2,10,2,12,2,1286,9,2, - 1,2,1,2,1,2,3,2,1291,8,2,1,2,1,2,1,2,3,2,1296,8,2,1,2,1,2,1,2,3, - 2,1301,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1308,8,2,1,2,1,2,1,2,3,2,1313, - 8,2,1,2,1,2,1,2,3,2,1318,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1325,8,2,1, - 2,1,2,1,2,1,2,5,2,1331,8,2,10,2,12,2,1334,9,2,3,2,1336,8,2,1,3,1, - 3,3,3,1340,8,3,1,4,1,4,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1352, - 8,6,1,6,1,6,3,6,1356,8,6,1,6,1,6,1,6,1,6,1,6,3,6,1363,8,6,1,6,1, + 2,1,2,1,2,1,2,5,2,1255,8,2,10,2,12,2,1258,9,2,3,2,1260,8,2,1,2,1, + 2,5,2,1264,8,2,10,2,12,2,1267,9,2,1,2,1,2,1,2,1,2,5,2,1273,8,2,10, + 2,12,2,1276,9,2,1,2,1,2,1,2,1,2,5,2,1282,8,2,10,2,12,2,1285,9,2, + 1,2,1,2,1,2,3,2,1290,8,2,1,2,1,2,1,2,3,2,1295,8,2,1,2,1,2,1,2,3, + 2,1300,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1307,8,2,1,2,1,2,1,2,3,2,1312, + 8,2,1,2,1,2,1,2,3,2,1317,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1324,8,2,1, + 2,1,2,1,2,1,2,5,2,1330,8,2,10,2,12,2,1333,9,2,3,2,1335,8,2,1,3,1, + 3,3,3,1339,8,3,1,4,1,4,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1351, + 8,6,1,6,1,6,3,6,1355,8,6,1,6,1,6,1,6,1,6,1,6,3,6,1362,8,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, @@ -18305,1628 +18785,1632 @@ export class SparkSqlParser extends antlr.Parser { 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,3,6,1479,8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1487,8,6,1,6,1,6,1,6, - 1,6,1,6,1,6,3,6,1495,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1504,8, - 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1514,8,6,1,7,1,7,3,7,1518, - 8,7,1,7,3,7,1521,8,7,1,7,1,7,3,7,1525,8,7,1,7,1,7,1,8,1,8,3,8,1531, - 8,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1543,8,9,1,9,1,9, - 1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1555,8,10,1,10,1,10,1, - 10,3,10,1560,8,10,1,11,1,11,1,11,1,12,1,12,1,12,1,13,3,13,1569,8, - 13,1,13,1,13,1,13,1,14,1,14,1,14,3,14,1577,8,14,1,14,1,14,1,14,3, - 14,1582,8,14,3,14,1584,8,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14,1592, - 8,14,1,14,1,14,1,14,3,14,1597,8,14,1,14,1,14,3,14,1601,8,14,1,14, - 3,14,1604,8,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14,1612,8,14,1,14, - 1,14,1,14,3,14,1617,8,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14, - 1626,8,14,1,14,1,14,1,14,3,14,1631,8,14,1,14,3,14,1634,8,14,1,14, - 1,14,1,14,3,14,1639,8,14,1,14,1,14,3,14,1643,8,14,1,14,1,14,1,14, - 3,14,1648,8,14,3,14,1650,8,14,1,15,1,15,3,15,1654,8,15,1,16,1,16, - 1,16,1,16,1,16,5,16,1661,8,16,10,16,12,16,1664,9,16,1,16,1,16,1, - 17,1,17,1,17,3,17,1671,8,17,1,17,1,17,1,17,1,17,3,17,1677,8,17,1, - 18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3,20,1688,8,20,1,21,1, - 21,1,21,5,21,1693,8,21,10,21,12,21,1696,9,21,1,22,1,22,1,22,1,22, - 5,22,1702,8,22,10,22,12,22,1705,9,22,1,23,1,23,3,23,1709,8,23,1, - 23,3,23,1712,8,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24,1,25,1,25,1, - 25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,5,25,1734,8, - 25,10,25,12,25,1737,9,25,1,26,1,26,1,26,1,26,5,26,1743,8,26,10,26, - 12,26,1746,9,26,1,26,1,26,1,27,1,27,3,27,1752,8,27,1,27,3,27,1755, - 8,27,1,28,1,28,1,28,5,28,1760,8,28,10,28,12,28,1763,9,28,1,28,3, - 28,1766,8,28,1,29,1,29,1,29,1,29,3,29,1772,8,29,1,30,1,30,1,30,1, - 30,5,30,1778,8,30,10,30,12,30,1781,9,30,1,30,1,30,1,31,1,31,3,31, - 1787,8,31,1,31,3,31,1790,8,31,1,32,1,32,1,32,1,32,5,32,1796,8,32, - 10,32,12,32,1799,9,32,1,32,1,32,1,33,1,33,1,33,1,33,5,33,1807,8, - 33,10,33,12,33,1810,9,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34, - 3,34,1820,8,34,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1828,8,35,1,36, - 1,36,1,36,1,36,3,36,1834,8,36,1,37,1,37,1,37,1,38,1,38,1,38,1,38, - 1,38,4,38,1844,8,38,11,38,12,38,1845,1,38,1,38,1,38,1,38,1,38,3, - 38,1853,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1860,8,38,1,38,1,38,1, - 38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1872,8,38,1,38,1,38,1, - 38,1,38,5,38,1878,8,38,10,38,12,38,1881,9,38,1,38,5,38,1884,8,38, - 10,38,12,38,1887,9,38,1,38,5,38,1890,8,38,10,38,12,38,1893,9,38, - 3,38,1895,8,38,1,39,1,39,1,40,1,40,1,41,1,41,1,42,1,42,1,43,1,43, - 1,44,1,44,1,45,1,45,1,46,1,46,1,46,5,46,1914,8,46,10,46,12,46,1917, - 9,46,1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1927,8,48,1,49, - 1,49,1,49,1,49,1,49,5,49,1934,8,49,10,49,12,49,1937,9,49,3,49,1939, - 8,49,1,49,1,49,1,49,1,49,1,49,5,49,1946,8,49,10,49,12,49,1949,9, - 49,3,49,1951,8,49,1,49,1,49,1,49,1,49,1,49,5,49,1958,8,49,10,49, - 12,49,1961,9,49,3,49,1963,8,49,1,49,1,49,1,49,1,49,1,49,5,49,1970, - 8,49,10,49,12,49,1973,9,49,3,49,1975,8,49,1,49,3,49,1978,8,49,1, - 49,1,49,1,49,3,49,1983,8,49,3,49,1985,8,49,1,49,1,49,3,49,1989,8, - 49,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,51,3,51,2000,8,51,1, - 51,1,51,1,51,1,51,3,51,2006,8,51,1,51,1,51,1,51,1,51,3,51,2012,8, - 51,1,51,5,51,2015,8,51,10,51,12,51,2018,9,51,1,52,1,52,1,52,1,52, - 1,52,1,52,1,52,1,52,1,52,3,52,2029,8,52,1,53,1,53,3,53,2033,8,53, - 1,53,3,53,2036,8,53,1,53,1,53,3,53,2040,8,53,1,54,1,54,4,54,2044, - 8,54,11,54,12,54,2045,1,55,1,55,3,55,2050,8,55,1,55,1,55,1,55,1, - 55,5,55,2056,8,55,10,55,12,55,2059,9,55,1,55,3,55,2062,8,55,1,55, - 3,55,2065,8,55,1,55,3,55,2068,8,55,1,55,3,55,2071,8,55,1,55,1,55, - 3,55,2075,8,55,1,56,1,56,3,56,2079,8,56,1,56,5,56,2082,8,56,10,56, - 12,56,2085,9,56,1,56,3,56,2088,8,56,1,56,3,56,2091,8,56,1,56,3,56, - 2094,8,56,1,56,3,56,2097,8,56,1,56,1,56,3,56,2101,8,56,1,56,5,56, - 2104,8,56,10,56,12,56,2107,9,56,1,56,3,56,2110,8,56,1,56,3,56,2113, - 8,56,1,56,3,56,2116,8,56,1,56,3,56,2119,8,56,3,56,2121,8,56,1,57, - 1,57,1,57,1,57,3,57,2127,8,57,1,57,1,57,1,57,1,57,1,57,3,57,2134, - 8,57,1,57,1,57,1,57,3,57,2139,8,57,1,57,3,57,2142,8,57,1,57,3,57, - 2145,8,57,1,57,1,57,3,57,2149,8,57,1,57,1,57,1,57,1,57,1,57,1,57, - 1,57,1,57,3,57,2159,8,57,1,57,1,57,3,57,2163,8,57,3,57,2165,8,57, - 1,57,3,57,2168,8,57,1,57,1,57,3,57,2172,8,57,1,58,1,58,5,58,2176, - 8,58,10,58,12,58,2179,9,58,1,58,3,58,2182,8,58,1,58,1,58,1,59,1, - 59,1,59,1,60,1,60,1,60,1,60,3,60,2193,8,60,1,60,1,60,1,60,1,61,1, - 61,1,61,1,61,1,61,3,61,2203,8,61,1,61,1,61,3,61,2207,8,61,1,61,1, - 61,1,61,1,62,1,62,1,62,1,62,1,62,1,62,1,62,3,62,2219,8,62,1,62,1, - 62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2231,8,63,1,64,1, - 64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,5,64,2244,8,64,10, - 64,12,64,2247,9,64,1,64,1,64,3,64,2251,8,64,1,65,1,65,1,65,1,65, - 3,65,2257,8,65,1,66,1,66,1,66,5,66,2262,8,66,10,66,12,66,2265,9, - 66,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,69,1,69,1,69,1,70,1,70,1, - 70,3,70,2280,8,70,1,70,5,70,2283,8,70,10,70,12,70,2286,9,70,1,70, - 1,70,1,71,1,71,1,71,1,71,1,71,1,71,5,71,2296,8,71,10,71,12,71,2299, - 9,71,1,71,1,71,3,71,2303,8,71,1,72,1,72,1,72,1,72,5,72,2309,8,72, - 10,72,12,72,2312,9,72,1,72,5,72,2315,8,72,10,72,12,72,2318,9,72, - 1,72,3,72,2321,8,72,1,72,3,72,2324,8,72,1,73,1,73,1,74,3,74,2329, - 8,74,1,74,1,74,1,74,1,74,1,74,3,74,2336,8,74,1,74,1,74,1,74,1,74, - 3,74,2342,8,74,1,75,1,75,1,75,1,75,1,75,5,75,2349,8,75,10,75,12, - 75,2352,9,75,1,75,1,75,1,75,1,75,1,75,5,75,2359,8,75,10,75,12,75, - 2362,9,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75, - 2374,8,75,10,75,12,75,2377,9,75,1,75,1,75,3,75,2381,8,75,3,75,2383, - 8,75,1,76,1,76,1,76,3,76,2388,8,76,1,77,1,77,1,77,1,77,1,77,5,77, - 2395,8,77,10,77,12,77,2398,9,77,1,77,1,77,1,77,1,77,1,77,1,77,1, - 77,1,77,5,77,2408,8,77,10,77,12,77,2411,9,77,1,77,1,77,3,77,2415, - 8,77,1,78,1,78,3,78,2419,8,78,1,79,1,79,1,79,1,79,1,79,3,79,2426, - 8,79,1,79,1,79,1,79,3,79,2431,8,79,5,79,2433,8,79,10,79,12,79,2436, - 9,79,3,79,2438,8,79,1,79,3,79,2441,8,79,1,80,1,80,1,80,1,80,1,80, - 1,80,1,80,1,80,1,80,1,80,5,80,2453,8,80,10,80,12,80,2456,9,80,1, - 80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,5,81,2466,8,81,10,81,12,81, - 2469,9,81,1,81,1,81,3,81,2473,8,81,1,82,1,82,3,82,2477,8,82,1,82, - 3,82,2480,8,82,1,83,1,83,3,83,2484,8,83,1,83,1,83,1,83,1,83,3,83, - 2490,8,83,1,83,3,83,2493,8,83,1,84,1,84,1,84,1,85,1,85,3,85,2500, - 8,85,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,5,86,2510,8,86,10,86, - 12,86,2513,9,86,1,86,1,86,1,87,1,87,1,87,1,87,5,87,2521,8,87,10, - 87,12,87,2524,9,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,5,87, - 2534,8,87,10,87,12,87,2537,9,87,1,87,1,87,1,88,1,88,1,88,1,88,5, - 88,2545,8,88,10,88,12,88,2548,9,88,1,88,1,88,3,88,2552,8,88,1,89, - 1,89,1,90,1,90,1,91,1,91,3,91,2560,8,91,1,92,1,92,1,93,3,93,2565, - 8,93,1,93,1,93,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,96,1,96,1,96, - 3,96,2579,8,96,1,96,1,96,1,96,1,96,1,96,5,96,2586,8,96,10,96,12, - 96,2589,9,96,3,96,2591,8,96,1,96,1,96,1,96,3,96,2596,8,96,1,96,1, - 96,1,96,5,96,2601,8,96,10,96,12,96,2604,9,96,3,96,2606,8,96,1,97, - 1,97,1,98,1,98,3,98,2612,8,98,1,98,1,98,5,98,2616,8,98,10,98,12, - 98,2619,9,98,3,98,2621,8,98,1,99,1,99,1,99,3,99,2626,8,99,1,100, - 1,100,1,100,3,100,2631,8,100,1,100,1,100,3,100,2635,8,100,1,100, - 1,100,1,100,1,100,3,100,2641,8,100,1,100,1,100,3,100,2645,8,100, - 1,101,3,101,2648,8,101,1,101,1,101,1,101,3,101,2653,8,101,1,101, - 3,101,2656,8,101,1,101,1,101,1,101,3,101,2661,8,101,1,101,1,101, - 3,101,2665,8,101,1,101,3,101,2668,8,101,1,101,3,101,2671,8,101,1, - 102,1,102,1,102,1,102,3,102,2677,8,102,1,103,1,103,1,103,3,103,2682, - 8,103,1,103,1,103,1,103,1,103,1,103,3,103,2689,8,103,1,104,3,104, - 2692,8,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,1,104,3,104,2710,8,104,3,104, - 2712,8,104,1,104,3,104,2715,8,104,1,105,1,105,1,105,1,105,1,106, - 1,106,1,106,5,106,2724,8,106,10,106,12,106,2727,9,106,1,107,1,107, - 1,107,1,107,5,107,2733,8,107,10,107,12,107,2736,9,107,1,107,1,107, - 1,108,1,108,3,108,2742,8,108,1,109,1,109,1,109,1,109,5,109,2748, - 8,109,10,109,12,109,2751,9,109,1,109,1,109,1,110,1,110,3,110,2757, - 8,110,1,111,1,111,3,111,2761,8,111,1,111,3,111,2764,8,111,1,111, - 1,111,1,111,1,111,1,111,1,111,3,111,2772,8,111,1,111,1,111,1,111, - 1,111,1,111,1,111,3,111,2780,8,111,1,111,1,111,1,111,1,111,3,111, - 2786,8,111,1,112,1,112,1,112,1,112,5,112,2792,8,112,10,112,12,112, - 2795,9,112,1,112,1,112,1,113,1,113,1,113,3,113,2802,8,113,1,113, - 1,113,1,113,1,113,1,113,3,113,2809,8,113,1,113,1,113,1,113,1,113, - 1,113,3,113,2816,8,113,3,113,2818,8,113,1,114,1,114,1,114,1,114, - 1,114,1,114,1,114,1,114,1,114,5,114,2829,8,114,10,114,12,114,2832, - 9,114,1,114,1,114,1,114,3,114,2837,8,114,3,114,2839,8,114,1,114, - 1,114,1,114,1,114,1,114,1,114,5,114,2847,8,114,10,114,12,114,2850, - 9,114,1,114,1,114,1,114,3,114,2855,8,114,3,114,2857,8,114,1,115, - 1,115,1,115,1,115,1,116,1,116,3,116,2865,8,116,1,117,1,117,3,117, - 2869,8,117,1,118,1,118,1,118,1,118,1,118,5,118,2876,8,118,10,118, - 12,118,2879,9,118,3,118,2881,8,118,1,118,1,118,1,118,1,119,3,119, - 2887,8,119,1,119,1,119,3,119,2891,8,119,3,119,2893,8,119,1,120,1, - 120,1,120,1,120,1,120,1,120,1,120,3,120,2902,8,120,1,120,1,120,1, - 120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,2914,8,120,3, - 120,2916,8,120,1,120,1,120,1,120,1,120,1,120,3,120,2923,8,120,1, - 120,1,120,1,120,1,120,1,120,3,120,2930,8,120,1,120,1,120,1,120,1, - 120,3,120,2936,8,120,1,120,1,120,1,120,1,120,3,120,2942,8,120,3, - 120,2944,8,120,1,121,1,121,1,121,5,121,2949,8,121,10,121,12,121, - 2952,9,121,1,122,1,122,1,122,5,122,2957,8,122,10,122,12,122,2960, - 9,122,1,123,1,123,1,123,5,123,2965,8,123,10,123,12,123,2968,9,123, - 1,124,1,124,1,124,3,124,2973,8,124,1,125,1,125,1,125,3,125,2978, - 8,125,1,125,1,125,1,126,1,126,1,126,3,126,2985,8,126,1,126,1,126, - 1,127,1,127,3,127,2991,8,127,1,127,3,127,2994,8,127,1,127,1,127, - 3,127,2998,8,127,3,127,3000,8,127,1,128,1,128,1,128,5,128,3005,8, - 128,10,128,12,128,3008,9,128,1,129,1,129,1,129,1,129,5,129,3014, - 8,129,10,129,12,129,3017,9,129,1,129,1,129,1,130,1,130,3,130,3023, - 8,130,1,131,1,131,1,131,1,131,1,131,1,131,5,131,3031,8,131,10,131, - 12,131,3034,9,131,1,131,1,131,3,131,3038,8,131,1,132,1,132,3,132, - 3042,8,132,1,133,1,133,1,134,1,134,1,134,1,134,1,135,1,135,3,135, - 3052,8,135,1,136,1,136,1,136,5,136,3057,8,136,10,136,12,136,3060, - 9,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, - 3,137,3072,8,137,3,137,3074,8,137,1,137,1,137,1,137,1,137,1,137, - 1,137,5,137,3082,8,137,10,137,12,137,3085,9,137,1,138,3,138,3088, - 8,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3096,8,138,1,138, - 1,138,1,138,1,138,1,138,5,138,3103,8,138,10,138,12,138,3106,9,138, - 1,138,1,138,1,138,3,138,3111,8,138,1,138,1,138,1,138,1,138,1,138, - 1,138,3,138,3119,8,138,1,138,1,138,1,138,3,138,3124,8,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,138,1,138,5,138,3134,8,138,10,138, - 12,138,3137,9,138,1,138,1,138,3,138,3141,8,138,1,138,3,138,3144, - 8,138,1,138,1,138,1,138,1,138,3,138,3150,8,138,1,138,1,138,3,138, - 3154,8,138,1,138,1,138,1,138,3,138,3159,8,138,1,138,1,138,1,138, - 3,138,3164,8,138,1,138,1,138,1,138,3,138,3169,8,138,1,139,1,139, - 1,139,1,139,3,139,3175,8,139,1,139,1,139,1,139,1,139,1,139,1,139, + 6,3,6,1478,8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1486,8,6,1,6,1,6,1,6, + 1,6,1,6,1,6,3,6,1494,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1503,8, + 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1513,8,6,1,7,1,7,3,7,1517, + 8,7,1,7,3,7,1520,8,7,1,7,1,7,3,7,1524,8,7,1,7,1,7,1,8,1,8,3,8,1530, + 8,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1542,8,9,1,9,1,9, + 1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1554,8,10,1,10,1,10,1, + 10,3,10,1559,8,10,1,11,1,11,1,11,1,12,1,12,1,12,1,13,3,13,1568,8, + 13,1,13,1,13,1,13,1,14,1,14,1,14,3,14,1576,8,14,1,14,1,14,1,14,3, + 14,1581,8,14,3,14,1583,8,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14,1591, + 8,14,1,14,1,14,1,14,3,14,1596,8,14,1,14,1,14,3,14,1600,8,14,1,14, + 3,14,1603,8,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14,1611,8,14,1,14, + 1,14,1,14,3,14,1616,8,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14, + 1625,8,14,1,14,1,14,1,14,3,14,1630,8,14,1,14,3,14,1633,8,14,1,14, + 1,14,1,14,3,14,1638,8,14,1,14,1,14,3,14,1642,8,14,1,14,1,14,1,14, + 3,14,1647,8,14,3,14,1649,8,14,1,15,1,15,3,15,1653,8,15,1,16,1,16, + 1,16,1,16,1,16,5,16,1660,8,16,10,16,12,16,1663,9,16,1,16,1,16,1, + 17,1,17,1,17,3,17,1670,8,17,1,17,1,17,1,17,1,17,3,17,1676,8,17,1, + 18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3,20,1687,8,20,1,21,1, + 21,1,21,5,21,1692,8,21,10,21,12,21,1695,9,21,1,22,1,22,1,22,1,22, + 5,22,1701,8,22,10,22,12,22,1704,9,22,1,23,1,23,3,23,1708,8,23,1, + 23,3,23,1711,8,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24,1,25,1,25,1, + 25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,5,25,1733,8, + 25,10,25,12,25,1736,9,25,1,26,1,26,1,26,1,26,5,26,1742,8,26,10,26, + 12,26,1745,9,26,1,26,1,26,1,27,1,27,3,27,1751,8,27,1,27,3,27,1754, + 8,27,1,28,1,28,1,28,5,28,1759,8,28,10,28,12,28,1762,9,28,1,28,3, + 28,1765,8,28,1,29,1,29,1,29,1,29,3,29,1771,8,29,1,30,1,30,1,30,1, + 30,5,30,1777,8,30,10,30,12,30,1780,9,30,1,30,1,30,1,31,1,31,3,31, + 1786,8,31,1,31,3,31,1789,8,31,1,32,1,32,1,32,1,32,5,32,1795,8,32, + 10,32,12,32,1798,9,32,1,32,1,32,1,33,1,33,1,33,1,33,5,33,1806,8, + 33,10,33,12,33,1809,9,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34, + 3,34,1819,8,34,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1827,8,35,1,36, + 1,36,1,36,1,36,3,36,1833,8,36,1,37,1,37,1,37,1,38,1,38,1,38,1,38, + 1,38,4,38,1843,8,38,11,38,12,38,1844,1,38,1,38,1,38,1,38,1,38,3, + 38,1852,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1859,8,38,1,38,1,38,1, + 38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1871,8,38,1,38,1,38,1, + 38,1,38,5,38,1877,8,38,10,38,12,38,1880,9,38,1,38,5,38,1883,8,38, + 10,38,12,38,1886,9,38,1,38,5,38,1889,8,38,10,38,12,38,1892,9,38, + 3,38,1894,8,38,1,39,1,39,1,40,1,40,1,41,1,41,1,42,1,42,1,43,1,43, + 1,44,1,44,1,45,1,45,3,45,1910,8,45,1,46,1,46,1,46,5,46,1915,8,46, + 10,46,12,46,1918,9,46,1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,3, + 48,1928,8,48,1,49,1,49,1,49,1,49,1,49,5,49,1935,8,49,10,49,12,49, + 1938,9,49,3,49,1940,8,49,1,49,1,49,1,49,1,49,1,49,5,49,1947,8,49, + 10,49,12,49,1950,9,49,3,49,1952,8,49,1,49,1,49,1,49,1,49,1,49,5, + 49,1959,8,49,10,49,12,49,1962,9,49,3,49,1964,8,49,1,49,1,49,1,49, + 1,49,1,49,5,49,1971,8,49,10,49,12,49,1974,9,49,3,49,1976,8,49,1, + 49,3,49,1979,8,49,1,49,1,49,1,49,3,49,1984,8,49,3,49,1986,8,49,1, + 49,1,49,3,49,1990,8,49,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1, + 51,3,51,2001,8,51,1,51,1,51,1,51,1,51,3,51,2007,8,51,1,51,1,51,1, + 51,1,51,3,51,2013,8,51,1,51,5,51,2016,8,51,10,51,12,51,2019,9,51, + 1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2030,8,52,1,53, + 1,53,3,53,2034,8,53,1,53,3,53,2037,8,53,1,53,1,53,3,53,2041,8,53, + 1,54,1,54,4,54,2045,8,54,11,54,12,54,2046,1,55,1,55,3,55,2051,8, + 55,1,55,1,55,1,55,1,55,5,55,2057,8,55,10,55,12,55,2060,9,55,1,55, + 3,55,2063,8,55,1,55,3,55,2066,8,55,1,55,3,55,2069,8,55,1,55,3,55, + 2072,8,55,1,55,1,55,3,55,2076,8,55,1,56,1,56,3,56,2080,8,56,1,56, + 5,56,2083,8,56,10,56,12,56,2086,9,56,1,56,3,56,2089,8,56,1,56,3, + 56,2092,8,56,1,56,3,56,2095,8,56,1,56,3,56,2098,8,56,1,56,1,56,3, + 56,2102,8,56,1,56,5,56,2105,8,56,10,56,12,56,2108,9,56,1,56,3,56, + 2111,8,56,1,56,3,56,2114,8,56,1,56,3,56,2117,8,56,1,56,3,56,2120, + 8,56,3,56,2122,8,56,1,57,1,57,1,57,1,57,3,57,2128,8,57,1,57,1,57, + 1,57,1,57,1,57,3,57,2135,8,57,1,57,1,57,1,57,3,57,2140,8,57,1,57, + 3,57,2143,8,57,1,57,3,57,2146,8,57,1,57,1,57,3,57,2150,8,57,1,57, + 1,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,2160,8,57,1,57,1,57,3,57, + 2164,8,57,3,57,2166,8,57,1,57,3,57,2169,8,57,1,57,1,57,3,57,2173, + 8,57,1,58,1,58,5,58,2177,8,58,10,58,12,58,2180,9,58,1,58,3,58,2183, + 8,58,1,58,1,58,1,59,1,59,1,59,1,60,1,60,1,60,1,60,3,60,2194,8,60, + 1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,3,61,2204,8,61,1,61,1,61, + 3,61,2208,8,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,62,1,62, + 3,62,2220,8,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63, + 3,63,2232,8,63,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64, + 1,64,5,64,2245,8,64,10,64,12,64,2248,9,64,1,64,1,64,3,64,2252,8, + 64,1,65,1,65,1,65,1,65,3,65,2258,8,65,1,66,1,66,1,66,5,66,2263,8, + 66,10,66,12,66,2266,9,66,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,69, + 1,69,1,69,1,70,1,70,1,70,3,70,2281,8,70,1,70,5,70,2284,8,70,10,70, + 12,70,2287,9,70,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,5,71,2297, + 8,71,10,71,12,71,2300,9,71,1,71,1,71,3,71,2304,8,71,1,72,1,72,1, + 72,1,72,5,72,2310,8,72,10,72,12,72,2313,9,72,1,72,5,72,2316,8,72, + 10,72,12,72,2319,9,72,1,72,3,72,2322,8,72,1,72,3,72,2325,8,72,1, + 73,1,73,1,74,3,74,2330,8,74,1,74,1,74,1,74,1,74,1,74,3,74,2337,8, + 74,1,74,1,74,1,74,1,74,3,74,2343,8,74,1,75,1,75,1,75,1,75,1,75,5, + 75,2350,8,75,10,75,12,75,2353,9,75,1,75,1,75,1,75,1,75,1,75,5,75, + 2360,8,75,10,75,12,75,2363,9,75,1,75,1,75,1,75,1,75,1,75,1,75,1, + 75,1,75,1,75,1,75,5,75,2375,8,75,10,75,12,75,2378,9,75,1,75,1,75, + 3,75,2382,8,75,3,75,2384,8,75,1,76,1,76,1,76,3,76,2389,8,76,1,77, + 1,77,1,77,1,77,1,77,5,77,2396,8,77,10,77,12,77,2399,9,77,1,77,1, + 77,1,77,1,77,1,77,1,77,1,77,1,77,5,77,2409,8,77,10,77,12,77,2412, + 9,77,1,77,1,77,3,77,2416,8,77,1,78,1,78,3,78,2420,8,78,1,79,1,79, + 1,79,1,79,1,79,3,79,2427,8,79,1,79,1,79,1,79,3,79,2432,8,79,5,79, + 2434,8,79,10,79,12,79,2437,9,79,3,79,2439,8,79,1,79,3,79,2442,8, + 79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,5,80,2454,8, + 80,10,80,12,80,2457,9,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81, + 5,81,2467,8,81,10,81,12,81,2470,9,81,1,81,1,81,3,81,2474,8,81,1, + 82,1,82,3,82,2478,8,82,1,82,3,82,2481,8,82,1,83,1,83,3,83,2485,8, + 83,1,83,1,83,1,83,1,83,3,83,2491,8,83,1,83,3,83,2494,8,83,1,84,1, + 84,1,84,1,85,1,85,3,85,2501,8,85,1,86,1,86,1,86,1,86,1,86,1,86,1, + 86,1,86,5,86,2511,8,86,10,86,12,86,2514,9,86,1,86,1,86,1,87,1,87, + 1,87,1,87,5,87,2522,8,87,10,87,12,87,2525,9,87,1,87,1,87,1,87,1, + 87,1,87,1,87,1,87,1,87,5,87,2535,8,87,10,87,12,87,2538,9,87,1,87, + 1,87,1,88,1,88,1,88,1,88,5,88,2546,8,88,10,88,12,88,2549,9,88,1, + 88,1,88,3,88,2553,8,88,1,89,1,89,1,90,1,90,1,91,1,91,3,91,2561,8, + 91,1,92,1,92,1,93,3,93,2566,8,93,1,93,1,93,1,94,1,94,1,94,1,94,1, + 95,1,95,1,95,1,96,1,96,1,96,3,96,2580,8,96,1,96,1,96,1,96,1,96,1, + 96,5,96,2587,8,96,10,96,12,96,2590,9,96,3,96,2592,8,96,1,96,1,96, + 1,96,3,96,2597,8,96,1,96,1,96,1,96,5,96,2602,8,96,10,96,12,96,2605, + 9,96,3,96,2607,8,96,1,97,1,97,1,98,1,98,3,98,2613,8,98,1,98,1,98, + 5,98,2617,8,98,10,98,12,98,2620,9,98,3,98,2622,8,98,1,99,1,99,1, + 99,3,99,2627,8,99,1,100,1,100,1,100,3,100,2632,8,100,1,100,1,100, + 3,100,2636,8,100,1,100,1,100,1,100,1,100,3,100,2642,8,100,1,100, + 1,100,3,100,2646,8,100,1,101,3,101,2649,8,101,1,101,1,101,1,101, + 3,101,2654,8,101,1,101,3,101,2657,8,101,1,101,1,101,1,101,3,101, + 2662,8,101,1,101,1,101,3,101,2666,8,101,1,101,3,101,2669,8,101,1, + 101,3,101,2672,8,101,1,102,1,102,1,102,1,102,3,102,2678,8,102,1, + 103,1,103,1,103,3,103,2683,8,103,1,103,1,103,1,103,1,103,1,103,3, + 103,2690,8,103,1,104,3,104,2693,8,104,1,104,1,104,1,104,1,104,1, + 104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, + 1,104,3,104,2711,8,104,3,104,2713,8,104,1,104,3,104,2716,8,104,1, + 105,1,105,1,105,1,105,1,106,1,106,1,106,5,106,2725,8,106,10,106, + 12,106,2728,9,106,1,107,1,107,1,107,1,107,5,107,2734,8,107,10,107, + 12,107,2737,9,107,1,107,1,107,1,108,1,108,3,108,2743,8,108,1,109, + 1,109,1,109,1,109,5,109,2749,8,109,10,109,12,109,2752,9,109,1,109, + 1,109,1,110,1,110,3,110,2758,8,110,1,111,1,111,1,111,3,111,2763, + 8,111,1,111,3,111,2766,8,111,1,111,3,111,2769,8,111,1,111,1,111, + 1,111,1,111,1,111,1,111,3,111,2777,8,111,1,111,1,111,1,111,1,111, + 1,111,1,111,3,111,2785,8,111,1,111,1,111,1,111,1,111,3,111,2791, + 8,111,1,112,1,112,1,112,1,112,5,112,2797,8,112,10,112,12,112,2800, + 9,112,1,112,1,112,1,113,1,113,1,113,3,113,2807,8,113,1,113,1,113, + 1,113,1,113,1,113,3,113,2814,8,113,1,113,1,113,1,113,1,113,1,113, + 3,113,2821,8,113,3,113,2823,8,113,1,114,1,114,1,114,1,114,1,114, + 1,114,1,114,1,114,1,114,5,114,2834,8,114,10,114,12,114,2837,9,114, + 1,114,1,114,1,114,3,114,2842,8,114,3,114,2844,8,114,1,114,1,114, + 1,114,1,114,1,114,1,114,5,114,2852,8,114,10,114,12,114,2855,9,114, + 1,114,1,114,1,114,3,114,2860,8,114,3,114,2862,8,114,1,115,1,115, + 1,115,1,115,1,116,1,116,3,116,2870,8,116,1,117,1,117,3,117,2874, + 8,117,1,118,1,118,1,118,1,118,1,118,5,118,2881,8,118,10,118,12,118, + 2884,9,118,3,118,2886,8,118,1,118,1,118,1,118,1,119,3,119,2892,8, + 119,1,119,1,119,3,119,2896,8,119,3,119,2898,8,119,1,120,1,120,1, + 120,1,120,1,120,1,120,1,120,3,120,2907,8,120,1,120,1,120,1,120,1, + 120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,2919,8,120,3,120,2921, + 8,120,1,120,1,120,1,120,1,120,1,120,3,120,2928,8,120,1,120,1,120, + 1,120,1,120,1,120,3,120,2935,8,120,1,120,1,120,1,120,1,120,3,120, + 2941,8,120,1,120,1,120,1,120,1,120,3,120,2947,8,120,3,120,2949,8, + 120,1,121,1,121,1,121,5,121,2954,8,121,10,121,12,121,2957,9,121, + 1,122,1,122,1,122,5,122,2962,8,122,10,122,12,122,2965,9,122,1,123, + 1,123,1,123,5,123,2970,8,123,10,123,12,123,2973,9,123,1,124,1,124, + 1,124,3,124,2978,8,124,1,125,1,125,1,125,3,125,2983,8,125,1,125, + 1,125,1,126,1,126,1,126,3,126,2990,8,126,1,126,1,126,1,127,1,127, + 3,127,2996,8,127,1,127,3,127,2999,8,127,1,127,1,127,3,127,3003,8, + 127,3,127,3005,8,127,1,128,1,128,1,128,5,128,3010,8,128,10,128,12, + 128,3013,9,128,1,129,1,129,1,129,1,129,5,129,3019,8,129,10,129,12, + 129,3022,9,129,1,129,1,129,1,130,1,130,3,130,3028,8,130,1,131,1, + 131,1,131,1,131,1,131,1,131,5,131,3036,8,131,10,131,12,131,3039, + 9,131,1,131,1,131,3,131,3043,8,131,1,132,1,132,3,132,3047,8,132, + 1,133,1,133,1,134,1,134,1,134,1,134,1,135,1,135,3,135,3057,8,135, + 1,136,1,136,1,136,5,136,3062,8,136,10,136,12,136,3065,9,136,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,3,137,3077, + 8,137,3,137,3079,8,137,1,137,1,137,1,137,1,137,1,137,1,137,5,137, + 3087,8,137,10,137,12,137,3090,9,137,1,138,3,138,3093,8,138,1,138, + 1,138,1,138,1,138,1,138,1,138,3,138,3101,8,138,1,138,1,138,1,138, + 1,138,1,138,5,138,3108,8,138,10,138,12,138,3111,9,138,1,138,1,138, + 1,138,3,138,3116,8,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138, + 3124,8,138,1,138,1,138,1,138,3,138,3129,8,138,1,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,5,138,3139,8,138,10,138,12,138,3142, + 9,138,1,138,1,138,3,138,3146,8,138,1,138,3,138,3149,8,138,1,138, + 1,138,1,138,1,138,3,138,3155,8,138,1,138,1,138,3,138,3159,8,138, + 1,138,1,138,1,138,3,138,3164,8,138,1,138,1,138,1,138,3,138,3169, + 8,138,1,138,1,138,1,138,3,138,3174,8,138,1,139,1,139,1,139,1,139, + 3,139,3180,8,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, - 1,139,1,139,5,139,3196,8,139,10,139,12,139,3199,9,139,1,140,1,140, - 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3209,8,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3221,8,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,4,141,3231,8,141, - 11,141,12,141,3232,1,141,1,141,3,141,3237,8,141,1,141,1,141,1,141, - 1,141,1,141,4,141,3244,8,141,11,141,12,141,3245,1,141,1,141,3,141, - 3250,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,5,141,3266,8,141,10,141,12,141,3269, - 9,141,3,141,3271,8,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141, - 3279,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3288, - 8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3297,8,141, + 5,139,3201,8,139,10,139,12,139,3204,9,139,1,140,1,140,1,141,1,141, + 1,141,1,141,1,141,1,141,3,141,3214,8,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3226,8,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,4,141,3236,8,141,11,141,12,141, + 3237,1,141,1,141,3,141,3242,8,141,1,141,1,141,1,141,1,141,1,141, + 4,141,3249,8,141,11,141,12,141,3250,1,141,1,141,3,141,3255,8,141, 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,4,141,3318,8,141, - 11,141,12,141,3319,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3336,8,141,1,141,1,141, - 1,141,5,141,3341,8,141,10,141,12,141,3344,9,141,3,141,3346,8,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3355,8,141,1,141, - 1,141,3,141,3359,8,141,1,141,1,141,3,141,3363,8,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,4,141,3373,8,141,11,141,12,141, - 3374,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,5,141,3271,8,141,10,141,12,141,3274,9,141,3,141, + 3276,8,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3284,8,141, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3293,8,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3302,8,141,1,141,1,141, 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,3,141,3400,8,141,1,141,1,141,1,141,1,141,1,141,3,141, - 3407,8,141,1,141,3,141,3410,8,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3425,8,141, + 1,141,1,141,1,141,1,141,1,141,1,141,4,141,3323,8,141,11,141,12,141, + 3324,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,1,141,3,141,3341,8,141,1,141,1,141,1,141,5,141, + 3346,8,141,10,141,12,141,3349,9,141,3,141,3351,8,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,3,141,3360,8,141,1,141,1,141,3,141, + 3364,8,141,1,141,1,141,3,141,3368,8,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,1,141,4,141,3378,8,141,11,141,12,141,3379,1,141, 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3446,8,141, - 1,141,1,141,3,141,3450,8,141,3,141,3452,8,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,5,141,3462,8,141,10,141,12,141,3465, - 9,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3474,8,142, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, - 4,143,3487,8,143,11,143,12,143,3488,3,143,3491,8,143,1,144,1,144, - 1,145,1,145,1,146,1,146,1,147,1,147,1,148,1,148,1,148,3,148,3504, - 8,148,1,149,1,149,3,149,3508,8,149,1,150,1,150,1,150,4,150,3513, - 8,150,11,150,12,150,3514,1,151,1,151,1,151,3,151,3520,8,151,1,152, - 1,152,1,152,1,152,1,152,1,153,3,153,3528,8,153,1,153,1,153,1,153, - 3,153,3533,8,153,1,154,1,154,1,155,1,155,1,156,1,156,1,156,3,156, - 3542,8,156,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 3,141,3405,8,141,1,141,1,141,1,141,1,141,1,141,3,141,3412,8,141, + 1,141,3,141,3415,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3430,8,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3451,8,141,1,141,1,141, + 3,141,3455,8,141,3,141,3457,8,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,5,141,3467,8,141,10,141,12,141,3470,9,141,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,3,142,3479,8,142,1,143,1,143, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,4,143,3492, + 8,143,11,143,12,143,3493,3,143,3496,8,143,1,144,1,144,1,145,1,145, + 1,146,1,146,1,147,1,147,1,148,1,148,1,148,3,148,3509,8,148,1,149, + 1,149,3,149,3513,8,149,1,150,1,150,1,150,4,150,3518,8,150,11,150, + 12,150,3519,1,151,1,151,1,151,3,151,3525,8,151,1,152,1,152,1,152, + 1,152,1,152,1,153,3,153,3533,8,153,1,153,1,153,1,153,3,153,3538, + 8,153,1,154,1,154,1,155,1,155,1,156,1,156,1,156,3,156,3547,8,156, 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157, - 3574,8,157,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,3,158,3591,8,158,1,158,1,158, - 3,158,3595,8,158,1,158,1,158,1,158,1,158,3,158,3601,8,158,1,158, - 1,158,1,158,1,158,3,158,3607,8,158,1,158,1,158,1,158,1,158,1,158, - 5,158,3614,8,158,10,158,12,158,3617,9,158,1,158,3,158,3620,8,158, - 3,158,3622,8,158,1,159,1,159,1,159,5,159,3627,8,159,10,159,12,159, - 3630,9,159,1,160,1,160,1,160,5,160,3635,8,160,10,160,12,160,3638, - 9,160,1,161,1,161,1,161,5,161,3643,8,161,10,161,12,161,3646,9,161, - 1,162,1,162,1,162,5,162,3651,8,162,10,162,12,162,3654,9,162,1,163, - 1,163,1,163,1,163,1,163,3,163,3661,8,163,1,164,1,164,1,164,1,165, - 1,165,1,165,1,166,1,166,1,166,5,166,3672,8,166,10,166,12,166,3675, - 9,166,1,167,1,167,1,167,1,167,3,167,3681,8,167,1,167,3,167,3684, - 8,167,1,168,1,168,1,168,5,168,3689,8,168,10,168,12,168,3692,9,168, - 1,169,1,169,1,169,5,169,3697,8,169,10,169,12,169,3700,9,169,1,170, - 1,170,1,170,1,170,1,170,3,170,3707,8,170,1,171,1,171,1,171,1,171, - 1,171,1,171,1,171,1,172,1,172,1,172,5,172,3719,8,172,10,172,12,172, - 3722,9,172,1,173,1,173,3,173,3726,8,173,1,173,1,173,1,173,3,173, - 3731,8,173,1,173,3,173,3734,8,173,1,174,1,174,1,174,1,174,1,174, - 1,175,1,175,1,175,1,175,5,175,3745,8,175,10,175,12,175,3748,9,175, - 1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178, - 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,5,178,3769,8,178, - 10,178,12,178,3772,9,178,1,178,1,178,1,178,1,178,1,178,5,178,3779, - 8,178,10,178,12,178,3782,9,178,3,178,3784,8,178,1,178,1,178,1,178, - 1,178,1,178,5,178,3791,8,178,10,178,12,178,3794,9,178,3,178,3796, - 8,178,3,178,3798,8,178,1,178,3,178,3801,8,178,1,178,3,178,3804,8, - 178,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, - 1,179,1,179,1,179,1,179,1,179,1,179,3,179,3822,8,179,1,180,1,180, - 1,180,1,180,1,180,1,180,1,180,3,180,3831,8,180,1,181,1,181,1,181, - 5,181,3836,8,181,10,181,12,181,3839,9,181,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,1,182,1,182,3,182,3850,8,182,1,183,1,183,1,184, - 1,184,1,184,5,184,3857,8,184,10,184,12,184,3860,9,184,1,185,1,185, - 1,185,1,186,1,186,4,186,3867,8,186,11,186,12,186,3868,1,186,3,186, - 3872,8,186,1,187,1,187,3,187,3876,8,187,1,188,1,188,1,188,1,188, - 3,188,3882,8,188,1,189,1,189,1,190,1,190,1,191,3,191,3889,8,191, - 1,191,1,191,3,191,3893,8,191,1,191,1,191,3,191,3897,8,191,1,191, - 1,191,3,191,3901,8,191,1,191,1,191,3,191,3905,8,191,1,191,1,191, - 3,191,3909,8,191,1,191,1,191,3,191,3913,8,191,1,191,1,191,3,191, - 3917,8,191,1,191,1,191,3,191,3921,8,191,1,191,1,191,3,191,3925,8, - 191,1,191,3,191,3928,8,191,1,192,1,192,1,192,1,192,1,192,1,192,1, - 192,1,192,1,192,1,192,1,192,3,192,3941,8,192,1,193,1,193,1,194,1, - 194,3,194,3947,8,194,1,195,1,195,3,195,3951,8,195,1,196,1,196,1, - 197,1,197,1,198,1,198,1,198,9,1135,1205,1213,1230,1257,1266,1275, - 1284,1332,4,102,274,278,282,199,0,2,4,6,8,10,12,14,16,18,20,22,24, - 26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68, - 70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108, - 110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140, - 142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172, - 174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204, - 206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236, - 238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268, - 270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300, - 302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332, - 334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364, - 366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396, - 0,64,2,0,78,78,228,228,2,0,34,34,246,246,2,0,123,123,140,140,2,0, - 11,11,39,39,2,0,91,91,98,98,5,0,46,46,58,58,108,108,122,122,172, - 172,1,0,86,87,2,0,108,108,122,122,3,0,8,8,96,96,288,288,2,0,8,8, - 166,166,1,0,334,335,3,0,72,72,189,189,260,260,3,0,73,73,190,190, - 261,261,4,0,102,102,148,148,269,269,322,322,3,0,102,102,269,269, - 322,322,2,0,21,21,86,86,2,0,116,116,157,157,3,0,10,10,289,289,330, - 330,2,0,291,291,336,336,2,0,290,290,302,302,2,0,61,61,255,255,2, - 0,104,104,141,141,2,0,10,10,92,92,2,0,381,381,383,383,2,0,93,93, - 216,216,2,0,208,208,277,277,2,0,196,196,359,359,1,0,250,251,1,0, - 162,163,3,0,10,10,16,16,276,276,3,0,111,111,315,315,324,324,2,0, - 360,361,365,365,2,0,94,94,362,364,2,0,360,361,368,368,11,0,67,67, - 69,69,134,134,179,179,181,181,183,183,185,185,230,230,258,258,340, - 340,347,347,4,0,63,63,65,66,267,267,330,330,2,0,74,75,305,305,3, - 0,76,77,301,301,306,306,2,0,36,36,317,317,2,0,138,138,245,245,1, - 0,286,287,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28,160,160,310, - 310,1,0,219,220,1,0,351,358,2,0,94,94,360,369,4,0,14,14,140,140, - 196,196,207,207,2,0,111,111,315,315,1,0,360,361,7,0,67,68,134,135, - 179,186,191,192,258,259,340,341,347,348,6,0,67,67,134,134,183,183, - 185,185,258,258,347,347,2,0,185,185,347,347,4,0,67,67,134,134,183, - 183,258,258,3,0,134,134,183,183,258,258,2,0,82,82,351,351,2,0,118, - 118,225,225,2,0,377,377,388,388,1,0,382,383,2,0,96,96,268,268,1, - 0,376,377,52,0,8,9,11,13,15,15,17,19,21,22,24,27,29,34,37,41,43, - 46,48,48,50,56,58,58,61,62,67,91,93,96,98,98,101,101,103,110,113, - 113,115,118,121,122,125,128,131,131,133,139,141,143,145,147,149, - 151,154,154,156,157,159,159,162,192,194,194,198,200,204,206,209, - 209,211,212,214,218,221,225,227,237,239,248,250,261,263,266,268, - 275,277,291,293,298,301,307,309,309,311,321,325,329,332,341,344, - 344,347,350,16,0,15,15,60,60,102,102,124,124,144,144,148,148,155, - 155,158,158,161,161,193,193,202,202,249,249,263,263,269,269,322, - 322,331,331,18,0,8,14,16,59,61,101,103,123,125,143,145,147,149,154, - 156,157,159,160,162,192,194,194,196,201,203,248,250,261,264,268, - 270,321,323,330,332,350,4570,0,401,1,0,0,0,2,406,1,0,0,0,4,1335, - 1,0,0,0,6,1339,1,0,0,0,8,1341,1,0,0,0,10,1343,1,0,0,0,12,1513,1, - 0,0,0,14,1515,1,0,0,0,16,1530,1,0,0,0,18,1536,1,0,0,0,20,1548,1, - 0,0,0,22,1561,1,0,0,0,24,1564,1,0,0,0,26,1568,1,0,0,0,28,1649,1, - 0,0,0,30,1651,1,0,0,0,32,1655,1,0,0,0,34,1676,1,0,0,0,36,1678,1, - 0,0,0,38,1680,1,0,0,0,40,1687,1,0,0,0,42,1689,1,0,0,0,44,1697,1, - 0,0,0,46,1706,1,0,0,0,48,1717,1,0,0,0,50,1735,1,0,0,0,52,1738,1, - 0,0,0,54,1749,1,0,0,0,56,1765,1,0,0,0,58,1771,1,0,0,0,60,1773,1, - 0,0,0,62,1784,1,0,0,0,64,1791,1,0,0,0,66,1802,1,0,0,0,68,1819,1, - 0,0,0,70,1827,1,0,0,0,72,1829,1,0,0,0,74,1835,1,0,0,0,76,1894,1, - 0,0,0,78,1896,1,0,0,0,80,1898,1,0,0,0,82,1900,1,0,0,0,84,1902,1, - 0,0,0,86,1904,1,0,0,0,88,1906,1,0,0,0,90,1908,1,0,0,0,92,1910,1, - 0,0,0,94,1918,1,0,0,0,96,1926,1,0,0,0,98,1938,1,0,0,0,100,1990,1, - 0,0,0,102,1993,1,0,0,0,104,2028,1,0,0,0,106,2032,1,0,0,0,108,2041, - 1,0,0,0,110,2074,1,0,0,0,112,2120,1,0,0,0,114,2141,1,0,0,0,116,2173, - 1,0,0,0,118,2185,1,0,0,0,120,2188,1,0,0,0,122,2197,1,0,0,0,124,2211, - 1,0,0,0,126,2230,1,0,0,0,128,2250,1,0,0,0,130,2256,1,0,0,0,132,2258, - 1,0,0,0,134,2266,1,0,0,0,136,2270,1,0,0,0,138,2273,1,0,0,0,140,2276, - 1,0,0,0,142,2302,1,0,0,0,144,2304,1,0,0,0,146,2325,1,0,0,0,148,2341, - 1,0,0,0,150,2382,1,0,0,0,152,2387,1,0,0,0,154,2414,1,0,0,0,156,2418, - 1,0,0,0,158,2440,1,0,0,0,160,2442,1,0,0,0,162,2472,1,0,0,0,164,2474, - 1,0,0,0,166,2481,1,0,0,0,168,2494,1,0,0,0,170,2499,1,0,0,0,172,2501, - 1,0,0,0,174,2516,1,0,0,0,176,2540,1,0,0,0,178,2553,1,0,0,0,180,2555, - 1,0,0,0,182,2557,1,0,0,0,184,2561,1,0,0,0,186,2564,1,0,0,0,188,2568, - 1,0,0,0,190,2572,1,0,0,0,192,2575,1,0,0,0,194,2607,1,0,0,0,196,2620, - 1,0,0,0,198,2625,1,0,0,0,200,2644,1,0,0,0,202,2670,1,0,0,0,204,2676, - 1,0,0,0,206,2678,1,0,0,0,208,2714,1,0,0,0,210,2716,1,0,0,0,212,2720, - 1,0,0,0,214,2728,1,0,0,0,216,2739,1,0,0,0,218,2743,1,0,0,0,220,2754, - 1,0,0,0,222,2785,1,0,0,0,224,2787,1,0,0,0,226,2817,1,0,0,0,228,2838, - 1,0,0,0,230,2858,1,0,0,0,232,2864,1,0,0,0,234,2868,1,0,0,0,236,2870, - 1,0,0,0,238,2892,1,0,0,0,240,2943,1,0,0,0,242,2945,1,0,0,0,244,2953, - 1,0,0,0,246,2961,1,0,0,0,248,2969,1,0,0,0,250,2977,1,0,0,0,252,2984, - 1,0,0,0,254,2990,1,0,0,0,256,3001,1,0,0,0,258,3009,1,0,0,0,260,3022, - 1,0,0,0,262,3037,1,0,0,0,264,3041,1,0,0,0,266,3043,1,0,0,0,268,3045, - 1,0,0,0,270,3051,1,0,0,0,272,3053,1,0,0,0,274,3073,1,0,0,0,276,3168, - 1,0,0,0,278,3174,1,0,0,0,280,3200,1,0,0,0,282,3451,1,0,0,0,284,3473, - 1,0,0,0,286,3490,1,0,0,0,288,3492,1,0,0,0,290,3494,1,0,0,0,292,3496, - 1,0,0,0,294,3498,1,0,0,0,296,3500,1,0,0,0,298,3505,1,0,0,0,300,3512, - 1,0,0,0,302,3516,1,0,0,0,304,3521,1,0,0,0,306,3527,1,0,0,0,308,3534, - 1,0,0,0,310,3536,1,0,0,0,312,3541,1,0,0,0,314,3573,1,0,0,0,316,3621, - 1,0,0,0,318,3623,1,0,0,0,320,3631,1,0,0,0,322,3639,1,0,0,0,324,3647, - 1,0,0,0,326,3660,1,0,0,0,328,3662,1,0,0,0,330,3665,1,0,0,0,332,3668, - 1,0,0,0,334,3676,1,0,0,0,336,3685,1,0,0,0,338,3693,1,0,0,0,340,3706, - 1,0,0,0,342,3708,1,0,0,0,344,3715,1,0,0,0,346,3723,1,0,0,0,348,3735, - 1,0,0,0,350,3740,1,0,0,0,352,3749,1,0,0,0,354,3753,1,0,0,0,356,3803, - 1,0,0,0,358,3821,1,0,0,0,360,3830,1,0,0,0,362,3832,1,0,0,0,364,3849, - 1,0,0,0,366,3851,1,0,0,0,368,3853,1,0,0,0,370,3861,1,0,0,0,372,3871, - 1,0,0,0,374,3875,1,0,0,0,376,3881,1,0,0,0,378,3883,1,0,0,0,380,3885, - 1,0,0,0,382,3927,1,0,0,0,384,3940,1,0,0,0,386,3942,1,0,0,0,388,3946, - 1,0,0,0,390,3950,1,0,0,0,392,3952,1,0,0,0,394,3954,1,0,0,0,396,3956, - 1,0,0,0,398,400,3,2,1,0,399,398,1,0,0,0,400,403,1,0,0,0,401,399, - 1,0,0,0,401,402,1,0,0,0,402,404,1,0,0,0,403,401,1,0,0,0,404,405, - 5,0,0,1,405,1,1,0,0,0,406,408,3,4,2,0,407,409,5,1,0,0,408,407,1, - 0,0,0,408,409,1,0,0,0,409,3,1,0,0,0,410,1336,3,26,13,0,411,413,3, - 44,22,0,412,411,1,0,0,0,412,413,1,0,0,0,413,414,1,0,0,0,414,1336, - 3,76,38,0,415,416,5,329,0,0,416,1336,3,78,39,0,417,418,5,329,0,0, - 418,419,3,36,18,0,419,420,3,78,39,0,420,1336,1,0,0,0,421,422,5,268, - 0,0,422,425,5,37,0,0,423,426,3,374,187,0,424,426,3,386,193,0,425, - 423,1,0,0,0,425,424,1,0,0,0,426,1336,1,0,0,0,427,428,5,59,0,0,428, - 430,3,36,18,0,429,431,3,188,94,0,430,429,1,0,0,0,430,431,1,0,0,0, - 431,432,1,0,0,0,432,440,3,80,40,0,433,439,3,24,12,0,434,439,3,22, - 11,0,435,436,5,345,0,0,436,437,7,0,0,0,437,439,3,52,26,0,438,433, - 1,0,0,0,438,434,1,0,0,0,438,435,1,0,0,0,439,442,1,0,0,0,440,438, - 1,0,0,0,440,441,1,0,0,0,441,1336,1,0,0,0,442,440,1,0,0,0,443,444, - 5,11,0,0,444,445,3,36,18,0,445,446,3,78,39,0,446,447,5,268,0,0,447, - 448,7,0,0,0,448,449,3,52,26,0,449,1336,1,0,0,0,450,451,5,11,0,0, - 451,452,3,36,18,0,452,453,3,78,39,0,453,454,5,268,0,0,454,455,3, - 22,11,0,455,1336,1,0,0,0,456,457,5,96,0,0,457,459,3,36,18,0,458, - 460,3,190,95,0,459,458,1,0,0,0,459,460,1,0,0,0,460,461,1,0,0,0,461, - 463,3,78,39,0,462,464,7,1,0,0,463,462,1,0,0,0,463,464,1,0,0,0,464, - 1336,1,0,0,0,465,466,5,272,0,0,466,469,3,38,19,0,467,468,7,2,0,0, - 468,470,3,244,122,0,469,467,1,0,0,0,469,470,1,0,0,0,470,475,1,0, - 0,0,471,473,5,162,0,0,472,471,1,0,0,0,472,473,1,0,0,0,473,474,1, - 0,0,0,474,476,3,386,193,0,475,472,1,0,0,0,475,476,1,0,0,0,476,1336, - 1,0,0,0,477,482,3,14,7,0,478,479,5,2,0,0,479,480,3,336,168,0,480, - 481,5,3,0,0,481,483,1,0,0,0,482,478,1,0,0,0,482,483,1,0,0,0,483, - 485,1,0,0,0,484,486,3,48,24,0,485,484,1,0,0,0,485,486,1,0,0,0,486, - 487,1,0,0,0,487,492,3,50,25,0,488,490,5,20,0,0,489,488,1,0,0,0,489, - 490,1,0,0,0,490,491,1,0,0,0,491,493,3,26,13,0,492,489,1,0,0,0,492, - 493,1,0,0,0,493,1336,1,0,0,0,494,495,5,59,0,0,495,497,5,292,0,0, - 496,498,3,188,94,0,497,496,1,0,0,0,497,498,1,0,0,0,498,499,1,0,0, - 0,499,500,3,82,41,0,500,501,5,162,0,0,501,510,3,84,42,0,502,509, - 3,48,24,0,503,509,3,240,120,0,504,509,3,68,34,0,505,509,3,22,11, - 0,506,507,5,296,0,0,507,509,3,52,26,0,508,502,1,0,0,0,508,503,1, - 0,0,0,508,504,1,0,0,0,508,505,1,0,0,0,508,506,1,0,0,0,509,512,1, - 0,0,0,510,508,1,0,0,0,510,511,1,0,0,0,511,1336,1,0,0,0,512,510,1, - 0,0,0,513,518,3,16,8,0,514,515,5,2,0,0,515,516,3,336,168,0,516,517, - 5,3,0,0,517,519,1,0,0,0,518,514,1,0,0,0,518,519,1,0,0,0,519,521, - 1,0,0,0,520,522,3,48,24,0,521,520,1,0,0,0,521,522,1,0,0,0,522,523, - 1,0,0,0,523,528,3,50,25,0,524,526,5,20,0,0,525,524,1,0,0,0,525,526, - 1,0,0,0,526,527,1,0,0,0,527,529,3,26,13,0,528,525,1,0,0,0,528,529, - 1,0,0,0,529,1336,1,0,0,0,530,531,5,13,0,0,531,532,5,292,0,0,532, - 534,3,84,42,0,533,535,3,32,16,0,534,533,1,0,0,0,534,535,1,0,0,0, - 535,536,1,0,0,0,536,537,5,55,0,0,537,545,5,281,0,0,538,546,5,195, - 0,0,539,540,5,119,0,0,540,541,5,50,0,0,541,546,3,92,46,0,542,543, - 5,119,0,0,543,544,5,10,0,0,544,546,5,50,0,0,545,538,1,0,0,0,545, - 539,1,0,0,0,545,542,1,0,0,0,545,546,1,0,0,0,546,1336,1,0,0,0,547, - 548,5,13,0,0,548,551,5,293,0,0,549,550,7,2,0,0,550,552,3,78,39,0, - 551,549,1,0,0,0,551,552,1,0,0,0,552,553,1,0,0,0,553,554,5,55,0,0, - 554,556,5,281,0,0,555,557,5,195,0,0,556,555,1,0,0,0,556,557,1,0, - 0,0,557,1336,1,0,0,0,558,559,5,11,0,0,559,560,5,292,0,0,560,561, - 3,84,42,0,561,562,5,8,0,0,562,563,5,49,0,0,563,564,3,320,160,0,564, - 1336,1,0,0,0,565,566,5,11,0,0,566,567,5,292,0,0,567,568,3,84,42, - 0,568,569,5,8,0,0,569,570,5,50,0,0,570,571,5,2,0,0,571,572,3,318, - 159,0,572,573,5,3,0,0,573,1336,1,0,0,0,574,575,5,11,0,0,575,576, - 5,292,0,0,576,577,3,84,42,0,577,578,5,240,0,0,578,579,5,49,0,0,579, - 580,3,90,45,0,580,581,5,308,0,0,581,582,3,94,47,0,582,1336,1,0,0, - 0,583,584,5,11,0,0,584,585,5,292,0,0,585,586,3,84,42,0,586,587,5, - 96,0,0,587,589,5,49,0,0,588,590,3,190,95,0,589,588,1,0,0,0,589,590, - 1,0,0,0,590,591,1,0,0,0,591,592,3,90,45,0,592,1336,1,0,0,0,593,594, - 5,11,0,0,594,595,5,292,0,0,595,596,3,84,42,0,596,597,5,96,0,0,597, - 599,5,50,0,0,598,600,3,190,95,0,599,598,1,0,0,0,599,600,1,0,0,0, - 600,601,1,0,0,0,601,602,5,2,0,0,602,603,3,92,46,0,603,604,5,3,0, - 0,604,1336,1,0,0,0,605,610,5,11,0,0,606,607,5,292,0,0,607,611,3, - 84,42,0,608,609,5,337,0,0,609,611,3,88,44,0,610,606,1,0,0,0,610, - 608,1,0,0,0,611,612,1,0,0,0,612,613,5,240,0,0,613,614,5,308,0,0, - 614,615,3,244,122,0,615,1336,1,0,0,0,616,621,5,11,0,0,617,618,5, - 292,0,0,618,622,3,84,42,0,619,620,5,337,0,0,620,622,3,88,44,0,621, - 617,1,0,0,0,621,619,1,0,0,0,622,623,1,0,0,0,623,624,5,268,0,0,624, - 625,5,296,0,0,625,626,3,52,26,0,626,1336,1,0,0,0,627,632,5,11,0, - 0,628,629,5,292,0,0,629,633,3,84,42,0,630,631,5,337,0,0,631,633, - 3,88,44,0,632,628,1,0,0,0,632,630,1,0,0,0,633,634,1,0,0,0,634,635, - 5,327,0,0,635,637,5,296,0,0,636,638,3,190,95,0,637,636,1,0,0,0,637, - 638,1,0,0,0,638,639,1,0,0,0,639,640,3,52,26,0,640,1336,1,0,0,0,641, - 642,5,11,0,0,642,643,5,292,0,0,643,644,3,84,42,0,644,646,7,3,0,0, - 645,647,5,49,0,0,646,645,1,0,0,0,646,647,1,0,0,0,647,648,1,0,0,0, - 648,650,3,90,45,0,649,651,3,384,192,0,650,649,1,0,0,0,650,651,1, - 0,0,0,651,1336,1,0,0,0,652,653,5,11,0,0,653,654,5,292,0,0,654,656, - 3,84,42,0,655,657,3,32,16,0,656,655,1,0,0,0,656,657,1,0,0,0,657, - 658,1,0,0,0,658,660,5,39,0,0,659,661,5,49,0,0,660,659,1,0,0,0,660, - 661,1,0,0,0,661,662,1,0,0,0,662,663,3,90,45,0,663,665,3,334,167, - 0,664,666,3,312,156,0,665,664,1,0,0,0,665,666,1,0,0,0,666,1336,1, - 0,0,0,667,668,5,11,0,0,668,669,5,292,0,0,669,671,3,84,42,0,670,672, - 3,32,16,0,671,670,1,0,0,0,671,672,1,0,0,0,672,673,1,0,0,0,673,674, - 5,243,0,0,674,675,5,50,0,0,675,676,5,2,0,0,676,677,3,322,161,0,677, - 678,5,3,0,0,678,1336,1,0,0,0,679,680,5,11,0,0,680,681,5,292,0,0, - 681,683,3,84,42,0,682,684,3,32,16,0,683,682,1,0,0,0,683,684,1,0, - 0,0,684,685,1,0,0,0,685,686,5,268,0,0,686,687,5,265,0,0,687,691, - 3,386,193,0,688,689,5,345,0,0,689,690,5,266,0,0,690,692,3,52,26, - 0,691,688,1,0,0,0,691,692,1,0,0,0,692,1336,1,0,0,0,693,694,5,11, - 0,0,694,695,5,292,0,0,695,697,3,84,42,0,696,698,3,32,16,0,697,696, - 1,0,0,0,697,698,1,0,0,0,698,699,1,0,0,0,699,700,5,268,0,0,700,701, - 5,266,0,0,701,702,3,52,26,0,702,1336,1,0,0,0,703,708,5,11,0,0,704, - 705,5,292,0,0,705,709,3,84,42,0,706,707,5,337,0,0,707,709,3,88,44, - 0,708,704,1,0,0,0,708,706,1,0,0,0,709,710,1,0,0,0,710,712,5,8,0, - 0,711,713,3,188,94,0,712,711,1,0,0,0,712,713,1,0,0,0,713,715,1,0, - 0,0,714,716,3,30,15,0,715,714,1,0,0,0,716,717,1,0,0,0,717,715,1, - 0,0,0,717,718,1,0,0,0,718,1336,1,0,0,0,719,720,5,11,0,0,720,721, - 5,292,0,0,721,722,3,84,42,0,722,723,3,32,16,0,723,724,5,240,0,0, - 724,725,5,308,0,0,725,726,3,32,16,0,726,1336,1,0,0,0,727,732,5,11, - 0,0,728,729,5,292,0,0,729,733,3,84,42,0,730,731,5,337,0,0,731,733, - 3,88,44,0,732,728,1,0,0,0,732,730,1,0,0,0,733,734,1,0,0,0,734,736, - 5,96,0,0,735,737,3,190,95,0,736,735,1,0,0,0,736,737,1,0,0,0,737, - 738,1,0,0,0,738,743,3,32,16,0,739,740,5,4,0,0,740,742,3,32,16,0, - 741,739,1,0,0,0,742,745,1,0,0,0,743,741,1,0,0,0,743,744,1,0,0,0, - 744,747,1,0,0,0,745,743,1,0,0,0,746,748,5,229,0,0,747,746,1,0,0, - 0,747,748,1,0,0,0,748,1336,1,0,0,0,749,750,5,11,0,0,750,751,5,292, - 0,0,751,753,3,84,42,0,752,754,3,32,16,0,753,752,1,0,0,0,753,754, - 1,0,0,0,754,755,1,0,0,0,755,756,5,268,0,0,756,757,3,22,11,0,757, - 1336,1,0,0,0,758,759,5,11,0,0,759,760,5,292,0,0,760,761,3,84,42, - 0,761,762,5,236,0,0,762,763,5,218,0,0,763,1336,1,0,0,0,764,765,5, - 11,0,0,765,766,5,175,0,0,766,767,5,337,0,0,767,768,3,88,44,0,768, - 769,7,4,0,0,769,770,5,247,0,0,770,1336,1,0,0,0,771,772,5,11,0,0, - 772,773,5,175,0,0,773,774,5,337,0,0,774,775,3,88,44,0,775,776,5, - 268,0,0,776,777,5,296,0,0,777,778,3,52,26,0,778,1336,1,0,0,0,779, - 780,5,96,0,0,780,782,5,292,0,0,781,783,3,190,95,0,782,781,1,0,0, - 0,782,783,1,0,0,0,783,784,1,0,0,0,784,786,3,84,42,0,785,787,5,229, - 0,0,786,785,1,0,0,0,786,787,1,0,0,0,787,1336,1,0,0,0,788,789,5,96, - 0,0,789,791,5,337,0,0,790,792,3,190,95,0,791,790,1,0,0,0,791,792, - 1,0,0,0,792,793,1,0,0,0,793,1336,3,88,44,0,794,795,5,96,0,0,795, - 796,5,175,0,0,796,798,5,337,0,0,797,799,3,190,95,0,798,797,1,0,0, - 0,798,799,1,0,0,0,799,800,1,0,0,0,800,1336,3,88,44,0,801,804,5,59, - 0,0,802,803,5,207,0,0,803,805,5,243,0,0,804,802,1,0,0,0,804,805, - 1,0,0,0,805,810,1,0,0,0,806,808,5,128,0,0,807,806,1,0,0,0,807,808, - 1,0,0,0,808,809,1,0,0,0,809,811,5,297,0,0,810,807,1,0,0,0,810,811, - 1,0,0,0,811,812,1,0,0,0,812,814,5,337,0,0,813,815,3,188,94,0,814, - 813,1,0,0,0,814,815,1,0,0,0,815,816,1,0,0,0,816,818,3,86,43,0,817, - 819,3,218,109,0,818,817,1,0,0,0,818,819,1,0,0,0,819,828,1,0,0,0, - 820,827,3,24,12,0,821,822,5,217,0,0,822,823,5,202,0,0,823,827,3, - 210,105,0,824,825,5,296,0,0,825,827,3,52,26,0,826,820,1,0,0,0,826, - 821,1,0,0,0,826,824,1,0,0,0,827,830,1,0,0,0,828,826,1,0,0,0,828, - 829,1,0,0,0,829,831,1,0,0,0,830,828,1,0,0,0,831,832,5,20,0,0,832, - 833,3,26,13,0,833,1336,1,0,0,0,834,837,5,59,0,0,835,836,5,207,0, - 0,836,838,5,243,0,0,837,835,1,0,0,0,837,838,1,0,0,0,838,840,1,0, - 0,0,839,841,5,128,0,0,840,839,1,0,0,0,840,841,1,0,0,0,841,842,1, - 0,0,0,842,843,5,297,0,0,843,844,5,337,0,0,844,849,3,86,43,0,845, - 846,5,2,0,0,846,847,3,332,166,0,847,848,5,3,0,0,848,850,1,0,0,0, - 849,845,1,0,0,0,849,850,1,0,0,0,850,851,1,0,0,0,851,854,3,48,24, - 0,852,853,5,206,0,0,853,855,3,52,26,0,854,852,1,0,0,0,854,855,1, - 0,0,0,855,1336,1,0,0,0,856,857,5,11,0,0,857,858,5,337,0,0,858,860, - 3,88,44,0,859,861,5,20,0,0,860,859,1,0,0,0,860,861,1,0,0,0,861,862, - 1,0,0,0,862,863,3,26,13,0,863,1336,1,0,0,0,864,867,5,59,0,0,865, - 866,5,207,0,0,866,868,5,243,0,0,867,865,1,0,0,0,867,868,1,0,0,0, - 868,870,1,0,0,0,869,871,5,297,0,0,870,869,1,0,0,0,870,871,1,0,0, - 0,871,872,1,0,0,0,872,874,5,125,0,0,873,875,3,188,94,0,874,873,1, - 0,0,0,874,875,1,0,0,0,875,876,1,0,0,0,876,877,3,366,183,0,877,878, - 5,20,0,0,878,888,3,386,193,0,879,880,5,331,0,0,880,885,3,74,37,0, - 881,882,5,4,0,0,882,884,3,74,37,0,883,881,1,0,0,0,884,887,1,0,0, - 0,885,883,1,0,0,0,885,886,1,0,0,0,886,889,1,0,0,0,887,885,1,0,0, - 0,888,879,1,0,0,0,888,889,1,0,0,0,889,1336,1,0,0,0,890,891,5,59, - 0,0,891,892,5,175,0,0,892,894,5,337,0,0,893,895,3,188,94,0,894,893, - 1,0,0,0,894,895,1,0,0,0,895,896,1,0,0,0,896,898,3,86,43,0,897,899, - 3,48,24,0,898,897,1,0,0,0,898,899,1,0,0,0,899,915,1,0,0,0,900,901, - 5,206,0,0,901,914,3,52,26,0,902,903,5,217,0,0,903,904,5,31,0,0,904, - 914,3,258,129,0,905,914,3,20,10,0,906,914,3,18,9,0,907,914,3,240, - 120,0,908,914,3,68,34,0,909,914,3,22,11,0,910,914,3,24,12,0,911, - 912,5,296,0,0,912,914,3,52,26,0,913,900,1,0,0,0,913,902,1,0,0,0, - 913,905,1,0,0,0,913,906,1,0,0,0,913,907,1,0,0,0,913,908,1,0,0,0, - 913,909,1,0,0,0,913,910,1,0,0,0,913,911,1,0,0,0,914,917,1,0,0,0, - 915,913,1,0,0,0,915,916,1,0,0,0,916,918,1,0,0,0,917,915,1,0,0,0, - 918,919,5,20,0,0,919,920,3,26,13,0,920,1336,1,0,0,0,921,923,5,96, - 0,0,922,924,5,297,0,0,923,922,1,0,0,0,923,924,1,0,0,0,924,925,1, - 0,0,0,925,927,5,125,0,0,926,928,3,190,95,0,927,926,1,0,0,0,927,928, - 1,0,0,0,928,929,1,0,0,0,929,1336,3,364,182,0,930,933,5,81,0,0,931, - 932,5,207,0,0,932,934,5,243,0,0,933,931,1,0,0,0,933,934,1,0,0,0, - 934,936,1,0,0,0,935,937,5,335,0,0,936,935,1,0,0,0,936,937,1,0,0, - 0,937,938,1,0,0,0,938,940,3,364,182,0,939,941,3,316,158,0,940,939, - 1,0,0,0,940,941,1,0,0,0,941,943,1,0,0,0,942,944,3,330,165,0,943, - 942,1,0,0,0,943,944,1,0,0,0,944,1336,1,0,0,0,945,946,5,96,0,0,946, - 947,5,297,0,0,947,949,5,335,0,0,948,950,3,190,95,0,949,948,1,0,0, - 0,949,950,1,0,0,0,950,954,1,0,0,0,951,955,3,84,42,0,952,955,3,88, - 44,0,953,955,3,364,182,0,954,951,1,0,0,0,954,952,1,0,0,0,954,953, - 1,0,0,0,955,1336,1,0,0,0,956,958,5,106,0,0,957,959,7,5,0,0,958,957, - 1,0,0,0,958,959,1,0,0,0,959,960,1,0,0,0,960,1336,3,4,2,0,961,962, - 5,272,0,0,962,965,5,293,0,0,963,964,7,2,0,0,964,966,3,78,39,0,965, - 963,1,0,0,0,965,966,1,0,0,0,966,971,1,0,0,0,967,969,5,162,0,0,968, - 967,1,0,0,0,968,969,1,0,0,0,969,970,1,0,0,0,970,972,3,386,193,0, - 971,968,1,0,0,0,971,972,1,0,0,0,972,1336,1,0,0,0,973,974,5,272,0, - 0,974,975,5,292,0,0,975,978,5,108,0,0,976,977,7,2,0,0,977,979,3, - 78,39,0,978,976,1,0,0,0,978,979,1,0,0,0,979,980,1,0,0,0,980,981, - 5,162,0,0,981,983,3,386,193,0,982,984,3,32,16,0,983,982,1,0,0,0, - 983,984,1,0,0,0,984,1336,1,0,0,0,985,986,5,272,0,0,986,987,5,296, - 0,0,987,992,3,84,42,0,988,989,5,2,0,0,989,990,3,56,28,0,990,991, - 5,3,0,0,991,993,1,0,0,0,992,988,1,0,0,0,992,993,1,0,0,0,993,1336, - 1,0,0,0,994,995,5,272,0,0,995,996,5,50,0,0,996,997,7,2,0,0,997,1000, - 3,84,42,0,998,999,7,2,0,0,999,1001,3,78,39,0,1000,998,1,0,0,0,1000, - 1001,1,0,0,0,1001,1336,1,0,0,0,1002,1003,5,272,0,0,1003,1006,5,338, - 0,0,1004,1005,7,2,0,0,1005,1007,3,78,39,0,1006,1004,1,0,0,0,1006, - 1007,1,0,0,0,1007,1012,1,0,0,0,1008,1010,5,162,0,0,1009,1008,1,0, - 0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0,1011,1013,3,386,193,0,1012, - 1009,1,0,0,0,1012,1013,1,0,0,0,1013,1336,1,0,0,0,1014,1015,5,272, - 0,0,1015,1016,5,218,0,0,1016,1018,3,84,42,0,1017,1019,3,32,16,0, - 1018,1017,1,0,0,0,1018,1019,1,0,0,0,1019,1336,1,0,0,0,1020,1022, - 5,272,0,0,1021,1023,3,146,73,0,1022,1021,1,0,0,0,1022,1023,1,0,0, - 0,1023,1024,1,0,0,0,1024,1027,5,126,0,0,1025,1026,7,2,0,0,1026,1028, - 3,78,39,0,1027,1025,1,0,0,0,1027,1028,1,0,0,0,1028,1036,1,0,0,0, - 1029,1031,5,162,0,0,1030,1029,1,0,0,0,1030,1031,1,0,0,0,1031,1034, - 1,0,0,0,1032,1035,3,244,122,0,1033,1035,3,386,193,0,1034,1032,1, - 0,0,0,1034,1033,1,0,0,0,1035,1037,1,0,0,0,1036,1030,1,0,0,0,1036, - 1037,1,0,0,0,1037,1336,1,0,0,0,1038,1039,5,272,0,0,1039,1040,5,59, - 0,0,1040,1041,5,292,0,0,1041,1044,3,84,42,0,1042,1043,5,20,0,0,1043, - 1045,5,265,0,0,1044,1042,1,0,0,0,1044,1045,1,0,0,0,1045,1336,1,0, - 0,0,1046,1047,5,272,0,0,1047,1048,5,62,0,0,1048,1336,3,36,18,0,1049, - 1050,5,272,0,0,1050,1055,5,38,0,0,1051,1053,5,162,0,0,1052,1051, - 1,0,0,0,1052,1053,1,0,0,0,1053,1054,1,0,0,0,1054,1056,3,386,193, - 0,1055,1052,1,0,0,0,1055,1056,1,0,0,0,1056,1336,1,0,0,0,1057,1058, - 5,272,0,0,1058,1059,5,175,0,0,1059,1062,5,338,0,0,1060,1061,7,2, - 0,0,1061,1063,3,78,39,0,1062,1060,1,0,0,0,1062,1063,1,0,0,0,1063, - 1068,1,0,0,0,1064,1066,5,162,0,0,1065,1064,1,0,0,0,1065,1066,1,0, - 0,0,1066,1067,1,0,0,0,1067,1069,3,386,193,0,1068,1065,1,0,0,0,1068, - 1069,1,0,0,0,1069,1336,1,0,0,0,1070,1071,5,272,0,0,1071,1072,5,59, - 0,0,1072,1073,5,175,0,0,1073,1074,5,337,0,0,1074,1077,3,88,44,0, - 1075,1076,5,20,0,0,1076,1078,5,265,0,0,1077,1075,1,0,0,0,1077,1078, - 1,0,0,0,1078,1336,1,0,0,0,1079,1080,7,6,0,0,1080,1082,5,125,0,0, - 1081,1083,5,108,0,0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084, - 1,0,0,0,1084,1336,3,40,20,0,1085,1086,7,6,0,0,1086,1088,5,72,0,0, - 1087,1089,5,108,0,0,1088,1087,1,0,0,0,1088,1089,1,0,0,0,1089,1090, - 1,0,0,0,1090,1336,3,78,39,0,1091,1093,7,6,0,0,1092,1094,5,292,0, - 0,1093,1092,1,0,0,0,1093,1094,1,0,0,0,1094,1096,1,0,0,0,1095,1097, - 7,7,0,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0,1097,1098,1,0,0,0,1098, - 1100,3,84,42,0,1099,1101,3,32,16,0,1100,1099,1,0,0,0,1100,1101,1, - 0,0,0,1101,1103,1,0,0,0,1102,1104,3,42,21,0,1103,1102,1,0,0,0,1103, - 1104,1,0,0,0,1104,1336,1,0,0,0,1105,1107,7,6,0,0,1106,1108,5,231, - 0,0,1107,1106,1,0,0,0,1107,1108,1,0,0,0,1108,1109,1,0,0,0,1109,1336, - 3,26,13,0,1110,1111,5,51,0,0,1111,1112,5,202,0,0,1112,1113,3,36, - 18,0,1113,1114,3,78,39,0,1114,1115,5,153,0,0,1115,1116,3,388,194, - 0,1116,1336,1,0,0,0,1117,1118,5,51,0,0,1118,1119,5,202,0,0,1119, - 1120,5,292,0,0,1120,1121,3,84,42,0,1121,1122,5,153,0,0,1122,1123, - 3,388,194,0,1123,1336,1,0,0,0,1124,1125,5,239,0,0,1125,1126,5,292, - 0,0,1126,1336,3,84,42,0,1127,1128,5,239,0,0,1128,1129,5,125,0,0, - 1129,1336,3,364,182,0,1130,1138,5,239,0,0,1131,1139,3,386,193,0, - 1132,1134,9,0,0,0,1133,1132,1,0,0,0,1134,1137,1,0,0,0,1135,1136, - 1,0,0,0,1135,1133,1,0,0,0,1136,1139,1,0,0,0,1137,1135,1,0,0,0,1138, - 1131,1,0,0,0,1138,1135,1,0,0,0,1139,1336,1,0,0,0,1140,1141,5,239, - 0,0,1141,1142,5,175,0,0,1142,1143,5,337,0,0,1143,1336,3,88,44,0, - 1144,1146,5,33,0,0,1145,1147,5,159,0,0,1146,1145,1,0,0,0,1146,1147, - 1,0,0,0,1147,1148,1,0,0,0,1148,1149,5,292,0,0,1149,1152,3,84,42, - 0,1150,1151,5,206,0,0,1151,1153,3,52,26,0,1152,1150,1,0,0,0,1152, - 1153,1,0,0,0,1153,1158,1,0,0,0,1154,1156,5,20,0,0,1155,1154,1,0, - 0,0,1155,1156,1,0,0,0,1156,1157,1,0,0,0,1157,1159,3,26,13,0,1158, - 1155,1,0,0,0,1158,1159,1,0,0,0,1159,1336,1,0,0,0,1160,1161,5,321, - 0,0,1161,1163,5,292,0,0,1162,1164,3,190,95,0,1163,1162,1,0,0,0,1163, - 1164,1,0,0,0,1164,1165,1,0,0,0,1165,1336,3,84,42,0,1166,1167,5,43, - 0,0,1167,1336,5,33,0,0,1168,1169,5,167,0,0,1169,1171,5,70,0,0,1170, - 1172,5,168,0,0,1171,1170,1,0,0,0,1171,1172,1,0,0,0,1172,1173,1,0, - 0,0,1173,1174,5,145,0,0,1174,1176,3,386,193,0,1175,1177,5,215,0, - 0,1176,1175,1,0,0,0,1176,1177,1,0,0,0,1177,1178,1,0,0,0,1178,1179, - 5,152,0,0,1179,1180,5,292,0,0,1180,1182,3,84,42,0,1181,1183,3,32, - 16,0,1182,1181,1,0,0,0,1182,1183,1,0,0,0,1183,1336,1,0,0,0,1184, - 1185,5,316,0,0,1185,1186,5,292,0,0,1186,1188,3,84,42,0,1187,1189, - 3,32,16,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1336,1,0,0,0, - 1190,1192,5,187,0,0,1191,1190,1,0,0,0,1191,1192,1,0,0,0,1192,1193, - 1,0,0,0,1193,1194,5,241,0,0,1194,1195,5,292,0,0,1195,1198,3,84,42, - 0,1196,1197,7,8,0,0,1197,1199,5,218,0,0,1198,1196,1,0,0,0,1198,1199, - 1,0,0,0,1199,1336,1,0,0,0,1200,1201,7,9,0,0,1201,1205,3,374,187, - 0,1202,1204,9,0,0,0,1203,1202,1,0,0,0,1204,1207,1,0,0,0,1205,1206, - 1,0,0,0,1205,1203,1,0,0,0,1206,1336,1,0,0,0,1207,1205,1,0,0,0,1208, - 1209,5,268,0,0,1209,1213,5,252,0,0,1210,1212,9,0,0,0,1211,1210,1, - 0,0,0,1212,1215,1,0,0,0,1213,1214,1,0,0,0,1213,1211,1,0,0,0,1214, - 1336,1,0,0,0,1215,1213,1,0,0,0,1216,1217,5,268,0,0,1217,1218,5,300, - 0,0,1218,1219,5,349,0,0,1219,1336,3,296,148,0,1220,1221,5,268,0, - 0,1221,1222,5,300,0,0,1222,1223,5,349,0,0,1223,1336,3,6,3,0,1224, - 1225,5,268,0,0,1225,1226,5,300,0,0,1226,1230,5,349,0,0,1227,1229, - 9,0,0,0,1228,1227,1,0,0,0,1229,1232,1,0,0,0,1230,1231,1,0,0,0,1230, - 1228,1,0,0,0,1231,1336,1,0,0,0,1232,1230,1,0,0,0,1233,1234,5,268, - 0,0,1234,1235,7,10,0,0,1235,1336,3,132,66,0,1236,1237,5,268,0,0, - 1237,1238,7,10,0,0,1238,1239,5,2,0,0,1239,1240,3,242,121,0,1240, - 1241,5,3,0,0,1241,1242,5,351,0,0,1242,1243,5,2,0,0,1243,1244,3,26, - 13,0,1244,1245,5,3,0,0,1245,1336,1,0,0,0,1246,1247,5,268,0,0,1247, - 1248,3,8,4,0,1248,1249,5,351,0,0,1249,1250,3,10,5,0,1250,1336,1, - 0,0,0,1251,1252,5,268,0,0,1252,1260,3,8,4,0,1253,1257,5,351,0,0, - 1254,1256,9,0,0,0,1255,1254,1,0,0,0,1256,1259,1,0,0,0,1257,1258, - 1,0,0,0,1257,1255,1,0,0,0,1258,1261,1,0,0,0,1259,1257,1,0,0,0,1260, - 1253,1,0,0,0,1260,1261,1,0,0,0,1261,1336,1,0,0,0,1262,1266,5,268, - 0,0,1263,1265,9,0,0,0,1264,1263,1,0,0,0,1265,1268,1,0,0,0,1266,1267, - 1,0,0,0,1266,1264,1,0,0,0,1267,1269,1,0,0,0,1268,1266,1,0,0,0,1269, - 1270,5,351,0,0,1270,1336,3,10,5,0,1271,1275,5,268,0,0,1272,1274, - 9,0,0,0,1273,1272,1,0,0,0,1274,1277,1,0,0,0,1275,1276,1,0,0,0,1275, - 1273,1,0,0,0,1276,1336,1,0,0,0,1277,1275,1,0,0,0,1278,1279,5,244, - 0,0,1279,1336,3,8,4,0,1280,1284,5,244,0,0,1281,1283,9,0,0,0,1282, - 1281,1,0,0,0,1283,1286,1,0,0,0,1284,1285,1,0,0,0,1284,1282,1,0,0, - 0,1285,1336,1,0,0,0,1286,1284,1,0,0,0,1287,1288,5,59,0,0,1288,1290, - 5,142,0,0,1289,1291,3,188,94,0,1290,1289,1,0,0,0,1290,1291,1,0,0, - 0,1291,1292,1,0,0,0,1292,1293,3,374,187,0,1293,1295,5,202,0,0,1294, - 1296,5,292,0,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297,1,0, - 0,0,1297,1300,3,84,42,0,1298,1299,5,331,0,0,1299,1301,3,374,187, - 0,1300,1298,1,0,0,0,1300,1301,1,0,0,0,1301,1302,1,0,0,0,1302,1303, - 5,2,0,0,1303,1304,3,246,123,0,1304,1307,5,3,0,0,1305,1306,5,206, - 0,0,1306,1308,3,52,26,0,1307,1305,1,0,0,0,1307,1308,1,0,0,0,1308, - 1336,1,0,0,0,1309,1310,5,96,0,0,1310,1312,5,142,0,0,1311,1313,3, - 190,95,0,1312,1311,1,0,0,0,1312,1313,1,0,0,0,1313,1314,1,0,0,0,1314, - 1315,3,374,187,0,1315,1317,5,202,0,0,1316,1318,5,292,0,0,1317,1316, - 1,0,0,0,1317,1318,1,0,0,0,1318,1319,1,0,0,0,1319,1320,3,84,42,0, - 1320,1336,1,0,0,0,1321,1322,5,204,0,0,1322,1324,3,84,42,0,1323,1325, - 3,136,68,0,1324,1323,1,0,0,0,1324,1325,1,0,0,0,1325,1326,1,0,0,0, - 1326,1327,3,352,176,0,1327,1336,1,0,0,0,1328,1332,3,12,6,0,1329, - 1331,9,0,0,0,1330,1329,1,0,0,0,1331,1334,1,0,0,0,1332,1333,1,0,0, - 0,1332,1330,1,0,0,0,1333,1336,1,0,0,0,1334,1332,1,0,0,0,1335,410, - 1,0,0,0,1335,412,1,0,0,0,1335,415,1,0,0,0,1335,417,1,0,0,0,1335, - 421,1,0,0,0,1335,427,1,0,0,0,1335,443,1,0,0,0,1335,450,1,0,0,0,1335, - 456,1,0,0,0,1335,465,1,0,0,0,1335,477,1,0,0,0,1335,494,1,0,0,0,1335, - 513,1,0,0,0,1335,530,1,0,0,0,1335,547,1,0,0,0,1335,558,1,0,0,0,1335, - 565,1,0,0,0,1335,574,1,0,0,0,1335,583,1,0,0,0,1335,593,1,0,0,0,1335, - 605,1,0,0,0,1335,616,1,0,0,0,1335,627,1,0,0,0,1335,641,1,0,0,0,1335, - 652,1,0,0,0,1335,667,1,0,0,0,1335,679,1,0,0,0,1335,693,1,0,0,0,1335, - 703,1,0,0,0,1335,719,1,0,0,0,1335,727,1,0,0,0,1335,749,1,0,0,0,1335, - 758,1,0,0,0,1335,764,1,0,0,0,1335,771,1,0,0,0,1335,779,1,0,0,0,1335, - 788,1,0,0,0,1335,794,1,0,0,0,1335,801,1,0,0,0,1335,834,1,0,0,0,1335, - 856,1,0,0,0,1335,864,1,0,0,0,1335,890,1,0,0,0,1335,921,1,0,0,0,1335, - 930,1,0,0,0,1335,945,1,0,0,0,1335,956,1,0,0,0,1335,961,1,0,0,0,1335, - 973,1,0,0,0,1335,985,1,0,0,0,1335,994,1,0,0,0,1335,1002,1,0,0,0, - 1335,1014,1,0,0,0,1335,1020,1,0,0,0,1335,1038,1,0,0,0,1335,1046, - 1,0,0,0,1335,1049,1,0,0,0,1335,1057,1,0,0,0,1335,1070,1,0,0,0,1335, - 1079,1,0,0,0,1335,1085,1,0,0,0,1335,1091,1,0,0,0,1335,1105,1,0,0, - 0,1335,1110,1,0,0,0,1335,1117,1,0,0,0,1335,1124,1,0,0,0,1335,1127, - 1,0,0,0,1335,1130,1,0,0,0,1335,1140,1,0,0,0,1335,1144,1,0,0,0,1335, - 1160,1,0,0,0,1335,1166,1,0,0,0,1335,1168,1,0,0,0,1335,1184,1,0,0, - 0,1335,1191,1,0,0,0,1335,1200,1,0,0,0,1335,1208,1,0,0,0,1335,1216, - 1,0,0,0,1335,1220,1,0,0,0,1335,1224,1,0,0,0,1335,1233,1,0,0,0,1335, - 1236,1,0,0,0,1335,1246,1,0,0,0,1335,1251,1,0,0,0,1335,1262,1,0,0, - 0,1335,1271,1,0,0,0,1335,1278,1,0,0,0,1335,1280,1,0,0,0,1335,1287, - 1,0,0,0,1335,1309,1,0,0,0,1335,1321,1,0,0,0,1335,1328,1,0,0,0,1336, - 5,1,0,0,0,1337,1340,3,386,193,0,1338,1340,5,168,0,0,1339,1337,1, - 0,0,0,1339,1338,1,0,0,0,1340,7,1,0,0,0,1341,1342,3,378,189,0,1342, - 9,1,0,0,0,1343,1344,3,380,190,0,1344,11,1,0,0,0,1345,1346,5,59,0, - 0,1346,1514,5,252,0,0,1347,1348,5,96,0,0,1348,1514,5,252,0,0,1349, - 1351,5,129,0,0,1350,1352,5,252,0,0,1351,1350,1,0,0,0,1351,1352,1, - 0,0,0,1352,1514,1,0,0,0,1353,1355,5,248,0,0,1354,1356,5,252,0,0, - 1355,1354,1,0,0,0,1355,1356,1,0,0,0,1356,1514,1,0,0,0,1357,1358, - 5,272,0,0,1358,1514,5,129,0,0,1359,1360,5,272,0,0,1360,1362,5,252, - 0,0,1361,1363,5,129,0,0,1362,1361,1,0,0,0,1362,1363,1,0,0,0,1363, - 1514,1,0,0,0,1364,1365,5,272,0,0,1365,1514,5,227,0,0,1366,1367,5, - 272,0,0,1367,1514,5,253,0,0,1368,1369,5,272,0,0,1369,1370,5,62,0, - 0,1370,1514,5,253,0,0,1371,1372,5,107,0,0,1372,1514,5,292,0,0,1373, - 1374,5,139,0,0,1374,1514,5,292,0,0,1375,1376,5,272,0,0,1376,1514, - 5,54,0,0,1377,1378,5,272,0,0,1378,1379,5,59,0,0,1379,1514,5,292, - 0,0,1380,1381,5,272,0,0,1381,1514,5,312,0,0,1382,1383,5,272,0,0, - 1383,1514,5,143,0,0,1384,1385,5,272,0,0,1385,1514,5,171,0,0,1386, - 1387,5,59,0,0,1387,1514,5,142,0,0,1388,1389,5,96,0,0,1389,1514,5, - 142,0,0,1390,1391,5,11,0,0,1391,1514,5,142,0,0,1392,1393,5,170,0, - 0,1393,1514,5,292,0,0,1394,1395,5,170,0,0,1395,1514,5,72,0,0,1396, - 1397,5,325,0,0,1397,1514,5,292,0,0,1398,1399,5,325,0,0,1399,1514, - 5,72,0,0,1400,1401,5,59,0,0,1401,1402,5,297,0,0,1402,1514,5,174, - 0,0,1403,1404,5,96,0,0,1404,1405,5,297,0,0,1405,1514,5,174,0,0,1406, - 1407,5,11,0,0,1407,1408,5,292,0,0,1408,1409,3,84,42,0,1409,1410, - 5,196,0,0,1410,1411,5,45,0,0,1411,1514,1,0,0,0,1412,1413,5,11,0, - 0,1413,1414,5,292,0,0,1414,1415,3,84,42,0,1415,1416,5,45,0,0,1416, - 1417,5,31,0,0,1417,1514,1,0,0,0,1418,1419,5,11,0,0,1419,1420,5,292, - 0,0,1420,1421,3,84,42,0,1421,1422,5,196,0,0,1422,1423,5,278,0,0, - 1423,1514,1,0,0,0,1424,1425,5,11,0,0,1425,1426,5,292,0,0,1426,1427, - 3,84,42,0,1427,1428,5,274,0,0,1428,1429,5,31,0,0,1429,1514,1,0,0, - 0,1430,1431,5,11,0,0,1431,1432,5,292,0,0,1432,1433,3,84,42,0,1433, - 1434,5,196,0,0,1434,1435,5,274,0,0,1435,1514,1,0,0,0,1436,1437,5, - 11,0,0,1437,1438,5,292,0,0,1438,1439,3,84,42,0,1439,1440,5,196,0, - 0,1440,1441,5,282,0,0,1441,1442,5,20,0,0,1442,1443,5,89,0,0,1443, - 1514,1,0,0,0,1444,1445,5,11,0,0,1445,1446,5,292,0,0,1446,1447,3, - 84,42,0,1447,1448,5,268,0,0,1448,1449,5,274,0,0,1449,1450,5,169, - 0,0,1450,1514,1,0,0,0,1451,1452,5,11,0,0,1452,1453,5,292,0,0,1453, - 1454,3,84,42,0,1454,1455,5,103,0,0,1455,1456,5,216,0,0,1456,1514, - 1,0,0,0,1457,1458,5,11,0,0,1458,1459,5,292,0,0,1459,1460,3,84,42, - 0,1460,1461,5,18,0,0,1461,1462,5,216,0,0,1462,1514,1,0,0,0,1463, - 1464,5,11,0,0,1464,1465,5,292,0,0,1465,1466,3,84,42,0,1466,1467, - 5,319,0,0,1467,1468,5,216,0,0,1468,1514,1,0,0,0,1469,1470,5,11,0, - 0,1470,1471,5,292,0,0,1471,1472,3,84,42,0,1472,1473,5,309,0,0,1473, - 1514,1,0,0,0,1474,1475,5,11,0,0,1475,1476,5,292,0,0,1476,1478,3, - 84,42,0,1477,1479,3,32,16,0,1478,1477,1,0,0,0,1478,1479,1,0,0,0, - 1479,1480,1,0,0,0,1480,1481,5,53,0,0,1481,1514,1,0,0,0,1482,1483, - 5,11,0,0,1483,1484,5,292,0,0,1484,1486,3,84,42,0,1485,1487,3,32, - 16,0,1486,1485,1,0,0,0,1486,1487,1,0,0,0,1487,1488,1,0,0,0,1488, - 1489,5,56,0,0,1489,1514,1,0,0,0,1490,1491,5,11,0,0,1491,1492,5,292, - 0,0,1492,1494,3,84,42,0,1493,1495,3,32,16,0,1494,1493,1,0,0,0,1494, - 1495,1,0,0,0,1495,1496,1,0,0,0,1496,1497,5,268,0,0,1497,1498,5,115, - 0,0,1498,1514,1,0,0,0,1499,1500,5,11,0,0,1500,1501,5,292,0,0,1501, - 1503,3,84,42,0,1502,1504,3,32,16,0,1503,1502,1,0,0,0,1503,1504,1, - 0,0,0,1504,1505,1,0,0,0,1505,1506,5,243,0,0,1506,1507,5,50,0,0,1507, - 1514,1,0,0,0,1508,1509,5,280,0,0,1509,1514,5,311,0,0,1510,1514,5, - 52,0,0,1511,1514,5,254,0,0,1512,1514,5,88,0,0,1513,1345,1,0,0,0, - 1513,1347,1,0,0,0,1513,1349,1,0,0,0,1513,1353,1,0,0,0,1513,1357, - 1,0,0,0,1513,1359,1,0,0,0,1513,1364,1,0,0,0,1513,1366,1,0,0,0,1513, - 1368,1,0,0,0,1513,1371,1,0,0,0,1513,1373,1,0,0,0,1513,1375,1,0,0, - 0,1513,1377,1,0,0,0,1513,1380,1,0,0,0,1513,1382,1,0,0,0,1513,1384, - 1,0,0,0,1513,1386,1,0,0,0,1513,1388,1,0,0,0,1513,1390,1,0,0,0,1513, - 1392,1,0,0,0,1513,1394,1,0,0,0,1513,1396,1,0,0,0,1513,1398,1,0,0, - 0,1513,1400,1,0,0,0,1513,1403,1,0,0,0,1513,1406,1,0,0,0,1513,1412, - 1,0,0,0,1513,1418,1,0,0,0,1513,1424,1,0,0,0,1513,1430,1,0,0,0,1513, - 1436,1,0,0,0,1513,1444,1,0,0,0,1513,1451,1,0,0,0,1513,1457,1,0,0, - 0,1513,1463,1,0,0,0,1513,1469,1,0,0,0,1513,1474,1,0,0,0,1513,1482, - 1,0,0,0,1513,1490,1,0,0,0,1513,1499,1,0,0,0,1513,1508,1,0,0,0,1513, - 1510,1,0,0,0,1513,1511,1,0,0,0,1513,1512,1,0,0,0,1514,13,1,0,0,0, - 1515,1517,5,59,0,0,1516,1518,5,297,0,0,1517,1516,1,0,0,0,1517,1518, - 1,0,0,0,1518,1520,1,0,0,0,1519,1521,5,109,0,0,1520,1519,1,0,0,0, - 1520,1521,1,0,0,0,1521,1522,1,0,0,0,1522,1524,5,292,0,0,1523,1525, - 3,188,94,0,1524,1523,1,0,0,0,1524,1525,1,0,0,0,1525,1526,1,0,0,0, - 1526,1527,3,82,41,0,1527,15,1,0,0,0,1528,1529,5,59,0,0,1529,1531, - 5,207,0,0,1530,1528,1,0,0,0,1530,1531,1,0,0,0,1531,1532,1,0,0,0, - 1532,1533,5,243,0,0,1533,1534,5,292,0,0,1534,1535,3,82,41,0,1535, - 17,1,0,0,0,1536,1537,5,45,0,0,1537,1538,5,31,0,0,1538,1542,3,210, - 105,0,1539,1540,5,278,0,0,1540,1541,5,31,0,0,1541,1543,3,214,107, - 0,1542,1539,1,0,0,0,1542,1543,1,0,0,0,1543,1544,1,0,0,0,1544,1545, - 5,152,0,0,1545,1546,5,381,0,0,1546,1547,5,30,0,0,1547,19,1,0,0,0, - 1548,1549,5,274,0,0,1549,1550,5,31,0,0,1550,1551,3,210,105,0,1551, - 1554,5,202,0,0,1552,1555,3,64,32,0,1553,1555,3,66,33,0,1554,1552, - 1,0,0,0,1554,1553,1,0,0,0,1555,1559,1,0,0,0,1556,1557,5,282,0,0, - 1557,1558,5,20,0,0,1558,1560,5,89,0,0,1559,1556,1,0,0,0,1559,1560, - 1,0,0,0,1560,21,1,0,0,0,1561,1562,5,169,0,0,1562,1563,3,386,193, - 0,1563,23,1,0,0,0,1564,1565,5,51,0,0,1565,1566,3,386,193,0,1566, - 25,1,0,0,0,1567,1569,3,44,22,0,1568,1567,1,0,0,0,1568,1569,1,0,0, - 0,1569,1570,1,0,0,0,1570,1571,3,102,51,0,1571,1572,3,98,49,0,1572, - 27,1,0,0,0,1573,1574,5,147,0,0,1574,1576,5,215,0,0,1575,1577,5,292, - 0,0,1576,1575,1,0,0,0,1576,1577,1,0,0,0,1577,1578,1,0,0,0,1578,1583, - 3,84,42,0,1579,1581,3,32,16,0,1580,1582,3,188,94,0,1581,1580,1,0, - 0,0,1581,1582,1,0,0,0,1582,1584,1,0,0,0,1583,1579,1,0,0,0,1583,1584, - 1,0,0,0,1584,1591,1,0,0,0,1585,1586,5,31,0,0,1586,1592,5,188,0,0, - 1587,1588,5,2,0,0,1588,1589,3,92,46,0,1589,1590,5,3,0,0,1590,1592, - 1,0,0,0,1591,1585,1,0,0,0,1591,1587,1,0,0,0,1591,1592,1,0,0,0,1592, - 1650,1,0,0,0,1593,1594,5,147,0,0,1594,1596,5,152,0,0,1595,1597,5, - 292,0,0,1596,1595,1,0,0,0,1596,1597,1,0,0,0,1597,1598,1,0,0,0,1598, - 1600,3,84,42,0,1599,1601,3,32,16,0,1600,1599,1,0,0,0,1600,1601,1, - 0,0,0,1601,1603,1,0,0,0,1602,1604,3,188,94,0,1603,1602,1,0,0,0,1603, - 1604,1,0,0,0,1604,1611,1,0,0,0,1605,1606,5,31,0,0,1606,1612,5,188, - 0,0,1607,1608,5,2,0,0,1608,1609,3,92,46,0,1609,1610,5,3,0,0,1610, - 1612,1,0,0,0,1611,1605,1,0,0,0,1611,1607,1,0,0,0,1611,1612,1,0,0, - 0,1612,1650,1,0,0,0,1613,1614,5,147,0,0,1614,1616,5,152,0,0,1615, - 1617,5,292,0,0,1616,1615,1,0,0,0,1616,1617,1,0,0,0,1617,1618,1,0, - 0,0,1618,1619,3,84,42,0,1619,1620,5,243,0,0,1620,1621,3,136,68,0, - 1621,1650,1,0,0,0,1622,1623,5,147,0,0,1623,1625,5,215,0,0,1624,1626, - 5,168,0,0,1625,1624,1,0,0,0,1625,1626,1,0,0,0,1626,1627,1,0,0,0, - 1627,1628,5,90,0,0,1628,1630,3,386,193,0,1629,1631,3,240,120,0,1630, - 1629,1,0,0,0,1630,1631,1,0,0,0,1631,1633,1,0,0,0,1632,1634,3,68, - 34,0,1633,1632,1,0,0,0,1633,1634,1,0,0,0,1634,1650,1,0,0,0,1635, - 1636,5,147,0,0,1636,1638,5,215,0,0,1637,1639,5,168,0,0,1638,1637, - 1,0,0,0,1638,1639,1,0,0,0,1639,1640,1,0,0,0,1640,1642,5,90,0,0,1641, - 1643,3,386,193,0,1642,1641,1,0,0,0,1642,1643,1,0,0,0,1643,1644,1, - 0,0,0,1644,1647,3,48,24,0,1645,1646,5,206,0,0,1646,1648,3,52,26, - 0,1647,1645,1,0,0,0,1647,1648,1,0,0,0,1648,1650,1,0,0,0,1649,1573, - 1,0,0,0,1649,1593,1,0,0,0,1649,1613,1,0,0,0,1649,1622,1,0,0,0,1649, - 1635,1,0,0,0,1650,29,1,0,0,0,1651,1653,3,32,16,0,1652,1654,3,22, - 11,0,1653,1652,1,0,0,0,1653,1654,1,0,0,0,1654,31,1,0,0,0,1655,1656, - 5,216,0,0,1656,1657,5,2,0,0,1657,1662,3,34,17,0,1658,1659,5,4,0, - 0,1659,1661,3,34,17,0,1660,1658,1,0,0,0,1661,1664,1,0,0,0,1662,1660, - 1,0,0,0,1662,1663,1,0,0,0,1663,1665,1,0,0,0,1664,1662,1,0,0,0,1665, - 1666,5,3,0,0,1666,33,1,0,0,0,1667,1670,3,374,187,0,1668,1669,5,351, - 0,0,1669,1671,3,286,143,0,1670,1668,1,0,0,0,1670,1671,1,0,0,0,1671, - 1677,1,0,0,0,1672,1673,3,374,187,0,1673,1674,5,351,0,0,1674,1675, - 5,82,0,0,1675,1677,1,0,0,0,1676,1667,1,0,0,0,1676,1672,1,0,0,0,1677, - 35,1,0,0,0,1678,1679,7,11,0,0,1679,37,1,0,0,0,1680,1681,7,12,0,0, - 1681,39,1,0,0,0,1682,1688,3,96,48,0,1683,1688,3,386,193,0,1684,1688, - 3,288,144,0,1685,1688,3,290,145,0,1686,1688,3,292,146,0,1687,1682, - 1,0,0,0,1687,1683,1,0,0,0,1687,1684,1,0,0,0,1687,1685,1,0,0,0,1687, - 1686,1,0,0,0,1688,41,1,0,0,0,1689,1694,3,374,187,0,1690,1691,5,5, - 0,0,1691,1693,3,374,187,0,1692,1690,1,0,0,0,1693,1696,1,0,0,0,1694, - 1692,1,0,0,0,1694,1695,1,0,0,0,1695,43,1,0,0,0,1696,1694,1,0,0,0, - 1697,1698,5,345,0,0,1698,1703,3,46,23,0,1699,1700,5,4,0,0,1700,1702, - 3,46,23,0,1701,1699,1,0,0,0,1702,1705,1,0,0,0,1703,1701,1,0,0,0, - 1703,1704,1,0,0,0,1704,45,1,0,0,0,1705,1703,1,0,0,0,1706,1708,3, - 370,185,0,1707,1709,3,210,105,0,1708,1707,1,0,0,0,1708,1709,1,0, - 0,0,1709,1711,1,0,0,0,1710,1712,5,20,0,0,1711,1710,1,0,0,0,1711, - 1712,1,0,0,0,1712,1713,1,0,0,0,1713,1714,5,2,0,0,1714,1715,3,26, - 13,0,1715,1716,5,3,0,0,1716,47,1,0,0,0,1717,1718,5,331,0,0,1718, - 1719,3,244,122,0,1719,49,1,0,0,0,1720,1721,5,206,0,0,1721,1734,3, - 60,30,0,1722,1723,5,217,0,0,1723,1724,5,31,0,0,1724,1734,3,258,129, - 0,1725,1734,3,20,10,0,1726,1734,3,18,9,0,1727,1734,3,240,120,0,1728, - 1734,3,68,34,0,1729,1734,3,22,11,0,1730,1734,3,24,12,0,1731,1732, - 5,296,0,0,1732,1734,3,52,26,0,1733,1720,1,0,0,0,1733,1722,1,0,0, - 0,1733,1725,1,0,0,0,1733,1726,1,0,0,0,1733,1727,1,0,0,0,1733,1728, - 1,0,0,0,1733,1729,1,0,0,0,1733,1730,1,0,0,0,1733,1731,1,0,0,0,1734, - 1737,1,0,0,0,1735,1733,1,0,0,0,1735,1736,1,0,0,0,1736,51,1,0,0,0, - 1737,1735,1,0,0,0,1738,1739,5,2,0,0,1739,1744,3,54,27,0,1740,1741, - 5,4,0,0,1741,1743,3,54,27,0,1742,1740,1,0,0,0,1743,1746,1,0,0,0, - 1744,1742,1,0,0,0,1744,1745,1,0,0,0,1745,1747,1,0,0,0,1746,1744, - 1,0,0,0,1747,1748,5,3,0,0,1748,53,1,0,0,0,1749,1754,3,56,28,0,1750, - 1752,5,351,0,0,1751,1750,1,0,0,0,1751,1752,1,0,0,0,1752,1753,1,0, - 0,0,1753,1755,3,58,29,0,1754,1751,1,0,0,0,1754,1755,1,0,0,0,1755, - 55,1,0,0,0,1756,1761,3,374,187,0,1757,1758,5,5,0,0,1758,1760,3,374, - 187,0,1759,1757,1,0,0,0,1760,1763,1,0,0,0,1761,1759,1,0,0,0,1761, - 1762,1,0,0,0,1762,1766,1,0,0,0,1763,1761,1,0,0,0,1764,1766,3,386, - 193,0,1765,1756,1,0,0,0,1765,1764,1,0,0,0,1766,57,1,0,0,0,1767,1772, - 5,381,0,0,1768,1772,5,383,0,0,1769,1772,3,294,147,0,1770,1772,3, - 386,193,0,1771,1767,1,0,0,0,1771,1768,1,0,0,0,1771,1769,1,0,0,0, - 1771,1770,1,0,0,0,1772,59,1,0,0,0,1773,1774,5,2,0,0,1774,1779,3, - 62,31,0,1775,1776,5,4,0,0,1776,1778,3,62,31,0,1777,1775,1,0,0,0, - 1778,1781,1,0,0,0,1779,1777,1,0,0,0,1779,1780,1,0,0,0,1780,1782, - 1,0,0,0,1781,1779,1,0,0,0,1782,1783,5,3,0,0,1783,61,1,0,0,0,1784, - 1789,3,56,28,0,1785,1787,5,351,0,0,1786,1785,1,0,0,0,1786,1787,1, - 0,0,0,1787,1788,1,0,0,0,1788,1790,3,266,133,0,1789,1786,1,0,0,0, - 1789,1790,1,0,0,0,1790,63,1,0,0,0,1791,1792,5,2,0,0,1792,1797,3, - 286,143,0,1793,1794,5,4,0,0,1794,1796,3,286,143,0,1795,1793,1,0, - 0,0,1796,1799,1,0,0,0,1797,1795,1,0,0,0,1797,1798,1,0,0,0,1798,1800, - 1,0,0,0,1799,1797,1,0,0,0,1800,1801,5,3,0,0,1801,65,1,0,0,0,1802, - 1803,5,2,0,0,1803,1808,3,64,32,0,1804,1805,5,4,0,0,1805,1807,3,64, - 32,0,1806,1804,1,0,0,0,1807,1810,1,0,0,0,1808,1806,1,0,0,0,1808, - 1809,1,0,0,0,1809,1811,1,0,0,0,1810,1808,1,0,0,0,1811,1812,5,3,0, - 0,1812,67,1,0,0,0,1813,1814,5,282,0,0,1814,1815,5,20,0,0,1815,1820, - 3,70,35,0,1816,1817,5,282,0,0,1817,1818,5,31,0,0,1818,1820,3,72, - 36,0,1819,1813,1,0,0,0,1819,1816,1,0,0,0,1820,69,1,0,0,0,1821,1822, - 5,146,0,0,1822,1823,3,386,193,0,1823,1824,5,211,0,0,1824,1825,3, - 386,193,0,1825,1828,1,0,0,0,1826,1828,3,374,187,0,1827,1821,1,0, - 0,0,1827,1826,1,0,0,0,1828,71,1,0,0,0,1829,1833,3,386,193,0,1830, - 1831,5,345,0,0,1831,1832,5,266,0,0,1832,1834,3,52,26,0,1833,1830, - 1,0,0,0,1833,1834,1,0,0,0,1834,73,1,0,0,0,1835,1836,3,374,187,0, - 1836,1837,3,386,193,0,1837,75,1,0,0,0,1838,1839,3,28,14,0,1839,1840, - 3,26,13,0,1840,1895,1,0,0,0,1841,1843,3,144,72,0,1842,1844,3,100, - 50,0,1843,1842,1,0,0,0,1844,1845,1,0,0,0,1845,1843,1,0,0,0,1845, - 1846,1,0,0,0,1846,1895,1,0,0,0,1847,1848,5,84,0,0,1848,1849,5,123, - 0,0,1849,1850,3,84,42,0,1850,1852,3,238,119,0,1851,1853,3,136,68, - 0,1852,1851,1,0,0,0,1852,1853,1,0,0,0,1853,1895,1,0,0,0,1854,1855, - 5,328,0,0,1855,1856,3,84,42,0,1856,1857,3,238,119,0,1857,1859,3, - 118,59,0,1858,1860,3,136,68,0,1859,1858,1,0,0,0,1859,1860,1,0,0, - 0,1860,1895,1,0,0,0,1861,1862,5,178,0,0,1862,1863,5,152,0,0,1863, - 1864,3,84,42,0,1864,1865,3,238,119,0,1865,1871,5,331,0,0,1866,1872, - 3,96,48,0,1867,1868,5,2,0,0,1868,1869,3,26,13,0,1869,1870,5,3,0, - 0,1870,1872,1,0,0,0,1871,1866,1,0,0,0,1871,1867,1,0,0,0,1872,1873, - 1,0,0,0,1873,1874,3,238,119,0,1874,1875,5,202,0,0,1875,1879,3,274, - 137,0,1876,1878,3,120,60,0,1877,1876,1,0,0,0,1878,1881,1,0,0,0,1879, - 1877,1,0,0,0,1879,1880,1,0,0,0,1880,1885,1,0,0,0,1881,1879,1,0,0, - 0,1882,1884,3,122,61,0,1883,1882,1,0,0,0,1884,1887,1,0,0,0,1885, - 1883,1,0,0,0,1885,1886,1,0,0,0,1886,1891,1,0,0,0,1887,1885,1,0,0, - 0,1888,1890,3,124,62,0,1889,1888,1,0,0,0,1890,1893,1,0,0,0,1891, - 1889,1,0,0,0,1891,1892,1,0,0,0,1892,1895,1,0,0,0,1893,1891,1,0,0, - 0,1894,1838,1,0,0,0,1894,1841,1,0,0,0,1894,1847,1,0,0,0,1894,1854, - 1,0,0,0,1894,1861,1,0,0,0,1895,77,1,0,0,0,1896,1897,3,96,48,0,1897, - 79,1,0,0,0,1898,1899,3,96,48,0,1899,81,1,0,0,0,1900,1901,3,250,125, - 0,1901,83,1,0,0,0,1902,1903,3,250,125,0,1903,85,1,0,0,0,1904,1905, - 3,252,126,0,1905,87,1,0,0,0,1906,1907,3,252,126,0,1907,89,1,0,0, - 0,1908,1909,3,244,122,0,1909,91,1,0,0,0,1910,1915,3,90,45,0,1911, - 1912,5,4,0,0,1912,1914,3,90,45,0,1913,1911,1,0,0,0,1914,1917,1,0, - 0,0,1915,1913,1,0,0,0,1915,1916,1,0,0,0,1916,93,1,0,0,0,1917,1915, - 1,0,0,0,1918,1919,3,370,185,0,1919,95,1,0,0,0,1920,1921,5,136,0, - 0,1921,1922,5,2,0,0,1922,1923,3,266,133,0,1923,1924,5,3,0,0,1924, - 1927,1,0,0,0,1925,1927,3,244,122,0,1926,1920,1,0,0,0,1926,1925,1, - 0,0,0,1927,97,1,0,0,0,1928,1929,5,208,0,0,1929,1930,5,31,0,0,1930, - 1935,3,106,53,0,1931,1932,5,4,0,0,1932,1934,3,106,53,0,1933,1931, - 1,0,0,0,1934,1937,1,0,0,0,1935,1933,1,0,0,0,1935,1936,1,0,0,0,1936, - 1939,1,0,0,0,1937,1935,1,0,0,0,1938,1928,1,0,0,0,1938,1939,1,0,0, - 0,1939,1950,1,0,0,0,1940,1941,5,44,0,0,1941,1942,5,31,0,0,1942,1947, - 3,266,133,0,1943,1944,5,4,0,0,1944,1946,3,266,133,0,1945,1943,1, - 0,0,0,1946,1949,1,0,0,0,1947,1945,1,0,0,0,1947,1948,1,0,0,0,1948, - 1951,1,0,0,0,1949,1947,1,0,0,0,1950,1940,1,0,0,0,1950,1951,1,0,0, - 0,1951,1962,1,0,0,0,1952,1953,5,93,0,0,1953,1954,5,31,0,0,1954,1959, - 3,266,133,0,1955,1956,5,4,0,0,1956,1958,3,266,133,0,1957,1955,1, - 0,0,0,1958,1961,1,0,0,0,1959,1957,1,0,0,0,1959,1960,1,0,0,0,1960, - 1963,1,0,0,0,1961,1959,1,0,0,0,1962,1952,1,0,0,0,1962,1963,1,0,0, - 0,1963,1974,1,0,0,0,1964,1965,5,277,0,0,1965,1966,5,31,0,0,1966, - 1971,3,106,53,0,1967,1968,5,4,0,0,1968,1970,3,106,53,0,1969,1967, - 1,0,0,0,1970,1973,1,0,0,0,1971,1969,1,0,0,0,1971,1972,1,0,0,0,1972, - 1975,1,0,0,0,1973,1971,1,0,0,0,1974,1964,1,0,0,0,1974,1975,1,0,0, - 0,1975,1977,1,0,0,0,1976,1978,3,350,175,0,1977,1976,1,0,0,0,1977, - 1978,1,0,0,0,1978,1984,1,0,0,0,1979,1982,5,164,0,0,1980,1983,5,10, - 0,0,1981,1983,3,266,133,0,1982,1980,1,0,0,0,1982,1981,1,0,0,0,1983, - 1985,1,0,0,0,1984,1979,1,0,0,0,1984,1985,1,0,0,0,1985,1988,1,0,0, - 0,1986,1987,5,201,0,0,1987,1989,3,266,133,0,1988,1986,1,0,0,0,1988, - 1989,1,0,0,0,1989,99,1,0,0,0,1990,1991,3,28,14,0,1991,1992,3,110, - 55,0,1992,101,1,0,0,0,1993,1994,6,51,-1,0,1994,1995,3,104,52,0,1995, - 2016,1,0,0,0,1996,1997,10,3,0,0,1997,1999,7,13,0,0,1998,2000,3,194, - 97,0,1999,1998,1,0,0,0,1999,2000,1,0,0,0,2000,2001,1,0,0,0,2001, - 2015,3,102,51,4,2002,2003,10,2,0,0,2003,2005,5,148,0,0,2004,2006, - 3,194,97,0,2005,2004,1,0,0,0,2005,2006,1,0,0,0,2006,2007,1,0,0,0, - 2007,2015,3,102,51,3,2008,2009,10,1,0,0,2009,2011,7,14,0,0,2010, - 2012,3,194,97,0,2011,2010,1,0,0,0,2011,2012,1,0,0,0,2012,2013,1, - 0,0,0,2013,2015,3,102,51,2,2014,1996,1,0,0,0,2014,2002,1,0,0,0,2014, - 2008,1,0,0,0,2015,2018,1,0,0,0,2016,2014,1,0,0,0,2016,2017,1,0,0, - 0,2017,103,1,0,0,0,2018,2016,1,0,0,0,2019,2029,3,112,56,0,2020,2029, - 3,108,54,0,2021,2022,5,292,0,0,2022,2029,3,84,42,0,2023,2029,3,224, - 112,0,2024,2025,5,2,0,0,2025,2026,3,26,13,0,2026,2027,5,3,0,0,2027, - 2029,1,0,0,0,2028,2019,1,0,0,0,2028,2020,1,0,0,0,2028,2021,1,0,0, - 0,2028,2023,1,0,0,0,2028,2024,1,0,0,0,2029,105,1,0,0,0,2030,2033, - 3,90,45,0,2031,2033,3,266,133,0,2032,2030,1,0,0,0,2032,2031,1,0, - 0,0,2033,2035,1,0,0,0,2034,2036,7,15,0,0,2035,2034,1,0,0,0,2035, - 2036,1,0,0,0,2036,2039,1,0,0,0,2037,2038,5,198,0,0,2038,2040,7,16, - 0,0,2039,2037,1,0,0,0,2039,2040,1,0,0,0,2040,107,1,0,0,0,2041,2043, - 3,144,72,0,2042,2044,3,110,55,0,2043,2042,1,0,0,0,2044,2045,1,0, - 0,0,2045,2043,1,0,0,0,2045,2046,1,0,0,0,2046,109,1,0,0,0,2047,2049, - 3,114,57,0,2048,2050,3,136,68,0,2049,2048,1,0,0,0,2049,2050,1,0, - 0,0,2050,2051,1,0,0,0,2051,2052,3,98,49,0,2052,2075,1,0,0,0,2053, - 2057,3,116,58,0,2054,2056,3,192,96,0,2055,2054,1,0,0,0,2056,2059, - 1,0,0,0,2057,2055,1,0,0,0,2057,2058,1,0,0,0,2058,2061,1,0,0,0,2059, - 2057,1,0,0,0,2060,2062,3,136,68,0,2061,2060,1,0,0,0,2061,2062,1, - 0,0,0,2062,2064,1,0,0,0,2063,2065,3,150,75,0,2064,2063,1,0,0,0,2064, - 2065,1,0,0,0,2065,2067,1,0,0,0,2066,2068,3,138,69,0,2067,2066,1, - 0,0,0,2067,2068,1,0,0,0,2068,2070,1,0,0,0,2069,2071,3,350,175,0, - 2070,2069,1,0,0,0,2070,2071,1,0,0,0,2071,2072,1,0,0,0,2072,2073, - 3,98,49,0,2073,2075,1,0,0,0,2074,2047,1,0,0,0,2074,2053,1,0,0,0, - 2075,111,1,0,0,0,2076,2078,3,114,57,0,2077,2079,3,144,72,0,2078, - 2077,1,0,0,0,2078,2079,1,0,0,0,2079,2083,1,0,0,0,2080,2082,3,192, - 96,0,2081,2080,1,0,0,0,2082,2085,1,0,0,0,2083,2081,1,0,0,0,2083, - 2084,1,0,0,0,2084,2087,1,0,0,0,2085,2083,1,0,0,0,2086,2088,3,136, - 68,0,2087,2086,1,0,0,0,2087,2088,1,0,0,0,2088,2090,1,0,0,0,2089, - 2091,3,150,75,0,2090,2089,1,0,0,0,2090,2091,1,0,0,0,2091,2093,1, - 0,0,0,2092,2094,3,138,69,0,2093,2092,1,0,0,0,2093,2094,1,0,0,0,2094, - 2096,1,0,0,0,2095,2097,3,350,175,0,2096,2095,1,0,0,0,2096,2097,1, - 0,0,0,2097,2121,1,0,0,0,2098,2100,3,116,58,0,2099,2101,3,144,72, - 0,2100,2099,1,0,0,0,2100,2101,1,0,0,0,2101,2105,1,0,0,0,2102,2104, - 3,192,96,0,2103,2102,1,0,0,0,2104,2107,1,0,0,0,2105,2103,1,0,0,0, - 2105,2106,1,0,0,0,2106,2109,1,0,0,0,2107,2105,1,0,0,0,2108,2110, - 3,136,68,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110,2112,1,0,0,0, - 2111,2113,3,150,75,0,2112,2111,1,0,0,0,2112,2113,1,0,0,0,2113,2115, - 1,0,0,0,2114,2116,3,138,69,0,2115,2114,1,0,0,0,2115,2116,1,0,0,0, - 2116,2118,1,0,0,0,2117,2119,3,350,175,0,2118,2117,1,0,0,0,2118,2119, - 1,0,0,0,2119,2121,1,0,0,0,2120,2076,1,0,0,0,2120,2098,1,0,0,0,2121, - 113,1,0,0,0,2122,2123,5,262,0,0,2123,2124,5,313,0,0,2124,2126,5, - 2,0,0,2125,2127,3,194,97,0,2126,2125,1,0,0,0,2126,2127,1,0,0,0,2127, - 2128,1,0,0,0,2128,2129,3,272,136,0,2129,2130,5,3,0,0,2130,2142,1, - 0,0,0,2131,2133,5,176,0,0,2132,2134,3,194,97,0,2133,2132,1,0,0,0, - 2133,2134,1,0,0,0,2134,2135,1,0,0,0,2135,2142,3,272,136,0,2136,2138, - 5,237,0,0,2137,2139,3,194,97,0,2138,2137,1,0,0,0,2138,2139,1,0,0, - 0,2139,2140,1,0,0,0,2140,2142,3,272,136,0,2141,2122,1,0,0,0,2141, - 2131,1,0,0,0,2141,2136,1,0,0,0,2142,2144,1,0,0,0,2143,2145,3,240, - 120,0,2144,2143,1,0,0,0,2144,2145,1,0,0,0,2145,2148,1,0,0,0,2146, - 2147,5,235,0,0,2147,2149,3,386,193,0,2148,2146,1,0,0,0,2148,2149, - 1,0,0,0,2149,2150,1,0,0,0,2150,2151,5,331,0,0,2151,2164,3,386,193, - 0,2152,2162,5,20,0,0,2153,2163,3,212,106,0,2154,2163,3,332,166,0, - 2155,2158,5,2,0,0,2156,2159,3,212,106,0,2157,2159,3,332,166,0,2158, - 2156,1,0,0,0,2158,2157,1,0,0,0,2159,2160,1,0,0,0,2160,2161,5,3,0, - 0,2161,2163,1,0,0,0,2162,2153,1,0,0,0,2162,2154,1,0,0,0,2162,2155, - 1,0,0,0,2163,2165,1,0,0,0,2164,2152,1,0,0,0,2164,2165,1,0,0,0,2165, - 2167,1,0,0,0,2166,2168,3,240,120,0,2167,2166,1,0,0,0,2167,2168,1, - 0,0,0,2168,2171,1,0,0,0,2169,2170,5,234,0,0,2170,2172,3,386,193, - 0,2171,2169,1,0,0,0,2171,2172,1,0,0,0,2172,115,1,0,0,0,2173,2177, - 5,262,0,0,2174,2176,3,140,70,0,2175,2174,1,0,0,0,2176,2179,1,0,0, - 0,2177,2175,1,0,0,0,2177,2178,1,0,0,0,2178,2181,1,0,0,0,2179,2177, - 1,0,0,0,2180,2182,3,194,97,0,2181,2180,1,0,0,0,2181,2182,1,0,0,0, - 2182,2183,1,0,0,0,2183,2184,3,256,128,0,2184,117,1,0,0,0,2185,2186, - 5,268,0,0,2186,2187,3,132,66,0,2187,119,1,0,0,0,2188,2189,5,342, - 0,0,2189,2192,5,177,0,0,2190,2191,5,14,0,0,2191,2193,3,274,137,0, - 2192,2190,1,0,0,0,2192,2193,1,0,0,0,2193,2194,1,0,0,0,2194,2195, - 5,299,0,0,2195,2196,3,126,63,0,2196,121,1,0,0,0,2197,2198,5,342, - 0,0,2198,2199,5,196,0,0,2199,2202,5,177,0,0,2200,2201,5,31,0,0,2201, - 2203,5,295,0,0,2202,2200,1,0,0,0,2202,2203,1,0,0,0,2203,2206,1,0, - 0,0,2204,2205,5,14,0,0,2205,2207,3,274,137,0,2206,2204,1,0,0,0,2206, - 2207,1,0,0,0,2207,2208,1,0,0,0,2208,2209,5,299,0,0,2209,2210,3,128, - 64,0,2210,123,1,0,0,0,2211,2212,5,342,0,0,2212,2213,5,196,0,0,2213, - 2214,5,177,0,0,2214,2215,5,31,0,0,2215,2218,5,279,0,0,2216,2217, - 5,14,0,0,2217,2219,3,274,137,0,2218,2216,1,0,0,0,2218,2219,1,0,0, - 0,2219,2220,1,0,0,0,2220,2221,5,299,0,0,2221,2222,3,130,65,0,2222, - 125,1,0,0,0,2223,2231,5,84,0,0,2224,2225,5,328,0,0,2225,2226,5,268, - 0,0,2226,2231,5,362,0,0,2227,2228,5,328,0,0,2228,2229,5,268,0,0, - 2229,2231,3,132,66,0,2230,2223,1,0,0,0,2230,2224,1,0,0,0,2230,2227, - 1,0,0,0,2231,127,1,0,0,0,2232,2233,5,147,0,0,2233,2251,5,362,0,0, - 2234,2235,5,147,0,0,2235,2236,5,2,0,0,2236,2237,3,242,121,0,2237, - 2238,5,3,0,0,2238,2239,5,332,0,0,2239,2240,5,2,0,0,2240,2245,3,266, - 133,0,2241,2242,5,4,0,0,2242,2244,3,266,133,0,2243,2241,1,0,0,0, - 2244,2247,1,0,0,0,2245,2243,1,0,0,0,2245,2246,1,0,0,0,2246,2248, - 1,0,0,0,2247,2245,1,0,0,0,2248,2249,5,3,0,0,2249,2251,1,0,0,0,2250, - 2232,1,0,0,0,2250,2234,1,0,0,0,2251,129,1,0,0,0,2252,2257,5,84,0, - 0,2253,2254,5,328,0,0,2254,2255,5,268,0,0,2255,2257,3,132,66,0,2256, - 2252,1,0,0,0,2256,2253,1,0,0,0,2257,131,1,0,0,0,2258,2263,3,134, - 67,0,2259,2260,5,4,0,0,2260,2262,3,134,67,0,2261,2259,1,0,0,0,2262, - 2265,1,0,0,0,2263,2261,1,0,0,0,2263,2264,1,0,0,0,2264,133,1,0,0, - 0,2265,2263,1,0,0,0,2266,2267,3,244,122,0,2267,2268,5,351,0,0,2268, - 2269,3,266,133,0,2269,135,1,0,0,0,2270,2271,5,343,0,0,2271,2272, - 3,274,137,0,2272,137,1,0,0,0,2273,2274,5,132,0,0,2274,2275,3,274, - 137,0,2275,139,1,0,0,0,2276,2277,5,373,0,0,2277,2284,3,142,71,0, - 2278,2280,5,4,0,0,2279,2278,1,0,0,0,2279,2280,1,0,0,0,2280,2281, - 1,0,0,0,2281,2283,3,142,71,0,2282,2279,1,0,0,0,2283,2286,1,0,0,0, - 2284,2282,1,0,0,0,2284,2285,1,0,0,0,2285,2287,1,0,0,0,2286,2284, - 1,0,0,0,2287,2288,5,374,0,0,2288,141,1,0,0,0,2289,2303,3,374,187, - 0,2290,2291,3,374,187,0,2291,2292,5,2,0,0,2292,2297,3,282,141,0, - 2293,2294,5,4,0,0,2294,2296,3,282,141,0,2295,2293,1,0,0,0,2296,2299, - 1,0,0,0,2297,2295,1,0,0,0,2297,2298,1,0,0,0,2298,2300,1,0,0,0,2299, - 2297,1,0,0,0,2300,2301,5,3,0,0,2301,2303,1,0,0,0,2302,2289,1,0,0, - 0,2302,2290,1,0,0,0,2303,143,1,0,0,0,2304,2305,5,123,0,0,2305,2310, - 3,196,98,0,2306,2307,5,4,0,0,2307,2309,3,196,98,0,2308,2306,1,0, - 0,0,2309,2312,1,0,0,0,2310,2308,1,0,0,0,2310,2311,1,0,0,0,2311,2316, - 1,0,0,0,2312,2310,1,0,0,0,2313,2315,3,192,96,0,2314,2313,1,0,0,0, - 2315,2318,1,0,0,0,2316,2314,1,0,0,0,2316,2317,1,0,0,0,2317,2320, - 1,0,0,0,2318,2316,1,0,0,0,2319,2321,3,160,80,0,2320,2319,1,0,0,0, - 2320,2321,1,0,0,0,2321,2323,1,0,0,0,2322,2324,3,166,83,0,2323,2322, - 1,0,0,0,2323,2324,1,0,0,0,2324,145,1,0,0,0,2325,2326,7,17,0,0,2326, - 147,1,0,0,0,2327,2329,5,119,0,0,2328,2327,1,0,0,0,2328,2329,1,0, - 0,0,2329,2330,1,0,0,0,2330,2331,7,18,0,0,2331,2332,5,20,0,0,2332, - 2333,5,200,0,0,2333,2342,3,390,195,0,2334,2336,5,119,0,0,2335,2334, - 1,0,0,0,2335,2336,1,0,0,0,2336,2337,1,0,0,0,2337,2338,7,19,0,0,2338, - 2339,5,20,0,0,2339,2340,5,200,0,0,2340,2342,3,278,139,0,2341,2328, - 1,0,0,0,2341,2335,1,0,0,0,2342,149,1,0,0,0,2343,2344,5,130,0,0,2344, - 2345,5,31,0,0,2345,2350,3,152,76,0,2346,2347,5,4,0,0,2347,2349,3, - 152,76,0,2348,2346,1,0,0,0,2349,2352,1,0,0,0,2350,2348,1,0,0,0,2350, - 2351,1,0,0,0,2351,2383,1,0,0,0,2352,2350,1,0,0,0,2353,2354,5,130, - 0,0,2354,2355,5,31,0,0,2355,2360,3,266,133,0,2356,2357,5,4,0,0,2357, - 2359,3,266,133,0,2358,2356,1,0,0,0,2359,2362,1,0,0,0,2360,2358,1, - 0,0,0,2360,2361,1,0,0,0,2361,2380,1,0,0,0,2362,2360,1,0,0,0,2363, - 2364,5,345,0,0,2364,2381,5,255,0,0,2365,2366,5,345,0,0,2366,2381, - 5,61,0,0,2367,2368,5,131,0,0,2368,2369,5,270,0,0,2369,2370,5,2,0, - 0,2370,2375,3,158,79,0,2371,2372,5,4,0,0,2372,2374,3,158,79,0,2373, - 2371,1,0,0,0,2374,2377,1,0,0,0,2375,2373,1,0,0,0,2375,2376,1,0,0, - 0,2376,2378,1,0,0,0,2377,2375,1,0,0,0,2378,2379,5,3,0,0,2379,2381, - 1,0,0,0,2380,2363,1,0,0,0,2380,2365,1,0,0,0,2380,2367,1,0,0,0,2380, - 2381,1,0,0,0,2381,2383,1,0,0,0,2382,2343,1,0,0,0,2382,2353,1,0,0, - 0,2383,151,1,0,0,0,2384,2388,3,90,45,0,2385,2388,3,154,77,0,2386, - 2388,3,266,133,0,2387,2384,1,0,0,0,2387,2385,1,0,0,0,2387,2386,1, - 0,0,0,2388,153,1,0,0,0,2389,2390,7,20,0,0,2390,2391,5,2,0,0,2391, - 2396,3,158,79,0,2392,2393,5,4,0,0,2393,2395,3,158,79,0,2394,2392, - 1,0,0,0,2395,2398,1,0,0,0,2396,2394,1,0,0,0,2396,2397,1,0,0,0,2397, - 2399,1,0,0,0,2398,2396,1,0,0,0,2399,2400,5,3,0,0,2400,2415,1,0,0, - 0,2401,2402,5,131,0,0,2402,2403,5,270,0,0,2403,2404,5,2,0,0,2404, - 2409,3,156,78,0,2405,2406,5,4,0,0,2406,2408,3,156,78,0,2407,2405, - 1,0,0,0,2408,2411,1,0,0,0,2409,2407,1,0,0,0,2409,2410,1,0,0,0,2410, - 2412,1,0,0,0,2411,2409,1,0,0,0,2412,2413,5,3,0,0,2413,2415,1,0,0, - 0,2414,2389,1,0,0,0,2414,2401,1,0,0,0,2415,155,1,0,0,0,2416,2419, - 3,154,77,0,2417,2419,3,158,79,0,2418,2416,1,0,0,0,2418,2417,1,0, - 0,0,2419,157,1,0,0,0,2420,2441,3,90,45,0,2421,2441,3,266,133,0,2422, - 2437,5,2,0,0,2423,2426,3,90,45,0,2424,2426,3,266,133,0,2425,2423, - 1,0,0,0,2425,2424,1,0,0,0,2426,2434,1,0,0,0,2427,2430,5,4,0,0,2428, - 2431,3,90,45,0,2429,2431,3,266,133,0,2430,2428,1,0,0,0,2430,2429, - 1,0,0,0,2431,2433,1,0,0,0,2432,2427,1,0,0,0,2433,2436,1,0,0,0,2434, - 2432,1,0,0,0,2434,2435,1,0,0,0,2435,2438,1,0,0,0,2436,2434,1,0,0, - 0,2437,2425,1,0,0,0,2437,2438,1,0,0,0,2438,2439,1,0,0,0,2439,2441, - 5,3,0,0,2440,2420,1,0,0,0,2440,2421,1,0,0,0,2440,2422,1,0,0,0,2441, - 159,1,0,0,0,2442,2443,5,222,0,0,2443,2444,5,2,0,0,2444,2445,3,256, - 128,0,2445,2446,5,119,0,0,2446,2447,3,162,81,0,2447,2448,5,140,0, - 0,2448,2449,5,2,0,0,2449,2454,3,164,82,0,2450,2451,5,4,0,0,2451, - 2453,3,164,82,0,2452,2450,1,0,0,0,2453,2456,1,0,0,0,2454,2452,1, - 0,0,0,2454,2455,1,0,0,0,2455,2457,1,0,0,0,2456,2454,1,0,0,0,2457, - 2458,5,3,0,0,2458,2459,5,3,0,0,2459,161,1,0,0,0,2460,2473,3,374, - 187,0,2461,2462,5,2,0,0,2462,2467,3,374,187,0,2463,2464,5,4,0,0, - 2464,2466,3,374,187,0,2465,2463,1,0,0,0,2466,2469,1,0,0,0,2467,2465, - 1,0,0,0,2467,2468,1,0,0,0,2468,2470,1,0,0,0,2469,2467,1,0,0,0,2470, - 2471,5,3,0,0,2471,2473,1,0,0,0,2472,2460,1,0,0,0,2472,2461,1,0,0, - 0,2473,163,1,0,0,0,2474,2479,3,266,133,0,2475,2477,5,20,0,0,2476, - 2475,1,0,0,0,2476,2477,1,0,0,0,2477,2478,1,0,0,0,2478,2480,3,374, - 187,0,2479,2476,1,0,0,0,2479,2480,1,0,0,0,2480,165,1,0,0,0,2481, - 2483,5,326,0,0,2482,2484,3,168,84,0,2483,2482,1,0,0,0,2483,2484, - 1,0,0,0,2484,2485,1,0,0,0,2485,2486,5,2,0,0,2486,2487,3,170,85,0, - 2487,2492,5,3,0,0,2488,2490,5,20,0,0,2489,2488,1,0,0,0,2489,2490, - 1,0,0,0,2490,2491,1,0,0,0,2491,2493,3,374,187,0,2492,2489,1,0,0, - 0,2492,2493,1,0,0,0,2493,167,1,0,0,0,2494,2495,7,21,0,0,2495,2496, - 5,198,0,0,2496,169,1,0,0,0,2497,2500,3,172,86,0,2498,2500,3,174, - 87,0,2499,2497,1,0,0,0,2499,2498,1,0,0,0,2500,171,1,0,0,0,2501,2502, - 3,178,89,0,2502,2503,5,119,0,0,2503,2504,3,180,90,0,2504,2505,5, - 140,0,0,2505,2506,5,2,0,0,2506,2511,3,182,91,0,2507,2508,5,4,0,0, - 2508,2510,3,182,91,0,2509,2507,1,0,0,0,2510,2513,1,0,0,0,2511,2509, - 1,0,0,0,2511,2512,1,0,0,0,2512,2514,1,0,0,0,2513,2511,1,0,0,0,2514, - 2515,5,3,0,0,2515,173,1,0,0,0,2516,2517,5,2,0,0,2517,2522,3,178, - 89,0,2518,2519,5,4,0,0,2519,2521,3,178,89,0,2520,2518,1,0,0,0,2521, - 2524,1,0,0,0,2522,2520,1,0,0,0,2522,2523,1,0,0,0,2523,2525,1,0,0, - 0,2524,2522,1,0,0,0,2525,2526,5,3,0,0,2526,2527,5,119,0,0,2527,2528, - 3,180,90,0,2528,2529,5,140,0,0,2529,2530,5,2,0,0,2530,2535,3,176, - 88,0,2531,2532,5,4,0,0,2532,2534,3,176,88,0,2533,2531,1,0,0,0,2534, - 2537,1,0,0,0,2535,2533,1,0,0,0,2535,2536,1,0,0,0,2536,2538,1,0,0, - 0,2537,2535,1,0,0,0,2538,2539,5,3,0,0,2539,175,1,0,0,0,2540,2541, - 5,2,0,0,2541,2546,3,184,92,0,2542,2543,5,4,0,0,2543,2545,3,184,92, - 0,2544,2542,1,0,0,0,2545,2548,1,0,0,0,2546,2544,1,0,0,0,2546,2547, - 1,0,0,0,2547,2549,1,0,0,0,2548,2546,1,0,0,0,2549,2551,5,3,0,0,2550, - 2552,3,186,93,0,2551,2550,1,0,0,0,2551,2552,1,0,0,0,2552,177,1,0, - 0,0,2553,2554,3,374,187,0,2554,179,1,0,0,0,2555,2556,3,374,187,0, - 2556,181,1,0,0,0,2557,2559,3,184,92,0,2558,2560,3,186,93,0,2559, - 2558,1,0,0,0,2559,2560,1,0,0,0,2560,183,1,0,0,0,2561,2562,3,244, - 122,0,2562,185,1,0,0,0,2563,2565,5,20,0,0,2564,2563,1,0,0,0,2564, - 2565,1,0,0,0,2565,2566,1,0,0,0,2566,2567,3,374,187,0,2567,187,1, - 0,0,0,2568,2569,5,137,0,0,2569,2570,5,196,0,0,2570,2571,5,105,0, - 0,2571,189,1,0,0,0,2572,2573,5,137,0,0,2573,2574,5,105,0,0,2574, - 191,1,0,0,0,2575,2576,5,158,0,0,2576,2578,5,337,0,0,2577,2579,5, - 210,0,0,2578,2577,1,0,0,0,2578,2579,1,0,0,0,2579,2580,1,0,0,0,2580, - 2581,3,88,44,0,2581,2590,5,2,0,0,2582,2587,3,266,133,0,2583,2584, - 5,4,0,0,2584,2586,3,266,133,0,2585,2583,1,0,0,0,2586,2589,1,0,0, - 0,2587,2585,1,0,0,0,2587,2588,1,0,0,0,2588,2591,1,0,0,0,2589,2587, - 1,0,0,0,2590,2582,1,0,0,0,2590,2591,1,0,0,0,2591,2592,1,0,0,0,2592, - 2593,5,3,0,0,2593,2605,3,238,119,0,2594,2596,5,20,0,0,2595,2594, - 1,0,0,0,2595,2596,1,0,0,0,2596,2597,1,0,0,0,2597,2602,3,374,187, - 0,2598,2599,5,4,0,0,2599,2601,3,374,187,0,2600,2598,1,0,0,0,2601, - 2604,1,0,0,0,2602,2600,1,0,0,0,2602,2603,1,0,0,0,2603,2606,1,0,0, - 0,2604,2602,1,0,0,0,2605,2595,1,0,0,0,2605,2606,1,0,0,0,2606,193, - 1,0,0,0,2607,2608,7,22,0,0,2608,195,1,0,0,0,2609,2621,3,84,42,0, - 2610,2612,5,158,0,0,2611,2610,1,0,0,0,2611,2612,1,0,0,0,2612,2613, - 1,0,0,0,2613,2617,3,222,111,0,2614,2616,3,198,99,0,2615,2614,1,0, - 0,0,2616,2619,1,0,0,0,2617,2615,1,0,0,0,2617,2618,1,0,0,0,2618,2621, - 1,0,0,0,2619,2617,1,0,0,0,2620,2609,1,0,0,0,2620,2611,1,0,0,0,2621, - 197,1,0,0,0,2622,2626,3,200,100,0,2623,2626,3,160,80,0,2624,2626, - 3,166,83,0,2625,2622,1,0,0,0,2625,2623,1,0,0,0,2625,2624,1,0,0,0, - 2626,199,1,0,0,0,2627,2628,3,202,101,0,2628,2630,5,155,0,0,2629, - 2631,5,158,0,0,2630,2629,1,0,0,0,2630,2631,1,0,0,0,2631,2632,1,0, - 0,0,2632,2634,3,222,111,0,2633,2635,3,204,102,0,2634,2633,1,0,0, - 0,2634,2635,1,0,0,0,2635,2645,1,0,0,0,2636,2637,5,193,0,0,2637,2638, - 3,202,101,0,2638,2640,5,155,0,0,2639,2641,5,158,0,0,2640,2639,1, - 0,0,0,2640,2641,1,0,0,0,2641,2642,1,0,0,0,2642,2643,3,222,111,0, - 2643,2645,1,0,0,0,2644,2627,1,0,0,0,2644,2636,1,0,0,0,2645,201,1, - 0,0,0,2646,2648,5,144,0,0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648, - 2671,1,0,0,0,2649,2671,5,60,0,0,2650,2652,5,161,0,0,2651,2653,5, - 210,0,0,2652,2651,1,0,0,0,2652,2653,1,0,0,0,2653,2671,1,0,0,0,2654, - 2656,5,161,0,0,2655,2654,1,0,0,0,2655,2656,1,0,0,0,2656,2657,1,0, - 0,0,2657,2671,5,263,0,0,2658,2660,5,249,0,0,2659,2661,5,210,0,0, - 2660,2659,1,0,0,0,2660,2661,1,0,0,0,2661,2671,1,0,0,0,2662,2664, - 5,124,0,0,2663,2665,5,210,0,0,2664,2663,1,0,0,0,2664,2665,1,0,0, - 0,2665,2671,1,0,0,0,2666,2668,5,161,0,0,2667,2666,1,0,0,0,2667,2668, - 1,0,0,0,2668,2669,1,0,0,0,2669,2671,5,15,0,0,2670,2647,1,0,0,0,2670, - 2649,1,0,0,0,2670,2650,1,0,0,0,2670,2655,1,0,0,0,2670,2658,1,0,0, - 0,2670,2662,1,0,0,0,2670,2667,1,0,0,0,2671,203,1,0,0,0,2672,2673, - 5,202,0,0,2673,2677,3,274,137,0,2674,2675,5,331,0,0,2675,2677,3, - 210,105,0,2676,2672,1,0,0,0,2676,2674,1,0,0,0,2677,205,1,0,0,0,2678, - 2679,5,294,0,0,2679,2681,5,2,0,0,2680,2682,3,208,104,0,2681,2680, - 1,0,0,0,2681,2682,1,0,0,0,2682,2683,1,0,0,0,2683,2688,5,3,0,0,2684, - 2685,5,242,0,0,2685,2686,5,2,0,0,2686,2687,5,381,0,0,2687,2689,5, - 3,0,0,2688,2684,1,0,0,0,2688,2689,1,0,0,0,2689,207,1,0,0,0,2690, - 2692,5,361,0,0,2691,2690,1,0,0,0,2691,2692,1,0,0,0,2692,2693,1,0, - 0,0,2693,2694,7,23,0,0,2694,2715,5,221,0,0,2695,2696,3,266,133,0, - 2696,2697,5,257,0,0,2697,2715,1,0,0,0,2698,2699,5,29,0,0,2699,2700, - 5,381,0,0,2700,2701,5,209,0,0,2701,2702,5,200,0,0,2702,2711,5,381, - 0,0,2703,2709,5,202,0,0,2704,2710,3,374,187,0,2705,2706,3,368,184, - 0,2706,2707,5,2,0,0,2707,2708,5,3,0,0,2708,2710,1,0,0,0,2709,2704, - 1,0,0,0,2709,2705,1,0,0,0,2710,2712,1,0,0,0,2711,2703,1,0,0,0,2711, - 2712,1,0,0,0,2712,2715,1,0,0,0,2713,2715,3,266,133,0,2714,2691,1, - 0,0,0,2714,2695,1,0,0,0,2714,2698,1,0,0,0,2714,2713,1,0,0,0,2715, - 209,1,0,0,0,2716,2717,5,2,0,0,2717,2718,3,212,106,0,2718,2719,5, - 3,0,0,2719,211,1,0,0,0,2720,2725,3,370,185,0,2721,2722,5,4,0,0,2722, - 2724,3,370,185,0,2723,2721,1,0,0,0,2724,2727,1,0,0,0,2725,2723,1, - 0,0,0,2725,2726,1,0,0,0,2726,213,1,0,0,0,2727,2725,1,0,0,0,2728, - 2729,5,2,0,0,2729,2734,3,216,108,0,2730,2731,5,4,0,0,2731,2733,3, - 216,108,0,2732,2730,1,0,0,0,2733,2736,1,0,0,0,2734,2732,1,0,0,0, - 2734,2735,1,0,0,0,2735,2737,1,0,0,0,2736,2734,1,0,0,0,2737,2738, - 5,3,0,0,2738,215,1,0,0,0,2739,2741,3,370,185,0,2740,2742,7,15,0, - 0,2741,2740,1,0,0,0,2741,2742,1,0,0,0,2742,217,1,0,0,0,2743,2744, - 5,2,0,0,2744,2749,3,220,110,0,2745,2746,5,4,0,0,2746,2748,3,220, - 110,0,2747,2745,1,0,0,0,2748,2751,1,0,0,0,2749,2747,1,0,0,0,2749, - 2750,1,0,0,0,2750,2752,1,0,0,0,2751,2749,1,0,0,0,2752,2753,5,3,0, - 0,2753,219,1,0,0,0,2754,2756,3,374,187,0,2755,2757,3,24,12,0,2756, - 2755,1,0,0,0,2756,2757,1,0,0,0,2757,221,1,0,0,0,2758,2760,3,96,48, - 0,2759,2761,3,148,74,0,2760,2759,1,0,0,0,2760,2761,1,0,0,0,2761, - 2763,1,0,0,0,2762,2764,3,206,103,0,2763,2762,1,0,0,0,2763,2764,1, - 0,0,0,2764,2765,1,0,0,0,2765,2766,3,238,119,0,2766,2786,1,0,0,0, - 2767,2768,5,2,0,0,2768,2769,3,26,13,0,2769,2771,5,3,0,0,2770,2772, - 3,206,103,0,2771,2770,1,0,0,0,2771,2772,1,0,0,0,2772,2773,1,0,0, - 0,2773,2774,3,238,119,0,2774,2786,1,0,0,0,2775,2776,5,2,0,0,2776, - 2777,3,196,98,0,2777,2779,5,3,0,0,2778,2780,3,206,103,0,2779,2778, - 1,0,0,0,2779,2780,1,0,0,0,2780,2781,1,0,0,0,2781,2782,3,238,119, - 0,2782,2786,1,0,0,0,2783,2786,3,224,112,0,2784,2786,3,236,118,0, - 2785,2758,1,0,0,0,2785,2767,1,0,0,0,2785,2775,1,0,0,0,2785,2783, - 1,0,0,0,2785,2784,1,0,0,0,2786,223,1,0,0,0,2787,2788,5,332,0,0,2788, - 2793,3,266,133,0,2789,2790,5,4,0,0,2790,2792,3,266,133,0,2791,2789, - 1,0,0,0,2792,2795,1,0,0,0,2793,2791,1,0,0,0,2793,2794,1,0,0,0,2794, - 2796,1,0,0,0,2795,2793,1,0,0,0,2796,2797,3,238,119,0,2797,225,1, - 0,0,0,2798,2799,5,292,0,0,2799,2801,3,84,42,0,2800,2802,3,228,114, - 0,2801,2800,1,0,0,0,2801,2802,1,0,0,0,2802,2818,1,0,0,0,2803,2804, - 5,292,0,0,2804,2805,5,2,0,0,2805,2806,3,84,42,0,2806,2808,5,3,0, - 0,2807,2809,3,228,114,0,2808,2807,1,0,0,0,2808,2809,1,0,0,0,2809, - 2818,1,0,0,0,2810,2811,5,292,0,0,2811,2812,5,2,0,0,2812,2813,3,26, - 13,0,2813,2815,5,3,0,0,2814,2816,3,228,114,0,2815,2814,1,0,0,0,2815, - 2816,1,0,0,0,2816,2818,1,0,0,0,2817,2798,1,0,0,0,2817,2803,1,0,0, - 0,2817,2810,1,0,0,0,2818,227,1,0,0,0,2819,2820,5,345,0,0,2820,2821, - 5,273,0,0,2821,2839,5,216,0,0,2822,2823,7,24,0,0,2823,2836,5,31, - 0,0,2824,2825,5,2,0,0,2825,2830,3,266,133,0,2826,2827,5,4,0,0,2827, - 2829,3,266,133,0,2828,2826,1,0,0,0,2829,2832,1,0,0,0,2830,2828,1, - 0,0,0,2830,2831,1,0,0,0,2831,2833,1,0,0,0,2832,2830,1,0,0,0,2833, - 2834,5,3,0,0,2834,2837,1,0,0,0,2835,2837,3,266,133,0,2836,2824,1, - 0,0,0,2836,2835,1,0,0,0,2837,2839,1,0,0,0,2838,2819,1,0,0,0,2838, - 2822,1,0,0,0,2839,2856,1,0,0,0,2840,2841,7,25,0,0,2841,2854,5,31, - 0,0,2842,2843,5,2,0,0,2843,2848,3,106,53,0,2844,2845,5,4,0,0,2845, - 2847,3,106,53,0,2846,2844,1,0,0,0,2847,2850,1,0,0,0,2848,2846,1, - 0,0,0,2848,2849,1,0,0,0,2849,2851,1,0,0,0,2850,2848,1,0,0,0,2851, - 2852,5,3,0,0,2852,2855,1,0,0,0,2853,2855,3,106,53,0,2854,2842,1, - 0,0,0,2854,2853,1,0,0,0,2855,2857,1,0,0,0,2856,2840,1,0,0,0,2856, - 2857,1,0,0,0,2857,229,1,0,0,0,2858,2859,3,374,187,0,2859,2860,5, - 372,0,0,2860,2861,3,226,113,0,2861,231,1,0,0,0,2862,2865,3,226,113, - 0,2863,2865,3,230,115,0,2864,2862,1,0,0,0,2864,2863,1,0,0,0,2865, - 233,1,0,0,0,2866,2869,3,232,116,0,2867,2869,3,270,135,0,2868,2866, - 1,0,0,0,2868,2867,1,0,0,0,2869,235,1,0,0,0,2870,2871,3,364,182,0, - 2871,2880,5,2,0,0,2872,2877,3,234,117,0,2873,2874,5,4,0,0,2874,2876, - 3,234,117,0,2875,2873,1,0,0,0,2876,2879,1,0,0,0,2877,2875,1,0,0, - 0,2877,2878,1,0,0,0,2878,2881,1,0,0,0,2879,2877,1,0,0,0,2880,2872, - 1,0,0,0,2880,2881,1,0,0,0,2881,2882,1,0,0,0,2882,2883,5,3,0,0,2883, - 2884,3,238,119,0,2884,237,1,0,0,0,2885,2887,5,20,0,0,2886,2885,1, - 0,0,0,2886,2887,1,0,0,0,2887,2888,1,0,0,0,2888,2890,3,376,188,0, - 2889,2891,3,210,105,0,2890,2889,1,0,0,0,2890,2891,1,0,0,0,2891,2893, - 1,0,0,0,2892,2886,1,0,0,0,2892,2893,1,0,0,0,2893,239,1,0,0,0,2894, - 2895,5,256,0,0,2895,2896,5,121,0,0,2896,2897,5,265,0,0,2897,2901, - 3,386,193,0,2898,2899,5,345,0,0,2899,2900,5,266,0,0,2900,2902,3, - 52,26,0,2901,2898,1,0,0,0,2901,2902,1,0,0,0,2902,2944,1,0,0,0,2903, - 2904,5,256,0,0,2904,2905,5,121,0,0,2905,2915,5,85,0,0,2906,2907, - 5,113,0,0,2907,2908,5,298,0,0,2908,2909,5,31,0,0,2909,2913,3,386, - 193,0,2910,2911,5,101,0,0,2911,2912,5,31,0,0,2912,2914,3,386,193, - 0,2913,2910,1,0,0,0,2913,2914,1,0,0,0,2914,2916,1,0,0,0,2915,2906, - 1,0,0,0,2915,2916,1,0,0,0,2916,2922,1,0,0,0,2917,2918,5,48,0,0,2918, - 2919,5,154,0,0,2919,2920,5,298,0,0,2920,2921,5,31,0,0,2921,2923, - 3,386,193,0,2922,2917,1,0,0,0,2922,2923,1,0,0,0,2923,2929,1,0,0, - 0,2924,2925,5,176,0,0,2925,2926,5,156,0,0,2926,2927,5,298,0,0,2927, - 2928,5,31,0,0,2928,2930,3,386,193,0,2929,2924,1,0,0,0,2929,2930, - 1,0,0,0,2930,2935,1,0,0,0,2931,2932,5,165,0,0,2932,2933,5,298,0, - 0,2933,2934,5,31,0,0,2934,2936,3,386,193,0,2935,2931,1,0,0,0,2935, - 2936,1,0,0,0,2936,2941,1,0,0,0,2937,2938,5,197,0,0,2938,2939,5,83, - 0,0,2939,2940,5,20,0,0,2940,2942,3,386,193,0,2941,2937,1,0,0,0,2941, - 2942,1,0,0,0,2942,2944,1,0,0,0,2943,2894,1,0,0,0,2943,2903,1,0,0, - 0,2944,241,1,0,0,0,2945,2950,3,244,122,0,2946,2947,5,4,0,0,2947, - 2949,3,244,122,0,2948,2946,1,0,0,0,2949,2952,1,0,0,0,2950,2948,1, - 0,0,0,2950,2951,1,0,0,0,2951,243,1,0,0,0,2952,2950,1,0,0,0,2953, - 2958,3,370,185,0,2954,2955,5,5,0,0,2955,2957,3,370,185,0,2956,2954, - 1,0,0,0,2957,2960,1,0,0,0,2958,2956,1,0,0,0,2958,2959,1,0,0,0,2959, - 245,1,0,0,0,2960,2958,1,0,0,0,2961,2966,3,248,124,0,2962,2963,5, - 4,0,0,2963,2965,3,248,124,0,2964,2962,1,0,0,0,2965,2968,1,0,0,0, - 2966,2964,1,0,0,0,2966,2967,1,0,0,0,2967,247,1,0,0,0,2968,2966,1, - 0,0,0,2969,2972,3,244,122,0,2970,2971,5,206,0,0,2971,2973,3,52,26, - 0,2972,2970,1,0,0,0,2972,2973,1,0,0,0,2973,249,1,0,0,0,2974,2975, - 3,370,185,0,2975,2976,5,5,0,0,2976,2978,1,0,0,0,2977,2974,1,0,0, - 0,2977,2978,1,0,0,0,2978,2979,1,0,0,0,2979,2980,3,370,185,0,2980, - 251,1,0,0,0,2981,2982,3,370,185,0,2982,2983,5,5,0,0,2983,2985,1, - 0,0,0,2984,2981,1,0,0,0,2984,2985,1,0,0,0,2985,2986,1,0,0,0,2986, - 2987,3,370,185,0,2987,253,1,0,0,0,2988,2991,3,90,45,0,2989,2991, - 3,266,133,0,2990,2988,1,0,0,0,2990,2989,1,0,0,0,2991,2999,1,0,0, - 0,2992,2994,5,20,0,0,2993,2992,1,0,0,0,2993,2994,1,0,0,0,2994,2997, - 1,0,0,0,2995,2998,3,370,185,0,2996,2998,3,210,105,0,2997,2995,1, - 0,0,0,2997,2996,1,0,0,0,2998,3000,1,0,0,0,2999,2993,1,0,0,0,2999, - 3000,1,0,0,0,3000,255,1,0,0,0,3001,3006,3,254,127,0,3002,3003,5, - 4,0,0,3003,3005,3,254,127,0,3004,3002,1,0,0,0,3005,3008,1,0,0,0, - 3006,3004,1,0,0,0,3006,3007,1,0,0,0,3007,257,1,0,0,0,3008,3006,1, - 0,0,0,3009,3010,5,2,0,0,3010,3015,3,260,130,0,3011,3012,5,4,0,0, - 3012,3014,3,260,130,0,3013,3011,1,0,0,0,3014,3017,1,0,0,0,3015,3013, - 1,0,0,0,3015,3016,1,0,0,0,3016,3018,1,0,0,0,3017,3015,1,0,0,0,3018, - 3019,5,3,0,0,3019,259,1,0,0,0,3020,3023,3,262,131,0,3021,3023,3, - 334,167,0,3022,3020,1,0,0,0,3022,3021,1,0,0,0,3023,261,1,0,0,0,3024, - 3038,3,368,184,0,3025,3026,3,374,187,0,3026,3027,5,2,0,0,3027,3032, - 3,264,132,0,3028,3029,5,4,0,0,3029,3031,3,264,132,0,3030,3028,1, - 0,0,0,3031,3034,1,0,0,0,3032,3030,1,0,0,0,3032,3033,1,0,0,0,3033, - 3035,1,0,0,0,3034,3032,1,0,0,0,3035,3036,5,3,0,0,3036,3038,1,0,0, - 0,3037,3024,1,0,0,0,3037,3025,1,0,0,0,3038,263,1,0,0,0,3039,3042, - 3,368,184,0,3040,3042,3,286,143,0,3041,3039,1,0,0,0,3041,3040,1, - 0,0,0,3042,265,1,0,0,0,3043,3044,3,274,137,0,3044,267,1,0,0,0,3045, - 3046,3,374,187,0,3046,3047,5,372,0,0,3047,3048,3,266,133,0,3048, - 269,1,0,0,0,3049,3052,3,266,133,0,3050,3052,3,268,134,0,3051,3049, - 1,0,0,0,3051,3050,1,0,0,0,3052,271,1,0,0,0,3053,3058,3,266,133,0, - 3054,3055,5,4,0,0,3055,3057,3,266,133,0,3056,3054,1,0,0,0,3057,3060, - 1,0,0,0,3058,3056,1,0,0,0,3058,3059,1,0,0,0,3059,273,1,0,0,0,3060, - 3058,1,0,0,0,3061,3062,6,137,-1,0,3062,3063,7,26,0,0,3063,3074,3, - 274,137,5,3064,3065,5,105,0,0,3065,3066,5,2,0,0,3066,3067,3,26,13, - 0,3067,3068,5,3,0,0,3068,3074,1,0,0,0,3069,3071,3,278,139,0,3070, - 3072,3,276,138,0,3071,3070,1,0,0,0,3071,3072,1,0,0,0,3072,3074,1, - 0,0,0,3073,3061,1,0,0,0,3073,3064,1,0,0,0,3073,3069,1,0,0,0,3074, - 3083,1,0,0,0,3075,3076,10,2,0,0,3076,3077,5,14,0,0,3077,3082,3,274, - 137,3,3078,3079,10,1,0,0,3079,3080,5,207,0,0,3080,3082,3,274,137, - 2,3081,3075,1,0,0,0,3081,3078,1,0,0,0,3082,3085,1,0,0,0,3083,3081, - 1,0,0,0,3083,3084,1,0,0,0,3084,275,1,0,0,0,3085,3083,1,0,0,0,3086, - 3088,5,196,0,0,3087,3086,1,0,0,0,3087,3088,1,0,0,0,3088,3089,1,0, - 0,0,3089,3090,5,24,0,0,3090,3091,3,278,139,0,3091,3092,5,14,0,0, - 3092,3093,3,278,139,0,3093,3169,1,0,0,0,3094,3096,5,196,0,0,3095, - 3094,1,0,0,0,3095,3096,1,0,0,0,3096,3097,1,0,0,0,3097,3098,5,140, - 0,0,3098,3099,5,2,0,0,3099,3104,3,266,133,0,3100,3101,5,4,0,0,3101, - 3103,3,266,133,0,3102,3100,1,0,0,0,3103,3106,1,0,0,0,3104,3102,1, - 0,0,0,3104,3105,1,0,0,0,3105,3107,1,0,0,0,3106,3104,1,0,0,0,3107, - 3108,5,3,0,0,3108,3169,1,0,0,0,3109,3111,5,196,0,0,3110,3109,1,0, - 0,0,3110,3111,1,0,0,0,3111,3112,1,0,0,0,3112,3113,5,140,0,0,3113, - 3114,5,2,0,0,3114,3115,3,26,13,0,3115,3116,5,3,0,0,3116,3169,1,0, - 0,0,3117,3119,5,196,0,0,3118,3117,1,0,0,0,3118,3119,1,0,0,0,3119, - 3120,1,0,0,0,3120,3121,7,27,0,0,3121,3169,3,278,139,0,3122,3124, - 5,196,0,0,3123,3122,1,0,0,0,3123,3124,1,0,0,0,3124,3125,1,0,0,0, - 3125,3126,7,28,0,0,3126,3140,7,29,0,0,3127,3128,5,2,0,0,3128,3141, - 5,3,0,0,3129,3130,5,2,0,0,3130,3135,3,266,133,0,3131,3132,5,4,0, - 0,3132,3134,3,266,133,0,3133,3131,1,0,0,0,3134,3137,1,0,0,0,3135, - 3133,1,0,0,0,3135,3136,1,0,0,0,3136,3138,1,0,0,0,3137,3135,1,0,0, - 0,3138,3139,5,3,0,0,3139,3141,1,0,0,0,3140,3127,1,0,0,0,3140,3129, - 1,0,0,0,3141,3169,1,0,0,0,3142,3144,5,196,0,0,3143,3142,1,0,0,0, - 3143,3144,1,0,0,0,3144,3145,1,0,0,0,3145,3146,7,28,0,0,3146,3149, - 3,278,139,0,3147,3148,5,100,0,0,3148,3150,3,386,193,0,3149,3147, - 1,0,0,0,3149,3150,1,0,0,0,3150,3169,1,0,0,0,3151,3153,5,153,0,0, - 3152,3154,5,196,0,0,3153,3152,1,0,0,0,3153,3154,1,0,0,0,3154,3155, - 1,0,0,0,3155,3169,5,197,0,0,3156,3158,5,153,0,0,3157,3159,5,196, - 0,0,3158,3157,1,0,0,0,3158,3159,1,0,0,0,3159,3160,1,0,0,0,3160,3169, - 7,30,0,0,3161,3163,5,153,0,0,3162,3164,5,196,0,0,3163,3162,1,0,0, - 0,3163,3164,1,0,0,0,3164,3165,1,0,0,0,3165,3166,5,92,0,0,3166,3167, - 5,123,0,0,3167,3169,3,278,139,0,3168,3087,1,0,0,0,3168,3095,1,0, - 0,0,3168,3110,1,0,0,0,3168,3118,1,0,0,0,3168,3123,1,0,0,0,3168,3143, - 1,0,0,0,3168,3151,1,0,0,0,3168,3156,1,0,0,0,3168,3161,1,0,0,0,3169, - 277,1,0,0,0,3170,3171,6,139,-1,0,3171,3175,3,282,141,0,3172,3173, - 7,31,0,0,3173,3175,3,278,139,7,3174,3170,1,0,0,0,3174,3172,1,0,0, - 0,3175,3197,1,0,0,0,3176,3177,10,6,0,0,3177,3178,7,32,0,0,3178,3196, - 3,278,139,7,3179,3180,10,5,0,0,3180,3181,7,33,0,0,3181,3196,3,278, - 139,6,3182,3183,10,4,0,0,3183,3184,5,366,0,0,3184,3196,3,278,139, - 5,3185,3186,10,3,0,0,3186,3187,5,369,0,0,3187,3196,3,278,139,4,3188, - 3189,10,2,0,0,3189,3190,5,367,0,0,3190,3196,3,278,139,3,3191,3192, - 10,1,0,0,3192,3193,3,288,144,0,3193,3194,3,278,139,2,3194,3196,1, - 0,0,0,3195,3176,1,0,0,0,3195,3179,1,0,0,0,3195,3182,1,0,0,0,3195, - 3185,1,0,0,0,3195,3188,1,0,0,0,3195,3191,1,0,0,0,3196,3199,1,0,0, - 0,3197,3195,1,0,0,0,3197,3198,1,0,0,0,3198,279,1,0,0,0,3199,3197, - 1,0,0,0,3200,3201,7,34,0,0,3201,281,1,0,0,0,3202,3203,6,141,-1,0, - 3203,3452,7,35,0,0,3204,3205,7,36,0,0,3205,3208,5,2,0,0,3206,3209, - 3,280,140,0,3207,3209,3,386,193,0,3208,3206,1,0,0,0,3208,3207,1, - 0,0,0,3209,3210,1,0,0,0,3210,3211,5,4,0,0,3211,3212,3,278,139,0, - 3212,3213,5,4,0,0,3213,3214,3,278,139,0,3214,3215,5,3,0,0,3215,3452, - 1,0,0,0,3216,3217,7,37,0,0,3217,3220,5,2,0,0,3218,3221,3,280,140, - 0,3219,3221,3,386,193,0,3220,3218,1,0,0,0,3220,3219,1,0,0,0,3221, - 3222,1,0,0,0,3222,3223,5,4,0,0,3223,3224,3,278,139,0,3224,3225,5, - 4,0,0,3225,3226,3,278,139,0,3226,3227,5,3,0,0,3227,3452,1,0,0,0, - 3228,3230,5,35,0,0,3229,3231,3,348,174,0,3230,3229,1,0,0,0,3231, - 3232,1,0,0,0,3232,3230,1,0,0,0,3232,3233,1,0,0,0,3233,3236,1,0,0, - 0,3234,3235,5,97,0,0,3235,3237,3,266,133,0,3236,3234,1,0,0,0,3236, - 3237,1,0,0,0,3237,3238,1,0,0,0,3238,3239,5,99,0,0,3239,3452,1,0, - 0,0,3240,3241,5,35,0,0,3241,3243,3,266,133,0,3242,3244,3,348,174, - 0,3243,3242,1,0,0,0,3244,3245,1,0,0,0,3245,3243,1,0,0,0,3245,3246, - 1,0,0,0,3246,3249,1,0,0,0,3247,3248,5,97,0,0,3248,3250,3,266,133, - 0,3249,3247,1,0,0,0,3249,3250,1,0,0,0,3250,3251,1,0,0,0,3251,3252, - 5,99,0,0,3252,3452,1,0,0,0,3253,3254,7,38,0,0,3254,3255,5,2,0,0, - 3255,3256,3,266,133,0,3256,3257,5,20,0,0,3257,3258,3,316,158,0,3258, - 3259,5,3,0,0,3259,3452,1,0,0,0,3260,3261,5,285,0,0,3261,3270,5,2, - 0,0,3262,3267,3,254,127,0,3263,3264,5,4,0,0,3264,3266,3,254,127, - 0,3265,3263,1,0,0,0,3266,3269,1,0,0,0,3267,3265,1,0,0,0,3267,3268, - 1,0,0,0,3268,3271,1,0,0,0,3269,3267,1,0,0,0,3270,3262,1,0,0,0,3270, - 3271,1,0,0,0,3271,3272,1,0,0,0,3272,3452,5,3,0,0,3273,3274,5,116, - 0,0,3274,3275,5,2,0,0,3275,3278,3,266,133,0,3276,3277,5,138,0,0, - 3277,3279,5,198,0,0,3278,3276,1,0,0,0,3278,3279,1,0,0,0,3279,3280, - 1,0,0,0,3280,3281,5,3,0,0,3281,3452,1,0,0,0,3282,3283,5,17,0,0,3283, - 3284,5,2,0,0,3284,3287,3,266,133,0,3285,3286,5,138,0,0,3286,3288, - 5,198,0,0,3287,3285,1,0,0,0,3287,3288,1,0,0,0,3288,3289,1,0,0,0, - 3289,3290,5,3,0,0,3290,3452,1,0,0,0,3291,3292,5,157,0,0,3292,3293, - 5,2,0,0,3293,3296,3,266,133,0,3294,3295,5,138,0,0,3295,3297,5,198, - 0,0,3296,3294,1,0,0,0,3296,3297,1,0,0,0,3297,3298,1,0,0,0,3298,3299, - 5,3,0,0,3299,3452,1,0,0,0,3300,3301,5,224,0,0,3301,3302,5,2,0,0, - 3302,3303,3,278,139,0,3303,3304,5,140,0,0,3304,3305,3,278,139,0, - 3305,3306,5,3,0,0,3306,3452,1,0,0,0,3307,3452,3,286,143,0,3308,3452, - 5,362,0,0,3309,3310,3,368,184,0,3310,3311,5,5,0,0,3311,3312,5,362, - 0,0,3312,3452,1,0,0,0,3313,3314,5,2,0,0,3314,3317,3,254,127,0,3315, - 3316,5,4,0,0,3316,3318,3,254,127,0,3317,3315,1,0,0,0,3318,3319,1, - 0,0,0,3319,3317,1,0,0,0,3319,3320,1,0,0,0,3320,3321,1,0,0,0,3321, - 3322,5,3,0,0,3322,3452,1,0,0,0,3323,3324,5,2,0,0,3324,3325,3,26, - 13,0,3325,3326,5,3,0,0,3326,3452,1,0,0,0,3327,3328,5,136,0,0,3328, - 3329,5,2,0,0,3329,3330,3,266,133,0,3330,3331,5,3,0,0,3331,3452,1, - 0,0,0,3332,3333,3,364,182,0,3333,3345,5,2,0,0,3334,3336,3,194,97, - 0,3335,3334,1,0,0,0,3335,3336,1,0,0,0,3336,3337,1,0,0,0,3337,3342, - 3,270,135,0,3338,3339,5,4,0,0,3339,3341,3,270,135,0,3340,3338,1, - 0,0,0,3341,3344,1,0,0,0,3342,3340,1,0,0,0,3342,3343,1,0,0,0,3343, - 3346,1,0,0,0,3344,3342,1,0,0,0,3345,3335,1,0,0,0,3345,3346,1,0,0, - 0,3346,3347,1,0,0,0,3347,3354,5,3,0,0,3348,3349,5,114,0,0,3349,3350, - 5,2,0,0,3350,3351,5,343,0,0,3351,3352,3,274,137,0,3352,3353,5,3, - 0,0,3353,3355,1,0,0,0,3354,3348,1,0,0,0,3354,3355,1,0,0,0,3355,3358, - 1,0,0,0,3356,3357,7,39,0,0,3357,3359,5,198,0,0,3358,3356,1,0,0,0, - 3358,3359,1,0,0,0,3359,3362,1,0,0,0,3360,3361,5,212,0,0,3361,3363, - 3,356,178,0,3362,3360,1,0,0,0,3362,3363,1,0,0,0,3363,3452,1,0,0, - 0,3364,3365,3,374,187,0,3365,3366,5,371,0,0,3366,3367,3,266,133, - 0,3367,3452,1,0,0,0,3368,3369,5,2,0,0,3369,3372,3,374,187,0,3370, - 3371,5,4,0,0,3371,3373,3,374,187,0,3372,3370,1,0,0,0,3373,3374,1, - 0,0,0,3374,3372,1,0,0,0,3374,3375,1,0,0,0,3375,3376,1,0,0,0,3376, - 3377,5,3,0,0,3377,3378,5,371,0,0,3378,3379,3,266,133,0,3379,3452, - 1,0,0,0,3380,3452,3,374,187,0,3381,3382,5,2,0,0,3382,3383,3,266, - 133,0,3383,3384,5,3,0,0,3384,3452,1,0,0,0,3385,3386,5,110,0,0,3386, - 3387,5,2,0,0,3387,3388,3,374,187,0,3388,3389,5,123,0,0,3389,3390, - 3,278,139,0,3390,3391,5,3,0,0,3391,3452,1,0,0,0,3392,3393,7,40,0, - 0,3393,3394,5,2,0,0,3394,3395,3,278,139,0,3395,3396,7,41,0,0,3396, - 3399,3,278,139,0,3397,3398,7,42,0,0,3398,3400,3,278,139,0,3399,3397, - 1,0,0,0,3399,3400,1,0,0,0,3400,3401,1,0,0,0,3401,3402,5,3,0,0,3402, - 3452,1,0,0,0,3403,3404,5,314,0,0,3404,3406,5,2,0,0,3405,3407,7,43, - 0,0,3406,3405,1,0,0,0,3406,3407,1,0,0,0,3407,3409,1,0,0,0,3408,3410, - 3,278,139,0,3409,3408,1,0,0,0,3409,3410,1,0,0,0,3410,3411,1,0,0, - 0,3411,3412,5,123,0,0,3412,3413,3,278,139,0,3413,3414,5,3,0,0,3414, - 3452,1,0,0,0,3415,3416,5,214,0,0,3416,3417,5,2,0,0,3417,3418,3,278, - 139,0,3418,3419,5,223,0,0,3419,3420,3,278,139,0,3420,3421,5,123, - 0,0,3421,3424,3,278,139,0,3422,3423,5,119,0,0,3423,3425,3,278,139, - 0,3424,3422,1,0,0,0,3424,3425,1,0,0,0,3425,3426,1,0,0,0,3426,3427, - 5,3,0,0,3427,3452,1,0,0,0,3428,3429,7,44,0,0,3429,3430,5,2,0,0,3430, - 3431,3,278,139,0,3431,3432,5,3,0,0,3432,3433,5,346,0,0,3433,3434, - 5,130,0,0,3434,3435,5,2,0,0,3435,3436,5,208,0,0,3436,3437,5,31,0, - 0,3437,3438,3,106,53,0,3438,3445,5,3,0,0,3439,3440,5,114,0,0,3440, - 3441,5,2,0,0,3441,3442,5,343,0,0,3442,3443,3,274,137,0,3443,3444, - 5,3,0,0,3444,3446,1,0,0,0,3445,3439,1,0,0,0,3445,3446,1,0,0,0,3446, - 3449,1,0,0,0,3447,3448,5,212,0,0,3448,3450,3,356,178,0,3449,3447, - 1,0,0,0,3449,3450,1,0,0,0,3450,3452,1,0,0,0,3451,3202,1,0,0,0,3451, - 3204,1,0,0,0,3451,3216,1,0,0,0,3451,3228,1,0,0,0,3451,3240,1,0,0, - 0,3451,3253,1,0,0,0,3451,3260,1,0,0,0,3451,3273,1,0,0,0,3451,3282, - 1,0,0,0,3451,3291,1,0,0,0,3451,3300,1,0,0,0,3451,3307,1,0,0,0,3451, - 3308,1,0,0,0,3451,3309,1,0,0,0,3451,3313,1,0,0,0,3451,3323,1,0,0, - 0,3451,3327,1,0,0,0,3451,3332,1,0,0,0,3451,3364,1,0,0,0,3451,3368, - 1,0,0,0,3451,3380,1,0,0,0,3451,3381,1,0,0,0,3451,3385,1,0,0,0,3451, - 3392,1,0,0,0,3451,3403,1,0,0,0,3451,3415,1,0,0,0,3451,3428,1,0,0, - 0,3452,3463,1,0,0,0,3453,3454,10,9,0,0,3454,3455,5,6,0,0,3455,3456, - 3,278,139,0,3456,3457,5,7,0,0,3457,3462,1,0,0,0,3458,3459,10,7,0, - 0,3459,3460,5,5,0,0,3460,3462,3,374,187,0,3461,3453,1,0,0,0,3461, - 3458,1,0,0,0,3462,3465,1,0,0,0,3463,3461,1,0,0,0,3463,3464,1,0,0, - 0,3464,283,1,0,0,0,3465,3463,1,0,0,0,3466,3474,5,71,0,0,3467,3474, - 5,302,0,0,3468,3474,5,303,0,0,3469,3474,5,304,0,0,3470,3474,5,149, - 0,0,3471,3474,5,133,0,0,3472,3474,3,374,187,0,3473,3466,1,0,0,0, - 3473,3467,1,0,0,0,3473,3468,1,0,0,0,3473,3469,1,0,0,0,3473,3470, - 1,0,0,0,3473,3471,1,0,0,0,3473,3472,1,0,0,0,3474,285,1,0,0,0,3475, - 3491,5,197,0,0,3476,3491,5,375,0,0,3477,3478,5,370,0,0,3478,3491, - 3,374,187,0,3479,3491,3,296,148,0,3480,3481,3,284,142,0,3481,3482, - 3,386,193,0,3482,3491,1,0,0,0,3483,3491,3,382,191,0,3484,3491,3, - 294,147,0,3485,3487,3,386,193,0,3486,3485,1,0,0,0,3487,3488,1,0, - 0,0,3488,3486,1,0,0,0,3488,3489,1,0,0,0,3489,3491,1,0,0,0,3490,3475, - 1,0,0,0,3490,3476,1,0,0,0,3490,3477,1,0,0,0,3490,3479,1,0,0,0,3490, - 3480,1,0,0,0,3490,3483,1,0,0,0,3490,3484,1,0,0,0,3490,3486,1,0,0, - 0,3491,287,1,0,0,0,3492,3493,7,45,0,0,3493,289,1,0,0,0,3494,3495, - 7,46,0,0,3495,291,1,0,0,0,3496,3497,7,47,0,0,3497,293,1,0,0,0,3498, - 3499,7,48,0,0,3499,295,1,0,0,0,3500,3503,5,149,0,0,3501,3504,3,298, - 149,0,3502,3504,3,302,151,0,3503,3501,1,0,0,0,3503,3502,1,0,0,0, - 3504,297,1,0,0,0,3505,3507,3,300,150,0,3506,3508,3,304,152,0,3507, - 3506,1,0,0,0,3507,3508,1,0,0,0,3508,299,1,0,0,0,3509,3510,3,306, - 153,0,3510,3511,3,308,154,0,3511,3513,1,0,0,0,3512,3509,1,0,0,0, - 3513,3514,1,0,0,0,3514,3512,1,0,0,0,3514,3515,1,0,0,0,3515,301,1, - 0,0,0,3516,3519,3,304,152,0,3517,3520,3,300,150,0,3518,3520,3,304, - 152,0,3519,3517,1,0,0,0,3519,3518,1,0,0,0,3519,3520,1,0,0,0,3520, - 303,1,0,0,0,3521,3522,3,306,153,0,3522,3523,3,310,155,0,3523,3524, - 5,308,0,0,3524,3525,3,310,155,0,3525,305,1,0,0,0,3526,3528,7,49, - 0,0,3527,3526,1,0,0,0,3527,3528,1,0,0,0,3528,3532,1,0,0,0,3529,3533, - 5,381,0,0,3530,3533,5,383,0,0,3531,3533,3,386,193,0,3532,3529,1, - 0,0,0,3532,3530,1,0,0,0,3532,3531,1,0,0,0,3533,307,1,0,0,0,3534, - 3535,7,50,0,0,3535,309,1,0,0,0,3536,3537,7,51,0,0,3537,311,1,0,0, - 0,3538,3542,5,116,0,0,3539,3540,5,9,0,0,3540,3542,3,370,185,0,3541, - 3538,1,0,0,0,3541,3539,1,0,0,0,3542,313,1,0,0,0,3543,3574,5,27,0, - 0,3544,3574,5,307,0,0,3545,3574,5,32,0,0,3546,3574,5,275,0,0,3547, - 3574,5,271,0,0,3548,3574,5,150,0,0,3549,3574,5,151,0,0,3550,3574, - 5,25,0,0,3551,3574,5,173,0,0,3552,3574,5,117,0,0,3553,3574,5,233, - 0,0,3554,3574,5,95,0,0,3555,3574,5,71,0,0,3556,3574,5,302,0,0,3557, - 3574,5,304,0,0,3558,3574,5,303,0,0,3559,3574,5,284,0,0,3560,3574, - 5,41,0,0,3561,3574,5,40,0,0,3562,3574,5,333,0,0,3563,3574,5,26,0, - 0,3564,3574,5,80,0,0,3565,3574,5,79,0,0,3566,3574,5,199,0,0,3567, - 3574,5,339,0,0,3568,3574,5,149,0,0,3569,3574,5,19,0,0,3570,3574, - 5,285,0,0,3571,3574,5,176,0,0,3572,3574,3,374,187,0,3573,3543,1, - 0,0,0,3573,3544,1,0,0,0,3573,3545,1,0,0,0,3573,3546,1,0,0,0,3573, - 3547,1,0,0,0,3573,3548,1,0,0,0,3573,3549,1,0,0,0,3573,3550,1,0,0, - 0,3573,3551,1,0,0,0,3573,3552,1,0,0,0,3573,3553,1,0,0,0,3573,3554, - 1,0,0,0,3573,3555,1,0,0,0,3573,3556,1,0,0,0,3573,3557,1,0,0,0,3573, - 3558,1,0,0,0,3573,3559,1,0,0,0,3573,3560,1,0,0,0,3573,3561,1,0,0, - 0,3573,3562,1,0,0,0,3573,3563,1,0,0,0,3573,3564,1,0,0,0,3573,3565, - 1,0,0,0,3573,3566,1,0,0,0,3573,3567,1,0,0,0,3573,3568,1,0,0,0,3573, - 3569,1,0,0,0,3573,3570,1,0,0,0,3573,3571,1,0,0,0,3573,3572,1,0,0, - 0,3574,315,1,0,0,0,3575,3576,5,19,0,0,3576,3577,5,355,0,0,3577,3578, - 3,316,158,0,3578,3579,5,357,0,0,3579,3622,1,0,0,0,3580,3581,5,176, - 0,0,3581,3582,5,355,0,0,3582,3583,3,316,158,0,3583,3584,5,4,0,0, - 3584,3585,3,316,158,0,3585,3586,5,357,0,0,3586,3622,1,0,0,0,3587, - 3594,5,285,0,0,3588,3590,5,355,0,0,3589,3591,3,344,172,0,3590,3589, - 1,0,0,0,3590,3591,1,0,0,0,3591,3592,1,0,0,0,3592,3595,5,357,0,0, - 3593,3595,5,353,0,0,3594,3588,1,0,0,0,3594,3593,1,0,0,0,3595,3622, - 1,0,0,0,3596,3597,5,149,0,0,3597,3600,7,52,0,0,3598,3599,5,308,0, - 0,3599,3601,5,185,0,0,3600,3598,1,0,0,0,3600,3601,1,0,0,0,3601,3622, - 1,0,0,0,3602,3603,5,149,0,0,3603,3606,7,53,0,0,3604,3605,5,308,0, - 0,3605,3607,7,54,0,0,3606,3604,1,0,0,0,3606,3607,1,0,0,0,3607,3622, - 1,0,0,0,3608,3619,3,314,157,0,3609,3610,5,2,0,0,3610,3615,5,381, - 0,0,3611,3612,5,4,0,0,3612,3614,5,381,0,0,3613,3611,1,0,0,0,3614, - 3617,1,0,0,0,3615,3613,1,0,0,0,3615,3616,1,0,0,0,3616,3618,1,0,0, - 0,3617,3615,1,0,0,0,3618,3620,5,3,0,0,3619,3609,1,0,0,0,3619,3620, - 1,0,0,0,3620,3622,1,0,0,0,3621,3575,1,0,0,0,3621,3580,1,0,0,0,3621, - 3587,1,0,0,0,3621,3596,1,0,0,0,3621,3602,1,0,0,0,3621,3608,1,0,0, - 0,3622,317,1,0,0,0,3623,3628,3,320,160,0,3624,3625,5,4,0,0,3625, - 3627,3,320,160,0,3626,3624,1,0,0,0,3627,3630,1,0,0,0,3628,3626,1, - 0,0,0,3628,3629,1,0,0,0,3629,319,1,0,0,0,3630,3628,1,0,0,0,3631, - 3632,3,94,47,0,3632,3636,3,316,158,0,3633,3635,3,326,163,0,3634, - 3633,1,0,0,0,3635,3638,1,0,0,0,3636,3634,1,0,0,0,3636,3637,1,0,0, - 0,3637,321,1,0,0,0,3638,3636,1,0,0,0,3639,3644,3,324,162,0,3640, - 3641,5,4,0,0,3641,3643,3,324,162,0,3642,3640,1,0,0,0,3643,3646,1, - 0,0,0,3644,3642,1,0,0,0,3644,3645,1,0,0,0,3645,323,1,0,0,0,3646, - 3644,1,0,0,0,3647,3648,3,90,45,0,3648,3652,3,316,158,0,3649,3651, - 3,326,163,0,3650,3649,1,0,0,0,3651,3654,1,0,0,0,3652,3650,1,0,0, - 0,3652,3653,1,0,0,0,3653,325,1,0,0,0,3654,3652,1,0,0,0,3655,3656, - 5,196,0,0,3656,3661,5,197,0,0,3657,3661,3,328,164,0,3658,3661,3, - 24,12,0,3659,3661,3,312,156,0,3660,3655,1,0,0,0,3660,3657,1,0,0, - 0,3660,3658,1,0,0,0,3660,3659,1,0,0,0,3661,327,1,0,0,0,3662,3663, - 5,82,0,0,3663,3664,3,266,133,0,3664,329,1,0,0,0,3665,3666,7,55,0, - 0,3666,3667,3,266,133,0,3667,331,1,0,0,0,3668,3673,3,334,167,0,3669, - 3670,5,4,0,0,3670,3672,3,334,167,0,3671,3669,1,0,0,0,3672,3675,1, - 0,0,0,3673,3671,1,0,0,0,3673,3674,1,0,0,0,3674,333,1,0,0,0,3675, - 3673,1,0,0,0,3676,3677,3,370,185,0,3677,3680,3,316,158,0,3678,3679, - 5,196,0,0,3679,3681,5,197,0,0,3680,3678,1,0,0,0,3680,3681,1,0,0, - 0,3681,3683,1,0,0,0,3682,3684,3,24,12,0,3683,3682,1,0,0,0,3683,3684, - 1,0,0,0,3684,335,1,0,0,0,3685,3690,3,338,169,0,3686,3687,5,4,0,0, - 3687,3689,3,338,169,0,3688,3686,1,0,0,0,3689,3692,1,0,0,0,3690,3688, - 1,0,0,0,3690,3691,1,0,0,0,3691,337,1,0,0,0,3692,3690,1,0,0,0,3693, - 3694,3,94,47,0,3694,3698,3,316,158,0,3695,3697,3,340,170,0,3696, - 3695,1,0,0,0,3697,3700,1,0,0,0,3698,3696,1,0,0,0,3698,3699,1,0,0, - 0,3699,339,1,0,0,0,3700,3698,1,0,0,0,3701,3702,5,196,0,0,3702,3707, - 5,197,0,0,3703,3707,3,328,164,0,3704,3707,3,342,171,0,3705,3707, - 3,24,12,0,3706,3701,1,0,0,0,3706,3703,1,0,0,0,3706,3704,1,0,0,0, - 3706,3705,1,0,0,0,3707,341,1,0,0,0,3708,3709,5,127,0,0,3709,3710, - 5,12,0,0,3710,3711,5,20,0,0,3711,3712,5,2,0,0,3712,3713,3,266,133, - 0,3713,3714,5,3,0,0,3714,343,1,0,0,0,3715,3720,3,346,173,0,3716, - 3717,5,4,0,0,3717,3719,3,346,173,0,3718,3716,1,0,0,0,3719,3722,1, - 0,0,0,3720,3718,1,0,0,0,3720,3721,1,0,0,0,3721,345,1,0,0,0,3722, - 3720,1,0,0,0,3723,3725,3,374,187,0,3724,3726,5,370,0,0,3725,3724, - 1,0,0,0,3725,3726,1,0,0,0,3726,3727,1,0,0,0,3727,3730,3,316,158, - 0,3728,3729,5,196,0,0,3729,3731,5,197,0,0,3730,3728,1,0,0,0,3730, - 3731,1,0,0,0,3731,3733,1,0,0,0,3732,3734,3,24,12,0,3733,3732,1,0, - 0,0,3733,3734,1,0,0,0,3734,347,1,0,0,0,3735,3736,5,342,0,0,3736, - 3737,3,266,133,0,3737,3738,5,299,0,0,3738,3739,3,266,133,0,3739, - 349,1,0,0,0,3740,3741,5,344,0,0,3741,3746,3,354,177,0,3742,3743, - 5,4,0,0,3743,3745,3,354,177,0,3744,3742,1,0,0,0,3745,3748,1,0,0, - 0,3746,3744,1,0,0,0,3746,3747,1,0,0,0,3747,351,1,0,0,0,3748,3746, - 1,0,0,0,3749,3750,5,350,0,0,3750,3751,5,31,0,0,3751,3752,3,92,46, - 0,3752,353,1,0,0,0,3753,3754,3,370,185,0,3754,3755,5,20,0,0,3755, - 3756,3,356,178,0,3756,355,1,0,0,0,3757,3804,3,370,185,0,3758,3759, - 5,2,0,0,3759,3760,3,370,185,0,3760,3761,5,3,0,0,3761,3804,1,0,0, - 0,3762,3797,5,2,0,0,3763,3764,5,44,0,0,3764,3765,5,31,0,0,3765,3770, - 3,266,133,0,3766,3767,5,4,0,0,3767,3769,3,266,133,0,3768,3766,1, - 0,0,0,3769,3772,1,0,0,0,3770,3768,1,0,0,0,3770,3771,1,0,0,0,3771, - 3798,1,0,0,0,3772,3770,1,0,0,0,3773,3774,7,24,0,0,3774,3775,5,31, - 0,0,3775,3780,3,266,133,0,3776,3777,5,4,0,0,3777,3779,3,266,133, - 0,3778,3776,1,0,0,0,3779,3782,1,0,0,0,3780,3778,1,0,0,0,3780,3781, - 1,0,0,0,3781,3784,1,0,0,0,3782,3780,1,0,0,0,3783,3773,1,0,0,0,3783, - 3784,1,0,0,0,3784,3795,1,0,0,0,3785,3786,7,25,0,0,3786,3787,5,31, - 0,0,3787,3792,3,106,53,0,3788,3789,5,4,0,0,3789,3791,3,106,53,0, - 3790,3788,1,0,0,0,3791,3794,1,0,0,0,3792,3790,1,0,0,0,3792,3793, - 1,0,0,0,3793,3796,1,0,0,0,3794,3792,1,0,0,0,3795,3785,1,0,0,0,3795, - 3796,1,0,0,0,3796,3798,1,0,0,0,3797,3763,1,0,0,0,3797,3783,1,0,0, - 0,3798,3800,1,0,0,0,3799,3801,3,358,179,0,3800,3799,1,0,0,0,3800, - 3801,1,0,0,0,3801,3802,1,0,0,0,3802,3804,5,3,0,0,3803,3757,1,0,0, - 0,3803,3758,1,0,0,0,3803,3762,1,0,0,0,3804,357,1,0,0,0,3805,3806, - 5,232,0,0,3806,3822,3,360,180,0,3807,3808,5,257,0,0,3808,3822,3, - 360,180,0,3809,3810,5,232,0,0,3810,3811,5,24,0,0,3811,3812,3,360, - 180,0,3812,3813,5,14,0,0,3813,3814,3,360,180,0,3814,3822,1,0,0,0, - 3815,3816,5,257,0,0,3816,3817,5,24,0,0,3817,3818,3,360,180,0,3818, - 3819,5,14,0,0,3819,3820,3,360,180,0,3820,3822,1,0,0,0,3821,3805, - 1,0,0,0,3821,3807,1,0,0,0,3821,3809,1,0,0,0,3821,3815,1,0,0,0,3822, - 359,1,0,0,0,3823,3824,5,320,0,0,3824,3831,7,56,0,0,3825,3826,5,62, - 0,0,3826,3831,5,256,0,0,3827,3828,3,266,133,0,3828,3829,7,56,0,0, - 3829,3831,1,0,0,0,3830,3823,1,0,0,0,3830,3825,1,0,0,0,3830,3827, - 1,0,0,0,3831,361,1,0,0,0,3832,3837,3,368,184,0,3833,3834,5,4,0,0, - 3834,3836,3,368,184,0,3835,3833,1,0,0,0,3836,3839,1,0,0,0,3837,3835, - 1,0,0,0,3837,3838,1,0,0,0,3838,363,1,0,0,0,3839,3837,1,0,0,0,3840, - 3841,5,136,0,0,3841,3842,5,2,0,0,3842,3843,3,266,133,0,3843,3844, - 5,3,0,0,3844,3850,1,0,0,0,3845,3850,3,368,184,0,3846,3850,5,114, - 0,0,3847,3850,5,161,0,0,3848,3850,5,249,0,0,3849,3840,1,0,0,0,3849, - 3845,1,0,0,0,3849,3846,1,0,0,0,3849,3847,1,0,0,0,3849,3848,1,0,0, - 0,3850,365,1,0,0,0,3851,3852,3,368,184,0,3852,367,1,0,0,0,3853,3858, - 3,374,187,0,3854,3855,5,5,0,0,3855,3857,3,374,187,0,3856,3854,1, - 0,0,0,3857,3860,1,0,0,0,3858,3856,1,0,0,0,3858,3859,1,0,0,0,3859, - 369,1,0,0,0,3860,3858,1,0,0,0,3861,3862,3,374,187,0,3862,3863,3, - 372,186,0,3863,371,1,0,0,0,3864,3865,5,361,0,0,3865,3867,3,374,187, - 0,3866,3864,1,0,0,0,3867,3868,1,0,0,0,3868,3866,1,0,0,0,3868,3869, - 1,0,0,0,3869,3872,1,0,0,0,3870,3872,1,0,0,0,3871,3866,1,0,0,0,3871, - 3870,1,0,0,0,3872,373,1,0,0,0,3873,3876,3,376,188,0,3874,3876,3, - 394,197,0,3875,3873,1,0,0,0,3875,3874,1,0,0,0,3876,375,1,0,0,0,3877, - 3882,5,387,0,0,3878,3882,3,378,189,0,3879,3882,3,392,196,0,3880, - 3882,3,396,198,0,3881,3877,1,0,0,0,3881,3878,1,0,0,0,3881,3879,1, - 0,0,0,3881,3880,1,0,0,0,3882,377,1,0,0,0,3883,3884,7,57,0,0,3884, - 379,1,0,0,0,3885,3886,5,388,0,0,3886,381,1,0,0,0,3887,3889,5,361, - 0,0,3888,3887,1,0,0,0,3888,3889,1,0,0,0,3889,3890,1,0,0,0,3890,3928, - 5,382,0,0,3891,3893,5,361,0,0,3892,3891,1,0,0,0,3892,3893,1,0,0, - 0,3893,3894,1,0,0,0,3894,3928,5,383,0,0,3895,3897,5,361,0,0,3896, - 3895,1,0,0,0,3896,3897,1,0,0,0,3897,3898,1,0,0,0,3898,3928,7,58, - 0,0,3899,3901,5,361,0,0,3900,3899,1,0,0,0,3900,3901,1,0,0,0,3901, - 3902,1,0,0,0,3902,3928,5,381,0,0,3903,3905,5,361,0,0,3904,3903,1, - 0,0,0,3904,3905,1,0,0,0,3905,3906,1,0,0,0,3906,3928,5,378,0,0,3907, - 3909,5,361,0,0,3908,3907,1,0,0,0,3908,3909,1,0,0,0,3909,3910,1,0, - 0,0,3910,3928,5,379,0,0,3911,3913,5,361,0,0,3912,3911,1,0,0,0,3912, - 3913,1,0,0,0,3913,3914,1,0,0,0,3914,3928,5,380,0,0,3915,3917,5,361, - 0,0,3916,3915,1,0,0,0,3916,3917,1,0,0,0,3917,3918,1,0,0,0,3918,3928, - 5,385,0,0,3919,3921,5,361,0,0,3920,3919,1,0,0,0,3920,3921,1,0,0, - 0,3921,3922,1,0,0,0,3922,3928,5,384,0,0,3923,3925,5,361,0,0,3924, - 3923,1,0,0,0,3924,3925,1,0,0,0,3925,3926,1,0,0,0,3926,3928,5,386, - 0,0,3927,3888,1,0,0,0,3927,3892,1,0,0,0,3927,3896,1,0,0,0,3927,3900, - 1,0,0,0,3927,3904,1,0,0,0,3927,3908,1,0,0,0,3927,3912,1,0,0,0,3927, - 3916,1,0,0,0,3927,3920,1,0,0,0,3927,3924,1,0,0,0,3928,383,1,0,0, - 0,3929,3930,5,318,0,0,3930,3941,3,316,158,0,3931,3941,3,24,12,0, - 3932,3941,3,312,156,0,3933,3934,7,59,0,0,3934,3935,5,196,0,0,3935, - 3941,5,197,0,0,3936,3937,5,268,0,0,3937,3941,3,328,164,0,3938,3939, - 5,96,0,0,3939,3941,5,82,0,0,3940,3929,1,0,0,0,3940,3931,1,0,0,0, - 3940,3932,1,0,0,0,3940,3933,1,0,0,0,3940,3936,1,0,0,0,3940,3938, - 1,0,0,0,3941,385,1,0,0,0,3942,3943,7,60,0,0,3943,387,1,0,0,0,3944, - 3947,3,386,193,0,3945,3947,5,197,0,0,3946,3944,1,0,0,0,3946,3945, - 1,0,0,0,3947,389,1,0,0,0,3948,3951,5,381,0,0,3949,3951,3,386,193, - 0,3950,3948,1,0,0,0,3950,3949,1,0,0,0,3951,391,1,0,0,0,3952,3953, - 7,61,0,0,3953,393,1,0,0,0,3954,3955,7,62,0,0,3955,395,1,0,0,0,3956, - 3957,7,63,0,0,3957,397,1,0,0,0,514,401,408,412,425,430,438,440,459, - 463,469,472,475,482,485,489,492,497,508,510,518,521,525,528,534, - 545,551,556,589,599,610,621,632,637,646,650,656,660,665,671,683, - 691,697,708,712,717,732,736,743,747,753,782,786,791,798,804,807, - 810,814,818,826,828,837,840,849,854,860,867,870,874,885,888,894, - 898,913,915,923,927,933,936,940,943,949,954,958,965,968,971,978, - 983,992,1000,1006,1009,1012,1018,1022,1027,1030,1034,1036,1044,1052, - 1055,1062,1065,1068,1077,1082,1088,1093,1096,1100,1103,1107,1135, - 1138,1146,1152,1155,1158,1163,1171,1176,1182,1188,1191,1198,1205, - 1213,1230,1257,1260,1266,1275,1284,1290,1295,1300,1307,1312,1317, - 1324,1332,1335,1339,1351,1355,1362,1478,1486,1494,1503,1513,1517, - 1520,1524,1530,1542,1554,1559,1568,1576,1581,1583,1591,1596,1600, - 1603,1611,1616,1625,1630,1633,1638,1642,1647,1649,1653,1662,1670, - 1676,1687,1694,1703,1708,1711,1733,1735,1744,1751,1754,1761,1765, - 1771,1779,1786,1789,1797,1808,1819,1827,1833,1845,1852,1859,1871, - 1879,1885,1891,1894,1915,1926,1935,1938,1947,1950,1959,1962,1971, - 1974,1977,1982,1984,1988,1999,2005,2011,2014,2016,2028,2032,2035, - 2039,2045,2049,2057,2061,2064,2067,2070,2074,2078,2083,2087,2090, - 2093,2096,2100,2105,2109,2112,2115,2118,2120,2126,2133,2138,2141, - 2144,2148,2158,2162,2164,2167,2171,2177,2181,2192,2202,2206,2218, - 2230,2245,2250,2256,2263,2279,2284,2297,2302,2310,2316,2320,2323, - 2328,2335,2341,2350,2360,2375,2380,2382,2387,2396,2409,2414,2418, - 2425,2430,2434,2437,2440,2454,2467,2472,2476,2479,2483,2489,2492, - 2499,2511,2522,2535,2546,2551,2559,2564,2578,2587,2590,2595,2602, - 2605,2611,2617,2620,2625,2630,2634,2640,2644,2647,2652,2655,2660, - 2664,2667,2670,2676,2681,2688,2691,2709,2711,2714,2725,2734,2741, - 2749,2756,2760,2763,2771,2779,2785,2793,2801,2808,2815,2817,2830, - 2836,2838,2848,2854,2856,2864,2868,2877,2880,2886,2890,2892,2901, - 2913,2915,2922,2929,2935,2941,2943,2950,2958,2966,2972,2977,2984, - 2990,2993,2997,2999,3006,3015,3022,3032,3037,3041,3051,3058,3071, - 3073,3081,3083,3087,3095,3104,3110,3118,3123,3135,3140,3143,3149, - 3153,3158,3163,3168,3174,3195,3197,3208,3220,3232,3236,3245,3249, - 3267,3270,3278,3287,3296,3319,3335,3342,3345,3354,3358,3362,3374, - 3399,3406,3409,3424,3445,3449,3451,3461,3463,3473,3488,3490,3503, - 3507,3514,3519,3527,3532,3541,3573,3590,3594,3600,3606,3615,3619, - 3621,3628,3636,3644,3652,3660,3673,3680,3683,3690,3698,3706,3720, - 3725,3730,3733,3746,3770,3780,3783,3792,3795,3797,3800,3803,3821, - 3830,3837,3849,3858,3868,3871,3875,3881,3888,3892,3896,3900,3904, - 3908,3912,3916,3920,3924,3927,3940,3946,3950 + 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157, + 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157,3579,8,157, + 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, + 1,158,1,158,1,158,1,158,3,158,3596,8,158,1,158,1,158,3,158,3600, + 8,158,1,158,1,158,1,158,1,158,3,158,3606,8,158,1,158,1,158,1,158, + 1,158,3,158,3612,8,158,1,158,1,158,1,158,1,158,1,158,5,158,3619, + 8,158,10,158,12,158,3622,9,158,1,158,3,158,3625,8,158,3,158,3627, + 8,158,1,159,1,159,1,159,5,159,3632,8,159,10,159,12,159,3635,9,159, + 1,160,1,160,1,160,5,160,3640,8,160,10,160,12,160,3643,9,160,1,161, + 1,161,1,161,5,161,3648,8,161,10,161,12,161,3651,9,161,1,162,1,162, + 1,162,5,162,3656,8,162,10,162,12,162,3659,9,162,1,163,1,163,1,163, + 1,163,1,163,3,163,3666,8,163,1,164,1,164,1,164,1,165,1,165,1,165, + 1,166,1,166,1,166,5,166,3677,8,166,10,166,12,166,3680,9,166,1,167, + 1,167,1,167,1,167,3,167,3686,8,167,1,167,3,167,3689,8,167,1,168, + 1,168,1,168,5,168,3694,8,168,10,168,12,168,3697,9,168,1,169,1,169, + 1,169,5,169,3702,8,169,10,169,12,169,3705,9,169,1,170,1,170,1,170, + 1,170,1,170,3,170,3712,8,170,1,171,1,171,1,171,1,171,1,171,1,171, + 1,171,1,172,1,172,1,172,5,172,3724,8,172,10,172,12,172,3727,9,172, + 1,173,1,173,3,173,3731,8,173,1,173,1,173,1,173,3,173,3736,8,173, + 1,173,3,173,3739,8,173,1,174,1,174,1,174,1,174,1,174,1,175,1,175, + 1,175,1,175,5,175,3750,8,175,10,175,12,175,3753,9,175,1,176,1,176, + 1,176,1,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,5,178,3774,8,178,10,178,12,178, + 3777,9,178,1,178,1,178,1,178,1,178,1,178,5,178,3784,8,178,10,178, + 12,178,3787,9,178,3,178,3789,8,178,1,178,1,178,1,178,1,178,1,178, + 5,178,3796,8,178,10,178,12,178,3799,9,178,3,178,3801,8,178,3,178, + 3803,8,178,1,178,3,178,3806,8,178,1,178,3,178,3809,8,178,1,179,1, + 179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, + 1,179,1,179,1,179,1,179,3,179,3827,8,179,1,180,1,180,1,180,1,180, + 1,180,1,180,1,180,3,180,3836,8,180,1,181,1,181,1,181,5,181,3841, + 8,181,10,181,12,181,3844,9,181,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,1,182,1,182,3,182,3855,8,182,1,183,1,183,1,184,1,184,1,184, + 5,184,3862,8,184,10,184,12,184,3865,9,184,1,185,1,185,1,185,1,186, + 1,186,4,186,3872,8,186,11,186,12,186,3873,1,186,3,186,3877,8,186, + 1,187,1,187,3,187,3881,8,187,1,188,1,188,1,188,1,188,3,188,3887, + 8,188,1,189,1,189,1,190,1,190,1,191,3,191,3894,8,191,1,191,1,191, + 3,191,3898,8,191,1,191,1,191,3,191,3902,8,191,1,191,1,191,3,191, + 3906,8,191,1,191,1,191,3,191,3910,8,191,1,191,1,191,3,191,3914,8, + 191,1,191,1,191,3,191,3918,8,191,1,191,1,191,3,191,3922,8,191,1, + 191,1,191,3,191,3926,8,191,1,191,1,191,3,191,3930,8,191,1,191,3, + 191,3933,8,191,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1, + 192,1,192,1,192,3,192,3946,8,192,1,193,1,193,1,194,1,194,3,194,3952, + 8,194,1,195,1,195,3,195,3956,8,195,1,196,1,196,1,197,1,197,1,198, + 1,198,1,198,9,1134,1204,1212,1229,1256,1265,1274,1283,1331,4,102, + 274,278,282,199,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34, + 36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78, + 80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116, + 118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148, + 150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180, + 182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212, + 214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244, + 246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276, + 278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308, + 310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340, + 342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372, + 374,376,378,380,382,384,386,388,390,392,394,396,0,64,2,0,78,78,228, + 228,2,0,34,34,246,246,2,0,123,123,140,140,2,0,11,11,39,39,2,0,91, + 91,98,98,5,0,46,46,58,58,108,108,122,122,172,172,1,0,86,87,2,0,108, + 108,122,122,3,0,8,8,96,96,288,288,2,0,8,8,166,166,1,0,334,335,3, + 0,72,72,189,189,260,260,3,0,73,73,190,190,261,261,4,0,102,102,148, + 148,269,269,322,322,3,0,102,102,269,269,322,322,2,0,21,21,86,86, + 2,0,116,116,157,157,3,0,10,10,289,289,330,330,2,0,291,291,336,336, + 2,0,290,290,302,302,2,0,61,61,255,255,2,0,104,104,141,141,2,0,10, + 10,92,92,2,0,381,381,383,383,2,0,93,93,216,216,2,0,208,208,277,277, + 2,0,196,196,359,359,1,0,250,251,1,0,162,163,3,0,10,10,16,16,276, + 276,3,0,111,111,315,315,324,324,2,0,360,361,365,365,2,0,94,94,362, + 364,2,0,360,361,368,368,11,0,67,67,69,69,134,134,179,179,181,181, + 183,183,185,185,230,230,258,258,340,340,347,347,4,0,63,63,65,66, + 267,267,330,330,2,0,74,75,305,305,3,0,76,77,301,301,306,306,2,0, + 36,36,317,317,2,0,138,138,245,245,1,0,286,287,2,0,4,4,123,123,2, + 0,4,4,119,119,3,0,28,28,160,160,310,310,1,0,219,220,1,0,351,358, + 2,0,94,94,360,369,4,0,14,14,140,140,196,196,207,207,2,0,111,111, + 315,315,1,0,360,361,7,0,67,68,134,135,179,186,191,192,258,259,340, + 341,347,348,6,0,67,67,134,134,183,183,185,185,258,258,347,347,2, + 0,185,185,347,347,4,0,67,67,134,134,183,183,258,258,3,0,134,134, + 183,183,258,258,2,0,82,82,351,351,2,0,118,118,225,225,2,0,377,377, + 388,388,1,0,382,383,2,0,96,96,268,268,1,0,376,377,52,0,8,9,11,13, + 15,15,17,19,21,22,24,27,29,34,37,41,43,46,48,48,50,56,58,58,61,62, + 67,91,93,96,98,98,101,101,103,110,113,113,115,118,121,122,125,128, + 131,131,133,139,141,143,145,147,149,151,154,154,156,157,159,159, + 162,192,194,194,198,200,204,206,209,209,211,212,214,218,221,225, + 227,237,239,248,250,261,263,266,268,275,277,291,293,298,301,307, + 309,309,311,321,325,329,332,341,344,344,347,350,16,0,15,15,60,60, + 102,102,124,124,144,144,148,148,155,155,158,158,161,161,193,193, + 202,202,249,249,263,263,269,269,322,322,331,331,19,0,8,14,16,59, + 61,101,103,122,125,143,145,147,149,154,156,157,159,160,162,192,194, + 194,196,201,203,248,250,261,264,268,270,291,293,321,323,330,332, + 350,4578,0,401,1,0,0,0,2,406,1,0,0,0,4,1334,1,0,0,0,6,1338,1,0,0, + 0,8,1340,1,0,0,0,10,1342,1,0,0,0,12,1512,1,0,0,0,14,1514,1,0,0,0, + 16,1529,1,0,0,0,18,1535,1,0,0,0,20,1547,1,0,0,0,22,1560,1,0,0,0, + 24,1563,1,0,0,0,26,1567,1,0,0,0,28,1648,1,0,0,0,30,1650,1,0,0,0, + 32,1654,1,0,0,0,34,1675,1,0,0,0,36,1677,1,0,0,0,38,1679,1,0,0,0, + 40,1686,1,0,0,0,42,1688,1,0,0,0,44,1696,1,0,0,0,46,1705,1,0,0,0, + 48,1716,1,0,0,0,50,1734,1,0,0,0,52,1737,1,0,0,0,54,1748,1,0,0,0, + 56,1764,1,0,0,0,58,1770,1,0,0,0,60,1772,1,0,0,0,62,1783,1,0,0,0, + 64,1790,1,0,0,0,66,1801,1,0,0,0,68,1818,1,0,0,0,70,1826,1,0,0,0, + 72,1828,1,0,0,0,74,1834,1,0,0,0,76,1893,1,0,0,0,78,1895,1,0,0,0, + 80,1897,1,0,0,0,82,1899,1,0,0,0,84,1901,1,0,0,0,86,1903,1,0,0,0, + 88,1905,1,0,0,0,90,1909,1,0,0,0,92,1911,1,0,0,0,94,1919,1,0,0,0, + 96,1927,1,0,0,0,98,1939,1,0,0,0,100,1991,1,0,0,0,102,1994,1,0,0, + 0,104,2029,1,0,0,0,106,2033,1,0,0,0,108,2042,1,0,0,0,110,2075,1, + 0,0,0,112,2121,1,0,0,0,114,2142,1,0,0,0,116,2174,1,0,0,0,118,2186, + 1,0,0,0,120,2189,1,0,0,0,122,2198,1,0,0,0,124,2212,1,0,0,0,126,2231, + 1,0,0,0,128,2251,1,0,0,0,130,2257,1,0,0,0,132,2259,1,0,0,0,134,2267, + 1,0,0,0,136,2271,1,0,0,0,138,2274,1,0,0,0,140,2277,1,0,0,0,142,2303, + 1,0,0,0,144,2305,1,0,0,0,146,2326,1,0,0,0,148,2342,1,0,0,0,150,2383, + 1,0,0,0,152,2388,1,0,0,0,154,2415,1,0,0,0,156,2419,1,0,0,0,158,2441, + 1,0,0,0,160,2443,1,0,0,0,162,2473,1,0,0,0,164,2475,1,0,0,0,166,2482, + 1,0,0,0,168,2495,1,0,0,0,170,2500,1,0,0,0,172,2502,1,0,0,0,174,2517, + 1,0,0,0,176,2541,1,0,0,0,178,2554,1,0,0,0,180,2556,1,0,0,0,182,2558, + 1,0,0,0,184,2562,1,0,0,0,186,2565,1,0,0,0,188,2569,1,0,0,0,190,2573, + 1,0,0,0,192,2576,1,0,0,0,194,2608,1,0,0,0,196,2621,1,0,0,0,198,2626, + 1,0,0,0,200,2645,1,0,0,0,202,2671,1,0,0,0,204,2677,1,0,0,0,206,2679, + 1,0,0,0,208,2715,1,0,0,0,210,2717,1,0,0,0,212,2721,1,0,0,0,214,2729, + 1,0,0,0,216,2740,1,0,0,0,218,2744,1,0,0,0,220,2755,1,0,0,0,222,2790, + 1,0,0,0,224,2792,1,0,0,0,226,2822,1,0,0,0,228,2843,1,0,0,0,230,2863, + 1,0,0,0,232,2869,1,0,0,0,234,2873,1,0,0,0,236,2875,1,0,0,0,238,2897, + 1,0,0,0,240,2948,1,0,0,0,242,2950,1,0,0,0,244,2958,1,0,0,0,246,2966, + 1,0,0,0,248,2974,1,0,0,0,250,2982,1,0,0,0,252,2989,1,0,0,0,254,2995, + 1,0,0,0,256,3006,1,0,0,0,258,3014,1,0,0,0,260,3027,1,0,0,0,262,3042, + 1,0,0,0,264,3046,1,0,0,0,266,3048,1,0,0,0,268,3050,1,0,0,0,270,3056, + 1,0,0,0,272,3058,1,0,0,0,274,3078,1,0,0,0,276,3173,1,0,0,0,278,3179, + 1,0,0,0,280,3205,1,0,0,0,282,3456,1,0,0,0,284,3478,1,0,0,0,286,3495, + 1,0,0,0,288,3497,1,0,0,0,290,3499,1,0,0,0,292,3501,1,0,0,0,294,3503, + 1,0,0,0,296,3505,1,0,0,0,298,3510,1,0,0,0,300,3517,1,0,0,0,302,3521, + 1,0,0,0,304,3526,1,0,0,0,306,3532,1,0,0,0,308,3539,1,0,0,0,310,3541, + 1,0,0,0,312,3546,1,0,0,0,314,3578,1,0,0,0,316,3626,1,0,0,0,318,3628, + 1,0,0,0,320,3636,1,0,0,0,322,3644,1,0,0,0,324,3652,1,0,0,0,326,3665, + 1,0,0,0,328,3667,1,0,0,0,330,3670,1,0,0,0,332,3673,1,0,0,0,334,3681, + 1,0,0,0,336,3690,1,0,0,0,338,3698,1,0,0,0,340,3711,1,0,0,0,342,3713, + 1,0,0,0,344,3720,1,0,0,0,346,3728,1,0,0,0,348,3740,1,0,0,0,350,3745, + 1,0,0,0,352,3754,1,0,0,0,354,3758,1,0,0,0,356,3808,1,0,0,0,358,3826, + 1,0,0,0,360,3835,1,0,0,0,362,3837,1,0,0,0,364,3854,1,0,0,0,366,3856, + 1,0,0,0,368,3858,1,0,0,0,370,3866,1,0,0,0,372,3876,1,0,0,0,374,3880, + 1,0,0,0,376,3886,1,0,0,0,378,3888,1,0,0,0,380,3890,1,0,0,0,382,3932, + 1,0,0,0,384,3945,1,0,0,0,386,3947,1,0,0,0,388,3951,1,0,0,0,390,3955, + 1,0,0,0,392,3957,1,0,0,0,394,3959,1,0,0,0,396,3961,1,0,0,0,398,400, + 3,2,1,0,399,398,1,0,0,0,400,403,1,0,0,0,401,399,1,0,0,0,401,402, + 1,0,0,0,402,404,1,0,0,0,403,401,1,0,0,0,404,405,5,0,0,1,405,1,1, + 0,0,0,406,408,3,4,2,0,407,409,5,1,0,0,408,407,1,0,0,0,408,409,1, + 0,0,0,409,3,1,0,0,0,410,1335,3,26,13,0,411,413,3,44,22,0,412,411, + 1,0,0,0,412,413,1,0,0,0,413,414,1,0,0,0,414,1335,3,76,38,0,415,417, + 5,329,0,0,416,418,3,36,18,0,417,416,1,0,0,0,417,418,1,0,0,0,418, + 419,1,0,0,0,419,1335,3,78,39,0,420,421,5,268,0,0,421,424,5,37,0, + 0,422,425,3,374,187,0,423,425,3,386,193,0,424,422,1,0,0,0,424,423, + 1,0,0,0,425,1335,1,0,0,0,426,427,5,59,0,0,427,429,3,36,18,0,428, + 430,3,188,94,0,429,428,1,0,0,0,429,430,1,0,0,0,430,431,1,0,0,0,431, + 439,3,80,40,0,432,438,3,24,12,0,433,438,3,22,11,0,434,435,5,345, + 0,0,435,436,7,0,0,0,436,438,3,52,26,0,437,432,1,0,0,0,437,433,1, + 0,0,0,437,434,1,0,0,0,438,441,1,0,0,0,439,437,1,0,0,0,439,440,1, + 0,0,0,440,1335,1,0,0,0,441,439,1,0,0,0,442,443,5,11,0,0,443,444, + 3,36,18,0,444,445,3,78,39,0,445,446,5,268,0,0,446,447,7,0,0,0,447, + 448,3,52,26,0,448,1335,1,0,0,0,449,450,5,11,0,0,450,451,3,36,18, + 0,451,452,3,78,39,0,452,453,5,268,0,0,453,454,3,22,11,0,454,1335, + 1,0,0,0,455,456,5,96,0,0,456,458,3,36,18,0,457,459,3,190,95,0,458, + 457,1,0,0,0,458,459,1,0,0,0,459,460,1,0,0,0,460,462,3,78,39,0,461, + 463,7,1,0,0,462,461,1,0,0,0,462,463,1,0,0,0,463,1335,1,0,0,0,464, + 465,5,272,0,0,465,468,3,38,19,0,466,467,7,2,0,0,467,469,3,244,122, + 0,468,466,1,0,0,0,468,469,1,0,0,0,469,474,1,0,0,0,470,472,5,162, + 0,0,471,470,1,0,0,0,471,472,1,0,0,0,472,473,1,0,0,0,473,475,3,386, + 193,0,474,471,1,0,0,0,474,475,1,0,0,0,475,1335,1,0,0,0,476,481,3, + 14,7,0,477,478,5,2,0,0,478,479,3,336,168,0,479,480,5,3,0,0,480,482, + 1,0,0,0,481,477,1,0,0,0,481,482,1,0,0,0,482,484,1,0,0,0,483,485, + 3,48,24,0,484,483,1,0,0,0,484,485,1,0,0,0,485,486,1,0,0,0,486,491, + 3,50,25,0,487,489,5,20,0,0,488,487,1,0,0,0,488,489,1,0,0,0,489,490, + 1,0,0,0,490,492,3,26,13,0,491,488,1,0,0,0,491,492,1,0,0,0,492,1335, + 1,0,0,0,493,494,5,59,0,0,494,496,5,292,0,0,495,497,3,188,94,0,496, + 495,1,0,0,0,496,497,1,0,0,0,497,498,1,0,0,0,498,499,3,82,41,0,499, + 500,5,162,0,0,500,509,3,84,42,0,501,508,3,48,24,0,502,508,3,240, + 120,0,503,508,3,68,34,0,504,508,3,22,11,0,505,506,5,296,0,0,506, + 508,3,52,26,0,507,501,1,0,0,0,507,502,1,0,0,0,507,503,1,0,0,0,507, + 504,1,0,0,0,507,505,1,0,0,0,508,511,1,0,0,0,509,507,1,0,0,0,509, + 510,1,0,0,0,510,1335,1,0,0,0,511,509,1,0,0,0,512,517,3,16,8,0,513, + 514,5,2,0,0,514,515,3,336,168,0,515,516,5,3,0,0,516,518,1,0,0,0, + 517,513,1,0,0,0,517,518,1,0,0,0,518,520,1,0,0,0,519,521,3,48,24, + 0,520,519,1,0,0,0,520,521,1,0,0,0,521,522,1,0,0,0,522,527,3,50,25, + 0,523,525,5,20,0,0,524,523,1,0,0,0,524,525,1,0,0,0,525,526,1,0,0, + 0,526,528,3,26,13,0,527,524,1,0,0,0,527,528,1,0,0,0,528,1335,1,0, + 0,0,529,530,5,13,0,0,530,531,5,292,0,0,531,533,3,84,42,0,532,534, + 3,32,16,0,533,532,1,0,0,0,533,534,1,0,0,0,534,535,1,0,0,0,535,536, + 5,55,0,0,536,544,5,281,0,0,537,545,5,195,0,0,538,539,5,119,0,0,539, + 540,5,50,0,0,540,545,3,92,46,0,541,542,5,119,0,0,542,543,5,10,0, + 0,543,545,5,50,0,0,544,537,1,0,0,0,544,538,1,0,0,0,544,541,1,0,0, + 0,544,545,1,0,0,0,545,1335,1,0,0,0,546,547,5,13,0,0,547,550,5,293, + 0,0,548,549,7,2,0,0,549,551,3,78,39,0,550,548,1,0,0,0,550,551,1, + 0,0,0,551,552,1,0,0,0,552,553,5,55,0,0,553,555,5,281,0,0,554,556, + 5,195,0,0,555,554,1,0,0,0,555,556,1,0,0,0,556,1335,1,0,0,0,557,558, + 5,11,0,0,558,559,5,292,0,0,559,560,3,84,42,0,560,561,5,8,0,0,561, + 562,5,49,0,0,562,563,3,320,160,0,563,1335,1,0,0,0,564,565,5,11,0, + 0,565,566,5,292,0,0,566,567,3,84,42,0,567,568,5,8,0,0,568,569,5, + 50,0,0,569,570,5,2,0,0,570,571,3,318,159,0,571,572,5,3,0,0,572,1335, + 1,0,0,0,573,574,5,11,0,0,574,575,5,292,0,0,575,576,3,84,42,0,576, + 577,5,240,0,0,577,578,5,49,0,0,578,579,3,90,45,0,579,580,5,308,0, + 0,580,581,3,94,47,0,581,1335,1,0,0,0,582,583,5,11,0,0,583,584,5, + 292,0,0,584,585,3,84,42,0,585,586,5,96,0,0,586,588,5,49,0,0,587, + 589,3,190,95,0,588,587,1,0,0,0,588,589,1,0,0,0,589,590,1,0,0,0,590, + 591,3,90,45,0,591,1335,1,0,0,0,592,593,5,11,0,0,593,594,5,292,0, + 0,594,595,3,84,42,0,595,596,5,96,0,0,596,598,5,50,0,0,597,599,3, + 190,95,0,598,597,1,0,0,0,598,599,1,0,0,0,599,600,1,0,0,0,600,601, + 5,2,0,0,601,602,3,92,46,0,602,603,5,3,0,0,603,1335,1,0,0,0,604,609, + 5,11,0,0,605,606,5,292,0,0,606,610,3,84,42,0,607,608,5,337,0,0,608, + 610,3,88,44,0,609,605,1,0,0,0,609,607,1,0,0,0,610,611,1,0,0,0,611, + 612,5,240,0,0,612,613,5,308,0,0,613,614,3,244,122,0,614,1335,1,0, + 0,0,615,620,5,11,0,0,616,617,5,292,0,0,617,621,3,84,42,0,618,619, + 5,337,0,0,619,621,3,88,44,0,620,616,1,0,0,0,620,618,1,0,0,0,621, + 622,1,0,0,0,622,623,5,268,0,0,623,624,5,296,0,0,624,625,3,52,26, + 0,625,1335,1,0,0,0,626,631,5,11,0,0,627,628,5,292,0,0,628,632,3, + 84,42,0,629,630,5,337,0,0,630,632,3,88,44,0,631,627,1,0,0,0,631, + 629,1,0,0,0,632,633,1,0,0,0,633,634,5,327,0,0,634,636,5,296,0,0, + 635,637,3,190,95,0,636,635,1,0,0,0,636,637,1,0,0,0,637,638,1,0,0, + 0,638,639,3,52,26,0,639,1335,1,0,0,0,640,641,5,11,0,0,641,642,5, + 292,0,0,642,643,3,84,42,0,643,645,7,3,0,0,644,646,5,49,0,0,645,644, + 1,0,0,0,645,646,1,0,0,0,646,647,1,0,0,0,647,649,3,90,45,0,648,650, + 3,384,192,0,649,648,1,0,0,0,649,650,1,0,0,0,650,1335,1,0,0,0,651, + 652,5,11,0,0,652,653,5,292,0,0,653,655,3,84,42,0,654,656,3,32,16, + 0,655,654,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657,659,5,39,0, + 0,658,660,5,49,0,0,659,658,1,0,0,0,659,660,1,0,0,0,660,661,1,0,0, + 0,661,662,3,90,45,0,662,664,3,334,167,0,663,665,3,312,156,0,664, + 663,1,0,0,0,664,665,1,0,0,0,665,1335,1,0,0,0,666,667,5,11,0,0,667, + 668,5,292,0,0,668,670,3,84,42,0,669,671,3,32,16,0,670,669,1,0,0, + 0,670,671,1,0,0,0,671,672,1,0,0,0,672,673,5,243,0,0,673,674,5,50, + 0,0,674,675,5,2,0,0,675,676,3,322,161,0,676,677,5,3,0,0,677,1335, + 1,0,0,0,678,679,5,11,0,0,679,680,5,292,0,0,680,682,3,84,42,0,681, + 683,3,32,16,0,682,681,1,0,0,0,682,683,1,0,0,0,683,684,1,0,0,0,684, + 685,5,268,0,0,685,686,5,265,0,0,686,690,3,386,193,0,687,688,5,345, + 0,0,688,689,5,266,0,0,689,691,3,52,26,0,690,687,1,0,0,0,690,691, + 1,0,0,0,691,1335,1,0,0,0,692,693,5,11,0,0,693,694,5,292,0,0,694, + 696,3,84,42,0,695,697,3,32,16,0,696,695,1,0,0,0,696,697,1,0,0,0, + 697,698,1,0,0,0,698,699,5,268,0,0,699,700,5,266,0,0,700,701,3,52, + 26,0,701,1335,1,0,0,0,702,707,5,11,0,0,703,704,5,292,0,0,704,708, + 3,84,42,0,705,706,5,337,0,0,706,708,3,88,44,0,707,703,1,0,0,0,707, + 705,1,0,0,0,708,709,1,0,0,0,709,711,5,8,0,0,710,712,3,188,94,0,711, + 710,1,0,0,0,711,712,1,0,0,0,712,714,1,0,0,0,713,715,3,30,15,0,714, + 713,1,0,0,0,715,716,1,0,0,0,716,714,1,0,0,0,716,717,1,0,0,0,717, + 1335,1,0,0,0,718,719,5,11,0,0,719,720,5,292,0,0,720,721,3,84,42, + 0,721,722,3,32,16,0,722,723,5,240,0,0,723,724,5,308,0,0,724,725, + 3,32,16,0,725,1335,1,0,0,0,726,731,5,11,0,0,727,728,5,292,0,0,728, + 732,3,84,42,0,729,730,5,337,0,0,730,732,3,88,44,0,731,727,1,0,0, + 0,731,729,1,0,0,0,732,733,1,0,0,0,733,735,5,96,0,0,734,736,3,190, + 95,0,735,734,1,0,0,0,735,736,1,0,0,0,736,737,1,0,0,0,737,742,3,32, + 16,0,738,739,5,4,0,0,739,741,3,32,16,0,740,738,1,0,0,0,741,744,1, + 0,0,0,742,740,1,0,0,0,742,743,1,0,0,0,743,746,1,0,0,0,744,742,1, + 0,0,0,745,747,5,229,0,0,746,745,1,0,0,0,746,747,1,0,0,0,747,1335, + 1,0,0,0,748,749,5,11,0,0,749,750,5,292,0,0,750,752,3,84,42,0,751, + 753,3,32,16,0,752,751,1,0,0,0,752,753,1,0,0,0,753,754,1,0,0,0,754, + 755,5,268,0,0,755,756,3,22,11,0,756,1335,1,0,0,0,757,758,5,11,0, + 0,758,759,5,292,0,0,759,760,3,84,42,0,760,761,5,236,0,0,761,762, + 5,218,0,0,762,1335,1,0,0,0,763,764,5,11,0,0,764,765,5,175,0,0,765, + 766,5,337,0,0,766,767,3,88,44,0,767,768,7,4,0,0,768,769,5,247,0, + 0,769,1335,1,0,0,0,770,771,5,11,0,0,771,772,5,175,0,0,772,773,5, + 337,0,0,773,774,3,88,44,0,774,775,5,268,0,0,775,776,5,296,0,0,776, + 777,3,52,26,0,777,1335,1,0,0,0,778,779,5,96,0,0,779,781,5,292,0, + 0,780,782,3,190,95,0,781,780,1,0,0,0,781,782,1,0,0,0,782,783,1,0, + 0,0,783,785,3,84,42,0,784,786,5,229,0,0,785,784,1,0,0,0,785,786, + 1,0,0,0,786,1335,1,0,0,0,787,788,5,96,0,0,788,790,5,337,0,0,789, + 791,3,190,95,0,790,789,1,0,0,0,790,791,1,0,0,0,791,792,1,0,0,0,792, + 1335,3,88,44,0,793,794,5,96,0,0,794,795,5,175,0,0,795,797,5,337, + 0,0,796,798,3,190,95,0,797,796,1,0,0,0,797,798,1,0,0,0,798,799,1, + 0,0,0,799,1335,3,88,44,0,800,803,5,59,0,0,801,802,5,207,0,0,802, + 804,5,243,0,0,803,801,1,0,0,0,803,804,1,0,0,0,804,809,1,0,0,0,805, + 807,5,128,0,0,806,805,1,0,0,0,806,807,1,0,0,0,807,808,1,0,0,0,808, + 810,5,297,0,0,809,806,1,0,0,0,809,810,1,0,0,0,810,811,1,0,0,0,811, + 813,5,337,0,0,812,814,3,188,94,0,813,812,1,0,0,0,813,814,1,0,0,0, + 814,815,1,0,0,0,815,817,3,86,43,0,816,818,3,218,109,0,817,816,1, + 0,0,0,817,818,1,0,0,0,818,827,1,0,0,0,819,826,3,24,12,0,820,821, + 5,217,0,0,821,822,5,202,0,0,822,826,3,210,105,0,823,824,5,296,0, + 0,824,826,3,52,26,0,825,819,1,0,0,0,825,820,1,0,0,0,825,823,1,0, + 0,0,826,829,1,0,0,0,827,825,1,0,0,0,827,828,1,0,0,0,828,830,1,0, + 0,0,829,827,1,0,0,0,830,831,5,20,0,0,831,832,3,26,13,0,832,1335, + 1,0,0,0,833,836,5,59,0,0,834,835,5,207,0,0,835,837,5,243,0,0,836, + 834,1,0,0,0,836,837,1,0,0,0,837,839,1,0,0,0,838,840,5,128,0,0,839, + 838,1,0,0,0,839,840,1,0,0,0,840,841,1,0,0,0,841,842,5,297,0,0,842, + 843,5,337,0,0,843,848,3,86,43,0,844,845,5,2,0,0,845,846,3,332,166, + 0,846,847,5,3,0,0,847,849,1,0,0,0,848,844,1,0,0,0,848,849,1,0,0, + 0,849,850,1,0,0,0,850,853,3,48,24,0,851,852,5,206,0,0,852,854,3, + 52,26,0,853,851,1,0,0,0,853,854,1,0,0,0,854,1335,1,0,0,0,855,856, + 5,11,0,0,856,857,5,337,0,0,857,859,3,88,44,0,858,860,5,20,0,0,859, + 858,1,0,0,0,859,860,1,0,0,0,860,861,1,0,0,0,861,862,3,26,13,0,862, + 1335,1,0,0,0,863,866,5,59,0,0,864,865,5,207,0,0,865,867,5,243,0, + 0,866,864,1,0,0,0,866,867,1,0,0,0,867,869,1,0,0,0,868,870,5,297, + 0,0,869,868,1,0,0,0,869,870,1,0,0,0,870,871,1,0,0,0,871,873,5,125, + 0,0,872,874,3,188,94,0,873,872,1,0,0,0,873,874,1,0,0,0,874,875,1, + 0,0,0,875,876,3,366,183,0,876,877,5,20,0,0,877,887,3,386,193,0,878, + 879,5,331,0,0,879,884,3,74,37,0,880,881,5,4,0,0,881,883,3,74,37, + 0,882,880,1,0,0,0,883,886,1,0,0,0,884,882,1,0,0,0,884,885,1,0,0, + 0,885,888,1,0,0,0,886,884,1,0,0,0,887,878,1,0,0,0,887,888,1,0,0, + 0,888,1335,1,0,0,0,889,890,5,59,0,0,890,891,5,175,0,0,891,893,5, + 337,0,0,892,894,3,188,94,0,893,892,1,0,0,0,893,894,1,0,0,0,894,895, + 1,0,0,0,895,897,3,86,43,0,896,898,3,48,24,0,897,896,1,0,0,0,897, + 898,1,0,0,0,898,914,1,0,0,0,899,900,5,206,0,0,900,913,3,52,26,0, + 901,902,5,217,0,0,902,903,5,31,0,0,903,913,3,258,129,0,904,913,3, + 20,10,0,905,913,3,18,9,0,906,913,3,240,120,0,907,913,3,68,34,0,908, + 913,3,22,11,0,909,913,3,24,12,0,910,911,5,296,0,0,911,913,3,52,26, + 0,912,899,1,0,0,0,912,901,1,0,0,0,912,904,1,0,0,0,912,905,1,0,0, + 0,912,906,1,0,0,0,912,907,1,0,0,0,912,908,1,0,0,0,912,909,1,0,0, + 0,912,910,1,0,0,0,913,916,1,0,0,0,914,912,1,0,0,0,914,915,1,0,0, + 0,915,917,1,0,0,0,916,914,1,0,0,0,917,918,5,20,0,0,918,919,3,26, + 13,0,919,1335,1,0,0,0,920,922,5,96,0,0,921,923,5,297,0,0,922,921, + 1,0,0,0,922,923,1,0,0,0,923,924,1,0,0,0,924,926,5,125,0,0,925,927, + 3,190,95,0,926,925,1,0,0,0,926,927,1,0,0,0,927,928,1,0,0,0,928,1335, + 3,364,182,0,929,932,5,81,0,0,930,931,5,207,0,0,931,933,5,243,0,0, + 932,930,1,0,0,0,932,933,1,0,0,0,933,935,1,0,0,0,934,936,5,335,0, + 0,935,934,1,0,0,0,935,936,1,0,0,0,936,937,1,0,0,0,937,939,3,364, + 182,0,938,940,3,316,158,0,939,938,1,0,0,0,939,940,1,0,0,0,940,942, + 1,0,0,0,941,943,3,330,165,0,942,941,1,0,0,0,942,943,1,0,0,0,943, + 1335,1,0,0,0,944,945,5,96,0,0,945,946,5,297,0,0,946,948,5,335,0, + 0,947,949,3,190,95,0,948,947,1,0,0,0,948,949,1,0,0,0,949,953,1,0, + 0,0,950,954,3,84,42,0,951,954,3,88,44,0,952,954,3,364,182,0,953, + 950,1,0,0,0,953,951,1,0,0,0,953,952,1,0,0,0,954,1335,1,0,0,0,955, + 957,5,106,0,0,956,958,7,5,0,0,957,956,1,0,0,0,957,958,1,0,0,0,958, + 959,1,0,0,0,959,1335,3,4,2,0,960,961,5,272,0,0,961,964,5,293,0,0, + 962,963,7,2,0,0,963,965,3,78,39,0,964,962,1,0,0,0,964,965,1,0,0, + 0,965,970,1,0,0,0,966,968,5,162,0,0,967,966,1,0,0,0,967,968,1,0, + 0,0,968,969,1,0,0,0,969,971,3,386,193,0,970,967,1,0,0,0,970,971, + 1,0,0,0,971,1335,1,0,0,0,972,973,5,272,0,0,973,974,5,292,0,0,974, + 977,5,108,0,0,975,976,7,2,0,0,976,978,3,78,39,0,977,975,1,0,0,0, + 977,978,1,0,0,0,978,979,1,0,0,0,979,980,5,162,0,0,980,982,3,386, + 193,0,981,983,3,32,16,0,982,981,1,0,0,0,982,983,1,0,0,0,983,1335, + 1,0,0,0,984,985,5,272,0,0,985,986,5,296,0,0,986,991,3,84,42,0,987, + 988,5,2,0,0,988,989,3,56,28,0,989,990,5,3,0,0,990,992,1,0,0,0,991, + 987,1,0,0,0,991,992,1,0,0,0,992,1335,1,0,0,0,993,994,5,272,0,0,994, + 995,5,50,0,0,995,996,7,2,0,0,996,999,3,84,42,0,997,998,7,2,0,0,998, + 1000,3,78,39,0,999,997,1,0,0,0,999,1000,1,0,0,0,1000,1335,1,0,0, + 0,1001,1002,5,272,0,0,1002,1005,5,338,0,0,1003,1004,7,2,0,0,1004, + 1006,3,78,39,0,1005,1003,1,0,0,0,1005,1006,1,0,0,0,1006,1011,1,0, + 0,0,1007,1009,5,162,0,0,1008,1007,1,0,0,0,1008,1009,1,0,0,0,1009, + 1010,1,0,0,0,1010,1012,3,386,193,0,1011,1008,1,0,0,0,1011,1012,1, + 0,0,0,1012,1335,1,0,0,0,1013,1014,5,272,0,0,1014,1015,5,218,0,0, + 1015,1017,3,84,42,0,1016,1018,3,32,16,0,1017,1016,1,0,0,0,1017,1018, + 1,0,0,0,1018,1335,1,0,0,0,1019,1021,5,272,0,0,1020,1022,3,146,73, + 0,1021,1020,1,0,0,0,1021,1022,1,0,0,0,1022,1023,1,0,0,0,1023,1026, + 5,126,0,0,1024,1025,7,2,0,0,1025,1027,3,78,39,0,1026,1024,1,0,0, + 0,1026,1027,1,0,0,0,1027,1035,1,0,0,0,1028,1030,5,162,0,0,1029,1028, + 1,0,0,0,1029,1030,1,0,0,0,1030,1033,1,0,0,0,1031,1034,3,244,122, + 0,1032,1034,3,386,193,0,1033,1031,1,0,0,0,1033,1032,1,0,0,0,1034, + 1036,1,0,0,0,1035,1029,1,0,0,0,1035,1036,1,0,0,0,1036,1335,1,0,0, + 0,1037,1038,5,272,0,0,1038,1039,5,59,0,0,1039,1040,5,292,0,0,1040, + 1043,3,84,42,0,1041,1042,5,20,0,0,1042,1044,5,265,0,0,1043,1041, + 1,0,0,0,1043,1044,1,0,0,0,1044,1335,1,0,0,0,1045,1046,5,272,0,0, + 1046,1047,5,62,0,0,1047,1335,3,36,18,0,1048,1049,5,272,0,0,1049, + 1054,5,38,0,0,1050,1052,5,162,0,0,1051,1050,1,0,0,0,1051,1052,1, + 0,0,0,1052,1053,1,0,0,0,1053,1055,3,386,193,0,1054,1051,1,0,0,0, + 1054,1055,1,0,0,0,1055,1335,1,0,0,0,1056,1057,5,272,0,0,1057,1058, + 5,175,0,0,1058,1061,5,338,0,0,1059,1060,7,2,0,0,1060,1062,3,78,39, + 0,1061,1059,1,0,0,0,1061,1062,1,0,0,0,1062,1067,1,0,0,0,1063,1065, + 5,162,0,0,1064,1063,1,0,0,0,1064,1065,1,0,0,0,1065,1066,1,0,0,0, + 1066,1068,3,386,193,0,1067,1064,1,0,0,0,1067,1068,1,0,0,0,1068,1335, + 1,0,0,0,1069,1070,5,272,0,0,1070,1071,5,59,0,0,1071,1072,5,175,0, + 0,1072,1073,5,337,0,0,1073,1076,3,88,44,0,1074,1075,5,20,0,0,1075, + 1077,5,265,0,0,1076,1074,1,0,0,0,1076,1077,1,0,0,0,1077,1335,1,0, + 0,0,1078,1079,7,6,0,0,1079,1081,5,125,0,0,1080,1082,5,108,0,0,1081, + 1080,1,0,0,0,1081,1082,1,0,0,0,1082,1083,1,0,0,0,1083,1335,3,40, + 20,0,1084,1085,7,6,0,0,1085,1087,5,72,0,0,1086,1088,5,108,0,0,1087, + 1086,1,0,0,0,1087,1088,1,0,0,0,1088,1089,1,0,0,0,1089,1335,3,78, + 39,0,1090,1092,7,6,0,0,1091,1093,5,292,0,0,1092,1091,1,0,0,0,1092, + 1093,1,0,0,0,1093,1095,1,0,0,0,1094,1096,7,7,0,0,1095,1094,1,0,0, + 0,1095,1096,1,0,0,0,1096,1097,1,0,0,0,1097,1099,3,84,42,0,1098,1100, + 3,32,16,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100,1102,1,0,0,0, + 1101,1103,3,42,21,0,1102,1101,1,0,0,0,1102,1103,1,0,0,0,1103,1335, + 1,0,0,0,1104,1106,7,6,0,0,1105,1107,5,231,0,0,1106,1105,1,0,0,0, + 1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1335,3,26,13,0,1109,1110, + 5,51,0,0,1110,1111,5,202,0,0,1111,1112,3,36,18,0,1112,1113,3,78, + 39,0,1113,1114,5,153,0,0,1114,1115,3,388,194,0,1115,1335,1,0,0,0, + 1116,1117,5,51,0,0,1117,1118,5,202,0,0,1118,1119,5,292,0,0,1119, + 1120,3,84,42,0,1120,1121,5,153,0,0,1121,1122,3,388,194,0,1122,1335, + 1,0,0,0,1123,1124,5,239,0,0,1124,1125,5,292,0,0,1125,1335,3,84,42, + 0,1126,1127,5,239,0,0,1127,1128,5,125,0,0,1128,1335,3,364,182,0, + 1129,1137,5,239,0,0,1130,1138,3,386,193,0,1131,1133,9,0,0,0,1132, + 1131,1,0,0,0,1133,1136,1,0,0,0,1134,1135,1,0,0,0,1134,1132,1,0,0, + 0,1135,1138,1,0,0,0,1136,1134,1,0,0,0,1137,1130,1,0,0,0,1137,1134, + 1,0,0,0,1138,1335,1,0,0,0,1139,1140,5,239,0,0,1140,1141,5,175,0, + 0,1141,1142,5,337,0,0,1142,1335,3,88,44,0,1143,1145,5,33,0,0,1144, + 1146,5,159,0,0,1145,1144,1,0,0,0,1145,1146,1,0,0,0,1146,1147,1,0, + 0,0,1147,1148,5,292,0,0,1148,1151,3,84,42,0,1149,1150,5,206,0,0, + 1150,1152,3,52,26,0,1151,1149,1,0,0,0,1151,1152,1,0,0,0,1152,1157, + 1,0,0,0,1153,1155,5,20,0,0,1154,1153,1,0,0,0,1154,1155,1,0,0,0,1155, + 1156,1,0,0,0,1156,1158,3,26,13,0,1157,1154,1,0,0,0,1157,1158,1,0, + 0,0,1158,1335,1,0,0,0,1159,1160,5,321,0,0,1160,1162,5,292,0,0,1161, + 1163,3,190,95,0,1162,1161,1,0,0,0,1162,1163,1,0,0,0,1163,1164,1, + 0,0,0,1164,1335,3,84,42,0,1165,1166,5,43,0,0,1166,1335,5,33,0,0, + 1167,1168,5,167,0,0,1168,1170,5,70,0,0,1169,1171,5,168,0,0,1170, + 1169,1,0,0,0,1170,1171,1,0,0,0,1171,1172,1,0,0,0,1172,1173,5,145, + 0,0,1173,1175,3,386,193,0,1174,1176,5,215,0,0,1175,1174,1,0,0,0, + 1175,1176,1,0,0,0,1176,1177,1,0,0,0,1177,1178,5,152,0,0,1178,1179, + 5,292,0,0,1179,1181,3,84,42,0,1180,1182,3,32,16,0,1181,1180,1,0, + 0,0,1181,1182,1,0,0,0,1182,1335,1,0,0,0,1183,1184,5,316,0,0,1184, + 1185,5,292,0,0,1185,1187,3,84,42,0,1186,1188,3,32,16,0,1187,1186, + 1,0,0,0,1187,1188,1,0,0,0,1188,1335,1,0,0,0,1189,1191,5,187,0,0, + 1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1192,1,0,0,0,1192,1193, + 5,241,0,0,1193,1194,5,292,0,0,1194,1197,3,84,42,0,1195,1196,7,8, + 0,0,1196,1198,5,218,0,0,1197,1195,1,0,0,0,1197,1198,1,0,0,0,1198, + 1335,1,0,0,0,1199,1200,7,9,0,0,1200,1204,3,374,187,0,1201,1203,9, + 0,0,0,1202,1201,1,0,0,0,1203,1206,1,0,0,0,1204,1205,1,0,0,0,1204, + 1202,1,0,0,0,1205,1335,1,0,0,0,1206,1204,1,0,0,0,1207,1208,5,268, + 0,0,1208,1212,5,252,0,0,1209,1211,9,0,0,0,1210,1209,1,0,0,0,1211, + 1214,1,0,0,0,1212,1213,1,0,0,0,1212,1210,1,0,0,0,1213,1335,1,0,0, + 0,1214,1212,1,0,0,0,1215,1216,5,268,0,0,1216,1217,5,300,0,0,1217, + 1218,5,349,0,0,1218,1335,3,296,148,0,1219,1220,5,268,0,0,1220,1221, + 5,300,0,0,1221,1222,5,349,0,0,1222,1335,3,6,3,0,1223,1224,5,268, + 0,0,1224,1225,5,300,0,0,1225,1229,5,349,0,0,1226,1228,9,0,0,0,1227, + 1226,1,0,0,0,1228,1231,1,0,0,0,1229,1230,1,0,0,0,1229,1227,1,0,0, + 0,1230,1335,1,0,0,0,1231,1229,1,0,0,0,1232,1233,5,268,0,0,1233,1234, + 7,10,0,0,1234,1335,3,132,66,0,1235,1236,5,268,0,0,1236,1237,7,10, + 0,0,1237,1238,5,2,0,0,1238,1239,3,242,121,0,1239,1240,5,3,0,0,1240, + 1241,5,351,0,0,1241,1242,5,2,0,0,1242,1243,3,26,13,0,1243,1244,5, + 3,0,0,1244,1335,1,0,0,0,1245,1246,5,268,0,0,1246,1247,3,8,4,0,1247, + 1248,5,351,0,0,1248,1249,3,10,5,0,1249,1335,1,0,0,0,1250,1251,5, + 268,0,0,1251,1259,3,8,4,0,1252,1256,5,351,0,0,1253,1255,9,0,0,0, + 1254,1253,1,0,0,0,1255,1258,1,0,0,0,1256,1257,1,0,0,0,1256,1254, + 1,0,0,0,1257,1260,1,0,0,0,1258,1256,1,0,0,0,1259,1252,1,0,0,0,1259, + 1260,1,0,0,0,1260,1335,1,0,0,0,1261,1265,5,268,0,0,1262,1264,9,0, + 0,0,1263,1262,1,0,0,0,1264,1267,1,0,0,0,1265,1266,1,0,0,0,1265,1263, + 1,0,0,0,1266,1268,1,0,0,0,1267,1265,1,0,0,0,1268,1269,5,351,0,0, + 1269,1335,3,10,5,0,1270,1274,5,268,0,0,1271,1273,9,0,0,0,1272,1271, + 1,0,0,0,1273,1276,1,0,0,0,1274,1275,1,0,0,0,1274,1272,1,0,0,0,1275, + 1335,1,0,0,0,1276,1274,1,0,0,0,1277,1278,5,244,0,0,1278,1335,3,8, + 4,0,1279,1283,5,244,0,0,1280,1282,9,0,0,0,1281,1280,1,0,0,0,1282, + 1285,1,0,0,0,1283,1284,1,0,0,0,1283,1281,1,0,0,0,1284,1335,1,0,0, + 0,1285,1283,1,0,0,0,1286,1287,5,59,0,0,1287,1289,5,142,0,0,1288, + 1290,3,188,94,0,1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290,1291,1, + 0,0,0,1291,1292,3,374,187,0,1292,1294,5,202,0,0,1293,1295,5,292, + 0,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295,1296,1,0,0,0,1296,1299, + 3,84,42,0,1297,1298,5,331,0,0,1298,1300,3,374,187,0,1299,1297,1, + 0,0,0,1299,1300,1,0,0,0,1300,1301,1,0,0,0,1301,1302,5,2,0,0,1302, + 1303,3,246,123,0,1303,1306,5,3,0,0,1304,1305,5,206,0,0,1305,1307, + 3,52,26,0,1306,1304,1,0,0,0,1306,1307,1,0,0,0,1307,1335,1,0,0,0, + 1308,1309,5,96,0,0,1309,1311,5,142,0,0,1310,1312,3,190,95,0,1311, + 1310,1,0,0,0,1311,1312,1,0,0,0,1312,1313,1,0,0,0,1313,1314,3,374, + 187,0,1314,1316,5,202,0,0,1315,1317,5,292,0,0,1316,1315,1,0,0,0, + 1316,1317,1,0,0,0,1317,1318,1,0,0,0,1318,1319,3,84,42,0,1319,1335, + 1,0,0,0,1320,1321,5,204,0,0,1321,1323,3,84,42,0,1322,1324,3,136, + 68,0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324,1325,1,0,0,0,1325, + 1326,3,352,176,0,1326,1335,1,0,0,0,1327,1331,3,12,6,0,1328,1330, + 9,0,0,0,1329,1328,1,0,0,0,1330,1333,1,0,0,0,1331,1332,1,0,0,0,1331, + 1329,1,0,0,0,1332,1335,1,0,0,0,1333,1331,1,0,0,0,1334,410,1,0,0, + 0,1334,412,1,0,0,0,1334,415,1,0,0,0,1334,420,1,0,0,0,1334,426,1, + 0,0,0,1334,442,1,0,0,0,1334,449,1,0,0,0,1334,455,1,0,0,0,1334,464, + 1,0,0,0,1334,476,1,0,0,0,1334,493,1,0,0,0,1334,512,1,0,0,0,1334, + 529,1,0,0,0,1334,546,1,0,0,0,1334,557,1,0,0,0,1334,564,1,0,0,0,1334, + 573,1,0,0,0,1334,582,1,0,0,0,1334,592,1,0,0,0,1334,604,1,0,0,0,1334, + 615,1,0,0,0,1334,626,1,0,0,0,1334,640,1,0,0,0,1334,651,1,0,0,0,1334, + 666,1,0,0,0,1334,678,1,0,0,0,1334,692,1,0,0,0,1334,702,1,0,0,0,1334, + 718,1,0,0,0,1334,726,1,0,0,0,1334,748,1,0,0,0,1334,757,1,0,0,0,1334, + 763,1,0,0,0,1334,770,1,0,0,0,1334,778,1,0,0,0,1334,787,1,0,0,0,1334, + 793,1,0,0,0,1334,800,1,0,0,0,1334,833,1,0,0,0,1334,855,1,0,0,0,1334, + 863,1,0,0,0,1334,889,1,0,0,0,1334,920,1,0,0,0,1334,929,1,0,0,0,1334, + 944,1,0,0,0,1334,955,1,0,0,0,1334,960,1,0,0,0,1334,972,1,0,0,0,1334, + 984,1,0,0,0,1334,993,1,0,0,0,1334,1001,1,0,0,0,1334,1013,1,0,0,0, + 1334,1019,1,0,0,0,1334,1037,1,0,0,0,1334,1045,1,0,0,0,1334,1048, + 1,0,0,0,1334,1056,1,0,0,0,1334,1069,1,0,0,0,1334,1078,1,0,0,0,1334, + 1084,1,0,0,0,1334,1090,1,0,0,0,1334,1104,1,0,0,0,1334,1109,1,0,0, + 0,1334,1116,1,0,0,0,1334,1123,1,0,0,0,1334,1126,1,0,0,0,1334,1129, + 1,0,0,0,1334,1139,1,0,0,0,1334,1143,1,0,0,0,1334,1159,1,0,0,0,1334, + 1165,1,0,0,0,1334,1167,1,0,0,0,1334,1183,1,0,0,0,1334,1190,1,0,0, + 0,1334,1199,1,0,0,0,1334,1207,1,0,0,0,1334,1215,1,0,0,0,1334,1219, + 1,0,0,0,1334,1223,1,0,0,0,1334,1232,1,0,0,0,1334,1235,1,0,0,0,1334, + 1245,1,0,0,0,1334,1250,1,0,0,0,1334,1261,1,0,0,0,1334,1270,1,0,0, + 0,1334,1277,1,0,0,0,1334,1279,1,0,0,0,1334,1286,1,0,0,0,1334,1308, + 1,0,0,0,1334,1320,1,0,0,0,1334,1327,1,0,0,0,1335,5,1,0,0,0,1336, + 1339,3,386,193,0,1337,1339,5,168,0,0,1338,1336,1,0,0,0,1338,1337, + 1,0,0,0,1339,7,1,0,0,0,1340,1341,3,378,189,0,1341,9,1,0,0,0,1342, + 1343,3,380,190,0,1343,11,1,0,0,0,1344,1345,5,59,0,0,1345,1513,5, + 252,0,0,1346,1347,5,96,0,0,1347,1513,5,252,0,0,1348,1350,5,129,0, + 0,1349,1351,5,252,0,0,1350,1349,1,0,0,0,1350,1351,1,0,0,0,1351,1513, + 1,0,0,0,1352,1354,5,248,0,0,1353,1355,5,252,0,0,1354,1353,1,0,0, + 0,1354,1355,1,0,0,0,1355,1513,1,0,0,0,1356,1357,5,272,0,0,1357,1513, + 5,129,0,0,1358,1359,5,272,0,0,1359,1361,5,252,0,0,1360,1362,5,129, + 0,0,1361,1360,1,0,0,0,1361,1362,1,0,0,0,1362,1513,1,0,0,0,1363,1364, + 5,272,0,0,1364,1513,5,227,0,0,1365,1366,5,272,0,0,1366,1513,5,253, + 0,0,1367,1368,5,272,0,0,1368,1369,5,62,0,0,1369,1513,5,253,0,0,1370, + 1371,5,107,0,0,1371,1513,5,292,0,0,1372,1373,5,139,0,0,1373,1513, + 5,292,0,0,1374,1375,5,272,0,0,1375,1513,5,54,0,0,1376,1377,5,272, + 0,0,1377,1378,5,59,0,0,1378,1513,5,292,0,0,1379,1380,5,272,0,0,1380, + 1513,5,312,0,0,1381,1382,5,272,0,0,1382,1513,5,143,0,0,1383,1384, + 5,272,0,0,1384,1513,5,171,0,0,1385,1386,5,59,0,0,1386,1513,5,142, + 0,0,1387,1388,5,96,0,0,1388,1513,5,142,0,0,1389,1390,5,11,0,0,1390, + 1513,5,142,0,0,1391,1392,5,170,0,0,1392,1513,5,292,0,0,1393,1394, + 5,170,0,0,1394,1513,5,72,0,0,1395,1396,5,325,0,0,1396,1513,5,292, + 0,0,1397,1398,5,325,0,0,1398,1513,5,72,0,0,1399,1400,5,59,0,0,1400, + 1401,5,297,0,0,1401,1513,5,174,0,0,1402,1403,5,96,0,0,1403,1404, + 5,297,0,0,1404,1513,5,174,0,0,1405,1406,5,11,0,0,1406,1407,5,292, + 0,0,1407,1408,3,84,42,0,1408,1409,5,196,0,0,1409,1410,5,45,0,0,1410, + 1513,1,0,0,0,1411,1412,5,11,0,0,1412,1413,5,292,0,0,1413,1414,3, + 84,42,0,1414,1415,5,45,0,0,1415,1416,5,31,0,0,1416,1513,1,0,0,0, + 1417,1418,5,11,0,0,1418,1419,5,292,0,0,1419,1420,3,84,42,0,1420, + 1421,5,196,0,0,1421,1422,5,278,0,0,1422,1513,1,0,0,0,1423,1424,5, + 11,0,0,1424,1425,5,292,0,0,1425,1426,3,84,42,0,1426,1427,5,274,0, + 0,1427,1428,5,31,0,0,1428,1513,1,0,0,0,1429,1430,5,11,0,0,1430,1431, + 5,292,0,0,1431,1432,3,84,42,0,1432,1433,5,196,0,0,1433,1434,5,274, + 0,0,1434,1513,1,0,0,0,1435,1436,5,11,0,0,1436,1437,5,292,0,0,1437, + 1438,3,84,42,0,1438,1439,5,196,0,0,1439,1440,5,282,0,0,1440,1441, + 5,20,0,0,1441,1442,5,89,0,0,1442,1513,1,0,0,0,1443,1444,5,11,0,0, + 1444,1445,5,292,0,0,1445,1446,3,84,42,0,1446,1447,5,268,0,0,1447, + 1448,5,274,0,0,1448,1449,5,169,0,0,1449,1513,1,0,0,0,1450,1451,5, + 11,0,0,1451,1452,5,292,0,0,1452,1453,3,84,42,0,1453,1454,5,103,0, + 0,1454,1455,5,216,0,0,1455,1513,1,0,0,0,1456,1457,5,11,0,0,1457, + 1458,5,292,0,0,1458,1459,3,84,42,0,1459,1460,5,18,0,0,1460,1461, + 5,216,0,0,1461,1513,1,0,0,0,1462,1463,5,11,0,0,1463,1464,5,292,0, + 0,1464,1465,3,84,42,0,1465,1466,5,319,0,0,1466,1467,5,216,0,0,1467, + 1513,1,0,0,0,1468,1469,5,11,0,0,1469,1470,5,292,0,0,1470,1471,3, + 84,42,0,1471,1472,5,309,0,0,1472,1513,1,0,0,0,1473,1474,5,11,0,0, + 1474,1475,5,292,0,0,1475,1477,3,84,42,0,1476,1478,3,32,16,0,1477, + 1476,1,0,0,0,1477,1478,1,0,0,0,1478,1479,1,0,0,0,1479,1480,5,53, + 0,0,1480,1513,1,0,0,0,1481,1482,5,11,0,0,1482,1483,5,292,0,0,1483, + 1485,3,84,42,0,1484,1486,3,32,16,0,1485,1484,1,0,0,0,1485,1486,1, + 0,0,0,1486,1487,1,0,0,0,1487,1488,5,56,0,0,1488,1513,1,0,0,0,1489, + 1490,5,11,0,0,1490,1491,5,292,0,0,1491,1493,3,84,42,0,1492,1494, + 3,32,16,0,1493,1492,1,0,0,0,1493,1494,1,0,0,0,1494,1495,1,0,0,0, + 1495,1496,5,268,0,0,1496,1497,5,115,0,0,1497,1513,1,0,0,0,1498,1499, + 5,11,0,0,1499,1500,5,292,0,0,1500,1502,3,84,42,0,1501,1503,3,32, + 16,0,1502,1501,1,0,0,0,1502,1503,1,0,0,0,1503,1504,1,0,0,0,1504, + 1505,5,243,0,0,1505,1506,5,50,0,0,1506,1513,1,0,0,0,1507,1508,5, + 280,0,0,1508,1513,5,311,0,0,1509,1513,5,52,0,0,1510,1513,5,254,0, + 0,1511,1513,5,88,0,0,1512,1344,1,0,0,0,1512,1346,1,0,0,0,1512,1348, + 1,0,0,0,1512,1352,1,0,0,0,1512,1356,1,0,0,0,1512,1358,1,0,0,0,1512, + 1363,1,0,0,0,1512,1365,1,0,0,0,1512,1367,1,0,0,0,1512,1370,1,0,0, + 0,1512,1372,1,0,0,0,1512,1374,1,0,0,0,1512,1376,1,0,0,0,1512,1379, + 1,0,0,0,1512,1381,1,0,0,0,1512,1383,1,0,0,0,1512,1385,1,0,0,0,1512, + 1387,1,0,0,0,1512,1389,1,0,0,0,1512,1391,1,0,0,0,1512,1393,1,0,0, + 0,1512,1395,1,0,0,0,1512,1397,1,0,0,0,1512,1399,1,0,0,0,1512,1402, + 1,0,0,0,1512,1405,1,0,0,0,1512,1411,1,0,0,0,1512,1417,1,0,0,0,1512, + 1423,1,0,0,0,1512,1429,1,0,0,0,1512,1435,1,0,0,0,1512,1443,1,0,0, + 0,1512,1450,1,0,0,0,1512,1456,1,0,0,0,1512,1462,1,0,0,0,1512,1468, + 1,0,0,0,1512,1473,1,0,0,0,1512,1481,1,0,0,0,1512,1489,1,0,0,0,1512, + 1498,1,0,0,0,1512,1507,1,0,0,0,1512,1509,1,0,0,0,1512,1510,1,0,0, + 0,1512,1511,1,0,0,0,1513,13,1,0,0,0,1514,1516,5,59,0,0,1515,1517, + 5,297,0,0,1516,1515,1,0,0,0,1516,1517,1,0,0,0,1517,1519,1,0,0,0, + 1518,1520,5,109,0,0,1519,1518,1,0,0,0,1519,1520,1,0,0,0,1520,1521, + 1,0,0,0,1521,1523,5,292,0,0,1522,1524,3,188,94,0,1523,1522,1,0,0, + 0,1523,1524,1,0,0,0,1524,1525,1,0,0,0,1525,1526,3,82,41,0,1526,15, + 1,0,0,0,1527,1528,5,59,0,0,1528,1530,5,207,0,0,1529,1527,1,0,0,0, + 1529,1530,1,0,0,0,1530,1531,1,0,0,0,1531,1532,5,243,0,0,1532,1533, + 5,292,0,0,1533,1534,3,82,41,0,1534,17,1,0,0,0,1535,1536,5,45,0,0, + 1536,1537,5,31,0,0,1537,1541,3,210,105,0,1538,1539,5,278,0,0,1539, + 1540,5,31,0,0,1540,1542,3,214,107,0,1541,1538,1,0,0,0,1541,1542, + 1,0,0,0,1542,1543,1,0,0,0,1543,1544,5,152,0,0,1544,1545,5,381,0, + 0,1545,1546,5,30,0,0,1546,19,1,0,0,0,1547,1548,5,274,0,0,1548,1549, + 5,31,0,0,1549,1550,3,210,105,0,1550,1553,5,202,0,0,1551,1554,3,64, + 32,0,1552,1554,3,66,33,0,1553,1551,1,0,0,0,1553,1552,1,0,0,0,1554, + 1558,1,0,0,0,1555,1556,5,282,0,0,1556,1557,5,20,0,0,1557,1559,5, + 89,0,0,1558,1555,1,0,0,0,1558,1559,1,0,0,0,1559,21,1,0,0,0,1560, + 1561,5,169,0,0,1561,1562,3,386,193,0,1562,23,1,0,0,0,1563,1564,5, + 51,0,0,1564,1565,3,386,193,0,1565,25,1,0,0,0,1566,1568,3,44,22,0, + 1567,1566,1,0,0,0,1567,1568,1,0,0,0,1568,1569,1,0,0,0,1569,1570, + 3,102,51,0,1570,1571,3,98,49,0,1571,27,1,0,0,0,1572,1573,5,147,0, + 0,1573,1575,5,215,0,0,1574,1576,5,292,0,0,1575,1574,1,0,0,0,1575, + 1576,1,0,0,0,1576,1577,1,0,0,0,1577,1582,3,84,42,0,1578,1580,3,32, + 16,0,1579,1581,3,188,94,0,1580,1579,1,0,0,0,1580,1581,1,0,0,0,1581, + 1583,1,0,0,0,1582,1578,1,0,0,0,1582,1583,1,0,0,0,1583,1590,1,0,0, + 0,1584,1585,5,31,0,0,1585,1591,5,188,0,0,1586,1587,5,2,0,0,1587, + 1588,3,92,46,0,1588,1589,5,3,0,0,1589,1591,1,0,0,0,1590,1584,1,0, + 0,0,1590,1586,1,0,0,0,1590,1591,1,0,0,0,1591,1649,1,0,0,0,1592,1593, + 5,147,0,0,1593,1595,5,152,0,0,1594,1596,5,292,0,0,1595,1594,1,0, + 0,0,1595,1596,1,0,0,0,1596,1597,1,0,0,0,1597,1599,3,84,42,0,1598, + 1600,3,32,16,0,1599,1598,1,0,0,0,1599,1600,1,0,0,0,1600,1602,1,0, + 0,0,1601,1603,3,188,94,0,1602,1601,1,0,0,0,1602,1603,1,0,0,0,1603, + 1610,1,0,0,0,1604,1605,5,31,0,0,1605,1611,5,188,0,0,1606,1607,5, + 2,0,0,1607,1608,3,92,46,0,1608,1609,5,3,0,0,1609,1611,1,0,0,0,1610, + 1604,1,0,0,0,1610,1606,1,0,0,0,1610,1611,1,0,0,0,1611,1649,1,0,0, + 0,1612,1613,5,147,0,0,1613,1615,5,152,0,0,1614,1616,5,292,0,0,1615, + 1614,1,0,0,0,1615,1616,1,0,0,0,1616,1617,1,0,0,0,1617,1618,3,84, + 42,0,1618,1619,5,243,0,0,1619,1620,3,136,68,0,1620,1649,1,0,0,0, + 1621,1622,5,147,0,0,1622,1624,5,215,0,0,1623,1625,5,168,0,0,1624, + 1623,1,0,0,0,1624,1625,1,0,0,0,1625,1626,1,0,0,0,1626,1627,5,90, + 0,0,1627,1629,3,386,193,0,1628,1630,3,240,120,0,1629,1628,1,0,0, + 0,1629,1630,1,0,0,0,1630,1632,1,0,0,0,1631,1633,3,68,34,0,1632,1631, + 1,0,0,0,1632,1633,1,0,0,0,1633,1649,1,0,0,0,1634,1635,5,147,0,0, + 1635,1637,5,215,0,0,1636,1638,5,168,0,0,1637,1636,1,0,0,0,1637,1638, + 1,0,0,0,1638,1639,1,0,0,0,1639,1641,5,90,0,0,1640,1642,3,386,193, + 0,1641,1640,1,0,0,0,1641,1642,1,0,0,0,1642,1643,1,0,0,0,1643,1646, + 3,48,24,0,1644,1645,5,206,0,0,1645,1647,3,52,26,0,1646,1644,1,0, + 0,0,1646,1647,1,0,0,0,1647,1649,1,0,0,0,1648,1572,1,0,0,0,1648,1592, + 1,0,0,0,1648,1612,1,0,0,0,1648,1621,1,0,0,0,1648,1634,1,0,0,0,1649, + 29,1,0,0,0,1650,1652,3,32,16,0,1651,1653,3,22,11,0,1652,1651,1,0, + 0,0,1652,1653,1,0,0,0,1653,31,1,0,0,0,1654,1655,5,216,0,0,1655,1656, + 5,2,0,0,1656,1661,3,34,17,0,1657,1658,5,4,0,0,1658,1660,3,34,17, + 0,1659,1657,1,0,0,0,1660,1663,1,0,0,0,1661,1659,1,0,0,0,1661,1662, + 1,0,0,0,1662,1664,1,0,0,0,1663,1661,1,0,0,0,1664,1665,5,3,0,0,1665, + 33,1,0,0,0,1666,1669,3,374,187,0,1667,1668,5,351,0,0,1668,1670,3, + 286,143,0,1669,1667,1,0,0,0,1669,1670,1,0,0,0,1670,1676,1,0,0,0, + 1671,1672,3,374,187,0,1672,1673,5,351,0,0,1673,1674,5,82,0,0,1674, + 1676,1,0,0,0,1675,1666,1,0,0,0,1675,1671,1,0,0,0,1676,35,1,0,0,0, + 1677,1678,7,11,0,0,1678,37,1,0,0,0,1679,1680,7,12,0,0,1680,39,1, + 0,0,0,1681,1687,3,96,48,0,1682,1687,3,386,193,0,1683,1687,3,288, + 144,0,1684,1687,3,290,145,0,1685,1687,3,292,146,0,1686,1681,1,0, + 0,0,1686,1682,1,0,0,0,1686,1683,1,0,0,0,1686,1684,1,0,0,0,1686,1685, + 1,0,0,0,1687,41,1,0,0,0,1688,1693,3,374,187,0,1689,1690,5,5,0,0, + 1690,1692,3,374,187,0,1691,1689,1,0,0,0,1692,1695,1,0,0,0,1693,1691, + 1,0,0,0,1693,1694,1,0,0,0,1694,43,1,0,0,0,1695,1693,1,0,0,0,1696, + 1697,5,345,0,0,1697,1702,3,46,23,0,1698,1699,5,4,0,0,1699,1701,3, + 46,23,0,1700,1698,1,0,0,0,1701,1704,1,0,0,0,1702,1700,1,0,0,0,1702, + 1703,1,0,0,0,1703,45,1,0,0,0,1704,1702,1,0,0,0,1705,1707,3,370,185, + 0,1706,1708,3,210,105,0,1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708, + 1710,1,0,0,0,1709,1711,5,20,0,0,1710,1709,1,0,0,0,1710,1711,1,0, + 0,0,1711,1712,1,0,0,0,1712,1713,5,2,0,0,1713,1714,3,26,13,0,1714, + 1715,5,3,0,0,1715,47,1,0,0,0,1716,1717,5,331,0,0,1717,1718,3,244, + 122,0,1718,49,1,0,0,0,1719,1720,5,206,0,0,1720,1733,3,60,30,0,1721, + 1722,5,217,0,0,1722,1723,5,31,0,0,1723,1733,3,258,129,0,1724,1733, + 3,20,10,0,1725,1733,3,18,9,0,1726,1733,3,240,120,0,1727,1733,3,68, + 34,0,1728,1733,3,22,11,0,1729,1733,3,24,12,0,1730,1731,5,296,0,0, + 1731,1733,3,52,26,0,1732,1719,1,0,0,0,1732,1721,1,0,0,0,1732,1724, + 1,0,0,0,1732,1725,1,0,0,0,1732,1726,1,0,0,0,1732,1727,1,0,0,0,1732, + 1728,1,0,0,0,1732,1729,1,0,0,0,1732,1730,1,0,0,0,1733,1736,1,0,0, + 0,1734,1732,1,0,0,0,1734,1735,1,0,0,0,1735,51,1,0,0,0,1736,1734, + 1,0,0,0,1737,1738,5,2,0,0,1738,1743,3,54,27,0,1739,1740,5,4,0,0, + 1740,1742,3,54,27,0,1741,1739,1,0,0,0,1742,1745,1,0,0,0,1743,1741, + 1,0,0,0,1743,1744,1,0,0,0,1744,1746,1,0,0,0,1745,1743,1,0,0,0,1746, + 1747,5,3,0,0,1747,53,1,0,0,0,1748,1753,3,56,28,0,1749,1751,5,351, + 0,0,1750,1749,1,0,0,0,1750,1751,1,0,0,0,1751,1752,1,0,0,0,1752,1754, + 3,58,29,0,1753,1750,1,0,0,0,1753,1754,1,0,0,0,1754,55,1,0,0,0,1755, + 1760,3,374,187,0,1756,1757,5,5,0,0,1757,1759,3,374,187,0,1758,1756, + 1,0,0,0,1759,1762,1,0,0,0,1760,1758,1,0,0,0,1760,1761,1,0,0,0,1761, + 1765,1,0,0,0,1762,1760,1,0,0,0,1763,1765,3,386,193,0,1764,1755,1, + 0,0,0,1764,1763,1,0,0,0,1765,57,1,0,0,0,1766,1771,5,381,0,0,1767, + 1771,5,383,0,0,1768,1771,3,294,147,0,1769,1771,3,386,193,0,1770, + 1766,1,0,0,0,1770,1767,1,0,0,0,1770,1768,1,0,0,0,1770,1769,1,0,0, + 0,1771,59,1,0,0,0,1772,1773,5,2,0,0,1773,1778,3,62,31,0,1774,1775, + 5,4,0,0,1775,1777,3,62,31,0,1776,1774,1,0,0,0,1777,1780,1,0,0,0, + 1778,1776,1,0,0,0,1778,1779,1,0,0,0,1779,1781,1,0,0,0,1780,1778, + 1,0,0,0,1781,1782,5,3,0,0,1782,61,1,0,0,0,1783,1788,3,56,28,0,1784, + 1786,5,351,0,0,1785,1784,1,0,0,0,1785,1786,1,0,0,0,1786,1787,1,0, + 0,0,1787,1789,3,266,133,0,1788,1785,1,0,0,0,1788,1789,1,0,0,0,1789, + 63,1,0,0,0,1790,1791,5,2,0,0,1791,1796,3,286,143,0,1792,1793,5,4, + 0,0,1793,1795,3,286,143,0,1794,1792,1,0,0,0,1795,1798,1,0,0,0,1796, + 1794,1,0,0,0,1796,1797,1,0,0,0,1797,1799,1,0,0,0,1798,1796,1,0,0, + 0,1799,1800,5,3,0,0,1800,65,1,0,0,0,1801,1802,5,2,0,0,1802,1807, + 3,64,32,0,1803,1804,5,4,0,0,1804,1806,3,64,32,0,1805,1803,1,0,0, + 0,1806,1809,1,0,0,0,1807,1805,1,0,0,0,1807,1808,1,0,0,0,1808,1810, + 1,0,0,0,1809,1807,1,0,0,0,1810,1811,5,3,0,0,1811,67,1,0,0,0,1812, + 1813,5,282,0,0,1813,1814,5,20,0,0,1814,1819,3,70,35,0,1815,1816, + 5,282,0,0,1816,1817,5,31,0,0,1817,1819,3,72,36,0,1818,1812,1,0,0, + 0,1818,1815,1,0,0,0,1819,69,1,0,0,0,1820,1821,5,146,0,0,1821,1822, + 3,386,193,0,1822,1823,5,211,0,0,1823,1824,3,386,193,0,1824,1827, + 1,0,0,0,1825,1827,3,374,187,0,1826,1820,1,0,0,0,1826,1825,1,0,0, + 0,1827,71,1,0,0,0,1828,1832,3,386,193,0,1829,1830,5,345,0,0,1830, + 1831,5,266,0,0,1831,1833,3,52,26,0,1832,1829,1,0,0,0,1832,1833,1, + 0,0,0,1833,73,1,0,0,0,1834,1835,3,374,187,0,1835,1836,3,386,193, + 0,1836,75,1,0,0,0,1837,1838,3,28,14,0,1838,1839,3,26,13,0,1839,1894, + 1,0,0,0,1840,1842,3,144,72,0,1841,1843,3,100,50,0,1842,1841,1,0, + 0,0,1843,1844,1,0,0,0,1844,1842,1,0,0,0,1844,1845,1,0,0,0,1845,1894, + 1,0,0,0,1846,1847,5,84,0,0,1847,1848,5,123,0,0,1848,1849,3,84,42, + 0,1849,1851,3,238,119,0,1850,1852,3,136,68,0,1851,1850,1,0,0,0,1851, + 1852,1,0,0,0,1852,1894,1,0,0,0,1853,1854,5,328,0,0,1854,1855,3,84, + 42,0,1855,1856,3,238,119,0,1856,1858,3,118,59,0,1857,1859,3,136, + 68,0,1858,1857,1,0,0,0,1858,1859,1,0,0,0,1859,1894,1,0,0,0,1860, + 1861,5,178,0,0,1861,1862,5,152,0,0,1862,1863,3,84,42,0,1863,1864, + 3,238,119,0,1864,1870,5,331,0,0,1865,1871,3,96,48,0,1866,1867,5, + 2,0,0,1867,1868,3,26,13,0,1868,1869,5,3,0,0,1869,1871,1,0,0,0,1870, + 1865,1,0,0,0,1870,1866,1,0,0,0,1871,1872,1,0,0,0,1872,1873,3,238, + 119,0,1873,1874,5,202,0,0,1874,1878,3,274,137,0,1875,1877,3,120, + 60,0,1876,1875,1,0,0,0,1877,1880,1,0,0,0,1878,1876,1,0,0,0,1878, + 1879,1,0,0,0,1879,1884,1,0,0,0,1880,1878,1,0,0,0,1881,1883,3,122, + 61,0,1882,1881,1,0,0,0,1883,1886,1,0,0,0,1884,1882,1,0,0,0,1884, + 1885,1,0,0,0,1885,1890,1,0,0,0,1886,1884,1,0,0,0,1887,1889,3,124, + 62,0,1888,1887,1,0,0,0,1889,1892,1,0,0,0,1890,1888,1,0,0,0,1890, + 1891,1,0,0,0,1891,1894,1,0,0,0,1892,1890,1,0,0,0,1893,1837,1,0,0, + 0,1893,1840,1,0,0,0,1893,1846,1,0,0,0,1893,1853,1,0,0,0,1893,1860, + 1,0,0,0,1894,77,1,0,0,0,1895,1896,3,96,48,0,1896,79,1,0,0,0,1897, + 1898,3,96,48,0,1898,81,1,0,0,0,1899,1900,3,250,125,0,1900,83,1,0, + 0,0,1901,1902,3,250,125,0,1902,85,1,0,0,0,1903,1904,3,252,126,0, + 1904,87,1,0,0,0,1905,1906,3,252,126,0,1906,89,1,0,0,0,1907,1910, + 3,244,122,0,1908,1910,4,45,0,0,1909,1907,1,0,0,0,1909,1908,1,0,0, + 0,1910,91,1,0,0,0,1911,1916,3,90,45,0,1912,1913,5,4,0,0,1913,1915, + 3,90,45,0,1914,1912,1,0,0,0,1915,1918,1,0,0,0,1916,1914,1,0,0,0, + 1916,1917,1,0,0,0,1917,93,1,0,0,0,1918,1916,1,0,0,0,1919,1920,3, + 370,185,0,1920,95,1,0,0,0,1921,1922,5,136,0,0,1922,1923,5,2,0,0, + 1923,1924,3,266,133,0,1924,1925,5,3,0,0,1925,1928,1,0,0,0,1926,1928, + 3,244,122,0,1927,1921,1,0,0,0,1927,1926,1,0,0,0,1928,97,1,0,0,0, + 1929,1930,5,208,0,0,1930,1931,5,31,0,0,1931,1936,3,106,53,0,1932, + 1933,5,4,0,0,1933,1935,3,106,53,0,1934,1932,1,0,0,0,1935,1938,1, + 0,0,0,1936,1934,1,0,0,0,1936,1937,1,0,0,0,1937,1940,1,0,0,0,1938, + 1936,1,0,0,0,1939,1929,1,0,0,0,1939,1940,1,0,0,0,1940,1951,1,0,0, + 0,1941,1942,5,44,0,0,1942,1943,5,31,0,0,1943,1948,3,266,133,0,1944, + 1945,5,4,0,0,1945,1947,3,266,133,0,1946,1944,1,0,0,0,1947,1950,1, + 0,0,0,1948,1946,1,0,0,0,1948,1949,1,0,0,0,1949,1952,1,0,0,0,1950, + 1948,1,0,0,0,1951,1941,1,0,0,0,1951,1952,1,0,0,0,1952,1963,1,0,0, + 0,1953,1954,5,93,0,0,1954,1955,5,31,0,0,1955,1960,3,266,133,0,1956, + 1957,5,4,0,0,1957,1959,3,266,133,0,1958,1956,1,0,0,0,1959,1962,1, + 0,0,0,1960,1958,1,0,0,0,1960,1961,1,0,0,0,1961,1964,1,0,0,0,1962, + 1960,1,0,0,0,1963,1953,1,0,0,0,1963,1964,1,0,0,0,1964,1975,1,0,0, + 0,1965,1966,5,277,0,0,1966,1967,5,31,0,0,1967,1972,3,106,53,0,1968, + 1969,5,4,0,0,1969,1971,3,106,53,0,1970,1968,1,0,0,0,1971,1974,1, + 0,0,0,1972,1970,1,0,0,0,1972,1973,1,0,0,0,1973,1976,1,0,0,0,1974, + 1972,1,0,0,0,1975,1965,1,0,0,0,1975,1976,1,0,0,0,1976,1978,1,0,0, + 0,1977,1979,3,350,175,0,1978,1977,1,0,0,0,1978,1979,1,0,0,0,1979, + 1985,1,0,0,0,1980,1983,5,164,0,0,1981,1984,5,10,0,0,1982,1984,3, + 266,133,0,1983,1981,1,0,0,0,1983,1982,1,0,0,0,1984,1986,1,0,0,0, + 1985,1980,1,0,0,0,1985,1986,1,0,0,0,1986,1989,1,0,0,0,1987,1988, + 5,201,0,0,1988,1990,3,266,133,0,1989,1987,1,0,0,0,1989,1990,1,0, + 0,0,1990,99,1,0,0,0,1991,1992,3,28,14,0,1992,1993,3,110,55,0,1993, + 101,1,0,0,0,1994,1995,6,51,-1,0,1995,1996,3,104,52,0,1996,2017,1, + 0,0,0,1997,1998,10,3,0,0,1998,2000,7,13,0,0,1999,2001,3,194,97,0, + 2000,1999,1,0,0,0,2000,2001,1,0,0,0,2001,2002,1,0,0,0,2002,2016, + 3,102,51,4,2003,2004,10,2,0,0,2004,2006,5,148,0,0,2005,2007,3,194, + 97,0,2006,2005,1,0,0,0,2006,2007,1,0,0,0,2007,2008,1,0,0,0,2008, + 2016,3,102,51,3,2009,2010,10,1,0,0,2010,2012,7,14,0,0,2011,2013, + 3,194,97,0,2012,2011,1,0,0,0,2012,2013,1,0,0,0,2013,2014,1,0,0,0, + 2014,2016,3,102,51,2,2015,1997,1,0,0,0,2015,2003,1,0,0,0,2015,2009, + 1,0,0,0,2016,2019,1,0,0,0,2017,2015,1,0,0,0,2017,2018,1,0,0,0,2018, + 103,1,0,0,0,2019,2017,1,0,0,0,2020,2030,3,112,56,0,2021,2030,3,108, + 54,0,2022,2023,5,292,0,0,2023,2030,3,84,42,0,2024,2030,3,224,112, + 0,2025,2026,5,2,0,0,2026,2027,3,26,13,0,2027,2028,5,3,0,0,2028,2030, + 1,0,0,0,2029,2020,1,0,0,0,2029,2021,1,0,0,0,2029,2022,1,0,0,0,2029, + 2024,1,0,0,0,2029,2025,1,0,0,0,2030,105,1,0,0,0,2031,2034,3,90,45, + 0,2032,2034,3,266,133,0,2033,2031,1,0,0,0,2033,2032,1,0,0,0,2034, + 2036,1,0,0,0,2035,2037,7,15,0,0,2036,2035,1,0,0,0,2036,2037,1,0, + 0,0,2037,2040,1,0,0,0,2038,2039,5,198,0,0,2039,2041,7,16,0,0,2040, + 2038,1,0,0,0,2040,2041,1,0,0,0,2041,107,1,0,0,0,2042,2044,3,144, + 72,0,2043,2045,3,110,55,0,2044,2043,1,0,0,0,2045,2046,1,0,0,0,2046, + 2044,1,0,0,0,2046,2047,1,0,0,0,2047,109,1,0,0,0,2048,2050,3,114, + 57,0,2049,2051,3,136,68,0,2050,2049,1,0,0,0,2050,2051,1,0,0,0,2051, + 2052,1,0,0,0,2052,2053,3,98,49,0,2053,2076,1,0,0,0,2054,2058,3,116, + 58,0,2055,2057,3,192,96,0,2056,2055,1,0,0,0,2057,2060,1,0,0,0,2058, + 2056,1,0,0,0,2058,2059,1,0,0,0,2059,2062,1,0,0,0,2060,2058,1,0,0, + 0,2061,2063,3,136,68,0,2062,2061,1,0,0,0,2062,2063,1,0,0,0,2063, + 2065,1,0,0,0,2064,2066,3,150,75,0,2065,2064,1,0,0,0,2065,2066,1, + 0,0,0,2066,2068,1,0,0,0,2067,2069,3,138,69,0,2068,2067,1,0,0,0,2068, + 2069,1,0,0,0,2069,2071,1,0,0,0,2070,2072,3,350,175,0,2071,2070,1, + 0,0,0,2071,2072,1,0,0,0,2072,2073,1,0,0,0,2073,2074,3,98,49,0,2074, + 2076,1,0,0,0,2075,2048,1,0,0,0,2075,2054,1,0,0,0,2076,111,1,0,0, + 0,2077,2079,3,114,57,0,2078,2080,3,144,72,0,2079,2078,1,0,0,0,2079, + 2080,1,0,0,0,2080,2084,1,0,0,0,2081,2083,3,192,96,0,2082,2081,1, + 0,0,0,2083,2086,1,0,0,0,2084,2082,1,0,0,0,2084,2085,1,0,0,0,2085, + 2088,1,0,0,0,2086,2084,1,0,0,0,2087,2089,3,136,68,0,2088,2087,1, + 0,0,0,2088,2089,1,0,0,0,2089,2091,1,0,0,0,2090,2092,3,150,75,0,2091, + 2090,1,0,0,0,2091,2092,1,0,0,0,2092,2094,1,0,0,0,2093,2095,3,138, + 69,0,2094,2093,1,0,0,0,2094,2095,1,0,0,0,2095,2097,1,0,0,0,2096, + 2098,3,350,175,0,2097,2096,1,0,0,0,2097,2098,1,0,0,0,2098,2122,1, + 0,0,0,2099,2101,3,116,58,0,2100,2102,3,144,72,0,2101,2100,1,0,0, + 0,2101,2102,1,0,0,0,2102,2106,1,0,0,0,2103,2105,3,192,96,0,2104, + 2103,1,0,0,0,2105,2108,1,0,0,0,2106,2104,1,0,0,0,2106,2107,1,0,0, + 0,2107,2110,1,0,0,0,2108,2106,1,0,0,0,2109,2111,3,136,68,0,2110, + 2109,1,0,0,0,2110,2111,1,0,0,0,2111,2113,1,0,0,0,2112,2114,3,150, + 75,0,2113,2112,1,0,0,0,2113,2114,1,0,0,0,2114,2116,1,0,0,0,2115, + 2117,3,138,69,0,2116,2115,1,0,0,0,2116,2117,1,0,0,0,2117,2119,1, + 0,0,0,2118,2120,3,350,175,0,2119,2118,1,0,0,0,2119,2120,1,0,0,0, + 2120,2122,1,0,0,0,2121,2077,1,0,0,0,2121,2099,1,0,0,0,2122,113,1, + 0,0,0,2123,2124,5,262,0,0,2124,2125,5,313,0,0,2125,2127,5,2,0,0, + 2126,2128,3,194,97,0,2127,2126,1,0,0,0,2127,2128,1,0,0,0,2128,2129, + 1,0,0,0,2129,2130,3,272,136,0,2130,2131,5,3,0,0,2131,2143,1,0,0, + 0,2132,2134,5,176,0,0,2133,2135,3,194,97,0,2134,2133,1,0,0,0,2134, + 2135,1,0,0,0,2135,2136,1,0,0,0,2136,2143,3,272,136,0,2137,2139,5, + 237,0,0,2138,2140,3,194,97,0,2139,2138,1,0,0,0,2139,2140,1,0,0,0, + 2140,2141,1,0,0,0,2141,2143,3,272,136,0,2142,2123,1,0,0,0,2142,2132, + 1,0,0,0,2142,2137,1,0,0,0,2143,2145,1,0,0,0,2144,2146,3,240,120, + 0,2145,2144,1,0,0,0,2145,2146,1,0,0,0,2146,2149,1,0,0,0,2147,2148, + 5,235,0,0,2148,2150,3,386,193,0,2149,2147,1,0,0,0,2149,2150,1,0, + 0,0,2150,2151,1,0,0,0,2151,2152,5,331,0,0,2152,2165,3,386,193,0, + 2153,2163,5,20,0,0,2154,2164,3,212,106,0,2155,2164,3,332,166,0,2156, + 2159,5,2,0,0,2157,2160,3,212,106,0,2158,2160,3,332,166,0,2159,2157, + 1,0,0,0,2159,2158,1,0,0,0,2160,2161,1,0,0,0,2161,2162,5,3,0,0,2162, + 2164,1,0,0,0,2163,2154,1,0,0,0,2163,2155,1,0,0,0,2163,2156,1,0,0, + 0,2164,2166,1,0,0,0,2165,2153,1,0,0,0,2165,2166,1,0,0,0,2166,2168, + 1,0,0,0,2167,2169,3,240,120,0,2168,2167,1,0,0,0,2168,2169,1,0,0, + 0,2169,2172,1,0,0,0,2170,2171,5,234,0,0,2171,2173,3,386,193,0,2172, + 2170,1,0,0,0,2172,2173,1,0,0,0,2173,115,1,0,0,0,2174,2178,5,262, + 0,0,2175,2177,3,140,70,0,2176,2175,1,0,0,0,2177,2180,1,0,0,0,2178, + 2176,1,0,0,0,2178,2179,1,0,0,0,2179,2182,1,0,0,0,2180,2178,1,0,0, + 0,2181,2183,3,194,97,0,2182,2181,1,0,0,0,2182,2183,1,0,0,0,2183, + 2184,1,0,0,0,2184,2185,3,256,128,0,2185,117,1,0,0,0,2186,2187,5, + 268,0,0,2187,2188,3,132,66,0,2188,119,1,0,0,0,2189,2190,5,342,0, + 0,2190,2193,5,177,0,0,2191,2192,5,14,0,0,2192,2194,3,274,137,0,2193, + 2191,1,0,0,0,2193,2194,1,0,0,0,2194,2195,1,0,0,0,2195,2196,5,299, + 0,0,2196,2197,3,126,63,0,2197,121,1,0,0,0,2198,2199,5,342,0,0,2199, + 2200,5,196,0,0,2200,2203,5,177,0,0,2201,2202,5,31,0,0,2202,2204, + 5,295,0,0,2203,2201,1,0,0,0,2203,2204,1,0,0,0,2204,2207,1,0,0,0, + 2205,2206,5,14,0,0,2206,2208,3,274,137,0,2207,2205,1,0,0,0,2207, + 2208,1,0,0,0,2208,2209,1,0,0,0,2209,2210,5,299,0,0,2210,2211,3,128, + 64,0,2211,123,1,0,0,0,2212,2213,5,342,0,0,2213,2214,5,196,0,0,2214, + 2215,5,177,0,0,2215,2216,5,31,0,0,2216,2219,5,279,0,0,2217,2218, + 5,14,0,0,2218,2220,3,274,137,0,2219,2217,1,0,0,0,2219,2220,1,0,0, + 0,2220,2221,1,0,0,0,2221,2222,5,299,0,0,2222,2223,3,130,65,0,2223, + 125,1,0,0,0,2224,2232,5,84,0,0,2225,2226,5,328,0,0,2226,2227,5,268, + 0,0,2227,2232,5,362,0,0,2228,2229,5,328,0,0,2229,2230,5,268,0,0, + 2230,2232,3,132,66,0,2231,2224,1,0,0,0,2231,2225,1,0,0,0,2231,2228, + 1,0,0,0,2232,127,1,0,0,0,2233,2234,5,147,0,0,2234,2252,5,362,0,0, + 2235,2236,5,147,0,0,2236,2237,5,2,0,0,2237,2238,3,242,121,0,2238, + 2239,5,3,0,0,2239,2240,5,332,0,0,2240,2241,5,2,0,0,2241,2246,3,266, + 133,0,2242,2243,5,4,0,0,2243,2245,3,266,133,0,2244,2242,1,0,0,0, + 2245,2248,1,0,0,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2249, + 1,0,0,0,2248,2246,1,0,0,0,2249,2250,5,3,0,0,2250,2252,1,0,0,0,2251, + 2233,1,0,0,0,2251,2235,1,0,0,0,2252,129,1,0,0,0,2253,2258,5,84,0, + 0,2254,2255,5,328,0,0,2255,2256,5,268,0,0,2256,2258,3,132,66,0,2257, + 2253,1,0,0,0,2257,2254,1,0,0,0,2258,131,1,0,0,0,2259,2264,3,134, + 67,0,2260,2261,5,4,0,0,2261,2263,3,134,67,0,2262,2260,1,0,0,0,2263, + 2266,1,0,0,0,2264,2262,1,0,0,0,2264,2265,1,0,0,0,2265,133,1,0,0, + 0,2266,2264,1,0,0,0,2267,2268,3,244,122,0,2268,2269,5,351,0,0,2269, + 2270,3,266,133,0,2270,135,1,0,0,0,2271,2272,5,343,0,0,2272,2273, + 3,274,137,0,2273,137,1,0,0,0,2274,2275,5,132,0,0,2275,2276,3,274, + 137,0,2276,139,1,0,0,0,2277,2278,5,373,0,0,2278,2285,3,142,71,0, + 2279,2281,5,4,0,0,2280,2279,1,0,0,0,2280,2281,1,0,0,0,2281,2282, + 1,0,0,0,2282,2284,3,142,71,0,2283,2280,1,0,0,0,2284,2287,1,0,0,0, + 2285,2283,1,0,0,0,2285,2286,1,0,0,0,2286,2288,1,0,0,0,2287,2285, + 1,0,0,0,2288,2289,5,374,0,0,2289,141,1,0,0,0,2290,2304,3,374,187, + 0,2291,2292,3,374,187,0,2292,2293,5,2,0,0,2293,2298,3,282,141,0, + 2294,2295,5,4,0,0,2295,2297,3,282,141,0,2296,2294,1,0,0,0,2297,2300, + 1,0,0,0,2298,2296,1,0,0,0,2298,2299,1,0,0,0,2299,2301,1,0,0,0,2300, + 2298,1,0,0,0,2301,2302,5,3,0,0,2302,2304,1,0,0,0,2303,2290,1,0,0, + 0,2303,2291,1,0,0,0,2304,143,1,0,0,0,2305,2306,5,123,0,0,2306,2311, + 3,196,98,0,2307,2308,5,4,0,0,2308,2310,3,196,98,0,2309,2307,1,0, + 0,0,2310,2313,1,0,0,0,2311,2309,1,0,0,0,2311,2312,1,0,0,0,2312,2317, + 1,0,0,0,2313,2311,1,0,0,0,2314,2316,3,192,96,0,2315,2314,1,0,0,0, + 2316,2319,1,0,0,0,2317,2315,1,0,0,0,2317,2318,1,0,0,0,2318,2321, + 1,0,0,0,2319,2317,1,0,0,0,2320,2322,3,160,80,0,2321,2320,1,0,0,0, + 2321,2322,1,0,0,0,2322,2324,1,0,0,0,2323,2325,3,166,83,0,2324,2323, + 1,0,0,0,2324,2325,1,0,0,0,2325,145,1,0,0,0,2326,2327,7,17,0,0,2327, + 147,1,0,0,0,2328,2330,5,119,0,0,2329,2328,1,0,0,0,2329,2330,1,0, + 0,0,2330,2331,1,0,0,0,2331,2332,7,18,0,0,2332,2333,5,20,0,0,2333, + 2334,5,200,0,0,2334,2343,3,390,195,0,2335,2337,5,119,0,0,2336,2335, + 1,0,0,0,2336,2337,1,0,0,0,2337,2338,1,0,0,0,2338,2339,7,19,0,0,2339, + 2340,5,20,0,0,2340,2341,5,200,0,0,2341,2343,3,278,139,0,2342,2329, + 1,0,0,0,2342,2336,1,0,0,0,2343,149,1,0,0,0,2344,2345,5,130,0,0,2345, + 2346,5,31,0,0,2346,2351,3,152,76,0,2347,2348,5,4,0,0,2348,2350,3, + 152,76,0,2349,2347,1,0,0,0,2350,2353,1,0,0,0,2351,2349,1,0,0,0,2351, + 2352,1,0,0,0,2352,2384,1,0,0,0,2353,2351,1,0,0,0,2354,2355,5,130, + 0,0,2355,2356,5,31,0,0,2356,2361,3,266,133,0,2357,2358,5,4,0,0,2358, + 2360,3,266,133,0,2359,2357,1,0,0,0,2360,2363,1,0,0,0,2361,2359,1, + 0,0,0,2361,2362,1,0,0,0,2362,2381,1,0,0,0,2363,2361,1,0,0,0,2364, + 2365,5,345,0,0,2365,2382,5,255,0,0,2366,2367,5,345,0,0,2367,2382, + 5,61,0,0,2368,2369,5,131,0,0,2369,2370,5,270,0,0,2370,2371,5,2,0, + 0,2371,2376,3,158,79,0,2372,2373,5,4,0,0,2373,2375,3,158,79,0,2374, + 2372,1,0,0,0,2375,2378,1,0,0,0,2376,2374,1,0,0,0,2376,2377,1,0,0, + 0,2377,2379,1,0,0,0,2378,2376,1,0,0,0,2379,2380,5,3,0,0,2380,2382, + 1,0,0,0,2381,2364,1,0,0,0,2381,2366,1,0,0,0,2381,2368,1,0,0,0,2381, + 2382,1,0,0,0,2382,2384,1,0,0,0,2383,2344,1,0,0,0,2383,2354,1,0,0, + 0,2384,151,1,0,0,0,2385,2389,3,90,45,0,2386,2389,3,154,77,0,2387, + 2389,3,266,133,0,2388,2385,1,0,0,0,2388,2386,1,0,0,0,2388,2387,1, + 0,0,0,2389,153,1,0,0,0,2390,2391,7,20,0,0,2391,2392,5,2,0,0,2392, + 2397,3,158,79,0,2393,2394,5,4,0,0,2394,2396,3,158,79,0,2395,2393, + 1,0,0,0,2396,2399,1,0,0,0,2397,2395,1,0,0,0,2397,2398,1,0,0,0,2398, + 2400,1,0,0,0,2399,2397,1,0,0,0,2400,2401,5,3,0,0,2401,2416,1,0,0, + 0,2402,2403,5,131,0,0,2403,2404,5,270,0,0,2404,2405,5,2,0,0,2405, + 2410,3,156,78,0,2406,2407,5,4,0,0,2407,2409,3,156,78,0,2408,2406, + 1,0,0,0,2409,2412,1,0,0,0,2410,2408,1,0,0,0,2410,2411,1,0,0,0,2411, + 2413,1,0,0,0,2412,2410,1,0,0,0,2413,2414,5,3,0,0,2414,2416,1,0,0, + 0,2415,2390,1,0,0,0,2415,2402,1,0,0,0,2416,155,1,0,0,0,2417,2420, + 3,154,77,0,2418,2420,3,158,79,0,2419,2417,1,0,0,0,2419,2418,1,0, + 0,0,2420,157,1,0,0,0,2421,2442,3,90,45,0,2422,2442,3,266,133,0,2423, + 2438,5,2,0,0,2424,2427,3,90,45,0,2425,2427,3,266,133,0,2426,2424, + 1,0,0,0,2426,2425,1,0,0,0,2427,2435,1,0,0,0,2428,2431,5,4,0,0,2429, + 2432,3,90,45,0,2430,2432,3,266,133,0,2431,2429,1,0,0,0,2431,2430, + 1,0,0,0,2432,2434,1,0,0,0,2433,2428,1,0,0,0,2434,2437,1,0,0,0,2435, + 2433,1,0,0,0,2435,2436,1,0,0,0,2436,2439,1,0,0,0,2437,2435,1,0,0, + 0,2438,2426,1,0,0,0,2438,2439,1,0,0,0,2439,2440,1,0,0,0,2440,2442, + 5,3,0,0,2441,2421,1,0,0,0,2441,2422,1,0,0,0,2441,2423,1,0,0,0,2442, + 159,1,0,0,0,2443,2444,5,222,0,0,2444,2445,5,2,0,0,2445,2446,3,256, + 128,0,2446,2447,5,119,0,0,2447,2448,3,162,81,0,2448,2449,5,140,0, + 0,2449,2450,5,2,0,0,2450,2455,3,164,82,0,2451,2452,5,4,0,0,2452, + 2454,3,164,82,0,2453,2451,1,0,0,0,2454,2457,1,0,0,0,2455,2453,1, + 0,0,0,2455,2456,1,0,0,0,2456,2458,1,0,0,0,2457,2455,1,0,0,0,2458, + 2459,5,3,0,0,2459,2460,5,3,0,0,2460,161,1,0,0,0,2461,2474,3,374, + 187,0,2462,2463,5,2,0,0,2463,2468,3,374,187,0,2464,2465,5,4,0,0, + 2465,2467,3,374,187,0,2466,2464,1,0,0,0,2467,2470,1,0,0,0,2468,2466, + 1,0,0,0,2468,2469,1,0,0,0,2469,2471,1,0,0,0,2470,2468,1,0,0,0,2471, + 2472,5,3,0,0,2472,2474,1,0,0,0,2473,2461,1,0,0,0,2473,2462,1,0,0, + 0,2474,163,1,0,0,0,2475,2480,3,266,133,0,2476,2478,5,20,0,0,2477, + 2476,1,0,0,0,2477,2478,1,0,0,0,2478,2479,1,0,0,0,2479,2481,3,374, + 187,0,2480,2477,1,0,0,0,2480,2481,1,0,0,0,2481,165,1,0,0,0,2482, + 2484,5,326,0,0,2483,2485,3,168,84,0,2484,2483,1,0,0,0,2484,2485, + 1,0,0,0,2485,2486,1,0,0,0,2486,2487,5,2,0,0,2487,2488,3,170,85,0, + 2488,2493,5,3,0,0,2489,2491,5,20,0,0,2490,2489,1,0,0,0,2490,2491, + 1,0,0,0,2491,2492,1,0,0,0,2492,2494,3,374,187,0,2493,2490,1,0,0, + 0,2493,2494,1,0,0,0,2494,167,1,0,0,0,2495,2496,7,21,0,0,2496,2497, + 5,198,0,0,2497,169,1,0,0,0,2498,2501,3,172,86,0,2499,2501,3,174, + 87,0,2500,2498,1,0,0,0,2500,2499,1,0,0,0,2501,171,1,0,0,0,2502,2503, + 3,178,89,0,2503,2504,5,119,0,0,2504,2505,3,180,90,0,2505,2506,5, + 140,0,0,2506,2507,5,2,0,0,2507,2512,3,182,91,0,2508,2509,5,4,0,0, + 2509,2511,3,182,91,0,2510,2508,1,0,0,0,2511,2514,1,0,0,0,2512,2510, + 1,0,0,0,2512,2513,1,0,0,0,2513,2515,1,0,0,0,2514,2512,1,0,0,0,2515, + 2516,5,3,0,0,2516,173,1,0,0,0,2517,2518,5,2,0,0,2518,2523,3,178, + 89,0,2519,2520,5,4,0,0,2520,2522,3,178,89,0,2521,2519,1,0,0,0,2522, + 2525,1,0,0,0,2523,2521,1,0,0,0,2523,2524,1,0,0,0,2524,2526,1,0,0, + 0,2525,2523,1,0,0,0,2526,2527,5,3,0,0,2527,2528,5,119,0,0,2528,2529, + 3,180,90,0,2529,2530,5,140,0,0,2530,2531,5,2,0,0,2531,2536,3,176, + 88,0,2532,2533,5,4,0,0,2533,2535,3,176,88,0,2534,2532,1,0,0,0,2535, + 2538,1,0,0,0,2536,2534,1,0,0,0,2536,2537,1,0,0,0,2537,2539,1,0,0, + 0,2538,2536,1,0,0,0,2539,2540,5,3,0,0,2540,175,1,0,0,0,2541,2542, + 5,2,0,0,2542,2547,3,184,92,0,2543,2544,5,4,0,0,2544,2546,3,184,92, + 0,2545,2543,1,0,0,0,2546,2549,1,0,0,0,2547,2545,1,0,0,0,2547,2548, + 1,0,0,0,2548,2550,1,0,0,0,2549,2547,1,0,0,0,2550,2552,5,3,0,0,2551, + 2553,3,186,93,0,2552,2551,1,0,0,0,2552,2553,1,0,0,0,2553,177,1,0, + 0,0,2554,2555,3,374,187,0,2555,179,1,0,0,0,2556,2557,3,374,187,0, + 2557,181,1,0,0,0,2558,2560,3,184,92,0,2559,2561,3,186,93,0,2560, + 2559,1,0,0,0,2560,2561,1,0,0,0,2561,183,1,0,0,0,2562,2563,3,244, + 122,0,2563,185,1,0,0,0,2564,2566,5,20,0,0,2565,2564,1,0,0,0,2565, + 2566,1,0,0,0,2566,2567,1,0,0,0,2567,2568,3,374,187,0,2568,187,1, + 0,0,0,2569,2570,5,137,0,0,2570,2571,5,196,0,0,2571,2572,5,105,0, + 0,2572,189,1,0,0,0,2573,2574,5,137,0,0,2574,2575,5,105,0,0,2575, + 191,1,0,0,0,2576,2577,5,158,0,0,2577,2579,5,337,0,0,2578,2580,5, + 210,0,0,2579,2578,1,0,0,0,2579,2580,1,0,0,0,2580,2581,1,0,0,0,2581, + 2582,3,88,44,0,2582,2591,5,2,0,0,2583,2588,3,266,133,0,2584,2585, + 5,4,0,0,2585,2587,3,266,133,0,2586,2584,1,0,0,0,2587,2590,1,0,0, + 0,2588,2586,1,0,0,0,2588,2589,1,0,0,0,2589,2592,1,0,0,0,2590,2588, + 1,0,0,0,2591,2583,1,0,0,0,2591,2592,1,0,0,0,2592,2593,1,0,0,0,2593, + 2594,5,3,0,0,2594,2606,3,238,119,0,2595,2597,5,20,0,0,2596,2595, + 1,0,0,0,2596,2597,1,0,0,0,2597,2598,1,0,0,0,2598,2603,3,374,187, + 0,2599,2600,5,4,0,0,2600,2602,3,374,187,0,2601,2599,1,0,0,0,2602, + 2605,1,0,0,0,2603,2601,1,0,0,0,2603,2604,1,0,0,0,2604,2607,1,0,0, + 0,2605,2603,1,0,0,0,2606,2596,1,0,0,0,2606,2607,1,0,0,0,2607,193, + 1,0,0,0,2608,2609,7,22,0,0,2609,195,1,0,0,0,2610,2622,3,84,42,0, + 2611,2613,5,158,0,0,2612,2611,1,0,0,0,2612,2613,1,0,0,0,2613,2614, + 1,0,0,0,2614,2618,3,222,111,0,2615,2617,3,198,99,0,2616,2615,1,0, + 0,0,2617,2620,1,0,0,0,2618,2616,1,0,0,0,2618,2619,1,0,0,0,2619,2622, + 1,0,0,0,2620,2618,1,0,0,0,2621,2610,1,0,0,0,2621,2612,1,0,0,0,2622, + 197,1,0,0,0,2623,2627,3,200,100,0,2624,2627,3,160,80,0,2625,2627, + 3,166,83,0,2626,2623,1,0,0,0,2626,2624,1,0,0,0,2626,2625,1,0,0,0, + 2627,199,1,0,0,0,2628,2629,3,202,101,0,2629,2631,5,155,0,0,2630, + 2632,5,158,0,0,2631,2630,1,0,0,0,2631,2632,1,0,0,0,2632,2633,1,0, + 0,0,2633,2635,3,222,111,0,2634,2636,3,204,102,0,2635,2634,1,0,0, + 0,2635,2636,1,0,0,0,2636,2646,1,0,0,0,2637,2638,5,193,0,0,2638,2639, + 3,202,101,0,2639,2641,5,155,0,0,2640,2642,5,158,0,0,2641,2640,1, + 0,0,0,2641,2642,1,0,0,0,2642,2643,1,0,0,0,2643,2644,3,222,111,0, + 2644,2646,1,0,0,0,2645,2628,1,0,0,0,2645,2637,1,0,0,0,2646,201,1, + 0,0,0,2647,2649,5,144,0,0,2648,2647,1,0,0,0,2648,2649,1,0,0,0,2649, + 2672,1,0,0,0,2650,2672,5,60,0,0,2651,2653,5,161,0,0,2652,2654,5, + 210,0,0,2653,2652,1,0,0,0,2653,2654,1,0,0,0,2654,2672,1,0,0,0,2655, + 2657,5,161,0,0,2656,2655,1,0,0,0,2656,2657,1,0,0,0,2657,2658,1,0, + 0,0,2658,2672,5,263,0,0,2659,2661,5,249,0,0,2660,2662,5,210,0,0, + 2661,2660,1,0,0,0,2661,2662,1,0,0,0,2662,2672,1,0,0,0,2663,2665, + 5,124,0,0,2664,2666,5,210,0,0,2665,2664,1,0,0,0,2665,2666,1,0,0, + 0,2666,2672,1,0,0,0,2667,2669,5,161,0,0,2668,2667,1,0,0,0,2668,2669, + 1,0,0,0,2669,2670,1,0,0,0,2670,2672,5,15,0,0,2671,2648,1,0,0,0,2671, + 2650,1,0,0,0,2671,2651,1,0,0,0,2671,2656,1,0,0,0,2671,2659,1,0,0, + 0,2671,2663,1,0,0,0,2671,2668,1,0,0,0,2672,203,1,0,0,0,2673,2674, + 5,202,0,0,2674,2678,3,274,137,0,2675,2676,5,331,0,0,2676,2678,3, + 210,105,0,2677,2673,1,0,0,0,2677,2675,1,0,0,0,2678,205,1,0,0,0,2679, + 2680,5,294,0,0,2680,2682,5,2,0,0,2681,2683,3,208,104,0,2682,2681, + 1,0,0,0,2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684,2689,5,3,0,0,2685, + 2686,5,242,0,0,2686,2687,5,2,0,0,2687,2688,5,381,0,0,2688,2690,5, + 3,0,0,2689,2685,1,0,0,0,2689,2690,1,0,0,0,2690,207,1,0,0,0,2691, + 2693,5,361,0,0,2692,2691,1,0,0,0,2692,2693,1,0,0,0,2693,2694,1,0, + 0,0,2694,2695,7,23,0,0,2695,2716,5,221,0,0,2696,2697,3,266,133,0, + 2697,2698,5,257,0,0,2698,2716,1,0,0,0,2699,2700,5,29,0,0,2700,2701, + 5,381,0,0,2701,2702,5,209,0,0,2702,2703,5,200,0,0,2703,2712,5,381, + 0,0,2704,2710,5,202,0,0,2705,2711,3,374,187,0,2706,2707,3,368,184, + 0,2707,2708,5,2,0,0,2708,2709,5,3,0,0,2709,2711,1,0,0,0,2710,2705, + 1,0,0,0,2710,2706,1,0,0,0,2711,2713,1,0,0,0,2712,2704,1,0,0,0,2712, + 2713,1,0,0,0,2713,2716,1,0,0,0,2714,2716,3,266,133,0,2715,2692,1, + 0,0,0,2715,2696,1,0,0,0,2715,2699,1,0,0,0,2715,2714,1,0,0,0,2716, + 209,1,0,0,0,2717,2718,5,2,0,0,2718,2719,3,212,106,0,2719,2720,5, + 3,0,0,2720,211,1,0,0,0,2721,2726,3,370,185,0,2722,2723,5,4,0,0,2723, + 2725,3,370,185,0,2724,2722,1,0,0,0,2725,2728,1,0,0,0,2726,2724,1, + 0,0,0,2726,2727,1,0,0,0,2727,213,1,0,0,0,2728,2726,1,0,0,0,2729, + 2730,5,2,0,0,2730,2735,3,216,108,0,2731,2732,5,4,0,0,2732,2734,3, + 216,108,0,2733,2731,1,0,0,0,2734,2737,1,0,0,0,2735,2733,1,0,0,0, + 2735,2736,1,0,0,0,2736,2738,1,0,0,0,2737,2735,1,0,0,0,2738,2739, + 5,3,0,0,2739,215,1,0,0,0,2740,2742,3,370,185,0,2741,2743,7,15,0, + 0,2742,2741,1,0,0,0,2742,2743,1,0,0,0,2743,217,1,0,0,0,2744,2745, + 5,2,0,0,2745,2750,3,220,110,0,2746,2747,5,4,0,0,2747,2749,3,220, + 110,0,2748,2746,1,0,0,0,2749,2752,1,0,0,0,2750,2748,1,0,0,0,2750, + 2751,1,0,0,0,2751,2753,1,0,0,0,2752,2750,1,0,0,0,2753,2754,5,3,0, + 0,2754,219,1,0,0,0,2755,2757,3,94,47,0,2756,2758,3,24,12,0,2757, + 2756,1,0,0,0,2757,2758,1,0,0,0,2758,221,1,0,0,0,2759,2763,3,84,42, + 0,2760,2763,3,88,44,0,2761,2763,3,96,48,0,2762,2759,1,0,0,0,2762, + 2760,1,0,0,0,2762,2761,1,0,0,0,2763,2765,1,0,0,0,2764,2766,3,148, + 74,0,2765,2764,1,0,0,0,2765,2766,1,0,0,0,2766,2768,1,0,0,0,2767, + 2769,3,206,103,0,2768,2767,1,0,0,0,2768,2769,1,0,0,0,2769,2770,1, + 0,0,0,2770,2771,3,238,119,0,2771,2791,1,0,0,0,2772,2773,5,2,0,0, + 2773,2774,3,26,13,0,2774,2776,5,3,0,0,2775,2777,3,206,103,0,2776, + 2775,1,0,0,0,2776,2777,1,0,0,0,2777,2778,1,0,0,0,2778,2779,3,238, + 119,0,2779,2791,1,0,0,0,2780,2781,5,2,0,0,2781,2782,3,196,98,0,2782, + 2784,5,3,0,0,2783,2785,3,206,103,0,2784,2783,1,0,0,0,2784,2785,1, + 0,0,0,2785,2786,1,0,0,0,2786,2787,3,238,119,0,2787,2791,1,0,0,0, + 2788,2791,3,224,112,0,2789,2791,3,236,118,0,2790,2762,1,0,0,0,2790, + 2772,1,0,0,0,2790,2780,1,0,0,0,2790,2788,1,0,0,0,2790,2789,1,0,0, + 0,2791,223,1,0,0,0,2792,2793,5,332,0,0,2793,2798,3,266,133,0,2794, + 2795,5,4,0,0,2795,2797,3,266,133,0,2796,2794,1,0,0,0,2797,2800,1, + 0,0,0,2798,2796,1,0,0,0,2798,2799,1,0,0,0,2799,2801,1,0,0,0,2800, + 2798,1,0,0,0,2801,2802,3,238,119,0,2802,225,1,0,0,0,2803,2804,5, + 292,0,0,2804,2806,3,84,42,0,2805,2807,3,228,114,0,2806,2805,1,0, + 0,0,2806,2807,1,0,0,0,2807,2823,1,0,0,0,2808,2809,5,292,0,0,2809, + 2810,5,2,0,0,2810,2811,3,84,42,0,2811,2813,5,3,0,0,2812,2814,3,228, + 114,0,2813,2812,1,0,0,0,2813,2814,1,0,0,0,2814,2823,1,0,0,0,2815, + 2816,5,292,0,0,2816,2817,5,2,0,0,2817,2818,3,26,13,0,2818,2820,5, + 3,0,0,2819,2821,3,228,114,0,2820,2819,1,0,0,0,2820,2821,1,0,0,0, + 2821,2823,1,0,0,0,2822,2803,1,0,0,0,2822,2808,1,0,0,0,2822,2815, + 1,0,0,0,2823,227,1,0,0,0,2824,2825,5,345,0,0,2825,2826,5,273,0,0, + 2826,2844,5,216,0,0,2827,2828,7,24,0,0,2828,2841,5,31,0,0,2829,2830, + 5,2,0,0,2830,2835,3,266,133,0,2831,2832,5,4,0,0,2832,2834,3,266, + 133,0,2833,2831,1,0,0,0,2834,2837,1,0,0,0,2835,2833,1,0,0,0,2835, + 2836,1,0,0,0,2836,2838,1,0,0,0,2837,2835,1,0,0,0,2838,2839,5,3,0, + 0,2839,2842,1,0,0,0,2840,2842,3,266,133,0,2841,2829,1,0,0,0,2841, + 2840,1,0,0,0,2842,2844,1,0,0,0,2843,2824,1,0,0,0,2843,2827,1,0,0, + 0,2844,2861,1,0,0,0,2845,2846,7,25,0,0,2846,2859,5,31,0,0,2847,2848, + 5,2,0,0,2848,2853,3,106,53,0,2849,2850,5,4,0,0,2850,2852,3,106,53, + 0,2851,2849,1,0,0,0,2852,2855,1,0,0,0,2853,2851,1,0,0,0,2853,2854, + 1,0,0,0,2854,2856,1,0,0,0,2855,2853,1,0,0,0,2856,2857,5,3,0,0,2857, + 2860,1,0,0,0,2858,2860,3,106,53,0,2859,2847,1,0,0,0,2859,2858,1, + 0,0,0,2860,2862,1,0,0,0,2861,2845,1,0,0,0,2861,2862,1,0,0,0,2862, + 229,1,0,0,0,2863,2864,3,374,187,0,2864,2865,5,372,0,0,2865,2866, + 3,226,113,0,2866,231,1,0,0,0,2867,2870,3,226,113,0,2868,2870,3,230, + 115,0,2869,2867,1,0,0,0,2869,2868,1,0,0,0,2870,233,1,0,0,0,2871, + 2874,3,232,116,0,2872,2874,3,270,135,0,2873,2871,1,0,0,0,2873,2872, + 1,0,0,0,2874,235,1,0,0,0,2875,2876,3,364,182,0,2876,2885,5,2,0,0, + 2877,2882,3,234,117,0,2878,2879,5,4,0,0,2879,2881,3,234,117,0,2880, + 2878,1,0,0,0,2881,2884,1,0,0,0,2882,2880,1,0,0,0,2882,2883,1,0,0, + 0,2883,2886,1,0,0,0,2884,2882,1,0,0,0,2885,2877,1,0,0,0,2885,2886, + 1,0,0,0,2886,2887,1,0,0,0,2887,2888,5,3,0,0,2888,2889,3,238,119, + 0,2889,237,1,0,0,0,2890,2892,5,20,0,0,2891,2890,1,0,0,0,2891,2892, + 1,0,0,0,2892,2893,1,0,0,0,2893,2895,3,376,188,0,2894,2896,3,210, + 105,0,2895,2894,1,0,0,0,2895,2896,1,0,0,0,2896,2898,1,0,0,0,2897, + 2891,1,0,0,0,2897,2898,1,0,0,0,2898,239,1,0,0,0,2899,2900,5,256, + 0,0,2900,2901,5,121,0,0,2901,2902,5,265,0,0,2902,2906,3,386,193, + 0,2903,2904,5,345,0,0,2904,2905,5,266,0,0,2905,2907,3,52,26,0,2906, + 2903,1,0,0,0,2906,2907,1,0,0,0,2907,2949,1,0,0,0,2908,2909,5,256, + 0,0,2909,2910,5,121,0,0,2910,2920,5,85,0,0,2911,2912,5,113,0,0,2912, + 2913,5,298,0,0,2913,2914,5,31,0,0,2914,2918,3,386,193,0,2915,2916, + 5,101,0,0,2916,2917,5,31,0,0,2917,2919,3,386,193,0,2918,2915,1,0, + 0,0,2918,2919,1,0,0,0,2919,2921,1,0,0,0,2920,2911,1,0,0,0,2920,2921, + 1,0,0,0,2921,2927,1,0,0,0,2922,2923,5,48,0,0,2923,2924,5,154,0,0, + 2924,2925,5,298,0,0,2925,2926,5,31,0,0,2926,2928,3,386,193,0,2927, + 2922,1,0,0,0,2927,2928,1,0,0,0,2928,2934,1,0,0,0,2929,2930,5,176, + 0,0,2930,2931,5,156,0,0,2931,2932,5,298,0,0,2932,2933,5,31,0,0,2933, + 2935,3,386,193,0,2934,2929,1,0,0,0,2934,2935,1,0,0,0,2935,2940,1, + 0,0,0,2936,2937,5,165,0,0,2937,2938,5,298,0,0,2938,2939,5,31,0,0, + 2939,2941,3,386,193,0,2940,2936,1,0,0,0,2940,2941,1,0,0,0,2941,2946, + 1,0,0,0,2942,2943,5,197,0,0,2943,2944,5,83,0,0,2944,2945,5,20,0, + 0,2945,2947,3,386,193,0,2946,2942,1,0,0,0,2946,2947,1,0,0,0,2947, + 2949,1,0,0,0,2948,2899,1,0,0,0,2948,2908,1,0,0,0,2949,241,1,0,0, + 0,2950,2955,3,244,122,0,2951,2952,5,4,0,0,2952,2954,3,244,122,0, + 2953,2951,1,0,0,0,2954,2957,1,0,0,0,2955,2953,1,0,0,0,2955,2956, + 1,0,0,0,2956,243,1,0,0,0,2957,2955,1,0,0,0,2958,2963,3,370,185,0, + 2959,2960,5,5,0,0,2960,2962,3,370,185,0,2961,2959,1,0,0,0,2962,2965, + 1,0,0,0,2963,2961,1,0,0,0,2963,2964,1,0,0,0,2964,245,1,0,0,0,2965, + 2963,1,0,0,0,2966,2971,3,248,124,0,2967,2968,5,4,0,0,2968,2970,3, + 248,124,0,2969,2967,1,0,0,0,2970,2973,1,0,0,0,2971,2969,1,0,0,0, + 2971,2972,1,0,0,0,2972,247,1,0,0,0,2973,2971,1,0,0,0,2974,2977,3, + 244,122,0,2975,2976,5,206,0,0,2976,2978,3,52,26,0,2977,2975,1,0, + 0,0,2977,2978,1,0,0,0,2978,249,1,0,0,0,2979,2980,3,370,185,0,2980, + 2981,5,5,0,0,2981,2983,1,0,0,0,2982,2979,1,0,0,0,2982,2983,1,0,0, + 0,2983,2984,1,0,0,0,2984,2985,3,370,185,0,2985,251,1,0,0,0,2986, + 2987,3,370,185,0,2987,2988,5,5,0,0,2988,2990,1,0,0,0,2989,2986,1, + 0,0,0,2989,2990,1,0,0,0,2990,2991,1,0,0,0,2991,2992,3,370,185,0, + 2992,253,1,0,0,0,2993,2996,3,90,45,0,2994,2996,3,266,133,0,2995, + 2993,1,0,0,0,2995,2994,1,0,0,0,2996,3004,1,0,0,0,2997,2999,5,20, + 0,0,2998,2997,1,0,0,0,2998,2999,1,0,0,0,2999,3002,1,0,0,0,3000,3003, + 3,370,185,0,3001,3003,3,210,105,0,3002,3000,1,0,0,0,3002,3001,1, + 0,0,0,3003,3005,1,0,0,0,3004,2998,1,0,0,0,3004,3005,1,0,0,0,3005, + 255,1,0,0,0,3006,3011,3,254,127,0,3007,3008,5,4,0,0,3008,3010,3, + 254,127,0,3009,3007,1,0,0,0,3010,3013,1,0,0,0,3011,3009,1,0,0,0, + 3011,3012,1,0,0,0,3012,257,1,0,0,0,3013,3011,1,0,0,0,3014,3015,5, + 2,0,0,3015,3020,3,260,130,0,3016,3017,5,4,0,0,3017,3019,3,260,130, + 0,3018,3016,1,0,0,0,3019,3022,1,0,0,0,3020,3018,1,0,0,0,3020,3021, + 1,0,0,0,3021,3023,1,0,0,0,3022,3020,1,0,0,0,3023,3024,5,3,0,0,3024, + 259,1,0,0,0,3025,3028,3,262,131,0,3026,3028,3,334,167,0,3027,3025, + 1,0,0,0,3027,3026,1,0,0,0,3028,261,1,0,0,0,3029,3043,3,368,184,0, + 3030,3031,3,374,187,0,3031,3032,5,2,0,0,3032,3037,3,264,132,0,3033, + 3034,5,4,0,0,3034,3036,3,264,132,0,3035,3033,1,0,0,0,3036,3039,1, + 0,0,0,3037,3035,1,0,0,0,3037,3038,1,0,0,0,3038,3040,1,0,0,0,3039, + 3037,1,0,0,0,3040,3041,5,3,0,0,3041,3043,1,0,0,0,3042,3029,1,0,0, + 0,3042,3030,1,0,0,0,3043,263,1,0,0,0,3044,3047,3,368,184,0,3045, + 3047,3,286,143,0,3046,3044,1,0,0,0,3046,3045,1,0,0,0,3047,265,1, + 0,0,0,3048,3049,3,274,137,0,3049,267,1,0,0,0,3050,3051,3,374,187, + 0,3051,3052,5,372,0,0,3052,3053,3,266,133,0,3053,269,1,0,0,0,3054, + 3057,3,266,133,0,3055,3057,3,268,134,0,3056,3054,1,0,0,0,3056,3055, + 1,0,0,0,3057,271,1,0,0,0,3058,3063,3,266,133,0,3059,3060,5,4,0,0, + 3060,3062,3,266,133,0,3061,3059,1,0,0,0,3062,3065,1,0,0,0,3063,3061, + 1,0,0,0,3063,3064,1,0,0,0,3064,273,1,0,0,0,3065,3063,1,0,0,0,3066, + 3067,6,137,-1,0,3067,3068,7,26,0,0,3068,3079,3,274,137,5,3069,3070, + 5,105,0,0,3070,3071,5,2,0,0,3071,3072,3,26,13,0,3072,3073,5,3,0, + 0,3073,3079,1,0,0,0,3074,3076,3,278,139,0,3075,3077,3,276,138,0, + 3076,3075,1,0,0,0,3076,3077,1,0,0,0,3077,3079,1,0,0,0,3078,3066, + 1,0,0,0,3078,3069,1,0,0,0,3078,3074,1,0,0,0,3079,3088,1,0,0,0,3080, + 3081,10,2,0,0,3081,3082,5,14,0,0,3082,3087,3,274,137,3,3083,3084, + 10,1,0,0,3084,3085,5,207,0,0,3085,3087,3,274,137,2,3086,3080,1,0, + 0,0,3086,3083,1,0,0,0,3087,3090,1,0,0,0,3088,3086,1,0,0,0,3088,3089, + 1,0,0,0,3089,275,1,0,0,0,3090,3088,1,0,0,0,3091,3093,5,196,0,0,3092, + 3091,1,0,0,0,3092,3093,1,0,0,0,3093,3094,1,0,0,0,3094,3095,5,24, + 0,0,3095,3096,3,278,139,0,3096,3097,5,14,0,0,3097,3098,3,278,139, + 0,3098,3174,1,0,0,0,3099,3101,5,196,0,0,3100,3099,1,0,0,0,3100,3101, + 1,0,0,0,3101,3102,1,0,0,0,3102,3103,5,140,0,0,3103,3104,5,2,0,0, + 3104,3109,3,266,133,0,3105,3106,5,4,0,0,3106,3108,3,266,133,0,3107, + 3105,1,0,0,0,3108,3111,1,0,0,0,3109,3107,1,0,0,0,3109,3110,1,0,0, + 0,3110,3112,1,0,0,0,3111,3109,1,0,0,0,3112,3113,5,3,0,0,3113,3174, + 1,0,0,0,3114,3116,5,196,0,0,3115,3114,1,0,0,0,3115,3116,1,0,0,0, + 3116,3117,1,0,0,0,3117,3118,5,140,0,0,3118,3119,5,2,0,0,3119,3120, + 3,26,13,0,3120,3121,5,3,0,0,3121,3174,1,0,0,0,3122,3124,5,196,0, + 0,3123,3122,1,0,0,0,3123,3124,1,0,0,0,3124,3125,1,0,0,0,3125,3126, + 7,27,0,0,3126,3174,3,278,139,0,3127,3129,5,196,0,0,3128,3127,1,0, + 0,0,3128,3129,1,0,0,0,3129,3130,1,0,0,0,3130,3131,7,28,0,0,3131, + 3145,7,29,0,0,3132,3133,5,2,0,0,3133,3146,5,3,0,0,3134,3135,5,2, + 0,0,3135,3140,3,266,133,0,3136,3137,5,4,0,0,3137,3139,3,266,133, + 0,3138,3136,1,0,0,0,3139,3142,1,0,0,0,3140,3138,1,0,0,0,3140,3141, + 1,0,0,0,3141,3143,1,0,0,0,3142,3140,1,0,0,0,3143,3144,5,3,0,0,3144, + 3146,1,0,0,0,3145,3132,1,0,0,0,3145,3134,1,0,0,0,3146,3174,1,0,0, + 0,3147,3149,5,196,0,0,3148,3147,1,0,0,0,3148,3149,1,0,0,0,3149,3150, + 1,0,0,0,3150,3151,7,28,0,0,3151,3154,3,278,139,0,3152,3153,5,100, + 0,0,3153,3155,3,386,193,0,3154,3152,1,0,0,0,3154,3155,1,0,0,0,3155, + 3174,1,0,0,0,3156,3158,5,153,0,0,3157,3159,5,196,0,0,3158,3157,1, + 0,0,0,3158,3159,1,0,0,0,3159,3160,1,0,0,0,3160,3174,5,197,0,0,3161, + 3163,5,153,0,0,3162,3164,5,196,0,0,3163,3162,1,0,0,0,3163,3164,1, + 0,0,0,3164,3165,1,0,0,0,3165,3174,7,30,0,0,3166,3168,5,153,0,0,3167, + 3169,5,196,0,0,3168,3167,1,0,0,0,3168,3169,1,0,0,0,3169,3170,1,0, + 0,0,3170,3171,5,92,0,0,3171,3172,5,123,0,0,3172,3174,3,278,139,0, + 3173,3092,1,0,0,0,3173,3100,1,0,0,0,3173,3115,1,0,0,0,3173,3123, + 1,0,0,0,3173,3128,1,0,0,0,3173,3148,1,0,0,0,3173,3156,1,0,0,0,3173, + 3161,1,0,0,0,3173,3166,1,0,0,0,3174,277,1,0,0,0,3175,3176,6,139, + -1,0,3176,3180,3,282,141,0,3177,3178,7,31,0,0,3178,3180,3,278,139, + 7,3179,3175,1,0,0,0,3179,3177,1,0,0,0,3180,3202,1,0,0,0,3181,3182, + 10,6,0,0,3182,3183,7,32,0,0,3183,3201,3,278,139,7,3184,3185,10,5, + 0,0,3185,3186,7,33,0,0,3186,3201,3,278,139,6,3187,3188,10,4,0,0, + 3188,3189,5,366,0,0,3189,3201,3,278,139,5,3190,3191,10,3,0,0,3191, + 3192,5,369,0,0,3192,3201,3,278,139,4,3193,3194,10,2,0,0,3194,3195, + 5,367,0,0,3195,3201,3,278,139,3,3196,3197,10,1,0,0,3197,3198,3,288, + 144,0,3198,3199,3,278,139,2,3199,3201,1,0,0,0,3200,3181,1,0,0,0, + 3200,3184,1,0,0,0,3200,3187,1,0,0,0,3200,3190,1,0,0,0,3200,3193, + 1,0,0,0,3200,3196,1,0,0,0,3201,3204,1,0,0,0,3202,3200,1,0,0,0,3202, + 3203,1,0,0,0,3203,279,1,0,0,0,3204,3202,1,0,0,0,3205,3206,7,34,0, + 0,3206,281,1,0,0,0,3207,3208,6,141,-1,0,3208,3457,7,35,0,0,3209, + 3210,7,36,0,0,3210,3213,5,2,0,0,3211,3214,3,280,140,0,3212,3214, + 3,386,193,0,3213,3211,1,0,0,0,3213,3212,1,0,0,0,3214,3215,1,0,0, + 0,3215,3216,5,4,0,0,3216,3217,3,278,139,0,3217,3218,5,4,0,0,3218, + 3219,3,278,139,0,3219,3220,5,3,0,0,3220,3457,1,0,0,0,3221,3222,7, + 37,0,0,3222,3225,5,2,0,0,3223,3226,3,280,140,0,3224,3226,3,386,193, + 0,3225,3223,1,0,0,0,3225,3224,1,0,0,0,3226,3227,1,0,0,0,3227,3228, + 5,4,0,0,3228,3229,3,278,139,0,3229,3230,5,4,0,0,3230,3231,3,278, + 139,0,3231,3232,5,3,0,0,3232,3457,1,0,0,0,3233,3235,5,35,0,0,3234, + 3236,3,348,174,0,3235,3234,1,0,0,0,3236,3237,1,0,0,0,3237,3235,1, + 0,0,0,3237,3238,1,0,0,0,3238,3241,1,0,0,0,3239,3240,5,97,0,0,3240, + 3242,3,266,133,0,3241,3239,1,0,0,0,3241,3242,1,0,0,0,3242,3243,1, + 0,0,0,3243,3244,5,99,0,0,3244,3457,1,0,0,0,3245,3246,5,35,0,0,3246, + 3248,3,266,133,0,3247,3249,3,348,174,0,3248,3247,1,0,0,0,3249,3250, + 1,0,0,0,3250,3248,1,0,0,0,3250,3251,1,0,0,0,3251,3254,1,0,0,0,3252, + 3253,5,97,0,0,3253,3255,3,266,133,0,3254,3252,1,0,0,0,3254,3255, + 1,0,0,0,3255,3256,1,0,0,0,3256,3257,5,99,0,0,3257,3457,1,0,0,0,3258, + 3259,7,38,0,0,3259,3260,5,2,0,0,3260,3261,3,266,133,0,3261,3262, + 5,20,0,0,3262,3263,3,316,158,0,3263,3264,5,3,0,0,3264,3457,1,0,0, + 0,3265,3266,5,285,0,0,3266,3275,5,2,0,0,3267,3272,3,254,127,0,3268, + 3269,5,4,0,0,3269,3271,3,254,127,0,3270,3268,1,0,0,0,3271,3274,1, + 0,0,0,3272,3270,1,0,0,0,3272,3273,1,0,0,0,3273,3276,1,0,0,0,3274, + 3272,1,0,0,0,3275,3267,1,0,0,0,3275,3276,1,0,0,0,3276,3277,1,0,0, + 0,3277,3457,5,3,0,0,3278,3279,5,116,0,0,3279,3280,5,2,0,0,3280,3283, + 3,266,133,0,3281,3282,5,138,0,0,3282,3284,5,198,0,0,3283,3281,1, + 0,0,0,3283,3284,1,0,0,0,3284,3285,1,0,0,0,3285,3286,5,3,0,0,3286, + 3457,1,0,0,0,3287,3288,5,17,0,0,3288,3289,5,2,0,0,3289,3292,3,266, + 133,0,3290,3291,5,138,0,0,3291,3293,5,198,0,0,3292,3290,1,0,0,0, + 3292,3293,1,0,0,0,3293,3294,1,0,0,0,3294,3295,5,3,0,0,3295,3457, + 1,0,0,0,3296,3297,5,157,0,0,3297,3298,5,2,0,0,3298,3301,3,266,133, + 0,3299,3300,5,138,0,0,3300,3302,5,198,0,0,3301,3299,1,0,0,0,3301, + 3302,1,0,0,0,3302,3303,1,0,0,0,3303,3304,5,3,0,0,3304,3457,1,0,0, + 0,3305,3306,5,224,0,0,3306,3307,5,2,0,0,3307,3308,3,278,139,0,3308, + 3309,5,140,0,0,3309,3310,3,278,139,0,3310,3311,5,3,0,0,3311,3457, + 1,0,0,0,3312,3457,3,286,143,0,3313,3457,5,362,0,0,3314,3315,3,368, + 184,0,3315,3316,5,5,0,0,3316,3317,5,362,0,0,3317,3457,1,0,0,0,3318, + 3319,5,2,0,0,3319,3322,3,254,127,0,3320,3321,5,4,0,0,3321,3323,3, + 254,127,0,3322,3320,1,0,0,0,3323,3324,1,0,0,0,3324,3322,1,0,0,0, + 3324,3325,1,0,0,0,3325,3326,1,0,0,0,3326,3327,5,3,0,0,3327,3457, + 1,0,0,0,3328,3329,5,2,0,0,3329,3330,3,26,13,0,3330,3331,5,3,0,0, + 3331,3457,1,0,0,0,3332,3333,5,136,0,0,3333,3334,5,2,0,0,3334,3335, + 3,266,133,0,3335,3336,5,3,0,0,3336,3457,1,0,0,0,3337,3338,3,364, + 182,0,3338,3350,5,2,0,0,3339,3341,3,194,97,0,3340,3339,1,0,0,0,3340, + 3341,1,0,0,0,3341,3342,1,0,0,0,3342,3347,3,270,135,0,3343,3344,5, + 4,0,0,3344,3346,3,270,135,0,3345,3343,1,0,0,0,3346,3349,1,0,0,0, + 3347,3345,1,0,0,0,3347,3348,1,0,0,0,3348,3351,1,0,0,0,3349,3347, + 1,0,0,0,3350,3340,1,0,0,0,3350,3351,1,0,0,0,3351,3352,1,0,0,0,3352, + 3359,5,3,0,0,3353,3354,5,114,0,0,3354,3355,5,2,0,0,3355,3356,5,343, + 0,0,3356,3357,3,274,137,0,3357,3358,5,3,0,0,3358,3360,1,0,0,0,3359, + 3353,1,0,0,0,3359,3360,1,0,0,0,3360,3363,1,0,0,0,3361,3362,7,39, + 0,0,3362,3364,5,198,0,0,3363,3361,1,0,0,0,3363,3364,1,0,0,0,3364, + 3367,1,0,0,0,3365,3366,5,212,0,0,3366,3368,3,356,178,0,3367,3365, + 1,0,0,0,3367,3368,1,0,0,0,3368,3457,1,0,0,0,3369,3370,3,374,187, + 0,3370,3371,5,371,0,0,3371,3372,3,266,133,0,3372,3457,1,0,0,0,3373, + 3374,5,2,0,0,3374,3377,3,374,187,0,3375,3376,5,4,0,0,3376,3378,3, + 374,187,0,3377,3375,1,0,0,0,3378,3379,1,0,0,0,3379,3377,1,0,0,0, + 3379,3380,1,0,0,0,3380,3381,1,0,0,0,3381,3382,5,3,0,0,3382,3383, + 5,371,0,0,3383,3384,3,266,133,0,3384,3457,1,0,0,0,3385,3457,3,374, + 187,0,3386,3387,5,2,0,0,3387,3388,3,266,133,0,3388,3389,5,3,0,0, + 3389,3457,1,0,0,0,3390,3391,5,110,0,0,3391,3392,5,2,0,0,3392,3393, + 3,374,187,0,3393,3394,5,123,0,0,3394,3395,3,278,139,0,3395,3396, + 5,3,0,0,3396,3457,1,0,0,0,3397,3398,7,40,0,0,3398,3399,5,2,0,0,3399, + 3400,3,278,139,0,3400,3401,7,41,0,0,3401,3404,3,278,139,0,3402,3403, + 7,42,0,0,3403,3405,3,278,139,0,3404,3402,1,0,0,0,3404,3405,1,0,0, + 0,3405,3406,1,0,0,0,3406,3407,5,3,0,0,3407,3457,1,0,0,0,3408,3409, + 5,314,0,0,3409,3411,5,2,0,0,3410,3412,7,43,0,0,3411,3410,1,0,0,0, + 3411,3412,1,0,0,0,3412,3414,1,0,0,0,3413,3415,3,278,139,0,3414,3413, + 1,0,0,0,3414,3415,1,0,0,0,3415,3416,1,0,0,0,3416,3417,5,123,0,0, + 3417,3418,3,278,139,0,3418,3419,5,3,0,0,3419,3457,1,0,0,0,3420,3421, + 5,214,0,0,3421,3422,5,2,0,0,3422,3423,3,278,139,0,3423,3424,5,223, + 0,0,3424,3425,3,278,139,0,3425,3426,5,123,0,0,3426,3429,3,278,139, + 0,3427,3428,5,119,0,0,3428,3430,3,278,139,0,3429,3427,1,0,0,0,3429, + 3430,1,0,0,0,3430,3431,1,0,0,0,3431,3432,5,3,0,0,3432,3457,1,0,0, + 0,3433,3434,7,44,0,0,3434,3435,5,2,0,0,3435,3436,3,278,139,0,3436, + 3437,5,3,0,0,3437,3438,5,346,0,0,3438,3439,5,130,0,0,3439,3440,5, + 2,0,0,3440,3441,5,208,0,0,3441,3442,5,31,0,0,3442,3443,3,106,53, + 0,3443,3450,5,3,0,0,3444,3445,5,114,0,0,3445,3446,5,2,0,0,3446,3447, + 5,343,0,0,3447,3448,3,274,137,0,3448,3449,5,3,0,0,3449,3451,1,0, + 0,0,3450,3444,1,0,0,0,3450,3451,1,0,0,0,3451,3454,1,0,0,0,3452,3453, + 5,212,0,0,3453,3455,3,356,178,0,3454,3452,1,0,0,0,3454,3455,1,0, + 0,0,3455,3457,1,0,0,0,3456,3207,1,0,0,0,3456,3209,1,0,0,0,3456,3221, + 1,0,0,0,3456,3233,1,0,0,0,3456,3245,1,0,0,0,3456,3258,1,0,0,0,3456, + 3265,1,0,0,0,3456,3278,1,0,0,0,3456,3287,1,0,0,0,3456,3296,1,0,0, + 0,3456,3305,1,0,0,0,3456,3312,1,0,0,0,3456,3313,1,0,0,0,3456,3314, + 1,0,0,0,3456,3318,1,0,0,0,3456,3328,1,0,0,0,3456,3332,1,0,0,0,3456, + 3337,1,0,0,0,3456,3369,1,0,0,0,3456,3373,1,0,0,0,3456,3385,1,0,0, + 0,3456,3386,1,0,0,0,3456,3390,1,0,0,0,3456,3397,1,0,0,0,3456,3408, + 1,0,0,0,3456,3420,1,0,0,0,3456,3433,1,0,0,0,3457,3468,1,0,0,0,3458, + 3459,10,9,0,0,3459,3460,5,6,0,0,3460,3461,3,278,139,0,3461,3462, + 5,7,0,0,3462,3467,1,0,0,0,3463,3464,10,7,0,0,3464,3465,5,5,0,0,3465, + 3467,3,374,187,0,3466,3458,1,0,0,0,3466,3463,1,0,0,0,3467,3470,1, + 0,0,0,3468,3466,1,0,0,0,3468,3469,1,0,0,0,3469,283,1,0,0,0,3470, + 3468,1,0,0,0,3471,3479,5,71,0,0,3472,3479,5,302,0,0,3473,3479,5, + 303,0,0,3474,3479,5,304,0,0,3475,3479,5,149,0,0,3476,3479,5,133, + 0,0,3477,3479,3,374,187,0,3478,3471,1,0,0,0,3478,3472,1,0,0,0,3478, + 3473,1,0,0,0,3478,3474,1,0,0,0,3478,3475,1,0,0,0,3478,3476,1,0,0, + 0,3478,3477,1,0,0,0,3479,285,1,0,0,0,3480,3496,5,197,0,0,3481,3496, + 5,375,0,0,3482,3483,5,370,0,0,3483,3496,3,374,187,0,3484,3496,3, + 296,148,0,3485,3486,3,284,142,0,3486,3487,3,386,193,0,3487,3496, + 1,0,0,0,3488,3496,3,382,191,0,3489,3496,3,294,147,0,3490,3492,3, + 386,193,0,3491,3490,1,0,0,0,3492,3493,1,0,0,0,3493,3491,1,0,0,0, + 3493,3494,1,0,0,0,3494,3496,1,0,0,0,3495,3480,1,0,0,0,3495,3481, + 1,0,0,0,3495,3482,1,0,0,0,3495,3484,1,0,0,0,3495,3485,1,0,0,0,3495, + 3488,1,0,0,0,3495,3489,1,0,0,0,3495,3491,1,0,0,0,3496,287,1,0,0, + 0,3497,3498,7,45,0,0,3498,289,1,0,0,0,3499,3500,7,46,0,0,3500,291, + 1,0,0,0,3501,3502,7,47,0,0,3502,293,1,0,0,0,3503,3504,7,48,0,0,3504, + 295,1,0,0,0,3505,3508,5,149,0,0,3506,3509,3,298,149,0,3507,3509, + 3,302,151,0,3508,3506,1,0,0,0,3508,3507,1,0,0,0,3509,297,1,0,0,0, + 3510,3512,3,300,150,0,3511,3513,3,304,152,0,3512,3511,1,0,0,0,3512, + 3513,1,0,0,0,3513,299,1,0,0,0,3514,3515,3,306,153,0,3515,3516,3, + 308,154,0,3516,3518,1,0,0,0,3517,3514,1,0,0,0,3518,3519,1,0,0,0, + 3519,3517,1,0,0,0,3519,3520,1,0,0,0,3520,301,1,0,0,0,3521,3524,3, + 304,152,0,3522,3525,3,300,150,0,3523,3525,3,304,152,0,3524,3522, + 1,0,0,0,3524,3523,1,0,0,0,3524,3525,1,0,0,0,3525,303,1,0,0,0,3526, + 3527,3,306,153,0,3527,3528,3,310,155,0,3528,3529,5,308,0,0,3529, + 3530,3,310,155,0,3530,305,1,0,0,0,3531,3533,7,49,0,0,3532,3531,1, + 0,0,0,3532,3533,1,0,0,0,3533,3537,1,0,0,0,3534,3538,5,381,0,0,3535, + 3538,5,383,0,0,3536,3538,3,386,193,0,3537,3534,1,0,0,0,3537,3535, + 1,0,0,0,3537,3536,1,0,0,0,3538,307,1,0,0,0,3539,3540,7,50,0,0,3540, + 309,1,0,0,0,3541,3542,7,51,0,0,3542,311,1,0,0,0,3543,3547,5,116, + 0,0,3544,3545,5,9,0,0,3545,3547,3,370,185,0,3546,3543,1,0,0,0,3546, + 3544,1,0,0,0,3547,313,1,0,0,0,3548,3579,5,27,0,0,3549,3579,5,307, + 0,0,3550,3579,5,32,0,0,3551,3579,5,275,0,0,3552,3579,5,271,0,0,3553, + 3579,5,150,0,0,3554,3579,5,151,0,0,3555,3579,5,25,0,0,3556,3579, + 5,173,0,0,3557,3579,5,117,0,0,3558,3579,5,233,0,0,3559,3579,5,95, + 0,0,3560,3579,5,71,0,0,3561,3579,5,302,0,0,3562,3579,5,304,0,0,3563, + 3579,5,303,0,0,3564,3579,5,284,0,0,3565,3579,5,41,0,0,3566,3579, + 5,40,0,0,3567,3579,5,333,0,0,3568,3579,5,26,0,0,3569,3579,5,80,0, + 0,3570,3579,5,79,0,0,3571,3579,5,199,0,0,3572,3579,5,339,0,0,3573, + 3579,5,149,0,0,3574,3579,5,19,0,0,3575,3579,5,285,0,0,3576,3579, + 5,176,0,0,3577,3579,3,374,187,0,3578,3548,1,0,0,0,3578,3549,1,0, + 0,0,3578,3550,1,0,0,0,3578,3551,1,0,0,0,3578,3552,1,0,0,0,3578,3553, + 1,0,0,0,3578,3554,1,0,0,0,3578,3555,1,0,0,0,3578,3556,1,0,0,0,3578, + 3557,1,0,0,0,3578,3558,1,0,0,0,3578,3559,1,0,0,0,3578,3560,1,0,0, + 0,3578,3561,1,0,0,0,3578,3562,1,0,0,0,3578,3563,1,0,0,0,3578,3564, + 1,0,0,0,3578,3565,1,0,0,0,3578,3566,1,0,0,0,3578,3567,1,0,0,0,3578, + 3568,1,0,0,0,3578,3569,1,0,0,0,3578,3570,1,0,0,0,3578,3571,1,0,0, + 0,3578,3572,1,0,0,0,3578,3573,1,0,0,0,3578,3574,1,0,0,0,3578,3575, + 1,0,0,0,3578,3576,1,0,0,0,3578,3577,1,0,0,0,3579,315,1,0,0,0,3580, + 3581,5,19,0,0,3581,3582,5,355,0,0,3582,3583,3,316,158,0,3583,3584, + 5,357,0,0,3584,3627,1,0,0,0,3585,3586,5,176,0,0,3586,3587,5,355, + 0,0,3587,3588,3,316,158,0,3588,3589,5,4,0,0,3589,3590,3,316,158, + 0,3590,3591,5,357,0,0,3591,3627,1,0,0,0,3592,3599,5,285,0,0,3593, + 3595,5,355,0,0,3594,3596,3,344,172,0,3595,3594,1,0,0,0,3595,3596, + 1,0,0,0,3596,3597,1,0,0,0,3597,3600,5,357,0,0,3598,3600,5,353,0, + 0,3599,3593,1,0,0,0,3599,3598,1,0,0,0,3600,3627,1,0,0,0,3601,3602, + 5,149,0,0,3602,3605,7,52,0,0,3603,3604,5,308,0,0,3604,3606,5,185, + 0,0,3605,3603,1,0,0,0,3605,3606,1,0,0,0,3606,3627,1,0,0,0,3607,3608, + 5,149,0,0,3608,3611,7,53,0,0,3609,3610,5,308,0,0,3610,3612,7,54, + 0,0,3611,3609,1,0,0,0,3611,3612,1,0,0,0,3612,3627,1,0,0,0,3613,3624, + 3,314,157,0,3614,3615,5,2,0,0,3615,3620,5,381,0,0,3616,3617,5,4, + 0,0,3617,3619,5,381,0,0,3618,3616,1,0,0,0,3619,3622,1,0,0,0,3620, + 3618,1,0,0,0,3620,3621,1,0,0,0,3621,3623,1,0,0,0,3622,3620,1,0,0, + 0,3623,3625,5,3,0,0,3624,3614,1,0,0,0,3624,3625,1,0,0,0,3625,3627, + 1,0,0,0,3626,3580,1,0,0,0,3626,3585,1,0,0,0,3626,3592,1,0,0,0,3626, + 3601,1,0,0,0,3626,3607,1,0,0,0,3626,3613,1,0,0,0,3627,317,1,0,0, + 0,3628,3633,3,320,160,0,3629,3630,5,4,0,0,3630,3632,3,320,160,0, + 3631,3629,1,0,0,0,3632,3635,1,0,0,0,3633,3631,1,0,0,0,3633,3634, + 1,0,0,0,3634,319,1,0,0,0,3635,3633,1,0,0,0,3636,3637,3,94,47,0,3637, + 3641,3,316,158,0,3638,3640,3,326,163,0,3639,3638,1,0,0,0,3640,3643, + 1,0,0,0,3641,3639,1,0,0,0,3641,3642,1,0,0,0,3642,321,1,0,0,0,3643, + 3641,1,0,0,0,3644,3649,3,324,162,0,3645,3646,5,4,0,0,3646,3648,3, + 324,162,0,3647,3645,1,0,0,0,3648,3651,1,0,0,0,3649,3647,1,0,0,0, + 3649,3650,1,0,0,0,3650,323,1,0,0,0,3651,3649,1,0,0,0,3652,3653,3, + 90,45,0,3653,3657,3,316,158,0,3654,3656,3,326,163,0,3655,3654,1, + 0,0,0,3656,3659,1,0,0,0,3657,3655,1,0,0,0,3657,3658,1,0,0,0,3658, + 325,1,0,0,0,3659,3657,1,0,0,0,3660,3661,5,196,0,0,3661,3666,5,197, + 0,0,3662,3666,3,328,164,0,3663,3666,3,24,12,0,3664,3666,3,312,156, + 0,3665,3660,1,0,0,0,3665,3662,1,0,0,0,3665,3663,1,0,0,0,3665,3664, + 1,0,0,0,3666,327,1,0,0,0,3667,3668,5,82,0,0,3668,3669,3,266,133, + 0,3669,329,1,0,0,0,3670,3671,7,55,0,0,3671,3672,3,266,133,0,3672, + 331,1,0,0,0,3673,3678,3,334,167,0,3674,3675,5,4,0,0,3675,3677,3, + 334,167,0,3676,3674,1,0,0,0,3677,3680,1,0,0,0,3678,3676,1,0,0,0, + 3678,3679,1,0,0,0,3679,333,1,0,0,0,3680,3678,1,0,0,0,3681,3682,3, + 370,185,0,3682,3685,3,316,158,0,3683,3684,5,196,0,0,3684,3686,5, + 197,0,0,3685,3683,1,0,0,0,3685,3686,1,0,0,0,3686,3688,1,0,0,0,3687, + 3689,3,24,12,0,3688,3687,1,0,0,0,3688,3689,1,0,0,0,3689,335,1,0, + 0,0,3690,3695,3,338,169,0,3691,3692,5,4,0,0,3692,3694,3,338,169, + 0,3693,3691,1,0,0,0,3694,3697,1,0,0,0,3695,3693,1,0,0,0,3695,3696, + 1,0,0,0,3696,337,1,0,0,0,3697,3695,1,0,0,0,3698,3699,3,94,47,0,3699, + 3703,3,316,158,0,3700,3702,3,340,170,0,3701,3700,1,0,0,0,3702,3705, + 1,0,0,0,3703,3701,1,0,0,0,3703,3704,1,0,0,0,3704,339,1,0,0,0,3705, + 3703,1,0,0,0,3706,3707,5,196,0,0,3707,3712,5,197,0,0,3708,3712,3, + 328,164,0,3709,3712,3,342,171,0,3710,3712,3,24,12,0,3711,3706,1, + 0,0,0,3711,3708,1,0,0,0,3711,3709,1,0,0,0,3711,3710,1,0,0,0,3712, + 341,1,0,0,0,3713,3714,5,127,0,0,3714,3715,5,12,0,0,3715,3716,5,20, + 0,0,3716,3717,5,2,0,0,3717,3718,3,266,133,0,3718,3719,5,3,0,0,3719, + 343,1,0,0,0,3720,3725,3,346,173,0,3721,3722,5,4,0,0,3722,3724,3, + 346,173,0,3723,3721,1,0,0,0,3724,3727,1,0,0,0,3725,3723,1,0,0,0, + 3725,3726,1,0,0,0,3726,345,1,0,0,0,3727,3725,1,0,0,0,3728,3730,3, + 374,187,0,3729,3731,5,370,0,0,3730,3729,1,0,0,0,3730,3731,1,0,0, + 0,3731,3732,1,0,0,0,3732,3735,3,316,158,0,3733,3734,5,196,0,0,3734, + 3736,5,197,0,0,3735,3733,1,0,0,0,3735,3736,1,0,0,0,3736,3738,1,0, + 0,0,3737,3739,3,24,12,0,3738,3737,1,0,0,0,3738,3739,1,0,0,0,3739, + 347,1,0,0,0,3740,3741,5,342,0,0,3741,3742,3,266,133,0,3742,3743, + 5,299,0,0,3743,3744,3,266,133,0,3744,349,1,0,0,0,3745,3746,5,344, + 0,0,3746,3751,3,354,177,0,3747,3748,5,4,0,0,3748,3750,3,354,177, + 0,3749,3747,1,0,0,0,3750,3753,1,0,0,0,3751,3749,1,0,0,0,3751,3752, + 1,0,0,0,3752,351,1,0,0,0,3753,3751,1,0,0,0,3754,3755,5,350,0,0,3755, + 3756,5,31,0,0,3756,3757,3,92,46,0,3757,353,1,0,0,0,3758,3759,3,370, + 185,0,3759,3760,5,20,0,0,3760,3761,3,356,178,0,3761,355,1,0,0,0, + 3762,3809,3,370,185,0,3763,3764,5,2,0,0,3764,3765,3,370,185,0,3765, + 3766,5,3,0,0,3766,3809,1,0,0,0,3767,3802,5,2,0,0,3768,3769,5,44, + 0,0,3769,3770,5,31,0,0,3770,3775,3,266,133,0,3771,3772,5,4,0,0,3772, + 3774,3,266,133,0,3773,3771,1,0,0,0,3774,3777,1,0,0,0,3775,3773,1, + 0,0,0,3775,3776,1,0,0,0,3776,3803,1,0,0,0,3777,3775,1,0,0,0,3778, + 3779,7,24,0,0,3779,3780,5,31,0,0,3780,3785,3,266,133,0,3781,3782, + 5,4,0,0,3782,3784,3,266,133,0,3783,3781,1,0,0,0,3784,3787,1,0,0, + 0,3785,3783,1,0,0,0,3785,3786,1,0,0,0,3786,3789,1,0,0,0,3787,3785, + 1,0,0,0,3788,3778,1,0,0,0,3788,3789,1,0,0,0,3789,3800,1,0,0,0,3790, + 3791,7,25,0,0,3791,3792,5,31,0,0,3792,3797,3,106,53,0,3793,3794, + 5,4,0,0,3794,3796,3,106,53,0,3795,3793,1,0,0,0,3796,3799,1,0,0,0, + 3797,3795,1,0,0,0,3797,3798,1,0,0,0,3798,3801,1,0,0,0,3799,3797, + 1,0,0,0,3800,3790,1,0,0,0,3800,3801,1,0,0,0,3801,3803,1,0,0,0,3802, + 3768,1,0,0,0,3802,3788,1,0,0,0,3803,3805,1,0,0,0,3804,3806,3,358, + 179,0,3805,3804,1,0,0,0,3805,3806,1,0,0,0,3806,3807,1,0,0,0,3807, + 3809,5,3,0,0,3808,3762,1,0,0,0,3808,3763,1,0,0,0,3808,3767,1,0,0, + 0,3809,357,1,0,0,0,3810,3811,5,232,0,0,3811,3827,3,360,180,0,3812, + 3813,5,257,0,0,3813,3827,3,360,180,0,3814,3815,5,232,0,0,3815,3816, + 5,24,0,0,3816,3817,3,360,180,0,3817,3818,5,14,0,0,3818,3819,3,360, + 180,0,3819,3827,1,0,0,0,3820,3821,5,257,0,0,3821,3822,5,24,0,0,3822, + 3823,3,360,180,0,3823,3824,5,14,0,0,3824,3825,3,360,180,0,3825,3827, + 1,0,0,0,3826,3810,1,0,0,0,3826,3812,1,0,0,0,3826,3814,1,0,0,0,3826, + 3820,1,0,0,0,3827,359,1,0,0,0,3828,3829,5,320,0,0,3829,3836,7,56, + 0,0,3830,3831,5,62,0,0,3831,3836,5,256,0,0,3832,3833,3,266,133,0, + 3833,3834,7,56,0,0,3834,3836,1,0,0,0,3835,3828,1,0,0,0,3835,3830, + 1,0,0,0,3835,3832,1,0,0,0,3836,361,1,0,0,0,3837,3842,3,368,184,0, + 3838,3839,5,4,0,0,3839,3841,3,368,184,0,3840,3838,1,0,0,0,3841,3844, + 1,0,0,0,3842,3840,1,0,0,0,3842,3843,1,0,0,0,3843,363,1,0,0,0,3844, + 3842,1,0,0,0,3845,3846,5,136,0,0,3846,3847,5,2,0,0,3847,3848,3,266, + 133,0,3848,3849,5,3,0,0,3849,3855,1,0,0,0,3850,3855,3,368,184,0, + 3851,3855,5,114,0,0,3852,3855,5,161,0,0,3853,3855,5,249,0,0,3854, + 3845,1,0,0,0,3854,3850,1,0,0,0,3854,3851,1,0,0,0,3854,3852,1,0,0, + 0,3854,3853,1,0,0,0,3855,365,1,0,0,0,3856,3857,3,368,184,0,3857, + 367,1,0,0,0,3858,3863,3,374,187,0,3859,3860,5,5,0,0,3860,3862,3, + 374,187,0,3861,3859,1,0,0,0,3862,3865,1,0,0,0,3863,3861,1,0,0,0, + 3863,3864,1,0,0,0,3864,369,1,0,0,0,3865,3863,1,0,0,0,3866,3867,3, + 374,187,0,3867,3868,3,372,186,0,3868,371,1,0,0,0,3869,3870,5,361, + 0,0,3870,3872,3,374,187,0,3871,3869,1,0,0,0,3872,3873,1,0,0,0,3873, + 3871,1,0,0,0,3873,3874,1,0,0,0,3874,3877,1,0,0,0,3875,3877,1,0,0, + 0,3876,3871,1,0,0,0,3876,3875,1,0,0,0,3877,373,1,0,0,0,3878,3881, + 3,376,188,0,3879,3881,3,394,197,0,3880,3878,1,0,0,0,3880,3879,1, + 0,0,0,3881,375,1,0,0,0,3882,3887,5,387,0,0,3883,3887,3,378,189,0, + 3884,3887,3,392,196,0,3885,3887,3,396,198,0,3886,3882,1,0,0,0,3886, + 3883,1,0,0,0,3886,3884,1,0,0,0,3886,3885,1,0,0,0,3887,377,1,0,0, + 0,3888,3889,7,57,0,0,3889,379,1,0,0,0,3890,3891,5,388,0,0,3891,381, + 1,0,0,0,3892,3894,5,361,0,0,3893,3892,1,0,0,0,3893,3894,1,0,0,0, + 3894,3895,1,0,0,0,3895,3933,5,382,0,0,3896,3898,5,361,0,0,3897,3896, + 1,0,0,0,3897,3898,1,0,0,0,3898,3899,1,0,0,0,3899,3933,5,383,0,0, + 3900,3902,5,361,0,0,3901,3900,1,0,0,0,3901,3902,1,0,0,0,3902,3903, + 1,0,0,0,3903,3933,7,58,0,0,3904,3906,5,361,0,0,3905,3904,1,0,0,0, + 3905,3906,1,0,0,0,3906,3907,1,0,0,0,3907,3933,5,381,0,0,3908,3910, + 5,361,0,0,3909,3908,1,0,0,0,3909,3910,1,0,0,0,3910,3911,1,0,0,0, + 3911,3933,5,378,0,0,3912,3914,5,361,0,0,3913,3912,1,0,0,0,3913,3914, + 1,0,0,0,3914,3915,1,0,0,0,3915,3933,5,379,0,0,3916,3918,5,361,0, + 0,3917,3916,1,0,0,0,3917,3918,1,0,0,0,3918,3919,1,0,0,0,3919,3933, + 5,380,0,0,3920,3922,5,361,0,0,3921,3920,1,0,0,0,3921,3922,1,0,0, + 0,3922,3923,1,0,0,0,3923,3933,5,385,0,0,3924,3926,5,361,0,0,3925, + 3924,1,0,0,0,3925,3926,1,0,0,0,3926,3927,1,0,0,0,3927,3933,5,384, + 0,0,3928,3930,5,361,0,0,3929,3928,1,0,0,0,3929,3930,1,0,0,0,3930, + 3931,1,0,0,0,3931,3933,5,386,0,0,3932,3893,1,0,0,0,3932,3897,1,0, + 0,0,3932,3901,1,0,0,0,3932,3905,1,0,0,0,3932,3909,1,0,0,0,3932,3913, + 1,0,0,0,3932,3917,1,0,0,0,3932,3921,1,0,0,0,3932,3925,1,0,0,0,3932, + 3929,1,0,0,0,3933,383,1,0,0,0,3934,3935,5,318,0,0,3935,3946,3,316, + 158,0,3936,3946,3,24,12,0,3937,3946,3,312,156,0,3938,3939,7,59,0, + 0,3939,3940,5,196,0,0,3940,3946,5,197,0,0,3941,3942,5,268,0,0,3942, + 3946,3,328,164,0,3943,3944,5,96,0,0,3944,3946,5,82,0,0,3945,3934, + 1,0,0,0,3945,3936,1,0,0,0,3945,3937,1,0,0,0,3945,3938,1,0,0,0,3945, + 3941,1,0,0,0,3945,3943,1,0,0,0,3946,385,1,0,0,0,3947,3948,7,60,0, + 0,3948,387,1,0,0,0,3949,3952,3,386,193,0,3950,3952,5,197,0,0,3951, + 3949,1,0,0,0,3951,3950,1,0,0,0,3952,389,1,0,0,0,3953,3956,5,381, + 0,0,3954,3956,3,386,193,0,3955,3953,1,0,0,0,3955,3954,1,0,0,0,3956, + 391,1,0,0,0,3957,3958,7,61,0,0,3958,393,1,0,0,0,3959,3960,7,62,0, + 0,3960,395,1,0,0,0,3961,3962,7,63,0,0,3962,397,1,0,0,0,517,401,408, + 412,417,424,429,437,439,458,462,468,471,474,481,484,488,491,496, + 507,509,517,520,524,527,533,544,550,555,588,598,609,620,631,636, + 645,649,655,659,664,670,682,690,696,707,711,716,731,735,742,746, + 752,781,785,790,797,803,806,809,813,817,825,827,836,839,848,853, + 859,866,869,873,884,887,893,897,912,914,922,926,932,935,939,942, + 948,953,957,964,967,970,977,982,991,999,1005,1008,1011,1017,1021, + 1026,1029,1033,1035,1043,1051,1054,1061,1064,1067,1076,1081,1087, + 1092,1095,1099,1102,1106,1134,1137,1145,1151,1154,1157,1162,1170, + 1175,1181,1187,1190,1197,1204,1212,1229,1256,1259,1265,1274,1283, + 1289,1294,1299,1306,1311,1316,1323,1331,1334,1338,1350,1354,1361, + 1477,1485,1493,1502,1512,1516,1519,1523,1529,1541,1553,1558,1567, + 1575,1580,1582,1590,1595,1599,1602,1610,1615,1624,1629,1632,1637, + 1641,1646,1648,1652,1661,1669,1675,1686,1693,1702,1707,1710,1732, + 1734,1743,1750,1753,1760,1764,1770,1778,1785,1788,1796,1807,1818, + 1826,1832,1844,1851,1858,1870,1878,1884,1890,1893,1909,1916,1927, + 1936,1939,1948,1951,1960,1963,1972,1975,1978,1983,1985,1989,2000, + 2006,2012,2015,2017,2029,2033,2036,2040,2046,2050,2058,2062,2065, + 2068,2071,2075,2079,2084,2088,2091,2094,2097,2101,2106,2110,2113, + 2116,2119,2121,2127,2134,2139,2142,2145,2149,2159,2163,2165,2168, + 2172,2178,2182,2193,2203,2207,2219,2231,2246,2251,2257,2264,2280, + 2285,2298,2303,2311,2317,2321,2324,2329,2336,2342,2351,2361,2376, + 2381,2383,2388,2397,2410,2415,2419,2426,2431,2435,2438,2441,2455, + 2468,2473,2477,2480,2484,2490,2493,2500,2512,2523,2536,2547,2552, + 2560,2565,2579,2588,2591,2596,2603,2606,2612,2618,2621,2626,2631, + 2635,2641,2645,2648,2653,2656,2661,2665,2668,2671,2677,2682,2689, + 2692,2710,2712,2715,2726,2735,2742,2750,2757,2762,2765,2768,2776, + 2784,2790,2798,2806,2813,2820,2822,2835,2841,2843,2853,2859,2861, + 2869,2873,2882,2885,2891,2895,2897,2906,2918,2920,2927,2934,2940, + 2946,2948,2955,2963,2971,2977,2982,2989,2995,2998,3002,3004,3011, + 3020,3027,3037,3042,3046,3056,3063,3076,3078,3086,3088,3092,3100, + 3109,3115,3123,3128,3140,3145,3148,3154,3158,3163,3168,3173,3179, + 3200,3202,3213,3225,3237,3241,3250,3254,3272,3275,3283,3292,3301, + 3324,3340,3347,3350,3359,3363,3367,3379,3404,3411,3414,3429,3450, + 3454,3456,3466,3468,3478,3493,3495,3508,3512,3519,3524,3532,3537, + 3546,3578,3595,3599,3605,3611,3620,3624,3626,3633,3641,3649,3657, + 3665,3678,3685,3688,3695,3703,3711,3725,3730,3735,3738,3751,3775, + 3785,3788,3797,3800,3802,3805,3808,3826,3835,3842,3854,3863,3873, + 3876,3880,3886,3893,3897,3901,3905,3909,3913,3917,3921,3925,3929, + 3932,3945,3951,3955 ]; private static __ATN: antlr.ATN; @@ -20021,50 +20505,3406 @@ export class SingleStatementContext extends antlr.ParserRuleContext { export class StatementContext extends antlr.ParserRuleContext { - public _pattern?: StringLitContext; - public _target?: TableNameCreateContext; - public _source?: TableNameContext; - public _tableProps?: PropertyListContext; - public _table?: TableNameContext; - public _column?: ColumnNameContext; - public _colName?: ColumnNameContext; - public _className?: StringLitContext; - public _options?: PropertyListContext; - public _partitioning?: PartitionFieldListContext; - public _ns?: DbSchemaNameContext; - public _key?: PropertyKeyContext; - public _legacy?: MultipartIdentifierContext; - public _db_name?: DbSchemaNameContext; - public _option?: Token | null; - public _path?: StringLitContext; - public _op?: Token | null; - public _indexType?: IdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_statement; + } + public override copyFrom(ctx: StatementContext): void { + super.copyFrom(ctx); + } +} +export class ResetAnyContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_RESET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_RESET, 0)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterResetAny) { + listener.enterResetAny(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitResetAny) { + listener.exitResetAny(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitResetAny) { + return visitor.visitResetAny(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class AlterTableDropColumnContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_DROP(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DROP, 0)!; + } + public KW_COLUMN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COLUMN, 0)!; + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAlterTableDropColumn) { + listener.enterAlterTableDropColumn(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAlterTableDropColumn) { + listener.exitAlterTableDropColumn(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAlterTableDropColumn) { + return visitor.visitAlterTableDropColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DropMaterializedViewContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_DROP(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DROP, 0)!; + } + public KW_MATERIALIZED(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_MATERIALIZED, 0)!; + } + public KW_VIEW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEW, 0)!; + } + public viewName(): ViewNameContext { + return this.getRuleContext(0, ViewNameContext)!; + } + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDropMaterializedView) { + listener.enterDropMaterializedView(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDropMaterializedView) { + listener.exitDropMaterializedView(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDropMaterializedView) { + return visitor.visitDropMaterializedView(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class AlterViewQueryContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_VIEW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEW, 0)!; + } + public viewName(): ViewNameContext { + return this.getRuleContext(0, ViewNameContext)!; + } + public query(): QueryContext { + return this.getRuleContext(0, QueryContext)!; + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_AS, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAlterViewQuery) { + listener.enterAlterViewQuery(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAlterViewQuery) { + listener.exitAlterViewQuery(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAlterViewQuery) { + return visitor.visitAlterViewQuery(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DropNamespaceContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_DROP(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DROP, 0)!; + } + public namespace(): NamespaceContext { + return this.getRuleContext(0, NamespaceContext)!; + } + public namespaceName(): NamespaceNameContext { + return this.getRuleContext(0, NamespaceNameContext)!; + } + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); + } + public KW_RESTRICT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_RESTRICT, 0); + } + public KW_CASCADE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_CASCADE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDropNamespace) { + listener.enterDropNamespace(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDropNamespace) { + listener.exitDropNamespace(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDropNamespace) { + return visitor.visitDropNamespace(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CreateTempViewUsingContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; + } + public KW_TEMPORARY(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TEMPORARY, 0)!; + } + public KW_VIEW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEW, 0)!; + } + public viewNameCreate(): ViewNameCreateContext { + return this.getRuleContext(0, ViewNameCreateContext)!; + } + public tableProvider(): TableProviderContext { + return this.getRuleContext(0, TableProviderContext)!; + } + public KW_OR(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OR, 0); + } + public KW_REPLACE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_REPLACE, 0); + } + public KW_GLOBAL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_GLOBAL, 0); + } + public LEFT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0); + } + public colTypeList(): ColTypeListContext | null { + return this.getRuleContext(0, ColTypeListContext); + } + public RIGHT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0); + } + public KW_OPTIONS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OPTIONS, 0); + } + public propertyList(): PropertyListContext | null { + return this.getRuleContext(0, PropertyListContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterCreateTempViewUsing) { + listener.enterCreateTempViewUsing(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitCreateTempViewUsing) { + listener.exitCreateTempViewUsing(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitCreateTempViewUsing) { + return visitor.visitCreateTempViewUsing(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RenameTableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_RENAME(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_RENAME, 0)!; + } + public KW_TO(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TO, 0)!; + } + public multipartIdentifier(): MultipartIdentifierContext { + return this.getRuleContext(0, MultipartIdentifierContext)!; + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); + } + public KW_VIEW(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VIEW, 0); + } + public viewName(): ViewNameContext | null { + return this.getRuleContext(0, ViewNameContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterRenameTable) { + listener.enterRenameTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitRenameTable) { + listener.exitRenameTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitRenameTable) { + return visitor.visitRenameTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DeclareVariableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_DECLARE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DECLARE, 0)!; + } + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; + } + public KW_OR(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OR, 0); + } + public KW_REPLACE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_REPLACE, 0); + } + public KW_VARIABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VARIABLE, 0); + } + public dataType(): DataTypeContext | null { + return this.getRuleContext(0, DataTypeContext); + } + public variableDefaultExpression(): VariableDefaultExpressionContext | null { + return this.getRuleContext(0, VariableDefaultExpressionContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDeclareVariable) { + listener.enterDeclareVariable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDeclareVariable) { + listener.exitDeclareVariable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDeclareVariable) { + return visitor.visitDeclareVariable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class FailNativeCommandContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public KW_ROLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ROLE, 0)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterFailNativeCommand) { + listener.enterFailNativeCommand(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitFailNativeCommand) { + listener.exitFailNativeCommand(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitFailNativeCommand) { + return visitor.visitFailNativeCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetCatalogContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public KW_CATALOG(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CATALOG, 0)!; + } + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetCatalog) { + listener.enterSetCatalog(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetCatalog) { + listener.exitSetCatalog(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetCatalog) { + return visitor.visitSetCatalog(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class AlterMaterializedViewPropertiesContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_MATERIALIZED(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_MATERIALIZED, 0)!; + } + public KW_VIEW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEW, 0)!; + } + public viewName(): ViewNameContext { + return this.getRuleContext(0, ViewNameContext)!; + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public KW_TBLPROPERTIES(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TBLPROPERTIES, 0)!; + } + public propertyList(): PropertyListContext { + return this.getRuleContext(0, PropertyListContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAlterMaterializedViewProperties) { + listener.enterAlterMaterializedViewProperties(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAlterMaterializedViewProperties) { + listener.exitAlterMaterializedViewProperties(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAlterMaterializedViewProperties) { + return visitor.visitAlterMaterializedViewProperties(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ClearCacheContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_CLEAR(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CLEAR, 0)!; + } + public KW_CACHE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CACHE, 0)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterClearCache) { + listener.enterClearCache(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitClearCache) { + listener.exitClearCache(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitClearCache) { + return visitor.visitClearCache(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DropViewContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_DROP(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DROP, 0)!; + } + public KW_VIEW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEW, 0)!; + } + public viewName(): ViewNameContext { + return this.getRuleContext(0, ViewNameContext)!; + } + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDropView) { + listener.enterDropView(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDropView) { + listener.exitDropView(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDropView) { + return visitor.visitDropView(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowTablesContext extends StatementContext { + public _pattern?: StringLitContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_TABLES(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLES, 0)!; + } + public namespaceName(): NamespaceNameContext | null { + return this.getRuleContext(0, NamespaceNameContext); + } + public KW_FROM(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FROM, 0); + } + public KW_IN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_IN, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LIKE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowTables) { + listener.enterShowTables(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowTables) { + listener.exitShowTables(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowTables) { + return visitor.visitShowTables(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RecoverPartitionsContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_RECOVER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_RECOVER, 0)!; + } + public KW_PARTITIONS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_PARTITIONS, 0)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterRecoverPartitions) { + listener.enterRecoverPartitions(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitRecoverPartitions) { + listener.exitRecoverPartitions(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitRecoverPartitions) { + return visitor.visitRecoverPartitions(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DropIndexContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_DROP(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DROP, 0)!; + } + public KW_INDEX(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_INDEX, 0)!; + } + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; + } + public KW_ON(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ON, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDropIndex) { + listener.enterDropIndex(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDropIndex) { + listener.exitDropIndex(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDropIndex) { + return visitor.visitDropIndex(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetTimeZoneIntervalContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public KW_TIME(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TIME, 0)!; + } + public KW_ZONE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ZONE, 0)!; + } + public interval(): IntervalContext { + return this.getRuleContext(0, IntervalContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetTimeZoneInterval) { + listener.enterSetTimeZoneInterval(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetTimeZoneInterval) { + listener.exitSetTimeZoneInterval(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetTimeZoneInterval) { + return visitor.visitSetTimeZoneInterval(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowCatalogsContext extends StatementContext { + public _pattern?: StringLitContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_CATALOGS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CATALOGS, 0)!; + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LIKE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowCatalogs) { + listener.enterShowCatalogs(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowCatalogs) { + listener.exitShowCatalogs(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowCatalogs) { + return visitor.visitShowCatalogs(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowCurrentNamespaceContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_CURRENT(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CURRENT, 0)!; + } + public namespace(): NamespaceContext { + return this.getRuleContext(0, NamespaceContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowCurrentNamespace) { + listener.enterShowCurrentNamespace(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowCurrentNamespace) { + listener.exitShowCurrentNamespace(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowCurrentNamespace) { + return visitor.visitShowCurrentNamespace(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RenameTablePartitionContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public partitionSpec(): PartitionSpecContext[]; + public partitionSpec(i: number): PartitionSpecContext | null; + public partitionSpec(i?: number): PartitionSpecContext[] | PartitionSpecContext | null { + if (i === undefined) { + return this.getRuleContexts(PartitionSpecContext); + } + + return this.getRuleContext(i, PartitionSpecContext); + } + public KW_RENAME(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_RENAME, 0)!; + } + public KW_TO(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TO, 0)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterRenameTablePartition) { + listener.enterRenameTablePartition(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitRenameTablePartition) { + listener.exitRenameTablePartition(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitRenameTablePartition) { + return visitor.visitRenameTablePartition(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RepairTableContext extends StatementContext { + public _option?: Token | null; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_REPAIR(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_REPAIR, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_MSCK(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_MSCK, 0); + } + public KW_PARTITIONS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_PARTITIONS, 0); + } + public KW_ADD(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ADD, 0); + } + public KW_DROP(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DROP, 0); + } + public KW_SYNC(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SYNC, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterRepairTable) { + listener.enterRepairTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitRepairTable) { + listener.exitRepairTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitRepairTable) { + return visitor.visitRepairTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RefreshResourceContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_REFRESH(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_REFRESH, 0)!; + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterRefreshResource) { + listener.enterRefreshResource(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitRefreshResource) { + listener.exitRefreshResource(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitRefreshResource) { + return visitor.visitRefreshResource(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetVariableAssignmentContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public assignmentList(): AssignmentListContext { + return this.getRuleContext(0, AssignmentListContext)!; + } + public KW_VARIABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VARIABLE, 0); + } + public KW_VAR(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VAR, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetVariableAssignment) { + listener.enterSetVariableAssignment(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetVariableAssignment) { + listener.exitSetVariableAssignment(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetVariableAssignment) { + return visitor.visitSetVariableAssignment(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowCreateTableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_AS, 0); + } + public KW_SERDE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SERDE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowCreateTable) { + listener.enterShowCreateTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowCreateTable) { + listener.exitShowCreateTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowCreateTable) { + return visitor.visitShowCreateTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowNamespacesContext extends StatementContext { + public _pattern?: StringLitContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public namespaces(): NamespacesContext { + return this.getRuleContext(0, NamespacesContext)!; + } + public multipartIdentifier(): MultipartIdentifierContext | null { + return this.getRuleContext(0, MultipartIdentifierContext); + } + public KW_FROM(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FROM, 0); + } + public KW_IN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_IN, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LIKE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowNamespaces) { + listener.enterShowNamespaces(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowNamespaces) { + listener.exitShowNamespaces(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowNamespaces) { + return visitor.visitShowNamespaces(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowColumnsContext extends StatementContext { + public _table?: TableNameContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_COLUMNS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COLUMNS, 0)!; + } + public KW_FROM(): antlr.TerminalNode[]; + public KW_FROM(i: number): antlr.TerminalNode | null; + public KW_FROM(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_FROM); + } else { + return this.getToken(SparkSqlParser.KW_FROM, i); + } + } + public KW_IN(): antlr.TerminalNode[]; + public KW_IN(i: number): antlr.TerminalNode | null; + public KW_IN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_IN); + } else { + return this.getToken(SparkSqlParser.KW_IN, i); + } + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public namespaceName(): NamespaceNameContext | null { + return this.getRuleContext(0, NamespaceNameContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowColumns) { + listener.enterShowColumns(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowColumns) { + listener.exitShowColumns(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowColumns) { + return visitor.visitShowColumns(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ReplaceTableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public replaceTableHeader(): ReplaceTableHeaderContext { + return this.getRuleContext(0, ReplaceTableHeaderContext)!; + } + public createTableClauses(): CreateTableClausesContext { + return this.getRuleContext(0, CreateTableClausesContext)!; + } + public LEFT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0); + } + public createOrReplaceTableColTypeList(): CreateOrReplaceTableColTypeListContext | null { + return this.getRuleContext(0, CreateOrReplaceTableColTypeListContext); + } + public RIGHT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0); + } + public tableProvider(): TableProviderContext | null { + return this.getRuleContext(0, TableProviderContext); + } public query(): QueryContext | null { return this.getRuleContext(0, QueryContext); } - public dmlStatementNoWith(): DmlStatementNoWithContext | null { - return this.getRuleContext(0, DmlStatementNoWithContext); + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_AS, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterReplaceTable) { + listener.enterReplaceTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitReplaceTable) { + listener.exitReplaceTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitReplaceTable) { + return visitor.visitReplaceTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class AnalyzeTablesContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ANALYZE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ANALYZE, 0)!; + } + public KW_TABLES(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLES, 0)!; + } + public KW_COMPUTE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COMPUTE, 0)!; + } + public KW_STATISTICS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_STATISTICS, 0)!; + } + public namespaceName(): NamespaceNameContext | null { + return this.getRuleContext(0, NamespaceNameContext); + } + public KW_NOSCAN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NOSCAN, 0); + } + public KW_FROM(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FROM, 0); + } + public KW_IN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_IN, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAnalyzeTables) { + listener.enterAnalyzeTables(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAnalyzeTables) { + listener.exitAnalyzeTables(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAnalyzeTables) { + return visitor.visitAnalyzeTables(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class AddTablePartitionContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_ADD(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ADD, 0)!; + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); + } + public KW_VIEW(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VIEW, 0); + } + public viewName(): ViewNameContext | null { + return this.getRuleContext(0, ViewNameContext); + } + public ifNotExists(): IfNotExistsContext | null { + return this.getRuleContext(0, IfNotExistsContext); + } + public partitionSpecLocation(): PartitionSpecLocationContext[]; + public partitionSpecLocation(i: number): PartitionSpecLocationContext | null; + public partitionSpecLocation(i?: number): PartitionSpecLocationContext[] | PartitionSpecLocationContext | null { + if (i === undefined) { + return this.getRuleContexts(PartitionSpecLocationContext); + } + + return this.getRuleContext(i, PartitionSpecLocationContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAddTablePartition) { + listener.enterAddTablePartition(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAddTablePartition) { + listener.exitAddTablePartition(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAddTablePartition) { + return visitor.visitAddTablePartition(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetNamespaceLocationContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public namespace(): NamespaceContext { + return this.getRuleContext(0, NamespaceContext)!; + } + public namespaceName(): NamespaceNameContext { + return this.getRuleContext(0, NamespaceNameContext)!; + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public locationSpec(): LocationSpecContext { + return this.getRuleContext(0, LocationSpecContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetNamespaceLocation) { + listener.enterSetNamespaceLocation(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetNamespaceLocation) { + listener.exitSetNamespaceLocation(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetNamespaceLocation) { + return visitor.visitSetNamespaceLocation(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RefreshTableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_REFRESH(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_REFRESH, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterRefreshTable) { + listener.enterRefreshTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitRefreshTable) { + listener.exitRefreshTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitRefreshTable) { + return visitor.visitRefreshTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetAnyContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetAny) { + listener.enterSetAny(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetAny) { + listener.exitSetAny(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetAny) { + return visitor.visitSetAny(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ResetConfigContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_RESET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_RESET, 0)!; + } + public configKey(): ConfigKeyContext { + return this.getRuleContext(0, ConfigKeyContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterResetConfig) { + listener.enterResetConfig(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitResetConfig) { + listener.exitResetConfig(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitResetConfig) { + return visitor.visitResetConfig(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetConfigAnyKeyContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public EQ(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.EQ, 0)!; + } + public configValue(): ConfigValueContext { + return this.getRuleContext(0, ConfigValueContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetConfigAnyKey) { + listener.enterSetConfigAnyKey(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetConfigAnyKey) { + listener.exitSetConfigAnyKey(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetConfigAnyKey) { + return visitor.visitSetConfigAnyKey(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetNamespacePropertiesContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public namespace(): NamespaceContext { + return this.getRuleContext(0, NamespaceContext)!; + } + public namespaceName(): NamespaceNameContext { + return this.getRuleContext(0, NamespaceNameContext)!; + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public propertyList(): PropertyListContext { + return this.getRuleContext(0, PropertyListContext)!; + } + public KW_DBPROPERTIES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DBPROPERTIES, 0); + } + public KW_PROPERTIES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_PROPERTIES, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetNamespaceProperties) { + listener.enterSetNamespaceProperties(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetNamespaceProperties) { + listener.exitSetNamespaceProperties(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetNamespaceProperties) { + return visitor.visitSetNamespaceProperties(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ManageResourceContext extends StatementContext { + public _op?: Token | null; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; + } + public KW_ADD(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ADD, 0); + } + public KW_LIST(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LIST, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterManageResource) { + listener.enterManageResource(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitManageResource) { + listener.exitManageResource(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitManageResource) { + return visitor.visitManageResource(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ExplainStatementContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_EXPLAIN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_EXPLAIN, 0)!; + } + public statement(): StatementContext { + return this.getRuleContext(0, StatementContext)!; + } + public KW_LOGICAL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LOGICAL, 0); + } + public KW_FORMATTED(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FORMATTED, 0); + } + public KW_EXTENDED(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXTENDED, 0); + } + public KW_CODEGEN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_CODEGEN, 0); + } + public KW_COST(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COST, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterExplainStatement) { + listener.enterExplainStatement(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitExplainStatement) { + listener.exitExplainStatement(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitExplainStatement) { + return visitor.visitExplainStatement(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class AnalyzeContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ANALYZE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ANALYZE, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_COMPUTE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COMPUTE, 0)!; + } + public KW_STATISTICS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_STATISTICS, 0)!; + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public KW_NOSCAN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NOSCAN, 0); + } + public KW_FOR(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FOR, 0); + } + public KW_COLUMNS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COLUMNS, 0); + } + public columnNameSeq(): ColumnNameSeqContext | null { + return this.getRuleContext(0, ColumnNameSeqContext); + } + public KW_ALL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ALL, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAnalyze) { + listener.enterAnalyze(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAnalyze) { + listener.exitAnalyze(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAnalyze) { + return visitor.visitAnalyze(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CreateFunctionContext extends StatementContext { + public _className?: StringLitContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; + } + public KW_FUNCTION(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_FUNCTION, 0)!; + } + public functionNameCreate(): FunctionNameCreateContext { + return this.getRuleContext(0, FunctionNameCreateContext)!; + } + public KW_AS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_AS, 0)!; + } + public stringLit(): StringLitContext { + return this.getRuleContext(0, StringLitContext)!; + } + public KW_OR(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OR, 0); + } + public KW_REPLACE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_REPLACE, 0); + } + public KW_TEMPORARY(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TEMPORARY, 0); + } + public ifNotExists(): IfNotExistsContext | null { + return this.getRuleContext(0, IfNotExistsContext); + } + public KW_USING(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_USING, 0); + } + public resource(): ResourceContext[]; + public resource(i: number): ResourceContext | null; + public resource(i?: number): ResourceContext[] | ResourceContext | null { + if (i === undefined) { + return this.getRuleContexts(ResourceContext); + } + + return this.getRuleContext(i, ResourceContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.COMMA); + } else { + return this.getToken(SparkSqlParser.COMMA, i); + } + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterCreateFunction) { + listener.enterCreateFunction(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitCreateFunction) { + listener.exitCreateFunction(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitCreateFunction) { + return visitor.visitCreateFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class UnCacheTableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_UNCACHE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_UNCACHE, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterUnCacheTable) { + listener.enterUnCacheTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitUnCacheTable) { + listener.exitUnCacheTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitUnCacheTable) { + return visitor.visitUnCacheTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class AlterTableAddColumnsContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_ADD(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ADD, 0)!; + } + public KW_COLUMNS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COLUMNS, 0)!; + } + public LEFT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; + } + public qualifiedColTypeWithPositionSeqForAdd(): QualifiedColTypeWithPositionSeqForAddContext { + return this.getRuleContext(0, QualifiedColTypeWithPositionSeqForAddContext)!; + } + public RIGHT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAlterTableAddColumns) { + listener.enterAlterTableAddColumns(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAlterTableAddColumns) { + listener.exitAlterTableAddColumns(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAlterTableAddColumns) { + return visitor.visitAlterTableAddColumns(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class HiveReplaceColumnsContext extends StatementContext { + public _table?: TableNameContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public KW_REPLACE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_REPLACE, 0)!; + } + public KW_COLUMNS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COLUMNS, 0)!; + } + public LEFT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; + } + public qualifiedColTypeWithPositionSeqForReplace(): QualifiedColTypeWithPositionSeqForReplaceContext { + return this.getRuleContext(0, QualifiedColTypeWithPositionSeqForReplaceContext)!; + } + public RIGHT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterHiveReplaceColumns) { + listener.enterHiveReplaceColumns(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitHiveReplaceColumns) { + listener.exitHiveReplaceColumns(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitHiveReplaceColumns) { + return visitor.visitHiveReplaceColumns(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class AlterTableAddColumnContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_ADD(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ADD, 0)!; + } + public KW_COLUMN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COLUMN, 0)!; + } + public qualifiedColTypeWithPositionForAdd(): QualifiedColTypeWithPositionForAddContext { + return this.getRuleContext(0, QualifiedColTypeWithPositionForAddContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAlterTableAddColumn) { + listener.enterAlterTableAddColumn(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAlterTableAddColumn) { + listener.exitAlterTableAddColumn(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAlterTableAddColumn) { + return visitor.visitAlterTableAddColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CommentNamespaceContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_COMMENT(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COMMENT, 0)!; + } + public KW_ON(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ON, 0)!; + } + public namespace(): NamespaceContext { + return this.getRuleContext(0, NamespaceContext)!; + } + public namespaceName(): NamespaceNameContext { + return this.getRuleContext(0, NamespaceNameContext)!; + } + public KW_IS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_IS, 0)!; + } + public comment(): CommentContext { + return this.getRuleContext(0, CommentContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterCommentNamespace) { + listener.enterCommentNamespace(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitCommentNamespace) { + listener.exitCommentNamespace(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitCommentNamespace) { + return visitor.visitCommentNamespace(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CreateTableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public createTableHeader(): CreateTableHeaderContext { + return this.getRuleContext(0, CreateTableHeaderContext)!; + } + public createTableClauses(): CreateTableClausesContext { + return this.getRuleContext(0, CreateTableClausesContext)!; + } + public LEFT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0); + } + public createOrReplaceTableColTypeList(): CreateOrReplaceTableColTypeListContext | null { + return this.getRuleContext(0, CreateOrReplaceTableColTypeListContext); + } + public RIGHT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0); + } + public tableProvider(): TableProviderContext | null { + return this.getRuleContext(0, TableProviderContext); + } + public query(): QueryContext | null { + return this.getRuleContext(0, QueryContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_AS, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterCreateTable) { + listener.enterCreateTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitCreateTable) { + listener.exitCreateTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitCreateTable) { + return visitor.visitCreateTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DmlStatementContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public dmlStatementNoWith(): DmlStatementNoWithContext { + return this.getRuleContext(0, DmlStatementNoWithContext)!; } public ctes(): CtesContext | null { return this.getRuleContext(0, CtesContext); } - public KW_USE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_USE, 0); + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDmlStatement) { + listener.enterDmlStatement(this); + } } - public dbSchemaName(): DbSchemaNameContext | null { - return this.getRuleContext(0, DbSchemaNameContext); + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDmlStatement) { + listener.exitDmlStatement(this); + } } - public dbSchema(): DbSchemaContext | null { - return this.getRuleContext(0, DbSchemaContext); + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDmlStatement) { + return visitor.visitDmlStatement(this); + } else { + return visitor.visitChildren(this); + } } - public KW_SET(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SET, 0); +} +export class AlterMaterializedViewRewriteContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } - public KW_CATALOG(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CATALOG, 0); + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_MATERIALIZED(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_MATERIALIZED, 0)!; + } + public KW_VIEW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEW, 0)!; + } + public viewName(): ViewNameContext { + return this.getRuleContext(0, ViewNameContext)!; + } + public KW_REWRITE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_REWRITE, 0)!; + } + public KW_ENABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ENABLE, 0); + } + public KW_DISABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DISABLE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAlterMaterializedViewRewrite) { + listener.enterAlterMaterializedViewRewrite(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAlterMaterializedViewRewrite) { + listener.exitAlterMaterializedViewRewrite(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAlterMaterializedViewRewrite) { + return visitor.visitAlterMaterializedViewRewrite(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CreateTableLikeContext extends StatementContext { + public _target?: TableNameCreateContext; + public _source?: TableNameContext; + public _tableProps?: PropertyListContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public KW_LIKE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_LIKE, 0)!; + } + public tableNameCreate(): TableNameCreateContext { + return this.getRuleContext(0, TableNameCreateContext)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public ifNotExists(): IfNotExistsContext | null { + return this.getRuleContext(0, IfNotExistsContext); + } + public tableProvider(): TableProviderContext[]; + public tableProvider(i: number): TableProviderContext | null; + public tableProvider(i?: number): TableProviderContext[] | TableProviderContext | null { + if (i === undefined) { + return this.getRuleContexts(TableProviderContext); + } + + return this.getRuleContext(i, TableProviderContext); + } + public rowFormat(): RowFormatContext[]; + public rowFormat(i: number): RowFormatContext | null; + public rowFormat(i?: number): RowFormatContext[] | RowFormatContext | null { + if (i === undefined) { + return this.getRuleContexts(RowFormatContext); + } + + return this.getRuleContext(i, RowFormatContext); + } + public createFileFormat(): CreateFileFormatContext[]; + public createFileFormat(i: number): CreateFileFormatContext | null; + public createFileFormat(i?: number): CreateFileFormatContext[] | CreateFileFormatContext | null { + if (i === undefined) { + return this.getRuleContexts(CreateFileFormatContext); + } + + return this.getRuleContext(i, CreateFileFormatContext); + } + public locationSpec(): LocationSpecContext[]; + public locationSpec(i: number): LocationSpecContext | null; + public locationSpec(i?: number): LocationSpecContext[] | LocationSpecContext | null { + if (i === undefined) { + return this.getRuleContexts(LocationSpecContext); + } + + return this.getRuleContext(i, LocationSpecContext); + } + public KW_TBLPROPERTIES(): antlr.TerminalNode[]; + public KW_TBLPROPERTIES(i: number): antlr.TerminalNode | null; + public KW_TBLPROPERTIES(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_TBLPROPERTIES); + } else { + return this.getToken(SparkSqlParser.KW_TBLPROPERTIES, i); + } + } + public propertyList(): PropertyListContext[]; + public propertyList(i: number): PropertyListContext | null; + public propertyList(i?: number): PropertyListContext[] | PropertyListContext | null { + if (i === undefined) { + return this.getRuleContexts(PropertyListContext); + } + + return this.getRuleContext(i, PropertyListContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterCreateTableLike) { + listener.enterCreateTableLike(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitCreateTableLike) { + listener.exitCreateTableLike(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitCreateTableLike) { + return visitor.visitCreateTableLike(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DropFunctionContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_DROP(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DROP, 0)!; + } + public KW_FUNCTION(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_FUNCTION, 0)!; + } + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; + } + public KW_TEMPORARY(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TEMPORARY, 0); + } + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDropFunction) { + listener.enterDropFunction(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDropFunction) { + listener.exitDropFunction(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDropFunction) { + return visitor.visitDropFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetVariableMultiAssignmentContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public LEFT_PAREN(): antlr.TerminalNode[]; + public LEFT_PAREN(i: number): antlr.TerminalNode | null; + public LEFT_PAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.LEFT_PAREN); + } else { + return this.getToken(SparkSqlParser.LEFT_PAREN, i); + } + } + public multipartIdentifierList(): MultipartIdentifierListContext { + return this.getRuleContext(0, MultipartIdentifierListContext)!; + } + public RIGHT_PAREN(): antlr.TerminalNode[]; + public RIGHT_PAREN(i: number): antlr.TerminalNode | null; + public RIGHT_PAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.RIGHT_PAREN); + } else { + return this.getToken(SparkSqlParser.RIGHT_PAREN, i); + } + } + public EQ(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.EQ, 0)!; + } + public query(): QueryContext { + return this.getRuleContext(0, QueryContext)!; + } + public KW_VARIABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VARIABLE, 0); + } + public KW_VAR(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VAR, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetVariableMultiAssignment) { + listener.enterSetVariableMultiAssignment(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetVariableMultiAssignment) { + listener.exitSetVariableMultiAssignment(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetVariableMultiAssignment) { + return visitor.visitSetVariableMultiAssignment(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DescribeRelationContext extends StatementContext { + public _option?: Token | null; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_DESC(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DESC, 0); + } + public KW_DESCRIBE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DESCRIBE, 0); + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public describeColName(): DescribeColNameContext | null { + return this.getRuleContext(0, DescribeColNameContext); + } + public KW_EXTENDED(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXTENDED, 0); + } + public KW_FORMATTED(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FORMATTED, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDescribeRelation) { + listener.enterDescribeRelation(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDescribeRelation) { + listener.exitDescribeRelation(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDescribeRelation) { + return visitor.visitDescribeRelation(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class LoadDataContext extends StatementContext { + public _path?: StringLitContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_LOAD(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_LOAD, 0)!; + } + public KW_DATA(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DATA, 0)!; + } + public KW_INPATH(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_INPATH, 0)!; + } + public KW_INTO(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_INTO, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public stringLit(): StringLitContext { + return this.getRuleContext(0, StringLitContext)!; + } + public KW_LOCAL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LOCAL, 0); + } + public KW_OVERWRITE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OVERWRITE, 0); + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterLoadData) { + listener.enterLoadData(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitLoadData) { + listener.exitLoadData(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitLoadData) { + return visitor.visitLoadData(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowPartitionsContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_PARTITIONS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_PARTITIONS, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowPartitions) { + listener.enterShowPartitions(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowPartitions) { + listener.exitShowPartitions(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowPartitions) { + return visitor.visitShowPartitions(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DescribeFunctionContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_FUNCTION(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_FUNCTION, 0)!; + } + public describeFuncName(): DescribeFuncNameContext { + return this.getRuleContext(0, DescribeFuncNameContext)!; + } + public KW_DESC(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DESC, 0); + } + public KW_DESCRIBE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DESCRIBE, 0); + } + public KW_EXTENDED(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXTENDED, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDescribeFunction) { + listener.enterDescribeFunction(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDescribeFunction) { + listener.exitDescribeFunction(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDescribeFunction) { + return visitor.visitDescribeFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RenameTableColumnContext extends StatementContext { + public _table?: TableNameContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public KW_RENAME(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_RENAME, 0)!; + } + public KW_COLUMN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COLUMN, 0)!; + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public KW_TO(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TO, 0)!; + } + public columnNameCreate(): ColumnNameCreateContext { + return this.getRuleContext(0, ColumnNameCreateContext)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterRenameTableColumn) { + listener.enterRenameTableColumn(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitRenameTableColumn) { + listener.exitRenameTableColumn(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitRenameTableColumn) { + return visitor.visitRenameTableColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetConfigContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public configKey(): ConfigKeyContext { + return this.getRuleContext(0, ConfigKeyContext)!; + } + public EQ(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.EQ, 0)!; + } + public configValue(): ConfigValueContext { + return this.getRuleContext(0, ConfigValueContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetConfig) { + listener.enterSetConfig(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetConfig) { + listener.exitSetConfig(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetConfig) { + return visitor.visitSetConfig(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class UnsupportHiveCommandsContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public unsupportedHiveNativeCommands(): UnsupportedHiveNativeCommandsContext { + return this.getRuleContext(0, UnsupportedHiveNativeCommandsContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterUnsupportHiveCommands) { + listener.enterUnsupportHiveCommands(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitUnsupportHiveCommands) { + listener.exitUnsupportHiveCommands(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitUnsupportHiveCommands) { + return visitor.visitUnsupportHiveCommands(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class StatementDefaultContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public query(): QueryContext { + return this.getRuleContext(0, QueryContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterStatementDefault) { + listener.enterStatementDefault(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitStatementDefault) { + listener.exitStatementDefault(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitStatementDefault) { + return visitor.visitStatementDefault(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class HiveChangeColumnContext extends StatementContext { + public _table?: TableNameContext; + public _colName?: ColumnNameContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public KW_CHANGE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CHANGE, 0)!; + } + public colType(): ColTypeContext { + return this.getRuleContext(0, ColTypeContext)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public KW_COLUMN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COLUMN, 0); + } + public colPosition(): ColPositionContext | null { + return this.getRuleContext(0, ColPositionContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterHiveChangeColumn) { + listener.enterHiveChangeColumn(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitHiveChangeColumn) { + listener.exitHiveChangeColumn(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitHiveChangeColumn) { + return visitor.visitHiveChangeColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class OptimizeTableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_OPTIMIZE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_OPTIMIZE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public zorderClause(): ZorderClauseContext { + return this.getRuleContext(0, ZorderClauseContext)!; + } + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterOptimizeTable) { + listener.enterOptimizeTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitOptimizeTable) { + listener.exitOptimizeTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitOptimizeTable) { + return visitor.visitOptimizeTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetTimeZoneContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public KW_TIME(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TIME, 0)!; + } + public KW_ZONE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ZONE, 0)!; + } + public timezone(): TimezoneContext { + return this.getRuleContext(0, TimezoneContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetTimeZone) { + listener.enterSetTimeZone(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetTimeZone) { + listener.exitSetTimeZone(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetTimeZone) { + return visitor.visitSetTimeZone(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DescribeQueryContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public query(): QueryContext { + return this.getRuleContext(0, QueryContext)!; + } + public KW_DESC(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DESC, 0); + } + public KW_DESCRIBE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DESCRIBE, 0); + } + public KW_QUERY(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_QUERY, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDescribeQuery) { + listener.enterDescribeQuery(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDescribeQuery) { + listener.exitDescribeQuery(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDescribeQuery) { + return visitor.visitDescribeQuery(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class TruncateTableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_TRUNCATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TRUNCATE, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterTruncateTable) { + listener.enterTruncateTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitTruncateTable) { + listener.exitTruncateTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitTruncateTable) { + return visitor.visitTruncateTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetConfigAndValueContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public configKey(): ConfigKeyContext { + return this.getRuleContext(0, ConfigKeyContext)!; + } + public EQ(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.EQ, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetConfigAndValue) { + listener.enterSetConfigAndValue(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetConfigAndValue) { + listener.exitSetConfigAndValue(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetConfigAndValue) { + return visitor.visitSetConfigAndValue(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CreateMaterializedViewContext extends StatementContext { + public _options?: PropertyListContext; + public _partitioning?: PartitionFieldListContext; + public _tableProps?: PropertyListContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; + } + public KW_MATERIALIZED(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_MATERIALIZED, 0)!; + } + public KW_VIEW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEW, 0)!; + } + public viewNameCreate(): ViewNameCreateContext { + return this.getRuleContext(0, ViewNameCreateContext)!; + } + public KW_AS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_AS, 0)!; + } + public query(): QueryContext { + return this.getRuleContext(0, QueryContext)!; + } + public ifNotExists(): IfNotExistsContext | null { + return this.getRuleContext(0, IfNotExistsContext); + } + public tableProvider(): TableProviderContext | null { + return this.getRuleContext(0, TableProviderContext); + } + public skewSpec(): SkewSpecContext[]; + public skewSpec(i: number): SkewSpecContext | null; + public skewSpec(i?: number): SkewSpecContext[] | SkewSpecContext | null { + if (i === undefined) { + return this.getRuleContexts(SkewSpecContext); + } + + return this.getRuleContext(i, SkewSpecContext); + } + public bucketSpec(): BucketSpecContext[]; + public bucketSpec(i: number): BucketSpecContext | null; + public bucketSpec(i?: number): BucketSpecContext[] | BucketSpecContext | null { + if (i === undefined) { + return this.getRuleContexts(BucketSpecContext); + } + + return this.getRuleContext(i, BucketSpecContext); + } + public rowFormat(): RowFormatContext[]; + public rowFormat(i: number): RowFormatContext | null; + public rowFormat(i?: number): RowFormatContext[] | RowFormatContext | null { + if (i === undefined) { + return this.getRuleContexts(RowFormatContext); + } + + return this.getRuleContext(i, RowFormatContext); + } + public createFileFormat(): CreateFileFormatContext[]; + public createFileFormat(i: number): CreateFileFormatContext | null; + public createFileFormat(i?: number): CreateFileFormatContext[] | CreateFileFormatContext | null { + if (i === undefined) { + return this.getRuleContexts(CreateFileFormatContext); + } + + return this.getRuleContext(i, CreateFileFormatContext); + } + public locationSpec(): LocationSpecContext[]; + public locationSpec(i: number): LocationSpecContext | null; + public locationSpec(i?: number): LocationSpecContext[] | LocationSpecContext | null { + if (i === undefined) { + return this.getRuleContexts(LocationSpecContext); + } + + return this.getRuleContext(i, LocationSpecContext); + } + public commentSpec(): CommentSpecContext[]; + public commentSpec(i: number): CommentSpecContext | null; + public commentSpec(i?: number): CommentSpecContext[] | CommentSpecContext | null { + if (i === undefined) { + return this.getRuleContexts(CommentSpecContext); + } + + return this.getRuleContext(i, CommentSpecContext); + } + public KW_OPTIONS(): antlr.TerminalNode[]; + public KW_OPTIONS(i: number): antlr.TerminalNode | null; + public KW_OPTIONS(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_OPTIONS); + } else { + return this.getToken(SparkSqlParser.KW_OPTIONS, i); + } + } + public KW_PARTITIONED(): antlr.TerminalNode[]; + public KW_PARTITIONED(i: number): antlr.TerminalNode | null; + public KW_PARTITIONED(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_PARTITIONED); + } else { + return this.getToken(SparkSqlParser.KW_PARTITIONED, i); + } + } + public KW_BY(): antlr.TerminalNode[]; + public KW_BY(i: number): antlr.TerminalNode | null; + public KW_BY(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_BY); + } else { + return this.getToken(SparkSqlParser.KW_BY, i); + } + } + public KW_TBLPROPERTIES(): antlr.TerminalNode[]; + public KW_TBLPROPERTIES(i: number): antlr.TerminalNode | null; + public KW_TBLPROPERTIES(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_TBLPROPERTIES); + } else { + return this.getToken(SparkSqlParser.KW_TBLPROPERTIES, i); + } + } + public propertyList(): PropertyListContext[]; + public propertyList(i: number): PropertyListContext | null; + public propertyList(i?: number): PropertyListContext[] | PropertyListContext | null { + if (i === undefined) { + return this.getRuleContexts(PropertyListContext); + } + + return this.getRuleContext(i, PropertyListContext); + } + public partitionFieldList(): PartitionFieldListContext[]; + public partitionFieldList(i: number): PartitionFieldListContext | null; + public partitionFieldList(i?: number): PartitionFieldListContext[] | PartitionFieldListContext | null { + if (i === undefined) { + return this.getRuleContexts(PartitionFieldListContext); + } + + return this.getRuleContext(i, PartitionFieldListContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterCreateMaterializedView) { + listener.enterCreateMaterializedView(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitCreateMaterializedView) { + listener.exitCreateMaterializedView(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitCreateMaterializedView) { + return visitor.visitCreateMaterializedView(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetTableSerDeContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public KW_SERDE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SERDE, 0)!; + } + public stringLit(): StringLitContext { + return this.getRuleContext(0, StringLitContext)!; + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public KW_WITH(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_WITH, 0); + } + public KW_SERDEPROPERTIES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SERDEPROPERTIES, 0); + } + public propertyList(): PropertyListContext | null { + return this.getRuleContext(0, PropertyListContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetTableSerDe) { + listener.enterSetTableSerDe(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetTableSerDe) { + listener.exitSetTableSerDe(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetTableSerDe) { + return visitor.visitSetTableSerDe(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CreateViewContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; + } + public KW_VIEW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEW, 0)!; + } + public viewNameCreate(): ViewNameCreateContext { + return this.getRuleContext(0, ViewNameCreateContext)!; + } + public KW_AS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_AS, 0)!; + } + public query(): QueryContext { + return this.getRuleContext(0, QueryContext)!; + } + public KW_OR(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OR, 0); + } + public KW_REPLACE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_REPLACE, 0); + } + public KW_TEMPORARY(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TEMPORARY, 0); + } + public ifNotExists(): IfNotExistsContext | null { + return this.getRuleContext(0, IfNotExistsContext); + } + public identifierCommentList(): IdentifierCommentListContext | null { + return this.getRuleContext(0, IdentifierCommentListContext); + } + public commentSpec(): CommentSpecContext[]; + public commentSpec(i: number): CommentSpecContext | null; + public commentSpec(i?: number): CommentSpecContext[] | CommentSpecContext | null { + if (i === undefined) { + return this.getRuleContexts(CommentSpecContext); + } + + return this.getRuleContext(i, CommentSpecContext); + } + public KW_PARTITIONED(): antlr.TerminalNode[]; + public KW_PARTITIONED(i: number): antlr.TerminalNode | null; + public KW_PARTITIONED(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_PARTITIONED); + } else { + return this.getToken(SparkSqlParser.KW_PARTITIONED, i); + } + } + public KW_ON(): antlr.TerminalNode[]; + public KW_ON(i: number): antlr.TerminalNode | null; + public KW_ON(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_ON); + } else { + return this.getToken(SparkSqlParser.KW_ON, i); + } + } + public identifierList(): IdentifierListContext[]; + public identifierList(i: number): IdentifierListContext | null; + public identifierList(i?: number): IdentifierListContext[] | IdentifierListContext | null { + if (i === undefined) { + return this.getRuleContexts(IdentifierListContext); + } + + return this.getRuleContext(i, IdentifierListContext); + } + public KW_TBLPROPERTIES(): antlr.TerminalNode[]; + public KW_TBLPROPERTIES(i: number): antlr.TerminalNode | null; + public KW_TBLPROPERTIES(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_TBLPROPERTIES); + } else { + return this.getToken(SparkSqlParser.KW_TBLPROPERTIES, i); + } + } + public propertyList(): PropertyListContext[]; + public propertyList(i: number): PropertyListContext | null; + public propertyList(i?: number): PropertyListContext[] | PropertyListContext | null { + if (i === undefined) { + return this.getRuleContexts(PropertyListContext); + } + + return this.getRuleContext(i, PropertyListContext); + } + public KW_GLOBAL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_GLOBAL, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterCreateView) { + listener.enterCreateView(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitCreateView) { + listener.exitCreateView(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitCreateView) { + return visitor.visitCreateView(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetTimeZoneAnyContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public KW_TIME(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TIME, 0)!; + } + public KW_ZONE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ZONE, 0)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetTimeZoneAny) { + listener.enterSetTimeZoneAny(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetTimeZoneAny) { + listener.exitSetTimeZoneAny(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetTimeZoneAny) { + return visitor.visitSetTimeZoneAny(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DropTablePartitionsContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_DROP(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DROP, 0)!; + } + public partitionSpec(): PartitionSpecContext[]; + public partitionSpec(i: number): PartitionSpecContext | null; + public partitionSpec(i?: number): PartitionSpecContext[] | PartitionSpecContext | null { + if (i === undefined) { + return this.getRuleContexts(PartitionSpecContext); + } + + return this.getRuleContext(i, PartitionSpecContext); + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); + } + public KW_VIEW(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VIEW, 0); + } + public viewName(): ViewNameContext | null { + return this.getRuleContext(0, ViewNameContext); + } + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.COMMA); + } else { + return this.getToken(SparkSqlParser.COMMA, i); + } + } + public KW_PURGE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_PURGE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDropTablePartitions) { + listener.enterDropTablePartitions(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDropTablePartitions) { + listener.exitDropTablePartitions(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDropTablePartitions) { + return visitor.visitDropTablePartitions(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DropTableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_DROP(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DROP, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); + } + public KW_PURGE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_PURGE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDropTable) { + listener.enterDropTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDropTable) { + listener.exitDropTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDropTable) { + return visitor.visitDropTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowTableExtendedContext extends StatementContext { + public _ns?: NamespaceNameContext; + public _pattern?: StringLitContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public KW_EXTENDED(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_EXTENDED, 0)!; + } + public KW_LIKE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_LIKE, 0)!; + } + public stringLit(): StringLitContext { + return this.getRuleContext(0, StringLitContext)!; + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public KW_FROM(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FROM, 0); + } + public KW_IN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_IN, 0); + } + public namespaceName(): NamespaceNameContext | null { + return this.getRuleContext(0, NamespaceNameContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowTableExtended) { + listener.enterShowTableExtended(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowTableExtended) { + listener.exitShowTableExtended(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowTableExtended) { + return visitor.visitShowTableExtended(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DescribeNamespaceContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_DATABASE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DATABASE, 0)!; + } + public namespaceName(): NamespaceNameContext { + return this.getRuleContext(0, NamespaceNameContext)!; + } + public KW_DESC(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DESC, 0); + } + public KW_DESCRIBE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DESCRIBE, 0); + } + public KW_EXTENDED(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXTENDED, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDescribeNamespace) { + listener.enterDescribeNamespace(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDescribeNamespace) { + listener.exitDescribeNamespace(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDescribeNamespace) { + return visitor.visitDescribeNamespace(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class AlterTableAlterColumnContext extends StatementContext { + public _table?: TableNameContext; + public _column?: ColumnNameContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode[]; + public KW_ALTER(i: number): antlr.TerminalNode | null; + public KW_ALTER(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_ALTER); + } else { + return this.getToken(SparkSqlParser.KW_ALTER, i); + } + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_CHANGE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_CHANGE, 0); + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public KW_COLUMN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COLUMN, 0); + } + public alterColumnAction(): AlterColumnActionContext | null { + return this.getRuleContext(0, AlterColumnActionContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAlterTableAlterColumn) { + listener.enterAlterTableAlterColumn(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAlterTableAlterColumn) { + listener.exitAlterTableAlterColumn(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAlterTableAlterColumn) { + return visitor.visitAlterTableAlterColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RefreshFunctionContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_REFRESH(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_REFRESH, 0)!; + } + public KW_FUNCTION(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_FUNCTION, 0)!; + } + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterRefreshFunction) { + listener.enterRefreshFunction(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitRefreshFunction) { + listener.exitRefreshFunction(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitRefreshFunction) { + return visitor.visitRefreshFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CommentTableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_COMMENT(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COMMENT, 0)!; + } + public KW_ON(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ON, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_IS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_IS, 0)!; + } + public comment(): CommentContext { + return this.getRuleContext(0, CommentContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterCommentTable) { + listener.enterCommentTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitCommentTable) { + listener.exitCommentTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitCommentTable) { + return visitor.visitCommentTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowMaterializedViewsContext extends StatementContext { + public _db_name?: NamespaceNameContext; + public _pattern?: StringLitContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_MATERIALIZED(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_MATERIALIZED, 0)!; + } + public KW_VIEWS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEWS, 0)!; + } + public KW_FROM(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FROM, 0); + } + public KW_IN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_IN, 0); + } + public namespaceName(): NamespaceNameContext | null { + return this.getRuleContext(0, NamespaceNameContext); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LIKE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowMaterializedViews) { + listener.enterShowMaterializedViews(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowMaterializedViews) { + listener.exitShowMaterializedViews(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowMaterializedViews) { + return visitor.visitShowMaterializedViews(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CreateIndexContext extends StatementContext { + public _indexType?: IdentifierContext; + public _options?: PropertyListContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; + } + public KW_INDEX(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_INDEX, 0)!; } public identifier(): IdentifierContext[]; public identifier(i: number): IdentifierContext | null; @@ -20075,14 +23915,143 @@ export class StatementContext extends antlr.ParserRuleContext { return this.getRuleContext(i, IdentifierContext); } - public stringLit(): StringLitContext | null { - return this.getRuleContext(0, StringLitContext); + public KW_ON(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ON, 0)!; } - public KW_CREATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CREATE, 0); + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; } - public dbSchemaNameCreate(): DbSchemaNameCreateContext | null { - return this.getRuleContext(0, DbSchemaNameCreateContext); + public LEFT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; + } + public multipartIdentifierPropertyList(): MultipartIdentifierPropertyListContext { + return this.getRuleContext(0, MultipartIdentifierPropertyListContext)!; + } + public RIGHT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; + } + public ifNotExists(): IfNotExistsContext | null { + return this.getRuleContext(0, IfNotExistsContext); + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } + public KW_USING(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_USING, 0); + } + public KW_OPTIONS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OPTIONS, 0); + } + public propertyList(): PropertyListContext | null { + return this.getRuleContext(0, PropertyListContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterCreateIndex) { + listener.enterCreateIndex(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitCreateIndex) { + listener.exitCreateIndex(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitCreateIndex) { + return visitor.visitCreateIndex(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class UseNamespaceContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_USE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_USE, 0)!; + } + public namespaceName(): NamespaceNameContext { + return this.getRuleContext(0, NamespaceNameContext)!; + } + public namespace(): NamespaceContext | null { + return this.getRuleContext(0, NamespaceContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterUseNamespace) { + listener.enterUseNamespace(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitUseNamespace) { + listener.exitUseNamespace(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitUseNamespace) { + return visitor.visitUseNamespace(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DropVariableContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_DROP(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DROP, 0)!; + } + public KW_TEMPORARY(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TEMPORARY, 0)!; + } + public KW_VARIABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VARIABLE, 0)!; + } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); + } + public viewName(): ViewNameContext | null { + return this.getRuleContext(0, ViewNameContext); + } + public functionName(): FunctionNameContext | null { + return this.getRuleContext(0, FunctionNameContext); + } + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDropVariable) { + listener.enterDropVariable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDropVariable) { + listener.exitDropVariable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDropVariable) { + return visitor.visitDropVariable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CreateNamespaceContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; + } + public namespace(): NamespaceContext { + return this.getRuleContext(0, NamespaceContext)!; + } + public namespaceNameCreate(): NamespaceNameCreateContext { + return this.getRuleContext(0, NamespaceNameCreateContext)!; } public ifNotExists(): IfNotExistsContext | null { return this.getRuleContext(0, IfNotExistsContext); @@ -20141,574 +24110,519 @@ export class StatementContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.KW_PROPERTIES, i); } } - public KW_ALTER(): antlr.TerminalNode[]; - public KW_ALTER(i: number): antlr.TerminalNode | null; - public KW_ALTER(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.KW_ALTER); - } else { - return this.getToken(SparkSqlParser.KW_ALTER, i); - } - } - public KW_DROP(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DROP, 0); - } - public ifExists(): IfExistsContext | null { - return this.getRuleContext(0, IfExistsContext); - } - public KW_RESTRICT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_RESTRICT, 0); - } - public KW_CASCADE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CASCADE, 0); - } - public KW_SHOW(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SHOW, 0); - } - public dbSchemas(): DbSchemasContext | null { - return this.getRuleContext(0, DbSchemasContext); - } - public multipartIdentifier(): MultipartIdentifierContext | null { - return this.getRuleContext(0, MultipartIdentifierContext); - } - public KW_FROM(): antlr.TerminalNode[]; - public KW_FROM(i: number): antlr.TerminalNode | null; - public KW_FROM(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.KW_FROM); - } else { - return this.getToken(SparkSqlParser.KW_FROM, i); - } - } - public KW_IN(): antlr.TerminalNode[]; - public KW_IN(i: number): antlr.TerminalNode | null; - public KW_IN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.KW_IN); - } else { - return this.getToken(SparkSqlParser.KW_IN, i); - } - } - public KW_LIKE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_LIKE, 0); - } - public createTableHeader(): CreateTableHeaderContext | null { - return this.getRuleContext(0, CreateTableHeaderContext); - } - public createTableClauses(): CreateTableClausesContext | null { - return this.getRuleContext(0, CreateTableClausesContext); - } - public LEFT_PAREN(): antlr.TerminalNode[]; - public LEFT_PAREN(i: number): antlr.TerminalNode | null; - public LEFT_PAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.LEFT_PAREN); - } else { - return this.getToken(SparkSqlParser.LEFT_PAREN, i); - } - } - public createOrReplaceTableColTypeList(): CreateOrReplaceTableColTypeListContext | null { - return this.getRuleContext(0, CreateOrReplaceTableColTypeListContext); - } - public RIGHT_PAREN(): antlr.TerminalNode[]; - public RIGHT_PAREN(i: number): antlr.TerminalNode | null; - public RIGHT_PAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.RIGHT_PAREN); - } else { - return this.getToken(SparkSqlParser.RIGHT_PAREN, i); - } - } - public tableProvider(): TableProviderContext[]; - public tableProvider(i: number): TableProviderContext | null; - public tableProvider(i?: number): TableProviderContext[] | TableProviderContext | null { - if (i === undefined) { - return this.getRuleContexts(TableProviderContext); + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterCreateNamespace) { + listener.enterCreateNamespace(this); } - - return this.getRuleContext(i, TableProviderContext); + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitCreateNamespace) { + listener.exitCreateNamespace(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitCreateNamespace) { + return visitor.visitCreateNamespace(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetTableSerDePropertiesContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public KW_SERDEPROPERTIES(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SERDEPROPERTIES, 0)!; + } + public propertyList(): PropertyListContext { + return this.getRuleContext(0, PropertyListContext)!; + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetTableSerDeProperties) { + listener.enterSetTableSerDeProperties(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetTableSerDeProperties) { + listener.exitSetTableSerDeProperties(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetTableSerDeProperties) { + return visitor.visitSetTableSerDeProperties(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RefreshMaterializedViewContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_REFRESH(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_REFRESH, 0)!; + } + public KW_MATERIALIZED(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_MATERIALIZED, 0)!; + } + public KW_VIEW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEW, 0)!; + } + public viewName(): ViewNameContext { + return this.getRuleContext(0, ViewNameContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterRefreshMaterializedView) { + listener.enterRefreshMaterializedView(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitRefreshMaterializedView) { + listener.exitRefreshMaterializedView(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitRefreshMaterializedView) { + return visitor.visitRefreshMaterializedView(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowTblPropertiesContext extends StatementContext { + public _table?: TableNameContext; + public _key?: PropertyKeyContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_TBLPROPERTIES(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TBLPROPERTIES, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public LEFT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0); + } + public RIGHT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0); + } + public propertyKey(): PropertyKeyContext | null { + return this.getRuleContext(0, PropertyKeyContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowTblProperties) { + listener.enterShowTblProperties(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowTblProperties) { + listener.exitShowTblProperties(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowTblProperties) { + return visitor.visitShowTblProperties(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowCreateMaterializedViewContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; + } + public KW_MATERIALIZED(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_MATERIALIZED, 0)!; + } + public KW_VIEW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEW, 0)!; + } + public viewName(): ViewNameContext { + return this.getRuleContext(0, ViewNameContext)!; } public KW_AS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_AS, 0); } + public KW_SERDE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SERDE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowCreateMaterializedView) { + listener.enterShowCreateMaterializedView(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowCreateMaterializedView) { + listener.exitShowCreateMaterializedView(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowCreateMaterializedView) { + return visitor.visitShowCreateMaterializedView(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class UnsetTablePropertiesContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_UNSET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_UNSET, 0)!; + } + public KW_TBLPROPERTIES(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TBLPROPERTIES, 0)!; + } + public propertyList(): PropertyListContext { + return this.getRuleContext(0, PropertyListContext)!; + } public KW_TABLE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_TABLE, 0); } - public tableNameCreate(): TableNameCreateContext | null { - return this.getRuleContext(0, TableNameCreateContext); - } public tableName(): TableNameContext | null { return this.getRuleContext(0, TableNameContext); } - public rowFormat(): RowFormatContext[]; - public rowFormat(i: number): RowFormatContext | null; - public rowFormat(i?: number): RowFormatContext[] | RowFormatContext | null { - if (i === undefined) { - return this.getRuleContexts(RowFormatContext); - } - - return this.getRuleContext(i, RowFormatContext); - } - public createFileFormat(): CreateFileFormatContext[]; - public createFileFormat(i: number): CreateFileFormatContext | null; - public createFileFormat(i?: number): CreateFileFormatContext[] | CreateFileFormatContext | null { - if (i === undefined) { - return this.getRuleContexts(CreateFileFormatContext); - } - - return this.getRuleContext(i, CreateFileFormatContext); - } - public KW_TBLPROPERTIES(): antlr.TerminalNode[]; - public KW_TBLPROPERTIES(i: number): antlr.TerminalNode | null; - public KW_TBLPROPERTIES(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.KW_TBLPROPERTIES); - } else { - return this.getToken(SparkSqlParser.KW_TBLPROPERTIES, i); - } - } - public replaceTableHeader(): ReplaceTableHeaderContext | null { - return this.getRuleContext(0, ReplaceTableHeaderContext); - } - public KW_ANALYZE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ANALYZE, 0); - } - public KW_COMPUTE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_COMPUTE, 0); - } - public KW_STATISTICS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_STATISTICS, 0); - } - public partitionSpec(): PartitionSpecContext[]; - public partitionSpec(i: number): PartitionSpecContext | null; - public partitionSpec(i?: number): PartitionSpecContext[] | PartitionSpecContext | null { - if (i === undefined) { - return this.getRuleContexts(PartitionSpecContext); - } - - return this.getRuleContext(i, PartitionSpecContext); - } - public KW_NOSCAN(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_NOSCAN, 0); - } - public KW_FOR(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_FOR, 0); - } - public KW_COLUMNS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_COLUMNS, 0); - } - public columnNameSeq(): ColumnNameSeqContext | null { - return this.getRuleContext(0, ColumnNameSeqContext); - } - public KW_ALL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ALL, 0); - } - public KW_TABLES(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TABLES, 0); - } - public KW_ADD(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ADD, 0); - } - public KW_COLUMN(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_COLUMN, 0); - } - public qualifiedColTypeWithPositionForAdd(): QualifiedColTypeWithPositionForAddContext | null { - return this.getRuleContext(0, QualifiedColTypeWithPositionForAddContext); - } - public qualifiedColTypeWithPositionSeqForAdd(): QualifiedColTypeWithPositionSeqForAddContext | null { - return this.getRuleContext(0, QualifiedColTypeWithPositionSeqForAddContext); - } - public KW_RENAME(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_RENAME, 0); - } - public columnName(): ColumnNameContext | null { - return this.getRuleContext(0, ColumnNameContext); - } - public KW_TO(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TO, 0); - } - public columnNameCreate(): ColumnNameCreateContext | null { - return this.getRuleContext(0, ColumnNameCreateContext); - } public KW_VIEW(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_VIEW, 0); } public viewName(): ViewNameContext | null { return this.getRuleContext(0, ViewNameContext); } - public KW_UNSET(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_UNSET, 0); + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); } - public KW_CHANGE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CHANGE, 0); - } - public alterColumnAction(): AlterColumnActionContext | null { - return this.getRuleContext(0, AlterColumnActionContext); - } - public colType(): ColTypeContext | null { - return this.getRuleContext(0, ColTypeContext); - } - public colPosition(): ColPositionContext | null { - return this.getRuleContext(0, ColPositionContext); - } - public KW_REPLACE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_REPLACE, 0); - } - public qualifiedColTypeWithPositionSeqForReplace(): QualifiedColTypeWithPositionSeqForReplaceContext | null { - return this.getRuleContext(0, QualifiedColTypeWithPositionSeqForReplaceContext); - } - public KW_SERDE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SERDE, 0); - } - public KW_SERDEPROPERTIES(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SERDEPROPERTIES, 0); - } - public partitionSpecLocation(): PartitionSpecLocationContext[]; - public partitionSpecLocation(i: number): PartitionSpecLocationContext | null; - public partitionSpecLocation(i?: number): PartitionSpecLocationContext[] | PartitionSpecLocationContext | null { - if (i === undefined) { - return this.getRuleContexts(PartitionSpecLocationContext); + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterUnsetTableProperties) { + listener.enterUnsetTableProperties(this); } - - return this.getRuleContext(i, PartitionSpecLocationContext); } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.COMMA); - } else { - return this.getToken(SparkSqlParser.COMMA, i); - } - } - public KW_PURGE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_PURGE, 0); - } - public KW_RECOVER(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_RECOVER, 0); - } - public KW_PARTITIONS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_PARTITIONS, 0); - } - public KW_MATERIALIZED(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_MATERIALIZED, 0); - } - public KW_REWRITE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_REWRITE, 0); - } - public KW_ENABLE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ENABLE, 0); - } - public KW_DISABLE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DISABLE, 0); - } - public viewNameCreate(): ViewNameCreateContext | null { - return this.getRuleContext(0, ViewNameCreateContext); - } - public KW_OR(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_OR, 0); - } - public KW_TEMPORARY(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TEMPORARY, 0); - } - public identifierCommentList(): IdentifierCommentListContext | null { - return this.getRuleContext(0, IdentifierCommentListContext); - } - public KW_PARTITIONED(): antlr.TerminalNode[]; - public KW_PARTITIONED(i: number): antlr.TerminalNode | null; - public KW_PARTITIONED(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.KW_PARTITIONED); - } else { - return this.getToken(SparkSqlParser.KW_PARTITIONED, i); - } - } - public KW_ON(): antlr.TerminalNode[]; - public KW_ON(i: number): antlr.TerminalNode | null; - public KW_ON(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.KW_ON); - } else { - return this.getToken(SparkSqlParser.KW_ON, i); - } - } - public identifierList(): IdentifierListContext[]; - public identifierList(i: number): IdentifierListContext | null; - public identifierList(i?: number): IdentifierListContext[] | IdentifierListContext | null { - if (i === undefined) { - return this.getRuleContexts(IdentifierListContext); + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitUnsetTableProperties) { + listener.exitUnsetTableProperties(this); } - - return this.getRuleContext(i, IdentifierListContext); } - public KW_GLOBAL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_GLOBAL, 0); - } - public colTypeList(): ColTypeListContext | null { - return this.getRuleContext(0, ColTypeListContext); - } - public KW_OPTIONS(): antlr.TerminalNode[]; - public KW_OPTIONS(i: number): antlr.TerminalNode | null; - public KW_OPTIONS(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.KW_OPTIONS); - } else { - return this.getToken(SparkSqlParser.KW_OPTIONS, i); - } - } - public KW_FUNCTION(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_FUNCTION, 0); - } - public functionNameCreate(): FunctionNameCreateContext | null { - return this.getRuleContext(0, FunctionNameCreateContext); - } - public KW_USING(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_USING, 0); - } - public resource(): ResourceContext[]; - public resource(i: number): ResourceContext | null; - public resource(i?: number): ResourceContext[] | ResourceContext | null { - if (i === undefined) { - return this.getRuleContexts(ResourceContext); + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitUnsetTableProperties) { + return visitor.visitUnsetTableProperties(this); + } else { + return visitor.visitChildren(this); } - - return this.getRuleContext(i, ResourceContext); } - public skewSpec(): SkewSpecContext[]; - public skewSpec(i: number): SkewSpecContext | null; - public skewSpec(i?: number): SkewSpecContext[] | SkewSpecContext | null { - if (i === undefined) { - return this.getRuleContexts(SkewSpecContext); +} +export class SetTableLocationContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public locationSpec(): LocationSpecContext { + return this.getRuleContext(0, LocationSpecContext)!; + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetTableLocation) { + listener.enterSetTableLocation(this); } - - return this.getRuleContext(i, SkewSpecContext); } - public bucketSpec(): BucketSpecContext[]; - public bucketSpec(i: number): BucketSpecContext | null; - public bucketSpec(i?: number): BucketSpecContext[] | BucketSpecContext | null { - if (i === undefined) { - return this.getRuleContexts(BucketSpecContext); + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetTableLocation) { + listener.exitSetTableLocation(this); } - - return this.getRuleContext(i, BucketSpecContext); } - public KW_BY(): antlr.TerminalNode[]; - public KW_BY(i: number): antlr.TerminalNode | null; - public KW_BY(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(SparkSqlParser.KW_BY); - } else { - return this.getToken(SparkSqlParser.KW_BY, i); - } - } - public partitionFieldList(): PartitionFieldListContext[]; - public partitionFieldList(i: number): PartitionFieldListContext | null; - public partitionFieldList(i?: number): PartitionFieldListContext[] | PartitionFieldListContext | null { - if (i === undefined) { - return this.getRuleContexts(PartitionFieldListContext); + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetTableLocation) { + return visitor.visitSetTableLocation(this); + } else { + return visitor.visitChildren(this); } - - return this.getRuleContext(i, PartitionFieldListContext); } - public functionName(): FunctionNameContext | null { - return this.getRuleContext(0, FunctionNameContext); +} +export class DropTableColumnsContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } - public KW_DECLARE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DECLARE, 0); + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; } - public KW_VARIABLE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_VARIABLE, 0); + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; } - public dataType(): DataTypeContext | null { - return this.getRuleContext(0, DataTypeContext); + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; } - public variableDefaultExpression(): VariableDefaultExpressionContext | null { - return this.getRuleContext(0, VariableDefaultExpressionContext); + public KW_DROP(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DROP, 0)!; } - public KW_EXPLAIN(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_EXPLAIN, 0); + public KW_COLUMNS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_COLUMNS, 0)!; } - public statement(): StatementContext | null { - return this.getRuleContext(0, StatementContext); + public LEFT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; } - public KW_LOGICAL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_LOGICAL, 0); + public columnNameSeq(): ColumnNameSeqContext { + return this.getRuleContext(0, ColumnNameSeqContext)!; } - public KW_FORMATTED(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_FORMATTED, 0); + public RIGHT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; } - public KW_EXTENDED(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_EXTENDED, 0); + public ifExists(): IfExistsContext | null { + return this.getRuleContext(0, IfExistsContext); } - public KW_CODEGEN(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CODEGEN, 0); + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDropTableColumns) { + listener.enterDropTableColumns(this); + } } - public KW_COST(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_COST, 0); + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDropTableColumns) { + listener.exitDropTableColumns(this); + } } - public propertyKey(): PropertyKeyContext | null { - return this.getRuleContext(0, PropertyKeyContext); + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDropTableColumns) { + return visitor.visitDropTableColumns(this); + } else { + return visitor.visitChildren(this); + } } - public KW_VIEWS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_VIEWS, 0); +} +export class ShowViewsContext extends StatementContext { + public _pattern?: StringLitContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } - public KW_FUNCTIONS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_FUNCTIONS, 0); + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_VIEWS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VIEWS, 0)!; + } + public namespaceName(): NamespaceNameContext | null { + return this.getRuleContext(0, NamespaceNameContext); + } + public KW_FROM(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FROM, 0); + } + public KW_IN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_IN, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LIKE, 0); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowViews) { + listener.enterShowViews(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowViews) { + listener.exitShowViews(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowViews) { + return visitor.visitShowViews(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowFunctionsContext extends StatementContext { + public _ns?: NamespaceNameContext; + public _legacy?: MultipartIdentifierContext; + public _pattern?: StringLitContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_SHOW(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SHOW, 0)!; + } + public KW_FUNCTIONS(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_FUNCTIONS, 0)!; } public functionKind(): FunctionKindContext | null { return this.getRuleContext(0, FunctionKindContext); } - public KW_CURRENT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CURRENT, 0); + public KW_FROM(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_FROM, 0); } - public KW_CATALOGS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CATALOGS, 0); + public KW_IN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_IN, 0); } - public describeFuncName(): DescribeFuncNameContext | null { - return this.getRuleContext(0, DescribeFuncNameContext); + public namespaceName(): NamespaceNameContext | null { + return this.getRuleContext(0, NamespaceNameContext); } - public KW_DESC(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DESC, 0); + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LIKE, 0); } - public KW_DESCRIBE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DESCRIBE, 0); + public multipartIdentifier(): MultipartIdentifierContext | null { + return this.getRuleContext(0, MultipartIdentifierContext); } - public KW_DATABASE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DATABASE, 0); + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } - public describeColName(): DescribeColNameContext | null { - return this.getRuleContext(0, DescribeColNameContext); + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterShowFunctions) { + listener.enterShowFunctions(this); + } } - public KW_QUERY(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_QUERY, 0); + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitShowFunctions) { + listener.exitShowFunctions(this); + } } - public KW_COMMENT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_COMMENT, 0); + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitShowFunctions) { + return visitor.visitShowFunctions(this); + } else { + return visitor.visitChildren(this); + } } - public KW_IS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_IS, 0); +} +export class CacheTableContext extends StatementContext { + public _options?: PropertyListContext; + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } - public comment(): CommentContext | null { - return this.getRuleContext(0, CommentContext); + public KW_CACHE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CACHE, 0)!; } - public KW_REFRESH(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_REFRESH, 0); + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; } - public KW_CACHE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CACHE, 0); + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; } public KW_LAZY(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LAZY, 0); } - public KW_UNCACHE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_UNCACHE, 0); + public KW_OPTIONS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OPTIONS, 0); } - public KW_CLEAR(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CLEAR, 0); + public query(): QueryContext | null { + return this.getRuleContext(0, QueryContext); } - public KW_LOAD(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_LOAD, 0); + public propertyList(): PropertyListContext | null { + return this.getRuleContext(0, PropertyListContext); } - public KW_DATA(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DATA, 0); - } - public KW_INPATH(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_INPATH, 0); - } - public KW_INTO(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_INTO, 0); - } - public KW_LOCAL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_LOCAL, 0); - } - public KW_OVERWRITE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_OVERWRITE, 0); - } - public KW_TRUNCATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TRUNCATE, 0); - } - public KW_REPAIR(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_REPAIR, 0); - } - public KW_MSCK(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_MSCK, 0); - } - public KW_SYNC(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SYNC, 0); - } - public KW_LIST(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_LIST, 0); - } - public KW_ROLE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ROLE, 0); - } - public KW_TIME(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TIME, 0); - } - public KW_ZONE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ZONE, 0); - } - public interval(): IntervalContext | null { - return this.getRuleContext(0, IntervalContext); - } - public timezone(): TimezoneContext | null { - return this.getRuleContext(0, TimezoneContext); - } - public assignmentList(): AssignmentListContext | null { - return this.getRuleContext(0, AssignmentListContext); - } - public KW_VAR(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_VAR, 0); - } - public multipartIdentifierList(): MultipartIdentifierListContext | null { - return this.getRuleContext(0, MultipartIdentifierListContext); - } - public EQ(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.EQ, 0); - } - public configKey(): ConfigKeyContext | null { - return this.getRuleContext(0, ConfigKeyContext); - } - public configValue(): ConfigValueContext | null { - return this.getRuleContext(0, ConfigValueContext); - } - public KW_RESET(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_RESET, 0); - } - public KW_INDEX(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_INDEX, 0); - } - public multipartIdentifierPropertyList(): MultipartIdentifierPropertyListContext | null { - return this.getRuleContext(0, MultipartIdentifierPropertyListContext); - } - public KW_OPTIMIZE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_OPTIMIZE, 0); - } - public zorderClause(): ZorderClauseContext | null { - return this.getRuleContext(0, ZorderClauseContext); - } - public whereClause(): WhereClauseContext | null { - return this.getRuleContext(0, WhereClauseContext); - } - public unsupportedHiveNativeCommands(): UnsupportedHiveNativeCommandsContext | null { - return this.getRuleContext(0, UnsupportedHiveNativeCommandsContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_statement; + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_AS, 0); } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterStatement) { - listener.enterStatement(this); + if(listener.enterCacheTable) { + listener.enterCacheTable(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitStatement) { - listener.exitStatement(this); + if(listener.exitCacheTable) { + listener.exitCacheTable(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitStatement) { - return visitor.visitStatement(this); + if (visitor.visitCacheTable) { + return visitor.visitCacheTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SetTablePropertiesContext extends StatementContext { + public constructor(ctx: StatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_ALTER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ALTER, 0)!; + } + public KW_SET(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_SET, 0)!; + } + public KW_TBLPROPERTIES(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TBLPROPERTIES, 0)!; + } + public propertyList(): PropertyListContext { + return this.getRuleContext(0, PropertyListContext)!; + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); + } + public KW_VIEW(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VIEW, 0); + } + public viewName(): ViewNameContext | null { + return this.getRuleContext(0, ViewNameContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSetTableProperties) { + listener.enterSetTableProperties(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSetTableProperties) { + listener.exitSetTableProperties(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSetTableProperties) { + return visitor.visitSetTableProperties(this); } else { return visitor.visitChildren(this); } @@ -21260,6 +25174,18 @@ export class QueryContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_query; + } + public override copyFrom(ctx: QueryContext): void { + super.copyFrom(ctx); + } +} +export class QueryStatementContext extends QueryContext { + public constructor(ctx: QueryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public queryTerm(): QueryTermContext { return this.getRuleContext(0, QueryTermContext)!; } @@ -21269,22 +25195,19 @@ export class QueryContext extends antlr.ParserRuleContext { public ctes(): CtesContext | null { return this.getRuleContext(0, CtesContext); } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_query; - } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterQuery) { - listener.enterQuery(this); + if(listener.enterQueryStatement) { + listener.enterQueryStatement(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitQuery) { - listener.exitQuery(this); + if(listener.exitQueryStatement) { + listener.exitQueryStatement(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitQuery) { - return visitor.visitQuery(this); + if (visitor.visitQueryStatement) { + return visitor.visitQueryStatement(this); } else { return visitor.visitChildren(this); } @@ -21513,7 +25436,7 @@ export class PartitionValContext extends antlr.ParserRuleContext { } -export class DbSchemaContext extends antlr.ParserRuleContext { +export class NamespaceContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -21527,21 +25450,21 @@ export class DbSchemaContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.KW_SCHEMA, 0); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_dbSchema; + return SparkSqlParser.RULE_namespace; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterDbSchema) { - listener.enterDbSchema(this); + if(listener.enterNamespace) { + listener.enterNamespace(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitDbSchema) { - listener.exitDbSchema(this); + if(listener.exitNamespace) { + listener.exitNamespace(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitDbSchema) { - return visitor.visitDbSchema(this); + if (visitor.visitNamespace) { + return visitor.visitNamespace(this); } else { return visitor.visitChildren(this); } @@ -21549,7 +25472,7 @@ export class DbSchemaContext extends antlr.ParserRuleContext { } -export class DbSchemasContext extends antlr.ParserRuleContext { +export class NamespacesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -21563,21 +25486,21 @@ export class DbSchemasContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.KW_SCHEMAS, 0); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_dbSchemas; + return SparkSqlParser.RULE_namespaces; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterDbSchemas) { - listener.enterDbSchemas(this); + if(listener.enterNamespaces) { + listener.enterNamespaces(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitDbSchemas) { - listener.exitDbSchemas(this); + if(listener.exitNamespaces) { + listener.exitNamespaces(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitDbSchemas) { - return visitor.visitDbSchemas(this); + if (visitor.visitNamespaces) { + return visitor.visitNamespaces(this); } else { return visitor.visitChildren(this); } @@ -22478,23 +26401,61 @@ export class ResourceContext extends antlr.ParserRuleContext { export class DmlStatementNoWithContext extends antlr.ParserRuleContext { - public _target?: TableNameContext; - public _targetAlias?: TableAliasContext; - public _source?: IdentifierReferenceContext; - public _sourceQuery?: QueryContext; - public _sourceAlias?: TableAliasContext; - public _mergeCondition?: BooleanExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public insertInto(): InsertIntoContext | null { - return this.getRuleContext(0, InsertIntoContext); + public override get ruleIndex(): number { + return SparkSqlParser.RULE_dmlStatementNoWith; } - public query(): QueryContext | null { - return this.getRuleContext(0, QueryContext); + public override copyFrom(ctx: DmlStatementNoWithContext): void { + super.copyFrom(ctx); } - public fromClause(): FromClauseContext | null { - return this.getRuleContext(0, FromClauseContext); +} +export class DeleteFromTableContext extends DmlStatementNoWithContext { + public constructor(ctx: DmlStatementNoWithContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_DELETE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_DELETE, 0)!; + } + public KW_FROM(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_FROM, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; + } + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterDeleteFromTable) { + listener.enterDeleteFromTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitDeleteFromTable) { + listener.exitDeleteFromTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitDeleteFromTable) { + return visitor.visitDeleteFromTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class MultipleInsertContext extends DmlStatementNoWithContext { + public constructor(ctx: DmlStatementNoWithContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext)!; } public multiInsertQueryBody(): MultiInsertQueryBodyContext[]; public multiInsertQueryBody(i: number): MultiInsertQueryBodyContext | null; @@ -22505,14 +26466,116 @@ export class DmlStatementNoWithContext extends antlr.ParserRuleContext { return this.getRuleContext(i, MultiInsertQueryBodyContext); } - public KW_DELETE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DELETE, 0); + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterMultipleInsert) { + listener.enterMultipleInsert(this); + } } - public KW_FROM(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_FROM, 0); + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitMultipleInsert) { + listener.exitMultipleInsert(this); + } } - public tableName(): TableNameContext | null { - return this.getRuleContext(0, TableNameContext); + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitMultipleInsert) { + return visitor.visitMultipleInsert(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class UpdateTableContext extends DmlStatementNoWithContext { + public constructor(ctx: DmlStatementNoWithContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_UPDATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_UPDATE, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; + } + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; + } + public setClause(): SetClauseContext { + return this.getRuleContext(0, SetClauseContext)!; + } + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterUpdateTable) { + listener.enterUpdateTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitUpdateTable) { + listener.exitUpdateTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitUpdateTable) { + return visitor.visitUpdateTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class InsertFromQueryContext extends DmlStatementNoWithContext { + public constructor(ctx: DmlStatementNoWithContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public insertInto(): InsertIntoContext { + return this.getRuleContext(0, InsertIntoContext)!; + } + public query(): QueryContext { + return this.getRuleContext(0, QueryContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterInsertFromQuery) { + listener.enterInsertFromQuery(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitInsertFromQuery) { + listener.exitInsertFromQuery(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitInsertFromQuery) { + return visitor.visitInsertFromQuery(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class MergeIntoTableContext extends DmlStatementNoWithContext { + public _target?: TableNameContext; + public _targetAlias?: TableAliasContext; + public _source?: IdentifierReferenceContext; + public _sourceQuery?: QueryContext; + public _sourceAlias?: TableAliasContext; + public _mergeCondition?: BooleanExpressionContext; + public constructor(ctx: DmlStatementNoWithContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_MERGE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_MERGE, 0)!; + } + public KW_INTO(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_INTO, 0)!; + } + public KW_USING(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_USING, 0)!; + } + public KW_ON(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ON, 0)!; + } + public tableName(): TableNameContext { + return this.getRuleContext(0, TableNameContext)!; } public tableAlias(): TableAliasContext[]; public tableAlias(i: number): TableAliasContext | null; @@ -22523,29 +26586,8 @@ export class DmlStatementNoWithContext extends antlr.ParserRuleContext { return this.getRuleContext(i, TableAliasContext); } - public whereClause(): WhereClauseContext | null { - return this.getRuleContext(0, WhereClauseContext); - } - public KW_UPDATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_UPDATE, 0); - } - public setClause(): SetClauseContext | null { - return this.getRuleContext(0, SetClauseContext); - } - public KW_MERGE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_MERGE, 0); - } - public KW_INTO(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_INTO, 0); - } - public KW_USING(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_USING, 0); - } - public KW_ON(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ON, 0); - } - public booleanExpression(): BooleanExpressionContext | null { - return this.getRuleContext(0, BooleanExpressionContext); + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext)!; } public LEFT_PAREN(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.LEFT_PAREN, 0); @@ -22556,6 +26598,9 @@ export class DmlStatementNoWithContext extends antlr.ParserRuleContext { public identifierReference(): IdentifierReferenceContext | null { return this.getRuleContext(0, IdentifierReferenceContext); } + public query(): QueryContext | null { + return this.getRuleContext(0, QueryContext); + } public matchedClause(): MatchedClauseContext[]; public matchedClause(i: number): MatchedClauseContext | null; public matchedClause(i?: number): MatchedClauseContext[] | MatchedClauseContext | null { @@ -22583,22 +26628,19 @@ export class DmlStatementNoWithContext extends antlr.ParserRuleContext { return this.getRuleContext(i, NotMatchedBySourceClauseContext); } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_dmlStatementNoWith; - } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterDmlStatementNoWith) { - listener.enterDmlStatementNoWith(this); + if(listener.enterMergeIntoTable) { + listener.enterMergeIntoTable(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitDmlStatementNoWith) { - listener.exitDmlStatementNoWith(this); + if(listener.exitMergeIntoTable) { + listener.exitMergeIntoTable(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitDmlStatementNoWith) { - return visitor.visitDmlStatementNoWith(this); + if (visitor.visitMergeIntoTable) { + return visitor.visitMergeIntoTable(this); } else { return visitor.visitChildren(this); } @@ -22606,7 +26648,7 @@ export class DmlStatementNoWithContext extends antlr.ParserRuleContext { } -export class DbSchemaNameContext extends antlr.ParserRuleContext { +export class NamespaceNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -22614,21 +26656,21 @@ export class DbSchemaNameContext extends antlr.ParserRuleContext { return this.getRuleContext(0, IdentifierReferenceContext)!; } public override get ruleIndex(): number { - return SparkSqlParser.RULE_dbSchemaName; + return SparkSqlParser.RULE_namespaceName; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterDbSchemaName) { - listener.enterDbSchemaName(this); + if(listener.enterNamespaceName) { + listener.enterNamespaceName(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitDbSchemaName) { - listener.exitDbSchemaName(this); + if(listener.exitNamespaceName) { + listener.exitNamespaceName(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitDbSchemaName) { - return visitor.visitDbSchemaName(this); + if (visitor.visitNamespaceName) { + return visitor.visitNamespaceName(this); } else { return visitor.visitChildren(this); } @@ -22636,7 +26678,7 @@ export class DbSchemaNameContext extends antlr.ParserRuleContext { } -export class DbSchemaNameCreateContext extends antlr.ParserRuleContext { +export class NamespaceNameCreateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -22644,21 +26686,21 @@ export class DbSchemaNameCreateContext extends antlr.ParserRuleContext { return this.getRuleContext(0, IdentifierReferenceContext)!; } public override get ruleIndex(): number { - return SparkSqlParser.RULE_dbSchemaNameCreate; + return SparkSqlParser.RULE_namespaceNameCreate; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterDbSchemaNameCreate) { - listener.enterDbSchemaNameCreate(this); + if(listener.enterNamespaceNameCreate) { + listener.enterNamespaceNameCreate(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitDbSchemaNameCreate) { - listener.exitDbSchemaNameCreate(this); + if(listener.exitNamespaceNameCreate) { + listener.exitNamespaceNameCreate(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitDbSchemaNameCreate) { - return visitor.visitDbSchemaNameCreate(this); + if (visitor.visitNamespaceNameCreate) { + return visitor.visitNamespaceNameCreate(this); } else { return visitor.visitChildren(this); } @@ -22790,8 +26832,8 @@ export class ColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public multipartIdentifier(): MultipartIdentifierContext { - return this.getRuleContext(0, MultipartIdentifierContext)!; + public multipartIdentifier(): MultipartIdentifierContext | null { + return this.getRuleContext(0, MultipartIdentifierContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_columnName; @@ -25994,8 +30036,8 @@ export class IdentifierCommentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public columnNameCreate(): ColumnNameCreateContext { + return this.getRuleContext(0, ColumnNameCreateContext)!; } public commentSpec(): CommentSpecContext | null { return this.getRuleContext(0, CommentSpecContext); @@ -26027,12 +30069,18 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public identifierReference(): IdentifierReferenceContext | null { - return this.getRuleContext(0, IdentifierReferenceContext); - } public tableAlias(): TableAliasContext | null { return this.getRuleContext(0, TableAliasContext); } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); + } + public viewName(): ViewNameContext | null { + return this.getRuleContext(0, ViewNameContext); + } + public identifierReference(): IdentifierReferenceContext | null { + return this.getRuleContext(0, IdentifierReferenceContext); + } public temporalClause(): TemporalClauseContext | null { return this.getRuleContext(0, TemporalClauseContext); } @@ -31722,9 +35770,6 @@ export class NonReservedContext extends antlr.ParserRuleContext { public KW_FORMATTED(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_FORMATTED, 0); } - public KW_FROM(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_FROM, 0); - } public KW_FUNCTION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_FUNCTION, 0); } @@ -32187,9 +36232,6 @@ export class NonReservedContext extends antlr.ParserRuleContext { public KW_SYSTEM_VERSION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SYSTEM_VERSION, 0); } - public KW_TABLE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TABLE, 0); - } public KW_TABLES(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_TABLES, 0); } diff --git a/src/lib/spark/SparkSqlParserListener.ts b/src/lib/spark/SparkSqlParserListener.ts index 66bd585..2d3f8ca 100644 --- a/src/lib/spark/SparkSqlParserListener.ts +++ b/src/lib/spark/SparkSqlParserListener.ts @@ -3,9 +3,102 @@ import { ErrorNode, ParseTreeListener, ParserRuleContext, TerminalNode } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./SparkSqlParser.js"; import { SingleStatementContext } from "./SparkSqlParser.js"; -import { StatementContext } from "./SparkSqlParser.js"; +import { StatementDefaultContext } from "./SparkSqlParser.js"; +import { DmlStatementContext } from "./SparkSqlParser.js"; +import { UseNamespaceContext } from "./SparkSqlParser.js"; +import { SetCatalogContext } from "./SparkSqlParser.js"; +import { CreateNamespaceContext } from "./SparkSqlParser.js"; +import { SetNamespacePropertiesContext } from "./SparkSqlParser.js"; +import { SetNamespaceLocationContext } from "./SparkSqlParser.js"; +import { DropNamespaceContext } from "./SparkSqlParser.js"; +import { ShowNamespacesContext } from "./SparkSqlParser.js"; +import { CreateTableContext } from "./SparkSqlParser.js"; +import { CreateTableLikeContext } from "./SparkSqlParser.js"; +import { ReplaceTableContext } from "./SparkSqlParser.js"; +import { AnalyzeContext } from "./SparkSqlParser.js"; +import { AnalyzeTablesContext } from "./SparkSqlParser.js"; +import { AlterTableAddColumnContext } from "./SparkSqlParser.js"; +import { AlterTableAddColumnsContext } from "./SparkSqlParser.js"; +import { RenameTableColumnContext } from "./SparkSqlParser.js"; +import { AlterTableDropColumnContext } from "./SparkSqlParser.js"; +import { DropTableColumnsContext } from "./SparkSqlParser.js"; +import { RenameTableContext } from "./SparkSqlParser.js"; +import { SetTablePropertiesContext } from "./SparkSqlParser.js"; +import { UnsetTablePropertiesContext } from "./SparkSqlParser.js"; +import { AlterTableAlterColumnContext } from "./SparkSqlParser.js"; +import { HiveChangeColumnContext } from "./SparkSqlParser.js"; +import { HiveReplaceColumnsContext } from "./SparkSqlParser.js"; +import { SetTableSerDeContext } from "./SparkSqlParser.js"; +import { SetTableSerDePropertiesContext } from "./SparkSqlParser.js"; +import { AddTablePartitionContext } from "./SparkSqlParser.js"; +import { RenameTablePartitionContext } from "./SparkSqlParser.js"; +import { DropTablePartitionsContext } from "./SparkSqlParser.js"; +import { SetTableLocationContext } from "./SparkSqlParser.js"; +import { RecoverPartitionsContext } from "./SparkSqlParser.js"; +import { AlterMaterializedViewRewriteContext } from "./SparkSqlParser.js"; +import { AlterMaterializedViewPropertiesContext } from "./SparkSqlParser.js"; +import { DropTableContext } from "./SparkSqlParser.js"; +import { DropViewContext } from "./SparkSqlParser.js"; +import { DropMaterializedViewContext } from "./SparkSqlParser.js"; +import { CreateViewContext } from "./SparkSqlParser.js"; +import { CreateTempViewUsingContext } from "./SparkSqlParser.js"; +import { AlterViewQueryContext } from "./SparkSqlParser.js"; +import { CreateFunctionContext } from "./SparkSqlParser.js"; +import { CreateMaterializedViewContext } from "./SparkSqlParser.js"; +import { DropFunctionContext } from "./SparkSqlParser.js"; +import { DeclareVariableContext } from "./SparkSqlParser.js"; +import { DropVariableContext } from "./SparkSqlParser.js"; +import { ExplainStatementContext } from "./SparkSqlParser.js"; +import { ShowTablesContext } from "./SparkSqlParser.js"; +import { ShowTableExtendedContext } from "./SparkSqlParser.js"; +import { ShowTblPropertiesContext } from "./SparkSqlParser.js"; +import { ShowColumnsContext } from "./SparkSqlParser.js"; +import { ShowViewsContext } from "./SparkSqlParser.js"; +import { ShowPartitionsContext } from "./SparkSqlParser.js"; +import { ShowFunctionsContext } from "./SparkSqlParser.js"; +import { ShowCreateTableContext } from "./SparkSqlParser.js"; +import { ShowCurrentNamespaceContext } from "./SparkSqlParser.js"; +import { ShowCatalogsContext } from "./SparkSqlParser.js"; +import { ShowMaterializedViewsContext } from "./SparkSqlParser.js"; +import { ShowCreateMaterializedViewContext } from "./SparkSqlParser.js"; +import { DescribeFunctionContext } from "./SparkSqlParser.js"; +import { DescribeNamespaceContext } from "./SparkSqlParser.js"; +import { DescribeRelationContext } from "./SparkSqlParser.js"; +import { DescribeQueryContext } from "./SparkSqlParser.js"; +import { CommentNamespaceContext } from "./SparkSqlParser.js"; +import { CommentTableContext } from "./SparkSqlParser.js"; +import { RefreshTableContext } from "./SparkSqlParser.js"; +import { RefreshFunctionContext } from "./SparkSqlParser.js"; +import { RefreshResourceContext } from "./SparkSqlParser.js"; +import { RefreshMaterializedViewContext } from "./SparkSqlParser.js"; +import { CacheTableContext } from "./SparkSqlParser.js"; +import { UnCacheTableContext } from "./SparkSqlParser.js"; +import { ClearCacheContext } from "./SparkSqlParser.js"; +import { LoadDataContext } from "./SparkSqlParser.js"; +import { TruncateTableContext } from "./SparkSqlParser.js"; +import { RepairTableContext } from "./SparkSqlParser.js"; +import { ManageResourceContext } from "./SparkSqlParser.js"; +import { FailNativeCommandContext } from "./SparkSqlParser.js"; +import { SetTimeZoneIntervalContext } from "./SparkSqlParser.js"; +import { SetTimeZoneContext } from "./SparkSqlParser.js"; +import { SetTimeZoneAnyContext } from "./SparkSqlParser.js"; +import { SetVariableAssignmentContext } from "./SparkSqlParser.js"; +import { SetVariableMultiAssignmentContext } from "./SparkSqlParser.js"; +import { SetConfigContext } from "./SparkSqlParser.js"; +import { SetConfigAndValueContext } from "./SparkSqlParser.js"; +import { SetConfigAnyKeyContext } from "./SparkSqlParser.js"; +import { SetAnyContext } from "./SparkSqlParser.js"; +import { ResetConfigContext } from "./SparkSqlParser.js"; +import { ResetAnyContext } from "./SparkSqlParser.js"; +import { CreateIndexContext } from "./SparkSqlParser.js"; +import { DropIndexContext } from "./SparkSqlParser.js"; +import { OptimizeTableContext } from "./SparkSqlParser.js"; +import { UnsupportHiveCommandsContext } from "./SparkSqlParser.js"; import { TimezoneContext } from "./SparkSqlParser.js"; import { ConfigKeyContext } from "./SparkSqlParser.js"; import { ConfigValueContext } from "./SparkSqlParser.js"; @@ -16,13 +109,13 @@ import { BucketSpecContext } from "./SparkSqlParser.js"; import { SkewSpecContext } from "./SparkSqlParser.js"; import { LocationSpecContext } from "./SparkSqlParser.js"; import { CommentSpecContext } from "./SparkSqlParser.js"; -import { QueryContext } from "./SparkSqlParser.js"; +import { QueryStatementContext } from "./SparkSqlParser.js"; import { InsertIntoContext } from "./SparkSqlParser.js"; import { PartitionSpecLocationContext } from "./SparkSqlParser.js"; import { PartitionSpecContext } from "./SparkSqlParser.js"; import { PartitionValContext } from "./SparkSqlParser.js"; -import { DbSchemaContext } from "./SparkSqlParser.js"; -import { DbSchemasContext } from "./SparkSqlParser.js"; +import { NamespaceContext } from "./SparkSqlParser.js"; +import { NamespacesContext } from "./SparkSqlParser.js"; import { DescribeFuncNameContext } from "./SparkSqlParser.js"; import { DescribeColNameContext } from "./SparkSqlParser.js"; import { CtesContext } from "./SparkSqlParser.js"; @@ -41,9 +134,13 @@ import { CreateFileFormatContext } from "./SparkSqlParser.js"; import { FileFormatContext } from "./SparkSqlParser.js"; import { StorageHandlerContext } from "./SparkSqlParser.js"; import { ResourceContext } from "./SparkSqlParser.js"; -import { DmlStatementNoWithContext } from "./SparkSqlParser.js"; -import { DbSchemaNameContext } from "./SparkSqlParser.js"; -import { DbSchemaNameCreateContext } from "./SparkSqlParser.js"; +import { InsertFromQueryContext } from "./SparkSqlParser.js"; +import { MultipleInsertContext } from "./SparkSqlParser.js"; +import { DeleteFromTableContext } from "./SparkSqlParser.js"; +import { UpdateTableContext } from "./SparkSqlParser.js"; +import { MergeIntoTableContext } from "./SparkSqlParser.js"; +import { NamespaceNameContext } from "./SparkSqlParser.js"; +import { NamespaceNameCreateContext } from "./SparkSqlParser.js"; import { TableNameCreateContext } from "./SparkSqlParser.js"; import { TableNameContext } from "./SparkSqlParser.js"; import { ViewNameCreateContext } from "./SparkSqlParser.js"; @@ -230,15 +327,1097 @@ export class SparkSqlParserListener implements ParseTreeListener { */ exitSingleStatement?: (ctx: SingleStatementContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.statement`. + * Enter a parse tree produced by the `statementDefault` + * labeled alternative in `SparkSqlParser.statement`. * @param ctx the parse tree */ - enterStatement?: (ctx: StatementContext) => void; + enterStatementDefault?: (ctx: StatementDefaultContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.statement`. + * Exit a parse tree produced by the `statementDefault` + * labeled alternative in `SparkSqlParser.statement`. * @param ctx the parse tree */ - exitStatement?: (ctx: StatementContext) => void; + exitStatementDefault?: (ctx: StatementDefaultContext) => void; + /** + * Enter a parse tree produced by the `dmlStatement` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDmlStatement?: (ctx: DmlStatementContext) => void; + /** + * Exit a parse tree produced by the `dmlStatement` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDmlStatement?: (ctx: DmlStatementContext) => void; + /** + * Enter a parse tree produced by the `useNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterUseNamespace?: (ctx: UseNamespaceContext) => void; + /** + * Exit a parse tree produced by the `useNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitUseNamespace?: (ctx: UseNamespaceContext) => void; + /** + * Enter a parse tree produced by the `setCatalog` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetCatalog?: (ctx: SetCatalogContext) => void; + /** + * Exit a parse tree produced by the `setCatalog` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetCatalog?: (ctx: SetCatalogContext) => void; + /** + * Enter a parse tree produced by the `createNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCreateNamespace?: (ctx: CreateNamespaceContext) => void; + /** + * Exit a parse tree produced by the `createNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCreateNamespace?: (ctx: CreateNamespaceContext) => void; + /** + * Enter a parse tree produced by the `setNamespaceProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetNamespaceProperties?: (ctx: SetNamespacePropertiesContext) => void; + /** + * Exit a parse tree produced by the `setNamespaceProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetNamespaceProperties?: (ctx: SetNamespacePropertiesContext) => void; + /** + * Enter a parse tree produced by the `setNamespaceLocation` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetNamespaceLocation?: (ctx: SetNamespaceLocationContext) => void; + /** + * Exit a parse tree produced by the `setNamespaceLocation` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetNamespaceLocation?: (ctx: SetNamespaceLocationContext) => void; + /** + * Enter a parse tree produced by the `dropNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDropNamespace?: (ctx: DropNamespaceContext) => void; + /** + * Exit a parse tree produced by the `dropNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDropNamespace?: (ctx: DropNamespaceContext) => void; + /** + * Enter a parse tree produced by the `showNamespaces` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowNamespaces?: (ctx: ShowNamespacesContext) => void; + /** + * Exit a parse tree produced by the `showNamespaces` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowNamespaces?: (ctx: ShowNamespacesContext) => void; + /** + * Enter a parse tree produced by the `createTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCreateTable?: (ctx: CreateTableContext) => void; + /** + * Exit a parse tree produced by the `createTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCreateTable?: (ctx: CreateTableContext) => void; + /** + * Enter a parse tree produced by the `createTableLike` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCreateTableLike?: (ctx: CreateTableLikeContext) => void; + /** + * Exit a parse tree produced by the `createTableLike` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCreateTableLike?: (ctx: CreateTableLikeContext) => void; + /** + * Enter a parse tree produced by the `replaceTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterReplaceTable?: (ctx: ReplaceTableContext) => void; + /** + * Exit a parse tree produced by the `replaceTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitReplaceTable?: (ctx: ReplaceTableContext) => void; + /** + * Enter a parse tree produced by the `analyze` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterAnalyze?: (ctx: AnalyzeContext) => void; + /** + * Exit a parse tree produced by the `analyze` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitAnalyze?: (ctx: AnalyzeContext) => void; + /** + * Enter a parse tree produced by the `analyzeTables` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterAnalyzeTables?: (ctx: AnalyzeTablesContext) => void; + /** + * Exit a parse tree produced by the `analyzeTables` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitAnalyzeTables?: (ctx: AnalyzeTablesContext) => void; + /** + * Enter a parse tree produced by the `alterTableAddColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterAlterTableAddColumn?: (ctx: AlterTableAddColumnContext) => void; + /** + * Exit a parse tree produced by the `alterTableAddColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitAlterTableAddColumn?: (ctx: AlterTableAddColumnContext) => void; + /** + * Enter a parse tree produced by the `alterTableAddColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterAlterTableAddColumns?: (ctx: AlterTableAddColumnsContext) => void; + /** + * Exit a parse tree produced by the `alterTableAddColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitAlterTableAddColumns?: (ctx: AlterTableAddColumnsContext) => void; + /** + * Enter a parse tree produced by the `renameTableColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterRenameTableColumn?: (ctx: RenameTableColumnContext) => void; + /** + * Exit a parse tree produced by the `renameTableColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitRenameTableColumn?: (ctx: RenameTableColumnContext) => void; + /** + * Enter a parse tree produced by the `alterTableDropColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterAlterTableDropColumn?: (ctx: AlterTableDropColumnContext) => void; + /** + * Exit a parse tree produced by the `alterTableDropColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitAlterTableDropColumn?: (ctx: AlterTableDropColumnContext) => void; + /** + * Enter a parse tree produced by the `dropTableColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDropTableColumns?: (ctx: DropTableColumnsContext) => void; + /** + * Exit a parse tree produced by the `dropTableColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDropTableColumns?: (ctx: DropTableColumnsContext) => void; + /** + * Enter a parse tree produced by the `renameTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterRenameTable?: (ctx: RenameTableContext) => void; + /** + * Exit a parse tree produced by the `renameTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitRenameTable?: (ctx: RenameTableContext) => void; + /** + * Enter a parse tree produced by the `setTableProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetTableProperties?: (ctx: SetTablePropertiesContext) => void; + /** + * Exit a parse tree produced by the `setTableProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetTableProperties?: (ctx: SetTablePropertiesContext) => void; + /** + * Enter a parse tree produced by the `unsetTableProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterUnsetTableProperties?: (ctx: UnsetTablePropertiesContext) => void; + /** + * Exit a parse tree produced by the `unsetTableProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitUnsetTableProperties?: (ctx: UnsetTablePropertiesContext) => void; + /** + * Enter a parse tree produced by the `alterTableAlterColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterAlterTableAlterColumn?: (ctx: AlterTableAlterColumnContext) => void; + /** + * Exit a parse tree produced by the `alterTableAlterColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitAlterTableAlterColumn?: (ctx: AlterTableAlterColumnContext) => void; + /** + * Enter a parse tree produced by the `hiveChangeColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterHiveChangeColumn?: (ctx: HiveChangeColumnContext) => void; + /** + * Exit a parse tree produced by the `hiveChangeColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitHiveChangeColumn?: (ctx: HiveChangeColumnContext) => void; + /** + * Enter a parse tree produced by the `hiveReplaceColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterHiveReplaceColumns?: (ctx: HiveReplaceColumnsContext) => void; + /** + * Exit a parse tree produced by the `hiveReplaceColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitHiveReplaceColumns?: (ctx: HiveReplaceColumnsContext) => void; + /** + * Enter a parse tree produced by the `setTableSerDe` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetTableSerDe?: (ctx: SetTableSerDeContext) => void; + /** + * Exit a parse tree produced by the `setTableSerDe` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetTableSerDe?: (ctx: SetTableSerDeContext) => void; + /** + * Enter a parse tree produced by the `setTableSerDeProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetTableSerDeProperties?: (ctx: SetTableSerDePropertiesContext) => void; + /** + * Exit a parse tree produced by the `setTableSerDeProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetTableSerDeProperties?: (ctx: SetTableSerDePropertiesContext) => void; + /** + * Enter a parse tree produced by the `addTablePartition` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterAddTablePartition?: (ctx: AddTablePartitionContext) => void; + /** + * Exit a parse tree produced by the `addTablePartition` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitAddTablePartition?: (ctx: AddTablePartitionContext) => void; + /** + * Enter a parse tree produced by the `renameTablePartition` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterRenameTablePartition?: (ctx: RenameTablePartitionContext) => void; + /** + * Exit a parse tree produced by the `renameTablePartition` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitRenameTablePartition?: (ctx: RenameTablePartitionContext) => void; + /** + * Enter a parse tree produced by the `dropTablePartitions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDropTablePartitions?: (ctx: DropTablePartitionsContext) => void; + /** + * Exit a parse tree produced by the `dropTablePartitions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDropTablePartitions?: (ctx: DropTablePartitionsContext) => void; + /** + * Enter a parse tree produced by the `setTableLocation` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetTableLocation?: (ctx: SetTableLocationContext) => void; + /** + * Exit a parse tree produced by the `setTableLocation` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetTableLocation?: (ctx: SetTableLocationContext) => void; + /** + * Enter a parse tree produced by the `recoverPartitions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterRecoverPartitions?: (ctx: RecoverPartitionsContext) => void; + /** + * Exit a parse tree produced by the `recoverPartitions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitRecoverPartitions?: (ctx: RecoverPartitionsContext) => void; + /** + * Enter a parse tree produced by the `alterMaterializedViewRewrite` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterAlterMaterializedViewRewrite?: (ctx: AlterMaterializedViewRewriteContext) => void; + /** + * Exit a parse tree produced by the `alterMaterializedViewRewrite` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitAlterMaterializedViewRewrite?: (ctx: AlterMaterializedViewRewriteContext) => void; + /** + * Enter a parse tree produced by the `alterMaterializedViewProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterAlterMaterializedViewProperties?: (ctx: AlterMaterializedViewPropertiesContext) => void; + /** + * Exit a parse tree produced by the `alterMaterializedViewProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitAlterMaterializedViewProperties?: (ctx: AlterMaterializedViewPropertiesContext) => void; + /** + * Enter a parse tree produced by the `dropTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDropTable?: (ctx: DropTableContext) => void; + /** + * Exit a parse tree produced by the `dropTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDropTable?: (ctx: DropTableContext) => void; + /** + * Enter a parse tree produced by the `dropView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDropView?: (ctx: DropViewContext) => void; + /** + * Exit a parse tree produced by the `dropView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDropView?: (ctx: DropViewContext) => void; + /** + * Enter a parse tree produced by the `dropMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDropMaterializedView?: (ctx: DropMaterializedViewContext) => void; + /** + * Exit a parse tree produced by the `dropMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDropMaterializedView?: (ctx: DropMaterializedViewContext) => void; + /** + * Enter a parse tree produced by the `createView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCreateView?: (ctx: CreateViewContext) => void; + /** + * Exit a parse tree produced by the `createView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCreateView?: (ctx: CreateViewContext) => void; + /** + * Enter a parse tree produced by the `createTempViewUsing` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCreateTempViewUsing?: (ctx: CreateTempViewUsingContext) => void; + /** + * Exit a parse tree produced by the `createTempViewUsing` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCreateTempViewUsing?: (ctx: CreateTempViewUsingContext) => void; + /** + * Enter a parse tree produced by the `alterViewQuery` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterAlterViewQuery?: (ctx: AlterViewQueryContext) => void; + /** + * Exit a parse tree produced by the `alterViewQuery` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitAlterViewQuery?: (ctx: AlterViewQueryContext) => void; + /** + * Enter a parse tree produced by the `createFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCreateFunction?: (ctx: CreateFunctionContext) => void; + /** + * Exit a parse tree produced by the `createFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCreateFunction?: (ctx: CreateFunctionContext) => void; + /** + * Enter a parse tree produced by the `createMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCreateMaterializedView?: (ctx: CreateMaterializedViewContext) => void; + /** + * Exit a parse tree produced by the `createMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCreateMaterializedView?: (ctx: CreateMaterializedViewContext) => void; + /** + * Enter a parse tree produced by the `dropFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDropFunction?: (ctx: DropFunctionContext) => void; + /** + * Exit a parse tree produced by the `dropFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDropFunction?: (ctx: DropFunctionContext) => void; + /** + * Enter a parse tree produced by the `declareVariable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDeclareVariable?: (ctx: DeclareVariableContext) => void; + /** + * Exit a parse tree produced by the `declareVariable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDeclareVariable?: (ctx: DeclareVariableContext) => void; + /** + * Enter a parse tree produced by the `dropVariable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDropVariable?: (ctx: DropVariableContext) => void; + /** + * Exit a parse tree produced by the `dropVariable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDropVariable?: (ctx: DropVariableContext) => void; + /** + * Enter a parse tree produced by the `explainStatement` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterExplainStatement?: (ctx: ExplainStatementContext) => void; + /** + * Exit a parse tree produced by the `explainStatement` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitExplainStatement?: (ctx: ExplainStatementContext) => void; + /** + * Enter a parse tree produced by the `showTables` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowTables?: (ctx: ShowTablesContext) => void; + /** + * Exit a parse tree produced by the `showTables` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowTables?: (ctx: ShowTablesContext) => void; + /** + * Enter a parse tree produced by the `showTableExtended` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowTableExtended?: (ctx: ShowTableExtendedContext) => void; + /** + * Exit a parse tree produced by the `showTableExtended` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowTableExtended?: (ctx: ShowTableExtendedContext) => void; + /** + * Enter a parse tree produced by the `showTblProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowTblProperties?: (ctx: ShowTblPropertiesContext) => void; + /** + * Exit a parse tree produced by the `showTblProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowTblProperties?: (ctx: ShowTblPropertiesContext) => void; + /** + * Enter a parse tree produced by the `showColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowColumns?: (ctx: ShowColumnsContext) => void; + /** + * Exit a parse tree produced by the `showColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowColumns?: (ctx: ShowColumnsContext) => void; + /** + * Enter a parse tree produced by the `showViews` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowViews?: (ctx: ShowViewsContext) => void; + /** + * Exit a parse tree produced by the `showViews` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowViews?: (ctx: ShowViewsContext) => void; + /** + * Enter a parse tree produced by the `showPartitions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowPartitions?: (ctx: ShowPartitionsContext) => void; + /** + * Exit a parse tree produced by the `showPartitions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowPartitions?: (ctx: ShowPartitionsContext) => void; + /** + * Enter a parse tree produced by the `showFunctions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowFunctions?: (ctx: ShowFunctionsContext) => void; + /** + * Exit a parse tree produced by the `showFunctions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowFunctions?: (ctx: ShowFunctionsContext) => void; + /** + * Enter a parse tree produced by the `showCreateTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowCreateTable?: (ctx: ShowCreateTableContext) => void; + /** + * Exit a parse tree produced by the `showCreateTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowCreateTable?: (ctx: ShowCreateTableContext) => void; + /** + * Enter a parse tree produced by the `showCurrentNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowCurrentNamespace?: (ctx: ShowCurrentNamespaceContext) => void; + /** + * Exit a parse tree produced by the `showCurrentNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowCurrentNamespace?: (ctx: ShowCurrentNamespaceContext) => void; + /** + * Enter a parse tree produced by the `showCatalogs` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowCatalogs?: (ctx: ShowCatalogsContext) => void; + /** + * Exit a parse tree produced by the `showCatalogs` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowCatalogs?: (ctx: ShowCatalogsContext) => void; + /** + * Enter a parse tree produced by the `showMaterializedViews` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowMaterializedViews?: (ctx: ShowMaterializedViewsContext) => void; + /** + * Exit a parse tree produced by the `showMaterializedViews` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowMaterializedViews?: (ctx: ShowMaterializedViewsContext) => void; + /** + * Enter a parse tree produced by the `showCreateMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterShowCreateMaterializedView?: (ctx: ShowCreateMaterializedViewContext) => void; + /** + * Exit a parse tree produced by the `showCreateMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitShowCreateMaterializedView?: (ctx: ShowCreateMaterializedViewContext) => void; + /** + * Enter a parse tree produced by the `describeFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDescribeFunction?: (ctx: DescribeFunctionContext) => void; + /** + * Exit a parse tree produced by the `describeFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDescribeFunction?: (ctx: DescribeFunctionContext) => void; + /** + * Enter a parse tree produced by the `describeNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDescribeNamespace?: (ctx: DescribeNamespaceContext) => void; + /** + * Exit a parse tree produced by the `describeNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDescribeNamespace?: (ctx: DescribeNamespaceContext) => void; + /** + * Enter a parse tree produced by the `describeRelation` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDescribeRelation?: (ctx: DescribeRelationContext) => void; + /** + * Exit a parse tree produced by the `describeRelation` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDescribeRelation?: (ctx: DescribeRelationContext) => void; + /** + * Enter a parse tree produced by the `describeQuery` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDescribeQuery?: (ctx: DescribeQueryContext) => void; + /** + * Exit a parse tree produced by the `describeQuery` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDescribeQuery?: (ctx: DescribeQueryContext) => void; + /** + * Enter a parse tree produced by the `commentNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCommentNamespace?: (ctx: CommentNamespaceContext) => void; + /** + * Exit a parse tree produced by the `commentNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCommentNamespace?: (ctx: CommentNamespaceContext) => void; + /** + * Enter a parse tree produced by the `commentTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCommentTable?: (ctx: CommentTableContext) => void; + /** + * Exit a parse tree produced by the `commentTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCommentTable?: (ctx: CommentTableContext) => void; + /** + * Enter a parse tree produced by the `refreshTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterRefreshTable?: (ctx: RefreshTableContext) => void; + /** + * Exit a parse tree produced by the `refreshTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitRefreshTable?: (ctx: RefreshTableContext) => void; + /** + * Enter a parse tree produced by the `refreshFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterRefreshFunction?: (ctx: RefreshFunctionContext) => void; + /** + * Exit a parse tree produced by the `refreshFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitRefreshFunction?: (ctx: RefreshFunctionContext) => void; + /** + * Enter a parse tree produced by the `refreshResource` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterRefreshResource?: (ctx: RefreshResourceContext) => void; + /** + * Exit a parse tree produced by the `refreshResource` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitRefreshResource?: (ctx: RefreshResourceContext) => void; + /** + * Enter a parse tree produced by the `refreshMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterRefreshMaterializedView?: (ctx: RefreshMaterializedViewContext) => void; + /** + * Exit a parse tree produced by the `refreshMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitRefreshMaterializedView?: (ctx: RefreshMaterializedViewContext) => void; + /** + * Enter a parse tree produced by the `cacheTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCacheTable?: (ctx: CacheTableContext) => void; + /** + * Exit a parse tree produced by the `cacheTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCacheTable?: (ctx: CacheTableContext) => void; + /** + * Enter a parse tree produced by the `unCacheTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterUnCacheTable?: (ctx: UnCacheTableContext) => void; + /** + * Exit a parse tree produced by the `unCacheTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitUnCacheTable?: (ctx: UnCacheTableContext) => void; + /** + * Enter a parse tree produced by the `clearCache` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterClearCache?: (ctx: ClearCacheContext) => void; + /** + * Exit a parse tree produced by the `clearCache` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitClearCache?: (ctx: ClearCacheContext) => void; + /** + * Enter a parse tree produced by the `loadData` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterLoadData?: (ctx: LoadDataContext) => void; + /** + * Exit a parse tree produced by the `loadData` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitLoadData?: (ctx: LoadDataContext) => void; + /** + * Enter a parse tree produced by the `truncateTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterTruncateTable?: (ctx: TruncateTableContext) => void; + /** + * Exit a parse tree produced by the `truncateTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitTruncateTable?: (ctx: TruncateTableContext) => void; + /** + * Enter a parse tree produced by the `repairTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterRepairTable?: (ctx: RepairTableContext) => void; + /** + * Exit a parse tree produced by the `repairTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitRepairTable?: (ctx: RepairTableContext) => void; + /** + * Enter a parse tree produced by the `manageResource` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterManageResource?: (ctx: ManageResourceContext) => void; + /** + * Exit a parse tree produced by the `manageResource` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitManageResource?: (ctx: ManageResourceContext) => void; + /** + * Enter a parse tree produced by the `failNativeCommand` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterFailNativeCommand?: (ctx: FailNativeCommandContext) => void; + /** + * Exit a parse tree produced by the `failNativeCommand` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitFailNativeCommand?: (ctx: FailNativeCommandContext) => void; + /** + * Enter a parse tree produced by the `setTimeZoneInterval` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetTimeZoneInterval?: (ctx: SetTimeZoneIntervalContext) => void; + /** + * Exit a parse tree produced by the `setTimeZoneInterval` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetTimeZoneInterval?: (ctx: SetTimeZoneIntervalContext) => void; + /** + * Enter a parse tree produced by the `setTimeZone` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetTimeZone?: (ctx: SetTimeZoneContext) => void; + /** + * Exit a parse tree produced by the `setTimeZone` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetTimeZone?: (ctx: SetTimeZoneContext) => void; + /** + * Enter a parse tree produced by the `setTimeZoneAny` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetTimeZoneAny?: (ctx: SetTimeZoneAnyContext) => void; + /** + * Exit a parse tree produced by the `setTimeZoneAny` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetTimeZoneAny?: (ctx: SetTimeZoneAnyContext) => void; + /** + * Enter a parse tree produced by the `setVariableAssignment` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetVariableAssignment?: (ctx: SetVariableAssignmentContext) => void; + /** + * Exit a parse tree produced by the `setVariableAssignment` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetVariableAssignment?: (ctx: SetVariableAssignmentContext) => void; + /** + * Enter a parse tree produced by the `setVariableMultiAssignment` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetVariableMultiAssignment?: (ctx: SetVariableMultiAssignmentContext) => void; + /** + * Exit a parse tree produced by the `setVariableMultiAssignment` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetVariableMultiAssignment?: (ctx: SetVariableMultiAssignmentContext) => void; + /** + * Enter a parse tree produced by the `setConfig` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetConfig?: (ctx: SetConfigContext) => void; + /** + * Exit a parse tree produced by the `setConfig` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetConfig?: (ctx: SetConfigContext) => void; + /** + * Enter a parse tree produced by the `setConfigAndValue` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetConfigAndValue?: (ctx: SetConfigAndValueContext) => void; + /** + * Exit a parse tree produced by the `setConfigAndValue` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetConfigAndValue?: (ctx: SetConfigAndValueContext) => void; + /** + * Enter a parse tree produced by the `setConfigAnyKey` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetConfigAnyKey?: (ctx: SetConfigAnyKeyContext) => void; + /** + * Exit a parse tree produced by the `setConfigAnyKey` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetConfigAnyKey?: (ctx: SetConfigAnyKeyContext) => void; + /** + * Enter a parse tree produced by the `setAny` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterSetAny?: (ctx: SetAnyContext) => void; + /** + * Exit a parse tree produced by the `setAny` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitSetAny?: (ctx: SetAnyContext) => void; + /** + * Enter a parse tree produced by the `resetConfig` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterResetConfig?: (ctx: ResetConfigContext) => void; + /** + * Exit a parse tree produced by the `resetConfig` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitResetConfig?: (ctx: ResetConfigContext) => void; + /** + * Enter a parse tree produced by the `resetAny` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterResetAny?: (ctx: ResetAnyContext) => void; + /** + * Exit a parse tree produced by the `resetAny` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitResetAny?: (ctx: ResetAnyContext) => void; + /** + * Enter a parse tree produced by the `createIndex` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterCreateIndex?: (ctx: CreateIndexContext) => void; + /** + * Exit a parse tree produced by the `createIndex` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitCreateIndex?: (ctx: CreateIndexContext) => void; + /** + * Enter a parse tree produced by the `dropIndex` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterDropIndex?: (ctx: DropIndexContext) => void; + /** + * Exit a parse tree produced by the `dropIndex` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitDropIndex?: (ctx: DropIndexContext) => void; + /** + * Enter a parse tree produced by the `optimizeTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterOptimizeTable?: (ctx: OptimizeTableContext) => void; + /** + * Exit a parse tree produced by the `optimizeTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitOptimizeTable?: (ctx: OptimizeTableContext) => void; + /** + * Enter a parse tree produced by the `unsupportHiveCommands` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + enterUnsupportHiveCommands?: (ctx: UnsupportHiveCommandsContext) => void; + /** + * Exit a parse tree produced by the `unsupportHiveCommands` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + */ + exitUnsupportHiveCommands?: (ctx: UnsupportHiveCommandsContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.timezone`. * @param ctx the parse tree @@ -340,15 +1519,17 @@ export class SparkSqlParserListener implements ParseTreeListener { */ exitCommentSpec?: (ctx: CommentSpecContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.query`. + * Enter a parse tree produced by the `queryStatement` + * labeled alternative in `SparkSqlParser.query`. * @param ctx the parse tree */ - enterQuery?: (ctx: QueryContext) => void; + enterQueryStatement?: (ctx: QueryStatementContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.query`. + * Exit a parse tree produced by the `queryStatement` + * labeled alternative in `SparkSqlParser.query`. * @param ctx the parse tree */ - exitQuery?: (ctx: QueryContext) => void; + exitQueryStatement?: (ctx: QueryStatementContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.insertInto`. * @param ctx the parse tree @@ -390,25 +1571,25 @@ export class SparkSqlParserListener implements ParseTreeListener { */ exitPartitionVal?: (ctx: PartitionValContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.dbSchema`. + * Enter a parse tree produced by `SparkSqlParser.namespace`. * @param ctx the parse tree */ - enterDbSchema?: (ctx: DbSchemaContext) => void; + enterNamespace?: (ctx: NamespaceContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.dbSchema`. + * Exit a parse tree produced by `SparkSqlParser.namespace`. * @param ctx the parse tree */ - exitDbSchema?: (ctx: DbSchemaContext) => void; + exitNamespace?: (ctx: NamespaceContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.dbSchemas`. + * Enter a parse tree produced by `SparkSqlParser.namespaces`. * @param ctx the parse tree */ - enterDbSchemas?: (ctx: DbSchemasContext) => void; + enterNamespaces?: (ctx: NamespacesContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.dbSchemas`. + * Exit a parse tree produced by `SparkSqlParser.namespaces`. * @param ctx the parse tree */ - exitDbSchemas?: (ctx: DbSchemasContext) => void; + exitNamespaces?: (ctx: NamespacesContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.describeFuncName`. * @param ctx the parse tree @@ -590,35 +1771,85 @@ export class SparkSqlParserListener implements ParseTreeListener { */ exitResource?: (ctx: ResourceContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.dmlStatementNoWith`. + * Enter a parse tree produced by the `insertFromQuery` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. * @param ctx the parse tree */ - enterDmlStatementNoWith?: (ctx: DmlStatementNoWithContext) => void; + enterInsertFromQuery?: (ctx: InsertFromQueryContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.dmlStatementNoWith`. + * Exit a parse tree produced by the `insertFromQuery` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. * @param ctx the parse tree */ - exitDmlStatementNoWith?: (ctx: DmlStatementNoWithContext) => void; + exitInsertFromQuery?: (ctx: InsertFromQueryContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.dbSchemaName`. + * Enter a parse tree produced by the `multipleInsert` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. * @param ctx the parse tree */ - enterDbSchemaName?: (ctx: DbSchemaNameContext) => void; + enterMultipleInsert?: (ctx: MultipleInsertContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.dbSchemaName`. + * Exit a parse tree produced by the `multipleInsert` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. * @param ctx the parse tree */ - exitDbSchemaName?: (ctx: DbSchemaNameContext) => void; + exitMultipleInsert?: (ctx: MultipleInsertContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.dbSchemaNameCreate`. + * Enter a parse tree produced by the `deleteFromTable` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. * @param ctx the parse tree */ - enterDbSchemaNameCreate?: (ctx: DbSchemaNameCreateContext) => void; + enterDeleteFromTable?: (ctx: DeleteFromTableContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.dbSchemaNameCreate`. + * Exit a parse tree produced by the `deleteFromTable` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. * @param ctx the parse tree */ - exitDbSchemaNameCreate?: (ctx: DbSchemaNameCreateContext) => void; + exitDeleteFromTable?: (ctx: DeleteFromTableContext) => void; + /** + * Enter a parse tree produced by the `updateTable` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. + * @param ctx the parse tree + */ + enterUpdateTable?: (ctx: UpdateTableContext) => void; + /** + * Exit a parse tree produced by the `updateTable` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. + * @param ctx the parse tree + */ + exitUpdateTable?: (ctx: UpdateTableContext) => void; + /** + * Enter a parse tree produced by the `mergeIntoTable` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. + * @param ctx the parse tree + */ + enterMergeIntoTable?: (ctx: MergeIntoTableContext) => void; + /** + * Exit a parse tree produced by the `mergeIntoTable` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. + * @param ctx the parse tree + */ + exitMergeIntoTable?: (ctx: MergeIntoTableContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.namespaceName`. + * @param ctx the parse tree + */ + enterNamespaceName?: (ctx: NamespaceNameContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.namespaceName`. + * @param ctx the parse tree + */ + exitNamespaceName?: (ctx: NamespaceNameContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.namespaceNameCreate`. + * @param ctx the parse tree + */ + enterNamespaceNameCreate?: (ctx: NamespaceNameCreateContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.namespaceNameCreate`. + * @param ctx the parse tree + */ + exitNamespaceNameCreate?: (ctx: NamespaceNameCreateContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.tableNameCreate`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParserVisitor.ts b/src/lib/spark/SparkSqlParserVisitor.ts index 616f380..12f645d 100644 --- a/src/lib/spark/SparkSqlParserVisitor.ts +++ b/src/lib/spark/SparkSqlParserVisitor.ts @@ -3,9 +3,102 @@ import { AbstractParseTreeVisitor } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./SparkSqlParser.js"; import { SingleStatementContext } from "./SparkSqlParser.js"; -import { StatementContext } from "./SparkSqlParser.js"; +import { StatementDefaultContext } from "./SparkSqlParser.js"; +import { DmlStatementContext } from "./SparkSqlParser.js"; +import { UseNamespaceContext } from "./SparkSqlParser.js"; +import { SetCatalogContext } from "./SparkSqlParser.js"; +import { CreateNamespaceContext } from "./SparkSqlParser.js"; +import { SetNamespacePropertiesContext } from "./SparkSqlParser.js"; +import { SetNamespaceLocationContext } from "./SparkSqlParser.js"; +import { DropNamespaceContext } from "./SparkSqlParser.js"; +import { ShowNamespacesContext } from "./SparkSqlParser.js"; +import { CreateTableContext } from "./SparkSqlParser.js"; +import { CreateTableLikeContext } from "./SparkSqlParser.js"; +import { ReplaceTableContext } from "./SparkSqlParser.js"; +import { AnalyzeContext } from "./SparkSqlParser.js"; +import { AnalyzeTablesContext } from "./SparkSqlParser.js"; +import { AlterTableAddColumnContext } from "./SparkSqlParser.js"; +import { AlterTableAddColumnsContext } from "./SparkSqlParser.js"; +import { RenameTableColumnContext } from "./SparkSqlParser.js"; +import { AlterTableDropColumnContext } from "./SparkSqlParser.js"; +import { DropTableColumnsContext } from "./SparkSqlParser.js"; +import { RenameTableContext } from "./SparkSqlParser.js"; +import { SetTablePropertiesContext } from "./SparkSqlParser.js"; +import { UnsetTablePropertiesContext } from "./SparkSqlParser.js"; +import { AlterTableAlterColumnContext } from "./SparkSqlParser.js"; +import { HiveChangeColumnContext } from "./SparkSqlParser.js"; +import { HiveReplaceColumnsContext } from "./SparkSqlParser.js"; +import { SetTableSerDeContext } from "./SparkSqlParser.js"; +import { SetTableSerDePropertiesContext } from "./SparkSqlParser.js"; +import { AddTablePartitionContext } from "./SparkSqlParser.js"; +import { RenameTablePartitionContext } from "./SparkSqlParser.js"; +import { DropTablePartitionsContext } from "./SparkSqlParser.js"; +import { SetTableLocationContext } from "./SparkSqlParser.js"; +import { RecoverPartitionsContext } from "./SparkSqlParser.js"; +import { AlterMaterializedViewRewriteContext } from "./SparkSqlParser.js"; +import { AlterMaterializedViewPropertiesContext } from "./SparkSqlParser.js"; +import { DropTableContext } from "./SparkSqlParser.js"; +import { DropViewContext } from "./SparkSqlParser.js"; +import { DropMaterializedViewContext } from "./SparkSqlParser.js"; +import { CreateViewContext } from "./SparkSqlParser.js"; +import { CreateTempViewUsingContext } from "./SparkSqlParser.js"; +import { AlterViewQueryContext } from "./SparkSqlParser.js"; +import { CreateFunctionContext } from "./SparkSqlParser.js"; +import { CreateMaterializedViewContext } from "./SparkSqlParser.js"; +import { DropFunctionContext } from "./SparkSqlParser.js"; +import { DeclareVariableContext } from "./SparkSqlParser.js"; +import { DropVariableContext } from "./SparkSqlParser.js"; +import { ExplainStatementContext } from "./SparkSqlParser.js"; +import { ShowTablesContext } from "./SparkSqlParser.js"; +import { ShowTableExtendedContext } from "./SparkSqlParser.js"; +import { ShowTblPropertiesContext } from "./SparkSqlParser.js"; +import { ShowColumnsContext } from "./SparkSqlParser.js"; +import { ShowViewsContext } from "./SparkSqlParser.js"; +import { ShowPartitionsContext } from "./SparkSqlParser.js"; +import { ShowFunctionsContext } from "./SparkSqlParser.js"; +import { ShowCreateTableContext } from "./SparkSqlParser.js"; +import { ShowCurrentNamespaceContext } from "./SparkSqlParser.js"; +import { ShowCatalogsContext } from "./SparkSqlParser.js"; +import { ShowMaterializedViewsContext } from "./SparkSqlParser.js"; +import { ShowCreateMaterializedViewContext } from "./SparkSqlParser.js"; +import { DescribeFunctionContext } from "./SparkSqlParser.js"; +import { DescribeNamespaceContext } from "./SparkSqlParser.js"; +import { DescribeRelationContext } from "./SparkSqlParser.js"; +import { DescribeQueryContext } from "./SparkSqlParser.js"; +import { CommentNamespaceContext } from "./SparkSqlParser.js"; +import { CommentTableContext } from "./SparkSqlParser.js"; +import { RefreshTableContext } from "./SparkSqlParser.js"; +import { RefreshFunctionContext } from "./SparkSqlParser.js"; +import { RefreshResourceContext } from "./SparkSqlParser.js"; +import { RefreshMaterializedViewContext } from "./SparkSqlParser.js"; +import { CacheTableContext } from "./SparkSqlParser.js"; +import { UnCacheTableContext } from "./SparkSqlParser.js"; +import { ClearCacheContext } from "./SparkSqlParser.js"; +import { LoadDataContext } from "./SparkSqlParser.js"; +import { TruncateTableContext } from "./SparkSqlParser.js"; +import { RepairTableContext } from "./SparkSqlParser.js"; +import { ManageResourceContext } from "./SparkSqlParser.js"; +import { FailNativeCommandContext } from "./SparkSqlParser.js"; +import { SetTimeZoneIntervalContext } from "./SparkSqlParser.js"; +import { SetTimeZoneContext } from "./SparkSqlParser.js"; +import { SetTimeZoneAnyContext } from "./SparkSqlParser.js"; +import { SetVariableAssignmentContext } from "./SparkSqlParser.js"; +import { SetVariableMultiAssignmentContext } from "./SparkSqlParser.js"; +import { SetConfigContext } from "./SparkSqlParser.js"; +import { SetConfigAndValueContext } from "./SparkSqlParser.js"; +import { SetConfigAnyKeyContext } from "./SparkSqlParser.js"; +import { SetAnyContext } from "./SparkSqlParser.js"; +import { ResetConfigContext } from "./SparkSqlParser.js"; +import { ResetAnyContext } from "./SparkSqlParser.js"; +import { CreateIndexContext } from "./SparkSqlParser.js"; +import { DropIndexContext } from "./SparkSqlParser.js"; +import { OptimizeTableContext } from "./SparkSqlParser.js"; +import { UnsupportHiveCommandsContext } from "./SparkSqlParser.js"; import { TimezoneContext } from "./SparkSqlParser.js"; import { ConfigKeyContext } from "./SparkSqlParser.js"; import { ConfigValueContext } from "./SparkSqlParser.js"; @@ -16,13 +109,13 @@ import { BucketSpecContext } from "./SparkSqlParser.js"; import { SkewSpecContext } from "./SparkSqlParser.js"; import { LocationSpecContext } from "./SparkSqlParser.js"; import { CommentSpecContext } from "./SparkSqlParser.js"; -import { QueryContext } from "./SparkSqlParser.js"; +import { QueryStatementContext } from "./SparkSqlParser.js"; import { InsertIntoContext } from "./SparkSqlParser.js"; import { PartitionSpecLocationContext } from "./SparkSqlParser.js"; import { PartitionSpecContext } from "./SparkSqlParser.js"; import { PartitionValContext } from "./SparkSqlParser.js"; -import { DbSchemaContext } from "./SparkSqlParser.js"; -import { DbSchemasContext } from "./SparkSqlParser.js"; +import { NamespaceContext } from "./SparkSqlParser.js"; +import { NamespacesContext } from "./SparkSqlParser.js"; import { DescribeFuncNameContext } from "./SparkSqlParser.js"; import { DescribeColNameContext } from "./SparkSqlParser.js"; import { CtesContext } from "./SparkSqlParser.js"; @@ -41,9 +134,13 @@ import { CreateFileFormatContext } from "./SparkSqlParser.js"; import { FileFormatContext } from "./SparkSqlParser.js"; import { StorageHandlerContext } from "./SparkSqlParser.js"; import { ResourceContext } from "./SparkSqlParser.js"; -import { DmlStatementNoWithContext } from "./SparkSqlParser.js"; -import { DbSchemaNameContext } from "./SparkSqlParser.js"; -import { DbSchemaNameCreateContext } from "./SparkSqlParser.js"; +import { InsertFromQueryContext } from "./SparkSqlParser.js"; +import { MultipleInsertContext } from "./SparkSqlParser.js"; +import { DeleteFromTableContext } from "./SparkSqlParser.js"; +import { UpdateTableContext } from "./SparkSqlParser.js"; +import { MergeIntoTableContext } from "./SparkSqlParser.js"; +import { NamespaceNameContext } from "./SparkSqlParser.js"; +import { NamespaceNameCreateContext } from "./SparkSqlParser.js"; import { TableNameCreateContext } from "./SparkSqlParser.js"; import { TableNameContext } from "./SparkSqlParser.js"; import { ViewNameCreateContext } from "./SparkSqlParser.js"; @@ -225,11 +322,642 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `SparkSqlParser.statement`. + * Visit a parse tree produced by the `statementDefault` + * labeled alternative in `SparkSqlParser.statement`. * @param ctx the parse tree * @return the visitor result */ - visitStatement?: (ctx: StatementContext) => Result; + visitStatementDefault?: (ctx: StatementDefaultContext) => Result; + /** + * Visit a parse tree produced by the `dmlStatement` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDmlStatement?: (ctx: DmlStatementContext) => Result; + /** + * Visit a parse tree produced by the `useNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitUseNamespace?: (ctx: UseNamespaceContext) => Result; + /** + * Visit a parse tree produced by the `setCatalog` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetCatalog?: (ctx: SetCatalogContext) => Result; + /** + * Visit a parse tree produced by the `createNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCreateNamespace?: (ctx: CreateNamespaceContext) => Result; + /** + * Visit a parse tree produced by the `setNamespaceProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetNamespaceProperties?: (ctx: SetNamespacePropertiesContext) => Result; + /** + * Visit a parse tree produced by the `setNamespaceLocation` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetNamespaceLocation?: (ctx: SetNamespaceLocationContext) => Result; + /** + * Visit a parse tree produced by the `dropNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDropNamespace?: (ctx: DropNamespaceContext) => Result; + /** + * Visit a parse tree produced by the `showNamespaces` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowNamespaces?: (ctx: ShowNamespacesContext) => Result; + /** + * Visit a parse tree produced by the `createTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCreateTable?: (ctx: CreateTableContext) => Result; + /** + * Visit a parse tree produced by the `createTableLike` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCreateTableLike?: (ctx: CreateTableLikeContext) => Result; + /** + * Visit a parse tree produced by the `replaceTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitReplaceTable?: (ctx: ReplaceTableContext) => Result; + /** + * Visit a parse tree produced by the `analyze` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAnalyze?: (ctx: AnalyzeContext) => Result; + /** + * Visit a parse tree produced by the `analyzeTables` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAnalyzeTables?: (ctx: AnalyzeTablesContext) => Result; + /** + * Visit a parse tree produced by the `alterTableAddColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAlterTableAddColumn?: (ctx: AlterTableAddColumnContext) => Result; + /** + * Visit a parse tree produced by the `alterTableAddColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAlterTableAddColumns?: (ctx: AlterTableAddColumnsContext) => Result; + /** + * Visit a parse tree produced by the `renameTableColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRenameTableColumn?: (ctx: RenameTableColumnContext) => Result; + /** + * Visit a parse tree produced by the `alterTableDropColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAlterTableDropColumn?: (ctx: AlterTableDropColumnContext) => Result; + /** + * Visit a parse tree produced by the `dropTableColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDropTableColumns?: (ctx: DropTableColumnsContext) => Result; + /** + * Visit a parse tree produced by the `renameTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRenameTable?: (ctx: RenameTableContext) => Result; + /** + * Visit a parse tree produced by the `setTableProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetTableProperties?: (ctx: SetTablePropertiesContext) => Result; + /** + * Visit a parse tree produced by the `unsetTableProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitUnsetTableProperties?: (ctx: UnsetTablePropertiesContext) => Result; + /** + * Visit a parse tree produced by the `alterTableAlterColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAlterTableAlterColumn?: (ctx: AlterTableAlterColumnContext) => Result; + /** + * Visit a parse tree produced by the `hiveChangeColumn` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitHiveChangeColumn?: (ctx: HiveChangeColumnContext) => Result; + /** + * Visit a parse tree produced by the `hiveReplaceColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitHiveReplaceColumns?: (ctx: HiveReplaceColumnsContext) => Result; + /** + * Visit a parse tree produced by the `setTableSerDe` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetTableSerDe?: (ctx: SetTableSerDeContext) => Result; + /** + * Visit a parse tree produced by the `setTableSerDeProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetTableSerDeProperties?: (ctx: SetTableSerDePropertiesContext) => Result; + /** + * Visit a parse tree produced by the `addTablePartition` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAddTablePartition?: (ctx: AddTablePartitionContext) => Result; + /** + * Visit a parse tree produced by the `renameTablePartition` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRenameTablePartition?: (ctx: RenameTablePartitionContext) => Result; + /** + * Visit a parse tree produced by the `dropTablePartitions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDropTablePartitions?: (ctx: DropTablePartitionsContext) => Result; + /** + * Visit a parse tree produced by the `setTableLocation` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetTableLocation?: (ctx: SetTableLocationContext) => Result; + /** + * Visit a parse tree produced by the `recoverPartitions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRecoverPartitions?: (ctx: RecoverPartitionsContext) => Result; + /** + * Visit a parse tree produced by the `alterMaterializedViewRewrite` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAlterMaterializedViewRewrite?: (ctx: AlterMaterializedViewRewriteContext) => Result; + /** + * Visit a parse tree produced by the `alterMaterializedViewProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAlterMaterializedViewProperties?: (ctx: AlterMaterializedViewPropertiesContext) => Result; + /** + * Visit a parse tree produced by the `dropTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDropTable?: (ctx: DropTableContext) => Result; + /** + * Visit a parse tree produced by the `dropView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDropView?: (ctx: DropViewContext) => Result; + /** + * Visit a parse tree produced by the `dropMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDropMaterializedView?: (ctx: DropMaterializedViewContext) => Result; + /** + * Visit a parse tree produced by the `createView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCreateView?: (ctx: CreateViewContext) => Result; + /** + * Visit a parse tree produced by the `createTempViewUsing` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCreateTempViewUsing?: (ctx: CreateTempViewUsingContext) => Result; + /** + * Visit a parse tree produced by the `alterViewQuery` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAlterViewQuery?: (ctx: AlterViewQueryContext) => Result; + /** + * Visit a parse tree produced by the `createFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCreateFunction?: (ctx: CreateFunctionContext) => Result; + /** + * Visit a parse tree produced by the `createMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCreateMaterializedView?: (ctx: CreateMaterializedViewContext) => Result; + /** + * Visit a parse tree produced by the `dropFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDropFunction?: (ctx: DropFunctionContext) => Result; + /** + * Visit a parse tree produced by the `declareVariable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDeclareVariable?: (ctx: DeclareVariableContext) => Result; + /** + * Visit a parse tree produced by the `dropVariable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDropVariable?: (ctx: DropVariableContext) => Result; + /** + * Visit a parse tree produced by the `explainStatement` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitExplainStatement?: (ctx: ExplainStatementContext) => Result; + /** + * Visit a parse tree produced by the `showTables` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowTables?: (ctx: ShowTablesContext) => Result; + /** + * Visit a parse tree produced by the `showTableExtended` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowTableExtended?: (ctx: ShowTableExtendedContext) => Result; + /** + * Visit a parse tree produced by the `showTblProperties` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowTblProperties?: (ctx: ShowTblPropertiesContext) => Result; + /** + * Visit a parse tree produced by the `showColumns` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowColumns?: (ctx: ShowColumnsContext) => Result; + /** + * Visit a parse tree produced by the `showViews` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowViews?: (ctx: ShowViewsContext) => Result; + /** + * Visit a parse tree produced by the `showPartitions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowPartitions?: (ctx: ShowPartitionsContext) => Result; + /** + * Visit a parse tree produced by the `showFunctions` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowFunctions?: (ctx: ShowFunctionsContext) => Result; + /** + * Visit a parse tree produced by the `showCreateTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowCreateTable?: (ctx: ShowCreateTableContext) => Result; + /** + * Visit a parse tree produced by the `showCurrentNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowCurrentNamespace?: (ctx: ShowCurrentNamespaceContext) => Result; + /** + * Visit a parse tree produced by the `showCatalogs` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowCatalogs?: (ctx: ShowCatalogsContext) => Result; + /** + * Visit a parse tree produced by the `showMaterializedViews` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowMaterializedViews?: (ctx: ShowMaterializedViewsContext) => Result; + /** + * Visit a parse tree produced by the `showCreateMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitShowCreateMaterializedView?: (ctx: ShowCreateMaterializedViewContext) => Result; + /** + * Visit a parse tree produced by the `describeFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDescribeFunction?: (ctx: DescribeFunctionContext) => Result; + /** + * Visit a parse tree produced by the `describeNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDescribeNamespace?: (ctx: DescribeNamespaceContext) => Result; + /** + * Visit a parse tree produced by the `describeRelation` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDescribeRelation?: (ctx: DescribeRelationContext) => Result; + /** + * Visit a parse tree produced by the `describeQuery` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDescribeQuery?: (ctx: DescribeQueryContext) => Result; + /** + * Visit a parse tree produced by the `commentNamespace` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCommentNamespace?: (ctx: CommentNamespaceContext) => Result; + /** + * Visit a parse tree produced by the `commentTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCommentTable?: (ctx: CommentTableContext) => Result; + /** + * Visit a parse tree produced by the `refreshTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRefreshTable?: (ctx: RefreshTableContext) => Result; + /** + * Visit a parse tree produced by the `refreshFunction` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRefreshFunction?: (ctx: RefreshFunctionContext) => Result; + /** + * Visit a parse tree produced by the `refreshResource` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRefreshResource?: (ctx: RefreshResourceContext) => Result; + /** + * Visit a parse tree produced by the `refreshMaterializedView` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRefreshMaterializedView?: (ctx: RefreshMaterializedViewContext) => Result; + /** + * Visit a parse tree produced by the `cacheTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCacheTable?: (ctx: CacheTableContext) => Result; + /** + * Visit a parse tree produced by the `unCacheTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitUnCacheTable?: (ctx: UnCacheTableContext) => Result; + /** + * Visit a parse tree produced by the `clearCache` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitClearCache?: (ctx: ClearCacheContext) => Result; + /** + * Visit a parse tree produced by the `loadData` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLoadData?: (ctx: LoadDataContext) => Result; + /** + * Visit a parse tree produced by the `truncateTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTruncateTable?: (ctx: TruncateTableContext) => Result; + /** + * Visit a parse tree produced by the `repairTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRepairTable?: (ctx: RepairTableContext) => Result; + /** + * Visit a parse tree produced by the `manageResource` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitManageResource?: (ctx: ManageResourceContext) => Result; + /** + * Visit a parse tree produced by the `failNativeCommand` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFailNativeCommand?: (ctx: FailNativeCommandContext) => Result; + /** + * Visit a parse tree produced by the `setTimeZoneInterval` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetTimeZoneInterval?: (ctx: SetTimeZoneIntervalContext) => Result; + /** + * Visit a parse tree produced by the `setTimeZone` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetTimeZone?: (ctx: SetTimeZoneContext) => Result; + /** + * Visit a parse tree produced by the `setTimeZoneAny` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetTimeZoneAny?: (ctx: SetTimeZoneAnyContext) => Result; + /** + * Visit a parse tree produced by the `setVariableAssignment` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetVariableAssignment?: (ctx: SetVariableAssignmentContext) => Result; + /** + * Visit a parse tree produced by the `setVariableMultiAssignment` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetVariableMultiAssignment?: (ctx: SetVariableMultiAssignmentContext) => Result; + /** + * Visit a parse tree produced by the `setConfig` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetConfig?: (ctx: SetConfigContext) => Result; + /** + * Visit a parse tree produced by the `setConfigAndValue` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetConfigAndValue?: (ctx: SetConfigAndValueContext) => Result; + /** + * Visit a parse tree produced by the `setConfigAnyKey` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetConfigAnyKey?: (ctx: SetConfigAnyKeyContext) => Result; + /** + * Visit a parse tree produced by the `setAny` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSetAny?: (ctx: SetAnyContext) => Result; + /** + * Visit a parse tree produced by the `resetConfig` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitResetConfig?: (ctx: ResetConfigContext) => Result; + /** + * Visit a parse tree produced by the `resetAny` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitResetAny?: (ctx: ResetAnyContext) => Result; + /** + * Visit a parse tree produced by the `createIndex` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCreateIndex?: (ctx: CreateIndexContext) => Result; + /** + * Visit a parse tree produced by the `dropIndex` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDropIndex?: (ctx: DropIndexContext) => Result; + /** + * Visit a parse tree produced by the `optimizeTable` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitOptimizeTable?: (ctx: OptimizeTableContext) => Result; + /** + * Visit a parse tree produced by the `unsupportHiveCommands` + * labeled alternative in `SparkSqlParser.statement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitUnsupportHiveCommands?: (ctx: UnsupportHiveCommandsContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.timezone`. * @param ctx the parse tree @@ -291,11 +1019,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `SparkSqlParser.query`. + * Visit a parse tree produced by the `queryStatement` + * labeled alternative in `SparkSqlParser.query`. * @param ctx the parse tree * @return the visitor result */ - visitQuery?: (ctx: QueryContext) => Result; + visitQueryStatement?: (ctx: QueryStatementContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.insertInto`. * @param ctx the parse tree @@ -321,17 +1050,17 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `SparkSqlParser.dbSchema`. + * Visit a parse tree produced by `SparkSqlParser.namespace`. * @param ctx the parse tree * @return the visitor result */ - visitDbSchema?: (ctx: DbSchemaContext) => Result; + visitNamespace?: (ctx: NamespaceContext) => Result; /** - * Visit a parse tree produced by `SparkSqlParser.dbSchemas`. + * Visit a parse tree produced by `SparkSqlParser.namespaces`. * @param ctx the parse tree * @return the visitor result */ - visitDbSchemas?: (ctx: DbSchemasContext) => Result; + visitNamespaces?: (ctx: NamespacesContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.describeFuncName`. * @param ctx the parse tree @@ -441,23 +1170,52 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `SparkSqlParser.dmlStatementNoWith`. + * Visit a parse tree produced by the `insertFromQuery` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. * @param ctx the parse tree * @return the visitor result */ - visitDmlStatementNoWith?: (ctx: DmlStatementNoWithContext) => Result; + visitInsertFromQuery?: (ctx: InsertFromQueryContext) => Result; /** - * Visit a parse tree produced by `SparkSqlParser.dbSchemaName`. + * Visit a parse tree produced by the `multipleInsert` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. * @param ctx the parse tree * @return the visitor result */ - visitDbSchemaName?: (ctx: DbSchemaNameContext) => Result; + visitMultipleInsert?: (ctx: MultipleInsertContext) => Result; /** - * Visit a parse tree produced by `SparkSqlParser.dbSchemaNameCreate`. + * Visit a parse tree produced by the `deleteFromTable` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. * @param ctx the parse tree * @return the visitor result */ - visitDbSchemaNameCreate?: (ctx: DbSchemaNameCreateContext) => Result; + visitDeleteFromTable?: (ctx: DeleteFromTableContext) => Result; + /** + * Visit a parse tree produced by the `updateTable` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. + * @param ctx the parse tree + * @return the visitor result + */ + visitUpdateTable?: (ctx: UpdateTableContext) => Result; + /** + * Visit a parse tree produced by the `mergeIntoTable` + * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. + * @param ctx the parse tree + * @return the visitor result + */ + visitMergeIntoTable?: (ctx: MergeIntoTableContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.namespaceName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitNamespaceName?: (ctx: NamespaceNameContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.namespaceNameCreate`. + * @param ctx the parse tree + * @return the visitor result + */ + visitNamespaceNameCreate?: (ctx: NamespaceNameCreateContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.tableNameCreate`. * @param ctx the parse tree diff --git a/src/lib/trinosql/TrinoSql.interp b/src/lib/trinosql/TrinoSql.interp index 37211a5..2b47bb1 100644 --- a/src/lib/trinosql/TrinoSql.interp +++ b/src/lib/trinosql/TrinoSql.interp @@ -671,4 +671,4 @@ nonReserved atn: -[4, 1, 277, 2605, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 1, 0, 5, 0, 220, 8, 0, 10, 0, 12, 0, 223, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 233, 8, 2, 1, 3, 1, 3, 3, 3, 237, 8, 3, 1, 4, 1, 4, 3, 4, 241, 8, 4, 1, 5, 1, 5, 3, 5, 245, 8, 5, 1, 6, 1, 6, 3, 6, 249, 8, 6, 1, 7, 1, 7, 3, 7, 253, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 263, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 268, 8, 8, 1, 8, 1, 8, 3, 8, 272, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 278, 8, 8, 1, 8, 1, 8, 3, 8, 282, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 303, 8, 8, 1, 8, 1, 8, 3, 8, 307, 8, 8, 1, 8, 1, 8, 3, 8, 311, 8, 8, 1, 8, 1, 8, 3, 8, 315, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 323, 8, 8, 1, 8, 1, 8, 3, 8, 327, 8, 8, 1, 8, 3, 8, 330, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 337, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 344, 8, 8, 10, 8, 12, 8, 347, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 352, 8, 8, 1, 8, 1, 8, 3, 8, 356, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 362, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 369, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 378, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 387, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 401, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 410, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 416, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 423, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 433, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 448, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 456, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 483, 8, 8, 10, 8, 12, 8, 486, 9, 8, 3, 8, 488, 8, 8, 1, 8, 3, 8, 491, 8, 8, 1, 8, 1, 8, 3, 8, 495, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 501, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 506, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 513, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 518, 8, 8, 1, 8, 1, 8, 3, 8, 522, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 530, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 536, 8, 8, 1, 8, 1, 8, 3, 8, 540, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 554, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 562, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 581, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 604, 8, 8, 10, 8, 12, 8, 607, 9, 8, 3, 8, 609, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 619, 8, 8, 1, 8, 1, 8, 3, 8, 623, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 634, 8, 8, 10, 8, 12, 8, 637, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 642, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 647, 8, 8, 1, 8, 1, 8, 3, 8, 651, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 657, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 664, 8, 8, 10, 8, 12, 8, 667, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 672, 8, 8, 1, 8, 1, 8, 3, 8, 676, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 683, 8, 8, 1, 8, 1, 8, 3, 8, 687, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 693, 8, 8, 10, 8, 12, 8, 696, 9, 8, 1, 8, 1, 8, 3, 8, 700, 8, 8, 1, 8, 1, 8, 3, 8, 704, 8, 8, 1, 8, 1, 8, 3, 8, 708, 8, 8, 1, 8, 3, 8, 711, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 718, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 724, 8, 8, 10, 8, 12, 8, 727, 9, 8, 1, 8, 1, 8, 3, 8, 731, 8, 8, 1, 8, 1, 8, 3, 8, 735, 8, 8, 1, 8, 1, 8, 3, 8, 739, 8, 8, 1, 8, 3, 8, 742, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 751, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 756, 8, 8, 10, 8, 12, 8, 759, 9, 8, 1, 8, 1, 8, 3, 8, 763, 8, 8, 1, 8, 1, 8, 3, 8, 767, 8, 8, 1, 8, 1, 8, 3, 8, 771, 8, 8, 1, 8, 3, 8, 774, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 782, 8, 8, 1, 8, 3, 8, 785, 8, 8, 1, 8, 1, 8, 3, 8, 789, 8, 8, 1, 8, 3, 8, 792, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 798, 8, 8, 10, 8, 12, 8, 801, 9, 8, 1, 8, 1, 8, 3, 8, 805, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 829, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 835, 8, 8, 3, 8, 837, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 843, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 849, 8, 8, 3, 8, 851, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 859, 8, 8, 3, 8, 861, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 867, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 873, 8, 8, 3, 8, 875, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 890, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 895, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 902, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 914, 8, 8, 3, 8, 916, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 924, 8, 8, 3, 8, 926, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 942, 8, 8, 10, 8, 12, 8, 945, 9, 8, 3, 8, 947, 8, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 8, 1, 8, 3, 8, 955, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 971, 8, 8, 10, 8, 12, 8, 974, 9, 8, 3, 8, 976, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 992, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1000, 8, 8, 10, 8, 12, 8, 1003, 9, 8, 1, 8, 1, 8, 3, 8, 1007, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1013, 8, 8, 1, 8, 3, 8, 1016, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1023, 8, 8, 11, 8, 12, 8, 1024, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1037, 8, 8, 1, 9, 3, 9, 1040, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 1046, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1051, 8, 10, 10, 10, 12, 10, 1054, 9, 10, 1, 11, 1, 11, 3, 11, 1058, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1064, 8, 12, 1, 12, 1, 12, 3, 12, 1068, 8, 12, 1, 12, 1, 12, 3, 12, 1072, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1078, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 5, 15, 1087, 8, 15, 10, 15, 12, 15, 1090, 9, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 1098, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 1106, 8, 18, 10, 18, 12, 18, 1109, 9, 18, 3, 18, 1111, 8, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1116, 8, 18, 3, 18, 1118, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1125, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1131, 8, 18, 3, 18, 1133, 8, 18, 1, 19, 1, 19, 3, 19, 1137, 8, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1147, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1153, 8, 21, 1, 21, 5, 21, 1156, 8, 21, 10, 21, 12, 21, 1159, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1168, 8, 22, 10, 22, 12, 22, 1171, 9, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1177, 8, 22, 1, 23, 1, 23, 3, 23, 1181, 8, 23, 1, 23, 3, 23, 1184, 8, 23, 1, 23, 1, 23, 3, 23, 1188, 8, 23, 1, 24, 1, 24, 3, 24, 1192, 8, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1197, 8, 24, 10, 24, 12, 24, 1200, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1206, 8, 24, 10, 24, 12, 24, 1209, 9, 24, 3, 24, 1211, 8, 24, 1, 24, 1, 24, 3, 24, 1215, 8, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1220, 8, 24, 1, 24, 1, 24, 3, 24, 1224, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1230, 8, 24, 10, 24, 12, 24, 1233, 9, 24, 3, 24, 1235, 8, 24, 1, 25, 3, 25, 1238, 8, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1243, 8, 25, 10, 25, 12, 25, 1246, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1254, 8, 26, 10, 26, 12, 26, 1257, 9, 26, 3, 26, 1259, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1267, 8, 26, 10, 26, 12, 26, 1270, 9, 26, 3, 26, 1272, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1281, 8, 26, 10, 26, 12, 26, 1284, 9, 26, 1, 26, 1, 26, 3, 26, 1288, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1294, 8, 27, 10, 27, 12, 27, 1297, 9, 27, 3, 27, 1299, 8, 27, 1, 27, 1, 27, 3, 27, 1303, 8, 27, 1, 28, 1, 28, 3, 28, 1307, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 3, 30, 1316, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1323, 8, 30, 10, 30, 12, 30, 1326, 9, 30, 3, 30, 1328, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1335, 8, 30, 10, 30, 12, 30, 1338, 9, 30, 3, 30, 1340, 8, 30, 1, 30, 3, 30, 1343, 8, 30, 1, 31, 1, 31, 3, 31, 1347, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 1358, 8, 33, 1, 33, 3, 33, 1361, 8, 33, 1, 33, 3, 33, 1364, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1371, 8, 33, 1, 33, 3, 33, 1374, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1393, 8, 34, 5, 34, 1395, 8, 34, 10, 34, 12, 34, 1398, 9, 34, 1, 35, 3, 35, 1401, 8, 35, 1, 35, 1, 35, 3, 35, 1405, 8, 35, 1, 35, 1, 35, 3, 35, 1409, 8, 35, 1, 35, 1, 35, 3, 35, 1413, 8, 35, 3, 35, 1415, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1424, 8, 36, 10, 36, 12, 36, 1427, 9, 36, 1, 36, 1, 36, 3, 36, 1431, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1440, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1452, 8, 39, 10, 39, 12, 39, 1455, 9, 39, 3, 39, 1457, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1464, 8, 39, 10, 39, 12, 39, 1467, 9, 39, 3, 39, 1469, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1475, 8, 39, 10, 39, 12, 39, 1478, 9, 39, 3, 39, 1480, 8, 39, 1, 39, 3, 39, 1483, 8, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1488, 8, 39, 1, 39, 3, 39, 1491, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1501, 8, 39, 10, 39, 12, 39, 1504, 9, 39, 3, 39, 1506, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1512, 8, 39, 10, 39, 12, 39, 1515, 9, 39, 1, 39, 1, 39, 3, 39, 1519, 8, 39, 1, 39, 1, 39, 3, 39, 1523, 8, 39, 3, 39, 1525, 8, 39, 3, 39, 1527, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1542, 8, 41, 3, 41, 1544, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1555, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1576, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1584, 8, 44, 10, 44, 12, 44, 1587, 9, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 1597, 8, 46, 1, 46, 1, 46, 3, 46, 1601, 8, 46, 3, 46, 1603, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1609, 8, 47, 10, 47, 12, 47, 1612, 9, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1620, 8, 48, 10, 48, 12, 48, 1623, 9, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1631, 8, 49, 10, 49, 12, 49, 1634, 9, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1648, 8, 50, 10, 50, 12, 50, 1651, 9, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1656, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1667, 8, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1674, 8, 52, 1, 52, 1, 52, 3, 52, 1678, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1686, 8, 52, 10, 52, 12, 52, 1689, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1701, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1709, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1716, 8, 53, 10, 53, 12, 53, 1719, 9, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1724, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1732, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1738, 8, 53, 1, 53, 1, 53, 3, 53, 1742, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1747, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1752, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1758, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1772, 8, 54, 10, 54, 12, 54, 1775, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 4, 55, 1802, 8, 55, 11, 55, 12, 55, 1803, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1813, 8, 55, 10, 55, 12, 55, 1816, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1825, 8, 55, 1, 55, 3, 55, 1828, 8, 55, 1, 55, 3, 55, 1831, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1836, 8, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1841, 8, 55, 10, 55, 12, 55, 1844, 9, 55, 3, 55, 1846, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1853, 8, 55, 10, 55, 12, 55, 1856, 9, 55, 3, 55, 1858, 8, 55, 1, 55, 1, 55, 3, 55, 1862, 8, 55, 1, 55, 3, 55, 1865, 8, 55, 1, 55, 3, 55, 1868, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1881, 8, 55, 10, 55, 12, 55, 1884, 9, 55, 3, 55, 1886, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 4, 55, 1903, 8, 55, 11, 55, 12, 55, 1904, 1, 55, 1, 55, 3, 55, 1909, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 4, 55, 1915, 8, 55, 11, 55, 12, 55, 1916, 1, 55, 1, 55, 3, 55, 1921, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1944, 8, 55, 10, 55, 12, 55, 1947, 9, 55, 3, 55, 1949, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1958, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1964, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1970, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1976, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1989, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1998, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2018, 8, 55, 10, 55, 12, 55, 2021, 9, 55, 3, 55, 2023, 8, 55, 1, 55, 3, 55, 2026, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2036, 8, 55, 10, 55, 12, 55, 2039, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2047, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2053, 8, 58, 3, 58, 2055, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2063, 8, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 63, 1, 63, 3, 63, 2073, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2079, 8, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2091, 8, 66, 10, 66, 12, 66, 2094, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2102, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2109, 8, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2114, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2121, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2131, 8, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2136, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2143, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2167, 8, 66, 10, 66, 12, 66, 2170, 9, 66, 1, 66, 1, 66, 3, 66, 2174, 8, 66, 3, 66, 2176, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2183, 8, 66, 5, 66, 2185, 8, 66, 10, 66, 12, 66, 2188, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2194, 8, 67, 1, 68, 1, 68, 3, 68, 2198, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2215, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2228, 8, 71, 10, 71, 12, 71, 2231, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2237, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2246, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2254, 8, 71, 10, 71, 12, 71, 2257, 9, 71, 1, 71, 1, 71, 3, 71, 2261, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2268, 8, 71, 10, 71, 12, 71, 2271, 9, 71, 1, 71, 1, 71, 3, 71, 2275, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2283, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2289, 8, 73, 10, 73, 12, 73, 2292, 9, 73, 3, 73, 2294, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2300, 8, 73, 1, 73, 3, 73, 2303, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2310, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2316, 8, 73, 10, 73, 12, 73, 2319, 9, 73, 3, 73, 2321, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2327, 8, 73, 10, 73, 12, 73, 2330, 9, 73, 3, 73, 2332, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2358, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2369, 8, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2374, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2381, 8, 76, 10, 76, 12, 76, 2384, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2394, 8, 77, 10, 77, 12, 77, 2397, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2411, 8, 77, 1, 78, 1, 78, 3, 78, 2415, 8, 78, 1, 78, 1, 78, 3, 78, 2419, 8, 78, 1, 78, 1, 78, 3, 78, 2423, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2429, 8, 78, 1, 78, 1, 78, 3, 78, 2433, 8, 78, 1, 78, 1, 78, 3, 78, 2437, 8, 78, 1, 78, 1, 78, 3, 78, 2441, 8, 78, 3, 78, 2443, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2453, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2460, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2469, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2476, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2483, 8, 84, 1, 85, 1, 85, 1, 85, 5, 85, 2488, 8, 85, 10, 85, 12, 85, 2491, 9, 85, 1, 86, 1, 86, 1, 87, 1, 87, 3, 87, 2497, 8, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2518, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2531, 8, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2542, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 5, 102, 2557, 8, 102, 10, 102, 12, 102, 2560, 9, 102, 1, 103, 1, 103, 1, 103, 3, 103, 2565, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2572, 8, 104, 1, 105, 1, 105, 1, 105, 5, 105, 2577, 8, 105, 10, 105, 12, 105, 2580, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 2587, 8, 106, 1, 107, 3, 107, 2590, 8, 107, 1, 107, 1, 107, 3, 107, 2594, 8, 107, 1, 107, 1, 107, 3, 107, 2598, 8, 107, 1, 107, 3, 107, 2601, 8, 107, 1, 108, 1, 108, 1, 108, 0, 7, 42, 68, 104, 108, 110, 132, 152, 109, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 0, 27, 2, 0, 34, 34, 185, 185, 2, 0, 61, 61, 112, 112, 2, 0, 88, 88, 103, 103, 2, 0, 75, 75, 104, 104, 1, 0, 192, 193, 2, 0, 84, 84, 139, 139, 2, 0, 261, 261, 265, 265, 2, 0, 74, 74, 229, 229, 2, 0, 27, 27, 63, 63, 2, 0, 84, 84, 118, 118, 2, 0, 20, 20, 66, 66, 2, 0, 30, 30, 211, 211, 2, 0, 105, 105, 199, 199, 1, 0, 255, 256, 1, 0, 257, 259, 2, 0, 83, 83, 194, 194, 1, 0, 249, 254, 3, 0, 20, 20, 24, 24, 206, 206, 2, 0, 80, 80, 223, 223, 5, 0, 58, 58, 100, 100, 136, 137, 197, 197, 247, 247, 1, 0, 140, 143, 2, 0, 85, 85, 171, 171, 3, 0, 95, 95, 117, 117, 215, 215, 4, 0, 67, 67, 113, 113, 127, 127, 236, 236, 2, 0, 155, 155, 246, 246, 4, 0, 62, 62, 108, 108, 200, 200, 232, 232, 49, 0, 17, 20, 22, 22, 24, 25, 27, 30, 33, 34, 37, 42, 47, 47, 56, 59, 61, 61, 63, 63, 65, 65, 67, 68, 71, 71, 75, 75, 78, 78, 81, 85, 87, 87, 90, 95, 98, 98, 100, 102, 104, 105, 107, 107, 110, 110, 112, 113, 115, 115, 117, 119, 121, 121, 123, 124, 127, 137, 139, 145, 149, 152, 154, 156, 159, 159, 161, 172, 174, 177, 179, 186, 188, 190, 192, 199, 201, 211, 213, 215, 217, 222, 224, 225, 227, 228, 230, 230, 232, 234, 236, 236, 238, 239, 242, 242, 244, 248, 3005, 0, 221, 1, 0, 0, 0, 2, 226, 1, 0, 0, 0, 4, 232, 1, 0, 0, 0, 6, 234, 1, 0, 0, 0, 8, 238, 1, 0, 0, 0, 10, 242, 1, 0, 0, 0, 12, 246, 1, 0, 0, 0, 14, 250, 1, 0, 0, 0, 16, 1036, 1, 0, 0, 0, 18, 1039, 1, 0, 0, 0, 20, 1043, 1, 0, 0, 0, 22, 1057, 1, 0, 0, 0, 24, 1059, 1, 0, 0, 0, 26, 1073, 1, 0, 0, 0, 28, 1079, 1, 0, 0, 0, 30, 1083, 1, 0, 0, 0, 32, 1091, 1, 0, 0, 0, 34, 1097, 1, 0, 0, 0, 36, 1099, 1, 0, 0, 0, 38, 1136, 1, 0, 0, 0, 40, 1138, 1, 0, 0, 0, 42, 1140, 1, 0, 0, 0, 44, 1176, 1, 0, 0, 0, 46, 1180, 1, 0, 0, 0, 48, 1189, 1, 0, 0, 0, 50, 1237, 1, 0, 0, 0, 52, 1287, 1, 0, 0, 0, 54, 1302, 1, 0, 0, 0, 56, 1306, 1, 0, 0, 0, 58, 1308, 1, 0, 0, 0, 60, 1315, 1, 0, 0, 0, 62, 1344, 1, 0, 0, 0, 64, 1353, 1, 0, 0, 0, 66, 1373, 1, 0, 0, 0, 68, 1375, 1, 0, 0, 0, 70, 1414, 1, 0, 0, 0, 72, 1430, 1, 0, 0, 0, 74, 1432, 1, 0, 0, 0, 76, 1441, 1, 0, 0, 0, 78, 1443, 1, 0, 0, 0, 80, 1528, 1, 0, 0, 0, 82, 1543, 1, 0, 0, 0, 84, 1554, 1, 0, 0, 0, 86, 1575, 1, 0, 0, 0, 88, 1577, 1, 0, 0, 0, 90, 1590, 1, 0, 0, 0, 92, 1594, 1, 0, 0, 0, 94, 1604, 1, 0, 0, 0, 96, 1615, 1, 0, 0, 0, 98, 1626, 1, 0, 0, 0, 100, 1666, 1, 0, 0, 0, 102, 1668, 1, 0, 0, 0, 104, 1677, 1, 0, 0, 0, 106, 1751, 1, 0, 0, 0, 108, 1757, 1, 0, 0, 0, 110, 2025, 1, 0, 0, 0, 112, 2040, 1, 0, 0, 0, 114, 2046, 1, 0, 0, 0, 116, 2054, 1, 0, 0, 0, 118, 2062, 1, 0, 0, 0, 120, 2064, 1, 0, 0, 0, 122, 2066, 1, 0, 0, 0, 124, 2068, 1, 0, 0, 0, 126, 2070, 1, 0, 0, 0, 128, 2080, 1, 0, 0, 0, 130, 2082, 1, 0, 0, 0, 132, 2175, 1, 0, 0, 0, 134, 2193, 1, 0, 0, 0, 136, 2197, 1, 0, 0, 0, 138, 2199, 1, 0, 0, 0, 140, 2204, 1, 0, 0, 0, 142, 2274, 1, 0, 0, 0, 144, 2276, 1, 0, 0, 0, 146, 2293, 1, 0, 0, 0, 148, 2357, 1, 0, 0, 0, 150, 2368, 1, 0, 0, 0, 152, 2370, 1, 0, 0, 0, 154, 2410, 1, 0, 0, 0, 156, 2442, 1, 0, 0, 0, 158, 2444, 1, 0, 0, 0, 160, 2452, 1, 0, 0, 0, 162, 2459, 1, 0, 0, 0, 164, 2468, 1, 0, 0, 0, 166, 2475, 1, 0, 0, 0, 168, 2482, 1, 0, 0, 0, 170, 2484, 1, 0, 0, 0, 172, 2492, 1, 0, 0, 0, 174, 2496, 1, 0, 0, 0, 176, 2498, 1, 0, 0, 0, 178, 2500, 1, 0, 0, 0, 180, 2502, 1, 0, 0, 0, 182, 2504, 1, 0, 0, 0, 184, 2517, 1, 0, 0, 0, 186, 2530, 1, 0, 0, 0, 188, 2532, 1, 0, 0, 0, 190, 2534, 1, 0, 0, 0, 192, 2541, 1, 0, 0, 0, 194, 2543, 1, 0, 0, 0, 196, 2545, 1, 0, 0, 0, 198, 2547, 1, 0, 0, 0, 200, 2549, 1, 0, 0, 0, 202, 2551, 1, 0, 0, 0, 204, 2553, 1, 0, 0, 0, 206, 2564, 1, 0, 0, 0, 208, 2571, 1, 0, 0, 0, 210, 2573, 1, 0, 0, 0, 212, 2586, 1, 0, 0, 0, 214, 2600, 1, 0, 0, 0, 216, 2602, 1, 0, 0, 0, 218, 220, 3, 2, 1, 0, 219, 218, 1, 0, 0, 0, 220, 223, 1, 0, 0, 0, 221, 219, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 224, 1, 0, 0, 0, 223, 221, 1, 0, 0, 0, 224, 225, 5, 0, 0, 1, 225, 1, 1, 0, 0, 0, 226, 227, 3, 6, 3, 0, 227, 3, 1, 0, 0, 0, 228, 233, 3, 8, 4, 0, 229, 233, 3, 10, 5, 0, 230, 233, 3, 12, 6, 0, 231, 233, 3, 14, 7, 0, 232, 228, 1, 0, 0, 0, 232, 229, 1, 0, 0, 0, 232, 230, 1, 0, 0, 0, 232, 231, 1, 0, 0, 0, 233, 5, 1, 0, 0, 0, 234, 236, 3, 16, 8, 0, 235, 237, 5, 272, 0, 0, 236, 235, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 7, 1, 0, 0, 0, 238, 240, 3, 102, 51, 0, 239, 241, 5, 272, 0, 0, 240, 239, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 9, 1, 0, 0, 0, 242, 244, 3, 170, 85, 0, 243, 245, 5, 272, 0, 0, 244, 243, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 11, 1, 0, 0, 0, 246, 248, 3, 132, 66, 0, 247, 249, 5, 272, 0, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 13, 1, 0, 0, 0, 250, 252, 3, 152, 76, 0, 251, 253, 5, 272, 0, 0, 252, 251, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 15, 1, 0, 0, 0, 254, 1037, 3, 18, 9, 0, 255, 256, 5, 233, 0, 0, 256, 1037, 3, 188, 94, 0, 257, 258, 5, 44, 0, 0, 258, 262, 5, 195, 0, 0, 259, 260, 5, 101, 0, 0, 260, 261, 5, 147, 0, 0, 261, 263, 5, 77, 0, 0, 262, 259, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 267, 3, 190, 95, 0, 265, 266, 5, 29, 0, 0, 266, 268, 3, 208, 104, 0, 267, 265, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 270, 5, 243, 0, 0, 270, 272, 3, 28, 14, 0, 271, 269, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 1037, 1, 0, 0, 0, 273, 274, 5, 69, 0, 0, 274, 277, 5, 195, 0, 0, 275, 276, 5, 101, 0, 0, 276, 278, 5, 77, 0, 0, 277, 275, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 281, 3, 188, 94, 0, 280, 282, 7, 0, 0, 0, 281, 280, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 1037, 1, 0, 0, 0, 283, 284, 5, 21, 0, 0, 284, 285, 5, 195, 0, 0, 285, 286, 3, 188, 94, 0, 286, 287, 5, 180, 0, 0, 287, 288, 5, 220, 0, 0, 288, 289, 3, 190, 95, 0, 289, 1037, 1, 0, 0, 0, 290, 291, 5, 21, 0, 0, 291, 292, 5, 195, 0, 0, 292, 293, 3, 188, 94, 0, 293, 294, 5, 203, 0, 0, 294, 295, 5, 29, 0, 0, 295, 296, 3, 208, 104, 0, 296, 1037, 1, 0, 0, 0, 297, 298, 5, 44, 0, 0, 298, 302, 5, 212, 0, 0, 299, 300, 5, 101, 0, 0, 300, 301, 5, 147, 0, 0, 301, 303, 5, 77, 0, 0, 302, 299, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 306, 3, 178, 89, 0, 305, 307, 3, 94, 47, 0, 306, 305, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 310, 1, 0, 0, 0, 308, 309, 5, 40, 0, 0, 309, 311, 3, 116, 58, 0, 310, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 314, 1, 0, 0, 0, 312, 313, 5, 243, 0, 0, 313, 315, 3, 28, 14, 0, 314, 312, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 322, 5, 26, 0, 0, 317, 323, 3, 18, 9, 0, 318, 319, 5, 1, 0, 0, 319, 320, 3, 18, 9, 0, 320, 321, 5, 2, 0, 0, 321, 323, 1, 0, 0, 0, 322, 317, 1, 0, 0, 0, 322, 318, 1, 0, 0, 0, 323, 329, 1, 0, 0, 0, 324, 326, 5, 243, 0, 0, 325, 327, 5, 144, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 330, 5, 56, 0, 0, 329, 324, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 1037, 1, 0, 0, 0, 331, 332, 5, 44, 0, 0, 332, 336, 5, 212, 0, 0, 333, 334, 5, 101, 0, 0, 334, 335, 5, 147, 0, 0, 335, 337, 5, 77, 0, 0, 336, 333, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 339, 3, 178, 89, 0, 339, 340, 5, 1, 0, 0, 340, 345, 3, 22, 11, 0, 341, 342, 5, 3, 0, 0, 342, 344, 3, 22, 11, 0, 343, 341, 1, 0, 0, 0, 344, 347, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 348, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 348, 351, 5, 2, 0, 0, 349, 350, 5, 40, 0, 0, 350, 352, 3, 116, 58, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 355, 1, 0, 0, 0, 353, 354, 5, 243, 0, 0, 354, 356, 3, 28, 14, 0, 355, 353, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 1037, 1, 0, 0, 0, 357, 358, 5, 69, 0, 0, 358, 361, 5, 212, 0, 0, 359, 360, 5, 101, 0, 0, 360, 362, 5, 77, 0, 0, 361, 359, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 1037, 3, 176, 88, 0, 364, 365, 5, 108, 0, 0, 365, 366, 5, 111, 0, 0, 366, 368, 3, 176, 88, 0, 367, 369, 3, 96, 48, 0, 368, 367, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 3, 18, 9, 0, 371, 1037, 1, 0, 0, 0, 372, 373, 5, 62, 0, 0, 373, 374, 5, 88, 0, 0, 374, 377, 3, 176, 88, 0, 375, 376, 5, 241, 0, 0, 376, 378, 3, 104, 52, 0, 377, 375, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 1037, 1, 0, 0, 0, 379, 380, 5, 222, 0, 0, 380, 381, 5, 212, 0, 0, 381, 1037, 3, 176, 88, 0, 382, 383, 5, 21, 0, 0, 383, 386, 5, 212, 0, 0, 384, 385, 5, 101, 0, 0, 385, 387, 5, 77, 0, 0, 386, 384, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 3, 176, 88, 0, 389, 390, 5, 180, 0, 0, 390, 391, 5, 220, 0, 0, 391, 392, 3, 178, 89, 0, 392, 1037, 1, 0, 0, 0, 393, 394, 5, 40, 0, 0, 394, 395, 5, 153, 0, 0, 395, 396, 5, 212, 0, 0, 396, 397, 3, 176, 88, 0, 397, 400, 5, 114, 0, 0, 398, 401, 3, 116, 58, 0, 399, 401, 5, 148, 0, 0, 400, 398, 1, 0, 0, 0, 400, 399, 1, 0, 0, 0, 401, 1037, 1, 0, 0, 0, 402, 403, 5, 40, 0, 0, 403, 404, 5, 153, 0, 0, 404, 405, 5, 38, 0, 0, 405, 406, 3, 200, 100, 0, 406, 409, 5, 114, 0, 0, 407, 410, 3, 116, 58, 0, 408, 410, 5, 148, 0, 0, 409, 407, 1, 0, 0, 0, 409, 408, 1, 0, 0, 0, 410, 1037, 1, 0, 0, 0, 411, 412, 5, 21, 0, 0, 412, 415, 5, 212, 0, 0, 413, 414, 5, 101, 0, 0, 414, 416, 5, 77, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 418, 3, 176, 88, 0, 418, 419, 5, 180, 0, 0, 419, 422, 5, 38, 0, 0, 420, 421, 5, 101, 0, 0, 421, 423, 5, 77, 0, 0, 422, 420, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 425, 3, 200, 100, 0, 425, 426, 5, 220, 0, 0, 426, 427, 3, 202, 101, 0, 427, 1037, 1, 0, 0, 0, 428, 429, 5, 21, 0, 0, 429, 432, 5, 212, 0, 0, 430, 431, 5, 101, 0, 0, 431, 433, 5, 77, 0, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 3, 176, 88, 0, 435, 436, 5, 69, 0, 0, 436, 439, 5, 38, 0, 0, 437, 438, 5, 101, 0, 0, 438, 440, 5, 77, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 3, 200, 100, 0, 442, 1037, 1, 0, 0, 0, 443, 444, 5, 21, 0, 0, 444, 447, 5, 212, 0, 0, 445, 446, 5, 101, 0, 0, 446, 448, 5, 77, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 3, 176, 88, 0, 450, 451, 5, 17, 0, 0, 451, 455, 5, 38, 0, 0, 452, 453, 5, 101, 0, 0, 453, 454, 5, 147, 0, 0, 454, 456, 5, 77, 0, 0, 455, 452, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 458, 3, 24, 12, 0, 458, 1037, 1, 0, 0, 0, 459, 460, 5, 21, 0, 0, 460, 461, 5, 212, 0, 0, 461, 462, 3, 176, 88, 0, 462, 463, 5, 203, 0, 0, 463, 464, 5, 29, 0, 0, 464, 465, 3, 208, 104, 0, 465, 1037, 1, 0, 0, 0, 466, 467, 5, 21, 0, 0, 467, 468, 5, 212, 0, 0, 468, 469, 3, 176, 88, 0, 469, 470, 5, 203, 0, 0, 470, 471, 5, 175, 0, 0, 471, 472, 3, 30, 15, 0, 472, 1037, 1, 0, 0, 0, 473, 474, 5, 21, 0, 0, 474, 475, 5, 212, 0, 0, 475, 476, 3, 176, 88, 0, 476, 477, 5, 76, 0, 0, 477, 490, 3, 212, 106, 0, 478, 487, 5, 1, 0, 0, 479, 484, 3, 166, 83, 0, 480, 481, 5, 3, 0, 0, 481, 483, 3, 166, 83, 0, 482, 480, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 488, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 479, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 491, 5, 2, 0, 0, 490, 478, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 494, 1, 0, 0, 0, 492, 493, 5, 241, 0, 0, 493, 495, 3, 104, 52, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 1037, 1, 0, 0, 0, 496, 497, 5, 22, 0, 0, 497, 500, 3, 176, 88, 0, 498, 499, 5, 243, 0, 0, 499, 501, 3, 28, 14, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 1037, 1, 0, 0, 0, 502, 505, 5, 44, 0, 0, 503, 504, 5, 157, 0, 0, 504, 506, 5, 182, 0, 0, 505, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 508, 5, 133, 0, 0, 508, 512, 5, 239, 0, 0, 509, 510, 5, 101, 0, 0, 510, 511, 5, 147, 0, 0, 511, 513, 5, 77, 0, 0, 512, 509, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 517, 3, 182, 91, 0, 515, 516, 5, 40, 0, 0, 516, 518, 3, 116, 58, 0, 517, 515, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 521, 1, 0, 0, 0, 519, 520, 5, 243, 0, 0, 520, 522, 3, 28, 14, 0, 521, 519, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 26, 0, 0, 524, 525, 3, 18, 9, 0, 525, 1037, 1, 0, 0, 0, 526, 529, 5, 44, 0, 0, 527, 528, 5, 157, 0, 0, 528, 530, 5, 182, 0, 0, 529, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 239, 0, 0, 532, 535, 3, 182, 91, 0, 533, 534, 5, 40, 0, 0, 534, 536, 3, 116, 58, 0, 535, 533, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 539, 1, 0, 0, 0, 537, 538, 5, 198, 0, 0, 538, 540, 7, 1, 0, 0, 539, 537, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 5, 26, 0, 0, 542, 543, 3, 18, 9, 0, 543, 1037, 1, 0, 0, 0, 544, 545, 5, 179, 0, 0, 545, 546, 5, 133, 0, 0, 546, 547, 5, 239, 0, 0, 547, 1037, 3, 180, 90, 0, 548, 549, 5, 69, 0, 0, 549, 550, 5, 133, 0, 0, 550, 553, 5, 239, 0, 0, 551, 552, 5, 101, 0, 0, 552, 554, 5, 77, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 1037, 3, 180, 90, 0, 556, 557, 5, 21, 0, 0, 557, 558, 5, 133, 0, 0, 558, 561, 5, 239, 0, 0, 559, 560, 5, 101, 0, 0, 560, 562, 5, 77, 0, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 3, 180, 90, 0, 564, 565, 5, 180, 0, 0, 565, 566, 5, 220, 0, 0, 566, 567, 3, 182, 91, 0, 567, 1037, 1, 0, 0, 0, 568, 569, 5, 21, 0, 0, 569, 570, 5, 133, 0, 0, 570, 571, 5, 239, 0, 0, 571, 572, 3, 180, 90, 0, 572, 573, 5, 203, 0, 0, 573, 574, 5, 175, 0, 0, 574, 575, 3, 30, 15, 0, 575, 1037, 1, 0, 0, 0, 576, 577, 5, 69, 0, 0, 577, 580, 5, 239, 0, 0, 578, 579, 5, 101, 0, 0, 579, 581, 5, 77, 0, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 1037, 3, 180, 90, 0, 583, 584, 5, 21, 0, 0, 584, 585, 5, 239, 0, 0, 585, 586, 3, 180, 90, 0, 586, 587, 5, 180, 0, 0, 587, 588, 5, 220, 0, 0, 588, 589, 3, 182, 91, 0, 589, 1037, 1, 0, 0, 0, 590, 591, 5, 21, 0, 0, 591, 592, 5, 239, 0, 0, 592, 593, 3, 180, 90, 0, 593, 594, 5, 203, 0, 0, 594, 595, 5, 29, 0, 0, 595, 596, 3, 208, 104, 0, 596, 1037, 1, 0, 0, 0, 597, 598, 5, 33, 0, 0, 598, 599, 3, 198, 99, 0, 599, 608, 5, 1, 0, 0, 600, 605, 3, 166, 83, 0, 601, 602, 5, 3, 0, 0, 602, 604, 3, 166, 83, 0, 603, 601, 1, 0, 0, 0, 604, 607, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 609, 1, 0, 0, 0, 607, 605, 1, 0, 0, 0, 608, 600, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 2, 0, 0, 611, 1037, 1, 0, 0, 0, 612, 613, 5, 44, 0, 0, 613, 614, 5, 188, 0, 0, 614, 618, 3, 212, 106, 0, 615, 616, 5, 243, 0, 0, 616, 617, 5, 18, 0, 0, 617, 619, 3, 206, 103, 0, 618, 615, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 622, 1, 0, 0, 0, 620, 621, 5, 103, 0, 0, 621, 623, 3, 194, 97, 0, 622, 620, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 1037, 1, 0, 0, 0, 624, 625, 5, 69, 0, 0, 625, 626, 5, 188, 0, 0, 626, 1037, 3, 212, 106, 0, 627, 628, 5, 91, 0, 0, 628, 629, 3, 210, 105, 0, 629, 630, 5, 220, 0, 0, 630, 635, 3, 208, 104, 0, 631, 632, 5, 3, 0, 0, 632, 634, 3, 208, 104, 0, 633, 631, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 641, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 639, 5, 243, 0, 0, 639, 640, 5, 18, 0, 0, 640, 642, 5, 156, 0, 0, 641, 638, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 646, 1, 0, 0, 0, 643, 644, 5, 92, 0, 0, 644, 645, 5, 32, 0, 0, 645, 647, 3, 206, 103, 0, 646, 643, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 650, 1, 0, 0, 0, 648, 649, 5, 103, 0, 0, 649, 651, 3, 194, 97, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 1037, 1, 0, 0, 0, 652, 656, 5, 186, 0, 0, 653, 654, 5, 18, 0, 0, 654, 655, 5, 156, 0, 0, 655, 657, 5, 86, 0, 0, 656, 653, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 3, 210, 105, 0, 659, 660, 5, 88, 0, 0, 660, 665, 3, 208, 104, 0, 661, 662, 5, 3, 0, 0, 662, 664, 3, 208, 104, 0, 663, 661, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 671, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 668, 669, 5, 92, 0, 0, 669, 670, 5, 32, 0, 0, 670, 672, 3, 206, 103, 0, 671, 668, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 674, 5, 103, 0, 0, 674, 676, 3, 194, 97, 0, 675, 673, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 1037, 1, 0, 0, 0, 677, 678, 5, 203, 0, 0, 678, 682, 5, 188, 0, 0, 679, 683, 5, 20, 0, 0, 680, 683, 5, 145, 0, 0, 681, 683, 3, 212, 106, 0, 682, 679, 1, 0, 0, 0, 682, 680, 1, 0, 0, 0, 682, 681, 1, 0, 0, 0, 683, 686, 1, 0, 0, 0, 684, 685, 5, 103, 0, 0, 685, 687, 3, 194, 97, 0, 686, 684, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 1037, 1, 0, 0, 0, 688, 699, 5, 91, 0, 0, 689, 694, 3, 172, 86, 0, 690, 691, 5, 3, 0, 0, 691, 693, 3, 172, 86, 0, 692, 690, 1, 0, 0, 0, 693, 696, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 700, 1, 0, 0, 0, 696, 694, 1, 0, 0, 0, 697, 698, 5, 20, 0, 0, 698, 700, 5, 174, 0, 0, 699, 689, 1, 0, 0, 0, 699, 697, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 710, 5, 153, 0, 0, 702, 704, 5, 195, 0, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 711, 3, 188, 94, 0, 706, 708, 5, 212, 0, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 711, 3, 176, 88, 0, 710, 703, 1, 0, 0, 0, 710, 707, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 5, 220, 0, 0, 713, 717, 3, 208, 104, 0, 714, 715, 5, 243, 0, 0, 715, 716, 5, 91, 0, 0, 716, 718, 5, 156, 0, 0, 717, 714, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 1037, 1, 0, 0, 0, 719, 730, 5, 94, 0, 0, 720, 725, 3, 172, 86, 0, 721, 722, 5, 3, 0, 0, 722, 724, 3, 172, 86, 0, 723, 721, 1, 0, 0, 0, 724, 727, 1, 0, 0, 0, 725, 723, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 731, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 728, 729, 5, 20, 0, 0, 729, 731, 5, 174, 0, 0, 730, 720, 1, 0, 0, 0, 730, 728, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 741, 5, 153, 0, 0, 733, 735, 5, 195, 0, 0, 734, 733, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 742, 3, 188, 94, 0, 737, 739, 5, 212, 0, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 742, 3, 176, 88, 0, 741, 734, 1, 0, 0, 0, 741, 738, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 5, 220, 0, 0, 744, 745, 3, 208, 104, 0, 745, 1037, 1, 0, 0, 0, 746, 750, 5, 186, 0, 0, 747, 748, 5, 91, 0, 0, 748, 749, 5, 156, 0, 0, 749, 751, 5, 86, 0, 0, 750, 747, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 762, 1, 0, 0, 0, 752, 757, 3, 172, 86, 0, 753, 754, 5, 3, 0, 0, 754, 756, 3, 172, 86, 0, 755, 753, 1, 0, 0, 0, 756, 759, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 763, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 760, 761, 5, 20, 0, 0, 761, 763, 5, 174, 0, 0, 762, 752, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 773, 5, 153, 0, 0, 765, 767, 5, 195, 0, 0, 766, 765, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 774, 3, 188, 94, 0, 769, 771, 5, 212, 0, 0, 770, 769, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 774, 3, 176, 88, 0, 773, 766, 1, 0, 0, 0, 773, 770, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 5, 88, 0, 0, 776, 1037, 3, 208, 104, 0, 777, 778, 5, 205, 0, 0, 778, 784, 5, 93, 0, 0, 779, 781, 5, 153, 0, 0, 780, 782, 5, 212, 0, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 785, 3, 176, 88, 0, 784, 779, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 1037, 1, 0, 0, 0, 786, 788, 5, 78, 0, 0, 787, 789, 5, 22, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 791, 1, 0, 0, 0, 790, 792, 5, 238, 0, 0, 791, 790, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 804, 1, 0, 0, 0, 793, 794, 5, 1, 0, 0, 794, 799, 3, 160, 80, 0, 795, 796, 5, 3, 0, 0, 796, 798, 3, 160, 80, 0, 797, 795, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 802, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 803, 5, 2, 0, 0, 803, 805, 1, 0, 0, 0, 804, 793, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 1037, 3, 16, 8, 0, 807, 808, 5, 205, 0, 0, 808, 809, 5, 44, 0, 0, 809, 810, 5, 212, 0, 0, 810, 1037, 3, 176, 88, 0, 811, 812, 5, 205, 0, 0, 812, 813, 5, 44, 0, 0, 813, 814, 5, 195, 0, 0, 814, 1037, 3, 188, 94, 0, 815, 816, 5, 205, 0, 0, 816, 817, 5, 44, 0, 0, 817, 818, 5, 239, 0, 0, 818, 1037, 3, 180, 90, 0, 819, 820, 5, 205, 0, 0, 820, 821, 5, 44, 0, 0, 821, 822, 5, 133, 0, 0, 822, 823, 5, 239, 0, 0, 823, 1037, 3, 180, 90, 0, 824, 825, 5, 205, 0, 0, 825, 828, 5, 213, 0, 0, 826, 827, 7, 2, 0, 0, 827, 829, 3, 188, 94, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 836, 1, 0, 0, 0, 830, 831, 5, 122, 0, 0, 831, 834, 3, 116, 58, 0, 832, 833, 5, 73, 0, 0, 833, 835, 3, 116, 58, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 837, 1, 0, 0, 0, 836, 830, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 1037, 1, 0, 0, 0, 838, 839, 5, 205, 0, 0, 839, 842, 5, 196, 0, 0, 840, 841, 7, 2, 0, 0, 841, 843, 3, 194, 97, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 850, 1, 0, 0, 0, 844, 845, 5, 122, 0, 0, 845, 848, 3, 116, 58, 0, 846, 847, 5, 73, 0, 0, 847, 849, 3, 116, 58, 0, 848, 846, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 851, 1, 0, 0, 0, 850, 844, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 1037, 1, 0, 0, 0, 852, 853, 5, 205, 0, 0, 853, 860, 5, 37, 0, 0, 854, 855, 5, 122, 0, 0, 855, 858, 3, 116, 58, 0, 856, 857, 5, 73, 0, 0, 857, 859, 3, 116, 58, 0, 858, 856, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 854, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 1037, 1, 0, 0, 0, 862, 863, 5, 205, 0, 0, 863, 864, 5, 39, 0, 0, 864, 866, 7, 2, 0, 0, 865, 867, 3, 174, 87, 0, 866, 865, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 874, 1, 0, 0, 0, 868, 869, 5, 122, 0, 0, 869, 872, 3, 116, 58, 0, 870, 871, 5, 73, 0, 0, 871, 873, 3, 116, 58, 0, 872, 870, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 875, 1, 0, 0, 0, 874, 868, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 1037, 1, 0, 0, 0, 876, 877, 5, 205, 0, 0, 877, 878, 5, 208, 0, 0, 878, 879, 5, 86, 0, 0, 879, 1037, 3, 176, 88, 0, 880, 881, 5, 205, 0, 0, 881, 882, 5, 208, 0, 0, 882, 883, 5, 86, 0, 0, 883, 884, 5, 1, 0, 0, 884, 885, 3, 18, 9, 0, 885, 886, 5, 2, 0, 0, 886, 1037, 1, 0, 0, 0, 887, 889, 5, 205, 0, 0, 888, 890, 5, 47, 0, 0, 889, 888, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 894, 5, 189, 0, 0, 892, 893, 7, 2, 0, 0, 893, 895, 3, 212, 106, 0, 894, 892, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 1037, 1, 0, 0, 0, 896, 897, 5, 205, 0, 0, 897, 898, 5, 188, 0, 0, 898, 901, 5, 93, 0, 0, 899, 900, 7, 2, 0, 0, 900, 902, 3, 212, 106, 0, 901, 899, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 1037, 1, 0, 0, 0, 903, 904, 5, 64, 0, 0, 904, 1037, 3, 174, 87, 0, 905, 906, 5, 63, 0, 0, 906, 1037, 3, 174, 87, 0, 907, 908, 5, 205, 0, 0, 908, 915, 5, 90, 0, 0, 909, 910, 5, 122, 0, 0, 910, 913, 3, 116, 58, 0, 911, 912, 5, 73, 0, 0, 912, 914, 3, 116, 58, 0, 913, 911, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 916, 1, 0, 0, 0, 915, 909, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 1037, 1, 0, 0, 0, 917, 918, 5, 205, 0, 0, 918, 925, 5, 202, 0, 0, 919, 920, 5, 122, 0, 0, 920, 923, 3, 116, 58, 0, 921, 922, 5, 73, 0, 0, 922, 924, 3, 116, 58, 0, 923, 921, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 926, 1, 0, 0, 0, 925, 919, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 1037, 1, 0, 0, 0, 927, 928, 5, 203, 0, 0, 928, 929, 5, 202, 0, 0, 929, 930, 3, 204, 102, 0, 930, 931, 5, 249, 0, 0, 931, 932, 3, 102, 51, 0, 932, 1037, 1, 0, 0, 0, 933, 934, 5, 183, 0, 0, 934, 935, 5, 202, 0, 0, 935, 1037, 3, 204, 102, 0, 936, 937, 5, 207, 0, 0, 937, 946, 5, 221, 0, 0, 938, 943, 3, 162, 81, 0, 939, 940, 5, 3, 0, 0, 940, 942, 3, 162, 81, 0, 941, 939, 1, 0, 0, 0, 942, 945, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 947, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 946, 938, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1037, 1, 0, 0, 0, 948, 950, 5, 41, 0, 0, 949, 951, 5, 245, 0, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 1037, 1, 0, 0, 0, 952, 954, 5, 190, 0, 0, 953, 955, 5, 245, 0, 0, 954, 953, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 1037, 1, 0, 0, 0, 956, 957, 5, 173, 0, 0, 957, 958, 3, 212, 106, 0, 958, 959, 5, 88, 0, 0, 959, 960, 3, 16, 8, 0, 960, 1037, 1, 0, 0, 0, 961, 962, 5, 60, 0, 0, 962, 963, 5, 173, 0, 0, 963, 1037, 3, 212, 106, 0, 964, 965, 5, 76, 0, 0, 965, 975, 3, 212, 106, 0, 966, 967, 5, 235, 0, 0, 967, 972, 3, 102, 51, 0, 968, 969, 5, 3, 0, 0, 969, 971, 3, 102, 51, 0, 970, 968, 1, 0, 0, 0, 971, 974, 1, 0, 0, 0, 972, 970, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 976, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 975, 966, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 1037, 1, 0, 0, 0, 977, 978, 5, 64, 0, 0, 978, 979, 5, 107, 0, 0, 979, 1037, 3, 212, 106, 0, 980, 981, 5, 64, 0, 0, 981, 982, 5, 161, 0, 0, 982, 1037, 3, 212, 106, 0, 983, 984, 5, 203, 0, 0, 984, 985, 5, 166, 0, 0, 985, 1037, 3, 170, 85, 0, 986, 987, 5, 203, 0, 0, 987, 988, 5, 218, 0, 0, 988, 991, 5, 248, 0, 0, 989, 992, 5, 124, 0, 0, 990, 992, 3, 102, 51, 0, 991, 989, 1, 0, 0, 0, 991, 990, 1, 0, 0, 0, 992, 1037, 1, 0, 0, 0, 993, 994, 5, 232, 0, 0, 994, 995, 3, 176, 88, 0, 995, 996, 5, 203, 0, 0, 996, 1001, 3, 158, 79, 0, 997, 998, 5, 3, 0, 0, 998, 1000, 3, 158, 79, 0, 999, 997, 1, 0, 0, 0, 1000, 1003, 1, 0, 0, 0, 1001, 999, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1006, 1, 0, 0, 0, 1003, 1001, 1, 0, 0, 0, 1004, 1005, 5, 241, 0, 0, 1005, 1007, 3, 104, 52, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1037, 1, 0, 0, 0, 1008, 1009, 5, 135, 0, 0, 1009, 1010, 5, 111, 0, 0, 1010, 1015, 3, 176, 88, 0, 1011, 1013, 5, 26, 0, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 3, 212, 106, 0, 1015, 1012, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 5, 235, 0, 0, 1018, 1019, 3, 68, 34, 0, 1019, 1020, 5, 153, 0, 0, 1020, 1022, 3, 102, 51, 0, 1021, 1023, 3, 142, 71, 0, 1022, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1022, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1037, 1, 0, 0, 0, 1026, 1027, 5, 205, 0, 0, 1027, 1028, 5, 40, 0, 0, 1028, 1029, 5, 153, 0, 0, 1029, 1030, 5, 212, 0, 0, 1030, 1037, 3, 176, 88, 0, 1031, 1032, 5, 205, 0, 0, 1032, 1033, 5, 40, 0, 0, 1033, 1034, 5, 153, 0, 0, 1034, 1035, 5, 38, 0, 0, 1035, 1037, 3, 200, 100, 0, 1036, 254, 1, 0, 0, 0, 1036, 255, 1, 0, 0, 0, 1036, 257, 1, 0, 0, 0, 1036, 273, 1, 0, 0, 0, 1036, 283, 1, 0, 0, 0, 1036, 290, 1, 0, 0, 0, 1036, 297, 1, 0, 0, 0, 1036, 331, 1, 0, 0, 0, 1036, 357, 1, 0, 0, 0, 1036, 364, 1, 0, 0, 0, 1036, 372, 1, 0, 0, 0, 1036, 379, 1, 0, 0, 0, 1036, 382, 1, 0, 0, 0, 1036, 393, 1, 0, 0, 0, 1036, 402, 1, 0, 0, 0, 1036, 411, 1, 0, 0, 0, 1036, 428, 1, 0, 0, 0, 1036, 443, 1, 0, 0, 0, 1036, 459, 1, 0, 0, 0, 1036, 466, 1, 0, 0, 0, 1036, 473, 1, 0, 0, 0, 1036, 496, 1, 0, 0, 0, 1036, 502, 1, 0, 0, 0, 1036, 526, 1, 0, 0, 0, 1036, 544, 1, 0, 0, 0, 1036, 548, 1, 0, 0, 0, 1036, 556, 1, 0, 0, 0, 1036, 568, 1, 0, 0, 0, 1036, 576, 1, 0, 0, 0, 1036, 583, 1, 0, 0, 0, 1036, 590, 1, 0, 0, 0, 1036, 597, 1, 0, 0, 0, 1036, 612, 1, 0, 0, 0, 1036, 624, 1, 0, 0, 0, 1036, 627, 1, 0, 0, 0, 1036, 652, 1, 0, 0, 0, 1036, 677, 1, 0, 0, 0, 1036, 688, 1, 0, 0, 0, 1036, 719, 1, 0, 0, 0, 1036, 746, 1, 0, 0, 0, 1036, 777, 1, 0, 0, 0, 1036, 786, 1, 0, 0, 0, 1036, 807, 1, 0, 0, 0, 1036, 811, 1, 0, 0, 0, 1036, 815, 1, 0, 0, 0, 1036, 819, 1, 0, 0, 0, 1036, 824, 1, 0, 0, 0, 1036, 838, 1, 0, 0, 0, 1036, 852, 1, 0, 0, 0, 1036, 862, 1, 0, 0, 0, 1036, 876, 1, 0, 0, 0, 1036, 880, 1, 0, 0, 0, 1036, 887, 1, 0, 0, 0, 1036, 896, 1, 0, 0, 0, 1036, 903, 1, 0, 0, 0, 1036, 905, 1, 0, 0, 0, 1036, 907, 1, 0, 0, 0, 1036, 917, 1, 0, 0, 0, 1036, 927, 1, 0, 0, 0, 1036, 933, 1, 0, 0, 0, 1036, 936, 1, 0, 0, 0, 1036, 948, 1, 0, 0, 0, 1036, 952, 1, 0, 0, 0, 1036, 956, 1, 0, 0, 0, 1036, 961, 1, 0, 0, 0, 1036, 964, 1, 0, 0, 0, 1036, 977, 1, 0, 0, 0, 1036, 980, 1, 0, 0, 0, 1036, 983, 1, 0, 0, 0, 1036, 986, 1, 0, 0, 0, 1036, 993, 1, 0, 0, 0, 1036, 1008, 1, 0, 0, 0, 1036, 1026, 1, 0, 0, 0, 1036, 1031, 1, 0, 0, 0, 1037, 17, 1, 0, 0, 0, 1038, 1040, 3, 20, 10, 0, 1039, 1038, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 3, 36, 18, 0, 1042, 19, 1, 0, 0, 0, 1043, 1045, 5, 243, 0, 0, 1044, 1046, 5, 178, 0, 0, 1045, 1044, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1052, 3, 62, 31, 0, 1048, 1049, 5, 3, 0, 0, 1049, 1051, 3, 62, 31, 0, 1050, 1048, 1, 0, 0, 0, 1051, 1054, 1, 0, 0, 0, 1052, 1050, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 21, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1055, 1058, 3, 24, 12, 0, 1056, 1058, 3, 26, 13, 0, 1057, 1055, 1, 0, 0, 0, 1057, 1056, 1, 0, 0, 0, 1058, 23, 1, 0, 0, 0, 1059, 1060, 3, 202, 101, 0, 1060, 1063, 3, 132, 66, 0, 1061, 1062, 5, 147, 0, 0, 1062, 1064, 5, 148, 0, 0, 1063, 1061, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1067, 1, 0, 0, 0, 1065, 1066, 5, 40, 0, 0, 1066, 1068, 3, 116, 58, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1070, 5, 243, 0, 0, 1070, 1072, 3, 28, 14, 0, 1071, 1069, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 25, 1, 0, 0, 0, 1073, 1074, 5, 122, 0, 0, 1074, 1077, 3, 176, 88, 0, 1075, 1076, 7, 3, 0, 0, 1076, 1078, 5, 175, 0, 0, 1077, 1075, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 27, 1, 0, 0, 0, 1079, 1080, 5, 1, 0, 0, 1080, 1081, 3, 30, 15, 0, 1081, 1082, 5, 2, 0, 0, 1082, 29, 1, 0, 0, 0, 1083, 1088, 3, 32, 16, 0, 1084, 1085, 5, 3, 0, 0, 1085, 1087, 3, 32, 16, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1090, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 31, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1091, 1092, 3, 212, 106, 0, 1092, 1093, 5, 249, 0, 0, 1093, 1094, 3, 34, 17, 0, 1094, 33, 1, 0, 0, 0, 1095, 1098, 5, 59, 0, 0, 1096, 1098, 3, 102, 51, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1096, 1, 0, 0, 0, 1098, 35, 1, 0, 0, 0, 1099, 1110, 3, 42, 21, 0, 1100, 1101, 5, 158, 0, 0, 1101, 1102, 5, 32, 0, 0, 1102, 1107, 3, 46, 23, 0, 1103, 1104, 5, 3, 0, 0, 1104, 1106, 3, 46, 23, 0, 1105, 1103, 1, 0, 0, 0, 1106, 1109, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1111, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1110, 1100, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1117, 1, 0, 0, 0, 1112, 1113, 5, 151, 0, 0, 1113, 1115, 3, 40, 20, 0, 1114, 1116, 7, 4, 0, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1118, 1, 0, 0, 0, 1117, 1112, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1132, 1, 0, 0, 0, 1119, 1120, 5, 123, 0, 0, 1120, 1133, 3, 38, 19, 0, 1121, 1122, 5, 81, 0, 0, 1122, 1124, 7, 5, 0, 0, 1123, 1125, 3, 40, 20, 0, 1124, 1123, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1130, 7, 4, 0, 0, 1127, 1131, 5, 155, 0, 0, 1128, 1129, 5, 243, 0, 0, 1129, 1131, 5, 217, 0, 0, 1130, 1127, 1, 0, 0, 0, 1130, 1128, 1, 0, 0, 0, 1131, 1133, 1, 0, 0, 0, 1132, 1119, 1, 0, 0, 0, 1132, 1121, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 37, 1, 0, 0, 0, 1134, 1137, 5, 20, 0, 0, 1135, 1137, 3, 40, 20, 0, 1136, 1134, 1, 0, 0, 0, 1136, 1135, 1, 0, 0, 0, 1137, 39, 1, 0, 0, 0, 1138, 1139, 7, 6, 0, 0, 1139, 41, 1, 0, 0, 0, 1140, 1141, 6, 21, -1, 0, 1141, 1142, 3, 44, 22, 0, 1142, 1157, 1, 0, 0, 0, 1143, 1144, 10, 2, 0, 0, 1144, 1146, 5, 109, 0, 0, 1145, 1147, 3, 64, 32, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1156, 3, 42, 21, 3, 1149, 1150, 10, 1, 0, 0, 1150, 1152, 7, 7, 0, 0, 1151, 1153, 3, 64, 32, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1156, 3, 42, 21, 2, 1155, 1143, 1, 0, 0, 0, 1155, 1149, 1, 0, 0, 0, 1156, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 43, 1, 0, 0, 0, 1159, 1157, 1, 0, 0, 0, 1160, 1177, 3, 48, 24, 0, 1161, 1162, 5, 212, 0, 0, 1162, 1177, 3, 176, 88, 0, 1163, 1164, 5, 237, 0, 0, 1164, 1169, 3, 102, 51, 0, 1165, 1166, 5, 3, 0, 0, 1166, 1168, 3, 102, 51, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1171, 1, 0, 0, 0, 1169, 1167, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1177, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1173, 5, 1, 0, 0, 1173, 1174, 3, 36, 18, 0, 1174, 1175, 5, 2, 0, 0, 1175, 1177, 1, 0, 0, 0, 1176, 1160, 1, 0, 0, 0, 1176, 1161, 1, 0, 0, 0, 1176, 1163, 1, 0, 0, 0, 1176, 1172, 1, 0, 0, 0, 1177, 45, 1, 0, 0, 0, 1178, 1181, 3, 200, 100, 0, 1179, 1181, 3, 102, 51, 0, 1180, 1178, 1, 0, 0, 0, 1180, 1179, 1, 0, 0, 0, 1181, 1183, 1, 0, 0, 0, 1182, 1184, 7, 8, 0, 0, 1183, 1182, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1187, 1, 0, 0, 0, 1185, 1186, 5, 150, 0, 0, 1186, 1188, 7, 9, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 47, 1, 0, 0, 0, 1189, 1191, 5, 200, 0, 0, 1190, 1192, 3, 64, 32, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1198, 3, 66, 33, 0, 1194, 1195, 5, 3, 0, 0, 1195, 1197, 3, 66, 33, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1200, 1, 0, 0, 0, 1198, 1196, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1210, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1202, 5, 88, 0, 0, 1202, 1207, 3, 68, 34, 0, 1203, 1204, 5, 3, 0, 0, 1204, 1206, 3, 68, 34, 0, 1205, 1203, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1211, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1201, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1213, 5, 241, 0, 0, 1213, 1215, 3, 104, 52, 0, 1214, 1212, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1219, 1, 0, 0, 0, 1216, 1217, 5, 96, 0, 0, 1217, 1218, 5, 32, 0, 0, 1218, 1220, 3, 50, 25, 0, 1219, 1216, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1222, 5, 99, 0, 0, 1222, 1224, 3, 104, 52, 0, 1223, 1221, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1234, 1, 0, 0, 0, 1225, 1226, 5, 242, 0, 0, 1226, 1231, 3, 58, 29, 0, 1227, 1228, 5, 3, 0, 0, 1228, 1230, 3, 58, 29, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1235, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1225, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 49, 1, 0, 0, 0, 1236, 1238, 3, 64, 32, 0, 1237, 1236, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1244, 3, 52, 26, 0, 1240, 1241, 5, 3, 0, 0, 1241, 1243, 3, 52, 26, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 51, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1247, 1288, 3, 54, 27, 0, 1248, 1249, 5, 191, 0, 0, 1249, 1258, 5, 1, 0, 0, 1250, 1255, 3, 56, 28, 0, 1251, 1252, 5, 3, 0, 0, 1252, 1254, 3, 56, 28, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1257, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1250, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1288, 5, 2, 0, 0, 1261, 1262, 5, 46, 0, 0, 1262, 1271, 5, 1, 0, 0, 1263, 1268, 3, 56, 28, 0, 1264, 1265, 5, 3, 0, 0, 1265, 1267, 3, 56, 28, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1272, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1263, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1288, 5, 2, 0, 0, 1274, 1275, 5, 97, 0, 0, 1275, 1276, 5, 204, 0, 0, 1276, 1277, 5, 1, 0, 0, 1277, 1282, 3, 54, 27, 0, 1278, 1279, 5, 3, 0, 0, 1279, 1281, 3, 54, 27, 0, 1280, 1278, 1, 0, 0, 0, 1281, 1284, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1285, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1286, 5, 2, 0, 0, 1286, 1288, 1, 0, 0, 0, 1287, 1247, 1, 0, 0, 0, 1287, 1248, 1, 0, 0, 0, 1287, 1261, 1, 0, 0, 0, 1287, 1274, 1, 0, 0, 0, 1288, 53, 1, 0, 0, 0, 1289, 1298, 5, 1, 0, 0, 1290, 1295, 3, 56, 28, 0, 1291, 1292, 5, 3, 0, 0, 1292, 1294, 3, 56, 28, 0, 1293, 1291, 1, 0, 0, 0, 1294, 1297, 1, 0, 0, 0, 1295, 1293, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1299, 1, 0, 0, 0, 1297, 1295, 1, 0, 0, 0, 1298, 1290, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1303, 5, 2, 0, 0, 1301, 1303, 3, 56, 28, 0, 1302, 1289, 1, 0, 0, 0, 1302, 1301, 1, 0, 0, 0, 1303, 55, 1, 0, 0, 0, 1304, 1307, 3, 200, 100, 0, 1305, 1307, 3, 102, 51, 0, 1306, 1304, 1, 0, 0, 0, 1306, 1305, 1, 0, 0, 0, 1307, 57, 1, 0, 0, 0, 1308, 1309, 3, 212, 106, 0, 1309, 1310, 5, 26, 0, 0, 1310, 1311, 5, 1, 0, 0, 1311, 1312, 3, 60, 30, 0, 1312, 1313, 5, 2, 0, 0, 1313, 59, 1, 0, 0, 0, 1314, 1316, 3, 212, 106, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1327, 1, 0, 0, 0, 1317, 1318, 5, 163, 0, 0, 1318, 1319, 5, 32, 0, 0, 1319, 1324, 3, 102, 51, 0, 1320, 1321, 5, 3, 0, 0, 1321, 1323, 3, 102, 51, 0, 1322, 1320, 1, 0, 0, 0, 1323, 1326, 1, 0, 0, 0, 1324, 1322, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1328, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, 0, 1327, 1317, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1339, 1, 0, 0, 0, 1329, 1330, 5, 158, 0, 0, 1330, 1331, 5, 32, 0, 0, 1331, 1336, 3, 46, 23, 0, 1332, 1333, 5, 3, 0, 0, 1333, 1335, 3, 46, 23, 0, 1334, 1332, 1, 0, 0, 0, 1335, 1338, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1340, 1, 0, 0, 0, 1338, 1336, 1, 0, 0, 0, 1339, 1329, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1343, 3, 146, 73, 0, 1342, 1341, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 61, 1, 0, 0, 0, 1344, 1346, 3, 212, 106, 0, 1345, 1347, 3, 98, 49, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 5, 26, 0, 0, 1349, 1350, 5, 1, 0, 0, 1350, 1351, 3, 18, 9, 0, 1351, 1352, 5, 2, 0, 0, 1352, 63, 1, 0, 0, 0, 1353, 1354, 7, 10, 0, 0, 1354, 65, 1, 0, 0, 0, 1355, 1358, 3, 200, 100, 0, 1356, 1358, 3, 102, 51, 0, 1357, 1355, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 1363, 1, 0, 0, 0, 1359, 1361, 5, 26, 0, 0, 1360, 1359, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1364, 3, 212, 106, 0, 1363, 1360, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1374, 1, 0, 0, 0, 1365, 1366, 3, 110, 55, 0, 1366, 1367, 5, 4, 0, 0, 1367, 1370, 5, 257, 0, 0, 1368, 1369, 5, 26, 0, 0, 1369, 1371, 3, 98, 49, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1374, 1, 0, 0, 0, 1372, 1374, 5, 257, 0, 0, 1373, 1357, 1, 0, 0, 0, 1373, 1365, 1, 0, 0, 0, 1373, 1372, 1, 0, 0, 0, 1374, 67, 1, 0, 0, 0, 1375, 1376, 6, 34, -1, 0, 1376, 1377, 3, 74, 37, 0, 1377, 1396, 1, 0, 0, 0, 1378, 1392, 10, 2, 0, 0, 1379, 1380, 5, 45, 0, 0, 1380, 1381, 5, 116, 0, 0, 1381, 1393, 3, 74, 37, 0, 1382, 1383, 3, 70, 35, 0, 1383, 1384, 5, 116, 0, 0, 1384, 1385, 3, 68, 34, 0, 1385, 1386, 3, 72, 36, 0, 1386, 1393, 1, 0, 0, 0, 1387, 1388, 5, 138, 0, 0, 1388, 1389, 3, 70, 35, 0, 1389, 1390, 5, 116, 0, 0, 1390, 1391, 3, 74, 37, 0, 1391, 1393, 1, 0, 0, 0, 1392, 1379, 1, 0, 0, 0, 1392, 1382, 1, 0, 0, 0, 1392, 1387, 1, 0, 0, 0, 1393, 1395, 1, 0, 0, 0, 1394, 1378, 1, 0, 0, 0, 1395, 1398, 1, 0, 0, 0, 1396, 1394, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 69, 1, 0, 0, 0, 1398, 1396, 1, 0, 0, 0, 1399, 1401, 5, 106, 0, 0, 1400, 1399, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1415, 1, 0, 0, 0, 1402, 1404, 5, 120, 0, 0, 1403, 1405, 5, 160, 0, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1415, 1, 0, 0, 0, 1406, 1408, 5, 187, 0, 0, 1407, 1409, 5, 160, 0, 0, 1408, 1407, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1415, 1, 0, 0, 0, 1410, 1412, 5, 89, 0, 0, 1411, 1413, 5, 160, 0, 0, 1412, 1411, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1415, 1, 0, 0, 0, 1414, 1400, 1, 0, 0, 0, 1414, 1402, 1, 0, 0, 0, 1414, 1406, 1, 0, 0, 0, 1414, 1410, 1, 0, 0, 0, 1415, 71, 1, 0, 0, 0, 1416, 1417, 5, 153, 0, 0, 1417, 1431, 3, 104, 52, 0, 1418, 1419, 5, 235, 0, 0, 1419, 1420, 5, 1, 0, 0, 1420, 1425, 3, 212, 106, 0, 1421, 1422, 5, 3, 0, 0, 1422, 1424, 3, 212, 106, 0, 1423, 1421, 1, 0, 0, 0, 1424, 1427, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1428, 1, 0, 0, 0, 1427, 1425, 1, 0, 0, 0, 1428, 1429, 5, 2, 0, 0, 1429, 1431, 1, 0, 0, 0, 1430, 1416, 1, 0, 0, 0, 1430, 1418, 1, 0, 0, 0, 1431, 73, 1, 0, 0, 0, 1432, 1439, 3, 78, 39, 0, 1433, 1434, 5, 214, 0, 0, 1434, 1435, 3, 76, 38, 0, 1435, 1436, 5, 1, 0, 0, 1436, 1437, 3, 102, 51, 0, 1437, 1438, 5, 2, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1433, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 75, 1, 0, 0, 0, 1441, 1442, 7, 11, 0, 0, 1442, 77, 1, 0, 0, 0, 1443, 1526, 3, 92, 46, 0, 1444, 1445, 5, 132, 0, 0, 1445, 1456, 5, 1, 0, 0, 1446, 1447, 5, 163, 0, 0, 1447, 1448, 5, 32, 0, 0, 1448, 1453, 3, 102, 51, 0, 1449, 1450, 5, 3, 0, 0, 1450, 1452, 3, 102, 51, 0, 1451, 1449, 1, 0, 0, 0, 1452, 1455, 1, 0, 0, 0, 1453, 1451, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1457, 1, 0, 0, 0, 1455, 1453, 1, 0, 0, 0, 1456, 1446, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1468, 1, 0, 0, 0, 1458, 1459, 5, 158, 0, 0, 1459, 1460, 5, 32, 0, 0, 1460, 1465, 3, 46, 23, 0, 1461, 1462, 5, 3, 0, 0, 1462, 1464, 3, 46, 23, 0, 1463, 1461, 1, 0, 0, 0, 1464, 1467, 1, 0, 0, 0, 1465, 1463, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1469, 1, 0, 0, 0, 1467, 1465, 1, 0, 0, 0, 1468, 1458, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1479, 1, 0, 0, 0, 1470, 1471, 5, 134, 0, 0, 1471, 1476, 3, 80, 40, 0, 1472, 1473, 5, 3, 0, 0, 1473, 1475, 3, 80, 40, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1478, 1, 0, 0, 0, 1476, 1474, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1480, 1, 0, 0, 0, 1478, 1476, 1, 0, 0, 0, 1479, 1470, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1482, 1, 0, 0, 0, 1481, 1483, 3, 82, 41, 0, 1482, 1481, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1487, 1, 0, 0, 0, 1484, 1485, 5, 19, 0, 0, 1485, 1486, 5, 129, 0, 0, 1486, 1488, 3, 86, 43, 0, 1487, 1484, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1490, 1, 0, 0, 0, 1489, 1491, 7, 12, 0, 0, 1490, 1489, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 5, 167, 0, 0, 1493, 1494, 5, 1, 0, 0, 1494, 1495, 3, 152, 76, 0, 1495, 1505, 5, 2, 0, 0, 1496, 1497, 5, 209, 0, 0, 1497, 1502, 3, 88, 44, 0, 1498, 1499, 5, 3, 0, 0, 1499, 1501, 3, 88, 44, 0, 1500, 1498, 1, 0, 0, 0, 1501, 1504, 1, 0, 0, 0, 1502, 1500, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1506, 1, 0, 0, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1496, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 5, 65, 0, 0, 1508, 1513, 3, 90, 45, 0, 1509, 1510, 5, 3, 0, 0, 1510, 1512, 3, 90, 45, 0, 1511, 1509, 1, 0, 0, 0, 1512, 1515, 1, 0, 0, 0, 1513, 1511, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1516, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1516, 1524, 5, 2, 0, 0, 1517, 1519, 5, 26, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 3, 212, 106, 0, 1521, 1523, 3, 98, 49, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1525, 1, 0, 0, 0, 1524, 1518, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1527, 1, 0, 0, 0, 1526, 1444, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 79, 1, 0, 0, 0, 1528, 1529, 3, 102, 51, 0, 1529, 1530, 5, 26, 0, 0, 1530, 1531, 3, 212, 106, 0, 1531, 81, 1, 0, 0, 0, 1532, 1533, 5, 154, 0, 0, 1533, 1534, 5, 192, 0, 0, 1534, 1535, 5, 168, 0, 0, 1535, 1544, 5, 129, 0, 0, 1536, 1537, 5, 20, 0, 0, 1537, 1538, 5, 193, 0, 0, 1538, 1539, 5, 168, 0, 0, 1539, 1541, 5, 129, 0, 0, 1540, 1542, 3, 84, 42, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1544, 1, 0, 0, 0, 1543, 1532, 1, 0, 0, 0, 1543, 1536, 1, 0, 0, 0, 1544, 83, 1, 0, 0, 0, 1545, 1546, 5, 205, 0, 0, 1546, 1547, 5, 71, 0, 0, 1547, 1555, 5, 131, 0, 0, 1548, 1549, 5, 152, 0, 0, 1549, 1550, 5, 71, 0, 0, 1550, 1555, 5, 131, 0, 0, 1551, 1552, 5, 243, 0, 0, 1552, 1553, 5, 230, 0, 0, 1553, 1555, 5, 193, 0, 0, 1554, 1545, 1, 0, 0, 0, 1554, 1548, 1, 0, 0, 0, 1554, 1551, 1, 0, 0, 0, 1555, 85, 1, 0, 0, 0, 1556, 1557, 5, 5, 0, 0, 1557, 1558, 5, 220, 0, 0, 1558, 1559, 5, 139, 0, 0, 1559, 1576, 5, 192, 0, 0, 1560, 1561, 5, 5, 0, 0, 1561, 1562, 5, 165, 0, 0, 1562, 1563, 5, 118, 0, 0, 1563, 1576, 5, 192, 0, 0, 1564, 1565, 5, 5, 0, 0, 1565, 1566, 5, 220, 0, 0, 1566, 1567, 5, 84, 0, 0, 1567, 1576, 3, 212, 106, 0, 1568, 1569, 5, 5, 0, 0, 1569, 1570, 5, 220, 0, 0, 1570, 1571, 5, 118, 0, 0, 1571, 1576, 3, 212, 106, 0, 1572, 1573, 5, 5, 0, 0, 1573, 1574, 5, 220, 0, 0, 1574, 1576, 3, 212, 106, 0, 1575, 1556, 1, 0, 0, 0, 1575, 1560, 1, 0, 0, 0, 1575, 1564, 1, 0, 0, 0, 1575, 1568, 1, 0, 0, 0, 1575, 1572, 1, 0, 0, 0, 1576, 87, 1, 0, 0, 0, 1577, 1578, 3, 212, 106, 0, 1578, 1579, 5, 249, 0, 0, 1579, 1580, 5, 1, 0, 0, 1580, 1585, 3, 212, 106, 0, 1581, 1582, 5, 3, 0, 0, 1582, 1584, 3, 212, 106, 0, 1583, 1581, 1, 0, 0, 0, 1584, 1587, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1588, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1589, 5, 2, 0, 0, 1589, 89, 1, 0, 0, 0, 1590, 1591, 3, 212, 106, 0, 1591, 1592, 5, 26, 0, 0, 1592, 1593, 3, 102, 51, 0, 1593, 91, 1, 0, 0, 0, 1594, 1602, 3, 100, 50, 0, 1595, 1597, 5, 26, 0, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1600, 3, 212, 106, 0, 1599, 1601, 3, 98, 49, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1603, 1, 0, 0, 0, 1602, 1596, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 93, 1, 0, 0, 0, 1604, 1605, 5, 1, 0, 0, 1605, 1610, 3, 202, 101, 0, 1606, 1607, 5, 3, 0, 0, 1607, 1609, 3, 202, 101, 0, 1608, 1606, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1613, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1614, 5, 2, 0, 0, 1614, 95, 1, 0, 0, 0, 1615, 1616, 5, 1, 0, 0, 1616, 1621, 3, 200, 100, 0, 1617, 1618, 5, 3, 0, 0, 1618, 1620, 3, 200, 100, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1623, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1625, 5, 2, 0, 0, 1625, 97, 1, 0, 0, 0, 1626, 1627, 5, 1, 0, 0, 1627, 1632, 3, 212, 106, 0, 1628, 1629, 5, 3, 0, 0, 1629, 1631, 3, 212, 106, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1634, 1, 0, 0, 0, 1632, 1630, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1632, 1, 0, 0, 0, 1635, 1636, 5, 2, 0, 0, 1636, 99, 1, 0, 0, 0, 1637, 1667, 3, 174, 87, 0, 1638, 1639, 5, 1, 0, 0, 1639, 1640, 3, 18, 9, 0, 1640, 1641, 5, 2, 0, 0, 1641, 1667, 1, 0, 0, 0, 1642, 1643, 5, 231, 0, 0, 1643, 1644, 5, 1, 0, 0, 1644, 1649, 3, 102, 51, 0, 1645, 1646, 5, 3, 0, 0, 1646, 1648, 3, 102, 51, 0, 1647, 1645, 1, 0, 0, 0, 1648, 1651, 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1652, 1655, 5, 2, 0, 0, 1653, 1654, 5, 243, 0, 0, 1654, 1656, 5, 159, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1667, 1, 0, 0, 0, 1657, 1658, 5, 119, 0, 0, 1658, 1659, 5, 1, 0, 0, 1659, 1660, 3, 18, 9, 0, 1660, 1661, 5, 2, 0, 0, 1661, 1667, 1, 0, 0, 0, 1662, 1663, 5, 1, 0, 0, 1663, 1664, 3, 68, 34, 0, 1664, 1665, 5, 2, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1637, 1, 0, 0, 0, 1666, 1638, 1, 0, 0, 0, 1666, 1642, 1, 0, 0, 0, 1666, 1657, 1, 0, 0, 0, 1666, 1662, 1, 0, 0, 0, 1667, 101, 1, 0, 0, 0, 1668, 1669, 3, 104, 52, 0, 1669, 103, 1, 0, 0, 0, 1670, 1671, 6, 52, -1, 0, 1671, 1673, 3, 108, 54, 0, 1672, 1674, 3, 106, 53, 0, 1673, 1672, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1678, 1, 0, 0, 0, 1675, 1676, 5, 147, 0, 0, 1676, 1678, 3, 104, 52, 3, 1677, 1670, 1, 0, 0, 0, 1677, 1675, 1, 0, 0, 0, 1678, 1687, 1, 0, 0, 0, 1679, 1680, 10, 2, 0, 0, 1680, 1681, 5, 23, 0, 0, 1681, 1686, 3, 104, 52, 3, 1682, 1683, 10, 1, 0, 0, 1683, 1684, 5, 157, 0, 0, 1684, 1686, 3, 104, 52, 2, 1685, 1679, 1, 0, 0, 0, 1685, 1682, 1, 0, 0, 0, 1686, 1689, 1, 0, 0, 0, 1687, 1685, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 105, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1690, 1691, 3, 120, 60, 0, 1691, 1692, 3, 108, 54, 0, 1692, 1752, 1, 0, 0, 0, 1693, 1694, 3, 120, 60, 0, 1694, 1695, 3, 122, 61, 0, 1695, 1696, 5, 1, 0, 0, 1696, 1697, 3, 18, 9, 0, 1697, 1698, 5, 2, 0, 0, 1698, 1752, 1, 0, 0, 0, 1699, 1701, 5, 147, 0, 0, 1700, 1699, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 5, 31, 0, 0, 1703, 1704, 3, 108, 54, 0, 1704, 1705, 5, 23, 0, 0, 1705, 1706, 3, 108, 54, 0, 1706, 1752, 1, 0, 0, 0, 1707, 1709, 5, 147, 0, 0, 1708, 1707, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1711, 5, 103, 0, 0, 1711, 1712, 5, 1, 0, 0, 1712, 1717, 3, 102, 51, 0, 1713, 1714, 5, 3, 0, 0, 1714, 1716, 3, 102, 51, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1719, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1720, 1, 0, 0, 0, 1719, 1717, 1, 0, 0, 0, 1720, 1721, 5, 2, 0, 0, 1721, 1752, 1, 0, 0, 0, 1722, 1724, 5, 147, 0, 0, 1723, 1722, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 5, 103, 0, 0, 1726, 1727, 5, 1, 0, 0, 1727, 1728, 3, 18, 9, 0, 1728, 1729, 5, 2, 0, 0, 1729, 1752, 1, 0, 0, 0, 1730, 1732, 5, 147, 0, 0, 1731, 1730, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 5, 122, 0, 0, 1734, 1737, 3, 108, 54, 0, 1735, 1736, 5, 73, 0, 0, 1736, 1738, 3, 108, 54, 0, 1737, 1735, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1752, 1, 0, 0, 0, 1739, 1741, 5, 114, 0, 0, 1740, 1742, 5, 147, 0, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1752, 5, 148, 0, 0, 1744, 1746, 5, 114, 0, 0, 1745, 1747, 5, 147, 0, 0, 1746, 1745, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 5, 66, 0, 0, 1749, 1750, 5, 88, 0, 0, 1750, 1752, 3, 108, 54, 0, 1751, 1690, 1, 0, 0, 0, 1751, 1693, 1, 0, 0, 0, 1751, 1700, 1, 0, 0, 0, 1751, 1708, 1, 0, 0, 0, 1751, 1723, 1, 0, 0, 0, 1751, 1731, 1, 0, 0, 0, 1751, 1739, 1, 0, 0, 0, 1751, 1744, 1, 0, 0, 0, 1752, 107, 1, 0, 0, 0, 1753, 1754, 6, 54, -1, 0, 1754, 1758, 3, 110, 55, 0, 1755, 1756, 7, 13, 0, 0, 1756, 1758, 3, 108, 54, 4, 1757, 1753, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1773, 1, 0, 0, 0, 1759, 1760, 10, 3, 0, 0, 1760, 1761, 7, 14, 0, 0, 1761, 1772, 3, 108, 54, 4, 1762, 1763, 10, 2, 0, 0, 1763, 1764, 7, 13, 0, 0, 1764, 1772, 3, 108, 54, 3, 1765, 1766, 10, 1, 0, 0, 1766, 1767, 5, 260, 0, 0, 1767, 1772, 3, 108, 54, 2, 1768, 1769, 10, 5, 0, 0, 1769, 1770, 5, 28, 0, 0, 1770, 1772, 3, 118, 59, 0, 1771, 1759, 1, 0, 0, 0, 1771, 1762, 1, 0, 0, 0, 1771, 1765, 1, 0, 0, 0, 1771, 1768, 1, 0, 0, 0, 1772, 1775, 1, 0, 0, 0, 1773, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 109, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1776, 1777, 6, 55, -1, 0, 1777, 2026, 5, 148, 0, 0, 1778, 2026, 3, 126, 63, 0, 1779, 1780, 3, 212, 106, 0, 1780, 1781, 3, 116, 58, 0, 1781, 2026, 1, 0, 0, 0, 1782, 1783, 5, 68, 0, 0, 1783, 1784, 5, 172, 0, 0, 1784, 2026, 3, 116, 58, 0, 1785, 2026, 3, 214, 107, 0, 1786, 2026, 3, 124, 62, 0, 1787, 2026, 3, 116, 58, 0, 1788, 2026, 5, 264, 0, 0, 1789, 2026, 5, 261, 0, 0, 1790, 1791, 5, 170, 0, 0, 1791, 1792, 5, 1, 0, 0, 1792, 1793, 3, 108, 54, 0, 1793, 1794, 5, 103, 0, 0, 1794, 1795, 3, 108, 54, 0, 1795, 1796, 5, 2, 0, 0, 1796, 2026, 1, 0, 0, 0, 1797, 1798, 5, 1, 0, 0, 1798, 1801, 3, 102, 51, 0, 1799, 1800, 5, 3, 0, 0, 1800, 1802, 3, 102, 51, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 5, 2, 0, 0, 1806, 2026, 1, 0, 0, 0, 1807, 1808, 5, 192, 0, 0, 1808, 1809, 5, 1, 0, 0, 1809, 1814, 3, 102, 51, 0, 1810, 1811, 5, 3, 0, 0, 1811, 1813, 3, 102, 51, 0, 1812, 1810, 1, 0, 0, 0, 1813, 1816, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1818, 5, 2, 0, 0, 1818, 2026, 1, 0, 0, 0, 1819, 1820, 3, 198, 99, 0, 1820, 1821, 5, 1, 0, 0, 1821, 1822, 5, 257, 0, 0, 1822, 1824, 5, 2, 0, 0, 1823, 1825, 3, 140, 70, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1827, 1, 0, 0, 0, 1826, 1828, 3, 144, 72, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 2026, 1, 0, 0, 0, 1829, 1831, 3, 112, 56, 0, 1830, 1829, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 3, 198, 99, 0, 1833, 1845, 5, 1, 0, 0, 1834, 1836, 3, 64, 32, 0, 1835, 1834, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1842, 3, 102, 51, 0, 1838, 1839, 5, 3, 0, 0, 1839, 1841, 3, 102, 51, 0, 1840, 1838, 1, 0, 0, 0, 1841, 1844, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1846, 1, 0, 0, 0, 1844, 1842, 1, 0, 0, 0, 1845, 1835, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1857, 1, 0, 0, 0, 1847, 1848, 5, 158, 0, 0, 1848, 1849, 5, 32, 0, 0, 1849, 1854, 3, 46, 23, 0, 1850, 1851, 5, 3, 0, 0, 1851, 1853, 3, 46, 23, 0, 1852, 1850, 1, 0, 0, 0, 1853, 1856, 1, 0, 0, 0, 1854, 1852, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1858, 1, 0, 0, 0, 1856, 1854, 1, 0, 0, 0, 1857, 1847, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1861, 5, 2, 0, 0, 1860, 1862, 3, 140, 70, 0, 1861, 1860, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1867, 1, 0, 0, 0, 1863, 1865, 3, 114, 57, 0, 1864, 1863, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1868, 3, 144, 72, 0, 1867, 1864, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 2026, 1, 0, 0, 0, 1869, 1870, 3, 212, 106, 0, 1870, 1871, 3, 144, 72, 0, 1871, 2026, 1, 0, 0, 0, 1872, 1873, 3, 212, 106, 0, 1873, 1874, 5, 6, 0, 0, 1874, 1875, 3, 102, 51, 0, 1875, 2026, 1, 0, 0, 0, 1876, 1885, 5, 1, 0, 0, 1877, 1882, 3, 212, 106, 0, 1878, 1879, 5, 3, 0, 0, 1879, 1881, 3, 212, 106, 0, 1880, 1878, 1, 0, 0, 0, 1881, 1884, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1886, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1877, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 5, 2, 0, 0, 1888, 1889, 5, 6, 0, 0, 1889, 2026, 3, 102, 51, 0, 1890, 1891, 5, 1, 0, 0, 1891, 1892, 3, 18, 9, 0, 1892, 1893, 5, 2, 0, 0, 1893, 2026, 1, 0, 0, 0, 1894, 1895, 5, 77, 0, 0, 1895, 1896, 5, 1, 0, 0, 1896, 1897, 3, 18, 9, 0, 1897, 1898, 5, 2, 0, 0, 1898, 2026, 1, 0, 0, 0, 1899, 1900, 5, 35, 0, 0, 1900, 1902, 3, 102, 51, 0, 1901, 1903, 3, 138, 69, 0, 1902, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1908, 1, 0, 0, 0, 1906, 1907, 5, 70, 0, 0, 1907, 1909, 3, 102, 51, 0, 1908, 1906, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 5, 72, 0, 0, 1911, 2026, 1, 0, 0, 0, 1912, 1914, 5, 35, 0, 0, 1913, 1915, 3, 138, 69, 0, 1914, 1913, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1920, 1, 0, 0, 0, 1918, 1919, 5, 70, 0, 0, 1919, 1921, 3, 102, 51, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 5, 72, 0, 0, 1923, 2026, 1, 0, 0, 0, 1924, 1925, 5, 36, 0, 0, 1925, 1926, 5, 1, 0, 0, 1926, 1927, 3, 102, 51, 0, 1927, 1928, 5, 26, 0, 0, 1928, 1929, 3, 132, 66, 0, 1929, 1930, 5, 2, 0, 0, 1930, 2026, 1, 0, 0, 0, 1931, 1932, 5, 224, 0, 0, 1932, 1933, 5, 1, 0, 0, 1933, 1934, 3, 102, 51, 0, 1934, 1935, 5, 26, 0, 0, 1935, 1936, 3, 132, 66, 0, 1936, 1937, 5, 2, 0, 0, 1937, 2026, 1, 0, 0, 0, 1938, 1939, 5, 25, 0, 0, 1939, 1948, 5, 7, 0, 0, 1940, 1945, 3, 102, 51, 0, 1941, 1942, 5, 3, 0, 0, 1942, 1944, 3, 102, 51, 0, 1943, 1941, 1, 0, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1949, 1, 0, 0, 0, 1947, 1945, 1, 0, 0, 0, 1948, 1940, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 2026, 5, 8, 0, 0, 1951, 2026, 3, 212, 106, 0, 1952, 2026, 5, 49, 0, 0, 1953, 1957, 5, 53, 0, 0, 1954, 1955, 5, 1, 0, 0, 1955, 1956, 5, 265, 0, 0, 1956, 1958, 5, 2, 0, 0, 1957, 1954, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 2026, 1, 0, 0, 0, 1959, 1963, 5, 54, 0, 0, 1960, 1961, 5, 1, 0, 0, 1961, 1962, 5, 265, 0, 0, 1962, 1964, 5, 2, 0, 0, 1963, 1960, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 2026, 1, 0, 0, 0, 1965, 1969, 5, 125, 0, 0, 1966, 1967, 5, 1, 0, 0, 1967, 1968, 5, 265, 0, 0, 1968, 1970, 5, 2, 0, 0, 1969, 1966, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 2026, 1, 0, 0, 0, 1971, 1975, 5, 126, 0, 0, 1972, 1973, 5, 1, 0, 0, 1973, 1974, 5, 265, 0, 0, 1974, 1976, 5, 2, 0, 0, 1975, 1972, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 2026, 1, 0, 0, 0, 1977, 2026, 5, 55, 0, 0, 1978, 2026, 5, 48, 0, 0, 1979, 2026, 5, 52, 0, 0, 1980, 2026, 5, 50, 0, 0, 1981, 1982, 5, 210, 0, 0, 1982, 1983, 5, 1, 0, 0, 1983, 1984, 3, 108, 54, 0, 1984, 1985, 5, 88, 0, 0, 1985, 1988, 3, 108, 54, 0, 1986, 1987, 5, 86, 0, 0, 1987, 1989, 3, 108, 54, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 5, 2, 0, 0, 1991, 2026, 1, 0, 0, 0, 1992, 1993, 5, 146, 0, 0, 1993, 1994, 5, 1, 0, 0, 1994, 1997, 3, 108, 54, 0, 1995, 1996, 5, 3, 0, 0, 1996, 1998, 3, 130, 65, 0, 1997, 1995, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 5, 2, 0, 0, 2000, 2026, 1, 0, 0, 0, 2001, 2002, 5, 79, 0, 0, 2002, 2003, 5, 1, 0, 0, 2003, 2004, 3, 212, 106, 0, 2004, 2005, 5, 88, 0, 0, 2005, 2006, 3, 108, 54, 0, 2006, 2007, 5, 2, 0, 0, 2007, 2026, 1, 0, 0, 0, 2008, 2009, 5, 1, 0, 0, 2009, 2010, 3, 102, 51, 0, 2010, 2011, 5, 2, 0, 0, 2011, 2026, 1, 0, 0, 0, 2012, 2013, 5, 97, 0, 0, 2013, 2022, 5, 1, 0, 0, 2014, 2019, 3, 204, 102, 0, 2015, 2016, 5, 3, 0, 0, 2016, 2018, 3, 204, 102, 0, 2017, 2015, 1, 0, 0, 0, 2018, 2021, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2023, 1, 0, 0, 0, 2021, 2019, 1, 0, 0, 0, 2022, 2014, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2026, 5, 2, 0, 0, 2025, 1776, 1, 0, 0, 0, 2025, 1778, 1, 0, 0, 0, 2025, 1779, 1, 0, 0, 0, 2025, 1782, 1, 0, 0, 0, 2025, 1785, 1, 0, 0, 0, 2025, 1786, 1, 0, 0, 0, 2025, 1787, 1, 0, 0, 0, 2025, 1788, 1, 0, 0, 0, 2025, 1789, 1, 0, 0, 0, 2025, 1790, 1, 0, 0, 0, 2025, 1797, 1, 0, 0, 0, 2025, 1807, 1, 0, 0, 0, 2025, 1819, 1, 0, 0, 0, 2025, 1830, 1, 0, 0, 0, 2025, 1869, 1, 0, 0, 0, 2025, 1872, 1, 0, 0, 0, 2025, 1876, 1, 0, 0, 0, 2025, 1890, 1, 0, 0, 0, 2025, 1894, 1, 0, 0, 0, 2025, 1899, 1, 0, 0, 0, 2025, 1912, 1, 0, 0, 0, 2025, 1924, 1, 0, 0, 0, 2025, 1931, 1, 0, 0, 0, 2025, 1938, 1, 0, 0, 0, 2025, 1951, 1, 0, 0, 0, 2025, 1952, 1, 0, 0, 0, 2025, 1953, 1, 0, 0, 0, 2025, 1959, 1, 0, 0, 0, 2025, 1965, 1, 0, 0, 0, 2025, 1971, 1, 0, 0, 0, 2025, 1977, 1, 0, 0, 0, 2025, 1978, 1, 0, 0, 0, 2025, 1979, 1, 0, 0, 0, 2025, 1980, 1, 0, 0, 0, 2025, 1981, 1, 0, 0, 0, 2025, 1992, 1, 0, 0, 0, 2025, 2001, 1, 0, 0, 0, 2025, 2008, 1, 0, 0, 0, 2025, 2012, 1, 0, 0, 0, 2026, 2037, 1, 0, 0, 0, 2027, 2028, 10, 17, 0, 0, 2028, 2029, 5, 7, 0, 0, 2029, 2030, 3, 108, 54, 0, 2030, 2031, 5, 8, 0, 0, 2031, 2036, 1, 0, 0, 0, 2032, 2033, 10, 15, 0, 0, 2033, 2034, 5, 4, 0, 0, 2034, 2036, 3, 212, 106, 0, 2035, 2027, 1, 0, 0, 0, 2035, 2032, 1, 0, 0, 0, 2036, 2039, 1, 0, 0, 0, 2037, 2035, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 111, 1, 0, 0, 0, 2039, 2037, 1, 0, 0, 0, 2040, 2041, 7, 15, 0, 0, 2041, 113, 1, 0, 0, 0, 2042, 2043, 5, 102, 0, 0, 2043, 2047, 5, 150, 0, 0, 2044, 2045, 5, 184, 0, 0, 2045, 2047, 5, 150, 0, 0, 2046, 2042, 1, 0, 0, 0, 2046, 2044, 1, 0, 0, 0, 2047, 115, 1, 0, 0, 0, 2048, 2055, 5, 262, 0, 0, 2049, 2052, 5, 263, 0, 0, 2050, 2051, 5, 226, 0, 0, 2051, 2053, 5, 262, 0, 0, 2052, 2050, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2055, 1, 0, 0, 0, 2054, 2048, 1, 0, 0, 0, 2054, 2049, 1, 0, 0, 0, 2055, 117, 1, 0, 0, 0, 2056, 2057, 5, 218, 0, 0, 2057, 2058, 5, 248, 0, 0, 2058, 2063, 3, 126, 63, 0, 2059, 2060, 5, 218, 0, 0, 2060, 2061, 5, 248, 0, 0, 2061, 2063, 3, 116, 58, 0, 2062, 2056, 1, 0, 0, 0, 2062, 2059, 1, 0, 0, 0, 2063, 119, 1, 0, 0, 0, 2064, 2065, 7, 16, 0, 0, 2065, 121, 1, 0, 0, 0, 2066, 2067, 7, 17, 0, 0, 2067, 123, 1, 0, 0, 0, 2068, 2069, 7, 18, 0, 0, 2069, 125, 1, 0, 0, 0, 2070, 2072, 5, 110, 0, 0, 2071, 2073, 7, 13, 0, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 3, 116, 58, 0, 2075, 2078, 3, 128, 64, 0, 2076, 2077, 5, 220, 0, 0, 2077, 2079, 3, 128, 64, 0, 2078, 2076, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 127, 1, 0, 0, 0, 2080, 2081, 7, 19, 0, 0, 2081, 129, 1, 0, 0, 0, 2082, 2083, 7, 20, 0, 0, 2083, 131, 1, 0, 0, 0, 2084, 2085, 6, 66, -1, 0, 2085, 2086, 5, 192, 0, 0, 2086, 2087, 5, 1, 0, 0, 2087, 2092, 3, 134, 67, 0, 2088, 2089, 5, 3, 0, 0, 2089, 2091, 3, 134, 67, 0, 2090, 2088, 1, 0, 0, 0, 2091, 2094, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2095, 1, 0, 0, 0, 2094, 2092, 1, 0, 0, 0, 2095, 2096, 5, 2, 0, 0, 2096, 2176, 1, 0, 0, 0, 2097, 2098, 5, 110, 0, 0, 2098, 2101, 3, 128, 64, 0, 2099, 2100, 5, 220, 0, 0, 2100, 2102, 3, 128, 64, 0, 2101, 2099, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2176, 1, 0, 0, 0, 2103, 2108, 5, 219, 0, 0, 2104, 2105, 5, 1, 0, 0, 2105, 2106, 3, 136, 68, 0, 2106, 2107, 5, 2, 0, 0, 2107, 2109, 1, 0, 0, 0, 2108, 2104, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2113, 1, 0, 0, 0, 2110, 2111, 5, 244, 0, 0, 2111, 2112, 5, 218, 0, 0, 2112, 2114, 5, 248, 0, 0, 2113, 2110, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2176, 1, 0, 0, 0, 2115, 2120, 5, 219, 0, 0, 2116, 2117, 5, 1, 0, 0, 2117, 2118, 3, 136, 68, 0, 2118, 2119, 5, 2, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2116, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2123, 5, 243, 0, 0, 2123, 2124, 5, 218, 0, 0, 2124, 2176, 5, 248, 0, 0, 2125, 2130, 5, 218, 0, 0, 2126, 2127, 5, 1, 0, 0, 2127, 2128, 3, 136, 68, 0, 2128, 2129, 5, 2, 0, 0, 2129, 2131, 1, 0, 0, 0, 2130, 2126, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2135, 1, 0, 0, 0, 2132, 2133, 5, 244, 0, 0, 2133, 2134, 5, 218, 0, 0, 2134, 2136, 5, 248, 0, 0, 2135, 2132, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2176, 1, 0, 0, 0, 2137, 2142, 5, 218, 0, 0, 2138, 2139, 5, 1, 0, 0, 2139, 2140, 3, 136, 68, 0, 2140, 2141, 5, 2, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2138, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2145, 5, 243, 0, 0, 2145, 2146, 5, 218, 0, 0, 2146, 2176, 5, 248, 0, 0, 2147, 2148, 5, 68, 0, 0, 2148, 2176, 5, 172, 0, 0, 2149, 2150, 5, 25, 0, 0, 2150, 2151, 5, 251, 0, 0, 2151, 2152, 3, 132, 66, 0, 2152, 2153, 5, 253, 0, 0, 2153, 2176, 1, 0, 0, 0, 2154, 2155, 5, 128, 0, 0, 2155, 2156, 5, 251, 0, 0, 2156, 2157, 3, 132, 66, 0, 2157, 2158, 5, 3, 0, 0, 2158, 2159, 3, 132, 66, 0, 2159, 2160, 5, 253, 0, 0, 2160, 2176, 1, 0, 0, 0, 2161, 2173, 3, 212, 106, 0, 2162, 2163, 5, 1, 0, 0, 2163, 2168, 3, 136, 68, 0, 2164, 2165, 5, 3, 0, 0, 2165, 2167, 3, 136, 68, 0, 2166, 2164, 1, 0, 0, 0, 2167, 2170, 1, 0, 0, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2171, 1, 0, 0, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2172, 5, 2, 0, 0, 2172, 2174, 1, 0, 0, 0, 2173, 2162, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2176, 1, 0, 0, 0, 2175, 2084, 1, 0, 0, 0, 2175, 2097, 1, 0, 0, 0, 2175, 2103, 1, 0, 0, 0, 2175, 2115, 1, 0, 0, 0, 2175, 2125, 1, 0, 0, 0, 2175, 2137, 1, 0, 0, 0, 2175, 2147, 1, 0, 0, 0, 2175, 2149, 1, 0, 0, 0, 2175, 2154, 1, 0, 0, 0, 2175, 2161, 1, 0, 0, 0, 2176, 2186, 1, 0, 0, 0, 2177, 2178, 10, 2, 0, 0, 2178, 2182, 5, 25, 0, 0, 2179, 2180, 5, 7, 0, 0, 2180, 2181, 5, 265, 0, 0, 2181, 2183, 5, 8, 0, 0, 2182, 2179, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2185, 1, 0, 0, 0, 2184, 2177, 1, 0, 0, 0, 2185, 2188, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 133, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2189, 2194, 3, 132, 66, 0, 2190, 2191, 3, 212, 106, 0, 2191, 2192, 3, 132, 66, 0, 2192, 2194, 1, 0, 0, 0, 2193, 2189, 1, 0, 0, 0, 2193, 2190, 1, 0, 0, 0, 2194, 135, 1, 0, 0, 0, 2195, 2198, 5, 265, 0, 0, 2196, 2198, 3, 132, 66, 0, 2197, 2195, 1, 0, 0, 0, 2197, 2196, 1, 0, 0, 0, 2198, 137, 1, 0, 0, 0, 2199, 2200, 5, 240, 0, 0, 2200, 2201, 3, 102, 51, 0, 2201, 2202, 5, 216, 0, 0, 2202, 2203, 3, 102, 51, 0, 2203, 139, 1, 0, 0, 0, 2204, 2205, 5, 82, 0, 0, 2205, 2206, 5, 1, 0, 0, 2206, 2207, 5, 241, 0, 0, 2207, 2208, 3, 104, 52, 0, 2208, 2209, 5, 2, 0, 0, 2209, 141, 1, 0, 0, 0, 2210, 2211, 5, 240, 0, 0, 2211, 2214, 5, 130, 0, 0, 2212, 2213, 5, 23, 0, 0, 2213, 2215, 3, 102, 51, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2217, 5, 216, 0, 0, 2217, 2218, 5, 232, 0, 0, 2218, 2219, 5, 203, 0, 0, 2219, 2220, 3, 212, 106, 0, 2220, 2221, 5, 249, 0, 0, 2221, 2229, 3, 102, 51, 0, 2222, 2223, 5, 3, 0, 0, 2223, 2224, 3, 212, 106, 0, 2224, 2225, 5, 249, 0, 0, 2225, 2226, 3, 102, 51, 0, 2226, 2228, 1, 0, 0, 0, 2227, 2222, 1, 0, 0, 0, 2228, 2231, 1, 0, 0, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2275, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2232, 2233, 5, 240, 0, 0, 2233, 2236, 5, 130, 0, 0, 2234, 2235, 5, 23, 0, 0, 2235, 2237, 3, 102, 51, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2239, 5, 216, 0, 0, 2239, 2275, 5, 62, 0, 0, 2240, 2241, 5, 240, 0, 0, 2241, 2242, 5, 147, 0, 0, 2242, 2245, 5, 130, 0, 0, 2243, 2244, 5, 23, 0, 0, 2244, 2246, 3, 102, 51, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 5, 216, 0, 0, 2248, 2260, 5, 108, 0, 0, 2249, 2250, 5, 1, 0, 0, 2250, 2255, 3, 212, 106, 0, 2251, 2252, 5, 3, 0, 0, 2252, 2254, 3, 212, 106, 0, 2253, 2251, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2258, 1, 0, 0, 0, 2257, 2255, 1, 0, 0, 0, 2258, 2259, 5, 2, 0, 0, 2259, 2261, 1, 0, 0, 0, 2260, 2249, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2263, 5, 237, 0, 0, 2263, 2264, 5, 1, 0, 0, 2264, 2269, 3, 102, 51, 0, 2265, 2266, 5, 3, 0, 0, 2266, 2268, 3, 102, 51, 0, 2267, 2265, 1, 0, 0, 0, 2268, 2271, 1, 0, 0, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2272, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2272, 2273, 5, 2, 0, 0, 2273, 2275, 1, 0, 0, 0, 2274, 2210, 1, 0, 0, 0, 2274, 2232, 1, 0, 0, 0, 2274, 2240, 1, 0, 0, 0, 2275, 143, 1, 0, 0, 0, 2276, 2282, 5, 162, 0, 0, 2277, 2283, 3, 212, 106, 0, 2278, 2279, 5, 1, 0, 0, 2279, 2280, 3, 60, 30, 0, 2280, 2281, 5, 2, 0, 0, 2281, 2283, 1, 0, 0, 0, 2282, 2277, 1, 0, 0, 0, 2282, 2278, 1, 0, 0, 0, 2283, 145, 1, 0, 0, 0, 2284, 2285, 5, 134, 0, 0, 2285, 2290, 3, 80, 40, 0, 2286, 2287, 5, 3, 0, 0, 2287, 2289, 3, 80, 40, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2292, 1, 0, 0, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2293, 2284, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2299, 3, 148, 74, 0, 2296, 2297, 5, 19, 0, 0, 2297, 2298, 5, 129, 0, 0, 2298, 2300, 3, 86, 43, 0, 2299, 2296, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2302, 1, 0, 0, 0, 2301, 2303, 7, 12, 0, 0, 2302, 2301, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2309, 1, 0, 0, 0, 2304, 2305, 5, 167, 0, 0, 2305, 2306, 5, 1, 0, 0, 2306, 2307, 3, 152, 76, 0, 2307, 2308, 5, 2, 0, 0, 2308, 2310, 1, 0, 0, 0, 2309, 2304, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2320, 1, 0, 0, 0, 2311, 2312, 5, 209, 0, 0, 2312, 2317, 3, 88, 44, 0, 2313, 2314, 5, 3, 0, 0, 2314, 2316, 3, 88, 44, 0, 2315, 2313, 1, 0, 0, 0, 2316, 2319, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2321, 1, 0, 0, 0, 2319, 2317, 1, 0, 0, 0, 2320, 2311, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2331, 1, 0, 0, 0, 2322, 2323, 5, 65, 0, 0, 2323, 2328, 3, 90, 45, 0, 2324, 2325, 5, 3, 0, 0, 2325, 2327, 3, 90, 45, 0, 2326, 2324, 1, 0, 0, 0, 2327, 2330, 1, 0, 0, 0, 2328, 2326, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2332, 1, 0, 0, 0, 2330, 2328, 1, 0, 0, 0, 2331, 2322, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 147, 1, 0, 0, 0, 2333, 2334, 5, 176, 0, 0, 2334, 2358, 3, 150, 75, 0, 2335, 2336, 5, 193, 0, 0, 2336, 2358, 3, 150, 75, 0, 2337, 2338, 5, 98, 0, 0, 2338, 2358, 3, 150, 75, 0, 2339, 2340, 5, 176, 0, 0, 2340, 2341, 5, 31, 0, 0, 2341, 2342, 3, 150, 75, 0, 2342, 2343, 5, 23, 0, 0, 2343, 2344, 3, 150, 75, 0, 2344, 2358, 1, 0, 0, 0, 2345, 2346, 5, 193, 0, 0, 2346, 2347, 5, 31, 0, 0, 2347, 2348, 3, 150, 75, 0, 2348, 2349, 5, 23, 0, 0, 2349, 2350, 3, 150, 75, 0, 2350, 2358, 1, 0, 0, 0, 2351, 2352, 5, 98, 0, 0, 2352, 2353, 5, 31, 0, 0, 2353, 2354, 3, 150, 75, 0, 2354, 2355, 5, 23, 0, 0, 2355, 2356, 3, 150, 75, 0, 2356, 2358, 1, 0, 0, 0, 2357, 2333, 1, 0, 0, 0, 2357, 2335, 1, 0, 0, 0, 2357, 2337, 1, 0, 0, 0, 2357, 2339, 1, 0, 0, 0, 2357, 2345, 1, 0, 0, 0, 2357, 2351, 1, 0, 0, 0, 2358, 149, 1, 0, 0, 0, 2359, 2360, 5, 227, 0, 0, 2360, 2369, 5, 171, 0, 0, 2361, 2362, 5, 227, 0, 0, 2362, 2369, 5, 85, 0, 0, 2363, 2364, 5, 47, 0, 0, 2364, 2369, 5, 192, 0, 0, 2365, 2366, 3, 102, 51, 0, 2366, 2367, 7, 21, 0, 0, 2367, 2369, 1, 0, 0, 0, 2368, 2359, 1, 0, 0, 0, 2368, 2361, 1, 0, 0, 0, 2368, 2363, 1, 0, 0, 0, 2368, 2365, 1, 0, 0, 0, 2369, 151, 1, 0, 0, 0, 2370, 2371, 6, 76, -1, 0, 2371, 2373, 3, 154, 77, 0, 2372, 2374, 3, 156, 78, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2382, 1, 0, 0, 0, 2375, 2376, 10, 2, 0, 0, 2376, 2381, 3, 152, 76, 3, 2377, 2378, 10, 1, 0, 0, 2378, 2379, 5, 9, 0, 0, 2379, 2381, 3, 152, 76, 2, 2380, 2375, 1, 0, 0, 0, 2380, 2377, 1, 0, 0, 0, 2381, 2384, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 153, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2385, 2411, 3, 212, 106, 0, 2386, 2387, 5, 1, 0, 0, 2387, 2411, 5, 2, 0, 0, 2388, 2389, 5, 169, 0, 0, 2389, 2390, 5, 1, 0, 0, 2390, 2395, 3, 152, 76, 0, 2391, 2392, 5, 3, 0, 0, 2392, 2394, 3, 152, 76, 0, 2393, 2391, 1, 0, 0, 0, 2394, 2397, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2398, 1, 0, 0, 0, 2397, 2395, 1, 0, 0, 0, 2398, 2399, 5, 2, 0, 0, 2399, 2411, 1, 0, 0, 0, 2400, 2401, 5, 1, 0, 0, 2401, 2402, 3, 152, 76, 0, 2402, 2403, 5, 2, 0, 0, 2403, 2411, 1, 0, 0, 0, 2404, 2411, 5, 10, 0, 0, 2405, 2411, 5, 11, 0, 0, 2406, 2407, 5, 12, 0, 0, 2407, 2408, 3, 152, 76, 0, 2408, 2409, 5, 13, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2385, 1, 0, 0, 0, 2410, 2386, 1, 0, 0, 0, 2410, 2388, 1, 0, 0, 0, 2410, 2400, 1, 0, 0, 0, 2410, 2404, 1, 0, 0, 0, 2410, 2405, 1, 0, 0, 0, 2410, 2406, 1, 0, 0, 0, 2411, 155, 1, 0, 0, 0, 2412, 2414, 5, 257, 0, 0, 2413, 2415, 5, 261, 0, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2443, 1, 0, 0, 0, 2416, 2418, 5, 255, 0, 0, 2417, 2419, 5, 261, 0, 0, 2418, 2417, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2443, 1, 0, 0, 0, 2420, 2422, 5, 261, 0, 0, 2421, 2423, 5, 261, 0, 0, 2422, 2421, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2443, 1, 0, 0, 0, 2424, 2425, 5, 14, 0, 0, 2425, 2426, 5, 265, 0, 0, 2426, 2428, 5, 15, 0, 0, 2427, 2429, 5, 261, 0, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2443, 1, 0, 0, 0, 2430, 2432, 5, 14, 0, 0, 2431, 2433, 5, 265, 0, 0, 2432, 2431, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2436, 5, 3, 0, 0, 2435, 2437, 5, 265, 0, 0, 2436, 2435, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2440, 5, 15, 0, 0, 2439, 2441, 5, 261, 0, 0, 2440, 2439, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2443, 1, 0, 0, 0, 2442, 2412, 1, 0, 0, 0, 2442, 2416, 1, 0, 0, 0, 2442, 2420, 1, 0, 0, 0, 2442, 2424, 1, 0, 0, 0, 2442, 2430, 1, 0, 0, 0, 2443, 157, 1, 0, 0, 0, 2444, 2445, 3, 212, 106, 0, 2445, 2446, 5, 249, 0, 0, 2446, 2447, 3, 102, 51, 0, 2447, 159, 1, 0, 0, 0, 2448, 2449, 5, 87, 0, 0, 2449, 2453, 7, 22, 0, 0, 2450, 2451, 5, 225, 0, 0, 2451, 2453, 7, 23, 0, 0, 2452, 2448, 1, 0, 0, 0, 2452, 2450, 1, 0, 0, 0, 2453, 161, 1, 0, 0, 0, 2454, 2455, 5, 115, 0, 0, 2455, 2456, 5, 121, 0, 0, 2456, 2460, 3, 164, 82, 0, 2457, 2458, 5, 177, 0, 0, 2458, 2460, 7, 24, 0, 0, 2459, 2454, 1, 0, 0, 0, 2459, 2457, 1, 0, 0, 0, 2460, 163, 1, 0, 0, 0, 2461, 2462, 5, 177, 0, 0, 2462, 2469, 5, 228, 0, 0, 2463, 2464, 5, 177, 0, 0, 2464, 2469, 5, 42, 0, 0, 2465, 2466, 5, 181, 0, 0, 2466, 2469, 5, 177, 0, 0, 2467, 2469, 5, 201, 0, 0, 2468, 2461, 1, 0, 0, 0, 2468, 2463, 1, 0, 0, 0, 2468, 2465, 1, 0, 0, 0, 2468, 2467, 1, 0, 0, 0, 2469, 165, 1, 0, 0, 0, 2470, 2476, 3, 102, 51, 0, 2471, 2472, 3, 212, 106, 0, 2472, 2473, 5, 16, 0, 0, 2473, 2474, 3, 102, 51, 0, 2474, 2476, 1, 0, 0, 0, 2475, 2470, 1, 0, 0, 0, 2475, 2471, 1, 0, 0, 0, 2476, 167, 1, 0, 0, 0, 2477, 2478, 3, 212, 106, 0, 2478, 2479, 5, 4, 0, 0, 2479, 2480, 3, 212, 106, 0, 2480, 2483, 1, 0, 0, 0, 2481, 2483, 3, 212, 106, 0, 2482, 2477, 1, 0, 0, 0, 2482, 2481, 1, 0, 0, 0, 2483, 169, 1, 0, 0, 0, 2484, 2489, 3, 168, 84, 0, 2485, 2486, 5, 3, 0, 0, 2486, 2488, 3, 168, 84, 0, 2487, 2485, 1, 0, 0, 0, 2488, 2491, 1, 0, 0, 0, 2489, 2487, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 171, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2492, 2493, 7, 25, 0, 0, 2493, 173, 1, 0, 0, 0, 2494, 2497, 3, 176, 88, 0, 2495, 2497, 3, 180, 90, 0, 2496, 2494, 1, 0, 0, 0, 2496, 2495, 1, 0, 0, 0, 2497, 175, 1, 0, 0, 0, 2498, 2499, 3, 184, 92, 0, 2499, 177, 1, 0, 0, 0, 2500, 2501, 3, 184, 92, 0, 2501, 179, 1, 0, 0, 0, 2502, 2503, 3, 186, 93, 0, 2503, 181, 1, 0, 0, 0, 2504, 2505, 3, 186, 93, 0, 2505, 183, 1, 0, 0, 0, 2506, 2518, 3, 212, 106, 0, 2507, 2508, 3, 212, 106, 0, 2508, 2509, 5, 4, 0, 0, 2509, 2510, 3, 212, 106, 0, 2510, 2518, 1, 0, 0, 0, 2511, 2512, 3, 212, 106, 0, 2512, 2513, 5, 4, 0, 0, 2513, 2514, 3, 212, 106, 0, 2514, 2515, 5, 4, 0, 0, 2515, 2516, 3, 212, 106, 0, 2516, 2518, 1, 0, 0, 0, 2517, 2506, 1, 0, 0, 0, 2517, 2507, 1, 0, 0, 0, 2517, 2511, 1, 0, 0, 0, 2518, 185, 1, 0, 0, 0, 2519, 2531, 3, 212, 106, 0, 2520, 2521, 3, 212, 106, 0, 2521, 2522, 5, 4, 0, 0, 2522, 2523, 3, 212, 106, 0, 2523, 2531, 1, 0, 0, 0, 2524, 2525, 3, 212, 106, 0, 2525, 2526, 5, 4, 0, 0, 2526, 2527, 3, 212, 106, 0, 2527, 2528, 5, 4, 0, 0, 2528, 2529, 3, 212, 106, 0, 2529, 2531, 1, 0, 0, 0, 2530, 2519, 1, 0, 0, 0, 2530, 2520, 1, 0, 0, 0, 2530, 2524, 1, 0, 0, 0, 2531, 187, 1, 0, 0, 0, 2532, 2533, 3, 192, 96, 0, 2533, 189, 1, 0, 0, 0, 2534, 2535, 3, 192, 96, 0, 2535, 191, 1, 0, 0, 0, 2536, 2542, 3, 212, 106, 0, 2537, 2538, 3, 212, 106, 0, 2538, 2539, 5, 4, 0, 0, 2539, 2540, 3, 212, 106, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2536, 1, 0, 0, 0, 2541, 2537, 1, 0, 0, 0, 2542, 193, 1, 0, 0, 0, 2543, 2544, 3, 212, 106, 0, 2544, 195, 1, 0, 0, 0, 2545, 2546, 3, 212, 106, 0, 2546, 197, 1, 0, 0, 0, 2547, 2548, 3, 204, 102, 0, 2548, 199, 1, 0, 0, 0, 2549, 2550, 3, 204, 102, 0, 2550, 201, 1, 0, 0, 0, 2551, 2552, 3, 212, 106, 0, 2552, 203, 1, 0, 0, 0, 2553, 2558, 3, 212, 106, 0, 2554, 2555, 5, 4, 0, 0, 2555, 2557, 3, 212, 106, 0, 2556, 2554, 1, 0, 0, 0, 2557, 2560, 1, 0, 0, 0, 2558, 2556, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 205, 1, 0, 0, 0, 2560, 2558, 1, 0, 0, 0, 2561, 2565, 3, 208, 104, 0, 2562, 2565, 5, 55, 0, 0, 2563, 2565, 5, 51, 0, 0, 2564, 2561, 1, 0, 0, 0, 2564, 2562, 1, 0, 0, 0, 2564, 2563, 1, 0, 0, 0, 2565, 207, 1, 0, 0, 0, 2566, 2572, 3, 212, 106, 0, 2567, 2568, 5, 234, 0, 0, 2568, 2572, 3, 212, 106, 0, 2569, 2570, 5, 188, 0, 0, 2570, 2572, 3, 212, 106, 0, 2571, 2566, 1, 0, 0, 0, 2571, 2567, 1, 0, 0, 0, 2571, 2569, 1, 0, 0, 0, 2572, 209, 1, 0, 0, 0, 2573, 2578, 3, 212, 106, 0, 2574, 2575, 5, 3, 0, 0, 2575, 2577, 3, 212, 106, 0, 2576, 2574, 1, 0, 0, 0, 2577, 2580, 1, 0, 0, 0, 2578, 2576, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 211, 1, 0, 0, 0, 2580, 2578, 1, 0, 0, 0, 2581, 2587, 5, 268, 0, 0, 2582, 2587, 5, 270, 0, 0, 2583, 2587, 3, 216, 108, 0, 2584, 2587, 5, 271, 0, 0, 2585, 2587, 5, 269, 0, 0, 2586, 2581, 1, 0, 0, 0, 2586, 2582, 1, 0, 0, 0, 2586, 2583, 1, 0, 0, 0, 2586, 2584, 1, 0, 0, 0, 2586, 2585, 1, 0, 0, 0, 2587, 213, 1, 0, 0, 0, 2588, 2590, 5, 256, 0, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2601, 5, 266, 0, 0, 2592, 2594, 5, 256, 0, 0, 2593, 2592, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2601, 5, 267, 0, 0, 2596, 2598, 5, 256, 0, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 5, 265, 0, 0, 2600, 2589, 1, 0, 0, 0, 2600, 2593, 1, 0, 0, 0, 2600, 2597, 1, 0, 0, 0, 2601, 215, 1, 0, 0, 0, 2602, 2603, 7, 26, 0, 0, 2603, 217, 1, 0, 0, 0, 339, 221, 232, 236, 240, 244, 248, 252, 262, 267, 271, 277, 281, 302, 306, 310, 314, 322, 326, 329, 336, 345, 351, 355, 361, 368, 377, 386, 400, 409, 415, 422, 432, 439, 447, 455, 484, 487, 490, 494, 500, 505, 512, 517, 521, 529, 535, 539, 553, 561, 580, 605, 608, 618, 622, 635, 641, 646, 650, 656, 665, 671, 675, 682, 686, 694, 699, 703, 707, 710, 717, 725, 730, 734, 738, 741, 750, 757, 762, 766, 770, 773, 781, 784, 788, 791, 799, 804, 828, 834, 836, 842, 848, 850, 858, 860, 866, 872, 874, 889, 894, 901, 913, 915, 923, 925, 943, 946, 950, 954, 972, 975, 991, 1001, 1006, 1012, 1015, 1024, 1036, 1039, 1045, 1052, 1057, 1063, 1067, 1071, 1077, 1088, 1097, 1107, 1110, 1115, 1117, 1124, 1130, 1132, 1136, 1146, 1152, 1155, 1157, 1169, 1176, 1180, 1183, 1187, 1191, 1198, 1207, 1210, 1214, 1219, 1223, 1231, 1234, 1237, 1244, 1255, 1258, 1268, 1271, 1282, 1287, 1295, 1298, 1302, 1306, 1315, 1324, 1327, 1336, 1339, 1342, 1346, 1357, 1360, 1363, 1370, 1373, 1392, 1396, 1400, 1404, 1408, 1412, 1414, 1425, 1430, 1439, 1453, 1456, 1465, 1468, 1476, 1479, 1482, 1487, 1490, 1502, 1505, 1513, 1518, 1522, 1524, 1526, 1541, 1543, 1554, 1575, 1585, 1596, 1600, 1602, 1610, 1621, 1632, 1649, 1655, 1666, 1673, 1677, 1685, 1687, 1700, 1708, 1717, 1723, 1731, 1737, 1741, 1746, 1751, 1757, 1771, 1773, 1803, 1814, 1824, 1827, 1830, 1835, 1842, 1845, 1854, 1857, 1861, 1864, 1867, 1882, 1885, 1904, 1908, 1916, 1920, 1945, 1948, 1957, 1963, 1969, 1975, 1988, 1997, 2019, 2022, 2025, 2035, 2037, 2046, 2052, 2054, 2062, 2072, 2078, 2092, 2101, 2108, 2113, 2120, 2130, 2135, 2142, 2168, 2173, 2175, 2182, 2186, 2193, 2197, 2214, 2229, 2236, 2245, 2255, 2260, 2269, 2274, 2282, 2290, 2293, 2299, 2302, 2309, 2317, 2320, 2328, 2331, 2357, 2368, 2373, 2380, 2382, 2395, 2410, 2414, 2418, 2422, 2428, 2432, 2436, 2440, 2442, 2452, 2459, 2468, 2475, 2482, 2489, 2496, 2517, 2530, 2541, 2558, 2564, 2571, 2578, 2586, 2589, 2593, 2597, 2600] \ No newline at end of file +[4, 1, 277, 2607, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 1, 0, 5, 0, 220, 8, 0, 10, 0, 12, 0, 223, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 233, 8, 2, 1, 3, 1, 3, 3, 3, 237, 8, 3, 1, 4, 1, 4, 3, 4, 241, 8, 4, 1, 5, 1, 5, 3, 5, 245, 8, 5, 1, 6, 1, 6, 3, 6, 249, 8, 6, 1, 7, 1, 7, 3, 7, 253, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 263, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 268, 8, 8, 1, 8, 1, 8, 3, 8, 272, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 278, 8, 8, 1, 8, 1, 8, 3, 8, 282, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 303, 8, 8, 1, 8, 1, 8, 3, 8, 307, 8, 8, 1, 8, 1, 8, 3, 8, 311, 8, 8, 1, 8, 1, 8, 3, 8, 315, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 323, 8, 8, 1, 8, 1, 8, 3, 8, 327, 8, 8, 1, 8, 3, 8, 330, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 337, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 344, 8, 8, 10, 8, 12, 8, 347, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 352, 8, 8, 1, 8, 1, 8, 3, 8, 356, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 362, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 369, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 378, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 387, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 401, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 410, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 416, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 423, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 433, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 448, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 456, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 483, 8, 8, 10, 8, 12, 8, 486, 9, 8, 3, 8, 488, 8, 8, 1, 8, 3, 8, 491, 8, 8, 1, 8, 1, 8, 3, 8, 495, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 501, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 506, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 513, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 518, 8, 8, 1, 8, 1, 8, 3, 8, 522, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 530, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 536, 8, 8, 1, 8, 1, 8, 3, 8, 540, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 554, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 562, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 581, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 604, 8, 8, 10, 8, 12, 8, 607, 9, 8, 3, 8, 609, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 619, 8, 8, 1, 8, 1, 8, 3, 8, 623, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 634, 8, 8, 10, 8, 12, 8, 637, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 642, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 647, 8, 8, 1, 8, 1, 8, 3, 8, 651, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 657, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 664, 8, 8, 10, 8, 12, 8, 667, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 672, 8, 8, 1, 8, 1, 8, 3, 8, 676, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 683, 8, 8, 1, 8, 1, 8, 3, 8, 687, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 693, 8, 8, 10, 8, 12, 8, 696, 9, 8, 1, 8, 1, 8, 3, 8, 700, 8, 8, 1, 8, 1, 8, 3, 8, 704, 8, 8, 1, 8, 1, 8, 3, 8, 708, 8, 8, 1, 8, 3, 8, 711, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 718, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 724, 8, 8, 10, 8, 12, 8, 727, 9, 8, 1, 8, 1, 8, 3, 8, 731, 8, 8, 1, 8, 1, 8, 3, 8, 735, 8, 8, 1, 8, 1, 8, 3, 8, 739, 8, 8, 1, 8, 3, 8, 742, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 751, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 756, 8, 8, 10, 8, 12, 8, 759, 9, 8, 1, 8, 1, 8, 3, 8, 763, 8, 8, 1, 8, 1, 8, 3, 8, 767, 8, 8, 1, 8, 1, 8, 3, 8, 771, 8, 8, 1, 8, 3, 8, 774, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 782, 8, 8, 1, 8, 3, 8, 785, 8, 8, 1, 8, 1, 8, 3, 8, 789, 8, 8, 1, 8, 3, 8, 792, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 798, 8, 8, 10, 8, 12, 8, 801, 9, 8, 1, 8, 1, 8, 3, 8, 805, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 829, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 835, 8, 8, 3, 8, 837, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 843, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 849, 8, 8, 3, 8, 851, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 859, 8, 8, 3, 8, 861, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 867, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 873, 8, 8, 3, 8, 875, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 890, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 895, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 902, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 914, 8, 8, 3, 8, 916, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 924, 8, 8, 3, 8, 926, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 942, 8, 8, 10, 8, 12, 8, 945, 9, 8, 3, 8, 947, 8, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 8, 1, 8, 3, 8, 955, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 971, 8, 8, 10, 8, 12, 8, 974, 9, 8, 3, 8, 976, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 992, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1000, 8, 8, 10, 8, 12, 8, 1003, 9, 8, 1, 8, 1, 8, 3, 8, 1007, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1013, 8, 8, 1, 8, 3, 8, 1016, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1023, 8, 8, 11, 8, 12, 8, 1024, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1037, 8, 8, 1, 9, 3, 9, 1040, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 1046, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1051, 8, 10, 10, 10, 12, 10, 1054, 9, 10, 1, 11, 1, 11, 3, 11, 1058, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1064, 8, 12, 1, 12, 1, 12, 3, 12, 1068, 8, 12, 1, 12, 1, 12, 3, 12, 1072, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1078, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 5, 15, 1087, 8, 15, 10, 15, 12, 15, 1090, 9, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 1098, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 1106, 8, 18, 10, 18, 12, 18, 1109, 9, 18, 3, 18, 1111, 8, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1116, 8, 18, 3, 18, 1118, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1125, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1131, 8, 18, 3, 18, 1133, 8, 18, 1, 19, 1, 19, 3, 19, 1137, 8, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1147, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1153, 8, 21, 1, 21, 5, 21, 1156, 8, 21, 10, 21, 12, 21, 1159, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1168, 8, 22, 10, 22, 12, 22, 1171, 9, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1177, 8, 22, 1, 23, 1, 23, 3, 23, 1181, 8, 23, 1, 23, 3, 23, 1184, 8, 23, 1, 23, 1, 23, 3, 23, 1188, 8, 23, 1, 24, 1, 24, 3, 24, 1192, 8, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1197, 8, 24, 10, 24, 12, 24, 1200, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1206, 8, 24, 10, 24, 12, 24, 1209, 9, 24, 3, 24, 1211, 8, 24, 1, 24, 1, 24, 3, 24, 1215, 8, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1220, 8, 24, 1, 24, 1, 24, 3, 24, 1224, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1230, 8, 24, 10, 24, 12, 24, 1233, 9, 24, 3, 24, 1235, 8, 24, 1, 25, 3, 25, 1238, 8, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1243, 8, 25, 10, 25, 12, 25, 1246, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1254, 8, 26, 10, 26, 12, 26, 1257, 9, 26, 3, 26, 1259, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1267, 8, 26, 10, 26, 12, 26, 1270, 9, 26, 3, 26, 1272, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1281, 8, 26, 10, 26, 12, 26, 1284, 9, 26, 1, 26, 1, 26, 3, 26, 1288, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1294, 8, 27, 10, 27, 12, 27, 1297, 9, 27, 3, 27, 1299, 8, 27, 1, 27, 1, 27, 3, 27, 1303, 8, 27, 1, 28, 1, 28, 3, 28, 1307, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 3, 30, 1316, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1323, 8, 30, 10, 30, 12, 30, 1326, 9, 30, 3, 30, 1328, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1335, 8, 30, 10, 30, 12, 30, 1338, 9, 30, 3, 30, 1340, 8, 30, 1, 30, 3, 30, 1343, 8, 30, 1, 31, 1, 31, 3, 31, 1347, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 1358, 8, 33, 1, 33, 3, 33, 1361, 8, 33, 1, 33, 3, 33, 1364, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1371, 8, 33, 1, 33, 3, 33, 1374, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1393, 8, 34, 5, 34, 1395, 8, 34, 10, 34, 12, 34, 1398, 9, 34, 1, 35, 3, 35, 1401, 8, 35, 1, 35, 1, 35, 3, 35, 1405, 8, 35, 1, 35, 1, 35, 3, 35, 1409, 8, 35, 1, 35, 1, 35, 3, 35, 1413, 8, 35, 3, 35, 1415, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1424, 8, 36, 10, 36, 12, 36, 1427, 9, 36, 1, 36, 1, 36, 3, 36, 1431, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1440, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1452, 8, 39, 10, 39, 12, 39, 1455, 9, 39, 3, 39, 1457, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1464, 8, 39, 10, 39, 12, 39, 1467, 9, 39, 3, 39, 1469, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1475, 8, 39, 10, 39, 12, 39, 1478, 9, 39, 3, 39, 1480, 8, 39, 1, 39, 3, 39, 1483, 8, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1488, 8, 39, 1, 39, 3, 39, 1491, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1501, 8, 39, 10, 39, 12, 39, 1504, 9, 39, 3, 39, 1506, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1512, 8, 39, 10, 39, 12, 39, 1515, 9, 39, 1, 39, 1, 39, 3, 39, 1519, 8, 39, 1, 39, 1, 39, 3, 39, 1523, 8, 39, 3, 39, 1525, 8, 39, 3, 39, 1527, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1542, 8, 41, 3, 41, 1544, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1555, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1576, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1584, 8, 44, 10, 44, 12, 44, 1587, 9, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 1597, 8, 46, 1, 46, 1, 46, 3, 46, 1601, 8, 46, 3, 46, 1603, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1609, 8, 47, 10, 47, 12, 47, 1612, 9, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1620, 8, 48, 10, 48, 12, 48, 1623, 9, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1631, 8, 49, 10, 49, 12, 49, 1634, 9, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1648, 8, 50, 10, 50, 12, 50, 1651, 9, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1656, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1667, 8, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1674, 8, 52, 1, 52, 1, 52, 3, 52, 1678, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1686, 8, 52, 10, 52, 12, 52, 1689, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1701, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1709, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1716, 8, 53, 10, 53, 12, 53, 1719, 9, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1724, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1732, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1738, 8, 53, 1, 53, 1, 53, 3, 53, 1742, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1747, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1752, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1758, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1772, 8, 54, 10, 54, 12, 54, 1775, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 4, 55, 1802, 8, 55, 11, 55, 12, 55, 1803, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1813, 8, 55, 10, 55, 12, 55, 1816, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1825, 8, 55, 1, 55, 3, 55, 1828, 8, 55, 1, 55, 3, 55, 1831, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1836, 8, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1841, 8, 55, 10, 55, 12, 55, 1844, 9, 55, 3, 55, 1846, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1853, 8, 55, 10, 55, 12, 55, 1856, 9, 55, 3, 55, 1858, 8, 55, 1, 55, 1, 55, 3, 55, 1862, 8, 55, 1, 55, 3, 55, 1865, 8, 55, 1, 55, 3, 55, 1868, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1881, 8, 55, 10, 55, 12, 55, 1884, 9, 55, 3, 55, 1886, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 4, 55, 1903, 8, 55, 11, 55, 12, 55, 1904, 1, 55, 1, 55, 3, 55, 1909, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 4, 55, 1915, 8, 55, 11, 55, 12, 55, 1916, 1, 55, 1, 55, 3, 55, 1921, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1944, 8, 55, 10, 55, 12, 55, 1947, 9, 55, 3, 55, 1949, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1958, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1964, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1970, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1976, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1989, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1998, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2018, 8, 55, 10, 55, 12, 55, 2021, 9, 55, 3, 55, 2023, 8, 55, 1, 55, 3, 55, 2026, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2036, 8, 55, 10, 55, 12, 55, 2039, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2047, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2053, 8, 58, 3, 58, 2055, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2063, 8, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 63, 1, 63, 3, 63, 2073, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2079, 8, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2091, 8, 66, 10, 66, 12, 66, 2094, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2102, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2109, 8, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2114, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2121, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2131, 8, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2136, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2143, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2167, 8, 66, 10, 66, 12, 66, 2170, 9, 66, 1, 66, 1, 66, 3, 66, 2174, 8, 66, 3, 66, 2176, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2183, 8, 66, 5, 66, 2185, 8, 66, 10, 66, 12, 66, 2188, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2194, 8, 67, 1, 68, 1, 68, 3, 68, 2198, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2215, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2228, 8, 71, 10, 71, 12, 71, 2231, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2237, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2246, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2254, 8, 71, 10, 71, 12, 71, 2257, 9, 71, 1, 71, 1, 71, 3, 71, 2261, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2268, 8, 71, 10, 71, 12, 71, 2271, 9, 71, 1, 71, 1, 71, 3, 71, 2275, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2283, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2289, 8, 73, 10, 73, 12, 73, 2292, 9, 73, 3, 73, 2294, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2300, 8, 73, 1, 73, 3, 73, 2303, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2310, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2316, 8, 73, 10, 73, 12, 73, 2319, 9, 73, 3, 73, 2321, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2327, 8, 73, 10, 73, 12, 73, 2330, 9, 73, 3, 73, 2332, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2358, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2369, 8, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2374, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2381, 8, 76, 10, 76, 12, 76, 2384, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2394, 8, 77, 10, 77, 12, 77, 2397, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2411, 8, 77, 1, 78, 1, 78, 3, 78, 2415, 8, 78, 1, 78, 1, 78, 3, 78, 2419, 8, 78, 1, 78, 1, 78, 3, 78, 2423, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2429, 8, 78, 1, 78, 1, 78, 3, 78, 2433, 8, 78, 1, 78, 1, 78, 3, 78, 2437, 8, 78, 1, 78, 1, 78, 3, 78, 2441, 8, 78, 3, 78, 2443, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2453, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2460, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2469, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2476, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2483, 8, 84, 1, 85, 1, 85, 1, 85, 5, 85, 2488, 8, 85, 10, 85, 12, 85, 2491, 9, 85, 1, 86, 1, 86, 1, 87, 1, 87, 3, 87, 2497, 8, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2518, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2531, 8, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2542, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 3, 100, 2552, 8, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 5, 102, 2559, 8, 102, 10, 102, 12, 102, 2562, 9, 102, 1, 103, 1, 103, 1, 103, 3, 103, 2567, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2574, 8, 104, 1, 105, 1, 105, 1, 105, 5, 105, 2579, 8, 105, 10, 105, 12, 105, 2582, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 2589, 8, 106, 1, 107, 3, 107, 2592, 8, 107, 1, 107, 1, 107, 3, 107, 2596, 8, 107, 1, 107, 1, 107, 3, 107, 2600, 8, 107, 1, 107, 3, 107, 2603, 8, 107, 1, 108, 1, 108, 1, 108, 0, 7, 42, 68, 104, 108, 110, 132, 152, 109, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 0, 27, 2, 0, 34, 34, 185, 185, 2, 0, 61, 61, 112, 112, 2, 0, 88, 88, 103, 103, 2, 0, 75, 75, 104, 104, 1, 0, 192, 193, 2, 0, 84, 84, 139, 139, 2, 0, 261, 261, 265, 265, 2, 0, 74, 74, 229, 229, 2, 0, 27, 27, 63, 63, 2, 0, 84, 84, 118, 118, 2, 0, 20, 20, 66, 66, 2, 0, 30, 30, 211, 211, 2, 0, 105, 105, 199, 199, 1, 0, 255, 256, 1, 0, 257, 259, 2, 0, 83, 83, 194, 194, 1, 0, 249, 254, 3, 0, 20, 20, 24, 24, 206, 206, 2, 0, 80, 80, 223, 223, 5, 0, 58, 58, 100, 100, 136, 137, 197, 197, 247, 247, 1, 0, 140, 143, 2, 0, 85, 85, 171, 171, 3, 0, 95, 95, 117, 117, 215, 215, 4, 0, 67, 67, 113, 113, 127, 127, 236, 236, 2, 0, 155, 155, 246, 246, 4, 0, 62, 62, 108, 108, 200, 200, 232, 232, 49, 0, 17, 20, 22, 22, 24, 25, 27, 30, 33, 34, 37, 42, 47, 47, 56, 59, 61, 61, 63, 63, 65, 65, 67, 68, 71, 71, 75, 75, 78, 78, 81, 85, 87, 87, 90, 95, 98, 98, 100, 102, 104, 105, 107, 107, 110, 110, 112, 113, 115, 115, 117, 119, 121, 121, 123, 124, 127, 137, 139, 145, 149, 152, 154, 156, 159, 159, 161, 172, 174, 177, 179, 186, 188, 190, 192, 199, 201, 211, 213, 215, 217, 222, 224, 225, 227, 228, 230, 230, 232, 234, 236, 236, 238, 239, 242, 242, 244, 248, 3008, 0, 221, 1, 0, 0, 0, 2, 226, 1, 0, 0, 0, 4, 232, 1, 0, 0, 0, 6, 234, 1, 0, 0, 0, 8, 238, 1, 0, 0, 0, 10, 242, 1, 0, 0, 0, 12, 246, 1, 0, 0, 0, 14, 250, 1, 0, 0, 0, 16, 1036, 1, 0, 0, 0, 18, 1039, 1, 0, 0, 0, 20, 1043, 1, 0, 0, 0, 22, 1057, 1, 0, 0, 0, 24, 1059, 1, 0, 0, 0, 26, 1073, 1, 0, 0, 0, 28, 1079, 1, 0, 0, 0, 30, 1083, 1, 0, 0, 0, 32, 1091, 1, 0, 0, 0, 34, 1097, 1, 0, 0, 0, 36, 1099, 1, 0, 0, 0, 38, 1136, 1, 0, 0, 0, 40, 1138, 1, 0, 0, 0, 42, 1140, 1, 0, 0, 0, 44, 1176, 1, 0, 0, 0, 46, 1180, 1, 0, 0, 0, 48, 1189, 1, 0, 0, 0, 50, 1237, 1, 0, 0, 0, 52, 1287, 1, 0, 0, 0, 54, 1302, 1, 0, 0, 0, 56, 1306, 1, 0, 0, 0, 58, 1308, 1, 0, 0, 0, 60, 1315, 1, 0, 0, 0, 62, 1344, 1, 0, 0, 0, 64, 1353, 1, 0, 0, 0, 66, 1373, 1, 0, 0, 0, 68, 1375, 1, 0, 0, 0, 70, 1414, 1, 0, 0, 0, 72, 1430, 1, 0, 0, 0, 74, 1432, 1, 0, 0, 0, 76, 1441, 1, 0, 0, 0, 78, 1443, 1, 0, 0, 0, 80, 1528, 1, 0, 0, 0, 82, 1543, 1, 0, 0, 0, 84, 1554, 1, 0, 0, 0, 86, 1575, 1, 0, 0, 0, 88, 1577, 1, 0, 0, 0, 90, 1590, 1, 0, 0, 0, 92, 1594, 1, 0, 0, 0, 94, 1604, 1, 0, 0, 0, 96, 1615, 1, 0, 0, 0, 98, 1626, 1, 0, 0, 0, 100, 1666, 1, 0, 0, 0, 102, 1668, 1, 0, 0, 0, 104, 1677, 1, 0, 0, 0, 106, 1751, 1, 0, 0, 0, 108, 1757, 1, 0, 0, 0, 110, 2025, 1, 0, 0, 0, 112, 2040, 1, 0, 0, 0, 114, 2046, 1, 0, 0, 0, 116, 2054, 1, 0, 0, 0, 118, 2062, 1, 0, 0, 0, 120, 2064, 1, 0, 0, 0, 122, 2066, 1, 0, 0, 0, 124, 2068, 1, 0, 0, 0, 126, 2070, 1, 0, 0, 0, 128, 2080, 1, 0, 0, 0, 130, 2082, 1, 0, 0, 0, 132, 2175, 1, 0, 0, 0, 134, 2193, 1, 0, 0, 0, 136, 2197, 1, 0, 0, 0, 138, 2199, 1, 0, 0, 0, 140, 2204, 1, 0, 0, 0, 142, 2274, 1, 0, 0, 0, 144, 2276, 1, 0, 0, 0, 146, 2293, 1, 0, 0, 0, 148, 2357, 1, 0, 0, 0, 150, 2368, 1, 0, 0, 0, 152, 2370, 1, 0, 0, 0, 154, 2410, 1, 0, 0, 0, 156, 2442, 1, 0, 0, 0, 158, 2444, 1, 0, 0, 0, 160, 2452, 1, 0, 0, 0, 162, 2459, 1, 0, 0, 0, 164, 2468, 1, 0, 0, 0, 166, 2475, 1, 0, 0, 0, 168, 2482, 1, 0, 0, 0, 170, 2484, 1, 0, 0, 0, 172, 2492, 1, 0, 0, 0, 174, 2496, 1, 0, 0, 0, 176, 2498, 1, 0, 0, 0, 178, 2500, 1, 0, 0, 0, 180, 2502, 1, 0, 0, 0, 182, 2504, 1, 0, 0, 0, 184, 2517, 1, 0, 0, 0, 186, 2530, 1, 0, 0, 0, 188, 2532, 1, 0, 0, 0, 190, 2534, 1, 0, 0, 0, 192, 2541, 1, 0, 0, 0, 194, 2543, 1, 0, 0, 0, 196, 2545, 1, 0, 0, 0, 198, 2547, 1, 0, 0, 0, 200, 2551, 1, 0, 0, 0, 202, 2553, 1, 0, 0, 0, 204, 2555, 1, 0, 0, 0, 206, 2566, 1, 0, 0, 0, 208, 2573, 1, 0, 0, 0, 210, 2575, 1, 0, 0, 0, 212, 2588, 1, 0, 0, 0, 214, 2602, 1, 0, 0, 0, 216, 2604, 1, 0, 0, 0, 218, 220, 3, 2, 1, 0, 219, 218, 1, 0, 0, 0, 220, 223, 1, 0, 0, 0, 221, 219, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 224, 1, 0, 0, 0, 223, 221, 1, 0, 0, 0, 224, 225, 5, 0, 0, 1, 225, 1, 1, 0, 0, 0, 226, 227, 3, 6, 3, 0, 227, 3, 1, 0, 0, 0, 228, 233, 3, 8, 4, 0, 229, 233, 3, 10, 5, 0, 230, 233, 3, 12, 6, 0, 231, 233, 3, 14, 7, 0, 232, 228, 1, 0, 0, 0, 232, 229, 1, 0, 0, 0, 232, 230, 1, 0, 0, 0, 232, 231, 1, 0, 0, 0, 233, 5, 1, 0, 0, 0, 234, 236, 3, 16, 8, 0, 235, 237, 5, 272, 0, 0, 236, 235, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 7, 1, 0, 0, 0, 238, 240, 3, 102, 51, 0, 239, 241, 5, 272, 0, 0, 240, 239, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 9, 1, 0, 0, 0, 242, 244, 3, 170, 85, 0, 243, 245, 5, 272, 0, 0, 244, 243, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 11, 1, 0, 0, 0, 246, 248, 3, 132, 66, 0, 247, 249, 5, 272, 0, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 13, 1, 0, 0, 0, 250, 252, 3, 152, 76, 0, 251, 253, 5, 272, 0, 0, 252, 251, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 15, 1, 0, 0, 0, 254, 1037, 3, 18, 9, 0, 255, 256, 5, 233, 0, 0, 256, 1037, 3, 188, 94, 0, 257, 258, 5, 44, 0, 0, 258, 262, 5, 195, 0, 0, 259, 260, 5, 101, 0, 0, 260, 261, 5, 147, 0, 0, 261, 263, 5, 77, 0, 0, 262, 259, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 267, 3, 190, 95, 0, 265, 266, 5, 29, 0, 0, 266, 268, 3, 208, 104, 0, 267, 265, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 270, 5, 243, 0, 0, 270, 272, 3, 28, 14, 0, 271, 269, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 1037, 1, 0, 0, 0, 273, 274, 5, 69, 0, 0, 274, 277, 5, 195, 0, 0, 275, 276, 5, 101, 0, 0, 276, 278, 5, 77, 0, 0, 277, 275, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 281, 3, 188, 94, 0, 280, 282, 7, 0, 0, 0, 281, 280, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 1037, 1, 0, 0, 0, 283, 284, 5, 21, 0, 0, 284, 285, 5, 195, 0, 0, 285, 286, 3, 188, 94, 0, 286, 287, 5, 180, 0, 0, 287, 288, 5, 220, 0, 0, 288, 289, 3, 190, 95, 0, 289, 1037, 1, 0, 0, 0, 290, 291, 5, 21, 0, 0, 291, 292, 5, 195, 0, 0, 292, 293, 3, 188, 94, 0, 293, 294, 5, 203, 0, 0, 294, 295, 5, 29, 0, 0, 295, 296, 3, 208, 104, 0, 296, 1037, 1, 0, 0, 0, 297, 298, 5, 44, 0, 0, 298, 302, 5, 212, 0, 0, 299, 300, 5, 101, 0, 0, 300, 301, 5, 147, 0, 0, 301, 303, 5, 77, 0, 0, 302, 299, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 306, 3, 178, 89, 0, 305, 307, 3, 94, 47, 0, 306, 305, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 310, 1, 0, 0, 0, 308, 309, 5, 40, 0, 0, 309, 311, 3, 116, 58, 0, 310, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 314, 1, 0, 0, 0, 312, 313, 5, 243, 0, 0, 313, 315, 3, 28, 14, 0, 314, 312, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 322, 5, 26, 0, 0, 317, 323, 3, 18, 9, 0, 318, 319, 5, 1, 0, 0, 319, 320, 3, 18, 9, 0, 320, 321, 5, 2, 0, 0, 321, 323, 1, 0, 0, 0, 322, 317, 1, 0, 0, 0, 322, 318, 1, 0, 0, 0, 323, 329, 1, 0, 0, 0, 324, 326, 5, 243, 0, 0, 325, 327, 5, 144, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 330, 5, 56, 0, 0, 329, 324, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 1037, 1, 0, 0, 0, 331, 332, 5, 44, 0, 0, 332, 336, 5, 212, 0, 0, 333, 334, 5, 101, 0, 0, 334, 335, 5, 147, 0, 0, 335, 337, 5, 77, 0, 0, 336, 333, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 339, 3, 178, 89, 0, 339, 340, 5, 1, 0, 0, 340, 345, 3, 22, 11, 0, 341, 342, 5, 3, 0, 0, 342, 344, 3, 22, 11, 0, 343, 341, 1, 0, 0, 0, 344, 347, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 348, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 348, 351, 5, 2, 0, 0, 349, 350, 5, 40, 0, 0, 350, 352, 3, 116, 58, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 355, 1, 0, 0, 0, 353, 354, 5, 243, 0, 0, 354, 356, 3, 28, 14, 0, 355, 353, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 1037, 1, 0, 0, 0, 357, 358, 5, 69, 0, 0, 358, 361, 5, 212, 0, 0, 359, 360, 5, 101, 0, 0, 360, 362, 5, 77, 0, 0, 361, 359, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 1037, 3, 176, 88, 0, 364, 365, 5, 108, 0, 0, 365, 366, 5, 111, 0, 0, 366, 368, 3, 176, 88, 0, 367, 369, 3, 96, 48, 0, 368, 367, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 3, 18, 9, 0, 371, 1037, 1, 0, 0, 0, 372, 373, 5, 62, 0, 0, 373, 374, 5, 88, 0, 0, 374, 377, 3, 176, 88, 0, 375, 376, 5, 241, 0, 0, 376, 378, 3, 104, 52, 0, 377, 375, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 1037, 1, 0, 0, 0, 379, 380, 5, 222, 0, 0, 380, 381, 5, 212, 0, 0, 381, 1037, 3, 176, 88, 0, 382, 383, 5, 21, 0, 0, 383, 386, 5, 212, 0, 0, 384, 385, 5, 101, 0, 0, 385, 387, 5, 77, 0, 0, 386, 384, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 3, 176, 88, 0, 389, 390, 5, 180, 0, 0, 390, 391, 5, 220, 0, 0, 391, 392, 3, 178, 89, 0, 392, 1037, 1, 0, 0, 0, 393, 394, 5, 40, 0, 0, 394, 395, 5, 153, 0, 0, 395, 396, 5, 212, 0, 0, 396, 397, 3, 176, 88, 0, 397, 400, 5, 114, 0, 0, 398, 401, 3, 116, 58, 0, 399, 401, 5, 148, 0, 0, 400, 398, 1, 0, 0, 0, 400, 399, 1, 0, 0, 0, 401, 1037, 1, 0, 0, 0, 402, 403, 5, 40, 0, 0, 403, 404, 5, 153, 0, 0, 404, 405, 5, 38, 0, 0, 405, 406, 3, 200, 100, 0, 406, 409, 5, 114, 0, 0, 407, 410, 3, 116, 58, 0, 408, 410, 5, 148, 0, 0, 409, 407, 1, 0, 0, 0, 409, 408, 1, 0, 0, 0, 410, 1037, 1, 0, 0, 0, 411, 412, 5, 21, 0, 0, 412, 415, 5, 212, 0, 0, 413, 414, 5, 101, 0, 0, 414, 416, 5, 77, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 418, 3, 176, 88, 0, 418, 419, 5, 180, 0, 0, 419, 422, 5, 38, 0, 0, 420, 421, 5, 101, 0, 0, 421, 423, 5, 77, 0, 0, 422, 420, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 425, 3, 200, 100, 0, 425, 426, 5, 220, 0, 0, 426, 427, 3, 202, 101, 0, 427, 1037, 1, 0, 0, 0, 428, 429, 5, 21, 0, 0, 429, 432, 5, 212, 0, 0, 430, 431, 5, 101, 0, 0, 431, 433, 5, 77, 0, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 3, 176, 88, 0, 435, 436, 5, 69, 0, 0, 436, 439, 5, 38, 0, 0, 437, 438, 5, 101, 0, 0, 438, 440, 5, 77, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 3, 200, 100, 0, 442, 1037, 1, 0, 0, 0, 443, 444, 5, 21, 0, 0, 444, 447, 5, 212, 0, 0, 445, 446, 5, 101, 0, 0, 446, 448, 5, 77, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 3, 176, 88, 0, 450, 451, 5, 17, 0, 0, 451, 455, 5, 38, 0, 0, 452, 453, 5, 101, 0, 0, 453, 454, 5, 147, 0, 0, 454, 456, 5, 77, 0, 0, 455, 452, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 458, 3, 24, 12, 0, 458, 1037, 1, 0, 0, 0, 459, 460, 5, 21, 0, 0, 460, 461, 5, 212, 0, 0, 461, 462, 3, 176, 88, 0, 462, 463, 5, 203, 0, 0, 463, 464, 5, 29, 0, 0, 464, 465, 3, 208, 104, 0, 465, 1037, 1, 0, 0, 0, 466, 467, 5, 21, 0, 0, 467, 468, 5, 212, 0, 0, 468, 469, 3, 176, 88, 0, 469, 470, 5, 203, 0, 0, 470, 471, 5, 175, 0, 0, 471, 472, 3, 30, 15, 0, 472, 1037, 1, 0, 0, 0, 473, 474, 5, 21, 0, 0, 474, 475, 5, 212, 0, 0, 475, 476, 3, 176, 88, 0, 476, 477, 5, 76, 0, 0, 477, 490, 3, 212, 106, 0, 478, 487, 5, 1, 0, 0, 479, 484, 3, 166, 83, 0, 480, 481, 5, 3, 0, 0, 481, 483, 3, 166, 83, 0, 482, 480, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 488, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 479, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 491, 5, 2, 0, 0, 490, 478, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 494, 1, 0, 0, 0, 492, 493, 5, 241, 0, 0, 493, 495, 3, 104, 52, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 1037, 1, 0, 0, 0, 496, 497, 5, 22, 0, 0, 497, 500, 3, 176, 88, 0, 498, 499, 5, 243, 0, 0, 499, 501, 3, 28, 14, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 1037, 1, 0, 0, 0, 502, 505, 5, 44, 0, 0, 503, 504, 5, 157, 0, 0, 504, 506, 5, 182, 0, 0, 505, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 508, 5, 133, 0, 0, 508, 512, 5, 239, 0, 0, 509, 510, 5, 101, 0, 0, 510, 511, 5, 147, 0, 0, 511, 513, 5, 77, 0, 0, 512, 509, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 517, 3, 182, 91, 0, 515, 516, 5, 40, 0, 0, 516, 518, 3, 116, 58, 0, 517, 515, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 521, 1, 0, 0, 0, 519, 520, 5, 243, 0, 0, 520, 522, 3, 28, 14, 0, 521, 519, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 26, 0, 0, 524, 525, 3, 18, 9, 0, 525, 1037, 1, 0, 0, 0, 526, 529, 5, 44, 0, 0, 527, 528, 5, 157, 0, 0, 528, 530, 5, 182, 0, 0, 529, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 239, 0, 0, 532, 535, 3, 182, 91, 0, 533, 534, 5, 40, 0, 0, 534, 536, 3, 116, 58, 0, 535, 533, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 539, 1, 0, 0, 0, 537, 538, 5, 198, 0, 0, 538, 540, 7, 1, 0, 0, 539, 537, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 5, 26, 0, 0, 542, 543, 3, 18, 9, 0, 543, 1037, 1, 0, 0, 0, 544, 545, 5, 179, 0, 0, 545, 546, 5, 133, 0, 0, 546, 547, 5, 239, 0, 0, 547, 1037, 3, 180, 90, 0, 548, 549, 5, 69, 0, 0, 549, 550, 5, 133, 0, 0, 550, 553, 5, 239, 0, 0, 551, 552, 5, 101, 0, 0, 552, 554, 5, 77, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 1037, 3, 180, 90, 0, 556, 557, 5, 21, 0, 0, 557, 558, 5, 133, 0, 0, 558, 561, 5, 239, 0, 0, 559, 560, 5, 101, 0, 0, 560, 562, 5, 77, 0, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 3, 180, 90, 0, 564, 565, 5, 180, 0, 0, 565, 566, 5, 220, 0, 0, 566, 567, 3, 182, 91, 0, 567, 1037, 1, 0, 0, 0, 568, 569, 5, 21, 0, 0, 569, 570, 5, 133, 0, 0, 570, 571, 5, 239, 0, 0, 571, 572, 3, 180, 90, 0, 572, 573, 5, 203, 0, 0, 573, 574, 5, 175, 0, 0, 574, 575, 3, 30, 15, 0, 575, 1037, 1, 0, 0, 0, 576, 577, 5, 69, 0, 0, 577, 580, 5, 239, 0, 0, 578, 579, 5, 101, 0, 0, 579, 581, 5, 77, 0, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 1037, 3, 180, 90, 0, 583, 584, 5, 21, 0, 0, 584, 585, 5, 239, 0, 0, 585, 586, 3, 180, 90, 0, 586, 587, 5, 180, 0, 0, 587, 588, 5, 220, 0, 0, 588, 589, 3, 182, 91, 0, 589, 1037, 1, 0, 0, 0, 590, 591, 5, 21, 0, 0, 591, 592, 5, 239, 0, 0, 592, 593, 3, 180, 90, 0, 593, 594, 5, 203, 0, 0, 594, 595, 5, 29, 0, 0, 595, 596, 3, 208, 104, 0, 596, 1037, 1, 0, 0, 0, 597, 598, 5, 33, 0, 0, 598, 599, 3, 198, 99, 0, 599, 608, 5, 1, 0, 0, 600, 605, 3, 166, 83, 0, 601, 602, 5, 3, 0, 0, 602, 604, 3, 166, 83, 0, 603, 601, 1, 0, 0, 0, 604, 607, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 609, 1, 0, 0, 0, 607, 605, 1, 0, 0, 0, 608, 600, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 2, 0, 0, 611, 1037, 1, 0, 0, 0, 612, 613, 5, 44, 0, 0, 613, 614, 5, 188, 0, 0, 614, 618, 3, 212, 106, 0, 615, 616, 5, 243, 0, 0, 616, 617, 5, 18, 0, 0, 617, 619, 3, 206, 103, 0, 618, 615, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 622, 1, 0, 0, 0, 620, 621, 5, 103, 0, 0, 621, 623, 3, 194, 97, 0, 622, 620, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 1037, 1, 0, 0, 0, 624, 625, 5, 69, 0, 0, 625, 626, 5, 188, 0, 0, 626, 1037, 3, 212, 106, 0, 627, 628, 5, 91, 0, 0, 628, 629, 3, 210, 105, 0, 629, 630, 5, 220, 0, 0, 630, 635, 3, 208, 104, 0, 631, 632, 5, 3, 0, 0, 632, 634, 3, 208, 104, 0, 633, 631, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 641, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 639, 5, 243, 0, 0, 639, 640, 5, 18, 0, 0, 640, 642, 5, 156, 0, 0, 641, 638, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 646, 1, 0, 0, 0, 643, 644, 5, 92, 0, 0, 644, 645, 5, 32, 0, 0, 645, 647, 3, 206, 103, 0, 646, 643, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 650, 1, 0, 0, 0, 648, 649, 5, 103, 0, 0, 649, 651, 3, 194, 97, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 1037, 1, 0, 0, 0, 652, 656, 5, 186, 0, 0, 653, 654, 5, 18, 0, 0, 654, 655, 5, 156, 0, 0, 655, 657, 5, 86, 0, 0, 656, 653, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 3, 210, 105, 0, 659, 660, 5, 88, 0, 0, 660, 665, 3, 208, 104, 0, 661, 662, 5, 3, 0, 0, 662, 664, 3, 208, 104, 0, 663, 661, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 671, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 668, 669, 5, 92, 0, 0, 669, 670, 5, 32, 0, 0, 670, 672, 3, 206, 103, 0, 671, 668, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 674, 5, 103, 0, 0, 674, 676, 3, 194, 97, 0, 675, 673, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 1037, 1, 0, 0, 0, 677, 678, 5, 203, 0, 0, 678, 682, 5, 188, 0, 0, 679, 683, 5, 20, 0, 0, 680, 683, 5, 145, 0, 0, 681, 683, 3, 212, 106, 0, 682, 679, 1, 0, 0, 0, 682, 680, 1, 0, 0, 0, 682, 681, 1, 0, 0, 0, 683, 686, 1, 0, 0, 0, 684, 685, 5, 103, 0, 0, 685, 687, 3, 194, 97, 0, 686, 684, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 1037, 1, 0, 0, 0, 688, 699, 5, 91, 0, 0, 689, 694, 3, 172, 86, 0, 690, 691, 5, 3, 0, 0, 691, 693, 3, 172, 86, 0, 692, 690, 1, 0, 0, 0, 693, 696, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 700, 1, 0, 0, 0, 696, 694, 1, 0, 0, 0, 697, 698, 5, 20, 0, 0, 698, 700, 5, 174, 0, 0, 699, 689, 1, 0, 0, 0, 699, 697, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 710, 5, 153, 0, 0, 702, 704, 5, 195, 0, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 711, 3, 188, 94, 0, 706, 708, 5, 212, 0, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 711, 3, 176, 88, 0, 710, 703, 1, 0, 0, 0, 710, 707, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 5, 220, 0, 0, 713, 717, 3, 208, 104, 0, 714, 715, 5, 243, 0, 0, 715, 716, 5, 91, 0, 0, 716, 718, 5, 156, 0, 0, 717, 714, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 1037, 1, 0, 0, 0, 719, 730, 5, 94, 0, 0, 720, 725, 3, 172, 86, 0, 721, 722, 5, 3, 0, 0, 722, 724, 3, 172, 86, 0, 723, 721, 1, 0, 0, 0, 724, 727, 1, 0, 0, 0, 725, 723, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 731, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 728, 729, 5, 20, 0, 0, 729, 731, 5, 174, 0, 0, 730, 720, 1, 0, 0, 0, 730, 728, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 741, 5, 153, 0, 0, 733, 735, 5, 195, 0, 0, 734, 733, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 742, 3, 188, 94, 0, 737, 739, 5, 212, 0, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 742, 3, 176, 88, 0, 741, 734, 1, 0, 0, 0, 741, 738, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 5, 220, 0, 0, 744, 745, 3, 208, 104, 0, 745, 1037, 1, 0, 0, 0, 746, 750, 5, 186, 0, 0, 747, 748, 5, 91, 0, 0, 748, 749, 5, 156, 0, 0, 749, 751, 5, 86, 0, 0, 750, 747, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 762, 1, 0, 0, 0, 752, 757, 3, 172, 86, 0, 753, 754, 5, 3, 0, 0, 754, 756, 3, 172, 86, 0, 755, 753, 1, 0, 0, 0, 756, 759, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 763, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 760, 761, 5, 20, 0, 0, 761, 763, 5, 174, 0, 0, 762, 752, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 773, 5, 153, 0, 0, 765, 767, 5, 195, 0, 0, 766, 765, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 774, 3, 188, 94, 0, 769, 771, 5, 212, 0, 0, 770, 769, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 774, 3, 176, 88, 0, 773, 766, 1, 0, 0, 0, 773, 770, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 5, 88, 0, 0, 776, 1037, 3, 208, 104, 0, 777, 778, 5, 205, 0, 0, 778, 784, 5, 93, 0, 0, 779, 781, 5, 153, 0, 0, 780, 782, 5, 212, 0, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 785, 3, 176, 88, 0, 784, 779, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 1037, 1, 0, 0, 0, 786, 788, 5, 78, 0, 0, 787, 789, 5, 22, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 791, 1, 0, 0, 0, 790, 792, 5, 238, 0, 0, 791, 790, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 804, 1, 0, 0, 0, 793, 794, 5, 1, 0, 0, 794, 799, 3, 160, 80, 0, 795, 796, 5, 3, 0, 0, 796, 798, 3, 160, 80, 0, 797, 795, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 802, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 803, 5, 2, 0, 0, 803, 805, 1, 0, 0, 0, 804, 793, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 1037, 3, 16, 8, 0, 807, 808, 5, 205, 0, 0, 808, 809, 5, 44, 0, 0, 809, 810, 5, 212, 0, 0, 810, 1037, 3, 176, 88, 0, 811, 812, 5, 205, 0, 0, 812, 813, 5, 44, 0, 0, 813, 814, 5, 195, 0, 0, 814, 1037, 3, 188, 94, 0, 815, 816, 5, 205, 0, 0, 816, 817, 5, 44, 0, 0, 817, 818, 5, 239, 0, 0, 818, 1037, 3, 180, 90, 0, 819, 820, 5, 205, 0, 0, 820, 821, 5, 44, 0, 0, 821, 822, 5, 133, 0, 0, 822, 823, 5, 239, 0, 0, 823, 1037, 3, 180, 90, 0, 824, 825, 5, 205, 0, 0, 825, 828, 5, 213, 0, 0, 826, 827, 7, 2, 0, 0, 827, 829, 3, 188, 94, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 836, 1, 0, 0, 0, 830, 831, 5, 122, 0, 0, 831, 834, 3, 116, 58, 0, 832, 833, 5, 73, 0, 0, 833, 835, 3, 116, 58, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 837, 1, 0, 0, 0, 836, 830, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 1037, 1, 0, 0, 0, 838, 839, 5, 205, 0, 0, 839, 842, 5, 196, 0, 0, 840, 841, 7, 2, 0, 0, 841, 843, 3, 194, 97, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 850, 1, 0, 0, 0, 844, 845, 5, 122, 0, 0, 845, 848, 3, 116, 58, 0, 846, 847, 5, 73, 0, 0, 847, 849, 3, 116, 58, 0, 848, 846, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 851, 1, 0, 0, 0, 850, 844, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 1037, 1, 0, 0, 0, 852, 853, 5, 205, 0, 0, 853, 860, 5, 37, 0, 0, 854, 855, 5, 122, 0, 0, 855, 858, 3, 116, 58, 0, 856, 857, 5, 73, 0, 0, 857, 859, 3, 116, 58, 0, 858, 856, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 854, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 1037, 1, 0, 0, 0, 862, 863, 5, 205, 0, 0, 863, 864, 5, 39, 0, 0, 864, 866, 7, 2, 0, 0, 865, 867, 3, 174, 87, 0, 866, 865, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 874, 1, 0, 0, 0, 868, 869, 5, 122, 0, 0, 869, 872, 3, 116, 58, 0, 870, 871, 5, 73, 0, 0, 871, 873, 3, 116, 58, 0, 872, 870, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 875, 1, 0, 0, 0, 874, 868, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 1037, 1, 0, 0, 0, 876, 877, 5, 205, 0, 0, 877, 878, 5, 208, 0, 0, 878, 879, 5, 86, 0, 0, 879, 1037, 3, 176, 88, 0, 880, 881, 5, 205, 0, 0, 881, 882, 5, 208, 0, 0, 882, 883, 5, 86, 0, 0, 883, 884, 5, 1, 0, 0, 884, 885, 3, 18, 9, 0, 885, 886, 5, 2, 0, 0, 886, 1037, 1, 0, 0, 0, 887, 889, 5, 205, 0, 0, 888, 890, 5, 47, 0, 0, 889, 888, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 894, 5, 189, 0, 0, 892, 893, 7, 2, 0, 0, 893, 895, 3, 212, 106, 0, 894, 892, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 1037, 1, 0, 0, 0, 896, 897, 5, 205, 0, 0, 897, 898, 5, 188, 0, 0, 898, 901, 5, 93, 0, 0, 899, 900, 7, 2, 0, 0, 900, 902, 3, 212, 106, 0, 901, 899, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 1037, 1, 0, 0, 0, 903, 904, 5, 64, 0, 0, 904, 1037, 3, 174, 87, 0, 905, 906, 5, 63, 0, 0, 906, 1037, 3, 174, 87, 0, 907, 908, 5, 205, 0, 0, 908, 915, 5, 90, 0, 0, 909, 910, 5, 122, 0, 0, 910, 913, 3, 116, 58, 0, 911, 912, 5, 73, 0, 0, 912, 914, 3, 116, 58, 0, 913, 911, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 916, 1, 0, 0, 0, 915, 909, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 1037, 1, 0, 0, 0, 917, 918, 5, 205, 0, 0, 918, 925, 5, 202, 0, 0, 919, 920, 5, 122, 0, 0, 920, 923, 3, 116, 58, 0, 921, 922, 5, 73, 0, 0, 922, 924, 3, 116, 58, 0, 923, 921, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 926, 1, 0, 0, 0, 925, 919, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 1037, 1, 0, 0, 0, 927, 928, 5, 203, 0, 0, 928, 929, 5, 202, 0, 0, 929, 930, 3, 204, 102, 0, 930, 931, 5, 249, 0, 0, 931, 932, 3, 102, 51, 0, 932, 1037, 1, 0, 0, 0, 933, 934, 5, 183, 0, 0, 934, 935, 5, 202, 0, 0, 935, 1037, 3, 204, 102, 0, 936, 937, 5, 207, 0, 0, 937, 946, 5, 221, 0, 0, 938, 943, 3, 162, 81, 0, 939, 940, 5, 3, 0, 0, 940, 942, 3, 162, 81, 0, 941, 939, 1, 0, 0, 0, 942, 945, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 947, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 946, 938, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1037, 1, 0, 0, 0, 948, 950, 5, 41, 0, 0, 949, 951, 5, 245, 0, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 1037, 1, 0, 0, 0, 952, 954, 5, 190, 0, 0, 953, 955, 5, 245, 0, 0, 954, 953, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 1037, 1, 0, 0, 0, 956, 957, 5, 173, 0, 0, 957, 958, 3, 212, 106, 0, 958, 959, 5, 88, 0, 0, 959, 960, 3, 16, 8, 0, 960, 1037, 1, 0, 0, 0, 961, 962, 5, 60, 0, 0, 962, 963, 5, 173, 0, 0, 963, 1037, 3, 212, 106, 0, 964, 965, 5, 76, 0, 0, 965, 975, 3, 212, 106, 0, 966, 967, 5, 235, 0, 0, 967, 972, 3, 102, 51, 0, 968, 969, 5, 3, 0, 0, 969, 971, 3, 102, 51, 0, 970, 968, 1, 0, 0, 0, 971, 974, 1, 0, 0, 0, 972, 970, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 976, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 975, 966, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 1037, 1, 0, 0, 0, 977, 978, 5, 64, 0, 0, 978, 979, 5, 107, 0, 0, 979, 1037, 3, 212, 106, 0, 980, 981, 5, 64, 0, 0, 981, 982, 5, 161, 0, 0, 982, 1037, 3, 212, 106, 0, 983, 984, 5, 203, 0, 0, 984, 985, 5, 166, 0, 0, 985, 1037, 3, 170, 85, 0, 986, 987, 5, 203, 0, 0, 987, 988, 5, 218, 0, 0, 988, 991, 5, 248, 0, 0, 989, 992, 5, 124, 0, 0, 990, 992, 3, 102, 51, 0, 991, 989, 1, 0, 0, 0, 991, 990, 1, 0, 0, 0, 992, 1037, 1, 0, 0, 0, 993, 994, 5, 232, 0, 0, 994, 995, 3, 176, 88, 0, 995, 996, 5, 203, 0, 0, 996, 1001, 3, 158, 79, 0, 997, 998, 5, 3, 0, 0, 998, 1000, 3, 158, 79, 0, 999, 997, 1, 0, 0, 0, 1000, 1003, 1, 0, 0, 0, 1001, 999, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1006, 1, 0, 0, 0, 1003, 1001, 1, 0, 0, 0, 1004, 1005, 5, 241, 0, 0, 1005, 1007, 3, 104, 52, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1037, 1, 0, 0, 0, 1008, 1009, 5, 135, 0, 0, 1009, 1010, 5, 111, 0, 0, 1010, 1015, 3, 176, 88, 0, 1011, 1013, 5, 26, 0, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 3, 212, 106, 0, 1015, 1012, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 5, 235, 0, 0, 1018, 1019, 3, 68, 34, 0, 1019, 1020, 5, 153, 0, 0, 1020, 1022, 3, 102, 51, 0, 1021, 1023, 3, 142, 71, 0, 1022, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1022, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1037, 1, 0, 0, 0, 1026, 1027, 5, 205, 0, 0, 1027, 1028, 5, 40, 0, 0, 1028, 1029, 5, 153, 0, 0, 1029, 1030, 5, 212, 0, 0, 1030, 1037, 3, 176, 88, 0, 1031, 1032, 5, 205, 0, 0, 1032, 1033, 5, 40, 0, 0, 1033, 1034, 5, 153, 0, 0, 1034, 1035, 5, 38, 0, 0, 1035, 1037, 3, 200, 100, 0, 1036, 254, 1, 0, 0, 0, 1036, 255, 1, 0, 0, 0, 1036, 257, 1, 0, 0, 0, 1036, 273, 1, 0, 0, 0, 1036, 283, 1, 0, 0, 0, 1036, 290, 1, 0, 0, 0, 1036, 297, 1, 0, 0, 0, 1036, 331, 1, 0, 0, 0, 1036, 357, 1, 0, 0, 0, 1036, 364, 1, 0, 0, 0, 1036, 372, 1, 0, 0, 0, 1036, 379, 1, 0, 0, 0, 1036, 382, 1, 0, 0, 0, 1036, 393, 1, 0, 0, 0, 1036, 402, 1, 0, 0, 0, 1036, 411, 1, 0, 0, 0, 1036, 428, 1, 0, 0, 0, 1036, 443, 1, 0, 0, 0, 1036, 459, 1, 0, 0, 0, 1036, 466, 1, 0, 0, 0, 1036, 473, 1, 0, 0, 0, 1036, 496, 1, 0, 0, 0, 1036, 502, 1, 0, 0, 0, 1036, 526, 1, 0, 0, 0, 1036, 544, 1, 0, 0, 0, 1036, 548, 1, 0, 0, 0, 1036, 556, 1, 0, 0, 0, 1036, 568, 1, 0, 0, 0, 1036, 576, 1, 0, 0, 0, 1036, 583, 1, 0, 0, 0, 1036, 590, 1, 0, 0, 0, 1036, 597, 1, 0, 0, 0, 1036, 612, 1, 0, 0, 0, 1036, 624, 1, 0, 0, 0, 1036, 627, 1, 0, 0, 0, 1036, 652, 1, 0, 0, 0, 1036, 677, 1, 0, 0, 0, 1036, 688, 1, 0, 0, 0, 1036, 719, 1, 0, 0, 0, 1036, 746, 1, 0, 0, 0, 1036, 777, 1, 0, 0, 0, 1036, 786, 1, 0, 0, 0, 1036, 807, 1, 0, 0, 0, 1036, 811, 1, 0, 0, 0, 1036, 815, 1, 0, 0, 0, 1036, 819, 1, 0, 0, 0, 1036, 824, 1, 0, 0, 0, 1036, 838, 1, 0, 0, 0, 1036, 852, 1, 0, 0, 0, 1036, 862, 1, 0, 0, 0, 1036, 876, 1, 0, 0, 0, 1036, 880, 1, 0, 0, 0, 1036, 887, 1, 0, 0, 0, 1036, 896, 1, 0, 0, 0, 1036, 903, 1, 0, 0, 0, 1036, 905, 1, 0, 0, 0, 1036, 907, 1, 0, 0, 0, 1036, 917, 1, 0, 0, 0, 1036, 927, 1, 0, 0, 0, 1036, 933, 1, 0, 0, 0, 1036, 936, 1, 0, 0, 0, 1036, 948, 1, 0, 0, 0, 1036, 952, 1, 0, 0, 0, 1036, 956, 1, 0, 0, 0, 1036, 961, 1, 0, 0, 0, 1036, 964, 1, 0, 0, 0, 1036, 977, 1, 0, 0, 0, 1036, 980, 1, 0, 0, 0, 1036, 983, 1, 0, 0, 0, 1036, 986, 1, 0, 0, 0, 1036, 993, 1, 0, 0, 0, 1036, 1008, 1, 0, 0, 0, 1036, 1026, 1, 0, 0, 0, 1036, 1031, 1, 0, 0, 0, 1037, 17, 1, 0, 0, 0, 1038, 1040, 3, 20, 10, 0, 1039, 1038, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 3, 36, 18, 0, 1042, 19, 1, 0, 0, 0, 1043, 1045, 5, 243, 0, 0, 1044, 1046, 5, 178, 0, 0, 1045, 1044, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1052, 3, 62, 31, 0, 1048, 1049, 5, 3, 0, 0, 1049, 1051, 3, 62, 31, 0, 1050, 1048, 1, 0, 0, 0, 1051, 1054, 1, 0, 0, 0, 1052, 1050, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 21, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1055, 1058, 3, 24, 12, 0, 1056, 1058, 3, 26, 13, 0, 1057, 1055, 1, 0, 0, 0, 1057, 1056, 1, 0, 0, 0, 1058, 23, 1, 0, 0, 0, 1059, 1060, 3, 202, 101, 0, 1060, 1063, 3, 132, 66, 0, 1061, 1062, 5, 147, 0, 0, 1062, 1064, 5, 148, 0, 0, 1063, 1061, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1067, 1, 0, 0, 0, 1065, 1066, 5, 40, 0, 0, 1066, 1068, 3, 116, 58, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1070, 5, 243, 0, 0, 1070, 1072, 3, 28, 14, 0, 1071, 1069, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 25, 1, 0, 0, 0, 1073, 1074, 5, 122, 0, 0, 1074, 1077, 3, 176, 88, 0, 1075, 1076, 7, 3, 0, 0, 1076, 1078, 5, 175, 0, 0, 1077, 1075, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 27, 1, 0, 0, 0, 1079, 1080, 5, 1, 0, 0, 1080, 1081, 3, 30, 15, 0, 1081, 1082, 5, 2, 0, 0, 1082, 29, 1, 0, 0, 0, 1083, 1088, 3, 32, 16, 0, 1084, 1085, 5, 3, 0, 0, 1085, 1087, 3, 32, 16, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1090, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 31, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1091, 1092, 3, 212, 106, 0, 1092, 1093, 5, 249, 0, 0, 1093, 1094, 3, 34, 17, 0, 1094, 33, 1, 0, 0, 0, 1095, 1098, 5, 59, 0, 0, 1096, 1098, 3, 102, 51, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1096, 1, 0, 0, 0, 1098, 35, 1, 0, 0, 0, 1099, 1110, 3, 42, 21, 0, 1100, 1101, 5, 158, 0, 0, 1101, 1102, 5, 32, 0, 0, 1102, 1107, 3, 46, 23, 0, 1103, 1104, 5, 3, 0, 0, 1104, 1106, 3, 46, 23, 0, 1105, 1103, 1, 0, 0, 0, 1106, 1109, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1111, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1110, 1100, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1117, 1, 0, 0, 0, 1112, 1113, 5, 151, 0, 0, 1113, 1115, 3, 40, 20, 0, 1114, 1116, 7, 4, 0, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1118, 1, 0, 0, 0, 1117, 1112, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1132, 1, 0, 0, 0, 1119, 1120, 5, 123, 0, 0, 1120, 1133, 3, 38, 19, 0, 1121, 1122, 5, 81, 0, 0, 1122, 1124, 7, 5, 0, 0, 1123, 1125, 3, 40, 20, 0, 1124, 1123, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1130, 7, 4, 0, 0, 1127, 1131, 5, 155, 0, 0, 1128, 1129, 5, 243, 0, 0, 1129, 1131, 5, 217, 0, 0, 1130, 1127, 1, 0, 0, 0, 1130, 1128, 1, 0, 0, 0, 1131, 1133, 1, 0, 0, 0, 1132, 1119, 1, 0, 0, 0, 1132, 1121, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 37, 1, 0, 0, 0, 1134, 1137, 5, 20, 0, 0, 1135, 1137, 3, 40, 20, 0, 1136, 1134, 1, 0, 0, 0, 1136, 1135, 1, 0, 0, 0, 1137, 39, 1, 0, 0, 0, 1138, 1139, 7, 6, 0, 0, 1139, 41, 1, 0, 0, 0, 1140, 1141, 6, 21, -1, 0, 1141, 1142, 3, 44, 22, 0, 1142, 1157, 1, 0, 0, 0, 1143, 1144, 10, 2, 0, 0, 1144, 1146, 5, 109, 0, 0, 1145, 1147, 3, 64, 32, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1156, 3, 42, 21, 3, 1149, 1150, 10, 1, 0, 0, 1150, 1152, 7, 7, 0, 0, 1151, 1153, 3, 64, 32, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1156, 3, 42, 21, 2, 1155, 1143, 1, 0, 0, 0, 1155, 1149, 1, 0, 0, 0, 1156, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 43, 1, 0, 0, 0, 1159, 1157, 1, 0, 0, 0, 1160, 1177, 3, 48, 24, 0, 1161, 1162, 5, 212, 0, 0, 1162, 1177, 3, 176, 88, 0, 1163, 1164, 5, 237, 0, 0, 1164, 1169, 3, 102, 51, 0, 1165, 1166, 5, 3, 0, 0, 1166, 1168, 3, 102, 51, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1171, 1, 0, 0, 0, 1169, 1167, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1177, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1173, 5, 1, 0, 0, 1173, 1174, 3, 36, 18, 0, 1174, 1175, 5, 2, 0, 0, 1175, 1177, 1, 0, 0, 0, 1176, 1160, 1, 0, 0, 0, 1176, 1161, 1, 0, 0, 0, 1176, 1163, 1, 0, 0, 0, 1176, 1172, 1, 0, 0, 0, 1177, 45, 1, 0, 0, 0, 1178, 1181, 3, 200, 100, 0, 1179, 1181, 3, 102, 51, 0, 1180, 1178, 1, 0, 0, 0, 1180, 1179, 1, 0, 0, 0, 1181, 1183, 1, 0, 0, 0, 1182, 1184, 7, 8, 0, 0, 1183, 1182, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1187, 1, 0, 0, 0, 1185, 1186, 5, 150, 0, 0, 1186, 1188, 7, 9, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 47, 1, 0, 0, 0, 1189, 1191, 5, 200, 0, 0, 1190, 1192, 3, 64, 32, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1198, 3, 66, 33, 0, 1194, 1195, 5, 3, 0, 0, 1195, 1197, 3, 66, 33, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1200, 1, 0, 0, 0, 1198, 1196, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1210, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1202, 5, 88, 0, 0, 1202, 1207, 3, 68, 34, 0, 1203, 1204, 5, 3, 0, 0, 1204, 1206, 3, 68, 34, 0, 1205, 1203, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1211, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1201, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1213, 5, 241, 0, 0, 1213, 1215, 3, 104, 52, 0, 1214, 1212, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1219, 1, 0, 0, 0, 1216, 1217, 5, 96, 0, 0, 1217, 1218, 5, 32, 0, 0, 1218, 1220, 3, 50, 25, 0, 1219, 1216, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1222, 5, 99, 0, 0, 1222, 1224, 3, 104, 52, 0, 1223, 1221, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1234, 1, 0, 0, 0, 1225, 1226, 5, 242, 0, 0, 1226, 1231, 3, 58, 29, 0, 1227, 1228, 5, 3, 0, 0, 1228, 1230, 3, 58, 29, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1235, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1225, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 49, 1, 0, 0, 0, 1236, 1238, 3, 64, 32, 0, 1237, 1236, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1244, 3, 52, 26, 0, 1240, 1241, 5, 3, 0, 0, 1241, 1243, 3, 52, 26, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 51, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1247, 1288, 3, 54, 27, 0, 1248, 1249, 5, 191, 0, 0, 1249, 1258, 5, 1, 0, 0, 1250, 1255, 3, 56, 28, 0, 1251, 1252, 5, 3, 0, 0, 1252, 1254, 3, 56, 28, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1257, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1250, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1288, 5, 2, 0, 0, 1261, 1262, 5, 46, 0, 0, 1262, 1271, 5, 1, 0, 0, 1263, 1268, 3, 56, 28, 0, 1264, 1265, 5, 3, 0, 0, 1265, 1267, 3, 56, 28, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1272, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1263, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1288, 5, 2, 0, 0, 1274, 1275, 5, 97, 0, 0, 1275, 1276, 5, 204, 0, 0, 1276, 1277, 5, 1, 0, 0, 1277, 1282, 3, 54, 27, 0, 1278, 1279, 5, 3, 0, 0, 1279, 1281, 3, 54, 27, 0, 1280, 1278, 1, 0, 0, 0, 1281, 1284, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1285, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1286, 5, 2, 0, 0, 1286, 1288, 1, 0, 0, 0, 1287, 1247, 1, 0, 0, 0, 1287, 1248, 1, 0, 0, 0, 1287, 1261, 1, 0, 0, 0, 1287, 1274, 1, 0, 0, 0, 1288, 53, 1, 0, 0, 0, 1289, 1298, 5, 1, 0, 0, 1290, 1295, 3, 56, 28, 0, 1291, 1292, 5, 3, 0, 0, 1292, 1294, 3, 56, 28, 0, 1293, 1291, 1, 0, 0, 0, 1294, 1297, 1, 0, 0, 0, 1295, 1293, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1299, 1, 0, 0, 0, 1297, 1295, 1, 0, 0, 0, 1298, 1290, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1303, 5, 2, 0, 0, 1301, 1303, 3, 56, 28, 0, 1302, 1289, 1, 0, 0, 0, 1302, 1301, 1, 0, 0, 0, 1303, 55, 1, 0, 0, 0, 1304, 1307, 3, 200, 100, 0, 1305, 1307, 3, 102, 51, 0, 1306, 1304, 1, 0, 0, 0, 1306, 1305, 1, 0, 0, 0, 1307, 57, 1, 0, 0, 0, 1308, 1309, 3, 212, 106, 0, 1309, 1310, 5, 26, 0, 0, 1310, 1311, 5, 1, 0, 0, 1311, 1312, 3, 60, 30, 0, 1312, 1313, 5, 2, 0, 0, 1313, 59, 1, 0, 0, 0, 1314, 1316, 3, 212, 106, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1327, 1, 0, 0, 0, 1317, 1318, 5, 163, 0, 0, 1318, 1319, 5, 32, 0, 0, 1319, 1324, 3, 102, 51, 0, 1320, 1321, 5, 3, 0, 0, 1321, 1323, 3, 102, 51, 0, 1322, 1320, 1, 0, 0, 0, 1323, 1326, 1, 0, 0, 0, 1324, 1322, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1328, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, 0, 1327, 1317, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1339, 1, 0, 0, 0, 1329, 1330, 5, 158, 0, 0, 1330, 1331, 5, 32, 0, 0, 1331, 1336, 3, 46, 23, 0, 1332, 1333, 5, 3, 0, 0, 1333, 1335, 3, 46, 23, 0, 1334, 1332, 1, 0, 0, 0, 1335, 1338, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1340, 1, 0, 0, 0, 1338, 1336, 1, 0, 0, 0, 1339, 1329, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1343, 3, 146, 73, 0, 1342, 1341, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 61, 1, 0, 0, 0, 1344, 1346, 3, 212, 106, 0, 1345, 1347, 3, 98, 49, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 5, 26, 0, 0, 1349, 1350, 5, 1, 0, 0, 1350, 1351, 3, 18, 9, 0, 1351, 1352, 5, 2, 0, 0, 1352, 63, 1, 0, 0, 0, 1353, 1354, 7, 10, 0, 0, 1354, 65, 1, 0, 0, 0, 1355, 1358, 3, 200, 100, 0, 1356, 1358, 3, 102, 51, 0, 1357, 1355, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 1363, 1, 0, 0, 0, 1359, 1361, 5, 26, 0, 0, 1360, 1359, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1364, 3, 212, 106, 0, 1363, 1360, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1374, 1, 0, 0, 0, 1365, 1366, 3, 110, 55, 0, 1366, 1367, 5, 4, 0, 0, 1367, 1370, 5, 257, 0, 0, 1368, 1369, 5, 26, 0, 0, 1369, 1371, 3, 98, 49, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1374, 1, 0, 0, 0, 1372, 1374, 5, 257, 0, 0, 1373, 1357, 1, 0, 0, 0, 1373, 1365, 1, 0, 0, 0, 1373, 1372, 1, 0, 0, 0, 1374, 67, 1, 0, 0, 0, 1375, 1376, 6, 34, -1, 0, 1376, 1377, 3, 74, 37, 0, 1377, 1396, 1, 0, 0, 0, 1378, 1392, 10, 2, 0, 0, 1379, 1380, 5, 45, 0, 0, 1380, 1381, 5, 116, 0, 0, 1381, 1393, 3, 74, 37, 0, 1382, 1383, 3, 70, 35, 0, 1383, 1384, 5, 116, 0, 0, 1384, 1385, 3, 68, 34, 0, 1385, 1386, 3, 72, 36, 0, 1386, 1393, 1, 0, 0, 0, 1387, 1388, 5, 138, 0, 0, 1388, 1389, 3, 70, 35, 0, 1389, 1390, 5, 116, 0, 0, 1390, 1391, 3, 74, 37, 0, 1391, 1393, 1, 0, 0, 0, 1392, 1379, 1, 0, 0, 0, 1392, 1382, 1, 0, 0, 0, 1392, 1387, 1, 0, 0, 0, 1393, 1395, 1, 0, 0, 0, 1394, 1378, 1, 0, 0, 0, 1395, 1398, 1, 0, 0, 0, 1396, 1394, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 69, 1, 0, 0, 0, 1398, 1396, 1, 0, 0, 0, 1399, 1401, 5, 106, 0, 0, 1400, 1399, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1415, 1, 0, 0, 0, 1402, 1404, 5, 120, 0, 0, 1403, 1405, 5, 160, 0, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1415, 1, 0, 0, 0, 1406, 1408, 5, 187, 0, 0, 1407, 1409, 5, 160, 0, 0, 1408, 1407, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1415, 1, 0, 0, 0, 1410, 1412, 5, 89, 0, 0, 1411, 1413, 5, 160, 0, 0, 1412, 1411, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1415, 1, 0, 0, 0, 1414, 1400, 1, 0, 0, 0, 1414, 1402, 1, 0, 0, 0, 1414, 1406, 1, 0, 0, 0, 1414, 1410, 1, 0, 0, 0, 1415, 71, 1, 0, 0, 0, 1416, 1417, 5, 153, 0, 0, 1417, 1431, 3, 104, 52, 0, 1418, 1419, 5, 235, 0, 0, 1419, 1420, 5, 1, 0, 0, 1420, 1425, 3, 212, 106, 0, 1421, 1422, 5, 3, 0, 0, 1422, 1424, 3, 212, 106, 0, 1423, 1421, 1, 0, 0, 0, 1424, 1427, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1428, 1, 0, 0, 0, 1427, 1425, 1, 0, 0, 0, 1428, 1429, 5, 2, 0, 0, 1429, 1431, 1, 0, 0, 0, 1430, 1416, 1, 0, 0, 0, 1430, 1418, 1, 0, 0, 0, 1431, 73, 1, 0, 0, 0, 1432, 1439, 3, 78, 39, 0, 1433, 1434, 5, 214, 0, 0, 1434, 1435, 3, 76, 38, 0, 1435, 1436, 5, 1, 0, 0, 1436, 1437, 3, 102, 51, 0, 1437, 1438, 5, 2, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1433, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 75, 1, 0, 0, 0, 1441, 1442, 7, 11, 0, 0, 1442, 77, 1, 0, 0, 0, 1443, 1526, 3, 92, 46, 0, 1444, 1445, 5, 132, 0, 0, 1445, 1456, 5, 1, 0, 0, 1446, 1447, 5, 163, 0, 0, 1447, 1448, 5, 32, 0, 0, 1448, 1453, 3, 102, 51, 0, 1449, 1450, 5, 3, 0, 0, 1450, 1452, 3, 102, 51, 0, 1451, 1449, 1, 0, 0, 0, 1452, 1455, 1, 0, 0, 0, 1453, 1451, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1457, 1, 0, 0, 0, 1455, 1453, 1, 0, 0, 0, 1456, 1446, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1468, 1, 0, 0, 0, 1458, 1459, 5, 158, 0, 0, 1459, 1460, 5, 32, 0, 0, 1460, 1465, 3, 46, 23, 0, 1461, 1462, 5, 3, 0, 0, 1462, 1464, 3, 46, 23, 0, 1463, 1461, 1, 0, 0, 0, 1464, 1467, 1, 0, 0, 0, 1465, 1463, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1469, 1, 0, 0, 0, 1467, 1465, 1, 0, 0, 0, 1468, 1458, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1479, 1, 0, 0, 0, 1470, 1471, 5, 134, 0, 0, 1471, 1476, 3, 80, 40, 0, 1472, 1473, 5, 3, 0, 0, 1473, 1475, 3, 80, 40, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1478, 1, 0, 0, 0, 1476, 1474, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1480, 1, 0, 0, 0, 1478, 1476, 1, 0, 0, 0, 1479, 1470, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1482, 1, 0, 0, 0, 1481, 1483, 3, 82, 41, 0, 1482, 1481, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1487, 1, 0, 0, 0, 1484, 1485, 5, 19, 0, 0, 1485, 1486, 5, 129, 0, 0, 1486, 1488, 3, 86, 43, 0, 1487, 1484, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1490, 1, 0, 0, 0, 1489, 1491, 7, 12, 0, 0, 1490, 1489, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 5, 167, 0, 0, 1493, 1494, 5, 1, 0, 0, 1494, 1495, 3, 152, 76, 0, 1495, 1505, 5, 2, 0, 0, 1496, 1497, 5, 209, 0, 0, 1497, 1502, 3, 88, 44, 0, 1498, 1499, 5, 3, 0, 0, 1499, 1501, 3, 88, 44, 0, 1500, 1498, 1, 0, 0, 0, 1501, 1504, 1, 0, 0, 0, 1502, 1500, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1506, 1, 0, 0, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1496, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 5, 65, 0, 0, 1508, 1513, 3, 90, 45, 0, 1509, 1510, 5, 3, 0, 0, 1510, 1512, 3, 90, 45, 0, 1511, 1509, 1, 0, 0, 0, 1512, 1515, 1, 0, 0, 0, 1513, 1511, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1516, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1516, 1524, 5, 2, 0, 0, 1517, 1519, 5, 26, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 3, 212, 106, 0, 1521, 1523, 3, 98, 49, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1525, 1, 0, 0, 0, 1524, 1518, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1527, 1, 0, 0, 0, 1526, 1444, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 79, 1, 0, 0, 0, 1528, 1529, 3, 102, 51, 0, 1529, 1530, 5, 26, 0, 0, 1530, 1531, 3, 212, 106, 0, 1531, 81, 1, 0, 0, 0, 1532, 1533, 5, 154, 0, 0, 1533, 1534, 5, 192, 0, 0, 1534, 1535, 5, 168, 0, 0, 1535, 1544, 5, 129, 0, 0, 1536, 1537, 5, 20, 0, 0, 1537, 1538, 5, 193, 0, 0, 1538, 1539, 5, 168, 0, 0, 1539, 1541, 5, 129, 0, 0, 1540, 1542, 3, 84, 42, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1544, 1, 0, 0, 0, 1543, 1532, 1, 0, 0, 0, 1543, 1536, 1, 0, 0, 0, 1544, 83, 1, 0, 0, 0, 1545, 1546, 5, 205, 0, 0, 1546, 1547, 5, 71, 0, 0, 1547, 1555, 5, 131, 0, 0, 1548, 1549, 5, 152, 0, 0, 1549, 1550, 5, 71, 0, 0, 1550, 1555, 5, 131, 0, 0, 1551, 1552, 5, 243, 0, 0, 1552, 1553, 5, 230, 0, 0, 1553, 1555, 5, 193, 0, 0, 1554, 1545, 1, 0, 0, 0, 1554, 1548, 1, 0, 0, 0, 1554, 1551, 1, 0, 0, 0, 1555, 85, 1, 0, 0, 0, 1556, 1557, 5, 5, 0, 0, 1557, 1558, 5, 220, 0, 0, 1558, 1559, 5, 139, 0, 0, 1559, 1576, 5, 192, 0, 0, 1560, 1561, 5, 5, 0, 0, 1561, 1562, 5, 165, 0, 0, 1562, 1563, 5, 118, 0, 0, 1563, 1576, 5, 192, 0, 0, 1564, 1565, 5, 5, 0, 0, 1565, 1566, 5, 220, 0, 0, 1566, 1567, 5, 84, 0, 0, 1567, 1576, 3, 212, 106, 0, 1568, 1569, 5, 5, 0, 0, 1569, 1570, 5, 220, 0, 0, 1570, 1571, 5, 118, 0, 0, 1571, 1576, 3, 212, 106, 0, 1572, 1573, 5, 5, 0, 0, 1573, 1574, 5, 220, 0, 0, 1574, 1576, 3, 212, 106, 0, 1575, 1556, 1, 0, 0, 0, 1575, 1560, 1, 0, 0, 0, 1575, 1564, 1, 0, 0, 0, 1575, 1568, 1, 0, 0, 0, 1575, 1572, 1, 0, 0, 0, 1576, 87, 1, 0, 0, 0, 1577, 1578, 3, 212, 106, 0, 1578, 1579, 5, 249, 0, 0, 1579, 1580, 5, 1, 0, 0, 1580, 1585, 3, 212, 106, 0, 1581, 1582, 5, 3, 0, 0, 1582, 1584, 3, 212, 106, 0, 1583, 1581, 1, 0, 0, 0, 1584, 1587, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1588, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1589, 5, 2, 0, 0, 1589, 89, 1, 0, 0, 0, 1590, 1591, 3, 212, 106, 0, 1591, 1592, 5, 26, 0, 0, 1592, 1593, 3, 102, 51, 0, 1593, 91, 1, 0, 0, 0, 1594, 1602, 3, 100, 50, 0, 1595, 1597, 5, 26, 0, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1600, 3, 212, 106, 0, 1599, 1601, 3, 98, 49, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1603, 1, 0, 0, 0, 1602, 1596, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 93, 1, 0, 0, 0, 1604, 1605, 5, 1, 0, 0, 1605, 1610, 3, 202, 101, 0, 1606, 1607, 5, 3, 0, 0, 1607, 1609, 3, 202, 101, 0, 1608, 1606, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1613, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1614, 5, 2, 0, 0, 1614, 95, 1, 0, 0, 0, 1615, 1616, 5, 1, 0, 0, 1616, 1621, 3, 200, 100, 0, 1617, 1618, 5, 3, 0, 0, 1618, 1620, 3, 200, 100, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1623, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1625, 5, 2, 0, 0, 1625, 97, 1, 0, 0, 0, 1626, 1627, 5, 1, 0, 0, 1627, 1632, 3, 212, 106, 0, 1628, 1629, 5, 3, 0, 0, 1629, 1631, 3, 212, 106, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1634, 1, 0, 0, 0, 1632, 1630, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1632, 1, 0, 0, 0, 1635, 1636, 5, 2, 0, 0, 1636, 99, 1, 0, 0, 0, 1637, 1667, 3, 174, 87, 0, 1638, 1639, 5, 1, 0, 0, 1639, 1640, 3, 18, 9, 0, 1640, 1641, 5, 2, 0, 0, 1641, 1667, 1, 0, 0, 0, 1642, 1643, 5, 231, 0, 0, 1643, 1644, 5, 1, 0, 0, 1644, 1649, 3, 102, 51, 0, 1645, 1646, 5, 3, 0, 0, 1646, 1648, 3, 102, 51, 0, 1647, 1645, 1, 0, 0, 0, 1648, 1651, 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1652, 1655, 5, 2, 0, 0, 1653, 1654, 5, 243, 0, 0, 1654, 1656, 5, 159, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1667, 1, 0, 0, 0, 1657, 1658, 5, 119, 0, 0, 1658, 1659, 5, 1, 0, 0, 1659, 1660, 3, 18, 9, 0, 1660, 1661, 5, 2, 0, 0, 1661, 1667, 1, 0, 0, 0, 1662, 1663, 5, 1, 0, 0, 1663, 1664, 3, 68, 34, 0, 1664, 1665, 5, 2, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1637, 1, 0, 0, 0, 1666, 1638, 1, 0, 0, 0, 1666, 1642, 1, 0, 0, 0, 1666, 1657, 1, 0, 0, 0, 1666, 1662, 1, 0, 0, 0, 1667, 101, 1, 0, 0, 0, 1668, 1669, 3, 104, 52, 0, 1669, 103, 1, 0, 0, 0, 1670, 1671, 6, 52, -1, 0, 1671, 1673, 3, 108, 54, 0, 1672, 1674, 3, 106, 53, 0, 1673, 1672, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1678, 1, 0, 0, 0, 1675, 1676, 5, 147, 0, 0, 1676, 1678, 3, 104, 52, 3, 1677, 1670, 1, 0, 0, 0, 1677, 1675, 1, 0, 0, 0, 1678, 1687, 1, 0, 0, 0, 1679, 1680, 10, 2, 0, 0, 1680, 1681, 5, 23, 0, 0, 1681, 1686, 3, 104, 52, 3, 1682, 1683, 10, 1, 0, 0, 1683, 1684, 5, 157, 0, 0, 1684, 1686, 3, 104, 52, 2, 1685, 1679, 1, 0, 0, 0, 1685, 1682, 1, 0, 0, 0, 1686, 1689, 1, 0, 0, 0, 1687, 1685, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 105, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1690, 1691, 3, 120, 60, 0, 1691, 1692, 3, 108, 54, 0, 1692, 1752, 1, 0, 0, 0, 1693, 1694, 3, 120, 60, 0, 1694, 1695, 3, 122, 61, 0, 1695, 1696, 5, 1, 0, 0, 1696, 1697, 3, 18, 9, 0, 1697, 1698, 5, 2, 0, 0, 1698, 1752, 1, 0, 0, 0, 1699, 1701, 5, 147, 0, 0, 1700, 1699, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 5, 31, 0, 0, 1703, 1704, 3, 108, 54, 0, 1704, 1705, 5, 23, 0, 0, 1705, 1706, 3, 108, 54, 0, 1706, 1752, 1, 0, 0, 0, 1707, 1709, 5, 147, 0, 0, 1708, 1707, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1711, 5, 103, 0, 0, 1711, 1712, 5, 1, 0, 0, 1712, 1717, 3, 102, 51, 0, 1713, 1714, 5, 3, 0, 0, 1714, 1716, 3, 102, 51, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1719, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1720, 1, 0, 0, 0, 1719, 1717, 1, 0, 0, 0, 1720, 1721, 5, 2, 0, 0, 1721, 1752, 1, 0, 0, 0, 1722, 1724, 5, 147, 0, 0, 1723, 1722, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 5, 103, 0, 0, 1726, 1727, 5, 1, 0, 0, 1727, 1728, 3, 18, 9, 0, 1728, 1729, 5, 2, 0, 0, 1729, 1752, 1, 0, 0, 0, 1730, 1732, 5, 147, 0, 0, 1731, 1730, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 5, 122, 0, 0, 1734, 1737, 3, 108, 54, 0, 1735, 1736, 5, 73, 0, 0, 1736, 1738, 3, 108, 54, 0, 1737, 1735, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1752, 1, 0, 0, 0, 1739, 1741, 5, 114, 0, 0, 1740, 1742, 5, 147, 0, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1752, 5, 148, 0, 0, 1744, 1746, 5, 114, 0, 0, 1745, 1747, 5, 147, 0, 0, 1746, 1745, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 5, 66, 0, 0, 1749, 1750, 5, 88, 0, 0, 1750, 1752, 3, 108, 54, 0, 1751, 1690, 1, 0, 0, 0, 1751, 1693, 1, 0, 0, 0, 1751, 1700, 1, 0, 0, 0, 1751, 1708, 1, 0, 0, 0, 1751, 1723, 1, 0, 0, 0, 1751, 1731, 1, 0, 0, 0, 1751, 1739, 1, 0, 0, 0, 1751, 1744, 1, 0, 0, 0, 1752, 107, 1, 0, 0, 0, 1753, 1754, 6, 54, -1, 0, 1754, 1758, 3, 110, 55, 0, 1755, 1756, 7, 13, 0, 0, 1756, 1758, 3, 108, 54, 4, 1757, 1753, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1773, 1, 0, 0, 0, 1759, 1760, 10, 3, 0, 0, 1760, 1761, 7, 14, 0, 0, 1761, 1772, 3, 108, 54, 4, 1762, 1763, 10, 2, 0, 0, 1763, 1764, 7, 13, 0, 0, 1764, 1772, 3, 108, 54, 3, 1765, 1766, 10, 1, 0, 0, 1766, 1767, 5, 260, 0, 0, 1767, 1772, 3, 108, 54, 2, 1768, 1769, 10, 5, 0, 0, 1769, 1770, 5, 28, 0, 0, 1770, 1772, 3, 118, 59, 0, 1771, 1759, 1, 0, 0, 0, 1771, 1762, 1, 0, 0, 0, 1771, 1765, 1, 0, 0, 0, 1771, 1768, 1, 0, 0, 0, 1772, 1775, 1, 0, 0, 0, 1773, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 109, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1776, 1777, 6, 55, -1, 0, 1777, 2026, 5, 148, 0, 0, 1778, 2026, 3, 126, 63, 0, 1779, 1780, 3, 212, 106, 0, 1780, 1781, 3, 116, 58, 0, 1781, 2026, 1, 0, 0, 0, 1782, 1783, 5, 68, 0, 0, 1783, 1784, 5, 172, 0, 0, 1784, 2026, 3, 116, 58, 0, 1785, 2026, 3, 214, 107, 0, 1786, 2026, 3, 124, 62, 0, 1787, 2026, 3, 116, 58, 0, 1788, 2026, 5, 264, 0, 0, 1789, 2026, 5, 261, 0, 0, 1790, 1791, 5, 170, 0, 0, 1791, 1792, 5, 1, 0, 0, 1792, 1793, 3, 108, 54, 0, 1793, 1794, 5, 103, 0, 0, 1794, 1795, 3, 108, 54, 0, 1795, 1796, 5, 2, 0, 0, 1796, 2026, 1, 0, 0, 0, 1797, 1798, 5, 1, 0, 0, 1798, 1801, 3, 102, 51, 0, 1799, 1800, 5, 3, 0, 0, 1800, 1802, 3, 102, 51, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 5, 2, 0, 0, 1806, 2026, 1, 0, 0, 0, 1807, 1808, 5, 192, 0, 0, 1808, 1809, 5, 1, 0, 0, 1809, 1814, 3, 102, 51, 0, 1810, 1811, 5, 3, 0, 0, 1811, 1813, 3, 102, 51, 0, 1812, 1810, 1, 0, 0, 0, 1813, 1816, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1818, 5, 2, 0, 0, 1818, 2026, 1, 0, 0, 0, 1819, 1820, 3, 198, 99, 0, 1820, 1821, 5, 1, 0, 0, 1821, 1822, 5, 257, 0, 0, 1822, 1824, 5, 2, 0, 0, 1823, 1825, 3, 140, 70, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1827, 1, 0, 0, 0, 1826, 1828, 3, 144, 72, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 2026, 1, 0, 0, 0, 1829, 1831, 3, 112, 56, 0, 1830, 1829, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 3, 198, 99, 0, 1833, 1845, 5, 1, 0, 0, 1834, 1836, 3, 64, 32, 0, 1835, 1834, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1842, 3, 102, 51, 0, 1838, 1839, 5, 3, 0, 0, 1839, 1841, 3, 102, 51, 0, 1840, 1838, 1, 0, 0, 0, 1841, 1844, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1846, 1, 0, 0, 0, 1844, 1842, 1, 0, 0, 0, 1845, 1835, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1857, 1, 0, 0, 0, 1847, 1848, 5, 158, 0, 0, 1848, 1849, 5, 32, 0, 0, 1849, 1854, 3, 46, 23, 0, 1850, 1851, 5, 3, 0, 0, 1851, 1853, 3, 46, 23, 0, 1852, 1850, 1, 0, 0, 0, 1853, 1856, 1, 0, 0, 0, 1854, 1852, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1858, 1, 0, 0, 0, 1856, 1854, 1, 0, 0, 0, 1857, 1847, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1861, 5, 2, 0, 0, 1860, 1862, 3, 140, 70, 0, 1861, 1860, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1867, 1, 0, 0, 0, 1863, 1865, 3, 114, 57, 0, 1864, 1863, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1868, 3, 144, 72, 0, 1867, 1864, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 2026, 1, 0, 0, 0, 1869, 1870, 3, 212, 106, 0, 1870, 1871, 3, 144, 72, 0, 1871, 2026, 1, 0, 0, 0, 1872, 1873, 3, 212, 106, 0, 1873, 1874, 5, 6, 0, 0, 1874, 1875, 3, 102, 51, 0, 1875, 2026, 1, 0, 0, 0, 1876, 1885, 5, 1, 0, 0, 1877, 1882, 3, 212, 106, 0, 1878, 1879, 5, 3, 0, 0, 1879, 1881, 3, 212, 106, 0, 1880, 1878, 1, 0, 0, 0, 1881, 1884, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1886, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1877, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 5, 2, 0, 0, 1888, 1889, 5, 6, 0, 0, 1889, 2026, 3, 102, 51, 0, 1890, 1891, 5, 1, 0, 0, 1891, 1892, 3, 18, 9, 0, 1892, 1893, 5, 2, 0, 0, 1893, 2026, 1, 0, 0, 0, 1894, 1895, 5, 77, 0, 0, 1895, 1896, 5, 1, 0, 0, 1896, 1897, 3, 18, 9, 0, 1897, 1898, 5, 2, 0, 0, 1898, 2026, 1, 0, 0, 0, 1899, 1900, 5, 35, 0, 0, 1900, 1902, 3, 102, 51, 0, 1901, 1903, 3, 138, 69, 0, 1902, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1908, 1, 0, 0, 0, 1906, 1907, 5, 70, 0, 0, 1907, 1909, 3, 102, 51, 0, 1908, 1906, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 5, 72, 0, 0, 1911, 2026, 1, 0, 0, 0, 1912, 1914, 5, 35, 0, 0, 1913, 1915, 3, 138, 69, 0, 1914, 1913, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1920, 1, 0, 0, 0, 1918, 1919, 5, 70, 0, 0, 1919, 1921, 3, 102, 51, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 5, 72, 0, 0, 1923, 2026, 1, 0, 0, 0, 1924, 1925, 5, 36, 0, 0, 1925, 1926, 5, 1, 0, 0, 1926, 1927, 3, 102, 51, 0, 1927, 1928, 5, 26, 0, 0, 1928, 1929, 3, 132, 66, 0, 1929, 1930, 5, 2, 0, 0, 1930, 2026, 1, 0, 0, 0, 1931, 1932, 5, 224, 0, 0, 1932, 1933, 5, 1, 0, 0, 1933, 1934, 3, 102, 51, 0, 1934, 1935, 5, 26, 0, 0, 1935, 1936, 3, 132, 66, 0, 1936, 1937, 5, 2, 0, 0, 1937, 2026, 1, 0, 0, 0, 1938, 1939, 5, 25, 0, 0, 1939, 1948, 5, 7, 0, 0, 1940, 1945, 3, 102, 51, 0, 1941, 1942, 5, 3, 0, 0, 1942, 1944, 3, 102, 51, 0, 1943, 1941, 1, 0, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1949, 1, 0, 0, 0, 1947, 1945, 1, 0, 0, 0, 1948, 1940, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 2026, 5, 8, 0, 0, 1951, 2026, 3, 212, 106, 0, 1952, 2026, 5, 49, 0, 0, 1953, 1957, 5, 53, 0, 0, 1954, 1955, 5, 1, 0, 0, 1955, 1956, 5, 265, 0, 0, 1956, 1958, 5, 2, 0, 0, 1957, 1954, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 2026, 1, 0, 0, 0, 1959, 1963, 5, 54, 0, 0, 1960, 1961, 5, 1, 0, 0, 1961, 1962, 5, 265, 0, 0, 1962, 1964, 5, 2, 0, 0, 1963, 1960, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 2026, 1, 0, 0, 0, 1965, 1969, 5, 125, 0, 0, 1966, 1967, 5, 1, 0, 0, 1967, 1968, 5, 265, 0, 0, 1968, 1970, 5, 2, 0, 0, 1969, 1966, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 2026, 1, 0, 0, 0, 1971, 1975, 5, 126, 0, 0, 1972, 1973, 5, 1, 0, 0, 1973, 1974, 5, 265, 0, 0, 1974, 1976, 5, 2, 0, 0, 1975, 1972, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 2026, 1, 0, 0, 0, 1977, 2026, 5, 55, 0, 0, 1978, 2026, 5, 48, 0, 0, 1979, 2026, 5, 52, 0, 0, 1980, 2026, 5, 50, 0, 0, 1981, 1982, 5, 210, 0, 0, 1982, 1983, 5, 1, 0, 0, 1983, 1984, 3, 108, 54, 0, 1984, 1985, 5, 88, 0, 0, 1985, 1988, 3, 108, 54, 0, 1986, 1987, 5, 86, 0, 0, 1987, 1989, 3, 108, 54, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 5, 2, 0, 0, 1991, 2026, 1, 0, 0, 0, 1992, 1993, 5, 146, 0, 0, 1993, 1994, 5, 1, 0, 0, 1994, 1997, 3, 108, 54, 0, 1995, 1996, 5, 3, 0, 0, 1996, 1998, 3, 130, 65, 0, 1997, 1995, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 5, 2, 0, 0, 2000, 2026, 1, 0, 0, 0, 2001, 2002, 5, 79, 0, 0, 2002, 2003, 5, 1, 0, 0, 2003, 2004, 3, 212, 106, 0, 2004, 2005, 5, 88, 0, 0, 2005, 2006, 3, 108, 54, 0, 2006, 2007, 5, 2, 0, 0, 2007, 2026, 1, 0, 0, 0, 2008, 2009, 5, 1, 0, 0, 2009, 2010, 3, 102, 51, 0, 2010, 2011, 5, 2, 0, 0, 2011, 2026, 1, 0, 0, 0, 2012, 2013, 5, 97, 0, 0, 2013, 2022, 5, 1, 0, 0, 2014, 2019, 3, 204, 102, 0, 2015, 2016, 5, 3, 0, 0, 2016, 2018, 3, 204, 102, 0, 2017, 2015, 1, 0, 0, 0, 2018, 2021, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2023, 1, 0, 0, 0, 2021, 2019, 1, 0, 0, 0, 2022, 2014, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2026, 5, 2, 0, 0, 2025, 1776, 1, 0, 0, 0, 2025, 1778, 1, 0, 0, 0, 2025, 1779, 1, 0, 0, 0, 2025, 1782, 1, 0, 0, 0, 2025, 1785, 1, 0, 0, 0, 2025, 1786, 1, 0, 0, 0, 2025, 1787, 1, 0, 0, 0, 2025, 1788, 1, 0, 0, 0, 2025, 1789, 1, 0, 0, 0, 2025, 1790, 1, 0, 0, 0, 2025, 1797, 1, 0, 0, 0, 2025, 1807, 1, 0, 0, 0, 2025, 1819, 1, 0, 0, 0, 2025, 1830, 1, 0, 0, 0, 2025, 1869, 1, 0, 0, 0, 2025, 1872, 1, 0, 0, 0, 2025, 1876, 1, 0, 0, 0, 2025, 1890, 1, 0, 0, 0, 2025, 1894, 1, 0, 0, 0, 2025, 1899, 1, 0, 0, 0, 2025, 1912, 1, 0, 0, 0, 2025, 1924, 1, 0, 0, 0, 2025, 1931, 1, 0, 0, 0, 2025, 1938, 1, 0, 0, 0, 2025, 1951, 1, 0, 0, 0, 2025, 1952, 1, 0, 0, 0, 2025, 1953, 1, 0, 0, 0, 2025, 1959, 1, 0, 0, 0, 2025, 1965, 1, 0, 0, 0, 2025, 1971, 1, 0, 0, 0, 2025, 1977, 1, 0, 0, 0, 2025, 1978, 1, 0, 0, 0, 2025, 1979, 1, 0, 0, 0, 2025, 1980, 1, 0, 0, 0, 2025, 1981, 1, 0, 0, 0, 2025, 1992, 1, 0, 0, 0, 2025, 2001, 1, 0, 0, 0, 2025, 2008, 1, 0, 0, 0, 2025, 2012, 1, 0, 0, 0, 2026, 2037, 1, 0, 0, 0, 2027, 2028, 10, 17, 0, 0, 2028, 2029, 5, 7, 0, 0, 2029, 2030, 3, 108, 54, 0, 2030, 2031, 5, 8, 0, 0, 2031, 2036, 1, 0, 0, 0, 2032, 2033, 10, 15, 0, 0, 2033, 2034, 5, 4, 0, 0, 2034, 2036, 3, 212, 106, 0, 2035, 2027, 1, 0, 0, 0, 2035, 2032, 1, 0, 0, 0, 2036, 2039, 1, 0, 0, 0, 2037, 2035, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 111, 1, 0, 0, 0, 2039, 2037, 1, 0, 0, 0, 2040, 2041, 7, 15, 0, 0, 2041, 113, 1, 0, 0, 0, 2042, 2043, 5, 102, 0, 0, 2043, 2047, 5, 150, 0, 0, 2044, 2045, 5, 184, 0, 0, 2045, 2047, 5, 150, 0, 0, 2046, 2042, 1, 0, 0, 0, 2046, 2044, 1, 0, 0, 0, 2047, 115, 1, 0, 0, 0, 2048, 2055, 5, 262, 0, 0, 2049, 2052, 5, 263, 0, 0, 2050, 2051, 5, 226, 0, 0, 2051, 2053, 5, 262, 0, 0, 2052, 2050, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2055, 1, 0, 0, 0, 2054, 2048, 1, 0, 0, 0, 2054, 2049, 1, 0, 0, 0, 2055, 117, 1, 0, 0, 0, 2056, 2057, 5, 218, 0, 0, 2057, 2058, 5, 248, 0, 0, 2058, 2063, 3, 126, 63, 0, 2059, 2060, 5, 218, 0, 0, 2060, 2061, 5, 248, 0, 0, 2061, 2063, 3, 116, 58, 0, 2062, 2056, 1, 0, 0, 0, 2062, 2059, 1, 0, 0, 0, 2063, 119, 1, 0, 0, 0, 2064, 2065, 7, 16, 0, 0, 2065, 121, 1, 0, 0, 0, 2066, 2067, 7, 17, 0, 0, 2067, 123, 1, 0, 0, 0, 2068, 2069, 7, 18, 0, 0, 2069, 125, 1, 0, 0, 0, 2070, 2072, 5, 110, 0, 0, 2071, 2073, 7, 13, 0, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 3, 116, 58, 0, 2075, 2078, 3, 128, 64, 0, 2076, 2077, 5, 220, 0, 0, 2077, 2079, 3, 128, 64, 0, 2078, 2076, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 127, 1, 0, 0, 0, 2080, 2081, 7, 19, 0, 0, 2081, 129, 1, 0, 0, 0, 2082, 2083, 7, 20, 0, 0, 2083, 131, 1, 0, 0, 0, 2084, 2085, 6, 66, -1, 0, 2085, 2086, 5, 192, 0, 0, 2086, 2087, 5, 1, 0, 0, 2087, 2092, 3, 134, 67, 0, 2088, 2089, 5, 3, 0, 0, 2089, 2091, 3, 134, 67, 0, 2090, 2088, 1, 0, 0, 0, 2091, 2094, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2095, 1, 0, 0, 0, 2094, 2092, 1, 0, 0, 0, 2095, 2096, 5, 2, 0, 0, 2096, 2176, 1, 0, 0, 0, 2097, 2098, 5, 110, 0, 0, 2098, 2101, 3, 128, 64, 0, 2099, 2100, 5, 220, 0, 0, 2100, 2102, 3, 128, 64, 0, 2101, 2099, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2176, 1, 0, 0, 0, 2103, 2108, 5, 219, 0, 0, 2104, 2105, 5, 1, 0, 0, 2105, 2106, 3, 136, 68, 0, 2106, 2107, 5, 2, 0, 0, 2107, 2109, 1, 0, 0, 0, 2108, 2104, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2113, 1, 0, 0, 0, 2110, 2111, 5, 244, 0, 0, 2111, 2112, 5, 218, 0, 0, 2112, 2114, 5, 248, 0, 0, 2113, 2110, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2176, 1, 0, 0, 0, 2115, 2120, 5, 219, 0, 0, 2116, 2117, 5, 1, 0, 0, 2117, 2118, 3, 136, 68, 0, 2118, 2119, 5, 2, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2116, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2123, 5, 243, 0, 0, 2123, 2124, 5, 218, 0, 0, 2124, 2176, 5, 248, 0, 0, 2125, 2130, 5, 218, 0, 0, 2126, 2127, 5, 1, 0, 0, 2127, 2128, 3, 136, 68, 0, 2128, 2129, 5, 2, 0, 0, 2129, 2131, 1, 0, 0, 0, 2130, 2126, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2135, 1, 0, 0, 0, 2132, 2133, 5, 244, 0, 0, 2133, 2134, 5, 218, 0, 0, 2134, 2136, 5, 248, 0, 0, 2135, 2132, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2176, 1, 0, 0, 0, 2137, 2142, 5, 218, 0, 0, 2138, 2139, 5, 1, 0, 0, 2139, 2140, 3, 136, 68, 0, 2140, 2141, 5, 2, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2138, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2145, 5, 243, 0, 0, 2145, 2146, 5, 218, 0, 0, 2146, 2176, 5, 248, 0, 0, 2147, 2148, 5, 68, 0, 0, 2148, 2176, 5, 172, 0, 0, 2149, 2150, 5, 25, 0, 0, 2150, 2151, 5, 251, 0, 0, 2151, 2152, 3, 132, 66, 0, 2152, 2153, 5, 253, 0, 0, 2153, 2176, 1, 0, 0, 0, 2154, 2155, 5, 128, 0, 0, 2155, 2156, 5, 251, 0, 0, 2156, 2157, 3, 132, 66, 0, 2157, 2158, 5, 3, 0, 0, 2158, 2159, 3, 132, 66, 0, 2159, 2160, 5, 253, 0, 0, 2160, 2176, 1, 0, 0, 0, 2161, 2173, 3, 212, 106, 0, 2162, 2163, 5, 1, 0, 0, 2163, 2168, 3, 136, 68, 0, 2164, 2165, 5, 3, 0, 0, 2165, 2167, 3, 136, 68, 0, 2166, 2164, 1, 0, 0, 0, 2167, 2170, 1, 0, 0, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2171, 1, 0, 0, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2172, 5, 2, 0, 0, 2172, 2174, 1, 0, 0, 0, 2173, 2162, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2176, 1, 0, 0, 0, 2175, 2084, 1, 0, 0, 0, 2175, 2097, 1, 0, 0, 0, 2175, 2103, 1, 0, 0, 0, 2175, 2115, 1, 0, 0, 0, 2175, 2125, 1, 0, 0, 0, 2175, 2137, 1, 0, 0, 0, 2175, 2147, 1, 0, 0, 0, 2175, 2149, 1, 0, 0, 0, 2175, 2154, 1, 0, 0, 0, 2175, 2161, 1, 0, 0, 0, 2176, 2186, 1, 0, 0, 0, 2177, 2178, 10, 2, 0, 0, 2178, 2182, 5, 25, 0, 0, 2179, 2180, 5, 7, 0, 0, 2180, 2181, 5, 265, 0, 0, 2181, 2183, 5, 8, 0, 0, 2182, 2179, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2185, 1, 0, 0, 0, 2184, 2177, 1, 0, 0, 0, 2185, 2188, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 133, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2189, 2194, 3, 132, 66, 0, 2190, 2191, 3, 212, 106, 0, 2191, 2192, 3, 132, 66, 0, 2192, 2194, 1, 0, 0, 0, 2193, 2189, 1, 0, 0, 0, 2193, 2190, 1, 0, 0, 0, 2194, 135, 1, 0, 0, 0, 2195, 2198, 5, 265, 0, 0, 2196, 2198, 3, 132, 66, 0, 2197, 2195, 1, 0, 0, 0, 2197, 2196, 1, 0, 0, 0, 2198, 137, 1, 0, 0, 0, 2199, 2200, 5, 240, 0, 0, 2200, 2201, 3, 102, 51, 0, 2201, 2202, 5, 216, 0, 0, 2202, 2203, 3, 102, 51, 0, 2203, 139, 1, 0, 0, 0, 2204, 2205, 5, 82, 0, 0, 2205, 2206, 5, 1, 0, 0, 2206, 2207, 5, 241, 0, 0, 2207, 2208, 3, 104, 52, 0, 2208, 2209, 5, 2, 0, 0, 2209, 141, 1, 0, 0, 0, 2210, 2211, 5, 240, 0, 0, 2211, 2214, 5, 130, 0, 0, 2212, 2213, 5, 23, 0, 0, 2213, 2215, 3, 102, 51, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2217, 5, 216, 0, 0, 2217, 2218, 5, 232, 0, 0, 2218, 2219, 5, 203, 0, 0, 2219, 2220, 3, 212, 106, 0, 2220, 2221, 5, 249, 0, 0, 2221, 2229, 3, 102, 51, 0, 2222, 2223, 5, 3, 0, 0, 2223, 2224, 3, 212, 106, 0, 2224, 2225, 5, 249, 0, 0, 2225, 2226, 3, 102, 51, 0, 2226, 2228, 1, 0, 0, 0, 2227, 2222, 1, 0, 0, 0, 2228, 2231, 1, 0, 0, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2275, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2232, 2233, 5, 240, 0, 0, 2233, 2236, 5, 130, 0, 0, 2234, 2235, 5, 23, 0, 0, 2235, 2237, 3, 102, 51, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2239, 5, 216, 0, 0, 2239, 2275, 5, 62, 0, 0, 2240, 2241, 5, 240, 0, 0, 2241, 2242, 5, 147, 0, 0, 2242, 2245, 5, 130, 0, 0, 2243, 2244, 5, 23, 0, 0, 2244, 2246, 3, 102, 51, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 5, 216, 0, 0, 2248, 2260, 5, 108, 0, 0, 2249, 2250, 5, 1, 0, 0, 2250, 2255, 3, 212, 106, 0, 2251, 2252, 5, 3, 0, 0, 2252, 2254, 3, 212, 106, 0, 2253, 2251, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2258, 1, 0, 0, 0, 2257, 2255, 1, 0, 0, 0, 2258, 2259, 5, 2, 0, 0, 2259, 2261, 1, 0, 0, 0, 2260, 2249, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2263, 5, 237, 0, 0, 2263, 2264, 5, 1, 0, 0, 2264, 2269, 3, 102, 51, 0, 2265, 2266, 5, 3, 0, 0, 2266, 2268, 3, 102, 51, 0, 2267, 2265, 1, 0, 0, 0, 2268, 2271, 1, 0, 0, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2272, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2272, 2273, 5, 2, 0, 0, 2273, 2275, 1, 0, 0, 0, 2274, 2210, 1, 0, 0, 0, 2274, 2232, 1, 0, 0, 0, 2274, 2240, 1, 0, 0, 0, 2275, 143, 1, 0, 0, 0, 2276, 2282, 5, 162, 0, 0, 2277, 2283, 3, 212, 106, 0, 2278, 2279, 5, 1, 0, 0, 2279, 2280, 3, 60, 30, 0, 2280, 2281, 5, 2, 0, 0, 2281, 2283, 1, 0, 0, 0, 2282, 2277, 1, 0, 0, 0, 2282, 2278, 1, 0, 0, 0, 2283, 145, 1, 0, 0, 0, 2284, 2285, 5, 134, 0, 0, 2285, 2290, 3, 80, 40, 0, 2286, 2287, 5, 3, 0, 0, 2287, 2289, 3, 80, 40, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2292, 1, 0, 0, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2293, 2284, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2299, 3, 148, 74, 0, 2296, 2297, 5, 19, 0, 0, 2297, 2298, 5, 129, 0, 0, 2298, 2300, 3, 86, 43, 0, 2299, 2296, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2302, 1, 0, 0, 0, 2301, 2303, 7, 12, 0, 0, 2302, 2301, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2309, 1, 0, 0, 0, 2304, 2305, 5, 167, 0, 0, 2305, 2306, 5, 1, 0, 0, 2306, 2307, 3, 152, 76, 0, 2307, 2308, 5, 2, 0, 0, 2308, 2310, 1, 0, 0, 0, 2309, 2304, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2320, 1, 0, 0, 0, 2311, 2312, 5, 209, 0, 0, 2312, 2317, 3, 88, 44, 0, 2313, 2314, 5, 3, 0, 0, 2314, 2316, 3, 88, 44, 0, 2315, 2313, 1, 0, 0, 0, 2316, 2319, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2321, 1, 0, 0, 0, 2319, 2317, 1, 0, 0, 0, 2320, 2311, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2331, 1, 0, 0, 0, 2322, 2323, 5, 65, 0, 0, 2323, 2328, 3, 90, 45, 0, 2324, 2325, 5, 3, 0, 0, 2325, 2327, 3, 90, 45, 0, 2326, 2324, 1, 0, 0, 0, 2327, 2330, 1, 0, 0, 0, 2328, 2326, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2332, 1, 0, 0, 0, 2330, 2328, 1, 0, 0, 0, 2331, 2322, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 147, 1, 0, 0, 0, 2333, 2334, 5, 176, 0, 0, 2334, 2358, 3, 150, 75, 0, 2335, 2336, 5, 193, 0, 0, 2336, 2358, 3, 150, 75, 0, 2337, 2338, 5, 98, 0, 0, 2338, 2358, 3, 150, 75, 0, 2339, 2340, 5, 176, 0, 0, 2340, 2341, 5, 31, 0, 0, 2341, 2342, 3, 150, 75, 0, 2342, 2343, 5, 23, 0, 0, 2343, 2344, 3, 150, 75, 0, 2344, 2358, 1, 0, 0, 0, 2345, 2346, 5, 193, 0, 0, 2346, 2347, 5, 31, 0, 0, 2347, 2348, 3, 150, 75, 0, 2348, 2349, 5, 23, 0, 0, 2349, 2350, 3, 150, 75, 0, 2350, 2358, 1, 0, 0, 0, 2351, 2352, 5, 98, 0, 0, 2352, 2353, 5, 31, 0, 0, 2353, 2354, 3, 150, 75, 0, 2354, 2355, 5, 23, 0, 0, 2355, 2356, 3, 150, 75, 0, 2356, 2358, 1, 0, 0, 0, 2357, 2333, 1, 0, 0, 0, 2357, 2335, 1, 0, 0, 0, 2357, 2337, 1, 0, 0, 0, 2357, 2339, 1, 0, 0, 0, 2357, 2345, 1, 0, 0, 0, 2357, 2351, 1, 0, 0, 0, 2358, 149, 1, 0, 0, 0, 2359, 2360, 5, 227, 0, 0, 2360, 2369, 5, 171, 0, 0, 2361, 2362, 5, 227, 0, 0, 2362, 2369, 5, 85, 0, 0, 2363, 2364, 5, 47, 0, 0, 2364, 2369, 5, 192, 0, 0, 2365, 2366, 3, 102, 51, 0, 2366, 2367, 7, 21, 0, 0, 2367, 2369, 1, 0, 0, 0, 2368, 2359, 1, 0, 0, 0, 2368, 2361, 1, 0, 0, 0, 2368, 2363, 1, 0, 0, 0, 2368, 2365, 1, 0, 0, 0, 2369, 151, 1, 0, 0, 0, 2370, 2371, 6, 76, -1, 0, 2371, 2373, 3, 154, 77, 0, 2372, 2374, 3, 156, 78, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2382, 1, 0, 0, 0, 2375, 2376, 10, 2, 0, 0, 2376, 2381, 3, 152, 76, 3, 2377, 2378, 10, 1, 0, 0, 2378, 2379, 5, 9, 0, 0, 2379, 2381, 3, 152, 76, 2, 2380, 2375, 1, 0, 0, 0, 2380, 2377, 1, 0, 0, 0, 2381, 2384, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 153, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2385, 2411, 3, 212, 106, 0, 2386, 2387, 5, 1, 0, 0, 2387, 2411, 5, 2, 0, 0, 2388, 2389, 5, 169, 0, 0, 2389, 2390, 5, 1, 0, 0, 2390, 2395, 3, 152, 76, 0, 2391, 2392, 5, 3, 0, 0, 2392, 2394, 3, 152, 76, 0, 2393, 2391, 1, 0, 0, 0, 2394, 2397, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2398, 1, 0, 0, 0, 2397, 2395, 1, 0, 0, 0, 2398, 2399, 5, 2, 0, 0, 2399, 2411, 1, 0, 0, 0, 2400, 2401, 5, 1, 0, 0, 2401, 2402, 3, 152, 76, 0, 2402, 2403, 5, 2, 0, 0, 2403, 2411, 1, 0, 0, 0, 2404, 2411, 5, 10, 0, 0, 2405, 2411, 5, 11, 0, 0, 2406, 2407, 5, 12, 0, 0, 2407, 2408, 3, 152, 76, 0, 2408, 2409, 5, 13, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2385, 1, 0, 0, 0, 2410, 2386, 1, 0, 0, 0, 2410, 2388, 1, 0, 0, 0, 2410, 2400, 1, 0, 0, 0, 2410, 2404, 1, 0, 0, 0, 2410, 2405, 1, 0, 0, 0, 2410, 2406, 1, 0, 0, 0, 2411, 155, 1, 0, 0, 0, 2412, 2414, 5, 257, 0, 0, 2413, 2415, 5, 261, 0, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2443, 1, 0, 0, 0, 2416, 2418, 5, 255, 0, 0, 2417, 2419, 5, 261, 0, 0, 2418, 2417, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2443, 1, 0, 0, 0, 2420, 2422, 5, 261, 0, 0, 2421, 2423, 5, 261, 0, 0, 2422, 2421, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2443, 1, 0, 0, 0, 2424, 2425, 5, 14, 0, 0, 2425, 2426, 5, 265, 0, 0, 2426, 2428, 5, 15, 0, 0, 2427, 2429, 5, 261, 0, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2443, 1, 0, 0, 0, 2430, 2432, 5, 14, 0, 0, 2431, 2433, 5, 265, 0, 0, 2432, 2431, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2436, 5, 3, 0, 0, 2435, 2437, 5, 265, 0, 0, 2436, 2435, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2440, 5, 15, 0, 0, 2439, 2441, 5, 261, 0, 0, 2440, 2439, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2443, 1, 0, 0, 0, 2442, 2412, 1, 0, 0, 0, 2442, 2416, 1, 0, 0, 0, 2442, 2420, 1, 0, 0, 0, 2442, 2424, 1, 0, 0, 0, 2442, 2430, 1, 0, 0, 0, 2443, 157, 1, 0, 0, 0, 2444, 2445, 3, 212, 106, 0, 2445, 2446, 5, 249, 0, 0, 2446, 2447, 3, 102, 51, 0, 2447, 159, 1, 0, 0, 0, 2448, 2449, 5, 87, 0, 0, 2449, 2453, 7, 22, 0, 0, 2450, 2451, 5, 225, 0, 0, 2451, 2453, 7, 23, 0, 0, 2452, 2448, 1, 0, 0, 0, 2452, 2450, 1, 0, 0, 0, 2453, 161, 1, 0, 0, 0, 2454, 2455, 5, 115, 0, 0, 2455, 2456, 5, 121, 0, 0, 2456, 2460, 3, 164, 82, 0, 2457, 2458, 5, 177, 0, 0, 2458, 2460, 7, 24, 0, 0, 2459, 2454, 1, 0, 0, 0, 2459, 2457, 1, 0, 0, 0, 2460, 163, 1, 0, 0, 0, 2461, 2462, 5, 177, 0, 0, 2462, 2469, 5, 228, 0, 0, 2463, 2464, 5, 177, 0, 0, 2464, 2469, 5, 42, 0, 0, 2465, 2466, 5, 181, 0, 0, 2466, 2469, 5, 177, 0, 0, 2467, 2469, 5, 201, 0, 0, 2468, 2461, 1, 0, 0, 0, 2468, 2463, 1, 0, 0, 0, 2468, 2465, 1, 0, 0, 0, 2468, 2467, 1, 0, 0, 0, 2469, 165, 1, 0, 0, 0, 2470, 2476, 3, 102, 51, 0, 2471, 2472, 3, 212, 106, 0, 2472, 2473, 5, 16, 0, 0, 2473, 2474, 3, 102, 51, 0, 2474, 2476, 1, 0, 0, 0, 2475, 2470, 1, 0, 0, 0, 2475, 2471, 1, 0, 0, 0, 2476, 167, 1, 0, 0, 0, 2477, 2478, 3, 212, 106, 0, 2478, 2479, 5, 4, 0, 0, 2479, 2480, 3, 212, 106, 0, 2480, 2483, 1, 0, 0, 0, 2481, 2483, 3, 212, 106, 0, 2482, 2477, 1, 0, 0, 0, 2482, 2481, 1, 0, 0, 0, 2483, 169, 1, 0, 0, 0, 2484, 2489, 3, 168, 84, 0, 2485, 2486, 5, 3, 0, 0, 2486, 2488, 3, 168, 84, 0, 2487, 2485, 1, 0, 0, 0, 2488, 2491, 1, 0, 0, 0, 2489, 2487, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 171, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2492, 2493, 7, 25, 0, 0, 2493, 173, 1, 0, 0, 0, 2494, 2497, 3, 176, 88, 0, 2495, 2497, 3, 180, 90, 0, 2496, 2494, 1, 0, 0, 0, 2496, 2495, 1, 0, 0, 0, 2497, 175, 1, 0, 0, 0, 2498, 2499, 3, 184, 92, 0, 2499, 177, 1, 0, 0, 0, 2500, 2501, 3, 184, 92, 0, 2501, 179, 1, 0, 0, 0, 2502, 2503, 3, 186, 93, 0, 2503, 181, 1, 0, 0, 0, 2504, 2505, 3, 186, 93, 0, 2505, 183, 1, 0, 0, 0, 2506, 2518, 3, 212, 106, 0, 2507, 2508, 3, 212, 106, 0, 2508, 2509, 5, 4, 0, 0, 2509, 2510, 3, 212, 106, 0, 2510, 2518, 1, 0, 0, 0, 2511, 2512, 3, 212, 106, 0, 2512, 2513, 5, 4, 0, 0, 2513, 2514, 3, 212, 106, 0, 2514, 2515, 5, 4, 0, 0, 2515, 2516, 3, 212, 106, 0, 2516, 2518, 1, 0, 0, 0, 2517, 2506, 1, 0, 0, 0, 2517, 2507, 1, 0, 0, 0, 2517, 2511, 1, 0, 0, 0, 2518, 185, 1, 0, 0, 0, 2519, 2531, 3, 212, 106, 0, 2520, 2521, 3, 212, 106, 0, 2521, 2522, 5, 4, 0, 0, 2522, 2523, 3, 212, 106, 0, 2523, 2531, 1, 0, 0, 0, 2524, 2525, 3, 212, 106, 0, 2525, 2526, 5, 4, 0, 0, 2526, 2527, 3, 212, 106, 0, 2527, 2528, 5, 4, 0, 0, 2528, 2529, 3, 212, 106, 0, 2529, 2531, 1, 0, 0, 0, 2530, 2519, 1, 0, 0, 0, 2530, 2520, 1, 0, 0, 0, 2530, 2524, 1, 0, 0, 0, 2531, 187, 1, 0, 0, 0, 2532, 2533, 3, 192, 96, 0, 2533, 189, 1, 0, 0, 0, 2534, 2535, 3, 192, 96, 0, 2535, 191, 1, 0, 0, 0, 2536, 2542, 3, 212, 106, 0, 2537, 2538, 3, 212, 106, 0, 2538, 2539, 5, 4, 0, 0, 2539, 2540, 3, 212, 106, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2536, 1, 0, 0, 0, 2541, 2537, 1, 0, 0, 0, 2542, 193, 1, 0, 0, 0, 2543, 2544, 3, 212, 106, 0, 2544, 195, 1, 0, 0, 0, 2545, 2546, 3, 212, 106, 0, 2546, 197, 1, 0, 0, 0, 2547, 2548, 3, 204, 102, 0, 2548, 199, 1, 0, 0, 0, 2549, 2552, 3, 204, 102, 0, 2550, 2552, 4, 100, 14, 0, 2551, 2549, 1, 0, 0, 0, 2551, 2550, 1, 0, 0, 0, 2552, 201, 1, 0, 0, 0, 2553, 2554, 3, 212, 106, 0, 2554, 203, 1, 0, 0, 0, 2555, 2560, 3, 212, 106, 0, 2556, 2557, 5, 4, 0, 0, 2557, 2559, 3, 212, 106, 0, 2558, 2556, 1, 0, 0, 0, 2559, 2562, 1, 0, 0, 0, 2560, 2558, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 205, 1, 0, 0, 0, 2562, 2560, 1, 0, 0, 0, 2563, 2567, 3, 208, 104, 0, 2564, 2567, 5, 55, 0, 0, 2565, 2567, 5, 51, 0, 0, 2566, 2563, 1, 0, 0, 0, 2566, 2564, 1, 0, 0, 0, 2566, 2565, 1, 0, 0, 0, 2567, 207, 1, 0, 0, 0, 2568, 2574, 3, 212, 106, 0, 2569, 2570, 5, 234, 0, 0, 2570, 2574, 3, 212, 106, 0, 2571, 2572, 5, 188, 0, 0, 2572, 2574, 3, 212, 106, 0, 2573, 2568, 1, 0, 0, 0, 2573, 2569, 1, 0, 0, 0, 2573, 2571, 1, 0, 0, 0, 2574, 209, 1, 0, 0, 0, 2575, 2580, 3, 212, 106, 0, 2576, 2577, 5, 3, 0, 0, 2577, 2579, 3, 212, 106, 0, 2578, 2576, 1, 0, 0, 0, 2579, 2582, 1, 0, 0, 0, 2580, 2578, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 211, 1, 0, 0, 0, 2582, 2580, 1, 0, 0, 0, 2583, 2589, 5, 268, 0, 0, 2584, 2589, 5, 270, 0, 0, 2585, 2589, 3, 216, 108, 0, 2586, 2589, 5, 271, 0, 0, 2587, 2589, 5, 269, 0, 0, 2588, 2583, 1, 0, 0, 0, 2588, 2584, 1, 0, 0, 0, 2588, 2585, 1, 0, 0, 0, 2588, 2586, 1, 0, 0, 0, 2588, 2587, 1, 0, 0, 0, 2589, 213, 1, 0, 0, 0, 2590, 2592, 5, 256, 0, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2603, 5, 266, 0, 0, 2594, 2596, 5, 256, 0, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2603, 5, 267, 0, 0, 2598, 2600, 5, 256, 0, 0, 2599, 2598, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2603, 5, 265, 0, 0, 2602, 2591, 1, 0, 0, 0, 2602, 2595, 1, 0, 0, 0, 2602, 2599, 1, 0, 0, 0, 2603, 215, 1, 0, 0, 0, 2604, 2605, 7, 26, 0, 0, 2605, 217, 1, 0, 0, 0, 340, 221, 232, 236, 240, 244, 248, 252, 262, 267, 271, 277, 281, 302, 306, 310, 314, 322, 326, 329, 336, 345, 351, 355, 361, 368, 377, 386, 400, 409, 415, 422, 432, 439, 447, 455, 484, 487, 490, 494, 500, 505, 512, 517, 521, 529, 535, 539, 553, 561, 580, 605, 608, 618, 622, 635, 641, 646, 650, 656, 665, 671, 675, 682, 686, 694, 699, 703, 707, 710, 717, 725, 730, 734, 738, 741, 750, 757, 762, 766, 770, 773, 781, 784, 788, 791, 799, 804, 828, 834, 836, 842, 848, 850, 858, 860, 866, 872, 874, 889, 894, 901, 913, 915, 923, 925, 943, 946, 950, 954, 972, 975, 991, 1001, 1006, 1012, 1015, 1024, 1036, 1039, 1045, 1052, 1057, 1063, 1067, 1071, 1077, 1088, 1097, 1107, 1110, 1115, 1117, 1124, 1130, 1132, 1136, 1146, 1152, 1155, 1157, 1169, 1176, 1180, 1183, 1187, 1191, 1198, 1207, 1210, 1214, 1219, 1223, 1231, 1234, 1237, 1244, 1255, 1258, 1268, 1271, 1282, 1287, 1295, 1298, 1302, 1306, 1315, 1324, 1327, 1336, 1339, 1342, 1346, 1357, 1360, 1363, 1370, 1373, 1392, 1396, 1400, 1404, 1408, 1412, 1414, 1425, 1430, 1439, 1453, 1456, 1465, 1468, 1476, 1479, 1482, 1487, 1490, 1502, 1505, 1513, 1518, 1522, 1524, 1526, 1541, 1543, 1554, 1575, 1585, 1596, 1600, 1602, 1610, 1621, 1632, 1649, 1655, 1666, 1673, 1677, 1685, 1687, 1700, 1708, 1717, 1723, 1731, 1737, 1741, 1746, 1751, 1757, 1771, 1773, 1803, 1814, 1824, 1827, 1830, 1835, 1842, 1845, 1854, 1857, 1861, 1864, 1867, 1882, 1885, 1904, 1908, 1916, 1920, 1945, 1948, 1957, 1963, 1969, 1975, 1988, 1997, 2019, 2022, 2025, 2035, 2037, 2046, 2052, 2054, 2062, 2072, 2078, 2092, 2101, 2108, 2113, 2120, 2130, 2135, 2142, 2168, 2173, 2175, 2182, 2186, 2193, 2197, 2214, 2229, 2236, 2245, 2255, 2260, 2269, 2274, 2282, 2290, 2293, 2299, 2302, 2309, 2317, 2320, 2328, 2331, 2357, 2368, 2373, 2380, 2382, 2395, 2410, 2414, 2418, 2422, 2428, 2432, 2436, 2440, 2442, 2452, 2459, 2468, 2475, 2482, 2489, 2496, 2517, 2530, 2541, 2551, 2560, 2566, 2573, 2580, 2588, 2591, 2595, 2599, 2602] \ No newline at end of file diff --git a/src/lib/trinosql/TrinoSqlLexer.ts b/src/lib/trinosql/TrinoSqlLexer.ts index c6f1fa9..edf898a 100644 --- a/src/lib/trinosql/TrinoSqlLexer.ts +++ b/src/lib/trinosql/TrinoSqlLexer.ts @@ -4,6 +4,9 @@ import * as antlr from "antlr4ng"; import { Token } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + export class TrinoSqlLexer extends antlr.Lexer { public static readonly T__0 = 1; public static readonly T__1 = 2; diff --git a/src/lib/trinosql/TrinoSqlListener.ts b/src/lib/trinosql/TrinoSqlListener.ts index eaa37db..f9f3c46 100644 --- a/src/lib/trinosql/TrinoSqlListener.ts +++ b/src/lib/trinosql/TrinoSqlListener.ts @@ -3,6 +3,9 @@ import { ErrorNode, ParseTreeListener, ParserRuleContext, TerminalNode } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./TrinoSqlParser.js"; import { StatementsContext } from "./TrinoSqlParser.js"; import { StandaloneClauseContext } from "./TrinoSqlParser.js"; @@ -83,7 +86,7 @@ import { UpdateContext } from "./TrinoSqlParser.js"; import { MergeContext } from "./TrinoSqlParser.js"; import { ShowTableCommentContext } from "./TrinoSqlParser.js"; import { ShowColumnCommentContext } from "./TrinoSqlParser.js"; -import { QueryContext } from "./TrinoSqlParser.js"; +import { QueryStatementContext } from "./TrinoSqlParser.js"; import { WithContext } from "./TrinoSqlParser.js"; import { TableElementContext } from "./TrinoSqlParser.js"; import { ColumnDefinitionContext } from "./TrinoSqlParser.js"; @@ -1233,15 +1236,17 @@ export class TrinoSqlListener implements ParseTreeListener { */ exitShowColumnComment?: (ctx: ShowColumnCommentContext) => void; /** - * Enter a parse tree produced by `TrinoSqlParser.query`. + * Enter a parse tree produced by the `queryStatement` + * labeled alternative in `TrinoSqlParser.query`. * @param ctx the parse tree */ - enterQuery?: (ctx: QueryContext) => void; + enterQueryStatement?: (ctx: QueryStatementContext) => void; /** - * Exit a parse tree produced by `TrinoSqlParser.query`. + * Exit a parse tree produced by the `queryStatement` + * labeled alternative in `TrinoSqlParser.query`. * @param ctx the parse tree */ - exitQuery?: (ctx: QueryContext) => void; + exitQueryStatement?: (ctx: QueryStatementContext) => void; /** * Enter a parse tree produced by `TrinoSqlParser.with`. * @param ctx the parse tree diff --git a/src/lib/trinosql/TrinoSqlParser.ts b/src/lib/trinosql/TrinoSqlParser.ts index 6107995..ea0deda 100644 --- a/src/lib/trinosql/TrinoSqlParser.ts +++ b/src/lib/trinosql/TrinoSqlParser.ts @@ -11,7 +11,10 @@ import { TrinoSqlVisitor } from "./TrinoSqlVisitor.js"; type int = number; -export class TrinoSqlParser extends antlr.Parser { +import SQLParserBase from '../SQLParserBase'; + + +export class TrinoSqlParser extends SQLParserBase { public static readonly T__0 = 1; public static readonly T__1 = 2; public static readonly T__2 = 3; @@ -3358,6 +3361,7 @@ export class TrinoSqlParser extends antlr.Parser { this.enterRule(localContext, 18, TrinoSqlParser.RULE_query); let _la: number; try { + localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 1039; @@ -4668,8 +4672,8 @@ export class TrinoSqlParser extends antlr.Parser { this.match(TrinoSqlParser.T__0); this.state = 1258; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 2069757954) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 1476117503) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 2120217677) !== 0) || ((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & 4252345787) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 1325399551) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3153981439) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4286054271) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 3237637037) !== 0) || ((((_la - 261)) & ~0x1F) === 0 && ((1 << (_la - 261)) & 2047) !== 0)) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { + case 1: { this.state = 1250; this.groupingTerm(); @@ -4690,8 +4694,8 @@ export class TrinoSqlParser extends antlr.Parser { _la = this.tokenStream.LA(1); } } + break; } - this.state = 1260; this.match(TrinoSqlParser.T__1); } @@ -4706,8 +4710,8 @@ export class TrinoSqlParser extends antlr.Parser { this.match(TrinoSqlParser.T__0); this.state = 1271; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 2069757954) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 1476117503) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 2120217677) !== 0) || ((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & 4252345787) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 1325399551) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3153981439) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4286054271) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 3237637037) !== 0) || ((((_la - 261)) & ~0x1F) === 0 && ((1 << (_la - 261)) & 2047) !== 0)) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { + case 1: { this.state = 1263; this.groupingTerm(); @@ -4728,8 +4732,8 @@ export class TrinoSqlParser extends antlr.Parser { _la = this.tokenStream.LA(1); } } + break; } - this.state = 1273; this.match(TrinoSqlParser.T__1); } @@ -4797,8 +4801,8 @@ export class TrinoSqlParser extends antlr.Parser { this.match(TrinoSqlParser.T__0); this.state = 1298; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 2069757954) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 1476117503) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 2120217677) !== 0) || ((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & 4252345787) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 1325399551) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3153981439) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4286054271) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 3237637037) !== 0) || ((((_la - 261)) & ~0x1F) === 0 && ((1 << (_la - 261)) & 2047) !== 0)) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + case 1: { this.state = 1290; this.groupingTerm(); @@ -4819,8 +4823,8 @@ export class TrinoSqlParser extends antlr.Parser { _la = this.tokenStream.LA(1); } } + break; } - this.state = 1300; this.match(TrinoSqlParser.T__1); } @@ -10958,10 +10962,25 @@ export class TrinoSqlParser extends antlr.Parser { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 200, TrinoSqlParser.RULE_columnName); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2549; - this.qualifiedName(); + this.state = 2551; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2549; + this.qualifiedName(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2550; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + } + break; } } catch (re) { @@ -10984,7 +11003,7 @@ export class TrinoSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2551; + this.state = 2553; this.identifier(); } } @@ -11009,25 +11028,25 @@ export class TrinoSqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2553; + this.state = 2555; this.identifier(); - this.state = 2558; + this.state = 2560; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2554; + this.state = 2556; this.match(TrinoSqlParser.T__3); - this.state = 2555; + this.state = 2557; this.identifier(); } } } - this.state = 2560; + this.state = 2562; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); } } } @@ -11049,7 +11068,7 @@ export class TrinoSqlParser extends antlr.Parser { let localContext = new GrantorContext(this.context, this.state); this.enterRule(localContext, 206, TrinoSqlParser.RULE_grantor); try { - this.state = 2564; + this.state = 2566; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ADD: @@ -11218,7 +11237,7 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new SpecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2561; + this.state = 2563; this.principal(); } break; @@ -11226,7 +11245,7 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new CurrentUserGrantorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2562; + this.state = 2564; this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -11234,7 +11253,7 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new CurrentRoleGrantorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2563; + this.state = 2565; this.match(TrinoSqlParser.KW_CURRENT_ROLE); } break; @@ -11260,14 +11279,14 @@ export class TrinoSqlParser extends antlr.Parser { let localContext = new PrincipalContext(this.context, this.state); this.enterRule(localContext, 208, TrinoSqlParser.RULE_principal); try { - this.state = 2571; + this.state = 2573; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: localContext = new UnspecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2566; + this.state = 2568; this.identifier(); } break; @@ -11275,9 +11294,9 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2567; + this.state = 2569; this.match(TrinoSqlParser.KW_USER); - this.state = 2568; + this.state = 2570; this.identifier(); } break; @@ -11285,9 +11304,9 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2569; + this.state = 2571; this.match(TrinoSqlParser.KW_ROLE); - this.state = 2570; + this.state = 2572; this.identifier(); } break; @@ -11314,21 +11333,21 @@ export class TrinoSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2573; + this.state = 2575; this.identifier(); - this.state = 2578; + this.state = 2580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2574; + this.state = 2576; this.match(TrinoSqlParser.T__2); - this.state = 2575; + this.state = 2577; this.identifier(); } } - this.state = 2580; + this.state = 2582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11352,14 +11371,14 @@ export class TrinoSqlParser extends antlr.Parser { let localContext = new IdentifierContext(this.context, this.state); this.enterRule(localContext, 212, TrinoSqlParser.RULE_identifier); try { - this.state = 2586; + this.state = 2588; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2581; + this.state = 2583; this.match(TrinoSqlParser.IDENTIFIER); } break; @@ -11367,7 +11386,7 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2582; + this.state = 2584; this.match(TrinoSqlParser.QUOTED_IDENTIFIER); } break; @@ -11533,7 +11552,7 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2583; + this.state = 2585; this.nonReserved(); } break; @@ -11541,7 +11560,7 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2584; + this.state = 2586; this.match(TrinoSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -11549,7 +11568,7 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2585; + this.state = 2587; this.match(TrinoSqlParser.DIGIT_IDENTIFIER); } break; @@ -11576,24 +11595,24 @@ export class TrinoSqlParser extends antlr.Parser { this.enterRule(localContext, 214, TrinoSqlParser.RULE_number); let _la: number; try { - this.state = 2600; + this.state = 2602; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2589; + this.state = 2591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2588; + this.state = 2590; this.match(TrinoSqlParser.MINUS); } } - this.state = 2591; + this.state = 2593; this.match(TrinoSqlParser.DECIMAL_VALUE); } break; @@ -11601,17 +11620,17 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2593; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2592; + this.state = 2594; this.match(TrinoSqlParser.MINUS); } } - this.state = 2595; + this.state = 2597; this.match(TrinoSqlParser.DOUBLE_VALUE); } break; @@ -11619,17 +11638,17 @@ export class TrinoSqlParser extends antlr.Parser { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2597; + this.state = 2599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2596; + this.state = 2598; this.match(TrinoSqlParser.MINUS); } } - this.state = 2599; + this.state = 2601; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -11656,7 +11675,7 @@ export class TrinoSqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2602; + this.state = 2604; _la = this.tokenStream.LA(1); if(!(((((_la - 17)) & ~0x1F) === 0 && ((1 << (_la - 17)) & 1140014511) !== 0) || ((((_la - 56)) & ~0x1F) === 0 && ((1 << (_la - 56)) & 3192429231) !== 0) || ((((_la - 90)) & ~0x1F) === 0 && ((1 << (_la - 90)) & 3134381375) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3162472435) !== 0) || ((((_la - 155)) & ~0x1F) === 0 && ((1 << (_la - 155)) & 4286316499) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4009750519) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 525170103) !== 0))) { this.errorHandler.recoverInline(this); @@ -11698,6 +11717,8 @@ export class TrinoSqlParser extends antlr.Parser { return this.type_sempred(localContext as TypeContext, predIndex); case 76: return this.rowPattern_sempred(localContext as RowPatternContext, predIndex); + case 100: + return this.columnName_sempred(localContext as ColumnNameContext, predIndex); } return true; } @@ -11764,9 +11785,16 @@ export class TrinoSqlParser extends antlr.Parser { } return true; } + private columnName_sempred(localContext: ColumnNameContext | null, predIndex: number): boolean { + switch (predIndex) { + case 14: + return this.shouldMatchEmpty(); + } + return true; + } public static readonly _serializedATN: number[] = [ - 4,1,277,2605,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,277,2607,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -11980,192 +12008,192 @@ export class TrinoSqlParser extends antlr.Parser { 1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,2518, 8,92,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,3,93, 2531,8,93,1,94,1,94,1,95,1,95,1,96,1,96,1,96,1,96,1,96,3,96,2542, - 8,96,1,97,1,97,1,98,1,98,1,99,1,99,1,100,1,100,1,101,1,101,1,102, - 1,102,1,102,5,102,2557,8,102,10,102,12,102,2560,9,102,1,103,1,103, - 1,103,3,103,2565,8,103,1,104,1,104,1,104,1,104,1,104,3,104,2572, - 8,104,1,105,1,105,1,105,5,105,2577,8,105,10,105,12,105,2580,9,105, - 1,106,1,106,1,106,1,106,1,106,3,106,2587,8,106,1,107,3,107,2590, - 8,107,1,107,1,107,3,107,2594,8,107,1,107,1,107,3,107,2598,8,107, - 1,107,3,107,2601,8,107,1,108,1,108,1,108,0,7,42,68,104,108,110,132, - 152,109,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40, - 42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84, - 86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120, - 122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152, - 154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184, - 186,188,190,192,194,196,198,200,202,204,206,208,210,212,214,216, - 0,27,2,0,34,34,185,185,2,0,61,61,112,112,2,0,88,88,103,103,2,0,75, - 75,104,104,1,0,192,193,2,0,84,84,139,139,2,0,261,261,265,265,2,0, - 74,74,229,229,2,0,27,27,63,63,2,0,84,84,118,118,2,0,20,20,66,66, - 2,0,30,30,211,211,2,0,105,105,199,199,1,0,255,256,1,0,257,259,2, - 0,83,83,194,194,1,0,249,254,3,0,20,20,24,24,206,206,2,0,80,80,223, - 223,5,0,58,58,100,100,136,137,197,197,247,247,1,0,140,143,2,0,85, - 85,171,171,3,0,95,95,117,117,215,215,4,0,67,67,113,113,127,127,236, - 236,2,0,155,155,246,246,4,0,62,62,108,108,200,200,232,232,49,0,17, - 20,22,22,24,25,27,30,33,34,37,42,47,47,56,59,61,61,63,63,65,65,67, - 68,71,71,75,75,78,78,81,85,87,87,90,95,98,98,100,102,104,105,107, - 107,110,110,112,113,115,115,117,119,121,121,123,124,127,137,139, - 145,149,152,154,156,159,159,161,172,174,177,179,186,188,190,192, - 199,201,211,213,215,217,222,224,225,227,228,230,230,232,234,236, - 236,238,239,242,242,244,248,3005,0,221,1,0,0,0,2,226,1,0,0,0,4,232, - 1,0,0,0,6,234,1,0,0,0,8,238,1,0,0,0,10,242,1,0,0,0,12,246,1,0,0, - 0,14,250,1,0,0,0,16,1036,1,0,0,0,18,1039,1,0,0,0,20,1043,1,0,0,0, - 22,1057,1,0,0,0,24,1059,1,0,0,0,26,1073,1,0,0,0,28,1079,1,0,0,0, - 30,1083,1,0,0,0,32,1091,1,0,0,0,34,1097,1,0,0,0,36,1099,1,0,0,0, - 38,1136,1,0,0,0,40,1138,1,0,0,0,42,1140,1,0,0,0,44,1176,1,0,0,0, - 46,1180,1,0,0,0,48,1189,1,0,0,0,50,1237,1,0,0,0,52,1287,1,0,0,0, - 54,1302,1,0,0,0,56,1306,1,0,0,0,58,1308,1,0,0,0,60,1315,1,0,0,0, - 62,1344,1,0,0,0,64,1353,1,0,0,0,66,1373,1,0,0,0,68,1375,1,0,0,0, - 70,1414,1,0,0,0,72,1430,1,0,0,0,74,1432,1,0,0,0,76,1441,1,0,0,0, - 78,1443,1,0,0,0,80,1528,1,0,0,0,82,1543,1,0,0,0,84,1554,1,0,0,0, - 86,1575,1,0,0,0,88,1577,1,0,0,0,90,1590,1,0,0,0,92,1594,1,0,0,0, - 94,1604,1,0,0,0,96,1615,1,0,0,0,98,1626,1,0,0,0,100,1666,1,0,0,0, - 102,1668,1,0,0,0,104,1677,1,0,0,0,106,1751,1,0,0,0,108,1757,1,0, - 0,0,110,2025,1,0,0,0,112,2040,1,0,0,0,114,2046,1,0,0,0,116,2054, - 1,0,0,0,118,2062,1,0,0,0,120,2064,1,0,0,0,122,2066,1,0,0,0,124,2068, - 1,0,0,0,126,2070,1,0,0,0,128,2080,1,0,0,0,130,2082,1,0,0,0,132,2175, - 1,0,0,0,134,2193,1,0,0,0,136,2197,1,0,0,0,138,2199,1,0,0,0,140,2204, - 1,0,0,0,142,2274,1,0,0,0,144,2276,1,0,0,0,146,2293,1,0,0,0,148,2357, - 1,0,0,0,150,2368,1,0,0,0,152,2370,1,0,0,0,154,2410,1,0,0,0,156,2442, - 1,0,0,0,158,2444,1,0,0,0,160,2452,1,0,0,0,162,2459,1,0,0,0,164,2468, - 1,0,0,0,166,2475,1,0,0,0,168,2482,1,0,0,0,170,2484,1,0,0,0,172,2492, - 1,0,0,0,174,2496,1,0,0,0,176,2498,1,0,0,0,178,2500,1,0,0,0,180,2502, - 1,0,0,0,182,2504,1,0,0,0,184,2517,1,0,0,0,186,2530,1,0,0,0,188,2532, - 1,0,0,0,190,2534,1,0,0,0,192,2541,1,0,0,0,194,2543,1,0,0,0,196,2545, - 1,0,0,0,198,2547,1,0,0,0,200,2549,1,0,0,0,202,2551,1,0,0,0,204,2553, - 1,0,0,0,206,2564,1,0,0,0,208,2571,1,0,0,0,210,2573,1,0,0,0,212,2586, - 1,0,0,0,214,2600,1,0,0,0,216,2602,1,0,0,0,218,220,3,2,1,0,219,218, - 1,0,0,0,220,223,1,0,0,0,221,219,1,0,0,0,221,222,1,0,0,0,222,224, - 1,0,0,0,223,221,1,0,0,0,224,225,5,0,0,1,225,1,1,0,0,0,226,227,3, - 6,3,0,227,3,1,0,0,0,228,233,3,8,4,0,229,233,3,10,5,0,230,233,3,12, - 6,0,231,233,3,14,7,0,232,228,1,0,0,0,232,229,1,0,0,0,232,230,1,0, - 0,0,232,231,1,0,0,0,233,5,1,0,0,0,234,236,3,16,8,0,235,237,5,272, - 0,0,236,235,1,0,0,0,236,237,1,0,0,0,237,7,1,0,0,0,238,240,3,102, - 51,0,239,241,5,272,0,0,240,239,1,0,0,0,240,241,1,0,0,0,241,9,1,0, - 0,0,242,244,3,170,85,0,243,245,5,272,0,0,244,243,1,0,0,0,244,245, - 1,0,0,0,245,11,1,0,0,0,246,248,3,132,66,0,247,249,5,272,0,0,248, - 247,1,0,0,0,248,249,1,0,0,0,249,13,1,0,0,0,250,252,3,152,76,0,251, - 253,5,272,0,0,252,251,1,0,0,0,252,253,1,0,0,0,253,15,1,0,0,0,254, - 1037,3,18,9,0,255,256,5,233,0,0,256,1037,3,188,94,0,257,258,5,44, - 0,0,258,262,5,195,0,0,259,260,5,101,0,0,260,261,5,147,0,0,261,263, - 5,77,0,0,262,259,1,0,0,0,262,263,1,0,0,0,263,264,1,0,0,0,264,267, - 3,190,95,0,265,266,5,29,0,0,266,268,3,208,104,0,267,265,1,0,0,0, - 267,268,1,0,0,0,268,271,1,0,0,0,269,270,5,243,0,0,270,272,3,28,14, - 0,271,269,1,0,0,0,271,272,1,0,0,0,272,1037,1,0,0,0,273,274,5,69, - 0,0,274,277,5,195,0,0,275,276,5,101,0,0,276,278,5,77,0,0,277,275, - 1,0,0,0,277,278,1,0,0,0,278,279,1,0,0,0,279,281,3,188,94,0,280,282, - 7,0,0,0,281,280,1,0,0,0,281,282,1,0,0,0,282,1037,1,0,0,0,283,284, - 5,21,0,0,284,285,5,195,0,0,285,286,3,188,94,0,286,287,5,180,0,0, - 287,288,5,220,0,0,288,289,3,190,95,0,289,1037,1,0,0,0,290,291,5, - 21,0,0,291,292,5,195,0,0,292,293,3,188,94,0,293,294,5,203,0,0,294, - 295,5,29,0,0,295,296,3,208,104,0,296,1037,1,0,0,0,297,298,5,44,0, - 0,298,302,5,212,0,0,299,300,5,101,0,0,300,301,5,147,0,0,301,303, - 5,77,0,0,302,299,1,0,0,0,302,303,1,0,0,0,303,304,1,0,0,0,304,306, - 3,178,89,0,305,307,3,94,47,0,306,305,1,0,0,0,306,307,1,0,0,0,307, - 310,1,0,0,0,308,309,5,40,0,0,309,311,3,116,58,0,310,308,1,0,0,0, - 310,311,1,0,0,0,311,314,1,0,0,0,312,313,5,243,0,0,313,315,3,28,14, - 0,314,312,1,0,0,0,314,315,1,0,0,0,315,316,1,0,0,0,316,322,5,26,0, - 0,317,323,3,18,9,0,318,319,5,1,0,0,319,320,3,18,9,0,320,321,5,2, - 0,0,321,323,1,0,0,0,322,317,1,0,0,0,322,318,1,0,0,0,323,329,1,0, - 0,0,324,326,5,243,0,0,325,327,5,144,0,0,326,325,1,0,0,0,326,327, - 1,0,0,0,327,328,1,0,0,0,328,330,5,56,0,0,329,324,1,0,0,0,329,330, - 1,0,0,0,330,1037,1,0,0,0,331,332,5,44,0,0,332,336,5,212,0,0,333, - 334,5,101,0,0,334,335,5,147,0,0,335,337,5,77,0,0,336,333,1,0,0,0, - 336,337,1,0,0,0,337,338,1,0,0,0,338,339,3,178,89,0,339,340,5,1,0, - 0,340,345,3,22,11,0,341,342,5,3,0,0,342,344,3,22,11,0,343,341,1, - 0,0,0,344,347,1,0,0,0,345,343,1,0,0,0,345,346,1,0,0,0,346,348,1, - 0,0,0,347,345,1,0,0,0,348,351,5,2,0,0,349,350,5,40,0,0,350,352,3, - 116,58,0,351,349,1,0,0,0,351,352,1,0,0,0,352,355,1,0,0,0,353,354, - 5,243,0,0,354,356,3,28,14,0,355,353,1,0,0,0,355,356,1,0,0,0,356, - 1037,1,0,0,0,357,358,5,69,0,0,358,361,5,212,0,0,359,360,5,101,0, - 0,360,362,5,77,0,0,361,359,1,0,0,0,361,362,1,0,0,0,362,363,1,0,0, - 0,363,1037,3,176,88,0,364,365,5,108,0,0,365,366,5,111,0,0,366,368, - 3,176,88,0,367,369,3,96,48,0,368,367,1,0,0,0,368,369,1,0,0,0,369, - 370,1,0,0,0,370,371,3,18,9,0,371,1037,1,0,0,0,372,373,5,62,0,0,373, - 374,5,88,0,0,374,377,3,176,88,0,375,376,5,241,0,0,376,378,3,104, - 52,0,377,375,1,0,0,0,377,378,1,0,0,0,378,1037,1,0,0,0,379,380,5, - 222,0,0,380,381,5,212,0,0,381,1037,3,176,88,0,382,383,5,21,0,0,383, - 386,5,212,0,0,384,385,5,101,0,0,385,387,5,77,0,0,386,384,1,0,0,0, - 386,387,1,0,0,0,387,388,1,0,0,0,388,389,3,176,88,0,389,390,5,180, - 0,0,390,391,5,220,0,0,391,392,3,178,89,0,392,1037,1,0,0,0,393,394, - 5,40,0,0,394,395,5,153,0,0,395,396,5,212,0,0,396,397,3,176,88,0, - 397,400,5,114,0,0,398,401,3,116,58,0,399,401,5,148,0,0,400,398,1, - 0,0,0,400,399,1,0,0,0,401,1037,1,0,0,0,402,403,5,40,0,0,403,404, - 5,153,0,0,404,405,5,38,0,0,405,406,3,200,100,0,406,409,5,114,0,0, - 407,410,3,116,58,0,408,410,5,148,0,0,409,407,1,0,0,0,409,408,1,0, - 0,0,410,1037,1,0,0,0,411,412,5,21,0,0,412,415,5,212,0,0,413,414, - 5,101,0,0,414,416,5,77,0,0,415,413,1,0,0,0,415,416,1,0,0,0,416,417, - 1,0,0,0,417,418,3,176,88,0,418,419,5,180,0,0,419,422,5,38,0,0,420, - 421,5,101,0,0,421,423,5,77,0,0,422,420,1,0,0,0,422,423,1,0,0,0,423, - 424,1,0,0,0,424,425,3,200,100,0,425,426,5,220,0,0,426,427,3,202, - 101,0,427,1037,1,0,0,0,428,429,5,21,0,0,429,432,5,212,0,0,430,431, - 5,101,0,0,431,433,5,77,0,0,432,430,1,0,0,0,432,433,1,0,0,0,433,434, - 1,0,0,0,434,435,3,176,88,0,435,436,5,69,0,0,436,439,5,38,0,0,437, - 438,5,101,0,0,438,440,5,77,0,0,439,437,1,0,0,0,439,440,1,0,0,0,440, - 441,1,0,0,0,441,442,3,200,100,0,442,1037,1,0,0,0,443,444,5,21,0, - 0,444,447,5,212,0,0,445,446,5,101,0,0,446,448,5,77,0,0,447,445,1, - 0,0,0,447,448,1,0,0,0,448,449,1,0,0,0,449,450,3,176,88,0,450,451, - 5,17,0,0,451,455,5,38,0,0,452,453,5,101,0,0,453,454,5,147,0,0,454, - 456,5,77,0,0,455,452,1,0,0,0,455,456,1,0,0,0,456,457,1,0,0,0,457, - 458,3,24,12,0,458,1037,1,0,0,0,459,460,5,21,0,0,460,461,5,212,0, - 0,461,462,3,176,88,0,462,463,5,203,0,0,463,464,5,29,0,0,464,465, - 3,208,104,0,465,1037,1,0,0,0,466,467,5,21,0,0,467,468,5,212,0,0, - 468,469,3,176,88,0,469,470,5,203,0,0,470,471,5,175,0,0,471,472,3, - 30,15,0,472,1037,1,0,0,0,473,474,5,21,0,0,474,475,5,212,0,0,475, - 476,3,176,88,0,476,477,5,76,0,0,477,490,3,212,106,0,478,487,5,1, - 0,0,479,484,3,166,83,0,480,481,5,3,0,0,481,483,3,166,83,0,482,480, - 1,0,0,0,483,486,1,0,0,0,484,482,1,0,0,0,484,485,1,0,0,0,485,488, - 1,0,0,0,486,484,1,0,0,0,487,479,1,0,0,0,487,488,1,0,0,0,488,489, - 1,0,0,0,489,491,5,2,0,0,490,478,1,0,0,0,490,491,1,0,0,0,491,494, - 1,0,0,0,492,493,5,241,0,0,493,495,3,104,52,0,494,492,1,0,0,0,494, - 495,1,0,0,0,495,1037,1,0,0,0,496,497,5,22,0,0,497,500,3,176,88,0, - 498,499,5,243,0,0,499,501,3,28,14,0,500,498,1,0,0,0,500,501,1,0, - 0,0,501,1037,1,0,0,0,502,505,5,44,0,0,503,504,5,157,0,0,504,506, - 5,182,0,0,505,503,1,0,0,0,505,506,1,0,0,0,506,507,1,0,0,0,507,508, - 5,133,0,0,508,512,5,239,0,0,509,510,5,101,0,0,510,511,5,147,0,0, - 511,513,5,77,0,0,512,509,1,0,0,0,512,513,1,0,0,0,513,514,1,0,0,0, - 514,517,3,182,91,0,515,516,5,40,0,0,516,518,3,116,58,0,517,515,1, - 0,0,0,517,518,1,0,0,0,518,521,1,0,0,0,519,520,5,243,0,0,520,522, - 3,28,14,0,521,519,1,0,0,0,521,522,1,0,0,0,522,523,1,0,0,0,523,524, - 5,26,0,0,524,525,3,18,9,0,525,1037,1,0,0,0,526,529,5,44,0,0,527, - 528,5,157,0,0,528,530,5,182,0,0,529,527,1,0,0,0,529,530,1,0,0,0, - 530,531,1,0,0,0,531,532,5,239,0,0,532,535,3,182,91,0,533,534,5,40, - 0,0,534,536,3,116,58,0,535,533,1,0,0,0,535,536,1,0,0,0,536,539,1, - 0,0,0,537,538,5,198,0,0,538,540,7,1,0,0,539,537,1,0,0,0,539,540, - 1,0,0,0,540,541,1,0,0,0,541,542,5,26,0,0,542,543,3,18,9,0,543,1037, - 1,0,0,0,544,545,5,179,0,0,545,546,5,133,0,0,546,547,5,239,0,0,547, - 1037,3,180,90,0,548,549,5,69,0,0,549,550,5,133,0,0,550,553,5,239, - 0,0,551,552,5,101,0,0,552,554,5,77,0,0,553,551,1,0,0,0,553,554,1, - 0,0,0,554,555,1,0,0,0,555,1037,3,180,90,0,556,557,5,21,0,0,557,558, - 5,133,0,0,558,561,5,239,0,0,559,560,5,101,0,0,560,562,5,77,0,0,561, - 559,1,0,0,0,561,562,1,0,0,0,562,563,1,0,0,0,563,564,3,180,90,0,564, - 565,5,180,0,0,565,566,5,220,0,0,566,567,3,182,91,0,567,1037,1,0, - 0,0,568,569,5,21,0,0,569,570,5,133,0,0,570,571,5,239,0,0,571,572, - 3,180,90,0,572,573,5,203,0,0,573,574,5,175,0,0,574,575,3,30,15,0, - 575,1037,1,0,0,0,576,577,5,69,0,0,577,580,5,239,0,0,578,579,5,101, - 0,0,579,581,5,77,0,0,580,578,1,0,0,0,580,581,1,0,0,0,581,582,1,0, - 0,0,582,1037,3,180,90,0,583,584,5,21,0,0,584,585,5,239,0,0,585,586, - 3,180,90,0,586,587,5,180,0,0,587,588,5,220,0,0,588,589,3,182,91, - 0,589,1037,1,0,0,0,590,591,5,21,0,0,591,592,5,239,0,0,592,593,3, - 180,90,0,593,594,5,203,0,0,594,595,5,29,0,0,595,596,3,208,104,0, - 596,1037,1,0,0,0,597,598,5,33,0,0,598,599,3,198,99,0,599,608,5,1, - 0,0,600,605,3,166,83,0,601,602,5,3,0,0,602,604,3,166,83,0,603,601, - 1,0,0,0,604,607,1,0,0,0,605,603,1,0,0,0,605,606,1,0,0,0,606,609, - 1,0,0,0,607,605,1,0,0,0,608,600,1,0,0,0,608,609,1,0,0,0,609,610, - 1,0,0,0,610,611,5,2,0,0,611,1037,1,0,0,0,612,613,5,44,0,0,613,614, - 5,188,0,0,614,618,3,212,106,0,615,616,5,243,0,0,616,617,5,18,0,0, - 617,619,3,206,103,0,618,615,1,0,0,0,618,619,1,0,0,0,619,622,1,0, - 0,0,620,621,5,103,0,0,621,623,3,194,97,0,622,620,1,0,0,0,622,623, - 1,0,0,0,623,1037,1,0,0,0,624,625,5,69,0,0,625,626,5,188,0,0,626, - 1037,3,212,106,0,627,628,5,91,0,0,628,629,3,210,105,0,629,630,5, - 220,0,0,630,635,3,208,104,0,631,632,5,3,0,0,632,634,3,208,104,0, - 633,631,1,0,0,0,634,637,1,0,0,0,635,633,1,0,0,0,635,636,1,0,0,0, - 636,641,1,0,0,0,637,635,1,0,0,0,638,639,5,243,0,0,639,640,5,18,0, - 0,640,642,5,156,0,0,641,638,1,0,0,0,641,642,1,0,0,0,642,646,1,0, - 0,0,643,644,5,92,0,0,644,645,5,32,0,0,645,647,3,206,103,0,646,643, - 1,0,0,0,646,647,1,0,0,0,647,650,1,0,0,0,648,649,5,103,0,0,649,651, - 3,194,97,0,650,648,1,0,0,0,650,651,1,0,0,0,651,1037,1,0,0,0,652, - 656,5,186,0,0,653,654,5,18,0,0,654,655,5,156,0,0,655,657,5,86,0, - 0,656,653,1,0,0,0,656,657,1,0,0,0,657,658,1,0,0,0,658,659,3,210, + 8,96,1,97,1,97,1,98,1,98,1,99,1,99,1,100,1,100,3,100,2552,8,100, + 1,101,1,101,1,102,1,102,1,102,5,102,2559,8,102,10,102,12,102,2562, + 9,102,1,103,1,103,1,103,3,103,2567,8,103,1,104,1,104,1,104,1,104, + 1,104,3,104,2574,8,104,1,105,1,105,1,105,5,105,2579,8,105,10,105, + 12,105,2582,9,105,1,106,1,106,1,106,1,106,1,106,3,106,2589,8,106, + 1,107,3,107,2592,8,107,1,107,1,107,3,107,2596,8,107,1,107,1,107, + 3,107,2600,8,107,1,107,3,107,2603,8,107,1,108,1,108,1,108,0,7,42, + 68,104,108,110,132,152,109,0,2,4,6,8,10,12,14,16,18,20,22,24,26, + 28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70, + 72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110, + 112,114,116,118,120,122,124,126,128,130,132,134,136,138,140,142, + 144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174, + 176,178,180,182,184,186,188,190,192,194,196,198,200,202,204,206, + 208,210,212,214,216,0,27,2,0,34,34,185,185,2,0,61,61,112,112,2,0, + 88,88,103,103,2,0,75,75,104,104,1,0,192,193,2,0,84,84,139,139,2, + 0,261,261,265,265,2,0,74,74,229,229,2,0,27,27,63,63,2,0,84,84,118, + 118,2,0,20,20,66,66,2,0,30,30,211,211,2,0,105,105,199,199,1,0,255, + 256,1,0,257,259,2,0,83,83,194,194,1,0,249,254,3,0,20,20,24,24,206, + 206,2,0,80,80,223,223,5,0,58,58,100,100,136,137,197,197,247,247, + 1,0,140,143,2,0,85,85,171,171,3,0,95,95,117,117,215,215,4,0,67,67, + 113,113,127,127,236,236,2,0,155,155,246,246,4,0,62,62,108,108,200, + 200,232,232,49,0,17,20,22,22,24,25,27,30,33,34,37,42,47,47,56,59, + 61,61,63,63,65,65,67,68,71,71,75,75,78,78,81,85,87,87,90,95,98,98, + 100,102,104,105,107,107,110,110,112,113,115,115,117,119,121,121, + 123,124,127,137,139,145,149,152,154,156,159,159,161,172,174,177, + 179,186,188,190,192,199,201,211,213,215,217,222,224,225,227,228, + 230,230,232,234,236,236,238,239,242,242,244,248,3008,0,221,1,0,0, + 0,2,226,1,0,0,0,4,232,1,0,0,0,6,234,1,0,0,0,8,238,1,0,0,0,10,242, + 1,0,0,0,12,246,1,0,0,0,14,250,1,0,0,0,16,1036,1,0,0,0,18,1039,1, + 0,0,0,20,1043,1,0,0,0,22,1057,1,0,0,0,24,1059,1,0,0,0,26,1073,1, + 0,0,0,28,1079,1,0,0,0,30,1083,1,0,0,0,32,1091,1,0,0,0,34,1097,1, + 0,0,0,36,1099,1,0,0,0,38,1136,1,0,0,0,40,1138,1,0,0,0,42,1140,1, + 0,0,0,44,1176,1,0,0,0,46,1180,1,0,0,0,48,1189,1,0,0,0,50,1237,1, + 0,0,0,52,1287,1,0,0,0,54,1302,1,0,0,0,56,1306,1,0,0,0,58,1308,1, + 0,0,0,60,1315,1,0,0,0,62,1344,1,0,0,0,64,1353,1,0,0,0,66,1373,1, + 0,0,0,68,1375,1,0,0,0,70,1414,1,0,0,0,72,1430,1,0,0,0,74,1432,1, + 0,0,0,76,1441,1,0,0,0,78,1443,1,0,0,0,80,1528,1,0,0,0,82,1543,1, + 0,0,0,84,1554,1,0,0,0,86,1575,1,0,0,0,88,1577,1,0,0,0,90,1590,1, + 0,0,0,92,1594,1,0,0,0,94,1604,1,0,0,0,96,1615,1,0,0,0,98,1626,1, + 0,0,0,100,1666,1,0,0,0,102,1668,1,0,0,0,104,1677,1,0,0,0,106,1751, + 1,0,0,0,108,1757,1,0,0,0,110,2025,1,0,0,0,112,2040,1,0,0,0,114,2046, + 1,0,0,0,116,2054,1,0,0,0,118,2062,1,0,0,0,120,2064,1,0,0,0,122,2066, + 1,0,0,0,124,2068,1,0,0,0,126,2070,1,0,0,0,128,2080,1,0,0,0,130,2082, + 1,0,0,0,132,2175,1,0,0,0,134,2193,1,0,0,0,136,2197,1,0,0,0,138,2199, + 1,0,0,0,140,2204,1,0,0,0,142,2274,1,0,0,0,144,2276,1,0,0,0,146,2293, + 1,0,0,0,148,2357,1,0,0,0,150,2368,1,0,0,0,152,2370,1,0,0,0,154,2410, + 1,0,0,0,156,2442,1,0,0,0,158,2444,1,0,0,0,160,2452,1,0,0,0,162,2459, + 1,0,0,0,164,2468,1,0,0,0,166,2475,1,0,0,0,168,2482,1,0,0,0,170,2484, + 1,0,0,0,172,2492,1,0,0,0,174,2496,1,0,0,0,176,2498,1,0,0,0,178,2500, + 1,0,0,0,180,2502,1,0,0,0,182,2504,1,0,0,0,184,2517,1,0,0,0,186,2530, + 1,0,0,0,188,2532,1,0,0,0,190,2534,1,0,0,0,192,2541,1,0,0,0,194,2543, + 1,0,0,0,196,2545,1,0,0,0,198,2547,1,0,0,0,200,2551,1,0,0,0,202,2553, + 1,0,0,0,204,2555,1,0,0,0,206,2566,1,0,0,0,208,2573,1,0,0,0,210,2575, + 1,0,0,0,212,2588,1,0,0,0,214,2602,1,0,0,0,216,2604,1,0,0,0,218,220, + 3,2,1,0,219,218,1,0,0,0,220,223,1,0,0,0,221,219,1,0,0,0,221,222, + 1,0,0,0,222,224,1,0,0,0,223,221,1,0,0,0,224,225,5,0,0,1,225,1,1, + 0,0,0,226,227,3,6,3,0,227,3,1,0,0,0,228,233,3,8,4,0,229,233,3,10, + 5,0,230,233,3,12,6,0,231,233,3,14,7,0,232,228,1,0,0,0,232,229,1, + 0,0,0,232,230,1,0,0,0,232,231,1,0,0,0,233,5,1,0,0,0,234,236,3,16, + 8,0,235,237,5,272,0,0,236,235,1,0,0,0,236,237,1,0,0,0,237,7,1,0, + 0,0,238,240,3,102,51,0,239,241,5,272,0,0,240,239,1,0,0,0,240,241, + 1,0,0,0,241,9,1,0,0,0,242,244,3,170,85,0,243,245,5,272,0,0,244,243, + 1,0,0,0,244,245,1,0,0,0,245,11,1,0,0,0,246,248,3,132,66,0,247,249, + 5,272,0,0,248,247,1,0,0,0,248,249,1,0,0,0,249,13,1,0,0,0,250,252, + 3,152,76,0,251,253,5,272,0,0,252,251,1,0,0,0,252,253,1,0,0,0,253, + 15,1,0,0,0,254,1037,3,18,9,0,255,256,5,233,0,0,256,1037,3,188,94, + 0,257,258,5,44,0,0,258,262,5,195,0,0,259,260,5,101,0,0,260,261,5, + 147,0,0,261,263,5,77,0,0,262,259,1,0,0,0,262,263,1,0,0,0,263,264, + 1,0,0,0,264,267,3,190,95,0,265,266,5,29,0,0,266,268,3,208,104,0, + 267,265,1,0,0,0,267,268,1,0,0,0,268,271,1,0,0,0,269,270,5,243,0, + 0,270,272,3,28,14,0,271,269,1,0,0,0,271,272,1,0,0,0,272,1037,1,0, + 0,0,273,274,5,69,0,0,274,277,5,195,0,0,275,276,5,101,0,0,276,278, + 5,77,0,0,277,275,1,0,0,0,277,278,1,0,0,0,278,279,1,0,0,0,279,281, + 3,188,94,0,280,282,7,0,0,0,281,280,1,0,0,0,281,282,1,0,0,0,282,1037, + 1,0,0,0,283,284,5,21,0,0,284,285,5,195,0,0,285,286,3,188,94,0,286, + 287,5,180,0,0,287,288,5,220,0,0,288,289,3,190,95,0,289,1037,1,0, + 0,0,290,291,5,21,0,0,291,292,5,195,0,0,292,293,3,188,94,0,293,294, + 5,203,0,0,294,295,5,29,0,0,295,296,3,208,104,0,296,1037,1,0,0,0, + 297,298,5,44,0,0,298,302,5,212,0,0,299,300,5,101,0,0,300,301,5,147, + 0,0,301,303,5,77,0,0,302,299,1,0,0,0,302,303,1,0,0,0,303,304,1,0, + 0,0,304,306,3,178,89,0,305,307,3,94,47,0,306,305,1,0,0,0,306,307, + 1,0,0,0,307,310,1,0,0,0,308,309,5,40,0,0,309,311,3,116,58,0,310, + 308,1,0,0,0,310,311,1,0,0,0,311,314,1,0,0,0,312,313,5,243,0,0,313, + 315,3,28,14,0,314,312,1,0,0,0,314,315,1,0,0,0,315,316,1,0,0,0,316, + 322,5,26,0,0,317,323,3,18,9,0,318,319,5,1,0,0,319,320,3,18,9,0,320, + 321,5,2,0,0,321,323,1,0,0,0,322,317,1,0,0,0,322,318,1,0,0,0,323, + 329,1,0,0,0,324,326,5,243,0,0,325,327,5,144,0,0,326,325,1,0,0,0, + 326,327,1,0,0,0,327,328,1,0,0,0,328,330,5,56,0,0,329,324,1,0,0,0, + 329,330,1,0,0,0,330,1037,1,0,0,0,331,332,5,44,0,0,332,336,5,212, + 0,0,333,334,5,101,0,0,334,335,5,147,0,0,335,337,5,77,0,0,336,333, + 1,0,0,0,336,337,1,0,0,0,337,338,1,0,0,0,338,339,3,178,89,0,339,340, + 5,1,0,0,340,345,3,22,11,0,341,342,5,3,0,0,342,344,3,22,11,0,343, + 341,1,0,0,0,344,347,1,0,0,0,345,343,1,0,0,0,345,346,1,0,0,0,346, + 348,1,0,0,0,347,345,1,0,0,0,348,351,5,2,0,0,349,350,5,40,0,0,350, + 352,3,116,58,0,351,349,1,0,0,0,351,352,1,0,0,0,352,355,1,0,0,0,353, + 354,5,243,0,0,354,356,3,28,14,0,355,353,1,0,0,0,355,356,1,0,0,0, + 356,1037,1,0,0,0,357,358,5,69,0,0,358,361,5,212,0,0,359,360,5,101, + 0,0,360,362,5,77,0,0,361,359,1,0,0,0,361,362,1,0,0,0,362,363,1,0, + 0,0,363,1037,3,176,88,0,364,365,5,108,0,0,365,366,5,111,0,0,366, + 368,3,176,88,0,367,369,3,96,48,0,368,367,1,0,0,0,368,369,1,0,0,0, + 369,370,1,0,0,0,370,371,3,18,9,0,371,1037,1,0,0,0,372,373,5,62,0, + 0,373,374,5,88,0,0,374,377,3,176,88,0,375,376,5,241,0,0,376,378, + 3,104,52,0,377,375,1,0,0,0,377,378,1,0,0,0,378,1037,1,0,0,0,379, + 380,5,222,0,0,380,381,5,212,0,0,381,1037,3,176,88,0,382,383,5,21, + 0,0,383,386,5,212,0,0,384,385,5,101,0,0,385,387,5,77,0,0,386,384, + 1,0,0,0,386,387,1,0,0,0,387,388,1,0,0,0,388,389,3,176,88,0,389,390, + 5,180,0,0,390,391,5,220,0,0,391,392,3,178,89,0,392,1037,1,0,0,0, + 393,394,5,40,0,0,394,395,5,153,0,0,395,396,5,212,0,0,396,397,3,176, + 88,0,397,400,5,114,0,0,398,401,3,116,58,0,399,401,5,148,0,0,400, + 398,1,0,0,0,400,399,1,0,0,0,401,1037,1,0,0,0,402,403,5,40,0,0,403, + 404,5,153,0,0,404,405,5,38,0,0,405,406,3,200,100,0,406,409,5,114, + 0,0,407,410,3,116,58,0,408,410,5,148,0,0,409,407,1,0,0,0,409,408, + 1,0,0,0,410,1037,1,0,0,0,411,412,5,21,0,0,412,415,5,212,0,0,413, + 414,5,101,0,0,414,416,5,77,0,0,415,413,1,0,0,0,415,416,1,0,0,0,416, + 417,1,0,0,0,417,418,3,176,88,0,418,419,5,180,0,0,419,422,5,38,0, + 0,420,421,5,101,0,0,421,423,5,77,0,0,422,420,1,0,0,0,422,423,1,0, + 0,0,423,424,1,0,0,0,424,425,3,200,100,0,425,426,5,220,0,0,426,427, + 3,202,101,0,427,1037,1,0,0,0,428,429,5,21,0,0,429,432,5,212,0,0, + 430,431,5,101,0,0,431,433,5,77,0,0,432,430,1,0,0,0,432,433,1,0,0, + 0,433,434,1,0,0,0,434,435,3,176,88,0,435,436,5,69,0,0,436,439,5, + 38,0,0,437,438,5,101,0,0,438,440,5,77,0,0,439,437,1,0,0,0,439,440, + 1,0,0,0,440,441,1,0,0,0,441,442,3,200,100,0,442,1037,1,0,0,0,443, + 444,5,21,0,0,444,447,5,212,0,0,445,446,5,101,0,0,446,448,5,77,0, + 0,447,445,1,0,0,0,447,448,1,0,0,0,448,449,1,0,0,0,449,450,3,176, + 88,0,450,451,5,17,0,0,451,455,5,38,0,0,452,453,5,101,0,0,453,454, + 5,147,0,0,454,456,5,77,0,0,455,452,1,0,0,0,455,456,1,0,0,0,456,457, + 1,0,0,0,457,458,3,24,12,0,458,1037,1,0,0,0,459,460,5,21,0,0,460, + 461,5,212,0,0,461,462,3,176,88,0,462,463,5,203,0,0,463,464,5,29, + 0,0,464,465,3,208,104,0,465,1037,1,0,0,0,466,467,5,21,0,0,467,468, + 5,212,0,0,468,469,3,176,88,0,469,470,5,203,0,0,470,471,5,175,0,0, + 471,472,3,30,15,0,472,1037,1,0,0,0,473,474,5,21,0,0,474,475,5,212, + 0,0,475,476,3,176,88,0,476,477,5,76,0,0,477,490,3,212,106,0,478, + 487,5,1,0,0,479,484,3,166,83,0,480,481,5,3,0,0,481,483,3,166,83, + 0,482,480,1,0,0,0,483,486,1,0,0,0,484,482,1,0,0,0,484,485,1,0,0, + 0,485,488,1,0,0,0,486,484,1,0,0,0,487,479,1,0,0,0,487,488,1,0,0, + 0,488,489,1,0,0,0,489,491,5,2,0,0,490,478,1,0,0,0,490,491,1,0,0, + 0,491,494,1,0,0,0,492,493,5,241,0,0,493,495,3,104,52,0,494,492,1, + 0,0,0,494,495,1,0,0,0,495,1037,1,0,0,0,496,497,5,22,0,0,497,500, + 3,176,88,0,498,499,5,243,0,0,499,501,3,28,14,0,500,498,1,0,0,0,500, + 501,1,0,0,0,501,1037,1,0,0,0,502,505,5,44,0,0,503,504,5,157,0,0, + 504,506,5,182,0,0,505,503,1,0,0,0,505,506,1,0,0,0,506,507,1,0,0, + 0,507,508,5,133,0,0,508,512,5,239,0,0,509,510,5,101,0,0,510,511, + 5,147,0,0,511,513,5,77,0,0,512,509,1,0,0,0,512,513,1,0,0,0,513,514, + 1,0,0,0,514,517,3,182,91,0,515,516,5,40,0,0,516,518,3,116,58,0,517, + 515,1,0,0,0,517,518,1,0,0,0,518,521,1,0,0,0,519,520,5,243,0,0,520, + 522,3,28,14,0,521,519,1,0,0,0,521,522,1,0,0,0,522,523,1,0,0,0,523, + 524,5,26,0,0,524,525,3,18,9,0,525,1037,1,0,0,0,526,529,5,44,0,0, + 527,528,5,157,0,0,528,530,5,182,0,0,529,527,1,0,0,0,529,530,1,0, + 0,0,530,531,1,0,0,0,531,532,5,239,0,0,532,535,3,182,91,0,533,534, + 5,40,0,0,534,536,3,116,58,0,535,533,1,0,0,0,535,536,1,0,0,0,536, + 539,1,0,0,0,537,538,5,198,0,0,538,540,7,1,0,0,539,537,1,0,0,0,539, + 540,1,0,0,0,540,541,1,0,0,0,541,542,5,26,0,0,542,543,3,18,9,0,543, + 1037,1,0,0,0,544,545,5,179,0,0,545,546,5,133,0,0,546,547,5,239,0, + 0,547,1037,3,180,90,0,548,549,5,69,0,0,549,550,5,133,0,0,550,553, + 5,239,0,0,551,552,5,101,0,0,552,554,5,77,0,0,553,551,1,0,0,0,553, + 554,1,0,0,0,554,555,1,0,0,0,555,1037,3,180,90,0,556,557,5,21,0,0, + 557,558,5,133,0,0,558,561,5,239,0,0,559,560,5,101,0,0,560,562,5, + 77,0,0,561,559,1,0,0,0,561,562,1,0,0,0,562,563,1,0,0,0,563,564,3, + 180,90,0,564,565,5,180,0,0,565,566,5,220,0,0,566,567,3,182,91,0, + 567,1037,1,0,0,0,568,569,5,21,0,0,569,570,5,133,0,0,570,571,5,239, + 0,0,571,572,3,180,90,0,572,573,5,203,0,0,573,574,5,175,0,0,574,575, + 3,30,15,0,575,1037,1,0,0,0,576,577,5,69,0,0,577,580,5,239,0,0,578, + 579,5,101,0,0,579,581,5,77,0,0,580,578,1,0,0,0,580,581,1,0,0,0,581, + 582,1,0,0,0,582,1037,3,180,90,0,583,584,5,21,0,0,584,585,5,239,0, + 0,585,586,3,180,90,0,586,587,5,180,0,0,587,588,5,220,0,0,588,589, + 3,182,91,0,589,1037,1,0,0,0,590,591,5,21,0,0,591,592,5,239,0,0,592, + 593,3,180,90,0,593,594,5,203,0,0,594,595,5,29,0,0,595,596,3,208, + 104,0,596,1037,1,0,0,0,597,598,5,33,0,0,598,599,3,198,99,0,599,608, + 5,1,0,0,600,605,3,166,83,0,601,602,5,3,0,0,602,604,3,166,83,0,603, + 601,1,0,0,0,604,607,1,0,0,0,605,603,1,0,0,0,605,606,1,0,0,0,606, + 609,1,0,0,0,607,605,1,0,0,0,608,600,1,0,0,0,608,609,1,0,0,0,609, + 610,1,0,0,0,610,611,5,2,0,0,611,1037,1,0,0,0,612,613,5,44,0,0,613, + 614,5,188,0,0,614,618,3,212,106,0,615,616,5,243,0,0,616,617,5,18, + 0,0,617,619,3,206,103,0,618,615,1,0,0,0,618,619,1,0,0,0,619,622, + 1,0,0,0,620,621,5,103,0,0,621,623,3,194,97,0,622,620,1,0,0,0,622, + 623,1,0,0,0,623,1037,1,0,0,0,624,625,5,69,0,0,625,626,5,188,0,0, + 626,1037,3,212,106,0,627,628,5,91,0,0,628,629,3,210,105,0,629,630, + 5,220,0,0,630,635,3,208,104,0,631,632,5,3,0,0,632,634,3,208,104, + 0,633,631,1,0,0,0,634,637,1,0,0,0,635,633,1,0,0,0,635,636,1,0,0, + 0,636,641,1,0,0,0,637,635,1,0,0,0,638,639,5,243,0,0,639,640,5,18, + 0,0,640,642,5,156,0,0,641,638,1,0,0,0,641,642,1,0,0,0,642,646,1, + 0,0,0,643,644,5,92,0,0,644,645,5,32,0,0,645,647,3,206,103,0,646, + 643,1,0,0,0,646,647,1,0,0,0,647,650,1,0,0,0,648,649,5,103,0,0,649, + 651,3,194,97,0,650,648,1,0,0,0,650,651,1,0,0,0,651,1037,1,0,0,0, + 652,656,5,186,0,0,653,654,5,18,0,0,654,655,5,156,0,0,655,657,5,86, + 0,0,656,653,1,0,0,0,656,657,1,0,0,0,657,658,1,0,0,0,658,659,3,210, 105,0,659,660,5,88,0,0,660,665,3,208,104,0,661,662,5,3,0,0,662,664, 3,208,104,0,663,661,1,0,0,0,664,667,1,0,0,0,665,663,1,0,0,0,665, 666,1,0,0,0,666,671,1,0,0,0,667,665,1,0,0,0,668,669,5,92,0,0,669, @@ -12820,27 +12848,28 @@ export class TrinoSqlParser extends antlr.Parser { 212,106,0,2540,2542,1,0,0,0,2541,2536,1,0,0,0,2541,2537,1,0,0,0, 2542,193,1,0,0,0,2543,2544,3,212,106,0,2544,195,1,0,0,0,2545,2546, 3,212,106,0,2546,197,1,0,0,0,2547,2548,3,204,102,0,2548,199,1,0, - 0,0,2549,2550,3,204,102,0,2550,201,1,0,0,0,2551,2552,3,212,106,0, - 2552,203,1,0,0,0,2553,2558,3,212,106,0,2554,2555,5,4,0,0,2555,2557, - 3,212,106,0,2556,2554,1,0,0,0,2557,2560,1,0,0,0,2558,2556,1,0,0, - 0,2558,2559,1,0,0,0,2559,205,1,0,0,0,2560,2558,1,0,0,0,2561,2565, - 3,208,104,0,2562,2565,5,55,0,0,2563,2565,5,51,0,0,2564,2561,1,0, - 0,0,2564,2562,1,0,0,0,2564,2563,1,0,0,0,2565,207,1,0,0,0,2566,2572, - 3,212,106,0,2567,2568,5,234,0,0,2568,2572,3,212,106,0,2569,2570, - 5,188,0,0,2570,2572,3,212,106,0,2571,2566,1,0,0,0,2571,2567,1,0, - 0,0,2571,2569,1,0,0,0,2572,209,1,0,0,0,2573,2578,3,212,106,0,2574, - 2575,5,3,0,0,2575,2577,3,212,106,0,2576,2574,1,0,0,0,2577,2580,1, - 0,0,0,2578,2576,1,0,0,0,2578,2579,1,0,0,0,2579,211,1,0,0,0,2580, - 2578,1,0,0,0,2581,2587,5,268,0,0,2582,2587,5,270,0,0,2583,2587,3, - 216,108,0,2584,2587,5,271,0,0,2585,2587,5,269,0,0,2586,2581,1,0, - 0,0,2586,2582,1,0,0,0,2586,2583,1,0,0,0,2586,2584,1,0,0,0,2586,2585, - 1,0,0,0,2587,213,1,0,0,0,2588,2590,5,256,0,0,2589,2588,1,0,0,0,2589, - 2590,1,0,0,0,2590,2591,1,0,0,0,2591,2601,5,266,0,0,2592,2594,5,256, - 0,0,2593,2592,1,0,0,0,2593,2594,1,0,0,0,2594,2595,1,0,0,0,2595,2601, - 5,267,0,0,2596,2598,5,256,0,0,2597,2596,1,0,0,0,2597,2598,1,0,0, - 0,2598,2599,1,0,0,0,2599,2601,5,265,0,0,2600,2589,1,0,0,0,2600,2593, - 1,0,0,0,2600,2597,1,0,0,0,2601,215,1,0,0,0,2602,2603,7,26,0,0,2603, - 217,1,0,0,0,339,221,232,236,240,244,248,252,262,267,271,277,281, + 0,0,2549,2552,3,204,102,0,2550,2552,4,100,14,0,2551,2549,1,0,0,0, + 2551,2550,1,0,0,0,2552,201,1,0,0,0,2553,2554,3,212,106,0,2554,203, + 1,0,0,0,2555,2560,3,212,106,0,2556,2557,5,4,0,0,2557,2559,3,212, + 106,0,2558,2556,1,0,0,0,2559,2562,1,0,0,0,2560,2558,1,0,0,0,2560, + 2561,1,0,0,0,2561,205,1,0,0,0,2562,2560,1,0,0,0,2563,2567,3,208, + 104,0,2564,2567,5,55,0,0,2565,2567,5,51,0,0,2566,2563,1,0,0,0,2566, + 2564,1,0,0,0,2566,2565,1,0,0,0,2567,207,1,0,0,0,2568,2574,3,212, + 106,0,2569,2570,5,234,0,0,2570,2574,3,212,106,0,2571,2572,5,188, + 0,0,2572,2574,3,212,106,0,2573,2568,1,0,0,0,2573,2569,1,0,0,0,2573, + 2571,1,0,0,0,2574,209,1,0,0,0,2575,2580,3,212,106,0,2576,2577,5, + 3,0,0,2577,2579,3,212,106,0,2578,2576,1,0,0,0,2579,2582,1,0,0,0, + 2580,2578,1,0,0,0,2580,2581,1,0,0,0,2581,211,1,0,0,0,2582,2580,1, + 0,0,0,2583,2589,5,268,0,0,2584,2589,5,270,0,0,2585,2589,3,216,108, + 0,2586,2589,5,271,0,0,2587,2589,5,269,0,0,2588,2583,1,0,0,0,2588, + 2584,1,0,0,0,2588,2585,1,0,0,0,2588,2586,1,0,0,0,2588,2587,1,0,0, + 0,2589,213,1,0,0,0,2590,2592,5,256,0,0,2591,2590,1,0,0,0,2591,2592, + 1,0,0,0,2592,2593,1,0,0,0,2593,2603,5,266,0,0,2594,2596,5,256,0, + 0,2595,2594,1,0,0,0,2595,2596,1,0,0,0,2596,2597,1,0,0,0,2597,2603, + 5,267,0,0,2598,2600,5,256,0,0,2599,2598,1,0,0,0,2599,2600,1,0,0, + 0,2600,2601,1,0,0,0,2601,2603,5,265,0,0,2602,2591,1,0,0,0,2602,2595, + 1,0,0,0,2602,2599,1,0,0,0,2603,215,1,0,0,0,2604,2605,7,26,0,0,2605, + 217,1,0,0,0,340,221,232,236,240,244,248,252,262,267,271,277,281, 302,306,310,314,322,326,329,336,345,351,355,361,368,377,386,400, 409,415,422,432,439,447,455,484,487,490,494,500,505,512,517,521, 529,535,539,553,561,580,605,608,618,622,635,641,646,650,656,665, @@ -12864,7 +12893,7 @@ export class TrinoSqlParser extends antlr.Parser { 2255,2260,2269,2274,2282,2290,2293,2299,2302,2309,2317,2320,2328, 2331,2357,2368,2373,2380,2382,2395,2410,2414,2418,2422,2428,2432, 2436,2440,2442,2452,2459,2468,2475,2482,2489,2496,2517,2530,2541, - 2558,2564,2571,2578,2586,2589,2593,2597,2600 + 2551,2560,2566,2573,2580,2588,2591,2595,2599,2602 ]; private static __ATN: antlr.ATN; @@ -16394,28 +16423,37 @@ export class QueryContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_query; + } + public override copyFrom(ctx: QueryContext): void { + super.copyFrom(ctx); + } +} +export class QueryStatementContext extends QueryContext { + public constructor(ctx: QueryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public queryNoWith(): QueryNoWithContext { return this.getRuleContext(0, QueryNoWithContext)!; } public with(): WithContext | null { return this.getRuleContext(0, WithContext); } - public override get ruleIndex(): number { - return TrinoSqlParser.RULE_query; - } public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterQuery) { - listener.enterQuery(this); + if(listener.enterQueryStatement) { + listener.enterQueryStatement(this); } } public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitQuery) { - listener.exitQuery(this); + if(listener.exitQueryStatement) { + listener.exitQueryStatement(this); } } public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitQuery) { - return visitor.visitQuery(this); + if (visitor.visitQueryStatement) { + return visitor.visitQueryStatement(this); } else { return visitor.visitChildren(this); } @@ -23283,8 +23321,8 @@ export class ColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public qualifiedName(): QualifiedNameContext { - return this.getRuleContext(0, QualifiedNameContext)!; + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } public override get ruleIndex(): number { return TrinoSqlParser.RULE_columnName; diff --git a/src/lib/trinosql/TrinoSqlVisitor.ts b/src/lib/trinosql/TrinoSqlVisitor.ts index 22c0544..be5901b 100644 --- a/src/lib/trinosql/TrinoSqlVisitor.ts +++ b/src/lib/trinosql/TrinoSqlVisitor.ts @@ -3,6 +3,9 @@ import { AbstractParseTreeVisitor } from "antlr4ng"; +import SQLParserBase from '../SQLParserBase'; + + import { ProgramContext } from "./TrinoSqlParser.js"; import { StatementsContext } from "./TrinoSqlParser.js"; import { StandaloneClauseContext } from "./TrinoSqlParser.js"; @@ -83,7 +86,7 @@ import { UpdateContext } from "./TrinoSqlParser.js"; import { MergeContext } from "./TrinoSqlParser.js"; import { ShowTableCommentContext } from "./TrinoSqlParser.js"; import { ShowColumnCommentContext } from "./TrinoSqlParser.js"; -import { QueryContext } from "./TrinoSqlParser.js"; +import { QueryStatementContext } from "./TrinoSqlParser.js"; import { WithContext } from "./TrinoSqlParser.js"; import { TableElementContext } from "./TrinoSqlParser.js"; import { ColumnDefinitionContext } from "./TrinoSqlParser.js"; @@ -844,11 +847,12 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { */ visitShowColumnComment?: (ctx: ShowColumnCommentContext) => Result; /** - * Visit a parse tree produced by `TrinoSqlParser.query`. + * Visit a parse tree produced by the `queryStatement` + * labeled alternative in `TrinoSqlParser.query`. * @param ctx the parse tree * @return the visitor result */ - visitQuery?: (ctx: QueryContext) => Result; + visitQueryStatement?: (ctx: QueryStatementContext) => Result; /** * Visit a parse tree produced by `TrinoSqlParser.with`. * @param ctx the parse tree diff --git a/src/parser/common/basic-parser-types.ts b/src/parser/common/basic-parser-types.ts index 50fa7af..853673c 100644 --- a/src/parser/common/basic-parser-types.ts +++ b/src/parser/common/basic-parser-types.ts @@ -1,3 +1,6 @@ +import { WordRange } from './textAndWord'; +import { StmtContextType } from './entityCollector'; + /** * The insertion position of the candidate list. * Such as cursor position @@ -12,7 +15,7 @@ export interface CaretPosition { /** * Syntax context type at caret position */ -export enum SyntaxContextType { +export enum EntityContextType { /** catalog name */ CATALOG = 'catalog', /** catalog name that will be created */ @@ -43,26 +46,11 @@ export enum SyntaxContextType { COLUMN_CREATE = 'columnCreate', } -export interface WordRange { - /** content of word */ - readonly text: string; - /** start at 0 */ - readonly startIndex: number; - /** end at ..n-1 */ - readonly endIndex: number; - /** start at 1 */ - readonly line: number; - /** start at 1 */ - readonly startColumn: number; - /** end at ..n + 1 */ - readonly stopColumn: number; -} - /** * Suggested information analyzed from the input */ export interface SyntaxSuggestion { - readonly syntaxContextType: SyntaxContextType; + readonly syntaxContextType: EntityContextType | StmtContextType; readonly wordRanges: T[]; } @@ -79,19 +67,3 @@ export interface Suggestions { */ readonly keywords: string[]; } - -export interface TextSlice { - /** start at 0 */ - readonly startIndex: number; - /** end at ..n-1 */ - readonly endIndex: number; - /** start at 1 */ - readonly startLine: number; - /** end at ..n */ - readonly endLine: number; - /** start at 1 */ - readonly startColumn: number; - /** end at ..n + 1 */ - readonly endColumn: number; - readonly text: string; -} diff --git a/src/parser/common/basicParser.ts b/src/parser/common/basicParser.ts index 8547e60..09c6d6f 100644 --- a/src/parser/common/basicParser.ts +++ b/src/parser/common/basicParser.ts @@ -1,5 +1,4 @@ import { - Parser, Lexer, Token, CharStreams, @@ -11,25 +10,15 @@ import { PredictionMode, } from 'antlr4ng'; import { CandidatesCollection, CodeCompletionCore } from 'antlr4-c3'; -import { findCaretTokenIndex } from './utils/findCaretTokenIndex'; -import { - CaretPosition, - Suggestions, - SyntaxSuggestion, - WordRange, - TextSlice, -} from './basic-parser-types'; +import SQLParserBase from '../../lib/SQLParserBase'; +import { findCaretTokenIndex } from './findCaretTokenIndex'; +import { ctxToText, tokenToWord, WordRange, TextSlice } from './textAndWord'; +import { CaretPosition, Suggestions, SyntaxSuggestion } from './basic-parser-types'; import ParseErrorListener, { ParseError, ErrorListener } from './parseErrorListener'; import { ErrorStrategy } from './errorStrategy'; - -interface IParser extends Parser { - // Customized in our parser - program(): IParserRuleContext; -} - -interface SplitListener extends ParseTreeListener { - statementsContext: ParserRuleContext[]; -} +import type SplitListener from './splitListener'; +import type EntityCollector from './entityCollector'; +import { EntityContext } from './entityCollector'; /** * Custom Parser class, subclass needs extends it. @@ -37,7 +26,7 @@ interface SplitListener extends ParseTreeListener { export default abstract class BasicParser< L extends Lexer = Lexer, PRC extends ParserRuleContext = ParserRuleContext, - P extends IParser = IParser, + P extends SQLParserBase = SQLParserBase, > { /** members for cache start */ protected _charStreams: CharStream; @@ -85,9 +74,17 @@ export default abstract class BasicParser< ): Suggestions; /** - * Get splitListener instance. + * Get a new splitListener instance. */ - protected abstract get splitListener(): SplitListener; + protected abstract get splitListener(): SplitListener; + + /** + * Get a new entityCollector instance. + */ + protected abstract createEntityCollector( + input: string, + caretTokenIndex?: number + ): EntityCollector; /** * Create an antlr4 lexer from input. @@ -218,7 +215,7 @@ export default abstract class BasicParser< */ public listen( listener: PTL, - parseTree: PRC + parseTree: ParserRuleContext ) { ParseTreeWalker.DEFAULT.walk(listener, parseTree); } @@ -234,22 +231,13 @@ export default abstract class BasicParser< return null; } const splitListener = this.splitListener; - // TODO: add splitListener to all sqlParser implements add remove following if + // TODO: add splitListener to all sqlParser implements and remove following if if (!splitListener) return null; this.listen(splitListener, this._parseTree); const res = splitListener.statementsContext.map((context) => { - const { start, stop } = context; - return { - startIndex: start.start, - endIndex: stop.stop, - startLine: start.line, - endLine: stop.line, - startColumn: start.column + 1, - endColumn: stop.column + 1 + stop.text.length, - text: this._parsedInput.slice(start.start, stop.stop + 1), - }; + return ctxToText(context, this._parsedInput); }); return res; @@ -266,7 +254,7 @@ export default abstract class BasicParser< caretPosition: CaretPosition ): Suggestions | null { const splitListener = this.splitListener; - // TODO: add splitListener to all sqlParser implements add remove following if + // TODO: add splitListener to all sqlParser implements and remove following if if (!splitListener) return null; this.parseWithCache(input); @@ -365,14 +353,7 @@ export default abstract class BasicParser< const syntaxSuggestions: SyntaxSuggestion[] = originalSuggestions.syntax.map( (syntaxCtx) => { const wordRanges: WordRange[] = syntaxCtx.wordRanges.map((token) => { - return { - text: this._parsedInput.slice(token.start, token.stop + 1), - startIndex: token.start, - endIndex: token.stop, - line: token.line, - startColumn: token.column + 1, - stopColumn: token.column + 1 + token.text.length, - }; + return tokenToWord(token, this._parsedInput); }); return { syntaxContextType: syntaxCtx.syntaxContextType, @@ -385,4 +366,34 @@ export default abstract class BasicParser< keywords: originalSuggestions.keywords, }; } + + public getAllEntities(input: string, caretPosition?: CaretPosition): EntityContext[] | null { + const allTokens = this.getAllTokens(input); + const caretTokenIndex = findCaretTokenIndex(caretPosition, allTokens); + + const collectListener = this.createEntityCollector(input, caretTokenIndex); + // TODO: add entityCollector to all sqlParser implements and remove following if + if (!collectListener) { + return null; + } + // const parser = this.createParserWithCache(input); + + // parser.entityCollecting = true; + // if(caretPosition) { + // const allTokens = this.getAllTokens(input); + // const tokenIndex = findCaretTokenIndex(caretPosition, allTokens); + // parser.caretTokenIndex = tokenIndex; + // } + + // const parseTree = parser.program(); + + const parseTree = this.parseWithCache(input); + + this.listen(collectListener, parseTree); + + // parser.caretTokenIndex = -1; + // parser.entityCollecting = false; + + return collectListener.getEntities(); + } } diff --git a/src/parser/common/entityCollector.ts b/src/parser/common/entityCollector.ts new file mode 100644 index 0000000..f7bcf6d --- /dev/null +++ b/src/parser/common/entityCollector.ts @@ -0,0 +1,279 @@ +import { ParserRuleContext } from 'antlr4ng'; +import { EntityContextType } from './basic-parser-types'; +import { WordPosition, TextPosition } from './textAndWord'; +import { ctxToText, ctxToWord } from './textAndWord'; +import SimpleStack from './simpleStack'; + +/** + * TODO: more stmt type should be supported. + */ +export enum StmtContextType { + /** A self-contained and complete statement */ + COMMON_STMT = 'commonStmt', + CREATE_CATALOG_STMT = 'createCatalogStmt', + CREATE_DATABASE_STMT = 'crateDatabaseStmt', + CREATE_TABLE_STMT = 'createTableStmt', + CREATE_VIEW_STMT = 'createViewStmt', + SELECT_STMT = 'selectStmt', + INSERT_STMT = 'insertStmt', + CREATE_FUNCTION_STMT = 'createFunctionStmt', +} + +export interface StmtContext { + readonly stmtContextType: StmtContextType; + readonly position: TextPosition; + readonly rootStmt: StmtContext | null; + readonly parentStmt: StmtContext | null; + readonly isContainCaret?: boolean; +} + +export function toStmtContext( + ctx: ParserRuleContext, + type: StmtContextType, + input: string, + rootStmt: StmtContext | null, + parentStmt: StmtContext | null, + isContainCaret?: boolean +): StmtContext { + const { text: _, ...position } = ctxToText(ctx, input); + return { + stmtContextType: type, + position, + rootStmt: rootStmt ?? null, + parentStmt: parentStmt ?? null, + isContainCaret, + }; +} + +export interface BaseAliasContext { + readonly isAlias: boolean; + alias?: string | EntityContext | null; + origin?: string | EntityContext | StmtContext | null; +} + +const baseAlias: BaseAliasContext = { + isAlias: false, + origin: null, + alias: null, +}; + +export interface EntityContext extends BaseAliasContext { + readonly entityContextType: EntityContextType; + readonly text: string; + readonly position: WordPosition; + readonly belongStmt: StmtContext; + relatedEntities: EntityContext[] | null; + columns: EntityContext[] | null; +} + +export function toEntityContext( + ctx: ParserRuleContext, + type: EntityContextType, + input: string, + belongStmt: StmtContext, + alias?: BaseAliasContext +): EntityContext { + const { text, ...position } = ctxToWord(ctx, input); + const finalAlias = Object.assign({}, baseAlias, alias ?? {}); + return { + entityContextType: type, + text, + position, + belongStmt, + relatedEntities: null, + columns: null, + ...finalAlias, + }; +} + +/** + * @todo: Handle alias, includes column alias, table alias, query as alias and so on. + * @todo: [may be need] Combine the entities in each clause. + */ +abstract class EntityCollector { + constructor(input: string, caretTokenIndex?: number) { + this._input = input; + this._caretTokenIndex = caretTokenIndex ?? -1; + this._entitiesSet = new Set(); + this._stmtStack = new SimpleStack(); + this._entityStack = new SimpleStack(); + this._rootStmt = null; + } + private readonly _input: string; + private readonly _caretTokenIndex: number; + private readonly _entitiesSet: Set; + /** Staging statements that have already entered. */ + private readonly _stmtStack: SimpleStack; + /** Staging entities inside a single statement or clause. */ + private readonly _entityStack: SimpleStack; + /** + * Always point to the first non-commonStmt at the bottom of the _stmtStack, + * unless there are only commonStmts in the _stmtStack. + * */ + private _rootStmt: StmtContext; + + visitTerminal() {} + + visitErrorNode() {} + + enterEveryRule() {} + + exitEveryRule() {} + + getEntities() { + return Array.from(this._entitiesSet); + } + + enterProgram() { + this._entitiesSet.clear(); + this._stmtStack.clear(); + this._entityStack.clear(); + this._rootStmt = null; + } + + protected pushStmt(ctx: ParserRuleContext, type: StmtContextType) { + let isContainCaret; + if (this._caretTokenIndex >= 0) { + isContainCaret = + ctx.start.tokenIndex <= this._caretTokenIndex && + ctx.stop?.tokenIndex >= this._caretTokenIndex; + } + const stmtContext = toStmtContext( + ctx, + type, + this._input, + this._rootStmt, + this._stmtStack.peek(), + isContainCaret + ); + if ( + this._stmtStack.isEmpty() || + this._stmtStack.peek()?.stmtContextType === StmtContextType.COMMON_STMT + ) { + this._rootStmt = stmtContext; + } + this._stmtStack.push(stmtContext); + + return stmtContext; + } + + protected popStmt() { + const stmtContext = this._stmtStack.pop(); + if (this._rootStmt === stmtContext) { + this._rootStmt = this._stmtStack.peek(); + if (!this._entityStack.isEmpty()) { + this.combineEntitiesAndAdd(stmtContext); + } + } + return stmtContext; + } + + protected pushEntity( + ctx: ParserRuleContext, + type: EntityContextType, + alias?: BaseAliasContext + ) { + const entityContext = toEntityContext( + ctx, + type, + this._input, + this._stmtStack.peek(), + alias + ); + if (this._stmtStack.isEmpty()) { + this._entitiesSet.add(entityContext); + } else { + // If is inside a statement + this._entityStack.push(entityContext); + } + return entityContext; + } + + /** + * Combine entities that inside a single statement. + * e.g. combine tableName and column if they are inside a same createTableStatement. + * Then add combined entities into result. + */ + private combineEntitiesAndAdd(stmtContext: StmtContext) { + const entitiesInsideStmt: EntityContext[] = []; + while ( + !this._entityStack.isEmpty() && + (this._entityStack.peek().belongStmt === stmtContext || + this._entityStack.peek().belongStmt.rootStmt === stmtContext) + ) { + entitiesInsideStmt.unshift(this._entityStack.pop()); + } + + let tmpResults = entitiesInsideStmt; + + tmpResults = this.combineRootStmtEntities(stmtContext, entitiesInsideStmt); + + while (tmpResults.length) { + this._entitiesSet.add(tmpResults.shift()); + } + } + + /** + * Combined all entities under a rootStmt. + */ + protected combineRootStmtEntities( + stmtContext: StmtContext, + entitiesInsideStmt: EntityContext[] + ): EntityContext[] { + if ( + stmtContext.stmtContextType === StmtContextType.CREATE_VIEW_STMT || + stmtContext.stmtContextType === StmtContextType.CREATE_TABLE_STMT + ) { + return this.combineCreateTableOrViewStmtEntities(stmtContext, entitiesInsideStmt); + } + return entitiesInsideStmt; + } + + protected combineCreateTableOrViewStmtEntities( + stmtContext: StmtContext, + entitiesInsideStmt: EntityContext[] + ): EntityContext[] { + const columns: EntityContext[] = []; + const relatedEntities: EntityContext[] = []; + let mainEntity: EntityContext = null; + const finalEntities = entitiesInsideStmt.reduce((result, entity) => { + if (entity.belongStmt !== stmtContext) { + if ( + entity.entityContextType !== EntityContextType.COLUMN && + entity.entityContextType !== EntityContextType.COLUMN_CREATE + ) { + relatedEntities.push(entity); + result.push(entity); + } + return result; + } + + if (entity.entityContextType === EntityContextType.COLUMN_CREATE) { + columns.push(entity); + } else if ( + entity.entityContextType === EntityContextType.TABLE_CREATE || + entity.entityContextType === EntityContextType.VIEW_CREATE + ) { + mainEntity = entity; + result.push(entity); + return result; + } else if (entity.entityContextType !== EntityContextType.COLUMN) { + relatedEntities.push(entity); + result.push(entity); + } + return result; + }, []); + + if (columns.length) { + mainEntity.columns = columns; + } + + if (relatedEntities.length) { + mainEntity.relatedEntities = relatedEntities; + } + + return finalEntities; + } +} + +export default EntityCollector; diff --git a/src/parser/common/utils/findCaretTokenIndex.ts b/src/parser/common/findCaretTokenIndex.ts similarity index 94% rename from src/parser/common/utils/findCaretTokenIndex.ts rename to src/parser/common/findCaretTokenIndex.ts index f91442d..2d07e25 100644 --- a/src/parser/common/utils/findCaretTokenIndex.ts +++ b/src/parser/common/findCaretTokenIndex.ts @@ -1,5 +1,5 @@ import { Token } from 'antlr4ng'; -import { CaretPosition } from '../basic-parser-types'; +import { CaretPosition } from './basic-parser-types'; /** * find token index via caret position (cursor position) diff --git a/src/parser/common/simpleStack.ts b/src/parser/common/simpleStack.ts new file mode 100644 index 0000000..5001df7 --- /dev/null +++ b/src/parser/common/simpleStack.ts @@ -0,0 +1,32 @@ +class SimpleStack { + constructor() { + this.stack = []; + } + private stack: T[]; + + push(item: T) { + this.stack.push(item); + } + + pop(): T { + return this.stack.pop(); + } + + peek(): T { + return this.stack[this.stack.length - 1]; + } + + clear() { + this.stack = []; + } + + size(): number { + return this.stack.length; + } + + isEmpty(): boolean { + return this.stack.length === 0; + } +} + +export default SimpleStack; diff --git a/src/parser/common/splitListener.ts b/src/parser/common/splitListener.ts new file mode 100644 index 0000000..81ec57f --- /dev/null +++ b/src/parser/common/splitListener.ts @@ -0,0 +1,17 @@ +abstract class SplitListener { + protected _statementsContext: T[] = []; + + visitTerminal() {} + + visitErrorNode() {} + + enterEveryRule() {} + + exitEveryRule() {} + + get statementsContext() { + return this._statementsContext; + } +} + +export default SplitListener; diff --git a/src/parser/common/textAndWord.ts b/src/parser/common/textAndWord.ts new file mode 100644 index 0000000..2e33b74 --- /dev/null +++ b/src/parser/common/textAndWord.ts @@ -0,0 +1,89 @@ +import type { ParserRuleContext, Token } from 'antlr4ng'; + +export interface WordPosition { + /** start at 0 */ + readonly startIndex: number; + /** end at ..n-1 */ + readonly endIndex: number; + /** start at 1 */ + readonly line: number; + /** start at 1 */ + readonly startColumn: number; + /** end at ..n + 1 */ + readonly endColumn: number; +} + +export interface WordRange extends WordPosition { + /** content of word */ + readonly text: string; +} + +export interface TextPosition { + /** start at 0 */ + readonly startIndex: number; + /** end at ..n-1 */ + readonly endIndex: number; + /** start at 1 */ + readonly startLine: number; + /** end at ..n */ + readonly endLine: number; + /** start at 1 */ + readonly startColumn: number; + /** end at ..n + 1 */ + readonly endColumn: number; +} + +export interface TextSlice extends TextPosition { + readonly text: string; +} + +/** + * Convert Token to Word + */ +export function tokenToWord(token: Token, input: string): WordPosition & { text: string } { + const startIndex = token.start; + const endIndex = token.stop; + return { + text: token.text, + line: token.line, + startIndex, + endIndex, + startColumn: token.column + 1, + endColumn: token.column + 1 + token.text.length, + }; +} + +/** + * Convert ParserRuleContext to Word + */ +export function ctxToWord(ctx: ParserRuleContext, input: string): WordPosition & { text: string } { + const startIndex = ctx.start.start; + const endIndex = ctx.stop.stop; + const text = input.slice(startIndex, endIndex + 1); + return { + text, + line: ctx.start.line, + startIndex, + endIndex, + startColumn: ctx.start.column + 1, + endColumn: ctx.stop.column + 1 + ctx.stop.text.length, + }; +} + +/** + * Convert ParserRuleContext to Text + */ +export function ctxToText(ctx: ParserRuleContext, input: string): TextPosition & { text: string } { + const startIndex = ctx.start.start; + const endIndex = ctx.stop.stop; + const text = input.slice(startIndex, endIndex + 1); + return { + text, + startLine: ctx.start.line, + endLine: ctx.stop.line, + startIndex, + endIndex, + startColumn: ctx.start.column + 1, + endColumn: ctx.stop.column + 1 + ctx.stop.text.length, + }; +} diff --git a/src/parser/flinksql/flinkEntityCollector.ts b/src/parser/flinksql/flinkEntityCollector.ts new file mode 100644 index 0000000..b84daa9 --- /dev/null +++ b/src/parser/flinksql/flinkEntityCollector.ts @@ -0,0 +1,134 @@ +import { EntityContextType } from '../../parser/common/basic-parser-types'; +import { + CatalogPathContext, + CatalogPathCreateContext, + ColumnNameCreateContext, + CreateCatalogContext, + CreateDatabaseContext, + CreateFunctionContext, + CreateTableContext, + CreateViewContext, + DatabasePathContext, + DatabasePathCreateContext, + FunctionNameCreateContext, + InsertStatementContext, + QueryStatementContext, + SqlStatementContext, + TablePathContext, + TablePathCreateContext, + ViewPathContext, + ViewPathCreateContext, +} from '../../lib/flinksql/FlinkSqlParser'; +import { FlinkSqlParserListener } from '../../lib/flinksql/FlinkSqlParserListener'; +import EntityCollector, { StmtContextType } from '../common/entityCollector'; + +export default class FlinkEntityCollector + extends EntityCollector + implements FlinkSqlParserListener +{ + /** ====== Entity Begin */ + exitCatalogPathCreate(ctx: CatalogPathCreateContext) { + this.pushEntity(ctx, EntityContextType.CATALOG_CREATE); + } + + exitCatalogPath(ctx: CatalogPathContext) { + this.pushEntity(ctx, EntityContextType.CATALOG); + } + + exitDatabasePathCreate(ctx: DatabasePathCreateContext) { + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + } + + exitDatabasePath(ctx: DatabasePathContext) { + this.pushEntity(ctx, EntityContextType.DATABASE); + } + + exitTablePath(ctx: TablePathContext) { + this.pushEntity(ctx, EntityContextType.TABLE); + } + + exitTablePathCreate(ctx: TablePathCreateContext) { + this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + } + + exitViewPath(ctx: ViewPathContext) { + this.pushEntity(ctx, EntityContextType.VIEW); + } + + exitViewPathCreate(ctx: ViewPathCreateContext) { + this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + } + + exitColumnNameCreate(ctx: ColumnNameCreateContext) { + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + } + + exitFunctionNameCreate(ctx: FunctionNameCreateContext) { + this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + } + + /** ===== Statement begin */ + enterSqlStatement(ctx: SqlStatementContext) { + this.pushStmt(ctx, StmtContextType.COMMON_STMT); + } + + exitSqlStatement(ctx: SqlStatementContext) { + this.popStmt(); + } + + enterCreateCatalog(ctx: CreateCatalogContext) { + this.pushStmt(ctx, StmtContextType.CREATE_CATALOG_STMT); + } + + exitCreateCatalog(ctx: CreateCatalogContext) { + this.popStmt(); + } + + enterCreateDatabase(ctx: CreateDatabaseContext) { + this.pushStmt(ctx, StmtContextType.CREATE_DATABASE_STMT); + } + + exitCreateDatabase(ctx: CreateDatabaseContext) { + this.popStmt(); + } + + enterCreateTable(ctx: CreateTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCreateTable(ctx: CreateTableContext) { + this.popStmt(); + } + + enterCreateView(ctx: CreateViewContext) { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + } + + exitCreateView(ctx: CreateViewContext) { + this.popStmt(); + } + + enterQueryStatement(ctx: QueryStatementContext) { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + } + + exitQueryStatement(ctx: QueryStatementContext) { + this.popStmt(); + } + + enterCreateFunction(ctx: CreateFunctionContext) { + this.pushStmt(ctx, StmtContextType.CREATE_FUNCTION_STMT); + } + + exitCreateFunction(ctx: CreateFunctionContext) { + this.popStmt(); + } + + enterInsertStatement(ctx: InsertStatementContext) { + this.pushStmt(ctx, StmtContextType.INSERT_STMT); + } + + exitInsertStatement(ctx: InsertStatementContext) { + this.popStmt(); + } +} diff --git a/src/parser/flinksql/flinkSplitListener.ts b/src/parser/flinksql/flinkSplitListener.ts new file mode 100644 index 0000000..8267619 --- /dev/null +++ b/src/parser/flinksql/flinkSplitListener.ts @@ -0,0 +1,12 @@ +import { SingleStatementContext } from '../../lib/flinksql/FlinkSqlParser'; +import { FlinkSqlParserListener } from '../../lib/flinksql/FlinkSqlParserListener'; +import SplitListener from '../common/splitListener'; + +export class FlinkSqlSplitListener + extends SplitListener + implements FlinkSqlParserListener +{ + exitSingleStatement = (ctx: SingleStatementContext) => { + this._statementsContext.push(ctx); + }; +} diff --git a/src/parser/flinksql.ts b/src/parser/flinksql/index.ts similarity index 72% rename from src/parser/flinksql.ts rename to src/parser/flinksql/index.ts index de61f01..113ad06 100644 --- a/src/parser/flinksql.ts +++ b/src/parser/flinksql/index.ts @@ -1,14 +1,14 @@ import { Token } from 'antlr4ng'; import { CandidatesCollection } from 'antlr4-c3'; -import { FlinkSqlLexer } from '../lib/flinksql/FlinkSqlLexer'; -import { - FlinkSqlParser, - ProgramContext, - SingleStatementContext, -} from '../lib/flinksql/FlinkSqlParser'; -import { FlinkSqlParserListener } from '../lib/flinksql/FlinkSqlParserListener'; -import { SyntaxContextType, Suggestions, SyntaxSuggestion } from './common/basic-parser-types'; -import BasicParser from './common/basicParser'; +import { FlinkSqlLexer } from '../../lib/flinksql/FlinkSqlLexer'; +import { FlinkSqlParser, ProgramContext } from '../../lib/flinksql/FlinkSqlParser'; +import { EntityContextType, Suggestions, SyntaxSuggestion } from '../common/basic-parser-types'; +import BasicParser from '../common/basicParser'; +import { StmtContextType } from '../common/entityCollector'; +import { FlinkSqlSplitListener } from './flinkSplitListener'; +import FlinkEntityCollector from './flinkEntityCollector'; + +export { FlinkSqlSplitListener, FlinkEntityCollector }; export default class FlinkSQL extends BasicParser { protected createLexerFromCharStream(charStreams) { @@ -39,6 +39,10 @@ export default class FlinkSQL extends BasicParser { - this._statementsContext.push(ctx); - }; - - visitTerminal() {} - visitErrorNode() {} - enterEveryRule() {} - exitEveryRule() {} - - get statementsContext() { - return this._statementsContext; - } -} diff --git a/src/parser/hive/hiveEntityCollector.ts b/src/parser/hive/hiveEntityCollector.ts new file mode 100644 index 0000000..d3ea78e --- /dev/null +++ b/src/parser/hive/hiveEntityCollector.ts @@ -0,0 +1,140 @@ +import { EntityContextType } from '../..'; +import { HiveSqlParserListener } from '../../lib'; +import { + ColumnNameCreateContext, + CreateDatabaseStatementContext, + CreateFunctionStatementContext, + CreateMaterializedViewStatementContext, + CreateTableStatementContext, + CreateViewStatementContext, + DbSchemaNameContext, + DbSchemaNameCreateContext, + FromInsertStmtContext, + FromSelectStmtContext, + FromStatementContext, + FunctionNameCreateContext, + InsertStmtContext, + SelectStatementContext, + StatementContext, + TableNameContext, + TableNameCreateContext, + ViewNameContext, + ViewNameCreateContext, +} from '../../lib/hive/HiveSqlParser'; +import EntityCollector, { StmtContextType } from '../common/entityCollector'; + +export default class HiveEntityCollector extends EntityCollector implements HiveSqlParserListener { + /** ====== Entity Begin */ + exitTableNameCreate = (ctx: TableNameCreateContext) => { + this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + }; + + exitTableName = (ctx: TableNameContext) => { + this.pushEntity(ctx, EntityContextType.TABLE); + }; + + exitColumnNameCreate = (ctx: ColumnNameCreateContext) => { + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + }; + + exitViewNameCreate = (ctx: ViewNameCreateContext) => { + this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + }; + + exitViewName = (ctx: ViewNameContext) => { + this.pushEntity(ctx, EntityContextType.VIEW); + }; + + exitDbSchemaNameCreate(ctx: DbSchemaNameCreateContext) { + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + } + + exitDbSchemaName(ctx: DbSchemaNameContext) { + this.pushEntity(ctx, EntityContextType.DATABASE); + } + + exitFunctionNameCreate(ctx: FunctionNameCreateContext) { + this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + } + + /** ===== Statement begin */ + enterStatement = (ctx: StatementContext) => { + this.pushStmt(ctx, StmtContextType.COMMON_STMT); + }; + + exitStatement = () => { + this.popStmt(); + }; + + enterCreateTableStatement = (ctx: CreateTableStatementContext) => { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + }; + + exitCreateTableStatement = () => { + this.popStmt(); + }; + + enterSelectStatement = (ctx: SelectStatementContext) => { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + }; + + exitSelectStatement = (ctx: SelectStatementContext) => { + this.popStmt(); + }; + + enterFromSelectStmt = (ctx: FromSelectStmtContext) => { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + }; + + exitFromSelectStmt = (ctx: FromSelectStmtContext) => { + this.popStmt(); + }; + + enterCreateViewStatement = (ctx: CreateViewStatementContext) => { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + }; + + exitCreateViewStatement = (ctx: CreateViewStatementContext) => { + this.popStmt(); + }; + + enterCreateMaterializedViewStatement = (ctx: CreateMaterializedViewStatementContext) => { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + }; + + exitCreateMaterializedViewStatement = (ctx: CreateMaterializedViewStatementContext) => { + this.popStmt(); + }; + + enterInsertStmt = (ctx: InsertStmtContext) => { + this.pushStmt(ctx, StmtContextType.INSERT_STMT); + }; + + exitInsertStmt = (ctx: InsertStmtContext) => { + this.popStmt(); + }; + + enterFromInsertStmt = (ctx: FromInsertStmtContext) => { + this.pushStmt(ctx, StmtContextType.INSERT_STMT); + }; + + exitFromInsertStmt = (ctx: FromInsertStmtContext) => { + this.popStmt(); + }; + + enterCreateDatabaseStatement(ctx: CreateDatabaseStatementContext) { + this.pushStmt(ctx, StmtContextType.CREATE_DATABASE_STMT); + } + + exitCreateDatabaseStatement(ctx: CreateDatabaseStatementContext) { + this.popStmt(); + } + + enterFunctionNameCreate(ctx: FunctionNameCreateContext) { + this.pushStmt(ctx, StmtContextType.CREATE_FUNCTION_STMT); + } + + exitCreateFunctionStatement(ctx: CreateFunctionStatementContext) { + this.popStmt(); + } +} diff --git a/src/parser/hive/hiveSplitListener.ts b/src/parser/hive/hiveSplitListener.ts new file mode 100644 index 0000000..1e5803a --- /dev/null +++ b/src/parser/hive/hiveSplitListener.ts @@ -0,0 +1,12 @@ +import { StatementContext } from '../../lib/hive/HiveSqlParser'; +import { HiveSqlParserListener } from '../../lib/hive/HiveSqlParserListener'; +import SplitListener from '../common/splitListener'; + +export class HiveSqlSplitListener + extends SplitListener + implements HiveSqlParserListener +{ + exitStatement = (ctx: StatementContext) => { + this._statementsContext.push(ctx); + }; +} diff --git a/src/parser/hive.ts b/src/parser/hive/index.ts similarity index 73% rename from src/parser/hive.ts rename to src/parser/hive/index.ts index 2e4952e..0631d89 100644 --- a/src/parser/hive.ts +++ b/src/parser/hive/index.ts @@ -1,10 +1,15 @@ import { Token } from 'antlr4ng'; import { CandidatesCollection } from 'antlr4-c3'; -import { HiveSqlLexer } from '../lib/hive/HiveSqlLexer'; -import { HiveSqlParser, ProgramContext, StatementContext } from '../lib/hive/HiveSqlParser'; -import BasicParser from './common/basicParser'; -import { HiveSqlParserListener } from '../lib/hive/HiveSqlParserListener'; -import { SyntaxContextType, Suggestions, SyntaxSuggestion } from './common/basic-parser-types'; +import { HiveSqlLexer } from '../../lib/hive/HiveSqlLexer'; +import { HiveSqlParser, ProgramContext } from '../../lib/hive/HiveSqlParser'; +import BasicParser from '../common/basicParser'; + +import { EntityContextType, Suggestions, SyntaxSuggestion } from '../common/basic-parser-types'; +import { StmtContextType } from '../common/entityCollector'; +import { HiveSqlSplitListener } from './hiveSplitListener'; +import HiveEntityCollector from './hiveEntityCollector'; + +export { HiveEntityCollector, HiveSqlSplitListener }; export default class HiveSQL extends BasicParser { protected createLexerFromCharStream(charStreams) { @@ -34,6 +39,10 @@ export default class HiveSQL extends BasicParser { - this._statementContext.push(ctx); - }; - - visitTerminal() {} - visitErrorNode() {} - enterEveryRule() {} - exitEveryRule() {} - - get statementsContext() { - return this._statementContext; - } -} diff --git a/src/parser/impala/impalaEntityCollector.ts b/src/parser/impala/impalaEntityCollector.ts new file mode 100644 index 0000000..60380ae --- /dev/null +++ b/src/parser/impala/impalaEntityCollector.ts @@ -0,0 +1,143 @@ +import { ImpalaSqlParserListener } from '../../lib'; +import { + ColumnNamePathCreateContext, + CreateAggregateFunctionContext, + CreateFunctionContext, + CreateKuduTableAsSelectContext, + CreateSchemaContext, + CreateTableLikeContext, + CreateTableSelectContext, + CreateViewContext, + DatabaseNameCreateContext, + DatabaseNamePathContext, + FunctionNameCreateContext, + FunctionNamePathContext, + InsertStatementContext, + QueryStatementContext, + SingleStatementContext, + TableNameCreateContext, + TableNamePathContext, + ViewNameCreateContext, + ViewNamePathContext, +} from '../../lib/impala/ImpalaSqlParser'; +import { EntityContextType } from '../common/basic-parser-types'; +import EntityCollector, { StmtContextType } from '../common/entityCollector'; + +export default class ImpalaEntityCollector + extends EntityCollector + implements ImpalaSqlParserListener +{ + /** ===== Entity begin */ + exitTableNameCreate(ctx: TableNameCreateContext) { + this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + } + + exitTableNamePath(ctx: TableNamePathContext) { + this.pushEntity(ctx, EntityContextType.TABLE); + } + + exitColumnNamePathCreate(ctx: ColumnNamePathCreateContext) { + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + } + + exitViewNameCreate(ctx: ViewNameCreateContext) { + this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + } + + exitViewNamePath(ctx: ViewNamePathContext) { + this.pushEntity(ctx, EntityContextType.VIEW); + } + + exitDatabaseNamePath(ctx: DatabaseNamePathContext) { + this.pushEntity(ctx, EntityContextType.DATABASE); + } + + exitDatabaseNameCreate(ctx: DatabaseNameCreateContext) { + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + } + + exitFunctionNameCreate(ctx: FunctionNameCreateContext) { + this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + } + + /** ===== Statement begin */ + enterSingleStatement(ctx: SingleStatementContext) { + this.pushStmt(ctx, StmtContextType.COMMON_STMT); + } + + exitSingleStatement(ctx: SingleStatementContext) { + this.popStmt(); + } + + enterCreateTableLike(ctx: CreateTableLikeContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCreateTableLike(ctx: CreateTableLikeContext) { + this.popStmt(); + } + + enterCreateTableSelect(ctx: CreateTableSelectContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCreateTableSelect(ctx: CreateTableSelectContext) { + this.popStmt(); + } + + enterCreateKuduTableAsSelect(ctx: CreateKuduTableAsSelectContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCreateKuduTableAsSelect(ctx: CreateKuduTableAsSelectContext) { + this.popStmt(); + } + + enterQueryStatement(ctx: QueryStatementContext) { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + } + + exitQueryStatement(ctx: QueryStatementContext) { + this.popStmt(); + } + + enterCreateView(ctx: CreateViewContext) { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + } + + exitCreateView(ctx: CreateViewContext) { + this.popStmt(); + } + + enterInsertStatement(ctx: InsertStatementContext) { + this.pushStmt(ctx, StmtContextType.INSERT_STMT); + } + + exitInsertStatement(ctx: InsertStatementContext) { + this.popStmt(); + } + + enterCreateSchema(ctx: CreateSchemaContext) { + this.pushStmt(ctx, StmtContextType.CREATE_DATABASE_STMT); + } + + exitCreateSchema(ctx: CreateSchemaContext) { + this.popStmt(); + } + + enterCreateAggregateFunction(ctx: CreateAggregateFunctionContext) { + this.pushStmt(ctx, StmtContextType.CREATE_FUNCTION_STMT); + } + + exitCreateAggregateFunction(ctx: CreateAggregateFunctionContext) { + this.popStmt(); + } + + enterCreateFunction(ctx: CreateFunctionContext) { + this.pushStmt(ctx, StmtContextType.CREATE_FUNCTION_STMT); + } + + exitCreateFunction(ctx: CreateFunctionContext) { + this.popStmt(); + } +} diff --git a/src/parser/impala/impalaSplitListener.ts b/src/parser/impala/impalaSplitListener.ts new file mode 100644 index 0000000..a51704f --- /dev/null +++ b/src/parser/impala/impalaSplitListener.ts @@ -0,0 +1,12 @@ +import { SingleStatementContext } from '../../lib/impala/ImpalaSqlParser'; +import { ImpalaSqlParserListener } from '../../lib/impala/ImpalaSqlParserListener'; +import SplitListener from '../common/splitListener'; + +export class ImpalaSqlSplitListener + extends SplitListener + implements ImpalaSqlParserListener +{ + exitSingleStatement = (ctx: SingleStatementContext) => { + this._statementsContext.push(ctx); + }; +} diff --git a/src/parser/impala.ts b/src/parser/impala/index.ts similarity index 71% rename from src/parser/impala.ts rename to src/parser/impala/index.ts index d351b5d..b26f29d 100644 --- a/src/parser/impala.ts +++ b/src/parser/impala/index.ts @@ -1,14 +1,14 @@ import { Token } from 'antlr4ng'; import { CandidatesCollection } from 'antlr4-c3'; -import { ImpalaSqlLexer } from '../lib/impala/ImpalaSqlLexer'; -import { - ImpalaSqlParser, - ProgramContext, - SingleStatementContext, -} from '../lib/impala/ImpalaSqlParser'; -import BasicParser from './common/basicParser'; -import { ImpalaSqlParserListener } from '../lib/impala/ImpalaSqlParserListener'; -import { SyntaxContextType, Suggestions, SyntaxSuggestion } from './common/basic-parser-types'; +import { ImpalaSqlLexer } from '../../lib/impala/ImpalaSqlLexer'; +import { ImpalaSqlParser, ProgramContext } from '../../lib/impala/ImpalaSqlParser'; +import BasicParser from '../common/basicParser'; +import { EntityContextType, Suggestions, SyntaxSuggestion } from '../common/basic-parser-types'; +import { StmtContextType } from '../common/entityCollector'; +import { ImpalaSqlSplitListener } from './impalaSplitListener'; +import ImpalaEntityCollector from './impalaEntityCollector'; + +export { ImpalaEntityCollector, ImpalaSqlSplitListener }; export default class ImpalaSQL extends BasicParser< ImpalaSqlLexer, @@ -41,6 +41,10 @@ export default class ImpalaSQL extends BasicParser< return new ImpalaSqlSplitListener(); } + protected createEntityCollector(input: string, caretTokenIndex?: number) { + return new ImpalaEntityCollector(input, caretTokenIndex); + } + protected processCandidates( candidates: CandidatesCollection, allTokens: Token[], @@ -57,46 +61,46 @@ export default class ImpalaSQL extends BasicParser< caretTokenIndex + tokenIndexOffset + 1 ); - let syntaxContextType: SyntaxContextType; + let syntaxContextType: EntityContextType | StmtContextType; switch (ruleType) { case ImpalaSqlParser.RULE_functionNameCreate: { - syntaxContextType = SyntaxContextType.FUNCTION_CREATE; + syntaxContextType = EntityContextType.FUNCTION_CREATE; break; } case ImpalaSqlParser.RULE_tableNameCreate: { - syntaxContextType = SyntaxContextType.TABLE_CREATE; + syntaxContextType = EntityContextType.TABLE_CREATE; break; } case ImpalaSqlParser.RULE_databaseNameCreate: { - syntaxContextType = SyntaxContextType.DATABASE_CREATE; + syntaxContextType = EntityContextType.DATABASE_CREATE; break; } case ImpalaSqlParser.RULE_viewNameCreate: { - syntaxContextType = SyntaxContextType.VIEW_CREATE; + syntaxContextType = EntityContextType.VIEW_CREATE; break; } case ImpalaSqlParser.RULE_columnNamePathCreate: { - syntaxContextType = SyntaxContextType.COLUMN_CREATE; + syntaxContextType = EntityContextType.COLUMN_CREATE; break; } case ImpalaSqlParser.RULE_databaseNamePath: { - syntaxContextType = SyntaxContextType.DATABASE; + syntaxContextType = EntityContextType.DATABASE; break; } case ImpalaSqlParser.RULE_tableNamePath: { - syntaxContextType = SyntaxContextType.TABLE; + syntaxContextType = EntityContextType.TABLE; break; } case ImpalaSqlParser.RULE_viewNamePath: { - syntaxContextType = SyntaxContextType.VIEW; + syntaxContextType = EntityContextType.VIEW; break; } case ImpalaSqlParser.RULE_functionNamePath: { - syntaxContextType = SyntaxContextType.FUNCTION; + syntaxContextType = EntityContextType.FUNCTION; break; } case ImpalaSqlParser.RULE_columnNamePath: { - syntaxContextType = SyntaxContextType.COLUMN; + syntaxContextType = EntityContextType.COLUMN; } default: break; @@ -127,20 +131,3 @@ export default class ImpalaSQL extends BasicParser< }; } } - -export class ImpalaSqlSplitListener implements ImpalaSqlParserListener { - private _statementContext: SingleStatementContext[] = []; - - exitSingleStatement = (ctx: SingleStatementContext) => { - this._statementContext.push(ctx); - }; - - visitTerminal() {} - visitErrorNode() {} - enterEveryRule() {} - exitEveryRule() {} - - get statementsContext() { - return this._statementContext; - } -} diff --git a/src/parser/index.ts b/src/parser/index.ts index 03e3952..603644c 100644 --- a/src/parser/index.ts +++ b/src/parser/index.ts @@ -4,5 +4,5 @@ export { default as HiveSQL } from './hive'; export { default as FlinkSQL } from './flinksql'; export { default as SparkSQL } from './spark'; export { default as PostgresSQL } from './pgsql'; -export { default as TrinoSQL } from './trinosql'; +export { default as TrinoSQL } from './trino'; export { default as ImpalaSQL } from './impala'; diff --git a/src/parser/mysql.ts b/src/parser/mysql/index.ts similarity index 71% rename from src/parser/mysql.ts rename to src/parser/mysql/index.ts index f4b9400..23dde33 100644 --- a/src/parser/mysql.ts +++ b/src/parser/mysql/index.ts @@ -1,10 +1,14 @@ import { Token } from 'antlr4ng'; import { CandidatesCollection } from 'antlr4-c3'; -import { MySqlLexer } from '../lib/mysql/MySqlLexer'; -import { MySqlParser, ProgramContext, SingleStatementContext } from '../lib/mysql/MySqlParser'; -import BasicParser from './common/basicParser'; -import { Suggestions, SyntaxContextType, SyntaxSuggestion } from './common/basic-parser-types'; -import { MySqlParserListener } from '../lib/mysql/MySqlParserListener'; +import { MySqlLexer } from '../../lib/mysql/MySqlLexer'; +import { MySqlParser, ProgramContext } from '../../lib/mysql/MySqlParser'; +import BasicParser from '../common/basicParser'; +import { Suggestions, EntityContextType, SyntaxSuggestion } from '../common/basic-parser-types'; +import { StmtContextType } from '../common/entityCollector'; +import MysqlSplitListener from './mysqlSplitListener'; +import MySqlEntityCollector from './mysqlEntityCollector'; + +export { MySqlEntityCollector, MysqlSplitListener }; export default class MySQL extends BasicParser { protected createLexerFromCharStream(charStreams): MySqlLexer { @@ -33,6 +37,10 @@ export default class MySQL extends BasicParser { - this._statementsContext.push(ctx); - }; - - visitTerminal() {} - visitErrorNode() {} - enterEveryRule() {} - exitEveryRule() {} - - get statementsContext() { - return this._statementsContext; - } -} diff --git a/src/parser/mysql/mysqlEntityCollector.ts b/src/parser/mysql/mysqlEntityCollector.ts new file mode 100644 index 0000000..a500fee --- /dev/null +++ b/src/parser/mysql/mysqlEntityCollector.ts @@ -0,0 +1,147 @@ +import type { + ColumnCreateTableContext, + ColumnNameCreateContext, + CopyCreateTableContext, + CreateDatabaseContext, + CreateFunctionContext, + CreateViewContext, + DatabaseNameContext, + DatabaseNameCreateContext, + FunctionNameCreateContext, + InsertStatementContext, + QueryCreateTableContext, + SelectExpressionContext, + SelectStatementContext, + SingleStatementContext, + TableNameContext, + TableNameCreateContext, + ViewNameContext, + ViewNameCreateContext, +} from '../../lib/mysql/MySqlParser'; +import type { MySqlParserListener } from '../../lib/mysql/MySqlParserListener'; +import { EntityContextType } from '../common/basic-parser-types'; +import EntityCollector, { StmtContextType } from '../common/entityCollector'; + +export default class MySqlEntityCollector extends EntityCollector implements MySqlParserListener { + /** ====== Entity Begin */ + exitDatabaseName(ctx: DatabaseNameContext) { + this.pushEntity(ctx, EntityContextType.DATABASE); + } + + exitDatabaseNameCreate(ctx: DatabaseNameCreateContext) { + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + } + + exitTableName(ctx: TableNameContext) { + this.pushEntity(ctx, EntityContextType.TABLE); + } + + exitTableNameCreate(ctx: TableNameCreateContext) { + this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + } + + exitViewName(ctx: ViewNameContext) { + this.pushEntity(ctx, EntityContextType.VIEW); + } + + exitViewNameCreate(ctx: ViewNameCreateContext) { + this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + } + + exitFunctionNameCreate(ctx: FunctionNameCreateContext) { + this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + } + + exitColumnNameCreate(ctx: ColumnNameCreateContext) { + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + } + + /** ===== Statement begin */ + enterSingleStatement(ctx: SingleStatementContext) { + this.pushStmt(ctx, StmtContextType.COMMON_STMT); + } + + exitSingleStatement(ctx: SingleStatementContext) { + this.popStmt(); + } + + enterQueryCreateTable(ctx: QueryCreateTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitQueryCreateTable(ctx: QueryCreateTableContext) { + this.popStmt(); + } + + enterColumnCreateTable(ctx: ColumnCreateTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitColumnCreateTable(ctx: ColumnCreateTableContext) { + this.popStmt(); + } + + enterCopyCreateTable(ctx: CopyCreateTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCopyCreateTable(ctx: CopyCreateTableContext) { + this.popStmt(); + } + + enterCreateView(ctx: CreateViewContext) { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + } + + exitCreateView(ctx: CreateViewContext) { + this.popStmt(); + } + + enterSimpleSelect(ctx: SelectStatementContext) { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + } + + exitSimpleSelect(ctx: SelectStatementContext) { + this.popStmt(); + } + + enterUnionAndLateralSelect(ctx: SelectStatementContext) { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + } + + exitUnionAndLateralSelect(ctx: SelectStatementContext) { + this.popStmt(); + } + + enterSelectExpression(ctx: SelectStatementContext) { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + } + + exitSelectExpression(ctx: SelectStatementContext) { + this.popStmt(); + } + + enterInsertStatement(ctx: InsertStatementContext) { + this.pushStmt(ctx, StmtContextType.INSERT_STMT); + } + + exitInsertStatement(ctx: InsertStatementContext) { + this.popStmt(); + } + + enterCreateDatabase(ctx: CreateDatabaseContext) { + this.pushStmt(ctx, StmtContextType.CREATE_DATABASE_STMT); + } + + exitCreateDatabase(ctx: CreateDatabaseContext) { + this.popStmt(); + } + + enterCreateFunction(ctx: CreateFunctionContext) { + this.pushStmt(ctx, StmtContextType.CREATE_FUNCTION_STMT); + } + + exitCreateFunction(ctx: CreateFunctionContext) { + this.popStmt(); + } +} diff --git a/src/parser/mysql/mysqlSplitListener.ts b/src/parser/mysql/mysqlSplitListener.ts new file mode 100644 index 0000000..87d7f02 --- /dev/null +++ b/src/parser/mysql/mysqlSplitListener.ts @@ -0,0 +1,12 @@ +import { SingleStatementContext } from '../../lib/mysql/MySqlParser'; +import { MySqlParserListener } from '../../lib/mysql/MySqlParserListener'; +import SplitListener from '../common/splitListener'; + +export default class MysqlSplitListener + extends SplitListener + implements MySqlParserListener +{ + exitSingleStatement = (ctx: SingleStatementContext) => { + this._statementsContext.push(ctx); + }; +} diff --git a/src/parser/pgsql.ts b/src/parser/pgsql/index.ts similarity index 73% rename from src/parser/pgsql.ts rename to src/parser/pgsql/index.ts index c2c158c..09856dd 100644 --- a/src/parser/pgsql.ts +++ b/src/parser/pgsql/index.ts @@ -1,10 +1,15 @@ -import { Token } from 'antlr4ng'; import { CandidatesCollection } from 'antlr4-c3'; -import { PostgreSQLLexer } from '../lib/pgsql/PostgreSQLLexer'; -import { PostgreSQLParser, ProgramContext, SingleStmtContext } from '../lib/pgsql/PostgreSQLParser'; -import BasicParser from './common/basicParser'; -import { PostgreSQLParserListener } from '../lib/pgsql/PostgreSQLParserListener'; -import { SyntaxContextType, Suggestions, SyntaxSuggestion } from './common/basic-parser-types'; +import { Token } from 'antlr4ng'; + +import { PostgreSQLLexer } from '../../lib/pgsql/PostgreSQLLexer'; +import { PostgreSQLParser, ProgramContext } from '../../lib/pgsql/PostgreSQLParser'; +import { EntityContextType, Suggestions, SyntaxSuggestion } from '../common/basic-parser-types'; +import BasicParser from '../common/basicParser'; +import { StmtContextType } from '../common/entityCollector'; +import PostgreSQLEntityCollector from './postgreEntityCollector'; +import PostgreSqlSplitListener from './postgreSplitListener'; + +export { PostgreSQLEntityCollector, PostgreSqlSplitListener }; export default class PostgresSQL extends BasicParser< PostgreSQLLexer, @@ -38,7 +43,11 @@ export default class PostgresSQL extends BasicParser< ]); protected get splitListener() { - return new PgSqlSplitListener(); + return new PostgreSqlSplitListener(); + } + + protected createEntityCollector(input: string, caretTokenIndex?: number) { + return new PostgreSQLEntityCollector(input, caretTokenIndex); } protected processCandidates( @@ -57,62 +66,62 @@ export default class PostgresSQL extends BasicParser< caretTokenIndex + tokenIndexOffset + 1 ); - let syntaxContextType: SyntaxContextType; + let syntaxContextType: EntityContextType | StmtContextType; switch (ruleType) { case PostgreSQLParser.RULE_table_name_create: { - syntaxContextType = SyntaxContextType.TABLE_CREATE; + syntaxContextType = EntityContextType.TABLE_CREATE; break; } case PostgreSQLParser.RULE_table_name: { - syntaxContextType = SyntaxContextType.TABLE; + syntaxContextType = EntityContextType.TABLE; break; } case PostgreSQLParser.RULE_function_name_create: { - syntaxContextType = SyntaxContextType.FUNCTION_CREATE; + syntaxContextType = EntityContextType.FUNCTION_CREATE; break; } case PostgreSQLParser.RULE_function_name: { - syntaxContextType = SyntaxContextType.FUNCTION; + syntaxContextType = EntityContextType.FUNCTION; break; } case PostgreSQLParser.RULE_schema_name_create: { - syntaxContextType = SyntaxContextType.DATABASE_CREATE; + syntaxContextType = EntityContextType.DATABASE_CREATE; break; } case PostgreSQLParser.RULE_schema_name: { - syntaxContextType = SyntaxContextType.DATABASE; + syntaxContextType = EntityContextType.DATABASE; break; } case PostgreSQLParser.RULE_view_name_create: { - syntaxContextType = SyntaxContextType.VIEW_CREATE; + syntaxContextType = EntityContextType.VIEW_CREATE; break; } case PostgreSQLParser.RULE_view_name: { - syntaxContextType = SyntaxContextType.VIEW; + syntaxContextType = EntityContextType.VIEW; break; } case PostgreSQLParser.RULE_database_name_create: { - syntaxContextType = SyntaxContextType.DATABASE_CREATE; + syntaxContextType = EntityContextType.DATABASE_CREATE; break; } case PostgreSQLParser.RULE_database_name: { - syntaxContextType = SyntaxContextType.DATABASE; + syntaxContextType = EntityContextType.DATABASE; break; } case PostgreSQLParser.RULE_procedure_name_create: { - syntaxContextType = SyntaxContextType.PROCEDURE_CREATE; + syntaxContextType = EntityContextType.PROCEDURE_CREATE; break; } case PostgreSQLParser.RULE_procedure_name: { - syntaxContextType = SyntaxContextType.PROCEDURE; + syntaxContextType = EntityContextType.PROCEDURE; break; } case PostgreSQLParser.RULE_column_name_create: { - syntaxContextType = SyntaxContextType.COLUMN_CREATE; + syntaxContextType = EntityContextType.COLUMN_CREATE; break; } case PostgreSQLParser.RULE_column_name: { - syntaxContextType = SyntaxContextType.COLUMN; + syntaxContextType = EntityContextType.COLUMN; break; } default: @@ -144,20 +153,3 @@ export default class PostgresSQL extends BasicParser< }; } } - -export class PgSqlSplitListener implements PostgreSQLParserListener { - private _statementsContext: SingleStmtContext[] = []; - - exitSingleStmt = (ctx: SingleStmtContext) => { - this._statementsContext.push(ctx); - }; - - visitTerminal() {} - visitErrorNode() {} - enterEveryRule() {} - exitEveryRule() {} - - get statementsContext() { - return this._statementsContext; - } -} diff --git a/src/parser/pgsql/postgreEntityCollector.ts b/src/parser/pgsql/postgreEntityCollector.ts new file mode 100644 index 0000000..237141e --- /dev/null +++ b/src/parser/pgsql/postgreEntityCollector.ts @@ -0,0 +1,151 @@ +import type { + ColumnCreateTableContext, + ColumnNameCreateContext, + CreateDatabaseContext, + CreateForeignTableContext, + CreateMaterializedViewContext, + CreatePartitionForeignTableContext, + CreateViewContext, + CreatefunctionstmtContext, + DatabaseNameContext, + DatabaseNameCreateContext, + FunctionNameCreateContext, + InsertStatementContext, + QueryCreateTableContext, + SelectStatementContext, + SingleStmtContext, + TableNameContext, + TableNameCreateContext, + ViewNameContext, + ViewNameCreateContext, +} from '../../lib/pgsql/PostgreSQLParser'; +import type { PostgreSQLParserListener } from '../../lib/pgsql/PostgreSQLParserListener'; +import { EntityContextType } from '../common/basic-parser-types'; +import EntityCollector, { StmtContextType } from '../common/entityCollector'; + +export default class PostgreSQLEntityCollector + extends EntityCollector + implements PostgreSQLParserListener +{ + /** ====== Entity Begin */ + exitDatabaseName(ctx: DatabaseNameContext) { + this.pushEntity(ctx, EntityContextType.DATABASE); + } + + exitDatabaseNameCreate(ctx: DatabaseNameCreateContext) { + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + } + + exitTableName(ctx: TableNameContext) { + this.pushEntity(ctx, EntityContextType.TABLE); + } + + exitTableNameCreate(ctx: TableNameCreateContext) { + this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + } + + exitViewName(ctx: ViewNameContext) { + this.pushEntity(ctx, EntityContextType.VIEW); + } + + exitViewNameCreate(ctx: ViewNameCreateContext) { + this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + } + + exitFunctionNameCreate(ctx: FunctionNameCreateContext) { + this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + } + + exitColumnNameCreate(ctx: ColumnNameCreateContext) { + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + } + + /** ===== Statement begin */ + enterSingleStatement(ctx: SingleStmtContext) { + this.pushStmt(ctx, StmtContextType.COMMON_STMT); + } + + exitSingleStatement(ctx: SingleStmtContext) { + this.popStmt(); + } + + enterCreateDatabase(ctx: CreateDatabaseContext) { + this.pushStmt(ctx, StmtContextType.CREATE_DATABASE_STMT); + } + + exitCreateDatabase(ctx: CreateDatabaseContext) { + this.popStmt(); + } + + enterQueryCreateTable(ctx: QueryCreateTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitQueryCreateTable(ctx: QueryCreateTableContext) { + this.popStmt(); + } + + enterColumnCreateTable(ctx: ColumnCreateTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitColumnCreateTable(ctx: ColumnCreateTableContext) { + this.popStmt(); + } + + enterCreateForeignTable(ctx: CreateForeignTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCreateForeignTable(ctx: CreateForeignTableContext) { + this.popStmt(); + } + + enterCreatePartitionForeignTable(ctx: CreatePartitionForeignTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCreatePartitionForeignTable(ctx: CreatePartitionForeignTableContext) { + this.popStmt(); + } + + enterCreateView(ctx: CreateViewContext) { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + } + + exitCreateView(ctx: CreateViewContext) { + this.popStmt(); + } + + enterCreateMaterializedView(ctx: CreateMaterializedViewContext) { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + } + + exitCreateMaterializedView(ctx: CreateMaterializedViewContext) { + this.popStmt(); + } + + enterSelectStatement(ctx: SelectStatementContext) { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + } + + exitSelectStatement(ctx: SelectStatementContext) { + this.popStmt(); + } + + enterInsertStatement(ctx: InsertStatementContext) { + this.pushStmt(ctx, StmtContextType.INSERT_STMT); + } + + exitInsertStatement(ctx: InsertStatementContext) { + this.popStmt(); + } + + enterCreatefunctionstmt(ctx: CreatefunctionstmtContext) { + this.pushStmt(ctx, StmtContextType.CREATE_FUNCTION_STMT); + } + + exitCreatefunctionstmt(ctx: CreatefunctionstmtContext) { + this.popStmt(); + } +} diff --git a/src/parser/pgsql/postgreSplitListener.ts b/src/parser/pgsql/postgreSplitListener.ts new file mode 100644 index 0000000..f9982cb --- /dev/null +++ b/src/parser/pgsql/postgreSplitListener.ts @@ -0,0 +1,12 @@ +import { SingleStmtContext } from '../../lib/pgsql/PostgreSQLParser'; +import { PostgreSQLParserListener } from '../../lib/pgsql/PostgreSQLParserListener'; +import SplitListener from '../common/splitListener'; + +export default class PostgreSqlSplitListener + extends SplitListener + implements PostgreSQLParserListener +{ + exitSingleStmt = (ctx: SingleStmtContext) => { + this._statementsContext.push(ctx); + }; +} diff --git a/src/parser/plsql.ts b/src/parser/plsql.ts index 70cb350..88538fd 100644 --- a/src/parser/plsql.ts +++ b/src/parser/plsql.ts @@ -21,6 +21,10 @@ export default class PLSQL extends BasicParser { protected createLexerFromCharStream(charStreams) { @@ -22,8 +22,8 @@ export default class SparkSQL extends BasicParser = new Set([ - SparkSqlParser.RULE_dbSchemaName, - SparkSqlParser.RULE_dbSchemaNameCreate, + SparkSqlParser.RULE_namespaceName, + SparkSqlParser.RULE_namespaceNameCreate, SparkSqlParser.RULE_tableName, SparkSqlParser.RULE_tableNameCreate, SparkSqlParser.RULE_viewName, @@ -38,6 +38,10 @@ export default class SparkSQL extends BasicParser { - this._statementsContext.push(ctx); - }; - - visitTerminal() {} - visitErrorNode() {} - enterEveryRule() {} - exitEveryRule() {} - - get statementsContext() { - return this._statementsContext; - } -} diff --git a/src/parser/spark/sparkEntityCollector.ts b/src/parser/spark/sparkEntityCollector.ts new file mode 100644 index 0000000..46f829f --- /dev/null +++ b/src/parser/spark/sparkEntityCollector.ts @@ -0,0 +1,151 @@ +import type { + NamespaceNameContext, + NamespaceNameCreateContext, + SingleStatementContext, + TableNameContext, + TableNameCreateContext, + ViewNameContext, + ViewNameCreateContext, + FunctionNameCreateContext, + ColumnNameCreateContext, + CreateTableContext, + CreateTableLikeContext, + ReplaceTableContext, + QueryStatementContext, + InsertFromQueryContext, + MultipleInsertContext, + CreateViewContext, + CreateTempViewUsingContext, + CreateNamespaceContext, + CreateFunctionContext, +} from '../../lib/spark/SparkSqlParser'; +import type { SparkSqlParserListener } from '../../lib/spark/SparkSqlParserListener'; +import { EntityContextType } from '../common/basic-parser-types'; +import EntityCollector, { StmtContextType } from '../common/entityCollector'; + +export default class SparkEntityCollector + extends EntityCollector + implements SparkSqlParserListener +{ + /** ====== Entity Begin */ + exitNamespaceName(ctx: NamespaceNameContext) { + this.pushEntity(ctx, EntityContextType.DATABASE); + } + + exitNamespaceNameCreate(ctx: NamespaceNameCreateContext) { + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + } + + exitTableName(ctx: TableNameContext) { + this.pushEntity(ctx, EntityContextType.TABLE); + } + + exitTableNameCreate(ctx: TableNameCreateContext) { + this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + } + + exitViewName(ctx: ViewNameContext) { + this.pushEntity(ctx, EntityContextType.VIEW); + } + + exitViewNameCreate(ctx: ViewNameCreateContext) { + this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + } + + exitFunctionNameCreate(ctx: FunctionNameCreateContext) { + this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + } + + exitColumnNameCreate(ctx: ColumnNameCreateContext) { + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + } + + /** ===== Statement begin */ + enterSingleStatement(ctx: SingleStatementContext) { + this.pushStmt(ctx, StmtContextType.COMMON_STMT); + } + + exitSingleStatement(ctx: SingleStatementContext) { + this.popStmt(); + } + + enterCreateTable(ctx: CreateTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCreateTable(ctx: CreateTableContext) { + this.popStmt(); + } + + enterCreateTableLike(ctx: CreateTableLikeContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCreateTableLike(ctx: CreateTableLikeContext) { + this.popStmt(); + } + + enterReplaceTable(ctx: ReplaceTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitReplaceTable(ctx: ReplaceTableContext) { + this.popStmt(); + } + + enterCreateView(ctx: CreateViewContext) { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + } + + exitCreateView(ctx: CreateViewContext) { + this.popStmt(); + } + + enterCreateTempViewUsing(ctx: CreateTempViewUsingContext) { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + } + + exitCreateTempViewUsing(ctx: CreateTempViewUsingContext) { + this.popStmt(); + } + + enterQueryStatement(ctx: QueryStatementContext) { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + } + + exitQueryStatement(ctx: QueryStatementContext) { + this.popStmt(); + } + + enterInsertFromQuery(ctx: InsertFromQueryContext) { + this.pushStmt(ctx, StmtContextType.INSERT_STMT); + } + + exitInsertFromQuery(ctx: InsertFromQueryContext) { + this.popStmt(); + } + + enterMultipleInsert(ctx: MultipleInsertContext) { + this.pushStmt(ctx, StmtContextType.INSERT_STMT); + } + + exitMultipleInsert(ctx: MultipleInsertContext) { + this.popStmt(); + } + + enterCreateNamespace(ctx: CreateNamespaceContext) { + this.pushStmt(ctx, StmtContextType.CREATE_DATABASE_STMT); + } + + exitCreateNamespace(ctx: CreateNamespaceContext) { + this.popStmt(); + } + + enterCreateFunction(ctx: CreateFunctionContext) { + this.pushStmt(ctx, StmtContextType.CREATE_FUNCTION_STMT); + } + + exitCreateFunction(ctx: CreateFunctionContext) { + this.popStmt(); + } +} diff --git a/src/parser/spark/sparkSplitListener.ts b/src/parser/spark/sparkSplitListener.ts new file mode 100644 index 0000000..53a9de4 --- /dev/null +++ b/src/parser/spark/sparkSplitListener.ts @@ -0,0 +1,13 @@ +import { SingleStatementContext } from '../../lib/spark/SparkSqlParser'; + +import { SparkSqlParserListener } from '../../lib/spark/SparkSqlParserListener'; +import SplitListener from '../common/splitListener'; + +export default class SparkSqlSplitListener + extends SplitListener + implements SparkSqlParserListener +{ + exitSingleStatement = (ctx: SingleStatementContext) => { + this._statementsContext.push(ctx); + }; +} diff --git a/src/parser/trinosql.ts b/src/parser/trino/index.ts similarity index 71% rename from src/parser/trinosql.ts rename to src/parser/trino/index.ts index 3787882..0d0d620 100644 --- a/src/parser/trinosql.ts +++ b/src/parser/trino/index.ts @@ -1,14 +1,14 @@ import { Token } from 'antlr4ng'; import { CandidatesCollection } from 'antlr4-c3'; -import { TrinoSqlLexer } from '../lib/trinosql/TrinoSqlLexer'; -import { - TrinoSqlParser, - ProgramContext, - SingleStatementContext, -} from '../lib/trinosql/TrinoSqlParser'; -import { TrinoSqlListener } from '../lib/trinosql/TrinoSqlListener'; -import BasicParser from './common/basicParser'; -import { Suggestions, SyntaxContextType, SyntaxSuggestion } from './common/basic-parser-types'; +import { TrinoSqlLexer } from '../../lib/trinosql/TrinoSqlLexer'; +import { TrinoSqlParser, ProgramContext } from '../../lib/trinosql/TrinoSqlParser'; +import BasicParser from '../common/basicParser'; +import { Suggestions, EntityContextType, SyntaxSuggestion } from '../common/basic-parser-types'; +import { StmtContextType } from '../common/entityCollector'; +import TrinoSqlSplitListener from './trinoSplitListener'; +import TrinoEntityCollector from './trinoEntityCollector'; + +export { TrinoSqlSplitListener, TrinoEntityCollector }; export default class TrinoSQL extends BasicParser { protected createLexerFromCharStream(charStreams) { @@ -25,6 +25,10 @@ export default class TrinoSQL extends BasicParser = new Set([ TrinoSqlParser.RULE_catalogName, TrinoSqlParser.RULE_catalogNameCreate, @@ -56,46 +60,46 @@ export default class TrinoSQL extends BasicParser { - this._statementsContext.push(ctx); - }; - - visitTerminal() {} - visitErrorNode() {} - enterEveryRule() {} - exitEveryRule() {} - - get statementsContext() { - return this._statementsContext; - } -} diff --git a/src/parser/trino/trinoEntityCollector.ts b/src/parser/trino/trinoEntityCollector.ts new file mode 100644 index 0000000..ed3d401 --- /dev/null +++ b/src/parser/trino/trinoEntityCollector.ts @@ -0,0 +1,117 @@ +import type { + ColumnNameCreateContext, + CreateMaterializedViewContext, + CreateSchemaContext, + CreateTableAsSelectContext, + CreateTableContext, + CreateViewContext, + InsertIntoContext, + QueryStatementContext, + SchemaNameContext, + SchemaNameCreateContext, + SingleStatementContext, + TableNameContext, + TableNameCreateContext, + ViewNameContext, + ViewNameCreateContext, +} from '../../lib/trinosql/TrinoSqlParser'; +import type { TrinoSqlListener } from '../../lib/trinosql/TrinoSqlListener'; +import { EntityContextType } from '../common/basic-parser-types'; +import EntityCollector, { StmtContextType } from '../common/entityCollector'; + +export default class TrinoEntityCollector extends EntityCollector implements TrinoSqlListener { + /** ====== Entity Begin */ + exitSchemaName(ctx: SchemaNameContext) { + this.pushEntity(ctx, EntityContextType.DATABASE); + } + + exitSchemaNameCreate(ctx: SchemaNameCreateContext) { + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + } + + exitTableName(ctx: TableNameContext) { + this.pushEntity(ctx, EntityContextType.TABLE); + } + + exitTableNameCreate(ctx: TableNameCreateContext) { + this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + } + + exitViewName(ctx: ViewNameContext) { + this.pushEntity(ctx, EntityContextType.VIEW); + } + + exitViewNameCreate(ctx: ViewNameCreateContext) { + this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + } + + exitColumnNameCreate(ctx: ColumnNameCreateContext) { + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + } + + /** ===== Statement begin */ + + enterSingleStatement(ctx: SingleStatementContext) { + this.pushStmt(ctx, StmtContextType.COMMON_STMT); + } + + exitSingleStatement(ctx: SingleStatementContext) { + this.popStmt(); + } + + enterCreateSchema(ctx: CreateSchemaContext) { + this.pushStmt(ctx, StmtContextType.CREATE_DATABASE_STMT); + } + + exitCreateSchema(ctx: CreateSchemaContext) { + this.popStmt(); + } + + enterCreateTableAsSelect(ctx: CreateTableAsSelectContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCreateTableAsSelect(ctx: CreateTableAsSelectContext) { + this.popStmt(); + } + + enterCreateTable(ctx: CreateTableContext) { + this.pushStmt(ctx, StmtContextType.CREATE_TABLE_STMT); + } + + exitCreateTable(ctx: CreateTableContext) { + this.popStmt(); + } + + enterCreateView(ctx: CreateViewContext) { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + } + + exitCreateView(ctx: CreateViewContext) { + this.popStmt(); + } + + enterCreateMaterializedView(ctx: CreateMaterializedViewContext) { + this.pushStmt(ctx, StmtContextType.CREATE_VIEW_STMT); + } + + exitCreateMaterializedView(ctx: CreateMaterializedViewContext) { + this.popStmt(); + } + + enterQueryStatement(ctx: QueryStatementContext) { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + } + + exitQueryStatement(ctx: QueryStatementContext) { + this.popStmt(); + } + + enterInsertInto(ctx: InsertIntoContext) { + this.pushStmt(ctx, StmtContextType.INSERT_STMT); + } + + exitInsertInto(ctx: InsertIntoContext) { + this.popStmt(); + } +} diff --git a/src/parser/trino/trinoSplitListener.ts b/src/parser/trino/trinoSplitListener.ts new file mode 100644 index 0000000..45568fe --- /dev/null +++ b/src/parser/trino/trinoSplitListener.ts @@ -0,0 +1,12 @@ +import { SingleStatementContext } from '../../lib/trinosql/TrinoSqlParser'; +import { TrinoSqlListener } from '../../lib/trinosql/TrinoSqlListener'; +import SplitListener from '../common/splitListener'; + +export default class TrinoSqlSplitListener + extends SplitListener + implements TrinoSqlListener +{ + exitSingleStatement = (ctx: SingleStatementContext) => { + this._statementsContext.push(ctx); + }; +} diff --git a/test/parser/flinksql/contextCollect/entityCollector.test.ts b/test/parser/flinksql/contextCollect/entityCollector.test.ts new file mode 100644 index 0000000..bd67874 --- /dev/null +++ b/test/parser/flinksql/contextCollect/entityCollector.test.ts @@ -0,0 +1,395 @@ +import fs from 'fs'; +import path from 'path'; +import { ParseTreeListener } from 'antlr4ng'; +import FlinkSQL, { FlinkEntityCollector, FlinkSqlSplitListener } from 'src/parser/flinksql'; +import { FlinkSqlParserListener } from 'src/lib/flinksql/FlinkSqlParserListener'; +import { EntityContextType } from 'src/parser/common/basic-parser-types'; +import { StmtContextType } from 'src/parser/common/entityCollector'; + +const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); + +describe('Flink entity collector tests', () => { + const flink = new FlinkSQL(); + const parseTree = flink.parse(commonSql); + const splitListener = new FlinkSqlSplitListener(); + flink.listen(splitListener as FlinkSqlParserListener, parseTree); + + test('validate common sql', () => { + expect(flink.validate(commonSql).length).toBe(0); + }); + + test('split results', () => { + expect(splitListener.statementsContext.length).toBe(12); + }); + + test('create table by columns', () => { + const columnCreateTableContext = splitListener.statementsContext[0]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('MyTable'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 13, + endIndex: 19, + line: 1, + startColumn: 14, + endColumn: 21, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 0, + endIndex: 85, + startLine: 1, + endLine: 1, + startColumn: 1, + endColumn: 87, + }); + + expect(tableCreateEntity.relatedEntities).toBeNull(); + + expect(tableCreateEntity.columns.length).toBe(2); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + }); + + test('create table as select', () => { + const createTableBySelectContext = splitListener.statementsContext[1]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, createTableBySelectContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('my_ctas_table'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 102, + endIndex: 114, + line: 3, + startColumn: 14, + endColumn: 27, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 89, + endIndex: 228, + startLine: 3, + endLine: 11, + startColumn: 1, + endColumn: 20, + }); + + expect(tableCreateEntity.columns).toBeNull(); + + expect(tableCreateEntity.relatedEntities.length).toBe(1); + tableCreateEntity.relatedEntities.forEach((relatedEntity) => { + expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); + }); + + expect(allEntities[1].text).toBe('source_table'); + expect(allEntities[1].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); + expect(allEntities[1].position).toEqual({ + startIndex: 191, + endIndex: 202, + line: 9, + startColumn: 5, + endColumn: 17, + }); + }); + + test('create table like', () => { + const createTableLikeContext = splitListener.statementsContext[2]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, createTableLikeContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const originTableEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('Orders_with_watermark'); + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + + expect(tableCreateEntity.columns.length).toBe(1); + expect(tableCreateEntity.columns[0].text).toBe('id'); + expect(tableCreateEntity.columns[0].entityContextType).toBe( + EntityContextType.COLUMN_CREATE + ); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + + expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(originTableEntity.text).toBe('Orders_in_file'); + expect(originTableEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + }); + + test('common select from table', () => { + const selectTableContext = splitListener.statementsContext[3]; + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, selectTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableEntity = allEntities[0]; + + expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity.text).toBe('Orders'); + expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(tableEntity.columns).toBeNull(); + expect(tableEntity.relatedEntities).toBeNull(); + }); + + test('select from table join', () => { + const selectTableContext = splitListener.statementsContext[4]; + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, selectTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableEntity1 = allEntities[0]; + const tableEntity2 = allEntities[1]; + + expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity1.text).toBe('Orders'); + expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(tableEntity1.columns).toBeNull(); + expect(tableEntity1.relatedEntities).toBeNull(); + + expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity2.text).toBe('Product'); + expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(tableEntity2.columns).toBeNull(); + expect(tableEntity2.relatedEntities).toBeNull(); + + expect(tableEntity1.belongStmt).toBe(tableEntity2.belongStmt); + }); + + test('union select', () => { + const selectTableContext = splitListener.statementsContext[5]; + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, selectTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableEntity1 = allEntities[0]; + const tableEntity2 = allEntities[1]; + + expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity1.text).toBe('t1'); + expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(tableEntity1.columns).toBeNull(); + expect(tableEntity1.relatedEntities).toBeNull(); + + expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity2.text).toBe('t2'); + expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(tableEntity2.columns).toBeNull(); + expect(tableEntity2.relatedEntities).toBeNull(); + + expect(tableEntity1.belongStmt.rootStmt).toBe(tableEntity2.belongStmt.rootStmt); + }); + + test('insert into table values', () => { + const insertTableContext = splitListener.statementsContext[6]; + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, insertTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableEntity = allEntities[0]; + + expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity.text).toBe('country_page_view'); + expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + + expect(tableEntity.columns).toBeNull(); + expect(tableEntity.relatedEntities).toBeNull(); + }); + + test('insert into table select', () => { + const insertTableContext = splitListener.statementsContext[7]; + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, insertTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const insertTableEntity = allEntities[0]; + const fromTableEntity1 = allEntities[1]; + + expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(insertTableEntity.text).toBe('catalog1.db1.country_page_view'); + expect(insertTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + + expect(fromTableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(fromTableEntity1.text).toBe('page_view_source'); + expect(fromTableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(fromTableEntity1.belongStmt.parentStmt).toBe(insertTableEntity.belongStmt); + expect(fromTableEntity1.belongStmt.rootStmt).toBe(insertTableEntity.belongStmt); + }); + + test('multiple insert', () => { + const insertTableContext = splitListener.statementsContext[8]; + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, insertTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const insertTableEntity1 = allEntities[0]; + const insertTableEntity2 = allEntities[1]; + + expect(insertTableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(insertTableEntity1.text).toBe('country_page_view1'); + expect(insertTableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + + expect(insertTableEntity2.entityContextType).toBe(EntityContextType.TABLE); + expect(insertTableEntity2.text).toBe('country_page_view2'); + expect(insertTableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + + expect(insertTableEntity2.belongStmt.parentStmt).toBe( + insertTableEntity1.belongStmt.parentStmt + ); + expect(insertTableEntity2.belongStmt.rootStmt).toBe( + insertTableEntity1.belongStmt.parentStmt + ); + }); + + test('create view as select table', () => { + const insertTableContext = splitListener.statementsContext[9]; + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, insertTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + expect(allEntities[0].entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(allEntities[0].text).toBe('view1'); + expect(allEntities[0].belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + + expect(allEntities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities[1].text).toBe('tbl'); + expect(allEntities[1].belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + }); + + test('create database', () => { + const dbCreateContext = splitListener.statementsContext[10]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, dbCreateContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const dbEntity = allEntities[0]; + + expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(dbEntity.text).toBe('db1'); + expect(dbEntity.position).toEqual({ + endColumn: 34, + endIndex: 1160, + line: 44, + startColumn: 31, + startIndex: 1158, + }); + + expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); + expect(dbEntity.belongStmt.position).toEqual({ + endColumn: 82, + endIndex: 1208, + endLine: 44, + startColumn: 1, + startIndex: 1128, + startLine: 44, + }); + + expect(dbEntity.columns).toBeNull(); + expect(dbEntity.relatedEntities).toBeNull(); + }); + + test('create function', () => { + const functionCreateContext = splitListener.statementsContext[11]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, functionCreateContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const functionEntity = allEntities[0]; + + expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); + expect(functionEntity.text).toBe('tempFunction'); + expect(functionEntity.position).toEqual({ + endColumn: 43, + endIndex: 1253, + line: 46, + startColumn: 31, + startIndex: 1242, + }); + + expect(functionEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_FUNCTION_STMT + ); + expect(functionEntity.belongStmt.position).toEqual({ + endColumn: 58, + endIndex: 1268, + endLine: 46, + startColumn: 1, + startIndex: 1212, + startLine: 46, + }); + + expect(functionEntity.columns).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + }); +}); diff --git a/test/parser/flinksql/contextCollect/fixtures/common.sql b/test/parser/flinksql/contextCollect/fixtures/common.sql new file mode 100644 index 0000000..db3f9cc --- /dev/null +++ b/test/parser/flinksql/contextCollect/fixtures/common.sql @@ -0,0 +1,46 @@ +CREATE TABLE MyTable ('user_id' BIGINT, 'name' STRING) WITH ('connector' = 'oracle-x'); + +CREATE TABLE my_ctas_table WITH ('connector' = 'kafka') +AS SELECT + id, + name, + age +FROM + source_table +WHERE + mod(id, 10) = 0; + +CREATE TABLE Orders_with_watermark ( + id INT, + WATERMARK FOR order_time AS order_time - INTERVAL '5' SECOND +) WITH ( + 'scan.startup.mode' = 'latest-offset' +) LIKE Orders_in_file ( + EXCLUDING ALL + INCLUDING GENERATED +); + +SELECT order_id, price + tax FROM Orders; + +SELECT * FROM Orders LEFT JOIN Product ON Orders.product_id = Product.id; + +(SELECT s FROM t1) UNION (SELECT s FROM t2); + +INSERT INTO country_page_view VALUES ('Chinese', 'mumiao', 18), ('Amercian', 'georage', 22); + +INSERT INTO catalog1.db1.country_page_view SELECT `user`, cnt FROM page_view_source; + +EXECUTE STATEMENT SET BEGIN + INSERT INTO country_page_view1 + VALUES ('Chinese', 'mumiao', 18), + ('Amercian', 'georage', 22); + INSERT INTO country_page_view2 + VALUES ('Chinese', 'mumiao', 18), + ('Amercian', 'georage', 22); +END; + +CREATE VIEW view1(col1, col2) AS SELECT col3, col4 FROM tbl; + +CREATE DATABASE IF NOT EXISTS db1 WITH ('key1' = 'value1', 'key2.a' = 'value2.a'); + +CREATE FUNCTION IF NOT EXISTS tempFunction AS 'SimpleUdf'; \ No newline at end of file diff --git a/test/parser/flinksql/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/flinksql/suggestion/fixtures/suggestionWithEntity.sql new file mode 100644 index 0000000..e1bb692 --- /dev/null +++ b/test/parser/flinksql/suggestion/fixtures/suggestionWithEntity.sql @@ -0,0 +1,11 @@ +SELECT FROM tb1; + +SELECT col1, col2, FROM tb; + +INSERT INTO insert_tb PARTITION (country, state) SELECT col1, col2, country, state FROM ( SELECT FROM inside_tb ) subquery; + +INSERT INTO insert_tb PARTITION (country, state) SELECT col1, col2, country, state FROM ( SELECT id, FROM inside_tb ) subquery; + +CREATE TABLE IF NOT EXISTS derived_table WITH ('connector' = 'kafka') AS SELECT FROM origin_table; + +CREATE TABLE IF NOT EXISTS derived_table WITH ('connector' = 'kafka') AS SELECT id, FROM origin_table; \ No newline at end of file diff --git a/test/parser/flinksql/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/flinksql/suggestion/fixtures/syntaxSuggestion.sql index 9e10415..0465802 100644 --- a/test/parser/flinksql/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/flinksql/suggestion/fixtures/syntaxSuggestion.sql @@ -32,7 +32,7 @@ SELECT col, FROM tb1; SELECT * FROM tb ORDER BY ; -SELECT * FROM tb GROUP BY tb. ; +SELECT * FROM tb GROUP BY ; INSERT INTO tb (col, tb.c ); diff --git a/test/parser/flinksql/suggestion/multipleStatement.test.ts b/test/parser/flinksql/suggestion/multipleStatement.test.ts index 10e9c7b..3e693a3 100644 --- a/test/parser/flinksql/suggestion/multipleStatement.test.ts +++ b/test/parser/flinksql/suggestion/multipleStatement.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import FlinkSQL from 'src/parser/flinksql'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; const syntaxSql = fs.readFileSync( path.join(__dirname, 'fixtures', 'multipleStatement.sql'), @@ -18,7 +18,7 @@ describe('FlinkSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -32,7 +32,7 @@ describe('FlinkSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -46,7 +46,7 @@ describe('FlinkSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -60,7 +60,7 @@ describe('FlinkSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/flinksql/suggestion/suggestionWithEntity.test.ts b/test/parser/flinksql/suggestion/suggestionWithEntity.test.ts new file mode 100644 index 0000000..585b305 --- /dev/null +++ b/test/parser/flinksql/suggestion/suggestionWithEntity.test.ts @@ -0,0 +1,162 @@ +import fs from 'fs'; +import path from 'path'; +import FlinkSQL from 'src/parser/flinksql'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; +import { commentOtherLine } from 'test/helper'; + +const syntaxSql = fs.readFileSync( + path.join(__dirname, 'fixtures', 'suggestionWithEntity.sql'), + 'utf-8' +); + +describe('Flink SQL Syntax Suggestion with collect entity', () => { + const flink = new FlinkSQL(); + + test('Validate Syntax SQL', () => { + expect(flink.validate(syntaxSql).length).not.toBe(0); + }); + + test('select with no columns', () => { + const pos: CaretPosition = { + lineNumber: 1, + column: 8, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const parseTree = flink.parse(sql); + + const syntaxes = flink.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = flink.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('tb1'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('select with columns with columns and trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 3, + column: 20, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = flink.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = flink.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into from nested query with no column', () => { + const pos: CaretPosition = { + lineNumber: 5, + column: 98, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = flink.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = flink.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('inside_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into from nested query with columns and trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 7, + column: 102, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = flink.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = flink.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('inside_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 9, + column: 82, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = flink.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = flink.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('derived_table'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('origin_table'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with columns and trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 11, + column: 86, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = flink.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = flink.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('derived_table'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('origin_table'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); +}); diff --git a/test/parser/flinksql/suggestion/syntaxSuggestion.test.ts b/test/parser/flinksql/suggestion/syntaxSuggestion.test.ts index 5188677..317b0e2 100644 --- a/test/parser/flinksql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/flinksql/suggestion/syntaxSuggestion.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import FlinkSQL from 'src/parser/flinksql'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; import { commentOtherLine } from 'test/helper'; const syntaxSql = fs.readFileSync( @@ -28,7 +28,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.CATALOG + (syn) => syn.syntaxContextType === EntityContextType.CATALOG ); expect(suggestion).not.toBeUndefined(); @@ -45,7 +45,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -62,7 +62,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -79,7 +79,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -96,7 +96,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -113,7 +113,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -130,7 +130,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -147,7 +147,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW_CREATE + (syn) => syn.syntaxContextType === EntityContextType.VIEW_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -164,7 +164,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION ); expect(suggestion).not.toBeUndefined(); @@ -181,7 +181,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION_CREATE + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -198,7 +198,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -215,7 +215,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -232,7 +232,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -249,7 +249,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -266,7 +266,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -283,7 +283,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -300,7 +300,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -310,18 +310,18 @@ describe('Flink SQL Syntax Suggestion', () => { test('Select group by column', () => { const pos: CaretPosition = { lineNumber: 35, - column: 30, + column: 27, }; const syntaxes = parser.getSuggestionAtCaretPosition( commentOtherLine(syntaxSql, pos.lineNumber), pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['tb', '.']); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); }); test('Insert into spec columns', () => { @@ -334,7 +334,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -351,7 +351,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -368,7 +368,7 @@ describe('Flink SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/hive/contextCollect/entityCollector.test.ts b/test/parser/hive/contextCollect/entityCollector.test.ts new file mode 100644 index 0000000..0aed552 --- /dev/null +++ b/test/parser/hive/contextCollect/entityCollector.test.ts @@ -0,0 +1,752 @@ +import { ParseTreeListener } from 'antlr4ng'; +import fs from 'fs'; +import path from 'path'; +import { HiveSqlParserListener } from 'src/lib/hive/HiveSqlParserListener'; +import { EntityContextType } from 'src/parser/common/basic-parser-types'; +import HiveSQL, { HiveEntityCollector } from 'src/parser/hive'; +import { HiveSqlSplitListener } from 'src/parser/hive/hiveSplitListener'; +import { StmtContextType } from 'src/parser/common/entityCollector'; + +const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); + +describe('Hive entity collector tests', () => { + const hiveSql = new HiveSQL(); + const parseTree = hiveSql.parse(commonSql); + const splitListener = new HiveSqlSplitListener(); + hiveSql.listen(splitListener as HiveSqlParserListener, parseTree); + + test('validate common sql', () => { + expect(hiveSql.validate(commonSql).length).toBe(0); + }); + + test('split results', () => { + expect(splitListener.statementsContext.length).toBe(18); + }); + + test('create table by like', () => { + const columnCreateTableContext = splitListener.statementsContext[0]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const tableLikeEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('copy_table'); + expect(tableCreateEntity.position).toEqual({ + endColumn: 48, + endIndex: 46, + line: 1, + startColumn: 38, + startIndex: 37, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + endColumn: 66, + endIndex: 64, + startLine: 1, + endLine: 1, + startIndex: 0, + startColumn: 1, + }); + + expect(tableCreateEntity.relatedEntities).not.toBeNull(); + expect(tableCreateEntity.relatedEntities[0]).toEqual(tableLikeEntity); + expect(tableCreateEntity.columns).toBeNull(); + + expect(tableLikeEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableLikeEntity.text).toBe('origin_table'); + expect(tableLikeEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + }); + + test('create table by columns', () => { + const columnCreateTableContext = splitListener.statementsContext[1]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('list_bucket_multiple'); + expect(tableCreateEntity.position).toEqual({ + endColumn: 67, + endIndex: 133, + line: 3, + startColumn: 47, + startIndex: 114, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + endColumn: 132, + endIndex: 198, + endLine: 3, + startColumn: 1, + startIndex: 68, + startLine: 3, + }); + + expect(tableCreateEntity.relatedEntities).toBeNull(); + expect(tableCreateEntity.columns).not.toBeNull(); + expect(tableCreateEntity.columns.length).toBe(3); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + }); + + test('create table by select', () => { + const columnCreateTableContext = splitListener.statementsContext[2]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const tableFromEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('derived_table'); + expect(tableCreateEntity.position).toEqual({ + endColumn: 41, + endIndex: 241, + line: 5, + startColumn: 28, + startIndex: 229, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + endColumn: 17, + endIndex: 279, + endLine: 9, + startColumn: 1, + startIndex: 202, + startLine: 5, + }); + + expect(tableCreateEntity.relatedEntities).not.toBeNull(); + expect(tableCreateEntity.relatedEntities[0]).toBe(tableFromEntity); + expect(tableCreateEntity.columns).toBeNull(); + + expect(tableFromEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableFromEntity.text).toBe('origin_table'); + expect(tableFromEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + }); + + test('create view by select', () => { + const columnCreateTableContext = splitListener.statementsContext[3]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const viewCreateEntity = allEntities[0]; + const viewSelectEntity = allEntities[1]; + + expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(viewCreateEntity.text).toBe('mydb.bro_view'); + expect(viewCreateEntity.position).toEqual({ + endColumn: 26, + endIndex: 307, + line: 11, + startColumn: 13, + startIndex: 295, + }); + + expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + expect(viewCreateEntity.belongStmt.position).toEqual({ + endColumn: 31, + endIndex: 338, + endLine: 12, + startColumn: 1, + startIndex: 283, + startLine: 11, + }); + + expect(viewCreateEntity.relatedEntities).not.toBeNull(); + expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.columns).toBeNull(); + + expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(viewSelectEntity.text).toBe('mydb.sale_tbl'); + expect(viewSelectEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + }); + + test('create view columns by select', () => { + const columnCreateTableContext = splitListener.statementsContext[4]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const viewCreateEntity = allEntities[0]; + const viewSelectEntity = allEntities[1]; + + expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(viewCreateEntity.text).toBe('mydb.task_view'); + expect(viewCreateEntity.position).toEqual({ + endColumn: 27, + endIndex: 367, + line: 14, + startColumn: 13, + startIndex: 354, + }); + + expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + expect(viewCreateEntity.belongStmt.position).toEqual({ + endColumn: 21, + endIndex: 596, + endLine: 25, + startColumn: 1, + startIndex: 342, + startLine: 14, + }); + + expect(viewCreateEntity.relatedEntities).not.toBeNull(); + expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.columns).not.toBeNull(); + expect(viewCreateEntity.columns.length).toBe(3); + viewCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(viewCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + + expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(viewSelectEntity.text).toBe('task_tbl'); + expect(viewSelectEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + }); + + test('create materialized view by select', () => { + const columnCreateTableContext = splitListener.statementsContext[5]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const viewCreateEntity = allEntities[0]; + const viewSelectEntity = allEntities[1]; + + expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(viewCreateEntity.text).toBe('mydb.bro_view'); + expect(viewCreateEntity.position).toEqual({ + endColumn: 53, + endIndex: 651, + line: 27, + startColumn: 40, + startIndex: 639, + }); + + expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + expect(viewCreateEntity.belongStmt.position).toEqual({ + endColumn: 31, + endIndex: 715, + endLine: 30, + startColumn: 1, + startIndex: 600, + startLine: 27, + }); + + expect(viewCreateEntity.relatedEntities).not.toBeNull(); + expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.columns).toBeNull(); + + expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(viewSelectEntity.text).toBe('mydb.sale_tbl'); + expect(viewSelectEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + }); + + test('select table default', () => { + const columnCreateTableContext = splitListener.statementsContext[6]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const selectTableEntity = allEntities[0]; + + expect(selectTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(selectTableEntity.text).toBe('table_name_1'); + expect(selectTableEntity.position).toEqual({ + endColumn: 36, + endIndex: 753, + line: 32, + startColumn: 24, + startIndex: 742, + }); + + expect(selectTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(selectTableEntity.belongStmt.position).toEqual({ + endColumn: 36, + endIndex: 753, + endLine: 32, + startColumn: 1, + startIndex: 719, + startLine: 32, + }); + + expect(selectTableEntity.columns).toBeNull(); + expect(selectTableEntity.relatedEntities).toBeNull(); + }); + + test('select table with join', () => { + const columnCreateTableContext = splitListener.statementsContext[7]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const selectTableEntity = allEntities[0]; + const joinTableEntity = allEntities[1]; + + expect(selectTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(selectTableEntity.text).toBe('a'); + expect(selectTableEntity.position).toEqual({ + endColumn: 18, + endIndex: 773, + line: 34, + startColumn: 17, + startIndex: 773, + }); + + expect(selectTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(selectTableEntity.belongStmt.position).toEqual({ + endColumn: 74, + endIndex: 829, + endLine: 34, + startColumn: 1, + startIndex: 757, + startLine: 34, + }); + + expect(selectTableEntity.columns).toBeNull(); + expect(selectTableEntity.relatedEntities).toBeNull(); + + expect(selectTableEntity.belongStmt).toEqual(joinTableEntity.belongStmt); + expect(joinTableEntity.text).toBe('b'); + expect(joinTableEntity.columns).toBeNull(); + expect(joinTableEntity.relatedEntities).toBeNull(); + }); + + test('from select table', () => { + const columnCreateTableContext = splitListener.statementsContext[8]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const selectTableEntity = allEntities[0]; + + expect(selectTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(selectTableEntity.text).toBe('table_name_1'); + expect(selectTableEntity.position).toEqual({ + endColumn: 18, + endIndex: 849, + line: 36, + startColumn: 6, + startIndex: 838, + }); + + expect(selectTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(selectTableEntity.belongStmt.position).toEqual({ + endColumn: 36, + endIndex: 867, + endLine: 36, + startColumn: 1, + startIndex: 833, + startLine: 36, + }); + + expect(selectTableEntity.columns).toBeNull(); + expect(selectTableEntity.relatedEntities).toBeNull(); + }); + + test('from select table with join', () => { + const columnCreateTableContext = splitListener.statementsContext[9]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const selectTableEntity = allEntities[0]; + const joinTableEntity = allEntities[1]; + + expect(selectTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(selectTableEntity.text).toBe('a'); + expect(selectTableEntity.position).toEqual({ + endColumn: 7, + endIndex: 876, + line: 38, + startColumn: 6, + startIndex: 876, + }); + + expect(selectTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(selectTableEntity.belongStmt.position).toEqual({ + endColumn: 74, + endIndex: 943, + endLine: 38, + startColumn: 1, + startIndex: 871, + startLine: 38, + }); + + expect(selectTableEntity.columns).toBeNull(); + expect(selectTableEntity.relatedEntities).toBeNull(); + + expect(selectTableEntity.belongStmt).toEqual(joinTableEntity.belongStmt); + expect(joinTableEntity.text).toBe('b'); + expect(joinTableEntity.columns).toBeNull(); + expect(joinTableEntity.relatedEntities).toBeNull(); + }); + + test('insert table with values', () => { + const columnCreateTableContext = splitListener.statementsContext[10]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const insertTableEntity = allEntities[0]; + + expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(insertTableEntity.text).toBe('students'); + expect(insertTableEntity.position).toEqual({ + endColumn: 27, + endIndex: 972, + line: 40, + startColumn: 19, + startIndex: 965, + }); + + expect(insertTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + expect(insertTableEntity.belongStmt.position).toEqual({ + endColumn: 66, + endIndex: 1045, + endLine: 41, + startColumn: 1, + startIndex: 947, + startLine: 40, + }); + + expect(insertTableEntity.columns).toBeNull(); + expect(insertTableEntity.relatedEntities).toBeNull(); + }); + + test('insert table use select', () => { + const columnCreateTableContext = splitListener.statementsContext[11]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const insertTableEntity = allEntities[0]; + const fromTableEntity = allEntities[1]; + + expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(insertTableEntity.text).toBe('table_name'); + expect(insertTableEntity.position).toEqual({ + endColumn: 23, + endIndex: 1070, + line: 43, + startColumn: 13, + startIndex: 1061, + }); + + expect(insertTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + expect(insertTableEntity.belongStmt.position).toEqual({ + endColumn: 18, + endIndex: 1183, + endLine: 46, + startColumn: 1, + startIndex: 1049, + startLine: 43, + }); + + expect(insertTableEntity.columns).toBeNull(); + expect(insertTableEntity.relatedEntities).toBeNull(); + + expect(fromTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(fromTableEntity.text).toBe('source_table'); + expect(fromTableEntity.belongStmt.parentStmt).toEqual(insertTableEntity.belongStmt); + expect(fromTableEntity.belongStmt.rootStmt).toBe(insertTableEntity.belongStmt); + }); + + test('from insert table use select', () => { + const columnCreateTableContext = splitListener.statementsContext[12]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const fromTableEntity = allEntities[0]; + const insertTableEntity = allEntities[1]; + + expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(insertTableEntity.text).toBe('page_view'); + expect(insertTableEntity.position).toEqual({ + endColumn: 33, + endIndex: 1241, + line: 49, + startColumn: 24, + startIndex: 1233, + }); + + expect(insertTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + expect(insertTableEntity.belongStmt.position).toEqual({ + endColumn: 93, + endIndex: 1370, + endLine: 50, + startColumn: 1, + startIndex: 1187, + startLine: 48, + }); + + expect(insertTableEntity.columns).toBeNull(); + expect(insertTableEntity.relatedEntities).toBeNull(); + + expect(fromTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + expect(fromTableEntity.text).toBe('page_view_stg'); + expect(fromTableEntity.belongStmt).toEqual(insertTableEntity.belongStmt); + }); + + test('create db', () => { + const columnCreateTableContext = splitListener.statementsContext[13]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const dbEntity = allEntities[0]; + + expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(dbEntity.text).toBe('mydb'); + expect(dbEntity.position).toEqual({ + endColumn: 21, + endIndex: 1393, + line: 52, + startColumn: 17, + startIndex: 1390, + }); + + expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); + expect(dbEntity.belongStmt.position).toEqual({ + endColumn: 21, + endIndex: 1393, + endLine: 52, + startColumn: 1, + startIndex: 1374, + startLine: 52, + }); + + expect(dbEntity.columns).toBeNull(); + expect(dbEntity.relatedEntities).toBeNull(); + }); + + test('create remote db', () => { + const columnCreateTableContext = splitListener.statementsContext[14]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const dbEntity = allEntities[0]; + + expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(dbEntity.text).toBe('mydb'); + expect(dbEntity.position).toEqual({ + endColumn: 28, + endIndex: 1423, + line: 54, + startColumn: 24, + startIndex: 1420, + }); + + expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); + expect(dbEntity.belongStmt.position).toEqual({ + endColumn: 28, + endIndex: 1423, + endLine: 54, + startColumn: 1, + startIndex: 1397, + startLine: 54, + }); + + expect(dbEntity.columns).toBeNull(); + expect(dbEntity.relatedEntities).toBeNull(); + }); + + test('show locks db', () => { + const dbContext = splitListener.statementsContext[15]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, dbContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const dbEntity = allEntities[0]; + + expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE); + expect(dbEntity.text).toBe('db1'); + expect(dbEntity.position).toEqual({ + endColumn: 24, + endIndex: 1449, + line: 56, + startColumn: 21, + startIndex: 1447, + }); + + expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); + expect(dbEntity.belongStmt.position).toEqual({ + endColumn: 25, + endIndex: 1450, + endLine: 56, + startColumn: 1, + startIndex: 1427, + startLine: 56, + }); + + expect(dbEntity.columns).toBeNull(); + expect(dbEntity.relatedEntities).toBeNull(); + }); + + test('create function', () => { + const functionCreateContext = splitListener.statementsContext[16]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, functionCreateContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const functionEntity = allEntities[0]; + + expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); + expect(functionEntity.text).toBe('base_analizer'); + expect(functionEntity.position).toEqual({ + endColumn: 30, + endIndex: 1481, + line: 58, + startColumn: 17, + startIndex: 1469, + }); + + expect(functionEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_FUNCTION_STMT + ); + expect(functionEntity.belongStmt.position).toEqual({ + endColumn: 30, + endIndex: 1481, + endLine: 58, + startColumn: 17, + startIndex: 1469, + startLine: 58, + }); + + expect(functionEntity.columns).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + }); + + test('create temporary function', () => { + const functionCreateContext = splitListener.statementsContext[17]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, functionCreateContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const functionEntity = allEntities[0]; + + expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); + expect(functionEntity.text).toBe('flat_analizer'); + expect(functionEntity.position).toEqual({ + endColumn: 40, + endIndex: 1549, + line: 60, + startColumn: 27, + startIndex: 1537, + }); + + expect(functionEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_FUNCTION_STMT + ); + expect(functionEntity.belongStmt.position).toEqual({ + endColumn: 40, + endIndex: 1549, + endLine: 60, + startColumn: 27, + startIndex: 1537, + startLine: 60, + }); + + expect(functionEntity.columns).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + }); +}); diff --git a/test/parser/hive/contextCollect/fixtures/common.sql b/test/parser/hive/contextCollect/fixtures/common.sql new file mode 100644 index 0000000..c7c7061 --- /dev/null +++ b/test/parser/hive/contextCollect/fixtures/common.sql @@ -0,0 +1,60 @@ +CREATE TEMPORARY TABLE IF NOT EXISTS copy_table LIKE origin_table; + +CREATE TEMPORARY EXTERNAL TABLE IF NOT EXISTS list_bucket_multiple (col1 STRING, col2 INT, col3 STRING) COMMENT 'this is a comment'; + +CREATE TABLE IF NOT EXISTS derived_table AS +SELECT + * +FROM + origin_table; + +CREATE VIEW mydb.bro_view +AS SELECT * FROM mydb.sale_tbl; + +CREATE VIEW mydb.task_view ( + taskId COMMENT '任务id', + taskName COMMENT '任务名称', + taskRunTime COMMENT '任务运行时长' +) +COMMENT '一个任务信息视图' +TBLPROPERTIES( + 'author'='hayden' +) +AS SELECT DISTINCT id, `name`, runtime + FROM task_tbl + WHERE type='day'; + +CREATE MATERIALIZED VIEW IF NOT EXISTS mydb.bro_view +DISABLE REWRITE +COMMENT '一个测试视图' +AS SELECT * FROM mydb.sale_tbl; + +SELECT col1, col2 FROM table_name_1; + +SELECT a.* FROM a JOIN b ON (a.id = b.id AND a.department = b.department); + +FROM table_name_1 SELECT col1, col2; + +FROM a JOIN b ON (a.id = b.id AND a.department = b.department) SELECT a.*; + +INSERT INTO TABLE students(a,b,c) +VALUES ('fred flintstone', 35, 1.28), ('barney rubble', 32, 2.32); + +INSERT INTO table_name PARTITION (country, state) +SELECT col1, col2, + CONCAT(country, '_', state) AS country_state +FROM source_table; + +FROM page_view_stg pvs +INSERT OVERWRITE TABLE page_view PARTITION(dt='2008-06-08', country) +SELECT pvs.viewTime, pvs.userid, pvs.page_url, pvs.referrer_url, null, null, pvs.ip, pvs.cnt; + +CREATE DATABASE mydb; + +CREATE REMOTE DATABASE mydb; + +SHOW LOCKS DATABASE db1; + +CREATE FUNCTION base_analizer AS 'com.udf.BaseFieldUDF'; + +CREATE TEMPORARY FUNCTION flat_analizer AS 'com.udtf.EventJsonUDTF'; \ No newline at end of file diff --git a/test/parser/hive/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/hive/suggestion/fixtures/suggestionWithEntity.sql new file mode 100644 index 0000000..6e84786 --- /dev/null +++ b/test/parser/hive/suggestion/fixtures/suggestionWithEntity.sql @@ -0,0 +1,23 @@ +SELECT FROM tb1 + +SELECT col1, col2, FROM tb + +FROM table_name_1 SELECT ; -- TODO: request semicolon + +FROM table_name_1 SELECT col1, col2, ; -- TODO: request semicolon + +FROM a JOIN b ON (a.id = b.id AND a.department = b.department) SELECT ; -- TODO: request semicolon + +FROM a JOIN b ON (a.id = b.id AND a.department = b.department) SELECT a.*, ; -- TODO: request semicolon + +FROM page_view_stg pvs INSERT OVERWRITE TABLE page_view PARTITION(dt='2008-06-08', country) SELECT ; -- TODO: request semicolon + +FROM page_view_stg pvs INSERT OVERWRITE TABLE page_view PARTITION(dt='2008-06-08', country) SELECT id, ; -- TODO: request semicolon + +INSERT INTO insert_tb PARTITION (country, state) SELECT col1, col2, country, state FROM ( SELECT FROM inside_tb ) subquery + +INSERT INTO insert_tb PARTITION (country, state) SELECT col1, col2, country, state FROM ( SELECT id, FROM inside_tb ) subquery + +CREATE TABLE IF NOT EXISTS derived_table AS SELECT FROM origin_table + +CREATE TABLE IF NOT EXISTS derived_table AS SELECT id, FROM origin_table \ No newline at end of file diff --git a/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql index 4fbd72d..fdb9815 100644 --- a/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql @@ -32,4 +32,10 @@ MERGE INTO tablename USING tablename2 ON (tablename.id = tablename2.id) WHEN MAT ALTER TABLE tbl CHANGE COLUMN ; -ALTER TABLE tbl CHANGE COLUMN tbl.oldcol new ; \ No newline at end of file +ALTER TABLE tbl CHANGE COLUMN tbl.oldcol new ; + +FROM table_name_1 SELECT col1, col2; + +FROM a JOIN b ON (a.id = b.id AND a.department = b.department) SELECT a.*; + +FROM page_view_stg INSERT; \ No newline at end of file diff --git a/test/parser/hive/suggestion/multipleStatement.test.ts b/test/parser/hive/suggestion/multipleStatement.test.ts index 316670d..53813c8 100644 --- a/test/parser/hive/suggestion/multipleStatement.test.ts +++ b/test/parser/hive/suggestion/multipleStatement.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import HiveSQL from 'src/parser/hive'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; const syntaxSql = fs.readFileSync( path.join(__dirname, 'fixtures', 'multipleStatement.sql'), @@ -18,7 +18,7 @@ describe('HiveSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -32,7 +32,7 @@ describe('HiveSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -46,7 +46,7 @@ describe('HiveSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -60,7 +60,7 @@ describe('HiveSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/hive/suggestion/suggestionWithEntity.test.ts b/test/parser/hive/suggestion/suggestionWithEntity.test.ts new file mode 100644 index 0000000..4858547 --- /dev/null +++ b/test/parser/hive/suggestion/suggestionWithEntity.test.ts @@ -0,0 +1,310 @@ +import fs from 'fs'; +import path from 'path'; +import HiveSQL from 'src/parser/hive'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; +import { commentOtherLine } from 'test/helper'; + +const syntaxSql = fs.readFileSync( + path.join(__dirname, 'fixtures', 'suggestionWithEntity.sql'), + 'utf-8' +); + +describe('Hive SQL Syntax Suggestion with collect entity', () => { + const hive = new HiveSQL(); + + test('Validate Syntax SQL', () => { + expect(hive.validate(syntaxSql).length).not.toBe(0); + }); + + test('select with no columns', () => { + const pos: CaretPosition = { + lineNumber: 1, + column: 8, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('tb1'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('select with columns with columns and trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 3, + column: 20, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('from table select with no column', () => { + const pos: CaretPosition = { + lineNumber: 5, + column: 26, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('table_name_1'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + }); + + test('from table select with with columns and trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 7, + column: 38, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('table_name_1'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + }); + + test('from joined table select with no column', () => { + const pos: CaretPosition = { + lineNumber: 9, + column: 71, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('a'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeFalsy(); + expect(entities[0].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('b'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeFalsy(); + expect(entities[1].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + }); + + test('from joined table select with columns and trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 11, + column: 76, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('a'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeFalsy(); + expect(entities[0].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('b'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeFalsy(); + expect(entities[1].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + }); + + test('from table insert into table select no columns', () => { + const pos: CaretPosition = { + lineNumber: 13, + column: 100, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('page_view_stg'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeFalsy(); + expect(entities[0].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('page_view'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeFalsy(); + expect(entities[1].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + }); + + test('from table insert into table select with column and trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 15, + column: 104, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('page_view_stg'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeFalsy(); + expect(entities[0].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('page_view'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeFalsy(); + expect(entities[1].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into from nested query with no column', () => { + const pos: CaretPosition = { + lineNumber: 17, + column: 98, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('inside_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into from nested query with columns and trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 19, + column: 102, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('inside_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 21, + column: 52, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('derived_table'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('origin_table'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with columns and trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 23, + column: 56, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('derived_table'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('origin_table'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); +}); diff --git a/test/parser/hive/suggestion/syntaxSuggestion.test.ts b/test/parser/hive/suggestion/syntaxSuggestion.test.ts index d5b2f78..008b15d 100644 --- a/test/parser/hive/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/hive/suggestion/syntaxSuggestion.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import HiveSQL from 'src/parser/hive'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; import { commentOtherLine } from 'test/helper'; const syntaxSql = fs.readFileSync( @@ -28,7 +28,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -45,7 +45,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -62,7 +62,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -79,7 +79,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -96,7 +96,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW_CREATE + (syn) => syn.syntaxContextType === EntityContextType.VIEW_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -113,7 +113,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -130,7 +130,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION_CREATE + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -147,7 +147,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION ); expect(suggestion).not.toBeUndefined(); @@ -164,7 +164,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -181,7 +181,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -198,7 +198,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -215,7 +215,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -232,7 +232,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -249,7 +249,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -266,7 +266,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -287,7 +287,7 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -304,10 +304,61 @@ describe('Hive SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['new']); }); + + test('From Table Select', () => { + const pos: CaretPosition = { + lineNumber: 37, + column: 18, + }; + const syntaxes = parser.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['table_name_1']); + }); + + test('From Table Select join', () => { + const pos: CaretPosition = { + lineNumber: 39, + column: 14, + }; + const syntaxes = parser.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['b']); + }); + + test('From Table Insert', () => { + const pos: CaretPosition = { + lineNumber: 41, + column: 19, + }; + const syntaxes = parser.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['page_view_stg']); + }); }); diff --git a/test/parser/hive/syntax/fixtures/select.sql b/test/parser/hive/syntax/fixtures/select.sql index 71f1cef..bdad3f6 100644 --- a/test/parser/hive/syntax/fixtures/select.sql +++ b/test/parser/hive/syntax/fixtures/select.sql @@ -239,3 +239,8 @@ EXPLAIN LOCKS UPDATE target SET b = 1 WHERE p IN (SELECT t.q1 FROM source t WHER -- LanguageManual Explain -- User-level Explain Output EXPLAIN select sum(hash(key)), sum(hash(value)) from src_orc_merge_test_part where ds='2012-01-03' and ts='2012-01-03+14:46:31'; + +-- FROM xx SELECT +FROM table_name_1 SELECT col1, col2; + +FROM a JOIN b ON (a.id = b.id AND a.department = b.department) SELECT a.*; \ No newline at end of file diff --git a/test/parser/impala/contextCollect/entityCollector.test.ts b/test/parser/impala/contextCollect/entityCollector.test.ts new file mode 100644 index 0000000..44d5092 --- /dev/null +++ b/test/parser/impala/contextCollect/entityCollector.test.ts @@ -0,0 +1,600 @@ +import fs from 'fs'; +import path from 'path'; +import { ImpalaSqlSplitListener } from 'src/parser/impala'; +import { EntityContextType } from 'src/parser/common/basic-parser-types'; +import { StmtContextType } from 'src/parser/common/entityCollector'; +import ImpalaSQL from 'src/parser/impala'; +import { ImpalaSqlParserListener } from 'src/lib/impala/ImpalaSqlParserListener'; +import ImpalaEntityCollector from 'src/parser/impala/impalaEntityCollector'; +import { ParseTreeListener } from 'antlr4ng'; + +const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); + +describe('ImpalaSQL entity collector tests', () => { + const impalaSql = new ImpalaSQL(); + const parseTree = impalaSql.parse(commonSql); + const splitListener = new ImpalaSqlSplitListener(); + impalaSql.listen(splitListener as ImpalaSqlParserListener, parseTree); + + test('validate common sql', () => { + expect(impalaSql.validate(commonSql).length).toBe(0); + }); + + test('split results', () => { + expect(splitListener.statementsContext.length).toBe(14); + }); + + test('create table by like', () => { + const columnCreateTableContext = splitListener.statementsContext[0]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const likeTableEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('new_Table'); + expect(tableCreateEntity.position).toEqual({ + endColumn: 23, + endIndex: 21, + line: 1, + startColumn: 14, + startIndex: 13, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + endColumn: 38, + endIndex: 36, + endLine: 1, + startColumn: 1, + startIndex: 0, + startLine: 1, + }); + + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.columns).toBeNull(); + expect(tableCreateEntity.relatedEntities[0]).toBe(likeTableEntity); + + expect(likeTableEntity.text).toBe('old_table'); + expect(likeTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(likeTableEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + }); + + test('create table by columns', () => { + const columnCreateTableContext = splitListener.statementsContext[1]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('census'); + expect(tableCreateEntity.position).toEqual({ + endColumn: 20, + endIndex: 58, + line: 3, + startColumn: 14, + startIndex: 53, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + endColumn: 77, + endIndex: 115, + endLine: 3, + startColumn: 1, + startIndex: 40, + startLine: 3, + }); + + expect(tableCreateEntity.relatedEntities).toBeNull(); + expect(tableCreateEntity.columns.length).toBe(2); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + }); + + test('create table by select', () => { + const columnCreateTableContext = splitListener.statementsContext[2]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const fromCreateEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('sorted_census_data'); + expect(tableCreateEntity.position).toEqual({ + endColumn: 32, + endIndex: 149, + line: 5, + startColumn: 14, + startIndex: 132, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + endColumn: 30, + endIndex: 278, + endLine: 9, + startColumn: 1, + startIndex: 119, + startLine: 5, + }); + + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.columns).toBeNull(); + + expect(fromCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(fromCreateEntity.text).toBe('unsorted_census_data'); + expect(tableCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + }); + + test('create kudu table by select', () => { + const columnCreateTableContext = splitListener.statementsContext[3]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const fromCreateEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('ctas_t1'); + expect(tableCreateEntity.position).toEqual({ + endColumn: 21, + endIndex: 301, + line: 11, + startColumn: 14, + startIndex: 295, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + endColumn: 31, + endIndex: 405, + endLine: 14, + startColumn: 1, + startIndex: 282, + startLine: 11, + }); + + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.columns).toBeNull(); + + expect(fromCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(fromCreateEntity.text).toBe('kudu_t1'); + expect(tableCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + }); + + test('create kudu table by columns', () => { + const columnCreateTableContext = splitListener.statementsContext[4]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('kudu_t3'); + expect(tableCreateEntity.position).toEqual({ + endColumn: 21, + endIndex: 428, + line: 16, + startColumn: 14, + startIndex: 422, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + endColumn: 17, + endIndex: 705, + endLine: 23, + startColumn: 1, + startIndex: 409, + startLine: 16, + }); + + expect(tableCreateEntity.relatedEntities).toBeNull(); + expect(tableCreateEntity.columns.length).toBe(4); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + }); + + test('create view', () => { + const columnCreateTableContext = splitListener.statementsContext[5]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const viewCreateEntity = allEntities[0]; + const fromCreateEntity = allEntities[1]; + + expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(viewCreateEntity.text).toBe('my_view'); + expect(viewCreateEntity.position).toEqual({ + endColumn: 20, + endIndex: 727, + line: 25, + startColumn: 13, + startIndex: 721, + }); + + expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + expect(viewCreateEntity.belongStmt.position).toEqual({ + endColumn: 146, + endIndex: 853, + endLine: 25, + startColumn: 1, + startIndex: 709, + startLine: 25, + }); + + expect(viewCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + expect(viewCreateEntity.columns.length).toBe(2); + viewCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(viewCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + + expect(fromCreateEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(fromCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(fromCreateEntity.text).toBe('my_table'); + }); + + test('insert table select', () => { + const columnCreateTableContext = splitListener.statementsContext[6]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableInsertEntity = allEntities[0]; + const fromTableEntity = allEntities[1]; + + expect(tableInsertEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableInsertEntity.text).toBe('t2'); + expect(tableInsertEntity.position).toEqual({ + endColumn: 15, + endIndex: 870, + line: 27, + startColumn: 13, + startIndex: 869, + }); + + expect(tableInsertEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + expect(tableInsertEntity.belongStmt.position).toEqual({ + endColumn: 40, + endIndex: 895, + endLine: 27, + startColumn: 1, + startIndex: 857, + startLine: 27, + }); + + expect(tableInsertEntity.columns).toBeNull(); + + expect(fromTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(fromTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(fromTableEntity.text).toBe('t1'); + expect(fromTableEntity.belongStmt.parentStmt).toBe(tableInsertEntity.belongStmt); + }); + + test('select table', () => { + const columnCreateTableContext = splitListener.statementsContext[7]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableEntity1 = allEntities[0]; + + expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity1.text).toBe('a'); + expect(tableEntity1.position).toEqual({ + endColumn: 16, + endIndex: 913, + line: 29, + startColumn: 15, + startIndex: 913, + }); + + expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity1.belongStmt.position).toEqual({ + endColumn: 16, + endIndex: 913, + endLine: 29, + startColumn: 1, + startIndex: 899, + startLine: 29, + }); + + expect(tableEntity1.columns).toBeNull(); + expect(tableEntity1.relatedEntities).toBeNull(); + }); + + test('select table join', () => { + const columnCreateTableContext = splitListener.statementsContext[8]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableEntity1 = allEntities[0]; + const tableEntity2 = allEntities[1]; + + expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity1.text).toBe('t1'); + expect(tableEntity1.position).toEqual({ + endColumn: 28, + endIndex: 943, + line: 31, + startColumn: 26, + startIndex: 942, + }); + + expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity1.belongStmt.position).toEqual({ + endColumn: 20, + endIndex: 1022, + endLine: 33, + startColumn: 1, + startIndex: 917, + startLine: 31, + }); + + expect(tableEntity1.columns).toBeNull(); + expect(tableEntity1.relatedEntities).toBeNull(); + + expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity2.text).toBe('t2'); + expect(tableEntity2.columns).toBeNull(); + expect(tableEntity2.relatedEntities).toBeNull(); + expect(tableEntity2.belongStmt).toBe(tableEntity1.belongStmt); + }); + + test('create db', () => { + const columnCreateTableContext = splitListener.statementsContext[9]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const dbEntity = allEntities[0]; + + expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(dbEntity.text).toBe('my_db'); + expect(dbEntity.position).toEqual({ + endColumn: 22, + endIndex: 1046, + line: 35, + startColumn: 17, + startIndex: 1042, + }); + + expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); + expect(dbEntity.belongStmt.position).toEqual({ + endColumn: 52, + endIndex: 1076, + endLine: 35, + startColumn: 1, + startIndex: 1026, + startLine: 35, + }); + + expect(dbEntity.columns).toBeNull(); + expect(dbEntity.relatedEntities).toBeNull(); + }); + + test('create schema', () => { + const columnCreateTableContext = splitListener.statementsContext[10]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const schemaEntity = allEntities[0]; + + expect(schemaEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(schemaEntity.text).toBe('my_schema'); + expect(schemaEntity.position).toEqual({ + endColumn: 38, + endIndex: 1116, + line: 37, + startColumn: 29, + startIndex: 1108, + }); + + expect(schemaEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); + expect(schemaEntity.belongStmt.position).toEqual({ + endColumn: 94, + endIndex: 1172, + endLine: 37, + startColumn: 1, + startIndex: 1080, + startLine: 37, + }); + + expect(schemaEntity.columns).toBeNull(); + expect(schemaEntity.relatedEntities).toBeNull(); + }); + + test('comment dbName', () => { + const columnCreateTableContext = splitListener.statementsContext[11]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const dbEntity = allEntities[0]; + + expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE); + expect(dbEntity.text).toBe('my_database'); + expect(dbEntity.position).toEqual({ + endColumn: 32, + endIndex: 1206, + line: 39, + startColumn: 21, + startIndex: 1196, + }); + + // 由于没有处理 comment 语句,所以当前是处于 COMMON_STMT + expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); + expect(dbEntity.belongStmt.position).toEqual({ + endColumn: 59, + endIndex: 1233, + endLine: 39, + startColumn: 1, + startIndex: 1176, + startLine: 39, + }); + + expect(dbEntity.columns).toBeNull(); + expect(dbEntity.relatedEntities).toBeNull(); + }); + + test('create aggregate function', () => { + const columnCreateTableContext = splitListener.statementsContext[12]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const functionEntity = allEntities[0]; + + expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); + expect(functionEntity.text).toBe('function_name'); + expect(functionEntity.position).toEqual({ + endColumn: 40, + endIndex: 1274, + line: 41, + startColumn: 27, + startIndex: 1262, + }); + + expect(functionEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_FUNCTION_STMT + ); + expect(functionEntity.belongStmt.position).toEqual({ + endColumn: 26, + endIndex: 1391, + endLine: 45, + startColumn: 1, + startIndex: 1236, + startLine: 41, + }); + + expect(functionEntity.columns).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + }); + + test('create function', () => { + const columnCreateTableContext = splitListener.statementsContext[13]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const functionEntity = allEntities[0]; + + expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); + expect(functionEntity.text).toBe('function_name'); + expect(functionEntity.position).toEqual({ + endColumn: 30, + endIndex: 1423, + line: 47, + startColumn: 17, + startIndex: 1411, + }); + + expect(functionEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_FUNCTION_STMT + ); + expect(functionEntity.belongStmt.position).toEqual({ + endColumn: 21, + endIndex: 1517, + endLine: 50, + startColumn: 1, + startIndex: 1395, + startLine: 47, + }); + + expect(functionEntity.columns).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + }); +}); diff --git a/test/parser/impala/contextCollect/fixtures/common.sql b/test/parser/impala/contextCollect/fixtures/common.sql new file mode 100644 index 0000000..84f57a7 --- /dev/null +++ b/test/parser/impala/contextCollect/fixtures/common.sql @@ -0,0 +1,50 @@ +CREATE TABLE new_Table like old_table; + +create table census (name string, census_year int) partitioned by (year int); + +CREATE TABLE sorted_census_data + SORT BY (last_name, state) + STORED AS PARQUET + AS SELECT last_name, first_name, state, address + FROM unsorted_census_data; + +CREATE TABLE ctas_t1 + PRIMARY KEY (id) PARTITION BY HASH (id) PARTITIONS 10 + STORED AS KUDU + AS SELECT id, s FROM kudu_t1; + +CREATE TABLE kudu_t3 (id BIGINT, year INT, s STRING, + b BOOLEAN, PRIMARY KEY (id,year)) + PARTITION BY HASH (id) PARTITIONS 20, + RANGE (year) (PARTITION 1980 <= VALUES < 1990, + PARTITION 1990 <= VALUES < 2000, + PARTITION VALUE = 2001, + PARTITION 2001 < VALUES < 2003) + STORED AS KUDU; + +CREATE VIEW my_view (age COMMENT 'this is number col', age1 COMMENT 'this is number col') TBLPROPERTIES ('tblp1' = '1') AS SELECT * FROM my_table; + +insert into t2 (y, x) select c1 from t1; + +SELECT * from a; + +SELECT t1.c1, t2.c2 FROM t1 JOIN t2 + ON t1.id = t2.id and t1.type_flag = t2.type_flag + WHERE t1.c1 > 100; + +CREATE DATABASE my_db LOCATION '/path/to/partition'; + +CREATE SCHEMA IF NOT EXISTS my_schema COMMENT 'my first schema' LOCATION '/path/to/partition'; + +COMMENT ON DATABASE my_database IS 'This is my database.'; + +CREATE AGGREGATE FUNCTION function_name(arg_type1, arg_type2) +RETURNS return_type +LOCATION 'hdfs_path' +UPDATE_FN='update_function' +MERGE_FN='merge_function'; + +CREATE FUNCTION function_name(arg_type1, arg_type2) +RETURNS return_type +LOCATION 'hdfs_path_to_dot_so' +SYMBOL='symbol_name'; diff --git a/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql new file mode 100644 index 0000000..234f2fa --- /dev/null +++ b/test/parser/impala/suggestion/fixtures/suggestionWithEntity.sql @@ -0,0 +1,11 @@ +SELECT FROM tab; + +SELECT name, calculate_age(birthdate) AS age, FROM students; + +INSERT INTO insert_tb SELECT FROM from_tb; + +INSERT INTO insert_tb SELECT id, FROM from_tb; + +CREATE TABLE sorted_census_data AS SELECT FROM unsorted_census_data; + +CREATE TABLE sorted_census_data AS SELECT id, FROM unsorted_census_data; diff --git a/test/parser/impala/suggestion/multipleStatement.test.ts b/test/parser/impala/suggestion/multipleStatement.test.ts index eb5c318..39dac22 100644 --- a/test/parser/impala/suggestion/multipleStatement.test.ts +++ b/test/parser/impala/suggestion/multipleStatement.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import ImpalaSQL from 'src/parser/impala'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; const syntaxSql = fs.readFileSync( path.join(__dirname, 'fixtures', 'multipleStatement.sql'), @@ -18,7 +18,7 @@ describe('ImpalaSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -32,7 +32,7 @@ describe('ImpalaSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -46,7 +46,7 @@ describe('ImpalaSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -60,7 +60,7 @@ describe('ImpalaSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/impala/suggestion/suggestionWithEntity.test.ts b/test/parser/impala/suggestion/suggestionWithEntity.test.ts new file mode 100644 index 0000000..08d536f --- /dev/null +++ b/test/parser/impala/suggestion/suggestionWithEntity.test.ts @@ -0,0 +1,158 @@ +import fs from 'fs'; +import path from 'path'; +import ImpalaSQL from 'src/parser/impala'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; +import { commentOtherLine } from 'test/helper'; + +const syntaxSql = fs.readFileSync( + path.join(__dirname, 'fixtures', 'suggestionWithEntity.sql'), + 'utf-8' +); + +describe('Impala SQL Syntax Suggestion with collect entity', () => { + const impala = new ImpalaSQL(); + + test('select with no column', () => { + const pos: CaretPosition = { + lineNumber: 1, + column: 8, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + // TODO: + // const entities = impala.getAllEntities(sql, pos); + // expect(entities.length).toBe(1); + // expect(entities[0].text).toBe('my_db.tb'); + // expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + // expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('select with columns with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 3, + column: 47, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = impala.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('students'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 5, + column: 30, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = impala.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + // TODO: + // expect(entities[1].text).toBe('from_tb'); + // expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + // expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into table as select with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 7, + column: 34, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = impala.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('from_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 9, + column: 43, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = impala.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + // TODO: + // expect(entities[1].text).toBe('unsorted_census_data'); + // expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + // expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 11, + column: 47, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = impala.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('unsorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); +}); diff --git a/test/parser/impala/suggestion/syntaxSuggestion.test.ts b/test/parser/impala/suggestion/syntaxSuggestion.test.ts index a6b8f02..d3ac9c8 100644 --- a/test/parser/impala/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/impala/suggestion/syntaxSuggestion.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import ImpalaSQL from 'src/parser/impala'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; import { commentOtherLine } from 'test/helper'; const syntaxSql = fs.readFileSync( @@ -22,7 +22,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -39,7 +39,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION ); expect(suggestion).not.toBeUndefined(); @@ -56,7 +56,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -73,7 +73,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -90,7 +90,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -107,7 +107,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -124,7 +124,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -141,7 +141,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -158,7 +158,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -175,7 +175,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION ); expect(suggestion).not.toBeUndefined(); @@ -192,7 +192,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -209,7 +209,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW_CREATE + (syn) => syn.syntaxContextType === EntityContextType.VIEW_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -226,7 +226,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -243,7 +243,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION_CREATE + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -260,7 +260,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -277,7 +277,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -294,7 +294,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -311,7 +311,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -328,7 +328,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -345,7 +345,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -362,7 +362,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -379,7 +379,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -396,7 +396,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -413,7 +413,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -430,7 +430,7 @@ describe('Impala SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/impala/syntax/fixtures/create_table.sql b/test/parser/impala/syntax/fixtures/create_table.sql index bcd4fd2..734d8c0 100644 --- a/test/parser/impala/syntax/fixtures/create_table.sql +++ b/test/parser/impala/syntax/fixtures/create_table.sql @@ -178,4 +178,8 @@ CREATE TABLE fk(id INT, col1 INT, col2 STRING, PRIMARY KEY(id), CREATE TABLE pk(id INT, PRIMARY KEY(id) DISABLE, NOVALIDATE, RELY); CREATE TABLE fk(id INT, col1 INT, col2 STRING, PRIMARY KEY(id), - FOREIGN KEY(col1, col2) REFERENCES pk(col1, col2)); \ No newline at end of file + FOREIGN KEY(col1, col2) REFERENCES pk(col1, col2)); + +CREATE TABLE new_Table like old_table; + +CREATE TABLE new_Table like old_table partitioned by (year int) SORT BY (last_name, state); diff --git a/test/parser/mysql/contextCollect/entityCollector.test.ts b/test/parser/mysql/contextCollect/entityCollector.test.ts new file mode 100644 index 0000000..1baff9e --- /dev/null +++ b/test/parser/mysql/contextCollect/entityCollector.test.ts @@ -0,0 +1,495 @@ +import fs from 'fs'; +import path from 'path'; +import MySQL from 'src/parser/mysql'; +import { MySqlEntityCollector, MysqlSplitListener } from 'src/parser/mysql'; +import { ParseTreeListener } from 'antlr4ng'; +import { MySqlParserListener } from 'src/lib/mysql/MySqlParserListener'; +import { EntityContextType } from 'src/parser/common/basic-parser-types'; +import { StmtContextType } from 'src/parser/common/entityCollector'; + +const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); + +describe('MySQL entity collector tests', () => { + const mysql = new MySQL(); + const parseTree = mysql.parse(commonSql); + const splitListener = new MysqlSplitListener(); + mysql.listen(splitListener as MySqlParserListener, parseTree); + + test('validate common sql', () => { + expect(mysql.validate(commonSql).length).toBe(0); + }); + + test('split results', () => { + expect(splitListener.statementsContext.length).toBe(15); + }); + + test('create table by columns', () => { + const columnCreateTableContext = splitListener.statementsContext[0]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('new_tb_with_col'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 13, + endIndex: 27, + line: 1, + startColumn: 14, + endColumn: 29, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 0, + endIndex: 45, + startLine: 1, + endLine: 1, + startColumn: 1, + endColumn: 47, + }); + + expect(tableCreateEntity.relatedEntities).toBeNull(); + + expect(tableCreateEntity.columns.length).toBe(2); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + }); + + test('create table by select', () => { + const createTableBySelectContext = splitListener.statementsContext[1]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, createTableBySelectContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(3); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('new_tb_from_old'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 62, + endIndex: 76, + line: 3, + startColumn: 14, + endColumn: 29, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 49, + endIndex: 265, + startLine: 3, + endLine: 12, + startColumn: 1, + endColumn: 34, + }); + + expect(tableCreateEntity.columns).toBeNull(); + + expect(tableCreateEntity.relatedEntities.length).toBe(2); + tableCreateEntity.relatedEntities.forEach((relatedEntity) => { + expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); + }); + + expect(allEntities[1].text).toBe('old_tb1'); + expect(allEntities[1].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); + expect(allEntities[1].position).toEqual({ + startIndex: 161, + endIndex: 167, + line: 8, + startColumn: 9, + endColumn: 16, + }); + + expect(allEntities[2].text).toBe('old_tb2'); + expect(allEntities[2].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); + expect(allEntities[2].position).toEqual({ + startIndex: 187, + endIndex: 193, + line: 10, + startColumn: 9, + endColumn: 16, + }); + }); + + test('create table like', () => { + const createTableLikeContext = splitListener.statementsContext[2]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, createTableLikeContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const originTableEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('new_tb_like_old'); + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + + expect(tableCreateEntity.columns).toBeNull(); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + + expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(originTableEntity.text).toBe('old_tb'); + expect(originTableEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + }); + + test('common select from table', () => { + const selectTableContext = splitListener.statementsContext[3]; + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, selectTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableEntity = allEntities[0]; + + expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity.text).toBe('select_tb'); + expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(tableEntity.columns).toBeNull(); + expect(tableEntity.relatedEntities).toBeNull(); + }); + + test('select into from table', () => { + const selectTableContext = splitListener.statementsContext[4]; + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, selectTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableEntity = allEntities[0]; + + expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity.text).toBe('into_select_tb'); + expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(tableEntity.columns).toBeNull(); + expect(tableEntity.relatedEntities).toBeNull(); + }); + + test('select from table join', () => { + const selectTableContext = splitListener.statementsContext[5]; + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, selectTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableEntity1 = allEntities[0]; + const tableEntity2 = allEntities[1]; + + expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity1.text).toBe('from_tb'); + expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(tableEntity1.columns).toBeNull(); + expect(tableEntity1.relatedEntities).toBeNull(); + + expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity2.text).toBe('join_tb'); + expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(tableEntity2.columns).toBeNull(); + expect(tableEntity2.relatedEntities).toBeNull(); + + expect(tableEntity1.belongStmt).toBe(tableEntity2.belongStmt); + }); + + test('insert into table values', () => { + const insertTableContext = splitListener.statementsContext[6]; + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, insertTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableEntity = allEntities[0]; + + expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity.text).toBe('insert_tb'); + expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + + expect(tableEntity.columns).toBeNull(); + expect(tableEntity.relatedEntities).toBeNull(); + }); + + test('insert into table select', () => { + const insertTableContext = splitListener.statementsContext[7]; + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, insertTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(3); + + const insertTableEntity = allEntities[0]; + const fromTableEntity1 = allEntities[1]; + const fromTableEntity2 = allEntities[2]; + + expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(insertTableEntity.text).toBe('insert_from_tb'); + expect(insertTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + + expect(fromTableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(fromTableEntity1.text).toBe('from_tb1'); + expect(fromTableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(fromTableEntity2.entityContextType).toBe(EntityContextType.TABLE); + expect(fromTableEntity2.text).toBe('from_tb2'); + expect(fromTableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(fromTableEntity1.belongStmt.parentStmt).toBe(insertTableEntity.belongStmt); + expect(fromTableEntity2.belongStmt.parentStmt).toBe(insertTableEntity.belongStmt); + expect(fromTableEntity1.belongStmt.rootStmt).toBe(insertTableEntity.belongStmt); + expect(fromTableEntity2.belongStmt.rootStmt).toBe(insertTableEntity.belongStmt); + }); + + test('create view with col', () => { + const insertTableContext = splitListener.statementsContext[8]; + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, insertTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + expect(allEntities[0].entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(allEntities[0].text).toBe('new_view'); + expect(allEntities[0].belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + + expect(allEntities[0].columns.length).toBe(2); + expect(allEntities[0].columns[0].text).toBe('col1'); + expect(allEntities[0].columns[1].text).toBe('col2'); + expect(allEntities[0].columns[0].entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(allEntities[0].columns[0].belongStmt).toBe(allEntities[0].belongStmt); + }); + + test('create view as select table', () => { + const insertTableContext = splitListener.statementsContext[9]; + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, insertTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + expect(allEntities[0].entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(allEntities[0].text).toBe('db.new_view'); + expect(allEntities[0].belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + }); + + test('create database', () => { + const dbCreateContext = splitListener.statementsContext[10]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, dbCreateContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const dbEntity = allEntities[0]; + + expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(dbEntity.text).toBe('db_name'); + expect(dbEntity.position).toEqual({ + endColumn: 24, + endIndex: 778, + line: 31, + startColumn: 17, + startIndex: 772, + }); + + expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); + expect(dbEntity.belongStmt.position).toEqual({ + endColumn: 47, + endIndex: 801, + endLine: 31, + startColumn: 1, + startIndex: 756, + startLine: 31, + }); + + expect(dbEntity.columns).toBeNull(); + expect(dbEntity.relatedEntities).toBeNull(); + }); + + test('create schema', () => { + const schemaCreateContext = splitListener.statementsContext[11]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, schemaCreateContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const schemaEntity = allEntities[0]; + + expect(schemaEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(schemaEntity.text).toBe('db_name'); + expect(schemaEntity.position).toEqual({ + endColumn: 36, + endIndex: 839, + line: 33, + startColumn: 29, + startIndex: 833, + }); + + expect(schemaEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); + expect(schemaEntity.belongStmt.position).toEqual({ + endColumn: 59, + endIndex: 862, + endLine: 33, + startColumn: 1, + startIndex: 805, + startLine: 33, + }); + + expect(schemaEntity.columns).toBeNull(); + expect(schemaEntity.relatedEntities).toBeNull(); + }); + + test('show create database', () => { + const dbCreateContext = splitListener.statementsContext[12]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, dbCreateContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const dbEntity = allEntities[0]; + + expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE); + expect(dbEntity.text).toBe('db_name'); + expect(dbEntity.position).toEqual({ + endColumn: 41, + endIndex: 905, + line: 35, + startColumn: 34, + startIndex: 899, + }); + + expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); + expect(dbEntity.belongStmt.position).toEqual({ + endColumn: 42, + endIndex: 906, + endLine: 35, + startColumn: 1, + startIndex: 866, + startLine: 35, + }); + + expect(dbEntity.columns).toBeNull(); + expect(dbEntity.relatedEntities).toBeNull(); + }); + + test('drop database', () => { + const dbDropContext = splitListener.statementsContext[13]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, dbDropContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const dbEntity = allEntities[0]; + + expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE); + expect(dbEntity.text).toBe('db_name'); + expect(dbEntity.position).toEqual({ + endColumn: 30, + endIndex: 937, + line: 37, + startColumn: 23, + startIndex: 931, + }); + + expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); + expect(dbEntity.belongStmt.position).toEqual({ + endColumn: 31, + endIndex: 938, + endLine: 37, + startColumn: 1, + startIndex: 909, + startLine: 37, + }); + + expect(dbEntity.columns).toBeNull(); + expect(dbEntity.relatedEntities).toBeNull(); + }); + + test('create function', () => { + const functionCreateContext = splitListener.statementsContext[14]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, functionCreateContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const functionEntity = allEntities[0]; + + expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); + expect(functionEntity.text).toBe('my_concat_ws'); + expect(functionEntity.position).toEqual({ + endColumn: 43, + endIndex: 982, + line: 39, + startColumn: 31, + startIndex: 971, + }); + + expect(functionEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_FUNCTION_STMT + ); + expect(functionEntity.belongStmt.position).toEqual({ + endColumn: 87, + endIndex: 1026, + endLine: 39, + startColumn: 1, + startIndex: 941, + startLine: 39, + }); + + expect(functionEntity.columns).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + }); +}); diff --git a/test/parser/mysql/contextCollect/fixtures/common.sql b/test/parser/mysql/contextCollect/fixtures/common.sql new file mode 100644 index 0000000..7709bcc --- /dev/null +++ b/test/parser/mysql/contextCollect/fixtures/common.sql @@ -0,0 +1,39 @@ +CREATE TABLE new_tb_with_col (id int, age int); + +CREATE TABLE new_tb_from_old AS + SELECT + old_tb1.column1, + old_tb2.column2 + FROM + old_tb1 + JOIN + old_tb2 ON old_tb1.id = old_tb2.id + WHERE + old_tb1.column1 = 'value'; + + +CREATE TABLE new_tb_like_old LIKE old_tb; + +SELECT * FROM select_tb LIMIT 5,10; + +SELECT * INTO @my_var FROM into_select_tb; + +SELECT * FROM from_tb LEFT JOIN join_tb ON (t1.a = t2.a); + +INSERT INTO insert_tb (a,b,c) VALUES(1,2,3), (4,5,6), (7,8,9); + +INSERT INTO insert_from_tb (a, b) SELECT c, d FROM from_tb1 UNION SELECT e, f FROM from_tb2 ON DUPLICATE KEY UPDATE b = b + c; + +CREATE VIEW new_view (col1, col2) AS SELECT CURRENT_DATE; + +CREATE VIEW db.new_view AS SELECT * FROM from_tb; + +CREATE DATABASE db_name DEFAULT ENCRYPTION 'N'; + +CREATE SCHEMA IF NOT EXISTS db_name DEFAULT ENCRYPTION 'Y'; + +SHOW CREATE SCHEMA IF NOT EXISTS db_name; + +DROP SCHEMA IF EXISTS db_name; + +CREATE FUNCTION IF NOT EXISTS my_concat_ws RETURNS STRING SONAME 'udf_my_concat_ws.so'; diff --git a/test/parser/mysql/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/mysql/suggestion/fixtures/suggestionWithEntity.sql new file mode 100644 index 0000000..6bbbf12 --- /dev/null +++ b/test/parser/mysql/suggestion/fixtures/suggestionWithEntity.sql @@ -0,0 +1,11 @@ +SELECT FROM my_db.tb; + +SELECT name, calculate_age(birthdate) AS age, FROM students; + +INSERT INTO insert_tb SELECT FROM from_tb; + +INSERT INTO insert_tb SELECT id, age, FROM from_tb; + +CREATE TABLE sorted_census_data AS SELECT FROM unsorted_census_data; + +CREATE TABLE sorted_census_data AS SELECT id, age, FROM unsorted_census_data; \ No newline at end of file diff --git a/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql index 8c16985..a97a352 100644 --- a/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql @@ -47,3 +47,11 @@ SELECT id, n FROM tbl GROUP BY ; SELECT id, n FROM tbl ORDER BY name, i ; SELECT id FROM tb1 GROUP BY ROLLUP( ); + +SHOW CREATE FUNCTION func_name; + +SHOW CREATE TABLE tbl_name; + +SHOW CREATE DATABASE IF NOT EXISTS db_name; + +SHOW CREATE VIEW test.v; \ No newline at end of file diff --git a/test/parser/mysql/suggestion/multipleStatement.test.ts b/test/parser/mysql/suggestion/multipleStatement.test.ts index 405eed5..73832a1 100644 --- a/test/parser/mysql/suggestion/multipleStatement.test.ts +++ b/test/parser/mysql/suggestion/multipleStatement.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import MySQL from 'src/parser/mysql'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; const syntaxSql = fs.readFileSync( path.join(__dirname, 'fixtures', 'multipleStatement.sql'), @@ -18,7 +18,7 @@ describe('MySQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -32,7 +32,7 @@ describe('MySQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -46,7 +46,7 @@ describe('MySQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -60,7 +60,7 @@ describe('MySQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/mysql/suggestion/suggestionWithEntity.test.ts b/test/parser/mysql/suggestion/suggestionWithEntity.test.ts new file mode 100644 index 0000000..b3767df --- /dev/null +++ b/test/parser/mysql/suggestion/suggestionWithEntity.test.ts @@ -0,0 +1,156 @@ +import fs from 'fs'; +import path from 'path'; +import MySQL from 'src/parser/mysql'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; +import { commentOtherLine } from 'test/helper'; + +const syntaxSql = fs.readFileSync( + path.join(__dirname, 'fixtures', 'suggestionWithEntity.sql'), + 'utf-8' +); + +describe('MySQL Syntax Suggestion with collect entity', () => { + const mysql = new MySQL(); + + test('select with no columns', () => { + const pos: CaretPosition = { + lineNumber: 1, + column: 8, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = mysql.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('my_db.tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('select with columns with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 3, + column: 47, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = mysql.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('students'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 5, + column: 30, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = mysql.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('from_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into table as select with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 7, + column: 39, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = mysql.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('from_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 9, + column: 43, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = mysql.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('unsorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 11, + column: 52, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = mysql.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('unsorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); +}); diff --git a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts index 7d30bab..130c916 100644 --- a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import MySQL from 'src/parser/mysql'; -import { SyntaxContextType, CaretPosition } from 'src/parser/common/basic-parser-types'; +import { EntityContextType, CaretPosition } from 'src/parser/common/basic-parser-types'; import { commentOtherLine } from 'test/helper'; const syntaxSql = fs.readFileSync( @@ -26,7 +26,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -43,7 +43,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -60,7 +60,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -77,7 +77,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -94,7 +94,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW_CREATE + (syn) => syn.syntaxContextType === EntityContextType.VIEW_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -111,7 +111,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -128,7 +128,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION_CREATE + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -145,7 +145,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION ); expect(suggestion).not.toBeUndefined(); @@ -162,7 +162,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -179,7 +179,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -196,7 +196,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -213,7 +213,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -230,7 +230,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -247,7 +247,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -264,7 +264,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -281,7 +281,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -298,7 +298,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -315,7 +315,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -332,7 +332,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -349,7 +349,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -366,7 +366,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -383,7 +383,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -400,7 +400,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -417,7 +417,7 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -434,10 +434,78 @@ describe('MySQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); }); + + test('show create function', () => { + const pos: CaretPosition = { + lineNumber: 51, + column: 31, + }; + const syntaxes = parser.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['func_name']); + }); + + test('show create table', () => { + const pos: CaretPosition = { + lineNumber: 53, + column: 27, + }; + const syntaxes = parser.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['tbl_name']); + }); + + test('show create dbName', () => { + const pos: CaretPosition = { + lineNumber: 55, + column: 43, + }; + const syntaxes = parser.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.DATABASE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db_name']); + }); + + test('show create view', () => { + const pos: CaretPosition = { + lineNumber: 57, + column: 24, + }; + const syntaxes = parser.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.VIEW + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['test', '.', 'v']); + }); }); diff --git a/test/parser/pgsql/contextCollect/entityCollector.test.ts b/test/parser/pgsql/contextCollect/entityCollector.test.ts new file mode 100644 index 0000000..4fdc99f --- /dev/null +++ b/test/parser/pgsql/contextCollect/entityCollector.test.ts @@ -0,0 +1,444 @@ +import { ParseTreeListener } from 'antlr4ng'; +import fs from 'fs'; +import path from 'path'; +import { PostgreSQLParserListener } from 'src/lib/pgsql/PostgreSQLParserListener'; +import { EntityContextType } from 'src/parser/common/basic-parser-types'; +import { StmtContextType } from 'src/parser/common/entityCollector'; +import PostgreSQL, { PostgreSQLEntityCollector, PostgreSqlSplitListener } from 'src/parser/pgsql'; + +const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); + +describe('PostgreSQL entity collector tests', () => { + const postgreSql = new PostgreSQL(); + const parseTree = postgreSql.parse(commonSql); + const splitListener = new PostgreSqlSplitListener(); + postgreSql.listen(splitListener as PostgreSQLParserListener, parseTree); + + test('validate common sql', () => { + expect(postgreSql.validate(commonSql).length).toBe(0); + }); + + test('split results', () => { + expect(splitListener.statementsContext.length).toBe(10); + }); + + test('create database', () => { + const testingContext = splitListener.statementsContext[0]; + + const collectListener = new PostgreSQLEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(1); + + const sourceTableEntity = allEntities[0]; + + expect(sourceTableEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(sourceTableEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_DATABASE_STMT + ); + expect(sourceTableEntity.text).toBe('music2'); + }); + + test('create table by select', () => { + const testingContext = splitListener.statementsContext[1]; + + const collectListener = new PostgreSQLEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(3); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('films_recent'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 110, + endIndex: 121, + line: 6, + startColumn: 14, + endColumn: 26, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 97, + endIndex: 246, + startLine: 6, + endLine: 7, + startColumn: 1, + endColumn: 122, + }); + + expect(tableCreateEntity.columns).toBeNull(); + + expect(tableCreateEntity.relatedEntities.length).toBe(2); + tableCreateEntity.relatedEntities.forEach((relatedEntity) => { + expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); + }); + + expect(allEntities[1].text).toBe('films'); + expect(allEntities[1].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); + expect(allEntities[1].position).toEqual({ + startIndex: 168, + endIndex: 172, + line: 7, + startColumn: 43, + endColumn: 48, + }); + + expect(allEntities[2].text).toBe('films2'); + expect(allEntities[2].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); + expect(allEntities[2].position).toEqual({ + startIndex: 179, + endIndex: 184, + line: 7, + startColumn: 54, + endColumn: 60, + }); + }); + + test('create table of columns', () => { + const testingContext = splitListener.statementsContext[2]; + + const collectListener = new PostgreSQLEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('distributors'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 263, + endIndex: 274, + line: 9, + startColumn: 14, + endColumn: 26, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 250, + endIndex: 377, + startLine: 9, + endLine: 13, + startColumn: 1, + endColumn: 2, + }); + + expect(tableCreateEntity.columns.length).toBe(3); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + }); + + test('create foreign table by columns', () => { + const testingContext = splitListener.statementsContext[3]; + + const collectListener = new PostgreSQLEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('films'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 402, + endIndex: 406, + line: 15, + startColumn: 22, + endColumn: 27, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 381, + endIndex: 626, + startLine: 15, + endLine: 23, + startColumn: 1, + endColumn: 19, + }); + + expect(tableCreateEntity.columns.length).toBe(6); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + }); + + test('create foreign table of partition', () => { + const testingContext = splitListener.statementsContext[4]; + + const collectListener = new PostgreSQLEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('measurement_y2016m07'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 651, + endIndex: 670, + line: 25, + startColumn: 22, + endColumn: 42, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 630, + endIndex: 769, + startLine: 25, + endLine: 27, + startColumn: 1, + endColumn: 21, + }); + + expect(tableCreateEntity.columns).toBeNull(); + + expect(tableCreateEntity.relatedEntities.length).toBe(1); + + const relatedEntity = tableCreateEntity.relatedEntities[0]; + expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); + expect(relatedEntity.text).toBe('measurement'); + }); + + test('create view by select', () => { + const testingContext = splitListener.statementsContext[5]; + + const collectListener = new PostgreSQLEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(tableCreateEntity.text).toBe('comedies'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 785, + endIndex: 792, + line: 29, + startColumn: 13, + endColumn: 21, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 773, + endIndex: 849, + startLine: 29, + endLine: 32, + startColumn: 1, + endColumn: 26, + }); + + expect(tableCreateEntity.columns).toBeNull(); + + expect(tableCreateEntity.relatedEntities.length).toBe(1); + + const relatedEntity = tableCreateEntity.relatedEntities[0]; + expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); + expect(relatedEntity.text).toBe('films'); + }); + + test('create materialized view by columns', () => { + const testingContext = splitListener.statementsContext[6]; + + const collectListener = new PostgreSQLEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(tableCreateEntity.text).toBe('comedies_mate'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 878, + endIndex: 890, + line: 34, + startColumn: 26, + endColumn: 39, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 853, + endIndex: 1055, + startLine: 34, + endLine: 39, + startColumn: 1, + endColumn: 17, + }); + + expect(tableCreateEntity.columns.length).toBe(2); + + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + }); + + test('select with clause', () => { + const testingContext = splitListener.statementsContext[7]; + + const collectListener = new PostgreSQLEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(2); + + const tableEntity1 = allEntities[0]; + const tableEntity2 = allEntities[1]; + expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity1.text).toBe('table_expression'); + expect(tableEntity1.position).toEqual({ + startIndex: 1109, + endIndex: 1124, + line: 41, + startColumn: 51, + endColumn: 67, + }); + + expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity1.belongStmt.position).toEqual({ + startIndex: 1094, + endIndex: 1124, + startLine: 41, + endLine: 41, + startColumn: 36, + endColumn: 67, + }); + expect(tableEntity1.columns).toBeNull(); + expect(tableEntity1.relatedEntities).toBeNull(); + + expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity2.text).toBe('table_expression1'); + expect(tableEntity2.position).toEqual({ + startIndex: 1182, + endIndex: 1198, + line: 42, + startColumn: 55, + endColumn: 72, + }); + + expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity2.belongStmt.position).toEqual({ + startIndex: 1059, + endIndex: 1237, + startLine: 41, + endLine: 42, + startColumn: 1, + endColumn: 111, + }); + expect(tableEntity2.columns).toBeNull(); + expect(tableEntity2.relatedEntities).toBeNull(); + }); + + test('insert into table', () => { + const testingContext = splitListener.statementsContext[8]; + + const collectListener = new PostgreSQLEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(1); + + const tableInsertEntity = allEntities[0]; + + expect(tableInsertEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableInsertEntity.text).toBe('insert_films'); + expect(tableInsertEntity.position).toEqual({ + startIndex: 1253, + endIndex: 1264, + line: 44, + startColumn: 13, + endColumn: 25, + }); + + expect(tableInsertEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + expect(tableInsertEntity.belongStmt.position).toEqual({ + startIndex: 1241, + endIndex: 1355, + startLine: 44, + endLine: 45, + startColumn: 1, + endColumn: 55, + }); + + expect(tableInsertEntity.columns).toBeNull(); + expect(tableInsertEntity.relatedEntities).toBeNull(); + }); + + test('create function', () => { + const testingContext = splitListener.statementsContext[9]; + + const collectListener = new PostgreSQLEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(1); + + const functionEntity = allEntities[0]; + + expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); + expect(functionEntity.text).toBe('get_color_note'); + expect(functionEntity.position).toEqual({ + endColumn: 31, + endIndex: 1388, + line: 47, + startColumn: 17, + startIndex: 1375, + }); + + expect(functionEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_FUNCTION_STMT + ); + expect(functionEntity.belongStmt.position).toEqual({ + endColumn: 15, + endIndex: 1477, + endLine: 49, + startColumn: 1, + startIndex: 1359, + startLine: 47, + }); + + expect(functionEntity.columns).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + }); +}); diff --git a/test/parser/pgsql/contextCollect/fixtures/common.sql b/test/parser/pgsql/contextCollect/fixtures/common.sql new file mode 100644 index 0000000..ce34d92 --- /dev/null +++ b/test/parser/pgsql/contextCollect/fixtures/common.sql @@ -0,0 +1,49 @@ +CREATE DATABASE music2 + LOCALE 'sv_SE.iso885915' + ENCODING LATIN9 + TEMPLATE template0; + +CREATE TABLE films_recent AS + SELECT films.name, films.startTime FROM films JOIN films2 ON films2.id = films.id WHERE films.startTime >= '2002-01-01'; + +CREATE TABLE distributors ( + did integer, + name varchar(40), + CONSTRAINT con1 CHECK (did > 100 AND name <> '') +); + +CREATE FOREIGN TABLE films ( + code char(5) NOT NULL, + title varchar(40) NOT NULL, + did integer NOT NULL, + date_prod date, + kind varchar(10), + len interval hour to minute +) +SERVER film_server; + +CREATE FOREIGN TABLE measurement_y2016m07 + PARTITION OF measurement FOR VALUES FROM ('2016-07-01') TO ('2016-08-01') + SERVER server_07; + +CREATE VIEW comedies AS + SELECT * + FROM films + WHERE kind = 'Comedy'; + +CREATE MATERIALIZED VIEW comedies_mate + (column_name1, column_name2) + WITH ( storage_parameter=3, storage_parameter1=4) + TABLESPACE tablespace_name + AS SELECT * FROM product + WITH NO DATA; + +WITH RECURSIVE query_name (id) AS (SELECT id FROM table_expression) +SELECT DISTINCT ON (col1,col2) random() AS name1 FROM table_expression1 WHERE name1=name1 GROUP BY DISTINCT id; + +INSERT INTO insert_films (code, title, did, date_prod, kind) + VALUES ('T_601', 'Yojimbo', 106, DEFAULT, 'Drama'); + +CREATE FUNCTION get_color_note (rainbow) RETURNS text AS + 'SELECT note FROM my_colors WHERE color = $1' + LANGUAGE SQL; \ No newline at end of file diff --git a/test/parser/pgsql/errorStrategy.test.ts b/test/parser/pgsql/errorStrategy.test.ts index 61f0326..7685ef1 100644 --- a/test/parser/pgsql/errorStrategy.test.ts +++ b/test/parser/pgsql/errorStrategy.test.ts @@ -1,4 +1,4 @@ -import PostgresSQL, { PgSqlSplitListener } from 'src/parser/pgsql'; +import PostgresSQL, { PostgreSqlSplitListener } from 'src/parser/pgsql'; import { PostgreSQLParserListener } from 'src/lib/pgsql/PostgreSQLParserListener'; const validSQL1 = `INSERT INTO country_page_view @@ -15,7 +15,7 @@ describe('PgSQL ErrorStrategy test', () => { // const sql = [inValidSQL, validSQL1, validSQL2].join('\n'); // // parse with empty errorListener // const parseTree = pgSQL.parse(sql, () => {}); - // const splitListener = new PgSqlSplitListener(); + // const splitListener = new PostgreSqlSplitListener(); // pgSQL.listen(splitListener as PostgreSQLParserListener, parseTree); // const statementCount = splitListener.statementsContext.length; @@ -32,7 +32,7 @@ describe('PgSQL ErrorStrategy test', () => { const sql = [validSQL1, inValidSQL, validSQL2].join('\n'); // parse with empty errorListener const parseTree = pgSQL.parse(sql, () => {}); - const splitListener = new PgSqlSplitListener(); + const splitListener = new PostgreSqlSplitListener(); pgSQL.listen(splitListener as PostgreSQLParserListener, parseTree); const statementCount = splitListener.statementsContext.length; @@ -49,7 +49,7 @@ describe('PgSQL ErrorStrategy test', () => { const sql = [validSQL1, validSQL2, inValidSQL].join('\n'); // parse with empty errorListener const parseTree = pgSQL.parse(sql, () => {}); - const splitListener = new PgSqlSplitListener(); + const splitListener = new PostgreSqlSplitListener(); pgSQL.listen(splitListener as PostgreSQLParserListener, parseTree); splitListener.statementsContext.map((item, index) => { diff --git a/test/parser/pgsql/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/pgsql/suggestion/fixtures/suggestionWithEntity.sql new file mode 100644 index 0000000..6bbbf12 --- /dev/null +++ b/test/parser/pgsql/suggestion/fixtures/suggestionWithEntity.sql @@ -0,0 +1,11 @@ +SELECT FROM my_db.tb; + +SELECT name, calculate_age(birthdate) AS age, FROM students; + +INSERT INTO insert_tb SELECT FROM from_tb; + +INSERT INTO insert_tb SELECT id, age, FROM from_tb; + +CREATE TABLE sorted_census_data AS SELECT FROM unsorted_census_data; + +CREATE TABLE sorted_census_data AS SELECT id, age, FROM unsorted_census_data; \ No newline at end of file diff --git a/test/parser/pgsql/suggestion/multipleStatement.test.ts b/test/parser/pgsql/suggestion/multipleStatement.test.ts index beb800a..89edfb5 100644 --- a/test/parser/pgsql/suggestion/multipleStatement.test.ts +++ b/test/parser/pgsql/suggestion/multipleStatement.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import PostgresSQL from 'src/parser/pgsql'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; const syntaxSql = fs.readFileSync( path.join(__dirname, 'fixtures', 'multipleStatement.sql'), @@ -18,7 +18,7 @@ describe('PgSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -32,10 +32,10 @@ describe('PgSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); const suggestionVw = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -51,7 +51,7 @@ describe('PgSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -65,7 +65,7 @@ describe('PgSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/pgsql/suggestion/suggestionWithEntity.test.ts b/test/parser/pgsql/suggestion/suggestionWithEntity.test.ts new file mode 100644 index 0000000..116222e --- /dev/null +++ b/test/parser/pgsql/suggestion/suggestionWithEntity.test.ts @@ -0,0 +1,156 @@ +import fs from 'fs'; +import path from 'path'; +import PostgreSQL from 'src/parser/pgsql'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; +import { commentOtherLine } from 'test/helper'; + +const syntaxSql = fs.readFileSync( + path.join(__dirname, 'fixtures', 'suggestionWithEntity.sql'), + 'utf-8' +); + +describe('PostgreSQL Syntax Suggestion with collect entity', () => { + const postgre = new PostgreSQL(); + + test('select with no column', () => { + const pos: CaretPosition = { + lineNumber: 1, + column: 8, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = postgre.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = postgre.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('my_db.tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('select with columns with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 3, + column: 47, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = postgre.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = postgre.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('students'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 5, + column: 30, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = postgre.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = postgre.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('from_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into table as select with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 7, + column: 39, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = postgre.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = postgre.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('from_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 9, + column: 43, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = postgre.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = postgre.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('unsorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 11, + column: 52, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = postgre.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = postgre.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('unsorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); +}); diff --git a/test/parser/pgsql/suggestion/syntaxSuggestion.test.ts b/test/parser/pgsql/suggestion/syntaxSuggestion.test.ts index 53261ad..644cb48 100644 --- a/test/parser/pgsql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/pgsql/suggestion/syntaxSuggestion.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; import PostgresSQL from 'src/parser/pgsql'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; import { commentOtherLine } from 'test/helper'; const syntaxSql = fs.readFileSync( @@ -28,7 +28,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -45,7 +45,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -62,7 +62,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -95,13 +95,13 @@ describe('Postgre SQL Syntax Suggestion', () => { pos2 )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); const suggestion1 = syntaxes1?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); const suggestion2 = syntaxes2?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -122,7 +122,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW_CREATE + (syn) => syn.syntaxContextType === EntityContextType.VIEW_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -139,7 +139,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -156,7 +156,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -173,7 +173,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION_CREATE + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -190,7 +190,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION ); expect(suggestion).not.toBeUndefined(); @@ -207,7 +207,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -224,7 +224,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -241,7 +241,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -258,7 +258,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -275,7 +275,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -292,7 +292,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -317,10 +317,10 @@ describe('Postgre SQL Syntax Suggestion', () => { posCreate )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestionCreate = syntaxesCreate?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -357,13 +357,13 @@ describe('Postgre SQL Syntax Suggestion', () => { posAction )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestionCreate = syntaxesCreate?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); const suggestionAction = syntaxesAction?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -386,7 +386,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); @@ -402,7 +402,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([ @@ -438,13 +438,13 @@ describe('Postgre SQL Syntax Suggestion', () => { posAction )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestionCreate = syntaxesCreate?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestionAction = syntaxesAction?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -467,7 +467,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); @@ -483,7 +483,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); @@ -515,13 +515,13 @@ describe('Postgre SQL Syntax Suggestion', () => { pos2 )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion1 = syntaxes1?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion2 = syntaxes2?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col_name']); @@ -541,7 +541,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); @@ -557,7 +557,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); @@ -589,13 +589,13 @@ describe('Postgre SQL Syntax Suggestion', () => { pos2 )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion1 = syntaxes1?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion2 = syntaxes2?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); @@ -615,7 +615,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col_name']); @@ -631,7 +631,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); @@ -655,10 +655,10 @@ describe('Postgre SQL Syntax Suggestion', () => { pos1 )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion1 = syntaxes1?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); @@ -676,7 +676,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); @@ -708,13 +708,13 @@ describe('Postgre SQL Syntax Suggestion', () => { pos2 )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion1 = syntaxes1?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion2 = syntaxes2?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); @@ -734,7 +734,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col_name']); @@ -749,7 +749,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['co_name']); @@ -765,7 +765,7 @@ describe('Postgre SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([ @@ -825,23 +825,23 @@ describe('Postgre SQL Syntax Suggestion', () => { pos5 )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion1 = syntaxes1?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion2 = syntaxes2?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion3 = syntaxes3?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion4 = syntaxes4?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion5 = syntaxes5?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -884,13 +884,13 @@ describe('Postgre SQL Syntax Suggestion', () => { pos2 )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion1 = syntaxes1?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion2 = syntaxes2?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['columnname']); @@ -918,10 +918,10 @@ describe('Postgre SQL Syntax Suggestion', () => { pos1 )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion1 = syntaxes1?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['col1']); @@ -954,13 +954,13 @@ describe('Postgre SQL Syntax Suggestion', () => { pos3 )?.syntax; const suggestion1 = syntaxes1?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion2 = syntaxes2?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); const suggestion3 = syntaxes3?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion1).not.toBeUndefined(); diff --git a/test/parser/spark/contextCollect/entityCollector.test.ts b/test/parser/spark/contextCollect/entityCollector.test.ts new file mode 100644 index 0000000..56a73e7 --- /dev/null +++ b/test/parser/spark/contextCollect/entityCollector.test.ts @@ -0,0 +1,362 @@ +import fs from 'fs'; +import path from 'path'; +import SparkSQL from 'src/parser/spark'; +import { SparkSqlSplitListener, SparkEntityCollector } from 'src/parser/spark'; +import { ParseTreeListener } from 'antlr4ng'; +import { SparkSqlParserListener } from 'src/lib/spark/SparkSqlParserListener'; +import { EntityContextType } from 'src/parser/common/basic-parser-types'; +import { StmtContextType } from 'src/parser/common/entityCollector'; + +const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); + +describe('SparkSQL entity collector tests', () => { + const spark = new SparkSQL(); + const parseTree = spark.parse(commonSql); + const splitListener = new SparkSqlSplitListener(); + spark.listen(splitListener as SparkSqlParserListener, parseTree); + + test('validate common sql', () => { + expect(spark.validate(commonSql).length).toBe(0); + }); + + test('split results', () => { + expect(splitListener.statementsContext.length).toBe(12); + }); + + test('create table like', () => { + const columnCreateTableContext = splitListener.statementsContext[0]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('new_tb1'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 27, + endIndex: 33, + line: 1, + startColumn: 28, + endColumn: 35, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 0, + endIndex: 50, + startLine: 1, + endLine: 1, + startColumn: 1, + endColumn: 52, + }); + + expect(tableCreateEntity.relatedEntities.length).toBe(1); + + const beLikedEntity = allEntities[1]; + + expect(tableCreateEntity.relatedEntities[0]).toBe(beLikedEntity); + expect(beLikedEntity.text).toBe('like_old_tb'); + expect(beLikedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(beLikedEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + }); + + test('create hive format table', () => { + const columnCreateTableContext = splitListener.statementsContext[1]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('new_tb2'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 67, + endIndex: 73, + line: 3, + startColumn: 14, + endColumn: 21, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 54, + endIndex: 242, + startLine: 3, + endLine: 8, + startColumn: 1, + endColumn: 22, + }); + + expect(tableCreateEntity.relatedEntities).toBeNull(); + expect(tableCreateEntity.columns.length).toBe(2); + + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + }); + + test('create data source table', () => { + const testingContext = splitListener.statementsContext[2]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const originTableEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('student_copy'); + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + + expect(tableCreateEntity.columns).toBeNull(); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + + expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(originTableEntity.text).toBe('student'); + expect(originTableEntity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + }); + + test('create view', () => { + const testingContext = splitListener.statementsContext[3]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const viewEntity = allEntities[0]; + const tableEntity = allEntities[1]; + + expect(viewEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(viewEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + expect(viewEntity.text).toBe('new_view1'); + expect(viewEntity.columns.length).toBe(2); + viewEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(viewEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + + expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity.belongStmt.rootStmt).toBe(viewEntity.belongStmt); + expect(tableEntity.text).toBe('old_tb_1'); + }); + + test('select from table', () => { + const testingContext = splitListener.statementsContext[4]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableEntity1 = allEntities[0]; + const tableEntity2 = allEntities[1]; + + expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity1.text).toBe('employee'); + + expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity2.text).toBe('department'); + }); + + test('insert into table values', () => { + const testingContext = splitListener.statementsContext[5]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableEntity = allEntities[0]; + + expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + expect(tableEntity.text).toBe('insert_tb'); + }); + + test('insert overwrite table', () => { + const testingContext = splitListener.statementsContext[6]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const targetTableEntity = allEntities[0]; + const sourceTableEntity = allEntities[1]; + + expect(targetTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(targetTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + expect(targetTableEntity.text).toBe('target_tb'); + + expect(sourceTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(sourceTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(sourceTableEntity.belongStmt.rootStmt).toBe(targetTableEntity.belongStmt); + expect(sourceTableEntity.text).toBe('source_tb'); + }); + + test('insert overwrite dir', () => { + const testingContext = splitListener.statementsContext[7]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(1); + + const sourceTableEntity = allEntities[0]; + + expect(sourceTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(sourceTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(sourceTableEntity.text).toBe('from_tb'); + }); + + test('create database', () => { + const testingContext = splitListener.statementsContext[8]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(1); + + const sourceTableEntity = allEntities[0]; + + expect(sourceTableEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(sourceTableEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_DATABASE_STMT + ); + expect(sourceTableEntity.text).toBe('customer_db'); + }); + + test('use namespace', () => { + const testingContext = splitListener.statementsContext[9]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(1); + + const sourceTableEntity = allEntities[0]; + + expect(sourceTableEntity.entityContextType).toBe(EntityContextType.DATABASE); + expect(sourceTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); + expect(sourceTableEntity.text).toBe('ns1'); + }); + + test('create function', () => { + const functionContext = splitListener.statementsContext[10]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, functionContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const functionEntity = allEntities[0]; + + expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); + expect(functionEntity.text).toBe('simple_udf'); + expect(functionEntity.position).toEqual({ + endColumn: 38, + endIndex: 905, + line: 28, + startColumn: 28, + startIndex: 896, + }); + + expect(functionEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_FUNCTION_STMT + ); + expect(functionEntity.belongStmt.position).toEqual({ + endColumn: 54, + endIndex: 921, + endLine: 28, + startColumn: 1, + startIndex: 869, + startLine: 28, + }); + + expect(functionEntity.columns).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + }); + + test('create xxx function', () => { + const functionContext = splitListener.statementsContext[11]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, functionContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const functionEntity = allEntities[0]; + + expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); + expect(functionEntity.text).toBe('simple_udf'); + expect(functionEntity.position).toEqual({ + endColumn: 27, + endIndex: 950, + line: 30, + startColumn: 17, + startIndex: 941, + }); + + expect(functionEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_FUNCTION_STMT + ); + expect(functionEntity.belongStmt.position).toEqual({ + endColumn: 43, + endIndex: 966, + endLine: 30, + startColumn: 1, + startIndex: 925, + startLine: 30, + }); + + expect(functionEntity.columns).toBeNull(); + expect(functionEntity.relatedEntities).toBeNull(); + }); +}); diff --git a/test/parser/spark/contextCollect/fixtures/common.sql b/test/parser/spark/contextCollect/fixtures/common.sql new file mode 100644 index 0000000..fc63a47 --- /dev/null +++ b/test/parser/spark/contextCollect/fixtures/common.sql @@ -0,0 +1,30 @@ +CREATE TABLE IF NOT EXISTS new_tb1 like like_old_tb; + +CREATE TABLE new_tb2 (new_col1 INT, new_col2 STRING) + PARTITIONED BY (YEAR STRING) + CLUSTERED BY (new_col1, NAME) + SORTED BY (new_col1 ASC) + INTO 3 BUCKETS + STORED AS PARQUET; + +CREATE TABLE student_copy USING CSV AS SELECT * FROM student; + +CREATE VIEW new_view1 (ID COMMENT 'Unique identification number', Name) +COMMENT 'View for experienced employees' +AS SELECT id, name FROM old_tb_1 WHERE working_years > 5; + +SELECT id, name, employee.deptno, deptname FROM employee CROSS JOIN department; + +INSERT INTO insert_tb (address, name, student_id) VALUES ('Hangzhou, China', 'Kent Yao', 11215016); + +INSERT OVERWRITE target_tb TABLE source_tb; + +INSERT OVERWRITE DIRECTORY '/path/to/output/directory' SELECT * FROM from_tb WHERE condition; + +CREATE DATABASE IF NOT EXISTS customer_db; + +USE NAMESPACE ns1; + +CREATE OR REPLACE FUNCTION simple_udf AS 'SimpleUdfR'; + +CREATE FUNCTION simple_udf AS 'SimpleUdfR'; \ No newline at end of file diff --git a/test/parser/spark/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/spark/suggestion/fixtures/suggestionWithEntity.sql new file mode 100644 index 0000000..6bbbf12 --- /dev/null +++ b/test/parser/spark/suggestion/fixtures/suggestionWithEntity.sql @@ -0,0 +1,11 @@ +SELECT FROM my_db.tb; + +SELECT name, calculate_age(birthdate) AS age, FROM students; + +INSERT INTO insert_tb SELECT FROM from_tb; + +INSERT INTO insert_tb SELECT id, age, FROM from_tb; + +CREATE TABLE sorted_census_data AS SELECT FROM unsorted_census_data; + +CREATE TABLE sorted_census_data AS SELECT id, age, FROM unsorted_census_data; \ No newline at end of file diff --git a/test/parser/spark/suggestion/multipleStatement.test.ts b/test/parser/spark/suggestion/multipleStatement.test.ts index aad327d..a381970 100644 --- a/test/parser/spark/suggestion/multipleStatement.test.ts +++ b/test/parser/spark/suggestion/multipleStatement.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import SparkSQL from 'src/parser/spark'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; const syntaxSql = fs.readFileSync( path.join(__dirname, 'fixtures', 'multipleStatement.sql'), @@ -18,7 +18,7 @@ describe('SparkSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -32,7 +32,7 @@ describe('SparkSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -46,7 +46,7 @@ describe('SparkSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -60,7 +60,7 @@ describe('SparkSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/spark/suggestion/suggestionWithEntity.test.ts b/test/parser/spark/suggestion/suggestionWithEntity.test.ts new file mode 100644 index 0000000..21dc399 --- /dev/null +++ b/test/parser/spark/suggestion/suggestionWithEntity.test.ts @@ -0,0 +1,156 @@ +import fs from 'fs'; +import path from 'path'; +import SparkSQL from 'src/parser/spark'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; +import { commentOtherLine } from 'test/helper'; + +const syntaxSql = fs.readFileSync( + path.join(__dirname, 'fixtures', 'suggestionWithEntity.sql'), + 'utf-8' +); + +describe('PostgreSQL Syntax Suggestion with collect entity', () => { + const spark = new SparkSQL(); + + test('select with no column', () => { + const pos: CaretPosition = { + lineNumber: 1, + column: 8, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = spark.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = spark.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('my_db.tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('select with columns with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 3, + column: 47, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = spark.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = spark.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('students'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 5, + column: 30, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = spark.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = spark.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('from_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into table as select with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 7, + column: 39, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = spark.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = spark.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('from_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 9, + column: 43, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = spark.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = spark.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('unsorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 11, + column: 52, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = spark.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = spark.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('unsorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); +}); diff --git a/test/parser/spark/suggestion/syntaxSuggestion.test.ts b/test/parser/spark/suggestion/syntaxSuggestion.test.ts index 40c2a75..ae571e2 100644 --- a/test/parser/spark/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/spark/suggestion/syntaxSuggestion.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import SparkSQL from 'src/parser/spark'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; import { commentOtherLine } from 'test/helper'; const syntaxSql = fs.readFileSync( @@ -28,7 +28,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -45,7 +45,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -62,7 +62,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -79,7 +79,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -96,7 +96,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW_CREATE + (syn) => syn.syntaxContextType === EntityContextType.VIEW_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -113,7 +113,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -130,7 +130,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION_CREATE + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -147,7 +147,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION ); expect(suggestion).not.toBeUndefined(); @@ -164,7 +164,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -181,7 +181,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -198,7 +198,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -215,7 +215,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -232,7 +232,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -249,7 +249,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -266,7 +266,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -283,7 +283,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -300,7 +300,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -317,7 +317,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -334,7 +334,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -351,7 +351,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -368,7 +368,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -385,7 +385,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -402,7 +402,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -419,7 +419,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -436,7 +436,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -453,7 +453,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW_CREATE + (syn) => syn.syntaxContextType === EntityContextType.VIEW_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -470,7 +470,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -487,7 +487,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -504,7 +504,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -521,7 +521,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -538,7 +538,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -555,7 +555,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -572,7 +572,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -589,7 +589,7 @@ describe('Spark SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/trino/contextCollect/entityCollector.test.ts b/test/parser/trino/contextCollect/entityCollector.test.ts new file mode 100644 index 0000000..17723fe --- /dev/null +++ b/test/parser/trino/contextCollect/entityCollector.test.ts @@ -0,0 +1,250 @@ +import fs from 'fs'; +import path from 'path'; +import TrinoSQL from 'src/parser/trino'; +import { TrinoSqlSplitListener, TrinoEntityCollector } from 'src/parser/trino'; +import { ParseTreeListener } from 'antlr4ng'; +import { TrinoSqlListener } from 'src/lib/trinosql/TrinoSqlListener'; +import { EntityContextType } from 'src/parser/common/basic-parser-types'; +import { StmtContextType } from 'src/parser/common/entityCollector'; + +const commonSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'common.sql'), 'utf-8'); + +describe('Trino entity collector tests', () => { + const trino = new TrinoSQL(); + const parseTree = trino.parse(commonSql); + const splitListener = new TrinoSqlSplitListener(); + trino.listen(splitListener as TrinoSqlListener, parseTree); + + test('validate common sql', () => { + expect(trino.validate(commonSql).length).toBe(0); + }); + + test('split results', () => { + expect(splitListener.statementsContext.length).toBe(9); + }); + + test('create table like', () => { + const testingContext = splitListener.statementsContext[0]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('bar'); + expect(tableCreateEntity.position).toEqual({ + startIndex: 27, + endIndex: 29, + line: 1, + startColumn: 28, + endColumn: 31, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + startIndex: 0, + endIndex: 68, + startLine: 1, + endLine: 1, + startColumn: 1, + endColumn: 70, + }); + + expect(tableCreateEntity.relatedEntities.length).toBe(1); + + const beLikedEntity = allEntities[1]; + + expect(tableCreateEntity.relatedEntities[0]).toBe(beLikedEntity); + expect(beLikedEntity.text).toBe('like_table'); + expect(beLikedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(beLikedEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + }); + + test('create table as select', () => { + const testingContext = splitListener.statementsContext[1]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const originTableEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('foo'); + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + + expect(tableCreateEntity.columns.length).toBe(2); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice(columEntity.position.startIndex, columEntity.position.endIndex + 1) + ); + }); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + + expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(originTableEntity.text).toBe('t'); + expect(originTableEntity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + }); + + test('create view as select', () => { + const testingContext = splitListener.statementsContext[2]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const originTableEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(tableCreateEntity.text).toBe('a'); + expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + + expect(tableCreateEntity.columns).toBeNull(); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + + expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(originTableEntity.text).toBe('t'); + expect(originTableEntity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + }); + + test('create materialize view as select', () => { + const testingContext = splitListener.statementsContext[3]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const tableCreateEntity = allEntities[0]; + const originTableEntity = allEntities[1]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(tableCreateEntity.text).toBe('a'); + expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + + expect(tableCreateEntity.columns).toBeNull(); + expect(tableCreateEntity.relatedEntities.length).toBe(1); + expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + + expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(originTableEntity.text).toBe('t'); + expect(originTableEntity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + }); + + test('select from table', () => { + const testingContext = splitListener.statementsContext[4]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableCreateEntity.text).toBe('table1'); + expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + + expect(tableCreateEntity.columns).toBeNull(); + expect(tableCreateEntity.relatedEntities).toBeNull(); + }); + + test('insert into table as select', () => { + const testingContext = splitListener.statementsContext[5]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const insertTableEntity = allEntities[0]; + const fromTableEntity = allEntities[1]; + + expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(insertTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + expect(insertTableEntity.text).toBe('orders'); + + expect(fromTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(fromTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(fromTableEntity.text).toBe('new_orders'); + expect(fromTableEntity.belongStmt.parentStmt).toBe(insertTableEntity.belongStmt); + }); + + test('insert into table values', () => { + const testingContext = splitListener.statementsContext[6]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableEntity = allEntities[0]; + + expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); + expect(tableEntity.text).toBe('cities'); + }); + + test('create schema', () => { + const testingContext = splitListener.statementsContext[7]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const schemaEntity = allEntities[0]; + + expect(schemaEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(schemaEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); + expect(schemaEntity.text).toBe('test'); + }); + + test('use schema', () => { + const testingContext = splitListener.statementsContext[8]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const schemaEntity = allEntities[0]; + + expect(schemaEntity.entityContextType).toBe(EntityContextType.DATABASE); + expect(schemaEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); + expect(schemaEntity.text).toBe('information_schema'); + }); +}); diff --git a/test/parser/trino/contextCollect/fixtures/common.sql b/test/parser/trino/contextCollect/fixtures/common.sql new file mode 100644 index 0000000..60b1e0b --- /dev/null +++ b/test/parser/trino/contextCollect/fixtures/common.sql @@ -0,0 +1,17 @@ +CREATE TABLE IF NOT EXISTS bar (LIKE like_table INCLUDING PROPERTIES); + +CREATE TABLE foo(x,y) AS SELECT a,b FROM t; + +CREATE VIEW a AS SELECT * FROM t; + +CREATE MATERIALIZED VIEW a AS SELECT * FROM t; + +SELECT * FROM table1 GROUP BY a; + +INSERT INTO orders SELECT * FROM new_orders; + +INSERT INTO cities VALUES (1, 'San Francisco'); + +CREATE SCHEMA IF NOT EXISTS test; + +USE information_schema; \ No newline at end of file diff --git a/test/parser/trinosql/errorStrategy.test.ts b/test/parser/trino/errorStrategy.test.ts similarity index 99% rename from test/parser/trinosql/errorStrategy.test.ts rename to test/parser/trino/errorStrategy.test.ts index 3b13d40..4b845bb 100644 --- a/test/parser/trinosql/errorStrategy.test.ts +++ b/test/parser/trino/errorStrategy.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL, { TrinoSqlSplitListener } from 'src/parser/trinosql'; +import TrinoSQL, { TrinoSqlSplitListener } from 'src/parser/trino'; import { TrinoSqlListener } from 'src/lib/trinosql/TrinoSqlListener'; const validSQL1 = `INSERT INTO country_page_view diff --git a/test/parser/trinosql/lexer.test.ts b/test/parser/trino/lexer.test.ts similarity index 84% rename from test/parser/trinosql/lexer.test.ts rename to test/parser/trino/lexer.test.ts index b0e4b24..1278225 100644 --- a/test/parser/trinosql/lexer.test.ts +++ b/test/parser/trino/lexer.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; describe('trinoSQL Lexer tests', () => { const parser = new TrinoSQL(); diff --git a/test/parser/trinosql/listener.test.ts b/test/parser/trino/listener.test.ts similarity index 97% rename from test/parser/trinosql/listener.test.ts rename to test/parser/trino/listener.test.ts index 57b1e3c..ac92abe 100644 --- a/test/parser/trinosql/listener.test.ts +++ b/test/parser/trino/listener.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { TrinoSqlListener } from 'src/lib/trinosql/TrinoSqlListener'; import { ParseTreeListener } from 'antlr4ng'; diff --git a/test/parser/trinosql/suggestion/fixtures/multipleStatement.sql b/test/parser/trino/suggestion/fixtures/multipleStatement.sql similarity index 100% rename from test/parser/trinosql/suggestion/fixtures/multipleStatement.sql rename to test/parser/trino/suggestion/fixtures/multipleStatement.sql diff --git a/test/parser/trino/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/trino/suggestion/fixtures/suggestionWithEntity.sql new file mode 100644 index 0000000..6bbbf12 --- /dev/null +++ b/test/parser/trino/suggestion/fixtures/suggestionWithEntity.sql @@ -0,0 +1,11 @@ +SELECT FROM my_db.tb; + +SELECT name, calculate_age(birthdate) AS age, FROM students; + +INSERT INTO insert_tb SELECT FROM from_tb; + +INSERT INTO insert_tb SELECT id, age, FROM from_tb; + +CREATE TABLE sorted_census_data AS SELECT FROM unsorted_census_data; + +CREATE TABLE sorted_census_data AS SELECT id, age, FROM unsorted_census_data; \ No newline at end of file diff --git a/test/parser/trinosql/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql similarity index 100% rename from test/parser/trinosql/suggestion/fixtures/syntaxSuggestion.sql rename to test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql diff --git a/test/parser/trinosql/suggestion/fixtures/tokenSuggestion.sql b/test/parser/trino/suggestion/fixtures/tokenSuggestion.sql similarity index 100% rename from test/parser/trinosql/suggestion/fixtures/tokenSuggestion.sql rename to test/parser/trino/suggestion/fixtures/tokenSuggestion.sql diff --git a/test/parser/trinosql/suggestion/multipleStatement.test.ts b/test/parser/trino/suggestion/multipleStatement.test.ts similarity index 84% rename from test/parser/trinosql/suggestion/multipleStatement.test.ts rename to test/parser/trino/suggestion/multipleStatement.test.ts index a6ebd7a..4f63388 100644 --- a/test/parser/trinosql/suggestion/multipleStatement.test.ts +++ b/test/parser/trino/suggestion/multipleStatement.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; -import TrinoSQL from 'src/parser/trinosql'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import TrinoSQL from 'src/parser/trino'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; const syntaxSql = fs.readFileSync( path.join(__dirname, 'fixtures', 'multipleStatement.sql'), @@ -18,7 +18,7 @@ describe('TrinoSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -32,7 +32,7 @@ describe('TrinoSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -46,7 +46,7 @@ describe('TrinoSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -60,7 +60,7 @@ describe('TrinoSQL Multiple Statements Syntax Suggestion', () => { }; const syntaxes = parser.getSuggestionAtCaretPosition(syntaxSql, pos)?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/trino/suggestion/suggestionWithEntity.test.ts b/test/parser/trino/suggestion/suggestionWithEntity.test.ts new file mode 100644 index 0000000..657357f --- /dev/null +++ b/test/parser/trino/suggestion/suggestionWithEntity.test.ts @@ -0,0 +1,159 @@ +import fs from 'fs'; +import path from 'path'; +import TrinoSQL from 'src/parser/trino'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; +import { commentOtherLine } from 'test/helper'; + +const syntaxSql = fs.readFileSync( + path.join(__dirname, 'fixtures', 'suggestionWithEntity.sql'), + 'utf-8' +); + +describe('PostgreSQL Syntax Suggestion with collect entity', () => { + const trino = new TrinoSQL(); + + test('select with no column', () => { + const pos: CaretPosition = { + lineNumber: 1, + column: 8, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = trino.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + // TODO: + // const entities = trino.getAllEntities(sql, pos); + // expect(entities.length).toBe(1); + // expect(entities[0].text).toBe('my_db.tb'); + // expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + // expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('select with columns with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 3, + column: 47, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = trino.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = trino.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('students'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 5, + column: 30, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = trino.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = trino.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + // TODO: + // expect(entities[1].text).toBe('from_tb'); + // expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + // expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('insert into table as select with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 7, + column: 39, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = trino.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = trino.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('insert_tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('from_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with no column', () => { + const pos: CaretPosition = { + lineNumber: 9, + column: 43, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = trino.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = trino.getAllEntities(sql, pos); + expect(entities.length).toBe(1); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + // TODO: + // expect(entities[1].text).toBe('unsorted_census_data'); + // expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + // expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); + + test('create table as select with trailing comma', () => { + const pos: CaretPosition = { + lineNumber: 11, + column: 52, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = trino.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); + + const entities = trino.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('unsorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + }); +}); diff --git a/test/parser/trinosql/suggestion/syntaxSuggestion.test.ts b/test/parser/trino/suggestion/syntaxSuggestion.test.ts similarity index 87% rename from test/parser/trinosql/suggestion/syntaxSuggestion.test.ts rename to test/parser/trino/suggestion/syntaxSuggestion.test.ts index 0d5dc88..d5ace3e 100644 --- a/test/parser/trinosql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/trino/suggestion/syntaxSuggestion.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; -import TrinoSQL from 'src/parser/trinosql'; -import { CaretPosition, SyntaxContextType } from 'src/parser/common/basic-parser-types'; +import TrinoSQL from 'src/parser/trino'; +import { CaretPosition, EntityContextType } from 'src/parser/common/basic-parser-types'; import { commentOtherLine } from 'test/helper'; const syntaxSql = fs.readFileSync( @@ -29,7 +29,7 @@ describe('Trino SQL Syntax Suggestion', () => { )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.', 'tb']); @@ -45,11 +45,11 @@ describe('Trino SQL Syntax Suggestion', () => { ?.syntax ?? []; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect( - syntaxes.some((item) => item.syntaxContextType === SyntaxContextType.VIEW) + syntaxes.some((item) => item.syntaxContextType === EntityContextType.VIEW) ).toBeTruthy(); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); @@ -65,7 +65,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.TABLE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -82,7 +82,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect(suggestion).not.toBeUndefined(); @@ -99,7 +99,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW_CREATE + (syn) => syn.syntaxContextType === EntityContextType.VIEW_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -116,7 +116,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.VIEW + (syn) => syn.syntaxContextType === EntityContextType.VIEW ); expect(suggestion).not.toBeUndefined(); @@ -133,7 +133,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION + (syn) => syn.syntaxContextType === EntityContextType.FUNCTION ); expect(suggestion).not.toBeUndefined(); @@ -150,7 +150,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE_CREATE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -167,7 +167,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.DATABASE + (syn) => syn.syntaxContextType === EntityContextType.DATABASE ); expect(suggestion).not.toBeUndefined(); @@ -184,10 +184,10 @@ describe('Trino SQL Syntax Suggestion', () => { ?.syntax ?? []; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.TABLE + (syn) => syn.syntaxContextType === EntityContextType.TABLE ); expect( - syntaxes.some((item) => item.syntaxContextType === SyntaxContextType.VIEW) + syntaxes.some((item) => item.syntaxContextType === EntityContextType.VIEW) ).toBeTruthy(); expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['tb']); @@ -203,7 +203,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -221,7 +221,7 @@ describe('Trino SQL Syntax Suggestion', () => { )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -239,7 +239,7 @@ describe('Trino SQL Syntax Suggestion', () => { )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -257,7 +257,7 @@ describe('Trino SQL Syntax Suggestion', () => { )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -275,7 +275,7 @@ describe('Trino SQL Syntax Suggestion', () => { )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE + (syn) => syn.syntaxContextType === EntityContextType.COLUMN_CREATE ); expect(suggestion).not.toBeUndefined(); @@ -292,7 +292,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -309,7 +309,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -326,7 +326,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); @@ -343,7 +343,7 @@ describe('Trino SQL Syntax Suggestion', () => { pos )?.syntax; const suggestion = syntaxes?.find( - (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN + (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); diff --git a/test/parser/trinosql/suggestion/tokenSuggestion.test.ts b/test/parser/trino/suggestion/tokenSuggestion.test.ts similarity index 98% rename from test/parser/trinosql/suggestion/tokenSuggestion.test.ts rename to test/parser/trino/suggestion/tokenSuggestion.test.ts index 41f5780..0ccae17 100644 --- a/test/parser/trinosql/suggestion/tokenSuggestion.test.ts +++ b/test/parser/trino/suggestion/tokenSuggestion.test.ts @@ -1,6 +1,6 @@ import fs from 'fs'; import path from 'path'; -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { CaretPosition } from 'src/parser/common/basic-parser-types'; import { commentOtherLine } from 'test/helper'; diff --git a/test/parser/trinosql/syntax/alterStatement.test.ts b/test/parser/trino/syntax/alterStatement.test.ts similarity index 95% rename from test/parser/trinosql/syntax/alterStatement.test.ts rename to test/parser/trino/syntax/alterStatement.test.ts index 2854186..afc3c56 100644 --- a/test/parser/trinosql/syntax/alterStatement.test.ts +++ b/test/parser/trino/syntax/alterStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/analyzeStatement.test.ts b/test/parser/trino/syntax/analyzeStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/analyzeStatement.test.ts rename to test/parser/trino/syntax/analyzeStatement.test.ts index 905d1e7..53eb50f 100644 --- a/test/parser/trinosql/syntax/analyzeStatement.test.ts +++ b/test/parser/trino/syntax/analyzeStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/callStatement.test.ts b/test/parser/trino/syntax/callStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/callStatement.test.ts rename to test/parser/trino/syntax/callStatement.test.ts index adeacf3..9af36e3 100644 --- a/test/parser/trinosql/syntax/callStatement.test.ts +++ b/test/parser/trino/syntax/callStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/commentStatement.test.ts b/test/parser/trino/syntax/commentStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/commentStatement.test.ts rename to test/parser/trino/syntax/commentStatement.test.ts index 68d9349..890eb23 100644 --- a/test/parser/trinosql/syntax/commentStatement.test.ts +++ b/test/parser/trino/syntax/commentStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/commitStatement.test.ts b/test/parser/trino/syntax/commitStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/commitStatement.test.ts rename to test/parser/trino/syntax/commitStatement.test.ts index b9cfa54..2156ae0 100644 --- a/test/parser/trinosql/syntax/commitStatement.test.ts +++ b/test/parser/trino/syntax/commitStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/createStatement.test.ts b/test/parser/trino/syntax/createStatement.test.ts similarity index 96% rename from test/parser/trinosql/syntax/createStatement.test.ts rename to test/parser/trino/syntax/createStatement.test.ts index d177d62..ec37ecf 100644 --- a/test/parser/trinosql/syntax/createStatement.test.ts +++ b/test/parser/trino/syntax/createStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/deallocatePrepareStatement.test.ts b/test/parser/trino/syntax/deallocatePrepareStatement.test.ts similarity index 90% rename from test/parser/trinosql/syntax/deallocatePrepareStatement.test.ts rename to test/parser/trino/syntax/deallocatePrepareStatement.test.ts index 79bcb37..821155d 100644 --- a/test/parser/trinosql/syntax/deallocatePrepareStatement.test.ts +++ b/test/parser/trino/syntax/deallocatePrepareStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/deleteStatement.test.ts b/test/parser/trino/syntax/deleteStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/deleteStatement.test.ts rename to test/parser/trino/syntax/deleteStatement.test.ts index e76b32d..af48caf 100644 --- a/test/parser/trinosql/syntax/deleteStatement.test.ts +++ b/test/parser/trino/syntax/deleteStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/denyStatement.test.ts b/test/parser/trino/syntax/denyStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/denyStatement.test.ts rename to test/parser/trino/syntax/denyStatement.test.ts index babf165..5516e6d 100644 --- a/test/parser/trinosql/syntax/denyStatement.test.ts +++ b/test/parser/trino/syntax/denyStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/describeStatement.test.ts b/test/parser/trino/syntax/describeStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/describeStatement.test.ts rename to test/parser/trino/syntax/describeStatement.test.ts index e94c23a..13edeba 100644 --- a/test/parser/trinosql/syntax/describeStatement.test.ts +++ b/test/parser/trino/syntax/describeStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/dropStatement.test.ts b/test/parser/trino/syntax/dropStatement.test.ts similarity index 96% rename from test/parser/trinosql/syntax/dropStatement.test.ts rename to test/parser/trino/syntax/dropStatement.test.ts index 90dabdc..98b5df7 100644 --- a/test/parser/trinosql/syntax/dropStatement.test.ts +++ b/test/parser/trino/syntax/dropStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/executeStatement.test.ts b/test/parser/trino/syntax/executeStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/executeStatement.test.ts rename to test/parser/trino/syntax/executeStatement.test.ts index b887a3e..c276b35 100644 --- a/test/parser/trinosql/syntax/executeStatement.test.ts +++ b/test/parser/trino/syntax/executeStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/explainStatement.test.ts b/test/parser/trino/syntax/explainStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/explainStatement.test.ts rename to test/parser/trino/syntax/explainStatement.test.ts index 0dbbdb9..5f18000 100644 --- a/test/parser/trinosql/syntax/explainStatement.test.ts +++ b/test/parser/trino/syntax/explainStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/fixtures/alter_materialized_view.sql b/test/parser/trino/syntax/fixtures/alter_materialized_view.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/alter_materialized_view.sql rename to test/parser/trino/syntax/fixtures/alter_materialized_view.sql diff --git a/test/parser/trinosql/syntax/fixtures/alter_schema.sql b/test/parser/trino/syntax/fixtures/alter_schema.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/alter_schema.sql rename to test/parser/trino/syntax/fixtures/alter_schema.sql diff --git a/test/parser/trinosql/syntax/fixtures/alter_table.sql b/test/parser/trino/syntax/fixtures/alter_table.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/alter_table.sql rename to test/parser/trino/syntax/fixtures/alter_table.sql diff --git a/test/parser/trinosql/syntax/fixtures/alter_view.sql b/test/parser/trino/syntax/fixtures/alter_view.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/alter_view.sql rename to test/parser/trino/syntax/fixtures/alter_view.sql diff --git a/test/parser/trinosql/syntax/fixtures/analyze.sql b/test/parser/trino/syntax/fixtures/analyze.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/analyze.sql rename to test/parser/trino/syntax/fixtures/analyze.sql diff --git a/test/parser/trinosql/syntax/fixtures/call.sql b/test/parser/trino/syntax/fixtures/call.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/call.sql rename to test/parser/trino/syntax/fixtures/call.sql diff --git a/test/parser/trinosql/syntax/fixtures/comment.sql b/test/parser/trino/syntax/fixtures/comment.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/comment.sql rename to test/parser/trino/syntax/fixtures/comment.sql diff --git a/test/parser/trinosql/syntax/fixtures/commit.sql b/test/parser/trino/syntax/fixtures/commit.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/commit.sql rename to test/parser/trino/syntax/fixtures/commit.sql diff --git a/test/parser/trinosql/syntax/fixtures/create_materialized_view.sql b/test/parser/trino/syntax/fixtures/create_materialized_view.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/create_materialized_view.sql rename to test/parser/trino/syntax/fixtures/create_materialized_view.sql diff --git a/test/parser/trinosql/syntax/fixtures/create_role.sql b/test/parser/trino/syntax/fixtures/create_role.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/create_role.sql rename to test/parser/trino/syntax/fixtures/create_role.sql diff --git a/test/parser/trinosql/syntax/fixtures/create_schema.sql b/test/parser/trino/syntax/fixtures/create_schema.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/create_schema.sql rename to test/parser/trino/syntax/fixtures/create_schema.sql diff --git a/test/parser/trinosql/syntax/fixtures/create_table.sql b/test/parser/trino/syntax/fixtures/create_table.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/create_table.sql rename to test/parser/trino/syntax/fixtures/create_table.sql diff --git a/test/parser/trinosql/syntax/fixtures/create_table_as_select.sql b/test/parser/trino/syntax/fixtures/create_table_as_select.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/create_table_as_select.sql rename to test/parser/trino/syntax/fixtures/create_table_as_select.sql diff --git a/test/parser/trinosql/syntax/fixtures/create_view.sql b/test/parser/trino/syntax/fixtures/create_view.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/create_view.sql rename to test/parser/trino/syntax/fixtures/create_view.sql diff --git a/test/parser/trinosql/syntax/fixtures/deallocate_prepare.sql b/test/parser/trino/syntax/fixtures/deallocate_prepare.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/deallocate_prepare.sql rename to test/parser/trino/syntax/fixtures/deallocate_prepare.sql diff --git a/test/parser/trinosql/syntax/fixtures/delete.sql b/test/parser/trino/syntax/fixtures/delete.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/delete.sql rename to test/parser/trino/syntax/fixtures/delete.sql diff --git a/test/parser/trinosql/syntax/fixtures/deny.sql b/test/parser/trino/syntax/fixtures/deny.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/deny.sql rename to test/parser/trino/syntax/fixtures/deny.sql diff --git a/test/parser/trinosql/syntax/fixtures/describe.sql b/test/parser/trino/syntax/fixtures/describe.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/describe.sql rename to test/parser/trino/syntax/fixtures/describe.sql diff --git a/test/parser/trinosql/syntax/fixtures/drop_column.sql b/test/parser/trino/syntax/fixtures/drop_column.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/drop_column.sql rename to test/parser/trino/syntax/fixtures/drop_column.sql diff --git a/test/parser/trinosql/syntax/fixtures/drop_materialized_view.sql b/test/parser/trino/syntax/fixtures/drop_materialized_view.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/drop_materialized_view.sql rename to test/parser/trino/syntax/fixtures/drop_materialized_view.sql diff --git a/test/parser/trinosql/syntax/fixtures/drop_role.sql b/test/parser/trino/syntax/fixtures/drop_role.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/drop_role.sql rename to test/parser/trino/syntax/fixtures/drop_role.sql diff --git a/test/parser/trinosql/syntax/fixtures/drop_schema.sql b/test/parser/trino/syntax/fixtures/drop_schema.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/drop_schema.sql rename to test/parser/trino/syntax/fixtures/drop_schema.sql diff --git a/test/parser/trinosql/syntax/fixtures/drop_table.sql b/test/parser/trino/syntax/fixtures/drop_table.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/drop_table.sql rename to test/parser/trino/syntax/fixtures/drop_table.sql diff --git a/test/parser/trinosql/syntax/fixtures/drop_view.sql b/test/parser/trino/syntax/fixtures/drop_view.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/drop_view.sql rename to test/parser/trino/syntax/fixtures/drop_view.sql diff --git a/test/parser/trinosql/syntax/fixtures/execute.sql b/test/parser/trino/syntax/fixtures/execute.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/execute.sql rename to test/parser/trino/syntax/fixtures/execute.sql diff --git a/test/parser/trinosql/syntax/fixtures/explain.sql b/test/parser/trino/syntax/fixtures/explain.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/explain.sql rename to test/parser/trino/syntax/fixtures/explain.sql diff --git a/test/parser/trinosql/syntax/fixtures/grant.sql b/test/parser/trino/syntax/fixtures/grant.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/grant.sql rename to test/parser/trino/syntax/fixtures/grant.sql diff --git a/test/parser/trinosql/syntax/fixtures/implicit_join.sql b/test/parser/trino/syntax/fixtures/implicit_join.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/implicit_join.sql rename to test/parser/trino/syntax/fixtures/implicit_join.sql diff --git a/test/parser/trinosql/syntax/fixtures/insert_into.sql b/test/parser/trino/syntax/fixtures/insert_into.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/insert_into.sql rename to test/parser/trino/syntax/fixtures/insert_into.sql diff --git a/test/parser/trinosql/syntax/fixtures/match_recognize.sql b/test/parser/trino/syntax/fixtures/match_recognize.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/match_recognize.sql rename to test/parser/trino/syntax/fixtures/match_recognize.sql diff --git a/test/parser/trinosql/syntax/fixtures/merge.sql b/test/parser/trino/syntax/fixtures/merge.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/merge.sql rename to test/parser/trino/syntax/fixtures/merge.sql diff --git a/test/parser/trinosql/syntax/fixtures/prepare.sql b/test/parser/trino/syntax/fixtures/prepare.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/prepare.sql rename to test/parser/trino/syntax/fixtures/prepare.sql diff --git a/test/parser/trinosql/syntax/fixtures/refresh_materialized_view.sql b/test/parser/trino/syntax/fixtures/refresh_materialized_view.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/refresh_materialized_view.sql rename to test/parser/trino/syntax/fixtures/refresh_materialized_view.sql diff --git a/test/parser/trinosql/syntax/fixtures/reset_session.sql b/test/parser/trino/syntax/fixtures/reset_session.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/reset_session.sql rename to test/parser/trino/syntax/fixtures/reset_session.sql diff --git a/test/parser/trinosql/syntax/fixtures/revoke.sql b/test/parser/trino/syntax/fixtures/revoke.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/revoke.sql rename to test/parser/trino/syntax/fixtures/revoke.sql diff --git a/test/parser/trinosql/syntax/fixtures/revoke_roles.sql b/test/parser/trino/syntax/fixtures/revoke_roles.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/revoke_roles.sql rename to test/parser/trino/syntax/fixtures/revoke_roles.sql diff --git a/test/parser/trinosql/syntax/fixtures/rollback_transaction.sql b/test/parser/trino/syntax/fixtures/rollback_transaction.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/rollback_transaction.sql rename to test/parser/trino/syntax/fixtures/rollback_transaction.sql diff --git a/test/parser/trinosql/syntax/fixtures/select.sql b/test/parser/trino/syntax/fixtures/select.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select.sql rename to test/parser/trino/syntax/fixtures/select.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_ unnest.sql b/test/parser/trino/syntax/fixtures/select_with_ unnest.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_ unnest.sql rename to test/parser/trino/syntax/fixtures/select_with_ unnest.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_clause.sql b/test/parser/trino/syntax/fixtures/select_with_clause.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_clause.sql rename to test/parser/trino/syntax/fixtures/select_with_clause.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_exists.sql b/test/parser/trino/syntax/fixtures/select_with_exists.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_exists.sql rename to test/parser/trino/syntax/fixtures/select_with_exists.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_fetch.sql b/test/parser/trino/syntax/fixtures/select_with_fetch.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_fetch.sql rename to test/parser/trino/syntax/fixtures/select_with_fetch.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_join.sql b/test/parser/trino/syntax/fixtures/select_with_join.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_join.sql rename to test/parser/trino/syntax/fixtures/select_with_join.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_offset.sql b/test/parser/trino/syntax/fixtures/select_with_offset.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_offset.sql rename to test/parser/trino/syntax/fixtures/select_with_offset.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_row_type.sql b/test/parser/trino/syntax/fixtures/select_with_row_type.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_row_type.sql rename to test/parser/trino/syntax/fixtures/select_with_row_type.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_set_operations.sql b/test/parser/trino/syntax/fixtures/select_with_set_operations.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_set_operations.sql rename to test/parser/trino/syntax/fixtures/select_with_set_operations.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_sub_queries.sql b/test/parser/trino/syntax/fixtures/select_with_sub_queries.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_sub_queries.sql rename to test/parser/trino/syntax/fixtures/select_with_sub_queries.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_table_sample.sql b/test/parser/trino/syntax/fixtures/select_with_table_sample.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_table_sample.sql rename to test/parser/trino/syntax/fixtures/select_with_table_sample.sql diff --git a/test/parser/trinosql/syntax/fixtures/select_with_union.sql b/test/parser/trino/syntax/fixtures/select_with_union.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/select_with_union.sql rename to test/parser/trino/syntax/fixtures/select_with_union.sql diff --git a/test/parser/trinosql/syntax/fixtures/set_path.sql b/test/parser/trino/syntax/fixtures/set_path.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/set_path.sql rename to test/parser/trino/syntax/fixtures/set_path.sql diff --git a/test/parser/trinosql/syntax/fixtures/set_role.sql b/test/parser/trino/syntax/fixtures/set_role.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/set_role.sql rename to test/parser/trino/syntax/fixtures/set_role.sql diff --git a/test/parser/trinosql/syntax/fixtures/set_session.sql b/test/parser/trino/syntax/fixtures/set_session.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/set_session.sql rename to test/parser/trino/syntax/fixtures/set_session.sql diff --git a/test/parser/trinosql/syntax/fixtures/set_time_zone.sql b/test/parser/trino/syntax/fixtures/set_time_zone.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/set_time_zone.sql rename to test/parser/trino/syntax/fixtures/set_time_zone.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_catalogs.sql b/test/parser/trino/syntax/fixtures/show_catalogs.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_catalogs.sql rename to test/parser/trino/syntax/fixtures/show_catalogs.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_columns.sql b/test/parser/trino/syntax/fixtures/show_columns.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_columns.sql rename to test/parser/trino/syntax/fixtures/show_columns.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_create.sql b/test/parser/trino/syntax/fixtures/show_create.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_create.sql rename to test/parser/trino/syntax/fixtures/show_create.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_functions.sql b/test/parser/trino/syntax/fixtures/show_functions.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_functions.sql rename to test/parser/trino/syntax/fixtures/show_functions.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_grants.sql b/test/parser/trino/syntax/fixtures/show_grants.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_grants.sql rename to test/parser/trino/syntax/fixtures/show_grants.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_role_grants.sql b/test/parser/trino/syntax/fixtures/show_role_grants.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_role_grants.sql rename to test/parser/trino/syntax/fixtures/show_role_grants.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_roles.sql b/test/parser/trino/syntax/fixtures/show_roles.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_roles.sql rename to test/parser/trino/syntax/fixtures/show_roles.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_schemas.sql b/test/parser/trino/syntax/fixtures/show_schemas.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_schemas.sql rename to test/parser/trino/syntax/fixtures/show_schemas.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_session.sql b/test/parser/trino/syntax/fixtures/show_session.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_session.sql rename to test/parser/trino/syntax/fixtures/show_session.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_stats.sql b/test/parser/trino/syntax/fixtures/show_stats.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_stats.sql rename to test/parser/trino/syntax/fixtures/show_stats.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_stats_for_query.sql b/test/parser/trino/syntax/fixtures/show_stats_for_query.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_stats_for_query.sql rename to test/parser/trino/syntax/fixtures/show_stats_for_query.sql diff --git a/test/parser/trinosql/syntax/fixtures/show_tables.sql b/test/parser/trino/syntax/fixtures/show_tables.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/show_tables.sql rename to test/parser/trino/syntax/fixtures/show_tables.sql diff --git a/test/parser/trinosql/syntax/fixtures/start_transaction.sql b/test/parser/trino/syntax/fixtures/start_transaction.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/start_transaction.sql rename to test/parser/trino/syntax/fixtures/start_transaction.sql diff --git a/test/parser/trinosql/syntax/fixtures/substring_built_in_function.sql b/test/parser/trino/syntax/fixtures/substring_built_in_function.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/substring_built_in_function.sql rename to test/parser/trino/syntax/fixtures/substring_built_in_function.sql diff --git a/test/parser/trinosql/syntax/fixtures/truncate_table.sql b/test/parser/trino/syntax/fixtures/truncate_table.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/truncate_table.sql rename to test/parser/trino/syntax/fixtures/truncate_table.sql diff --git a/test/parser/trinosql/syntax/fixtures/update.sql b/test/parser/trino/syntax/fixtures/update.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/update.sql rename to test/parser/trino/syntax/fixtures/update.sql diff --git a/test/parser/trinosql/syntax/fixtures/use.sql b/test/parser/trino/syntax/fixtures/use.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/use.sql rename to test/parser/trino/syntax/fixtures/use.sql diff --git a/test/parser/trinosql/syntax/fixtures/values.sql b/test/parser/trino/syntax/fixtures/values.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/values.sql rename to test/parser/trino/syntax/fixtures/values.sql diff --git a/test/parser/trinosql/syntax/fixtures/window_with_row_pattern_recognition.sql b/test/parser/trino/syntax/fixtures/window_with_row_pattern_recognition.sql similarity index 100% rename from test/parser/trinosql/syntax/fixtures/window_with_row_pattern_recognition.sql rename to test/parser/trino/syntax/fixtures/window_with_row_pattern_recognition.sql diff --git a/test/parser/trinosql/syntax/grantStatement.test.ts b/test/parser/trino/syntax/grantStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/grantStatement.test.ts rename to test/parser/trino/syntax/grantStatement.test.ts index 332cefc..8c9fead 100644 --- a/test/parser/trinosql/syntax/grantStatement.test.ts +++ b/test/parser/trino/syntax/grantStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/insertStatement.test.ts b/test/parser/trino/syntax/insertStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/insertStatement.test.ts rename to test/parser/trino/syntax/insertStatement.test.ts index 446c046..1e0195b 100644 --- a/test/parser/trinosql/syntax/insertStatement.test.ts +++ b/test/parser/trino/syntax/insertStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/matchRecognizeStatement.test.ts b/test/parser/trino/syntax/matchRecognizeStatement.test.ts similarity index 90% rename from test/parser/trinosql/syntax/matchRecognizeStatement.test.ts rename to test/parser/trino/syntax/matchRecognizeStatement.test.ts index 804fb22..bb75943 100644 --- a/test/parser/trinosql/syntax/matchRecognizeStatement.test.ts +++ b/test/parser/trino/syntax/matchRecognizeStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/merge.test.ts b/test/parser/trino/syntax/merge.test.ts similarity index 89% rename from test/parser/trinosql/syntax/merge.test.ts rename to test/parser/trino/syntax/merge.test.ts index 9c5c0ea..f45d1d3 100644 --- a/test/parser/trinosql/syntax/merge.test.ts +++ b/test/parser/trino/syntax/merge.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/prepareStatement.test.ts b/test/parser/trino/syntax/prepareStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/prepareStatement.test.ts rename to test/parser/trino/syntax/prepareStatement.test.ts index be8f699..5aa27aa 100644 --- a/test/parser/trinosql/syntax/prepareStatement.test.ts +++ b/test/parser/trino/syntax/prepareStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/refreshMaterializedViewStatement.test.ts b/test/parser/trino/syntax/refreshMaterializedViewStatement.test.ts similarity index 91% rename from test/parser/trinosql/syntax/refreshMaterializedViewStatement.test.ts rename to test/parser/trino/syntax/refreshMaterializedViewStatement.test.ts index 97a9467..686c2b5 100644 --- a/test/parser/trinosql/syntax/refreshMaterializedViewStatement.test.ts +++ b/test/parser/trino/syntax/refreshMaterializedViewStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/resetSessionStatement.test.ts b/test/parser/trino/syntax/resetSessionStatement.test.ts similarity index 90% rename from test/parser/trinosql/syntax/resetSessionStatement.test.ts rename to test/parser/trino/syntax/resetSessionStatement.test.ts index f9f3ead..a3dead6 100644 --- a/test/parser/trinosql/syntax/resetSessionStatement.test.ts +++ b/test/parser/trino/syntax/resetSessionStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/revokeStatement.test.ts b/test/parser/trino/syntax/revokeStatement.test.ts similarity index 92% rename from test/parser/trinosql/syntax/revokeStatement.test.ts rename to test/parser/trino/syntax/revokeStatement.test.ts index c37f9a6..3064f9e 100644 --- a/test/parser/trinosql/syntax/revokeStatement.test.ts +++ b/test/parser/trino/syntax/revokeStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/rollbackTransactionStatement.test.ts b/test/parser/trino/syntax/rollbackTransactionStatement.test.ts similarity index 90% rename from test/parser/trinosql/syntax/rollbackTransactionStatement.test.ts rename to test/parser/trino/syntax/rollbackTransactionStatement.test.ts index a75a811..8be71dd 100644 --- a/test/parser/trinosql/syntax/rollbackTransactionStatement.test.ts +++ b/test/parser/trino/syntax/rollbackTransactionStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/selectStatement.test.ts b/test/parser/trino/syntax/selectStatement.test.ts similarity index 98% rename from test/parser/trinosql/syntax/selectStatement.test.ts rename to test/parser/trino/syntax/selectStatement.test.ts index 3f3feea..90d8b7d 100644 --- a/test/parser/trinosql/syntax/selectStatement.test.ts +++ b/test/parser/trino/syntax/selectStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/setStatement.test.ts b/test/parser/trino/syntax/setStatement.test.ts similarity index 95% rename from test/parser/trinosql/syntax/setStatement.test.ts rename to test/parser/trino/syntax/setStatement.test.ts index 8fde4f1..e0c9ab0 100644 --- a/test/parser/trinosql/syntax/setStatement.test.ts +++ b/test/parser/trino/syntax/setStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/showStatement.test.ts b/test/parser/trino/syntax/showStatement.test.ts similarity index 98% rename from test/parser/trinosql/syntax/showStatement.test.ts rename to test/parser/trino/syntax/showStatement.test.ts index f9b136a..d832dc5 100644 --- a/test/parser/trinosql/syntax/showStatement.test.ts +++ b/test/parser/trino/syntax/showStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/startTransactionStatement.test.ts b/test/parser/trino/syntax/startTransactionStatement.test.ts similarity index 90% rename from test/parser/trinosql/syntax/startTransactionStatement.test.ts rename to test/parser/trino/syntax/startTransactionStatement.test.ts index a172c80..8f27903 100644 --- a/test/parser/trinosql/syntax/startTransactionStatement.test.ts +++ b/test/parser/trino/syntax/startTransactionStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/truncateTableStatement.test.ts b/test/parser/trino/syntax/truncateTableStatement.test.ts similarity index 90% rename from test/parser/trinosql/syntax/truncateTableStatement.test.ts rename to test/parser/trino/syntax/truncateTableStatement.test.ts index 0600ab2..c5b2857 100644 --- a/test/parser/trinosql/syntax/truncateTableStatement.test.ts +++ b/test/parser/trino/syntax/truncateTableStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/updateStatement.test.ts b/test/parser/trino/syntax/updateStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/updateStatement.test.ts rename to test/parser/trino/syntax/updateStatement.test.ts index 0362270..f999f4c 100644 --- a/test/parser/trinosql/syntax/updateStatement.test.ts +++ b/test/parser/trino/syntax/updateStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/useStatement.test.ts b/test/parser/trino/syntax/useStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/useStatement.test.ts rename to test/parser/trino/syntax/useStatement.test.ts index 5e07eb6..06cf224 100644 --- a/test/parser/trinosql/syntax/useStatement.test.ts +++ b/test/parser/trino/syntax/useStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/valuesStatement.test.ts b/test/parser/trino/syntax/valuesStatement.test.ts similarity index 89% rename from test/parser/trinosql/syntax/valuesStatement.test.ts rename to test/parser/trino/syntax/valuesStatement.test.ts index 2952b68..75d5a42 100644 --- a/test/parser/trinosql/syntax/valuesStatement.test.ts +++ b/test/parser/trino/syntax/valuesStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/syntax/windowWithRowPatternRecognitionStatement.test.ts b/test/parser/trino/syntax/windowWithRowPatternRecognitionStatement.test.ts similarity index 92% rename from test/parser/trinosql/syntax/windowWithRowPatternRecognitionStatement.test.ts rename to test/parser/trino/syntax/windowWithRowPatternRecognitionStatement.test.ts index f99b2a8..c980864 100644 --- a/test/parser/trinosql/syntax/windowWithRowPatternRecognitionStatement.test.ts +++ b/test/parser/trino/syntax/windowWithRowPatternRecognitionStatement.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { readSQL } from 'test/helper'; const features = { diff --git a/test/parser/trinosql/validateInvalidSql.test.ts b/test/parser/trino/validateInvalidSql.test.ts similarity index 90% rename from test/parser/trinosql/validateInvalidSql.test.ts rename to test/parser/trino/validateInvalidSql.test.ts index 492469d..b60835e 100644 --- a/test/parser/trinosql/validateInvalidSql.test.ts +++ b/test/parser/trino/validateInvalidSql.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; const randomText = `dhsdansdnkla ndjnsla ndnalks`; const unCompleteSQL = `CREATE TABLE`; diff --git a/test/parser/trinosql/visitor.test.ts b/test/parser/trino/visitor.test.ts similarity index 95% rename from test/parser/trinosql/visitor.test.ts rename to test/parser/trino/visitor.test.ts index 0841a5f..450e354 100644 --- a/test/parser/trinosql/visitor.test.ts +++ b/test/parser/trino/visitor.test.ts @@ -1,4 +1,4 @@ -import TrinoSQL from 'src/parser/trinosql'; +import TrinoSQL from 'src/parser/trino'; import { TrinoSqlVisitor } from 'src/lib/trinosql/TrinoSqlVisitor'; import { AbstractParseTreeVisitor } from 'antlr4ng';